diff --git a/README.md b/README.md index 7059a96..5835da7 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,46 @@ -# React + Vite +# How to run this application -This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. +## Make 3 terminals +``` +cd Backend/back2 +``` +``` +cd Backend/back2 +``` +``` +cd frontend/ai-rec +``` -Currently, two official plugins are available: +## In first terminal run(uvicorn terminal (api)) +``` +pip install -r requirements.txt +``` -- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) for Fast Refresh -- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh +## In third terminal run(frontend/s) +``` +npm init -y +npm i -## Expanding the ESLint configuration +``` +## Running the application -If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project. +### In first terminal(uvicorn) +``` +uvicorn saas_api:app --reload +``` + +### In second terminal(mlflow) +``` +mlflow ui --backend-store-uri sqlite:///mlflow.db --default-artifact-root ./mlflow_artifacts + +``` +### In third terminal(frontend) +``` +npm run dev +``` + +## Go to localhost:5173 or frontend luanched port, to view mlflow go to localhost:5000 + +## Upload dataset and enter into required fields,select ready model and select required fields and click get recommendations + +# Finally Peace diff --git a/backend/README.md b/backend/README.md deleted file mode 100644 index b3e7b7a..0000000 --- a/backend/README.md +++ /dev/null @@ -1,13 +0,0 @@ -#Running the backend - -Open a seperate terminal and - --cd backend - -Install the dependencies by running - --pip install -r requirements.txt - -run command - --uvicorn main:app --reload --port 8000 \ No newline at end of file diff --git a/backend/__pycache__/main.cpython-312.pyc b/backend/__pycache__/main.cpython-312.pyc deleted file mode 100644 index 7bab86a..0000000 Binary files a/backend/__pycache__/main.cpython-312.pyc and /dev/null differ diff --git a/backend/back2/Collaborative.py b/backend/back2/Collaborative.py new file mode 100644 index 0000000..79a8427 --- /dev/null +++ b/backend/back2/Collaborative.py @@ -0,0 +1,87 @@ +import pandas as pd +import numpy as np +from sklearn.decomposition import TruncatedSVD + +class CollaborativeFilteringRecommender: + """ + Recommends items using TruncatedSVD after mean-centering the data + to provide personalized recommendations. + """ + def __init__(self, n_components=50): + self.n_components = n_components + self.svd = TruncatedSVD(n_components=self.n_components, random_state=42) + + self.user_features = None + self.item_features = None + + self.user_means = None + self.item_ids = None + self.user_ids = None + + self.original_ratings_pivot = None + + def fit(self, df, schema_map): + """ + Pivots the data, de-means it, and fits the SVD model. + + Args: + df (pd.DataFrame): Standardized dataframe. + schema_map (dict): Dict with 'user_id', 'item_id', 'rating' keys. + """ + # 1. Create the user-item matrix *with NaNs* + self.original_ratings_pivot = df.pivot_table( + index=schema_map['user_id'], + columns=schema_map['item_id'], + values=schema_map['rating'] + ) + + # 2. Calculate the mean rating for each user + self.user_means = self.original_ratings_pivot.mean(axis=1) + + # 3. De-mean the data + demeaned_ratings = self.original_ratings_pivot.subtract(self.user_means, axis=0) + + # 4. NOW, fill the NaNs with 0 + demeaned_ratings_filled = demeaned_ratings.fillna(0) + + # 5. Fit SVD on the de-meaned data + self.user_features = self.svd.fit_transform(demeaned_ratings_filled) + self.item_features = self.svd.components_ # (n_components, n_items) + + # Store the user and item IDs in order + self.user_ids = demeaned_ratings_filled.index + self.item_ids = demeaned_ratings_filled.columns + + print("✅ Collaborative Filtering (SVD) model fitted on de-meaned data.") + + def recommend(self, user_id, n=10): + """ + Gets the top n item recommendations for a given user_id. + """ + if user_id not in self.user_ids: + print(f"User '{user_id}' not found in Collaborative model.") + return [] + + # 1. Get the user's row index + user_index = self.user_ids.get_loc(user_id) + + # 2. Get the user's latent feature vector + user_vector = self.user_features[user_index] + + # 3. Predict the *deviations* + predicted_deviations = np.dot(user_vector, self.item_features) + + # 4. Add the user's mean back + user_mean = self.user_means.loc[user_id] + predicted_ratings = predicted_deviations + user_mean + + # 5. Convert to a Series + predicted_series = pd.Series(predicted_ratings, index=self.item_ids) + + # 6. Get items the user has already rated + rated_items = self.original_ratings_pivot.loc[user_id].dropna().index + + # 7. Filter out already-rated items and sort + recommendations = predicted_series.drop(rated_items).sort_values(ascending=False) + + return recommendations.head(n).index.tolist() \ No newline at end of file diff --git a/backend/back2/Content.py b/backend/back2/Content.py new file mode 100644 index 0000000..91c5b6b --- /dev/null +++ b/backend/back2/Content.py @@ -0,0 +1,64 @@ +import pandas as pd +from sklearn.feature_extraction.text import TfidfVectorizer +from sklearn.metrics.pairwise import linear_kernel + +class ContentBasedRecommender: + """Recommends items similar to a given item based on its content.""" + def __init__(self): + self.cosine_sim = None + self.indices = None + self.df = None + self.schema_map = {} + + def fit(self, df, schema_map): + """ + Builds the TF-IDF and Cosine Similarity matrix from item features. + + Args: + df (pd.DataFrame): The standardized dataframe. + schema_map (dict): A dict with 'item_id' and 'feature_cols' keys. + """ + self.df = df + self.schema_map = schema_map + content_feature_columns = schema_map.get('feature_cols', []) + + # Create a "soup" of all content features in a single string + df['soup'] = df[content_feature_columns].fillna('').astype(str).agg(' '.join, axis=1) + + # Use TF-IDF to convert the text soup into a matrix of feature vectors + tfidf = TfidfVectorizer(stop_words='english') + tfidf_matrix = tfidf.fit_transform(df['soup']) + + # Calculate the cosine similarity between all items + self.cosine_sim = linear_kernel(tfidf_matrix, tfidf_matrix) + + # Create a mapping from item_id to dataframe index for quick lookups + # Create a mapping from item_title to dataframe index for quick lookups + self.indices = pd.Series(df.index, index=df[schema_map['item_title']]).drop_duplicates() + print("✅ Content-Based model fitted.") + + def recommend(self, item_id, n=10): + """ + Gets the top n similar items for a given item_id. + """ + if item_id not in self.indices: + print(f"Item '{item_id}' not found in Content model indices.") + return [] + + # Get the index of the item that matches the ID + idx = self.indices[item_id] + + # Get the pairwise similarity scores of all items with that item + sim_scores = list(enumerate(self.cosine_sim[idx])) + + # Sort the items based on the similarity scores + sim_scores = sorted(sim_scores, key=lambda x: x[1], reverse=True) + + # Get the scores of the n most similar items (excluding the item itself) + sim_scores = sim_scores[1:n+1] + + # Get the item indices + item_indices = [i[0] for i in sim_scores] + + # Return the top n most similar item IDs + return self.df[self.schema_map['item_id']].iloc[item_indices].tolist() \ No newline at end of file diff --git a/backend/back2/Hybrid.py b/backend/back2/Hybrid.py new file mode 100644 index 0000000..6ac3678 --- /dev/null +++ b/backend/back2/Hybrid.py @@ -0,0 +1,26 @@ +import pandas as pd +class HybridRecommender: + """ + Combines recommendations from content-based and collaborative models + to provide a more robust and diverse recommendation list. + """ + def __init__(self, content_model, collab_model): + self.content_model = content_model + self.collab_model = collab_model + print("🤖 HybridRecommender initialized.") + + def recommend(self, user_id, item_id_for_content, n=10): + """ + Generates a hybrid list of recommendations. + """ + # 1. Get content-based recommendations + content_recs = self.content_model.recommend(item_id_for_content, n) + + # 2. Get collaborative filtering recommendations + collab_recs = self.collab_model.recommend(user_id, n) + + # 3. Combine the lists (prioritizing content, filling with collaborative) + combined_recs = list(dict.fromkeys(content_recs + collab_recs)) + + # 4. Return the final list + return combined_recs[:n] \ No newline at end of file diff --git a/backend/back2/__pycache__/Collaborative.cpython-312.pyc b/backend/back2/__pycache__/Collaborative.cpython-312.pyc new file mode 100644 index 0000000..a2d7af1 Binary files /dev/null and b/backend/back2/__pycache__/Collaborative.cpython-312.pyc differ diff --git a/backend/back2/__pycache__/Content.cpython-312.pyc b/backend/back2/__pycache__/Content.cpython-312.pyc new file mode 100644 index 0000000..48bc5d8 Binary files /dev/null and b/backend/back2/__pycache__/Content.cpython-312.pyc differ diff --git a/backend/back2/__pycache__/Hybrid.cpython-312.pyc b/backend/back2/__pycache__/Hybrid.cpython-312.pyc new file mode 100644 index 0000000..63918c1 Binary files /dev/null and b/backend/back2/__pycache__/Hybrid.cpython-312.pyc differ diff --git a/backend/back2/__pycache__/database.cpython-312.pyc b/backend/back2/__pycache__/database.cpython-312.pyc new file mode 100644 index 0000000..ca6637a Binary files /dev/null and b/backend/back2/__pycache__/database.cpython-312.pyc differ diff --git a/backend/back2/__pycache__/dynamic_recommender.cpython-312.pyc b/backend/back2/__pycache__/dynamic_recommender.cpython-312.pyc new file mode 100644 index 0000000..e892850 Binary files /dev/null and b/backend/back2/__pycache__/dynamic_recommender.cpython-312.pyc differ diff --git a/backend/back2/__pycache__/models.cpython-312.pyc b/backend/back2/__pycache__/models.cpython-312.pyc new file mode 100644 index 0000000..6a5154b Binary files /dev/null and b/backend/back2/__pycache__/models.cpython-312.pyc differ diff --git a/backend/back2/__pycache__/saas_api.cpython-312.pyc b/backend/back2/__pycache__/saas_api.cpython-312.pyc new file mode 100644 index 0000000..19c1b7e Binary files /dev/null and b/backend/back2/__pycache__/saas_api.cpython-312.pyc differ diff --git a/backend/back2/__pycache__/schemas.cpython-312.pyc b/backend/back2/__pycache__/schemas.cpython-312.pyc new file mode 100644 index 0000000..e5af542 Binary files /dev/null and b/backend/back2/__pycache__/schemas.cpython-312.pyc differ diff --git a/backend/back2/database.py b/backend/back2/database.py new file mode 100644 index 0000000..ef61ae0 --- /dev/null +++ b/backend/back2/database.py @@ -0,0 +1,38 @@ +from sqlalchemy import create_engine +from sqlalchemy.ext.declarative import declarative_base +from sqlalchemy.orm import sessionmaker + +# Define the SQLite database URL. +# This will create a file named 'user_data.db' in the same directory. +DATABASE_URL = "sqlite:///./user_data.db" + +# Create the SQLAlchemy engine +engine = create_engine( + DATABASE_URL, + # required for SQLite + connect_args={"check_same_thread": False} +) + +# Create a SessionLocal class, which will be our actual database session +SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) + +# Create a Base class for our models to inherit from +Base = declarative_base() + +def get_db(): + """ + FastAPI dependency to get a database session. + Yields a session and closes it after the request. + """ + db = SessionLocal() + try: + yield db + finally: + db.close() + +def create_db_and_tables(): + """ + Utility function to create all tables in the database. + Called on app startup. + """ + Base.metadata.create_all(bind=engine) \ No newline at end of file diff --git a/backend/back2/dynamic_recommender.py b/backend/back2/dynamic_recommender.py new file mode 100644 index 0000000..a2f17c4 --- /dev/null +++ b/backend/back2/dynamic_recommender.py @@ -0,0 +1,161 @@ +import mlflow +import mlflow.pyfunc +import pandas as pd +import numpy as np +import pickle +import json +import os + +# --- Import your recommender classes --- +from Content import ContentBasedRecommender +from Collaborative import CollaborativeFilteringRecommender +from Hybrid import HybridRecommender + +class MLflowRecommenderWrapper(mlflow.pyfunc.PythonModel): + """ + This is the new MLflow wrapper. + It loads the specific artifacts for your Content, Collaborative, + or Hybrid models and routes prediction requests. + """ + + def load_context(self, context): + """ + This method is called by MLflow when loading the model. + It loads all the artifacts saved during training. + """ + print("Loading context for MLflowRecommenderWrapper...") + + # 1. Load config to see what model to build + with open(context.artifacts["model_type_config"], 'r') as f: + config = json.load(f) + self.model_type = config["model_type"] + self.schemas = config["schemas"] + print(f"Loading model of type: {self.model_type}") + + # 2. Always load content data if it exists (for title lookups) + self.content_df = pd.DataFrame() + # --- UPDATED LOGIC --- + # Get content schema if it exists in the config + self.content_schema = self.schemas.get("content", {}) + + # Check if cb_data artifact exists AND we have a schema for it + if "cb_data" in context.artifacts and self.content_schema: + self.content_df = pd.read_csv(context.artifacts["cb_data"]) + # Ensure the ID column is a string for matching + if 'item_id' in self.content_schema: + self.content_df[self.content_schema['item_id']] = self.content_df[self.content_schema['item_id']].astype(str) + print("Loaded content data for title lookups.") + # --- END OF UPDATED LOGIC --- + + # 3. Load Content-Based Model components + if self.model_type in ["content", "hybrid"]: + print("Loading Content model artifacts...") + self.content_model = ContentBasedRecommender() + self.content_model.df = self.content_df + with open(context.artifacts["cb_cosine_sim"], 'rb') as f: + self.content_model.cosine_sim = pickle.load(f) + with open(context.artifacts["cb_indices"], 'rb') as f: + self.content_model.indices = pickle.load(f) + self.content_model.schema_map = self.content_schema + + # 4. Load Collaborative Filtering Model components + if self.model_type in ["collaborative", "hybrid"]: + print("Loading Collaborative model artifacts...") + self.collab_model = CollaborativeFilteringRecommender() + self.collab_model.user_features = np.load(context.artifacts["cf_user_features"]) + self.collab_model.item_features = np.load(context.artifacts["cf_item_features"]) + with open(context.artifacts["cf_user_means"], 'rb') as f: + self.collab_model.user_means = pickle.load(f) + with open(context.artifacts["cf_item_ids"], 'rb') as f: + self.collab_model.item_ids = pickle.load(f) + with open(context.artifacts["cf_user_ids"], 'rb') as f: + self.collab_model.user_ids = pickle.load(f) + with open(context.artifacts["cf_pivot"], 'rb') as f: + self.collab_model.original_ratings_pivot = pickle.load(f) + + # 5. Instantiate the final model (Hybrid or one of the components) + if self.model_type == "hybrid": + self.model = HybridRecommender(self.content_model, self.collab_model) + elif self.model_type == "content": + self.model = self.content_model + elif self.model_type == "collaborative": + self.model = self.collab_model + + print("✅ Model loading complete.") + + def _format_recs(self, raw_ids: list) -> list: + """Helper to turn a list of IDs into a list of dicts with titles.""" + + # This check will now pass if content_df and content_schema were loaded + if self.content_df.empty or not self.content_schema: + print("Warning: Content data or schema not found. Falling back to IDs.") + return [{"item_id": id} for id in raw_ids] + + try: + id_col = self.content_schema['item_id'] + title_col = self.content_schema['item_title'] + + # --- UPDATED LOGIC --- + # Ensure all raw IDs are strings for matching + raw_ids_str = [str(rid) for rid in raw_ids] + + # Filter the dataframe to only include recommended IDs + results_df = self.content_df[self.content_df[id_col].isin(raw_ids_str)] + + # Use .set_index().loc[] to maintain the order from raw_ids + # This handles missing IDs gracefully by producing NaNs + ordered_results = results_df.set_index(id_col).loc[raw_ids_str].reset_index() + + # Handle potential duplicates if raw_ids had them + ordered_results = ordered_results.drop_duplicates(subset=[id_col]) + + return ordered_results[[id_col, title_col]].to_dict('records') + except Exception as e: + print(f"Error formatting recommendations: {e}. Falling back to IDs.") + # Fallback for any error (e.g., KeyError if title_col is missing) + return [{"item_id": id} for id in raw_ids] + + + def predict(self, context, model_input: pd.DataFrame): + """ + This is the main prediction entry point for MLflow. + """ + results = [] + for _, row in model_input.iterrows(): + try: + user_id = row.get('user_id') + item_title = row.get('item_title') + n = int(row.get('n', 10)) + + raw_ids = [] + if self.model_type == "content": + if not item_title: raise ValueError("item_title is required for content model.") + raw_ids = self.model.recommend(item_title, n) + elif self.model_type == "collaborative": + if not user_id: raise ValueError("user_id is required for collaborative model.") + raw_ids = self.model.recommend(str(user_id), n) # Ensure user_id is string + elif self.model_type == "hybrid": + if not user_id: raise ValueError("user_id is required for hybrid model.") + if not item_title: raise ValueError("item_title is required for hybrid model.") + raw_ids = self.model.recommend(str(user_id), item_title, n) + + # Format IDs into final JSON + recommendations = self._format_recs(raw_ids) + + results.append({ + "input_item_title": item_title, + "input_user_id": user_id, + "model_type": self.model_type, + "recommendations": recommendations, + "error": None + }) + except Exception as e: + results.append({ + "input_item_title": item_title, + "input_user_id": user_id, + "model_type": self.model_type, + "recommendations": None, + "error": str(e) + }) + + return pd.Series([json.dumps(r) for r in results]) \ No newline at end of file diff --git a/backend/back2/models.py b/backend/back2/models.py new file mode 100644 index 0000000..b31fbf5 --- /dev/null +++ b/backend/back2/models.py @@ -0,0 +1,67 @@ +from sqlalchemy import Column, Integer, String, ForeignKey, Enum +from sqlalchemy.orm import relationship +from database import Base +import enum + +class ProjectStatus(str, enum.Enum): + PENDING = "pending" + PROCESSING = "processing" + READY = "ready" + ERROR = "error" + +class ModelType(str, enum.Enum): + CONTENT = "content" + COLLABORATIVE = "collaborative" + HYBRID = "hybrid" + +class FileType(str, enum.Enum): + CONTENT = "content" + INTERACTION = "interaction" + +# --- Main Project Table --- +class RecommenderProject(Base): + __tablename__ = "recommender_projects" + + id = Column(Integer, primary_key=True, index=True) + project_name = Column(String, index=True) + status = Column(String, default=ProjectStatus.PENDING) + + # Type of model to be built + model_type = Column(String, nullable=True) + + # MLflow tracking + mlflow_model_name = Column(String, nullable=True) + mlflow_model_version = Column(Integer, nullable=True) + + # A project can have multiple files (e.g., one content, one interaction) + uploaded_files = relationship("UploadedFile", back_populates="project") + +# --- Uploaded Files Table --- +class UploadedFile(Base): + __tablename__ = "uploaded_files" + + id = Column(Integer, primary_key=True, index=True) + original_filename = Column(String) + storage_path = Column(String, unique=True) + file_type = Column(String) # 'content' or 'interaction' + + project_id = Column(Integer, ForeignKey("recommender_projects.id")) + project = relationship("RecommenderProject", back_populates="uploaded_files") + + # A file has its own set of schema mappings + schema_mappings = relationship("SchemaMapping", back_populates="file") + +# --- Schema Mappings Table --- +class SchemaMapping(Base): + __tablename__ = "schema_mappings" + + id = Column(Integer, primary_key=True, index=True) + + # e.g., 'item_id', 'item_title', 'user_id', 'rating' + app_schema_key = Column(String, index=True) + + # The column name from the user's CSV + user_csv_column = Column(String) + + file_id = Column(Integer, ForeignKey("uploaded_files.id")) + file = relationship("UploadedFile", back_populates="schema_mappings") \ No newline at end of file diff --git a/backend/back2/saas_api.py b/backend/back2/saas_api.py new file mode 100644 index 0000000..c0b88fb --- /dev/null +++ b/backend/back2/saas_api.py @@ -0,0 +1,435 @@ +import pandas as pd +import aiofiles +import os +import uuid +import json +import asyncio +import mlflow +import pickle +import numpy as np # <-- Add this import +import tempfile +from fastapi import FastAPI, File, UploadFile, Form, Depends, HTTPException, BackgroundTasks +from fastapi.middleware.cors import CORSMiddleware +from sqlalchemy.orm import Session +from contextlib import asynccontextmanager +from typing import List, Optional, Dict + +import models +import schemas +import database + +# --- Import your classes --- +from Content import ContentBasedRecommender +from Collaborative import CollaborativeFilteringRecommender +# --- Import the MLflow wrapper --- +from dynamic_recommender import MLflowRecommenderWrapper + +# --- App Setup & MLflow Configuration (Unchanged) --- +os.makedirs("user_uploads", exist_ok=True) +os.makedirs("mlflow_artifacts", exist_ok=True) + +MLFLOW_TRACKING_DB = "sqlite:///mlflow.db" +MLFLOW_ARTIFACT_LOCATION = "./mlflow_artifacts" +os.environ["MLFLOW_TRACKING_URI"] = MLFLOW_TRACKING_DB +mlflow.set_tracking_uri(MLFLOW_TRACKING_DB) + +# try: +# mlflow.create_experiment("recommender_projects", artifact_location=MLFLOW_ARTIFACT_LOCATION) +# except mlflow.exceptions.RestException: +# pass +# mlflow.set_experiment("recommender_projects") +# --- CONFIGURE MLFLOW --- +# ... (other lines) ... + +# Check if the experiment already exists +experiment = mlflow.get_experiment_by_name("recommender_projects") + +# If it doesn't exist, create it +if not experiment: + print("Creating new MLflow experiment: recommender_projects") + mlflow.create_experiment( + "recommender_projects", + artifact_location=MLFLOW_ARTIFACT_LOCATION + ) + +# Set the experiment as the active one for all runs +mlflow.set_experiment("recommender_projects") +# --- END MLFLOW CONFIG --- +# --- END MLFLOW CONFIG --- + +@asynccontextmanager +async def lifespan(app: FastAPI): + print("Server starting...") + database.create_db_and_tables() + print("Database tables created.") + yield + print("Server shutting down.") + +app = FastAPI(lifespan=lifespan) +app.add_middleware( + CORSMiddleware, + allow_origins=["http://localhost:3000", "http://127.0.0.1:3000","http://localhost:8000","http://localhost:5000","http://localhost:5173"], + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], +) + +# --- Helper function (Unchanged) --- +async def save_file_and_schema( + db: Session, + project_id: int, + file: UploadFile, + schema_json: str, + file_type: models.FileType +) -> models.UploadedFile: + + storage_filename = f"{uuid.uuid4()}_{file.filename}" + storage_path = os.path.join("user_uploads", storage_filename) + + async with aiofiles.open(storage_path, 'wb') as out_file: + content = await file.read() + await out_file.write(content) + + db_file = models.UploadedFile( + project_id=project_id, + original_filename=file.filename, + storage_path=storage_path, + file_type=file_type + ) + db.add(db_file) + db.commit() + db.refresh(db_file) + + try: + schema_map = json.loads(schema_json) + except json.JSONDecodeError: + raise HTTPException(status_code=400, detail=f"Invalid schema JSON for {file_type} file.") + + for app_key, user_col in schema_map.items(): + if isinstance(user_col, list): + for col in user_col: + db_schema = models.SchemaMapping( + app_schema_key='feature_col', + user_csv_column=col, + file_id=db_file.id + ) + db.add(db_schema) + else: + db_schema = models.SchemaMapping( + app_schema_key=app_key, + user_csv_column=user_col, + file_id=db_file.id + ) + db.add(db_schema) + + db.commit() + return db_file + +# --- Background Task for Model Training (Updated) --- + +async def process_project(project_id: int, db: Session): + """ + Background task to train models from Content.py and Collaborative.py + and register them with MLflow. + """ + print(f"[Task {project_id}]: Started processing...") + db_project = None + try: + db_project = db.query(models.RecommenderProject).filter(models.RecommenderProject.id == project_id).first() + if not db_project: + raise Exception("Project not found in DB.") + + db_project.status = models.ProjectStatus.PROCESSING + db.commit() + + # --- Load files and schemas (Unchanged) --- + files = db_project.uploaded_files + content_file = next((f for f in files if f.file_type == models.FileType.CONTENT), None) + interaction_file = next((f for f in files if f.file_type == models.FileType.INTERACTION), None) + + df_content, df_interaction = None, None + content_schema, interaction_schema = {}, {} + all_schemas_map = {} + + if content_file: + df_content = pd.read_csv(content_file.storage_path) + content_schema = {s.app_schema_key: s.user_csv_column for s in content_file.schema_mappings if s.app_schema_key != 'feature_col'} + content_schema['feature_cols'] = [s.user_csv_column for s in content_file.schema_mappings if s.app_schema_key == 'feature_col'] + all_schemas_map['content'] = content_schema + + if interaction_file: + df_interaction = pd.read_csv(interaction_file.storage_path) + # Ensure user_id and item_id are strings for consistency + schema_map = {s.app_schema_key: s.user_csv_column for s in interaction_file.schema_mappings} + df_interaction[schema_map['user_id']] = df_interaction[schema_map['user_id']].astype(str) + df_interaction[schema_map['item_id']] = df_interaction[schema_map['item_id']].astype(str) + interaction_schema = schema_map + all_schemas_map['interaction'] = interaction_schema + + # Ensure content item_ids are strings if they exist + if df_content is not None and 'item_id' in content_schema: + df_content[content_schema['item_id']] = df_content[content_schema['item_id']].astype(str) + + + model_type = db_project.model_type + print(f"[Task {project_id}]: Building model of type: {model_type}") + + # --- Artifacts will be saved here --- + with tempfile.TemporaryDirectory() as tmpdir: + artifacts = {} + + # --- Save model_type config (Unchanged) --- + model_type_config_path = os.path.join(tmpdir, "model_type.json") + with open(model_type_config_path, 'w') as f: + json.dump({"model_type": model_type, "schemas": all_schemas_map}, f) + artifacts["model_type_config"] = model_type_config_path + + # --- Train Content-Based Model (Updated) --- + if model_type in [models.ModelType.CONTENT, models.ModelType.HYBRID]: + print(f"[Task {project_id}]: Fitting ContentBasedRecommender...") + cb_recommender = ContentBasedRecommender() + cb_recommender.fit(df_content, content_schema) + + # Define and save CB artifacts + artifacts["cb_cosine_sim"] = os.path.join(tmpdir, "cb_cosine_sim.pkl") + artifacts["cb_indices"] = os.path.join(tmpdir, "cb_indices.pkl") + artifacts["cb_data"] = os.path.join(tmpdir, "cb_data.csv") + + with open(artifacts["cb_cosine_sim"], 'wb') as f: pickle.dump(cb_recommender.cosine_sim, f) + with open(artifacts["cb_indices"], 'wb') as f: pickle.dump(cb_recommender.indices, f) + cb_recommender.df.to_csv(artifacts["cb_data"], index=False) + print(f"[Task {project_id}]: Saved Content model artifacts.") + + # --- Train Collaborative Filtering Model (Updated) --- + if model_type in [models.ModelType.COLLABORATIVE, models.ModelType.HYBRID]: + print(f"[Task {project_id}]: Fitting CollaborativeFilteringRecommender...") + cf_recommender = CollaborativeFilteringRecommender(n_components=50) + cf_recommender.fit(df_interaction, interaction_schema) + + # Define and save CF artifacts + artifacts["cf_user_features"] = os.path.join(tmpdir, "cf_user_features.npy") + artifacts["cf_item_features"] = os.path.join(tmpdir, "cf_item_features.npy") + artifacts["cf_user_means"] = os.path.join(tmpdir, "cf_user_means.pkl") + artifacts["cf_item_ids"] = os.path.join(tmpdir, "cf_item_ids.pkl") + artifacts["cf_user_ids"] = os.path.join(tmpdir, "cf_user_ids.pkl") + artifacts["cf_pivot"] = os.path.join(tmpdir, "cf_pivot.pkl") + + np.save(artifacts["cf_user_features"], cf_recommender.user_features) + np.save(artifacts["cf_item_features"], cf_recommender.item_features) + with open(artifacts["cf_user_means"], 'wb') as f: pickle.dump(cf_recommender.user_means, f) + with open(artifacts["cf_item_ids"], 'wb') as f: pickle.dump(cf_recommender.item_ids, f) + with open(artifacts["cf_user_ids"], 'wb') as f: pickle.dump(cf_recommender.user_ids, f) + with open(artifacts["cf_pivot"], 'wb') as f: pickle.dump(cf_recommender.original_ratings_pivot, f) + print(f"[Task {project_id}]: Saved Collaborative model artifacts.") + + # --- Save content data for pure collaborative model (for lookups) --- + if model_type == models.ModelType.COLLABORATIVE and df_content is not None: + artifacts["cb_data"] = os.path.join(tmpdir, "cb_data.csv") + df_content.to_csv(artifacts["cb_data"], index=False) + print(f"[Task {project_id}]: Saved Content data for Collaborative title lookups.") + + + # --- Save and Register with MLflow (Unchanged) --- +# --- Save and Register with MLflow (Corrected) --- + with mlflow.start_run() as run: + print(f"[Task {project_id}]: MLflow run started: {run.info.run_id}") + mlflow.log_param("model_type", model_type) + + model_name = f"project-{project_id}-recommender" + artifact_path = "recommender_model" # This is the name of the artifact folder *inside* the run + + # Use log_model to save AND log the model as an artifact + model_info = mlflow.pyfunc.log_model( + artifact_path=artifact_path, + python_model=MLflowRecommenderWrapper(), + artifacts=artifacts, + code_paths=["dynamic_recommender.py", "Content.py", "Collaborative.py", "Hybrid.py"] + ) + + # Register the model using the valid URI returned by log_model + registered_model = mlflow.register_model( + model_uri=model_info.model_uri, # model_info.model_uri is the correct 'runs:/...' path + name=model_name + ) + model_version = registered_model.version + print(f"[Task {project_id}]: Model registered as '{model_name}' v{model_version}") + + # --- Update Project in DB (Unchanged) --- + db_project.mlflow_model_name = model_name + db_project.mlflow_model_version = model_version + db_project.status = models.ProjectStatus.READY + db.commit() + print(f"[Task {project_id}]: Processing complete.") + + except Exception as e: + print(f"[Task {project_id}]: ERROR processing project. {e}") + if db_project: + db_project.status = models.ProjectStatus.ERROR + db.commit() + finally: + db.close() + +# --- All API Endpoints (Unchanged) --- +# The /create-project, /projects, /project/{id}/status, +# /project/{id}/items, /project/{id}/users, and +# /project/{id}/recommendations endpoints are all +# IDENTICAL to the previous version. I am omitting them +# here for brevity, but you should use the exact code +# from the previous response for them. +# +# ... (all endpoints from saas_api.py go here) ... +# + +# --- PASTE ALL OTHER ENDPOINTS FROM THE PREVIOUS RESPONSE BELOW --- + +@app.post("/create-project/", response_model=schemas.RecommenderProject) +async def create_project( + background_tasks: BackgroundTasks, + project_name: str = Form(...), + content_file: UploadFile = File(None), + content_schema_json: str = Form(None), + interaction_file: UploadFile = File(None), + interaction_schema_json: str = Form(None), + db: Session = Depends(database.get_db) +): + if not content_file and not interaction_file: + raise HTTPException(status_code=400, detail="At least one file (content or interaction) must be provided.") + if content_file and not content_schema_json: + raise HTTPException(status_code=400, detail="Content schema is required if content file is provided.") + if interaction_file and not interaction_schema_json: + raise HTTPException(status_code=400, detail="Interaction schema is required if interaction file is provided.") + + model_type = None + if content_file and interaction_file: + model_type = models.ModelType.HYBRID + elif content_file: + model_type = models.ModelType.CONTENT + elif interaction_file: + model_type = models.ModelType.COLLABORATIVE + + db_project = models.RecommenderProject( + project_name=project_name, + status=models.ProjectStatus.PENDING, + model_type=model_type + ) + db.add(db_project) + db.commit() + db.refresh(db_project) + + try: + if content_file: + await save_file_and_schema(db, db_project.id, content_file, content_schema_json, models.FileType.CONTENT) + if interaction_file: + await save_file_and_schema(db, db_project.id, interaction_file, interaction_schema_json, models.FileType.INTERACTION) + except Exception as e: + db_project.status = models.ProjectStatus.ERROR + db.commit() + raise HTTPException(status_code=500, detail=f"Error processing files: {e}") + + background_db = database.SessionLocal() + background_tasks.add_task(process_project, db_project.id, background_db) + + db.refresh(db_project) + return db_project + + +@app.get("/projects/", response_model=List[schemas.RecommenderProject]) +def get_projects(db: Session = Depends(database.get_db)): + projects = db.query(models.RecommenderProject).all() + return projects + +@app.get("/project/{project_id}/status", response_model=schemas.RecommenderProject) +def get_project_status(project_id: int, db: Session = Depends(database.get_db)): + db_project = db.query(models.RecommenderProject).filter(models.RecommenderProject.id == project_id).first() + if not db_project: + raise HTTPException(status_code=404, detail="Project not found.") + return db_project + +def get_project_data(project_id: int, db: Session, file_type: models.FileType): + db_project = db.query(models.RecommenderProject).filter(models.RecommenderProject.id == project_id).first() + if not db_project: + raise HTTPException(status_code=404, detail="Project not found.") + if db_project.status != models.ProjectStatus.READY: + raise HTTPException(status_code=400, detail="Project is not ready.") + + file = next((f for f in db_project.uploaded_files if f.file_type == file_type), None) + if not file: + raise HTTPException(status_code=404, detail=f"{file_type} file not found for this project.") + + df = pd.read_csv(file.storage_path) + schema = {s.app_schema_key: s.user_csv_column for s in file.schema_mappings} + return df, schema + +@app.get("/project/{project_id}/items", response_model=List[schemas.ProjectItemResponse]) +def get_project_items(project_id: int, db: Session = Depends(database.get_db)): + try: + df, schema = get_project_data(project_id, db, models.FileType.CONTENT) + id_col, title_col = schema['item_id'], schema['item_title'] + # Ensure IDs are strings + df[id_col] = df[id_col].astype(str) + items = df[[id_col, title_col]].drop_duplicates().to_dict('records') + return [{"id": item[id_col], "title": str(item[title_col])} for item in items] + except Exception as e: + raise HTTPException(status_code=500, detail=f"Error loading items: {e}") + +@app.get("/project/{project_id}/users", response_model=List[schemas.ProjectUserResponse]) +def get_project_users(project_id: int, db: Session = Depends(database.get_db)): + try: + df, schema = get_project_data(project_id, db, models.FileType.INTERACTION) + user_col = schema['user_id'] + users = df[user_col].drop_duplicates().astype(str).tolist() + return [{"id": user} for user in users] + except Exception as e: + raise HTTPException(status_code=500, detail=f"Error loading users: {e}") + + +@app.get("/project/{project_id}/recommendations", response_model=schemas.RecommendationResponse) +def get_recommendations( + project_id: int, + user_id: Optional[str] = None, + item_title: Optional[str] = None, + n: int = 10, + db: Session = Depends(database.get_db) +): + db_project = db.query(models.RecommenderProject).filter(models.RecommenderProject.id == project_id).first() + + if not db_project: + raise HTTPException(status_code=404, detail="Project not found.") + if db_project.status != models.ProjectStatus.READY: + raise HTTPException(status_code=400, detail=f"Project status is {db_project.status}.") + if not db_project.mlflow_model_name: + raise HTTPException(status_code=404, detail="Model not found in registry.") + + model_type = db_project.model_type + if model_type == models.ModelType.CONTENT and not item_title: + raise HTTPException(status_code=400, detail="item_title is required for this content-based model.") + if model_type == models.ModelType.COLLABORATIVE and not user_id: + raise HTTPException(status_code=400, detail="user_id is required for this collaborative model.") + if model_type == models.ModelType.HYBRID and (not user_id or not item_title): + raise HTTPException(status_code=400, detail="user_id and item_title are required for this hybrid model.") + + try: + model_uri = f"models:/{db_project.mlflow_model_name}/{db_project.mlflow_model_version}" + print(f"Loading model from URI: {model_uri}") + model = mlflow.pyfunc.load_model(model_uri) + + model_input = pd.DataFrame([{"user_id": user_id, "item_title": item_title, "n": n}]) + + result_json = model.predict(model_input)[0] + result = json.loads(result_json) + + if result["error"]: + raise ValueError(result["error"]) + + return schemas.RecommendationResponse( + input_item_title=item_title, + input_user_id=user_id, + model_type=model_type, + recommendations=result["recommendations"] + ) + + except ValueError as e: + raise HTTPException(status_code=404, detail=str(e)) + except Exception as e: + print(f"Error loading model or predicting: {e}") + raise HTTPException(status_code=500, detail=f"Error generating recommendations: {e}") \ No newline at end of file diff --git a/backend/back2/schemas.py b/backend/back2/schemas.py new file mode 100644 index 0000000..8a6f8d3 --- /dev/null +++ b/backend/back2/schemas.py @@ -0,0 +1,55 @@ +from pydantic import BaseModel +from typing import List, Dict, Optional +from models import ProjectStatus, ModelType, FileType + +# --- SchemaMapping Schemas --- +class SchemaMappingBase(BaseModel): + app_schema_key: str + user_csv_column: str + +class SchemaMapping(SchemaMappingBase): + id: int + file_id: int + class Config: + orm_mode = True + +# --- UploadedFile Schemas --- +class UploadedFileBase(BaseModel): + original_filename: str + storage_path: str + file_type: FileType + +class UploadedFile(UploadedFileBase): + id: int + project_id: int + schema_mappings: List[SchemaMapping] = [] + class Config: + orm_mode = True + +# --- RecommenderProject Schemas --- +class RecommenderProjectBase(BaseModel): + project_name: str + +class RecommenderProject(RecommenderProjectBase): + id: int + status: ProjectStatus + model_type: Optional[ModelType] + mlflow_model_name: Optional[str] + mlflow_model_version: Optional[int] + uploaded_files: List[UploadedFile] = [] + class Config: + orm_mode = True + +# --- API Response Schemas --- +class RecommendationResponse(BaseModel): + input_item_title: Optional[str] + input_user_id: Optional[str] + model_type: ModelType + recommendations: List[Dict] + +class ProjectItemResponse(BaseModel): + id: str + title: str + +class ProjectUserResponse(BaseModel): + id: str \ No newline at end of file diff --git a/backend/main.py b/backend/main.py deleted file mode 100644 index 7180420..0000000 --- a/backend/main.py +++ /dev/null @@ -1,43 +0,0 @@ -from fastapi import FastAPI, Query -from fastapi.middleware.cors import CORSMiddleware -from pydantic import BaseModel -import joblib -import numpy as np -from sklearn.metrics.pairwise import cosine_similarity -from sentence_transformers import SentenceTransformer - -# Load saved data -data = joblib.load("music_recommender.pkl") -tracks = data["tracks"] -track_embeddings = data["track_embeddings"] - -# Load embedding model -model = SentenceTransformer('all-MiniLM-L6-v2') - -# FastAPI app -app = FastAPI() - -# Enable CORS so frontend (Vite) can call it -app.add_middleware( - CORSMiddleware, - allow_origins=["*"], # or restrict to ["http://localhost:5173"] for vite - allow_credentials=True, - allow_methods=["*"], - allow_headers=["*"], -) - -# Request schema -class QueryRequest(BaseModel): - text: str - k: int = 5 - -@app.post("/recommend") -def recommend(req: QueryRequest): - # Embed query - query_emb = model.encode([req.text], normalize_embeddings=True) - sims = cosine_similarity(query_emb, track_embeddings)[0] - idxs = np.argsort(-sims)[:req.k] - - # Prepare results - results = tracks.iloc[idxs][["track_name"]].to_dict(orient="records") - return {"query": req.text, "recommendations": results} diff --git a/backend/music_recommender.pkl b/backend/music_recommender.pkl deleted file mode 100644 index 1525322..0000000 Binary files a/backend/music_recommender.pkl and /dev/null differ diff --git a/backend/requirements.txt b/backend/requirements.txt deleted file mode 100644 index 2ec7e97..0000000 --- a/backend/requirements.txt +++ /dev/null @@ -1,7 +0,0 @@ -fastapi -uvicorn -joblib -scikit-learn -sentence-transformers -pandas -numpy diff --git a/example_datasets/Movies/movies.csv b/example_datasets/Movies/movies.csv new file mode 100644 index 0000000..c808168 --- /dev/null +++ b/example_datasets/Movies/movies.csv @@ -0,0 +1,8561 @@ +,id,title,overview,release_date,popularity,vote_average,vote_count +0,278,The Shawshank Redemption,"Imprisoned in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.",1994-09-23,26.9579,8.712,28675 +1,238,The Godfather,"Spanning the years 1945 to 1955, a chronicle of the fictional Italian-American Corleone crime family. When organized crime family patriarch, Vito Corleone barely survives an attempt on his life, his youngest son, Michael steps in to take care of the would-be killers, launching a campaign of bloody revenge.",1972-03-14,26.5804,8.686,21701 +2,240,The Godfather Part II,"In the continuing saga of the Corleone crime family, a young Vito Corleone grows up in Sicily and in 1910s New York. In the 1950s, Michael Corleone attempts to expand the family business into Las Vegas, Hollywood and Cuba.",1974-12-20,15.6559,8.571,13099 +3,424,Schindler's List,The true story of how businessman Oskar Schindler saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory during World War II.,1993-12-15,12.5642,8.565,16616 +4,389,12 Angry Men,"The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young Spanish-American is guilty or innocent of murdering his father. What begins as an open and shut case soon becomes a mini-drama of each of the jurors' prejudices and preconceptions about the trial, the accused, and each other.",1957-04-10,14.6028,8.549,9307 +5,129,Spirited Away,"A young girl, Chihiro, becomes trapped in a strange new world of spirits. When her parents undergo a mysterious transformation, she must call upon the courage she never knew she had to free her family.",2001-07-20,16.6692,8.5,17354 +6,155,The Dark Knight,"Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.",2008-07-16,23.0577,8.522,34200 +7,19404,Dilwale Dulhania Le Jayenge,"Raj is a rich, carefree, happy-go-lucky second generation NRI. Simran is the daughter of Chaudhary Baldev Singh, who in spite of being an NRI is very strict about adherence to Indian values. Simran has left for India to be married to her childhood fiancé. Raj leaves for India with a mission at his hands, to claim his lady love under the noses of her whole family. Thus begins a saga.",1995-10-20,5.5785,8.517,4500 +8,497,The Green Mile,"A supernatural tale set on death row in a Southern prison, where gentle giant John Coffey possesses the mysterious power to heal people's ailments. When the cell block's head guard, Paul Edgecomb, recognizes Coffey's miraculous gift, he tries desperately to help stave off the condemned man's execution.",1999-12-10,16.3836,8.503,18272 +9,496243,Parasite,"All unemployed, Ki-taek's family takes peculiar interest in the wealthy and glamorous Parks for their livelihood until they get entangled in an unexpected incident.",2019-05-30,17.7159,8.498,19343 +10,122,The Lord of the Rings: The Return of the King,"As armies mass for a final battle that will decide the fate of the world--and powerful, ancient forces of Light and Dark compete to determine the outcome--one member of the Fellowship of the Ring is revealed as the noble heir to the throne of the Kings of Men. Yet, the sole hope for triumph over evil lies with a brave hobbit, Frodo, who, accompanied by his loyal friend Sam and the hideous, wretched Gollum, ventures deep into the very dark heart of Mordor on his seemingly impossible quest to destroy the Ring of Power.​",2003-12-17,18.6836,8.488,25326 +11,680,Pulp Fiction,"A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.",1994-09-10,17.3613,8.487,28951 +12,372058,Your Name.,"High schoolers Mitsuha and Taki are complete strangers living separate lives. But one night, they suddenly switch places. Mitsuha wakes up in Taki’s body, and he in hers. This bizarre occurrence continues to happen randomly, and the two must adjust their lives around each other.",2016-08-26,11.783,8.5,11908 +13,13,Forrest Gump,"A man with a low IQ has accomplished great things in his life and been present during significant historic events—in each case, far exceeding what anyone imagined he could do. But despite all he has achieved, his one true love eludes him.",1994-06-23,17.4356,8.467,28497 +14,429,"The Good, the Bad and the Ugly","While the Civil War rages on between the Union and the Confederacy, three men – a quiet loner, a ruthless hitman, and a Mexican bandit – comb the American Southwest in search of a strongbox containing $200,000 in stolen gold.",1966-12-22,10.6571,8.465,9108 +15,157336,Interstellar,The adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.,2014-11-05,39.9908,8.458,37616 +16,346,Seven Samurai,"A samurai answers a village's request for protection after he falls on hard times. The town needs protection from bandits, so the samurai gathers six others to help him teach the people how to defend themselves, and the villagers provide the soldiers with food.",1954-04-26,6.7751,8.456,3959 +17,769,GoodFellas,"The true story of Henry Hill, a half-Irish, half-Sicilian Brooklyn kid who is adopted by neighbourhood gangsters at an early age and climbs the ranks of a Mafia family under the guidance of Jimmy Conway.",1990-09-12,12.34,8.454,13532 +18,12477,Grave of the Fireflies,"In the final months of World War II, 14-year-old Seita and his sister Setsuko are orphaned when their mother is killed during an air raid in Kobe, Japan. After a falling out with their aunt, they move into an abandoned bomb shelter. With no surviving relatives and their emergency rations depleted, Seita and Setsuko struggle to survive.",1988-04-16,0.0095,8.4,5999 +19,637,Life Is Beautiful,A touching story of an Italian book seller of Jewish ancestry who lives in his own little fairy tale. His creative and happy life would come to an abrupt halt when his entire family is deported to a concentration camp during World War II. While locked up he tries to convince his son that the whole thing is just a game.,1997-12-20,7.5191,8.443,13476 +20,550,Fight Club,"A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground ""fight clubs"" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.",1999-10-15,18.1512,8.4,30582 +21,11216,Cinema Paradiso,"A filmmaker recalls his childhood, when he fell in love with the movies at his village's theater and formed a deep friendship with the theater's projectionist.",1988-11-17,5.5745,8.4,4578 +22,667257,Impossible Things,"After the death of her abusive husband, Matilde finds her new best friend in Miguel, her young, insecure, and disoriented neighbor.",2021-06-17,0.7889,8.43,410 +23,14537,Harakiri,"Down-on-his-luck veteran Tsugumo Hanshirō enters the courtyard of the prosperous House of Iyi. Unemployed, and with no family, he hopes to find a place to commit seppuku—and a worthy second to deliver the coup de grâce in his suicide ritual. The senior counselor for the Iyi clan questions the ronin’s resolve and integrity, suspecting Hanshirō of seeking charity rather than an honorable end. What follows is a pair of interlocking stories which lay bare the difference between honor and respect, and promises to examine the legendary foundations of the Samurai code.",1962-09-15,3.8473,8.429,1108 +24,598,City of God,"In the poverty-stricken favelas of Rio de Janeiro in the 1970s, two young men choose different paths. Rocket is a budding photographer who documents the increasing drug-related violence of his neighborhood, while José “Zé” Pequeno is an ambitious drug dealer diving into a dangerous life of crime.",2002-08-30,7.5212,8.429,7743 +25,40096,A Dog's Will,"The lively João Grilo and the sly Chicó are poor guys living in the hinterland who cheat a bunch of people in a small town in Northeastern Brazil. When they die, they have to be judged by Christ, the Devil and the Virgin Mary before they are admitted to paradise.",2000-09-15,1.7312,8.426,1176 +26,803796,KPop Demon Hunters,"When K-pop superstars Rumi, Mira and Zoey aren't selling out stadiums, they're using their secret powers to protect their fans from supernatural threats.",2025-06-20,158.0071,8.424,975 +27,120,The Lord of the Rings: The Fellowship of the Ring,"Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.",2001-12-18,22.5808,8.4,26239 +28,539,Psycho,"When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother.",1960-06-22,8.0954,8.421,10460 +29,510,One Flew Over the Cuckoo's Nest,"A petty criminal fakes insanity to serve his sentence in a mental ward rather than prison. He soon finds himself as a leader to the other patients—and an enemy to the cruel, domineering nurse who runs the ward.",1975-11-19,7.1077,8.413,10888 +30,696374,Gabriel's Inferno,"An intriguing and sinful exploration of seduction, forbidden love, and redemption, Gabriel's Inferno is a captivating and wildly passionate tale of one man's escape from his own personal hell as he tries to earn the impossible--forgiveness and love.",2020-05-29,1.7933,8.4,2427 +31,311,Once Upon a Time in America,"A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.",1984-05-23,6.5963,8.41,5679 +32,121,The Lord of the Rings: The Two Towers,"Frodo Baggins and the other members of the Fellowship continue on their sacred quest to destroy the One Ring--but on separate paths. Their destinies lie at two towers--Orthanc Tower in Isengard, where the corrupt wizard Saruman awaits, and Sauron's fortress at Barad-dur, deep within the dark lands of Mordor. Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli, Legolas and Aragorn search for the orc-captured Merry and Pippin. All along, nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.",2002-12-18,16.1983,8.408,22801 +33,324857,Spider-Man: Into the Spider-Verse,"Struggling to find his place in the world while juggling school and family, Brooklyn teenager Miles Morales is unexpectedly bitten by a radioactive spider and develops unfathomable powers just like the one and only Spider-Man. While wrestling with the implications of his new abilities, Miles discovers a super collider created by the madman Wilson ""Kingpin"" Fisk, causing others from across the Spider-Verse to be inadvertently transported to his dimension.",2018-12-06,16.1113,8.398,16327 +34,255709,Hope,"After 8-year-old So-won narrowly survives a brutal sexual assault, her family labors to help her heal while coping with their own rage and grief.",2013-10-02,3.6307,8.398,793 +35,4935,Howl's Moving Castle,"Sophie, a young milliner, is turned into an elderly woman by a witch who enters her shop and curses her. She encounters a wizard named Howl and gets caught up in his resistance to fighting for the king.",2004-09-09,11.4129,8.397,10442 +36,1891,The Empire Strikes Back,"The epic saga continues as Luke Skywalker, in hopes of defeating the evil Galactic Empire, learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile, rebel leader Princess Leia, cocky Han Solo, Chewbacca, and droids C-3PO and R2-D2 are thrown into various stages of capture, betrayal and despair.",1980-05-20,7.2453,8.396,17587 +37,704264,Primal: Tales of Savagery,"Genndy Tartakovsky's Primal: Tales of Savagery features a caveman and a dinosaur on the brink of extinction. Bonded by tragedy, this unlikely friendship becomes the only hope of survival.",2019-11-21,1.2676,8.386,341 +38,378064,A Silent Voice: The Movie,"Shouya Ishida starts bullying the new girl in class, Shouko Nishimiya, because she is deaf. But as the teasing continues, the rest of the class starts to turn on Shouya for his lack of compassion. When they leave elementary school, Shouko and Shouya do not speak to each other again... until an older, wiser Shouya, tormented by his past behaviour, decides he must see Shouko once more. He wants to atone for his sins, but is it already too late...?",2016-09-17,7.351,8.4,4181 +39,423,The Pianist,"The true story of pianist Władysław Szpilman's experiences in Warsaw during the Nazi occupation. When the Jews of the city find themselves forced into a ghetto, Szpilman finds work playing in a café; and when his family is deported in 1942, he stays behind, works for a while as a laborer, and eventually goes into hiding in the ruins of the war-torn city.",2002-09-17,9.8492,8.38,9622 +40,724089,Gabriel's Inferno: Part II,"Professor Gabriel Emerson finally learns the truth about Julia Mitchell's identity, but his realization comes a moment too late. Julia is done waiting for the well-respected Dante specialist to remember her and wants nothing more to do with him. Can Gabriel win back her heart before she finds love in another's arms?",2020-07-31,1.0821,8.379,1527 +41,244786,Whiplash,"Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.",2014-10-10,13.0647,8.377,15818 +42,807,Se7en,"Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the ""seven deadly sins"" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Somerset researches each sin in an effort to get inside the killer's mind, while his novice partner, Mills, scoffs at his efforts to unravel the case.",1995-09-22,19.0441,8.375,21953 +43,761053,Gabriel's Inferno: Part III,The final part of the film adaption of the erotic romance novel Gabriel's Inferno written by an anonymous Canadian author under the pen name Sylvain Reynard.,2020-11-19,2.7255,8.4,1063 +44,770156,Lucy Shimmers and the Prince of Peace,Second chances start when a hardened criminal crosses paths with a precocious little girl who is helped by an angel to change hearts during the holiday season.,2020-10-19,4.1656,8.372,317 +45,27205,Inception,"Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: ""inception"", the implantation of another person's idea into a target's subconscious.",2010-07-15,27.4505,8.369,37773 +46,1058694,Radical,"In a Mexican border town plagued by neglect, corruption, and violence, a frustrated teacher tries an unorthodox new method to break through his students’ apathy and unlock their curiosity, their potential... and perhaps even their genius.",2023-10-19,2.7321,8.363,470 +47,12493,High and Low,"In the midst of an attempt to take over his company, a powerhouse executive is hit with a huge ransom demand when his chauffeur's son is kidnapped by mistake.",1963-03-01,4.4645,8.349,1010 +48,567,Rear Window,A wheelchair-bound photographer spies on his neighbors from his apartment window and becomes convinced one of them has committed murder.,1954-08-01,6.3895,8.3,6790 +49,274,The Silence of the Lambs,"Clarice Starling is a top student at the FBI's training academy. Jack Crawford wants Clarice to interview Dr. Hannibal Lecter, a brilliant psychiatrist who is also a violent psychopath, serving life behind bars for various acts of murder and cannibalism. Crawford believes that Lecter may have insight into a case and that Starling, as an attractive young woman, may be just the bait to draw him out.",1991-02-14,3.0154,8.347,17001 +50,569094,Spider-Man: Across the Spider-Verse,"After reuniting with Gwen Stacy, Brooklyn’s full-time, friendly neighborhood Spider-Man is catapulted across the Multiverse, where he encounters the Spider Society, a team of Spider-People charged with protecting the Multiverse’s very existence. But when the heroes clash on how to handle a new threat, Miles finds himself pitted against the other Spiders and must set out on his own to save those he loves most.",2023-05-31,21.4424,8.3,7774 +51,620249,The Legend of Hei,"When cat spirit Luo Xiaohei's home is deforested by humans, he must find a new one. He runs into a group of other spirit creatures who take him under their wing with dreams of reconquering the land they say is rightfully theirs. However, they run into a human known as Wuxian who separates Luo Xiaohei from the other spirits and the two go on a journey, with the cat spirit learning to control his abilities as well as forming his own thoughts on whether or not he should ally with the spirits or the humans.",2019-08-27,2.8597,8.3,398 +52,73,American History X,"Derek Vineyard is paroled after serving 3 years in prison for killing two African-American men. Through his brother, Danny Vineyard's narration, we learn that before going to prison, Derek was a skinhead and the leader of a violent white supremacist gang that committed acts of racial crime throughout L.A. and his actions greatly influenced Danny. Reformed and fresh out of prison, Derek severs contact with the gang and becomes determined to keep Danny from going down the same violent path as he did.",1998-07-01,5.692,8.336,11969 +53,820067,The Quintessential Quintuplets Movie,"When five lovely young girls who hate studying hire part-time tutor Futaro, he guides not only their education but also their hearts. Time spent has brought them all closer, with feelings growing within the girls and Futaro. As they finish their third year of high school and their last school festival approaches, they set their sights on what’s next. Is there a future with one of them and Futaro?",2022-05-20,2.6314,8.331,416 +54,128,Princess Mononoke,"Ashitaka, a prince of the disappearing Emishi people, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.",1997-07-12,7.6455,8.3,8465 +55,372754,Dou kyu sei – Classmates,"Rihito Sajo, an honor student with a perfect score on the entrance exam and Hikaru Kusakabe, in a band and popular among girls, would have never crossed paths. Until one day they started talking at the practice for their school’s upcoming chorus festival. After school, the two meet regularly, as Hikaru helps Rihito to improve his singing skills. While they listen to each other’s voice and harmonize, their hearts start to beat together.",2016-02-20,2.0197,8.324,410 +56,15804,A Brighter Summer Day,"A boy experiences first love, friendships and injustices growing up in 1960s Taiwan.",1991-07-27,2.3987,8.311,347 +57,105,Back to the Future,"Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.",1985-07-03,14.5355,8.322,20762 +58,1184918,The Wild Robot,"After a shipwreck, an intelligent robot called Roz is stranded on an uninhabited island. To survive the harsh environment, Roz bonds with the island's animals and cares for an orphaned baby goose.",2024-09-12,24.568,8.319,5240 +59,1356039,Counterattack,"When a hostage rescue mission creates a new enemy, Capt. Guerrero and his elite soldiers must face an ambush by a criminal group.",2025-02-27,13.9538,8.311,726 +60,652837,"Josee, the Tiger and the Fish","With dreams of diving abroad, Tsuneo gets a job assisting Josee, an artist whose imagination takes her far beyond her wheelchair. But when the tide turns against them, they push each other to places they never thought possible, and inspire a love fit for a storybook.",2020-12-25,2.3244,8.309,523 +61,3782,Ikiru,"Kanji Watanabe is a middle-aged man who has worked in the same monotonous bureaucratic position for decades. Learning he has cancer, he starts to look for the meaning of his life.",1952-10-09,4.2442,8.3,1224 +62,10494,Perfect Blue,"Encouraged by her managers, rising pop star Mima takes on a recurring role on a popular TV show, when suddenly her handlers and collaborators begin turning up murdered.",1998-02-28,6.3941,8.303,2876 +63,101,Léon: The Professional,"Léon, the top hit man in New York, has earned a rep as an effective ""cleaner"". But when his next-door neighbors are wiped out by a loose-cannon DEA agent, he becomes the unwilling custodian of 12-year-old Mathilda. Before long, Mathilda's thoughts turn to revenge, and she considers following in Léon's footsteps.",1994-09-14,10.4547,8.3,15363 +64,207,Dead Poets Society,"At an elite, old-fashioned boarding school in New England, a passionate English teacher inspires his students to rebel against convention and seize the potential of every day, courting the disdain of the stern headmaster.",1989-06-02,13.4628,8.3,11803 +65,533514,Violet Evergarden: The Movie,"As the world moves on from the war and technological advances bring changes to her life, Violet still hopes to see her lost commanding officer again.",2020-09-18,2.487,8.3,456 +66,599,Sunset Boulevard,A hack screenwriter writes a screenplay for a former silent film star who has faded into Hollywood obscurity.,1950-08-10,5.0251,8.3,2726 +67,914,The Great Dictator,Dictator Adenoid Hynkel tries to expand his empire while a poor Jewish barber tries to avoid persecution from Hynkel's regime.,1940-10-15,3.0295,8.292,3505 +68,644479,Dedicated to my ex,"The film tells the story of Ariel, a 21-year-old who decides to form a rock band to compete for a prize of ten thousand dollars in a musical band contest, this as a last option when trying to get money to save their relationship and reunite with his ex-girlfriend, which breaks due to the trip she must make to Finland for an internship. Ariel with her friend Ortega, decides to make a casting to find the other members of the band, although they do not know nothing about music, thus forming a band with members that have diverse and opposite personalities.",2019-11-01,1.4206,8.286,512 +69,42269,We All Loved Each Other So Much,"Three partisans bound by a strong friendship return home after the war, but the clash with everyday reality puts a strain on their bond.",1974-12-21,1.1125,8.284,608 +70,335,Once Upon a Time in the West,"As the railroad builders advance unstoppably through the Arizona desert on their way to the sea, Jill arrives in the small town of Flagstone with the intention of starting a new life.",1968-12-21,7.0073,8.283,4592 +71,92321,Hotarubi no Mori e,"One hot summer day a little girl gets lost in an enchanted forest of the mountain god where spirits reside. A young boy appears before her, but she cannot touch him for fear of making him disappear. And so a wondrous adventure awaits...",2011-09-17,0.0034,8.3,1157 +72,632632,Given,"Haruki secretly had feelings for Akihiko for years, but Akihiko was still in a relationship with his roommate, the violinist Ugetsu Murata. Haruki, Akihiko, and Ugetsu's love clashes and starts to move forward.",2020-08-22,1.4404,8.3,405 +73,3082,Modern Times,"A bumbling tramp desires to build a home with a young woman, yet is thwarted time and time again by his lack of experience and habit of being in the wrong place at the wrong time..",1936-02-05,2.5141,8.28,3866 +74,1139087,Once Upon a Studio,"Created for Disney's 100th anniversary, the short features Mickey Mouse corralling a gallery of legendary Disney characters for a group photo.",2023-09-24,2.8205,8.275,400 +75,18491,Neon Genesis Evangelion: The End of Evangelion,"SEELE orders an all-out attack on NERV, aiming to destroy the Evas before Gendo can advance his own plans for the Human Instrumentality Project. Shinji is pushed to the limits of his sanity as he is forced to decide the fate of humanity.",1997-07-19,4.9385,8.274,1708 +76,77338,The Intouchables,A true story of two men who should never have met – a quadriplegic aristocrat who was injured in a paragliding accident and a young man from the projects.,2011-11-02,11.5656,8.272,17763 +77,1585,It's a Wonderful Life,"A holiday favourite for generations... George Bailey has spent his entire life giving to the people of Bedford Falls. All that prevents rich skinflint Mr. Potter from taking over the entire town is George's modest building and loan company. But on Christmas Eve the business's $8,000 is lost and George's troubles begin.",1946-12-20,7.1387,8.27,4562 +78,28,Apocalypse Now,"At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, ""does not exist, nor will it ever exist."" His goal is to locate - and eliminate - a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.",1979-05-19,7.7281,8.271,8580 +79,901,City Lights,A tramp falls in love with a beautiful blind flower girl. His on-and-off friendship with a wealthy man allows him to be the girl's benefactor and suitor.,1931-02-06,2.8663,8.265,2304 +80,975,Paths of Glory,A commanding officer defends three scapegoats on trial for a failed offensive that occurred within the French Army in 1916.,1957-10-25,3.509,8.3,3070 +81,8587,The Lion King,"Young lion prince Simba, eager to one day become king of the Pride Lands, grows up under the watchful eye of his father Mufasa; all the while his villainous uncle Scar conspires to take the throne for himself. Amid betrayal and tragedy, Simba must confront his past and find his rightful place in the Circle of Life.",1994-06-15,16.95,8.257,18925 +82,637920,Miracle in Cell No. 7,"Separated from his daughter, a father with an intellectual disability must prove his innocence when he is jailed for the death of a commander's child.",2019-10-10,4.3198,8.3,4479 +83,29259,Le Trou,"Four prison inmates have been hatching a plan to literally dig out of jail when another prisoner, Claude Gaspard, is moved into their cell. They take a risk and share their plan with the newcomer. Over the course of three days, the prisoners and friends break through the concrete floor using a bed post and begin to make their way through the sewer system -- yet their escape is anything but assured.",1960-03-18,2.5255,8.255,514 +84,572154,Rascal Does Not Dream of a Dreaming Girl,"In Fujisawa, Sakuta Azusagawa is in his second year of high school. Blissful days with his girlfriend and upperclassman, Mai Sakurajima, are interrupted by the appearance of his first crush, Shoko Makinohara.",2019-06-15,2.1773,8.252,547 +85,670,Oldboy,"With no clue how he came to be imprisoned, drugged and tortured for 15 years, a desperate man seeks revenge on his captors.",2003-11-21,11.2556,8.252,9138 +86,10376,The Legend of 1900,"The story of a virtuoso piano player who lives his entire life aboard an ocean liner. Born and raised on the ship, 1900 learned about the outside world through interactions with passengers, never setting foot on land, even for the love of his life. Years later, the ship may be destroyed, and a former band member fears that 1900 may still be aboard, willing to go down with the ship.",1998-10-28,3.093,8.2,2334 +87,568332,Taylor Swift: Reputation Stadium Tour,"Taylor Swift takes the stage in Dallas for the Reputation Stadium Tour and celebrates a monumental night of music, memories and visual magic.",2018-12-31,0.8377,8.2,408 +88,504253,I Want to Eat Your Pancreas,"After his classmate and crush is diagnosed with a pancreatic disease, an average high schooler sets out to make the most of her final days.",2018-09-01,3.8987,8.2,1648 +89,630566,Clouds,"Young musician Zach Sobiech discovers his cancer has spread, leaving him just a few months to live. With limited time, he follows his dream and makes an album, unaware that it will soon be a viral music phenomenon.",2020-10-09,2.0535,8.242,1029 +90,447362,Life in a Year,"A 17 year old finds out that his girlfriend is dying, so he sets out to give her an entire life, in the last year she has left.",2020-11-27,5.1547,8.242,1924 +91,299534,Avengers: Endgame,"After the devastating events of Avengers: Infinity War, the universe is in ruins due to the efforts of the Mad Titan, Thanos. With the help of remaining allies, the Avengers must assemble once more in order to undo Thanos' actions and restore order to the universe once and for all, no matter what consequences may be in store.",2019-04-24,17.2491,8.239,26591 +92,508965,Klaus,"When Jesper distinguishes himself as the Postal Academy's worst student, he is sent to Smeerensburg, a small village located on an icy island above the Arctic Circle, where grumpy inhabitants barely exchange words, let alone letters. Jesper is about to give up and abandon his duty as a postman when he meets local teacher Alva and Klaus, a mysterious carpenter who lives alone in a cabin full of handmade toys.",2019-11-08,3.989,8.236,4328 +93,299536,Avengers: Infinity War,"As the Avengers and their allies have continued to protect the world from threats too large for any one hero to handle, a new danger has emerged from the cosmic shadows: Thanos. A despot of intergalactic infamy, his goal is to collect all six Infinity Stones, artifacts of unimaginable power, and use them to inflict his twisted will on all of reality. Everything the Avengers have fought for has led up to this moment - the fate of Earth and existence itself has never been more uncertain.",2018-04-25,29.7111,8.236,30808 +94,283566,Evangelion: 3.0+1.0 Thrice Upon a Time,"In the aftermath of the Fourth Impact, stranded without their Evangelions, Shinji, Asuka and Rei find refuge in one of the rare pockets of humanity that still exist on the ruined planet Earth. There, each lives a life far different from their days as an Evangelion pilot. However, the danger to the world is far from over. A new impact is looming on the horizon—one that will prove to be the true end of Evangelion.",2021-03-08,3.9629,8.2,860 +95,527641,Five Feet Apart,"Seventeen-year-old Stella spends most of her time in the hospital as a cystic fibrosis patient. Her life is full of routines, boundaries and self-control — all of which get put to the test when she meets Will, an impossibly charming teen who has the same illness. There's an instant flirtation, though restrictions dictate that they must maintain a safe distance between them. As their connection intensifies, so does the temptation to throw the rules out the window and embrace that attraction.",2019-03-14,6.8891,8.233,5764 +96,603,The Matrix,"Set in the 22nd century, The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.",1999-03-31,17.1083,8.2,26647 +97,25237,Come and See,"The invasion of a village in Byelorussia by German forces sends young Florya into the forest to join the weary Resistance fighters, against his family's wishes. There he meets a girl, Glasha, who accompanies him back to his village. On returning home, Florya finds his family and fellow peasants massacred. His continued survival amidst the brutal debris of war becomes increasingly nightmarish, a battle between despair and hope.",1985-10-17,6.8534,8.229,1650 +98,24188,Il Sorpasso,"Roberto, a shy law student in Rome, meets Bruno, a forty-year-old exuberant, capricious man, who takes him for a drive through the Roman and Tuscany countries in the summer. When their journey starts to blend into their daily lives though, the pair’s newfound friendship is tested.",1962-12-05,1.3597,8.229,802 +99,829402,Ultraman: Rising,"A star athlete reluctantly returns home to take over his father's duties as Ultraman, shielding Tokyo from giant monsters as he becomes a legendary hero.",2024-06-14,4.489,8.228,338 +100,654299,Out of the Clear Blue Sky,"Returning to Earth as an imitator, the legendary Mexican artist Pedro Infante must prove that he is no longer a womanizer to enter paradise.",2019-12-24,0.8773,8.228,360 +101,490132,Green Book,"Tony Lip, a bouncer in 1962, is hired to drive pianist Don Shirley on a tour through the Deep South in the days when African Americans, forced to find alternate accommodations and services due to segregation laws below the Mason-Dixon Line, relied on a guide called The Negro Motorist Green Book.",2018-11-16,12.0579,8.227,12162 +102,265177,Mommy,"A peculiar neighbor offers hope to a recent widow who is struggling to raise a teenager who is unpredictable and, sometimes, violent.",2014-09-19,2.1831,8.225,2772 +103,110420,Wolf Children,"After her werewolf lover unexpectedly dies in an accident, a woman must find a way to raise the son and daughter that she had with him. However, their inheritance of their father's traits prove to be a challenge for her.",2012-07-21,3.7496,8.222,2360 +104,98,Gladiator,"After the death of Emperor Marcus Aurelius, his devious son takes power and demotes Maximus, one of Rome's most capable generals who Marcus preferred. Eventually, Maximus is forced to become a gladiator and battle to the death against other men for the amusement of paying audiences.",2000-05-04,15.467,8.2,19926 +105,618344,Justice League Dark: Apokolips War,"Earth is decimated after intergalactic tyrant Darkseid has devastated the Justice League in a poorly executed war by the DC Super Heroes. Now the remaining bastions of good – the Justice League, Teen Titans, Suicide Squad and assorted others – must regroup, strategize and take the war to Darkseid in order to save the planet and its surviving inhabitants.",2020-05-05,4.0122,8.22,1505 +106,857,Saving Private Ryan,"As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.",1998-07-24,10.6079,8.22,16440 +107,315162,Puss in Boots: The Last Wish,"Puss in Boots discovers that his passion for adventure has taken its toll: He has burned through eight of his nine lives, leaving him with only one life left. Puss sets out on an epic journey to find the mythical Last Wish and restore his nine lives.",2022-12-07,13.9104,8.215,8332 +108,37257,Witness for the Prosecution,An ailing barrister agrees to defend a man in a sensational murder trial where the unconvincing testimony of the defendant's wife becomes a subject of confusion.,1957-12-17,3.9938,8.215,1523 +109,16869,Inglourious Basterds,"In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as ""The Basterds"" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.",2009-08-02,18.5827,8.214,23086 +110,995133,"The Boy, the Mole, the Fox and the Horse","The unlikely friendship of a boy, a mole, a fox and a horse traveling together in the boy's search for home.",2022-12-25,5.394,8.2,649 +111,441130,Wolfwalkers,"In a time of superstition and magic, when wolves are seen as demonic and nature an evil to be tamed, a young apprentice hunter comes to Ireland with her father to wipe out the last pack. But when she saves a wild native girl, their friendship leads her to discover the world of the Wolfwalkers and transform her into the very thing her father is tasked to destroy.",2020-10-26,2.8946,8.213,1278 +112,16672,Woman in the Dunes,A vacationing entomologist suffers extreme physical and psychological trauma after being taken captive by the residents of a poor seaside village and made to live with a woman whose life task is shoveling sand for them.,1964-02-15,2.7565,8.215,483 +113,694,The Shining,"Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren't prepared for the madness that lurks within.",1980-05-23,12.1039,8.2,18095 +114,1160164,TAYLOR SWIFT | THE ERAS TOUR,"A concert film documenting Taylor Swift's record-breaking Eras Tour (2023-2024). Filmed during the Los Angeles shows, the film captures the tour's ten acts, each representing a different musical era from Swift's career. The film showcases over 40 songs, elaborate stage productions, and Swift's performance.",2023-10-13,1.9925,8.211,457 +115,635302,Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train,"Tanjiro Kamado, joined with Inosuke Hashibira, a boy raised by boars who wears a boar's head, and Zenitsu Agatsuma, a scared boy who reveals his true power when he sleeps, boards the Infinity Train on a new mission with the Fire Hashira, Kyojuro Rengoku, to defeat a demon who has been tormenting the people and killing the demon slayers who oppose it!",2020-10-16,17.1491,8.209,4150 +116,50014,The Help,"Aibileen Clark is a middle-aged African-American maid who has spent her life raising white children and has recently lost her only son; Minny Jackson is an African-American maid who has often offended her employers despite her family's struggles with money and her desperate need for jobs; and Eugenia ""Skeeter"" Phelan is a young white woman who has recently moved back home after graduating college to find out her childhood maid has mysteriously disappeared. These three stories intertwine to explain how life in Jackson, Mississippi revolves around ""the help""; yet they are always kept at a certain distance because of racial lines.",2011-08-09,10.9522,8.207,8636 +117,11,Star Wars,Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.,1977-05-25,19.457,8.2,21377 +118,522924,The Art of Racing in the Rain,"A family dog – with a near-human soul and a philosopher's mind – evaluates his life through the lessons learned by his human owner, a race-car driver.",2019-08-08,2.6948,8.2,1533 +119,290098,The Handmaiden,"1930s Korea, in the period of Japanese occupation, a new girl, Sookee, is hired as a handmaiden to a Japanese heiress, Hideko, who lives a secluded life on a large countryside estate with her domineering Uncle Kouzuki. But the maid has a secret. She is a pickpocket recruited by a swindler posing as a Japanese Count to help him seduce the Lady to elope with him, rob her of her fortune, and lock her up in a madhouse. The plan seems to proceed according to plan until Sookee and Hideko discover some unexpected emotions.",2016-06-01,13.6396,8.204,3993 +120,92060,Michael Jackson's Thriller,"A night at the movies turns into a nightmare when Michael and his date are attacked by a horde of bloody-thirsty zombies. On top of the success of the Thriller album and Michael Jackson's electrifying performance at Motown 25, the short film/music video for ""Thriller"" established Jackson as an international superstar and global phenomenon. Thriller is credited for transforming music videos into a serious art form, breaking down racial barriers in popular entertainment, popularizing the making-of documentary format and creating a home video market. The success transformed Jackson into a dominant force in global pop culture. In 2009, it became the first music video inducted into the United States National Film Registry by the Library of Congress as ""culturally, historically or aesthetically significant"". ""Thriller"" was also Jackson's seventh and final U.S. Hot 100 Top 10 hit from the Thriller album. It was the first album in history to have seven U.S. Top 10s.",1983-11-14,1.512,8.2,714 +121,1124,The Prestige,"A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences.",2006-10-17,10.4599,8.2,16689 +122,354912,Coco,"Despite his family’s baffling generations-old ban on music, Miguel dreams of becoming an accomplished musician like his idol, Ernesto de la Cruz. Desperate to prove his talent, Miguel finds himself in the stunning and colorful Land of the Dead following a mysterious chain of events. Along the way, he meets charming trickster Hector, and together, they set off on an extraordinary journey to unlock the real story behind Miguel's family history.",2017-10-27,18.0772,8.2,20127 +123,11324,Shutter Island,"World War II soldier-turned-U.S. Marshal Teddy Daniels investigates the disappearance of a patient from a hospital for the criminally insane, but his efforts are compromised by troubling visions and a mysterious doctor.",2010-02-14,12.8402,8.201,24738 +124,620683,My Mom Is a Character 3,Dona Hermínia will have to rediscover and reinvent herself because her children are forming new families. This supermom will have to deal with a new life scenario: Marcelina is pregnant and Juliano is getting married.,2019-12-26,0.6118,8.199,483 +125,476292,Maquia: When the Promised Flower Blooms,"Maquia is a member of a special race called the Iorph who can live for hundreds of years. However, Maquia has always felt lonely despite being surrounded by her people, as she was orphaned from a young age. She daydreams about the outside world, but dares not travel from her home due to the warnings of the clan's chief. One day the kingdom of Mezarte invades her homeland. They already have what is left of the giant dragons, the Renato, under their control, and now their king wishes to add the immortality to his bloodline. They ravage the Iorph homeland and kill most of its inhabitants. Caught in the midst of the attack, Maquia is carried off by one of the Renato. It soon dies, and she is left deserted in a forest, now truly alone save for the cries of a single baby off in the distance. Maquia finds the baby in a destroyed village and decides to raise him as her own, naming him Ariel. Although she knows nothing of the human world, how to raise a child that ages much faster than her.",2018-02-24,3.0381,8.196,662 +126,313106,Doctor Who: The Day of the Doctor,"In 2013, something terrible is awakening in London's National Gallery; in 1562, a murderous plot is afoot in Elizabethan England; and somewhere in space an ancient battle reaches its devastating conclusion. All of reality is at stake as the Doctor's own dangerous past comes back to haunt him.",2013-11-23,1.8739,8.193,761 +127,284,The Apartment,"Bud Baxter is a minor clerk in a huge New York insurance company, until he discovers a quick way to climb the corporate ladder. He lends out his apartment to the executives as a place to take their mistresses. Although he often has to deal with the aftermath of their visits, one night he's left with a major problem to solve.",1960-06-21,3.4132,8.2,2458 +128,324786,Hacksaw Ridge,"WWII American Army Medic Desmond T. Doss, who served during the Battle of Okinawa, refuses to kill people and becomes the first Conscientious Objector in American history to receive the Congressional Medal of Honor.",2016-10-07,13.3066,8.2,14224 +129,185,A Clockwork Orange,"In a near-future Britain, young Alexander DeLarge and his pals get their kicks beating and raping anyone they please. When not destroying the lives of others, Alex swoons to the music of Beethoven. The state, eager to crack down on juvenile crime, gives an incarcerated Alex the option to undergo an invasive procedure that'll rob him of all personal agency. In a time when conscience is a commodity, can Alex change his tune?",1971-12-19,7.3517,8.186,13282 +130,68718,Django Unchained,"With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.",2012-12-25,10.4313,8.2,26962 +131,490,The Seventh Seal,"When disillusioned Swedish knight Antonius Block returns home from the Crusades to find his country in the grips of the Black Death, he challenges Death to a chess match for his life. Tormented by the belief that God does not exist, Block sets off on a journey, meeting up with traveling players Jof and his wife, Mia, and becoming determined to evade Death long enough to commit one redemptive act while he still lives.",1957-02-16,4.6198,8.182,3145 +132,851644,20th Century Girl,"In 1999, a teen girl keeps close tabs on a boy in school on behalf of her deeply smitten best friend – then she gets swept up in a love story of her own.",2022-10-06,9.2967,8.179,753 +133,537061,Steven Universe: The Movie,"Two years after bringing peace to the galaxy, Steven Universe sees his past come back to haunt him in the form of a deranged Gem who wants to destroy the Earth.",2019-10-07,2.9206,8.177,821 +134,5156,Bicycle Thieves,"Unemployed Antonio is elated when he finally finds work hanging posters around war-torn Rome. However on his first day, his bicycle—essential to his work—gets stolen. His job is doomed unless he can find the thief. With the help of his son, Antonio combs the city, becoming desperate for justice.",1948-07-21,3.4622,8.2,2512 +135,77,Memento,"Leonard Shelby is tracking down the man who raped and murdered his wife. The difficulty of locating his wife's killer, however, is compounded by the fact that he suffers from a rare, untreatable form of short-term memory loss. Although he can recall details of life before his accident, Leonard cannot remember what happened fifteen minutes ago, where he's going, or why.",2000-10-11,8.7174,8.177,15442 +136,26451,Investigation of a Citizen Above Suspicion,"Rome, Italy. After committing a heinous crime, a senior police officer exposes evidence incriminating him because his moral commitment prevents him from circumventing the law and the social order it protects.",1970-10-16,1.7134,8.176,822 +137,629,The Usual Suspects,"Held in an L.A. interrogation room, Verbal Kint attempts to convince the feds that a mythic crime lord, Keyser Soze, not only exists, but was also responsible for drawing him and his four partners into a multi-million dollar heist that ended with an explosion in San Pedro harbor – leaving few survivors. Verbal lures his interrogators with an incredible story of the crime lord's almost supernatural prowess.",1995-07-19,10.1012,8.173,10794 +138,361743,Top Gun: Maverick,"After more than thirty years of service as one of the Navy’s top aviators, and dodging the advancement in rank that would ground him, Pete “Maverick” Mitchell finds himself training a detachment of TOP GUN graduates for a specialized mission the likes of which no living pilot has ever seen.",2022-05-21,22.1195,8.169,10076 +139,18148,Tokyo Story,"The elderly Shukishi and his wife, Tomi, take the long journey from their small seaside village to visit their adult children in Tokyo. Their elder son, Koichi, a doctor, and their daughter, Shige, a hairdresser, don't have much time to spend with their aged parents, and so it falls to Noriko, the widow of their younger son who was killed in the war, to keep her in-laws company.",1953-11-03,4.014,8.2,1139 +140,823219,Flow,"A solitary cat, displaced by a great flood, finds refuge on a boat with various species and must navigate the challenges of adapting to a transformed world together.",2024-08-29,22.9735,8.166,2195 +141,348,Alien,"During its return to the earth, commercial spaceship Nostromo intercepts a distress signal from a distant planet. When a three-member team of the crew discovers a chamber containing thousands of eggs on the planet, a creature inside one of the eggs attacks an explorer. The entire crew is unaware of the impending nightmare set to descend upon them when the alien parasite planted inside its unfortunate host is birthed.",1979-05-25,16.7427,8.164,15480 +142,1422,The Departed,"To take down South Boston's Irish Mafia, the police send in one of their own to infiltrate the underworld, not realizing the syndicate has done likewise. While an undercover cop curries favor with the mob kingpin, a career criminal rises through the police ranks. But both sides soon discover there's a mole among them.",2006-10-04,9.3031,8.16,15444 +143,426,Vertigo,"A retired San Francisco detective suffering from acrophobia investigates the strange activities of an old friend's wife, all the while becoming dangerously obsessed with her.",1958-05-28,4.4898,8.2,5987 +144,111,Scarface,"After getting a green card in exchange for assassinating a Cuban government official, Tony Montana stakes a claim on the drug trade in Miami. Viciously murdering anyone who stands in his way, Tony eventually becomes the biggest drug lord in the state, controlling nearly all the cocaine that comes through Miami. But increased pressure from the police, wars with Colombian drug cartels and his own drug-fueled paranoia serve to fuel the flames of his eventual downfall.",1983-12-09,15.1661,8.2,12353 +145,812225,Black Clover: Sword of the Wizard King,"As a lionhearted boy who can't wield magic strives for the title of Wizard King, four banished Wizard Kings of yore return to crush the Clover Kingdom.",2023-06-16,5.0705,8.158,317 +146,20941,Innocent Voices,"A young boy, attempting to have a normal childhood in 1980s El Salvador, is caught up in a dramatic fight for his life when he desperately tries to avoid the war that is raging all around him.",2005-01-28,2.2187,8.158,505 +147,489,Good Will Hunting,"Headstrong yet aimless, Will Hunting has a genius-level IQ but chooses to work as a janitor at MIT. When he secretly solves highly difficult graduate-level math problems, his talents are discovered by Professor Gerald Lambeau, who decides to help the misguided youth reach his potential. When Will is arrested for attacking a police officer, Professor Lambeau makes a deal to get leniency for him if he gets court-ordered therapy. Eventually, therapist Dr. Sean Maguire helps Will confront the demons that are holding him back.",1997-12-05,13.8824,8.158,12980 +148,592350,My Hero Academia: Heroes Rising,"Class 1-A visits Nabu Island where they finally get to do some real hero work. The place is so peaceful that it's more like a vacation... until they're attacked by a villain with an unfathomable Quirk! His power is eerily familiar, and it looks like Shigaraki had a hand in the plan. But with All Might retired and citizens' lives on the line, there's no time for questions. Deku and his friends are the next generation of heroes, and they're the island's only hope.",2019-12-20,4.0866,8.2,1220 +149,289,Casablanca,"In Casablanca, Morocco in December 1941, a cynical American expatriate meets a former lover, with unforeseen complications.",1943-01-15,5.4165,8.155,5692 +150,10098,The Kid,A tramp cares for a boy after he's abandoned as a newborn by his mother. Later the mother has a change of heart and aches to be reunited with her son.,1921-01-21,3.0991,8.153,2221 +151,81481,Silenced,"Based on actual events that took place at Gwangju Inhwa School for the hearing-impaired, where young deaf students were the victims of repeated sexual assaults by faculty members over a period of five years in the early 2000s.",2011-09-22,3.6921,8.2,693 +152,399106,Piper,"A mother bird tries to teach her little one how to find food by herself. In the process, she encounters a traumatic experience that she must overcome in order to survive.",2016-06-16,2.7789,8.15,1672 +153,37165,The Truman Show,"Every second of every day, from the moment he was born, for the last thirty years, Truman Burbank has been the unwitting star of the longest running, most popular documentary-soap opera in history. The picture-perfect town of Seahaven that he calls home is actually a gigantic soundstage. Truman's friends and family - everyone he meets, in fact - are actors. He lives every moment under the unblinking gaze of thousands of hidden TV cameras.",1998-06-04,12.6574,8.148,19182 +154,797,Persona,"A young nurse, Alma, is put in charge of Elisabeth Vogler: an actress who is seemingly healthy in all respects, but will not talk. As they spend time together, Alma speaks to Elisabeth constantly, never receiving any answer.",1966-10-18,3.7867,8.149,2286 +155,517814,Capernaum,"After running away from his negligent parents, committing a violent crime and being sentenced to five years in jail, a hardened, streetwise 12-year-old Lebanese boy sues his parents in protest of the life they have given him.",2018-09-20,4.6879,8.149,1827 +156,872,Singin' in the Rain,"In 1927 Hollywood, a silent film production company and cast make a difficult transition to sound.",1952-04-10,4.1285,8.1,3297 +157,20914,My Friends,Four inseparable friends try to face their midlife crisis with daytrips and pranks at the expense of their families and the people around them.,1975-10-24,1.1212,8.145,716 +158,610892,Violet Evergarden: Eternity and the Auto Memory Doll,"Violet Evergarden comes to a private women's academy to tutor Isabella in the ways of being a lady. Heir to the York family, Isabella feels trapped in this new and uncomfortable world. She still grieves for the only person to ever bring her happiness – now lost to her. Violet's lessons do give her a brief respite from the melancholy but with the absence of joy, how long does it take to truly heal?",2019-09-06,2.2342,8.1,413 +159,606856,Togo,"The untold true story set in the winter of 1925 that takes you across the treacherous terrain of the Alaskan tundra for an exhilarating and uplifting adventure that will test the strength, courage and determination of one man, Leonhard Seppala, and his lead sled dog, Togo.",2019-12-20,3.0867,8.141,2116 +160,666,Central Station,"An emotional journey of a former school teacher, who writes letters for illiterate people, and a young boy, whose mother has just died, as they search for the father he never knew.",1998-04-03,1.9095,8.139,973 +161,693134,Dune: Part Two,"Follow the mythic journey of Paul Atreides as he unites with Chani and the Fremen while on a path of revenge against the conspirators who destroyed his family. Facing a choice between the love of his life and the fate of the known universe, Paul endeavors to prevent a terrible future only he can foresee.",2024-02-27,18.7668,8.139,6914 +162,458220,Palmer,"After 12 years in prison, former high school football star Eddie Palmer returns home to put his life back together—and forms an unlikely bond with Sam, an outcast boy from a troubled home. But Eddie's past threatens to ruin his new life and family.",2021-01-28,9.2523,8.137,1779 +163,9702,Bound by Honor,"Based on the true life experiences of poet Jimmy Santiago Baca, the film focuses on half-brothers Paco and Cruz, and their bi-racial cousin Miklo. It opens in 1972, as the three are members of an East L.A. gang known as the ""Vatos Locos"", and the story focuses on how a violent crime and the influence of narcotics alter their lives. Miklo is incarcerated and sent to San Quentin, where he makes a ""home"" for himself. Cruz becomes an exceptional artist, but a heroin addiction overcomes him with tragic results. Paco becomes a cop and an enemy to his ""carnal"", Miklo.",1993-02-05,5.041,8.135,1444 +164,103,Taxi Driver,A mentally unstable Vietnam War veteran works as a night-time taxi driver in New York City where the perceived decadence and sleaze feed his urge for violent action.,1976-02-09,9.6933,8.135,12792 +165,475557,Joker,"During the 1980s, a failed stand-up comedian is driven insane and turns to a life of crime and chaos in Gotham City while becoming an infamous psychopathic crime figure.",2019-10-01,14.1488,8.133,26664 +166,422,8½,"Guido Anselmi, a film director, finds himself creatively barren at the peak of his career. Urged by his doctors to rest, Anselmi heads for a luxurious resort, but a sorry group gathers—his producer, staff, actors, wife, mistress, and relatives—each one begging him to get on with the show. In retreat from their dependency, he fantasizes about past women and dreams of his childhood.",1963-02-14,3.1567,8.133,2398 +167,280,Terminator 2: Judgment Day,"Set ten years after the events of the original, James Cameron’s classic sci-fi action flick tells the story of a second attempt to get rid of rebellion leader John Connor, this time targeting the boy himself. However, the rebellion has sent a reprogrammed terminator to protect Connor.",1991-07-03,12.3626,8.129,13479 +168,575813,Better Days,"A bullied teenage girl forms an unlikely friendship with a mysterious young man who protects her from her assailants, while she copes with the pressures of her final examinations.",2019-10-25,2.812,8.124,498 +169,810693,Jujutsu Kaisen 0,"Yuta Okkotsu is a nervous high school student who is suffering from a serious problem—his childhood friend Rika has turned into a curse and won't leave him alone. Since Rika is no ordinary curse, his plight is noticed by Satoru Gojo, a teacher at Jujutsu High, a school where fledgling exorcists learn how to combat curses. Gojo convinces Yuta to enroll, but can he learn enough in time to confront the curse that haunts him?",2021-12-24,6.6162,8.1,1531 +170,935,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,"After the insane General Jack D. Ripper initiates a nuclear strike on the Soviet Union, a war room full of politicians, generals and a Russian diplomat all frantically try to stop it.",1964-01-29,4.4191,8.123,5852 +171,600,Full Metal Jacket,A pragmatic U.S. Marine observes the dehumanizing effects the U.S.-Vietnam War has on his fellow recruits from their brutal boot camp training to the bloody street fighting in Hue.,1987-06-26,6.7147,8.123,10915 +172,1026227,There's Still Tomorrow,"In postwar Rome, a working-class woman dreams of a better future for herself and her daughter while facing abuse at the hands of her domineering husband. When a mysterious letter arrives, she discovers the courage to change the circumstances of her life.",2023-10-26,1.3819,8.122,1401 +173,795607,Green Snake,"While trying to free her sister from Fahai's clutches, Xiao Qing winds up in a dystopian city and meets a mysterious man who can't recall his past life.",2021-07-23,2.5877,8.122,333 +174,20334,The Shop Around the Corner,"Two employees at a gift shop can barely stand one another, without realising that they are falling in love through the post as each other's anonymous pen pal.",1940-01-12,2.8048,8.122,765 +175,3780,Red Beard,"Aspiring to an easy job as personal physician to a wealthy family, Noboru Yasumoto is disappointed when his first post after medical school takes him to a small country clinic under the gruff doctor Red Beard. Yasumoto rebels in numerous ways, but Red Beard proves a wise and patient teacher. He gradually introduces his student to the unglamorous side of the profession, ultimately assigning him to care for a prostitute rescued from a local brothel.",1965-04-03,2.2103,8.1,379 +176,500,Reservoir Dogs,"A botched robbery indicates a police informant, and the pressure mounts in the aftermath at a warehouse. Crime begets violence as the survivors -- veteran Mr. White, newcomer Mr. Orange, psychopathic parolee Mr. Blonde, bickering weasel Mr. Pink and Nice Guy Eddie -- unravel.",1992-09-02,8.2308,8.1,14767 +177,531428,Portrait of a Lady on Fire,"On an isolated island in Brittany at the end of the eighteenth century, a female painter is obliged to paint a wedding portrait of a young woman.",2019-09-18,6.1721,8.116,2741 +178,406997,Wonder,"The story of August Pullman – a boy with facial differences – who enters fifth grade, attending a mainstream elementary school for the first time.",2017-11-13,5.5702,8.115,8042 +179,791373,Zack Snyder's Justice League,"Determined to ensure Superman's ultimate sacrifice was not in vain, Bruce Wayne aligns forces with Diana Prince with plans to recruit a team of metahumans to protect the world from an approaching threat of catastrophic proportions.",2021-03-18,14.1117,8.114,10337 +180,398818,Call Me by Your Name,"In the summer of 1983, a 17-year-old Elio spends his days in his family's villa in Italy. One day Oliver, a graduate student, arrives to assist Elio's father, a professor of Greco-Roman culture. Soon, Elio and Oliver discover a summer that will alter their lives forever.",2017-07-28,8.9724,8.1,12379 +181,38288,"“The Shorts” by Aldo, Giovanni and Giacomo","I Corti (""Shorts"") by Aldo, Giovanni & Giacomo was the first stage show of the comedy trio, with the participation of Marina Massironi. It was recorded live at the Teatro Nuovo in Ferrara on 28 and 29 March 1996. Produced by Agidi, with the theatre direction of Arturo Brachetti.",1996-03-29,0.3953,8.113,355 +182,600354,The Father,"A man refuses all assistance from his daughter as he ages and, as he tries to make sense of his changing circumstances, he begins to doubt his loved ones, his own mind and even the fabric of his reality.",2020-12-23,4.1551,8.112,3374 +183,1398,Stalker,"Near a gray and unnamed city is the Zone, a place guarded by barbed wire and soldiers, and where the normal laws of physics are victim to frequent anomalies. A stalker guides two men into the Zone, specifically to an area in which deep-seated desires are granted.",1979-05-25,4.3821,8.1,2334 +184,100,"Lock, Stock and Two Smoking Barrels",A card shark and his unwillingly-enlisted friends need to make a lot of cash quick after losing a sketchy poker match. To do this they decide to pull a heist on a small-time gang who happen to be operating out of the flat next door.,1998-08-28,2.8639,8.109,6831 +185,996,Double Indemnity,A seductive housewife draws an insurance salesman into a plot of adultery and crime to collect on her husband's life insurance.,1944-07-06,2.245,8.1,1893 +186,508442,Soul,"Joe Gardner is a middle school teacher with a love for jazz music. After a successful audition at the Half Note Club, he suddenly gets into an accident that separates his soul from his body and is transported to the You Seminar, a center in which souls develop and gain passions before being transported to a newborn child. Joe must enlist help from the other souls-in-training, like 22, a soul who has spent eons in the You Seminar, in order to get back to Earth.",2020-12-25,7.9073,8.1,10876 +187,133919,Scenes from a Marriage,"Johan and Marianne are married and seem to have it all. Their happiness, however, is a façade for a troubled relationship, which becomes even rockier when Johan admits that he's having an affair. Before long, the spouses separate and move towards finalizing their divorce, but they make attempts at reconciling. Even as they pursue other relationships, Johan and Marianne realize that they have a significant bond, but also many issues that hinder that connection.",1974-09-15,1.3237,8.106,374 +188,614,Wild Strawberries,"Crotchety retired doctor Isak Borg travels from Stockholm to Lund, Sweden, with his pregnant and unhappy daughter-in-law, Marianne, in order to receive an honorary degree from his alma mater. Along the way, they encounter a series of hitchhikers, each of whom causes the elderly doctor to muse upon the pleasures and failures of his own life. These include the vivacious young Sara, a dead ringer for the doctor's own first love.",1957-08-28,2.3583,8.1,1704 +189,843,In the Mood for Love,"In 1962 Hong Kong, neighbors Su Li-zhen (Mrs. Chan) and Chow Mo-wan (Mr. Chow) discover their spouses are having an affair. As they spend time together, they develop feelings for each other, but their relationship remains chaste and unspoken, reflecting societal constraints and their own moral compass.",2000-09-29,7.2423,8.103,2993 +190,10681,WALL·E,"What if mankind had to leave Earth and somebody forgot to turn the last robot off? After hundreds of years doing what he was built for, WALL•E discovers a new purpose in life when he meets a sleek search robot named EVE. EVE comes to realize that WALL•E has inadvertently stumbled upon the key to the planet's future, and races back to space to report to the humans. Meanwhile, WALL•E chases EVE across the galaxy and sets into motion one of the most imaginative adventures ever brought to the big screen.",2008-06-22,11.9053,8.101,19399 +191,663558,New Gods: Nezha Reborn,"While living as an ordinary deliveryman and motor racing fan, Nezha encounters old nemeses and must rediscover his powers to protect his loved ones.",2021-02-06,9.6011,8.101,474 +192,655,"Paris, Texas","A man wanders out of the desert not knowing who he is. His brother finds him, and helps to pull his memory back of the life he led before he walked out on his family and disappeared four years earlier.",1984-07-16,4.6554,8.101,2018 +193,11878,Yojimbo,"A nameless ronin, or samurai with no master, enters a small village in feudal Japan where two rival businessmen are struggling for control of the local gambling trade. Taking the name Sanjuro Kuwabatake, the ronin convinces both silk merchant Tazaemon and sake merchant Tokuemon to hire him as a personal bodyguard, then artfully sets in motion a full-scale gang war between the two ambitious and unscrupulous men.",1961-04-25,3.4798,8.096,1564 +194,19,Metropolis,"In a futuristic city sharply divided between the rich and the poor, the son of the city's mastermind meets a prophet who predicts the coming of a savior to mediate their differences.",1927-02-06,3.7453,8.099,2914 +195,146233,Prisoners,"Keller Dover is facing every parent’s worst nightmare. His six-year-old daughter, Anna, is missing, together with her young friend, Joy, and as minutes turn to hours, panic sets in. The only lead is a dilapidated RV that had earlier been parked on their street.",2013-09-19,16.1927,8.098,12336 +196,24382,Big Deal on Madonna Street,"Best friends Peppe and Mario are thieves, but they're not very good at it. Still, Peppe thinks that he's finally devised a master heist that will make them rich. With the help of some fellow criminals, he plans to dig a tunnel from a rented apartment to the pawnshop next door, where they can rob the safe. But his plan is far from foolproof, and the fact that no one in the group has any experience digging tunnels proves to be the least of their problems.",1958-07-26,1.0407,8.1,738 +197,20532,Sansho the Bailiff,"In medieval Japan, a woman and her children journey to find the family's patriarch, who was exiled years earlier.",1954-03-31,1.7932,8.1,395 +198,664767,Mortal Kombat Legends: Scorpion's Revenge,"After the vicious slaughter of his family by stone-cold mercenary Sub-Zero, Hanzo Hasashi is exiled to the torturous Netherrealm. There, in exchange for his servitude to the sinister Quan Chi, he’s given a chance to avenge his family – and is resurrected as Scorpion, a lost soul bent on revenge. Back on Earthrealm, Lord Raiden gathers a team of elite warriors – Shaolin monk Liu Kang, Special Forces officer Sonya Blade and action star Johnny Cage – an unlikely band of heroes with one chance to save humanity. To do this, they must defeat Shang Tsung’s horde of Outworld gladiators and reign over the Mortal Kombat tournament.",2020-04-12,5.2721,8.096,1414 +199,103663,The Hunt,"A teacher lives a lonely life, all the while struggling over his son’s custody. His life slowly gets better as he finds love and receives good news from his son, but his new luck is about to be brutally shattered by an innocent little lie.",2012-06-13,4.5338,8.096,4434 +200,46738,Incendies,"A mother's last wishes send twins Jeanne and Simon on a journey to Middle East in search of their tangled roots. Adapted from Wajdi Mouawad's acclaimed play, Incendies tells the powerful and moving tale of two young adults' voyage to the core of deep-rooted hatred, never-ending wars and enduring love.",2010-09-17,7.9811,8.096,2979 +201,11878,Yojimbo,"A nameless ronin, or samurai with no master, enters a small village in feudal Japan where two rival businessmen are struggling for control of the local gambling trade. Taking the name Sanjuro Kuwabatake, the ronin convinces both silk merchant Tazaemon and sake merchant Tokuemon to hire him as a personal bodyguard, then artfully sets in motion a full-scale gang war between the two ambitious and unscrupulous men.",1961-04-25,3.4798,8.096,1564 +202,470044,The Hate U Give,"Raised in a poverty-stricken slum, a 16-year-old girl named Starr now attends a suburban prep school. After she witnesses a police officer shoot her unarmed best friend, she's torn between her two very different worlds as she tries to speak her truth.",2018-10-19,2.5154,8.095,2167 +203,239,Some Like It Hot,Two musicians witness a mob hit and struggle to find a way out of the city. Their only opportunity comes in the form of joining an all-girl band as they prepare to leave on a tour. The two disguise themselves as women and struggle to keep their identities secret as they deal with the problems this brings.,1959-03-19,6.3459,8.095,3646 +204,755812,"Miraculous World: New York, United HeroeZ","Marinette’s class is headed to New York, the city of superheroes, for French-American Friendship Week. The whole class is there...except Adrien, whose father refuses to let him go!",2020-09-25,2.9245,8.1,1118 +205,411088,The Invisible Guest,"Barcelona, Spain. Adrián Doria, a young and successful businessman accused of murder, meets one night with Virginia Goodman, an expert interrogation lawyer, in order to devise a defense strategy.",2017-01-06,8.6296,8.092,4720 +206,38,Eternal Sunshine of the Spotless Mind,"Joel Barish, heartbroken that his girlfriend underwent a procedure to erase him from her memory, decides to do the same. However, as he watches his memories of her fade away, he realises that he still loves her, and may be too late to correct his mistake.",2004-03-19,10.463,8.092,15607 +207,11659,The Best of Youth,"After a fateful encounter in the summer of 1966, the lifepaths of two brothers from a middle-class Roman family diverge, intersecting with some of the most significant events of postwar Italian history in the following decades.",2003-06-22,1.4407,8.089,567 +208,2457,Children of Paradise,"In a chaotic 19th-century Paris teeming with aristocrats, thieves, psychics, and courtesans, theater mime Baptiste is in love with the mysterious actress Garance. But Garance, in turn, is loved by three other men: pretentious actor Frederick, conniving thief Lacenaire, and Count Edouard of Montray.",1945-03-15,1.6024,8.1,431 +209,12445,Harry Potter and the Deathly Hallows: Part 2,"Harry, Ron and Hermione continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards, Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.",2011-07-12,18.9654,8.1,21184 +210,406,La Haine,"After a chaotic night of rioting in a marginal suburb of Paris, three young friends, Vinz, Hubert and Saïd, wander around unoccupied waiting for news about the state of health of a mutual friend who has been seriously injured when confronting the police.",1995-05-31,4.5462,8.086,4261 +211,387,Das Boot,"A German submarine hunts allied ships during the Second World War, but it soon becomes the hunted. The crew tries to survive below the surface, while stretching both the boat and themselves to their limits.",1981-09-17,3.3623,8.084,2334 +212,149871,The Tale of The Princess Kaguya,"Found inside a shining stalk of bamboo by an old bamboo cutter and his wife, a tiny girl grows rapidly into an exquisite young lady. The mysterious young princess enthrals all who encounter her. But, ultimately, she must confront her fate.",2013-11-23,3.1892,8.083,1870 +213,831827,Far from the Tree,"On an idyllic beach in the Pacific Northwest, curiosity gets the better of a young raccoon whose frustrated parent attempts to keep them both safe.",2021-11-24,1.658,8.079,380 +214,762975,Purple Hearts,"An aspiring musician agrees to a marriage of convenience with a soon-to-deploy Marine, but a tragedy soon turns their fake relationship all too real.",2022-07-29,11.2455,8.077,2711 +215,705,All About Eve,"From the moment she glimpses her idol at the stage door, Eve Harrington is determined to take the reins of power away from the great actress Margo Channing. Eve maneuvers her way into Margo's Broadway role, becomes a sensation and even causes turmoil in the lives of Margo's director boyfriend, her playwright and his wife. Only the cynical drama critic sees through Eve, admiring her audacity and perfect pattern of deceit.",1950-11-09,2.632,8.076,1597 +216,7345,There Will Be Blood,"Ruthless silver miner, turned oil prospector, Daniel Plainview, moves to oil-rich California. Using his son to project a trustworthy, family-man image, Plainview cons local landowners into selling him their valuable properties for a pittance. However, local preacher Eli Sunday suspects Plainview's motives and intentions, starting a slow-burning feud that threatens both their lives.",2007-12-26,9.4917,8.073,6915 +217,397567,Along with the Gods: The Two Worlds,"Having died unexpectedly, firefighter Ja-hong is taken to the afterlife by 3 afterlife guardians. Only when he passes 7 trials over 49 days and proves he was innocent in human life, he’s able to reincarnate, and his 3 afterlife guardians are by his side to defend him in trial.",2017-12-20,4.5936,8.07,1099 +218,8392,My Neighbor Totoro,"Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.",1988-04-16,9.724,8.1,8349 +219,832,M,"In this classic German thriller, Hans Beckert, a serial killer who preys on children, becomes the focus of a massive Berlin police manhunt. Beckert's heinous crimes are so repellant and disruptive to city life that he is even targeted by others in the seedy underworld network. With both cops and criminals in pursuit, the murderer soon realizes that people are on his trail, sending him into a tense, panicked attempt to escape justice.",1931-05-11,2.6472,8.07,2306 +220,1091,The Thing,"A twelve-man team at a remote Antarctic research station discovers an alien buried in the snow for over 100,000 years. Soon unfrozen, the form-changing creature wreaks havoc, creates terror...And becomes one of them.",1982-06-25,7.971,8.069,7393 +221,439,La Dolce Vita,"Episodic journey of journalist Marcello who struggles to find his place in the world, torn between the allure of Rome's elite social scene and the stifling domesticity offered by his girlfriend, all the while searching for a way to become a serious writer.",1960-02-05,3.9931,8.069,1946 +222,518068,Along with the Gods: The Last 49 Days,"As the deceased soul Ja-hong and his three afterlife guardians prepare for their remaining trials for reincarnation, the guardians soon come face to face with the truth of their tragic time on Earth 1,000 years earlier.",2018-08-01,5.505,8.068,700 +223,31439,To Live,Married couple Fugui and Jiazhen endure tumultuous events in mid-20th century mainland China as their personal fortunes move from wealthy landownership to peasantry.,1994-05-18,1.6334,8.066,334 +224,62,2001: A Space Odyssey,"Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world's most advanced super computer.",1968-04-02,9.735,8.065,11969 +225,1244492,Look Back,"Popular, outgoing Fujino is celebrated by her classmates for her funny comics in the class newspaper. One day, her teacher asks her to share the space with Kyomoto, a truant recluse whose beautiful artwork sparks a competitive fervor in Fujino. What starts as jealousy transforms when Fujino realizes their shared passion for drawing.",2024-06-28,7.2749,8.064,391 +226,359940,"Three Billboards Outside Ebbing, Missouri","After seven months have passed without a culprit in her daughter's murder case, Mildred Hayes makes a bold move, painting three signs leading into her town with a controversial message directed at Bill Willoughby, the town's revered chief of police. When his second-in-command Officer Jason Dixon, an immature mother's boy with a penchant for violence, gets involved, the battle between Mildred and Ebbing's law enforcement is only exacerbated.",2017-12-01,6.3046,8.064,10424 +227,21634,Prayers for Bobby,"Bobby Griffith was his mother's favorite son, the perfect all-American boy growing up under deeply religious influences in Walnut Creek, California. Bobby was also gay. Struggling with a conflict no one knew of, much less understood, Bobby finally came out to his family.",2009-01-24,2.2053,8.063,599 +228,4348,Pride & Prejudice,"A story of love and life among the landed English gentry during the Georgian era. Mr. Bennet is a gentleman living in Hertfordshire with his overbearing wife and five daughters, but if he dies their house will be inherited by a distant cousin whom they have never met, so the family's future happiness and security is dependent on the daughters making good marriages.",2005-09-16,10.9518,8.063,8362 +229,532067,KONOSUBA – God's blessing on this wonderful world! Legend of Crimson,"It is not strange that the Demon Lord's forces fear the Crimson Demons, the clan from which Megumin and Yunyun originate. Even if the Demon Lord's generals attack their village, the Crimson Demons can just easily brush them off with their supreme mastery of advanced and overpowered magic. When Yunyun receives a seemingly serious letter regarding a potential disaster coming to her hometown, she immediately informs Kazuma Satou and the rest of his party. After a series of wacky misunderstandings, it turns out to be a mere prank by her fellow demon who wants to be an author. Even so, Megumin becomes worried about her family and sets out toward the Crimson Demons' village with the gang. There, Kazuma and the others decide to sightsee the wonders of Megumin's birthplace. However, they soon come to realize that the nonsense threat they received might have been more than just a joke.",2019-08-30,3.5471,8.062,575 +230,11423,Memories of Murder,"During the late 1980s, two detectives in a South Korean province attempt to solve the nation's first series of rape-and-murder cases.",2003-04-25,5.5239,8.061,4143 +231,437068,A Taxi Driver,"May, 1980. Man-seob is a taxi driver in Seoul who lives from hand to mouth, raising his young daughter alone. One day, he hears that there is a foreigner who will pay big money for a drive down to Gwangju city. Not knowing that he’s a German journalist with a hidden agenda, Man-seob takes the job.",2017-08-02,4.0025,8.059,1062 +232,1064486,Memoir of a Snail,"Forcibly separated from her twin brother when they are orphaned, a melancholic misfit learns how to find confidence within herself amid the clutter of misfortunes and everyday life.",2024-10-17,13.024,8.053,610 +233,992,Sherlock Jr.,"A film projectionist longs to be a detective, and puts his meagre skills to work when he is framed by a rival for stealing his girlfriend's father's pocketwatch.",1924-04-17,1.5704,8.057,1067 +234,522518,A Dog's Journey,A dog finds the meaning of his own existence through the lives of the humans he meets.,2019-05-03,3.5715,8.056,1564 +235,7347,Elite Squad,"In 1997, before the visit of the pope to Rio de Janeiro, Captain Nascimento from BOPE (Special Police Operations Battalion) is assigned to eliminate the risks of the drug dealers in a dangerous slum nearby where the pope intends to be lodged.",2007-10-12,3.658,8.056,2532 +236,548,Rashomon,Four people recount different versions of the story of a man's murder and the rape of his wife.,1950-08-26,4.6298,8.056,2355 +237,11645,Ran,Shakespeare's King Lear is reimagined as a singular historical epic set in sixteenth-century Japan where an ageing warlord divides his kingdom between his three sons.,1985-06-01,4.4169,8.055,1662 +238,872585,Oppenheimer,The story of J. Robert Oppenheimer's role in the development of the atomic bomb during World War II.,2023-07-19,17.6774,8.053,10554 +239,698687,Transformers One,"The untold origin story of Optimus Prime and Megatron, better known as sworn enemies, but once were friends bonded like brothers who changed the fate of Cybertron forever.",2024-09-11,13.1839,8.051,1348 +240,381284,Hidden Figures,"The untold story of Katherine G. Johnson, Dorothy Vaughan and Mary Jackson – brilliant African-American women working at NASA and serving as the brains behind one of the greatest operations in history – the launch of astronaut John Glenn into orbit. The visionary trio crossed all gender and race lines to inspire generations to dream big.",2016-12-10,10.7542,8.052,10045 +241,698687,Transformers One,"The untold origin story of Optimus Prime and Megatron, better known as sworn enemies, but once were friends bonded like brothers who changed the fate of Cybertron forever.",2024-09-11,13.1839,8.051,1348 +242,42229,A Special Day,Two neighbours — a persecuted journalist and a resigned housewife — forge a strong bond on the day of Adolf Hitler's historic 1938 visit to Rome.,1977-08-11,1.3514,8.1,710 +243,1955,The Elephant Man,"A Victorian surgeon rescues a heavily disfigured man being mistreated by his ""owner"" as a side-show freak. Behind his monstrous façade, there is revealed a person of great intelligence and sensitivity. Based on the true story of Joseph Merrick (called John Merrick in the film), a severely deformed man in 19th century London.",1980-10-09,8.2749,8.1,3695 +244,555604,Guillermo del Toro's Pinocchio,"During the rise of fascism in Mussolini's Italy, a wooden boy brought magically to life struggles to live up to his father's expectations.",2022-11-09,4.1695,8.049,3093 +245,800,The Young and the Damned,"A group of juvenile delinquents live a violent life in the infamous slums of Mexico City; among them Pedro, whose morality is gradually corrupted and destroyed by the others.",1950-12-09,1.2575,8.046,506 +246,334543,Lion,"A five-year-old Indian boy gets lost on the streets of Calcutta, thousands of kilometers from home. He survives many challenges before being adopted by a couple in Australia; 25 years later, he sets out to find his lost family.",2016-11-24,4.0923,8.044,6736 +247,640344,Me Against You: Mr. S's Vendetta,"A young couple who makes popular YouTube videos for children sets out to win an award, but an evil mastermind stands in the way of their success.",2020-01-17,0.7913,8.042,469 +248,472454,Ayla: The Daughter of War,"In 1950, amidst the ravages of the Korean War, Sergeant Süleyman stumbles upon a a half-frozen little girl, with no parents and no help in sight and he risks his own life to save her, smuggling her into his army base and out of harm’s way.",2017-10-27,1.5659,8.037,376 +249,120467,The Grand Budapest Hotel,"The Grand Budapest Hotel tells of a legendary concierge at a famous European hotel between the wars and his friendship with a young employee who becomes his trusted protégé. The story involves the theft and recovery of a priceless Renaissance painting, the battle for an enormous family fortune and the slow and then sudden upheavals that transformed Europe during the first half of the 20th century.",2014-02-26,9.8726,8.037,15340 +250,26022,My Name Is Khan,"Rizwan Khan, a Muslim from the Borivali section of Mumbai, has Asperger's syndrome. He marries a Hindu single mother, Mandira, in San Francisco. After 9/11, Rizwan is detained by authorities at LAX who treat him as a terrorist because of his condition and his race.",2010-02-10,2.866,8.032,1362 +251,582,The Lives of Others,"In 1984 East Berlin, dedicated Stasi officer Gerd Wiesler begins spying on a famous playwright and his actress-lover Christa-Maria. Wiesler becomes unexpectedly sympathetic to the couple, and faces conflicting loyalties when his superior takes a liking to Christa-Maria.",2006-03-23,3.5269,8.0,3855 +252,310569,The Second Mother,"After leaving her daughter Jessica in a small town in Pernambuco to be raised by relatives, Val spends the next 13 years working as a nanny to Fabinho in São Paulo. She has financial stability but has to live with the guilt of having not raised Jessica herself. As Fabinho’s university entrance exams approach, Jessica reappears in her life and seems to want to give her mother a second chance. However, Jessica has not been raised to be a servant and her very existence will turn Val’s routine on its head. With precision and humour, the subtle and powerful forces that keep rigid class structures in place and how the youth may just be the ones to shake it all up.",2015-06-04,1.0701,8.031,748 +253,538362,On My Skin,"The incredible true story behind the most controversial Italian court cases in recent years. Stefano Cucchi was arrested for a minor crime and mysteriously found dead during his detention. In one week's time, a family is changed forever.",2018-09-12,1.3646,8.0,1863 +254,400608,Bo Burnham: Make Happy,"Combining his trademark wit and self-deprecating humor with original music, Bo Burnham offers up his unique twist on life in this stand-up special about life, death, sexuality, hypocrisy, mental illness and Pringles cans.",2016-06-03,0.8053,8.03,403 +255,9277,The Sting,A novice con man teams up with an acknowledged master to avenge the murder of a mutual friend by pulling off the ultimate big con and swindling a fortune from a big-time mobster.,1973-12-25,3.9138,8.0,2738 +256,823754,Bo Burnham: Inside,"Stuck in COVID-19 lockdown, US comedian and musician Bo Burnham attempts to stay sane and happy by writing, shooting and performing a one-man comedy special.",2021-07-22,1.3513,8.0,542 +257,106646,The Wolf of Wall Street,"A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.",2013-12-25,17.965,8.028,24860 +258,821,Judgment at Nuremberg,"In 1947, four German judges who served on the bench during the Nazi regime face a military tribunal to answer charges of crimes against humanity. Chief Justice Haywood hears evidence and testimony not only from lead defendant Ernst Janning and his defense attorney Hans Rolfe, but also from the widow of a Nazi general, an idealistic U.S. Army captain and reluctant witness Irene Wallner.",1961-12-18,3.7707,8.027,857 +259,1087192,How to Train Your Dragon,"On the rugged isle of Berk, where Vikings and dragons have been bitter enemies for generations, Hiccup stands apart, defying centuries of tradition when he befriends Toothless, a feared Night Fury dragon. Their unlikely bond reveals the true nature of dragons, challenging the very foundations of Viking society.",2025-06-06,379.0512,8.0,1556 +260,638507,How to Train Your Dragon: Homecoming,"It's been ten years since the dragons moved to the Hidden World, and even though Toothless doesn't live in New Berk anymore, Hiccup continues the holiday traditions he once shared with his best friend. But the Vikings of New Berk were beginning to forget about their friendship with dragons. Hiccup, Astrid, and Gobber know just what to do to keep the dragons in the villagers' hearts. And across the sea, the dragons have a plan of their own...",2019-12-03,9.4898,8.025,1051 +261,610461,"Veinteañera, divorciada y fantástica","Regina, our young protagonist, always dreamed of getting married. And she did it - but the dream lasted much less than she thought and now she has to face life in a very funny way as a divorcee.",2020-02-14,0.4312,8.023,389 +262,279,Amadeus,Disciplined Italian composer Antonio Salieri becomes consumed by jealousy and resentment towards the hedonistic and remarkably talented young Viennese composer Wolfgang Amadeus Mozart.,1984-09-19,5.5619,8.023,4458 +263,43949,Flipped,"When Juli meets Bryce in the second grade, she knows it's true love. After spending six years trying to convince Bryce the same, she's ready to give up - until he starts to reconsider.",2010-08-06,6.7319,8.023,3162 +264,147,The 400 Blows,"For young Parisian boy Antoine Doinel, life is one difficult situation after another. Surrounded by inconsiderate adults, including his neglectful parents, Antoine spends his days with his best friend, Rene, trying to plan for a better life. When one of their schemes goes awry, Antoine ends up in trouble with the law, leading to even more conflicts with unsympathetic authority figures.",1959-06-03,3.3126,8.022,2219 +265,55960,"Toto, Peppino, and the Hussy","Antonio, Peppino and Lucia are three brothers who live in the country near Naples. Lucia's son, Gianni, goes to Naples to study medicine, but there he knows a ballet dancer. They fall in love and, when she goes to Milan, Gianni follows her. Informed of this and afraid that their nephew will stop studying, the three Caponi brothers leave for Milan to persuade Gianni to come back and continue studying and abandon the ""Malafemmina"" (bad girl).",1956-08-23,0.88,8.021,358 +266,347688,Scooby-Doo! and Kiss: Rock and Roll Mystery,"Get ready to Rock! Scooby-Doo and the Mystery Inc. Gang team up with the one and only KISS in this all-new, out-of-this-world adventure! We join the Gang at KISS World – the all-things-KISS theme park, as they investigate a series of strange hauntings. With help from KISS, they discover that the Crimson Witch has returned to summon The Destroyer from the alternate dimension of Kissteria! The evil duos ghastly plan, to destroy the earth! Can the Gang's cunning and KISS's power of rock save the day?!",2015-07-09,1.8813,8.02,331 +267,938,For a Few Dollars More,"Two bounty hunters both pursue the brutal and sadistic bandit, El Indio, who has a large bounty on his head.",1965-12-18,7.4072,8.02,4192 +268,307,"Rome, Open City","In WWII-era Rome, underground resistance leader Manfredi attempts to evade the Gestapo by enlisting the help of Pina, the fiancée of a fellow member of the resistance, and Don Pietro, the priest due to oversee her marriage. But it’s not long before the Nazis and the local police find him.",1945-10-08,1.2901,8.02,921 +269,204,The Wages of Fear,"In a run-down South American town, four men are paid to drive trucks loaded with nitroglycerin into the jungle through to the oil field. Friendships are tested and rivalries develop as they embark upon the perilous journey.",1953-04-22,2.5376,8.0,1004 +270,785534,Paper Lives,"In the streets of Istanbul, ailing waste warehouse worker Mehmet takes a small boy under his wing and must soon confront his own traumatic childhood.",2021-03-12,1.7849,8.0,394 +271,20530,Late Spring,"Noriko is perfectly happy living at home with her widowed father, Shukichi, and has no plans to marry -- that is, until her aunt Masa convinces Shukichi that unless he marries off his 27-year-old daughter soon, she will likely remain alone for the rest of her life. When Noriko resists Masa's matchmaking, Shukichi is forced to deceive his daughter and sacrifice his own happiness to do what he believes is right.",1949-09-13,1.9363,8.015,441 +272,641,Requiem for a Dream,The drug-induced utopias of four Coney Island residents are shattered when their addictions run deep.,2000-10-06,4.2423,8.015,10412 +273,521,Dial M for Murder,"When American writer Mark Halliday visits the very married Margot Wendice in London, he unknowingly sets off a chain of blackmail and murder.",1954-05-29,2.584,8.015,2709 +274,8422,Rocco and His Brothers,"When a impoverished widow’s family moves to the big city, two of her five sons become romantic rivals with deadly results.",1960-10-07,2.1219,8.0,622 +275,838240,Robot Dreams,A lonely dog's friendship with his robot companion takes a sad turn when an unexpected malfunction forces him to abandon Robot at the beach. Will Dog ever meet Robot again?,2023-12-06,3.9145,8.0,689 +276,28178,Hachi: A Dog's Tale,A drama based on the true story of a college professor's bond with the abandoned dog he takes into his home.,2009-06-08,6.5331,8.0,6878 +277,673,Harry Potter and the Prisoner of Azkaban,"Year three at Hogwarts means new fun and challenges as Harry learns the delicate art of approaching a Hippogriff, transforming shape-shifting Boggarts into hilarity and even turning back time. But the term also brings danger: soul-sucking Dementors hover over the school, an ally of the accursed He-Who-Cannot-Be-Named lurks within the castle walls, and fearsome wizard Sirius Black escapes Azkaban. And Harry will confront them all.",2004-05-31,21.3319,8.011,22292 +278,400928,Gifted,"Frank, a single man raising his child prodigy niece Mary, is drawn into a custody battle with his mother.",2017-04-07,6.8,8.006,5723 +279,359724,Ford v Ferrari,"American car designer Carroll Shelby and the British-born driver Ken Miles work together to battle corporate interference, the laws of physics, and their own personal demons to build a revolutionary race car for Ford Motor Company and take on the dominating race cars of Enzo Ferrari at the 24 Hours of Le Mans in France in 1966.",2019-11-13,9.1369,8.006,8425 +280,110416,Song of the Sea,"The story of the last Seal Child’s journey home. After their mother’s disappearance, Ben and Saoirse are sent to live with Granny in the city. When they resolve to return to their home by the sea, their journey becomes a race against time as they are drawn into a world Ben knows only from his mother’s folktales. But this is no bedtime story; these fairy folk have been in our world far too long. It soon becomes clear to Ben that Saoirse is the key to their survival.",2014-06-23,2.8571,8.006,1481 +281,51822,Love Hurts,Family and friends try to sabotage the budding romance between a young upper class girl and a humble student.,2002-11-08,1.8749,8.006,336 +282,14,American Beauty,"Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.",1999-09-15,7.6639,8.005,12497 +283,526702,Black Beauty,"Born free in the American West, Black Beauty is a horse rounded up and brought to Birtwick Stables, where she meets spirited teenager Jo Green. The two forge a bond that carries Beauty through the different chapters, challenges and adventures.",2020-11-27,1.311,8.004,342 +284,3175,Barry Lyndon,"An Irish rogue uses his cunning and wit to work his way up the social classes of 18th century England, transforming himself from the humble Redmond Barry into the noble Barry Lyndon.",1975-12-18,3.9769,8.002,2971 +285,568160,Weathering with You,"The summer of his high school freshman year, Hodaka runs away from his remote island home to Tokyo, and quickly finds himself pushed to his financial and personal limits. The weather is unusually gloomy and rainy every day, as if taking its cue from his life. After many days of solitude, he finally finds work as a freelance writer for a mysterious occult magazine. Then, one day, Hodaka meets Hina on a busy street corner. This bright and strong-willed girl possesses a strange and wonderful ability: the power to stop the rain and clear the sky.",2019-06-19,6.2115,8.002,2446 +286,515001,Jojo Rabbit,"A World War II satire that follows a lonely German boy whose world view is turned upside down when he discovers his single mother is hiding a young Jewish girl in their attic. Aided only by his idiotic imaginary friend, Adolf Hitler, Jojo must confront his blind nationalism.",2019-10-18,8.8917,8.002,9907 +287,264644,Room,"Held captive for 7 years in an enclosed space, a woman and her young son finally gain their freedom, allowing the boy to experience the outside world for the first time.",2015-10-16,4.1021,8.001,9394 +288,20453,3 Idiots,"Rascal. Joker. Dreamer. Genius... You've never met a college student quite like ""Rancho."" From the moment he arrives at India's most prestigious university, Rancho's outlandish schemes turn the campus upside down—along with the lives of his two newfound best friends. Together, they make life miserable for ""Virus,"" the school’s uptight and heartless dean. But when Rancho catches the eye of the dean's daughter, Virus sets his sights on flunking out the ""3 idiots"" once and for all.",2009-12-23,4.471,8.0,2517 +289,414419,Kill Bill: The Whole Bloody Affair,"An assassin is shot and almost killed by her ruthless employer, Bill, and other members of their assassination circle – but she lives to plot her vengeance.",2006-03-27,2.6872,7.998,1066 +290,15,Citizen Kane,"Newspaper magnate Charles Foster Kane is taken from his mother as a boy and made the ward of a rich industrialist. As a result, every well-meaning, tyrannical or self-destructive move he makes for the rest of his life appears in some way to be a reaction to that deeply wounding event.",1941-04-17,5.859,7.998,5726 +291,524,Casino,"In early-1970s Las Vegas, Sam ""Ace"" Rothstein gets tapped by his bosses to head the Tangiers Casino. At first, he's a great success in the job, but over the years, problems with his loose-cannon enforcer Nicky Santoro, his ex-hustler wife Ginger, her con-artist ex Lester Diamond and a handful of corrupt politicians put Sam in ever-increasing danger.",1995-11-22,6.5913,7.997,6120 +292,947,Lawrence of Arabia,"The story of British officer T.E. Lawrence's mission to aid the Arab tribes in their revolt against the Ottoman Empire during the First World War. Lawrence becomes a flamboyant, messianic figure in the cause of Arab unity but his psychological instability threatens to undermine his achievements.",1962-12-11,4.4113,7.996,3196 +293,962232,Beyond the Universe,"While waiting for a kidney transplant, a young pianist finds an unexpected connection with her doctor — and the courage to fulfill her musical dreams.",2022-10-27,1.7017,8.002,330 +294,14696,Ugetsu,"In 16th century Japan, peasants Genjuro and Tobei sell their earthenware pots to a group of soldiers in a nearby village, in defiance of a local sage's warning against seeking to profit from warfare. Genjuro's pursuit of both riches and the mysterious Lady Wakasa, as well as Tobei's desire to become a samurai, run the risk of destroying both themselves and their wives, Miyagi and Ohama.",1953-03-26,1.6662,7.995,604 +295,906126,Society of the Snow,"On October 13, 1972, Uruguayan Air Force Flight 571, chartered to take a rugby team to Chile, crashes into a glacier in the heart of the Andes.",2023-12-15,5.878,7.995,3217 +296,205596,The Imitation Game,"Based on the real life story of legendary cryptanalyst Alan Turing, the film portrays the nail-biting race against time by Turing and his brilliant team of code-breakers at Britain's top-secret Government Code and Cypher School at Bletchley Park, during the darkest days of World War II.",2014-11-14,11.0838,7.993,17454 +297,11658,Tae Guk Gi: The Brotherhood of War,"When two brothers are forced to fight in the Korean War, the elder decides to take the riskiest missions if it will help shield the younger from battle.",2004-02-05,1.9272,7.993,722 +298,140420,Paperman,An urban office worker finds that paper airplanes are instrumental in meeting a girl in ways he never expected.,2012-11-02,3.8934,8.0,1747 +299,449176,"Love, Simon","Everyone deserves a great love story, but for 17-year-old Simon Spier, it's a little more complicated. He hasn't told his family or friends that he's gay, and he doesn't know the identity of the anonymous classmate that he's fallen for online.",2018-02-16,2.7939,7.991,6125 +300,339877,Loving Vincent,A young man arrives at the last hometown of painter Vincent van Gogh to deliver the troubled artist's final letter and ends up investigating his final days there.,2017-06-22,1.7714,7.99,2518 +301,11778,The Deer Hunter,"A group of working-class friends decide to enlist in the Army during the Vietnam War and finds it to be hellish chaos -- not the noble venture they imagined. Before they left, Steven married his pregnant girlfriend -- and Michael and Nick were in love with the same woman. But all three are different men upon their return.",1978-12-08,4.3273,8.0,3993 +302,595,To Kill a Mockingbird,"Scout Finch, 6, and her older brother Jem live in sleepy Maycomb, Alabama, spending much of their time with their friend Dill and spying on their reclusive and mysterious neighbor, Boo Radley. When Atticus, their widowed father and a respected lawyer, defends a black man named Tom Robinson against fabricated rape charges, the trial and tangent events expose the children to evils of racism and stereotyping.",1962-12-20,3.8492,8.0,2714 +303,429210,Bingo: The King of the Mornings,"1980s. Brazilian television exploding in color and auditorium programs not so politically correct. In the middle of this fervor, Augusto Mendes, a young rising actor, seeks his place in the sun. From porn studios to soap operas, he finally finds success and fame when he becomes ""Bingo"", a TV host clown from one of the audience leader TV shows for children. It turns out that behind the rice powder and red nose, nobody knows who he is.",2017-08-24,0.8738,7.99,397 +304,13223,Gran Torino,"Disgruntled Korean War veteran Walt Kowalski sets out to reform his neighbor, Thao Lor, a Hmong teenager who tried to steal Kowalski's prized possession: a 1972 Gran Torino.",2008-12-12,5.3141,7.99,11040 +305,678580,El mesero,A waiter pretends to be an important businessman in order to reach the upper class through his entrepreneurial dreams.,2021-07-15,0.7265,8.0,354 +306,530915,1917,"At the height of the First World War, two young British soldiers must cross enemy territory and deliver a message that will stop a deadly attack on hundreds of soldiers.",2019-12-25,6.6564,8.0,12906 +307,455661,In a Heartbeat,A closeted boy runs the risk of being outed by his own heart after it pops out of his chest to chase down the boy of his dreams.,2017-06-01,0.5966,7.989,1003 +308,337404,Cruella,"In 1970s London amidst the punk rock revolution, a young grifter named Estella is determined to make a name for herself with her designs. She befriends a pair of young thieves who appreciate her appetite for mischief, and together they are able to build a life for themselves on the London streets. One day, Estella’s flair for fashion catches the eye of the Baroness von Hellman, a fashion legend who is devastatingly chic and terrifyingly haute. But their relationship sets in motion a course of events and revelations that will cause Estella to embrace her wicked side and become the raucous, fashionable and revenge-bent Cruella.",2021-05-26,9.2192,7.989,9678 +309,19426,Nights of Cabiria,"Rome, 1957. A woman, Cabiria, is robbed and left to drown by her boyfriend, Giorgio. Rescued, she resumes her life and tries her best to find happiness in a cynical world. Even when she thinks her struggles are over and she has found happiness and contentment, things may not be what they seem.",1957-10-03,2.4819,7.989,804 +310,678512,Sound of Freedom,"The story of Tim Ballard, a former US government agent, who quits his job in order to devote his life to rescuing children from global sex traffickers.",2023-07-03,6.209,8.0,2580 +311,7508,Like Stars on Earth,"Ishaan Awasthi is an eight-year-old whose world is filled with wonders that no one else seems to appreciate. Colours, fish, dogs, and kites don't seem important to the adults, who are much more interested in things like homework, marks, and neatness. Ishaan cannot seem to get anything right in class; he is then sent to boarding school, where his life changes forever.",2007-12-21,4.032,7.987,1229 +312,962,The Gold Rush,A gold prospector in Alaska struggles to survive the elements and win the heart of a dance hall girl.,1925-07-13,3.4298,7.986,1694 +313,780,The Passion of Joan of Arc,"A classic of the silent age, this film tells the story of the doomed but ultimately canonized 15th-century teenage warrior. On trial for claiming she'd spoken to God, Jeanne d'Arc is subjected to inhumane treatment and scare tactics at the hands of church court officials. Initially bullied into changing her story, Jeanne eventually opts for what she sees as the truth. Her punishment, a famously brutal execution, earns her perpetual martyrdom.",1928-04-21,3.0414,7.984,1013 +314,213,North by Northwest,"Advertising man Roger Thornhill is mistaken for a spy, triggering a deadly cross-country chase.",1959-08-06,4.315,8.0,4274 +315,1084736,The Count of Monte Cristo,"Edmond Dantes becomes the target of a sinister plot and is arrested on his wedding day for a crime he did not commit. After 14 years in the island prison of Château d’If, he manages a daring escape. Now rich beyond his dreams, he assumes the identity of the Count of Monte-Cristo and exacts his revenge on the three men who betrayed him.",2024-06-28,9.6287,7.979,1727 +316,640,Catch Me If You Can,"A true story about Frank Abagnale Jr. who, before his 19th birthday, successfully conned millions of dollars worth of checks as a Pan Am pilot, doctor, and legal prosecutor. An FBI agent makes it his mission to put him behind bars. But Frank not only eludes capture, he revels in the pursuit.",2002-12-16,12.5957,7.978,16257 +317,25376,The Secret in Their Eyes,"Hoping to put to rest years of unease concerning a past case, retired criminal investigator Benjamín begins writing a novel based on the unsolved mystery of a newlywed’s rape and murder. With the help of a former colleague, judge Irene, he attempts to make sense of the past.",2009-08-13,4.1613,7.976,2673 +318,2517,Nobody Knows,"In a small Tokyo apartment, twelve-year-old Akira must care for his younger siblings after their mother leaves them and shows no sign of returning.",2004-08-07,2.8918,7.976,576 +319,1059,The Hidden Fortress,"In feudal Japan, during a bloody war between clans, two cowardly and greedy peasants, soldiers of a defeated army, stumble upon a mysterious man who guides them to a fortress hidden in the mountains.",1958-12-28,2.6611,8.0,651 +320,930094,"Red, White & Royal Blue","After an altercation between Alex, the president's son, and Britain's Prince Henry at a royal event becomes tabloid fodder, their long-running feud now threatens to drive a wedge in U.S./British relations. When the rivals are forced into a staged truce, their icy relationship begins to thaw and the friction between them sparks something deeper than they ever expected.",2023-07-27,10.4485,7.975,1409 +321,1000492,All Your Faces,"Since 2014, France's restorative justice programmes have offered a safe space for supervised dialogue between offenders and victims. Grégoire, Nawelle, and Sabine, victims of heists and violent robberies, agree to join one of these discussion groups alongside offenders Nassim, Issa, and Thomas, all convicted of violent robberies. Meanwhile Chloé, a victim of childhood sexual abuse, prepares for dialogue with her own agressor after learning he has moved back into town.",2023-03-29,1.8296,7.973,619 +322,12761,Autumn Sonata,"After a seven-year absence, Charlotte Andergast travels to Sweden to reunite with her daughter Eva. The pair have a troubled relationship: Charlotte sacrificed the responsibilities of motherhood for a career as a classical pianist. Over an emotional night, the pair reopen the wounds of the past. Charlotte gets another shock when she finds out that her mentally impaired daughter, Helena, is out of the asylum and living with Eva.",1978-10-08,1.9367,8.0,643 +323,10515,Castle in the Sky,A young boy and a girl with a magic crystal must race against pirates and foreign agents in a search for a legendary floating castle.,1986-08-02,4.5365,7.972,4399 +324,19542,The Red Shoes,"In this classic drama, Vicky Page is an aspiring ballerina torn between her dedication to dance and her desire to love. While her imperious instructor, Boris Lermontov, urges to her to forget anything but ballet, Vicky begins to fall for the charming young composer Julian Craster. Eventually Vicky, under great emotional stress, must choose to pursue either her art or her romance, a decision that carries serious consequences.",1948-09-06,1.5986,7.971,697 +325,895,Andrei Rublev,"An expansive Russian drama, this film focuses on the life of revered religious icon painter Andrei Rublev. Drifting from place to place in a tumultuous era, the peace-seeking monk eventually gains a reputation for his art. But after Rublev witnesses a brutal battle and unintentionally becomes involved, he takes a vow of silence and spends time away from his work. As he begins to ease his troubled soul, he takes steps towards becoming a painter once again.",1966-12-16,1.8836,7.971,881 +326,24,Kill Bill: Vol. 1,"An assassin is shot by her ruthless employer, Bill, and other members of their assassination circle – but she lives to plot her vengeance.",2003-10-10,9.5867,7.971,18049 +327,1000837,I'm Still Here,A woman married to a former politician during the 1971 military dictatorship in Brazil is forced to reinvent herself and chart a new course for her family after a violent and arbitrary act.,2024-09-19,5.5918,7.971,756 +328,424694,Bohemian Rhapsody,"Singer Freddie Mercury, guitarist Brian May, drummer Roger Taylor and bass guitarist John Deacon take the music world by storm when they form the rock 'n' roll band Queen in 1970. Hit songs become instant classics. When Mercury's increasingly wild lifestyle starts to spiral out of control, Queen soon faces its greatest challenge yet – finding a way to keep the band together amid the success and excess.",2018-10-24,7.1169,7.97,17241 +329,862,Toy Story,"Led by Woody, Andy's toys live happily in his room until Andy's birthday brings Buzz Lightyear onto the scene. Afraid of losing his place in Andy's heart, Woody plots against Buzz. But when circumstances separate Buzz and Woody from their owner, the duo eventually learns to put aside their differences.",1995-11-22,17.0281,7.97,19021 +330,11104,Chungking Express,"Two melancholic Hong Kong policemen fall in love: one with a mysterious underworld figure, the other with a beautiful and ethereal server at a late-night restaurant.",1994-07-14,4.7214,7.966,1982 +331,41050,La Notte,A day in the life of an unfaithful married couple and their steadily deteriorating relationship in Milan.,1961-01-24,1.6335,7.966,703 +332,28422,Love Exposure,"The story of a teenage boy named Yu, who falls for Yoko, a girl he runs into while operating for the sake of sin as an ""up-skirt"" photographer. His attempts to woo her are complicated by a spot of cross-dressing – which convinces Yoko that she is lesbian – dalliances with kung-fu and crime, and a constant struggle with the guilt that's a legacy of his Catholic upbringing.",2009-01-31,1.8135,8.0,478 +333,76,Before Sunrise,"A young man and woman meet on a train in Europe, and wind up spending one evening together in Vienna. Unfortunately, both know that this will probably be their only night together.",1995-01-27,5.7934,7.965,4361 +334,38286,Three Men and a Leg,"Friends Aldo, Giovanni, and Giacomo travel from north to south for Giacomo's wedding: the father of the bride, a tyrannical rich man who is both their boss and father-in-law—since Aldo and Giovanni have also married into the family—has entrusted them with a costly piece of modern art, one that looks just like a rather unremarkable wooden leg.",1997-12-27,1.1667,7.963,2106 +335,627,Trainspotting,"Hilarious but harrowing, the film charts the disintegration of the friendship between Renton, Spud, Sick Boy, Tommy and Begbie as they proceed seemingly towards a psychotic, drug-fuelled self-destruction.",1996-02-23,6.2013,8.0,9962 +336,329,Jurassic Park,"A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day, he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However, the park is anything but amusing as the security systems go off-line and the dinosaurs escape.",1993-06-11,14.4688,7.96,17002 +337,574074,Kitbull,"An unlikely connection sparks between two creatures: a fiercely independent stray kitten and a pit bull. Together, they experience friendship for the first time.",2019-01-18,1.9922,7.958,382 +338,14160,Up,"Carl Fredricksen spent his entire life dreaming of exploring the globe and experiencing life to its fullest. But at age 78, life seems to have passed him by, until a twist of fate (and a persistent 8-year old Wilderness Explorer named Russell) gives him a new lease on life.",2009-05-28,13.425,8.0,20854 +339,237791,The Way He Looks,"Leonardo is a blind teenager dealing with an overprotective mother while trying to live a more independent life. To the disappointment of his best friend, Giovana, he plans to go on an exchange program abroad. When Gabriel, a new student in town, arrives at their classroom, new feelings blossom in Leonardo making him question his plans.",2014-04-10,2.1283,7.957,959 +340,11712,Sanjuro,"Toshiro Mifune swaggers and snarls to brilliant comic effect in Kurosawa's tightly paced, beautifully composed ""Sanjuro."" In this companion piece and sequel to ""Yojimbo,"" jaded samurai Sanjuro helps an idealistic group of young warriors weed out their clan's evil influences, and in the process turns their image of a proper samurai on its ear.",1962-01-01,1.8663,7.957,657 +341,1396,Mirror,"A dying man in his forties recalls his childhood, his mother, the war and personal moments that tell of and juxtapose pivotal moments in Soviet history with daily life.",1975-03-07,2.8145,7.956,1010 +342,70,Million Dollar Baby,"Despondent over a painful estrangement from his daughter, trainer Frankie Dunn isn't prepared for boxer Maggie Fitzgerald to enter his life. But Maggie's determined to go pro and to convince Dunn and his cohort to help her.",2004-12-05,6.1761,7.955,9913 +343,37797,Whisper of the Heart,"Shizuku lives a simple life, dominated by her love for stories and writing. One day she notices that all the library books she has have been previously checked out by the same person: 'Seiji Amasawa'.",1995-07-15,4.1213,8.0,2123 +344,160885,Tel chi el telùn,A comedy show.,1999-05-12,0.3929,7.954,328 +345,679,Aliens,"Ripley, the sole survivor of the Nostromo's deadly encounter with the monstrous Alien, returns to Earth after drifting through space in hypersleep for 57 years. Although her story is initially met with skepticism, she agrees to accompany a team of Colonial Marines back to LV-426.",1986-07-18,10.4196,7.954,10233 +346,81,Nausicaä of the Valley of the Wind,"After a global war, the seaside kingdom known as the Valley of the Wind remains one of the last strongholds on Earth untouched by a poisonous jungle and the powerful insects that guard it. Led by the courageous Princess Nausicaä, the people of the Valley engage in an epic struggle to restore the bond between humanity and Earth.",1984-03-11,5.2306,7.951,3791 +347,10386,The Iron Giant,"In the small town of Rockwell, Maine in October 1957, a giant metal machine befriends a nine-year-old boy and ultimately finds its humanity by unselfishly saving people from their own fears and prejudices.",1999-08-06,6.6559,7.95,5841 +348,3090,The Treasure of the Sierra Madre,"Two jobless Americans convince a prospector to travel to the mountains of Mexico with them in search of gold. But the hostile wilderness, local bandits, and greed all get in the way of their journey.",1948-01-15,2.6817,7.95,1257 +349,745,The Sixth Sense,"Following an unexpected tragedy, child psychologist Malcolm Crowe meets a nine year old boy named Cole Sear, who is hiding a dark secret.",1999-08-06,8.9181,7.95,12175 +350,626332,Flamin' Hot,"The inspiring true story of Richard Montañez, the Frito Lay janitor who channeled his Mexican American heritage and upbringing to turn the iconic Flamin' Hot Cheetos into a snack that disrupted the food industry and became a global pop culture phenomenon.",2023-03-11,7.575,7.95,733 +351,12104,Pink Floyd: The Wall,A troubled rock star descends into madness in the midst of his physical and social isolation from everyone.,1982-07-14,2.6893,7.949,1549 +352,48035,Ordet,"The three sons of devout Danish farmer Morten have widely disparate religious beliefs. Youngest son Anders shares his father's religion, but eldest son Mikkel has lost his faith, while middle child Johannes has become delusional and proclaims that he is Jesus Christ himself. When Mikkel's wife, Inger goes into a difficult childbirth, everyone's beliefs are put to the test.",1955-01-09,0.9908,7.9,384 +353,29264,The Exterminating Angel,"A formal dinner party starts out normally enough, but after the bourgeois group retire to the host’s music room, they inexplicably find themselves unable to leave.",1962-05-16,1.556,7.948,694 +354,10997,Farewell My Concubine,Two boys meet at an opera training school in Peking in 1924. Their resulting friendship will span nearly 70 years and endure some of the most troublesome times in China's history.,1993-01-01,3.374,7.9,619 +355,15244,A Man Escaped,A captured French Resistance fighter during World War II engineers a daunting escape from prison.,1956-11-11,1.7616,7.9,570 +356,6977,No Country for Old Men,"Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as the violent pursuit of money and justice collide.",2007-06-13,14.076,7.946,12544 +357,961,The General,"During America’s Civil War, Union spies steal engineer Johnny Gray's beloved locomotive, 'The General'—with Johnnie's lady love aboard an attached boxcar—and he single-handedly must do all in his power to both get The General back and to rescue Annabelle.",1926-12-25,2.2384,7.945,1324 +358,315465,The Boy and the Beast,"Kyuta, a boy living in Shibuya, and Kumatetsu, a lonesome beast from Jutengai, an imaginary world. One day, Kyuta forays into the imaginary world and, as he's looking for his way back, meets Kumatetsu who becomes his spirit guide. That encounter leads them to many adventures.",2015-07-11,2.7843,7.944,1525 +359,634649,Spider-Man: No Way Home,"Peter Parker is unmasked and no longer able to separate his normal life from the high-stakes of being a super-hero. When he asks for help from Doctor Strange the stakes become even more dangerous, forcing him to discover what it truly means to be Spider-Man.",2021-12-15,29.2018,7.943,20978 +360,5925,The Great Escape,"The Nazis, exasperated at the number of escapes from their prison camps by a relatively small number of Allied prisoners, relocate them to a high-security 'escape-proof' camp to sit out the remainder of the war. Undaunted, the prisoners plan one of the most ambitious escape attempts of World War II. Based on a true story.",1963-07-03,5.9091,7.943,2664 +361,1580,Rope,Two young men attempt to prove they committed the perfect murder by hosting a dinner party for the family of a classmate they just strangled to death.,1948-03-11,2.8282,7.943,2832 +362,197,Braveheart,"Enraged at the slaughter of Murron, his new bride and childhood love, Scottish warrior William Wallace slays a platoon of the local English lord's soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.",1995-05-24,9.4661,7.943,10535 +363,78,Blade Runner,"In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to terminate a quartet of replicants who have escaped to Earth seeking their creator for a way to extend their short life spans.",1982-06-25,10.0339,7.941,14281 +364,18438,Castaway on the Moon,"Mr. Kim is jobless, lost in debt and has been dumped by his girlfriend. He decides to end it all by jumping into the Han River - only to find himself washed up on a small, mid-river island. He soon abandons thoughts of suicide or rescue and begins a new life as a castaway. His antics catch the attention of a young woman whose apartment overlooks the river. Her discovery changes both their lives.",2009-05-14,2.0239,7.94,699 +365,149,Akira,A secret military project endangers Neo-Tokyo when it turns a biker gang member into a rampaging psychic psychopath that only two teenagers and a group of psychics can stop.,1988-06-10,6.6578,7.94,4470 +366,76203,12 Years a Slave,"In the pre-Civil War United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty as well as unexpected kindnesses Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomon’s chance meeting with a Canadian abolitionist will forever alter his life.",2013-10-18,6.5999,7.939,11544 +367,30017,Close-Up,"This fiction-documentary hybrid uses a sensational real-life event—the arrest of a young man on charges that he fraudulently impersonated the well-known filmmaker Mohsen Makhmalbaf—as the basis for a stunning, multilayered investigation into movies, identity, artistic creation, and existence, in which the real people from the case play themselves.",1990-05-09,1.1857,7.9,411 +368,28978,The Circus,"Charlie, a wandering tramp, becomes a circus handyman - soon the star of the show - and falls in love with the circus owner's stepdaughter.",1928-01-06,1.9892,7.935,834 +369,447365,Guardians of the Galaxy Vol. 3,"Peter Quill, still reeling from the loss of Gamora, must rally his team around him to defend the universe along with protecting one of their own. A mission that, if not completed successfully, could quite possibly lead to the end of the Guardians as we know them.",2023-05-03,14.9886,7.934,7548 +370,242828,When Marnie Was There,"Upon being sent to live with relatives in the countryside due to an illness, an emotionally distant adolescent girl becomes obsessed with an abandoned mansion and infatuated with a girl who lives there - a girl who may or may not be real.",2014-07-19,3.7214,7.9,1871 +371,8290,Don't Look Now... We're Being Shot At!,"During World War II, two French civilians and a downed British Bomber Crew set out from Paris to cross the demarcation line between Nazi-occupied Northern France and the South. From there they will be able to escape to England. First, they must avoid German troops – and the consequences of their own blunders.",1966-12-08,3.0427,7.9,1398 +372,6715,The Cure,"Erik, a loner, finds a friend in Dexter, an eleven-year-old boy with AIDS. They vow to find a cure for AIDS together and save Dexter's life in an eventful summer.",1995-04-21,1.0755,7.9,321 +373,234,The Cabinet of Dr. Caligari,"Francis, a young man, recalls in his memory the horrible experiences he and his fiancée Jane recently went through. Francis and his friend Alan visit The Cabinet of Dr. Caligari, an exhibit where the mysterious doctor shows the somnambulist Cesare, and awakens him for some moments from his death-like sleep.",1920-02-27,2.142,7.933,1669 +374,726684,Miraculous World: Shanghai - The Legend of Ladydragon,"On school break, Marinette heads to Shanghai to meet Adrien. But after arriving, Marinette loses all her stuff, including the Miraculous that allows her to turn into Ladybug!",2021-05-15,3.2993,7.9,667 +375,10404,Raise the Red Lantern,"In 1920s China, 19-year-old Songlian becomes a concubine of a powerful lord and is forced to compete with his three wives for the privileges gained.",1991-12-18,2.1355,7.932,749 +376,296096,Me Before You,"A small town girl is caught between dead-end jobs. A high-profile, successful man becomes wheelchair bound following an accident. The man decides his life is not worth living until the girl is hired for six months to be his new caretaker. Worlds apart and trapped together by circumstance, the two get off to a rocky start. But the girl becomes determined to prove to the man that life is worth living and as they embark on a series of adventures together, each finds their world changing in ways neither of them could begin to imagine.",2016-06-01,18.7649,7.93,12774 +377,11010,The Postman,Simple Italian postman learns to love poetry while delivering mail to a famous poet; he uses this to woo local beauty Beatrice.,1994-04-07,1.336,7.93,1166 +378,489412,It's Such a Beautiful Day,Bill struggles to put together his shattered psyche.,2012-08-24,0.6736,7.9,346 +379,142061,"Batman: The Dark Knight Returns, Part 2",Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman.,2013-01-03,3.4614,7.9,1534 +380,20803,Ivan Vasilyevich Changes His Profession,"A scientist builds a time machine and accidentally sends his apartment complex manager and a petty burglar to 16th century Moscow, while Tsar Ivan the Terrible travels to 1973.",1973-09-17,1.1159,7.9,373 +381,1376434,Predator: Killer of Killers,"While three of the fiercest warriors in human history—a Viking raider, a ninja in feudal Japan, and a WWII pilot—are killers in their own right, they are merely prey for their new opponent: the ultimate killer of killers.",2025-06-05,39.8233,7.93,783 +382,1050035,Monster,"After an outburst at school involving her son, a concerned single mother demands answers, triggering a sequence of deepening suspicion and turmoil.",2023-06-02,5.3627,7.926,730 +383,49964,Where Is The Friend's House?,"An 8-year-old boy must return his friend's notebook he took by mistake, lest his friend be punished by expulsion from school.",1987-07-01,2.0703,7.926,392 +384,9323,Ghost in the Shell,"In the year 2029, the barriers of our world have been broken down by the net and by cybernetics, but this brings new vulnerability to humans in the form of brain-hacking. When a highly-wanted hacker known as 'The Puppetmaster' begins involving them in politics, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop the Puppetmaster.",1995-11-18,5.8309,7.926,3603 +385,1578,Raging Bull,"The life of boxer Jake LaMotta, whose violence and temper that led him to the top in the ring destroyed his life outside of it.",1980-11-14,6.0335,7.927,4493 +386,770,Gone with the Wind,The spoiled daughter of a Georgia plantation owner conducts a tumultuous romance with a cynical profiteer during the American Civil War and Reconstruction Era.,1939-12-15,6.1757,7.9,4176 +387,85,Raiders of the Lost Ark,"When Dr. Indiana Jones – the tweed-suited professor who just happens to be a celebrated archaeologist – is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.",1981-06-12,9.0562,7.925,13000 +388,1646,Freedom Writers,"A young teacher inspires her class of at-risk students to learn tolerance, apply themselves, and pursue education beyond high school.",2007-01-05,3.9826,7.9,2331 +389,13398,Tokyo Godfathers,"On Christmas Eve, three homeless people living on the streets of Tokyo discover a newborn baby among the trash and set out to find its parents.",2003-12-05,2.4056,7.922,1374 +390,949,Heat,Obsessive master thief Neil McCauley leads a top-notch crew on various daring heists throughout Los Angeles while determined detective Vincent Hanna pursues him without rest. Each man recognizes and respects the ability and the dedication of the other even though they are aware their cat-and-mouse game may end in violence.,1995-12-15,10.208,7.921,7730 +391,152532,Dallas Buyers Club,"Loosely based on the true-life tale of Ron Woodroof, a drug-taking, women-loving, homophobic man who in 1986 was diagnosed with HIV/AIDS and given thirty days to live.",2013-11-01,3.8508,7.92,8693 +392,740937,Simone: Woman of the Century,"Simone Veil's life story through the pivotal events of Twentieth Century. Her childhood, her political battles, her tragedies. An intimate and epic portrait of an extraordinary woman who eminently challenged and transformed her era defending a humanist message still keenly relevant today.",2022-10-12,0.6826,7.919,359 +393,615453,Ne Zha,"A young boy is born as the reincarnation of a demonic power, into a society that hates and fears him. Destined by prophecy to bring destruction to the world, Nezha must choose between good and evil to see if he can change his fate.",2019-07-26,72.533,7.919,594 +394,38360,The Cranes Are Flying,"Veronika and Boris come together in Moscow shortly before World War II. Walking along the river, they watch cranes fly overhead, and promise to rendezvous before Boris leaves to fight. Boris misses the meeting and is off to the front lines, while Veronika waits patiently, sending letters faithfully. After her house is bombed, Veronika moves in with Boris' family, into the company of a cousin with his own intentions.",1957-10-12,2.944,7.919,413 +395,9764,Dersu Uzala,"A military explorer meets and befriends a Goldi man in Russia’s unmapped forests. A deep and abiding bond evolves between the two men, one civilized in the usual sense, the other at home in the glacial Siberian woods.",1975-08-02,1.6903,7.919,574 +396,829,Chinatown,"Private eye Jake Gittes lives off of the murky moral climate of sunbaked, pre-World War II Southern California. Hired by a beautiful socialite to investigate her husband's extra-marital affair, Gittes is swept into a maelstrom of double dealings and deadly deceits, uncovering a web of personal and political scandals that come crashing together.",1974-06-20,4.4543,7.918,3995 +397,827,Diabolique,"The cruel and abusive headmaster of a boarding school, Michel Delassalle, is murdered by an unlikely duo -- his meek wife and the mistress he brazenly flaunts. The women become increasingly unhinged by a series of odd occurrences after Delassalle's corpse mysteriously disappears.",1955-01-29,2.493,7.918,1023 +398,916224,Suzume,"Suzume, 17, lost her mother as a little girl. On her way to school, she meets a mysterious young man. But her curiosity unleashes a calamity that endangers the entire population of Japan, and so Suzume embarks on a journey to set things right.",2022-11-11,7.1694,7.917,1521 +399,426618,Where Hands Touch,"Germany, 1944. Leyna, the 15-year old daughter of a white German mother and a black African father, meets Lutz, a compassionate member of the Hitler Youth whose father is a prominent Nazi soldier, and they form an unlikely connection in this quickly changing world.",2018-09-14,2.2797,7.917,521 +400,25538,Yi Yi,"Each member of a family in Taipei asks hard questions about life's meaning as they live through everyday quandaries. NJ is morose: his brother owes him money, his mother-in-law is in a coma, his wife suffers a spiritual crisis when she finds her life a blank and his business partners make bad decisions.",2000-09-20,3.221,7.9,580 +401,776503,CODA,"As a CODA (Child of Deaf Adults), Ruby is the only hearing person in her deaf family. When the family's fishing business is threatened, Ruby finds herself torn between pursuing her love of music and her fear of abandoning her parents.",2021-08-13,6.7927,7.916,2376 +402,615457,Nobody,"Hutch Mansell, a suburban dad, overlooked husband, nothing neighbor — a ""nobody."" When two thieves break into his home one night, Hutch's unknown long-simmering rage is ignited and propels him on a brutal path that will uncover dark secrets he fought to leave behind.",2021-03-18,14.495,7.916,7526 +403,3777,Throne of Blood,"Returning to their lord's castle, samurai warriors Washizu and Miki are waylaid by a spirit who predicts their futures. When the first part of the spirit's prophecy comes true, Washizu's scheming wife, Asaji, presses him to speed up the rest of the spirit's prophecy by murdering his lord and usurping his place. Director Akira Kurosawa's resetting of William Shakespeare's ""Macbeth"" in feudal Japan is one of his most acclaimed films.",1957-01-15,3.0498,7.9,917 +404,51482,Death Note Relight 1: Visions of a God,"A recap of Death Note episodes 1–26, with alternate footage. When rogue shinigami Ryuk leaves his Death Note in the human world, he has no idea how far the one who finds it will take his new-found power. With the Death Note in hand, brilliant high school student Light Yagami vows to rid the world of evil.",2009-09-23,8.0086,7.9,363 +405,21334,Children of Heaven,"Zohre's shoes are gone; her older brother Ali lost them. They are poor, there are no shoes for Zohre until they come up with an idea: they will share one pair of shoes. School awaits.",1997-08-01,2.6914,7.915,667 +406,1092,The Third Man,"In postwar Vienna, Austria, Holly Martins, a writer of pulp Westerns, arrives penniless as a guest of his childhood chum Harry Lime, only to learn he has died. Martins develops a conspiracy theory after learning of a ""third man"" present at the time of Harry's death, running into interference from British officer Major Calloway, and falling head-over-heels for Harry's grief-stricken lover, Anna.",1949-08-31,3.6026,7.915,1976 +407,33,Unforgiven,"William Munny is a retired, once-ruthless killer turned gentle widower and hog farmer. To help support his two motherless children, he accepts one last bounty-hunter mission to find the men who brutalized a prostitute. Joined by his former partner and a cocky greenhorn, he takes on a corrupt sheriff.",1992-08-07,5.2757,7.915,4642 +408,194,Amélie,"At a tiny Parisian café, the adorable yet painfully shy Amélie accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?",2001-04-25,8.1339,7.914,11883 +409,180147,We Are the Nobles,"Tells the ""riches to rags"" story of the Nobles, three upper-class twenty-somethings that appear to have no limits to their checkbooks, and no direction in their lives. Until one day, their father tries to teach them a lesson by staging a financial scandal that forces the whole family to escape to an old house in the poor side of town, and leads the ""kids"" to do what they haven't done before: get jobs.",2013-03-28,2.2513,7.913,514 +410,122906,About Time,"The night after another unsatisfactory New Year's party, Tim's father tells his son that the men in his family have always had the ability to travel through time. They can't change history, but they can change what happens and has happened in their own lives. Thus begins the start of a lesson in learning to appreciate life itself as it is, as it comes, and most importantly, the people living alongside us.",2013-09-04,7.9244,7.9,8828 +411,582927,I'm No Longer Here,"In Monterrey, Mexico, a young street gang spends their days dancing to slowed-down cumbia and attending parties. After a mix-up with a local cartel, their leader is forced to migrate to the U.S. but quickly longs to return home.",2019-10-21,1.805,7.912,506 +412,405,La Strada,"When Gelsomina, a naïve young woman, is purchased from her impoverished mother by brutish circus strongman Zampanò to be his wife and partner, she loyally endures her husband's coldness and abuse as they travel the Italian countryside performing together. Soon Zampanò must deal with his jealousy and conflicted feelings about Gelsomina when she finds a kindred spirit in Il Matto, the carefree circus fool, and contemplates leaving Zampanò.",1954-09-23,1.6337,7.912,1107 +413,150540,Inside Out,"When 11-year-old Riley moves to a new city, her Emotions team up to help her through the transition. Joy, Fear, Anger, Disgust and Sadness work together, but when Joy and Sadness get lost, they must journey through unfamiliar places to get back home.",2015-06-17,15.0109,7.9,22674 +414,110,Three Colors: Red,"Part-time model Valentine unexpectedly befriends a retired judge after she runs over his dog. At first, the grumpy man shows no concern about the dog, and Valentine decides to keep it. But the two form a bond when she returns to his house and catches him listening to his neighbors’ phone calls.",1994-05-12,3.4124,7.911,1457 +415,775,A Trip to the Moon,"Professor Barbenfouillis and five of his colleagues from the Academy of Astronomy travel to the Moon aboard a rocket propelled by a giant cannon. Once on the lunar surface, the bold explorers face the many perils hidden in the caves of the mysterious planet.",1902-06-15,1.875,7.9,1870 +416,488623,Forgotten,"Seoul, South Korea, 1997. When the young but extremely anxious student Jin-seok, his parents and his successful older brother Yoo-seok move to a new home, mysterious and frightening events begin to happen around them, unexplained events that threaten to ruin their seemingly happy lives. Unable to understand what is happening, Jin-seok wonders if he is losing his mind.",2017-11-29,3.9291,7.908,1203 +417,28971,Limelight,A fading music hall comedian tries to help a despondent ballet dancer learn to walk and to again feel confident about life.,1952-10-16,2.0858,7.908,557 +418,7857,Amarcord,"In an Italian seaside town, young Titta gets into trouble with his friends and watches various local eccentrics as they engage in often absurd behavior. Frequently clashing with his stern father and defended by his doting mother, Titta witnesses the actions of a wide range of characters, from his extended family to Fascist loyalists to sensual women, with certain moments shifting into fantastical scenarios.",1973-12-18,1.5679,7.908,1147 +419,10242,What Ever Happened to Baby Jane?,A former child star torments her paraplegic sister in their decaying Hollywood mansion.,1962-10-31,3.3533,7.907,1096 +420,10238,Cries and Whispers,"As Agnes slowly dies of cancer, her sisters are so immersed in their own psychic pains that they are unable to offer her the support she needs.",1972-12-21,1.7607,7.9,728 +421,15383,Army of Shadows,"Betrayed by an informant, Philippe Gerbier finds himself trapped in a torturous Nazi prison camp. Though Gerbier escapes to rejoin the Resistance in occupied Marseilles, France, and exacts his revenge on the informant, he must continue a quiet, seemingly endless battle against the Nazis in an atmosphere of tension, paranoia and distrust.",1969-09-10,2.2865,7.9,687 +422,10728,Faust,"God and Satan war over earth; to settle things, they wager on the soul of Faust, a learned and prayerful alchemist.",1926-10-13,1.1153,7.9,371 +423,505262,My Hero Academia: Two Heroes,"All Might and Deku accept an invitation to go abroad to a floating and mobile manmade city, called 'I-Island', where they research quirks as well as hero supplemental items at the special 'I-Expo' convention that is currently being held on the island. During that time, suddenly, despite an iron wall of security surrounding the island, the system is breached by a villain, and the only ones able to stop him are the students of Class 1-A.",2018-08-03,3.9165,7.9,1053 +424,404378,A Street Cat Named Bob,"James Bowen, a homeless busker and recovering drug addict, has his life transformed when he meets a stray ginger cat.",2016-11-04,2.75,7.905,1484 +425,10674,Mulan,"To save her father from certain death in the army, a young woman secretly enlists in his place and becomes one of China's greatest heroines in the process.",1998-06-18,11.4103,7.905,10048 +426,1892,Return of the Jedi,"Luke Skywalker leads a mission to rescue his friend Han Solo from the clutches of Jabba the Hutt, while the Emperor seeks to destroy the Rebellion once and for all with a second dreaded Death Star.",1983-05-25,6.835,7.905,16231 +427,597,Titanic,"101-year-old Rose DeWitt Bukater tells the story of her life aboard the Titanic, 84 years later. A young Rose boards the ship with her mother and fiancé. Meanwhile, Jack Dawson and Fabrizio De Rossi win third-class tickets aboard the ship. Rose tells the whole story from Titanic's departure through to its death—on its first and last voyage—on April 15, 1912.",1997-11-18,24.468,7.905,26216 +428,118340,Guardians of the Galaxy,"Light years from Earth, 26 years after being abducted, Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.",2014-07-30,8.476,7.904,28745 +429,20271,Divorce Italian Style,"Ferdinando Cefalù is desperate to marry his cousin, Angela, but he is married to Rosalia and divorce is illegal in Italy. To get around the law, he tries to trick his wife into having an affair so he can catch her and murder her, as he knows he would be given a light sentence for killing an adulterous woman. He persuades a painter to lure his wife into an affair, but Rosalia proves to be more faithful than he expected.",1961-12-20,1.3326,7.9,495 +430,503314,Dragon Ball Super: Broly,"Earth is peaceful following the Tournament of Power. Realizing that the universes still hold many more strong people yet to see, Goku spends all his days training to reach even greater heights. Then one day, Goku and Vegeta are faced by a Saiyan called 'Broly' who they've never seen before. The Saiyans were supposed to have been almost completely wiped out in the destruction of Planet Vegeta, so what's this one doing on Earth? This encounter between the three Saiyans who have followed completely different destinies turns into a stupendous battle, with even Frieza (back from Hell) getting caught up in the mix.",2018-12-14,1.2593,7.903,3009 +431,158445,Miracle in Cell No. 7,A story about a mentally ill man wrongfully imprisoned for murder and his relationship with his 6 year old daughter.,2013-01-23,1.9253,7.903,460 +432,20722,La Maison en Petits Cubes,La Maison en Petits Cubes tells the story of a grandfather's memories as he adds more blocks to his house to stem the flooding waters.,2008-06-10,0.9738,7.902,439 +433,671,Harry Potter and the Philosopher's Stone,"Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard—with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths—and about the villain who's to blame.",2001-11-16,32.6214,7.902,28467 +434,7984,In the Name of the Father,"A small-time Belfast thief, Gerry Conlon, is wrongly convicted of an IRA bombing in London, along with his father and friends, and spends 15 years in prison fighting to prove his innocence.",1993-12-12,3.2009,7.901,1836 +435,554596,"No manches, Frida 2: paraíso destruido","Zequi and Lucy are about to get married. Although he promises not to overdo it during the bachelor party, things get out of control.",2019-03-15,4.2104,7.898,922 +436,313369,La La Land,"Mia, an aspiring actress, serves lattes to movie stars in between auditions and Sebastian, a jazz musician, scrapes by playing cocktail party gigs in dingy bars, but as success mounts they are faced with decisions that begin to fray the fragile fabric of their love affair, and the dreams they worked so hard to maintain in each other threaten to rip them apart.",2016-12-01,9.4683,7.899,17425 +437,752,V for Vendetta,"In a world in which Great Britain has become a fascist state, a masked vigilante known only as “V” conducts guerrilla warfare against the oppressive British government. When V rescues a young woman from the secret police, he finds in her an ally with whom he can continue his fight to free the people of Britain.",2006-02-23,7.6513,7.898,14925 +438,223,Rebecca,"Story of a young woman who marries a fascinating widower only to find out that she must live in the shadow of his former wife, Rebecca, who died mysteriously several years earlier. The young wife must come to grips with the terrible secret of her handsome, cold husband, Max De Winter. She must also deal with the jealous, obsessed Mrs. Danvers, the housekeeper, who will not accept her as the mistress of the house.",1940-03-23,3.0073,7.9,1854 +439,667520,A Whisker Away,"A peculiar girl transforms into a cat to catch her crush's attention. But before she realizes it, the line between human and animal starts to blur.",2020-06-18,4.2766,7.9,1430 +440,354857,Regular Show: The Movie,"After a high school lab experiment goes horribly wrong, Mordecai and Rigby must go back in time to battle an evil volleyball coach in order to save the universe — and their friendship.",2015-09-01,1.9711,7.9,404 +441,14836,Coraline,"Wandering her rambling old house in her boring new town, 11-year-old Coraline discovers a hidden door to a strangely idealized version of her life. In order to stay in the fantasy, she must make a frighteningly real sacrifice.",2009-02-05,17.5123,7.897,8492 +442,378108,In This Corner of the World,"Japan, 1943, during World War II. Young Suzu leaves her village near Hiroshima to marry and live with her in-laws in Kure, a military harbor. Her creativity to overcome deprivation quickly makes her indispensable at home. Inhabited by an ancestral wisdom, Suzu impregnates the simple gestures of everyday life with poetry and beauty. The many hardships, the loss of loved ones, the frequent air raids of the enemy, nothing alters her enthusiasm…",2016-11-12,1.9467,7.896,579 +443,654,On the Waterfront,"A prizefighter-turned-longshoreman with a conscience goes up against labor leaders to expose corruption, extortion, and murder among the union ranks.",1954-06-22,3.0155,7.895,1655 +444,1426776,STRAW,What will be her last straw? A devastatingly bad day pushes a hardworking single mother to the breaking point — and into a shocking act of desperation.,2025-06-05,24.482,7.894,780 +445,530254,The Witch: Part 1. The Subversion,"Ja-yoon is a high school student who struggles with memory loss after she endured some unknown trauma during her childhood. While trying to uncover the truth, she is unwittingly dragged into a world of crime and finds herself on a journey that will awaken many secrets hidden deep within.",2018-06-27,8.4209,7.894,653 +446,920394,My Father's Violin,"Through their shared grief and connection to music, an orphaned girl bonds with her emotionally aloof, successful violinist uncle.",2022-01-21,1.2693,7.893,335 +447,774531,Young Woman and the Sea,"This is the extraordinary true story of Trudy Ederle, the first woman to successfully swim the English Channel. Through the steadfast support of her older sister and supportive trainers, she overcame adversity and the animosity of a patriarchal society to rise through the ranks of the Olympic swimming team and complete the 21-mile trek from France to England.",2024-05-31,2.7356,7.893,361 +448,491480,The Boy Who Harnessed the Wind,"Against all the odds, a thirteen year old boy in Malawi invents an unconventional way to save his family and village from famine.",2019-02-14,5.2294,7.893,1759 +449,334533,Captain Fantastic,"Deep in the forests of the Pacific Northwest, a father devoted to raising his six kids with a rigorous physical and intellectual education is forced to leave his paradise and enter the world, beginning a journey that challenges his idea of what it means to be a parent.",2016-07-08,3.7531,7.893,6576 +450,29455,Winter Light,"A Swedish pastor fails a loving woman, a suicidal fisherman and God.",1963-02-11,1.3113,7.9,468 +451,1162,The Miracle Worker,"The true story of the frightening, lonely world of silence and darkness of 7-year-old Helen Keller who, since infancy, has never seen the sky, heard her mother's voice or expressed her innermost feelings. Then Annie Sullivan, a 20-year-old teacher from Boston, arrives. Having just recently regained her own sight, the no-nonsense Annie reaches out to Helen through the power of touch, the only tool they have in common, and leads her bold pupil on a miraculous journey from fear and isolation to happiness and light.",1962-05-23,1.7699,7.892,318 +452,610150,Dragon Ball Super: Super Hero,"The Red Ribbon Army, an evil organization that was once destroyed by Goku in the past, has been reformed by a group of people who have created new and mightier Androids, Gamma 1 and Gamma 2, and seek vengeance against Goku and his family.",2022-06-11,5.7844,7.891,2914 +453,1402,The Pursuit of Happyness,A struggling salesman takes custody of his son as he's poised to begin a life-changing professional career.,2006-12-14,8.2113,7.891,10159 +454,944401,Dogman,"A boy, bruised by life, finds his salvation through the love of his dogs.",2023-09-27,6.9836,7.89,1231 +455,210577,Gone Girl,"With his wife's disappearance having become the focus of an intense media circus, a man sees the spotlight turned on him when it's suspected that he may not be innocent.",2014-10-01,15.2051,7.9,19171 +456,11036,The Notebook,"An epic love story centered around an older man who reads aloud to a woman with Alzheimer's. From a faded notebook, the old man's words bring to life the story about a couple who is separated by World War II, and is then passionately reunited, seven years later, after they have taken different paths.",2004-05-25,13.3422,7.9,12010 +457,2011,Persepolis,"In 1970s Iran, Marjane 'Marji' Satrapi watches events through her young eyes and her idealistic family of a long dream being fulfilled of the hated Shah's defeat in the Iranian Revolution of 1979. However as Marji grows up, she witnesses first hand how the new Iran, now ruled by Islamic fundamentalists, has become a repressive tyranny on its own.",2007-06-27,2.5944,7.889,2028 +458,665,Ben-Hur,"In 25 AD, Judah Ben-Hur, a Jew in ancient Judea, opposes the occupying Roman empire. Falsely accused by a Roman childhood friend-turned-overlord of trying to kill the Roman governor, he is put into slavery and his mother and sister are taken away as prisoners.",1959-11-18,6.0298,7.9,2927 +459,60243,A Separation,A married couple are faced with a difficult decision - to improve the life of their child by moving to another country or to stay in Iran and look after a deteriorating parent who has Alzheimer's disease.,2011-02-15,2.6036,7.888,1827 +460,833,Umberto D.,"When elderly pensioner Umberto Domenico Ferrari returns to his boarding house from a protest calling for a hike in old-age pensions, his landlady demands her 15,000-lire rent by the end of the month or he and his small dog will be turned out onto the street. Unable to get the money in time, Umberto fakes illness to get sent to a hospital, giving his beloved dog to the landlady's pregnant and abandoned maid for temporary safekeeping.",1952-01-20,1.1924,7.888,710 +461,360814,Dangal,"Dangal is an extraordinary true story based on the life of Mahavir Singh and his two daughters, Geeta and Babita Phogat. The film traces the inspirational journey of a father who trains his daughters to become world class wrestlers.",2016-12-21,3.741,7.887,1054 +462,183011,Justice League: The Flashpoint Paradox,The Flash finds himself in a war-torn alternate timeline and teams up with alternate versions of his fellow heroes to restore the timeline.,2013-07-30,3.6418,7.886,1888 +463,458302,"Remi, Nobody's Boy","At the age of 10 years, young Rémi is snatched from his adoptive mother and entrusted to the signor Vitalis, a mysterious itinerant musician. Has its hard sides - he will learn the harsh life of acrobat and sing to win his bread. Accompanied by the faithful dog capi and of the small monkey Joli-Coeur, his long trip through France, made for meetings, friendships and mutual assistance, leads him to the secret of its origins.",2018-12-12,1.8321,7.9,435 +464,550205,Wish Dragon,Determined teen Din is longing to reconnect with his childhood best friend when he meets a wish-granting dragon who shows him the magic of possibilities.,2021-01-15,4.4383,7.884,1399 +465,482321,Ron's Gone Wrong,"In a world where walking, talking, digitally connected bots have become children's best friends, an 11-year-old finds that his robot buddy doesn't quite work the same as the others do.",2021-10-14,3.4614,7.883,1928 +466,94047,My Way,"During the invasion of Normandy the photograph of a slim Korean man in German uniform was found. It transpired that the man had served as a soldier in the Japanese, Russian and German armies. His incredible story inspired director Kang Je-Gyu to create this epic war drama.",2011-12-21,2.2309,7.883,416 +467,573164,An Egg Rescue,Toto and his friends must rescue his egg children after they're taken away for a gourmet food event in Africa.,2021-08-12,1.756,7.9,412 +468,804,Roman Holiday,"Overwhelmed by her suffocating schedule, touring European princess Ann takes off for a night while in Rome. When a sedative she took from her doctor kicks in, however, she falls asleep on a park bench and is found by an American reporter, Joe Bradley, who takes her back to his apartment for safety. At work the next morning, Joe finds out Ann's regal identity and bets his editor he can get exclusive interview with her, but romance soon gets in the way.",1953-08-26,5.4394,7.9,2137 +469,761898,Sword Art Online the Movie – Progressive – Aria of a Starless Night,"One month after Kayaba Akihiko's game of death began, the death toll continues to rise, two thousand players having already lost their lives to the ultra-difficult VRMMO world of Sword Art Online. On the day of the strategy meeting to plan out the first-floor boss battle, Kirito, a solo player who vows to fight alone to get stronger, runs into a rare, high-level female player. She gracefully dispatches powerful monsters with a single rapier that flashes like a shooting star in the night...",2021-10-30,2.1399,7.881,303 +470,455714,Bad Genius,"Lynn, a brilliant student, after helping her friends to get the grades they need, develops the idea of starting a much bigger exam-cheating business.",2017-05-03,1.6054,7.88,805 +471,23160,Werckmeister Harmonies,A naive young man witnesses an escalation of violence in his small hometown following the arrival of a mysterious circus attraction.,2001-02-01,1.2852,7.9,347 +472,1607,A Bronx Tale,"Set in the Bronx during the tumultuous 1960s, an adolescent boy is torn between his honest, working-class father and a violent yet charismatic crime boss. Complicating matters is the youngster's growing attraction - forbidden in his neighborhood - for a beautiful black girl.",1993-10-01,6.1902,7.878,2647 +473,52629,El Infierno,"After being deported back to Mexico, a man has no choice but to join the vicious drug cartel that has corrupted his hometown in order to survive.",2010-09-03,7.0229,7.876,715 +474,16237,Teen Titans: Trouble in Tokyo,"After a battle with a high-tech villain named, Saiko-Tek, the Teen Titans travel to the city of Tokyo where they find themselves embroiled in a conflict with an ancient enemy.",2006-09-15,3.5076,7.876,436 +475,501929,The Mitchells vs. the Machines,"A quirky, dysfunctional family's road trip is upended when they find themselves in the middle of the robot apocalypse and suddenly become humanity's unlikeliest last hope.",2021-04-22,5.3369,7.875,3112 +476,47796,Mamma Roma,"After years spent working as a prostitute in her Italian village, middle-aged Mamma Roma has saved enough money to buy herself a fruit stand so that she can have a respectable middle-class life and reestablish contact with the 16-year-old son she abandoned when he was an infant. But her former pimp threatens to expose her sordid past, and her troubled son seems destined to fall into a life of crime and violence.",1962-09-22,1.6389,7.9,415 +477,698948,Thirteen Lives,"Based on the true nail-biting mission that captivated the world. Twelve boys and the coach of a Thai soccer team explore the Tham Luang cave when an unexpected rainstorm traps them in a chamber inside the mountain. Entombed behind a maze of flooded cave tunnels, they face impossible odds. A team of world-class divers navigate through miles of dangerous cave networks to discover that finding the boys is only the beginning.",2022-07-18,4.9189,7.874,1352 +478,316029,The Greatest Showman,"The story of American showman P.T. Barnum, founder of the circus that became the famous traveling Ringling Bros. and Barnum & Bailey Circus.",2017-12-20,7.1443,7.874,9700 +479,393,Kill Bill: Vol. 2,"The Bride unwaveringly continues on her roaring rampage of revenge against the band of assassins who had tried to kill her and her unborn child. She visits each of her former associates one-by-one, checking off the victims on her Death List Five until there's nothing left to do … but kill Bill.",2004-04-16,6.7733,7.9,14380 +480,961323,Nimona,"A knight framed for a tragic crime teams with a scrappy, shape-shifting teen to prove his innocence.",2023-06-23,4.8753,7.873,1226 +481,24238,Mary and Max,"A tale of friendship between two unlikely pen pals: Mary, a lonely, eight-year-old girl living in the suburbs of Melbourne, and Max, a forty-four-year old, severely obese man living in New York.",2009-04-09,4.2234,7.9,2096 +482,3112,The Night of the Hunter,"In Depression-era West Virginia, a serial-killing preacher hunts two young children who know the whereabouts of a stash of money.",1955-07-27,3.2457,7.872,1695 +483,662,La Jetée,A man confronts his past during an experiment that attempts to find a solution to the problems of a post-apocalyptic world caused by a world war.,1962-02-16,2.0875,7.9,938 +484,11293,Paper Moon,"During the Great Depression, a con man finds himself saddled with a young girl who may or may not be his daughter, and the two forge an unlikely partnership.",1973-05-09,1.6721,7.9,762 +485,265195,Wild Tales,"Injustice and the demands of the world can cause stress for many people. Some of them, however, explode. This includes a waitress serving a grouchy loan shark, an altercation between two motorists, an ill-fated wedding reception, and a wealthy businessman who tries to buy his family out of trouble.",2014-08-21,3.9797,7.9,3532 +486,17295,The Battle of Algiers,Tracing the struggle of the Algerian Front de Liberation Nationale to gain freedom from French colonial rule as seen through the eyes of Ali from his start as a petty thief to his rise to prominence in the organisation and capture by the French in 1957. The film traces the rebels' struggle and the increasingly extreme measures taken by the French government to quell the revolt.,1966-09-08,2.7527,7.867,822 +487,3034,Young Frankenstein,"A young neurosurgeon inherits the castle of his grandfather, the famous Dr. Victor von Frankenstein. In the castle he finds a funny hunchback, a pretty lab assistant and the elderly housekeeper. Young Frankenstein believes that the work of his grandfather was delusional, but when he discovers the book where the mad doctor described his reanimation experiment, he suddenly changes his mind.",1974-12-15,3.3975,7.868,3234 +488,16,Dancer in the Dark,"Selma, a Czech immigrant on the verge of blindness, struggles to make ends meet for herself and her son, who has inherited the same genetic disorder and will suffer the same fate without an expensive operation. When life gets too difficult, Selma learns to cope through her love of musicals, escaping life's troubles – even if just for a moment – by dreaming up little numbers to the rhythmic beats of her surroundings.",2000-09-01,27.6516,7.9,1881 +489,45752,Scooby-Doo! Camp Scare,"Scooby and the gang experience outdoor fun as they go back to Fred's old summer camp. As summer goes on, it becomes increasingly clear that the spooky camp stories told by the fireplace, are more real than they've though and soon, it's up to the gang to try and solve the mystery of camp scare.",2010-09-14,2.3166,7.865,312 +490,331482,Little Women,Four sisters come of age in America in the aftermath of the Civil War.,2019-12-25,5.6726,7.864,6508 +491,32085,Vincent,Young Vincent Malloy dreams of being just like Vincent Price and loses himself in macabre daydreams that annoy his mother.,1982-10-01,1.0212,7.863,877 +492,381341,Perfect Strangers,"During a dinner, a group of friends decide to share whatever message or phone call they will receive during the evening, with unforeseen consequences.",2016-02-11,2.6364,7.862,4479 +493,369557,Sing Street,A boy growing up in Dublin during the 1980s escapes his strained family life by starting a band to impress the mysterious girl he likes.,2016-03-11,2.2888,7.861,2357 +494,25364,Ace in the Hole,An arrogant reporter exploits a story about a man trapped in a cave to revitalize his career.,1951-06-29,1.8787,7.9,698 +495,777,Grand Illusion,"A group of French soldiers, including the patrician Captain de Boeldieu and the working-class Lieutenant Maréchal, grapple with their own class differences after being captured and held in a World War I German prison camp. When the men are transferred to a high-security fortress, they must concoct a plan to escape beneath the watchful eye of aristocratic German officer von Rauffenstein, who has formed an unexpected bond with de Boeldieu.",1937-06-04,1.4816,7.859,730 +496,1214484,Let Go,A jaded mother makes a last-ditch effort to keep her family together by taking them on a trip to their teenage daughter’s pole dancing competition.,2024-11-01,1.8394,7.857,336 +497,93,Anatomy of a Murder,"Semi-retired Michigan lawyer Paul Biegler takes the case of Army Lt. Manion, who murdered a local innkeeper after his wife claimed that he raped her. Over the course of an extensive trial, Biegler parries with District Attorney Lodwick and out-of-town prosecutor Claude Dancer to set his client free, but his case rests on the victim's mysterious business partner, who's hiding a dark secret.",1959-07-01,2.6306,7.856,1066 +498,522212,Just Mercy,"The powerful true story of Harvard-educated lawyer Bryan Stevenson, who goes to Alabama to defend the disenfranchised and wrongly condemned — including Walter McMillian, a man sentenced to death despite evidence proving his innocence. Bryan fights tirelessly for Walter with the system stacked against them.",2019-12-25,2.6823,7.855,2350 +499,11830,Tampopo,"In this humorous paean to the joys of food, a pair of truck drivers happen onto a decrepit roadside shop selling ramen noodles. The widowed owner, Tampopo, begs them to help her turn her establishment into a paragon of the ""art of noodle-soup making"". Interspersed are satirical vignettes about the importance of food to different aspects of human life.",1985-11-23,2.7082,7.9,387 +500,453,A Beautiful Mind,"From the heights of notoriety to the depths of depravity, John Forbes Nash Jr. experiences it all. As a brilliant but socially awkward mathematician, he made a groundbreaking discovery early in his career and stands on the brink of international acclaim. But as the handsome and arrogant Nash accepts secret work in cryptography, he becomes entangled in a mysterious conspiracy. His life takes a nightmarish turn and he soon finds himself on a painful and harrowing journey of self-discovery.",2001-12-14,7.0915,7.855,10569 +501,31411,The Cameraman,A photographer takes up newsreel shooting to impress a secretary.,1928-09-10,1.81,7.9,405 +502,613,Downfall,"In April of 1945, Germany stands at the brink of defeat with the Russian Army closing in from the east and the Allied Expeditionary Force attacking from the west. In Berlin, capital of the Third Reich, Adolf Hitler proclaims that Germany will still achieve victory and orders his generals and advisers to fight to the last man. When the end finally does come, and Hitler lies dead by his own hand, what is left of his military must find a way to end the killing that is the Battle of Berlin, and lay down their arms in surrender.",2004-09-16,4.1098,7.854,4029 +503,235,Stand by Me,"After learning that a boy their age has been accidentally killed near their rural homes, four Oregon boys decide to go see the body. On the way, Gordie, Vern, Chris and Teddy encounter a mean junk man and a marsh full of leeches, as they also learn more about one another and their very different home lives. Just a lark at first, the boys' adventure evolves into a defining event in their lives.",1986-08-08,5.0395,7.9,6138 +504,5801,Pather Panchali,A depiction of the life of an impoverished early twentieth century rural Bengali family.,1955-08-26,2.0171,7.9,451 +505,677638,We Bare Bears: The Movie,"When Grizz, Panda, and Ice Bear's love of food trucks and viral videos get out of hand, the brothers are now chased away from their home and embark on a trip to Canada, where they can live in peace.",2020-06-30,2.4539,7.852,829 +506,10191,How to Train Your Dragon,"As the son of a Viking leader on the cusp of manhood, shy Hiccup Horrendous Haddock III faces a rite of passage: he must kill a dragon to prove his warrior mettle. But after downing a feared dragon, he realizes that he no longer wants to destroy it, and instead befriends the beast – which he names Toothless – much to the chagrin of his warrior father.",2010-03-18,20.8158,7.851,13681 +507,275,Fargo,"Jerry, a small-town Minnesota car salesman is bursting at the seams with debt... but he's got a plan. He's going to hire two thugs to kidnap his wife in a scheme to collect a hefty ransom from his wealthy father-in-law. It's going to be a snap and nobody's going to get hurt... until people start dying. Enter Police Chief Marge, a coffee-drinking, parka-wearing - and extremely pregnant - investigator who'll stop at nothing to get her man. And if you think her small-time investigative skills will give the crooks a run for their ransom... you betcha!",1996-03-08,7.3215,7.851,8506 +508,11656,The Virgin Spring,"Devout Christians Töre and Märeta send their only daughter, the virginal Karin, and their foster daughter, the unrepentant Ingeri, to deliver candles to a distant church. On their way through the woods, the girls encounter a group of savage goat herders who brutally rape and murder Karin as Ingeri remains hidden. When the killers unwittingly seek refuge in the farmhouse of Töre and Märeta, Töre plots a fitting revenge.",1960-02-08,1.8042,7.8,631 +509,33320,Millennium Actress,"Documentary filmmaker Genya Tachibana has tracked down the legendary actress Chiyoko Fujiwara, who mysteriously vanished at the height of her career. When he presents her with a key she had lost and thought was gone forever, the filmmaker could not have imagined that it would not only unlock the long-held secrets of Chiyoko’s life... but also his own.",2002-09-14,2.925,7.849,925 +510,968,Dog Day Afternoon,"Based on the true story of would-be Brooklyn bank robbers John Wojtowicz and Salvatore Naturile. Sonny and Sal attempt a bank heist which quickly turns sour and escalates into a hostage situation and stand-off with the police. As Sonny's motives for the robbery are slowly revealed and things become more complicated, the heist turns into a media circus.",1975-09-21,3.4109,7.8,3119 +511,89,Indiana Jones and the Last Crusade,"In 1938, an art collector appeals to eminent archaeologist Dr. Indiana Jones to embark on a search for the Holy Grail. Indy learns that a medieval historian has vanished while searching for it, and the missing man is his own father, Dr. Henry Jones Sr.. He sets out to rescue his father by following clues in the old man's notebook, which his father had mailed to him before he went missing. Indy arrives in Venice, where he enlists the help of a beautiful academic, Dr. Elsa Schneider, along with Marcus Brody and Sallah. Together they must stop the Nazis from recovering the power of eternal life and taking over the world!",1989-05-24,13.1814,7.848,10553 +512,581528,"The Gangster, the Cop, the Devil","After barely surviving a brutal attack by a sadistic serial killer, crime boss Jang Dong-su is left humiliated. Determined to catch the killer known as K, he forms an uneasy alliance with Jung Tae-seok, a relentless and incorruptible detective who often disrupts his illegal business. However, while Jang Dong-su wants K dead, Jung Tae-suk is determined to bring him to justice. With a deal in place—whoever finds K first will decide his fate—the hunt begins, blurring the lines between crime and law.",2019-05-15,11.6984,7.848,1308 +513,379170,Sherlock: The Abominable Bride,Sherlock Holmes and Dr. Watson find themselves in 1890s London in this holiday special.,2016-01-01,2.7699,7.8,2282 +514,152601,Her,"In the not so distant future, Theodore, a lonely writer, purchases a newly developed operating system designed to meet the user's every need. To Theodore's surprise, a romantic relationship develops between him and his operating system. This unconventional love story blends science fiction and romance in a sweet tale that explores the nature of love and the ways that technology isolates and connects us all.",2013-12-18,9.4098,7.847,14686 +515,505192,Shoplifters,"In the outskirts of Tokyo, a poor but close-knit group living on the fringes of society survives through shoplifting and odd jobs. When Osamu and his son take in a neglected young girl, their already fragile existence begins to unravel. As the family grows attached to her, buried secrets surface, forcing them to confront the true meaning of love, belonging, and what makes a family.",2018-06-02,2.7105,7.846,2157 +516,399174,Isle of Dogs,"In the future, an outbreak of canine flu leads the mayor of a Japanese city to banish all dogs to an island used as a garbage dump. The outcasts must soon embark on an epic journey when a 12-year-old boy arrives on the island to find his beloved pet.",2018-03-23,5.041,7.846,5095 +517,585,"Monsters, Inc.","Lovable Sulley and his wisecracking sidekick Mike Wazowski are the top scare team at Monsters, Inc., the scream-processing factory in Monstropolis. When a little girl named Boo wanders into their world, it's the monsters who are scared silly, and it's up to Sulley and Mike to keep her out of sight and get her back home.",2001-11-01,16.1268,7.846,19020 +518,430424,See You Up There,"In November 1918, a few days before the Armistice, when Lieutenant Pradelle orders a senseless attack, he causes a useless disaster; but his outrageous act also binds the lives of two soldiers who have nothing more in common than the battlefield: Édouard saves Albert, although at a high cost. They become companions in misfortune who will attempt to survive in a changing world. Pradelle, in his own way, does the same.",2017-10-25,1.6152,7.845,1308 +519,323272,War Room,"The family-friendly movie explores the transformational role prayer plays in the lives of the Jordan family. Tony and Elizabeth Jordan, a middle-class couple who seemingly have it all – great jobs, a beautiful daughter, their dream home. But appearances can be deceiving. In reality, the Jordan’s marriage has become a war zone and their daughter is collateral damage. With the help of Miss Clara, an older, wiser woman, Elizabeth discovers she can start fighting for her family instead of against them. Through a newly energized faith, Elizabeth and Tony’s real enemy doesn’t have a prayer.",2015-08-28,3.2738,7.845,550 +520,3083,Mr. Smith Goes to Washington,"After the death of a United States Senator, idealistic Jefferson Smith is appointed as his replacement in Washington. Soon, the naive and earnest new senator has to battle political corruption.",1939-10-19,2.389,7.845,1109 +521,438695,Sing 2,"Buster and his new cast now have their sights set on debuting a new show at the Crystal Tower Theater in glamorous Redshore City. But with no connections, he and his singers must sneak into the Crystal Entertainment offices, run by the ruthless wolf mogul Jimmy Crystal, where the gang pitches the ridiculous idea of casting the lion rock legend Clay Calloway in their show. Buster must embark on a quest to find the now-isolated Clay and persuade him to return to the stage.",2021-12-01,11.6584,7.845,4592 +522,59440,Warrior,"The youngest son of an alcoholic former boxer returns home, where he's trained by his father for competition in a mixed martial arts tournament – a path that puts the fighter on a collision course with his estranged, older brother.",2011-09-09,5.4059,7.844,4758 +523,50759,An Autumn Afternoon,"Shuhei Hirayama is a widower with a 24-year-old daughter. Gradually, he comes to realize that she should not be obliged to look after him for the rest of his life, so he arranges a marriage for her.",1962-11-18,1.489,7.8,302 +524,581,Dances with Wolves,"Wounded Civil War soldier John Dunbar tries to commit suicide—and becomes a hero instead. As a reward, he's assigned to his dream post, a remote junction on the Western frontier, and soon makes unlikely friends with the local Sioux tribe.",1990-03-30,5.2084,7.844,4436 +525,546554,Knives Out,"When renowned crime novelist Harlan Thrombey is found dead at his estate just after his 85th birthday, the inquisitive and debonair Detective Benoit Blanc is mysteriously enlisted to investigate. From Harlan's dysfunctional family to his devoted staff, Blanc sifts through a web of red herrings and self-serving lies to uncover the truth behind Harlan's untimely death.",2019-11-27,9.7949,7.843,13013 +526,16804,Departures,"Daigo, a cellist, is laid off from his orchestra and moves with his wife back to his small hometown where the living is cheaper. Thinking he’s applying for a job at a travel agency he finds he’s being interviewed for work with departures of a more permanent nature – as an undertaker’s assistant.",2008-09-13,2.0487,7.8,864 +527,266856,The Theory of Everything,"The Theory of Everything is the extraordinary story of one of the world’s greatest living minds, the renowned astrophysicist Stephen Hawking, who falls deeply in love with fellow Cambridge student Jane Wilde.",2014-11-07,5.3757,7.84,10788 +528,552532,Charm City Kings,"Mouse desperately wants to join The Midnight Clique, the infamous Baltimore dirt bike riders who rule the summertime streets. When Midnight’s leader, Blax, takes 14-year-old Mouse under his wing, Mouse soon finds himself torn between the straight-and-narrow and a road filled with fast money and violence.",2020-01-27,9.0356,7.839,483 +529,445030,"No Game, No Life: Zero","Six thousand years before Sora and Shiro were even a blink in the history of Disboard, war consumed the land, tearing apart the heavens, destroying stars, and even threatening to wipe out the human race. Amid the chaos and destruction, a young man named Riku leads humanity toward the tomorrow his heart believes in. One day, in the ruins of an Elf city, he meets Schwi, a female exiled ""Ex Machina"" android who asks him to teach her what it means to have a human heart.",2017-07-15,2.4079,7.839,410 +530,293299,Feast,"This Oscar-winning animated short film tells the story of one man's love life as seen through the eyes of his best friend and dog, Winston, and revealed bite by bite through the meals they share.",2014-10-25,0.924,7.839,872 +531,714888,Argentina 1985,"In the 1980s, a team of lawyers takes on the heads of Argentina's bloody military dictatorship in a battle against odds and a race against time.",2022-09-29,2.6391,7.838,680 +532,698508,Redeeming Love,A retelling of the biblical book of Hosea set against the backdrop of the California Gold Rush of 1850.,2022-01-21,7.9387,7.838,640 +533,115,The Big Lebowski,"Jeffrey 'The Dude' Lebowski, a Los Angeles slacker who only wants to bowl and drink White Russians, is mistaken for another Jeffrey Lebowski, a wheelchair-bound millionaire, and finds himself dragged into a strange series of events involving nihilists, adult film producers, ferrets, errant toes, and large sums of money.",1998-03-06,6.9422,7.838,11620 +534,522402,Finch,"On a post-apocalyptic Earth, a robot, built to protect the life of his dying creator's beloved dog, learns about life, love, friendship, and what it means to be human.",2021-11-04,7.4952,7.837,3718 +535,631,Sunrise: A Song of Two Humans,"A married farmer falls under the spell of a slatternly woman from the city, who tries to convince him to drown his wife.",1927-11-04,1.8058,7.835,844 +536,185789,Mulholland Dr.,"The original TV pilot version of Mulholland Drive, telling the story of an amnesiac woman in Los Angeles who sets out to uncover the secrets of her own past with the help of a wannabe actress. Filmed in early 1999 and never aired, this version has only ever circulated in bootleg form. Additional photography took place in late 2000 and the pilot material was reworked into the 2001 feature film.",1999-01-01,0.8301,7.834,509 +537,9479,The Nightmare Before Christmas,"Tired of scaring humans every October 31 with the same old bag of tricks, Jack Skellington, the spindly king of Halloween Town, kidnaps Santa Claus and plans to deliver shrunken heads and other ghoulish gifts to children on Christmas morning. But as Christmas approaches, Jack's rag-doll girlfriend, Sally, tries to foil his misguided plans.",1993-10-09,10.4771,7.834,9852 +538,650031,The Shadow in My Eye,"On March 21st, 1945, the British Royal Air Force set out on a mission to bomb Gestapo's headquarters in Copenhagen. The raid had fatal consequences as some of the bombers accidentally targeted a school and more than 120 people were killed, 86 of whom were children.",2021-10-28,1.7405,7.833,521 +539,52345,Lisbela and the Prisoner,"Lisbela is a young woman who loves going to the movies. Leléu is a con man, going from town to town selling all sort of things and performing as master of ceremonies for some cheesy numbers, such as the woman who gets transformed into a gorilla. He gets involved with Linaura, a sexy and beautiful woman who happens to be the wife of the most frightening hitman of the place. The hitman finds out his wife's affair and goes after Leléu, who has to leave in a hurry. In another town, he meets and falls instantly in love with Lisbela, who is engaged to Douglas, a hillbilly who tries hard to pass for a cosmopolitan Rio de Janeiro dweller.",2003-08-22,0.1525,7.832,393 +540,6075,Carlito's Way,"Free after years in prison, Carlito Brigante intends to give up his criminal ways, but it's not long before the ex-con is sucked back into the New York City underworld. Reconnecting with his dancer girlfriend, Carlito gets entangled in the shady dealings of his friend Dave Kleinfeld, who also serves as his lawyer. An encounter with shifty gangster Benny Blanco sets the duo on a dangerous path.",1993-11-10,4.1702,7.831,3289 +541,11953,Kagemusha,"Akira Kurosawa's lauded feudal epic presents the tale of a petty thief who is recruited to impersonate Shingen, an aging warlord, in order to avoid attacks by competing clans. When Shingen dies, his generals reluctantly agree to have the impostor take over as the powerful ruler. He soon begins to appreciate life as Shingen, but his commitment to the role is tested when he must lead his troops into battle against the forces of a rival warlord.",1980-04-26,2.4971,7.83,690 +542,5924,Papillon,"A man befriends a fellow criminal as the two of them begin serving their sentence on a dreadful prison island, which inspires the man to plot his escape.",1973-12-16,3.7384,7.83,1990 +543,2062,Ratatouille,"Remy, a resident of Paris, appreciates good food and has quite a sophisticated palate. He would love to become a chef so he can create and enjoy culinary masterpieces to his heart's delight. The only problem is, Remy is a rat. When he winds up in the sewer beneath one of Paris' finest restaurants, the rodent gourmet finds himself ideally placed to realize his dream.",2007-06-28,14.546,7.83,17686 +544,391,A Fistful of Dollars,"The Man With No Name enters the Mexican village of San Miguel in the midst of a power struggle among the three Rojo brothers and sheriff John Baxter. When a regiment of Mexican soldiers bearing gold intended to pay for new weapons is waylaid by the Rojo brothers, the stranger inserts himself into the middle of the long-simmering battle, selling false information to both sides for his own benefit.",1964-09-12,5.6382,7.831,4460 +545,594634,Close to the Horizon,Jessica knows exactly what her life is supposed to look like and where it takes her. But then she meets Danny. He has a complicated past and could confuse all their plans. Jessica has to decide.,2019-10-10,2.6552,7.8,494 +546,47931,Elite Squad: The Enemy Within,"After a bloody invasion of the BOPE in the High-Security Penitentiary Bangu 1 in Rio de Janeiro to control a rebellion of interns, the Lieutenant-Colonel Roberto Nascimento and the second in command Captain André Matias are accused by the Human Right Aids member Diogo Fraga of execution of prisoners. Matias is transferred to the corrupted Military Police and Nascimento is exonerated from the BOPE by the Governor.",2010-10-08,2.4273,7.829,1925 +547,1081676,Forgotten Love,A once-respected surgeon who's lost his family and his memory gets a chance at redemption when he reconnects with someone from his forgotten past.,2023-09-26,2.1141,7.828,317 +548,548544,Invisible Life,"Rio de Janeiro, Brazil, 1950. In the conservative home of the Gusmão family, Eurídice and Guida are two inseparable sisters who support each other. While Guida can share with her younger sister the details of her romantic adventures, Eurídice finds in her older sister the encouragement she needs to pursue her dream of becoming a professional pianist.",2019-08-30,1.4149,7.828,325 +549,527774,Raya and the Last Dragon,"Long ago, in the fantasy world of Kumandra, humans and dragons lived together in harmony. But when an evil force threatened the land, the dragons sacrificed themselves to save humanity. Now, 500 years later, that same evil has returned and it’s up to a lone warrior, Raya, to track down the legendary last dragon to restore the fractured land and its divided people.",2021-03-03,7.6139,7.828,7002 +550,25606,Fantozzi: White Collar Blues,"A good-natured but unlucky Italian is constantly going on a difficult situations, but never lose his mood.",1975-03-27,1.1506,7.8,842 +551,24167,Two Women,A young widow flees from Rome during WWII and takes her lonely twelve-year-old-daughter to her rural hometown but the horrors of war soon catch up with them.,1960-12-22,1.9256,7.8,550 +552,16859,Kiki's Delivery Service,"A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.",1989-07-29,6.467,7.8,4289 +553,83564,La luna,"A young boy comes of age in the most peculiar of circumstances. Tonight is the very first time his Papa and Grandpa are taking him to work. In an old wooden boat they row far out to sea, and with no land in sight, they stop and wait. A big surprise awaits the boy as he discovers his family's most unusual line of work. Should he follow the example of his Papa, or his Grandpa? Will he be able to find his own way in the midst of their conflicting opinions and timeworn traditions?",2012-02-10,1.8592,7.827,814 +554,31442,Ivan's Childhood,"In WW2, twelve year old Soviet orphan Ivan Bondarev works for the Soviet army as a scout behind the German lines and strikes a friendship with three sympathetic Soviet officers.",1962-05-09,1.6993,7.8,774 +555,14574,The Boy in the Striped Pyjamas,"When his family moves from their home in Berlin to a strange new house in Poland, young Bruno befriends Shmuel, a boy who lives on the other side of the fence where everyone seems to be wearing striped pajamas. Unaware of Shmuel's fate as a Jewish prisoner or the role his own Nazi father plays in his imprisonment, Bruno embarks on a dangerous journey inside the camp's walls.",2008-05-07,7.8093,7.827,7374 +556,32480,The Marquis of Grillo,"In 18th-century Rome, impish aristocrat Onofrio del Grillo amuses himself by playing pranks on all sorts of people — his reactionary family and fellow nobles, the poors, the French occupiers trying to modernize society, and even the Pope himself.",1981-12-23,0.5676,7.826,480 +557,198,To Be or Not to Be,"During the Nazi occupation of Poland, an acting troupe becomes embroiled in a Polish soldier's efforts to track down a German spy.",1942-03-06,1.1461,7.825,779 +558,435129,The Breadwinner,"A headstrong young girl in Afghanistan, ruled by the Taliban, disguises herself as a boy in order to provide for her family.",2017-11-17,1.7456,7.824,870 +559,1280,3-Iron,A drifter lives in people's houses while they are away and repays them by doing chores for them. His life changes when he meets a beautiful woman who wants to escape her unhappy marriage.,2004-10-15,2.204,7.8,1189 +560,3078,It Happened One Night,A runaway heiress makes a deal with the rogue reporter trailing her but the mismatched pair end up stuck with each other when their bus leaves them behind.,1934-02-22,2.08,7.823,1316 +561,805,Rosemary's Baby,"A young couple, Rosemary and Guy, moves into an infamous New York apartment building, known by frightening legends and mysterious events, with the purpose of starting a family.",1968-06-12,4.0548,7.823,4099 +562,779047,Us Again,"In a vibrant city pulsating with rhythm and movement, an elderly man and his young-at-heart wife rekindle their youthful passion for life and each other on one magical night.",2021-03-03,1.3259,7.821,336 +563,58129,The Phantom Carriage,"An alcoholic, abusive ne'er-do-well is shown the error of his ways through a legend that dooms the last person to die on New Year's Eve before the clock strikes twelve to take the reins of Death's chariot and work tirelessly collecting fresh souls for the next year.",1921-01-01,1.2368,7.821,335 +564,263115,Logan,"In the near future, a weary Logan cares for an ailing Professor X in a hideout on the Mexican border. But Logan's attempts to hide from the world and his legacy are upended when a young mutant arrives, pursued by dark forces.",2017-02-28,9.956,7.82,19749 +565,56231,The Working Class Goes to Heaven,"After losing a finger in a work accident, an Italian worker becomes increasingly involved in political and revolutionary groups.",1971-09-17,0.678,7.8,360 +566,596,The Grapes of Wrath,"Tom Joad returns to his home after a jail sentence to find his family kicked out of their farm due to foreclosure. He catches up with them on his Uncle’s farm, and joins them the next day as they head for California and a new life... Hopefully.",1940-03-15,1.8866,7.819,1038 +567,200727,"Love, Rosie","Since the moment they met at age 5, Rosie and Alex have been best friends, facing the highs and lows of growing up side by side. A fleeting shared moment, one missed opportunity, and the decisions that follow send their lives in completely different directions. As each navigates the complexities of life, love, and everything in between, they always find their way back to each other - but is it just friendship, or something more?",2014-10-16,7.1079,7.818,6341 +568,419478,Midnight Sun,"Katie, a 17-year-old, has been sheltered since childhood and confined to her house during the day by a rare disease that makes even the smallest amount of sunlight deadly. Fate intervenes when she meets Charlie and they embark on a summer romance.",2018-03-22,3.9615,7.8,3485 +569,826,The Bridge on the River Kwai,"The classic story of English POWs in Burma forced to build a bridge to aid the war effort of their Japanese captors. British and American intelligence officers conspire to blow up the structure, but Col. Nicholson, the commander who supervised the bridge's construction, has acquired a sense of pride in his creation and tries to foil their plans.",1957-10-11,3.8145,7.8,2217 +570,12,Finding Nemo,"Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks, surfer dude turtles, hypnotic jellyfish, hungry seagulls, and more along the way.",2003-05-30,14.3178,7.8,19826 +571,303867,World of Tomorrow,A little girl is taken on a mind-bending tour of her distant future.,2015-01-22,0.5865,7.8,340 +572,33602,Temple Grandin,"A biopic of Temple Grandin, an autistic American who has become one of the leading scientists in humane livestock handling.",2010-02-06,2.6432,7.815,503 +573,10775,Infernal Affairs,"Chan Wing Yan, a young police officer, has been sent undercover as a mole in the local mafia. Lau Kin Ming, a young mafia member, infiltrates the police force. Years later, their older counterparts, Chen Wing Yan and Inspector Lau Kin Ming, respectively, race against time to expose the mole within their midst.",2002-12-12,3.2553,7.815,1724 +574,107,Snatch,"Unscrupulous boxing promoters, violent bookmakers, a Russian gangster, incompetent amateur robbers and supposedly Jewish jewelers fight to track down a priceless stolen diamond.",2000-09-01,6.8968,7.815,9411 +575,314365,Spotlight,"The true story of how the Boston Globe uncovered the massive scandal of child molestation and cover-up within the local Catholic Archdiocese, shaking the entire Catholic Church to its core.",2015-11-06,5.1774,7.814,8442 +576,2440,Joint Security Area,"Two North Korean soldiers are killed in the border area between North and South Korea, prompting an investigation by a neutral body. The sergeant is the shooter, but the lead investigator, a Swiss-Korean woman, receives differing accounts from the two sides.",2000-09-09,2.0049,7.814,751 +577,398924,A Bag of Marbles,"At the beginning of the 1940s, in a France occupied by Nazi forces, lived the Jewish Joffo family. Happy and tight-knit, she sees her future darken when all members of the family are forced to wear the yellow star. Fearing the worst, the parents organized their family to flee to the free zone in the south of the country. Maurice, twelve years old, and Joseph, ten years old, will therefore leave alone in order to maximize their chances of finding their older brothers already settled in Nice. The brothers left to their own devices demonstrate an incredible amount of cleverness, courage, and ingenuity to escape the enemy invasion and to try to reunite their family once again.",2017-01-18,2.243,7.8,873 +578,152742,The Best Offer,"Virgil Oldman is a world renowned antiques expert and auctioneer. An eccentric genius, he leads a solitary life, going to extreme lengths to keep his distance from the messiness of human relationships. When appointed by the beautiful but emotionally damaged Claire to oversee the valuation and sale of her family’s priceless art collection, Virgil allows himself to form an attachment to her – and soon he is engulfed by a passion which will rock his bland existence to the core.",2013-01-01,2.5216,7.813,2920 +579,10774,Network,"When veteran anchorman Howard Beale is forced to retire his 25-year post because of his age, he announces to viewers that he will kill himself during his farewell broadcast. Network executives rethink their decision when his fanatical tirade results in a spike in ratings.",1976-11-14,2.7828,7.812,1859 +580,10774,Network,"When veteran anchorman Howard Beale is forced to retire his 25-year post because of his age, he announces to viewers that he will kill himself during his farewell broadcast. Network executives rethink their decision when his fanatical tirade results in a spike in ratings.",1976-11-14,2.7828,7.812,1859 +581,10315,Fantastic Mr. Fox,"The Fantastic Mr. Fox, bored with his current life, plans a heist against the three local farmers. The farmers, tired of sharing their chickens with the sly fox, seek revenge against him and his family.",2009-10-14,6.4663,7.812,5721 +582,22,Pirates of the Caribbean: The Curse of the Black Pearl,"After Port Royal is attacked and pillaged by a mysterious pirate crew, capturing the governor's daughter Elizabeth Swann in the process, William Turner asks free-willing pirate Jack Sparrow to help him locate the crew's ship—The Black Pearl—so that he can rescue the woman he loves.",2003-07-09,20.6501,7.812,21328 +583,785084,The Whale,A reclusive English teacher suffering from severe obesity attempts to reconnect with his estranged teenage daughter for one last chance at redemption.,2022-12-09,5.0477,7.811,4247 +584,554590,Tod@s Caen,A pair of seducers try to prove who has the best techniques while trying not to fall in love with each other.,2019-08-30,1.3295,7.81,478 +585,3870,1900,"The epic tale of a class struggle in twentieth century Italy, as seen through the eyes of two childhood friends on opposing sides.",1976-08-28,1.778,7.809,654 +586,80,Before Sunset,"Nine years later, Jesse travels across Europe giving readings from a book he wrote about the night he spent in Vienna with Celine. After his reading in Paris, Celine finds him, and they spend part of the day together before Jesse has to again leave for a flight. They are both in relationships now, and Jesse has a son, but as their strong feelings for each other start to return, both confess a longing for more.",2004-06-16,3.7903,7.8,3534 +587,1018,Mulholland Drive,"Blonde Betty Elms has only just arrived in Hollywood to become a movie star when she meets an enigmatic brunette with amnesia. Meanwhile, as the two set off to solve the second woman's identity, filmmaker Adam Kesher runs into ominous trouble while casting his latest project.",2001-06-06,9.3702,7.807,6600 +588,502,Fail Safe,Because of a technical defect an American bomber team mistakenly orders the destruction of Moscow. The President of the United States has but little time to prevent an atomic catastrophe from occurring.,1964-10-07,1.7284,7.8,429 +589,301,Rio Bravo,"A small-town sheriff in the American West enlists the help of a disabled man, a drunk, and a young gunfighter in his efforts to hold in jail the brother of the local bad guy.",1959-03-18,3.9478,7.8,1201 +590,29458,One Hundred Steps,"Peppino Impastato is a quick-witted lad growing up in 1970s Sicily. Despite hailing from a family with Mafia ties and living just one hundred steps from the house of local boss Tano Badalamenti, Peppino decides to expose the Mafia by using a pirate radio station to broadcast his political pronouncements in the form of ironic humour.",2000-09-01,1.116,7.805,701 +591,11697,The Man Who Shot Liberty Valance,"Questions arise when Senator Stoddard attends the funeral of a local man named Tom Doniphon in a small Western town. Flashing back, we learn Doniphon saved Stoddard, then a lawyer, when he was roughed up by a crew of outlaws terrorizing the town, led by Liberty Valance. As the territory's safety hung in the balance, Doniphon and Stoddard, two of the only people standing up to him, proved to be very important, but different, foes to Valance.",1962-04-13,2.8549,7.8,1212 +592,113,"Spring, Summer, Fall, Winter... and Spring","An isolated lake, where an old monk lives in a small floating temple. The monk has a young boy living with him, learning to become a monk. We watch as seasons and years pass by.",2003-09-19,2.595,7.807,1114 +593,937746,Io Capitano,"Longing for a brighter future, two Senegalese teenagers embark on a journey from West Africa to Italy. However, between their dreams and reality lies a labyrinth of checkpoints, the Sahara Desert, and the vast waters of the Mediterranean.",2023-09-07,1.3901,7.806,761 +594,31011,Mr. Nobody,"Nemo Nobody leads an ordinary existence with his wife and 3 children; one day, he wakes up as a mortal centenarian in the year 2092.",2009-11-06,5.7533,7.806,5981 +595,27064,Mishima: A Life in Four Chapters,"A fictional account of the life of Japanese author Yukio Mishima, combining dramatizations of three of his novels and a depiction of the events of November 25th, 1970.",1985-09-20,1.9063,7.806,310 +596,22683,Gifted Hands: The Ben Carson Story,Gifted Hands: The Ben Carson Story is a movie based on the life story of world-renowned neurosurgeon Ben Carson from 1961 to 1987.,2009-02-07,4.7289,7.799,733 +597,762,Monty Python and the Holy Grail,"King Arthur, accompanied by his squire, recruits his Knights of the Round Table, including Sir Bedevere the Wise, Sir Lancelot the Brave, Sir Robin the Not-Quite-So-Brave-As-Sir-Lancelot and Sir Galahad the Pure. On the way, Arthur battles the Black Knight who, despite having had all his limbs chopped off, insists he can still fight. They reach Camelot, but Arthur decides not to enter, as ""it is a silly place"".",1975-04-03,4.8735,7.805,6052 +598,15859,A Moment to Remember,A young couple's love is tested when Sun-jin is diagnosed with a rare form of Alzheimer's disease.,2004-11-05,2.1955,7.8,335 +599,531,The Wrong Trousers,"Wallace rents out Gromit's former bedroom to a penguin, who takes up an interest in the techno pants created by Wallace. However, Gromit later learns that the penguin is a wanted criminal. Preserved by the Academy Film Archive.",1993-12-17,2.2645,7.804,1081 +600,22843,Evangelion: 2.0 You Can (Not) Advance,"Under constant attack by monstrous creatures called Angels that seek to eradicate humankind, U.N. Special Agency NERV introduces two new EVA pilots to help defend the city of Tokyo-3: the mysterious Makinami Mari Illustrous and the intense Asuka Langley Shikinami. Meanwhile, Gendo Ikari and SEELE proceed with a secret project that involves both Rei and Shinji.",2009-06-26,2.7053,7.803,918 +601,1394,Nostalgia,"A Russian poet, Andrei and his interpreter, Eugenia travel to Italy to research the life of an 18th-century composer.",1983-06-02,2.7591,7.8,567 +602,335578,Land of Mine,"In the days following the surrender of Germany in May 1945, a group of young German prisoners of war is handed over to the Danish authorities and subsequently sent to the West Coast, where they are ordered to remove the more than two million mines that the Germans had placed in the sand along the coast. With their bare hands, crawling around in the sand, the boys are forced to perform the dangerous work under the leadership of a Danish sergeant.",2015-12-03,2.2657,7.801,1412 +603,49797,I Saw the Devil,"Kyung-chul is a dangerous psychopath who kills for pleasure. Soo-hyeon, a top-secret agent, decides to track down the murderer himself. He promises himself that he will do everything in his power to take vengeance against the killer, even if it means that he must become a monster himself.",2010-08-12,5.9609,7.801,2751 +604,2118,L.A. Confidential,Three detectives in the corrupt and brutal L.A. police force of the 1950s use differing methods to uncover a conspiracy behind the shotgun slayings of the patrons at an all-night diner.,1997-09-19,4.6792,7.801,5191 +605,674,Harry Potter and the Goblet of Fire,"When Harry Potter's name emerges from the Goblet of Fire, he becomes a competitor in a grueling battle for glory among three wizarding schools—the Triwizard Tournament. But since Harry never submitted his name for the Tournament, who did? Now Harry must confront a deadly dragon, fierce water demons and an enchanted maze only to find himself in the cruel grasp of He Who Must Not Be Named.",2005-11-16,19.0472,7.801,21341 +606,562,Die Hard,"NYPD cop John McClane's plan to reconcile with his estranged wife is thrown for a serious loop when, minutes after he arrives at her offices Christmas Party, the entire building is overtaken by a group of terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.",1988-07-15,7.7688,7.801,11614 +607,10193,Toy Story 3,"Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.",2010-06-16,11.7676,7.8,15097 +608,5991,The Last Laugh,"An aging doorman, after being fired from his prestigious job at a luxurious hotel, is forced to face the scorn of his friends, neighbours and society.",1924-12-23,1.4456,7.8,325 +609,579245,The Specials,"For twenty years, Bruno and Malik have lived in a different world—the world of autistic children and teens. In charge of two separate nonprofit organizations (The Hatch & The Shelter), they train young people from underprivileged areas to be caregivers for extreme cases that have been refused by all other institutions. It’s an exceptional partnership, outside of traditional settings, for some quite extraordinary characters.",2019-10-23,1.8549,7.798,948 +610,508943,Luca,Luca and his best friend Alberto experience an unforgettable summer on the Italian Riviera. But all the fun is threatened by a deeply-held secret: they are sea monsters from another world just below the water’s surface.,2021-06-17,9.284,7.8,8623 +611,393559,My Life as a Zucchini,"After his mother’s death, Zucchini is befriended by a kind police officer, Raymond, who accompanies him to his new foster home filled with other orphans his age. There, with the help of his newfound friends, Zucchini eventually learns to trust and love as he searches for a new family of his own.",2016-09-22,1.3976,7.798,1415 +612,84892,The Perks of Being a Wallflower,"Pittsburgh, Pennsylvania, 1991. High school freshman Charlie is a wallflower, always watching life from the sidelines, until two senior students, Sam and her stepbrother Patrick, become his mentors, helping him discover the joys of friendship, music and love.",2012-09-20,5.99,7.8,10748 +613,11621,Porco Rosso,"In Italy in the 1930s, sky pirates in biplanes terrorize wealthy cruise ships as they sail the Adriatic Sea. The only pilot brave enough to stop the scourge is the mysterious Porco Rosso, a former World War I flying ace who was somehow turned into a pig during the war. As he prepares to battle the pirate crew's American ace, Porco Rosso enlists the help of spunky girl mechanic Fio Piccolo and his longtime friend Madame Gina.",1992-07-18,5.2396,7.8,3473 +614,5915,Into the Wild,"After graduating from Emory University in 1992, top student and athlete Christopher McCandless abandons his possessions, gives his entire $24,000 savings account to charity, and hitchhikes to Alaska to live in the wilderness.",2007-09-21,5.115,7.797,9760 +615,632322,All My Life,"It was a chance meeting started by one of Sol’s friends trying to chat up Jennifer. However, in the end, it was those two who hit it off. Sol enjoyed Jen’s smile, her effort, and how silly she could be. Jen enjoyed Sol’s cooking, his athleticism, and that he would join her in fun moments. As you can imagine, love bloomed, and things got serious. Jen’s investment in Sol led to her pushing him to follow his dreams and even move in to save money. Sol’s investment in Jen well, it led to him proposing. But what started as a liver tumor grew into full-on cancer, so with a diagnosis of 6 months to live, Sol and Jennifer try to make the best of it.",2020-10-23,1.8286,7.796,500 +616,136,Freaks,"A circus' beautiful trapeze artist agrees to marry the leader of side-show performers, but his deformed friends discover she is only marrying him for his inheritance.",1932-01-01,2.4214,7.8,1232 +617,5000,Forbidden Games,"Orphaned after a Nazi air raid, Paulette, a young Parisian girl, runs into Michel, an older peasant boy, and the two quickly become close. Together, they try to make sense of the chaotic and crumbling world around them, attempting to cope with death as they create a burial ground for Paulette's deceased pet dog. Eventually, however, Paulette's stay with Michel's family is threatened by the harsh realities of wartime.",1952-05-09,2.2112,7.794,326 +618,946,Letter from an Unknown Woman,"A pianist about to flee from a duel receives a letter from a woman he cannot remember. As she tells the story of her lifelong love for him, he is forced to reinterpret his own past.",1948-04-28,1.3457,7.794,320 +619,367412,Whiplash,"A ferocious, bullying music teacher teaches a dedicated student.",2013-01-18,0.9211,7.793,381 +620,593,Solaris,A psychologist is sent to a space station orbiting a planet called Solaris to investigate the death of a doctor and the mental problems of cosmonauts on the station. He soon discovers that the water on the planet is a type of brain which brings out repressed memories and obsessions.,1972-03-20,2.6121,7.8,1696 +621,12496,The Twilight Samurai,"Seibei Iguchi leads a difficult life as a low ranking samurai at the turn of the nineteenth century. A widower with a meager income, Seibei struggles to take care of his two daughters and senile mother. New prospects seem to open up when the beautiful Tomoe, a childhood friend, comes back into he and his daughters' life, but as the Japanese feudal system unravels, Seibei is still bound by the code of honor of the samurai and by his own sense of social precedence. How can he find a way to do what is best for those he loves?",2002-11-02,1.8971,7.792,332 +622,901563,Close,"Two 13-year-old boys spend an idyllic summer together, but their connection is put to the test when they become the subject of speculation at school.",2022-11-01,2.8493,7.8,899 +623,1366,Rocky,An uneducated collector for a Philadelphia loan shark is given a once-in-a-lifetime opportunity to fight against the world heavyweight boxing champion.,1976-11-20,9.3583,7.8,8185 +624,1010581,My Fault,"Noah must leave her city, boyfriend, and friends to move into William Leister's mansion, the flashy and wealthy husband of her mother Rafaela. As a proud and independent 17 year old, Noah resists living in a mansion surrounded by luxury. However, it is there where she meets Nick, her new stepbrother, and the clash of their strong personalities becomes evident from the very beginning.",2023-06-08,45.3095,7.789,3765 +625,348892,Bajrangi Bhaijaan,A young mute girl from Pakistan loses herself in India with no way to head back. A devoted man with a magnanimous spirit undertakes the task to get her back to her motherland and unite her with her family.,2015-07-17,2.5761,7.8,502 +626,149870,The Wind Rises,"A lifelong love of flight inspires Japanese aviation engineer Jiro Horikoshi, whose storied career includes the creation of the A-6M World War II fighter plane.",2013-07-20,4.1462,7.8,3161 +627,16761,A Movie of Eggs,"A small egg named Toto decides that he wants to fulfill his purpose in life and become a chicken instead of dying in a frying pan; so he starts a quest to return to the farms along with his new friend, the noisy egg Willy and a crazy bacon stripe. The three friends will face lot of obstacles in their quest.",2006-04-21,1.6161,7.789,306 +628,887,The Best Years of Our Lives,"It's the hope that sustains the spirit of every GI: the dream of the day when he will finally return home. For three WWII veterans, the day has arrived. But for each man, the dream is about to become a nightmare.",1946-12-25,1.8304,7.789,692 +629,359156,Don't Be Bad,"A story set in the 90s and in the outskirts of Rome to Ostia. A world where money, luxury cars, night clubs, cocaine and synthetic drugs are easy to run. A world in which Vittorio and Cesare, in their early twenties, act in search of their success.",2015-09-08,0.6451,7.788,990 +630,277216,Straight Outta Compton,"In 1987, five young men, using brutally honest rhymes and hardcore beats, put their frustration and anger about life in the most dangerous place in America into the most powerful weapon they had: their music. Taking us back to where it all began, Straight Outta Compton tells the true story of how these cultural rebels—armed only with their lyrics, swagger, bravado and raw talent—stood up to the authorities that meant to keep them down and formed the world’s most dangerous group, N.W.A. And as they spoke the truth that no one had before and exposed life in the hood, their voice ignited a social revolution that is still reverberating today.",2015-08-11,5.2473,7.787,4020 +631,49026,The Dark Knight Rises,"Following the death of District Attorney Harvey Dent, Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later, Batman encounters the mysterious Selina Kyle and the villainous Bane, a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.",2012-07-17,14.8508,7.787,23418 +632,24428,The Avengers,"When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!",2012-04-25,31.8743,7.787,32648 +633,13042,Presto,"Dignity. Poise. Mystery. We expect nothing less from the great turn-of-the-century magician, Presto. But when Presto neglects to feed his rabbit one too many times, the magician finds he isn't the only one with a few tricks up his sleeve!",2008-06-27,1.5094,7.786,1022 +634,142,Brokeback Mountain,"In 1960s Wyoming, two men develop a strong emotional and sexual relationship that endures as a lifelong connection complicating their lives as they get married and start families of their own.",2005-10-22,7.9117,7.786,7242 +635,760774,One Life,"British stockbroker Nicholas Winton visits Czechoslovakia in the 1930s and forms plans to assist in the rescue of Jewish children before the onset of World War II, in an operation that came to be known as the Kindertransport.",2023-12-21,5.2686,7.785,836 +636,2721,Z,"Amid a tense political climate, the opposition leader is killed in an apparent accident. When a prosecutor smells a cover-up, witnesses get targeted. A thinly veiled dramatization of the assassination of Greek politician Grigoris Lambrakis and its aftermath, “Z” captures the outrage at the US-backed junta that ruled Greece at the time of its release.",1969-02-26,1.5769,7.785,573 +637,934,Rififi,"Out of prison after a five-year stretch, jewel thief Tony turns down a quick job his friend Jo offers him, until he discovers that his old girlfriend Mado has become the lover of local gangster Pierre Grutter during Tony's absence. Expanding a minor smash-and-grab into a full-scale jewel heist, Tony and his crew appear to get away clean, but their actions after the job is completed threaten the lives of everyone involved.",1955-04-13,1.5846,7.785,593 +638,14069,The Girl Who Leapt Through Time,"When 17-year-old Makoto Konno gains the ability to, quite literally, 'leap' backwards through time, she immediately sets about improving her grades and preventing personal mishaps. However, she soon realises that changing the past isn't as simple as it seems, and eventually, will have to rely on her new powers to shape the future of herself and her friends.",2006-07-15,2.8982,7.784,2102 +639,29845,A Woman Under the Influence,"Mabel Longhetti, desperate and lonely, is married to a Los Angeles municipal construction worker, Nick. Increasingly unstable, especially in the company of others, she craves happiness, but her extremely volatile behavior convinces Nick that she poses a danger to their family and decides to commit her to an institution for six months. Alone with a trio of kids to raise on his own, he awaits her return, which holds more than a few surprises.",1974-11-18,2.2927,7.8,525 +640,11049,Interstella 5555: The 5tory of the 5ecret 5tar 5ystem,"Four talented alien musicians are kidnapped by a record producer who disguises them as humans. Shep, a space pilot in love with bass player Stella, follows them to Earth. Reprogrammed to forget their real identities and renamed The Crescendolls, the group quickly becomes a huge success playing soulless corporate pop. At a concert, Shep manages to free all the musicians except Stella, and the band sets out to rediscover who they really are — and to rescue Stella.",2003-05-28,1.5735,7.783,489 +641,9475,Scent of a Woman,"Charlie Simms is a student at a private preparatory school who comes from a poor family. To earn the money for his flight home to Gresham, Oregon for Christmas, Charlie takes a job over Thanksgiving looking after retired U.S. Army officer Lieutenant Colonel Frank Slade, a cantankerous middle-aged man who lives with his niece and her family.",1992-12-23,7.1623,7.784,3640 +642,523781,Words on Bathroom Walls,"Diagnosed with a mental illness halfway through his senior year of high school, a witty, introspective teen struggles to keep it a secret while falling in love with a brilliant classmate who inspires him to open his heart and not be defined by his condition.",2020-08-21,1.9534,7.8,631 +643,438631,Dune,"Paul Atreides, a brilliant and gifted young man born into a great destiny beyond his understanding, must travel to the most dangerous planet in the universe to ensure the future of his family and his people. As malevolent forces explode into conflict over the planet's exclusive supply of the most precious resource in existence-a commodity capable of unlocking humanity's greatest potential-only those who can conquer their fear will survive.",2021-09-15,17.9562,7.781,13785 +644,262,The King of Comedy,"Aspiring comic Rupert Pupkin attempts to achieve success in show business by stalking his idol, a late night talk-show host who craves his own privacy.",1982-12-18,3.3448,7.781,2421 +645,31056,A Short Film About Love,"19-year-old Tomek whiles away his lonely life by spying on his opposite neighbour Magda through binoculars. She's an artist in her mid-thirties, and appears to have everything - not least a constant stream of men at her beck and call. But when the two finally meet, they discover that they have a lot more in common than appeared at first sight...",1988-08-21,1.2897,7.78,388 +646,144,Wings of Desire,"Two angels, Damiel and Cassiel, glide through the streets of Berlin, observing the bustling population, providing invisible rays of hope to the distressed but never interacting with them. When Damiel falls in love with lonely trapeze artist Marion, the angel longs to experience life in the physical world, and finds -- with some words of wisdom from actor Peter Falk -- that it might be possible for him to take human form.",1987-09-23,2.7834,7.78,1400 +647,71157,Polisse,"Paris, France. Fred and his colleagues, members of the BPM, the Police Child Protection Unit, dedicated to pursuing all sorts of offenses committed against the weakest, must endure the scrutiny of Melissa, a photographer commissioned to graphically document the daily routine of the team.",2011-10-06,1.7961,7.778,1260 +648,1675,Day for Night,"A committed film director struggles to complete his movie while coping with a myriad of crises, personal and professional, among the cast and crew.",1973-05-24,1.3878,7.8,618 +649,5961,Fanny and Alexander,"As children in the loving Ekdahl family, Fanny and Alexander enjoy a happy life with their parents, who run a theater company. After their father dies unexpectedly, however, the siblings end up in a joyless home when their mother, Emilie, marries a stern bishop. The bleak situation gradually grows worse as the bishop becomes more controlling, but dedicated relatives make a valiant attempt to aid Emilie, Fanny and Alexander.",1982-12-17,1.716,7.776,812 +650,11005,Awakenings,"Dr. Malcolm Sayer, a shy research physician, uses an experimental drug to ""awaken"" the catatonic victims of a rare disease. Leonard is the first patient to receive the controversial treatment. His awakening, filled with awe and enthusiasm, proves a rebirth for Sayer too, as the exuberant patient reveals life's simple but unutterably sweet pleasures to the introverted doctor.",1990-12-04,3.808,7.774,2663 +651,165,Back to the Future Part II,"Marty and Doc are at it again as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight, Marty finds himself bound for 1955 and face to face with his teenage parents -- again.",1989-11-22,6.8691,7.775,13287 +652,783675,The First Slam Dunk,"Shohoku's “speedster” and point guard, Ryota Miyagi, always plays with brains and lightning speed, running circles around his opponents while feigning composure. In his second year of high school, Ryota plays with the Shohoku High School basketball team along with Sakuragi, Rukawa, Akagi, and Mitsui as they take the stage at the Inter-High School National Championship. And now, they are on the brink of challenging the reigning champions, Sannoh Kogyo High School.",2022-12-03,2.7377,7.774,472 +653,715931,Emancipation,"Inspired by the gripping true story of a man who would do anything for his family—and for freedom. When Peter, an enslaved man, risks his life to escape and return to his family, he embarks on a perilous journey of love and endurance.",2022-12-02,2.7376,7.771,1176 +654,18079,Nine Queens,"Two con artists try to swindle a stamp collector by selling him a sheet of counterfeit rare stamps, the ""nine queens"".",2000-08-31,1.4515,7.771,752 +655,553,Dogville,"When beautiful young Grace arrives in the isolated township of Dogville, the small community agrees to hide her from a gang of ruthless gangsters, and, in return, Grace agrees to do odd jobs for the townspeople.",2003-05-21,4.3413,7.77,2527 +656,141,Donnie Darko,"After narrowly escaping a bizarre accident, a troubled teenager is plagued by visions of a large bunny rabbit that manipulates him to commit a series of crimes.",2001-01-19,7.2185,7.77,12845 +657,6844,The Ten Commandments,"Escaping death, a Hebrew infant is raised in a royal household to become a prince. Upon discovery of his true heritage, Moses embarks on a personal quest to reclaim his destiny as the leader and liberator of the Hebrew people.",1956-10-05,5.8093,7.767,1727 +658,652722,In the Arms of an Assassin,"Victor (William Levy) is one of the world’s most handsome men, but he has a deep secret – he is a cold blooded assassin. Smooth talking and seductive, Victor was raised to do one thing only, which is to kill for money. When he is sent to the home of a brutal drug lord to collect payment for his most recent hit, he encounters the beautiful Sarai (Alicia Sanz), who has been forced to spend the last 9 years of her life with the drug lord.",2019-12-06,2.6953,7.766,426 +659,216,Ali: Fear Eats the Soul,"Emmi Kurowski, a cleaning lady, is lonely in her old age. Her husband died years ago, and her grown children offer little companionship. One night she goes to a bar frequented by Arab immigrants and strikes up a friendship with middle-aged mechanic Ali. Their relationship soon develops into something more, and Emmi's family and neighbors criticize their spontaneous marriage. Soon Emmi and Ali are forced to confront their own insecurities about their future.",1974-03-05,1.4088,7.8,423 +660,712454,The Summit of the Gods,A photojournalist's obsessive quest for the truth about the first expedition to Mt. Everest leads him to search for an esteemed climber who went missing.,2021-09-22,1.1856,7.8,375 +661,11602,Through a Glass Darkly,"Karin hopes to recover from her recent stay at a mental hospital by spending the summer at her family's cottage on a tiny island. Her husband, Martin, cares for her but is frustrated by her physical withdrawal. Her younger brother, Minus, is confused by Karin's vulnerability and his own budding sexuality. Their father, David, cannot overcome his haughty remoteness. Beset by visions, Karin descends further into madness.",1961-10-16,1.9353,7.8,509 +662,9421,The Dinner Game,"For Pierre Brochant and his friends, Wednesday is “Idiots' Day”. The idea is simple: each person has to bring along an idiot. The one who brings the most spectacular idiot wins the prize. Tonight, Brochant is ecstatic. He has found a gem. The ultimate idiot, “A world champion idiot!”. What Brochant doesn’t know is that Pignon is a real jinx, a past master in the art of bringing on catastrophes...",1998-04-15,2.2574,7.765,1977 +663,925,Do the Right Thing,"Salvatore ""Sal"" Fragione is the Italian owner of a pizzeria in Brooklyn. A neighborhood local, Buggin' Out, becomes upset when he sees that the pizzeria's Wall of Fame exhibits only Italian actors. Buggin' Out believes a pizzeria in a black neighborhood should showcase black actors, but Sal disagrees. The wall becomes a symbol of racism and hate to Buggin' Out and to other people in the neighborhood, and tensions rise.",1989-06-14,3.0545,7.764,1868 +664,976893,Perfect Days,"Hirayama is content with his life as a toilet cleaner in Tokyo. Outside of his structured routine, he cherishes music on cassette tapes, books, and taking photos of trees. Through unexpected encounters, he reflects on finding beauty in the world.",2023-11-10,6.552,7.763,1553 +665,937278,A Man Called Otto,"When a lively young family moves in next door, grumpy widower Otto Anderson meets his match in a quick-witted, pregnant woman named Marisol, leading to an unlikely friendship that turns his world upside down.",2022-12-28,9.8654,7.763,3209 +666,585511,Luck,"Suddenly finding herself in the never-before-seen Land of Luck, the unluckiest person in the world must unite with the magical creatures there to turn her luck around.",2022-08-05,10.1848,7.763,1828 +667,25050,Still Walking,A family gathers together for a commemorative ritual whose nature only gradually becomes clear.,2008-06-28,1.7397,7.763,399 +668,5511,Le Samouraï,"After carrying out a flawlessly planned hit, Jef Costello, a contract killer with samurai instincts, finds himself caught between a persistent police investigator and a ruthless employer, and not even his armor of fedora and trench coat can protect him.",1967-10-25,2.2285,7.8,1165 +669,22504,The King and the Mockingbird,"A young shepherdess and a chimneysweep plan to get married and escape the clutches of a tyrannical king in love with her, assisted by the guile of a cheeky mockingbird, the king's archenemy.",1980-03-19,1.952,7.761,389 +670,1480,Touch of Evil,"When a car bomb explodes on the American side of the U.S./Mexico border, Mexican drug enforcement agent Miguel Vargas begins his investigation, along with American police captain Hank Quinlan. When Vargas begins to suspect that Quinlan and his shady partner, Menzies, are planting evidence to frame an innocent man, his investigations into their possible corruption quickly put himself and his new bride, Susie, in jeopardy.",1958-03-30,3.266,7.761,1505 +671,169813,Short Term 12,"Grace, a compassionate young supervisor at a foster care facility, helps at-risk teens. But when a new charge dredges up memories of her own troubled past, Grace's tough exterior begins eroding.",2013-08-23,2.1916,7.76,1341 +672,583,Life of Brian,"Brian Cohen is an average young Jewish man, but through a series of ridiculous events, he gains a reputation as the Messiah. When he's not dodging his followers or being scolded by his shrill mother, the hapless Brian has to contend with the pompous Pontius Pilate and acronym-obsessed members of a separatist movement. Rife with Monty Python's signature absurdity, the tale finds Brian's life paralleling Biblical lore, albeit with many more laughs.",1979-08-17,4.0561,7.76,4627 +673,423612,Never Look Away,"German artist Kurt Barnert has escaped East Germany and now lives in West Germany, but is tormented by his childhood under the Nazis and the GDR regime.",2018-10-03,1.882,7.759,709 +674,126319,Ernest & Celestine,"Celestine is a little mouse trying to avoid a dental career while Ernest is a big bear craving an artistic outlet. When Celestine meets Ernest, they overcome their natural enmity by forging a life of crime together.",2012-12-12,1.7089,7.8,638 +675,28162,A Matter of Life and Death,"When a young RAF pilot miraculously survives bailing out of his aeroplane without a parachute, he falls in love with an American radio operator. But the officials in the other world realise their mistake and dispatch an angel to collect him.",1946-12-15,2.5957,7.8,434 +676,10229,A Walk to Remember,"When the popular, restless Landon Carter is forced to participate in the school drama production, he falls in love with Jamie Sullivan, the daughter of the town's minister. Jamie has a ""to-do"" list for her life, as well as a very big secret she must keep from Landon.",2002-01-25,5.5385,7.758,4129 +677,14756,Ip Man,"A semi-biographical account of Yip Man, the first martial arts master to teach the Chinese martial art of Wing Chun. The film focuses on events surrounding Ip that took place in the city of Foshan between the 1930s to 1940s during the Second Sino-Japanese War. Directed by Wilson Yip, the film stars Donnie Yen in the lead role, and features fight choreography by Sammo Hung.",2008-12-12,2.355,7.757,3898 +678,10227,PlayTime,"Clumsy Monsieur Hulot finds himself perplexed by the intimidating complexity of a gadget-filled Paris. He attempts to meet with a business contact but soon becomes lost. His roundabout journey parallels that of an American tourist, and as they weave through the inventive urban environment, they intermittently meet, developing an interest in one another. They eventually get together at a chaotic restaurant, along with several other quirky characters.",1967-12-13,1.5293,7.757,606 +679,587,Big Fish,"Throughout his life Edward Bloom has always been a man of big appetites, enormous passions and tall tales. In his later years, he remains a huge mystery to his son, William. Now, to get to know the real man, Will begins piecing together a true picture of his father from flashbacks of his amazing adventures.",2003-12-25,5.2253,7.757,7424 +680,117,The Untouchables,"Elliot Ness, an ambitious prohibition agent, is determined to take down Al Capone. In order to achieve this goal, he forms a group given the nickname “The Untouchables”.",1987-06-03,4.6017,7.757,5883 +681,428493,God's Own Country,"A young farmer in rural Yorkshire numbs his daily frustrations with binge drinking and casual sex, until the arrival of a Romanian migrant worker.",2017-08-31,1.7792,7.755,941 +682,211954,Instructions Not Included,"Valentin is Acapulco's resident playboy, until a former fling leaves a baby on his doorstep and him heading with her out of Mexico.",2013-07-20,2.4253,7.8,925 +683,273248,The Hateful Eight,Bounty hunters seek shelter from a raging blizzard and get caught up in a plot of betrayal and deception.,2015-12-25,7.1936,7.754,14631 +684,15916,Angel's Egg,"In a desolate and dark world full of shadows, lives one little girl who seems to do nothing but collect water in jars and protect a large egg she carries everywhere. A mysterious man enters her life... and they discuss the world around them.",1985-12-22,2.5535,7.754,451 +685,1417,Pan's Labyrinth,"In post–civil war Spain, 10-year-old Ofelia moves with her pregnant mother to live under the control of her cruel stepfather. Drawn into a mysterious labyrinth, she meets a faun who reveals that she may be a lost princess from an underground kingdom. To return to her true father, she must complete a series of surreal and perilous tasks that blur the line between reality and fantasy.",2006-10-11,9.2074,7.754,10914 +686,380,Rain Man,"When car dealer Charlie Babbitt learns that his estranged father has died, he returns home to Cincinnati, where he discovers that he has a savant older brother named Raymond and that his father's $3 million fortune is being left to the mental institution in which Raymond lives. Motivated by his father's money, Charlie checks Raymond out of the facility in order to return with him to Los Angeles. The brothers' cross-country trip ends up changing both their lives.",1988-12-12,4.9767,7.754,6654 +687,86837,Amour,"Georges and Anne are in their eighties. They are cultivated, retired music teachers. Their daughter, who is also a musician, lives abroad with her family. One day, Anne has a stroke, and the couple's bond of love is severely tested.",2012-09-20,2.1633,7.753,1678 +688,609242,The Heist of the Century,"In 2006, a group of thieves performed what is considered one of the most famous and smart bank heists in the history of Argentina. How they robbed the Rio bank is as surprising as what happened afterwards. This is their story.",2020-01-16,1.9058,7.752,814 +689,396535,Train to Busan,"When a zombie virus pushes Korea into a state of emergency, those trapped on an express train to Busan must fight for their own survival.",2016-07-20,15.7043,7.752,7902 +690,203217,My Mom Is a Character,"After another spat with her kids, Dona Hermínia decides to take some time off from them and hides away in her aunt's house, where she reminisces about her kids in an age when they still needed her.",2013-06-21,0.7411,7.752,668 +691,808,Shrek,"It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon, Shrek teams up with an unlikely compatriot -- a wisecracking donkey.",2001-05-18,19.2735,7.752,17870 +692,143,All Quiet on the Western Front,"When a group of idealistic young men join the German Army during the Great War, they are assigned to the Western Front, where their patriotism is destroyed by the harsh realities of combat.",1930-04-29,3.2261,7.752,855 +693,980489,Gran Turismo,The ultimate wish-fulfillment tale of a teenage Gran Turismo player whose gaming skills won him a series of Nissan competitions to become an actual professional racecar driver.,2023-08-09,7.8912,7.751,3060 +694,545611,Everything Everywhere All at Once,"An aging Chinese immigrant is swept up in an insane adventure, where she alone can save what's important to her by connecting with the lives she could have led in other universes.",2022-03-24,9.769,7.751,7201 +695,14282,Ninja Scroll,"Jubei is a masterless ninja who travels the land alone, lending his services to those with gold—or a worthy cause. His fearsome abilities have served him well, but a plot to overthrow the government threatens to end his wandering ways—and possibly his life.",1993-06-05,3.3625,7.751,681 +696,269149,Zootopia,"Determined to prove herself, Officer Judy Hopps, the first bunny on Zootopia's police force, jumps at the chance to crack her first case - even if it means partnering with scam-artist fox Nick Wilde to solve the mystery.",2016-02-11,22.6629,7.75,16848 +697,166428,How to Train Your Dragon: The Hidden World,"As Hiccup fulfills his dream of creating a peaceful dragon utopia, Toothless’ discovery of an untamed, elusive mate draws the Night Fury away. When danger mounts at home and Hiccup’s reign as village chief is tested, both dragon and rider must make impossible decisions to save their kind.",2019-01-03,17.8188,7.75,6752 +698,24480,Partly Cloudy,"Everyone knows that the stork delivers babies, but where do the storks get the babies from? The answer lies up in the stratosphere, where cloud people sculpt babies from clouds and bring them to life. Gus, a lonely and insecure grey cloud, is a master at creating ""dangerous"" babies. Crocodiles, porcupines, rams and more - Gus's beloved creations are works of art, but more than a handful for his loyal delivery stork partner, Peck. As Gus's creations become more and more rambunctious, Peck's job gets harder and harder. How will Peck manage to handle both his hazardous cargo and his friend's fiery temperament?",2009-05-28,2.1616,7.75,1057 +699,12429,Ponyo,"When Sosuke, a young boy who lives on a clifftop overlooking the sea, rescues a stranded goldfish named Ponyo, he discovers more than he bargained for. Ponyo is a curious, energetic young creature who yearns to be human, but even as she causes chaos around the house, her father, a powerful sorcerer, schemes to return Ponyo to the sea.",2008-07-19,7.1656,7.749,4516 +700,873,The Color Purple,"An epic tale spanning forty years in the life of Celie, an African-American woman living in the South who survives incredible abuse and bigotry. After Celie's abusive father marries her off to the equally debasing 'Mister' Albert Johnson, things go from bad to worse, leaving Celie to find companionship anywhere she can. She perseveres, holding on to her dream of one day being reunited with her sister in Africa.",1985-12-18,3.8161,7.749,1862 +701,51533,Let the Bullets Fly,"When circumstances force an outlaw to impersonate a county governor and clean up a corrupt town, the Robin Hood figure finds himself in a showdown with the local godfather.",2010-12-20,2.3966,7.748,314 +702,25253,Crooks in Clover,"An aging gangster, Fernand Naudin is hoping for a quiet retirement when he suddenly inherits a fortune from an old friend, a former gangster supremo known as the Mexican. If he is ambivalent about his new found wealth, Fernand is positively nonplussed to discover that he has also inherited his benefactor’s daughter, Patricia. Unfortunately, not only does Fernand have to put up with the thoroughly modern Patricia and her nauseating boyfriend, but he also had to contend with the Mexican’s trigger-happy former employees, who are determined to make a claim.",1963-11-27,1.6778,7.748,523 +703,13855,The Chaser,"Joong-ho is a dirty detective turned pimp in financial trouble as several of his girls have recently disappeared without clearing their debts. While trying to track them down, he finds a clue that the vanished girls were all called up by the same client whom one of his girls is meeting with right now.",2008-02-14,2.7847,7.748,1406 +704,1040,The Leopard,"As Garibaldi's troops begin the unification of Italy in the 1860s, an aristocratic Sicilian family grudgingly adapts to the sweeping social changes undermining their way of life. Proud but pragmatic Prince Don Fabrizio Salina allows his war hero nephew, Tancredi, to marry Angelica, the beautiful daughter of gauche, bourgeois Don Calogero, in order to maintain the family's accustomed level of comfort and political clout.",1963-03-27,2.5807,7.7,875 +705,17483,Shelter,"Forced to give up his dreams of art school, Zach works dead-end jobs to support his sister and her son. Questioning his life, he paints, surfs and hangs out with his best friend, Gabe. When Gabe's older brother returns home for the summer, Zach suddenly finds himself drawn into a relationship he didn't expect.",2007-06-16,1.2245,7.746,484 +706,882569,Guy Ritchie's The Covenant,"During the war in Afghanistan, a local interpreter risks his own life to carry an injured sergeant across miles of grueling terrain.",2023-04-19,7.5696,7.745,2830 +707,579974,RRR,A fictional history of two legendary revolutionaries' journey away from home before they began fighting for their country in the 1920s.,2022-03-24,6.4725,7.745,1436 +708,113833,The Normal Heart,"The story of the onset of the HIV-AIDS crisis in New York City in the early 1980s, taking an unflinching look at the nation's sexual politics as gay activists and their allies in the medical community fight to expose the truth about the burgeoning epidemic to a city and nation in denial.",2014-05-25,2.0232,7.745,890 +709,1700,Misery,"After an accident, acclaimed novelist Paul Sheldon is rescued by a nurse who claims to be his biggest fan. Her obsession takes a dark turn when she holds him captive in her remote Colorado home and forces him to write back to life the popular literary character he killed off.",1990-11-30,5.8844,7.745,4873 +710,792,Platoon,"As a young and naive recruit in Vietnam, Chris Taylor faces a moral crisis when confronted with the horrors of war and the duality of man.",1986-12-19,7.5235,7.745,4779 +711,322,Mystic River,The lives of three men who were childhood friends are shattered when one of them suffers a family tragedy.,2003-10-07,5.6473,7.745,6994 +712,40662,Batman: Under the Red Hood,"One part vigilante, one part criminal kingpin, Red Hood begins cleaning up Gotham with the efficiency of Batman, but without following the same ethical code.",2010-07-27,3.3384,7.7,1652 +713,303,Notorious,"In order to help bring Nazis to justice, U.S. government agent T.R. Devlin recruits Alicia Huberman, the American daughter of a convicted German war criminal, as a spy. As they begin to fall for one another, Alicia is instructed to win the affections of Alexander Sebastian, a Nazi hiding out in Brazil. When Sebastian becomes serious about his relationship with Alicia, the stakes get higher, and Devlin must watch her slip further undercover.",1946-08-21,2.153,7.7,1656 +714,27670,Nothing Left to Do But Cry,"Two 20th-century friends accidentally stumble into the year 1492, where they meet a charming teen and try to alter history.",1984-12-20,0.6578,7.743,1150 +715,12491,Accattone,A pimp with no other means to provide for himself finds his life spiralling out of control when his prostitute is sent to prison.,1961-09-25,1.6146,7.742,490 +716,12444,Harry Potter and the Deathly Hallows: Part 1,"Harry, Ron and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes, putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose, the world is more dangerous than ever.",2010-11-17,18.6811,7.7,19648 +717,799766,Better Man,"Follow Robbie Williams' journey from childhood, to being the youngest member of chart-topping boyband Take That, through to his unparalleled achievements as a record-breaking solo artist – all the while confronting the challenges that stratospheric fame and success can bring.",2024-12-06,6.934,7.7,629 +718,369299,Don't Blame the Kid,"After a one-night stand results in pregnancy, a young woman decides to become partners with the emotionally immature father-to-be.",2016-05-13,1.8819,7.739,651 +719,20126,Deep Red,"An English pianist living in Rome witnesses the brutal murder of his psychic neighbor. With the help of a tenacious young reporter, he tries to discover the killer using very unconventional methods. The two are soon drawn into a shocking web of dementia and violence.",1975-03-07,2.2188,7.7,1509 +720,15265,The Red Balloon,"A young boy discovers a stray balloon, which seems to have a mind of its own, on the streets of Paris. The two become inseparable, yet the world’s harsh realities finally interfere.",1956-08-24,0.968,7.738,411 +721,703,Annie Hall,New York comedian Alvy Singer falls in love with the ditsy Annie Hall.,1977-04-19,4.4465,7.7,4029 +722,382591,Two Is a Family,A man without attachments or responsibilities suddenly finds himself with an abandoned baby and leaves for London to try and find the mother. Eight years later after he and his daughter become inseparable Gloria's mother reappears.,2016-12-07,2.7325,7.737,3003 +723,666277,Past Lives,"After decades apart, childhood friends Nora and Hae Sung are reunited in New York for one fateful weekend as they confront notions of destiny, love, and the choices that make a life.",2023-06-02,5.9422,7.736,1980 +724,336804,Mustang,"In a Turkish village, five orphaned sisters live under strict rule while members of their family prepare their arranged marriages.",2015-06-17,1.5931,7.7,1402 +725,123025,"Batman: The Dark Knight Returns, Part 1","Batman has not been seen for ten years. A new breed of criminal ravages Gotham City, forcing 55-year-old Bruce Wayne back into the cape and cowl. But, does he still have what it takes to fight crime in a new era?",2012-08-21,4.1324,7.734,1649 +726,45269,The King's Speech,"The King's Speech tells the story of the man who became King George VI, the father of Queen Elizabeth II. After his brother abdicates, George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king, Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques, and as a result of an unlikely friendship, Bertie is able to find his voice and boldly lead the country into war.",2010-11-26,5.4603,7.734,8951 +727,602063,Rurouni Kenshin: The Final,"In 1879, Kenshin and his allies face their strongest enemy yet: his former brother-in-law Enishi Yukishiro and his minions, who've vowed their revenge.",2021-04-23,3.901,7.733,508 +728,492188,Marriage Story,"A stage director and an actress struggle through a grueling, coast-to-coast divorce that pushes them to their personal extremes.",2019-09-28,3.8277,7.733,7129 +729,9552,The Exorcist,"When a charming 12-year-old girl takes on the characteristics and voices of others, doctors say there is nothing they can do. As people begin to die, the girl's mother realizes her daughter has been possessed by the Devil. Her daughter's only possible hope lies with two priests and the ancient rite of demonic exorcism.",1973-12-26,10.4477,7.733,8230 +730,22596,Safety Last!,"When a store clerk organizes a contest to climb the outside of a tall building, circumstances force him to make the perilous climb himself.",1923-04-01,1.3878,7.732,540 +731,12405,Slumdog Millionaire,"A teenager reflects on his life after being accused of cheating on the Indian version of ""Who Wants to be a Millionaire?"".",2008-11-12,5.1964,7.732,10870 +732,903,Cool Hand Luke,"When petty criminal Luke Jackson is sentenced to two years in a Florida prison farm, he doesn't play by the rules of either the sadistic warden or the yard's resident heavy, Dragline, who ends up admiring the new guy's unbreakable will. Luke's bravado, even in the face of repeated stints in the prison's dreaded solitary confinement cell, ""the box,"" make him a rebel hero to his fellow convicts and a thorn in the side of the prison officers.",1967-11-01,2.8652,7.7,1496 +733,49046,All Quiet on the Western Front,"Paul Baumer and his friends Albert and Muller, egged on by romantic dreams of heroism, voluntarily enlist in the German army. Full of excitement and patriotic fervour, the boys enthusiastically march into a war they believe in. But once on the Western Front, they discover the soul-destroying horror of World War I.",2022-10-07,7.4549,7.731,4249 +734,16052,Selena,"In this biographical drama, Selena Quintanilla is born into a musical Mexican-American family in Texas. Her father, Abraham, realizes that his young daughter is talented and begins performing with her at small venues. She finds success and falls for her guitarist, Chris Perez, who draws the ire of her father. Seeking mainstream stardom, Selena begins recording an English-language album which, tragically, she would never complete.",1997-03-21,2.6226,7.731,1256 +735,2108,The Breakfast Club,"Five high school students from different walks of life endure a Saturday detention under a power-hungry principal. The disparate group includes rebel John, princess Claire, outcast Allison, brainy Brian and Andrew, the jock. Each has a chance to tell his or her story, making the others see them a little differently -- and when the day ends, they question whether school will ever be the same.",1985-02-15,5.0673,7.731,8214 +736,1139817,Officer Black Belt,A talented martial artist who can't walk past a person in need unites with a probation officer to fight and prevent crime as a martial arts officer.,2024-09-12,4.7983,7.73,304 +737,843906,Straight Outta Nowhere: Scooby-Doo! Meets Courage the Cowardly Dog,"With Mystery, Inc. on the tail of a strange object in Nowhere, Kansas, the strange hometown of Eustace, Muriel, and Courage, the gang soon find themselves contending with a giant cicada monster and her winged warriors.",2021-09-14,1.841,7.7,392 +738,705861,Hustle,"After discovering a once-in-a-lifetime player with a rocky past abroad, a down on his luck basketball scout takes it upon himself to bring the phenom to the States without his team's approval. Against the odds, they have one final shot to prove they have what it takes to make it in the NBA.",2022-06-03,3.989,7.73,2665 +739,486589,Red Shoes and the Seven Dwarfs,"Princes who have been turned into Dwarfs seek the red shoes of a lady in order to break the spell, although it will not be easy.",2019-07-25,5.3482,7.73,1104 +740,49687,Marriage Italian Style,"During the bombing of Naples in World War II, a cynical businessman helps a naive prostitute, who spends the next two decades desperate to have him reciprocate her feelings.",1964-12-18,0.9906,7.7,522 +741,10020,Beauty and the Beast,"Follow the adventures of Belle, a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff, Belle soon learns the most important lesson of all -- that true beauty comes from within.",1991-10-22,14.3386,7.73,10255 +742,334,Magnolia,"On one random day in the San Fernando Valley, a dying father, a young wife, a male caretaker, a famous lost son, a police officer in love, a boy genius, an ex-boy genius, a game show host and an estranged daughter will each become part of a dazzling multiplicity of plots, but one story.",1999-12-17,5.4605,7.73,3717 +743,11902,Underground,"A group of Serbian socialists prepares for the war in a surreal underground filled by parties, tragedies, love and hate.",1995-05-13,1.9152,7.7,712 +744,5528,The Chorus,"In 1940s France, a new teacher at a school for disruptive boys gives hope and inspiration.",2004-03-17,3.1872,7.729,2498 +745,61979,Three Steps Above Heaven,"Story of two young people who belong to different worlds. It is the chronicle of a love improbable, almost impossible but inevitable dragging in a frantic journey they discover the first great love. Babi is a girl from upper-middle class that is educated in goodness and innocence . Hache is a rebellious boy, impulsive, unconscious, has a appetite for risk and danger embodied in endless fights and illegal motorbike races, the limit of common sense",2010-12-03,9.0595,7.728,3134 +746,21135,L'Eclisse,"This romantic drama by Michelangelo Antonioni follows the love life of Vittoria, a beautiful literary translator living in Rome. After splitting from her writer boyfriend, Riccardo, Vittoria meets Piero, a lively stockbroker, on the hectic floor of the Roman stock exchange. Though Vittoria and Piero begin a relationship, it is not one without difficulties, and their commitment to one another is tested during an eclipse.",1962-04-13,1.8093,7.728,504 +747,177572,Big Hero 6,"A special bond develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.",2014-10-24,15.4284,7.727,16021 +748,96721,Rush,"In the 1970s, a rivalry propels race car drivers Niki Lauda and James Hunt to fame and glory — until a horrible accident threatens to end it all.",2013-09-02,8.2642,7.7,7427 +749,1626,Vivre Sa Vie,Twelve episodic tales in the life of a Parisian woman and her slow descent into prostitution.,1962-09-20,1.7018,7.7,670 +750,525,The Blues Brothers,"Jake Blues, just released from prison, puts his old band back together to save the Catholic home where he and his brother Elwood were raised.",1980-06-16,5.1305,7.726,4353 +751,15121,The Sound of Music,"In the years before the Second World War, a tomboyish postulant at an Austrian abbey is hired as a governess in the home of a widowed naval captain with seven children, and brings a new love of life and music into the home.",1965-03-29,5.8993,7.725,3418 +752,30959,Kwaidan,"Taking its title from an archaic Japanese word meaning ""ghost story,"" this anthology adapts four folk tales. A penniless samurai marries for money with tragic results. A man stranded in a blizzard is saved by Yuki the Snow Maiden, but his rescue comes at a cost. Blind musician Hoichi is forced to perform for an audience of ghosts. An author relates the story of a samurai who sees another warrior's reflection in his teacup.",1965-01-06,2.2211,7.724,411 +753,396,Who's Afraid of Virginia Woolf?,"A history professor and his wife entertain a young couple who are new to the university's faculty. As the drinks flow, secrets come to light, and the middle-aged couple unload onto their guests the full force of the bitterness, dysfunction, and animosity that defines their marriage.",1966-06-22,2.3266,7.724,859 +754,843241,The Seven Deadly Sins: Cursed by Light,"With the help of the ""Dragon Sin of Wrath"" Meliodas and the worst rebels in history, the Seven Deadly Sins, the ""Holy War"", in which four races, including Humans, Goddesses, Fairies and Giants fought against the Demons, is finally over. At the cost of the ""Lion Sin of Pride"" Escanor's life, the Demon King was defeated and the world regained peace. After that, each of the Sins take their own path.",2021-07-02,2.268,7.722,497 +755,603692,John Wick: Chapter 4,"With the price on his head ever increasing, John Wick uncovers a path to defeating The High Table. But before he can earn his freedom, Wick must face off against a new enemy with powerful alliances across the globe and forces that turn old friends into foes.",2023-03-22,19.7855,7.722,7275 +756,11299,Cowboy Bebop: The Movie,"The year is 2071. Following a terrorist bombing, a deadly virus is released on the populace of Mars and the government has issued the largest bounty in history, for the capture of whoever is behind it. The bounty hunter crew of the spaceship Bebop; Spike, Faye, Jet and Ed, take the case with hopes of cashing in the bounty. However, the mystery surrounding the man responsible, Vincent, goes deeper than they ever imagined, and they aren't the only ones hunting him.",2001-09-01,3.7891,7.722,961 +757,309,The Celebration,"The family of a wealthy businessman gather to celebrate his 60th birthday. During the course of the party, his eldest son presents a speech that reveals a shocking secret.",1998-06-19,1.5959,7.7,1162 +758,374473,"I, Daniel Blake","A middle aged carpenter, who requires state welfare after injuring himself, is joined by a single mother in a similar scenario.",2016-10-21,1.7984,7.721,1463 +759,696,Manhattan,Manhattan explores how the life of a middle-aged television writer dating a teenage girl is further complicated when he falls in love with his best friend's mistress.,1979-04-25,2.6728,7.721,2490 +760,404,The Straight Story,"A retired farmer and widower in his 70s, Alvin Straight learns one day that his distant brother Lyle has suffered a stroke and may not recover. Alvin is determined to make things right with Lyle while he still can, but his brother lives in Wisconsin, while Alvin is stuck in Iowa with no car and no driver's license. Then he hits on the idea of making the trip on his old lawnmower, thus beginning a picturesque and at times deeply spiritual odyssey.",1999-10-15,2.33,7.72,1662 +761,162,Edward Scissorhands,A small suburban town receives a visit from a castaway unfinished science experiment named Edward.,1990-12-07,8.6858,7.718,13262 +762,14811,Fiddler on the Roof,"In a pre-revolutionary Russia, a poor Jewish milkman struggles with the challenges of a changing world as his daughters fall in love and antisemitism grows.",1971-11-03,3.3775,7.717,597 +763,688,The Bridges of Madison County,Photographer Robert Kincaid wanders into the life of housewife Francesca Johnson for four days in the 1960s.,1995-06-02,3.957,7.717,2241 +764,205,Hotel Rwanda,"Inspired by true events, this film takes place in Rwanda in the 1990s when more than a million Tutsis were killed in a genocide that went mostly unnoticed by the rest of the world. Hotel owner Paul Rusesabagina houses over a thousand refuges in his hotel in attempt to save their lives.",2004-12-22,2.4535,7.717,2966 +765,9800,Philadelphia,Two competing lawyers join forces to sue a prestigious law firm for AIDS discrimination. As their unlikely friendship develops their courage overcomes the prejudice and corruption of their powerful adversaries.,1993-12-22,3.9545,7.716,4398 +766,158,Knockin' on Heaven's Door,"Two young men, Martin and Rudi, both suffering from terminal cancer, get to know each other in a hospital room. They drown their desperation in tequila and decide to take one last trip to the sea. Drunk and still in pajamas they steal the first fancy car they find, a 60's Mercedes convertible. The car happens to belong to a bunch of gangsters, which immediately start to chase it, since it contains more than the pistol Martin finds in the glove box.",1997-02-20,1.972,7.7,542 +767,272,Batman Begins,"Driven by tragedy, billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home, Gotham City. Unable to work within the system, he instead creates a new identity, a symbol of fear for the criminal underworld - The Batman.",2005-06-10,14.9838,7.715,21673 +768,9806,The Incredibles,"Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment, it's time to get back into costume.",2004-10-27,21.4715,7.714,18164 +769,950396,The Gorge,"Two highly trained operatives grow close from a distance after being sent to guard opposite sides of a mysterious gorge. When an evil below emerges, they must work together to survive what lies within.",2025-02-13,37.4914,7.713,2899 +770,297222,PK,"A stranger in the city asks questions no one has asked before. Known only by his initials, the man's innocent questions and childlike curiosity take him on a journey of love, laughter and letting go.",2014-12-18,3.2602,7.713,1052 +771,221732,Rurouni Kenshin Part III: The Legend Ends,"Shishio sets sail in his ironclad ship to bring down the government. In order to stop him, Kenshin trains with his old master to learn his final technique.",2014-09-13,3.0892,7.7,521 +772,48831,My Night at Maud's,"The Catholic Jean-Louis runs into an old friend, the Marxist Vidal, in Clermont-Ferrand around Christmas. Vidal introduces Jean-Louis to the modestly libertine, recently divorced Maud and the three engage in conversation on religion, atheism, love, morality and Blaise Pascal's life and writings on philosophy, faith and mathematics. Jean-Louis ends up spending a night at Maud's. Jean-Louis' Catholic views on marriage, fidelity and obligation make his situation a dilemma, as he has already, at the very beginning of the film, proclaimed his love for a young woman whom, however, he has never yet spoken to.",1969-06-04,1.566,7.713,333 +773,451945,BPM (Beats per Minute),"Paris, in the early 1990s: a group of young activists is desperately tied to finding the cure against an unknown lethal disease. They target the pharmaceutical labs that are retaining potential cures, and multiply direct actions, with the hope of saving their lives as well as the ones of future generations.",2017-08-23,1.2925,7.711,1355 +774,30018,Mother,"A mother lives quietly with her son. One day, a girl is brutally killed, and the boy is charged with the murder. Now, it's his mother's mission to prove him innocent.",2009-05-28,3.1373,7.71,1576 +775,963,The Maltese Falcon,"A private detective takes on a case that involves him with three eccentric criminals, a beautiful liar, and their quest for a priceless statuette.",1941-10-18,2.666,7.7,1765 +776,502033,Sound of Metal,"Metal drummer Ruben begins to lose his hearing. When a doctor tells him his condition will worsen, he thinks his career and life is over. His girlfriend Lou checks the former addict into a rehab for the deaf hoping it will prevent a relapse and help him adapt to his new life. After being welcomed and accepted just as he is, Ruben must choose between his new normal and the life he once knew.",2020-11-20,2.4885,7.709,2651 +777,413594,Sword Art Online: The Movie – Ordinal Scale,"In 2026, four years after the infamous Sword Art Online incident, a revolutionary new form of technology has emerged: the Augma, a device that utilizes an Augmented Reality system. Unlike the Virtual Reality of the NerveGear and the Amusphere, it is perfectly safe and allows players to use it while they are conscious, creating an instant hit on the market. The most popular application for the Augma is the game Ordinal Scale, which immerses players in a fantasy role-playing game with player rankings and rewards. Following the new craze, Kirito's friends dive into the game, and despite his reservations about the system, Kirito eventually joins them. While at first it appears to be just fun and games, they soon find out that the game is not all that it seems...",2017-02-18,2.6424,7.708,701 +778,337960,Holding the Man,"Tim and John fell in love while teenagers at their all-boys high school. John was captain of the football team, Tim an aspiring actor playing a minor part in Romeo and Juliet. Their romance endured for 15 years in the face of everything life threw at it – the separations, the discrimination, the temptations, the jealousies and the losses – until the only problem that love can't solve tried to destroy them.",2015-08-27,1.0737,7.7,450 +779,40619,Day & Night,"When Day, a sunny fellow, encounters Night, a stranger of distinctly darker moods, sparks fly! Day and Night are frightened and suspicious of each other at first, and quickly get off on the wrong foot. But as they discover each other's unique qualities--and come to realize that each of them offers a different window onto the same world-the friendship helps both to gain a new perspective.",2010-06-17,1.4401,7.7,913 +780,672,Harry Potter and the Chamber of Secrets,"Cars fly, trees fight back, and a mysterious house-elf comes to warn Harry Potter at the start of his second year at Hogwarts. Adventure and danger await when bloody writing on a wall announces: The Chamber Of Secrets Has Been Opened. To save Hogwarts will require all of Harry, Ron and Hermione’s magical abilities and courage.",2002-11-13,21.5495,7.7,22716 +781,234200,Pride,"In 1984, a group of LGBT activists decide to raise money to support the National Union of Mineworkers during their lengthy strike. There is only one problem: the Union seems embarrassed to receive their support.",2014-09-12,2.1432,7.706,1352 +782,573699,White Snake,"One day a young woman named Blanca is saved by Xuan, a snake catcher from a nearby village. She has lost her memory, and together they go on a journey to discover her real identity, developing deeper feelings for one another along the way. But as they learn more about her past, they uncover a darker plot of supernatural forces vying for power, with the fate of the world hanging in the balance.",2019-01-11,3.3589,7.705,514 +783,24657,The Sacrifice,"Alexander, a journalist, philosopher and retired actor, celebrates a birthday with friends and family when it is announced that nuclear war has begun.",1986-05-09,2.2177,7.7,566 +784,20139,The Children's Hour,An unruly student at a private all-girls boarding school scandalously accuses the two women who run it of having a romantic relationship.,1961-12-19,1.388,7.7,371 +785,980026,The Promised Land,"Denmark, 1755. Captain Ludvig Kahlen sets out to conquer a Danish heath reputed to be uncultivable, with an impossible goal: to establish a colony in the name of the king, in exchange for a royal title. A single-minded ambition that the ruthless lord of the region will relentlessly seek to put down. Kahlen's fate hangs in the balance: will his endevours bring him wealth and honour, or cost him his life...?",2023-10-05,3.054,7.704,449 +786,242582,Nightcrawler,"When Lou Bloom, desperate for work, muscles into the world of L.A. crime journalism, he blurs the line between observer and participant to become the star of his own story. Aiding him in his effort is Nina, a TV-news veteran.",2014-10-23,8.3586,7.704,11154 +787,980,The Ox-Bow Incident,A posse discovers a trio of men they suspect of murder and cow theft and are split between handing them over to the law or lynching them on the spot.,1943-03-11,1.8491,7.704,405 +788,227932,My Mom Is a Character 2,"Dona Hermínia is back, but now rich and famous since she is the host of her own successful TV show. However, the overprotective character will have to deal with her children's departures, as Marcelina and Juliano decide to move out. In counterpart, she will welcome, as a visitor, her sister Lúcia Helena, who's been living in New York.",2016-12-22,1.0534,7.703,513 +789,2204,Alice in the Cities,"German journalist Philip Winter has a case of writer’s block when trying to write an article about the United States. He decides to return to Germany, and while trying to book a flight, encounters a German woman and her nine year old daughter Alice doing the same. The three become friends (almost out of necessity) and while the mother asks Winter to mind Alice temporarily, it quickly becomes apparent that Alice will be his responsibility for longer than he expected.",1974-05-17,2.3172,7.7,315 +790,851,Brief Encounter,"Returning home from a shopping trip to a nearby town, bored suburban housewife Laura Jesson is thrown by happenstance into an acquaintance with virtuous doctor Alec Harvey. Their casual friendship soon develops during their weekly visits into something more emotionally fulfilling than either expected, and they must wrestle with the potential havoc their deepening relationship would have on their lives and the lives of those they love.",1945-11-24,2.0271,7.703,656 +791,336,"Duck, You Sucker","At the beginning of the 1913 Mexican Revolution, greedy bandit Juan Miranda and idealist John H. Mallory, an Irish Republican Army explosives expert on the lam from the British, fall in with a band of revolutionaries plotting to strike a national bank. When it turns out that the government has been using the bank as a hiding place for illegally detained political prisoners -- who are freed by the blast -- Miranda becomes a revolutionary hero against his will.",1971-10-29,3.1401,7.702,1120 +792,3114,The Searchers,"As a Civil War veteran spends years searching for a young niece captured by Indians, his motivation becomes increasingly questionable.",1956-05-16,3.6397,7.7,1485 +793,1633,Fried Green Tomatoes,"Amidst her own personality crisis, a southern housewife meets an outgoing old woman who tells her the story of Idgie Threadgoode and Ruth Jamison, two young women who experienced hardships and love in 1920s Whistle Stop, Alabama.",1991-12-27,3.368,7.7,1398 +794,597316,My Little Pony: A New Generation,"Equestria's divided. But a bright-eyed hero believes Earth Ponies, Pegasi and Unicorns should be pals — and, hoof to heart, she’s determined to prove it.",2021-09-22,2.0626,7.7,321 +795,51608,The Man from Nowhere,An ex-special agent is involved in a convoluted drug ring drama. He has to save a drug smuggler's innocent daughter from being the victim of her parents' fight.,2010-08-04,4.6595,7.699,1379 +796,30588,Monsieur Verdoux,"The film is about an unemployed banker, Henri Verdoux, and his sociopathic methods of attaining income. While being both loyal and competent in his work, Verdoux has been laid-off. To make money for his wife and child, he marries wealthy widows and then murders them. His crime spree eventually works against him when two particular widows break his normal routine.",1947-09-26,1.3118,7.698,442 +797,19026,Azur & Asmar: The Princes' Quest,"Raised on tales of a Djinn fairy princess, Azur, a young Frenchman goes to North Africa in search of the sprite, only to discover that his close childhood friend, Asmar, an Arab youth whose mother raised both boys also seeks the genie.",2006-10-25,1.3242,7.7,642 +798,539517,Constantine: City of Demons - The Movie,"A decade after a tragic mistake, family man Chas Chandler and occult detective John Constantine set out to cure his daughter Trish from a mysterious supernatural coma.",2018-10-04,2.7417,7.697,621 +799,23832,For Love and Gold,"A group of rogues steal a scroll granting its bearer the property of the land of Aurocastro in Apulia, a province in the south of Italy. They elect a shaggy knight, Brancaleone from Norcia, as their leader, and decide to get possession of this supposedly wealthy land. Many adventures will occurr during the journey.",1966-04-07,1.1913,7.697,374 +800,12516,Dreams,A collection of magical tales based upon the actual dreams of director Akira Kurosawa.,1990-05-11,2.0651,7.696,507 +801,5544,Hiroshima Mon Amour,"The deep conversation between a Japanese architect and a French actress forms the basis of this celebrated French film, considered one of the vanguard productions of the French New Wave. Set in Hiroshima after the end of World War II, the couple -- lovers turned friends -- recount, over many hours, previous romances and life experiences. The two intertwine their stories about the past with pondering the devastation wrought by the atomic bomb dropped on the city.",1959-06-10,2.6955,7.7,856 +802,137182,The Broken Circle Breakdown,The loss of their young daughter threatens to destroy the love and faith of two married musicians.,2012-10-09,1.0712,7.695,1084 +803,613868,Cousins,"Lucas is a young man who lives with his religious aunt Lourdes in a quiet country town. He helps his aunt by holding religious meetings with the ladies of the area, in the living room, playing biblical songs on the keyboard. This quiet life will end as soon as the charitable aunt communicates the arrival of another nephew, Mario, just out of jail. The clash of reality between the cousins ends up causing unusual situations, and an unexpected attraction among the boys.",2019-12-10,1.4392,7.694,338 +804,632,Stalag 17,"It's a dreary Christmas 1944 for the American POWs in Stalag 17 and the men in Barracks 4, all sergeants, have to deal with a grave problem—there seems to be a security leak.",1953-05-29,1.8286,7.694,625 +805,393729,Divines,"In a ghetto where religion and drug trafficking rub shoulders, Dounia has a lust for power and success. Supported by Maimouna, her best friend, she decides to follow in the footsteps of Rebecca, a respected dealer. But her encounter with Djigui, a young, disturbingly sensual dancer, throws her off course.",2016-08-31,0.9681,7.693,666 +806,336808,Embrace of the Serpent,"The epic story of the first contact, encounter, approach, betrayal and, eventually, life-transcending friendship, between Karamakate, an Amazonian shaman, last survivor of his people, and two scientists that, over the course of 40 years, travel through the Amazon in search of a sacred plant that can heal them. Inspired by the journals of the first explorers of the Colombian Amazon, Theodor Koch-Grunberg and Richard Evans Schultes.",2015-05-25,1.1055,7.693,475 +807,5910,Fireworks,"Beleaguered police detective Nishi takes desperate measures to try and set things right in a world gone wrong. With his wife suffering from leukemia and his business partner paralyzed from a brutal gangster attack, Nishi borrows from a yakuza loan shark and then robs a bank to clear his debt.",1997-10-30,1.6038,7.693,723 +808,656563,Rich in Love,"Working incognito at his rich dad's company to test his own merits, Teto falls for Paula and tells her he grew up poor, a lie that spins out of control.",2020-04-30,1.4754,7.692,622 +809,573171,Little Eggs: A Frozen Rescue,"In the final Huevos adventure, Toto and his family will have to travel to the South Pole to fulfill their promise to return a polar bear and some Spanish penguins to their home. In order to do so, they will have to overcome some obstacles that will teach them how important teamwork is.",2022-12-14,3.2919,7.692,357 +810,11171,Mysterious Skin,"A teenage hustler and a young man obsessed with alien abductions cross paths, together discovering a horrible, liberating truth.",2005-03-30,4.1729,7.7,1155 +811,3763,Onibaba,"While her son, Kichi, is away at war, a woman and her daughter-in-law survive by killing samurai who stray into their swamp, then selling whatever valuables they find. Both are devastated when they learn that Kichi has died, but his wife soon begins an affair with a neighbor who survived the war, Hachi. The mother disapproves and, when she can't steal Hachi for herself, tries to scare her daughter-in-law with a mysterious mask from a dead samurai.",1964-11-21,1.8302,7.7,438 +812,773,Little Miss Sunshine,"A family loaded with quirky, colorful characters piles into an old van and road trips to California for little Olive to compete in a beauty pageant.",2006-07-26,5.7,7.692,7424 +813,886396,Batman and Superman: Battle of the Super Sons,"After discovering he has powers, 11-year-old Jonathan Kent and assassin-turned-Boy-Wonder Damian Wayne must join forces to rescue their fathers (Superman & Batman) and save the planet from the malevolent alien force known as Starro.",2022-10-17,2.8194,7.691,320 +814,359784,Maudie,Canadian folk artist Maud Lewis falls in love with a fishmonger while working for him as a live-in housekeeper.,2016-06-16,2.4884,7.7,523 +815,10757,Kabhi Khushi Kabhie Gham,"Years after his father disowns his adopted brother for marrying a woman of lower social standing, a young man goes on a mission to reunite his family.",2001-12-14,2.7605,7.691,569 +816,9023,Spirit: Stallion of the Cimarron,A captured mustang remains determined to return to his herd no matter what.,2002-05-24,7.2088,7.69,4737 +817,4480,Jean de Florette,"In a rural French village, an old man and his only remaining relative cast their covetous eyes on an adjoining vacant property. They need its spring water for growing their flowers, and are dismayed to hear that the man who has inherited it is moving in. They block up the spring and watch as their new neighbour tries to keep his crops watered from wells far afield through the hot summer. Though they see his desperate efforts are breaking his health and his wife and daughter's hearts, they think only of getting the water.",1986-08-27,1.737,7.691,583 +818,8016,"Germany, Year Zero","In the ruins of post-WWII Berlin, a twelve-year-old boy is left to his own devices in order to help provide for his family.",1948-12-01,1.0428,7.69,394 +819,286217,The Martian,"During a manned mission to Mars, Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies, he must draw upon his ingenuity, wit and spirit to subsist and find a way to signal to Earth that he is alive.",2015-09-30,12.6898,7.689,20334 +820,713776,If Anything Happens I Love You,"In this Oscar-winning short film, grieving parents journey through an emotional void as they mourn the loss of a child after a tragic school shooting.",2020-03-07,1.1428,7.688,942 +821,244063,Boys,Two teen track stars discover first love as they train for the biggest relay race of their young lives.,2014-01-08,1.5697,7.688,708 +822,938008,The Killer,"When retired hitman’s wife goes on vacation with her friend, she asks him to look after the friend's teenage daughter. Things go awry when he is forced to use a little violence to protect the girl from juvenile delinquents, but then they are found dead and the girl is kidnapped.",2022-07-13,4.1253,7.687,394 +823,44214,Black Swan,"The story of Nina, a ballerina in a New York City ballet company whose life, like all those in her profession, is completely consumed with dance. She lives with her retired ballerina mother Erica who zealously supports her daughter's professional ambition. When artistic director Thomas Leroy decides to replace prima ballerina Beth MacIntyre for the opening production of their new season, Swan Lake, Nina is his first choice.",2010-12-03,8.086,7.7,14933 +824,14438,Fireproof,"A heroic fire captain values dedication and service to others above all else, but the most important partnership in his life, his marriage, is about to go up in smoke.",2008-09-26,4.2559,7.69,807 +825,453191,The Big Bad Fox and Other Tales,"The countryside isn't always as calm and peaceful as it's made out to be, and the animals on this farm are particularly agitated: a fox who mothers a family of chicks, a rabbit who plays the stork, and a duck who wants to be Santa Claus.",2017-06-21,1.2961,7.685,300 +826,993,Sleuth,"A man who loves games and theater invites his wife's lover to meet him, setting up a battle of wits with potentially deadly results.",1972-12-10,1.1385,7.685,652 +827,375794,"No manches, Frida","After being released from prison, Zequi, a bank robber, sets out to recover money buried by his accomplice; but is horrified to learn that a high school gymnasium is now over the site where the loot is hidden.",2016-09-02,5.9631,7.684,924 +828,776305,Belle,"Suzu is a 17-year-old high-school student living in a rural town with her father. Wounded by the loss of her mother at a young age, Suzu one day discovers the massive online world ""U"" and dives into this alternate reality as her avatar, Belle. Before long, all of U's eyes are fixed on Belle, when, suddenly, a mysterious, dragon-like figure appears before her.",2021-07-16,5.0186,7.683,794 +829,767,Harry Potter and the Half-Blood Prince,"As Lord Voldemort tightens his grip on both the Muggle and wizarding worlds, Hogwarts is no longer a safe haven. Harry suspects perils may even lie within the castle, but Dumbledore is more intent upon preparing him for the final battle fast approaching. Together they work to find the key to unlock Voldemorts defenses and to this end, Dumbledore recruits his old friend and colleague Horace Slughorn, whom he believes holds crucial information. Even as the decisive showdown looms, romance blossoms for Harry, Ron, Hermione and their classmates. Love is in the air, but danger lies ahead and Hogwarts may never be the same again.",2009-07-15,17.8832,7.683,20027 +830,2493,The Princess Bride,"In this enchantingly cracked fairy tale, the beautiful Princess Buttercup and the dashing Westley must overcome staggering odds to find happiness amid six-fingered swordsmen, murderous princes, Sicilians and rodents of unusual size. But even death can't stop these true lovebirds from triumphing.",1987-09-25,5.8061,7.683,4780 +831,965150,Aftersun,Sophie reflects on the shared joy and private melancholy of a holiday she took with her father twenty years earlier. Memories real and imagined fill the gaps between miniDV footage as she tries to reconcile the father she knew with the man she didn't.,2022-10-21,5.1373,7.7,1604 +832,766507,Prey,"When danger threatens her camp, the fierce and highly skilled Comanche warrior Naru sets out to protect her people. But the prey she stalks turns out to be a highly evolved alien predator with a technically advanced arsenal.",2022-08-02,9.9581,7.68,7157 +833,506574,Descendants 3,The teenagers of Disney's most infamous villains return to the Isle of the Lost to recruit a new batch of villainous offspring to join them at Auradon Prep.,2019-08-02,6.7499,7.7,1563 +834,177945,"Like Father, Like Son",Ryota Nonomiya is a successful businessman driven by money. He learns that his biological son was switched with another child after birth. He must make a life-changing decision and choose his true son or the boy he raised as his own.,2013-09-24,1.9426,7.68,755 +835,1061474,Superman,"Superman, a journalist in Metropolis, embarks on a journey to reconcile his Kryptonian heritage with his human upbringing as Clark Kent.",2025-07-09,186.4536,7.678,1653 +836,770254,Back to the Outback,"Tired of being locked in a reptile house where humans gawk at them like they are monsters, a ragtag group of Australia’s deadliest creatures plot an escape from their zoo to the Outback, a place where they’ll fit in without being judged.",2021-12-03,3.5622,7.679,753 +837,479718,The Outlaws,"In Chinatown, law and order is turned upside down when a trio of feral Chinese gangsters arrive, start terrorizing civilians, and usurping territory. The beleaguered local gangsters team up with the police, lead by the badass loose cannon Ma Seok-do, to bring them down. Based on a true story.",2017-10-03,5.7387,7.679,473 +838,83666,Moonrise Kingdom,"Set on an island off the coast of New England in the summer of 1965, Moonrise Kingdom tells the story of two twelve-year-olds who fall in love, make a secret pact, and run away together into the wilderness. As various authorities try to hunt them down, a violent storm is brewing off-shore – and the peaceful island community is turned upside down in more ways than anyone can handle.",2012-05-16,3.8236,7.679,6055 +839,13187,A Charlie Brown Christmas,"When Charlie Brown complains about the overwhelming materialism that he sees amongst everyone during the Christmas season, Lucy suggests that he become director of the school Christmas pageant. Charlie Brown accepts, but it is a frustrating struggle. When an attempt to restore the proper spirit with a forlorn little fir Christmas tree fails, he needs Linus' help to learn the meaning of Christmas.",1965-12-09,1.9681,7.679,725 +840,556984,The Trial of the Chicago 7,What was supposed to be a peaceful protest turned into a violent clash with the police. What followed was one of the most notorious trials in history.,2020-09-25,2.4208,7.678,3158 +841,13830,Shottas,"A raw urban drama about two friends raised on the dangerous streets of Kingston, Jamaica. Biggs and Wayne take on the ""Shotta"" way of life to survive. As young boys, they begin a life of crime, eventually moving to the US where they begin a ruthless climb from the bottom. They remain bound to each other by their shottas loyalty as they aggressively take control of the Jamaican underworld.",2002-02-27,2.3821,7.678,346 +842,12219,12 Angry Men,"During the trial of a man accused of his father's murder, a lone juror takes a stand against the guilty verdict handed down by the others as a result of their preconceptions and prejudices.",1997-08-17,2.3191,7.677,403 +843,499,Cléo from 5 to 7,"Agnès Varda eloquently captures Paris in the sixties with this real-time portrait of a singer set adrift in the city as she awaits test results of a biopsy. A chronicle of the minutes of one woman’s life, Cléo from 5 to 7 is a spirited mix of vivid vérité and melodrama, featuring a score by Michel Legrand and cameos by Jean-Luc Godard and Anna Karina.",1962-04-11,2.416,7.677,722 +844,939243,Sonic the Hedgehog 3,"Sonic, Knuckles, and Tails reunite against a powerful new adversary, Shadow, a mysterious villain with powers unlike anything they have faced before. With their abilities outmatched in every way, Team Sonic must seek out an unlikely alliance in hopes of stopping Shadow and protecting the planet.",2024-12-19,43.9503,7.676,2857 +845,672322,Rurouni Kenshin: The Beginning,"Before he was a protector, Kenshin was a fearsome assassin known as Battosai. But when he meets gentle Tomoe Yukishiro, a beautiful young woman who carries a huge burden in her heart, his life will change forever.",2021-06-04,4.1151,7.676,494 +846,13151,Scooby-Doo on Zombie Island,"After going their separate ways, Scooby-Doo, Shaggy, Velma, Daphne, and Fred reunite to investigate the ghost of Moonscar the pirate on a haunted bayou island, but it turns out the swashbuckler's spirit isn't the only creepy character on the island. The sleuths also meet up with cat creatures and zombies... and it looks like for the first time in their lives, these ghouls might actually be real.",1998-09-22,2.542,7.676,788 +847,840430,The Holdovers,"A curmudgeonly instructor at a New England prep school is forced to remain on campus during Christmas break to babysit the handful of students with nowhere to go. Eventually, he forms an unlikely bond with one of them — a damaged, brainy troublemaker — and with the school’s head cook, who has just lost a son in Vietnam.",2023-10-27,5.139,7.674,2073 +848,522627,The Gentlemen,"American expat Mickey Pearson has built a highly profitable marijuana empire in London. When word gets out that he’s looking to cash out of the business forever it triggers plots, schemes, bribery and blackmail in an attempt to steal his domain out from under him.",2020-01-01,6.1743,7.675,6165 +849,435366,Fabricated City,"In real life, Kwon Yoo is unemployed, but in the virtual game world he is the best leader. Kwon Yoo is then framed for a murder. With the help of hacker Yeo-Wool, he tries to uncover the truth behind the murder case.",2017-02-09,3.4046,7.675,323 +850,82702,How to Train Your Dragon 2,"Five years have passed since Hiccup and Toothless united the dragons and Vikings of Berk. Now, they spend their time charting unmapped territories. During one of their adventures, the pair discover a secret cave that houses hundreds of wild dragons -- and a mysterious dragon rider. Hiccup and Toothless find themselves at the center of a battle to protect Berk from a power-hungry warrior.",2014-06-05,20.0929,7.676,9986 +851,11362,The Count of Monte Cristo,"Edmond Dantés's life and plans to marry the beautiful Mercedes are shattered when his best friend, Fernand, deceives him. After spending 13 miserable years in prison, Dantés escapes with the help of a fellow inmate and plots his revenge, cleverly insinuating himself into the French nobility.",2002-01-23,6.3513,7.675,1880 +852,11220,Fallen Angels,"An assassin goes through obstacles as he attempts to escape his violent lifestyle despite the opposition of his partner, who is secretly attracted to him.",1995-09-06,4.1724,7.7,1159 +853,167581,Free Fall,"A promising career with the police, a baby on the way... Marc's life seems to be right on track. Then he meets fellow policeman Kay and during their regular jogs Marc experiences a never-before-felt sense of ease and effortlessness – and what it means to fall in love with another man.",2013-05-27,1.4035,7.674,815 +854,30020,Taste of Cherry,"A middle-aged Tehranian man, Mr. Badii is intent on killing himself and seeks someone to bury him after his demise. Driving around the city, the seemingly well-to-do Badii meets with numerous people, including a Muslim student, asking them to take on the job, but initially he has little luck. Eventually, Badii finds a man who is up for the task because he needs the money, but his new associate soon tries to talk him out of committing suicide.",1997-09-28,2.2651,7.674,639 +855,2433,The Young Girls of Rochefort,"Delphine and Solange are two sisters living in Rochefort. Delphine is a dancing teacher and Solange composes and teaches the piano. Maxence is a poet and a painter. He is doing his military service. Simon owns a music shop, he left Paris one month ago to come back where he fell in love 10 years ago. They are looking for love, looking for each other, without being aware that their ideal partner is very close...",1967-03-08,1.275,7.7,625 +856,990,The Hustler,Fast Eddie Felson is a small-time pool hustler with a lot of talent but a self-destructive attitude. His bravado causes him to challenge the legendary Minnesota Fats to a high-stakes match.,1961-09-25,2.3938,7.674,1012 +857,675,Harry Potter and the Order of the Phoenix,"Returning for his fifth year of study at Hogwarts, Harry is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice, Harry takes matters into his own hands, training a small group of students to defend themselves against the dark arts.",2007-07-08,19.8495,7.674,20051 +858,792307,Poor Things,"Brought back to life by an unorthodox scientist, a young woman runs off with a lawyer on a whirlwind adventure across the continents. Free from the prejudices of her times, she grows steadfast in her purpose to stand for equality and liberation.",2023-12-07,9.3253,7.674,4880 +859,22881,The Blind Side,"The story of Michael Oher, a homeless and traumatized boy who became an All American football player and first round NFL draft pick with the help of a caring woman and her family.",2009-11-20,13.2015,7.672,6552 +860,1632,Mississippi Burning,"Two FBI agents investigating the murder of civil rights workers during the 60s seek to breach the conspiracy of silence in a small Southern town where segregation divides black and white. The younger agent trained in FBI school runs up against the small town ways of his partner, a former sheriff.",1988-12-08,3.149,7.7,1791 +861,869626,Marcel the Shell with Shoes On,"Marcel is an adorable one-inch-tall shell who ekes out a colorful existence with his grandmother Connie and their pet lint, Alan. Once part of a sprawling community of shells, they now live alone as the sole survivors of a mysterious tragedy. When a documentarian discovers them amongst the clutter of his Airbnb, his resulting short film brings Marcel millions of passionate fans, as well as unprecedented dangers and a new hope at finding his long-lost family.",2022-06-24,3.0353,7.7,629 +862,446159,Bacurau,"Bacurau, a small town in the Brazilian sertão, mourns the loss of its matriarch, Carmelita, who lived to be 94. Days later, its inhabitants notice that their community has vanished from most maps.",2019-08-29,1.2248,7.672,1076 +863,13466,October Sky,"Homer Hickam is a kid with only one future in sight, to work in the local coal mine like his father. However, in October 1957 everything changes when the first artificial satellite, Sputnik, goes into orbit. When Homer sees the Soviet satellite streak overhead, he becomes inspired to learn how to build rockets. With the help of his friends, and the local nerd, Homer sets to do just that by trial and a lot of error. Unfortunately, most of the town, and especially Homer's father, thinks that they are wasting their time. Only one teacher understands their efforts and lets them know that they could become contenders in the national science fair with college scholarships being the prize. Now the gang must learn to perfect their craft and overcome the many problems facing them as they shoot for the stars.",1999-02-19,3.5665,7.672,1306 +864,653,Nosferatu,"The mysterious Count Orlok summons Thomas Hutter to his remote Transylvanian castle in the mountains. The eerie Orlok seeks to buy a house near Hutter and his wife, Ellen. After Orlok reveals his vampire nature, Hutter struggles to escape the castle, knowing that Ellen is in grave danger. Meanwhile Orlok's servant, Knock, prepares for his master to arrive at his new home.",1922-02-16,4.8866,7.672,2295 +865,578,Jaws,"When the seaside community of Amity finds itself under attack by a dangerous great white shark, the town's chief of police, a young marine biologist, and a grizzled hunter embark on a desperate quest to destroy the beast before it strikes again.",1975-06-20,13.5628,7.672,10907 +866,288,High Noon,"Will Kane, the sheriff of a small town in New Mexico, learns a notorious outlaw he put in jail has been freed, and will be arriving on the noon train. Knowing the outlaw and his gang are coming to kill him, Kane is determined to stand his ground, so he attempts to gather a posse from among the local townspeople.",1952-06-09,2.9706,7.7,1496 +867,11474,The Warriors,"Prominent gang leader Cyrus calls a meeting of New York's gangs to set aside their turf wars and take over the city. At the meeting, a rival leader kills Cyrus, but a Coney Island gang called the Warriors is wrongly blamed for Cyrus' death. Before you know it, the cops and every gangbanger in town is hot on the Warriors' trail.",1979-02-01,3.8063,7.671,2243 +868,9912,The World's Fastest Indian,"The life story of New Zealander Burt Munro, who spent years building a 1920 Indian motorcycle—a bike which helped him set the land-speed world record at Utah's Bonneville Salt Flats in 1967.",2005-10-12,4.0445,7.671,811 +869,1002185,A Million Miles Away,"The life of engineer and former NASA astronaut José M. Hernández, the first migrant farmworker to go to space.",2023-09-08,3.3795,7.669,478 +870,726759,Tetris,"In 1988, American video game salesman Henk Rogers discovers the video game Tetris. When he sets out to bring the game to the world, he enters a dangerous web of lies and corruption behind the Iron Curtain.",2023-03-15,8.0273,7.668,1500 +871,218,The Terminator,"In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the ""Terminator"" back to 1984 to kill Sarah Connor, whose unborn son is destined to lead insurgents against 21st century mechanical hegemony. Meanwhile, the human-resistance movement dispatches a lone warrior to safeguard Sarah. Can he stop the virtually indestructible killing machine?",1984-10-26,14.1897,7.669,13769 +872,1908,Inherit the Wind,"Schoolteacher Bertram Cates is arrested for teaching his students Darwin's theory of evolution. The case receives national attention and one of the newspaper reporters, E.K. Hornbeck, arranges to bring in renowned defense attorney and atheist Henry Drummond to defend Cates. The prosecutor, Matthew Brady is a former presidential candidate, famous evangelist, and old adversary of Drummond.",1960-07-07,1.5657,7.668,434 +873,845,Strangers on a Train,"Having met on a train, a smooth-talking psychotic socialite shares his theory on how two complete strangers can get away with murder to an amateur tennis player — a theory he plans to test out.",1951-06-27,4.1189,7.668,1767 +874,11787,Harvey,"The story of Elwood P. Dowd who makes friends with a spirit taking the form of a human-sized rabbit named Harvey that only he sees (and a few privileged others on occasion also.) After his sister tries to commit him to a mental institution, a comedy of errors ensues. Elwood and Harvey become the catalysts for a family mending its wounds and for romance blossoming in unexpected places.",1950-12-04,1.3956,7.7,645 +875,4808,Charade,"After Regina Lampert falls for the dashing Peter Joshua on a skiing holiday in the French Alps, she discovers upon her return to Paris that her husband has been murdered. Soon, she and Peter are giving chase to three of her late husband's World War II cronies, Tex, Scobie and Gideon, who are after a quarter of a million dollars the quartet stole while behind enemy lines.",1963-12-01,4.0302,7.667,1445 +876,1587,What's Eating Gilbert Grape,"Gilbert Grape is a small-town young man with a lot of responsibility. Chief among his concerns are his mother, who is so overweight that she can't leave the house, and his mentally impaired younger brother, Arnie, who has a knack for finding trouble. Settled into a job at a grocery store and an ongoing affair with local woman Betty Carver, Gilbert finally has his life shaken up by the free-spirited Becky.",1993-12-17,6.6032,7.664,4082 +877,68,Brazil,"Low-level bureaucrat Sam Lowry escapes the monotony of his day-to-day life through a recurring daydream of himself as a virtuous hero saving a beautiful damsel. Investigating a case that led to the wrongful arrest and eventual death of an innocent man instead of wanted terrorist Harry Tuttle, he meets the woman from his daydream, and in trying to help her gets caught in a web of mistaken identities, mindless bureaucracy and lies.",1985-02-20,3.9054,7.664,3462 +878,51739,The Secret World of Arrietty,"14-year-old Arrietty and the rest of the Clock family live in peaceful anonymity as they make their own home from items ""borrowed"" from the house's human inhabitants. However, life changes for the Clocks when a human boy discovers Arrietty.",2010-07-16,4.5854,7.7,2962 +879,587272,Father There Is Only One,"Javier is what we have dubbed as a ""husband-in-law."" That is that without taking care of the care of the house and children at all, he knows exactly what needs to be done, and that he continuously collects a sum of sentences from the type: ""It is that you do not organize"", or ""do not get nervous"", you already consider that overflowing woman drowns in a glass of water. Javier will have to face the reality of dealing with five children (between four and twelve years old) when his wife decides to go on a trip and leave him alone with them. The chaotic situation that takes place at home will progressively evolve ecologically to the most absolute disaster, but at the same time it will give parents and children the opportunity to meet and enjoy themselves for the first time.",2019-08-02,2.3907,7.66,746 +880,575452,The Traitor,"Palermo, Sicily, 1980. Mafia member Tommaso Buscetta decides to move to Brazil with his family fleeing the constant war between the different clans of the criminal organization. But when, after living several misfortunes, he is forced to return to Italy, he makes a bold decision that will change his life and the destiny of Cosa Nostra forever.",2019-05-23,1.3747,7.7,1371 +881,508439,Onward,"In a suburban fantasy world, two teenage elf brothers embark on an extraordinary quest to discover if there is still a little magic left out there.",2020-02-29,5.3621,7.7,6337 +882,49992,Lucky and Zorba,"A seagull is caught by the black tide of a sinking petrol ship. She manages to fly inland and falls down in a garden by a cat. Moribund, she asks the cat to fulfill three promises: that when she lays her egg he must not eat it; that he must take care of it until it hatches; that he would teach the newborn how to fly.",1998-12-22,0.9036,7.66,620 +883,14580,The Big Heat,"After the suspicious suicide of a fellow cop, tough homicide detective Dave Bannion takes the law into his own hands when he sets out to smash a vicious crime syndicate.",1953-10-14,2.001,7.7,516 +884,8358,Cast Away,"Chuck Noland, a top international manager for FedEx, and Kelly, a Ph.D. student, are in love and heading towards marriage. Then Chuck's plane to Malaysia crashes at sea during a terrible storm. He's the only survivor, and finds himself marooned on a desolate island. With no way to escape, Chuck must find ways to survive in his new home.",2000-12-22,8.2006,7.66,11762 +885,1075,"Black Cat, White Cat","Matko is a small time hustler, living by the Danube with his 17-year-old son Zare. After a failed business deal he owes money to the much more successful gangster Dadan. Dadan has a sister, Afrodita, that he desperately wants to see get married so they strike a deal: Zare is to marry her.",1998-06-01,1.9715,7.659,771 +886,1592,Primal Fear,"An arrogant, high-powered attorney takes on the case of a poor altar boy found running away from the scene of the grisly murder of the bishop who has taken him in. The case gets a lot more complex when the accused reveals that there may or may not have been a third person in the room.",1996-03-06,5.8255,7.658,3590 +887,144288,Berserk: The Golden Age Arc III - The Advent,"One year has passed since Guts left the Band of the Hawk and Griffith was imprisoned by the Kingdom of Midland for treason. In the dead of night, at a camping site where they hide, the Band of the Hawk is attacked by Bakiraka assassins led by Silat. When all seems lost, Guts returns from his journey. ""You destroyed everything."" Crying that Griffith is nothing without Guts, Casca and Guts are joined together body and soul. Griffith is imprisoned in the oldest building in Wyndham Catle, the Tower of Rebirth.",2013-02-01,2.1557,7.657,376 +888,1904,Memoirs of a Geisha,"In the years before World War II, a penniless Japanese child is torn from her family to work as a maid in a geisha house.",2005-12-06,3.9092,7.657,3183 +889,891,All the President's Men,"During the 1972 elections, two reporters' investigation sheds light on the controversial Watergate scandal that compels President Nixon to resign from his post.",1976-04-09,2.8663,7.657,1914 +890,414906,The Batman,"In his second year of fighting crime, Batman uncovers corruption in Gotham City that connects to his own family while facing a serial killer known as the Riddler.",2022-03-01,21.0124,7.657,11115 +891,15794,White Heat,"A psychopathic criminal with a mother complex makes a daring break from prison and then leads his old gang in a chemical plant payroll heist. After the heist, events take a crazy turn.",1949-09-02,1.4286,7.656,504 +892,8416,The Conformist,"A weak-willed Italian man becomes a fascist flunky who goes abroad to arrange the assassination of his old teacher, now a political dissident.",1970-07-01,1.4253,7.656,714 +893,247,The Killing,"Career criminal Johnny Clay recruits a sharpshooter, a crooked police officer, a bartender and a betting teller named George, among others, for one last job before he goes straight and gets married. But when George tells his restless wife about the scheme to steal millions from the racetrack where he works, she hatches a plot of her own.",1956-06-06,2.6429,7.7,1608 +894,100402,Captain America: The Winter Soldier,"After the cataclysmic events in New York with The Avengers, Steve Rogers, aka Captain America is living quietly in Washington, D.C. and trying to adjust to the modern world. But when a S.H.I.E.L.D. colleague comes under attack, Steve becomes embroiled in a web of intrigue that threatens to put the world at risk. Joining forces with the Black Widow, Captain America struggles to expose the ever-widening conspiracy while fighting off professional assassins sent to silence him at every turn. When the full scope of the villainous plot is revealed, Captain America and the Black Widow enlist the help of a new ally, the Falcon. However, they soon find themselves up against an unexpected and formidable enemy—the Winter Soldier.",2014-03-20,7.1574,7.7,19308 +895,261,Cat on a Hot Tin Roof,"An alcoholic ex-football player drinks his days away, having failed to come to terms with his sexuality and his real feelings for his football buddy who died after an ambiguous accident. His wife is crucified by her desperation to make him desire her: but he resists the affections of his wife. His reunion with his father—who is dying of cancer—jogs a host of memories and revelations for both father and son.",1958-08-29,2.4624,7.7,785 +896,728118,"Quo Vadis, Aida?","Bosnia, July 1995. Aida is a translator for the UN in the small town of Srebrenica. When the Serbian army takes over the town, her family is among the thousands of citizens looking for shelter in the UN camp. As an insider to the negotiations Aida has access to crucial information that she needs to interpret. What is at the horizon for her family and people – rescue or death? Which move should she take?",2021-02-26,0.8502,7.653,432 +897,50531,Ask Me If I'm Happy,"Aspiring thespians Aldo, Giovanni and Giacomo work dead-end jobs while nurturing the dream of staging their production of Cyrano de Bergerac, but love for the same lady will tear their friendship apart. Three years later, Giovanni and Giacomo reunite after learning that Aldo is dying.",2000-12-15,0.5548,7.653,1681 +898,1726,Iron Man,"After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.",2008-04-30,18.036,7.652,27185 +899,812,Aladdin,"In the boorish city of Agrabah, kind-hearted street urchin Aladdin and Princess Jasmine fall in love, although she can only marry a prince. He and power-hungry Grand Vizier Jafar vie for a magic lamp that can fulfill their wishes.",1992-11-25,8.6283,7.653,11561 +900,108,Three Colors: Blue,"The wife of a famous composer survives a car accident that kills her husband and daughter. Now alone, she shakes off her old identity and explores her newfound freedom but finds that she is unbreakably bound to other humans, including her husband’s mistress, whose existence she never suspected.",1993-09-08,3.4917,7.652,1764 +901,724495,The Woman King,"The story of the Agojie, the all-female unit of warriors who protected the African Kingdom of Dahomey in the 1800s with skills and a fierceness unlike anything the world has ever seen, and General Nanisca as she trains the next generation of recruits and readies them for battle against an enemy determined to destroy their way of life.",2022-09-16,4.6053,7.65,2195 +902,1678,Godzilla,"Japan is thrown into a panic after several ships are sunk near Odo Island. An expedition to the island led by Dr. Kyohei Yamane soon discover something far more devastating than imagined in the form of a 50 meter tall monster whom the natives call Gojira. Now the monster begins a rampage that threatens to destroy not only Japan, but the rest of the world as well.",1954-11-03,3.2754,7.651,1037 +903,567410,System Crasher,"Wherever 9-year-old Benni ends up, she is expelled. She has become what child protection services call a “system crasher.” But she is not looking to change her ways, and has one goal: go back home to her mother. When anger management trainer Micha is hired to help, suddenly there is hope.",2019-09-19,0.9152,7.65,350 +904,371645,Hunt for the Wilderpeople,"Ricky is a defiant young city kid who finds himself on the run with his cantankerous foster uncle in the wild New Zealand bush. A national manhunt ensues, and the two are forced to put aside their differences and work together to survive.",2016-03-31,2.5595,7.65,2162 +905,238628,Tangerines,"War in Abkhazia, 1992. An Estonian man Ivo has stayed behind to harvest his crops of tangerines. In a bloody conflict at his door, a wounded man is left behind, and Ivo is forced to take him in.",2013-10-17,1.1478,7.65,557 +906,11898,Kind Hearts and Coronets,"When his mother eloped with an Italian opera singer, Louis Mazzini was cut off from her aristocratic family. After the family refuses to let her be buried in the family mausoleum, Louis avenges his mother's death by attempting to murder every family member who stands between himself and the family fortune. But when he finds himself torn between his longtime love and the widow of one of his victims, his plans go awry.",1949-06-21,1.7351,7.65,571 +907,10633,In the Heat of the Night,"African-American Philadelphia police detective Virgil Tibbs is arrested on suspicion of murder by Bill Gillespie, the racist police chief of tiny Sparta, Mississippi. After Tibbs proves not only his own innocence but that of another man, he joins forces with Gillespie to track down the real killer. Their investigation takes them through every social level of the town, with Tibbs making enemies as well as unlikely friends as he hunts for the truth.",1967-08-02,3.1635,7.649,1157 +908,508933,Ricky Gervais: Humanity,"In his first special in seven years, Ricky Gervais slings his trademark snark at celebrity, mortality and a society that takes everything personally.",2018-03-13,0.5803,7.6,478 +909,20123,Time of the Gypsies,"In this luminous tale set in the former Yugoslavia, Perhan, an engaging young Romany with telekinetic powers, is seduced by the quick-cash world of petty crime that threatens to destroy him and those he loves.",1988-12-21,1.2649,7.6,405 +910,16306,Fantastic Planet,"On the planet Ygam, the Draags, extremely technologically and spiritually advanced blue humanoids, consider the tiny Oms, human beings descendants of Terra's inhabitants, as ignorant animals. Those who live in slavery are treated as simple pets and used to entertain Draag children; those who live hidden in the hostile wilderness of the planet are periodically hunted and ruthlessly slaughtered as if they were vermin.",1973-12-01,2.0734,7.6,1016 +911,12548,I Vitelloni,"Five young men dream of success as they drift lazily through life in a small Italian village. Fausto, the group's leader, is a womanizer; Riccardo craves fame; Alberto is a hopeless dreamer; Moraldo fantasizes about life in the city; and Leopoldo is an aspiring playwright. As Fausto chases a string of women, to the horror of his pregnant wife, the other four blunder their way from one uneventful experience to the next.",1953-09-17,1.9034,7.6,702 +912,871,Planet of the Apes,"Astronaut Taylor crash lands on a distant planet ruled by apes who use a primitive race of humans for experimentation and sport. Soon Taylor finds himself among the hunted, his life in the hands of a benevolent chimpanzee scientist.",1968-02-07,7.4727,7.647,3721 +913,514439,Breakthrough,"Tragedy strikes when a woman named Joyce's son falls through the ice on a frozen lake and is trapped underwater for over 15 minutes. After being rushed to the hospital, the 14-year-old boy continues to fight for his life as Joyce, her husband and their pastor stay by his bedside and pray for a miracle.",2019-04-10,3.9611,7.648,1119 +914,110160,Laurence Anyways,The story of an impossible love between a woman named Fred and a transgender woman named Laurence who reveals her inner desire to become her true self.,2012-05-18,1.5776,7.645,872 +915,14813,Mickey's Christmas Carol,"Ebenezer Scrooge is far too greedy to understand that Christmas is a time for kindness and generosity. But with the guidance of some new found friends, Scrooge learns to embrace the spirit of the season. A retelling of the classic Dickens tale with Disney's classic characters.",1983-10-19,1.5777,7.643,944 +916,10637,Remember the Titans,"After leading his football team to 15 winning seasons, coach Bill Yoast is demoted and replaced by Herman Boone – tough, opinionated and as different from the beloved Yoast as he could be. The two men learn to overcome their differences and turn a group of hostile young men into champions.",2000-09-29,4.7857,7.643,2769 +917,29154,Stand and Deliver,"Jaime Escalante is a mathematics teacher in a school in a hispanic neighbourhood. Convinced that his students have potential, he adopts unconventional teaching methods to try and turn gang members and no-hopers into some of the country's top algebra and calculus students.",1988-03-11,2.3181,7.642,405 +918,4347,Atonement,"As a 13-year-old, fledgling writer Briony Tallis irrevocably changes the course of several lives when she accuses her older sister's lover of a crime he did not commit.",2007-02-27,5.1444,7.642,4439 +919,4497,Viridiana,"Viridiana is preparing to start her life as a nun when she is sent, somewhat unwillingly, to visit her aging uncle, Don Jaime. He supports her; but the two have met only once. Jaime thinks Viridiana resembles his dead wife. Viridiana has secretly despised this man all her life and finds her worst fears proven when Jaime grows determined to seduce his pure niece. Viridiana becomes undone as her uncle upends the plans she had made to join the convent.",1962-04-01,1.6484,7.6,527 +920,164,Breakfast at Tiffany's,"Holly Golightly is an eccentric New York City playgirl determined to marry a Brazilian millionaire. But when young writer Paul Varjak moves into her apartment building, her past threatens to get in their way.",1961-10-06,5.4832,7.641,4299 +921,627725,The Banker,"In the 1960s, two entrepreneurs hatch an ingenious business plan to fight for housing integration—and equal access to the American Dream.",2020-03-06,2.8652,7.64,1015 +922,27040,Meshes of the Afternoon,"A woman returning home falls asleep and has vivid dreams that may or may not be happening in reality. Through repetitive images and complete mismatching of the objective view of time and space, her dark inner desires play out on-screen.",1943-01-01,0.5819,7.64,406 +923,212,Arsenic and Old Lace,"Mortimer Brewster, a newspaper drama critic, playwright, and author known for his diatribes against marriage, suddenly falls in love and gets married; but when he makes a quick trip home to tell his two maiden aunts, he finds out his aunts' hobby - killing lonely old men and burying them in the cellar!",1944-09-01,1.7386,7.64,984 +924,624932,Dave Chappelle: Sticks & Stones,"Dave Chappelle takes on gun culture, the opioid crisis and the tidal wave of celebrity scandals in this defiant stand-up special.",2019-08-26,1.1875,7.638,338 +925,1278263,The Seed of the Sacred Fig,"Investigating judge Iman grapples with paranoia amid political unrest in Tehran. When his gun vanishes, he suspects his wife and daughters, imposing draconian measures that strain family ties as societal rules crumble.",2024-09-18,2.8986,7.641,343 +926,381289,A Dog's Purpose,A dog goes on quest to discover his purpose in life over the course of several lifetimes with multiple owners.,2017-01-19,5.7054,7.636,3415 +927,99,All About My Mother,"Following the tragic death of her teenage son, Manuela travels from Madrid to Barcelona in an attempt to contact the long-estranged father the boy never knew. She reunites with an old friend, an outspoken transgender sex worker, and befriends a troubled actress and a pregnant, HIV-positive nun.",1999-04-16,2.5757,7.637,1958 +928,342470,All the Bright Places,Two teens facing personal struggles form a powerful bond as they embark on a cathartic journey chronicling the wonders of Indiana.,2020-02-28,5.5433,7.635,2929 +929,38251,Mediterraneo,"Greek Sea, World War II. An Italian ship leaves a handful of soldiers in a little island; their mission is to spot enemy ships and to hold the island in case of attack. The village of the island seems abandoned and there isn't a single enemy in sight, so the soldiers begin to relax a little. Things change when their ship is hit and destroyed by the enemy, and the soldiers find themselves abandoned there.",1991-02-02,1.4149,7.635,1022 +930,37247,The Graduate,A disillusioned college graduate finds himself torn between his older lover and her daughter.,1967-12-21,4.9457,7.635,3483 +931,15999,Vampire Hunter D: Bloodlust,"D, a legendary dhampir competes with a motley family of bounty hunters to track down Charlotte Elbourne, a young woman who has seemingly been abducted by vampire nobleman Meier Link.",2000-08-25,2.6859,7.635,716 +932,13929,Geri's Game,"An aging codger named Geri plays a daylong game of chess in the park against himself. Somehow, he begins losing to his livelier opponent. But just when the game's nearly over, Geri manages to turn the tables.",1997-11-24,1.0946,7.635,1165 +933,580175,Another Round,Four high school teachers launch a drinking experiment: upholding a constant low level of intoxication.,2020-09-24,2.8924,7.634,3501 +934,24160,My Friends Act II,"The four old friends meet on the grave of the fifth of them, Perozzi, who died at the end of the first episode. Time has passed but they are still up for adventures and cruel jokes, and while they recall the one they created together with the late friend, new ones are on their way, starting right there at the cemetery.",1982-12-22,0.7075,7.6,349 +935,471707,Corpus Christi,"A pious 20-year-old juvenile delinquent is sent to work at a sawmill in a small town; on arrival, he dresses up as a priest and accidentally takes over the local parish. The arrival of this young, charismatic preacher is an opportunity for the local community to begin the healing process after a tragedy that happened a year prior.",2019-09-10,1.8616,7.632,564 +936,4995,Boogie Nights,"Set in 1977, back when sex was safe, pleasure was a business and business was booming, idealistic porn producer Jack Horner aspires to elevate his craft to an art form. Horner discovers Eddie Adams, a hot young talent working as a busboy in a nightclub, and welcomes him into the extended family of movie-makers, misfits and hangers-on that are always around. Adams' rise from nobody to a celebrity adult entertainer is meteoric, and soon the whole world seems to know his porn alter ego, ""Dirk Diggler"". Now, when disco and drugs are in vogue, fashion is in flux and the party never seems to stop, Adams' dreams of turning sex into stardom are about to collide with cold, hard reality.",1997-10-10,6.2648,7.632,3291 +937,744114,My Policeman,"In the late 1990s, the arrival of elderly invalid Patrick into Marion and Tom’s home triggers the exploration of seismic events from 40 years previous: the passionate relationship between Tom and Patrick at a time when homosexuality was illegal.",2022-10-20,1.8216,7.631,726 +938,426426,Roma,"In 1970s Mexico City, two domestic workers help a mother of four while her husband is away for an extended period of time.",2018-11-21,6.998,7.631,3983 +939,313297,Kubo and the Two Strings,"Kubo mesmerizes the people in his village with his magical gift for spinning wild tales with origami. When he accidentally summons an evil spirit seeking vengeance, Kubo is forced to go on a quest to solve the mystery of his fallen samurai father and his mystical weaponry, as well as discover his own magical powers.",2016-08-18,3.4841,7.631,3657 +940,137113,Edge of Tomorrow,"Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.",2014-05-27,17.5898,7.6,14334 +941,650,Boyz n the Hood,"In the middle of the Los Angeles ghetto, drugs, robberies and shootings dominate everyday life. During these times, Furious tries to raise his son Tre to be a decent person. Tre's friends, on the other hand, have little regard for the law and drag the entire neighborhood into a street war...",1991-07-12,4.0945,7.6,2099 +942,498249,Bad Seeds,"Wael, a former street child, makes a living from small scams with his adoptive mother and partner-in-crime Monique. When this unconventional duo swindles the wrong guy, Victor, an old acquaintance of Monique now in charge of a support organization for troubled teens, they have no choice but to become his interim secretary and educator in order to redeem themselves.",2018-11-21,0.9741,7.6,608 +943,228205,The Longest Ride,The lives of a young couple intertwine with a much older man as he reflects back on a lost love while he's trapped in an automobile crash.,2015-04-09,4.7454,7.6,3227 +944,28580,The Lost Weekend,"Don Birnam, a long-time alcoholic, has been sober for ten days and appears to be over the worst... but his craving has just become more insidious. Evading a country weekend planned by his brother and girlfriend, he begins a four-day bender that just might be his last - one way or another.",1945-11-29,1.9673,7.6,627 +945,19101,A Little Princess,"When her father enlists to fight for the British in WWI, young Sara Crewe goes to New York to attend the same boarding school her late mother attended. She soon clashes with the severe headmistress, Miss Minchin, who attempts to stifle Sara's creativity and sense of self-worth.",1995-05-10,2.277,7.6,998 +946,17835,Threads,"Documentary style account of a nuclear holocaust and its effect on the working class city of Sheffield, England; and the eventual long run effects of nuclear war on civilization.",1984-09-23,2.1539,7.6,350 +947,981,The Philadelphia Story,"When a rich woman's ex-husband and a tabloid-type reporter turn up just before her planned remarriage, she begins to learn the truth about herself.",1940-12-05,2.3346,7.6,902 +948,583083,The Kissing Booth 2,"With college decisions looming, Elle juggles her long-distance romance with Noah, changing relationship with bestie Lee and feelings for a new classmate.",2020-07-24,5.1802,7.628,5053 +949,534780,Andhadhun,A series of mysterious events changes the life of a blind pianist who now must report a crime that was actually never witnessed by him.,2018-10-05,1.4133,7.6,555 +950,9343,Fitzcarraldo,"Fitzcarraldo is a dreamer who plans to build an opera house in Iquitos, in the Peruvian Amazon, so, in order to finance his project, he embarks on an epic adventure to collect rubber, a very profitable product, in a remote and unexplored region of the rainforest.",1982-03-02,2.2582,7.628,812 +951,1939,Laura,A police detective falls in love with the woman whose murder he's investigating.,1944-11-26,2.1497,7.6,846 +952,55,Amores Perros,"A fatalistic car crash in Mexico city sets off a chain of events in the lives of three people: a supermodel, a young man wanting to run off with his sister-in-law, and a homeless man. Their lives are catapulted into unforeseen situations instigated by the seemingly inconsequential destiny of a dog.",2000-06-16,4.4052,7.628,2727 +953,13363,The Man from Earth,"A departing professor gathers his closest colleagues for an intimate farewell, but the night takes an unexpected turn when he shares a stunning secret about his past. As the conversation unfolds, skepticism and curiosity collide, challenging everything they thought they knew about history, science, and belief.",2007-06-10,5.6541,7.627,2676 +954,995,Stagecoach,"A group of people traveling on a stagecoach find their journey complicated by the threat of Geronimo, and learn something about each other in the process.",1939-03-02,3.5522,7.627,1164 +955,513434,One Cut of the Dead,"Real zombies arrive and terrorize the crew of a zombie film being shot in an abandoned warehouse, said to be the site of military experiments on humans.",2017-11-04,2.8211,7.626,898 +956,74308,Detachment,"A chronicle of three weeks in the lives of several high school teachers, administrators and students through the eyes of substitute teacher, Henry Barthes. Henry roams from school to school, imparting modes of knowledge, but never staying long enough to form any semblance of sentient attachment.",2011-04-24,4.0067,7.6,1807 +957,4495,The Spirit of the Beehive,"In 1940, in the immediate aftermath of the Spanish Civil War, a young girl living on the Castilian plain is haunted after attending a screening of James Whale's 1931 film Frankenstein and hearing from her sister that the monster is not dead, instead existing as a spirit inhabiting a nearby barn.",1973-10-08,1.2082,7.626,368 +958,76341,Mad Max: Fury Road,"An apocalyptic story set in the furthest reaches of our planet, in a stark desert landscape where humanity is broken, and most everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order.",2015-05-13,13.5443,7.626,23263 +959,13386,I'm Starting from Three,"Gaetano, a young Neapolitan, decides to leave home, work and friends, to look for other moments of life and meet other people.",1981-03-05,0.4023,7.625,684 +960,1027014,Entergalactic,Ambitious artist Jabari attempts to balance success and love when he moves into his dream Manhattan apartment and falls for his next-door neighbor.,2022-09-28,1.4726,7.624,421 +961,207703,Kingsman: The Secret Service,The story of a super-secret spy organization that recruits an unrefined but promising street kid into the agency's ultra-competitive training program just as a global threat emerges from a twisted tech genius.,2015-01-24,9.5107,7.624,17212 +962,15251,Eddie Murphy: Delirious,"Taped live and in concert at Constitution Hall in Washington, D.C. in August, 1983, Eddie Murphy: Delirious captures Eddie Murphy's wild and outrageous stand-up comedy act, which he performed in New York and eighteen other cities across the U.S. to standing-room-only audiences. Eddie's comedy was groundbreaking, completely new, razor sharp and definitely funny.Eddie Murphy pontificates in his own vulgarly hilarious fashion on everything from bizarre sexual fantasies to reliving the family barbecue, and is peppered with Eddie's one-of-a-kind wit. Laugh along as Eddie reminiscences of hot childhood days and the ice cream man intermixed with classic vocal parodies of top American entertainers.Experience Eddie Murphy at his best, live and red hot! Delirious! Uncensored and Uncut!",1983-10-15,0.6849,7.6,330 +963,11482,The Tenant,A quiet and inconspicuous man rents an apartment in Paris where he finds himself drawn into a rabbit hole of dangerous paranoia.,1976-05-26,1.9889,7.624,1169 +964,496450,"Miraculous: Ladybug & Cat Noir, The Movie","After a guardian of magical jewels turns an awkward girl and a popular boy into superheroes, they can never reveal their identities — even to each other.",2023-07-05,7.0703,7.623,918 +965,293660,Deadpool,"The origin story of former Special Forces operative turned mercenary Wade Wilson, who, after being subjected to a rogue experiment that leaves him with accelerated healing powers, adopts the alter ego Deadpool. Armed with his new abilities and a dark, twisted sense of humor, Deadpool hunts down the man who nearly destroyed his life.",2016-02-09,16.363,7.6,31798 +966,42987,The Servant,Indolent aristocrat Tony employs competent Barrett as his manservant and all seems to be going well until Barrett persuades Tony to hire his sister as a live-in maid.,1963-11-14,1.4694,7.6,352 +967,14624,The Ultimate Gift,"When his wealthy grandfather finally dies, Jason Stevens fully expects to benefit when it comes to the reading of the will. But instead of a sizable inheritance, Jason receives a test, a series of tasks he must complete before he can get any money.",2007-03-09,3.5746,7.623,468 +968,3309,Mildred Pierce,A hard-working mother inches towards disaster as she divorces her husband and starts a successful restaurant business to support her spoiled daughter.,1945-10-20,1.6365,7.623,414 +969,614917,King Richard,"The story of how Richard Williams served as a coach to his daughters Venus and Serena, who will soon become two of the most legendary tennis players in history.",2021-11-18,3.877,7.622,2646 +970,26371,Maurice,"After his lover rejects him, Maurice attempts to come to terms with his sexuality within the restrictiveness of Edwardian society.",1987-09-18,1.8485,7.622,571 +971,11657,Le Cercle Rouge,"When French criminal Corey gets released from prison, he resolves to never return. He is quickly pulled back into the underworld, however, after a chance encounter with escaped murderer Vogel. Along with former policeman and current alcoholic Jansen, they plot an intricate jewel heist. All the while, quirky Police Commissioner Mattei, who was the one to lose custody of Vogel, is determined to find him.",1970-10-19,2.1034,7.6,675 +972,966220,Sniper: The White Raven,"Mykola is an eccentric pacifist who wants to be useful to humanity. When the war begins in Donbas, Mykola’s naive world is collapsing as the militants kill his pregnant wife and burn his home to the ground. Recovered, he makes a cardinal decision and gets enlisted in a sniper company. Having met his wife’s killers, he emotionally breaks down and arranges “sniper terror” for the enemy.",2022-05-03,7.2648,7.6,826 +973,10451,Eat Drink Man Woman,"Retired and widowed Chinese master chef Chu lives in modern day Taipei, with his three attractive daughters, all of whom are unattached. Soon, each daughter encounters a new man in their lives. When these new relationships blossom, stereotypes are broken and the living situation within the family changes.",1994-08-03,2.0389,7.621,367 +974,364111,The Anthem of the Heart,"A young girl had her voice magically taken away so that she would never hurt people with it, but her outlook changes when she encounters music and friendship. Will Naruse be able to convey the anthem of her heart?",2015-09-19,1.7685,7.6,410 +975,678,Out of the Past,The peaceful life of a gas station owner is disrupted when a man from his past arrives in town and forces him to return to the dark world he had tried to escape.,1947-11-25,2.1707,7.6,616 +976,419430,Get Out,"Chris and his girlfriend Rose go upstate to visit her parents for the weekend. At first, Chris reads the family's overly accommodating behavior as nervous attempts to deal with their daughter's interracial relationship, but as the weekend progresses, a series of increasingly disturbing discoveries lead him to a truth that he never could have imagined.",2017-02-24,9.9592,7.6,18020 +977,81401,The Turin Horse,A monumental windstorm and an abused horse's refusal to work or eat signal the beginning of the end for a poor farmer and his daughter.,2011-03-31,1.9679,7.619,382 +978,25188,The Last Picture Show,"High school seniors and best friends, Sonny and Duane, live in a dying Texas town. The handsome Duane is dating a local beauty, while Sonny is having an affair with the coach's wife. As graduation nears and both boys contemplate their futures, Duane eyes the army and Sonny takes over a local business. Each struggles to figure out if he can escape this dead-end town and build a better life somewhere else.",1971-10-03,2.5134,7.6,722 +979,12093,Lilya 4-ever,"In a struggling post-Soviet community, Lilya a teenage girl is abandoned when her mother moves to the United States with her boyfriend. Facing neglect and poverty, she meets Andrei, who offers her a job in Sweden, giving her hope for a better life — and a journey that will change everything.",2002-08-23,2.7896,7.6,601 +980,12093,Lilya 4-ever,"In a struggling post-Soviet community, Lilya a teenage girl is abandoned when her mother moves to the United States with her boyfriend. Facing neglect and poverty, she meets Andrei, who offers her a job in Sweden, giving her hope for a better life — and a journey that will change everything.",2002-08-23,2.7896,7.6,601 +981,801335,Girl in the Basement,"Sara is a teen girl who is looking forward to her 18th birthday to move away from her controlling father Don. But before she could even blow out the candles, Don imprisons her in the basement of their home.",2021-02-27,14.4606,7.618,771 +982,537116,"tick, tick... BOOM!","On the brink of turning 30, a promising theater composer navigates love, friendship and the pressure to create something great before time runs out.",2021-11-11,2.2994,7.618,2169 +983,8832,Il Divo,"Italy, early '90s. Calm, clever and inscrutable, politician Giulio Andreotti has been synonymous with power for decades. He has survived everything: electoral battles, terrorist massacres, loss of friends, slanderous accusations; but now certain repentant mobsters implicate him in the crimes of Cosa Nostra.",2008-05-28,0.9324,7.618,1142 +984,343,Harold and Maude,The young Harold lives in his own world of suicide-attempts and funeral visits to avoid the misery of his current family and home environment. Harold meets an 80-year-old woman named Maude who also lives in her own world yet one in which she is having the time of her life. When the two opposites meet they realize that their differences don’t matter and they become best friends and love each other.,1971-12-20,2.5317,7.618,1132 +985,911430,F1,Racing legend Sonny Hayes is coaxed out of retirement to lead a struggling Formula 1 team—and mentor a young hotshot driver—while chasing one more chance at glory.,2025-06-25,84.6959,7.613,999 +986,329865,Arrival,"Taking place after alien crafts land around the world, an expert linguist is recruited by the military to determine whether they come in peace or are a threat.",2016-11-10,8.1735,7.616,18436 +987,1933,The Others,"Grace is a religious woman who lives in an old house kept dark because her two children, Anne and Nicholas, have a rare sensitivity to light. When the family begins to suspect the house is haunted, Grace fights to protect her children at any cost in the face of strange events and disturbing visions.",2001-08-02,5.4458,7.616,6782 +988,1093,Elevator to the Gallows,"A self-assured businessman murders his employer, the husband of his mistress, which unintentionally provokes an ill-fated chain of events.",1958-01-29,2.0212,7.616,648 +989,137,Groundhog Day,"A narcissistic TV weatherman, along with his attractive-but-distant producer, and his mawkish cameraman, is sent to report on Groundhog Day in the small town of Punxsutawney, where he finds himself repeating the same day over and over.",1993-02-11,5.4438,7.616,8372 +990,803700,The Eight Mountains,"An epic journey of friendship and self-discovery set in the breathtaking Italian Alps, The Eight Mountains follows over four decades the profound, complex relationship between Pietro and Bruno.",2022-12-21,1.0965,7.615,763 +991,502356,The Super Mario Bros. Movie,"While working underground to fix a water main, Brooklyn plumbers—and brothers—Mario and Luigi are transported down a mysterious pipe and wander into a magical new world. But when the brothers are separated, Mario embarks on an epic quest to find Luigi.",2023-04-05,18.101,7.616,9876 +992,320007,Victoria,A young Spanish woman who has newly moved to Berlin finds her flirtation with a local guy turn potentially deadly as their night out with his friends reveals a dangerous secret.,2015-06-11,1.6257,7.615,1260 +993,10331,Night of the Living Dead,"A group of strangers trapped in a farmhouse find themselves fending off a horde of recently dead, flesh-eating ghouls.",1968-10-04,3.7941,7.6,2557 +994,10322,Being There,"A simple-minded gardener named Chance has spent all his life in the Washington D.C. house of an old man. When the man dies, Chance is put out on the street with no knowledge of the world except what he has learned from television.",1979-12-19,2.1949,7.613,1043 +995,283995,Guardians of the Galaxy Vol. 2,The Guardians must fight to keep their newfound family together as they unravel the mysteries of Peter Quill's true parentage.,2017-04-19,15.8998,7.612,22159 +996,76600,Avatar: The Way of Water,"Set more than a decade after the events of the first film, learn the story of the Sully family (Jake, Neytiri, and their kids), the trouble that follows them, the lengths they go to keep each other safe, the battles they fight to stay alive, and the tragedies they endure.",2022-12-14,26.4433,7.613,12749 +997,9693,Children of Men,"In 2027, in a chaotic world in which humans can no longer procreate, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea, where her child's birth may help scientists save the future of humankind.",2006-09-22,6.1755,7.6,7387 +998,643,Battleship Potemkin,"A dramatized account of a great Russian naval mutiny and a resultant public demonstration, showing support, which brought on a police massacre. The film had an incredible impact on the development of cinema and is a masterful example of montage editing.",1925-12-24,4.3996,7.612,1218 +999,530079,Ride Your Wave,"Hinako is a surf-loving college student who has just moved to a small seaside town. When a sudden fire breaks out at her apartment building, she is rescued by Minato, a handsome firefighter, and the two soon fall in love.",2019-06-21,2.3921,7.611,346 +1000,38757,Tangled,"Feisty teenager Rapunzel, who has long and magical hair, wants to go and see sky lanterns on her eighteenth birthday, but she's bound to a tower by her overprotective mother. She strikes a deal with Flynn Rider, a charming wanted thief, and the duo set off on an action-packed escapade.",2010-11-24,14.6975,7.611,11857 +1001,4235,The Sicilian Clan,An ambitious mobster plans an elaborate diamond heist while seducing the daughter-in-law of a ruthless mob patriarch as a determined police commissioner closes in on all of them.,1969-12-05,1.545,7.6,338 +1002,976573,Elemental,"In a city where fire, water, land and air residents live together, a fiery young woman and a go-with-the-flow guy will discover something elemental: how much they have in common.",2023-06-14,14.2116,7.609,4900 +1003,841755,Mortal Kombat Legends: Battle of the Realms,"The Earthrealm heroes must journey to the Outworld and fight for the survival of their homeland, invaded by the forces of evil warlord Shao Kahn, in the tournament to end all tournaments: the final Mortal Kombat.",2021-08-30,4.1267,7.609,459 +1004,417261,Forever My Girl,"After being gone for a decade, a country star returns home to the love he left behind.",2018-01-26,3.3065,7.609,1284 +1005,15137,Evangelion: 1.0 You Are (Not) Alone,"After the Second Impact, Tokyo-3 is being attacked by giant monsters called Angels that seek to eradicate humankind. The child Shinji’s objective is to fight the Angels by piloting one of the mysterious Evangelion mecha units. A remake of the first six episodes of GAINAX’s famous 1996 anime series. The film was retitled “Evangelion: 1.01” for its DVD release and “Evangelion: 1.11” for a release with additional scenes.",2007-09-01,3.0428,7.609,1009 +1006,9444,Anastasia,"Ten years after she was separated from her family, an eighteen-year-old orphan with vague memories of the past sets out to Paris in hopes of reuniting with her grandmother. She is accompanied by two con men, who intend to pass her off as the Grand Duchess Anastasia to the Dowager Empress for a reward.",1997-11-20,5.3734,7.609,5414 +1007,702,A Streetcar Named Desire,"A disturbed, aging Southern belle moves in with her sister for solace — but being face-to-face with her brutish brother-in-law accelerates her downward spiral.",1951-09-19,3.4319,7.609,1406 +1008,642,Butch Cassidy and the Sundance Kid,"As the west rapidly becomes civilized, a pair of outlaws in 1890s Wyoming find themselves pursued by a posse and decide to flee to South America in hopes of evading the law.",1969-09-23,3.5653,7.61,2300 +1009,348678,A Man Called Ove,"Despite being deposed as president of his condominium association, grumpy 59-year-old Ove continues to watch over his neighbourhood with an iron fist. When pregnant Parvaneh and her family move into the terraced house opposite Ove and she accidentally back into Ove’s mailbox, it sets off a series of unexpected changes in his life.",2015-12-25,3.0025,7.6,1221 +1010,309809,The Little Prince,"Based on the best-seller book 'The Little Prince', the movie tells the story of a little girl that lives with resignation in a world where efficiency and work are the only dogmas. Everything will change when accidentally she discovers her neighbor that will tell her about the story of the Little Prince that he once met.",2015-07-29,4.458,7.608,2857 +1011,1712,Giant,"Wealthy rancher Bick Benedict and dirt-poor cowboy Jett Rink both woo Leslie Lynnton, a beautiful young woman from Maryland who is new to Texas. She marries Benedict, but she is shocked by the racial bigotry of the White Texans against the local people of Mexican descent. Rink discovers oil on a small plot of land, and while he uses his vast, new wealth to buy all the land surrounding the Benedict ranch, the Benedict's disagreement over prejudice fuels conflict that runs across generations.",1956-11-08,2.957,7.608,718 +1012,976,Sweet Smell of Success,"New York City newspaper writer J.J. Hunsecker holds considerable sway over public opinion with his Broadway column, but one thing that he can't control is his younger sister, Susan, who is in a relationship with aspiring jazz guitarist Steve Dallas. Hunsecker strongly disapproves of the romance and recruits publicist Sidney Falco to find a way to split the couple, no matter how ruthless the method.",1957-07-04,2.5622,7.608,534 +1013,793,Blue Velvet,"The discovery of a severed human ear found in a field leads a young man on an investigation related to a beautiful, mysterious nightclub singer and a group of psychopathic criminals who have kidnapped her child.",1986-09-19,5.2939,7.607,3550 +1014,25768,"Steamboat Bill, Jr.","The just-out-of-college, effete son of a no-nonsense steamboat captain comes to visit his father whom he's not seen since he was a child.",1928-05-09,1.4395,7.607,361 +1015,13002,Barbie in the 12 Dancing Princesses,"King Randolph sends for his cousin, Duchess Rowena, to help turn his daughters, Princess Genevieve and her eleven sisters, into royal material. But the Duchess strips the sisters of their fun, including their favorite pastime: dancing. When all hope may be lost, the sisters discover a secret passageway to a magical land where they can dance the night away.",2006-09-19,4.512,7.6,1212 +1016,910,The Big Sleep,"Private Investigator Philip Marlowe is hired by wealthy General Sternwood regarding a matter involving his youngest daughter Carmen. Before the complex case is over, Marlowe sees murder, blackmail, deception, and what might be love.",1946-08-23,2.2564,7.607,1089 +1017,1071585,M3GAN 2.0,"After the underlying tech for M3GAN is stolen and misused by a powerful defense contractor to create a military-grade weapon known as Amelia, M3GAN's creator Gemma realizes that the only option is to resurrect M3GAN and give her a few upgrades, making her faster, stronger, and more lethal.",2025-06-25,261.6583,7.604,667 +1018,180299,The Raid 2,"After fighting his way through an apartment building populated by an army of dangerous criminals and escaping with his life, SWAT team member Rama goes undercover, joining a powerful Indonesian crime syndicate to protect his family and uncover corrupt members of his own force.",2014-03-27,3.9498,7.606,2439 +1019,14784,The Fall,"In a hospital on the outskirts of 1920s Los Angeles, an injured stuntman begins to tell a fellow patient, a little girl with a broken arm, a fantastic story about 5 mythical heroes. Thanks to his fractured state of mind and her vivid imagination, the line between fiction and reality starts to blur as the tale advances.",2006-09-09,4.8094,7.606,1391 +1020,12501,The Big Country,"Retired wealthy sea captain Jim McKay arrives in the Old West, where he becomes embroiled in a feud between his future father-in-law, Major Terrill, and the rough and lawless Hannasseys over a valuable patch of land.",1958-09-30,2.8501,7.605,385 +1021,11321,Seven Pounds,An IRS agent with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers.,2008-12-18,4.6073,7.604,6948 +1022,768744,My Hero Academia: World Heroes' Mission,"A mysterious group called Humarize strongly believes in the Quirk Singularity Doomsday theory which states that when quirks get mixed further in with future generations, that power will bring forth the end of humanity. In order to save everyone, the Pro-Heroes around the world ask UA Academy heroes-in-training to assist them and form a world-class selected hero team. It’s up to the heroes to save the world and the future of heroes in what is the most dangerous crisis to take place yet in My Hero Academia.",2021-08-06,4.0951,7.603,584 +1023,637649,Wrath of Man,"A cold and mysterious new security guard for a Los Angeles cash truck company surprises his co-workers when he unleashes precision skills during a heist. The crew is left wondering who he is and where he came from. Soon, the marksman's ultimate motive becomes clear as he takes dramatic and irrevocable steps to settle a score.",2021-04-22,15.7735,7.603,5676 +1024,576,The Wild Bunch,"An aging group of outlaws look for one last big score as the ""traditional"" American West is disappearing around them.",1969-06-19,3.1092,7.603,1256 +1025,466282,To All the Boys I've Loved Before,Lara Jean's love life goes from imaginary to out of control when her secret letters to every boy she's ever fallen for are mysteriously mailed out.,2018-08-17,7.5968,7.6,8558 +1026,72213,Courageous,"Law enforcement officers Adam Mitchell, Nathan Hayes, and their partners stand up to the worst the streets have to offer with confidence and focus. Yet at the end of the day, they face a challenge that none of them are truly prepared to tackle: fatherhood. They know that God desires to turn the hearts of fathers to their children, but their children are beginning to drift further and further away from them. When tragedy hits home, these men are left wrestling with their hopes, their fears, their faith, and their fathering. Can a newfound urgency help these dads draw closer to God... and to their children?",2011-09-30,2.6144,7.602,379 +1027,39324,Dragon Ball Z: The History of Trunks,It has been thirteen years since the Androids began their killing rampage and Son Gohan is the only person fighting back. He takes Bulma's son Trunks as a student and even gives his own life to save Trunks's. Now Trunks must figure out a way to change this apocalyptic future,1993-02-24,3.168,7.602,567 +1028,863,Toy Story 2,"Andy heads off to Cowboy Camp, leaving his toys to their own devices. Things shift into high gear when an obsessive toy collector named Al McWhiggen, owner of Al's Toy Barn kidnaps Woody. Andy's toys mount a daring rescue mission, Buzz Lightyear meets his match and Woody has to decide where he and his heart truly belong.",1999-10-30,16.938,7.602,14288 +1029,820,JFK,Follows the investigation into the assassination of President John F. Kennedy led by New Orleans district attorney Jim Garrison.,1991-12-20,4.3722,7.601,2237 +1030,21191,Sin Nombre,"Sayra, a Honduran teen, hungers for a better life. Her chance for one comes when she is reunited with her long-estranged father, who intends to emigrate to Mexico and then enter the United States. Sayra's life collides with a pair of Mexican gangmembers who have boarded the same American-bound train.",2009-03-20,2.4333,7.601,708 +1031,1541,Thelma & Louise,"Taking a break from their dreary lives, close friends Thelma and Louise embark on a short weekend trip that ends in unforeseen incriminating circumstances. As fugitives, both women rediscover the strength of their bond and their newfound resilience.",1991-05-24,6.378,7.6,3631 +1032,819,Sleepers,Two gangsters seek revenge on the state jail worker who during their stay at a youth prison sexually abused them. A sensational court hearing takes place to charge him for the crimes.,1996-10-18,4.1874,7.602,3655 +1033,746,The Last Emperor,"A dramatic history of Pu Yi, the last of the Emperors of China, from his lofty birth and brief reign in the Forbidden City, the object of worship by half a billion people; through his abdication, his decline and dissolute lifestyle; his exploitation by the invading Japanese, and finally to his obscure existence as just another peasant worker in the People's Republic.",1987-10-04,3.6796,7.6,1772 +1034,63,Twelve Monkeys,"In the year 2035, convict James Cole reluctantly volunteers to be sent back in time to discover the origin of a deadly virus that wiped out nearly all of the earth's population and forced the survivors into underground communities. But when Cole is mistakenly sent to 1990 instead of 1996, he's arrested and locked up in a mental hospital. There he meets psychiatrist Dr. Kathryn Railly and the son of a famous virus expert who may hold the key to the Army of the 12 Monkeys; thought to be responsible for unleashing the killer disease.",1995-12-29,9.775,7.601,8651 +1035,17057,In a Lonely Place,"A violent screenwriter and a female neighbor fall in love after she clears him of murder, but she begins to have second thoughts.",1950-05-17,1.8866,7.6,616 +1036,16219,Gladiator,"Tommy Riley has moved with his dad to Chicago from a 'nice place'. He keeps to himself, goes to school. However, after a street fight he is noticed and quickly falls into the world of illegal underground boxing - where punches can kill.",1992-03-06,2.5542,7.6,374 +1037,10835,The Killer,"Mob assassin Jeffrey is no ordinary hired gun; the best in his business, he views his chosen profession as a calling rather than simply a job. So, when beautiful nightclub chanteuse Jennie is blinded in the crossfire of his most recent hit, Jeffrey chooses to retire after one last job to pay for his unintended victim's sight-restoring operation. But when Jeffrey is double-crossed, he reluctantly joins forces with a rogue policeman to make things right.",1989-03-24,2.9876,7.6,826 +1038,244,King Kong,"Adventurous filmmaker Carl Denham sets out to produce a motion picture unlike anything the world has seen before. Alongside his leading lady Ann Darrow and his first mate Jack Driscoll, they arrive on an island and discover a legendary creature said to be neither beast nor man. Denham captures the monster to be displayed on Broadway as King Kong, the eighth wonder of the world.",1933-03-15,4.4035,7.6,1536 +1039,10754,A Short Film About Killing,"Jacek climbs into the taxi driven by Waldemar, tells him to drive to a remote location, then brutally strangles him, seemingly without motive.",1988-03-11,1.1485,7.598,371 +1040,8440,Carandiru,"When a doctor decides to carry out an AIDS prevention program inside Latin America’s largest prison: the Casa de Detenção de São Paulo - Carandiru, he meets the future victims of one of the darkest days in Brazilian History when the State of São Paulo’s Military Police, with the excuse for law enforcement, shot to death 111 people. Based on real facts and on the book written by Dráuzio Varella.",2003-03-21,1.4387,7.598,566 +1041,222935,The Fault in Our Stars,"Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis. But when a patient named Augustus Waters suddenly appears at Cancer Kid Support Group, Hazel's story is about to be completely rewritten.",2014-05-16,5.5657,7.597,11314 +1042,1654,The Dirty Dozen,"12 American military prisoners in World War II are ordered to infiltrate a well-guarded enemy château and kill the Nazi officers vacationing there. The soldiers, most of whom are facing death sentences for a variety of violent crimes, agree to the mission and the possible commuting of their sentences.",1967-06-15,4.2489,7.597,1254 +1043,4951,10 Things I Hate About You,"On the first day at his new school, Cameron instantly falls for Bianca, the gorgeous girl of his dreams. The only problem is that Bianca is forbidden to date until her ill-tempered, completely un-dateable older sister Kat goes out, too. In an attempt to solve his problem, Cameron singles out the only guy who could possibly be a match for Kat: a mysterious bad boy with a nasty reputation of his own.",1999-03-30,10.3002,7.596,8478 +1044,28145,"They Shoot Horses, Don't They?","In the midst of the Great Depression, manipulative emcee Rocky enlists contestants for a dance marathon offering a $1,500 cash prize. Among them are a failed actress, a middle-aged sailor, a delusional blonde and a pregnant girl.",1969-12-10,1.7168,7.595,336 +1045,4922,The Curious Case of Benjamin Button,"Born under unusual circumstances, Benjamin Button springs into being as an elderly man in a New Orleans nursing home and ages in reverse. Twelve years after his birth, he meets Daisy, a child who flits in and out of his life as she grows up to be a dancer. Though he has all sorts of unusual adventures over the course of his life, it is his relationship with Daisy, and the hope that they will come together at the right time, that drives Benjamin forward.",2008-12-25,7.0218,7.593,13178 +1046,616,The Last Samurai,"Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare, which finds him learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade, Algren decides to become an ultimate warrior himself and to fight for their right to exist.",2003-12-05,7.4382,7.594,7135 +1047,71,Billy Elliot,"County Durham, England, 1984. The miners' strike has started and the police have started coming up from Bethnal Green, starting a class war with the lower classes suffering. Caught in the middle of the conflict is 11-year old Billy Elliot, who, after leaving his boxing club for the day, stumbles upon a ballet class and finds out that he's naturally talented. He practices with his teacher Mrs. Wilkinson for an upcoming audition in Newcastle-upon Tyne for the royal Ballet school in London.",2000-09-28,3.997,7.594,3939 +1048,476968,"Paul, Apostle of Christ","Risking his life, Luke ventures to Rome to visit Paul -- the apostle who's bound in chains and held captive in Nero's darkest and bleakest prison cell. Haunted by the shadows of his past misdeeds, Paul wonders if he's been forgotten as he awaits his grisly execution. Before Paul's death, Luke resolves to write another book that details the birth of what will come to be known as the church.",2018-03-23,2.8735,7.593,380 +1049,1579,Apocalypto,"Set in the Mayan civilization, when a man's idyllic presence is brutally disrupted by a violent invading force, he is taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.",2006-12-07,8.8962,7.594,5837 +1050,283587,Beasts of No Nation,"Based on the experiences of Agu, a child fighting in the civil war of an unnamed, fictional West African country. Follows Agu's journey as he's forced to join a group of soldiers. While he fears his commander and many of the men around him, his fledgling childhood has been brutally shattered by the war raging through his country, and he is at first torn between conflicting revulsion and fascination.",2015-09-11,1.9751,7.592,1780 +1051,19995,Avatar,"In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.",2009-12-15,25.5889,7.592,32472 +1052,11969,Tombstone,"Legendary marshal Wyatt Earp, now a weary gunfighter, joins his brothers Morgan and Virgil to pursue their collective fortune in the thriving mining town of Tombstone. But Earp is forced to don a badge again and get help from his notorious pal Doc Holliday when a gang of renegade brigands and rustlers begins terrorizing the town.",1993-12-25,6.3722,7.591,2272 +1053,630,The Wizard of Oz,"Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.",1939-08-15,7.038,7.591,5806 +1054,10363,Purple Noon,"Tom Ripley is a talented mimic, moocher, forger and all-around criminal improviser; but there's more to Tom Ripley than even he can guess.",1960-03-10,2.4718,7.59,561 +1055,9289,The Longest Day,"The retelling of June 6, 1944, from the perspectives of the Germans, US, British, Canadians, and the Free French. Marshall Erwin Rommel, touring the defenses being established as part of the Reich's Atlantic Wall, notes to his officers that when the Allied invasion comes they must be stopped on the beach. ""For the Allies as well as the Germans, it will be the longest day""",1962-09-25,3.7546,7.59,974 +1056,4982,American Gangster,"Loosely based on the criminal career of Frank Lucas, a gangster from La Grange, North Carolina, who smuggled heroin into the United States on American service planes returning from the Vietnam War, before being detained by a task force led by Newark Detective Richie Roberts.",2007-11-02,5.7323,7.589,5683 +1057,284427,Who Am I,"Benjamin, a young German computer whiz, is invited to join a subversive hacker group that wants to be noticed on the world's stage.",2014-09-25,2.6566,7.588,1610 +1058,568124,Encanto,"The tale of an extraordinary family, the Madrigals, who live hidden in the mountains of Colombia, in a magical house, in a vibrant town, in a wondrous, charmed place called an Encanto. The magic of the Encanto has blessed every child in the family—every child except one, Mirabel. But when she discovers that the magic surrounding the Encanto is in danger, Mirabel decides that she, the only ordinary Madrigal, might just be her exceptional family's last hope.",2021-10-13,10.7594,7.586,9819 +1059,352173,Drishyam,A simple street-smart man tries to protect his family from a cop looking for her missing son who was accidently killed by his daughter.,2015-07-30,1.5007,7.587,435 +1060,225745,Steins;Gate: The Movie - Load Region of Déjà Vu,"One year after the events of the anime, Rintarou begins to feel the repercussions of extensive time travel, and eventually completely fades from reality. Kurisu, being the only companion to remember him, now must find a way to bring him back.",2013-04-20,2.2544,7.587,364 +1061,398978,The Irishman,"Pennsylvania, 1956. Frank Sheeran, a war veteran of Irish origin who works as a truck driver, accidentally meets mobster Russell Bufalino. Once Frank becomes his trusted man, Bufalino sends him to Chicago with the task of helping Jimmy Hoffa, a powerful union leader related to organized crime, with whom Frank will maintain a close friendship for nearly twenty years.",2019-11-01,5.4759,7.586,7111 +1062,333339,Ready Player One,"When the creator of a popular video game system dies, a virtual contest is created to compete for his fortune.",2018-03-28,13.8708,7.586,16157 +1063,21575,A Prophet,"Sentenced to six years in prison, Malik El Djebena is alone in the world and can neither read nor write. On his arrival at the prison, he seems younger and more brittle than the others detained there. At once he falls under the sway of a group of Corsicans who enforce their rule in the prison. As the 'missions' go by, he toughens himself and wins the confidence of the Corsican group.",2009-08-26,2.7324,7.586,1615 +1064,4481,Manon of the Spring,"In this, the sequel to Jean de Florette, Manon has grown into a beautiful young shepherdess living in the idyllic Provencal countryside. She plots vengeance on the men who greedily conspired to acquire her father's land years earlier.",1986-11-19,2.242,7.586,530 +1065,940721,Godzilla Minus One,"In postwar Japan, Godzilla brings new devastation to an already scorched landscape. With no military intervention or government help in sight, the survivors must join together in the face of despair and fight back against an unrelenting horror.",2023-11-03,8.5893,7.584,2742 +1066,804095,The Fabelmans,"Growing up in post-World War II era Arizona, young Sammy Fabelman aspires to become a filmmaker as he reaches adolescence, but soon discovers a shattering family secret and explores how the power of films can help him see the truth.",2022-11-11,3.8935,7.584,2522 +1067,589739,Hair Love,"When dad has to unexpectedly step in for mom to do his daughter Zuri’s hair before a big event, what seems like a simple task is anything but as these locks have a mind of their own!",2019-08-14,0.7392,7.584,475 +1068,533535,Deadpool & Wolverine,"A listless Wade Wilson toils away in civilian life with his days as the morally flexible mercenary, Deadpool, behind him. But when his homeworld faces an existential threat, Wade must reluctantly suit-up again with an even more reluctant Wolverine.",2024-07-24,38.1015,7.584,7577 +1069,284053,Thor: Ragnarok,"Thor is imprisoned on the other side of the universe and finds himself in a race against time to get back to Asgard to stop Ragnarok, the destruction of his home-world and the end of Asgardian civilization, at the hands of a powerful new threat, the ruthless Hela.",2017-10-02,12.06,7.6,21293 +1070,221731,Rurouni Kenshin Part II: Kyoto Inferno,"Kenshin has settled into his new life with Kaoru and his other friends when he is approached with a request from the Meiji government. Makoto Shishio, a former assassin like Kenshin, was betrayed, set on fire and left for dead. He survived, and is now in Kyoto, plotting with his gathered warriors to overthrow the new government. Against Kaoru's wishes, Kenshin reluctantly agrees to go to Kyoto and help keep his country from falling back into civil war.",2014-08-01,3.0125,7.6,606 +1071,3580,Changeling,"Los Angeles, 1928. When single mother Christine Collins leaves for work, her son vanishes without a trace. Five months later, the police reunite mother and son. But when Christine suspects that the boy returned to her isn't her child, her quest for truth exposes a world of corruption.",2008-10-24,3.1207,7.6,4294 +1072,618588,Arthur the King,"Over the course of ten days and 435 miles, an unbreakable bond is forged between pro adventure racer Michael Light and a scrappy street dog companion dubbed Arthur. As the team is pushed to their outer limits of endurance in the race, Arthur redefines what victory, loyalty and friendship truly mean.",2024-03-15,3.3759,7.583,828 +1073,585244,I Still Believe,The true-life story of Christian music star Jeremy Camp and his journey of love and loss that looks to prove there is always hope.,2020-03-12,3.0825,7.583,1200 +1074,335984,Blade Runner 2049,"Thirty years after the events of the first film, a new blade runner, LAPD Officer K, unearths a long-buried secret that has the potential to plunge what's left of society into chaos. K's discovery leads him on a quest to find Rick Deckard, a former LAPD blade runner who has been missing for 30 years.",2017-10-04,14.1181,7.583,14294 +1075,64690,Drive,"Driver is a skilled Hollywood stuntman who moonlights as a getaway driver for criminals. Though he projects an icy exterior, lately he's been warming up to a pretty neighbor named Irene and her young son, Benicio. When Irene's husband gets out of jail, he enlists Driver's help in a million-dollar heist. The job goes horribly wrong, and Driver must risk his life to protect Irene and Benicio from the vengeful masterminds behind the robbery.",2011-09-15,6.7146,7.583,12998 +1076,7214,Coach Carter,"Based on a true story, in which Richmond High School head basketball coach Ken Carter made headlines in 1999 for benching his undefeated team due to poor academic results.",2005-01-14,8.7691,7.583,3086 +1077,581577,Persian Lessons,"Occupied France, 1942. Gilles is arrested by SS soldiers alongside other Jews and sent to a camp in Germany. He narrowly avoids sudden execution by swearing to the guards that he is not Jewish, but Persian. This lie temporarily saves him, but Gilles gets assigned a life-or-death mission: to teach Farsi to Head of Camp Koch, who dreams of opening a restaurant in Iran once the war is over. Through an ingenious trick, Gilles manages to survive by inventing words of ""Farsi"" every day and teaching them to Koch.",2020-04-17,1.5513,7.582,440 +1078,244267,I Origins,A molecular biologist's study of the human eye has far-reaching implications about humanity's scientific and spiritual beliefs.,2014-07-18,2.9421,7.581,3304 +1079,3933,Corpse Bride,"In a 19th-century European village, a young man about to be married is whisked away to the underworld and wed to a mysterious corpse bride, while his real bride waits bereft in the land of the living.",2005-09-12,17.4956,7.581,9636 +1080,64,Talk to Her,Two men share an odd friendship while they care for two women who are both in deep comas.,2002-03-15,2.196,7.58,1355 +1081,707886,Feel the Beat,"After failing to make it on Broadway, April returns to her hometown and reluctantly begins training a misfit group of young dancers for a competition.",2020-06-19,4.8388,7.578,1135 +1082,597922,The Greatest Beer Run Ever,"Chickie wants to support his friends fighting in Vietnam, so he does something wild—personally bring them American beer. What starts as a well-meaning journey quickly changes Chickie’s life and perspective. Based on a true story.",2022-09-23,4.1466,7.578,810 +1083,17058,Scarlet Street,"Cashier and part-time starving artist Christopher Cross is absolutely smitten with the beautiful Kitty March. Kitty plays along, but she's really only interested in Johnny, a two-bit crook. When Kitty and Johnny find out that art dealers are interested in Chris's work, they con him into letting Kitty take credit for the paintings. Cross allows it because he is in love with Kitty, but his love will only let her get away with so much.",1945-12-25,2.224,7.578,402 +1084,13980,Sword of the Stranger,"Pursued by formidable Chinese assassins, young Kotaro and his dog run into No Name, a mysterious stranger who gets pulled into the chase. The unlikely companions form a bond over saving the dog from a poison attack, but chaos erupts when the assassins find Kotaro, and No Name must face his past before a horrible fate is met again.",2007-09-29,2.2926,7.6,434 +1085,1954,The Butterfly Effect,"A young man struggles to access sublimated childhood memories. He finds a technique that allows him to travel back into the past, to occupy his childhood body and change history. However, he soon finds that every change he makes has unexpected consequences.",2004-01-17,7.8819,7.578,7795 +1086,315846,Our Little Sister,"After the death of their estranged father, 3 adult sisters invite their teenaged half-sister to live with them.",2015-06-13,2.262,7.576,513 +1087,431693,Spies in Disguise,"Super spy Lance Sterling and scientist Walter Beckett are almost exact opposites. Lance is smooth, suave and debonair. Walter is… not. But what Walter lacks in social skills he makes up for in smarts and invention, creating the awesome gadgets Lance uses on his epic missions. But when events take an unexpected turn, Walter and Lance suddenly have to rely on each other in a whole new way.",2019-12-04,5.1475,7.575,2859 +1088,12102,Kramer vs. Kramer,"Ted Kramer is a career man for whom his work comes before his family. His wife Joanna cannot take this anymore, so she decides to leave him. Ted is now faced with the tasks of housekeeping and taking care of himself and their young son Billy.",1979-12-07,2.6969,7.6,2302 +1089,1544,Imagine Me & You,"During her wedding ceremony, Rachel notices Luce in the audience and feels instantly drawn to her. The two women become close friends, and when Rachel learns that Luce is a lesbian, she realizes that despite her happy marriage to Heck, she is falling for Luce. As she questions her sexual orientation, Rachel must decide between her stable relationship with Heck and her exhilarating new romance with Luce.",2006-01-27,3.6714,7.6,1064 +1090,31417,Eyes Without a Face,"Dr. Génessier is riddled with guilt after an accident that he caused disfigures the face of his daughter, the once beautiful Christiane, who outsiders believe is dead. Dr. Génessier, along with accomplice and laboratory assistant Louise, kidnaps young women and brings them to the Génessier mansion. After rendering his victims unconscious, Dr. Génessier removes their faces and attempts to graft them on to Christiane's.",1960-01-11,1.6037,7.575,762 +1091,54186,Confessions,"Devastated at the death of her four-year-old daughter, a grieving middle school teacher is horrified to discover that her students aren't as innocent as she thinks.",2010-06-04,1.7556,7.574,919 +1092,264660,Ex Machina,"Caleb, a coder at the world's largest internet company, wins a competition to spend a week at a private mountain retreat belonging to Nathan, the reclusive CEO of the company. But when Caleb arrives at the remote location he finds that he will have to participate in a strange and fascinating experiment in which he must interact with the world's first true artificial intelligence, housed in the body of a beautiful robot girl.",2015-01-21,5.2177,7.573,13641 +1093,198375,The Garden of Words,"Takao, who is training to become a shoemaker, skipped school and is sketching shoes in a Japanese-style garden. He meets a mysterious woman, Yukino, who is older than him. Then, without arranging the times, the two start to see each other again and again, but only on rainy days. They deepen their relationship and open up to each other. But the end of the rainy season soon approaches.",2013-05-31,3.1879,7.573,2094 +1094,127501,Barfi!,"The heartwarming tale of Barfi, a charming deaf-mute young man from 1970s Darjeeling, and two unalike women who can't help but fall for him.",2012-09-13,1.4069,7.6,335 +1095,9377,Ferris Bueller's Day Off,"After high school slacker Ferris Bueller successfully fakes an illness in order to skip school for the day, he goes on a series of adventures throughout Chicago with his girlfriend Sloane and best friend Cameron, all the while trying to outwit his wily school principal and fed-up sister.",1986-06-11,5.4024,7.6,5101 +1096,532,A Close Shave,"Wallace's whirlwind romance with the proprietor of the local wool shop puts his head in a spin, and Gromit is framed for sheep-rustling in a fiendish criminal plot.",1996-03-07,1.4969,7.573,876 +1097,57158,The Hobbit: The Desolation of Smaug,"The Dwarves, Bilbo and Gandalf have successfully escaped the Misty Mountains, and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon, Smaug.",2013-12-11,10.1429,7.572,13578 +1098,870,Dolls,"Dolls takes puppeteering as its overriding motif, which relates thematically to the action provided by the live characters. Chief among those tales is the story of Matsumoto and Sawako, a young couple whose relationship is about to be broken apart by the former's parents, who have insisted their son take part in an arranged marriage to his boss' daughter.",2002-10-12,1.7795,7.6,338 +1099,61202,Zindagi Na Milegi Dobara,"Three friends who were inseparable in childhood decide to go on a three-week-long bachelor road trip to Spain, in order to re-establish their bond and explore thrilling adventures, before one of them gets married. What will they learn of themselves and each other during the adventure?",2011-07-15,2.3244,7.57,369 +1100,20992,Brother,"Danila goes to his successful brother, Victor, in Petersburg to start a new life. Unknown to Danila, Victor is a contract killer, but is in hiding after asking for too much money to assassinate a Chechen mob boss. To avoid exposure, Victor convinces Danila to kill the boss instead.",1997-12-12,1.2958,7.57,414 +1101,1913,The Sea Inside,"Ramón Sampedro is a ship mechanic and part-time poet left a quadriplegic following a diving accident. Ramón fought for 30 years for the legal right to end his own life. He develops close relationships with his long-term lawyer Julia and his friend Rosa, who tries to convince him that his life is worth living. Despite his situation, Ramón manages to inspire those around him to live life to the fullest.",2004-09-03,1.9099,7.569,957 +1102,489999,Searching,"After David Kim's 16-year-old daughter goes missing, a local investigation is opened and a detective is assigned to the case. But 37 hours later and without a single lead, David decides to search the one place no one has looked yet, where all secrets are kept today: his daughter's laptop.",2018-08-24,2.987,7.568,4003 +1103,366170,Yu-Gi-Oh!: The Dark Side of Dimensions,"Having faced each other on countless occasions, Yugi and Kaiba again put their pride and experience to the test in a duel that transcends dimensions.",2016-04-23,2.0541,7.6,446 +1104,2013,The Diving Bell and the Butterfly,"The true story of Elle France editor Jean-Dominique Bauby, who, in 1995 at the age of 43, suffered a stroke that paralyzed his entire body, except his left eye. Using that eye to blink out his memoir, Bauby eloquently described the aspects of his interior world, from the psychological torment of being trapped inside his body to his imagined stories from lands he'd only visited in his mind.",2007-05-23,2.1381,7.568,1209 +1105,306819,The Danish Girl,"When Gerda Wegener asks her husband Einar to fill in as a portrait model, Einar discovers the person she's meant to be and begins living her life as Lili Elbe. Having realized her true self and with Gerda's love and support, Lili embarks on a groundbreaking journey as a transgender pioneer.",2015-11-27,4.6889,7.6,5830 +1106,17431,Moon,"With only three weeks left in his three-year contract, Sam Bell is getting anxious to finally return to Earth. He is the only occupant of a Moon-based manufacturing facility along with his computer and assistant, GERTY. When he has an accident however, he awakens to find that he is not alone.",2009-06-12,4.1398,7.567,5910 +1107,3558,"Girl, Interrupted","Set in the changing world of the late 1960s, Susanna Kaysen's prescribed ""short rest"" from a psychiatrist she had met only once becomes a strange, unknown journey into Alice's Wonderland, where she struggles with the thin line between normal and crazy. Susanna soon realizes how hard it is to get out once she has been committed, and she ultimately has to choose between the world of people who belong inside or the difficult world of reality outside.",1999-12-21,5.0084,7.567,3961 +1108,596054,Heroic Losers,"In a town in the Northwest of the province of Buenos Aires, a group of neighbors is organized to recover the economy of the area, but when the corralito is implemented in the country and they suffer a fraud, their hopes disappear. Now, they will unite to recover the lost money and give the blow of their lives to their greatest enemy.",2019-08-15,1.7653,7.569,580 +1109,399566,Godzilla vs. Kong,"In a time when monsters walk the Earth, humanity’s fight for its future sets Godzilla and Kong on a collision course that will see the two most powerful forces of nature on the planet collide in a spectacular battle for the ages.",2021-03-24,6.9735,7.567,10273 +1110,277834,Moana,"In Ancient Polynesia, when a terrible curse incurred by Maui reaches an impetuous Chieftain's daughter's island, she answers the Ocean's call to seek out the demigod to set things right.",2016-10-13,3.3457,7.566,13233 +1111,4638,Hot Fuzz,"Former London constable Nicholas Angel finds it difficult to adapt to his new assignment in the sleepy British village of Sandford. Not only does he miss the excitement of the big city, but he also has a well-meaning oaf for a partner. However, when a series of grisly accidents rocks Sandford, Angel smells something rotten in the idyllic village.",2007-02-14,5.6096,7.566,7870 +1112,2649,The Game,"In honor of his birthday, San Francisco banker Nicholas Van Orton, a financial genius and a cold-hearted loner, receives an unusual present from his younger brother, Conrad: a gift certificate to play a unique kind of game. In nary a nanosecond, Nicholas finds himself consumed by a dangerous set of ever-changing rules, unable to distinguish where the charade ends and reality begins.",1997-09-12,5.073,7.566,6909 +1113,20108,Au Hasard Balthazar,"The story of a donkey Balthazar as he is passed from owner to owner, some kind and some cruel but all with motivations beyond his understanding. Balthazar, whose life parallels that of his first keeper, Marie, is truly a beast of burden, suffering the sins of humankind. But despite his powerlessness, he accepts his fate nobly.",1966-05-25,1.5374,7.6,471 +1114,1879,Guess Who's Coming to Dinner,A couple's attitudes are challenged when their daughter brings home a fiancé who is black.,1967-12-11,1.708,7.6,871 +1115,756999,The Black Phone,"Finney Blake, a shy but clever 13-year-old boy, is abducted by a sadistic killer and trapped in a soundproof basement where screaming is of little use. When a disconnected phone on the wall begins to ring, Finney discovers that he can hear the voices of the killer’s previous victims. And they are dead set on making sure that what happened to them doesn’t happen to Finney.",2022-06-17,9.0009,7.563,5217 +1116,586863,Les Misérables,"Stéphane has recently joined the Anti-Crime Squad in Montfermeil, in the suburbs of Paris, France, where Victor Hugo set his famed novel “Les Miserables”. Alongside his new colleagues Chris and Gwada – both experienced members of the team – he quickly discovers tensions running high between local gangs. When the trio finds themselves overrun during the course of an arrest, a drone captures the encounter, threatening to expose the reality of everyday life.",2019-11-14,1.8586,7.564,1555 +1117,11159,Secrets & Lies,"After her adoptive mother dies, Hortense, a successful black optometrist, seeks out her birth mother. She's shocked when her research leads her to Cynthia, a working class white woman.",1996-05-24,2.9716,7.5,683 +1118,36557,Casino Royale,"Le Chiffre, a banker to the world's terrorists, is scheduled to participate in a high-stakes poker game in Montenegro, where he intends to use his winnings to establish his financial grip on the terrorist market. M sends Bond—on his maiden mission as a 00 Agent—to attend this game and prevent Le Chiffre from winning. With the help of Vesper Lynd and Felix Leiter, Bond enters the most important poker game in his already dangerous career.",2006-11-14,7.9027,7.563,11088 +1119,18329,Happy Together,A gay couple from Hong Kong takes a trip to Argentina in search of a new beginning but instead begins drifting even further apart.,1997-05-30,2.5032,7.6,734 +1120,1628,Jules and Jim,"In the carefree days before World War I, introverted Austrian author Jules strikes up a friendship with the exuberant Frenchman Jim and both men fall for the impulsive and beautiful Catherine.",1962-01-23,1.3997,7.6,1005 +1121,921,Cinderella Man,"The true story of boxer Jim Braddock who, following his retirement in the 1930s, makes a surprise comeback in order to lift his family out of poverty.",2005-06-02,3.4521,7.563,2278 +1122,782,Gattaca,"Vincent is an all-too-human man who dares to defy a system obsessed with genetic perfection. He is an ""In-Valid"" who assumes the identity of a member of the genetic elite to pursue his goal of traveling into space with the Gattaca Aerospace Corporation.",1997-09-07,5.3635,7.563,6574 +1123,795514,The Fallout,"In the wake of a school tragedy, Vada, Mia and Quinton form a unique and dynamic bond as they navigate the never linear, often confusing journey to heal in a world that feels forever changed.",2021-03-17,5.5822,7.562,1219 +1124,47909,Poetry,A South Korean woman in her sixties enrolls in a poetry class as she grapples with her faltering memory and her grandson's appalling wrongdoing.,2010-05-13,1.3259,7.6,314 +1125,18925,Facing the Giants,A losing coach with an underdog football team faces their giants of fear and failure on and off the field to surprising results.,2006-09-29,2.9581,7.562,459 +1126,948,Halloween,"Fifteen years after murdering his sister on Halloween Night 1963, Michael Myers escapes from a mental hospital and returns to the small town of Haddonfield, Illinois to kill again.",1978-10-24,7.8776,7.562,5854 +1127,514754,Bao,"An aging Chinese mother suffering from empty nest syndrome gets another chance at motherhood when one of her dumplings springs to life as a lively, giggly dumpling boy.",2018-06-15,1.3825,7.561,1241 +1128,36095,Cure,A detective starts spiraling out of control when a wave of gruesome murders with seemingly similar bizarre circumstances is sweeping Tokyo.,1997-12-27,2.6188,7.557,658 +1129,9016,Treasure Planet,"When space galleon cabin boy Jim Hawkins discovers a map to an intergalactic ""loot of a thousand worlds,"" a cyborg cook named John Silver teaches him to battle supernovas and space storms on their journey to find treasure.",2002-11-26,6.6785,7.562,4380 +1130,433,Mary Poppins,"Mr Banks is looking for a nanny for his two mischievous children and comes across Mary Poppins, an angelic nanny. She not only brings a change in their lives but also spreads happiness.",1964-12-17,4.7265,7.561,4815 +1131,246741,What We Do in the Shadows,Vampire housemates try to cope with the complexities of modern life and show a newly turned hipster some of the perks of being undead.,2014-06-19,2.9895,7.6,3690 +1132,11544,Lilo & Stitch,"As Stitch, a runaway genetic experiment from a faraway planet, wreaks havoc on the Hawaiian Islands, he becomes the mischievous adopted alien ""puppy"" of an independent little girl named Lilo and learns about loyalty, friendship, and ʻohana, the Hawaiian tradition of family.",2002-06-21,13.7374,7.56,6747 +1133,682507,Where the Crawdads Sing,"Abandoned by her family, Kya raises herself all alone in the marshes outside of her small town. When her former boyfriend is found dead, Kya is instantly branded by the local townspeople and law enforcement as the prime suspect for his murder.",2022-07-14,3.3997,7.558,2024 +1134,39323,Dragon Ball Z: Bardock - The Father of Goku,"Bardock, Son Goku's father, is a low-ranking Saiyan soldier who was given the power to see into the future by the last remaining alien on a planet he just destroyed. He witnesses the destruction of his race and must now do his best to stop Frieza's impending massacre.",1990-10-17,4.7676,7.558,737 +1135,11688,The Emperor's New Groove,"When self-centered Emperor Kuzco is turned into a llama by his scheming advisor, he is forced to rely on good-hearted peasant Pacha to get back home.",2000-12-15,10.3317,7.6,6981 +1136,10950,I Am Sam,"Sam, a neurodivergent man, has a daughter with a homeless woman who abandons them when they leave the hospital, leaving Sam to raise Lucy on his own. But as Lucy grows up, Sam's limitations as a parent start to become a problem and the authorities take her away. Sam convinces high-priced lawyer Rita to take his case pro bono and in turn teaches her the value of love and family.",2001-12-28,4.5365,7.558,2352 +1137,4960,"Synecdoche, New York","A theater director struggles with his work, and the women in his life, as he attempts to create a life-size replica of New York inside a warehouse as part of his new play.",2008-10-24,2.6322,7.558,1481 +1138,9056,Police Story,"Officer Chan Ka Kui manages to put a major Hong Kong drug dealer behind the bars practically alone, after a shooting and an impressive chase inside a slum. Now, he must protect the boss' secretary, Selina, who will testify against the gangster in court.",1985-12-14,2.9351,7.6,943 +1139,18,The Fifth Element,"In 2257, a taxi driver is unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity.",1997-05-02,9.8952,7.557,11140 +1140,838209,Exhuma,"After tracing the origin of a disturbing supernatural affliction to a wealthy family's ancestral gravesite, a team of paranormal experts relocates the remains—and soon discovers what happens to those who dare to mess with the wrong grave.",2024-02-22,4.8743,7.555,533 +1141,204553,Cold Eyes,"Ha Yoon-ju becomes the newest member of a unit within the Korean Police Forces Special Crime Department that specializes in surveillance activities on high-profile criminals. She teams up with Hwang Sang-jun, the veteran leader of the unit, and tries to track down James who is the cold-hearted leader of an armed criminal organization.",2013-07-03,2.3338,7.6,357 +1142,899405,Anonymously Yours,"After an accidental text message turns into a digital friendship, Vale and Alex start crushing on each other without realizing they've met in real life.",2021-12-10,0.7758,7.554,367 +1143,24653,The Consequences of Love,"Lugano, Switzerland. Titta Di Girolamo is a discreet and sullen man who has been living for almost a decade in a modest hotel room, a prisoner of an atrocious routine, apparently without purpose. His past is a mystery, nobody knows what he does for a living, he answers indiscreet questions evasively. What secrets does this enigmatic man hide?",2004-09-24,0.9693,7.554,863 +1144,783,Gandhi,"In the early years of the 20th century, Mohandas K. Gandhi, a British-trained lawyer, forsakes all worldly possessions to take up the cause of Indian independence. Faced with armed resistance from the British government, Gandhi adopts a policy of 'passive resistance', endeavouring to win freedom for his people without resorting to bloodshed.",1982-12-01,3.3959,7.554,2375 +1145,1022789,Inside Out 2,"Teenager Riley's mind headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions! Joy, Sadness, Anger, Fear and Disgust, who’ve long been running a successful operation by all accounts, aren’t sure how to feel when Anxiety shows up. And it looks like she’s not alone.",2024-06-11,36.0925,7.553,6042 +1146,401698,Hidden Kisses,"Nathan, 16, lives alone with his father Stephane. A newcomer in high school, he is invited to a party and falls in love with Louis, a boy in his class. They find themselves out of sight and kiss each other, but someone takes a picture of them. Soon, the photo is published on Facebook and a storm overtakes their lives as they face bullying and rejection.",2016-02-04,1.5901,7.553,314 +1147,13562,My Man Godfrey,"Fifth Avenue socialite Irene Bullock needs a ""forgotten man"" to win a scavenger hunt, and no one is more forgotten than Godfrey Park, who resides in a dump by the East River. Irene hires Godfrey as a servant for her riotously unhinged family, to the chagrin of her spoiled sister, Cornelia, who tries her best to get Godfrey fired. As Irene falls for her new butler, Godfrey turns the tables and teaches the frivolous Bullocks a lesson or two.",1936-09-02,2.8937,7.6,366 +1148,507569,The Seven Deadly Sins: Prisoners of the Sky,"Traveling in search of the rare ingredient, “sky fish” Meliodas and Hawk arrive at a palace that floats above the clouds. The people there are busy preparing a ceremony, meant to protect their home from a ferocious beast that awakens once every 3,000 years. But before the ritual is complete, the Six Knights of Black—a Demon Clan army—removes the seal on the beast, threatening the lives of everyone in the Sky Palace.",2018-08-18,0.7986,7.6,1047 +1149,8429,Paisan,"During the Allied invasion of Italy in World War II, six stories unfold in various regions, from Sicily to the northern Po Valley. These tales follow the interactions between American soldiers and Italian civilians as they navigate their way through language barriers and cultural differences.",1946-12-10,1.2178,7.6,324 +1150,1372,Blood Diamond,"An ex-mercenary turned smuggler. A Mende fisherman. Amid the explosive civil war overtaking 1999 Sierra Leone, these men join for two desperate missions: recovering a rare pink diamond of immense value and rescuing the fisherman's son, conscripted as a child soldier into the brutal rebel forces ripping a swath of torture and bloodshed countrywide.",2006-12-08,5.3463,7.55,7901 +1151,1233413,Sinners,"Trying to leave their troubled lives behind, twin brothers return to their hometown to start again, only to discover that an even greater evil is waiting to welcome them back.",2025-04-16,46.0456,7.5,2287 +1152,484468,The Wolf's Call,"Shown from the perspective of a young submariner with unusually sensitive hearing and uncannily precise sound recognition. The fate of many often depends on his ability, and one time, whilst highly stressed, he makes a incorrect call which put his entire crew in mortal danger. Trying to regain the confidence of his comrades, he conducts an unauthorised investigation of an apparent plot which, it turns out, risks escalating into a nuclear apocalypse. Suddenly working under pressure with the fleet admiral, they must do whatever is necessary, even the unthinkable, to prevent a nuclear war, since a confirmed nuclear strike order cannot be countermanded.",2019-02-20,3.1063,7.549,2078 +1153,9394,They Call Me Trinity,"The simple story has the pair coming to the rescue of peace-loving Mormons when land-hungry Major Harriman sends his bullies to harass them into giving up their fertile valley. Trinity and Bambino manage to save the Mormons and send the bad guys packing with slapstick humor instead of excessive violence, saving the day.",1970-12-22,3.2793,7.5,1370 +1154,2009,"4 Months, 3 Weeks and 2 Days",Two college roommates have 24 hours to make the ultimate choice as they finalize arrangements for a black market abortion.,2007-08-24,1.4502,7.549,761 +1155,824,Moulin Rouge!,"A celebration of love and creative inspiration takes place in the infamous, gaudy and glamorous Parisian nightclub, at the cusp of the 20th century. A young poet, who is plunged into the heady world of Moulin Rouge, begins a passionate affair with the club's most notorious and beautiful star.",2001-05-18,3.5527,7.549,4648 +1156,451915,Beautiful Boy,"After he and his first wife separate, journalist David Sheff struggles to help their teenage son, who goes from experimenting with drugs to becoming devastatingly addicted to methamphetamine.",2018-10-12,7.4712,7.5,2685 +1157,4909,The Day of the Jackal,"An international assassin known as ‘The Jackal’ is employed by disgruntled French generals to kill President Charles de Gaulle, with a dedicated gendarme on the assassin’s trail.",1973-05-16,6.1251,7.548,627 +1158,429450,Pandora,"When an earthquake hits a Korean village housing a run-down nuclear power plant, a man risks his life to save the country from imminent disaster.",2016-12-07,2.3103,7.547,489 +1159,334541,Manchester by the Sea,"After his older brother passes away, Lee Chandler is forced to return home to care for his 16-year-old nephew. There he is compelled to deal with a tragic past that separated him from his family and the community where he was born and raised.",2016-11-17,4.7281,7.547,6068 +1160,765,Evil Dead II,"Ash Williams and his girlfriend Linda find a log cabin in the woods with a voice recording from an archeologist who had recorded himself reciting ancient chants from ""The Book of the Dead."" As they play the recording an evil power is unleashed taking over Linda's body.",1987-03-13,4.1896,7.547,3268 +1161,319,True Romance,"Clarence marries hooker Alabama, steals cocaine from her pimp, and tries to sell it in Hollywood, while the owners of the coke try to reclaim it.",1993-09-09,4.2569,7.547,2855 +1162,41411,The Round Up,"A faithful retelling of the 1942 ""Vel' d'Hiv Roundup"" and the events surrounding it.",2010-03-10,1.9596,7.546,1025 +1163,907,Doctor Zhivago,"The life of a Russian physician and poet who, although married to another, falls in love with a political activist's wife and experiences hardship during World War I and then the October Revolution.",1965-12-22,3.8583,7.5,1198 +1164,881,A Few Good Men,"When cocky military lawyer Lt. Daniel Kaffee and his co-counsel, Lt. Cmdr. JoAnne Galloway, are assigned to a murder case, they uncover a hazing ritual that could implicate high-ranking officials such as shady Col. Nathan Jessep.",1992-12-11,6.2989,7.5,3849 +1165,220,East of Eden,"In the Salinas Valley in and around World War I, Cal Trask feels he must compete against overwhelming odds with his brother for the love of their father. Cal is frustrated at every turn, from his reaction to the war, how to get ahead in business and in life, and how to relate to his estranged mother.",1955-04-10,2.4896,7.545,772 +1166,552178,Dark Waters,"A tenacious attorney uncovers a dark secret that connects a growing number of unexplained deaths to one of the world's largest corporations. In the process, he risks everything — his future, his family, and his own life — to expose the truth.",2019-11-22,2.7332,7.544,2327 +1167,375572,Italian Race,"Giulia De Martino is a pilot. At seventeen she participates in the GT Championship, under the guidance of her father Mario. But one day everything changes and Giulia has to face alone both the track and her own life.",2016-04-07,1.045,7.544,954 +1168,71859,We Need to Talk About Kevin,"After her son Kevin commits a horrific act, troubled mother Eva reflects on her complicated relationship with her disturbed son as he grew from a toddler into a teenager.",2011-09-28,3.6601,7.543,2915 +1169,850165,The Iron Claw,"The true story of the inseparable Von Erich brothers, who made history in the intensely competitive world of professional wrestling in the early 1980s. Through tragedy and triumph, under the shadow of their domineering father and coach, the brothers seek larger-than-life immortality on the biggest stage in sports.",2023-12-21,3.7774,7.543,1060 +1170,19413,"Ugly, Dirty and Bad","Giacinto lives with his wife, their ten children and various other family members in a shack on the hills of Rome. Some time ago he has lost his left eye while at work, and got a consistent sum of money from the insurance company, which he keeps hidden from the rest of the family. His whole life is now based on defending the money he sees as his own, while the rest of the family tries to kill him.",1976-09-23,1.1735,7.5,323 +1171,12498,Sling Blade,"Karl Childers, a mentally disabled man, has been in the custody of the state mental hospital since the age of 12 for killing his mother and her lover. Although thoroughly institutionalized, he is deemed fit to be released into the outside world.",1996-08-30,2.118,7.543,819 +1172,338,"Good Bye, Lenin!",Alex Kerner's mother was in a coma while the Berlin wall fell. When she wakes up he must try to keep her from learning what happened (as she was an avid communist supporter) to avoid shocking her which could lead to another heart attack.,2003-02-13,2.91,7.5,2486 +1173,730840,Trollhunters: Rise of the Titans,"The Guardians of Arcadia reunite to battle the nefarious Arcane Order, who've reawakened the primordial Titans.",2021-07-21,2.2477,7.542,342 +1174,629542,The Bad Guys,"When the Bad Guys, a crew of criminal animals, are finally caught after years of heists and being the world’s most-wanted villains, Mr. Wolf brokers a deal to save them all from prison.",2022-03-17,31.19,7.5,2238 +1175,38234,Undisputed III: Redemption,"Russian inmate Boyka, now severely hobbled by the knee injury suffered at the end of Undisputed 2. No longer the feared prison fighter he was, he has declined so far that he is now good only for cleaning toilets. But when a new prison fight tournament begins - an international affair, matching the best fighters from prisons around the globe, enticing them with the promise of freedom for the winner - Boyka must reclaim his dignity and fight for his position in the tournament.",2010-04-17,8.2082,7.542,951 +1176,416144,Hotel Mumbai,"Mumbai, India, November 26, 2008. While several terrorists spread hatred and death through the city, others attack the Taj Mahal Palace Hotel. Both hotel staff and guests risk their lives, making unthinkable sacrifices to protect themselves and keep everyone safe while help arrives.",2019-03-14,2.6007,7.541,1628 +1177,228150,Fury,"April, 1945. As the Allies make their final push in the European Theatre, a battle-hardened army sergeant named Wardaddy commands a Sherman tank and her five-man crew on a deadly mission behind enemy lines. Outnumbered and outgunned, and with a rookie soldier thrust into their platoon, Wardaddy and his men face overwhelming odds in their heroic attempts to strike at the heart of Nazi Germany.",2014-10-15,15.6396,7.5,12409 +1178,11178,My Sassy Girl,"A dweeby, mild-mannered man comes to the aid of a drunk young woman on a subway platform. Little does he know how much trouble he’s in for.",2001-07-27,1.8428,7.541,597 +1179,638,Lost Highway,"A tormented jazz musician finds himself lost in an enigmatic story involving murder, surveillance, gangsters, doppelgängers, and an impossible transformation inside a prison cell.",1997-01-15,4.1305,7.5,2768 +1180,33997,Desert Flower,"The autobiography of a Somalian nomad who was sold in marriage at 13, fled from Africa a while later to become finally an American supermodel and is now at the age of 38, the UN spokeswoman against female genital mutilation.",2009-09-24,1.9027,7.5,447 +1181,22292,The Ghost and Mrs. Muir,A young British widow rents a seaside cottage and soon becomes haunted by the ghost of its former owner.,1947-05-25,0.9836,7.54,329 +1182,967,Spartacus,"The rebellious Thracian Spartacus, born and raised a slave, is sold to Gladiator trainer Batiatus. After weeks of being trained to kill for the arena, Spartacus turns on his owners and leads the other slaves in rebellion. As the rebels move from town to town, their numbers swell as escaped slaves join their ranks. Under the leadership of Spartacus, they make their way to southern Italy, where they will cross the sea and return to their homes.",1960-10-13,5.5611,7.54,2251 +1183,722778,The Hand of God,"In 1980s Naples, Italy, an awkward Italian teen struggling to find his place experiences heartbreak and liberation after he's inadvertently saved from a freak accident by football legend Diego Maradona.",2021-11-24,1.3842,7.539,1697 +1184,256040,Bāhubali: The Beginning,"The young Shivudu is left as a foundling in a small village by his mother. By the time he’s grown up, it has become apparent that he possesses exceptional gifts. He meets the beautiful warrior princess Avanthika and learns that her queen has been held captive for the last 25 years. Shividu sets off to rescue her, discovering his own origins in the process.",2015-07-10,4.0106,7.539,852 +1185,228326,The Book of Life,"The journey of Manolo, a young man who is torn between fulfilling the expectations of his family and following his heart. Before choosing which path to follow, he embarks on an incredible adventure that spans three fantastical worlds where he must face his greatest fears.",2014-10-01,5.2813,7.5,2793 +1186,178682,The Wizards Return: Alex vs. Alex,"While trying to prove to her family she can be mature and responsible, teen wizard Alex Russo conjures up a spell to rid herself of her bad qualities, unintentionally creating a Good and Evil Alex. When Evil Alex gets involved in a plan to take over the world by a dark wizard, Good Alex must find a way to save her family, humankind, and ultimately herself in an epic Good vs. Evil battle.",2013-06-01,1.6604,7.539,919 +1187,30368,Stray Dog,"A bad day gets worse for young detective Murakami when a pickpocket steals his gun on a hot, crowded bus. Desperate to right the wrong, he goes undercover, scavenging Tokyo’s sweltering streets for the stray dog whose desperation has led him to a life of crime. With each step, cop and criminal’s lives become more intertwined and the investigation becomes an examination of Murakami’s own dark side.",1949-10-17,1.9815,7.539,323 +1188,24807,Mr. Deeds Goes to Town,"Longfellow Deeds lives in a small town, leading a small town kind of life. When a relative dies and leaves Deeds a fortune, Longfellow moves to the big city where he becomes an instant target for everyone. Deeds outwits them all until Babe Bennett comes along. When small-town boy meets big-city girl anything can, and does, happen.",1936-04-09,1.6757,7.539,383 +1189,1061699,The Six Triple Eight,"During World War II, the US Army's only all-Black, all-women battalion takes on an impossible mission: sorting through a three-year backlog of 17 million pieces of mail that hadn't been delivered to American soldiers and finish within six months.",2024-12-06,2.9218,7.538,546 +1190,138843,The Conjuring,"Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse. Forced to confront a powerful entity, the Warrens find themselves caught in the most terrifying case of their lives.",2013-07-18,27.906,7.539,12000 +1191,109424,Captain Phillips,"The true story of Captain Richard Phillips and the 2009 hijacking by Somali pirates of the US-flagged MV Maersk Alabama, the first American cargo ship to be hijacked in two hundred years.",2013-10-10,4.9751,7.538,7133 +1192,5165,L'Avventura,"Claudia and Anna join Anna's lover, Sandro, on a boat trip to a remote volcanic island. When Anna goes missing, a search is launched. In the meantime, Sandro and Claudia become involved in a romance despite Anna's disappearance, though the relationship suffers from guilt and tension.",1960-09-14,1.0076,7.5,718 +1193,481848,The Call of the Wild,"Buck is a big-hearted dog whose blissful domestic life is turned upside down when he is suddenly uprooted from his California home and transplanted to the exotic wilds of the Yukon during the Gold Rush of the 1890s. As the newest rookie on a mail delivery dog sled team—and later its leader—Buck experiences the adventure of a lifetime, ultimately finding his true place in the world and becoming his own master.",2020-02-19,6.174,7.537,3832 +1194,11528,The Sandlot,"During a summer of friendship and adventure, one boy becomes a part of the gang, nine boys become a team and their leader becomes a legend by confronting the terrifying mystery beyond the right field wall.",1993-04-07,3.0056,7.537,1229 +1195,747,Shaun of the Dead,"Shaun lives a supremely uneventful life, which revolves around his girlfriend, his mother, and, above all, his local pub. This gentle routine is threatened when the dead return to life and make strenuous attempts to snack on ordinary Londoners.",2004-04-09,6.8565,7.537,8822 +1196,15014,Bianca,"Eccentric and full of manias, Michele is a young high school professor who defines himself as “not used to happiness”. He realizes his life is meaningless if he doesn’t have a woman by his side but, after a series of rather disastrous experiences, he feels more alone than ever. Then, out of the blue, a new French teacher called Bianca arrives at school. Amongst uncertainties and contradictions, the two start dating. In the meantime, a series of homicides take place and a police officer begins to suspect that Michele is involved. Bianca will save him providing an alibi at the right moment, but then, everything goes wrong again.",1984-02-23,0.716,7.536,394 +1197,9366,Donnie Brasco,An FBI undercover agent infiltrates the mob and identifies more with the mafia life at the expense of his regular one.,1997-02-27,3.6289,7.536,4607 +1198,1883,Malcolm X,"A tribute to the controversial black activist and leader of the struggle for black liberation. He hit bottom during his imprisonment in the '50s, he became a Black Muslim and then a leader in the Nation of Islam. His assassination in 1965 left a legacy of self-determination and racial pride.",1992-11-18,5.2277,7.536,1760 +1199,106,Predator,A team of elite commandos on a secret mission in a Central American jungle come to find themselves hunted by an extraterrestrial warrior.,1987-06-12,11.9268,7.536,8481 +1200,929204,Wallace & Gromit: Vengeance Most Fowl,"Gromit’s concern that Wallace is becoming too dependent on his inventions proves justified, when Wallace invents a “smart” gnome that seems to develop a mind of its own. When it emerges that a vengeful figure from the past might be masterminding things, it falls to Gromit to battle sinister forces and save his master… or Wallace may never be able to invent again!",2024-12-18,6.7196,7.535,531 +1201,281957,The Revenant,"In the 1820s, a frontiersman, Hugh Glass, sets out on a path of vengeance against those who left him for dead after a bear mauling.",2015-12-25,9.4455,7.535,18596 +1202,13310,Let the Right One In,"When Oskar, a sensitive, bullied 12-year-old boy, meets his new neighbor, the mysterious and moody Eli, they strike up a friendship. Initially reserved with each other, Oskar and Eli slowly form a close bond, but it soon becomes apparent that she is no ordinary young girl.",2008-10-24,2.9451,7.535,3048 +1203,8327,The Holy Mountain,The Alchemist assembles together a group of people from all walks of life to represent the planets in the solar system. The occult adept's intention is to put his recruits through strange mystical rites and divest them of their worldly baggage before embarking on a trip to Lotus Island. There they ascend the Holy Mountain to displace the immortal gods who secretly rule the universe.,1973-11-29,2.3416,7.5,951 +1204,200481,The Blue Umbrella,"It is just another evening commute until the rain starts to fall, and the city comes alive to the sound of dripping rain pipes, whistling awnings and gurgling gutters.",2013-02-12,0.8607,7.5,568 +1205,83389,From Up on Poppy Hill,"Yokohama, 1963. Japan is picking itself up from the devastation of World War II and preparing to host the 1964 Olympics—and the mood is one of both optimism and conflict as the young generation struggles to throw off the shackles of a troubled past. Against this backdrop of hope and change, a friendship begins to blossom between high school students Umi and Shun—but a buried secret from their past emerges to cast a shadow on the future and pull them apart.",2011-07-16,3.3991,7.534,1835 +1206,915935,Anatomy of a Fall,"A woman is suspected of her husband's murder, and their blind son faces a moral dilemma as the sole witness.",2023-08-23,4.4258,7.533,2882 +1207,200085,The Flu,"A case of the flu quickly morphs into a pandemic. As the death toll mounts and the living panic, the government plans extreme measures to contain it.",2013-08-14,2.8314,7.533,1222 +1208,4550,Lady Vengeance,"Released after being wrongfully convicted and imprisoned for 13 years, a woman begins executing her elaborate plan of retribution.",2005-07-29,3.5833,7.5,1751 +1209,877703,Teen Wolf: The Movie,"The wolves are howling once again, as a terrifying ancient evil emerges in Beacon Hills. Scott McCall, no longer a teenager yet still an Alpha, must gather new allies and reunite trusted friends to fight back against this powerful and deadly enemy.",2023-01-18,6.3415,7.5,888 +1210,9040,Serpico,New York cop Frank Serpico blows the whistle on the rampant corruption in the force only to have his comrades turn against him.,1973-12-18,3.1078,7.532,2048 +1211,3482,The Train,"As the Allied forces approach Paris in August 1944, German Colonel Von Waldheim is desperate to take all of France's greatest paintings to Germany. He manages to secure a train to transport the valuable art works even as the chaos of retreat descends upon them. The French resistance however wants to stop them from stealing their national treasures but have received orders from London that they are not to be destroyed. The station master, Labiche, is tasked with scheduling the train and making it all happen smoothly but he is also part of a dwindling group of resistance fighters tasked with preventing the theft. He and others stage an elaborate ruse to keep the train from ever leaving French territory.",1964-09-24,2.4526,7.532,345 +1212,2487,Lady Snowblood,Yuki's family is nearly wiped out before she is born due to the machinations of a band of criminals. These criminals kidnap and brutalize her mother but leave her alive. Later her mother ends up in prison with only revenge to keep her alive. She creates an instrument for this revenge by purposefully getting pregnant. Yuki never knows the love of a family but only killing and revenge.,1973-12-01,2.1223,7.5,389 +1213,856,Who Framed Roger Rabbit,"'Toon star Roger is worried that his wife Jessica is playing pattycake with someone else, so the studio hires detective Eddie Valiant to snoop on her. But the stakes are quickly raised when Marvin Acme is found dead and Roger is the prime suspect.",1988-06-22,5.2808,7.532,5912 +1214,37769,The Second Tragic Fantozzi,The frustrating adventures of a humble employee who all the time has to fullfill the wishes and desires of his bosses.,1976-04-15,0.8554,7.531,604 +1215,13396,The Snowman,"A young boy makes a snowman one Christmas Eve, which comes to life at midnight and takes him on a magical adventure to the North Pole to meet Santa Claus.",1984-12-15,1.1321,7.5,318 +1216,668742,Father There Is Only One 2,The success of the Conchy virtual assistant (which was developed by Javier) has earned him a favorable spot in the parents chat room - until something unexpected ruins it all.,2020-07-29,1.6279,7.53,556 +1217,483184,Dogman,"Marcello, a small and gentle dog groomer, finds himself involved in a dangerous relationship of subjugation with Simone, a former violent boxer who terrorizes the entire neighborhood. In an effort to reaffirm his dignity, Marcello will submit to an unexpected act of vengeance.",2018-05-17,1.3498,7.53,2237 +1218,127533,Rurouni Kenshin Part I: Origins,"In 1868, after the Bakumatsu war ends, the ex-assassin Kenshin Himura traverses Japan with an inverted sword, to defend the needy without killing.",2012-08-25,4.1242,7.5,844 +1219,12163,The Wrestler,"Aging wrestler Randy ""The Ram"" Robinson is long past his prime but still ready and rarin' to go on the pro-wrestling circuit. After a particularly brutal beating, however, Randy hangs up his tights, pursues a serious relationship with a long-in-the-tooth stripper, and tries to reconnect with his estranged daughter. But he can't resist the lure of the ring and readies himself for a comeback.",2008-09-07,3.1176,7.53,3780 +1220,900,Bringing Up Baby,"David Huxley is waiting to get a bone he needs for his museum collection. Through a series of strange circumstances, he meets Susan Vance, and the duo have a series of misadventures which include a leopard called Baby.",1938-02-18,2.1995,7.5,1020 +1221,456929,Champions,"A disgraced basketball coach is given the chance to coach Los Amigos, a team of players who are intellectually disabled, and soon realizes they just might have what it takes to make it to the national championships.",2018-04-06,1.4826,7.528,752 +1222,308369,Me and Earl and the Dying Girl,"Greg is coasting through senior year of high school as anonymously as possible, avoiding social interactions like the plague while secretly making spirited, bizarre films with Earl, his only friend. But both his anonymity and friendship threaten to unravel when his mother forces him to befriend a classmate with leukemia.",2015-06-12,2.3599,7.528,2629 +1223,265169,Winter Sleep,"Aydın is a hotel owner and a retired actor in rural Turkey. As winter emerges he begins navigating the conflicts within the relationships with his wife, sister and existence.",2014-06-13,1.2875,7.528,581 +1224,39107,Dragon Ball Z: Fusion Reborn,"Not paying attention to his job, a young demon allows the evil cleansing machine to overflow and explode, turning the young demon into the infamous monster Janemba. Goku and Vegeta make solo attempts to defeat the monster, but realize their only option is fusion.",1995-03-04,6.4122,7.5,885 +1225,15472,The Girl with the Dragon Tattoo,"Swedish thriller based on Stieg Larsson's novel about a male journalist and a young female hacker. In the opening of the movie, Mikael Blomkvist, a middle-aged publisher for the magazine Millennium, loses a libel case brought by corrupt Swedish industrialist Hans-Erik Wennerström. Nevertheless, he is hired by Henrik Vanger in order to solve a cold case, the disappearance of Vanger's niece",2009-02-27,4.1492,7.528,3052 +1226,127585,X-Men: Days of Future Past,The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past – to save our future.,2014-05-15,11.2839,7.5,15693 +1227,111083,The Body,"A woman’s body disappears mysteriously from the morgue without a trace. Police inspector Jaime Peña investigates the strange occurrence with the help of Álex Ulloa, the widower of the missing woman.",2012-12-21,2.4036,7.527,1320 +1228,43904,L'Atalante,"Capricious small-town girl Juliette and barge captain Jean marry after a whirlwind courtship, and she comes to live aboard his boat, L'Atalante. As they make their way down the Seine, Jean grows weary of Juliette's flirtations with his all-male crew, and Juliette longs to escape the monotony of the boat and experience the excitement of a big city. When she steals away to Paris by herself, her husband begins to think their marriage was a mistake.",1934-04-24,0.8395,7.527,437 +1229,10778,The Man Who Wasn't There,"A tale of murder, crime and punishment set in the summer of 1949. Ed Crane, a barber in a small California town, is dissatisfied with his life, but his wife Doris' infidelity and a mysterious opportunity presents him with a chance to change it.",2001-10-26,2.014,7.527,1639 +1230,5708,Control,"The story of Joy Division’s lead singer Ian Curtis, from his schoolboy days in 1973 to his suicide on the eve of the band's first American tour in 1980.",2007-09-12,1.7098,7.527,874 +1231,1949,Zodiac,"The Zodiac murders cause the lives of Paul Avery, David Toschi and Robert Graysmith to intersect.",2007-03-02,7.9903,7.527,10966 +1232,21542,Love Don't Co$t a Thing,A high school outcast pays a cheerleader to pose as his girlfriend so he can be considered cool.,2003-12-12,4.841,7.525,597 +1233,4553,The Machinist,"Trevor, an insomniac lathe operator, experiences unusual occurrences at work and home. A strange man follows him everywhere, but no one else seems to notice him.",2004-09-24,3.8702,7.5,5794 +1234,648,Beauty and the Beast,"The story of a gentle-hearted beast in love with a simple and beautiful girl. She is drawn to the repellent but strangely fascinating Beast, who tests her fidelity by giving her a key, telling her that if she doesn't return it to him by a specific time, he will die of grief. She is unable to return the key on time, but it is revealed that the Beast is the genuinely handsome one. A simple tale of tragic love that turns into a surreal vision of death, desire, and beauty.",1946-10-29,2.1098,7.525,631 +1235,58451,The Adventures of Pinocchio,"Mastro Geppetto is a poor carpenter with no wife and no children. The man is very lonely, and after trading a piece of wood with his colleague Mastro Ciliegia, decides to build himself a puppet to keep him company.",1972-12-21,0.5756,7.5,316 +1236,13696,Angels with Dirty Faces,"Childhood chums Rocky Sullivan and Jerry Connelly grow up on opposite sides of the fence: Rocky matures into a prominent gangster, while Jerry becomes a priest, tending to the needs of his old tenement neighborhood.",1938-11-26,1.204,7.524,330 +1237,11782,Hard Boiled,A cop who loses his partner in a shoot-out with gun smugglers goes on a mission to catch them. In order to get closer to the leaders of the ring he joins forces with an undercover cop who's working as a gangster hitman. They use all means of excessive force to find them.,1992-04-16,3.1189,7.527,845 +1238,575604,The Call,"Connected by phone in the same home but 20 years apart, a serial killer puts another woman’s past — and life — on the line to change her own fate.",2020-11-23,3.1116,7.523,889 +1239,575264,Mission: Impossible - Dead Reckoning Part One,"Ethan Hunt and his IMF team embark on their most dangerous mission yet: To track down a terrifying new weapon that threatens all of humanity before it falls into the wrong hands. With control of the future and the world's fate at stake and dark forces from Ethan's past closing in, a deadly race around the globe begins. Confronted by a mysterious, all-powerful enemy, Ethan must consider that nothing can matter more than his mission—not even the lives of those he cares about most.",2023-07-08,17.2686,7.523,4493 +1240,73456,Barbie: Princess Charm School,"Barbie stars as Blair Willows, a kind-hearted girl who is chosen to attend Princess Charm School: a magical, modern place that teaches dancing, how to have tea parties, and proper princess manners. Blair loves her classes -- as well as the helpful magical sprites and her new friends, Princesses Hadley and Isla. But when royal teacher Dame Devin discovers that Blair looks a lot like the kingdom’s missing princess, she turns Blair’s world upside down to stop her from claiming the throne. Now Blair, Hadley and Delancy must find an enchanted crown to prove Blair’s true identity in this charming and magical princess story!",2011-08-11,6.7551,7.523,838 +1241,59436,Midnight in Paris,"While on a trip to Paris with his fiancée's family, a nostalgic screenwriter finds himself mysteriously going back to the 1920s every day at midnight.",2011-05-11,4.1057,7.523,7462 +1242,4291,Kikujiro,"Brash, loudmouthed and opportunistic, Kikujiro is the unlikely companion for Masao who is determined to see the mother he has never met. The two begin a series of adventures which soon turns out to be a whimsical journey of laughter and tears with a wide array of surprises and unique characters along the way.",1999-06-05,2.6892,7.523,555 +1243,612706,Work It,A brilliant but clumsy high school senior vows to get into her late father's alma mater by transforming herself and a misfit squad into dance champions.,2020-08-07,2.0447,7.522,1186 +1244,16391,Black Narcissus,"A group of Anglican nuns, led by Sister Clodagh, are sent to a mountain in the Himalayas. The climate in the region is hostile and the nuns are housed in an odd old palace. They work to establish a school and a hospital, but slowly their focus shifts. Sister Ruth falls for a government worker, Mr. Dean, and begins to question her vow of celibacy. As Sister Ruth obsesses over Mr. Dean, Sister Clodagh becomes immersed in her own memories of love.",1947-05-26,1.9698,7.521,510 +1245,9495,The Crow,"Exactly one year after young rock guitarist Eric Draven and his fiancée are brutally killed by a ruthless gang of criminals, Draven, watched over by a hypnotic crow, returns from the grave to exact revenge.",1994-05-11,6.3693,7.523,4277 +1246,878361,Big George Foreman,"Fueled by an impoverished childhood, George Foreman channeled his anger into becoming an Olympic Gold medalist and World Heavyweight Champion, followed by a near-death experience that took him from the boxing ring to the pulpit. But when he sees his community struggling spiritually and financially, Foreman returns to the ring and makes history by reclaiming his title, becoming the oldest and most improbable World Heavyweight Boxing Champion ever.",2023-04-27,3.0014,7.521,316 +1247,982,The Manchurian Candidate,"Near the end of the Korean War, a platoon of U.S. soldiers is captured by communists and brainwashed. Following the war, the platoon is returned home, and Sergeant Raymond Shaw is lauded as a hero by the rest of his platoon. However, the platoon commander, Captain Bennett Marco, finds himself plagued by strange nightmares and soon races to uncover a terrible plot.",1962-10-24,2.7054,7.521,747 +1248,71883,Redline,"A daredevil driver is determined to compete in Redline, the most popular race in the galaxy. The race only occurs every five years, but in order to participate he must overcome the mafia, the government and even love.",2009-08-14,2.1651,7.5,507 +1249,10161,My Left Foot: The Story of Christy Brown,"No one expects much from Christy Brown, a boy with cerebral palsy born into a working-class Irish family. Though Christy is a spastic quadriplegic and essentially paralyzed, a miraculous event occurs when, at the age of 5, he demonstrates control of his left foot by using chalk to scrawl a word on the floor. With the help of his steely mother — and no shortage of grit and determination — Christy overcomes his infirmity to become a painter, poet and author.",1989-04-07,2.1336,7.52,960 +1250,269,Breathless,"A small-time thief steals a car and impulsively murders a motorcycle policeman. Wanted by the authorities, he attempts to persuade a girl to run away to Italy with him.",1960-03-16,3.0581,7.52,1891 +1251,614409,To All the Boys: Always and Forever,Senior year of high school takes center stage as Lara Jean returns from a family trip to Korea and considers her college plans — with and without Peter.,2021-02-12,3.2106,7.519,1989 +1252,475888,Tell It to the Bees,"Dr. Jean Markham returns to the town she left as a teenager to take over her late father's medical practice. When a school-yard scuffle lands Charlie in her surgery, she invites him to visit the hives in her garden and tell his secrets to the bees, as she once did. The new friendship between the boy and the bee keeper brings his mother Lydia into Jean's world.",2018-09-09,2.2382,7.519,458 +1253,592,The Conversation,"A paranoid, secretive surveillance expert has a crisis of conscience when he suspects that the couple he is spying on will be murdered.",1974-04-07,3.294,7.5,1878 +1254,586810,Mars Express,"In 2200, private detective Aline Ruby and her android partner Carlos Rivera are hired by a wealthy businessman to track down a notorious hacker. On Mars, they descend deep into the underbelly of the planet's capital city where they uncover a darker story of brain farms, corruption, and a missing girl who holds a secret about the robots that threatens to change the face of the universe.",2023-11-22,1.8548,7.518,414 +1255,615,The Passion of the Christ,A graphic portrayal of the last twelve hours of Jesus of Nazareth's life.,2004-02-25,7.0765,7.518,4892 +1256,571,The Birds,Thousands of birds flock into a seaside town and terrorize the residents in a series of deadly attacks.,1963-03-28,3.8509,7.518,4248 +1257,566525,Shang-Chi and the Legend of the Ten Rings,Shang-Chi must confront the past he thought he left behind when he is drawn into the web of the mysterious Ten Rings organization.,2021-09-01,12.581,7.517,9868 +1258,470878,I Can Only Imagine,"Growing up in Greenville, Texas, Bart Millard suffers physical and emotional abuse at the hands of his father, Arthur. When Arthur becomes terminally ill, he finds redemption by embracing his faith and rediscovering his love for his son. Years later, Bart's troubled childhood and mended relationship with his dad inspires him to write the hit song ""I Can Only Imagine"" as singer of the Christian band MercyMe.",2018-02-14,2.9652,7.5,482 +1259,339,Night on Earth,An anthology of 5 different cab drivers in 5 American and European cities and their remarkable fares on the same eventful night.,1991-12-12,2.2585,7.517,966 +1260,556901,Teen Titans Go! vs. Teen Titans,"The comedic modern-day quintet takes on their 2003 counterparts when villains from each of their worlds join forces to pit the two Titan teams against each other. They'll need to set aside their differences and work together to combat Trigon, Hexagon, Santa Claus (that's right, Santa!) and time itself in order to save the multiverse.",2019-07-21,2.1661,7.516,501 +1261,552095,PAW Patrol: Mighty Pups,"When their latest scheme goes awry, Mayor Humdinger and his nephew Harold accidentally divert a meteor towards Adventure Bay. The meteor's golden energy grants the PAW Patrol superpowers. The heroic Mighty Pups are on a roll to super-save the day.",2018-10-04,2.8608,7.516,582 +1262,433471,Lou,A Pixar short about a lost-and-found box and the unseen monster within.,2017-06-16,0.6373,7.516,405 +1263,7549,Fearless,"Huo Yuan Jia became the most famous martial arts fighter in all of China at the turn of the 20th Century. Huo faced personal tragedy but ultimately fought his way out of darkness, defining the true spirit of martial arts and also inspiring his nation. The son of a great fighter who didn't wish for his child to follow in his footsteps, Huo resolves to teach himself how to fight - and win.",2006-01-26,3.213,7.516,1327 +1264,828613,About Fate,"Two strangers believe in love but never seem to be able to find its true meaning. In a wild twist of events, fate puts each in the other's path on one stormy New Year's Eve.",2022-09-08,2.6483,7.515,461 +1265,16633,Somewhere in Time,"Young writer Richard Collier is met on the opening night of his first play by an old lady who begs him to ""Come back to me"". Mystified, he tries to find out about her, and learns that she is a famous stage actress from the early 1900s. Becoming more and more obsessed with her, by self-hypnosis he manages to travel back in time—where he meets her.",1980-10-02,2.6727,7.515,616 +1266,11046,Where Eagles Dare,"World War II is raging, and an American general has been captured and is being held hostage in the Schloss Adler, a Bavarian castle that's nearly impossible to breach. It's up to a group of skilled Allied soldiers to liberate the general before it's too late.",1968-12-04,3.7128,7.515,922 +1267,7500,Sonatine,"Murakawa, an aging Tokyo yakuza tiring of gangster life, is sent by his boss to Okinawa along with a few of his henchmen to help end a gang war, supposedly as mediators between two warring clans. He finds that the dispute between the clans is insignificant and whilst wondering why he was sent to Okinawa at all, his group is attacked in an ambush. The survivors flee and make a decision to lay low at the beach while they await further instructions.",1993-09-10,2.4619,7.514,654 +1268,776,The Rules of the Game,A weekend at a marquis’ country château lays bare some ugly truths about a group of haut bourgeois acquaintances.,1939-07-09,1.8512,7.515,617 +1269,9340,The Goonies,Young teen Mikey Walsh and his friends set off on a quest to find Pirate One-Eyed Willie's treasure in hopes of saving their homes from demolition.,1985-06-07,8.3389,7.514,5907 +1270,601,E.T. the Extra-Terrestrial,"An alien is left behind on Earth and saved by the 10-year-old Elliot who decides to keep him hidden in his home. While a task force hunts for the extra-terrestrial, Elliot, his brother, and his little sister Gertie form an emotional bond with their new friend, and try to help him find his way home.",1982-06-11,8.3338,7.5,11499 +1271,221,Rebel Without a Cause,"After moving to a new town, troublemaking teen Jim Stark is supposed to have a clean slate, although being the new kid in town brings its own problems. While searching for some stability, Stark forms a bond with a disturbed classmate, Plato, and falls for local girl Judy. However, Judy is the girlfriend of neighborhood tough, Buzz. When Buzz violently confronts Jim and challenges him to a drag race, the new kid's real troubles begin.",1955-10-27,2.6716,7.5,1676 +1272,921655,Rescued by Ruby,"Chasing his dream to join an elite K-9 unit, a state trooper partners with a fellow underdog: clever but naughty shelter pup Ruby. Based on a true story.",2022-03-17,1.3052,7.513,334 +1273,176241,Prison Break: The Final Break,"Prison Break: The Movie. Michael and Sara wed, but the happiness is short-lived when the Feds apprehend her for the murder of Michael's mother, Christina. Once a hit is ordered on Sara, the team reunite to break out the increasingly vulnerable target.",2009-09-10,4.7193,7.513,689 +1274,76696,Sidewalls,"Martin is a neurotic web designer taking baby steps out of the isolation of his one-room apartment and his virtual reality. Mariana is an artist fresh out of a a long relationship. They are perfect for each other, live on the same street, in opposite buildings, but they never meet. Can the movement of a modern city of three million people bring them together?",2011-06-01,1.0098,7.513,304 +1275,15371,Lupin the Third: The Castle of Cagliostro,"After a successful robbery leaves famed thief Lupin the Third and his partner Jigen with nothing but a large amount of expertly crafted counterfeit bills, he decides to track down the forgers responsible—and steal any other treasures he may find in the Castle of Cagliostro, including the 'damsel in distress' he finds imprisoned there.",1979-07-06,3.0588,7.5,1069 +1276,10734,Escape from Alcatraz,"San Francisco Bay, January 18, 1960. Frank Lee Morris is transferred to Alcatraz, a maximum security prison located on a rocky island. Although no one has ever managed to escape from there, Frank and other inmates begin to carefully prepare an escape plan.",1979-06-22,6.1205,7.513,2944 +1277,491418,Instant Family,"When Pete and Ellie decide to start a family, they stumble into the world of foster care adoption. They hope to take in one small child but when they meet three siblings, including a rebellious 15 year old girl, they find themselves speeding from zero to three kids overnight.",2018-11-13,4.7462,7.512,3082 +1278,451657,Custody,"Miriam and Antoine have recently separated. While she’s willing to permit their 17-year-old daughter Josephine to decide living arrangements for herself, Miriam is desperate to keep her youngest, 11-year-old Julien, away from his father. But the magistrate rules in favour of joint custody, and suddenly the boy is thrown directly into the middle of an escalating parental conflict, where it seems inevitable that sides must be chosen.",2018-02-07,0.997,7.512,682 +1279,382614,The Book of Henry,"Susan, a single mother of two, works as a waitress in a small town. Her son, Henry, is an 11-year-old genius who not only manages the family finances but acts as emotional support for his mother and younger brother. When Henry discovers that the girl next door has a terrible secret, he implores Susan to take matters into her own hands.",2017-06-16,2.4417,7.512,1313 +1280,780382,The Wolf and the Lion,"After her grandfather's death, 20-year-old Alma decides to go back to her childhood home - a little island in the heart of the majestic Canadian forest. Whilst there, she rescues two helpless cubs: a wolf and a lion. They forge an inseparable bond, but their world soon collapses as the forest ranger discovers the animals and takes them away. The two cub brothers must now embark on a treacherous journey across Canada to be reunited with one another and Alma once more.",2021-10-13,2.07,7.5,479 +1281,626872,Emergency Declaration,"While investigating a terroristic threat that goes viral online, Korean authorities discover that a suspect has recently boarded an international flight bound for the United States. When a healthy passenger on the same flight suddenly dies a gruesome death of unknown cause, panic erupts both in-flight and on the ground. With steadily decreasing fuel and international refusals to offer aid, the captain and crew will be forced to take unprecedented emergency measures in an attempt to save the lives of their passengers.",2022-08-03,3.1226,7.511,392 +1282,3116,Midnight Cowboy,"Joe Buck is a wide-eyed hustler from Texas hoping to score big with wealthy New York City women; he finds a companion in Enrico ""Ratso"" Rizzo, an ailing swindler with a bum leg and a quixotic fantasy of escaping to Florida.",1969-05-25,5.1124,7.51,1498 +1283,607259,Fatherhood,"A widowed new dad copes with doubts, fears, heartache and dirty diapers as he sets out to raise his daughter on his own. Inspired by a true story.",2021-06-18,2.537,7.509,1466 +1284,10110,Empire of the Sun,"Jamie Graham, a privileged English boy, is living in Shanghai when the Japanese invade and force all foreigners into prison camps. Jamie is captured with an American sailor, who looks out for him while they are in the camp together. Even though he is separated from his parents and in a hostile environment, Jamie maintains his dignity and youthful spirit, providing a beacon of hope for the others held captive with him.",1987-12-09,3.1255,7.509,2007 +1285,966,The Magnificent Seven,An oppressed Mexican peasant village hires seven gunfighters to help defend their homes.,1960-10-12,6.5838,7.509,1867 +1286,1786,Au Revoir les Enfants,"Au revoir les enfants tells a heartbreaking story of friendship and devastating loss concerning two boys living in Nazi-occupied France. At a provincial Catholic boarding school, the precocious youths enjoy true camaraderie—until a secret is revealed. Based on events from writer-director Malle’s own childhood, the film is a subtle, precisely observed tale of courage, cowardice, and tragic awakening.",1987-10-07,2.6001,7.508,678 +1287,13413,BURN·E,What lengths will a robot undergo to do his job? BURN·E is a dedicated hard working robot who finds himself locked out of his ship. BURN·E quickly learns that completing a simple task can often be a very difficult endeavor.,2008-11-17,2.2911,7.507,763 +1288,11841,The 36th Chamber of Shaolin,"During the Qing Dynasty, a fishmonger is killed by the reigning Manchu government for supporting the anti-government movement; his son manages to escape to Shaolin Temple, where he plans to learn its secretive brand of martial arts to seek revenge.",1978-02-02,1.6929,7.5,455 +1289,11506,The Silence,"Traveling through an unnamed European country on the brink of war, sickly, intellectual Ester, her sister Anna and Anna's young son, Johan, check into a near-empty hotel. A basic inability to communicate among the three seems only to worsen during their stay. Anna provokes her sister by enjoying a dalliance with a local man, while the boy, left to himself, has a series of enigmatic encounters that heighten the growing air of isolation.",1963-09-23,1.19,7.5,376 +1290,229,Bride of Frankenstein,"Dr. Frankenstein and his monster both turn out to be alive, not killed as previously believed. Dr. Frankenstein wants to get out of the evil experiment business, but when a mad scientist, Dr. Pretorius, kidnaps his wife, Dr. Frankenstein agrees to help him create a new creature.",1935-04-20,2.5704,7.5,1032 +1291,132344,Before Midnight,"It has been nine years since we last met Jesse and Celine, the French-American couple who once met on a train in Vienna. They now live in Paris with twin daughters but have spent a summer in Greece at the invitation of an author colleague of Jesse's. When the vacation is over and Jesse must send his teenage son off to the States, he begins to question his life decisions, and his relationship with Celine is at risk.",2013-04-05,2.5062,7.5,2513 +1292,6620,Sabrina,"Linus and David Larrabee are the two sons of a very wealthy family. Linus is all work – busily running the family corporate empire, he has no time for a wife and family. David is all play – technically he is employed by the family business, but never shows up for work, spends all his time entertaining, and has been married and divorced three times. Meanwhile, Sabrina Fairchild is the young, shy, and awkward daughter of the household chauffeur, who goes away to Paris for two years, and returns to capture David's attention, while falling in love with Linus.",1954-09-01,3.0308,7.5,1284 +1293,588228,The Tomorrow War,"The world is stunned when a group of time travelers arrive from the year 2051 to deliver an urgent message: Thirty years in the future, mankind is losing a global war against a deadly alien species. The only hope for survival is for soldiers and civilians from the present to be transported to the future and join the fight. Among those recruited is high school teacher and family man Dan Forester. Determined to save the world for his young daughter, Dan teams up with a brilliant scientist and his estranged father in a desperate quest to rewrite the fate of the planet.",2021-09-03,12.5919,7.505,3784 +1294,179144,The Great Beauty,"Jep Gambardella has seduced his way through the lavish nightlife of Rome for decades, but after his 65th birthday and a shock from the past, Jep looks past the nightclubs and parties to find a timeless landscape of absurd, exquisite beauty.",2013-05-21,2.1847,7.505,3182 +1295,16328,Johnny Got His Gun,"A young American soldier, rendered in pseudocoma from an artillery shell from WWI, recalls his life leading up to that point.",1971-08-04,1.5456,7.505,393 +1296,2034,Training Day,"On his first day on the job as a narcotics officer, a rookie cop works with a rogue detective who isn't what he appears.",2001-10-05,5.7011,7.505,6197 +1297,430,"One, Two, Three","C.R. MacNamara is a managing director for Coca Cola in West Berlin during the Cold War, just before the Wall is put up. When Scarlett, the rebellious daughter of his boss, comes to West Berlin, MacNamara has to look after her, but this turns out to be a difficult task when she reveals to be married to a communist.",1961-12-15,1.2272,7.505,394 +1298,483983,Balloon,"Two families attempt a daredevil plan to escape the GDR with a homemade hot air balloon, but it crashes just before the border. The Stasi finds traces of this attempt to escape and immediately starts investigations, while the two families are forced to build a new escape balloon. With each passing day the Stasi is closer on their heels – a nerve-wracking race against time begins.",2018-09-27,1.8236,7.504,446 +1299,375262,The Favourite,"England, early 18th century. The close relationship between Queen Anne and Sarah Churchill is threatened by the arrival of Sarah's cousin, Abigail Hill, resulting in a bitter rivalry between the two cousins to be the Queen's favourite.",2018-11-23,3.1942,7.504,5653 +1300,21734,Shadow of a Doubt,"Just when Charlie is feeling especially frustrated by the lack of excitement in her small town in California, she receives wonderful news: Her uncle and namesake, Charlie, is coming to visit. However, as secrets about him come to the fore, her admiration turns into suspicion.",1943-01-15,2.5798,7.504,1077 +1301,13353,"It's the Great Pumpkin, Charlie Brown","Join the Peanuts gang for a timeless adventure as Charlie Brown preps for a party, Snoopy sets his sights on the Red Baron, and Linus patiently awaits a pumpkin patch miracle.",1966-10-27,1.4737,7.504,427 +1302,11113,My Fair Lady,A snobbish phonetics professor agrees to a wager that he can take a flower girl and make her presentable in high society.,1964-10-21,2.8576,7.504,1358 +1303,5143,Hannah and Her Sisters,"Between two Thanksgivings, Hannah's husband falls in love with her sister Lee, while her hypochondriac ex-husband rekindles his relationship with her sister Holly.",1986-02-07,2.2041,7.504,1083 +1304,8073,Band of Outsiders,"Cinephile slackers Franz and Arthur spend their days mimicking the antiheroes of Hollywood noirs and Westerns while pursuing the lovely Odile. The misfit trio upends convention at every turn, be it through choreographed dances in cafés or frolicsome romps through the Louvre. Eventually, their romantic view of outlaws pushes them to plan their own heist, but their inexperience may send them out in a blaze of glory -- which could be just what they want.",1964-08-05,1.7187,7.5,584 +1305,11686,Love and Death,"In czarist Russia, a neurotic soldier and his distant cousin formulate a plot to assassinate Napoleon.",1975-06-10,1.754,7.502,925 +1306,9516,Menace II Society,A young street hustler attempts to escape the rigors and temptations of the ghetto in a quest for a better life.,1993-05-26,2.8304,7.502,808 +1307,330459,Rogue One: A Star Wars Story,A rogue band of resistance fighters unite for a mission to steal the Death Star plans and bring a new hope to the galaxy.,2016-12-14,7.021,7.501,15786 +1308,10787,The Invisible Man,"After experimenting on himself and becoming invisible, scientist Jack Griffin, now aggressive due to the drug's effects, seeks a way to reverse the experiment at any cost.",1933-11-03,2.8396,7.501,888 +1309,786,Almost Famous,"In 1973, 15-year-old William Miller's unabashed love of music and aspiration to become a rock journalist lands him an assignment from Rolling Stone magazine to interview and tour with the up-and-coming band, Stillwater.",2000-09-15,5.3317,7.5,2903 +1310,69,Walk the Line,"A chronicle of country music legend Johnny Cash's life, from his early days on an Arkansas cotton farm to his rise to fame with Sun Records in Memphis, where he recorded alongside Elvis Presley, Jerry Lee Lewis and Carl Perkins.",2005-09-13,3.6852,7.501,2980 +1311,40823,The Man Who Copied,"A young photocopier operator becomes infatuated with his neighbor and, unable to afford anything from her shop, turns to shady schemes to make money.",2003-06-13,0.6514,7.5,355 +1312,16642,Days of Heaven,"In 1916, a Chicago steel worker accidentally kills his supervisor and flees to the Texas panhandle with his girlfriend and little sister to work harvesting wheat in the fields of a stoic farmer.",1978-09-13,2.1879,7.5,1078 +1313,599521,Z-O-M-B-I-E-S 2,"Zed and Addison are back at Seabrook High, where, after a groundbreaking semester, they continue to steer both their school and community toward unity. But the arrival of a new group of outsiders – mysterious werewolves – threatens to shake up the newfound peace and causes a rift in Zed and Addison’s budding romance.",2020-06-13,3.9838,7.499,476 +1314,503919,The Lighthouse,Two lighthouse keepers try to maintain their sanity while living on a remote and mysterious New England island in the 1890s.,2019-10-18,4.1905,7.498,5184 +1315,20875,Operation Y and Other Shurik's Adventures,"The film consists of three independent parts: ""Workmate"", ""Déjà vu"" and ""Operation Y"". The plot follows the adventures of Shurik (alternative spelling — Shourick), the naive and nerdy Soviet student who often gets into ludicrous situations but always finds a way out very neatly. ""Operation Y and Shurik's Other Adventures"" was a hit movie and became the leader of Soviet film distribution in 1965.",1965-07-24,1.8772,7.499,485 +1316,10843,After Hours,"Desperate to escape his mind-numbing routine, uptown Manhattan office worker Paul Hackett ventures downtown for a hookup with a mystery woman.",1985-09-13,2.9506,7.5,1582 +1317,10377,My Cousin Vinny,"Two carefree pals from Brooklyn traveling through rural Alabama on their way back to college are mistakenly arrested, and charged with murder. Fortunately, one of them has a cousin who's a lawyer - Vincent Gambini, a former auto mechanic from Brooklyn who just passed his bar exam after his sixth try. When he arrives with his leather-clad girlfriend, to try his first case, it's a real shock - for him and the Deep South!",1992-03-13,3.4999,7.499,1687 +1318,145,Breaking the Waves,"In a small and conservative Scottish village, a woman's paralytic husband convinces her to have extramarital intercourse so she can tell him about it and give him a reason for living.",1996-07-05,2.4362,7.499,1046 +1319,79,Hero,"During China's Warring States period, a district prefect arrives at the palace of Qin Shi Huang, claiming to have killed the three assassins who had made an attempt on the king's life three years ago.",2002-07-22,4.8572,7.499,2337 +1320,332562,A Star Is Born,"Seasoned musician Jackson Maine discovers — and falls in love with — struggling artist Ally. She has just about given up on her dream to make it big as a singer — until Jack coaxes her into the spotlight. But even as Ally's career takes off, the personal side of their relationship is breaking down, as Jack fights an ongoing battle with his own internal demons.",2018-10-03,7.1033,7.498,11893 +1321,258480,Carol,"In 1950s New York, a department-store clerk who dreams of a better life falls for an older, married woman.",2015-11-20,4.0725,7.498,3802 +1322,11970,Hercules,"Bestowed with superhuman strength, a young mortal named Hercules sets out to prove himself a hero in the eyes of his father, the great god Zeus. Along with his friends Pegasus, a flying horse, and Phil, a personal trainer, Hercules is tricked by the hilarious, hotheaded villain Hades, who's plotting to take over Mount Olympus!",1997-06-13,8.7376,7.498,7662 +1323,1859,Ninotchka,A stern Russian woman sent to Paris on official business finds herself attracted to a man who represents everything she is supposed to detest.,1939-11-23,1.5132,7.498,400 +1324,983,The Man Who Would Be King,"A robust adventure about two British adventurers who take over primitive Kafiristan as ""godlike"" rulers, meeting a tragic end through their desire for a native girl. Based on a short story by Rudyard Kipling.",1975-12-03,2.0143,7.498,665 +1325,25934,"To Sir, with Love","A British Guianese engineer starts a job as a high school teacher in London’s East End, where his uninterested and delinquent pupils are in desperate need of attention and care.",1967-06-14,1.5205,7.497,325 +1326,15917,Devdas,"In 1900s India, Calcuttan zamindar Devdas Mukherjee — unable to marry his lover — takes up alcohol and the company of a courtesan to alleviate the pain.",2002-07-11,2.0145,7.497,354 +1327,544510,"Cyrano, My Love","Paris, France, December 1897. The young playwright Edmond Rostand feels like a failure. Inspiration has abandoned him. Married and father of two children, desperate and penniless, he persuades the great actor Constant Coquelin to perform the main role in his new play. But there is a problem: Coquelin wants to premiere it at Christmas and Edmond has not written a single word.",2018-11-10,1.7252,7.496,512 +1328,500664,Upgrade,"A brutal mugging leaves Grey Trace paralyzed in the hospital and his beloved wife dead. A billionaire inventor soon offers Trace a cure — an artificial intelligence implant called STEM that will enhance his body. Now able to walk, Grey finds that he also has superhuman strength and agility — skills he uses to seek revenge against the thugs who destroyed his life.",2018-05-31,10.9451,7.496,4640 +1329,25468,My Dinner with Andre,"Wally, a struggling playwright and actor, reluctantly agrees to catch up with his old friend Andre, a theater director who disappeared several years prior in order to travel the world. Meeting at a posh Manhattan restaurant, the two share life stories, anecdotes and philosophical musings over the course of an evening meal.",1981-10-11,1.2711,7.5,417 +1330,1051,The French Connection,Tough narcotics detective 'Popeye' Doyle is in hot pursuit of a suave French drug dealer who may be the key to a huge heroin-smuggling operation.,1971-10-09,3.2259,7.496,1986 +1331,923,Dawn of the Dead,"During an ever-growing epidemic of zombies that have risen from the dead, two Philadelphia SWAT team members, a traffic reporter, and his television-executive girlfriend seek refuge in a secluded shopping mall.",1978-09-02,3.7824,7.5,2173 +1332,192,The Name of the Rose,"14th-century Franciscan monk William of Baskerville and his young novice arrive at a conference to find that several monks have been murdered under mysterious circumstances. To solve the crimes, William must rise up against the Church's authority and fight the shadowy conspiracy of monastery monks using only his intelligence; which is considerable.",1986-09-24,3.7406,7.496,3143 +1333,551332,The Two Popes,"Frustrated with the direction of the church, Cardinal Bergoglio requests permission to retire in 2012 from Pope Benedict. Instead, facing scandal and self-doubt, the introspective Pope Benedict summons his harshest critic and future successor to Rome to reveal a secret that would shake the foundations of the Catholic Church.",2019-11-27,3.0849,7.495,2993 +1334,468284,The Insult,"After an emotional exchange between a Lebanese Christian and a Palestinian refugee escalates, the men end up in a court case that gets national attention.",2017-09-14,1.054,7.5,460 +1335,203833,The Book Thief,"While subjected to the horrors of WWII Germany, young Liesel finds solace by stealing books and sharing them with others. Under the stairs in her home, a Jewish refugee is being sheltered by her adoptive parents.",2013-11-08,3.8013,7.495,4404 +1336,85350,Boyhood,"The film tells a story of a divorced couple trying to raise their young son. The story follows the boy for twelve years, from first grade at age 6 through 12th grade at age 17-18, and examines his relationship with his parents as he grows.",2014-06-05,3.2512,7.5,5302 +1337,11978,Men of Honor,"Against formidable odds -- and an old-school diving instructor embittered by the U.S. Navy's new, less prejudicial policies -- Carl Brashear sets his sights on becoming the Navy's first African-American master diver in this uplifting true story. Their relationship starts out on the rocks, but fate ultimately conspires to bring the men together into a setting of mutual respect, triumph and honor.",2000-09-13,5.0926,7.495,2375 +1338,345938,The Shack,"A grieving man receives a mysterious, personal invitation to meet with God at a place called 'The Shack'.",2017-03-03,5.794,7.494,2192 +1339,31682,The Incredible Shrinking Man,"A dangerous combination of radiation and insecticide causes the unfortunate Scott Carey to shrink, slowly but surely, until he is only a few inches tall. His home becomes a wilderness where he must survive everything from spiders living in the cellar to his beloved cat.",1957-02-22,1.7705,7.494,519 +1340,16958,The Asphalt Jungle,"Recently paroled from prison, legendary burglar ""Doc"" Riedenschneider, with funding from Alonzo Emmerich, a crooked lawyer, gathers a small group of veteran criminals together in the Midwest for a big jewel heist.",1950-05-12,1.5506,7.494,500 +1341,14919,Batman: Mask of the Phantasm,"Andrea Beaumont leaves her father to return to Gotham, rekindling an old romance with Bruce Wayne. At the same time, a mysterious figure begins to hunt down Gotham's criminals, wrongly implicating Batman in the murders. Now on the run from the law, Batman must find and stop the culprit, while also navigating his relationship with Andrea.",1993-12-25,3.644,7.5,1161 +1342,8321,In Bruges,"Ray and Ken, two hit men, are in Bruges, Belgium, waiting for their next mission. While they are there they have time to think and discuss their previous assignment. When the mission is revealed to Ken, it is not what he expected.",2008-02-08,3.8388,7.494,5400 +1343,620,Ghostbusters,"After losing their academic posts at a prestigious university, a team of parapsychologists goes into business as proton-pack-toting ""ghostbusters"" who exterminate ghouls, hobgoblins and supernatural pests of all stripes. An ad campaign pays off when a knockout cellist hires the squad to purge her swanky digs of demons that appear to be living in her refrigerator.",1984-06-08,7.631,7.5,9305 +1344,364137,All Three of Us,"An Iranian family survives the shah and the ayatollah and moves to France. This story follows the family through it all. Despite the politics, revolution, prison, beatings, assassinations and suicides this is a comedy.",2015-11-04,0.5137,7.493,497 +1345,63311,The Skin I Live In,A brilliant plastic surgeon creates a synthetic skin that withstands any kind of damage. His guinea pig: a mysterious and volatile woman who holds the key to his obsession.,2011-08-17,11.4668,7.493,4390 +1346,12169,The First Day of the Rest of Your Life,A sprawling drama centered on five key days in a family's life.,2008-07-23,1.4803,7.493,487 +1347,3001,How to Steal a Million,A woman must steal a statue from a Paris museum to help conceal her father's art forgeries.,1966-07-13,2.108,7.494,619 +1348,1368,First Blood,"When former Green Beret John Rambo is harassed by local law enforcement and arrested for vagrancy, he is forced to flee into the mountains and wage an escalating one-man war against his pursuers.",1982-10-22,7.4757,7.5,6528 +1349,487558,BlacKkKlansman,"Colorado Springs, late 1970s. Ron Stallworth, an African American police officer, and Flip Zimmerman, his Jewish colleague, run an undercover operation to infiltrate the Ku Klux Klan.",2018-08-09,4.4021,7.492,7747 +1350,31216,I Can't Think Straight,"Tala, a London-based Palestinian, is preparing for her elaborate Middle Eastern wedding when she meets Leyla, a young British Indian woman who is dating her best friend. Spirited Christian Tala and shy Muslim Leyla could not be more different from each other, but the attraction is immediate and goes deeper than friendship. But Tala is not ready to accept the implications of the choice her heart has made for her and escapes back to Jordan, while Leyla tries to move on with her new-found life, to the shock of her tradition-loving parents. As Tala's wedding day approaches, simmering tensions come to boiling point and the pressure mounts for Tala to be true to herself.",2008-06-01,1.4979,7.492,321 +1351,16858,All That Jazz,"Joe Gideon is at the top of the heap, one of the most successful directors and choreographers in musical theater. But he can feel his world slowly collapsing around him - his obsession with work has almost destroyed his personal life, and only his bottles of pills keep him going.",1979-12-16,1.4823,7.492,538 +1352,13528,Gaslight,A newlywed fears she's going mad when strange things start happening at the family mansion.,1944-05-04,2.6513,7.5,509 +1353,176983,One Piece Film: Z,"Zephyr, now known as Z, rides the seas with only one goal: Destroy all pirates and their dreams at becoming King of Pirates. When Luffy and his crew encounter him at sea, not only are they utterly defeated by the man with an arm made of Seastone, Nami, Robin, and Chopper are turned 10 years younger due to Z's minion Ain. Luffy is so determined to win against him that he does not even notice Z's master plan that could sacrifice thousands of lives.",2012-12-15,3.0012,7.5,533 +1354,3529,The Thin Man,A husband and wife detective team takes on the search for a missing inventor and almost get killed for their efforts.,1934-05-25,1.1747,7.5,493 +1355,522,Ed Wood,"The mostly true story of the legendary ""worst director of all time"", who, with the help of his strange friends, filmed countless B-movies without ever becoming famous or successful.",1994-09-28,2.819,7.5,2395 +1356,916405,The Quiet Girl,"A quiet, neglected girl is sent away from her dysfunctional family to live with relatives for the summer. She blossoms in their care, but in this house where there are meant to be no secrets, she discovers one.",2022-05-12,1.398,7.5,482 +1357,810171,The Valet,"World famous movie star Olivia faces a PR disaster when a paparazzi snaps a photo of her with her married lover, Vincent. The hard-working valet Antonio accidentally appears in the same photo and is enlisted to pose as Olivia’s new boyfriend as a cover-up. This ruse with Olivia thrusts Antonio into the spotlight and unexpected chaos.",2022-05-11,7.1846,7.49,597 +1358,18900,In Cold Blood,"After a botched robbery results in the brutal murder of a rural family, two drifters elude police, in the end coming to terms with their own mortality and the repercussions of their vile atrocity.",1967-12-15,1.9905,7.5,399 +1359,11610,"Play It Again, Sam","A neurotic film critic obsessed with the movie Casablanca (1942) attempts to get over his wife leaving him by dating again with the help of a married couple and his illusory idol, Humphrey Bogart.",1972-05-04,1.0143,7.49,607 +1360,196,Back to the Future Part III,"The final installment finds Marty digging the trusty DeLorean out of a mineshaft and looking for Doc in the Wild West of 1885. But when their time machine breaks down, the travelers are stranded in a land of spurs. More problems arise when Doc falls for pretty schoolteacher Clara Clayton, and Marty tangles with Buford Tannen.",1990-05-25,7.3281,7.49,10982 +1361,383498,Deadpool 2,Wisecracking mercenary Deadpool battles the evil and powerful Cable and other bad guys to save a boy's life.,2018-05-15,10.8382,7.489,18524 +1362,22538,Scott Pilgrim vs. the World,"As bass guitarist for a garage-rock band, Scott Pilgrim has never had trouble getting a girlfriend; usually, the problem is getting rid of them. But when Ramona Flowers skates into his heart, he finds she has the most troublesome baggage of all: an army of ex-boyfriends who will stop at nothing to eliminate him from her list of suitors.",2010-08-12,5.41,7.489,8151 +1363,216156,Still Life,A council case worker looks for the relatives of those found dead and alone.,2013-11-28,1.5196,7.488,378 +1364,11906,Suspiria,An American newcomer to a prestigious German ballet academy comes to realize that the school is a front for something sinister amid a series of grisly murders.,1977-02-01,3.5521,7.488,3025 +1365,475,Bonnie and Clyde,"In the 1930s, bored waitress Bonnie Parker falls in love with an ex-con named Clyde Barrow and together they start a violent crime spree through the country, stealing cars and robbing banks.",1967-08-13,3.9489,7.488,1688 +1366,34106,You Can't Take It with You,"Alice, the only relatively normal member of the eccentric Sycamore family, falls in love with Tony Kirby, but his wealthy banker father and snobbish mother strongly disapprove of the match. When the Kirbys are invited to dinner to become better acquainted with their future in-laws, things don't turn out the way Alice had hoped.",1938-09-01,1.885,7.5,418 +1367,614934,Elvis,"The life story of Elvis Presley as seen through the complicated relationship with his enigmatic manager, Colonel Tom Parker.",2022-06-22,4.3096,7.486,3635 +1368,8342,No Man's Land,"Two soldiers from opposite sides get stuck between the front lines in the same trench. The UN is asked to free them and both sides agree on a ceasefire, but will they stick to it?",2001-05-12,0.9382,7.486,461 +1369,7735,The Wave,A school teacher discusses types of government with his class. His students find it too boring to repeatedly go over national socialism and believe that dictatorship cannot be established in modern Germany. He starts an experiment to show how easily the masses can become manipulated.,2008-03-13,3.1849,7.486,3444 +1370,436969,The Suicide Squad,"Supervillains Harley Quinn, Bloodsport, Peacemaker and a collection of nutty cons at Belle Reve prison join the super-secret, super-shady Task Force X as they are dropped off at the remote, enemy-infused island of Corto Maltese.",2021-06-06,14.1027,7.485,9023 +1371,13377,How the Grinch Stole Christmas!,"Bitter and hateful, the Grinch is irritated at the thought of a nearby village having a happy time celebrating Christmas. Disguised as Santa Claus, with his dog made to look like a reindeer, he decides to raid the village to steal all the Christmas things.",1966-12-18,1.7326,7.485,1070 +1372,848685,The Beasts,"Antoine and Olga, a French couple, have been living in a small village in Galicia for a long time. They practice eco-responsible agriculture and restore abandoned houses to facilitate repopulation. Everything should be idyllic but for their opposition to a wind turbine project that creates a serious conflict with their neighbors. The tension will rise to the point of irreparability.",2022-07-20,1.9147,7.484,805 +1373,37903,The White Ribbon,An aged tailor recalls his life as the schoolteacher of a small village in Northern Germany that was struck by a series of strange events in the year leading up to WWI.,2009-09-24,2.8032,7.483,1063 +1374,530,A Grand Day Out,"Wallace and Gromit have run out of cheese, and this provides an excellent excuse for the duo to take their holiday to the moon, where, as everyone knows, there is ample cheese. Preserved by the Academy Film Archive.",1990-05-18,2.1266,7.483,944 +1375,75233,"Oslo, August 31st","One day in the life of Anders, a young recovering drug addict, who takes a brief leave from his treatment center to interview for a job and catch up with old friends in Oslo.",2011-08-31,1.7256,7.5,460 +1376,345,Eyes Wide Shut,"After Dr. Bill Harford's wife, Alice, admits to having sexual fantasies about a man she met, Bill becomes obsessed with having a sexual encounter. He discovers an underground sexual group and attends one of their meetings -- and quickly discovers that he is in over his head.",1999-07-16,9.4943,7.482,6524 +1377,186,Lucky Number Slevin,"Slevin is mistakenly put in the middle of a personal war between the city’s biggest criminal bosses. Under constant watch, Slevin must try not to get killed by an infamous assassin and come up with an idea of how to get out of his current dilemma.",2006-02-24,4.0662,7.482,4217 +1378,586940,I Lost My Body,"A story of Naoufel, a young man who is in love with Gabrielle. In another part of town, a severed hand escapes from a dissection lab, determined to find its body again.",2019-11-06,1.504,7.481,1283 +1379,74879,Once Upon a Time in Anatolia,"A group of men lead a search for a victim of a murder to whom a suspect named Kenan and his mentally challenged brother confessed. However, the search is proving more difficult than expected as Kenan is fuzzy as to the body's location. As the group continues looking, its members can't help but chat among themselves about everyday life, which ultimately leads to conversations about their deepest existential concerns and secrets.",2011-09-23,1.4701,7.481,502 +1380,31767,The Devils,"In 17th-century France, Father Urbain Grandier seeks to protect the city of Loudun from the corrupt establishment of Cardinal Richelieu. Hysteria occurs within the city when he is accused of witchcraft by the sexually repressed Sister Jeanne.",1971-07-16,1.544,7.481,396 +1381,17809,Fist of Legend,"Chen returns to his school when he finds out that his martial arts teacher has died. When he learns that his school students are harassed by some hooligans, he gears himself up to save them.",1994-12-22,3.8007,7.481,563 +1382,389015,"I, Tonya","Competitive ice skater Tonya Harding rises amongst the ranks at the U.S. Figure Skating Championships, but her future in the sport is thrown into doubt when her ex-husband intervenes.",2017-12-07,3.0469,7.48,5954 +1383,293863,The Age of Adaline,"After 29-year-old Adaline recovers from a nearly lethal accident, she inexplicably stops growing older. As the years stretch on and on, Adaline keeps her secret to herself until she meets a man who changes her life.",2015-04-16,5.8174,7.48,6848 +1384,12837,The Secret Life of Bees,"Set in South Carolina in 1964, this is the tale of Lily Owens a 14 year-old girl who is haunted by the memory of her late mother. To escape her lonely life and troubled relationship with her father, Lily flees with Rosaleen, her caregiver and only friend, to a South Carolina town that holds the secret to her mother's past.",2008-09-17,2.3783,7.48,544 +1385,11202,Patton,"""Patton"" tells the tale of General George S. Patton, famous tank commander of World War II. The film begins with Patton's career in North Africa and progresses through the invasion of Germany and the fall of the Third Reich. Side plots also speak of Patton's numerous faults such his temper and habit towards insubordination.",1970-01-25,2.4153,7.48,1140 +1386,8703,Three Wishes for Cinderella,"Popelka, a resourceful and independent young girl, is a servant in her stepmother's house and confides in her closest friend the owl. When she comes across three magical acorns, she's granted a single wish for each one of them.",1973-11-16,1.8554,7.48,357 +1387,437586,mid90s,"In 1990s Los Angeles, a 13-year-old spends his summer navigating between a troubled home life and a crew of new friends he meets at a skate shop.",2018-10-19,2.606,7.5,1680 +1388,284293,Still Alice,"Alice Howland, happily married with three grown children, is a renowned linguistics professor who starts to forget words. When she receives a devastating diagnosis, Alice and her family find their bonds tested.",2014-12-05,4.1874,7.5,3152 +1389,1600,The Double Life of Véronique,"Véronique is a beautiful young French woman who aspires to be a renowned singer; Weronika lives in Poland, has a similar career goal and looks identical to Véronique, though the two are not related. The film follows both women as they contend with the ups and downs of their individual lives, with Véronique embarking on an unusual romance with Alexandre Fabbri, a puppeteer who may be able to help her with her existential issues.",1991-05-15,2.4766,7.5,829 +1390,252,Willy Wonka & the Chocolate Factory,"When eccentric candy man Willy Wonka promises a lifetime supply of sweets and a tour of his chocolate factory to five lucky kids, penniless Charlie Bucket seeks the golden ticket that will make him a winner.",1971-06-29,5.2797,7.479,3747 +1391,431937,Mr & Mme Adelman,"How did Sarah and Victor get along for more than 45 years? Who was this enigmatic woman living in the shadow of her husband? Love, ambition, betrayals and secrets feed the story of this extraordinary couple, as they experience both the large and small moments of the last century's history.",2017-03-08,1.4651,7.478,449 +1392,11421,C.R.A.Z.Y.,"A young French Canadian, one of five boys in a conservative family in the 1960s and 1970s, struggles to reconcile his emerging identity with his father's values.",2005-05-27,1.3328,7.477,475 +1393,9299,Thesis,"While doing a thesis about violence, Ángela finds a snuff video where a girl is tortured to death. Soon she discovers that the girl was a former student at her college...",1996-04-11,1.8308,7.477,868 +1394,4593,The Discreet Charm of the Bourgeoisie,"In Luis Buñuel’s deliciously satiric masterpiece, an upper-class sextet sits down to dinner but never eats, their attempts continually thwarted by a vaudevillian mixture of events both actual and imagined.",1972-09-15,1.58,7.477,848 +1395,3133,Badlands,An impressionable teenage girl from a dead-end town and her older greaser boyfriend embark on a killing spree in the South Dakota badlands.,1974-01-05,1.8496,7.5,1250 +1396,676701,"Tad, the Lost Explorer and the Emerald Tablet","Tad accidentally unleashes an ancient spell, endangering the lives of his friends Mummy, Jeff, and Belzoni. With everyone against him and only helped by Sara, he sets off on an adventure to end the Curse of the Mummy.",2022-08-24,2.5967,7.5,318 +1397,32909,Mulan: Rise of a Warrior,"When barbarian hordes threaten her homeland, the brave and cunning Mulan disguises herself as a male soldier to swell the ranks in her aging father's stead. The warrior's remarkable courage drives her through powerful battle scenes and brutal wartime strategy. Mulan loses dear friends to the enemy's blade as she rises to become one of her country's most valuable leaders — but can she win the war before her secret is exposed?",2009-11-26,1.9715,7.476,434 +1398,3767,Gilda,"A gambler discovers an old flame while in Argentina, but she's married to his new boss.",1946-04-25,2.247,7.5,607 +1399,1251,Letters from Iwo Jima,"The story of the battle of Iwo Jima between the United States and Imperial Japan during World War II, as told from the perspective of the Japanese who fought it.",2006-12-09,2.3421,7.476,2131 +1400,363,Head-On,"With the intention to break free from the strict familial restrictions, a suicidal young woman sets up a marriage of convenience with a forty-year-old addict, an act that will lead to an outburst of envious love.",2004-03-11,1.6509,7.5,591 +1401,16619,Ordinary People,"Beth, Calvin, and their son Conrad are living in the aftermath of the death of the other son. Conrad is overcome by grief and misplaced guilt to the extent of a suicide attempt. He is in therapy. Beth had always preferred his brother and is having difficulty being supportive to Conrad. Calvin is trapped between the two trying to hold the family together.",1980-09-19,2.6048,7.475,651 +1402,15165,Barbie as The Princess & the Pauper,"In her first animated musical featuring seven original songs, Barbie comes to life in this modern re-telling of a classic tale of mistaken identity and the power of friendship. Based on the story by Mark Twain.",2004-09-28,4.7004,7.5,1508 +1403,13930,For the Birds,"One by one, a flock of small birds perches on a telephone wire. Sitting close together has problems enough, and then comes along a large dopey bird that tries to join them. The birds of a feather can't help but make fun of him - and their clique mentality proves embarrassing in the end.",2000-11-02,1.5897,7.475,1248 +1404,11798,This Is England,"A story about a troubled boy growing up in England, set in 1983. He comes across a few skinheads on his way home from school, after a fight. They become his new best friends, even like family. Based on experiences of director Shane Meadows.",2007-04-27,0.6014,7.475,1321 +1405,9559,A Perfect World,"A kidnapped boy strikes up a friendship with his captor: an escaped convict on the run from the law, headed by an honorable U.S. Marshal.",1993-11-24,2.5568,7.475,1734 +1406,786892,Furiosa: A Mad Max Saga,"As the world falls, young Furiosa is snatched from the Green Place of Many Mothers into the hands of a great biker horde led by the warlord Dementus. Sweeping through the wasteland, they encounter the citadel presided over by Immortan Joe. The two tyrants wage war for dominance, and Furiosa must survive many trials as she puts together the means to find her way home.",2024-05-22,12.938,7.474,4312 +1407,550988,Free Guy,"A bank teller discovers he is actually a background player in an open-world video game, and decides to become the hero of his own story. Now, in a world where there are no limits, he is determined to be the guy who saves his world his way before it's too late.",2021-08-11,8.7365,7.474,9197 +1408,9470,Kung Fu Hustle,"It's the 1940s, and the notorious Axe Gang terrorizes Shanghai. Small-time criminals Sing and Bone hope to join, but they only manage to make lots of very dangerous enemies. Fortunately for them, kung fu masters and hidden strength can be found in unlikely places. Now they just have to take on the entire Axe Gang.",2004-02-10,7.1471,7.475,2946 +1409,346648,Paddington 2,"Paddington, now happily settled with the Browns, picks up a series of odd jobs to buy the perfect present for his Aunt Lucy, but it is stolen.",2017-11-09,5.6,7.5,2547 +1410,11854,Kuch Kuch Hota Hai,"Per her mother's last wish, an 8 year old girl sets out to reunite her father with his college best friend who was in love with him.",1998-10-16,3.5519,7.473,400 +1411,11040,Little Big Man,"Jack Crabb, looking back from extreme old age, tells of his life being raised by Indians and fighting with General Custer.",1970-12-23,1.477,7.473,673 +1412,8055,The Reader,"The story of Michael Berg, a German lawyer who, as a teenager in the late 1950s, had an affair with an older woman, Hanna, who then disappeared only to resurface years later as one of the defendants in a war crimes trial stemming from her actions as a concentration camp guard late in the war. He alone realizes that Hanna is illiterate and may be concealing that fact at the expense of her freedom.",2008-12-10,5.5152,7.473,3232 +1413,32761,The Seventh Continent,"Chronicles three years of a middle class family seemingly caught up in their daily routines, only troubled by minor incidents. Behind their apparent calm and repetitive existence however, they are actually planning something sinister.",1989-10-20,1.1371,7.5,326 +1414,9665,Glory,"Robert Gould Shaw leads the US Civil War's first all-black volunteer company, fighting prejudices of both his own Union army and the Confederates.",1989-12-15,3.4411,7.5,1693 +1415,9081,Waking Life,"Waking Life is about a young man in a persistent lucid dream-like state. The film follows its protagonist as he initially observes and later participates in philosophical discussions that weave together issues like reality, free will, our relationships with others, and the meaning of life.",2001-10-19,1.4724,7.472,903 +1416,898,Birdman of Alcatraz,"After killing a prison guard, convict Robert Stroud faces life imprisonment in solitary confinement. Driven nearly mad by loneliness and despair, Stroud's life gains new meaning when he happens upon a helpless baby sparrow in the exercise yard and nurses it back to health. Despite having only a third grade education, Stroud goes on to become a renowned ornithologist and achieves a greater sense of freedom and purpose behind bars than most people find in the outside world.",1962-07-04,1.7671,7.472,323 +1417,517093,Balkan Line,"After the NATO bombing of Yugoslavia in 1999, the Yugoslav army pulls out of Kosovo region, leaving Serbian people at the mercy of the Albanian UCK. A small band of soldiers must take over the Slatina airport, and hold it until the Russian peacekeepers arrive.",2019-03-21,3.095,7.471,554 +1418,377273,Aquarius,"Clara, a vibrant former music critic and widow with flowing tresses is the only remaining apartment owner in a beautiful older building targeted for demolition by ruthless luxury high-rise developers. Clara proves to be a force to be reckoned with as she thwarts the builders plans to kick her out of the apartment.",2016-09-01,0.8845,7.471,472 +1419,301528,Toy Story 4,"Woody has always been confident about his place in the world and that his priority is taking care of his kid, whether that's Andy or Bonnie. But when Bonnie adds a reluctant new toy called ""Forky"" to her room, a road trip adventure alongside old and new friends will show Woody how big the world can be for a toy.",2019-06-19,9.4687,7.471,10098 +1420,1294203,My Fault: London,"18-year-old Noah moves from America to London, with her mother who's recently fallen in love with William, a wealthy British businessman. Noah meets William’s son, bad-boy Nick, and soon discovers there is an attraction between them neither can avoid. As Noah spends the summer adjusting to her new life, her devastating past will catch up with her while falling in love for the first time.",2025-02-12,27.0161,7.5,438 +1421,38396,That's Life,"Con man Aldo breaks out of jail and seizes a car at gunpoint, taking its passengers—bumbling police officer Giacomo and nitpicking civilian Giovanni—hostages. An unlikely friendship blossoms.",1998-12-18,0.3678,7.47,1342 +1422,27327,Phantom of the Paradise,"Singer-songwriter Winslow Leach seeks revenge on the nefarious music producer Swan, who steals both Winslow's music and his favorite singer for the grand opening of his new rock palace, the Paradise.",1974-10-31,1.7815,7.5,698 +1423,11327,Midnight Express,"Billy Hayes is caught attempting to smuggle drugs out of Turkey. The Turkish courts decide to make an example of him, sentencing him to more than 30 years in prison. Hayes has two opportunities for release: the appeals made by his lawyer, his family, and the American government, or the ""Midnight Express"".",1978-08-31,3.1638,7.47,1772 +1424,42801,"Yesterday, Today and Tomorrow",Three tales of very different women using their sexuality as a means to getting what they want.,1963-12-21,2.1245,7.469,442 +1425,22584,To Have and Have Not,A Martinique charter boat skipper gets mixed up with the underground French resistance operatives during WWII.,1945-01-20,1.0682,7.469,537 +1426,8333,The Taking of Pelham One Two Three,"In New York, armed men hijack a subway car and demand a ransom for the passengers. Even if it's paid, how could they get away?",1974-10-02,1.8543,7.469,566 +1427,4689,Sympathy for Mr. Vengeance,"A deaf man and his girlfriend resort to desperate measures in order to fund a kidney transplant for his sister. Things go horribly wrong, and the situation spirals rapidly into a cycle of violence and revenge.",2002-03-29,3.1377,7.469,1528 +1428,219,Volver,"Three generations of women survive the east wind, fire, insanity, superstition and even death by means of goodness, lies and boundless vitality.",2006-03-17,2.8301,7.5,1804 +1429,1076364,Carl's Date,"Carl Fredricksen reluctantly agrees to go on a date with a lady friend—but admittedly has no idea how dating works these days. Ever the helpful friend, Dug steps in to calm Carl's pre-date jitters and offer some tried-and-true tips for making friends—if you're a dog.",2023-06-15,4.1644,7.468,424 +1430,11344,A Bittersweet Life,"Kim Sun-woo is an enforcer and manager for a hotel owned by a cold, calculative crime boss, Kang who assigns Sun-woo to a simple errand while he is away on a business trip; to shadow his young mistress, Hee-soo, for fear that she may be cheating on him with a younger man with the mandate that he must kill them both if he discovers their affair.",2005-04-01,3.7577,7.468,917 +1431,11016,Key Largo,"A hurricane swells outside, but it's nothing compared to the storm within the hotel at Key Largo. There, sadistic mobster Johnny Rocco holes up - and holds at gunpoint hotel owner James Temple, his widowed daughter-in-law Nora, and ex-GI Frank McCloud.",1948-07-16,1.7476,7.468,551 +1432,10907,The Adventures of Robin Hood,Robin Hood fights nobly for justice against the evil Sir Guy of Gisbourne while striving to win the hand of the beautiful Maid Marian.,1938-05-13,2.8344,7.468,790 +1433,9028,The Great Silence,"A mute gunslinger fights in the defense of a group of outlaws and a vengeful young widow, against a group of ruthless bounty hunters.",1968-11-22,2.1483,7.468,426 +1434,2501,The Bourne Identity,"Wounded to the brink of death and suffering from amnesia, Jason Bourne is rescued at sea by a fisherman. With nothing to go on but a Swiss bank account number, he starts to reconstruct his life, but finds that many people he encounters want him dead. However, Bourne realizes that he has the combat and mental skills of a world-class spy—but who does he work for?",2002-06-14,8.0686,7.468,9593 +1435,2000,"Aguirre, the Wrath of God","A few decades after the destruction of the Inca Empire, a Spanish expedition led by the infamous Aguirre leaves the mountains of Peru and goes down the Amazon River in search of the lost city of El Dorado. When great difficulties arise, Aguirre’s men start to wonder whether their quest will lead them to prosperity or certain death.",1972-12-29,1.9583,7.468,1158 +1436,251516,Kung Fury,"During an unfortunate series of events, a friend of Kung Fury is assassinated by the most dangerous kung fu master criminal of all time, Adolf Hitler, a.k.a Kung Führer. Kung Fury decides to travel back in time to Nazi Germany in order to kill Hitler and end the Nazi empire once and for all.",2015-05-22,1.1655,7.467,1873 +1437,239571,The Best of Me,A pair of former high school sweethearts reunite after many years when they return to visit their small hometown.,2014-10-15,3.4561,7.467,2620 +1438,26280,I Killed My Mother,"Hubert, a brash 17-year-old, is confused and torn by a love-hate relationship with his mother that consumes him more and more each day. After distressing ordeals and tragic episodes, Hubert will find his mother on the banks of Saint Lawrence river, where he grew up, and where a murder will be committed: the murder of childhood.",2009-06-05,1.2071,7.467,1121 +1439,15097,Fear City: A Family-Style Comedy,"A second-class horror movie has to be shown at Cannes Film Festival, but, before each screening, the projectionist is killed by a mysterious fellow, with hammer and sickle, just as it happens in the film to be shown.",1994-03-09,1.6899,7.467,1302 +1440,8740,The Vanishing,"Rex and Saskia, a young couple in love, are on vacation. They stop at a busy service station and Saskia is abducted. After three years and no sign of Saskia, Rex begins receiving letters from the abductor.",1988-10-27,1.7845,7.5,709 +1441,1813,The Devil's Advocate,"Aspiring Florida defense lawyer Kevin Lomax accepts a job at a New York law firm. With the stakes getting higher every case, Kevin quickly learns that his boss has something far more evil planned.",1997-10-17,9.9532,7.467,6335 +1442,529216,Mirage,"During a mysterious thunderstorm, Vera, a young mother, manages to save a life in danger, but her good deed causes a disturbing chain of unexpected consequences.",2018-11-30,3.545,7.465,1862 +1443,613090,"Live Twice, Love Once",A retired academic teacher tries to find the love of his youth after being diagnosed with Alzheimer's.,2019-09-06,1.4442,7.465,347 +1444,589982,Spread Your Wings,"Christian, a visionary scientist, studies wild geese. For his son, a teenager obsessed with video games, the idea of spending a holiday with his father in the wilderness is a nightmare. However, father and son will get together around a crazy project: save a species endangered, thanks to the ultralight of Christian! Then begins an incredible and perilous journey ...",2019-09-12,1.2527,7.5,312 +1445,16372,The Innocents,A young governess for two children becomes convinced that the house and grounds are haunted by ghosts and that the children are being possessed.,1961-12-15,1.5133,7.465,622 +1446,9428,The Royal Tenenbaums,"Royal Tenenbaum and his wife Etheline had three children and then they separated. All three children are extraordinary --- all geniuses. Virtually all memory of the brilliance of the young Tenenbaums was subsequently erased by two decades of betrayal, failure, and disaster. Most of this was generally considered to be their father's fault. ""The Royal Tenenbaums"" is the story of the family's sudden, unexpected reunion one recent winter.",2001-10-05,3.691,7.465,4721 +1447,5503,The Fugitive,"Wrongfully convicted of murdering his wife and sentenced to death, Richard Kimble escapes from the law in an attempt to find the real killer and clear his name.",1993-08-06,6.2914,7.465,4482 +1448,3035,Frankenstein,"Tampering with life and death, Henry Frankenstein pieces together salvaged body parts to bring a human monster to life; the mad scientist's dreams are shattered by his creation's violent rage as the monster awakens to a world in which he is unwelcome.",1931-11-21,2.2936,7.465,1665 +1449,529203,The Croods: A New Age,"Searching for a safer habitat, the prehistoric Crood family discovers an idyllic, walled-in paradise that meets all of its needs. Unfortunately, they must also learn to live with the Bettermans -- a family that's a couple of steps above the Croods on the evolutionary ladder. As tensions between the new neighbors start to rise, a new threat soon propels both clans on an epic adventure that forces them to embrace their differences, draw strength from one another, and survive together.",2020-11-25,12.3814,7.464,3964 +1450,350312,Bāhubali 2: The Conclusion,"When Mahendra, the son of Bāhubali, learns about his heritage, he begins to look for answers. His story is juxtaposed with past events that unfolded in the Mahishmati Kingdom.",2017-04-27,3.4413,7.464,783 +1451,13384,Kes,"Bullied at school and ignored and abused at home by his indifferent mother and older brother, Billy Casper, a 15-year-old working-class Yorkshire boy, tames and trains his pet kestrel falcon whom he names Kes. Helped and encouraged by his English teacher and his fellow students, Billy finally finds a positive purpose to his unhappy existence.",1970-04-03,1.5543,7.5,405 +1452,675353,Sonic the Hedgehog 2,"After settling in Green Hills, Sonic is eager to prove he has what it takes to be a true hero. His test comes when Dr. Robotnik returns, this time with a new partner, Knuckles, in search for an emerald that has the power to destroy civilizations. Sonic teams up with his own sidekick, Tails, and together they embark on a globe-trotting journey to find the emerald before it falls into the wrong hands.",2022-03-30,12.1632,7.463,5582 +1453,520763,A Quiet Place Part II,"Following the events at home, the Abbott family now face the terrors of the outside world. Forced to venture into the unknown, they realize that the creatures that hunt by sound are not the only threats that lurk beyond the sand path.",2021-05-21,8.5689,7.463,6913 +1454,625,The Killing Fields,"New York Times reporter Sydney Schanberg is on assignment covering the Cambodian Civil War, with the help of local interpreter Dith Pran and American photojournalist Al Rockoff. When the U.S. Army pulls out amid escalating violence, Schanberg makes exit arrangements for Pran and his family. Pran, however, tells Schanberg he intends to stay in Cambodia to help cover the unfolding story — a decision he may regret as the Khmer Rouge rebels move in.",1984-11-23,2.1659,7.463,778 +1455,11549,Invasion of the Body Snatchers,A small-town doctor learns that the population of his community is being replaced by emotionless alien duplicates.,1956-02-05,1.9835,7.5,1127 +1456,187,Sin City,"Welcome to Sin City. This town beckons to the tough, the corrupt, the brokenhearted. Some call it dark… Hard-boiled. Then there are those who call it home — Crooked cops, sexy dames, desperate vigilantes. Some are seeking revenge, others lust after redemption, and then there are those hoping for a little of both. A universe of unlikely and reluctant heroes still trying to do the right thing in a city that refuses to care.",2005-04-01,6.3728,7.463,8404 +1457,114,Pretty Woman,"While on a business trip in Los Angeles, Edward Lewis, a millionaire entrepreneur who makes a living buying and breaking up companies, picks up a prostitute, Vivian, while asking for directions; after, Edward hires Vivian to stay with him for the weekend to accompany him to a few social events, and the two get closer only to discover there are significant hurdles to overcome as they try to bridge the gap between their very different worlds.",1990-03-23,8.4622,7.462,8590 +1458,13189,A Christmas Carol,"Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence, what opportunities he wasted in his youth, his current cruelties, and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness, and must decide what his own future will hold: death or redemption.",1984-10-09,2.2815,7.461,385 +1459,736073,"Batman: The Long Halloween, Part One","Following a brutal series of murders taking place on Halloween, Thanksgiving, and Christmas, Gotham City's young vigilante known as the Batman sets out to pursue the mysterious serial killer alongside police officer James Gordon and district attorney Harvey Dent.",2021-06-21,1.4335,7.46,663 +1460,347201,Boruto: Naruto the Movie,"The spirited Boruto Uzumaki, son of Seventh Hokage Naruto, is a skilled ninja who possesses the same brashness and passion his father once had. However, the constant absence of his father, who is busy with his Hokage duties, puts a damper on Boruto's fire. He ends up meeting his father's friend Sasuke, and requests to become... his apprentice!? The curtain on the story of the new generation rises!",2015-08-07,5.4072,7.459,1622 +1461,37916,Swept Away,A spoiled rich woman and a brutish Communist deckhand become stranded alone on a desert island after venturing away from their cruise.,1974-12-18,1.1876,7.5,314 +1462,9008,The Insider,A research chemist comes under personal and professional attack when he decides to appear in a 60 Minutes exposé on Big Tobacco.,1999-10-28,2.5447,7.459,1904 +1463,37472,Ip Man 2,"Having defeated the best fighters of the Imperial Japanese army in occupied Shanghai, Ip Man and his family settle in post-war Hong Kong. Struggling to make a living, Master Ip opens a kung fu school to bring his celebrated art of Wing Chun to the troubled youth of Hong Kong. His growing reputation soon brings challenges from powerful enemies, including pre-eminent Hung Gar master, Hung Quan.",2010-04-29,0.707,7.457,2354 +1464,18197,Running on Empty,"The Popes are a family who haven't been able to use their real identity for years. In the late sixties, the parents set a weapons lab afire in an effort to hinder the government's Vietnam war campaign. Ever since then, the Popes have been on the run with the authorities never far behind. Their survival is threatened when their eldest son falls in love with a girl, and announces his wish to live his life on his own terms.",1988-09-09,1.651,7.458,324 +1465,9509,Man on Fire,"Jaded ex-CIA operative John Creasy reluctantly accepts a job as the bodyguard for a 10-year-old girl in Mexico City. They clash at first, but eventually bond, and when she's kidnapped he's consumed by fury and will stop at nothing to save her life.",2004-04-23,8.2782,7.458,5321 +1466,1902,Open Your Eyes,"A very handsome man finds the love of his life, but he suffers an accident and needs to have his face rebuilt by surgery after it is severely disfigured.",1997-12-19,2.264,7.458,1100 +1467,379,Miller's Crossing,"Set in 1929, a political boss and his advisor have a parting of the ways when they both fall for the same woman.",1990-09-21,3.9479,7.459,1729 +1468,929170,Honor Society,"Honor is an ambitious high school senior whose sole focus is getting into Harvard, assuming she can first score the coveted recommendation from her guidance counselor, Mr. Calvin. Willing to do whatever it takes, Honor concocts a Machiavellian-like plan to take down her top three student competitors, until things take a turn when she unexpectedly falls for her biggest competition, Michael.",2022-07-23,3.6231,7.457,399 +1469,574,The Man Who Knew Too Much,"A couple vacationing in Morocco with their young son accidentally stumble upon an assassination plot. When the child is kidnapped to ensure their silence, they have to take matters into their own hands to save him.",1956-05-16,2.1417,7.457,1468 +1470,431580,Abominable,"A group of misfits encounter a young Yeti named Everest, and they set off to reunite the magical creature with his family on the mountain of his namesake.",2019-09-19,3.9852,7.456,2100 +1471,375785,Then Came You,An American hypochondriac who is working as a baggage handler is forced to confront his fears when a British teenager with a terminal illness enlists him to help her carry out her eccentric bucket list.,2018-12-05,2.0439,7.456,520 +1472,317442,The Last: Naruto the Movie,"Two years after the events of the Fourth Great Ninja War, the moon that Hagoromo Otsutsuki created long ago to seal away the Gedo Statue begins to descend towards the world, threatening to become a meteor that would destroy everything on impact. Amidst this crisis, a direct descendant of Kaguya Otsutsuki named Toneri Otsutsuki attempts to kidnap Hinata Hyuga but ends up abducting her younger sister Hanabi. Naruto and his allies now mount a rescue mission before finding themselves embroiled in a final battle to decide the fate of everything.",2014-12-06,9.2546,7.456,2330 +1473,994108,All of Us Strangers,"One night in his near-empty tower block in contemporary London, Adam has a chance encounter with a mysterious neighbor Harry, which punctures the rhythm of his everyday life.",2023-12-22,3.3571,7.455,873 +1474,666243,The Witcher: Nightmare of the Wolf,"Escaping from poverty to become a witcher, Vesemir slays monsters for coin and glory, but when a new menace rises, he must face the demons of his past.",2021-08-22,2.1078,7.455,1016 +1475,228203,"McFarland, USA",A track coach in a small California town transforms a team of athletes into championship contenders.,2015-02-20,2.091,7.5,869 +1476,13060,Lifted,"When an overconfident teen alien gets behind the controls of a spaceship, he must attempt to abduct a slumbering farmer under the watchful eye of a critical instructor. But abducting humans requires precision and a gentle touch, and within a few missteps it's painfully clear why more humans don't go missing every year.",2006-12-28,1.1786,7.455,775 +1477,260513,Incredibles 2,"Elastigirl springs into action to save the day, while Mr. Incredible faces his greatest challenge yet – taking care of the problems of his three children.",2018-06-14,14.8441,7.5,13185 +1478,17654,District 9,"Thirty years ago, aliens arrive on Earth. Not to conquer or give aid, but to find refuge from their dying planet. Separated from humans in a South African area called District 9, the aliens are managed by Multi-National United, which is unconcerned with the aliens' welfare but will do anything to master their advanced technology. When a company field agent contracts a mysterious virus that begins to alter his DNA, there is only one place he can hide: District 9.",2009-08-05,7.6699,7.453,9843 +1479,3088,My Darling Clementine,Three brothers stop off for a night in the town of Tombstone. The next morning they find one of their brothers dead and their cattle stolen. They decide to take revenge on the culprits.,1946-10-17,1.7962,7.5,446 +1480,175,The Big Blue,"Two men answer the call of the ocean in this romantic fantasy-adventure. Jacques and Enzo are a pair of friends who have been close since childhood, and who share a passion for the dangerous sport of free diving. Professional diver Jacques opted to follow in the footsteps of his father, who died at sea when Jacques was a boy; to the bewilderment of scientists, Jacques harbors a remarkable ability to adjust his heart rate and breathing pattern in the water, so that his vital signs more closely resemble that of dolphins than men. As Enzo persuades a reluctant Jacques to compete against him in a free diving contest -- determining who can dive deeper and longer without scuba gear -- Jacques meets Johana, a beautiful insurance investigator from America, and he finds that he must choose between his love for her and his love of the sea.",1988-05-10,2.8682,7.453,1494 +1481,660120,The Worst Person in the World,"The chronicles of four years in the life of Julie, a young woman who navigates the troubled waters of her love life and struggles to find her career path, leading her to take a realistic look at who she really is.",2021-10-13,4.0857,7.452,1553 +1482,261470,Sorry If I Call You Love,"A successful, attractive, intelligent and brilliant advertising executive is longing to finally find emotional stability in his life, and decides to propose to his girlfriend. After she refuses his proposal, his life takes a turn when a new young lady enters his life.",2014-06-20,4.4032,7.5,491 +1483,244088,Human Capital,The destinies of two families are irrevocably tied together after a cyclist is hit off the road by a jeep in the night before Christmas Eve.,2013-12-03,1.2495,7.452,922 +1484,74643,The Artist,"Hollywood, 1927: As silent movie star George Valentin wonders if the arrival of talking pictures will cause him to fade into oblivion, he sparks with Peppy Miller, a young dancer set for a big break.",2011-10-12,2.3008,7.452,3351 +1485,1895,Star Wars: Episode III - Revenge of the Sith,The evil Darth Sidious enacts his final plan for unlimited power – and the heroic Jedi Anakin Skywalker must choose a side.,2005-05-17,7.8984,7.5,14267 +1486,877,Scarface,"In 1920s Chicago, Italian immigrant and notorious thug, Antonio 'Tony' Camonte, aka Scarface, shoots his way to the top of the mobs while trying to protect his sister from the criminal life.",1932-04-09,2.5108,7.452,631 +1487,327331,The Dirt,The story of Mötley Crüe and their rise from the Sunset Strip club scene of the early 1980s to superstardom.,2019-03-22,2.25,7.451,1264 +1488,245891,John Wick,Ex-hitman John Wick comes out of retirement to track down the gangsters that took everything from him.,2014-10-22,12.0413,7.451,19925 +1489,203101,High School of the Dead: Drifters of the Dead,"In their efforts to find a safe haven from the zombie apocalypse, the gang find themselves on a deserted island. Now, they take advantage of the momentary respite to enjoy some surf, sand and bathing suits!",2011-04-25,1.0775,7.451,468 +1490,194662,Birdman or (The Unexpected Virtue of Ignorance),"A fading actor best known for his portrayal of a popular superhero attempts to mount a comeback by appearing in a Broadway play. As opening night approaches, his attempts to become more altruistic, rebuild his career, and reconnect with friends and family prove more difficult than expected.",2014-10-17,6.46,7.452,13113 +1491,290,Barton Fink,A renowned New York playwright is enticed to California to write for the movies and discovers the hellish truth of Hollywood.,1991-08-01,2.5731,7.451,1754 +1492,407445,Breathe,"Based on the true story of Robin, a handsome, brilliant and adventurous man whose life takes a dramatic turn when polio leaves him paralyzed.",2017-10-13,2.2804,7.45,771 +1493,33273,Cell 211,"The story of two men on different sides of a prison riot -- the inmate leading the rebellion and the young guard trapped in the revolt, who poses as a prisoner in a desperate attempt to survive the ordeal.",2009-11-06,2.1595,7.45,1289 +1494,11356,The Odd Couple,"In New York, Felix, a neurotic news writer who just broke up with his wife, is urged by his chaotic friend Oscar, a sports journalist, to move in with him, but their lifestyles are as different as night and day are, so Felix's ideas about housekeeping soon begin to irritate Oscar.",1968-05-16,2.0068,7.45,605 +1495,984,Dirty Harry,"When a madman dubbed 'Scorpio' terrorizes San Francisco, hard-nosed cop, Harry Callahan – famous for his take-no-prisoners approach to law enforcement – is tasked with hunting down the psychopath.",1971-12-23,4.2567,7.5,2574 +1496,154,Star Trek II: The Wrath of Khan,"The starship Enterprise and its crew is pulled back into action when old nemesis, Khan, steals a top secret device called Project Genesis.",1982-06-04,2.6459,7.45,2001 +1497,674324,The Banshees of Inisherin,"Two lifelong friends find themselves at an impasse when one abruptly ends their relationship, with alarming consequences for both of them.",2022-10-20,3.8142,7.449,3010 +1498,374720,Dunkirk,"The story of the miraculous evacuation of Allied soldiers from Belgium, Britain, Canada and France, who were cut off and surrounded by the German army from the beaches and harbour of Dunkirk between May 26th and June 4th 1940 during World War II.",2017-07-19,6.6054,7.449,16923 +1499,11349,Cape Fear,"Sam Bowden witnesses a rape committed by Max Cady and testifies against him. When released after 8 years in prison, Cady begins stalking Bowden and his family but is always clever enough not to violate the law.",1962-04-12,2.0328,7.449,594 +1500,161,Ocean's Eleven,"Less than 24 hours into his parole, charismatic thief Danny Ocean is already rolling out his next plan: In one night, Danny's hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash, Danny risks his chances of reconciling with ex-wife, Tess.",2001-12-07,7.9293,7.449,11974 +1501,109,Three Colors: White,"Polish immigrant Karol Karol finds himself out of a marriage, a job and a country when his French wife, Dominique, divorces him after six months due to his impotence. Forced to leave France after losing the business they jointly owned, Karol enlists fellow Polish expatriate Mikołaj to smuggle him back to their homeland.",1994-01-26,2.8266,7.449,1243 +1502,434616,Patients,"After a serious sport accident in a swimming pool, Ben, now an incomplete quadriplegic, arrives in a rehabilitation center. He meets with other handicapped persons (tetraplegics, paraplegics, traumatized crania), all victims of accidents, as well as a handicapped since his early childhood. They go through impotence, despair and resignation, with their daily struggle to learn how to move a finger or to hold a fork. Some of them slowly find a little mobility while others receive the verdict of the handicap for life. Despite everything, hope and friendship help them endure their difficulties.",2017-03-01,0.4332,7.4,613 +1503,337703,The Red Turtle,"The dialogue-less film follows the major life stages of a castaway on a deserted tropical island populated by turtles, crabs and birds.",2016-03-27,1.8723,7.4,1314 +1504,271110,Captain America: Civil War,"Following the events of Age of Ultron, the collective governments of the world pass an act designed to regulate all superhuman activity. This polarizes opinion amongst the Avengers, causing two factions to side with Iron Man or Captain America, which causes an epic battle between former allies.",2016-04-27,15.9792,7.4,23302 +1505,15919,Marty,"Marty, a butcher who lives in the Bronx with his mother is unmarried at 34. Good-natured but socially awkward he faces constant badgering from family and friends to get married but has reluctantly resigned himself to bachelorhood. Marty meets Clara, an unattractive school teacher, realising their emotional connection, he promises to call but family and friends try to convince him not to.",1955-04-11,1.4688,7.448,414 +1506,10683,Happiness,"The lives of several individuals intertwine as they go about their lives in their own unique ways, engaging in acts which society as a whole might find disturbing in a desperate search for human connection.",1998-10-11,1.5955,7.448,864 +1507,8741,The Thin Red Line,"The story of a group of men, an Army Rifle company called C-for-Charlie, who change, suffer, and ultimately make essential discoveries about themselves during the fierce World War II battle of Guadalcanal. It follows their journey, from the surprise of an unopposed landing, through the bloody and exhausting battles that follow, to the ultimate departure of those who survived.",1998-12-23,3.4938,7.448,3115 +1508,1677,Ray,"Born on a sharecropping plantation in Northern Florida, Ray Charles went blind at seven. Inspired by a fiercely independent mom who insisted he make his own way, He found his calling and his gift behind a piano keyboard. Touring across the Southern musical circuit, the soulful singer gained a reputation and then exploded with worldwide fame when he pioneered coupling gospel and country together.",2004-10-29,3.2105,7.448,2080 +1509,1567,I Stand Alone,"After completing jail time for beating up a man who tried to seduce his mentally-handicapped teenage daughter, The Butcher wants to start life anew. He institutionalizes his daughter and moves to the Lille suburbs with his mistress, who promises him a new butcher shop. Learning that she lied, The Butcher returns to Paris to find his daughter.",1998-05-16,1.5121,7.4,536 +1510,568,Apollo 13,"The true story of technical troubles that scuttle the Apollo 13 lunar mission in 1970, risking the lives of astronaut Jim Lovell and his crew, with the failed journey turning into a thrilling saga of heroism. Drifting more than 200,000 miles from Earth, the astronauts work furiously with the ground crew to avert tragedy.",1995-06-30,7.2049,7.448,5575 +1511,24192,The Gospel According to St. Matthew,"Along a rocky, barren coastline, Jesus begins teaching, primarily using parables. He attracts disciples; he's stern, brusque, and demanding. His parables often take on the powers that be, so he and his teachings come to the attention of the Pharisees, the chief priests, and elders. They conspire to have him arrested, beaten, tried, and crucified, just as he prophesied to his followers.",1965-03-03,1.6866,7.4,379 +1512,11704,The Secret of NIMH,"A widowed field mouse must move her family -- including an ailing son -- to escape a farmer's plow. Aided by a crow and a pack of superintelligent, escaped lab rats, the brave mother struggles to transplant her home to firmer ground.",1982-06-17,3.4303,7.4,874 +1513,11167,Peeping Tom,"Loner Mark Lewis works at a film studio during the day and, at night, takes racy photographs of women. Also he's making a documentary on fear, which involves recording the reactions of victims as he murders them. He befriends Helen, the daughter of the family living in the apartment below his, and he tells her vaguely about the movie he is making.",1960-05-16,2.3101,7.4,843 +1514,828,The Day the Earth Stood Still,An alien and a robot land on Earth after World War II and tell mankind to be peaceful or face destruction.,1951-09-28,2.9572,7.447,1163 +1515,339403,Baby Driver,"After being coerced into working for a crime boss, a young getaway driver finds himself taking part in a heist doomed to fail.",2017-06-28,10.0824,7.4,16185 +1516,129670,Nebraska,"An aging, booze-addled father takes a trip from Montana to Nebraska with his estranged son in order to claim what he believes to be a million-dollar sweepstakes prize.",2013-09-21,1.483,7.446,1820 +1517,109689,I Want You,"The sexy Gin is the new love of Hache, but this can not forget his former girlfriend, so the love triangle is inevitable.",2012-06-22,5.8132,7.445,1913 +1518,37181,About Elly,The mysterious disappearance of a kindergarten teacher during a picnic in the north of Iran is followed by a series of misadventures for her fellow travelers.,2009-06-06,1.4326,7.4,512 +1519,6114,Bram Stoker's Dracula,"In 19th century England, Count Dracula travels to London and meets Mina Harker, a young woman who appears as the reincarnation of his lost love.",1992-11-13,5.7552,7.446,5397 +1520,771,Home Alone,"Eight-year-old Kevin McCallister makes the most of the situation after his family unwittingly leaves him behind when they go on Christmas vacation. When thieves try to break into his home, he puts up a fight like no other.",1990-11-16,0.6516,7.446,11792 +1521,339984,Miracles from Heaven,"When Christy discovers her 10-year-old daughter Anna has a rare, incurable disease, she becomes a ferocious advocate for her daughter’s healing as she searches for a solution. After Anna has a freak accident and falls three stories, a miracle unfolds in the wake of her dramatic rescue that leaves medical specialists mystified, her family restored and their community inspired.",2016-03-17,3.8509,7.4,1220 +1522,42994,Memories,"In this anime anthology, a salvage ship crew happens upon a haunted vessel in ""Magnetic Rose""; a cold tablet turns a lab worker into a biological weapon in ""Stink Bomb""; and an urban populace carries on an endless war with an unseen foe in ""Cannon Fodder.""",1995-12-23,2.3202,7.445,494 +1523,458156,John Wick: Chapter 3 - Parabellum,"Super-assassin John Wick returns with a $14 million price tag on his head and an army of bounty-hunting killers on his trail. After killing a member of the shadowy international assassin’s guild, the High Table, John Wick is excommunicado, but the world’s most ruthless hit men and women await his every turn.",2019-05-15,14.2318,7.444,11129 +1524,37719,A Night at the Opera,The Marx Brothers take on high society and the opera world to bring two lovers together. A sly business manager and two wacky friends of two opera singers help them achieve success while humiliating their stuffy and snobbish enemies.,1935-11-15,1.1189,7.4,513 +1525,36685,The Rocky Horror Picture Show,"After getting a flat tire, two sweethearts discover the eerie mansion of a flamboyant scientist and houseful of wild characters. Through elaborate dance and rock songs, the mad scientist unveils his latest creation: a perfect, muscular man.",1975-08-14,3.3751,7.444,2933 +1526,10604,Zorba the Greek,An uptight English writer traveling to Crete on a matter of business finds his life changed forever when he meets the gregarious Alexis Zorba.,1964-12-14,2.1879,7.4,357 +1527,13188,Scrooge,"Ebenezer Scrooge malcontentedly shuffles through life as a cruel, miserly businessman, until he is visited by three spirits on Christmas Eve who show him how his unhappy childhood and adult behavior has left him a selfish, lonely old man.",1951-11-30,1.9078,7.4,344 +1528,9075,Black Book,"In the Nazi-occupied Netherlands during World War II, a Jewish singer infiltrates the regional Gestapo headquarters for the Dutch resistance.",2006-09-14,2.4018,7.443,1185 +1529,2767,The Lovers on the Bridge,"Set against Paris' oldest bridge, the Pont Neuf, while it was closed for repairs, this film is a love story between two young vagrants: Alex, a would be circus performer addicted to alcohol and sedatives and Michele, a painter driven to a life on the streets because of a failed relationship and an affliction which is slowly turning her blind.",1991-10-16,1.2874,7.4,348 +1530,24226,The Verdict,"Frank Galvin is a down-on-his-luck lawyer and reduced to drinking and ambulance chasing, when a former associate reminds him of his obligations in a medical malpractice suit by serving it to Galvin on a silver platter—all parties are willing to settle out of court. Blundering his way through the preliminaries, Galvin suddenly realizes that the case should actually go to court—to punish the guilty, to get a decent settlement for his clients... and to restore his standing as a lawyer.",1982-12-08,2.2133,7.4,669 +1531,18917,Alice,"A quiet young English girl named Alice finds herself in an alternate version of her own reality after chasing a white rabbit. She becomes surrounded by living inanimate objects and stuffed dead animals, and must find a way out of this nightmare - no matter how twisted or odd that way must be. A memorably bizarre screen version of Lewis Carroll’s novel ""Alice’s Adventures in Wonderland"".",1988-08-03,1.0301,7.442,327 +1532,13393,My Father and My Son,"A left-wing journalist whose wife died while giving birth to his son during a military coup returns to his family's farm. Estranged from his father for turning his back on the family and wasting his life with political activism instead, he tries to reconnect with him so that his son will have a place to live as his health is deteriorating due to the extensive torture he had to endure.",2005-11-18,0.8408,7.442,354 +1533,4254,Kal Ho Naa Ho,An uptight MBA student falls for the charismatic new neighbor who charms her troubled family – but he has a secret that forces him to push her away.,2003-11-27,2.3138,7.442,413 +1534,940,The Lady Vanishes,"On a train headed for England a group of travelers is delayed by an avalanche. Holed up in a hotel in a fictional European country, young Iris befriends elderly Miss Froy. When the train resumes, Iris suffers a bout of unconsciousness and wakes to find the old woman has disappeared. The other passengers ominously deny Miss Froy ever existed, so Iris begins to investigate with another traveler and, as the pair sleuth, romantic sparks fly.",1938-10-07,2.0427,7.442,967 +1535,462,Erin Brockovich,"A twice-divorced mother of three who sees an injustice, takes on the bad guy and wins -- with a little help from her push-up bra. Erin goes to work for an attorney and comes across medical records describing illnesses clustered in one nearby town. She starts investigating and soon exposes a monumental cover-up.",2000-03-17,4.7189,7.442,3391 +1536,353081,Mission: Impossible - Fallout,"When an IMF mission ends badly, the world is faced with dire consequences. As Ethan Hunt takes it upon himself to fulfill his original briefing, the CIA begin to question his loyalty and his motives. The IMF team find themselves in a race against time, hunted by assassins while trying to prevent a global catastrophe.",2018-07-25,10.9121,7.441,8647 +1537,41498,One Piece Film: Strong World,"20 years after his escape from Impel Down, the legendary pirate Shiki, the Golden Lion, reappears causing massive upheaval to the Marines. During his long seclusion, he was able to come up with a scheme to bring the World Government to his knees. On his way to execute the plan, Shiki crosses paths with the Straw Hat Pirates and becomes so impressed with Nami's knowledge of meteorology that he abducts her to forcedly enlist her into his crew. Luffy and the gang end up on a strange land populated with monstrous beasts as they desperately search for Shiki and Nami.",2009-12-12,2.4662,7.4,366 +1538,11615,The Life of David Gale,A man against capital punishment is accused of murdering a fellow activist and is sent to death row.,2003-02-21,2.1729,7.4,2079 +1539,10747,The Outlaw Josey Wales,"After avenging his family's brutal murder, Wales is pursued by a pack of soldiers. He prefers to travel alone, but ragtag outcasts are drawn to him - and Wales can't bring himself to leave them unprotected.",1976-06-30,3.2195,7.4,1203 +1540,5781,That Obscure Object of Desire,"After dumping a bucket of water on a beautiful young woman from the window of a train car, wealthy Frenchman Mathieu, regales his fellow passengers with the story of the dysfunctional relationship between himself and the young woman in question, a fiery 19-year-old flamenco dancer named Conchita. What follows is a tale of cruelty, depravity and lies -- the very building blocks of love.",1977-08-17,2.5668,7.441,413 +1541,76758,The Flowers of War,"A Westerner finds refuge with a group of women in a church during Japan's rape of Nanking in 1937. Posing as a priest, he attempts to lead the women to safety.",2011-12-15,2.0446,7.44,827 +1542,5558,The Phantom of Liberty,"This Surrealist film, with a title referencing the Communist Manifesto, strings together short incidents based on the life of director Luis Buñuel. Presented as chance encounters, these loosely related, intersecting situations, all without a consistent protagonist, reach from the 19th century to the 1970s. Touching briefly on subjects such as execution, pedophilia, incest, and sex, the film features an array of characters, including a sick father and incompetent police officers.",1974-09-10,1.7142,7.4,308 +1543,10400,The Hurricane,"The story of Rubin ""Hurricane"" Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.",1999-09-17,2.2973,7.4,1453 +1544,499631,Fabrizio De André: Principe libero,A biopic on the personal and artistic life of Italian songwriter Fabrizio De André.,2018-01-23,0.275,7.438,347 +1545,440298,Cold War,"A man and a woman meet in the ruins of post-war Poland. With vastly different backgrounds and temperaments, they are fatally mismatched and yet drawn to each other.",2018-06-08,1.4571,7.4,1515 +1546,28874,Summer Wars,"Teenage math whiz Kenji Koiso agrees to take a summer job at the Nagano hometown of his crush, Natsuki. When he arrives, he finds that her family have reunited to celebrate the 90th birthday of their matriarch. His job: pretend to be Natsuki's fiancé. Meanwhile, his attempt to solve a mathematical equation causes a parallel world's collision with Earth.",2009-08-01,2.875,7.4,969 +1547,1023,Adam's Apples,A neo-nazi sentenced to community service at a church clashes with the blindly devotional priest.,2005-04-15,1.7993,7.438,723 +1548,1151031,Bring Her Back,"Following the death of their father, a brother and sister are introduced to their new sibling by their foster mother, only to learn that she has a terrifying secret.",2025-05-28,76.7922,7.437,502 +1549,193756,Lone Survivor,"Four Navy SEALs on a covert mission to neutralize a high-level Taliban operative must make an impossible moral decision in the mountains of Afghanistan that leads them into an enemy ambush. As they confront unthinkable odds, the SEALs must find reserves of strength and resilience to fight to the finish.",2013-12-24,5.7215,7.437,4489 +1550,13689,Peaceful Warrior,A chance encounter with a stranger changes the life of a college gymnast.,2006-03-30,2.6783,7.437,434 +1551,9549,The Right Stuff,"As the Space Race ensues, seven pilots set off on a path to become the first American astronauts to enter space. However, the road to making history brings forth momentous challenges.",1983-10-20,2.5917,7.4,909 +1552,541671,Ballerina,"Taking place during the events of John Wick: Chapter 3 – Parabellum, Eve Macarro begins her training in the assassin traditions of the Ruska Roma.",2025-06-04,160.8981,7.4,1298 +1553,10867,Malena,"During WWII, a teenage boy discovering himself becomes love-stricken by Malèna, a sensual woman living in a small, narrow-minded Italian town.",2000-03-16,7.5745,7.436,2346 +1554,395834,Wind River,An FBI agent teams with the town's veteran game tracker to investigate a murder that occurred on a Native American reservation.,2017-08-03,5.9145,7.435,5442 +1555,10435,Chaplin,"An aged Charlie Chaplin narrates his life to his autobiography's editor, including his rise to wealth and comedic fame from poverty, his turbulent personal life and his run-ins with the FBI.",1992-12-17,2.3062,7.435,1123 +1556,686,Contact,"A radio astronomer receives the first extraterrestrial radio signal ever picked up on Earth. As the world powers scramble to decipher the message and decide upon a course of action, she must make some difficult decisions between her beliefs, the truth, and reality.",1997-07-11,4.8509,7.435,4678 +1557,400160,The SpongeBob Movie: Sponge on the Run,"When his best friend Gary is suddenly snatched away, SpongeBob takes Patrick on a madcap mission far beyond Bikini Bottom to save their pink-shelled pal.",2020-08-14,5.4347,7.434,2902 +1558,38985,Sorcerer,"Four men from different parts of the globe, all hiding from their pasts in the same remote South American town, agree to risk their lives transporting several cases of dynamite (which is so old that it is dripping unstable nitroglycerin) across dangerous jungle terrain.",1977-06-24,2.6315,7.4,593 +1559,9454,EverAfter,"Danielle, a vibrant young woman is forced into servitude after the death of her father when she was a young girl. Danielle's stepmother Rodmilla is a heartless woman who forces Danielle to do the cooking and cleaning, while she tries to marry off the eldest of her two daughters to the prince. But Danielle's life takes a wonderful turn when, under the guise of a visiting royal, she meets the charming Prince Henry.",1998-07-31,3.3414,7.434,1503 +1560,718930,Bullet Train,"Unlucky assassin Ladybug is determined to do his job peacefully after one too many gigs gone off the rails. Fate, however, may have other plans, as Ladybug's latest mission puts him on a collision course with lethal adversaries from around the globe—all with connected, yet conflicting, objectives—on the world's fastest train.",2022-08-03,12.6241,7.432,6817 +1561,395991,Only the Brave,Members of the Granite Mountain Hotshots battle deadly wildfires to save an Arizona town.,2017-09-22,5.1363,7.4,1678 +1562,394117,The Florida Project,"The story of a precocious six year-old and her ragtag group of friends whose summer break is filled with childhood wonder, possibility and a sense of adventure while the adults around them struggle with hard times.",2017-10-06,3.1842,7.433,2920 +1563,44012,"Jeanne Dielman, 23, quai du Commerce, 1080 Bruxelles","A lonely widowed housewife does her daily chores and takes care of her apartment where she lives with her teenage son, and turns the occasional trick to make ends meet. Slowly, her ritualized daily routines begin to fall apart.",1976-01-21,1.7614,7.433,350 +1564,19223,A Pure Formality,"Onoff is a famous writer, now a recluse. The Inspector is suspicious when Onoff is brought into the station one night, disoriented and suffering a kind of amnesia. In an isolated, rural police station, the Inspector tries to establish the events surrounding a killing, to reach a startling resolution.",1994-05-15,1.0993,7.432,367 +1565,6916,"Watch Out, We're Mad","After a tied 1st place in a local stunt race, two drivers start a contest to decide who of them will own the prize, a dune buggy. But when a mobster destroys the car, they are determined to get it back.",1974-03-29,1.8833,7.4,837 +1566,146,"Crouching Tiger, Hidden Dragon","Two warriors in pursuit of a stolen sword and a notorious fugitive are led to an impetuous, physically-skilled, teenage nobleman's daughter, who is at a crossroads in her life.",2000-07-06,6.5015,7.433,3340 +1567,758866,Drive My Car,"Yusuke Kafuku, a stage actor and director, still unable, after two years, to cope with the loss of his beloved wife, accepts to direct Uncle Vanya at a theater festival in Hiroshima. There he meets Misaki, an introverted young woman, appointed to drive his car. In between rides, secrets from the past and heartfelt confessions will be unveiled.",2021-08-18,2.2617,7.431,1360 +1568,16305,Sullivan's Travels,"Successful movie director John L. Sullivan, convinced he won't be able to film his ambitious masterpiece until he has suffered, dons a hobo disguise and sets off on a journey, aiming to ""know trouble"" first-hand. When all he finds is a train ride back to Hollywood and a beautiful blonde companion, he redoubles his efforts, managing to land himself in more trouble than he bargained for when he loses his memory and ends up a prisoner on a chain gang.",1941-11-30,1.4033,7.431,483 +1569,3009,The Trial,The surreal tale of an unassuming man who is accused of a never-specified crime and shambles through bizarre encounters to escape this nightmare.,1962-08-25,2.8094,7.431,523 +1570,27632,Black Sunday,"A vengeful witch, Asa Vajda, and her fiendish servant, Igor Jauvitch, return from the grave and begin a bloody campaign to possess the body of the witch's beautiful look-alike descendant: Katia. Only a handsome doctor with the help of family members stand in her way.",1960-08-11,1.9037,7.4,551 +1571,11030,Zelig,"Fictional documentary about the life of human chameleon Leonard Zelig, a man who becomes a celebrity in the 1920s due to his ability to look and act like whoever is around him. Clever editing places Zelig in real newsreel footage of Woodrow Wilson, Babe Ruth, and others.",1983-07-15,1.1751,7.43,884 +1572,821881,The Swimmers,"From war-torn Syria to the 2016 Rio Olympics, two young sisters embark on a risky voyage, putting their hearts and their swimming skills to heroic use.",2022-11-24,1.9374,7.433,590 +1573,508883,The Boy and the Heron,"While the Second World War rages, the teenage Mahito, haunted by his mother's tragic death, is relocated from Tokyo to the serene rural home of his new stepmother Natsuko, a woman who bears a striking resemblance to the boy's mother. As he tries to adjust, this strange new world grows even stranger following the appearance of a persistent gray heron, who perplexes and bedevils Mahito, dubbing him the ""long-awaited one.""",2023-07-14,8.39,7.429,2278 +1574,7294,The Man Without a Past,"Arriving in Helsinki, a nameless man is beaten within an inch of his life by thugs, miraculously recovering only to find that he has completely lost his memory. Back on the streets, he attempts to begin again from zero, befriending a moody dog and becoming besotted with a Salvation Army volunteer.",2002-03-01,1.3581,7.429,388 +1575,2503,The Bourne Ultimatum,"Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar, an upgrade to Project Treadstone, in a series of newspaper columns. Information from the reporter stirs a new set of memories, and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.",2007-08-03,6.1574,7.429,7944 +1576,645886,The Unforgivable,A woman is released from prison after serving a sentence for a violent crime and re-enters a society that refuses to forgive her past.,2021-11-24,2.7292,7.428,1899 +1577,617653,The Last Duel,"King Charles VI declares that Knight Jean de Carrouges settle his dispute with his squire, Jacques Le Gris, by challenging him to a duel.",2021-10-13,3.8553,7.428,3569 +1578,319373,Sweet Bean,"The master of a dorayaki pastry store hires a 76-year-old woman whose talents attract customers from all over. But she's hiding a troubling secret. Life's joys are found in the little details, and no matter what may be weighing you down, everyone loves a good pastry.",2015-05-30,1.2272,7.428,575 +1579,227306,Unbroken,"A chronicle of the life of Louis Zamperini, an Olympic runner who was taken prisoner by Japanese forces during World War II.",2014-12-25,4.6237,7.428,4200 +1580,13475,Star Trek,"The fate of the galaxy rests in the hands of bitter rivals. One, James Kirk, is a delinquent, thrill-seeking Iowa farm boy. The other, Spock, a Vulcan, was raised in a logic-based society that rejects all emotion. As fiery instinct clashes with calm reason, their unlikely but powerful partnership is the only thing capable of leading their crew through unimaginable danger, boldly going where no one has gone before. The human adventure has begun again.",2009-05-06,6.5175,7.428,10095 +1581,11829,Trinity Is Still My Name,The two brothers Trinity and Bambino are exchanged by two federal agents and take advantage of the situation to steal a huge booty hidden in a monastery by a gang of outlaws.,1971-10-21,2.484,7.428,938 +1582,507089,Five Nights at Freddy's,"Recently fired and desperate for work, a troubled young man named Mike agrees to take a position as a night security guard at an abandoned theme restaurant: Freddy Fazbear's Pizzeria. But he soon discovers that nothing at Freddy's is what it seems.",2023-10-25,16.3012,7.425,4487 +1583,101299,The Hunger Games: Catching Fire,"Katniss Everdeen has returned home safe after winning the 74th Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means that they must turn around and leave their family and close friends, embarking on a ""Victor's Tour"" of the districts. Along the way Katniss senses that a rebellion is simmering, but the Capitol is still very much in control as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell) - a competition that could change Panem forever.",2013-11-15,10.1376,7.426,17816 +1584,65218,Lemonade Mouth,"When five ragtag freshman first meet in detention, it seems they have nothing in common. But, through music, they form an unbreakable bond and discover they have the makings of the greatest high school garage band in history! In the face of incredible odds, Olivia, Stella, Wen, Mohini and Charlie find they can make a real difference when they learn to lean on each other and let go of everything holding back their dreams.",2011-04-15,2.1826,7.427,1060 +1585,12780,Iron Monkey,"In this Hong Kong variation of Robin Hood, corrupt officials of a Chinese village are robbed by a masked bandit known as ""Iron Monkey"", named after a benevolent deity. When all else fails, the Governor forces a traveling physician into finding the bandit.",1993-09-03,2.0075,7.4,308 +1586,12207,The Legend of Drunken Master,"Returning home with his father after a shopping expedition, Wong Fei-Hong is unwittingly caught up in the battle between foreigners who wish to export ancient Chinese artifacts and loyalists who don't want the pieces to leave the country. Fei-Hong must fight against the foreigners using his Drunken Boxing style, and overcome his father's antagonism as well.",1994-02-03,3.2689,7.427,1011 +1587,8094,The Magdalene Sisters,Three young Irish women struggle to maintain their spirits while they endure dehumanizing abuse as inmates of a Magdalene Sisters Asylum.,2002-08-30,1.2755,7.427,423 +1588,921785,Mixed by Erry,"The rise and fall of the pirate mixtape empire of three brothers from Naples, Italy, during the '80s.",2023-03-02,0.7564,7.426,464 +1589,51828,One Day,"A romantic comedy centered on Dexter and Emma, who first meet during their graduation in 1988 and proceed to keep in touch regularly. The film follows what they do on July 15 annually, usually doing something together.",2011-03-02,5.3289,7.426,4374 +1590,466272,Once Upon a Time... in Hollywood,"Los Angeles, 1969. TV star Rick Dalton, a struggling actor specializing in westerns, and stuntman Cliff Booth, his best friend, try to survive in a constantly changing movie industry. Dalton is the neighbor of the young and promising actress and model Sharon Tate, who has just married the prestigious Polish director Roman Polanski…",2019-07-24,15.2116,7.425,14059 +1591,13004,Barbie and the Diamond Castle,"Liana and Alexa (Barbie and Teresa) are best friends who share everything, including their love of singing. Upon meeting a girl inside a mirror, the duo embark on a journey that will put their friendship to the ultimate test.",2008-09-03,4.8683,7.425,863 +1592,11236,The Secret Garden,"A young British girl born and reared in India loses her neglectful parents in an earthquake. She is returned to England to live at her uncle's castle. Her uncle is very distant due to the loss of his wife ten years before. Neglected once again, she begins exploring the estate and discovers a garden that has been locked and forgotten. Aided by one of the servants' boys, she begins restoring the garden, and eventually discovers some other secrets of the manor.",1993-08-13,2.3162,7.4,935 +1593,1653,The Motorcycle Diaries,"Based on the journals of Che Guevara, leader of the Cuban Revolution. In his memoirs, Guevara recounts adventures he and best friend Alberto Granado had while crossing South America by motorcycle in the early 1950s.",2004-02-06,1.973,7.425,1338 +1594,823,Jin-Roh: The Wolf Brigade,"A member of an elite paramilitary counter-terrorism unit becomes traumatized after witnessing the suicide bombing of a young girl and is forced to undergo retraining. However, unbeknownst to him, he becomes a key player in a dispute between rival police divisions, as he finds himself increasingly involved with the sister of the girl he saw die.",1999-11-17,2.288,7.425,513 +1595,292011,Richard Jewell,"Richard Jewell thinks quick, works fast, and saves hundreds, perhaps thousands, of lives after a domestic terrorist plants several pipe bombs and they explode during a concert, only to be falsely suspected of the crime by sloppy FBI work and sensational media coverage.",2019-12-13,3.4197,7.4,2589 +1596,20558,Scooby-Doo! in Where's My Mummy?,Scooby-Doo and the Mystery Inc. gang become involved in a supernatural mystery in Egypt.,2005-05-13,1.9734,7.4,407 +1597,4024,Last Year at Marienbad,"In a strange and isolated chateau, a man becomes acquainted with a woman and insists that they have met before.",1961-05-25,1.6541,7.4,506 +1598,376290,Miss Sloane,An ambitious lobbyist faces off against the powerful gun lobby in an attempt to pass gun control legislation.,2016-11-25,3.012,7.423,1883 +1599,10437,The Muppet Christmas Carol,"A retelling of the classic Dickens tale of Ebenezer Scrooge, miser extraordinaire. He is held accountable for his dastardly ways during night-time visitations by the Ghosts of Christmas Past, Present and Future.",1992-12-11,1.974,7.423,1064 +1600,9461,Enter the Dragon,A martial artist agrees to spy on a reclusive crime lord using his invitation to a tournament there as cover.,1973-08-17,4.1929,7.423,1973 +1601,4584,Sense and Sensibility,"The Dashwood sisters, sensible Elinor and passionate Marianne, whose chances at marriage seem doomed by their family's sudden loss of fortune. When Henry Dashwood dies unexpectedly, his estate must pass on by law to his son from his first marriage, John and wife Fanny. But these circumstances leave Mr. Dashwood's current wife, and daughters Elinor, Marianne and Margaret, without a home and with barely enough money to live on. As Elinor and Marianne struggle to find romantic fulfillment in a society obsessed with financial and social status, they must learn to mix sense with sensibility in their dealings with both money and men.",1995-12-13,4.1898,7.4,1743 +1602,565310,The Farewell,A headstrong Chinese-American woman returns to China when her beloved grandmother is given a terminal diagnosis. Billi struggles with her family's decision to keep grandma in the dark about her own illness as they all stage an impromptu wedding to see grandma one last time.,2019-07-12,1.9891,7.422,1464 +1603,217993,Justice League: War,"The world is under attack by an alien armada led by the powerful Apokoliptian, Darkseid. A group of superheroes consisting of Superman, Batman, Wonder Woman, The Flash, Green Lantern, Cyborg, and Shazam must set aside their differences and gather together to defend Earth.",2014-01-21,2.9646,7.422,1110 +1604,206487,Predestination,"Predestination chronicles the life of a Temporal Agent sent on an intricate series of time-travel journeys designed to prevent future killers from committing their crimes. Now, on his final assignment, the Agent must stop the one criminal that has eluded him throughout time and prevent a devastating attack in which thousands of lives will be lost.",2014-08-28,5.6551,7.422,6701 +1605,13403,Hedwig and the Angry Inch,"Raised a boy in East Berlin, Hedwig undergoes a personal transformation in order to emigrate to the U.S., where she reinvents herself as an 'internationally ignored' but divinely talented rock diva, inhabiting a 'beautiful gender of one'.",2001-07-20,1.0228,7.422,398 +1606,860159,Crush,"When an aspiring young artist is forced to join her high school track team, she uses it as an opportunity to pursue the girl she's been harboring a long-time crush on. But she soon finds herself falling for an unexpected teammate and discovers what real love feels like.",2022-04-29,1.9038,7.421,464 +1607,768362,Missing,"When her mother disappears while on vacation in Colombia with her new boyfriend, June’s search for answers is hindered by international red tape. Stuck thousands of miles away in Los Angeles, June creatively uses all the latest technology at her fingertips to try and find her before it’s too late. But as she digs deeper, her digital sleuthing raises more questions than answers... and when June unravels secrets about her mom, she discovers that she never really knew her at all.",2023-01-19,3.9693,7.421,1146 +1608,697843,Extraction 2,"Back from the brink of death, highly skilled commando Tyler Rake takes on another dangerous mission: saving the imprisoned family of a ruthless gangster.",2023-06-09,7.6003,7.4,2646 +1609,592279,Kalashnikov AK-47,"A Russian military propaganda film about the tank commander Kalashnikov, severely injured in battle in 1941. The accident leaves him incapacitated and unable to return to the front line. While recovering in the hospital, he begins creating the initial sketches of what will become one of the world’s most legendary weapons. A self-taught inventor is only 29 when he develops the now iconic assault riffle — the AK-47. Shot in occupied Crimea.",2020-02-20,1.9441,7.4,330 +1610,340666,Nocturnal Animals,"Susan Morrow receives a book manuscript from her ex-husband – a man she left 20 years earlier – asking for her opinion of his writing. As she reads, she is drawn into the fictional life of Tony Hastings, a mathematics professor whose family vacation turns violent.",2016-11-04,3.4611,7.421,7992 +1611,11562,Crimes and Misdemeanors,A renowned ophthalmologist is desperate to cut off an adulterous relationship…which ends up in murder; and a frustrated documentary filmmaker woos an attractive television producer while making a film about her insufferably self-centered boss.,1989-10-13,1.6197,7.421,903 +1612,9918,Glory Road,"In 1966, Texas Western coach Don Haskins led the first all-black starting line-up for a college basketball team to the NCAA national championship.",2006-01-13,2.2002,7.4,746 +1613,1523,The Last King of Scotland,"Young Scottish doctor, Nicholas Garrigan decides it's time for an adventure after he finishes his formal education, so he decides to try his luck in Uganda, and arrives during the downfall of President Obote. General Idi Amin comes to power and asks Garrigan to become his personal doctor.",2006-09-27,3.0865,7.421,2223 +1614,644583,The Mauritanian,"The true story of the Mauritanian Mohamedou Ould Slahi, who was held at the U.S military's Guantanamo Bay detention center without charges for over a decade and sought help from a defense attorney for his release.",2021-02-12,2.4779,7.42,1164 +1615,466420,Killers of the Flower Moon,"When oil is discovered in 1920s Oklahoma under Osage Nation land, the Osage people are murdered one by one—until the FBI steps in to unravel the mystery.",2023-10-18,7.7215,7.419,3704 +1616,18333,Hour of the Wolf,"While vacationing on a remote German island with his pregnant wife, an artist has an emotional breakdown while confronting his repressed desires.",1968-02-19,1.5117,7.42,513 +1617,9426,The Fly,"When Seth Brundle makes a huge scientific and technological breakthrough in teleportation, he decides to test it on himself. Unbeknownst to him, a common housefly manages to get inside the device and the two become one.",1986-08-15,5.247,7.42,4656 +1618,4034,That Man from Rio,"French military man Adrien Dufourquet gets an eight-day furlough to visit his fiancée, Agnès. But when he arrives in Paris, he learns that her late father's partner, museum curator Professor Catalan, has just been kidnapped by a group of Amazon tribesmen who have also stolen a priceless statue from the museum. Adrien and Agnès pursue the kidnappers to Brazil, where they learn that the statue is the key to a hidden Amazon treasure.",1964-02-05,1.2174,7.4,326 +1619,853,Enemy at the Gates,A Russian and a German sniper play a game of cat-and-mouse during the Battle of Stalingrad in WWII.,2001-02-28,5.9296,7.4,3804 +1620,489418,In Safe Hands,"Théo is given up for adoption by his biological mother on the very day he is born. After this anonymous birth, the mother has two months to change her mind… Or not. The child welfare services and adoption service spring into action… The former have to take care of the baby and support it during this limbo-like time, this period of uncertainty, while the latter must find a woman to become his adoptive mother. She is called Alice, and she has spent the last ten years fighting to have a child.",2018-12-05,1.1199,7.419,518 +1621,466420,Killers of the Flower Moon,"When oil is discovered in 1920s Oklahoma under Osage Nation land, the Osage people are murdered one by one—until the FBI steps in to unravel the mystery.",2023-10-18,7.7215,7.419,3704 +1622,451480,The Guernsey Literary & Potato Peel Pie Society,"Free-spirited writer Juliet Ashton forms a life-changing bond with the delightful and eccentric Guernsey Literary and Potato Peel Pie Society, when she decides to write about the book club they formed during the occupation of Guernsey in WWII.",2018-04-19,2.2435,7.419,1351 +1623,284052,Doctor Strange,"After his career is destroyed, a brilliant but arrogant surgeon gets a new lease on life when a sorcerer takes him under her wing and trains him to defend the world against evil.",2016-10-25,10.9443,7.419,22700 +1624,250219,I Can Quit Whenever I Want,"A university researcher is fired because of the cuts to university. To earn a living he decides to produce drugs recruiting his former colleagues, who despite their skills are living at the margins of society.",2014-02-06,0.9001,7.4,1818 +1625,190859,American Sniper,"U.S. Navy SEAL Chris Kyle takes his sole mission—protect his comrades—to heart and becomes one of the most lethal snipers in American history. His pinpoint accuracy not only saves countless lives but also makes him a prime target of insurgents. Despite grave danger and his struggle to be a good husband and father to his family back in the States, Kyle serves four tours of duty in Iraq. However, when he finally returns home, he finds that he cannot leave the war behind.",2014-12-25,7.7026,7.419,13203 +1626,137106,The Lego Movie,"An ordinary Lego mini-figure, mistakenly thought to be the extraordinary MasterBuilder, is recruited to join a quest to stop an evil Lego tyrant from conquering the universe.",2014-02-06,6.4817,7.4,8085 +1627,853,Enemy at the Gates,A Russian and a German sniper play a game of cat-and-mouse during the Battle of Stalingrad in WWII.,2001-02-28,5.9296,7.419,3805 +1628,839,Duel,"Traveling businessman David Mann angers the driver of a rusty tanker while crossing the California desert. A simple trip turns deadly, as Mann struggles to stay on the road while the tanker plays cat and mouse with his life.",1971-11-13,2.378,7.419,1951 +1629,427,Mon Oncle,"Genial, bumbling Monsieur Hulot loves his top-floor apartment in a grimy corner of the city, and cannot fathom why his sister's family has moved to the suburbs. Their house is an ultra-modern nightmare, which Hulot only visits for the sake of stealing away his rambunctious young nephew. Hulot's sister, however, wants to win him over to her new way of life, and conspires to set him up with a wife and job.",1958-05-10,1.7316,7.419,575 +1630,14092,Ghost in the Shell 2.0,"In the year 2029, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop a highly-wanted hacker known as 'The Puppetmaster'. Ghost in the Shell 2.0 is a reproduced version of its original 1995 counterpart. Among a numerous enhancements, for the film's 2.0 release, were a number of scenes were overhauled with 3D animation, visual improvements, and soundtrack rerecorded in 6.1 surround sound.",2008-07-12,1.9536,7.418,432 +1631,11031,This Is Spinal Tap,"""This Is Spinal Tap"" shines a light on the self-contained universe of a metal band struggling to get back on the charts, including everything from its complicated history of ups and downs, gold albums, name changes and undersold concert dates, along with the full host of requisite groupies, promoters, hangers-on and historians, sessions, release events and those special behind-the-scenes moments that keep it all real.",1984-03-02,2.7811,7.418,1492 +1632,10784,Cabaret,"Inside the Kit Kat Club of 1931 Berlin, starry-eyed singer Sally Bowles and an impish emcee sound the clarion call to decadent fun, while outside a certain political party grows into a brutal force.",1972-02-13,2.5087,7.4,920 +1633,4232,Scream,"A year after the murder of her mother, a teenage girl is terrorized by a masked killer who targets her and her friends by using scary movies as part of a deadly game.",1996-12-20,9.848,7.417,7397 +1634,2690,Irma la Douce,"When a naive policeman falls in love with a prostitute, he doesn’t want her seeing other men and creates an alter ego who’s to be her only customer.",1963-06-05,2.2225,7.4,436 +1635,242,The Godfather Part III,"In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don, Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.",1990-12-25,9.6779,7.417,6471 +1636,877957,Drifting Home,"One fateful summer, a group of elementary school kids set adrift on an abandoned apartment building must look within themselves to find a way back home.",2022-09-09,2.2157,7.4,302 +1637,659959,Summer of 85,"What do you dream of when you're 16-years-old and in a seaside resort in Normandy in the 1980s? A best friend? A lifelong teen pact? Scooting off on adventures on a boat or a motorbike? Living life at breakneck speed? No. You dream of death. Because you can't get a bigger kick than dying. And that's why you save it till the very end. The summer holidays are just beginning, and this story recounts how Alexis grew into himself.",2020-07-14,2.5341,7.4,868 +1638,6003,Romeo and Juliet,"Romeo Montague and Juliet Capulet fall in love against the wishes of their feuding families. Driven by their passion, the young lovers defy their destiny and elope, only to suffer the ultimate tragedy.",1968-04-02,2.7312,7.4,693 +1639,1391,Y Tu Mamá También,"In Mexico, two teenage boys and an attractive older woman embark on a road trip and learn a thing or two about life, friendship, sex, and each other.",2001-06-08,5.8719,7.416,1619 +1640,26596,Johnny Guitar,"On the outskirts of town, the hard-nosed Vienna owns a saloon frequented by the undesirables of the region, including Dancin' Kid and his gang. Another patron of Vienna's establishment is Johnny Guitar, a former gunslinger and her lover. When a heist is pulled in town that results in a man's death, Emma Small, Vienna's rival, rallies the townsfolk to take revenge on Vienna's saloon – even without proof of her wrongdoing.",1954-05-26,1.6856,7.415,445 +1641,736074,"Batman: The Long Halloween, Part Two","As Gotham City's young vigilante, the Batman, struggles to pursue a brutal serial killer, district attorney Harvey Dent gets caught in a feud involving the criminal family of the Falcones.",2021-07-26,1.7011,7.414,544 +1642,582014,Promising Young Woman,"A young woman, traumatized by a tragic event in her past, seeks out vengeance against those who crossed her path.",2020-12-13,4.8141,7.414,3403 +1643,660000,Lost Illusions,"Lucien de Rubempré, a young, lower-class poet, leaves his family's printing house for Paris. Soon, he learns the dark side of the arts business as he tries to stay true to his dreams.",2021-10-20,1.0945,7.4,514 +1644,4203,Women on the Verge of a Nervous Breakdown,"Pepa resolves to kill herself with a batch of sleeping-pill-laced gazpacho after her lover leaves her. Fortunately, she is interrupted by a deliciously chaotic series of events.",1988-03-25,1.8932,7.414,942 +1645,4174,Spellbound,"When Dr. Anthony Edwardes arrives at a Vermont mental hospital to replace the outgoing hospital director, Dr. Constance Peterson, a psychoanalyst, discovers Edwardes is actually an impostor. The man confesses that the real Dr. Edwardes is dead and fears he may have killed him, but cannot recall anything. Dr. Peterson, however is convinced his impostor is innocent of the man's murder, and joins him on a quest to unravel his amnesia through psychoanalysis.",1945-11-08,2.4429,7.4,920 +1646,273481,Sicario,An idealistic FBI agent is enlisted by a government task force to aid in the escalating war against drugs at the border area between the U.S. and Mexico.,2015-09-17,8.9677,7.412,9018 +1647,5123,August Rush,"Lyla and Louis, a singer and a musician, fall in love, but are soon compelled to separate. Lyla is forced to give up her newborn but unknown to her, he grows up to become a musical genius.",2007-11-21,3.5779,7.412,2746 +1648,626,Un Chien Andalou,"Un Chien Andalou is an European avant-garde surrealist film, a collaboration between director Luis Buñuel and Salvador Dali.",1929-06-05,1.8519,7.412,1341 +1649,575,The Experiment,20 volunteers agree to take part in a seemingly well-paid experiment advertised by the university. It is supposed to be about aggressive behavior in an artificial prison situation. A journalist senses a story behind the ad and smuggles himself in among the test subjects. They are randomly divided into prisoners and guards. What seems like a game at the beginning soon turns into bloody seriousness.,2001-03-08,2.1987,7.412,1133 +1650,1075794,Leo,"Jaded 74-year-old lizard Leo has been stuck in the same Florida classroom for decades with his terrarium-mate turtle. When he learns he only has one year left to live, he plans to escape to experience life on the outside but instead gets caught up in the problems of his anxious students — including an impossibly mean substitute teacher.",2023-11-17,6.4248,7.411,1258 +1651,736069,Justice Society: World War II,"When the Flash finds himself dropped into the middle of World War II, he joins forces with Wonder Woman and her top-secret team known as the Justice Society of America.",2021-04-27,1.9512,7.411,577 +1652,516486,Greyhound,"A first-time captain leads a convoy of allied ships carrying thousands of soldiers across the treacherous waters of the ""Black Pit"" to the front lines of WWII. With no air cover protection for 5 days, the captain and his convoy must battle the surrounding enemy Nazi U-boats in order to give the allies a chance to win the war.",2020-07-09,8.0296,7.411,3088 +1653,502897,Leto,"Leningrad, one summer in the early eighties. Smuggling LPs by Lou Reed and David Bowie, the underground rock scene is boiling ahead of the Perestroika. Mike and his beautiful wife Natasha meet with young Viktor Tsoï. Together with friends, they will change the destiny of rock’n’roll in the Soviet Union.",2018-06-07,0.7348,7.411,320 +1654,492,Being John Malkovich,"One day at work, unsuccessful puppeteer Craig finds a portal into the head of actor John Malkovich. The portal soon becomes a passion for anybody who enters its mad and controlling world of overtaking another human body.",1999-10-29,4.0576,7.411,4540 +1655,851303,Waiting for Bojangles,"A boy and his eccentric parents leave their home in Paris for a country house in Spain. As the mother descends deeper into her own mind, it's up to the boy and his father to keep her safe and happy.",2021-10-13,1.0084,7.4,326 +1656,39486,Secretariat,"Housewife and mother Penny Chenery agrees to take over her ailing father's Virginia-based Meadow Stables, despite her lack of horse-racing knowledge. Against all odds, Chenery - with the help of veteran trainer Lucien Laurin - manages to navigate the male-dominated business, ultimately fostering the first Triple Crown winner in 25 years.",2010-08-20,2.0387,7.4,609 +1657,14257,Delusions of Grandeur,"Don Sallust is the minister of the King of Spain. Being disingenuous, hypocritical, greedy and collecting the taxes for himself, he is hated by the people he oppresses. Accused by The Queen, a beautiful princess Bavarian, of having an illegitimate child to one of her maids of honor, he was stripped of his duties and ordered to retire to a monastery.",1971-12-08,1.8187,7.4,707 +1658,507505,El Angel,"Buenos Aires, Argentina, 1971. Carlos Robledo Puch is a 19-year-old boy with an angelic face, but a vocational thief as well, who acts ruthlessly, without remorse. When he meets Ramón, they follow together a dark path of crime and death.",2018-08-09,1.042,7.409,560 +1659,432836,Memoir of a Murderer,A former serial killer with Alzheimer's fights to protect his daughter from her mysterious boyfriend who may be a serial killer too.,2017-09-07,2.5932,7.409,331 +1660,13199,American Me,"During his 18 years in Folsom Prison, street-gang leader Santana rules over all the drug-and-murder activities behind bars. Upon his release, Santana goes back to his old neighborhood, intending to lead a peaceful, crime-free life. But his old gang buddies force him back into his old habits.",1992-03-13,2.0579,7.4,375 +1661,11481,Repulsion,"Beautiful young manicurist Carole suffers from androphobia (the pathological fear of interaction with men). When her sister and roommate, Helen, leaves their London flat to go on an Italian holiday with her married boyfriend, Carole withdraws into her apartment. She begins to experience frightful hallucinations, her fear gradually mutating into madness.",1965-06-01,2.0573,7.409,1036 +1662,312221,Creed,"The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.",2015-11-25,12.9288,7.408,7649 +1663,5723,Once,"A vacuum repairman moonlights as a street musician and hopes for his big break. One day a Czech immigrant, who earns a living selling flowers, approaches him with the news that she is also an aspiring singer-songwriter. The pair decide to collaborate, and the songs that they compose reflect the story of their blossoming love.",2007-03-23,1.9937,7.409,1369 +1664,794,The Omen,"Immediately after their miscarriage, the US diplomat Robert Thorn adopts the newborn Damien without the knowledge of his wife. Yet what he doesn’t know is that their new son is the son of the devil.",1976-06-25,3.3663,7.407,2232 +1665,26963,The Secret of Kells,"Adventure awaits 12 year old Brendan who must fight Vikings and a serpent god to find a crystal and complete the legendary Book of Kells. In order to finish Brother Aiden's book, Brendan must overcome his deepest fears on a secret quest that will take him beyond the abbey walls and into the enchanted forest where dangerous mythical creatures hide. Will Brendan succeed in his quest?",2009-02-09,2.1632,7.4,730 +1666,1360,Frida,"A biography of artist Frida Kahlo, who channeled the pain of a crippling injury and her tempestuous marriage into her work.",2002-08-29,3.3041,7.407,2069 +1667,814,An American Werewolf in London,"American tourists David and Jack are savaged by an unidentified vicious animal whilst hiking on the Yorkshire Moors. Retiring to the home of a beautiful nurse to recuperate, David soon experiences disturbing changes to his mind and body.",1981-08-21,4.3618,7.407,2534 +1668,639,When Harry Met Sally...,"Sex always gets in the way of friendships between men and women. At least, that's what Harry Burns believes. So when Harry meets Sally Albright and a deep friendship blossoms between them, Harry's determined not to let his attraction to Sally destroy it. But when a night of weakness ends in a morning of panic, can the pair avoid succumbing to Harry's fears by remaining friends and admitting they just might be the perfect match for each other?",1989-07-12,4.3843,7.407,4260 +1669,374461,Mr. Church,"A unique friendship develops when a little girl and her dying mother inherit a cook - Mr. Church. What begins as an arrangement that should only last six months, instead spans fifteen years.",2016-09-16,1.7726,7.4,485 +1670,87827,Life of Pi,"The story of an Indian boy named Pi, a zookeeper's son who finds himself in the company of a hyena, zebra, orangutan, and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.",2012-11-20,6.269,7.406,13360 +1671,4032,My Girl,"Vada Sultenfuss is obsessed with death. Her mother is dead, and her father runs a funeral parlor. She is also in love with her English teacher, and joins a poetry class over the summer just to impress him. Thomas J., her best friend, is ""allergic to everything"", and sticks with Vada despite her hangups. When Vada's father hires Shelly, and begins to fall for her, things take a turn to the worse...",1991-11-27,4.381,7.406,2176 +1672,1359,American Psycho,"A wealthy New York investment banking executive hides his alternate psychopathic ego from his co-workers and friends as he escalates deeper into his illogical, gratuitous fantasies.",2000-04-13,9.1406,7.406,11518 +1673,226,Boys Don't Cry,A young transgender man explores his gender identity and searches for love in rural Nebraska.,1999-09-02,2.4631,7.406,1375 +1674,771077,Rise,"Elise thought she had the perfect life: an ideal boyfriend and a promising career as a ballet dancer. It all falls apart the day she catches him cheating on her with her stage backup; and after she suffers an injury on stage, it seems like she might not be able to dance ever again.",2022-03-30,1.2672,7.4,438 +1675,429617,Spider-Man: Far From Home,"Peter Parker and his friends go on a summer trip to Europe. However, they will hardly be able to rest - Peter will have to agree to help Nick Fury uncover the mystery of creatures that cause natural disasters and destruction throughout the continent.",2019-06-28,19.4885,7.405,16228 +1676,290542,You're Not You,A drama centered on a classical pianist who has been diagnosed with ALS and the brash college student who becomes her caregiver.,2014-10-10,1.654,7.405,811 +1677,986056,Thunderbolts*,"After finding themselves ensnared in a death trap, seven disillusioned castoffs must embark on a dangerous mission that will force them to confront the darkest corners of their pasts.",2025-04-30,110.0097,7.403,2176 +1678,76589,Justice League: Doom,"An adaptation of Mark Waid's ""Tower of Babel"" story from the JLA comic. Vandal Savage steals confidential files Batman has compiled on the members of the Justice League, and learns all their weaknesses.",2012-02-28,2.7955,7.404,897 +1679,20982,Naruto Shippuden the Movie,"Demons that once almost destroyed the world, are revived by someone. To prevent the world from being destroyed, the demon has to be sealed and the only one who can do it is the shrine maiden Shion from the country of demons, who has two powers; one is sealing demons and the other is predicting the deaths of humans. This time Naruto's mission is to guard Shion, but she predicts Naruto's death. The only way to escape it, is to get away from Shion, which would leave her unguarded, then the demon, whose only goal is to kill Shion will do so, thus meaning the end of the world. Naruto decides to challenge this ""prediction of death.""",2007-08-04,4.9419,7.404,1043 +1680,10474,The Basketball Diaries,A high school basketball player’s life turns upside down after free-falling into the harrowing world of drug addiction.,1995-04-21,3.2833,7.404,2079 +1681,840326,Sisu,"When an ex-soldier who discovers gold in the Lapland wilderness tries to take the loot into the city, German soldiers led by a brutal SS officer battle him.",2022-09-09,8.1401,7.4,2406 +1682,463257,The Peanut Butter Falcon,A down-on-his-luck crab fisherman embarks on a journey to get a young man with Down syndrome to a professional wrestling school in rural North Carolina and away from the retirement home where he’s lived for the past two and a half years.,2019-08-09,3.8373,7.403,1498 +1683,630220,18 Presents,"Elisa is only forty when an incurable disease takes her from her husband and their daughter. Before her heart stops, Elisa finds a way to stay close to her: a gift for every birthday up to her adult age, 18 gifts to try to accompany her child's growth year after year.",2020-01-02,1.2655,7.402,696 +1684,423108,The Conjuring: The Devil Made Me Do It,"Paranormal investigators Ed and Lorraine Warren encounter what would become one of the most sensational cases from their files. The fight for the soul of a young boy takes them beyond anything they'd ever seen before, to mark the first time in U.S. history that a murder suspect would claim demonic possession as a defense.",2021-05-25,18.8472,7.402,6116 +1685,11471,A Better Tomorrow,"A reforming ex-gangster tries to reconcile with his estranged policeman brother, but the ties to his former gang are difficult to break.",1986-08-02,2.245,7.4,552 +1686,94329,The Raid,"Deep in the heart of Jakarta's slums lies an impenetrable safe house for the world's most dangerous killers and gangsters. Until now, the run-down apartment block has been considered untouchable to even the bravest of police. Cloaked under the cover of pre-dawn darkness and silence, an elite swat team is tasked with raiding the safe house in order to take down the notorious drug lord that runs it. But when a chance encounter with a spotter blows their cover and news of their assault reaches the drug lord, the building's lights are cut and all the exits blocked. Stranded on the sixth floor with no way out, the unit must fight their way through the city's worst to survive their mission. Starring Indonesian martial arts sensation Iko Uwais.",2012-03-22,4.1861,7.402,3622 +1687,876716,Ciao Alberto,"With his best friend Luca away at school, Alberto is enjoying his new life in Portorosso working alongside Massimo—the imposing, tattooed, one-armed fisherman of few words—who's quite possibly the coolest human in the entire world as far as Alberto is concerned. He wants more than anything to impress his mentor, but it's easier said than done.",2021-11-11,1.537,7.4,678 +1688,10849,The Purple Rose of Cairo,"Cecilia is a waitress in New Jersey, living a dreary life during the Great Depression. Her only escape from her mundane reality is the movie theatre. After losing her job, Cecilia goes to see 'The Purple Rose of Cairo' in hopes of raising her spirits, where she watches dashing archaeologist Tom Baxter time and again.",1985-03-01,2.5294,7.4,1081 +1689,271706,Big Fish & Begonia,"Beyond the human realm, there is a magical race of beings who control the tides and the changing of the seasons. One of these beings, a young girl named Chun, seeks something more—she wants to experience the human world! At sixteen, she finally gets her chance and transforms into a dolphin in order to explore the world that has her fascinated. But she soon discovers that it's a dangerous place and nearly gets killed in a vortex. Luckily, her life is spared when a young boy sacrifices himself to save her. Moved by his kindness and courage, she uses magic to bring him back to life only to learn that this power comes at a serious price. On a new adventure, she’ll have to make her own sacrifices in order to protect his soul until it is ready to return to the human world.",2016-07-08,2.461,7.399,454 +1690,37135,Tarzan,"Tarzan was a small orphan who was raised by an ape named Kala since he was a child. He believed that this was his family, but on an expedition Jane Porter is rescued by Tarzan. He then finds out that he's human. Now Tarzan must make the decision as to which family he should belong to...",1999-06-18,8.6539,7.4,7012 +1691,487670,The Death of Superman,"When a hulking monster arrives on Earth and begins a mindless rampage, the Justice League is quickly called in to stop it. But it soon becomes apparent that only Superman can stand against the monstrosity.",2018-07-24,4.7945,7.398,786 +1692,166666,3096 Days,A young Austrian girl is kidnapped and held in captivity for eight years. Based on the real-life case of Natascha Kampusch.,2013-02-21,4.1521,7.398,939 +1693,165213,New World,An undercover cop has his loyalties tested when the boss of the corporate gang he's spent years infiltrating dies.,2013-02-21,3.2186,7.398,489 +1694,8681,Taken,"Bryan Mills, a former government operative, is trying to reconnect with his teenage daughter Kim. After reluctantly agreeing with his ex-wife to let Kim go to Paris on vacation with a friend, his worst nightmare comes true. While on the phone with his daughter shortly after she arrives in Paris, she and her friend are abducted by a gang of human traffickers. Working against the clock, Bryan relies on his extensive training and skills to track down the ruthless gang that abducted her and launch a one-man war to rescue his daughter.",2008-02-18,13.2898,7.398,11594 +1695,3085,His Girl Friday,"Walter Burns is an irresistibly conniving newspaper publisher desperate to woo back his paper’s star reporter, who also happens to be his estranged wife. She’s threatening to quit and settle down with a new beau, but, as Walter knows, she has a weakness: she can’t resist a juicy scoop.",1940-01-18,2.0937,7.398,878 +1696,760,The Mad Adventures of Rabbi Jacob,"In this riot of frantic disguises and mistaken identities, Victor Pivert, a blustering, bigoted French factory owner, finds himself taken hostage by Slimane, an Arab rebel leader. The two dress up as rabbis as they try to elude not only assasins from Slimane's country, but also the police, who think Pivert is a murderer. Pivert ends up posing as Rabbi Jacob, a beloved figure who's returned to France for his first visit after 30 years in the United States. Adding to the confusion are Pivert's dentist-wife, who thinks her husband is leaving her for another woman, their daughter, who's about to get married, and a Parisian neighborhood filled with people eager to celebrate the return of Rabbi Jacob.",1973-10-17,2.6659,7.398,1007 +1697,484747,Little Tickles,"Odette is a 8-yr-old girl who loves to dance and draw. Once she has become an adult, Odette realizes she was abused, and immerses herself body and soul in her career as a dancer while trying to deal with her past.",2018-11-14,2.1541,7.397,365 +1698,447332,A Quiet Place,A family is forced to live in silence while hiding from creatures that hunt by sound.,2018-04-03,9.9565,7.397,14701 +1699,380225,Like Crazy,Two mental patients with opposite personalities ditch their Tuscan hospital and embark on an unpredictable exploration of the real world.,2016-05-17,3.4225,7.4,885 +1700,26638,Red Desert,"In an industrializing Italian town, a married woman, rendered mentally unstable after a traffic accident, drifts into an affair with a friend of her husband.",1964-09-04,1.0593,7.4,475 +1701,11416,The Mission,"When a Spanish Jesuit goes into the South American wilderness to build a mission in the hope of converting the Indians of the region, a slave hunter is converted and joins his mission. When Spain sells the colony to Portugal, they are forced to defend all they have built against the Portuguese aggressors.",1986-09-06,2.3267,7.397,1455 +1702,382748,Stargirl,"An unassuming high schooler finds himself inexplicably drawn to the free-spirited new girl, whose unconventional ways change how they see themselves…and their world.",2020-03-10,1.356,7.396,561 +1703,11545,Rushmore,"When a beautiful first-grade teacher arrives at a prep school, she soon attracts the attention of an ambitious teenager named Max, who quickly falls in love with her. Max turns to the father of two of his schoolmates for advice on how to woo the teacher. However, the situation soon gets complicated when Max's new friend becomes involved with her, setting the two pals against one another in a war for her attention.",1998-12-11,3.4011,7.396,2576 +1704,5967,The Umbrellas of Cherbourg,"This simple romantic tragedy begins in 1957. Guy Foucher, a 20-year-old French auto mechanic, has fallen in love with 17-year-old Geneviève Emery, an employee in her widowed mother's chic but financially embattled umbrella shop. On the evening before Guy is to leave for a two-year tour of combat in Algeria, he and Geneviève make love. She becomes pregnant and must choose between waiting for Guy's return or accepting an offer of marriage from a wealthy diamond merchant.",1964-02-19,2.0266,7.4,830 +1705,2898,As Good as It Gets,"Melvin Udall, a cranky, bigoted, obsessive-compulsive writer of romantic fiction, is rude to everyone he meets, including his gay neighbor, Simon. After Simon is brutally attacked and hospitalized, Melvin finds his life turned upside down when he has to look after Simon's dog. In addition, Carol, the only waitress at the local diner who will tolerate him, leaves work to care for her chronically ill son, making it impossible for Melvin to eat breakfast.",1997-12-19,4.867,7.396,3914 +1706,1407,La Vie en Rose,"From the mean streets of the Belleville district of Paris to the dazzling limelight of New York's most famous concert halls, Edith Piaf's life was a constant battle to sing and survive, to live and love. Raised in her grandmother's brothel, Piaf was discovered in 1935 by nightclub owner Louis Leplee, who persuaded her to sing despite her extreme nervousness. Piaf became one of France's immortal icons, her voice one of the indelible signatures of the 20th century.",2007-02-14,1.8984,7.396,1652 +1707,388,Inside Man,"When an armed, masked gang enter a Manhattan bank, lock the doors and take hostages, the detective assigned to effect their release enters negotiations preoccupied with corruption charges he is facing.",2006-03-17,5.8097,7.396,6023 +1708,350,The Devil Wears Prada,"Andy moves to New York to work in the fashion industry. Her boss is extremely demanding, cruel and won't let her succeed if she doesn't fit into the high class elegant look of their magazine.",2006-06-29,15.1488,7.395,12439 +1709,1847,The Long Goodbye,"In 1970s Hollywood, Detective Philip Marlowe tries to help a friend who is accused of murdering his wife.",1973-03-08,2.5506,7.4,696 +1710,134350,Why Don't You Play in Hell?,"In Japan, gonzo filmmakers hatch a three-pronged plan to save an actress's career, end a yakuza war and make a hit movie.",2013-09-14,1.0763,7.393,300 +1711,21832,Neon Genesis Evangelion: Death and Rebirth,"Originally a collection of clips from the Neon Genesis Evangelion TV series, Death was created as a precursor to the re-worked ending of the series. Rebirth was intended as that re-worked ending, but after production overruns Rebirth became only the first half of the first part of The End of Evangelion, with some minor differences.",1997-03-15,2.4072,7.393,464 +1712,4476,Legends of the Fall,"In early 20th-century Montana, Col. William Ludlow lives on a ranch in the wilderness with his sons, Alfred, Tristan, and Samuel. Eventually, the unconventional but close-knit family are bound by loyalty, tested by war, and torn apart by love, as told over the course of several decades in this epic saga.",1994-12-23,5.2474,7.393,2696 +1713,276624,I Am a Hero,"Hideo Suzuki is a 35-year-old mangaka assistant, whose life seem to be stuck around his exhausting but low-paying job, unfulfilled dreams, strange hallucinations and unsatisfying relationships. He sees himself as a supporting character in his own life, has low self-esteem, resulting in frustration. One day, the world as Hideo knows it is shattered by the presence of a disease that turns people into homicidal maniacs, whose first instinct is to attack and devour the nearest human.",2016-04-23,2.9896,7.392,459 +1714,20312,Interstate 60,An aspiring painter meets various characters and learns valuable lessons while traveling across America.,2002-04-13,2.9043,7.391,722 +1715,481432,Happy as Lazzaro,"Purehearted teen Lazzaro is content living as a sharecropper in rural Italy, but an unlikely friendship with the marquise’s son will change his world.",2018-05-31,1.4382,7.39,729 +1716,273895,Selma,"""Selma,"" as in Alabama, the place where segregation in the South was at its worst, leading to a march that ended in violence, forcing a famous statement by President Lyndon B. Johnson that ultimately led to the signing of the Voting Rights Act.",2014-12-25,2.0989,7.4,2246 +1717,11230,Drunken Master,"After getting into trouble, a mischievous young man is sent to train under a brutal, but slovenly old beggar, who teaches him the secret of the Drunken Fist.",1978-10-05,4.609,7.39,1011 +1718,265712,Stand by Me Doraemon,Sewashi and Doraemon find themselves way back in time and meet Nobita. It is up to Doraemon to take care of Nobita or else he will not return to the present.,2014-08-08,3.0646,7.4,563 +1719,37094,Falling Down,An ordinary man frustrated with the various flaws he sees in society begins to psychotically and violently lash out against them.,1993-02-26,4.2677,7.389,3826 +1720,13382,Rudolph the Red-Nosed Reindeer,"Sam the snowman tells us the story of a young red-nosed reindeer who, after being ousted from the reindeer games because of his glowing nose, teams up with Hermey, an elf who wants to be a dentist, and Yukon Cornelius, the prospector. They run into the Abominable Snowman and find a whole island of misfit toys. Rudolph vows to see if he can get Santa to help the toys, and he goes back to the North Pole on Christmas Eve. But Santa's sleigh is fogged in. But when Santa looks over Rudolph, he gets a very bright idea...",1964-12-06,1.732,7.389,615 +1721,11661,Joyeux Noel,"France, 1914, during World War I. On Christmas Eve, an extraordinary event takes place in the bloody no man's land that the French and the Scots dispute with the Germans…",2005-11-09,1.6742,7.4,884 +1722,9662,The Triplets of Belleville,"When her grandson is kidnapped during the Tour de France, Madame Souza and her beloved pooch Bruno team up with the Belleville Sisters—an aged song-and-dance team from the days of Fred Astaire—to rescue him.",2003-06-11,1.9961,7.389,985 +1723,813258,Monster Pets: A Hotel Transylvania Short,Drac tries out some new monster pets to help occupy Tinkles for playtime.,2021-04-02,2.5866,7.388,405 +1724,265180,Leviathan,"In a Russian coastal town, Kolya is forced to fight the corrupt mayor when he is told that his house will be demolished. He recruits a lawyer friend to help, but the man's arrival brings further misfortune for Kolya and his family.",2014-09-24,1.3839,7.4,896 +1725,21832,Neon Genesis Evangelion: Death and Rebirth,"Originally a collection of clips from the Neon Genesis Evangelion TV series, Death was created as a precursor to the re-worked ending of the series. Rebirth was intended as that re-worked ending, but after production overruns Rebirth became only the first half of the first part of The End of Evangelion, with some minor differences.",1997-03-15,2.4072,7.393,464 +1726,14433,Zulu,"In 1879, during the Anglo-Zulu War, man-of-the-people Lt. Chard and snooty Lt. Bromhead are in charge of defending the isolated and vastly outnumbered Natal outpost of Rorke's Drift from tribal hordes.",1964-01-22,2.3586,7.388,539 +1727,22803,Law Abiding Citizen,A frustrated man decides to take justice into his own hands after a plea bargain sets one of his family's killers free. He targets not only the killer but also the district attorney and others involved in the deal.,2009-10-15,6.8179,7.4,5375 +1728,10857,When the Wind Blows,"With the help of government-issued pamphlets, an elderly British couple build a shelter and prepare for an impending nuclear attack, unaware that times and the nature of war have changed from their romantic memories of World War II.",1986-10-24,1.8091,7.4,302 +1729,8810,Mad Max 2,"Max Rockatansky returns as the heroic loner who drives the dusty roads of a postapocalyptic Australian Outback in an unending search for gasoline. Arrayed against him and the other scraggly defendants of a fuel-depot encampment are the bizarre warriors commanded by the charismatic Lord Humungus, a violent leader whose scruples are as barren as the surrounding landscape.",1981-12-24,5.6081,7.4,3932 +1730,2292,Clerks,"Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed and bored out of their minds. So in between needling customers, the counter jockeys play hockey on the roof, visit a funeral home and deal with their love lives.",1994-10-19,1.8458,7.4,2603 +1731,713,The Piano,"When an arranged marriage brings Ada and her spirited daughter to the wilderness of nineteenth-century New Zealand, she finds herself locked in a battle of wills with both her controlling husband and a rugged frontiersman to whom she develops a forbidden attraction.",1993-05-18,2.64,7.4,1558 +1732,940551,Migration,"After a migrating duck family alights on their pond with thrilling tales of far-flung places, the Mallard family embarks on a family road trip, from New England, to New York City, to tropical Jamaica.",2023-12-06,11.5444,7.387,2076 +1733,638449,The Last Letter from Your Lover,A young journalist in London becomes obsessed with a series of letters she discovers that recounts an intense star-crossed love affair from the 1960s.,2021-07-23,2.136,7.4,628 +1734,637534,The Stronghold,"A police brigade works in the dangerous northern neighborhoods of Marseille, where the level of crime is higher than anywhere else in France.",2021-08-18,2.9145,7.4,1349 +1735,460555,Operation Red Sea,"A squad of the Jiaolong Commando Unit - Sea Dragon, a spec ops team of the Chinese Navy, carries out a hostage rescue operation in the nation of Yewaire, on the Arabian Peninsula, and fiercely fights against local rebel groups and Zaka, a terrorist organization.",2018-02-16,2.7943,7.386,405 +1736,274109,Palm Trees in the Snow,"Spain, 2003. An accidental discovery leads Clarence to travel from the snowy mountains of Huesca to Equatorial Guinea, to visit the land where her father Jacobo and her uncle Kilian spent most of their youth, the island of Fernando Poo.",2015-12-25,1.9271,7.386,534 +1737,46838,Tucker and Dale vs. Evil,"Two hillbillies are suspected of being killers by a group of paranoid college kids camping near the duo's West Virginian cabin. As the body count climbs, so does the fear and confusion as the college kids try to seek revenge against the pair.",2010-01-22,3.8428,7.386,2913 +1738,763,Braindead,"When a Sumatran rat-monkey bites Lionel Cosgrove's mother, she's transformed into a zombie and begins killing (and transforming) the entire town while Lionel races to keep things under control.",1992-08-13,1.999,7.4,1729 +1739,476299,Ghostland,"A mother of two inherits a home from her aunt. On the first night in the new home she is confronted with murderous intruders and fights for her daughters’ lives. Sixteen years later the daughters reunite at the house, and that is when things get strange...",2018-03-14,4.705,7.385,2529 +1740,39148,Dragon Ball: The Path to Power,"A retelling of Dragon Ball's origin with a different take on the meeting of Goku, Bulma, and Kame-Sen'nin. It also retells the Red Ribbon Army story; but this time they find Goku rather than Goku finding them.",1996-03-04,2.2052,7.385,379 +1741,9361,The Last of the Mohicans,"In war-torn colonial America, in the midst of a bloody battle between British, the French and Native American allies, the aristocratic daughter of a British Colonel and her party are captured by a group of Huron warriors. Fortunately, a group of three Mohican trappers comes to their rescue.",1992-08-26,5.4968,7.385,3224 +1742,153,Lost in Translation,"Two lost souls visiting Tokyo -- the young, neglected wife of a photographer and a washed-up movie star shooting a TV commercial -- find an odd solace and pensive freedom to be real in each other's company, away from their lives in America.",2003-09-18,6.8277,7.385,7629 +1743,290762,Miss You Already,The friendship between two life-long girlfriends is put to the test when one starts a family and the other falls ill.,2015-09-12,1.7928,7.384,676 +1744,1923,Twin Peaks: Fire Walk with Me,"In the questionable town of Deer Meadow, Washington, FBI Agent Desmond inexplicably disappears while hunting for the man who murdered a teen girl. The killer is never apprehended, and, after experiencing dark visions and supernatural encounters, Agent Dale Cooper chillingly predicts that the culprit will claim another life. Meanwhile, in the more cozy town of Twin Peaks, hedonistic beauty Laura Palmer hangs with lowlifes and seems destined for a grisly fate.",1992-06-03,5.9454,7.384,2064 +1745,414425,Mudbound,"In the post–World War II South, two families are pitted against a barbaric social hierarchy and an unrelenting landscape as they simultaneously fight the battle at home and the battle abroad.",2017-11-16,1.4439,7.383,1252 +1746,303483,Once in a Lifetime,"At Léon Blum High School in Créteil, France, a history teacher decides to have her weakest 10th grade class participate in a national history competition.",2014-12-03,0.9847,7.383,321 +1747,527,Once Were Warriors,"A drama about a Maori family living in Auckland, New Zealand. Lee Tamahori tells the story of Beth Heke’s strong will to keep her family together during times of unemployment and abuse from her violent and alcoholic husband.",1994-09-02,1.8166,7.4,453 +1748,519010,Pain and Glory,"Salvador Mallo, a filmmaker in the twilight of his career, remembers his life: his mother, his lovers, the actors he worked with. The sixties in a small village in Valencia, the eighties in Madrid, the present, when he feels an immeasurable emptiness, facing his mortality, the incapability of continuing filming, the impossibility of separating creation from his own life. The need of narrating his past can be his salvation.",2019-03-22,2.8453,7.382,1835 +1749,491584,Burning,"Deliveryman Jong-su is out on a job when he runs into Hae-mi, a girl who once lived in his neighborhood. She asks if he'd mind looking after her cat while she's away on a trip to Africa. On her return, she introduces to Jong-su an enigmatic young man named Ben, who she met during her trip. One day Ben tells Jong-su about his most unusual hobby.",2018-05-17,3.839,7.382,1690 +1750,18988,The Lion in Winter,"Henry II and his estranged queen, Eleanor of Aquitaine, battle over the choice of an heir.",1968-08-20,2.4022,7.4,376 +1751,628,Interview with the Vampire,"A vampire relates his epic life story of love, betrayal, loneliness, and dark hunger to an over-curious reporter.",1994-11-11,7.2534,7.382,6087 +1752,45317,The Fighter,"Boxer ""Irish"" Micky Ward's unlikely road to the world light welterweight title. His Rocky-like rise was shepherded by half-brother Dicky, a boxer-turned-trainer who rebounded in life after nearly being KO'd by drugs and crime.",2010-12-10,3.6093,7.381,4484 +1753,1645,A Time to Kill,"A young lawyer defends a black man accused of murdering two white men who raped his 10-year-old daughter, sparking a rebirth of the KKK.",1996-07-24,4.9143,7.382,2667 +1754,809107,Z-O-M-B-I-E-S 3,"Zed and Addison are beginning their final year at Seabrook High in the town that’s become a safe haven for monsters and humans alike. Zed is anticipating an athletic scholarship that will make him the first Zombie to attend college, while Addison is gearing up for Seabrook’s first international cheer-off competition. Then suddenly, extraterrestrial beings appear around Seabrook, provoking something other than friendly competition.",2022-07-09,4.1311,7.38,416 +1755,13754,Tekkonkinkreet,"Two penniless orphans, Black and White, struggle to survive on the mean streets of Treasure Town. When a megacorporation threatens to tear down the town to build an amusement park, Black and White engage in the fight of their life.",2006-10-21,1.7398,7.38,387 +1756,10024,My Sister's Keeper,"Sara and Brian live an idyllic life with their young son and daughter. But their family is rocked by sudden, heartbreaking news that forces them to make a difficult and unorthodox choice in order to save their baby girl's life. The parents' desperate decision raises both ethical and moral questions and rips away at the foundation of their relationship. Their actions ultimately set off a court case that threatens to tear the family apart, while revealing surprising truths that challenge everyone's perceptions of love and loyalty and give new meaning to the definition of healing.",2009-06-26,4.6663,7.38,2159 +1757,876792,That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond,"A long-running conspiracy is swirling over a mysterious power wielded by the Queen in Raja, a small country west of Tempest. When a slime who evolved into a Demon Lord named Rimuru Tempest crosses paths with Hiiro, a survivor of the Ogre race, an incredible adventure packed with new characters begins. The power of bonds will be put to the test!",2022-11-25,3.0295,7.4,413 +1758,15080,Only Yesterday,"In lyrical switches between the present and the past, Taeko contemplates the arc of her life, and wonders if she has been true to the dreams of her childhood self.",1991-07-20,2.6637,7.4,1165 +1759,1669,The Hunt for Red October,"A new technologically-superior Soviet nuclear sub, the Red October, is heading for the U.S. coast under the command of Captain Marko Ramius. The American government thinks Ramius is planning to attack. Lone CIA analyst Jack Ryan has a different idea: he thinks Ramius is planning to defect, but he has only a few hours to find him and prove it - because the entire Russian naval and air commands are trying to find Ramius, too. The hunt is on!",1990-03-02,4.9644,7.379,3421 +1760,15080,Only Yesterday,"In lyrical switches between the present and the past, Taeko contemplates the arc of her life, and wonders if she has been true to the dreams of her childhood self.",1991-07-20,2.6637,7.4,1165 +1761,1669,The Hunt for Red October,"A new technologically-superior Soviet nuclear sub, the Red October, is heading for the U.S. coast under the command of Captain Marko Ramius. The American government thinks Ramius is planning to attack. Lone CIA analyst Jack Ryan has a different idea: he thinks Ramius is planning to defect, but he has only a few hours to find him and prove it - because the entire Russian naval and air commands are trying to find Ramius, too. The hunt is on!",1990-03-02,4.9644,7.379,3421 +1762,874300,South Park: Post COVID: The Return of COVID,"If Stan, Kyle and Cartman could just work together, they could go back in time to make sure Covid never happened. But traveling back to the past seems to be the easy answer until they meet Victor Chaos.",2021-12-16,1.6971,7.4,441 +1763,13350,Scooby-Doo and the Ghoul School,"Scooby, Shaggy and Scrappy are on their way to a Miss Grimwood's Finishing School for Girls, where they've been hired as gym teachers. Once there, however, they find that not only is it actually an all-girl school of famous monsters' daughters but there's a villainess out to enslave the girls.",1988-10-16,1.9041,7.4,300 +1764,11881,Miracle on 34th Street,"Kris Kringle, seemingly the embodiment of Santa Claus, is asked to portray the jolly old fellow at Macy's following his performance in the Thanksgiving Day parade. His portrayal is so complete that many begin to question if he truly is Santa Claus, while others question his sanity.",1947-06-04,1.6212,7.377,783 +1765,2899,Asterix & Obelix: Mission Cleopatra,History's favorite Gauls assist Queen Cleopatra when she wagers that the Egyptian people can build a palace for Julius Caesar in just three months.,2002-01-30,5.2557,7.4,3640 +1766,615777,Babylon,"A tale of outsized ambition and outrageous excess, tracing the rise and fall of multiple characters in an era of unbridled decadence and depravity during Hollywood's transition from silent films to sound films in the late 1920s.",2022-12-22,8.1113,7.376,3435 +1767,508763,A Dog's Way Home,"The adventure of Bella, a dog who embarks on an epic 400-mile journey home after she is separated from her beloved human.",2019-01-10,2.7509,7.376,1144 +1768,408647,Teen Titans: The Judas Contract,Tara Markov is a girl who has power over earth and stone; she is also more than she seems. Is the newest Teen Titan an ally or a threat? And what are the mercenary Deathstroke's plans for the Titans?,2017-03-31,2.795,7.376,727 +1769,88273,A Royal Affair,"A young queen falls in love with her physician, and they start a revolution that changes their nation forever.",2012-03-29,1.8887,7.376,901 +1770,65754,The Girl with the Dragon Tattoo,"Disgraced journalist Mikael Blomkvist investigates the disappearance of a weary patriarch's niece from 40 years ago. He is aided by the pierced, tattooed, punk computer hacker named Lisbeth Salander. As they work together in the investigation, Blomkvist and Salander uncover immense corruption beyond anything they have ever imagined.",2011-12-14,7.0901,7.376,7241 +1771,1542,Office Space,"A depressed white-collar worker tries hypnotherapy, only to find himself in a perpetual state of devil-may-care bliss that prompts him to start living by his own rules, and hatch a hapless attempt to embezzle money from his soul-killing employers.",1999-02-19,3.1516,7.4,3159 +1772,570661,The Collini Case,A young lawyer stumbles upon a vast conspiracy while investigating a brutal murder case.,2019-04-18,1.2417,7.375,413 +1773,458131,The Best of Enemies,"Centers on the unlikely relationship between Ann Atwater, an outspoken civil rights activist, and C.P. Ellis, a local Ku Klux Klan leader who reluctantly co-chaired a community summit, battling over the desegregation of schools in Durham, North Carolina during the racially-charged summer of 1971. The incredible events that unfolded would change Durham and the lives of Atwater and Ellis forever.",2019-04-05,1.9434,7.375,451 +1774,250538,The Good Lie,"A young refugee of the Sudanese Civil War who wins a lottery for relocation to the United States with three other lost boys. Encountering the modern world for the first time, they develop an unlikely friendship with a brash American woman assigned to help them, but the young man struggles to adjust to this new life and his feelings of guilt about the brother he left behind.",2014-09-10,2.6342,7.4,538 +1775,111969,Stuck in Love,"An acclaimed writer, his ex-wife, and their teenaged children come to terms with the complexities of love in all its forms over the course of one tumultuous year.",2013-06-14,5.8609,7.375,1953 +1776,621,Grease,"Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?",1978-06-16,8.0171,7.375,7434 +1777,293670,The Wailing,A stranger arrives in a little village and soon after a mysterious sickness starts spreading. A policeman is drawn into the incident and is forced to solve the mystery in order to save his daughter.,2016-05-12,4.1513,7.374,1848 +1778,11644,Blow Out,"While recording sound effects for a slasher flick, Jack Terry stumbles upon a real-life horror: a car careening off a bridge and into a river. Jack jumps into the water and fishes out Sally from the car, but the other passenger is already dead — a governor intending to run for president. As Jack does some investigating of his tapes, and starts a perilous romance with Sally, he enters a tangled web of conspiracy that might leave him dead.",1981-07-24,2.678,7.374,1544 +1779,9090,"To Wong Foo, Thanks for Everything! Julie Newmar","Manhattan drag queens Vida Boheme and Noxeema Jackson impress regional judges in competition, securing berths in the Nationals in Los Angeles. When the two meet pathetic drag novice Chi-Chi Rodriguez — one of the losers that evening — the charmed Vida and Noxeema agree to take the hopeless youngster under their joined wing. Soon the three set off on a madcap road trip across America and struggle to make it to Los Angeles in time.",1995-09-08,3.3958,7.374,700 +1780,4011,Beetlejuice,A newly dead New England couple seeks help from a deranged demon exorcist to scare an affluent New York family out of their home.,1988-03-30,6.1737,7.373,8008 +1781,673595,"Maggie Simpson in ""Playdate with Destiny""","When Maggie Simpson is rescued by a cute young baby from playground peril, it's girl meets boy, girl loses boy, guess what happens next?",2020-02-29,0.6527,7.4,356 +1782,17681,Scooby-Doo! and the Witch's Ghost,"Scooby-Doo and the Mystery Gang visit Oakhaven, Massachusetts to seek strange goings on involving a famous horror novelist and his ancestor who is rumored be a witch.",1999-10-05,2.4799,7.4,453 +1783,7249,Futurama: Bender's Big Score,"The Planet Express crew return from cancellation, only to be robbed blind by hideous ""sprunging"" scam artists. Things go from bad to worse when the scammers hack Bender, start traveling through time, and take Earth over entirely! Will the crew be able to save the day, or will Bender's larcenous tendencies and their general incompetence doom them all?",2007-11-27,1.4886,7.372,713 +1784,1245,The Remains of the Day,A rule-bound head butler's world of manners and decorum in the household he maintains is tested by the arrival of a housekeeper who falls in love with him in post-WWI Britain. The possibility of romance and his master's cultivation of ties with the Nazi cause challenge his carefully maintained veneer of servitude.,1993-11-05,3.0195,7.373,1387 +1785,140,Bad Education,An examination on the effect of Franco-era religious schooling and sexual abuse on the lives of two longtime friends.,2004-03-19,2.1529,7.373,997 +1786,573435,Bad Boys: Ride or Die,"After their late former Captain is framed, Lowrey and Burnett try to clear his name, only to end up on the run themselves.",2024-06-05,17.0947,7.371,2997 +1787,533444,Waves,A controlling father’s attempts to ensure that his two children succeed in high school backfire after his son experiences a career-ending sports injury. Their familial bonds are eventually placed under severe strain by an unexpected tragedy.,2019-11-15,3.6613,7.4,758 +1788,284054,Black Panther,"King T'Challa returns home to the reclusive, technologically advanced African nation of Wakanda to serve as his country's new leader. However, T'Challa soon finds that he is challenged for the throne by factions within his own country as well as without. Using powers reserved to Wakandan kings, T'Challa assumes the Black Panther mantle to join with ex-girlfriend Nakia, the queen-mother, his princess-kid sister, members of the Dora Milaje (the Wakandan 'special forces') and an American secret agent, to prevent Wakanda from being dragged into a world war.",2018-02-13,11.48,7.371,22720 +1789,376867,Moonlight,"The tender, heartbreaking story of a young man’s struggle to find himself, told across three defining chapters in his life as he experiences the ecstasy, pain, and beauty of falling in love, while grappling with his own sexuality.",2016-10-21,3.4985,7.37,7236 +1790,37799,The Social Network,"In 2003, Harvard undergrad and computer programmer Mark Zuckerberg begins work on a new concept that eventually turns into the global social network known as Facebook. Six years later, Mark is one of the youngest billionaires ever, but his unprecedented success leads to both personal and legal complications when he ends up on the receiving end of two lawsuits, one involving his former friend.",2010-10-01,8.4477,7.37,12565 +1791,25866,The Sucker,"In this Franco-Italian gangster parody, a shopkeeper on his way to an Italian holiday suffers a crash that totals his car. The culprit can only compensate his ruined trip by driving an American friend's car from Naples to Bordeaux, but as it happens to be filled with such contraband as stolen money, jewelry and drugs, the involuntary and unwitting companions in crime soon attract all but recreational attention from the ""milieu"".",1965-03-24,2.5371,7.369,673 +1792,15392,Crossroads,"A wanna-be blues guitar virtuoso seeks a long-lost song by legendary musician, Robert Johnson.",1986-03-14,2.3584,7.369,450 +1793,6949,"What's Up, Doc?",The accidental mix-up of four identical plaid overnight bags leads to a series of increasingly wild and wacky situations.,1972-03-09,1.9314,7.369,417 +1794,484751,Through the Fire,"Franck is a firefighter in Paris. He saves people. He lives at the station with his wife, who is about to have twins. He’s happy. During a call out to a fire, he puts himself in danger, to save his men. He’s going to have to learn to live again and accept to be the one being saved, this time.",2018-11-28,1.208,7.368,691 +1795,406385,I Can Quit Whenever I Want 2: Masterclass,Pietro Zinni is asked by the police to revive the old gang to create a task force that will stop the spread of smart drugs.,2017-02-02,0.8338,7.368,1227 +1796,339380,On the Basis of Sex,Young lawyer Ruth Bader Ginsburg teams with her husband Marty to bring a groundbreaking case before the U.S. Court of Appeals and overturn a century of sex discrimination.,2018-12-25,2.8501,7.368,1061 +1797,249164,If I Stay,"Mia Hall, a talented young cellist, thought the most difficult decision she would ever have to make would be whether to pursue her musical dreams at prestigious Juilliard or follow her heart to be with the love of her life, Adam, a rock singer/guitarist. However, a car wreck changes everything in an instant, and now Mia's life hangs in the balance. Suspended between life and death, Mia faces a choice that will decide her future.",2014-08-21,3.1382,7.368,4231 +1798,81188,Rise of the Guardians,"When an evil spirit known as Pitch lays down the gauntlet to take over the world, the immortal Guardians must join forces for the first time to protect the hopes, beliefs and imagination of children all over the world.",2012-11-21,7.2921,7.4,6895 +1799,9462,The Way of the Dragon,"Tang Lung arrives in Rome to help his cousins in the restaurant business. They are being pressured to sell their property to the syndicate, who will stop at nothing to get what they want. When Tang arrives he poses a new threat to the syndicate, and they are unable to defeat him. The syndicate boss hires the best Japanese and European martial artists to fight Tang, but he easily finishes them off.",1972-12-30,4.1232,7.368,1191 +1800,7863,Shine,"Pianist David Helfgott, driven by his father and teachers, has a breakdown. Years later he returns to the piano, to popular if not critical acclaim.",1996-08-15,1.1707,7.368,673 +1801,58,Pirates of the Caribbean: Dead Man's Chest,"Captain Jack Sparrow races to recover the heart of Davy Jones to avoid enslaving his soul to Jones' service, as other friends and foes seek the heart for their own agenda as well.",2006-07-06,16.2982,7.368,16494 +1802,762509,Mufasa: The Lion King,"Mufasa, a cub lost and alone, meets a sympathetic lion named Taka, the heir to a royal bloodline. The chance meeting sets in motion an expansive journey of a group of misfits searching for their destiny.",2024-12-18,32.1897,7.367,2304 +1803,675445,PAW Patrol: The Movie,Ryder and the pups are called to Adventure City to stop Mayor Humdinger from turning the bustling metropolis into a state of chaos.,2021-08-09,5.995,7.367,1240 +1804,212167,Patema Inverted,"A young girl, from a civilization that resides in deep underground tunnels, finds herself trapped in an inverted world and teams up with a resident to escape and return home.",2013-11-09,2.3216,7.4,427 +1805,14736,Love & Basketball,"Monica Wright and Quincy McCall grew up in the same neighborhood and have known each other since childhood. As they grow into adulthood, they fall in love, but they also share another all-consuming passion: basketball. As Quincy and Monica struggle to make their relationship work, they follow separate career paths though high school and college basketball and, they hope, into stardom in big-league professional ball.",2000-04-21,1.802,7.4,442 +1806,439584,I Can Quit Whenever I Want 3: Ad Honorem,"Has been an year since Pietro Zinni's gang got caught in the Sopox production laboratory and each of them locked up in different jails. From Regina Coeli jail, Pietro keep warning the authorities a fool syntetized nerve gas and he is ready to make a killing, but no one takes him seriously.",2017-11-30,0.6267,7.366,976 +1807,80278,The Impossible,"In December 2004, close-knit family Maria, Henry and their three sons begin their winter vacation in Thailand. But the day after Christmas, the idyllic holiday turns into an incomprehensible nightmare when a terrifying roar rises from the depths of the sea, followed by a wall of black water that devours everything in its path. Though Maria and her family face their darkest hour, unexpected displays of kindness and courage ameliorate their terror.",2012-09-09,5.3603,7.366,6441 +1808,17136,The Woman in the Window,A seductive woman gets an innocent professor mixed up in murder.,1944-10-25,1.1339,7.366,361 +1809,1427,Perfume: The Story of a Murderer,"Jean-Baptiste Grenouille, born in the stench of 18th century Paris, develops a superior olfactory sense, which he uses to create the world's finest perfumes. However, his work takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.",2006-09-13,6.2004,7.366,4731 +1810,595975,La Belle Époque,"Victor, a disillusioned 60-something whose marriage is on the rocks, opts to relive the week of his life when, 40 years earlier, he met his true love through a company that allows customers to return to the time period of their choosing.",2019-11-06,1.8333,7.365,1032 +1811,36728,Naruto Shippuden the Movie: The Will of Fire,"Ninjas with bloodline limits begin disappearing in all the countries and blame points toward the fire nation. By Tsunade's order, Kakashi is sacrificed to prevent an all out war. After inheriting charms left by Kakashi, Naruto fights through friends and foes to prevent his death while changing the minds of those who've inherited the will of fire.",2009-08-01,5.3126,7.365,492 +1812,425,Ice Age,"With the impending ice age almost upon them, a mismatched trio of prehistoric critters – Manny the woolly mammoth, Diego the saber-toothed tiger and Sid the giant sloth – find an orphaned infant and decide to return it to its human parents. Along the way, the unlikely allies become friends but, when enemies attack, their quest takes on far nobler aims.",2002-03-14,13.5516,7.364,13732 +1813,307081,Southpaw,"Billy ""The Great"" Hope, the reigning junior middleweight boxing champion, has an impressive career, a loving wife and daughter, and a lavish lifestyle. However, when tragedy strikes, Billy hits rock bottom, losing his family, his house and his manager. He soon finds an unlikely savior in Tick Willis, a former fighter who trains the city's toughest amateur boxers. With his future on the line, Hope fights to reclaim the trust of those he loves the most.",2015-03-24,12.5786,7.4,5592 +1814,14638,The Killers,"Two hit men walk into a diner asking for a man called ""the Swede"". When the killers find the Swede, he's expecting them and doesn't put up a fight. Since the Swede had a life insurance policy, an investigator, on a hunch, decides to look into the murder. As the Swede's past is laid bare, it comes to light that he was in love with a beautiful woman who may have lured him into pulling off a bank robbery overseen by another man.",1946-08-30,1.9743,7.364,402 +1815,854239,Till,"The true story of Mamie Till Mobley’s relentless pursuit of justice for her 14 year old son, Emmett Till, who, in 1955, was lynched while visiting his cousins in Mississippi.",2022-10-14,3.3526,7.363,302 +1816,818647,Through My Window,"Raquel's longtime crush on her next-door neighbor turns into something more when he starts developing feelings for her, despite his family's objections.",2022-02-04,11.2321,7.363,3256 +1817,49020,Submarine,"15-year-old deep-thinking Welsh schoolboy Oliver Tate struggles to initiate and maintain a relationship with Jordana, his devilish, dark-haired classmate at their Swansea high school. As his parents' marriage begins to fall apart, similar problems arise in his relationship with Jordana.",2011-03-18,2.4579,7.363,1506 +1818,16320,Serenity,"When the renegade crew of Serenity agrees to hide a fugitive on their ship, they find themselves in an action-packed battle between the relentless military might of a totalitarian regime who will destroy anything – or anyone – to get the girl back and the bloodthirsty creatures who roam the uncharted areas of space. But... the greatest danger of all may be on their ship.",2005-09-25,4.0947,7.363,3658 +1819,2786,Pierrot le Fou,"Pierrot escapes his boring society and travels from Paris to the Mediterranean Sea with Marianne, a girl chased by hit-men from Algeria. They lead an unorthodox life, always on the run.",1965-11-05,2.1502,7.4,891 +1820,2786,Pierrot le Fou,"Pierrot escapes his boring society and travels from Paris to the Mediterranean Sea with Marianne, a girl chased by hit-men from Algeria. They lead an unorthodox life, always on the run.",1965-11-05,2.1502,7.4,891 +1821,843847,Jerry & Marge Go Large,"The remarkable true story of how retiree Jerry Selbee discovers a mathematical loophole in the Massachusetts lottery and, with the help of his wife, Marge, wins $27 million dollars and uses the money to revive their small Michigan town.",2022-10-20,3.6271,7.362,402 +1822,64682,The Great Gatsby,"An adaptation of F. Scott Fitzgerald's Long Island-set novel, where Midwesterner Nick Carraway is lured into the lavish world of his neighbor, Jay Gatsby. Soon enough, however, Carraway will see through the cracks of Gatsby's nouveau riche existence, where obsession, madness, and tragedy await.",2013-05-09,7.3744,7.362,12542 +1823,14534,Rudy,"Rudy grew up in a steel mill town where most people ended up working, but wanted to play football at Notre Dame instead. There were only a couple of problems. His grades were a little low, his athletic skills were poor, and he was only half the size of the other players. But he had the drive and the spirit of 5 people and has set his sights upon joining the team.",1993-09-17,2.2424,7.362,700 +1824,433247,First They Killed My Father,A 5-year-old girl embarks on a harrowing quest for survival amid the sudden rise and terrifying reign of the Khmer Rouge in Cambodia.,2017-02-18,1.8586,7.4,687 +1825,44018,Vagabond,"Mona Bergeron is dead, her frozen body found in a ditch in the French countryside. From this, the film flashes back to the weeks leading up to her death. Through these flashbacks, Mona gradually declines as she travels from place to place, taking odd jobs and staying with whomever will offer her a place to sleep. Mona is fiercely independent, craving freedom over comfort, but it is this desire to be free that will eventually lead to her demise.",1985-12-04,1.1353,7.4,330 +1826,37211,Scooby-Doo! and the Reluctant Werewolf,"Shaggy is turned into a werewolf, and it's up to Scooby, Scrappy and Shaggy's girlfriend to help him win a race against other monsters, and become human again.",1988-11-13,2.1853,7.361,320 +1827,2291,Jacob's Ladder,"After returning home from the Vietnam War, veteran Jacob Singer struggles to maintain his sanity. Plagued by hallucinations and flashbacks, Singer rapidly falls apart as the world and people around him morph and twist into disturbing images. His girlfriend, Jezzie, and ex-wife, Sarah, try to help, but to little avail. Even Singer's chiropractor friend, Louis, fails to reach him as he descends into madness.",1990-11-02,3.7549,7.4,1732 +1828,157354,Fruitvale Station,"Oakland, California. Young Afro-American Oscar Grant crosses paths with family members, friends, enemies and strangers before facing his fate on the platform at Fruitvale Station, in the early morning hours of New Year's Day 2009.",2013-07-26,1.975,7.4,1338 +1829,100271,A Letter to Momo,A shy 11-year-old's life takes a strange turn when she discovers three hungry goblins living in the attic of her new house. She misses her old life. She misses her father so very much. Until she makes some new ghoulish friends.,2012-04-21,1.6521,7.36,375 +1830,49051,The Hobbit: An Unexpected Journey,"Bilbo Baggins, a hobbit enjoying his quiet life, is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug, the dragon.",2012-12-12,12.5734,7.36,18921 +1831,25403,Dear Diary,"Nanni Moretti recalls in his diary three slice of life stories characterized by a sharply ironic look: in the first one he wanders through a deserted Rome, in the second he visits a reclusive friend on an island, and in the last he has to grapple with an unknown illness.",1993-11-12,1.674,7.4,490 +1832,24182,"Dearest Relatives, Poisonous Relations","During the annual Christmas gathering at the family home, the parents surprise their children by announcing their decision to move in with one of them and pass on the house.",1992-03-26,0.4362,7.36,336 +1833,17474,The Man in the Moon,"Maureen Trant and her younger sibling Dani share a strong connection, but local boy Court Foster threatens to throw their bond off balance. Dani and Court meet first and have a flirtatious rapport -- but when he meets Maureen, he falls hard and they begin a passionate affair. The new couple try to keep their love hidden from Dani, but she soon learns the truth, disavowing her sister. But a heartbreaking accident later reunites the girls.",1991-09-30,4.0689,7.36,329 +1834,7862,The Counterfeiters,"The story of Jewish counterfeiter Salomon Sorowitsch, who was coerced into assisting the Nazi operation of the Sachsenhausen concentration camp during World War II.",2007-03-22,1.6796,7.36,641 +1835,985,Eraserhead,"First-time father Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.",1977-09-28,3.8759,7.4,2590 +1836,22164,Blood and Bone,"In Los Angeles, an ex-con takes the underground fighting world by storm in his quest to fulfill a promise to a dead friend.",2009-02-07,8.3736,7.4,818 +1837,19100,Those Happy Days,"Set in 1992, a manager Vincent has to run a children's holiday camp for three weeks and to face the unexpected concerning the place, his colleagues, various problems linked to children about the rooms, trips, their belongings...",2006-06-28,1.3587,7.359,1059 +1838,116,Match Point,"Chris, a former tennis pro, takes a job as an instructor and befriends his wealthy young student, Tom. After being introduced to his family, Chris is soon engaged to Tom's sister, Chloe. Despite the professional and financial advantages that this relationship affords him, Chris becomes obsessed with Tom's fiancee, American actress Nola.",2005-10-26,3.7565,7.359,4182 +1839,624479,Superman II: The Richard Donner Cut,"Superman agrees to sacrifice his powers to start a relationship with Lois Lane, unaware that three Kryptonian criminals he inadvertently released are conquering Earth.",2006-11-02,3.0658,7.358,355 +1840,17474,The Man in the Moon,"Maureen Trant and her younger sibling Dani share a strong connection, but local boy Court Foster threatens to throw their bond off balance. Dani and Court meet first and have a flirtatious rapport -- but when he meets Maureen, he falls hard and they begin a passionate affair. The new couple try to keep their love hidden from Dani, but she soon learns the truth, disavowing her sister. But a heartbreaking accident later reunites the girls.",1991-09-30,4.0689,7.36,329 +1841,13321,Lifeboat,"During World War II, a small group of survivors is stranded in a lifeboat together after the ship they were traveling on is destroyed by a German U-boat.",1944-01-28,1.3107,7.358,455 +1842,756,Fantasia,"Walt Disney's timeless masterpiece is an extravaganza of sight and sound! See the music come to life, hear the pictures burst into song and experience the excitement that is Fantasia over and over again.",1940-11-13,5.6732,7.357,3168 +1843,843527,The Idea of You,"40-year-old single mom Solène begins an unexpected romance with 24-year-old Hayes Campbell, the lead singer of August Moon, the hottest boy band on the planet. As they begin a whirlwind romance, it isn't long before Hayes' superstar status poses unavoidable challenges to their relationship, and Solène soon discovers that life in the glare of his spotlight might be more than she bargained for.",2024-05-02,18.0142,7.357,1739 +1844,831405,Injustice,"When Lois Lane is killed, an unhinged Superman decides to take control of the Earth. Determined to stop him, Batman creates a team of freedom-fighting heroes. But when superheroes go to war, can the world survive?",2021-10-09,2.2364,7.357,805 +1845,377263,Frantz,"In the aftermath of WWI, a young German who grieves the death of her fiancé in France meets a mysterious French man who visits the fiance’s grave to lay flowers.",2016-09-07,2.1152,7.4,712 +1846,14283,The Red Violin,"300 years of a remarkable musical instrument. Crafted by the Italian master Bussotti (Cecchi) in 1681, the red violin has traveled through Austria, England, China, and Canada, leaving both beauty and tragedy in its wake. In Montreal, Samuel L Jackson plays an appraiser going over its complex history.",1998-11-13,1.5946,7.357,429 +1847,6644,El Dorado,"Cole Thornton, a gunfighter for hire, joins forces with an old friend, Sheriff J.P. Harrah. Together with a fighter and a gambler, they help a rancher and his family fight a rival rancher that is trying to steal their water.",1966-12-17,3.191,7.357,552 +1848,4133,Blow,"A boy named George Jung grows up in a struggling family in the 1950's. His mother nags at her husband as he is trying to make a living for the family. It is finally revealed that George's father cannot make a living and the family goes bankrupt. George does not want the same thing to happen to him, and his friend Tuna, in the 1960's, suggests that he deal marijuana. He is a big hit in California in the 1960's, yet he goes to jail, where he finds out about the wonders of cocaine. As a result, when released, he gets rich by bringing cocaine to America. However, he soon pays the price.",2001-04-04,5.0673,7.357,4416 +1849,184,Jackie Brown,"Jackie Brown is a flight attendant who gets caught in the middle of smuggling cash into the country for her gunrunner boss. When the cops try to use Jackie to get to her boss, she hatches a plan — with help from a bail bondsman — to keep the money for herself.",1997-12-25,4.9834,7.356,6604 +1850,818750,The In Between,"After surviving a car accident that took the life of her boyfriend, a teenage girl believes he's attempting to reconnect with her from the after world.",2022-02-11,3.566,7.356,797 +1851,297270,Tinker Bell and the Legend of the NeverBeast,"An ancient myth of a massive creature sparks the curiosity of Tinker Bell and her good friend Fawn, an animal fairy who’s not afraid to break the rules to help an animal in need. But this creature is not welcome in Pixie Hollow — and the scout fairies are determined to capture the mysterious beast, who they fear will destroy their home. Fawn must convince her fairy friends to risk everything to rescue the NeverBeast.",2014-12-12,5.9069,7.4,1139 +1852,2252,Eastern Promises,A Russian teenager living in London dies during childbirth but leaves clues in her diary that could tie her child to a rape involving a violent Russian mob family.,2007-09-14,3.5525,7.4,3494 +1853,1116,The Wind That Shakes the Barley,"In 1920s Ireland young doctor Damien O'Donovan prepares to depart for a new job in a London hospital. As he says his goodbyes at a friend's farm, British Black and Tans arrive, and a young man is killed. Damien joins his brother Teddy in the Irish Republican Army, but political events are soon set in motion that tear the brothers apart.",2006-06-23,2.0793,7.356,841 +1854,843847,Jerry & Marge Go Large,"The remarkable true story of how retiree Jerry Selbee discovers a mathematical loophole in the Massachusetts lottery and, with the help of his wife, Marge, wins $27 million dollars and uses the money to revive their small Michigan town.",2022-10-20,3.6271,7.362,402 +1855,740441,Unlocked,A woman's life is turned upside-down when a dangerous man gets a hold of her lost cell phone and uses it to track her every move.,2023-02-17,2.5326,7.355,355 +1856,459151,The Boss Baby: Family Business,The Templeton brothers — Tim and his Boss Baby little bro Ted — have become adults and drifted away from each other. But a new boss baby with a cutting-edge approach and a can-do attitude is about to bring them together again … and inspire a new family business.,2021-07-01,7.5574,7.355,2617 +1857,12311,Mutiny on the Bounty,"Fletcher Christian successfully leads a revolt against the ruthless Captain Bligh on the HMS Bounty. However, Bligh returns one year later, hell bent on revenge.",1935-11-22,1.9837,7.355,354 +1858,10647,Pay It Forward,"Like some other kids, 12-year-old Trevor McKinney believed in the goodness of human nature. Like many other kids, he was determined to change the world for the better. Unlike most other kids, he succeeded.",2000-10-20,2.4495,7.4,1882 +1859,3766,The Lady from Shanghai,A romantic drifter gets caught between a corrupt tycoon and his voluptuous wife.,1947-12-24,1.5637,7.4,690 +1860,8356,An Affair to Remember,A couple falls in love and agrees to meet in six months at the Empire State Building - but will it happen?,1957-07-11,1.5074,7.354,487 +1861,658,Goldfinger,"Special agent 007 comes face to face with one of the most notorious villains of all time, and now he must outwit and outgun the powerful tycoon to prevent him from cashing in on a devious scheme to raid Fort Knox -- and obliterate the world's economy.",1964-09-20,4.8512,7.354,3723 +1862,488,The African Queen,"At the start of the First World War, in the middle of Africa’s nowhere, a gin soaked riverboat captain is persuaded by a strong-willed missionary to go down river and face-off a German warship.",1952-01-07,2.0097,7.354,996 +1863,2757,Adaptation.,"Charlie Kaufman is a confused L.A. screenwriter overwhelmed by feelings of inadequacy, sexual frustration, self-loathing, and by the screenwriting ambitions of his freeloading twin brother Donald. While struggling to adapt ""The Orchid Thief,"" by Susan Orlean, Kaufman's life spins from pathetic to bizarre. The lives of Kaufman, Orlean's book, become strangely intertwined as each one's search for passion collides with the others'.",2002-12-06,2.4462,7.353,2601 +1864,2056,The Station Agent,"When his only friend dies, a man born with dwarfism moves to rural New Jersey to live a life of solitude, only to meet a chatty hot dog vendor and a woman dealing with her own personal loss.",2003-12-05,2.0865,7.353,712 +1865,615173,The Witch: Part 2. The Other One,"A girl wakes up in a huge secret laboratory, then accidentally meets another girl who is trying to protect her house from a gang. The mystery girl overthrows the gang with her unexpected powers, and laboratory staff set out to find her.",2022-06-15,10.1854,7.4,382 +1866,258893,Scooby-Doo! WrestleMania Mystery,"The mystery begins when Shaggy and Scooby win tickets to ""WrestleMania"" and convince the crew to go with them to WWE City. But this city harbors a spooky secret - a ghastly Ghost Bear holds the town in his terrifying grip! To protect the coveted WWE Championship Title, the gang gets help from WWE Superstars like John Cena, Triple H, Sin Cara, Brodus Clay, AJ Lee, The Miz and Kane. Watch Scooby and the gang grapple with solving this case before it's too late.",2014-03-11,2.4152,7.352,324 +1867,118406,Road to Ninja: Naruto the Movie,"Sixteen years ago, a mysterious masked ninja unleashes a powerful creature known as the Nine-Tailed Demon Fox on the Hidden Leaf Village Konoha, killing many people. In response, the Fourth Hokage Minato Namikaze and his wife Kushina Uzumaki, the Demon Fox's living prison or Jinchūriki, manage to seal the creature inside their newborn son Naruto Uzumaki. With the Tailed Beast sealed, things continued as normal. However, in the present day, peace ended when a group of ninja called the Akatsuki attack Konoha under the guidance of Tobi, the mysterious masked man behind Fox's rampage years ago who intends on executing his plan to rule the world by shrouding it in illusions.",2012-07-28,4.7373,7.352,1212 +1868,77016,End of Watch,Two young officers are marked for death after confiscating a small cache of money and firearms from the members of a notorious cartel during a routine traffic stop.,2012-09-20,4.5968,7.352,3401 +1869,21484,Possession,"A young woman left her family for an unspecified reason. The husband determines to find out the truth and starts following his wife. At first, he suspects that a man is involved. But gradually, he finds out more and more strange behaviors and bizarre incidents that indicate something more than a possessed love affair.",1981-05-27,4.4399,7.4,1201 +1870,180,Minority Report,"John Anderton is a top 'Precrime' cop in the late-21st century, when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge.",2002-06-20,12.1746,7.352,9083 +1871,399404,Darkest Hour,"In May 1940, the fate of World War II hangs on Winston Churchill, who must decide whether to negotiate with Adolf Hitler or fight on knowing that it could mean the end of the British Empire.",2017-11-22,4.4891,7.351,5259 +1872,387426,Okja,"A young girl named Mija risks everything to prevent a powerful, multi-national company from kidnapping her best friend - a massive animal named Okja.",2017-06-28,3.0588,7.351,4387 +1873,4147,Road to Perdition,"Mike Sullivan works as a hit man for crime boss John Rooney. Sullivan views Rooney as a father figure, however after his son is witness to a killing, Mike Sullivan finds himself on the run in attempt to save the life of his son and at the same time looking for revenge on those who wronged him.",2002-07-12,4.6565,7.351,3777 +1874,2756,The Abyss,"A civilian oil rig crew is recruited to conduct a search and rescue effort when a nuclear submarine mysteriously sinks. One diver soon finds himself on a spectacular odyssey 25,000 feet below the ocean's surface where he confronts a mysterious force that has the power to change the world or destroy it.",1989-08-09,4.608,7.351,3171 +1875,205220,Philomena,"A woman searches for her adult son, who was taken away from her decades ago when she was forced to live in a convent.",2013-11-01,2.5246,7.35,1645 +1876,169881,The Physician,"England, 1021. Rob Cole, a boy born in a miserable mining town, swears to become a physician and vanquish disease and death. His harsh path of many years, a quest for knowledge besieged by countless challenges and sacrifices, leads him to the remote Isfahan, in Persia, where he meets Ibn Sina, the greatest healer of his time.",2013-12-25,2.8071,7.3,1113 +1877,11206,Wait Until Dark,"After a flight back home, Sam Hendrix returns with a doll he innocently acquired along the way. As it turns out, the doll is actually stuffed with heroin, and a group of criminals led by the ruthless Roat has followed Hendrix back to his place to retrieve it. When Hendrix leaves for business, the crooks make their move -- and find his blind wife, Susy, alone in the apartment. Soon, a life-threatening game begins between Susy and the thugs.",1967-10-26,2.0481,7.352,556 +1878,594,The Terminal,"An Eastern European tourist unexpectedly finds himself stranded in JFK airport, and must take up temporary residence there.",2004-06-17,6.5509,7.35,8202 +1879,121986,Frances Ha,"An aspiring dancer moves to New York City and becomes caught up in a whirlwind of flighty fair-weather friends, diminishing fortunes and career setbacks.",2013-05-17,3.4009,7.349,1716 +1880,38528,Horse Fever,"Bruno Fioretti, known as ""Mandrake"", is an inveterate gambler who never misses a day at the horse racing track in Rome. He is doubly unlucky: he bets too much on one horse, and his wife is sleeping with his best friend because Mandrake is always at the track. Penniless and cuckolded, Mandrake decides to make one last bet.",1976-10-29,0.7433,7.349,368 +1881,10144,The Little Mermaid,This colorful adventure tells the story of an impetuous mermaid princess named Ariel who falls in love with the very human Prince Eric and puts everything on the line for the chance to be with him. Memorable songs and characters -- including the villainous sea witch Ursula.,1989-11-17,9.2552,7.349,8115 +1882,840,Close Encounters of the Third Kind,"After an encounter with UFOs, an electricity linesman feels undeniably drawn to an isolated area in the wilderness where something spectacular is about to happen.",1977-12-14,4.6005,7.3,4378 +1883,710356,2 Hearts,"When illness strikes two people who are polar opposites, life and death bring them together in surprising ways.",2020-10-16,1.8851,7.3,592 +1884,1554,Down by Law,"A disc jockey, a pimp and an Italian tourist escape from jail in New Orleans.",1986-09-20,1.6593,7.348,786 +1885,829280,Enola Holmes 2,"Now a detective-for-hire like her infamous brother, Enola Holmes takes on her first official case to find a missing girl, as the sparks of a dangerous conspiracy ignite a mystery that requires the help of friends — and Sherlock himself — to unravel.",2022-11-30,4.1446,7.347,1579 +1886,191714,The Lunchbox,"A mistaken delivery in Mumbai's famously efficient lunchbox delivery system (Mumbai's Dabbawallahs) connects a young housewife to a stranger in the dusk of his life. They build a fantasy world together through notes in the lunchbox. Gradually, this fantasy threatens to overwhelm their reality.",2013-09-20,1.4371,7.3,743 +1887,297,Meet Joe Black,"Bill Parrish has it all - success, wealth and power. Days before his 65th birthday, he receives a visit from a mysterious stranger, Joe Black, who soon reveals himself as Death. In exchange for extra time, Bill agrees to serve as Joe's earthly guide. But will he regret his choice when Joe unexpectedly falls in love with Bill's beautiful daughter Susan?",1998-11-12,8.2033,7.347,5463 +1888,140823,Saving Mr. Banks,"Author P.L. Travers looks back on her childhood while reluctantly meeting with Walt Disney, who seeks to adapt her Mary Poppins books for the big screen.",2013-11-29,1.8278,7.346,3366 +1889,82690,Wreck-It Ralph,"Wreck-It Ralph is the 9-foot-tall, 643-pound villain of an arcade video game named Fix-It Felix Jr., in which the game's titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain, Ralph escapes his game and lands in Hero's Duty, a first-person shooter where he helps the game's hero battle against alien invaders. He later enters Sugar Rush, a kart racing game set on tracks made of candies, cookies and other sweets. There, Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade, and one that Ralph may have inadvertently started.",2012-11-01,9.591,7.346,12622 +1890,5548,RoboCop,"In a violent, near-apocalyptic Detroit, evil corporation Omni Consumer Products wins a contract from the city government to privatize the police force. To test their crime-eradicating cyborgs, the company leads street cop Alex Murphy into an armed confrontation with crime lord Boddicker so they can use his body to support their untested RoboCop prototype. But when RoboCop learns of the company's nefarious plans, he turns on his masters.",1987-07-17,5.5697,7.3,5394 +1891,417320,Descendants 2,"When the pressure to be royal becomes too much for Mal, she returns to the Isle of the Lost where her archenemy Uma, Ursula's daughter, has taken her spot as self-proclaimed queen.",2017-07-21,6.2114,7.346,1715 +1892,245913,Pelé: Birth of a Legend,"The life story of Brazilian football legend, Pele.",2016-05-06,2.8721,7.346,1107 +1893,11589,Kelly's Heroes,A misfit group of World War II American soldiers goes AWOL to rob a bank behind German lines.,1970-06-22,3.0694,7.3,756 +1894,2134,The Time Machine,A Victorian Englishman travels to the far future and finds that humanity has divided into two hostile species.,1960-05-25,4.0719,7.3,856 +1895,26900,The Bandit,"Baran the Bandit, released from prison after serving 35 years, searches for vengeance against his former best friend who betrayed him and stole his lover, teaming up with a young punk with his own demons along the way.",1996-11-29,0.7241,7.3,334 +1896,16307,The Wicker Man,"Police sergeant Neil Howie is called to an island village in search of a missing girl whom the locals claim never existed. Stranger still, however, are the rituals that take place there.",1973-12-06,4.8858,7.344,1504 +1897,1151534,Nowhere,"A young pregnant woman named Mia escapes from a country at war by hiding in a maritime container aboard a cargo ship. After a violent storm, Mia gives birth to the child while lost at sea, where she must fight to survive.",2023-09-29,4.6839,7.343,1465 +1898,302528,Remember,"With the aid of a fellow Auschwitz survivor and a hand-written letter, an elderly man with dementia goes in search of the person responsible for the death of his family.",2015-10-23,1.7752,7.343,728 +1899,33701,French Fried Vacation 2,"In this sequel to Les Bronzes (1978) summer has passed, but that doesn't mean the fun has to end for Bernard, Nathalie, Gigi, Jerome, Popeye, Jean-Claude, and Christiane.",1979-11-22,1.9786,7.343,1230 +1900,14447,A Matter of Loaf and Death,"Wallace and Gromit open a bakery, accidentally getting tied up with a murder mystery in the process. But when Wallace falls in love, Gromit is left to solve the case by himself.",2008-12-26,1.796,7.3,565 +1901,12716,My Father's Glory,"Raised by his science teacher father, Joseph Pagnol, and seamstress mother Augustine, young Marcel grows up during the turn of the century in awe of his rationalist dad. When the family takes a summer vacation in the countryside, Marcel becomes friends with Lili, who teaches him about rural life.",1990-08-29,1.0354,7.343,318 +1902,12140,Ghost in the Shell 2: Innocence,"Cyborg detective Batou is assigned to investigate a series of murders committed by gynoids—doll-like cyborgs, which all malfunctioned, killed, then self-destructed afterwards. The brains of the gynoids initialize in order to protect their manufacturer's software, but in one gynoid, which Batou himself neutralized, one file remains: a voice speaking the phrase ""Help me.""",2004-03-06,2.7419,7.343,911 +1903,11901,High Plains Drifter,"A gunfighting stranger comes to the small settlement of Lago. After gunning down three gunmen who tried to kill him, the townsfolk decide to hire the Stranger to hold off three outlaws who are on their way.",1973-04-19,3.805,7.343,1238 +1904,9560,A Walk in the Clouds,World War II vet Paul Sutton falls for a pregnant and unwed woman who persuades him -- during their first encounter -- to pose as her husband so she can face her family.,1995-05-27,3.6247,7.3,1067 +1905,615643,Minari,"A Korean American family moves to an Arkansas farm in search of its own American dream. Amidst the challenges of this new life in the strange and rugged Ozarks, they discover the undeniable resilience of family and what really makes a home.",2021-02-12,2.571,7.342,1709 +1906,508947,Turning Red,"Thirteen-year-old Mei is experiencing the awkwardness of being a teenager with a twist – when she gets too excited, she transforms into a giant red panda.",2022-03-10,11.5006,7.3,5489 +1907,49361,Don't Torture a Duckling,A reporter and a promiscuous young woman try to solve a series of child killings in a remote southern Italian town rife with superstition and a distrust of outsiders.,1972-09-29,1.2392,7.342,389 +1908,9504,Glengarry Glen Ross,"Times are tough at Premiere Properties. Shelley ""the machine"" Levene and Dave Moss are veteran salesmen, but only Ricky Roma is on a hot streak. The new Glengarry sales leads could turn everything around, but the front office is holding them back until these ""losers"" prove themselves. Then someone decides to take matters into his own hands, stealing the Glengarry leads and leaving everyone wondering who did it.",1992-09-10,2.2169,7.342,1480 +1909,759,Gentlemen Prefer Blondes,"Lorelei Lee is a beautiful showgirl engaged to be married to the wealthy Gus Esmond, much to the disapproval of Gus' rich father, Esmond Sr., who thinks that Lorelei is just after his money. When Lorelei goes on a cruise accompanied only by her best friend, Dorothy Shaw, Esmond Sr. hires Ernie Malone, a private detective, to follow her and report any questionable behavior that would disqualify her from the marriage.",1953-07-14,2.397,7.342,1006 +1910,705996,Decision to Leave,"From a mountain peak in South Korea, a man plummets to his death. Did he jump, or was he pushed? When detective Hae-joon arrives on the scene, he begins to suspect the dead man’s wife Seo-rae. But as he digs deeper into the investigation, he finds himself trapped in a web of deception and desire.",2022-06-29,4.8438,7.341,1319 +1911,544401,Cherry,"Cherry drifts from college dropout to army medic in Iraq - anchored only by his true love, Emily. But after returning from the war with PTSD, his life spirals into drugs and crime as he struggles to find his place in the world.",2021-02-26,3.6978,7.341,1312 +1912,381288,Split,"Though Kevin has evidenced 23 personalities to his trusted psychiatrist, Dr. Fletcher, there remains one still submerged who is set to materialize and dominate all the others. Compelled to abduct three teenage girls led by the willful, observant Casey, Kevin reaches a war for survival among all of those contained within him — as well as everyone around him — as the walls between his compartments shatter apart.",2017-01-19,7.9865,7.341,17775 +1913,37775,"Bianco, rosso e Verdone","Three Italians travel to their hometown to vote for elections: Pasquale is a Southern immigrant living in Munich who's genuinely happy to come back to Italy, even if just for a few days, but the country he dreams of is far from reality; Furio travels to Rome with his family, but his niggling attitude threatens to push his wife Magda over the edge; young Mimmo is also going to Rome, but the trip is repeatedly interrupted by worries about his grandma's health.",1981-02-20,1.0945,7.341,722 +1914,31522,A Woman Is a Woman,"Longing for a baby, a stripper pursues another man in order to make her boyfriend jealous.",1961-09-06,1.1671,7.3,381 +1915,15764,Sophie's Choice,"Stingo, a young writer, moves to Brooklyn in 1947 to begin work on his first novel. As he becomes friendly with Sophie and her lover Nathan, he learns that she is a Holocaust survivor. Flashbacks reveal her harrowing story, from pre-war prosperity to Auschwitz. In the present, Sophie and Nathan's relationship increasingly unravels as Stingo grows closer to Sophie and Nathan's fragile mental state becomes ever more apparent.",1982-12-08,2.5016,7.341,885 +1916,13183,Watchmen,"In a gritty and alternate 1985, the glory days of costumed vigilantes have been brought to a close by a government crackdown. But after one of the masked veterans is brutally murdered, an investigation into the killer is initiated. The reunited heroes set out to prevent their own destruction, but in doing so they uncover a sinister plot that puts all of humanity in grave danger.",2009-03-04,8.5141,7.341,9525 +1917,12776,Johnny Stecchino,"Good hearted but not very wordly-wise, Dante is happy driving the school bus for a group of mentally handicapped children, while feeling he is somehow missing out on life and love. So he is very excited when after nearly being knocked down by her car he meets Maria, who seems immediately enamoured of him. He is soon invited to her sumptuous Palermo villa, little suspecting that this is part of a plot. He bears an amazing likeness to Maria's stool-pigeon gangster husband and it would be convenient for them if the mobster, in the shape of Dante, was seen to be dead and buried.",1991-10-24,0.9346,7.341,1037 +1918,10975,Operation Condor,"Hired by a Spanish baron, Hong Kong treasure hunter Jackie, a.k.a. ""Asian Hawk"" and his entourage seek WWII Nazi gold buried in the Sahara Desert.",1991-02-07,3.8682,7.3,586 +1919,7452,"The Cook, the Thief, His Wife & Her Lover",The wife of an abusive criminal finds solace in the arms of a kind regular guest in her husband's restaurant.,1989-10-13,2.3414,7.3,660 +1920,489930,Blindspotting,"Collin must make it through his final three days of probation for a chance at a new beginning. He and his troublemaking childhood best friend, Miles, work as movers, and when Collin witnesses a police shooting, the two men’s friendship is tested as they grapple with identity and their changed realities in the rapidly-gentrifying neighborhood they grew up in.",2018-07-20,1.4125,7.34,686 +1921,425909,Ghostbusters: Afterlife,"When single mom Callie and her two kids Trevor and Phoebe arrive in a small Oklahoma town, they begin to discover their connection to the original Ghostbusters and the secret legacy their grandfather left behind.",2021-11-18,7.0734,7.34,4863 +1922,587792,Palm Springs,"When carefree Nyles and reluctant maid of honor Sarah have a chance encounter at a Palm Springs wedding, things get complicated when they find themselves unable to escape the venue, themselves, or each other.",2020-07-10,6.4602,7.339,3357 +1923,260,The 39 Steps,"Richard Hanney has a rude awakening when a glamorous female spy falls into his bed - with a knife in her back. Having a bit of trouble explaining it all to Scotland Yard, he heads for the hills of Scotland to try to clear his name by locating the spy ring known as The 39 Steps.",1935-06-06,2.4823,7.3,992 +1924,3089,Red River,"Following the Civil War, headstrong rancher Thomas Dunson decides to lead a perilous cattle drive from Texas to Missouri. During the exhausting journey, his persistence becomes tyrannical in the eyes of Matthew Garth, his adopted son and protégé.",1948-09-17,2.1645,7.338,556 +1925,2798,Oscar,"This film originated as a play in Paris. The story focuses on the one-day adventures of Bertrand Barnier played with a genius of French cinema, Louis de Funes. In the same morning he learns that his daughter is pregnant, an employee stole a large amount of money from his company, his maid is about to resign in order to marry a wealthy neighbor and his body builder is interested in marrying his daughter. The seemingly complicated story-line is full of comedy or errors and some of the most hilarious mime scenes of the French cinema.",1967-10-11,1.3012,7.3,505 +1926,377,A Nightmare on Elm Street,"Teenagers in a small town are dropping like flies, apparently in the grip of mass hysteria causing their suicides. A cop's daughter, Nancy Thompson, traces the cause to child molester Fred Krueger, who was burned alive by angry parents many years before. Krueger has now come back in the dreams of his killers' children, claiming their lives as his revenge. Nancy and her boyfriend, Glen, must devise a plan to lure the monster out of the realm of nightmares and into the real world...",1984-11-09,11.217,7.338,5389 +1927,324552,John Wick: Chapter 2,"John Wick is forced out of retirement by a former associate looking to seize control of a shadowy international assassins’ guild. Bound by a blood oath to aid him, Wick travels to Rome and does battle against some of the world’s most dangerous killers.",2017-02-08,15.9333,7.337,13595 +1928,11710,The Enigma of Kaspar Hauser,"The film follows Kaspar Hauser (Bruno S.), who lived the first seventeen years of his life chained in a tiny cellar with only a toy horse to occupy his time, devoid of all human contact except for a man who wears a black overcoat and top hat who feeds him.",1974-11-01,1.8829,7.3,344 +1929,9065,Europa,"A young, idealist American gets a job as a train conductor for the Zentropa railway network in postwar, US-occupied Frankfurt. As various people try to take advantage of him, he soon finds his position politically sensitive, and gets caught up in a whirlpool of conspiracies and Nazi sympathisers.",1991-06-27,1.0594,7.337,334 +1930,874,A Man for All Seasons,"A depiction of the conflict between King Henry VIII of England and his Lord Chancellor, Sir Thomas More, who refuses to swear the Oath of Supremacy declaring Henry Supreme Head of the Church in England.",1966-12-13,2.2571,7.337,457 +1931,57361,The Yellow Sea,"A Korean man in China takes an assassination job in South Korea to make money and find his missing wife. But when the job is botched, he is forced to go on the run from the police and the gangsters who paid him.",2010-12-22,1.7049,7.3,521 +1932,15255,Undisputed II: Last Man Standing,"Heavyweight Champ George ""Iceman"" Chambers is sent to a Russian jail on trumped-up drug charges. In order to win his freedom he must fight against the jailhouse fighting champ Uri Boyka in a battle to the death. This time he is not fighting for a title, he is fighting for his life!",2006-04-11,6.1156,7.336,853 +1933,61791,Rise of the Planet of the Apes,"A highly intelligent chimpanzee named Caesar has been living a peaceful suburban life ever since he was born. But when he gets taken to a cruel primate facility, Caesar decides to revolt against those who have harmed him.",2011-08-03,9.1745,7.336,12272 +1934,1155089,Justice League: Crisis on Infinite Earths Part One,"Death is coming. Worse than death: oblivion. Not just for our Earth, but for everyone, everywhere, in every universe! Against this ultimate destruction, the mysterious Monitor has gathered the greatest team of Super Heroes ever assembled. But what can the combined might of Superman, Wonder Woman, Batman, The Flash, Green Lantern and hundreds of Super Heroes from multiple Earths even do to save all of reality from an unstoppable antimatter armageddon?!",2024-01-08,5.3152,7.334,362 +1935,615666,A Boy Called Christmas,"An ordinary young boy called Nikolas sets out on an extraordinary adventure into the snowy north in search of his father who is on a quest to discover the fabled village of the elves, Elfhelm. Taking with him a headstrong reindeer called Blitzen and a loyal pet mouse, Nikolas soon meets his destiny in this magical and endearing story that proves nothing is impossible…",2021-11-24,1.4235,7.334,760 +1936,493529,Dungeons & Dragons: Honor Among Thieves,"A charming thief and a band of unlikely adventurers undertake an epic heist to retrieve a lost relic, but things go dangerously awry when they run afoul of the wrong people.",2023-03-23,8.3208,7.333,4085 +1937,451048,Jungle Cruise,"Dr. Lily Houghton enlists the aid of wisecracking skipper Frank Wolff to take her down the Amazon in his dilapidated boat. Together, they search for an ancient tree that holds the power to heal – a discovery that will change the future of medicine.",2021-07-28,7.2261,7.335,5870 +1938,9385,The Twelve Tasks of Asterix,"Asterix and Obelix depart on an adventure to complete twelve impossible tasks to prove to Caesar that they are as strong as the Gods. You'll roar with laughter as they outwit, outrun, and generally outrage the very people who are trying to prove them ""only human"".",1976-06-26,2.3738,7.3,1286 +1939,522369,Sorry We Missed You,"Ricky and his family have been fighting an uphill struggle against debt since the 2008 financial crash. An opportunity to wrestle back some independence appears with a shiny new van and the chance to run a franchise as a self-employed delivery driver. It's hard work, and his wife's job as a carer is no easier. The family unit is strong but when both are pulled in different directions everything comes to breaking point.",2019-10-04,1.372,7.333,782 +1940,132363,The Butler,"A look at the life of Cecil Gaines, who served eight presidents as the White House's head butler from 1952 to 1986, and had a unique front-row seat as political and racial history was made.",2013-08-16,2.7409,7.333,2938 +1941,75656,Now You See Me,An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.,2013-05-29,9.315,7.333,15931 +1942,16234,Batman Beyond: Return of the Joker,"The Joker is back with a vengeance, and Neo-Gotham's Dark Knight, Terry McGinnis, needs answers as he stands alone to face the old Gotham's most infamous Clown Prince of Crime.",2000-12-12,2.3643,7.336,1145 +1943,7979,The Kite Runner,"After spending years in California, Amir returns to his homeland in Afghanistan to help his old friend Hassan, whose son is in trouble.",2007-12-14,2.1961,7.336,1187 +1944,1830,Lord of War,"Yuri Orlov is a globetrotting arms dealer and, through some of the deadliest war zones, he struggles to stay one step ahead of a relentless Interpol agent, his business rivals and even some of his customers who include many of the world's most notorious dictators. Finally, he must also face his own conscience.",2005-09-16,5.6201,7.333,4996 +1945,579741,Words Bubble Up Like Soda Pop,"After meeting one day, a shy boy who expresses himself through haiku and a bubbly but self-conscious girl share a brief, magical summer.",2021-07-22,1.4073,7.332,307 +1946,242643,Batman: Assault on Arkham,Batman works desperately to find a bomb planted by the Joker while Amanda Waller sends her newly-formed Suicide Squad to break into Arkham Asylum and recover vital information stolen by the Riddler.,2014-08-12,2.0483,7.332,1152 +1947,119450,Dawn of the Planet of the Apes,"A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity, while Caesar tries to maintain dominance over his community of intelligent apes.",2014-07-08,10.6801,7.332,11767 +1948,43316,All That Heaven Allows,"Two different social classes collide when Cary Scott, a wealthy upper-class widow, falls in love with her much younger and down-to-earth gardener, prompting disapproval and criticism from her children and country club friends.",1955-12-25,1.2863,7.332,319 +1949,11673,Cyrano de Bergerac,"Famed swordsman and poet Cyrano de Bergerac is in love with his cousin Roxane. He has never expressed his love for her as he his large nose undermines his self-confidence. Then he finds a way to express his love to her, indirectly.",1990-03-28,1.2939,7.3,788 +1950,11305,Mystery Train,"In Memphis, Tennessee, over the course of a single night, the Arcade Hotel, run by an eccentric night clerk and a clueless bellboy, is visited by a young Japanese couple traveling in search of the roots of rock; an Italian woman in mourning who stumbles upon a fleeing charlatan girl; and a comical trio of accidental thieves looking for a place to hide.",1989-09-06,1.7538,7.332,470 +1951,9589,Christiane F.,"This movie portrays the drug scene in Berlin in the 70s, following tape recordings of Christiane F. 14 years old Christiane lives with her mother and little sister in a typical multi-storey apartment building in Berlin. She's fascinated by the 'Sound', a new disco with most modern equipment. Although she's legally too young, she asks a friend to take her. There she meets Detlef, who's in a clique where everybody's on drugs. Step by step she gets drawn deeper into the scene.",1981-04-02,2.1444,7.332,1374 +1952,890980,God's Crooked Lines,"Alice Gould, a private investigator, pretends to be mentally ill in order to enter a psychiatric hospital and gather evidence for the case she is working on: the death of a patient in unclear circumstances.",2022-10-06,1.9885,7.331,746 +1953,315635,Spider-Man: Homecoming,"Following the events of Captain America: Civil War, Peter Parker, with the help of his mentor Tony Stark, tries to balance his life as an ordinary high school student in Queens, New York City, with fighting crime as his superhero alter ego Spider-Man as a new threat, the Vulture, emerges.",2017-07-05,23.3708,7.331,22378 +1954,289222,The Zookeeper's Wife,"The account of keepers of the Warsaw Zoo, Jan and Antonina Zabinski, who helped save hundreds of people and animals during the Nazi invasion.",2017-03-24,2.3599,7.331,1523 +1955,4816,Ghost Dog: The Way of the Samurai,An African-American Mafia hit man who models himself after the samurai of ancient Japan finds himself targeted for death by the mob.,1999-10-06,2.8886,7.331,1288 +1956,912598,Bubble,"In an abandoned Tokyo overrun by bubbles and gravitational abnormalities, one gifted young man has a fateful meeting with a mysterious girl.",2022-02-14,1.5784,7.33,439 +1957,663260,Black Box,"Mathieu is a young and talented black box analyst on a mission to solve the reason behind the deadly crash of a brand new aircraft. Yet, when the case is closed by authorities, Mathieu cannot help but sense there is something wrong with the evidence. As he listens to the tracks again, he starts detecting some seriously disturbing details. Could the tape have been modified? Going against his boss' orders, Mathieu begins his own rogue investigation - an obsessional and dangerous quest for truth that will quickly threaten far more than his career...",2021-09-08,2.7381,7.33,1323 +1958,621013,Chemical Hearts,"When a hopelessly romantic high school senior falls for a mysterious new classmate, it sets them both on an unexpected journey that teaches them about love, loss, and most importantly themselves.",2020-08-21,3.0972,7.3,1134 +1959,416477,The Big Sick,"Pakistan-born comedian Kumail Nanjiani and grad student Emily Gardner fall in love but struggle as their cultures clash. When Emily contracts a mysterious illness, Kumail finds himself forced to face her feisty parents, his family's expectations, and his true feelings.",2017-03-30,2.3242,7.33,2506 +1960,342737,20th Century Women,"In 1979 Santa Barbara, California, Dorothea Fields is a determined single mother in her mid-50s who is raising her adolescent son, Jamie, at a moment brimming with cultural change and rebellion. Dorothea enlists the help of two younger women – Abbie, a free-spirited punk artist living as a boarder in the Fields' home and Julie, a savvy and provocative teenage neighbour – to help with Jamie's upbringing.",2016-12-28,2.2608,7.3,1176 +1961,21348,Kirikou and the Sorceress,"Drawn from elements of West African folk tales, it depicts how a newborn boy, Kirikou, saves his village from the evil witch Karaba.",1998-12-09,2.0137,7.33,1124 +1962,88,Dirty Dancing,"Expecting the usual tedium that accompanies a summer in the Catskills with her family, 17-year-old Frances 'Baby' Houseman is surprised to find herself stepping into the shoes of a professional hoofer—and unexpectedly falling in love.",1987-08-21,6.2363,7.3,6304 +1963,433498,Papillon,"Henri “Papillon” Charrière, a safecracker from the Parisian underworld, is wrongfully convicted and sentenced to life imprisonment in the penal colony of French Guiana, where he forges a strong friendship with Louis Dega, a counterfeiter who needs his protection.",2017-09-07,4.4624,7.329,2016 +1964,28055,Blood and Black Lace,"Isabella, a young model, is murdered by a mysterious masked figure at a fashion house in Rome. When her diary, which details the house employees' many vices, disappears, the masked killer begins killing off all the models in and around the house to find it.",1964-04-10,1.6266,7.329,436 +1965,17529,True Grit,"The murder of her father sends a teenage tomboy on a mission of 'justice', which involves avenging her father's death. She recruits a tough old marshal, 'Rooster' Cogburn because he has 'true grit', and a reputation of getting the job done.",1969-06-11,2.9425,7.329,814 +1966,704,A Hard Day's Night,"Capturing John Lennon, Paul McCartney, George Harrison and Ringo Starr in their electrifying element, 'A Hard Day's Night' is a wildly irreverent journey through this pastiche of a day in the life of The Beatles during 1964. The band have to use all their guile and wit to avoid the pursuing fans and press to reach their scheduled television performance, in spite of Paul's troublemaking grandfather and Ringo's arrest.",1964-07-07,1.7902,7.3,705 +1967,64847,Belladonna of Sadness,"An evil feudal lord rapes a village girl on her wedding night and proceeds to ruin her and her husband's lives. After she's eventually banished from her village, the girl makes a pact with the devil to gain magical ability and take revenge.",1973-06-30,1.5211,7.3,334 +1968,470,21 Grams,"Paul Rivers, an ailing mathematician lovelessly married to an English émigré; Christina Peck, an upper-middle-class suburban housewife and mother of two girls; and Jack Jordan, a born-again ex-con, are brought together by a terrible accident that changes their lives.",2003-09-06,2.8803,7.328,3223 +1969,560057,The Sea Beast,"When a young girl stows away on the ship of a legendary sea monster hunter, they launch an epic journey into uncharted waters — and make history to boot.",2022-06-24,3.6262,7.327,1565 +1970,10549,Hamlet,"Hamlet, Prince of Denmark, returns home to find his father murdered and his mother now marrying the murderer... his uncle. Meanwhile, war is brewing.",1996-12-25,2.1007,7.327,494 +1971,2666,Dark City,"A man struggles with memories of his past, including a wife he cannot remember, in a nightmarish world with no sun and run by beings with telekinetic powers who seek the souls of humans.",1998-02-27,5.8698,7.327,2971 +1972,1083862,Resident Evil: Death Island,"In San Francisco, Jill Valentine is dealing with a zombie outbreak and a new T-Virus, Leon Kennedy is on the trail of a kidnapped DARPA scientist, and Claire Redfield is investigating a monstrous fish that is killing whales in the bay. Joined by Chris Redfield and Rebecca Chambers, they discover the trail of clues from their separate cases all converge on the same location, Alcatraz Island, where a new evil has taken residence and awaits their arrival.",2023-06-22,4.7008,7.326,1040 +1973,239877,The Mafia Kills Only in Summer,"While Arturo tries to gain the love of Flora, he witnesses the history of Sicily from 1969 to 1992, miraculously dodging the crimes of the Mafia and supporting as a journalist the heroic struggle of the judges and policemen who fought this infamous organization.",2013-11-28,0.9964,7.326,1116 +1974,122917,The Hobbit: The Battle of the Five Armies,"Following Smaug's attack on Laketown, Bilbo and the dwarves try to defend Erebor's mountain of treasure from others who claim it: the men of the ruined Laketown and the elves of Mirkwood. Meanwhile an army of Orcs led by Azog the Defiler is marching on Erebor, fueled by the rise of the dark lord Sauron. Dwarves, elves and men must unite, and the hope for Middle-Earth falls into Bilbo's hands.",2014-12-10,16.0699,7.326,14734 +1975,58857,13 Assassins,A bravado period action film set at the end of Japan's feudal era in which a group of unemployed samurai are enlisted to bring down a sadistic lord and prevent him from ascending to the throne and plunging the country into a war-torn future.,2010-09-25,3.1138,7.325,1185 +1976,15003,Chocolate,"Zen, an autistic teenage girl with powerful martial arts skills, gets money to pay for her sick mother Zin's treatment by seeking out all the people who owe Zin money and making them pay.",2008-02-06,2.6863,7.326,517 +1977,687,Dead Man Walking,A death row inmate turns for spiritual guidance to a local nun in the days leading up to his scheduled execution for the murders of a young couple.,1995-12-29,2.7408,7.326,1407 +1978,205587,The Judge,"A successful lawyer returns to his hometown for his mother's funeral only to discover that his estranged father, the town's judge, is suspected of murder.",2014-10-08,7.0689,7.325,4226 +1979,18785,The Hangover,"When three friends finally come to after a raucous night of bachelor-party revelry, they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend, Doug – who's supposed to be tying the knot. Launching a frantic search for Doug, the trio perseveres through a nasty hangover to try to make it to the church on time.",2009-06-02,16.4377,7.325,17394 +1980,1429,25th Hour,"In New York City in the days following the events of 9/11, Monty Brogan is a convicted drug dealer about to start a seven-year prison sentence, and his final hours of freedom are devoted to hanging out with his closest buddies and trying to prepare his girlfriend for his extended absence.",2002-12-19,2.0276,7.325,2431 +1981,66125,Red Dog,The legendary true story of the Red Dog who united a disparate local community while roaming the Australian outback in search of his long lost master.,2011-08-04,1.5389,7.324,412 +1982,14645,Santa Claus Is a Stinker,"Two neurotics, working for a suicide hotline on the night of Christmas Eve, get caught up in a catastrophe when a pregnant woman, her abusive boyfriend, and a transvestite visit their office.",1982-08-25,1.4664,7.324,1017 +1983,1052,Blow-Up,"A successful mod photographer in London whose world is bounded by fashion, pop music, marijuana, and easy sex, feels his life is boring and despairing. But in the course of a single day he unknowingly captures a death on film.",1966-12-18,2.1618,7.3,1298 +1984,112198,What's in a Name,"Vincent, a wealthy real estate agent, is invited to dinner by his sister Elizabeth and her husband Peter, both professors in Paris. Claude, a childhood friend and trombonist in a symphony orchestra, is also present. Vincent brings news from the prenatal examination of his and his wife Anna's unborn son. The name chosen by the soon-to-be parents strongly offends the others for many reasons. The dispute between the guests quickly escalates and before long the resurgence of old grudges and hidden secrets is unavoidable ...",2012-04-25,1.4134,7.323,1730 +1985,25623,House,"Hoping to find a sense of connection to her late mother, Gorgeous takes a trip to the countryside to visit her aunt at their ancestral house. She invites her six friends, Prof, Melody, Mac, Fantasy, Kung Fu, and Sweet, to join her. The girls soon discover that there is more to the old house than meets the eye.",1977-08-26,2.2379,7.3,713 +1986,2841,A Very Long Engagement,"Young Frenchwoman Mathilde searches for the truth about her missing fiancé, lost during World War I, and learns many unexpected things along the way. The love of her life is gone. But she refuses to believe he's gone forever — and she needs to know for sure.",2004-10-27,2.4003,7.323,1250 +1987,2502,The Bourne Supremacy,"A CIA operation to purchase classified Russian documents is blown by a rival agent, who then shows up in the sleepy seaside village where Bourne and Marie have been living. The pair run for their lives and Bourne, who promised retaliation should anyone from his former life attempt contact, is forced to once again take up his life as a trained assassin to survive.",2004-07-23,6.2193,7.323,7755 +1988,649,Belle de Jour,"Beautiful young housewife Séverine Serizy cannot reconcile her masochistic fantasies with her everyday life alongside dutiful husband Pierre. When her lovestruck friend Henri mentions a secretive high-class brothel run by Madame Anais, Séverine begins to work there during the day under the name Belle de Jour. But when one of her clients grows possessive, she must try to go back to her normal life.",1967-05-24,2.8758,7.323,956 +1989,552524,Lilo & Stitch,The wildly funny and touching story of a lonely Hawaiian girl and the fugitive alien who helps to mend her broken family.,2025-05-17,225.926,7.322,1307 +1990,47735,Summer with Monika,"Monika from Stockholm falls in love with Harry, a young man on holiday. When she becomes pregnant they are forced into a marriage, which begins to fall apart soon after they take up residence in a cramped little flat.",1953-02-09,1.8369,7.3,363 +1991,13688,CJ7,"A poor construction worker, who struggles to keep his son in private school, mistakes an orb he finds in a junkjard for a toy which proves to be much, much more once the young boy starts to play with it.",2008-01-30,3.8101,7.322,743 +1992,866,Finding Neverland,"During a writing slump, playwright J.M. Barrie meets a widow and her four children, all young boys—who soon become an important part of Barrie’s life and the inspiration that lead him to create his masterpiece. Peter Pan.",2004-10-17,2.8627,7.323,3623 +1993,964980,Air,Discover the game-changing partnership between a then undiscovered Michael Jordan and Nike's fledgling basketball division which revolutionized the world of sports and culture with the Air Jordan brand.,2023-04-05,6.2389,7.321,2121 +1994,36208,A Dog's Life,The Tramp and his dog companion struggle to survive in the inner city.,1918-04-14,0.8266,7.3,338 +1995,25793,Precious,"Set in Harlem in 1987, Claireece ""Precious"" Jones is a 16-year-old African American girl born into a life no one would want. She's pregnant for the second time by her absent father; at home, she must wait hand and foot on her mother, an angry woman who abuses her emotionally and physically. School is chaotic and Precious has reached the ninth grade with good marks and a secret; She can't read.",2009-11-06,2.319,7.321,1680 +1996,15384,Red Cliff II,"The battle of Red Cliff continues and the alliance between Xu and East Wu is fracturing. With Cao Cao's massive forces on their doorstep, will the kingdoms of Xu and East Wu survive?",2009-01-07,2.8126,7.3,458 +1997,9571,Dazed and Confused,"The adventures of a group of Texas teens on their last day of school in 1976, centering on student Randall Floyd, who moves easily among stoners, jocks and geeks. Floyd is a star athlete, but he also likes smoking weed, which presents a conundrum when his football coach demands he sign a ""no drugs"" pledge.",1993-09-24,4.0249,7.321,2131 +1998,634544,Uncle Frank,"In 1973, when Frank Bledsoe and his 18-year-old niece Beth take a road trip from Manhattan to Creekville, South Carolina for the family patriarch's funeral, they're unexpectedly joined by Frank's lover Walid.",2020-11-25,1.8506,7.3,420 +1999,506528,Harriet,"The extraordinary tale of Harriet Tubman's escape from slavery and transformation into one of America's greatest heroes. Her courage, ingenuity and tenacity freed hundreds of slaves and changed the course of history.",2019-11-01,2.71,7.32,849 +2000,429174,Loveless,"Zhenya and Boris are going through a vicious divorce marked by resentment, frustration and recriminations. Already embarking on new lives, each with a new partner, they are impatient to start again, to turn the page – even if it means threatening to abandon their 12-year-old son Alyosha. Until, after witnessing one of their fights, Alyosha disappears.",2017-06-01,1.6453,7.3,772 +2001,90369,Now Is Good,A girl dying of leukemia compiles a list of things she'd like to do before passing away. Topping the list is her desire to lose her virginity.,2012-09-19,1.3898,7.32,1088 +2002,72478,Suicide Room,"Moody, dark and handsome Dominik is tormented by his classmates after video footage of his drunken kiss with bully Alex is spread across the Internet. Grappling with the public humiliation Dominik seeks solace in an avatar based “suicide room” where the pink-haired rebel Sylvia consoles him.",2011-03-04,1.057,7.32,463 +2003,54138,Star Trek Into Darkness,"When the crew of the Enterprise is called back home, they find an unstoppable force of terror from within their own organization has detonated the fleet and everything it stands for, leaving our world in a state of crisis. With a personal score to settle, Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. As our heroes are propelled into an epic chess game of life and death, love will be challenged, friendships will be torn apart, and sacrifices must be made for the only family Kirk has left: his crew.",2013-05-05,5.5411,7.32,9307 +2004,7340,Carrie,"Withdrawn and sensitive teen Carrie White faces taunting from classmates at school and abuse from her fanatically pious mother. When strange occurrences start happening around Carrie, she begins to suspect that she has supernatural powers.",1976-11-03,5.5689,7.3,4029 +2005,11197,Evil,"Stockholm, in the 1950s. Erik is expelled from the local school for getting into one brawl too many. To protect Erik from his violent stepfather’s reaction to his expulsion, Erik's mother arranges for Erik to spend a year at Stjärnsberg Boarding School, the only school willing to accept him. This is Erik's last chance to graduate to Upper School and he promises his mother, for his and her sake, to do all he can to stay out of trouble.",2003-09-16,3.5278,7.3,365 +2006,802,Lolita,"Humbert Humbert is a middle-aged British novelist who is both appalled by and attracted to the vulgarity of American culture. When he comes to stay at the boarding house run by Charlotte Haze, he soon becomes obsessed with Lolita, the woman's teenaged daughter.",1962-06-13,3.921,7.3,2137 +2007,134,"O Brother, Where Art Thou?","In the deep south during the 1930s, three escaped convicts search for hidden treasure while a relentless lawman pursues them.",2000-08-30,4.3987,7.319,4333 +2008,755339,Just Another Christmas,"After taking a very nasty fall on Christmas Eve, grinchy Jorge blacks out and wakes up one year later, with no memory of the year that has passed. He soon realizes that he’s doomed to keep waking up on Christmas Eve after Christmas Eve, having to deal with the aftermath of what his other self has done the other 364 days of the year.",2020-12-03,1.1321,7.318,428 +2009,504608,Rocketman,"The story of Elton John's life, from his years as a prodigy at the Royal Academy of Music through his influential and enduring musical partnership with Bernie Taupin.",2019-05-17,2.9032,7.318,4791 +2010,27275,G.O.R.A.,"Carpet dealer and UFO photo forger Arif is abducted by aliens and must outwit the evil commander-in-chief of G.O.R.A., the planet where he is being held.",2004-11-12,0.6533,7.318,344 +2011,3131,Gangs of New York,"In early 1860s New York, Irish immigrant Amsterdam Vallon is released from prison and returns to the Five Points, seeking revenge against his father's killer, William Cutting, a powerful anti-immigrant gang leader. He knows that revenge can only be attained by infiltrating Cutting's inner circle. Vallon's journey becomes a fight for personal survival and to find a place for the Irish people.",2002-12-14,5.1867,7.3,6828 +2012,360365,Tini: The New Life of Violetta,A teen star ventures out to the Italian countryside for a summer and emerges a new artist.,2016-05-04,1.5697,7.317,398 +2013,30061,Justice League: Crisis on Two Earths,"A heroic version of Lex Luthor from an alternate universe appears to recruit the Justice League to help save his Earth from the Crime Syndicate, an evil version of the League. What ensues is the ultimate battle of good versus evil in a war that threatens both planets and, through a devious plan launched by Batman's counterpart Owlman, puts the balance of all existence in peril.",2010-02-23,2.316,7.3,738 +2014,17581,Naruto Shippuden the Movie: Bonds,"A mysterious group of ninjas makes a surprise attack on the Konohagakure, which takes great damage. The nightmare of another Shinobi World War could become a reality. Sasuke, who was still a missing nin from Konoha trying to kill his brother, Itachi, appears for the second time in front of Naruto at an unknown location to prevent it from happening.",2008-08-02,3.8723,7.317,503 +2015,10312,Patch Adams,"The true story of Dr. Hunter ""Patch"" Adams, who in the 1970s found that humor is the best medicine, and was willing to do just anything to make his patients laugh—even if it meant risking his own career.",1998-12-25,3.0694,7.317,3301 +2016,672208,A Hero,"Rahim is in prison because of a debt he was unable to repay. During a two-day leave, he tries to convince his creditor to withdraw his complaint against the payment of part of the sum. But things don't go as planned. Is he truly a hero?",2021-12-15,1.0573,7.316,343 +2017,407449,Lucky,"Follows the journey of a 90-year-old atheist and the quirky characters that inhabit his off-the-map desert town. He finds himself at the precipice of life, thrust into a journey of self-exploration.",2017-09-29,1.21,7.316,603 +2018,269258,Head Full of Honey,"Before eleven years old Tilda's parents can put her beloved grandfather in an old people's home due to his progressing Alzheimer disease, she takes him on one last adventure that subliminally threatens to tear her family apart.",2014-12-25,0.9958,7.316,358 +2019,167073,Brooklyn,"In 1950s Ireland and New York, young Eilis Lacey has to choose between two men and two countries.",2015-10-20,2.7319,7.316,3154 +2020,167073,Brooklyn,"In 1950s Ireland and New York, young Eilis Lacey has to choose between two men and two countries.",2015-10-20,2.7319,7.316,3154 +2021,82695,Les Misérables,"An adaptation of the successful stage musical based on Victor Hugo's classic novel set in 19th-century France. Jean Valjean, a man imprisoned for stealing bread, must flee a relentless policeman named Javert. The pursuit consumes both men's lives, and soon Valjean finds himself in the midst of the student revolutions in France.",2012-12-18,5.3034,7.316,5399 +2022,13008,An American Crime,"The true story of suburban housewife Gertrude Baniszewski, who kept a teenage girl locked in the basement of her Indiana home during the 1960s.",2007-07-27,2.1857,7.316,734 +2023,7445,Brothers,"When his helicopter goes down during his fourth tour of duty in Afghanistan, Marine Sam Cahill is presumed dead. Back home, brother Tommy steps in to look over Sam’s wife, Grace, and two children. Sam’s surprise homecoming triggers domestic mayhem.",2009-12-02,7.0046,7.316,3727 +2024,400617,Phantom Thread,"In 1950s London, a renowned dressmaker's meticulous lifestyle begins drastically changing as his relationship with his young muse intensifies.",2017-12-25,3.0776,7.315,3583 +2025,13920,Radio,"In the racially divided town of Anderson, South Carolina in 1976, football coach Harold Jones spots a mentally disabled African-American young man nicknamed Radio near his practice field and is inspired to befriend him. Soon, Radio is Jones' loyal assistant, and he becomes a student at T.L. Hanna High School. But things start to sour when Coach Jones begins taking guff from parents and fans who feel that his devotion to Radio is getting in the way of the team's quest for a championship.",2003-10-24,4.2413,7.314,776 +2026,557,Spider-Man,"After being bitten by a genetically altered spider at Oscorp, nerdy but endearing high school student Peter Parker is endowed with amazing powers to become the superhero known as Spider-Man.",2002-05-01,20.9022,7.314,19768 +2027,1100099,We Live in Time,"An up-and-coming chef and a recent divorcée find their lives forever changed when a chance encounter brings them together, in a decade-spanning, deeply moving romance.",2024-10-10,7.5983,7.313,965 +2028,259316,Fantastic Beasts and Where to Find Them,"In 1926, Newt Scamander arrives at the Magical Congress of the United States of America with a magically expanded briefcase, which houses a number of dangerous creatures and their habitats. When the creatures escape from the briefcase, it sends the American wizarding authorities after Newt, and threatens to strain even further the state of magical and non-magical relations.",2016-11-16,8.3038,7.3,19175 +2029,13635,Mesrine: Killer Instinct,"Jacques Mesrine, a loyal son and dedicated soldier, is back home and living with his parents after serving in the Algerian War. Soon he is seduced by the neon glamour of sixties Paris and the easy money it presents. Mentored by Guido, Mesrine turns his back on middle class law-abiding and soon moves swiftly up the criminal ladder.",2008-10-22,1.7064,7.313,952 +2030,3109,The Quiet Man,"An American man returns to the village of his birth in Ireland, where he finds love and conflict.",1952-07-21,1.8643,7.313,562 +2031,604605,Hello World,"A shy high schooler in Kyoto meets a man claiming to be his future self, who tells him he’s hacked into the past to save their first love.",2019-09-20,1.3339,7.312,377 +2032,583406,Judas and the Black Messiah,Bill O'Neal infiltrates the Black Panthers on the orders of FBI Agent Mitchell and J. Edgar Hoover. As Black Panther Chairman Fred Hampton ascends—falling for a fellow revolutionary en route—a battle wages for O’Neal’s soul.,2021-02-12,1.9068,7.312,1598 +2033,11101,Stalingrad,"A German Platoon is explored through the brutal fighting of the Battle of Stalingrad. After half of their number is wiped out and they're placed under the command of a sadistic captain, the platoon lieutenant leads his men to desert. The platoon members attempt escape from the city, now surrounded by the Soviet Army.",1993-01-20,2.1045,7.312,585 +2034,10669,Deliverance,"Intent on seeing the Cahulawassee River before it's turned into one huge lake, outdoor fanatic Lewis Medlock takes his friends on a river-rafting trip they'll never forget into the dangerous American back-country.",1972-08-18,2.4916,7.3,1690 +2035,4543,Monty Python's The Meaning of Life,"Life's questions are 'answered' in a series of outrageous vignettes, beginning with a staid London insurance company which transforms before our eyes into a pirate ship. Then there's the National Health doctors who try to claim a healthy liver from a still-living donor. The world's most voracious glutton brings the art of vomiting to new heights before his spectacular demise.",1983-03-31,2.8319,7.312,1972 +2036,457,Sissi,"The young Bavarian princess Elisabeth, who all call Sissi, goes with her mother and older sister Néné to Austria where Néné will be wed to an emperor named Franz Joseph, Yet unexpectedly Franz runs into Sissi while out fishing and they fall in love.",1955-12-22,2.0353,7.312,493 +2037,255,Stolen Kisses,"The third in a series of films featuring François Truffaut's alter-ego, Antoine Doinel, the story resumes with Antoine being discharged from military service. His sweetheart Christine's father lands Antoine a job as a security guard, which he promptly loses. Stumbling into a position assisting a private detective, Antoine falls for his employers' seductive wife, Fabienne, and finds that he must choose between the older woman and Christine.",1968-09-04,1.5777,7.3,438 +2038,1056360,American Fiction,"A novelist fed up with the establishment profiting from ""Black"" entertainment uses a pen name to write a book that propels him into the heart of hypocrisy and the madness he claims to disdain.",2023-11-10,2.0382,7.311,1155 +2039,668461,Slumberland,"A young girl discovers a secret map to the dreamworld of Slumberland, and with the help of an eccentric outlaw, she traverses dreams and flees nightmares, with the hope that she will be able to see her late father again.",2022-11-18,1.9674,7.311,879 +2040,545609,Extraction,A hardened gun-for-hire's latest mission becomes a soul-searching race to survive when he's sent into Bangladesh to rescue a drug lord's kidnapped son.,2020-04-23,6.423,7.3,6303 +2041,438146,Birds of Passage,"During the marijuana bonanza, a violent decade that saw the origins of drug trafficking in Colombia, Rapayet and his indigenous family get involved in a war to control the business that ends up destroying their lives and their culture.",2018-08-02,1.2003,7.311,301 +2042,396263,GANTZ:O,"After being brutally murdered in a subway station, a teen boy awakens to find himself resurrected by a strange computer named Gantz, and forced to fight a large force of invading aliens in Osaka.",2016-10-14,3.3533,7.311,775 +2043,26405,Wake in Fright,"A young schoolteacher descends into personal moral degradation after finding himself stranded in a brutal, menacing town in outback Australia.",1971-07-21,1.011,7.311,312 +2044,535356,Elisa & Marcela,"The film tells the true story of Elisa Sánchez Loriga and Marcela Gracia Ibeas, two women in 1901 Spain who fell deeply in love. To overcome societal and legal barriers to their relationship, Elisa assumes a male identity, enabling the pair to marry in secret. Their daring act makes them the first recorded same-sex couple to marry in Spain, but their love is tested as they face relentless persecution and sacrifice.",2019-05-24,1.3742,7.31,392 +2045,11537,Snake in the Eagle's Shadow,"Everyone abuses and humiliates a downtrodden orphan until he befriends an old man, who turns out to be the last master of the snake fist fighting style. Jackie becomes the old man's student and finds himself in battle with the master of the eagle's claw style, who has vowed to destroy the snake fist clan.",1978-03-01,2.0548,7.3,326 +2046,965,The Magnificent Ambersons,The spoiled young heir to the decaying Amberson fortune comes between his widowed mother and the man she has always loved.,1942-07-10,1.7077,7.3,447 +2047,931102,Ride On,A washed-up stuntman and his stunt horse become an overnight social media sensation when their real-life fight with debt collectors goes viral.,2023-04-07,2.7245,7.309,373 +2048,801112,Kidnapped,"The story of Edgardo Mortara, a young Jewish boy living in Bologna, Italy, who in 1858, after being secretly baptized, was forcibly taken from his family to be raised as a Christian. His parents’ struggle to free their son became part of a larger political battle that pitted the papacy against forces of democracy and Italian unification.",2023-05-25,0.6849,7.309,335 +2049,442065,The Last Full Measure,"The incredible true story of Vietnam War hero William H. Pitsenbarger, a U.S. Air Force Pararescuemen medic who personally saved over sixty men. Thirty-two years later, Pentagon staffer Scott Huffman investigates a Congressional Medal of Honor request for Pitsenbarger and uncovers a high-level conspiracy behind the decades-long denial of the medal, prompting Huffman to put his own career on the line to seek justice for the fallen airman.",2020-01-23,2.4455,7.3,463 +2050,15601,Scooby-Doo! and the Cyber Chase,"When Scooby and the gang get trapped in a video game created for the gang, they must fight against the 'Phantom Virus.' To escape the game they must go level by level and defeat the game once and for all.",2001-10-09,1.9159,7.309,529 +2051,2748,Journey to Italy,This deceptively simple tale of a bored English couple travelling to Italy to find a buyer for a house inherited from an uncle is transformed by Roberto Rossellini into a passionate story of cruelty and cynicism as their marriage disintegrates around them.,1954-09-07,1.1203,7.309,306 +2052,861,Total Recall,"Construction worker Douglas Quaid's obsession with the planet Mars leads him to visit Recall, a company that manufactures memories. When his memory implant goes wrong, Doug can no longer be sure what is and isn't reality.",1990-06-01,7.3691,7.309,6052 +2053,486947,The Guilty,"Police officer Asger Holm, demoted to desk work as an alarm dispatcher, answers a call from a panicked woman who claims to have been kidnapped. Confined to the police station and with the phone as his only tool, Asger races against time to get help and find her.",2018-02-22,1.7185,7.308,1747 +2054,390497,Tunnel,"A man is on his way home when the poorly constructed tunnel he is driving through collapses, leaving him trapped leaving himself for the unexpected whilst emergency services struggle to help.",2016-08-10,2.6494,7.308,607 +2055,28118,The Gruffalo,"The magical tale of a mouse who sets foot on a woodland adventure in search of a nut. Encountering predators who all wish to eat him - Fox, Owl and Snake - the brave mouse creates a terrifying, imaginary monster to frighten them away. But what will the mouse do when he meets this frightful monster for real?",2009-12-25,1.9929,7.308,321 +2056,10911,The Guns of Navarone,"A team of allied saboteurs are assigned an impossible mission: infiltrate an impregnable Nazi-held island and destroy the two enormous long-range field guns that prevent the rescue of 2,000 trapped British soldiers.",1961-04-27,3.4162,7.308,817 +2057,2977,Becoming Jane,A biographical portrait of a pre-fame Jane Austen and her romance with a young Irishman.,2007-03-02,2.1731,7.308,1200 +2058,813,Airplane!,An ex-fighter pilot forced to take over the controls of an airliner when the flight crew succumbs to food poisoning.,1980-07-02,7.9887,7.308,4736 +2059,44264,True Grit,"Following the murder of her father by a hired hand, a 14-year-old farm girl sets out to capture the killer. To aid her, she hires the toughest U.S. Marshal she can find—a man with 'true grit'—Reuben J. 'Rooster' Cogburn.",2010-12-22,4.3507,7.307,5438 +2060,9539,Martyrs,"A young woman’s quest for revenge against the people who kidnapped and tortured her as a child leads her and her best friend, also a victim of child abuse, on a terrifying journey into a living hell of depravity.",2008-06-12,6.3677,7.307,2828 +2061,4771,Gone Baby Gone,"When 4 year old Amanda McCready disappears from her home and the police make little headway in solving the case, the girl's aunt, Beatrice McCready hires two private detectives, Patrick Kenzie and Angie Gennaro. The detectives freely admit that they have little experience with this type of case, but the family wants them for two reasons—they're not cops and they know the tough neighborhood in which they all live.",2007-09-18,2.7513,7.3,3922 +2062,1265,Bridge to Terabithia,"Jesse Aarons trained all summer to become the fastest runner in school. So he's very upset when newcomer Leslie Burke outruns him and everyone else. Despite this and other differences including that she's rich, he's poor, she's a city girl, and he's a country boy the two become fast friends. Together they create Terabithia, a land of monsters, trolls, ogres, and giants where they rule as king and queen.",2007-02-15,7.5538,7.3,4974 +2063,813,Airplane!,An ex-fighter pilot forced to take over the controls of an airliner when the flight crew succumbs to food poisoning.,1980-07-02,7.9887,7.308,4736 +2064,801,"Good Morning, Vietnam","A disk jockey goes to Vietnam to work for the Armed Forces Radio Service. While he becomes popular among the troops, his superiors disapprove of his humor.",1987-12-23,2.7563,7.307,2844 +2065,454626,Sonic the Hedgehog,"Powered with incredible speed, Sonic The Hedgehog embraces his new home on Earth. That is, until Sonic sparks the attention of super-uncool evil genius Dr. Robotnik. Now it’s super-villain vs. super-sonic in an all-out race across the globe to stop Robotnik from using Sonic’s unique power for world domination.",2020-02-12,11.2034,7.306,10020 +2066,10234,Funny Games,"Two psychotic young men take a mother, father, and son hostage in their vacation cabin and force them to play sadistic ""games"" with one another for their own amusement.",1997-08-23,2.5748,7.306,1927 +2067,420809,Maleficent: Mistress of Evil,"Maleficent and her goddaughter Aurora begin to question the complex family ties that bind them as they are pulled in different directions by impending nuptials, unexpected allies, and dark new forces at play.",2019-10-16,8.5629,7.305,6267 +2068,65229,Tomboy,"A French family moves to a new neighborhood with during the summer holidays. The story follows a 10-year-old gender non-conforming child, Laure, who experiments with their gender presentation, adopting the name Mikäel.",2011-04-20,1.1316,7.305,716 +2069,17111,Shutter,"After killing a young girl in a hit-and-run accident, a couple is haunted by more than just the memory of their deadly choice.",2004-09-09,4.9501,7.305,1295 +2070,987,The Front Page,A journalist suffering from burn-out wants to finally say goodbye to his office – but his boss doesn’t like the idea one bit.,1974-11-01,0.9055,7.3,365 +2071,754609,Mrs. Harris Goes to Paris,A 1950s London cleaning lady falls in love with an haute couture dress by Christian Dior and decides to gamble everything for the sake of this folly.,2022-07-15,2.2221,7.303,456 +2072,440596,Kiss and Cry,"A romantic drama based on the story of Carley Allison, a promising 18 year old figure skater and singer who made medical history in her fight against a rare 1 in 3.5 billion type of sarcoma.",2017-02-10,0.6913,7.303,411 +2073,80184,The Hidden Face,A Spanish orchestra conductor deals with the mysterious disappearance of his girlfriend.,2011-09-16,3.6172,7.303,1070 +2074,9502,Kung Fu Panda,"When the Valley of Peace is threatened, lazy Po the panda discovers his destiny as the ""chosen one"" and trains to become a kung fu hero, but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress, Crane, Mantis, Viper and Monkey -- to give it a try.",2008-06-04,11.5726,7.3,12035 +2075,926393,The Equalizer 3,"Robert McCall finds himself at home in Southern Italy but he discovers his friends are under the control of local crime bosses. As events turn deadly, McCall knows what he has to do: become his friends' protector by taking on the mafia.",2023-08-30,11.011,7.302,3367 +2076,338766,Hell or High Water,A divorced dad and his ex-con brother resort to a desperate scheme in order to save their family's farm in West Texas.,2016-08-11,4.0143,7.302,4612 +2077,39356,Boy,"Boy, an 11-year-old child and devout Michael Jackson fan who lives on the east coast of New Zealand in 1984, gets a chance to know his absentee criminal father, who has returned to find a bag of money he buried years ago.",2010-03-25,1.7705,7.302,457 +2078,14551,Winchester '73,"Lin McAdam rides into town on the trail of Dutch Henry Brown, only to find himself in a shooting competition against him. McAdam wins the prize, a one-in-a-thousand Winchester rifle, but Dutch steals it and leaves town. McAdam follows, intent on settling his old quarrel, while the rifle keeps changing hands and touching a number of lives.",1950-07-12,1.561,7.3,374 +2079,11647,Infernal Affairs II,"In this prequel to the original, a bloody power struggle among the Triads coincides with the 1997 handover of Hong Kong, setting up the events of the first film.",2003-10-01,2.0018,7.302,439 +2080,922,Dead Man,"William Blake, an accountant turned fugitive, is on the run. During his travels, he meets a Native American man called Nobody, who guides him on a journey to the spiritual world.",1995-12-23,2.3562,7.302,1630 +2081,87,Indiana Jones and the Temple of Doom,"After arriving in India, Indiana Jones is asked by a desperate village to find a mystical stone. He agrees – and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.",1984-05-23,6.5094,7.302,9648 +2082,626735,Dog,An army ranger and his dog embark on a road trip along the Pacific Coast Highway to attend a friend's funeral.,2022-02-17,15.2785,7.302,1633 +2083,118412,Berserk: The Golden Age Arc II - The Battle for Doldrey,The Band of the Hawk and their enigmatic leader Griffith continue winning battle after battle as their prestige throughout the kingdom of Midland grows. But their latest task is one that has seen failure from everyone who has attempted it: the subjugation of the impenetrable fortress of Doldrey.,2012-06-23,2.523,7.301,432 +2084,57212,War Horse,"On the brink of the First World War, Albert's beloved horse Joey is sold to the Cavalry by his father. Against the backdrop of the Great War, Joey begins an odyssey full of danger, joy, and sorrow, and he transforms everyone he meets along the way. Meanwhile, Albert, unable to forget his equine friend, searches the battlefields of France to find Joey and bring him home.",2011-12-25,4.437,7.299,3500 +2085,45612,Source Code,"When decorated soldier Captain Colter Stevens wakes up in the body of an unknown man, he discovers he's part of a mission to find the bomber of a Chicago commuter train.",2011-03-30,5.9421,7.301,8638 +2086,14554,Bad Day at Black Rock,"One-armed war veteran John J. Macreedy steps off a train at the sleepy little town of Black Rock. Once there, he begins to unravel a web of lies, secrecy, and murder.",1955-01-13,1.2935,7.3,386 +2087,11886,Robin Hood,"With King Richard off to the Crusades, Prince John and his slithering minion, Sir Hiss, set about taxing Nottingham's citizens with support from the corrupt sheriff - and staunch opposition by the wily Robin Hood and his band of merry men.",1973-11-08,4.5686,7.301,4474 +2088,11502,Knife in the Water,"On their way to an afternoon on the lake, husband and wife Andrzej and Krystyna nearly run over a young hitchhiker. Inviting the young man onto the boat with them, Andrzej begins to subtly torment him; the hitchhiker responds by making overtures toward Krystyna. When the hitchhiker is accidentally knocked overboard, the husband's panic results in unexpected consequences.",1962-03-09,1.3834,7.3,443 +2089,837335,La Chimera,"Just out of jail, rumpled English archaeologist Arthur reconnects with his wayward crew of tombaroli accomplices – a happy-go-lucky collective of itinerant grave-robbers who survive by looting Etruscan tombs and fencing the ancient treasures they dig up.",2023-10-12,3.3542,7.299,481 +2090,809,Shrek 2,"Shrek, Fiona, and Donkey set off to Far, Far Away to meet Fiona's mother and father, the Queen and King. But not everyone is happily ever after. Shrek and the King find it difficult to get along, and there's tension in the marriage. The Fairy Godmother discovers that Fiona has married Shrek instead of her son Prince Charming and plots to destroy their marriage.",2004-05-19,13.0751,7.3,12818 +2091,603661,The Hating Game,"Resolving to achieve professional success without compromising her ethics, Lucy embarks on a ruthless game of one-upmanship against cold and efficient nemesis Joshua, a rivalry that is complicated by her growing attraction to him.",2021-12-09,3.4284,7.298,1124 +2092,49538,X-Men: First Class,"Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto, they were two young men discovering their powers for the first time. Before they were arch-enemies, they were closest of friends, working together with other mutants (some familiar, some new), to stop the greatest threat the world has ever known.",2011-06-01,0.4702,7.298,13060 +2093,11943,Jeremiah Johnson,A mountain man who wishes to live the life of a hermit becomes the unwilling object of a long vendetta by Indians when he proves to be the match of their warriors in one-to-one combat on the early frontier.,1972-09-10,2.0549,7.298,634 +2094,8337,They Live,A lone drifter stumbles upon a unique pair of sunglasses that reveal aliens are systematically gaining control of the Earth by masquerading as humans and lulling the public into submission.,1988-11-04,5.0679,7.298,3209 +2095,356296,Suburra,"A gangster known as ""Samurai"" wants to turn the waterfront of Rome into a new Las Vegas. All the local mob bosses have agreed to work for this common goal. But peace is not to last long.",2015-10-14,1.7816,7.299,1280 +2096,23550,His Secret Life,"When Antonia's husband Massimo is killed in a car accident, she accidentally discovers that he has been having a same-sex affair with a produce wholesaler named Michele.",2001-03-16,0.724,7.297,576 +2097,866398,The Beekeeper,One man's campaign for vengeance takes on national stakes after he is revealed to be a former operative of a powerful and clandestine organization known as Beekeepers.,2024-01-08,15.8361,7.296,3704 +2098,304357,Woman in Gold,"Maria Altmann, an octogenarian Jewish refugee, takes on the Austrian government to recover a world famous painting of her aunt plundered by the Nazis during World War II, she believes rightfully belongs to her family. She did so not just to regain what was rightfully hers, but also to obtain some measure of justice for the death, destruction, and massive art theft perpetrated by the Nazis.",2015-03-20,2.6941,7.296,1408 +2099,19913,(500) Days of Summer,"Tom, greeting-card writer and hopeless romantic, is caught completely off-guard when his girlfriend, Summer, suddenly dumps him. He reflects on their 500 days together to try to figure out where their love affair went sour, and in doing so, Tom rediscovers his true passions in life.",2009-07-17,8.5268,7.296,10518 +2100,10397,Angela's Ashes,"An Irish Catholic family returns to 1930s Limerick after a child's death in America. The unemployed I.R.A. veteran father struggles with poverty, prejudice, and alcoholism as the family endures harsh slum conditions.",1999-12-25,1.4171,7.296,333 +2101,1491,The Illusionist,"With his eye on a lovely aristocrat, a gifted illusionist named Eisenheim uses his powers to win her away from her betrothed, a crown prince. But Eisenheim's scheme creates tumult within the monarchy and ignites the suspicion of a dogged inspector.",2006-08-18,4.2925,7.296,5052 +2102,228,The Blue Angel,"Prim professor Immanuel Rath finds some of his students ogling racy photos of cabaret performer Lola Lola and visits a local club, The Blue Angel, in an attempt to catch them there. Seeing Lola perform, the teacher is filled with lust, eventually resigning his position at the school to marry the young woman. However, his marriage to a coquette -- whose job is to entice men -- proves to be more difficult than Rath imagined.",1930-04-01,2.2081,7.296,329 +2103,420814,Christopher Robin,"Christopher Robin, the boy who had countless adventures in the Hundred Acre Wood, has grown up and lost his way. Now it’s up to his spirited and loveable stuffed animals, Winnie The Pooh, Tigger, Piglet, and the rest of the gang, to rekindle their friendship and remind him of endless days of childlike wonder and make-believe, when doing nothing was the very best something.",2018-08-01,2.7824,7.295,2801 +2104,408220,Justice League Dark,"When innocent civilians begin committing unthinkable crimes across Metropolis, Gotham City and beyond, Batman must call upon mystical counterparts to eradicate this demonic threat to the planet; enter Justice League Dark. This team of Dark Arts specialists must unravel the mystery of Earth's supernatural plague and contend with the rising, powerful villainous forces behind the siege—before it's too late for all of mankind.",2017-01-24,2.8054,7.295,1088 +2105,20620,Seconds,An unhappy middle-aged banker agrees to a procedure that will fake his death and give him a completely new look and identity; one that comes with its own price.,1966-10-05,0.9587,7.295,385 +2106,6404,Nosferatu the Vampyre,A real estate agent leaves behind his beautiful wife to go to Transylvania to visit the mysterious Count Dracula and formalize the purchase of a property in Wismar.,1979-01-17,3.1337,7.3,1003 +2107,3063,Duck Soup,Rufus T. Firefly is named president/dictator of bankrupt Freedonia and declares war on neighboring Sylvania over the love of wealthy Mrs. Teasdale.,1933-11-12,1.6934,7.295,813 +2108,558,Spider-Man 2,"Peter Parker is going through a major identity crisis. Burned out from being Spider-Man, he decides to shelve his superhero alter ego, which leaves the city suffering in the wake of carnage left by the evil Doc Ock. In the meantime, Parker still can't act on his feelings for Mary Jane Watson, a girl he's loved since childhood. A certain anger begins to brew in his best friend Harry Osborn as well...",2004-06-25,7.5846,7.295,15626 +2109,318121,The Fundamentals of Caring,"Having suffered a tragedy, Ben becomes a caregiver to earn money. His first client, Trevor, is a hilarious 18-year-old with muscular dystrophy. One paralyzed emotionally, one paralyzed physically, Ben and Trevor hit the road on a trip into the western states. The folks they collect along the way will help them test their skills for surviving outside their calculated existence. Together, they come to understand the importance of hope and the necessity of true friendship.",2016-06-16,2.1309,7.294,2223 +2110,44741,Malicious,"A widower and two of his sons become infatuated by their beautiful housekeeper, and all three set out to seduce her using their own unique methods.",1973-03-29,3.7489,7.3,327 +2111,177,The Fisher King,Two troubled men face their terrible destinies and events of their past as they join together on a mission to find the Holy Grail and thus to save themselves.,1991-09-20,2.5707,7.294,1385 +2112,842675,The Wandering Earth II,"Humans built huge engines on the surface of the earth to find a new home. But the road to the universe is perilous. In order to save earth, young people once again have to step forward to start a race against time for life and death.",2023-01-22,4.7701,7.293,637 +2113,438148,Minions: The Rise of Gru,"A fanboy of a supervillain supergroup known as the Vicious 6, Gru hatches a plan to become evil enough to join them, with the backup of his followers, the Minions.",2022-06-29,9.3789,7.293,3796 +2114,36040,Walkabout,"Under the pretense of having a picnic, a geologist takes his teenage daughter and 6-year-old son into the Australian outback and attempts to shoot them. When he fails, he turns the gun on himself, and the two city-bred children must contend with harsh wilderness alone. They are saved by a chance encounter with an Aboriginal boy who shows them how to survive, and in the process underscores the disharmony between nature and modern life.",1971-07-01,1.6118,7.3,416 +2115,15487,The Greatest Game Ever Played,"A biopic of 20-year-old Francis Ouimet who defeated his golfing idol and 1900 US Open Champion, Harry Vardon.",2005-09-30,3.1894,7.294,505 +2116,332270,Battle for Sevastopol,"The story of Lyudmila Pavlichenko, the most successful female sniper in history.",2015-04-02,3.052,7.292,478 +2117,12902,Scooby-Doo! and the Loch Ness Monster,"While the gang travel to Scotland to visit Daphne's cousin and witness the annual Highland Games, they find themselves terrorized by the legendary Loch Ness Monster.",2004-05-20,2.6582,7.3,436 +2118,9837,The Prince of Egypt,"The strong bond between two brothers is challenged when their chosen responsibilities set them at odds, with extraordinary consequences.",1998-12-16,5.9666,7.3,4104 +2119,892,Delicatessen,"In a post-apocalyptic world, the residents of an apartment above the butcher shop receive an occasional delicacy of meat, something that is in low supply. A young man new in town falls in love with the butcher's daughter, which causes conflicts in her family, who need the young man for other business-related purposes.",1991-04-17,2.883,7.292,1531 +2120,199,Star Trek: First Contact,"The Borg, a relentless race of cyborgs, are on a direct course for Earth. Violating orders to stay away from the battle, Captain Picard and the crew of the newly-commissioned USS Enterprise E pursue the Borg back in time to prevent the invaders from changing Federation history and assimilating the galaxy.",1996-11-22,4.2544,7.292,1847 +2121,576845,Last Night in Soho,"A young girl, passionate about fashion design, is mysteriously able to enter the 1960s where she encounters her idol, a dazzling wannabe singer. But 1960s London is not what it seems, and time seems to be falling apart with shady consequences.",2021-10-21,4.3526,7.291,3595 +2122,493922,Hereditary,"Following the death of the Leigh family matriarch, Annie and her children uncover disturbing secrets about their heritage. Their daily lives are not only impacted, but they also become entangled in a chilling fate from which they cannot escape, driving them to the brink of madness.",2018-06-07,8.7123,7.291,8059 +2123,259761,Lights Out,"A woman prepares for bed, but realizes that something may be lurking in the shadows.",2014-05-10,0.4552,7.3,373 +2124,259693,The Conjuring 2,Lorraine and Ed Warren travel to north London to help a single mother raising four children alone in a house plagued by malicious spirits.,2016-06-08,17.5714,7.291,8679 +2125,10112,The Aristocats,"When Madame Adelaide Bonfamille leaves her fortune to Duchess and her children—Bonfamille’s beloved family of cats—the butler plots to steal the money and kidnaps the legatees, leaving them out on a country road. All seems lost until the wily Thomas O’Malley Cat and his jazz-playing alley cats come to the aristocats’ rescue.",1970-12-24,5.5926,7.291,5194 +2126,619803,The Roundup,"The 'Beast Cop' Ma Seok-do heads to a foreign country to extradite a suspect, but soon after his arrival, he discovers additional murder cases and hears about a vicious killer who has been committing crimes against tourists for several years.",2022-05-18,6.8433,7.29,366 +2127,39108,Dragon Ball Z: Wrath of the Dragon,The Z Warriors discover an unopenable music box and are told to open it with the Dragon Balls. The contents turn out to be a warrior named Tapion who had sealed himself inside along with a monster called Hildegarn. Goku must now perfect a new technique to defeat the evil monster.,1995-07-15,5.6786,7.3,754 +2128,23566,Barbie and the Three Musketeers,"Corinne (Barbie) is a young country girl who heads to Paris to pursue her big dream – to become a female musketeer! Never could she imagine she would meet three other girls who secretly share the same dream! Using their special talents, the girls work together as a team to foil a plot and save the prince. It's all for one and one for all!",2009-09-15,2.715,7.3,700 +2129,13932,Jack-Jack Attack,"The Parrs' baby Jack-Jack is thought to be normal, not having any super-powers like his parents or siblings. But when an outsider is hired to watch him, Jack-Jack shows his true potential.",2005-03-15,1.1985,7.29,953 +2130,38142,5 Centimeters per Second,"Three moments in Takaki's life: his relationship with Akari and their forced separation; his friendship with Kanae, who is secretly in love with him; the demands and disappointments of adulthood, an unhappy life in a cold city.",2007-03-03,3.6648,7.289,2034 +2131,21956,Scooby-Doo! and the Monster of Mexico,"A friend of Fred's, Alejo Otero, invites the Scooby gang to Veracruz, Mexico. There they find a monster, El Chupacabra, terrorizing the town.",2003-09-30,1.7765,7.3,324 +2132,14621,Lean On Me,"When principal Joe Clark takes over decaying Eastside High School, he's faced with students wearing gang colors and graffiti-covered walls. Determined to do anything he must to turn the school around, he expels suspected drug dealers, padlocks doors and demands effort and results from students, staff and parents. Autocratic to a fault, this real-life educator put it all on the line.",1989-03-03,2.0077,7.289,320 +2133,104,Run Lola Run,"Lola receives a phone call from her boyfriend Manni. He lost 100,000 DM in a subway train that belongs to a very bad guy. She has 20 minutes to raise this amount and meet Manni. Otherwise, he will rob a store to get the money. Three different alternatives may happen depending on some minor event along Lola's run.",1998-08-20,2.7827,7.289,2391 +2134,10938,Beautiful Thing,"Set during a long, hot summer on the Thamesmead Estate in Southeast London, where three teenagers edge towards adulthood.",1996-06-21,0.8892,7.288,321 +2135,298115,Dragons: Dawn of the Dragon Racers,A hunt for a lost sheep turns into a competition between Hiccup and friends as they compete to become the first Dragon Racing champion of Berk.,2014-11-01,2.8365,7.287,362 +2136,258230,A Monster Calls,12-year-old Conor encounters an ancient tree monster who proceeds to help him cope with his mother's terminal illness and being bullied in school.,2016-10-07,4.0664,7.287,3429 +2137,228194,The Hundred-Foot Journey,A story centered around an Indian family who moves to France and opens a restaurant across the street from a Michelin-starred French restaurant.,2014-08-06,2.1553,7.3,1471 +2138,590223,Love and Monsters,"Seven years since the Monsterpocalypse began, Joel Dawson has been living underground in order to survive. But after reconnecting over radio with his high school girlfriend Aimee, Joel decides to venture out to reunite with her, despite all the dangerous monsters that stand in his way.",2020-10-16,5.4729,7.286,4203 +2139,416494,Status Update,"After being uprooted by his parents' separation and unable to fit into his new hometown, a teenager stumbles upon a magical app that causes his social media updates to come true.",2018-02-09,2.009,7.286,551 +2140,416494,Status Update,"After being uprooted by his parents' separation and unable to fit into his new hometown, a teenager stumbles upon a magical app that causes his social media updates to come true.",2018-02-09,2.009,7.286,551 +2141,40794,Loose Cannons,"Tommaso is the youngest son of the Cantones, a large, traditional southern Italian family operating a pasta-making business since the 1960s. On a trip home from Rome, where he studies literature and lives with his boyfriend, Tommaso decides to tell his parents the truth about himself. But when he is finally ready to come out in front of the entire family, his older brother Antonio ruins his plans.",2010-02-12,1.4235,7.286,791 +2142,11948,"Merry Christmas, Mr. Lawrence","Island of Java, 1942, during World War II. British Major Jack Celliers arrives at a Japanese prison camp, run by the strict Captain Yonoi. Colonel John Lawrence, who has a profound knowledge of Japanese culture, and Sergeant Hara, brutal and simpleton, will witness the struggle of wills between two men from very different backgrounds who are tragically destined to clash.",1983-05-28,1.9409,7.3,487 +2143,11426,From Here to Eternity,"In 1941 Hawaii, a private is cruelly punished for not boxing on his unit's team, while his captain's wife and second in command are falling in love.",1953-08-28,2.0288,7.3,666 +2144,11190,The Return,The relationships among two pre-pubescent brothers and their estranged father are tested on a trip into the Russian wilderness.,2003-06-25,1.5074,7.286,661 +2145,941,Lethal Weapon,A veteran cop and an unstable detective become partners who must put their differences aside in order to bring down a heroin-smuggling ring run by ex-Special Forces.,1987-03-06,6.0398,7.286,4750 +2146,121642,Twice Born,"Full-throttle melodrama about an ill-starred romance set against the backdrop of the siege of Sarajevo. A mother brings her teenage son to Sarajevo, where his father died in the Bosnian conflict years ago.",2012-09-13,1.6112,7.285,459 +2147,18183,Like Water for Chocolate,"Tita is passionately in love with Pedro, but her controlling mother forbids her from marrying him. When Pedro marries her sister, Tita throws herself into her cooking and discovers she can transfer her emotions through the food she prepares, infecting all who eat it with her intense heartbreak.",1992-04-16,2.2216,7.285,527 +2148,3176,Battle Royale,"In the future, the Japanese government captures a class of ninth-grade students and forces them to kill each other under the revolutionary ""Battle Royale"" act.",2000-12-16,3.7914,7.285,3557 +2149,2270,Stardust,"In a countryside town bordering on a magical land, a young man makes a promise to his beloved that he'll retrieve a fallen star by venturing into the magical realm. His journey takes him into a world beyond his wildest dreams and reveals his true identity.",2007-08-10,5.0975,7.285,4197 +2150,3,Shadows in Paradise,"Nikander, a rubbish collector and would-be entrepreneur, finds his plans for success dashed when his business associate dies. One evening, he meets Ilona, a down-on-her-luck cashier, in a local supermarket. Falteringly, a bond begins to develop between them.",1986-10-17,1.4648,7.285,414 +2151,449406,Vivo,A music-loving kinkajou named Vivo embarks on the journey of a lifetime to fulfill his destiny and deliver a love song for an old friend.,2021-07-30,2.6157,7.284,725 +2152,12614,Victor/Victoria,"A struggling female soprano finds work playing a male female impersonator, but it complicates her personal life.",1982-04-25,1.3682,7.3,426 +2153,9587,Little Women,"With their father away as a chaplain in the Civil War, Jo, Meg, Beth and Amy grow up with their mother in somewhat reduced circumstances. They are a close family who inevitably have their squabbles and tragedies. But the bond holds even when, later, male friends start to become a part of the household.",1994-12-21,3.2892,7.3,1269 +2154,453278,The Rider,"Once a rising star of the rodeo circuit, and a gifted horse trainer, young cowboy Brady is warned that his riding days are over after a horse crushed his skull at a rodeo. In an attempt to regain control of his own fate, Brady undertakes a search for a new identity and what it means to be a man in the heartland of the United States.",2018-03-28,1.3983,7.283,515 +2155,53565,Steamboat Willie,"Mickey Mouse, piloting a steamboat, delights his passenger, Minnie Mouse, by making musical instruments out of the menagerie on deck.",1928-05-15,1.4014,7.283,572 +2156,381,To Catch a Thief,"An ex-thief is accused of enacting a new crime spree, so to clear his name he sets off to catch the new thief, who’s imitating his signature style.",1955-08-03,3.1439,7.283,1583 +2157,901362,Trolls Band Together,"When Branch's brother, Floyd, is kidnapped for his musical talents by a pair of nefarious pop-star villains, Branch and Poppy embark on a harrowing and emotional journey to reunite the other brothers and rescue Floyd from a fate even worse than pop-culture obscurity.",2023-10-12,7.1962,7.282,927 +2158,53457,Sarah's Key,"On the night of 16 July 1942, ten year old Sarah and her parents are being arrested and transported to the Velodrome d'Hiver in Paris where thousands of other jews are being sent to get deported. Sarah however managed to lock her little brother in a closet just before the police entered their apartment. Sixty years later, Julia Jarmond, an American journalist in Paris, gets the assignment to write an article about this raid, a black page in the history of France. She starts digging archives and through Sarah's file discovers a well kept secret about her own in-laws.",2010-09-16,1.5529,7.282,687 +2159,10794,The Party,"Hrundi V. Bakshi, an accident-prone actor from India, is accidentally put on the guest list for an upcoming party at the home of a Hollywood film producer. Unfortunately, from the moment he arrives, one thing after another goes wrong with compounding effect.",1968-04-04,1.7222,7.282,802 +2160,114150,Pitch Perfect,"College student Beca knows she does not want to be part of a clique, but that's exactly where she finds herself after arriving at her new school. Thrust in among mean gals, nice gals and just plain weird gals, Beca finds that the only thing they have in common is how well they sing together. She takes the women of the group out of their comfort zone of traditional arrangements and into a world of amazing harmonic combinations in a fight to the top of college music competitions.",2012-09-28,5.4611,7.281,6672 +2161,30497,The Texas Chain Saw Massacre,"Five friends head out to rural Texas to visit the grave of a grandfather. On the way they stumble across what appears to be a deserted house, only to discover something sinister within. Something armed with a chainsaw.",1974-10-11,5.4961,7.281,3536 +2162,15362,Mesrine: Public Enemy #1,"After nearly two decades of legendary criminal feats, making him France's most notorious criminal while simultaneously feeding his desire for media attention and public adoration, Mesrine becomes increasingly paranoid and isolated, leading to a dramatic confrontation with the law that ultimately seals his fate as the nation's most infamous public enemy.",2008-11-19,1.4545,7.281,902 +2163,1433,The Devil's Backbone,"Spain, 1939. In the last days of the Spanish Civil War, the young Carlos arrives at the Santa Lucía orphanage, where he will make friends and enemies as he follows the quiet footsteps of a mysterious presence eager for revenge.",2001-04-20,1.8914,7.281,1263 +2164,1367,Rocky II,"After Rocky goes the distance with champ Apollo Creed, both try to put the fight behind them and move on. Rocky settles down with Adrian but can't put his life together outside the ring, while Creed seeks a rematch to restore his reputation. Soon enough, the ""Master of Disaster"" and the ""Italian Stallion"" are set on a collision course for a climactic battle that is brutal and unforgettable.",1979-06-15,4.5245,7.281,4557 +2165,508642,Gonjiam: Haunted Asylum,"The crew of a horror web series travels to an abandoned asylum for a live broadcast, but they encounter much more than expected as they move deeper inside the nightmarish old building.",2018-03-28,6.7175,7.28,801 +2166,284689,Testament of Youth,"Testament of Youth is a powerful story of love, war and remembrance, based on the First World War memoir by Vera Brittain, which has become the classic testimony of that war from a woman’s point of view. A searing journey from youthful hopes and dreams to the edge of despair and back again, it’s a film about young love, the futility of war and how to make sense of the darkest times.",2015-01-16,1.7002,7.28,766 +2167,68734,Argo,"As the Iranian revolution reaches a boiling point, a CIA 'exfiltration' specialist concocts a risky plan to free six Americans who have found shelter at the home of the Canadian ambassador.",2012-10-11,4.4038,7.28,8553 +2168,60308,Moneyball,"The story of Oakland Athletics general manager Billy Beane's successful attempt to put together a baseball team on a budget, by employing computer-generated analysis to draft his players.",2011-09-23,4.4706,7.28,5416 +2169,14320,Great Expectations,"In this Dickens adaptation, orphan Pip discovers through lawyer Mr. Jaggers that a mysterious benefactor wishes to ensure that he becomes a gentleman. Reunited with his childhood patron, Miss Havisham, and his first love, the beautiful but emotionally cold Estella, he discovers that the elderly spinster has gone mad from having been left at the altar as a young woman, and has made her charge into a warped, unfeeling heartbreaker.",1946-12-26,2.5872,7.3,352 +2170,11963,Three Days of the Condor,"When bookish CIA researcher Joe Turner finds all his co-workers dead, he, together with a woman he has kidnapped, must work together to outwit those responsible until he determines who he can really trust.",1975-09-24,2.4948,7.3,1231 +2171,6619,Death in Venice,"Composer Gustav von Aschenbach travels to Venice for health reasons. There, he becomes obsessed with the stunning beauty of an adolescent Polish boy named Tadzio who is staying with his family at the same Grand Hôtel des Bains on the Lido as Aschenbach.",1971-03-05,2.0841,7.3,504 +2172,93289,Now Where Did the Seventh Company Get to?,"1940: During the chaotic running fights of the French army the 7th company disappears - nobody knows they've been taken captive. Only their scouting patrol, three witty but lazy guys, can escape and now wanders around behind the German lines. They'd like to just stay out the fights, but a Lieutenant urges them to use a captured truck to break through to their troops.",1973-05-24,0.9696,7.279,367 +2173,79120,Weekend,"After a drunken house party with his straight mates, Russell heads out to a gay club. Just before closing time he picks up Glen but what's expected to be just a one-night stand becomes something else, something special.",2011-10-23,1.2243,7.279,544 +2174,43266,How Green Was My Valley,A man in his fifties reminisces about his childhood growing up in a Welsh mining village at the turn of the 20th century.,1941-10-28,1.7001,7.279,420 +2175,25673,A Place in the Sun,A young social climber wins the heart of a beautiful heiress but his former girlfriend's pregnancy stands in the way of his ambition.,1951-06-12,1.3215,7.279,399 +2176,889699,Holy Spider,"A journalist descends into the dark underbelly of the Iranian holy city of Mashhad as she investigates the serial killings of sex workers by the so called ""Spider Killer"", who believes he is cleansing the streets of sinners.",2022-07-13,1.6511,7.278,454 +2177,571468,Freaks Out,Four super-powered circus freaks find themselves trapped in war-torn Rome after their foster father is captured by the Nazis.,2021-10-28,1.2859,7.278,922 +2178,156022,The Equalizer,"McCall believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when he meets Teri, a young girl under the control of ultra-violent Russian gangsters, he can’t stand idly by – he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer.",2014-09-24,15.2198,7.279,9432 +2179,11929,Dolores Claiborne,"Dolores Claiborne was accused of killing her abusive husband twenty years ago, but the court's findings were inconclusive and she was allowed to walk free. Now she has been accused of killing her employer, Vera Donovan, and this time there is a witness who can place her at the scene of the crime. Things look bad for Dolores when her daughter Selena, a successful Manhattan magazine writer, returns to cover the story.",1995-03-24,2.4358,7.278,802 +2180,11499,Frost/Nixon,"For three years after being forced from office, Nixon remained silent. But in summer 1977, the steely, cunning former commander-in-chief agreed to sit for one all-inclusive interview to confront the questions of his time in office and the Watergate scandal that ended his presidency. Nixon surprised everyone in selecting Frost as his televised confessor, intending to easily outfox the breezy British showman and secure a place in the hearts and minds of Americans. Likewise, Frost's team harboured doubts about their boss's ability to hold his own. But as the cameras rolled, a charged battle of wits resulted.",2008-10-15,2.017,7.278,1223 +2181,764,The Evil Dead,"In 1979, a group of college students find a Sumerian Book of the Dead in an old wilderness cabin they've rented for a weekend getaway.",1981-09-10,5.9131,7.278,4185 +2182,399366,Marrowbone,A young man and his three younger siblings are plagued by a sinister presence in the sprawling manor in which they live.,2017-10-27,3.867,7.277,1700 +2183,379291,Justice League vs. Teen Titans,Robin is sent by Batman to work with the Teen Titans after his volatile behavior botches up a Justice League mission. The Titans must then step up to face Trigon after he possesses the League and threatens to conquer the world.,2016-03-26,3.6296,7.277,995 +2184,14003,Fullmetal Alchemist the Movie: Conqueror of Shamballa,"Munich, Germany, 1923. Two years have passed since Edward Elric was dragged from his own world to ours, leaving behind his country, his friends and his younger brother, Alphonse. Stripped of his alchemical powers, he has been all this time researching rocketry together with Alphonse Heiderich, a young man who resembles his own brother, hoping to one day find a way back home. His efforts so far had proven fruitless, but after lending a hand to a troubled gipsy girl, Edward is thrown in a series of events that can wreak havoc in both worlds. Meanwhile, at his own world, Alphonse Elric ventures deeper into the mysteries of alchemy in search for a way to reunite with his older brother.",2005-07-21,2.3497,7.3,364 +2185,11868,Dracula,"After Jonathan Harker attacks Dracula at his castle, the vampire travels to a nearby city, where he preys on the family of Harker's fiancée. The only one who may be able to protect them is Dr. van Helsing, Harker's friend and fellow-student of vampires, who is determined to destroy Dracula, whatever the cost.",1958-04-21,1.9375,7.3,644 +2186,8393,The Gods Must Be Crazy,A Coca-Cola bottle dropped from an airplane raises havoc among a normally peaceful tribe of African bushmen who believe it to be a utensil of the gods.,1980-09-10,4.3238,7.277,1217 +2187,424488,Megan Leavey,"The true story of Marine Corporal Megan Leavey, who forms a powerful bond with an aggressive combat dog, Rex. While deployed in Iraq, the two complete more than 100 missions and save countless lives, until an IED explosion puts their faithfulness to the test.",2017-06-09,2.0443,7.276,800 +2188,34653,A Single Man,"Set in Los Angeles in 1962, at the height of the Cuban missile crisis, is the story of a British college professor who dwells on the past and cannot see his future. We follow him through a single day, where a series of events and encounters ultimatley lead him to decide if there is a meaning to life after the death of his long time partner, Jim.",2009-12-11,2.6398,7.276,1588 +2189,17814,Assault on Precinct 13,The skeleton staff of a deserted neighborhood's police station that is closing down the next day are under attack all night by the overwhelming numbers of a relentless street gang bent on revenge.,1976-10-08,2.0978,7.276,1126 +2190,12900,Conspiracy,"At the Wannsee Conference on January 20, 1942, senior Nazi officials meet to determine the manner in which the so-called ""Final Solution to the Jewish Question"" can be best implemented.",2001-05-19,1.3997,7.276,433 +2191,10654,Hair,"Upon receiving his draft notice and leaving his family ranch in Oklahoma, Claude heads to New York and befriends a tribe of long-haired hippies on his way to boot camp.",1979-03-15,2.3439,7.3,692 +2192,9325,The Jungle Book,"The boy Mowgli makes his way to the man-village with Bagheera, the wise panther. Along the way he meets jazzy King Louie, the hypnotic snake Kaa and the lovable, happy-go-lucky bear Baloo, who teaches Mowgli ""The Bare Necessities"" of life and the true meaning of friendship.",1967-10-18,7.4283,7.276,6420 +2193,449924,Ip Man 4: The Finale,"Following the death of his wife, Ip Man travels to San Francisco to ease tensions between the local kung fu masters and his star student, Bruce Lee, while searching for a better future for his son.",2019-12-19,2.3228,7.275,2020 +2194,46919,Daisies,Two teenage girls embark on a series of destructive pranks in which they consume and destroy the world around them.,1966-12-30,1.7841,7.275,394 +2195,16907,Naruto the Movie: Ninja Clash in the Land of Snow,"Naruto is thrilled when he is sent on a mission to protect his favorite actress, Yukie Fujikaze, on the set of her new movie, The Adventures of Princess Gale. But when the crew ventures out to film in the icy, foreboding Land of Snow, Yukie mysteriously flees! Naruto and his squad set off to find her... unaware that three Snow Ninja lie in wait, with a sinister purpose that will force Yukie to face her hidden past!",2004-08-21,3.6907,7.275,587 +2196,9473,"South Park: Bigger, Longer & Uncut","In this feature film based on the hit animated series, the third graders of South Park sneak into an R-rated film by ultra-vulgar Canadian television personalities Terrance and Phillip, and emerge with expanded vocabularies that leave their parents and teachers scandalized. When outraged Americans try to censor the film, the controversy spirals into a call to wage war on Canada and Terrance and Phillip end up on death row, with the kids their only hope of rescue.",1999-06-24,4.8911,7.275,2791 +2197,5506,The Ladykillers,Five oddball criminals planning a bank robbery rent rooms on a cul-de-sac from an octogenarian widow under the pretext that they are classical musicians.,1955-12-08,1.5887,7.275,502 +2198,2759,"The Adventures of Priscilla, Queen of the Desert","Two drag queens and a transgender woman contract to perform a drag show at a resort in Alice Springs, a town in the remote Australian desert. As they head west from Sydney aboard their lavender bus, Priscilla, the three friends come to the forefront of a comedy of errors, encountering a number of strange characters, as well as incidents of homophobia, whilst widening comfort zones and exploring new horizons.",1994-05-31,4.3023,7.275,848 +2199,16227,Dark Passage,A man convicted of murdering his wife escapes from prison and works with a woman to try and prove his innocence.,1947-09-05,1.5365,7.3,332 +2200,15774,Swades,"A successful Indian scientist returns home to his village to take his nanny back to America with him, and in the process rediscovers his roots.",2004-12-17,1.547,7.274,341 +2201,1071806,Hunger,A talented young street-food cook pushes herself to the limit after accepting an invitation to train under an infamous and ruthless chef.,2023-04-04,1.8341,7.273,443 +2202,1029575,The Family Plan,"Dan Morgan is many things: a devoted husband, a loving father, a celebrated car salesman. He's also a former assassin. And when his past catches up to his present, he's forced to take his unsuspecting family on a road trip unlike any other.",2023-12-14,17.5371,7.273,1588 +2203,663870,Riders of Justice,"Markus returns home to care for his daughter when his wife dies in a tragic train accident. However, when a survivor of the wreck surfaces and claims foul play, Markus suspects his wife was murdered and embarks on a mission to find those responsible.",2020-11-19,2.5025,7.273,944 +2204,16620,La Bamba,"Los Angeles teenager Ritchie Valens becomes an overnight rock 'n' roll success in 1958, thanks to a love ballad called ""Donna"" that he wrote for his girlfriend. But as his star rises, Valens has conflicts with his jealous brother, Bob, and becomes haunted by a recurring nightmare of a plane crash just as he begins his first national tour alongside Buddy Holly.",1987-07-24,3.3657,7.273,739 +2205,2640,Heathers,"A girl who halfheartedly tries to be part of the ""in crowd"" of her school meets a rebel who teaches her a more devious way to play social politics: by killing the popular kids.",1988-10-01,3.0856,7.273,1782 +2206,690,Pickpocket,"Michel takes up pickpocketing on a lark and is arrested soon after. His mother dies shortly after his release, and despite the objections of his only friend, Jacques, and his mother's neighbor Jeanne, Michel teams up with a couple of petty thieves in order to improve his craft. With a police inspector keeping an eye on him, Michel also tries to get a straight job, but the temptation to steal is hard to resist.",1959-12-16,1.2363,7.273,534 +2207,610120,Anima,"In a short musical film directed by Paul Thomas Anderson, Thom Yorke of Radiohead stars in a mind-bending visual piece. Best played loud.",2019-06-27,0.4215,7.272,449 +2208,550231,The Secret: Dare to Dream,"A widow with three children hires a handyman to fix her house during a major storm. When not doing home repairs, he shares his philosophy of believing in the power of the universe to deliver what we want.",2020-04-16,1.8152,7.272,631 +2209,446893,Trolls World Tour,"Queen Poppy and Branch make a surprising discovery — there are other Troll worlds beyond their own, and their distinct differences create big clashes between these various tribes. When a mysterious threat puts all of the Trolls across the land in danger, Poppy, Branch, and their band of friends must embark on an epic quest to create harmony among the feuding Trolls to unite them against certain doom.",2020-03-11,5.9027,7.272,2201 +2210,432616,Promise at Dawn,"From his childhood in Poland to his adolescence in Nice to his years as a student in Paris and his tough training as a pilot during World War II, this tragi-comedy tells the romantic story of Romain Gary, one of the most famous French novelists and sole writer to have won the Goncourt Prize for French literature two times.",2017-12-20,1.0946,7.272,499 +2211,300671,13 Hours: The Secret Soldiers of Benghazi,An American Ambassador is killed during an attack at a U.S. compound in Libya as a security team struggles to make sense out of the chaos.,2016-01-14,6.2725,7.272,3729 +2212,13597,Labyrinth,"When Sarah is forced to babysit her half-brother Toby, she inadvertently summons the Goblin King and he whisks Toby away to his castle at the centre of a labyrinth. Sarah enters into a bargain with the Goblin King where she is given just thirteen hours to solve the labyrinth and rescue Toby, or else lose him forever.",1986-06-27,4.539,7.3,2551 +2213,9603,Clueless,"Shallow, rich and socially successful Cher is at the top of her Beverly Hills high school's pecking scale. Seeing herself as a matchmaker, Cher first coaxes two teachers into dating each other. Emboldened by her success, she decides to give hopelessly klutzy new student Tai a makeover. When Tai becomes more popular than she is, Cher realizes that her disapproving ex-stepbrother was right about how misguided she was -- and falls for him.",1995-07-19,7.2427,7.272,4586 +2214,9550,House of Flying Daggers,"In 9th century China, a corrupt government wages war against a rebel army called the Flying Daggers. A romantic warrior breaks a beautiful rebel out of prison to help her rejoin her fellows, but things are not what they seem.",2004-08-03,2.9037,7.272,1688 +2215,969492,Land of Bad,"When a Delta Force special ops mission goes terribly wrong, Air Force drone pilot Reaper has 48 hours to remedy what has devolved into a wild rescue operation. With no weapons and no communication other than the drone above, the ground mission suddenly becomes a full-scale battle when the team is discovered by the enemy.",2024-02-09,7.6384,7.271,1320 +2216,483980,Z-O-M-B-I-E-S,"Two star-crossed freshmen – a zombie, Zed and a cheerleader, Addison – each outsiders in their unique ways, befriend each other and work together to show their high school and the Seabrook community what they can achieve when they embrace their differences.",2018-02-16,5.1996,7.271,716 +2217,323661,Mune: Guardian of the Moon,"When a faun named Mune becomes the Guardian of the Moon, little did he had unprepared experience with the Moon and an accident that could put both the Moon and the Sun in danger, including a corrupt titan named Necross who wants the Sun for himself and placing the balance of night and day in great peril. Now with the help of a wax-child named Glim and the warrior, Sohone who also became the Sun Guardian, they go out on an exciting journey to get the Sun back and restore the Moon to their rightful place in the sky.",2015-02-05,2.6768,7.271,566 +2218,99861,Avengers: Age of Ultron,"When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth’s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.",2015-04-22,15.2237,7.271,23615 +2219,637693,Spirit Untamed,Lucky Prescott's life is changed forever when she moves from her home in the city to a small frontier town and befriends a wild mustang named Spirit.,2021-05-20,2.643,7.3,533 +2220,1572,Die Hard: With a Vengeance,"New York detective John McClane is back and kicking bad-guy butt in the third installment of this action-packed series, which finds him teaming with civilian Zeus Carver to prevent the loss of innocent lives. McClane thought he'd seen it all, until a genius named Simon engages McClane, his new ""partner"" -- and his beloved city -- in a deadly game that demands their concentration.",1995-05-19,6.476,7.271,6328 +2221,498248,Mia and the White Lion,A young girl from London moves to Africa with her parents where she befriends a lion cub.,2018-08-02,2.0647,7.269,891 +2222,11663,The Commitments,"Jimmy Rabbitte, just a thick-ya out of school, gets a brilliant idea: to put a soul band together in Barrytown, his slum home in north Dublin. First he needs musicians and singers: things slowly start to click when he finds three fine-voiced females virtually in his back yard, a lead singer (Deco) at a wedding, and, responding to his ad, an aging trumpet player, Joey ""The Lips"" Fagan.",1991-08-14,1.8718,7.269,565 +2223,779,Vampyr,A student of the occult encounters supernatural haunts and local evildoers in a village outside of Paris.,1932-05-06,1.0597,7.269,558 +2224,50646,"Crazy, Stupid, Love.","Cal Weaver is living the American dream. He has a good job, a beautiful house, great children and a beautiful wife, named Emily. Cal's seemingly perfect life unravels, however, when he learns that Emily has been unfaithful and wants a divorce. Over 40 and suddenly single, Cal is adrift in the fickle world of dating. Enter, Jacob Palmer, a self-styled player who takes Cal under his wing and teaches him how to be a hit with the ladies.",2011-07-29,7.258,7.268,8842 +2225,36940,The First Beautiful Thing,"The film tells the story of the Michelucci family, from the nineteen-seventies to the present day: the central character is the stunningly beautiful Anna, the lively, frivolous and sometimes embarrassing mother of Bruno and Valeria. Everything begins in the Summer of 1971, at the annual Summer beauty pageant held at Livorno’s most popular bathing establishment. Anna is unexpectedly crowned “Most Beautiful Mother”, unwittingly stirring the violent jealousy of her husband. From then on, chaos strikes the family and for Anna, Bruno and his sister Valeria, it is the start of an adventure that will only end thirty years later.",2010-01-15,0.8334,7.268,510 +2226,13446,Withnail & I,"Two out-of-work actors -- the anxious, luckless Marwood and his acerbic, alcoholic friend, Withnail -- spend their days drifting between their squalid flat, the unemployment office and the pub. When they take a holiday ""by mistake"" at the country house of Withnail's flamboyantly gay uncle, Monty, they encounter the unpleasant side of the English countryside: tedium, terrifying locals and torrential rain.",1987-06-19,1.6476,7.268,581 +2227,8923,Green Street Hooligans,"After being wrongfully expelled from Harvard University, American Matt Buckner flees to his sister's home in England. Once there, he is befriended by her charming and dangerous brother-in-law, Pete Dunham, and introduced to the underworld of British football hooliganism. Matt learns to stand his ground through a friendship that develops against the backdrop of this secret and often violent world. 'Green Street Hooligans' is a story of loyalty, trust and the sometimes brutal consequences of living close to the edge.",2005-09-09,2.6878,7.3,2442 +2228,6145,Fracture,"A husband is on trial for the attempted murder of his wife, in what is seemingly an open/shut case for the ambitious district attorney trying to put him away. However, there are surprises for both around every corner, and, as a suspenseful game of cat-and-mouse is played out, each must manipulate and outwit the other.",2007-04-19,4.4676,7.267,4061 +2229,3080,Top Hat,"Showman Jerry Travers is working for producer Horace Hardwick in London. Jerry demonstrates his new dance steps late one night in Horace's hotel room, much to the annoyance of sleeping Dale Tremont below. She goes upstairs to complain and the two are immediately attracted to each other. Complications arise when Dale mistakes Jerry for Horace.",1935-08-29,2.1743,7.3,309 +2230,785663,Old Henry,"A widowed farmer and his son warily take in a mysterious, injured man with a satchel of cash. When a posse of men claiming to be the law come for the money, the farmer must decide who to trust. Defending a siege of his homestead, the farmer reveals a talent for gun-slinging that surprises everyone calling his true identity into question.",2021-10-01,2.6417,7.266,612 +2231,37136,The Naked Gun: From the Files of Police Squad!,"When the bumbling Lieutenant Frank Drebin investigates events following the shooting of his partner, he stumbles upon an attempt to assassinate Queen Elizabeth II.",1988-12-02,16.3284,7.265,4008 +2232,10009,Brother Bear,"When an impulsive boy named Kenai is magically transformed into a bear, he must literally walk in another's footsteps until he learns some valuable life lessons. His courageous and often zany journey introduces him to a forest full of wildlife, including the lovable bear cub Koda, hilarious moose Rutt and Tuke, woolly mammoths and rambunctious rams.",2003-10-23,7.2757,7.266,5565 +2233,1802,La Ceremonie,"Sophie, a quiet and shy maid working for an upper-class French family, finds a friend in the energetic and uncompromising postmaster Jeanne, who encourages her to stand up against her bourgeois employers.",1995-08-30,1.2562,7.266,368 +2234,509,Notting Hill,London bookstore owner William Thacker's quiet life turns upside down when a chance encounter with famous actress Anna Scott sparks an unlikely romance challenged by their vastly different worlds.,1999-05-21,7.5623,7.266,6386 +2235,360606,Adventures in Babysitting,"Two teen rival babysitters, Jenny and Lola, team up to hunt down one of their kids who accidentally ran away into the big city without any supervision.",2016-06-24,3.1438,7.3,427 +2236,10440,Manhattan Murder Mystery,A middle-aged couple suspects foul play when their neighbor's wife suddenly drops dead.,1993-05-02,1.549,7.265,1118 +2237,9474,My Name Is Nobody,"Jack Beauregard, an aging gunman of the Old West, only wants to retire in peace and move to Europe, but a young gunfighter known as ""Nobody"" who idolizes Beauregard wants him to go out in a blaze of glory. So, he arranges for Jack to face the 150-man gang known as The Wild Bunch and earn his place in history.",1973-12-13,2.5872,7.265,993 +2238,590,The Hours,"The story of three women searching for more potent, meaningful lives. Each is alive at a different time and place, all are linked by their yearnings and their fears. Their stories intertwine, and finally come together in a surprising, transcendent moment of shared recognition.",2002-12-27,3.2494,7.3,1791 +2239,340,Everything Is Illuminated,"A young Jewish American man endeavors—with the help of eccentric, distant relatives—to find the woman who saved his grandfather during World War II—in a Ukrainian village which was ultimately razed by the Nazis.",2005-09-05,1.2786,7.265,781 +2240,57447,The House with Laughing Windows,"A young restorer is commissioned to save a fresco representing the suffering of St. Sebastiano, which was painted on the wall of a local church by a mysterious, long-dead artist.",1976-08-20,0.7097,7.3,370 +2241,594328,Phineas and Ferb the Movie: Candace Against the Universe,"Phineas and Ferb travel across the galaxy to rescue their older sister Candace, who has been abducted by aliens and taken to a utopia in a far-off planet, free of her pesky little brothers.",2020-08-27,2.3668,7.263,384 +2242,407448,Detroit,A police raid in Detroit in 1967 results in one of the largest citizens' uprisings in the history of the United States.,2017-07-28,2.281,7.263,1677 +2243,2277,Bicentennial Man,"Richard Martin buys a gift, a new NDR-114 robot. The product is named Andrew by the youngest of the family's children. ""Bicentennial Man"" follows the life and times of Andrew, a robot purchased as a household appliance programmed to perform menial tasks. As Andrew begins to experience emotions and creative thought, the Martin family soon discovers they don't have an ordinary robot.",1999-12-17,6.0586,7.263,3720 +2244,837,Videodrome,"As the president of a trashy TV channel, Max Renn is desperate for new programming to attract viewers. When he happens upon ""Videodrome,"" a TV show dedicated to gratuitous torture and punishment, Max sees a potential hit and broadcasts the show on his channel. However, after his girlfriend auditions for the show and never returns, Max investigates the truth behind Videodrome and discovers that the graphic violence may not be as fake as he thought.",1983-02-04,3.2001,7.263,2309 +2245,286192,Lava,"Inspired by the isolated beauty of tropical islands and the explosive allure of ocean volcanoes, Lava is a musical love story that takes place over millions of years.",2014-10-10,1.1903,7.262,1097 +2246,50848,The Names of Love,"Bahia Benmahmoud, a free-spirited young woman, has a particular way of seeing political engagement, as she doesn't hesitate to sleep with those who don't agree with her to convert them to her cause - which is a lot of people, as all right-leaning people are concerned. Generally, it works pretty well. Until the day she meets Arthur Martin, a discreet forty-something who doesn't like taking risks. She imagines that with a name like that, he's got to be slightly fascist. But names are deceitful and appearances deceiving.",2010-11-24,1.0824,7.3,317 +2247,24748,Hud,"Hud Bannon is a ruthless young man who tarnishes everything and everyone he touches. Hud represents the perfect embodiment of alienated youth, out for kicks with no regard for the consequences. There is bitter conflict between the callous Hud and his stern and highly principled father, Homer. Hud's nephew Lon admires Hud's cheating ways, though he soon becomes too aware of Hud's reckless amorality to bear him anymore. In the world of the takers and the taken, Hud is a winner. He's a cheat, but, he explains, ""I always say the law was meant to be interpreted in a lenient manner.""",1963-05-28,1.9718,7.262,330 +2248,17159,Eddie Murphy Raw,"Eddie Murphy delights, shocks and entertains with dead-on celebrity impersonations, observations on '80s love, sex and marriage, a remembrance of Mom's hamburgers and much more.",1987-11-25,1.0994,7.3,344 +2249,13283,Barbie as the Island Princess,"Shipwrecked as a child, Rosella (Barbie) grows up on the island under the watchful eyes of her loving animal friends. The arrival of Prince Antonio leads Rosella and her furry pals to explore civilization and ultimately save the kingdom by uncovering a secret plot.",2007-09-17,3.1167,7.3,750 +2250,4107,Bloody Sunday,The dramatised story of the Irish civil rights protest march on January 30 1972 which ended in a massacre by British troops.,2002-01-25,0.9962,7.262,323 +2251,2657,Pleasantville,"Geeky teenager David and his popular twin sister, Jennifer, get sucked into the black-and-white world of a 1950s TV sitcom called ""Pleasantville,"" and find a world where everything is peachy keen all the time. But when Jennifer's modern attitude disrupts Pleasantville's peaceful but boring routine, she literally brings color into its life.",1998-09-17,2.8976,7.262,1757 +2252,285,Pirates of the Caribbean: At World's End,"Will Turner and Elizabeth Swann join forces with the revived Captain Barbossa to free Jack Sparrow from Davy Jones' locker. The group must navigate dangerous waters, confront many foes and, ultimately, choose sides in a battle wherein piracy itself hangs in the balance.",2007-05-19,16.4967,7.262,14837 +2253,1312157,Madly,"How much do we really know about ourselves when we make a decision? What if there are multiple versions of our I within us, each with something to say?",2025-02-20,1.8531,7.272,448 +2254,547258,Play,"In 1993, Max was 13 when he was offered his first camera. For 25 years he will not stop filming. The bunch of friends, the loves, the successes, the failures. From the 90s to the 2010s, it is the portrait of a whole generation that is emerging through its objective.",2019-09-04,0.646,7.261,355 +2255,19673,Sexmission,"Two scientists are chosen as guinea pigs for a time experiment: they are placed in hibernation and should be brought back to life after three years. In the meantime, however, World War III breaks out and life has been wiped off the surface of Earth. When they wake up, it turns out that not only 50 years have passed but also that they are the only living specimens of the male sex in a new, underground society composed exclusively of women.",1984-05-13,1.3425,7.3,305 +2256,18311,Days of Being Wild,"Yuddy, a Hong Kong playboy known for breaking girls' hearts, tries to find solace and the truth after discovering the woman who raised him isn't his mother.",1990-12-15,2.0729,7.261,533 +2257,10722,The Day of the Beast,"The story revolves around a Basque Roman Catholic priest dedicated to committing as many sins as possible, a death metal salesman from Carabanchel, and the Italian host of a TV show on the occult. These go on a literal ""trip"" through Christmas-time Madrid to hunt for and prevent the reincarnation of the Antichrist.",1995-10-20,1.4209,7.3,560 +2258,1791,The Piano Teacher,"Erika Kohut, a sexually repressed piano teacher living with her domineering mother, meets a young man who starts romantically pursuing her.",2001-09-05,5.4692,7.3,1164 +2259,14202,The Painted Veil,"A British medical doctor fights a cholera outbreak in a small Chinese village, while also being trapped at home in a loveless marriage to an unfaithful wife.",2006-12-09,2.1669,7.3,1208 +2260,899112,Violent Night,"When a team of mercenaries breaks into a wealthy family compound on Christmas Eve, taking everyone inside hostage, the team isn’t prepared for a surprise combatant: Santa Claus is on the grounds, and he’s about to show why this Nick is no saint.",2022-11-30,4.5142,7.26,2330 +2261,19908,Zombieland,"Columbus has made a habit of running from what scares him. Tallahassee doesn't have fears. If he did, he'd kick their ever-living ass. In a world overrun by zombies, these two are perfectly evolved survivors. But now, they're about to stare down the most terrifying prospect of all: each other.",2009-10-02,8.4168,7.259,12623 +2262,9652,The Passenger,"David Locke is a world-weary American journalist who has been sent to cover a conflict in northern Africa, but he makes little progress with the story. When he discovers the body of a stranger who looks similar to him, Locke assumes the dead man's identity. However, he soon finds out that the man was an arms dealer, leading Locke into dangerous situations. Aided by a beautiful woman, Locke attempts to avoid both the police and criminals out to get him.",1975-02-28,1.6272,7.3,513 +2263,3121,Nashville,"The intersecting stories of twenty-four characters—from country star to wannabe to reporter to waitress—connect to the music business in Nashville, Tennessee.",1975-06-11,0.9782,7.259,427 +2264,271674,Suite Française,"France, 1940. In the first days of occupation, beautiful Lucile Angellier is trapped in a stifled existence with her controlling mother-in-law as they both await news of her husband: a prisoner of war. Parisian refugees start to pour into their small town, soon followed by a regiment of German soldiers who take up residence in the villagers' own homes. Lucile initially tries to ignore Bruno von Falk, the handsome and refined German officer staying with them. But soon, a powerful love draws them together and leads them into the tragedy of war.",2015-03-12,2.2171,7.3,1118 +2265,140607,Star Wars: The Force Awakens,"Thirty years after defeating the Galactic Empire, Han Solo and his allies face a new threat from the evil Kylo Ren and his army of Stormtroopers.",2015-12-15,8.6768,7.258,19882 +2266,15600,Missing,Based on the real-life experiences of Ed Horman. A conservative American businessman travels to Chile to investigate the sudden disappearance of his son after a military takeover. Accompanied by his son's wife he uncovers a trail of cover-ups that implicate the US State department which supports the dictatorship.,1982-02-12,1.1368,7.257,404 +2267,13933,One Man Band,"With one coin to make a wish at the piazza fountain, a peasant girl encounters two competing street performers who'd prefer the coin find its way into their tip jars. The little girl, Tippy, is caught in the middle as a musical duel ensues between the one-man-bands.",2005-06-21,0.9844,7.257,578 +2268,12162,The Hurt Locker,"During the Iraq War, a Sergeant recently assigned to an army bomb squad is put at odds with his squad mates due to his maverick way of handling his work.",2008-10-10,4.6869,7.257,5817 +2269,11450,Quiz Show,"Herbert Stempel's transformation into an unexpected television personality unfolds as he secures victory on the cherished American game show, 'Twenty-One.' However, when the show introduces the highly skilled contestant Charles Van Doren to replace Stempel, it compels Stempel to let out his frustrations and call out the show as rigged. Lawyer Richard Goodwin steps in and attempts to uncover the orchestrated deception behind the scenes.",1994-08-25,2.0418,7.3,933 +2270,1598,Cape Fear,"Sam Bowden is a small-town corporate attorney. Max Cady is a tattooed, cigar-smoking, Bible-quoting, psychotic rapist. What do they have in common? 14 years ago, Sam was a public defender assigned to Max Cady's rape trial, and he made a serious error: he hid a document from his illiterate client that could have gotten him acquitted. Now, the cagey Cady has been released, and he intends to teach Sam Bowden and his family a thing or two about loss.",1991-11-13,4.569,7.257,3592 +2271,391713,Lady Bird,"Lady Bird McPherson, a strong willed, deeply opinionated, artistic 17 year old comes of age in Sacramento. Her relationship with her mother and her upbringing are questioned and tested as she plans to head off to college.",2017-09-01,5.1904,7.255,8748 +2272,8363,Superbad,Two co-dependent high school seniors are forced to deal with separation anxiety after their plan to stage a booze-soaked party goes awry.,2007-08-17,7.5371,7.256,7617 +2273,2639,Deconstructing Harry,"Writer Harry Block draws inspiration from people he knows, and from events that happened to him, sometimes causing these people to become alienated from him as a result.",1997-12-12,8.608,7.256,994 +2274,16646,Russian Ark,"A ghost and a French marquis wander through the Winter Palace in St Petersburg, encountering scenes from many different periods of its history.",2002-05-22,1.4788,7.255,479 +2275,11986,Betty Blue,A lackadaisical handyman and aspiring novelist tries to support his younger girlfriend as she slowly succumbs to madness.,1986-04-09,2.9496,7.255,432 +2276,9701,North Country,"A fictionalized account of the first major successful sexual harassment case in the United States — Jenson vs. Eveleth Mines, where a woman who endured a range of abuse while working as a miner filed and won the landmark 1984 lawsuit.",2005-02-12,2.2797,7.255,687 +2277,8374,The Boondock Saints,"Tired of the crime overrunning the streets of Boston, Irish Catholic twin brothers Conner and Murphy are inspired by their faith to cleanse their hometown of evil with their own brand of zealous vigilante justice. As they hunt down and kill one notorious gangster after another, they become controversial folk heroes in the community. But Paul Smecker, an eccentric FBI agent, is fast closing in on their blood-soaked trail.",1999-01-22,3.3213,7.3,2527 +2278,11713,Fist of Fury,"Chen Chen returns to his former school in Shanghai when he learns that his beloved instructor has been murdered. While investigating the man's death, Chen discovers that a rival Japanese school is operating a drug smuggling ring. To avenge his master’s death, Chen takes on both Chinese and Japanese assassins… and even a towering Russian.",1972-03-22,4.7685,7.254,1000 +2279,9833,The Phantom of the Opera,A young soprano becomes the obsession of a disfigured and murderous musical genius who lives beneath the Paris Opera House.,2004-12-08,4.0849,7.3,1684 +2280,766,Army of Darkness,"Ash, a handsome, shotgun-toting, chainsaw-armed department store clerk, is time warped backwards into England's Dark Ages, where he romances a beauty and faces legions of the undead.",1992-10-31,4.0591,7.254,3309 +2281,1147400,"Miraculous World: Paris, Tales of Shadybug and Claw Noir","Miraculous holders from another world appear in Paris. They come from a parallel universe where everything is reversed: the holders of Ladybug and Black Cat Miraculouses, Shadybug and Claw Noir, are the bad guys, and the holder of the Butterfly Miraculous, Betterfly, is a superhero. Ladybug and Cat Noir will have to help Betterfly counter the attacks of their evil doubles and prevent them from seizing the Butterfly Miraculous. Can our heroes also help Betterfly make Shadybug and Claw Noir better people?",2023-10-21,10.1298,7.3,609 +2282,497582,Enola Holmes,"While searching for her missing mother, intrepid teen Enola Holmes uses her sleuthing skills to outsmart big brother Sherlock and help a runaway lord.",2020-09-23,5.045,7.252,6239 +2283,453395,Doctor Strange in the Multiverse of Madness,"Doctor Strange, with the help of mystical allies both old and new, traverses the mind-bending and dangerous alternate realities of the Multiverse to confront a mysterious new adversary.",2022-05-04,15.0842,7.253,9685 +2284,318781,Colonia,"A young woman's desperate search for her abducted boyfriend draws her into the infamous Colonia Dignidad, a sect nobody ever escaped from.",2015-06-24,2.4906,7.3,1920 +2285,19067,The Duellists,"In 1800, as Napoleon Bonaparte rises to power in France, a rivalry erupts between Armand and Gabriel, two lieutenants in the French Army, over a perceived insult. For over a decade, they engage in a series of duels amidst larger conflicts, including the failed French invasion of Russia in 1812, and shifts in the political and social systems of Europe.",1977-08-31,1.9744,7.3,580 +2286,10559,Frequency,"When a rare phenomenon gives police officer John Sullivan the chance to speak to his father, 30 years in the past, he takes the opportunity to prevent his dad's tragic death. After his actions inadvertently give rise to a series of brutal murders he and his father must find a way to fix the consequences of altering time.",2000-04-28,5.0724,7.253,1869 +2287,451,Leaving Las Vegas,"Ben Sanderson, an alcoholic Hollywood screenwriter who lost everything because of his drinking, arrives in Las Vegas to drink himself to death. There, he meets and forms an uneasy friendship and non-interference pact with prostitute Sera.",1995-10-27,3.7276,7.3,1523 +2288,617126,The Fantastic 4: First Steps,"Against the vibrant backdrop of a 1960s-inspired, retro-futuristic world, Marvel's First Family is forced to balance their roles as heroes with the strength of their family bond, while defending Earth from a ravenous space god called Galactus and his enigmatic Herald, Silver Surfer.",2025-07-23,180.5792,7.253,929 +2289,403450,At War for Love,"It's 1943 and World War II is raging in Europe. In New York, Arturo and Flora the daughter of a restaurant owner are in love, but she is promised in marriage to the son of a Mafia boss. There is a way around this, but to be able to marry Flora, Arturo needs to get permission from her father, who lives in a village in Sicily. Arturo doesn't have any money, so the only way he can get to Sicily is to enlist in the U.S. Army, which is preparing for a landing on the island.",2016-10-27,1.1065,7.3,512 +2290,335360,My Little Pony: The Movie,"A new dark force threatens Ponyville, and the Mane 6 – Twilight Sparkle, Applejack, Rainbow Dash, Pinkie Pie, Fluttershy and Rarity – embark on an unforgettable journey beyond Equestria where they meet new friends and exciting challenges on a quest to use the magic of friendship and save their home.",2017-10-05,3.5852,7.252,398 +2291,76543,Tyrannosaur,"The story of Joseph, a man plagued by violence and a rage that is driving him to self-destruction. As Joseph's life spirals into turmoil a chance of redemption appears in the form of Hannah, a Christian charity shop worker. Their relationship develops to reveal that Hannah is hiding a secret of her own with devastating results on both of their lives.",2011-10-07,1.1117,7.3,471 +2292,912908,Strays,"When Reggie is abandoned on the mean city streets by his lowlife owner, Doug, Reggie is certain that his beloved owner would never leave him on purpose. But once Reggie falls in with Bug, a fast-talking, foul-mouthed stray who loves his freedom and believes that owners are for suckers, Reggie finally realizes he was in a toxic relationship and begins to see Doug for the heartless sleazeball that he is.",2023-08-17,3.3811,7.251,917 +2293,583689,Moxie,"Inspired by her mom's rebellious past and a confident new friend, a shy 16-year-old publishes an anonymous zine calling out sexism at her school.",2021-03-03,2.0754,7.3,822 +2294,323677,Race,"Based on the story of Jesse Owens, the athlete whose quest to become the greatest track and field athlete in history thrusts him onto the world stage of the 1936 Olympics, where he faces off against Adolf Hitler's vision of Aryan supremacy.",2016-02-19,2.2641,7.251,1569 +2295,44874,Barbie: A Fashion Fairytale,"Join Barbie in a colourful, modern-day fairytale filled with fashion, friends and fun! Barbie and her dog Sequin jet off to visit her Aunt's amazing fashion house in Paris, and much to her surprise it's about to be shut down forever. After she discovers three enchanting Flairies with sparkle-magic powers, Barbie comes up with a brilliant idea to save the business. She even inspires Alice, a shy fashion designer, and together they create a dazzling runway fashion show. Barbie shows that magic happens when you believe in yourself.",2010-09-14,3.9996,7.3,770 +2296,37724,Skyfall,"When Bond's latest assignment goes gravely wrong, agents around the world are exposed and MI6 headquarters is attacked. While M faces challenges to her authority and position from Gareth Mallory, the new Chairman of the Intelligence and Security Committee, it's up to Bond, aided only by field agent Eve, to locate the mastermind behind the attack.",2012-10-24,7.9078,7.251,15539 +2297,19666,Lagaan: Once Upon a Time in India,"In 1890s India, an arrogant British commander challenges the harshly taxed residents of Champaner to a high-stakes cricket match.",2001-06-15,1.2631,7.251,595 +2298,250480,The Many Adventures of Winnie the Pooh,"Whether we’re young or forever young at heart, the Hundred Acre Wood calls to that place in each of us that still believes in magic. Join pals Pooh, Piglet, Kanga, Roo, Owl, Rabbit, Tigger and Christopher Robin as they enjoy their days together and sing their way through adventures.",1977-03-11,2.3292,7.2,1092 +2299,45958,Biutiful,"This is a story of a man in free fall. On the road to redemption, darkness lights his way. Connected with the afterlife, Uxbal is a tragic hero and father of two who's sensing the danger of death. He struggles with a tainted reality and a fate that works against him in order to forgive, for love, and forever.",2010-10-20,1.6173,7.25,1138 +2300,20352,Despicable Me,"Villainous Gru lives up to his reputation as a despicable, deplorable and downright unlikable guy when he hatches a plan to steal the moon from the sky. But he has a tough time staying on task after three orphans land in his care.",2010-07-08,11.9072,7.25,15511 +2301,10501,The Road to El Dorado,"Stowing away after a failed con, a pair of swindlers end up on El Dorado, the fabled ""city of gold"", where they quickly get in over their heads when they are mistaken as gods by the inhabitants.",2000-03-31,5.0267,7.25,3873 +2302,465136,Every Day,"16-year old Rhiannon falls in love with a mysterious spirit named “A” that inhabits a different body every day. Feeling an unmatched connection, Rhiannon and “A” work each day to find each other, not knowing what the next day will bring.",2018-02-22,3.691,7.249,2257 +2303,317557,Queen of Katwe,A young girl overcomes her disadvantaged upbringing in the slums of Uganda to become a Chess master.,2016-09-23,2.4244,7.249,441 +2304,21450,Naked,An unemployed Brit vents his rage on unsuspecting strangers as he embarks on a nocturnal London odyssey.,1993-08-06,2.3695,7.2,607 +2305,330457,Frozen II,"Elsa, Anna, Kristoff and Olaf head far into the forest to learn the truth about an ancient mystery of their kingdom.",2019-11-20,12.8725,7.247,9986 +2306,75624,Naruto Shippuden the Movie: Blood Prison,"After his capture for attempted assassination of the Raikage, leader of Kumogakure, as well as killing Jōnin from Kirigakure and Iwagakure, Naruto is imprisoned in Hōzukijou: A criminal containment facility known as the Blood Prison. Mui, the castle master, uses the ultimate imprisonment technique to steal power from the prisoners, which is when Naruto notices his life has been targeted. Thus begins the battle to uncover the truth behind the mysterious murders and prove Naruto's innocence.",2011-07-30,3.7379,7.248,677 +2307,11072,Blazing Saddles,"A town—where everyone seems to be named Johnson—stands in the way of the railroad. In order to grab their land, robber baron Hedley Lamarr sends his henchmen to make life in the town unbearable. After the sheriff is killed, the town demands a new sheriff from the Governor, so Hedley convinces him to send the town the first black sheriff in the west.",1974-02-07,3.843,7.2,1964 +2308,10360,Hunger,"The story of Bobby Sands, the IRA member who led the 1981 hunger strike during The Troubles in which Irish Republican prisoners tried to win political status.",2008-05-15,1.9946,7.2,1145 +2309,4588,"Lust, Caution","During World War II, a secret agent must seduce and assassinate an official who works for the Japanese puppet government in Shanghai.",2007-09-24,5.3964,7.2,736 +2310,902,The City of Lost Children,"A scientist in a surrealist society kidnaps children to steal their dreams, hoping that they slow his aging process.",1995-05-17,2.3967,7.248,1145 +2311,436343,On Body and Soul,"Two introverted people find out by pure chance that they share the same dream every night. They are puzzled, incredulous, a bit frightened. As they hesitantly accept this strange coincidence, they try to recreate in broad daylight what happens in their dream.",2017-03-02,1.4229,7.247,567 +2312,413279,Team Thor,Discover what Thor was up to during the events of Captain America: Civil War.,2016-08-28,1.134,7.247,552 +2313,109445,Frozen,"Young princess Anna of Arendelle dreams about finding true love at her sister Elsa’s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She's accompanied by ice delivery man Kristoff, his reindeer Sven, and snowman Olaf. On an adventure where she will find out what friendship, courage, family, and true love really means.",2013-11-20,16.4559,7.247,16997 +2314,69735,Batman: Year One,A wealthy playboy named Bruce Wayne and a Chicago cop named Jim Gordon both return to Gotham City where their lives unexpectedly intersect.,2011-09-27,2.6961,7.247,1001 +2315,64956,Inception: The Cobol Job,"This ""Inception"" prequel unfolds courtesy of a beautiful Motion Comic, and explains how Cobb, Arthur and Nash were enlisted by Cobol Engineering.",2010-12-07,1.7199,7.2,306 +2316,17687,The Public Enemy,"Two young Chicago hoodlums, Tom Powers and Matt Doyle, rise up from their poverty-stricken slum life to become petty thieves, bootleggers and cold-blooded killers. But with street notoriety and newfound wealth, the duo feels the heat from the cops and rival gangsters both. Despite his ruthless criminal reputation, Tom tries to remain connected to his family, however, gang warfare and the need for revenge eventually pull him away.",1931-04-23,1.9912,7.247,365 +2317,14047,The Great Debaters,The true story of a brilliant but politically radical debate team coach who uses the power of words to transform a group of underdog African-American college students into a historical powerhouse that took on the Harvard elite.,2007-12-25,1.3393,7.247,655 +2318,744857,When Evil Lurks,"Residents of a small rural town discover that a demon is about to be born among them. They desperately try to escape before the evil is born, but it may be too late.",2023-10-05,5.2828,7.246,1193 +2319,298582,Full Out,"Based on the true life story of California gymnast Ariana Berlin. As she zoned in on her Olympic goals, 14 year old Ariana Berlin's life took a sharp turn when she was involved in a debilitating car accident. Gaining her confidence and movement back through learning hip hop dance, she unexpectedly found herself called back to the gymnastics world thanks to world renowned UCLA Coach Valorie Kondos Field. With Val's help, Ariana was eventually able to secure a spot on the UCLA gymnastics team and win an NCAA championship, a lifelong goal that she had always dreamed of. This is a wonderfully inspiring story of persistence, confidence, and the heart and courage to make a somewhat impossible comeback in life.",2015-09-11,1.5411,7.246,343 +2320,4710,Masculin Féminin,"Paul, a young idealist trying to figure out what he wants to do with his life, takes a job interviewing people for a marketing research firm. He moves in with aspiring pop singer Madeleine. Paul, however, is disillusioned by the growing commercialism in society, while Madeleine just wants to be successful. The story is told in a series of 15 unrelated vignettes.",1966-03-22,2.2137,7.2,398 +2321,2609,"Planes, Trains and Automobiles","An irritable marketing executive, Neal Page, is heading home to Chicago for Thanksgiving when a number of delays force him to travel with a well meaning but overbearing shower curtain ring salesman, Del Griffith.",1987-11-26,2.7364,7.244,2040 +2322,1850,Man on the Moon,"The story of the life and career of eccentric avant-garde comedian, Andy Kaufman.",1999-12-22,1.5734,7.246,1859 +2323,417678,"Everything, Everything","A teenager who's lived a sheltered life because she's allergic to everything, falls for the boy who moves in next door.",2017-05-18,3.0009,7.245,3706 +2324,211387,Marvel One-Shot: Agent Carter,"The film takes place one year after the events of Captain America: The First Avenger, in which Agent Carter, a member of the Strategic Scientific Reserve, is in search of the mysterious Zodiac.",2013-10-04,1.8769,7.245,815 +2325,121875,In the House,"A sixteen-year-old boy insinuates himself into the house of a fellow student from his literature class and writes about it in essays for his French teacher. Faced with this gifted and unusual pupil, the teacher rediscovers his enthusiasm for his work, but the boy’s intrusion will unleash a series of uncontrollable events.",2012-09-26,1.9205,7.2,871 +2326,19120,Juliet of the Spirits,"Middle-aged Giulietta grows suspicious of her husband, Giorgio, when his behavior grows increasingly questionable. One night when Giorgio initiates a seance amongst his friends, Giulietta gets in touch with spirits and learns more about herself and her painful past. Slightly skeptical, but intrigued, she visits a mystic who gives her more information -- and nudges her toward the realization that her husband is indeed a philanderer.",1965-10-22,1.1991,7.2,321 +2327,949423,Pearl,"Trapped on her family’s isolated farm, Pearl must tend to her ailing father under the bitter and overbearing watch of her devout mother. Lusting for a glamorous life like she’s seen in the movies, Pearl’s ambitions, temptations, and repressions collide.",2022-09-16,6.7972,7.245,2274 +2328,112949,Safe Haven,"A young woman with a mysterious past lands in Southport, North Carolina where her bond with a widower forces her to confront the dark secret that haunts her.",2013-02-07,2.0574,7.244,2352 +2329,34134,Barbie in A Mermaid Tale,"Barbie stars as Merliah, a surfer who learns a shocking secret: she's a mermaid! She and her dolphin friend set out for an undersea adventure to rescue her mother, the queen of Oceana.",2010-01-25,3.7884,7.244,788 +2330,399579,Alita: Battle Angel,"When Alita awakens with no memory of who she is in a future world she does not recognize, she is taken in by Ido, a compassionate doctor who realizes that somewhere in this abandoned cyborg shell is the heart and soul of a young woman with an extraordinary past.",2019-01-31,9.629,7.243,9530 +2331,197082,Venus in Fur,An enigmatic actress may have a hidden agenda when she auditions for a part in a misogynistic writer's play.,2013-05-28,1.8121,7.2,710 +2332,246,Zatoichi,"Blind traveler Zatoichi is a master swordsman and a masseur with a fondness for gambling on dice games. When he arrives in a village torn apart by warring gangs, he sets out to protect the townspeople.",2003-09-06,1.9499,7.243,891 +2333,399055,The Shape of Water,"An other-worldly story, set against the backdrop of Cold War era America circa 1962, where a mute janitor working at a lab falls in love with an amphibious man being held captive there and devises a plan to help him escape.",2017-12-01,6.2667,7.2,12417 +2334,70670,Headhunters,An accomplished headhunter risks everything to obtain a valuable painting owned by a former mercenary.,2011-08-26,1.7645,7.242,1283 +2335,11816,On Golden Pond,"For Norman and Ethel Thayer, this summer on golden pond is filled with conflict and resolution. When their daughter Chelsea arrives, the family is forced to renew the bonds of love and overcome the generational friction that has existed for years.",1981-12-04,1.7215,7.242,482 +2336,3086,The Lady Eve,"It's no accident when wealthy Charles falls for Jean. Jean is a con artist with her sights set on Charles' fortune. Matters complicate when Jean starts falling for her mark. When Charles suspects Jean is a gold digger, he dumps her. Jean, fixated on revenge and still pining for the millionaire, devises a plan to get back in Charles' life. With love and payback on her mind, she re-introduces herself to Charles, this time as an aristocrat named Lady Eve Sidwich.",1941-02-25,1.8168,7.242,365 +2337,1725,West Side Story,"In the slums of the upper West Side of Manhattan, tensions are high as a gang of Polish-Americans compete against a gang of recently immigrated Puerto Ricans, but this doesn't stop two romantics from each gang falling in love.",1961-12-13,2.8957,7.2,1948 +2338,830,Forbidden Planet,"Starship C57D travels to planet Altair 4 in search of the crew of spaceship ""Bellerophon,"" a scientific expedition that has been missing for twenty years. They find themselves unwelcome by the expedition's lone survivor and warned of destruction by an invisible force if they don't turn back immediately.",1956-03-23,3.8746,7.242,979 +2339,546121,Run,"Chloe, a teenager who is confined to a wheelchair, is homeschooled by her mother, Diane. Chloe soon becomes suspicious of her mother and begins to suspect that she may be harboring a dark secret.",2020-11-20,3.2013,7.241,2692 +2340,51497,Fast Five,"Former cop Brian O'Conner partners with ex-con Dom Toretto on the opposite side of the law. Since Brian and Mia Toretto broke Dom out of custody, they've blown across many borders to elude authorities. Now backed into a corner in Rio de Janeiro, they must pull one last job in order to gain their freedom.",2011-04-20,1.9338,7.241,8460 +2341,11368,Blood Simple,"The owner of a seedy small-town Texas bar discovers that one of his employees is having an affair with his wife. A chaotic chain of misunderstandings, lies and mischief ensues after he devises a plot to have them murdered.",1984-03-26,2.3017,7.241,1507 +2342,209274,Ida,"In 1960s Poland, young novitiate Anna is on the verge of taking her vows when she discovers a family secret dating back to the years of the German occupation.",2013-10-25,1.5078,7.24,1007 +2343,72570,The Vow,"Happy young married couple Paige and Leo are, well, happy. Then a car accident puts Paige into a life-threatening coma. Upon awakening she has lost the previous five years of memories, including those of her beloved Leo, her wedding, a confusing relationship with her parents, or the ending of her relationship with her ex-fiance. Despite these complications, Leo endeavors to win her heart again and rebuild their marriage.",2012-02-05,3.9457,7.24,4129 +2344,11035,Roma,"A virtually plotless, gaudy, impressionistic portrait of Rome through the eyes of one of its most famous citizens.",1972-03-16,1.0084,7.2,337 +2345,8844,Jumanji,"When siblings Judy and Peter discover an enchanted board game that opens the door to a magical world, they unwittingly invite Alan -- an adult who's been trapped inside the game for 26 years -- into their living room. Alan's only hope for freedom is to finish the game, which proves risky as all three find themselves running from giant rhinoceroses, evil monkeys and other terrifying creatures.",1995-12-15,2.6318,7.2,10853 +2346,425373,The Miracle Season,"After the tragic death of star volleyball player Caroline ""Line"" Found, a team of dispirited high school girls must band together under the guidance of their tough-love coach in hopes of winning the state championship!",2018-04-13,1.5654,7.2,312 +2347,392982,Marshall,"Thurgood Marshall, the first African-American Supreme Court Justice, battles through one of his career-defining cases.",2017-10-13,1.6751,7.239,637 +2348,375315,The Salesman,"Forced out of their apartment due to dangerous works on a neighboring building, Emad and Rana move into a new flat in the center of Tehran. An incident linked to the previous tenant will dramatically change the young couple’s life.",2016-06-24,1.4661,7.239,893 +2349,152780,The Past,"After four years apart, Ahmad returns to his wife Marie in Paris in order to progress their divorce. During his brief stay, he cannot help noticing the strained relationship between Marie and her daughter Lucie. As he attempts to improve matters between mother and daughter Ahmad unwittingly lifts the lid on a long buried secret...",2013-05-17,0.9801,7.239,574 +2350,113082,Berserk: The Golden Age Arc I - The Egg of the King,"Guts, an immensely strong sword-for-hire, has little direction in his life, simply fighting one battle after the next. However, this all changes suddenly when he meets and is bested by Griffith, a beautiful and charismatic young man who leads the Band of the Hawk mercenary army. After Guts joins the Band and the relationship between the two men begins to blossom, Casca, the tough, lone swordswoman in the Band of the Hawk, struggles to accept Guts and the influence he has on the world around her. While the two men begin to fight together, Griffith continues to rise to power, all seemingly in order to reach his mysterious, prophesied goals. What lengths will Guts and Griffith go to in order to reach these goals, and where will fate take the two men?",2012-02-04,2.6576,7.239,506 +2351,11177,Mask,A boy with a massive facial skull deformity and his biker gang mother attempt to live as normal a life as possible under the circumstances.,1985-03-08,2.0241,7.239,465 +2352,948713,The Last Kingdom: Seven Kings Must Die,"In the wake of King Edward's death, Uhtred of Bebbanburg and his comrades adventure across a fractured kingdom in the hopes of uniting England at last.",2023-04-14,4.3435,7.238,738 +2353,67884,Chinese Take-Away,A comedy that chronicles a chance encounter between Robert and a Chinese named Jun who wanders lost through the city of Buenos Aires in search of his uncle after being assaulted by a taxi driver and his henchmen.,2011-03-24,0.8558,7.238,418 +2354,12622,Violent Cop,A detective breaks all rules of ethical conduct while investigating a colleague’s involvement in drug pushing and Yakuza activities.,1989-08-12,1.4817,7.238,389 +2355,170,28 Days Later,"Twenty-eight days after a killer virus was accidentally unleashed from a British research facility, a small group of London survivors are caught in a desperate struggle to protect themselves from the infected. Carried by animals and humans, the virus turns those it infects into homicidal maniacs -- and it's absolutely impossible to contain.",2002-10-31,28.6417,7.237,7676 +2356,346364,It,"In a small town in Maine, seven children known as The Losers Club come face to face with life problems, bullies and a monster that takes the shape of a clown called Pennywise.",2017-09-06,14.2606,7.237,19478 +2357,10139,Milk,"The true story of Harvey Milk, the first openly gay man ever elected to public office. In San Francisco in the late 1970s, Harvey Milk becomes an activist for gay rights and inspires others to join him in his fight for equal rights that should be available to all Americans.",2008-11-05,2.859,7.237,2282 +2358,129112,Wadjda,An enterprising Saudi girl signs on for her school's Quran recitation competition as a way to raise the remaining funds she needs in order to buy the green bicycle that has captured her interest.,2012-08-31,1.0052,7.236,494 +2359,35690,The Last Song,"A drama centered on a rebellious girl who is sent to a Southern beach town for the summer to stay with her father. Through their mutual love of music, the estranged duo learn to reconnect.",2010-03-31,2.1115,7.2,3329 +2360,9609,Of Mice and Men,"Two drifters, one a gentle but slow giant, try to make money working the fields during the Depression so they can fulfill their dreams.",1992-09-16,2.4325,7.236,674 +2361,5902,A Bridge Too Far,The story of Operation Market Garden—a failed attempt by the allies in the latter stages of WWII to end the war quickly by securing three bridges in Holland allowing access over the Rhine into Germany. A combination of poor allied intelligence and the presence of two crack German panzer divisions meant that the final part of this operation (the bridge in Arnhem over the Rhine) was doomed to failure.,1977-06-15,3.9535,7.236,857 +2362,923939,The Wonderful Story of Henry Sugar,A rich man learns about a guru who can see without using his eyes. He sets out to master the skill in order to cheat at gambling.,2023-09-20,2.9877,7.235,1170 +2363,296098,Bridge of Spies,"During the Cold War, the Soviet Union captures U.S. pilot Francis Gary Powers after shooting down his U-2 spy plane. Sentenced to 10 years in prison, Powers' only hope is New York lawyer James Donovan, recruited by a CIA operative to negotiate his release. Donovan boards a plane to Berlin, hoping to win the young man's freedom through a prisoner exchange. If all goes well, the Russians would get Rudolf Abel, the convicted spy who Donovan defended in court.",2015-10-15,4.0951,7.235,6988 +2364,33954,The Hawks and the Sparrows,A man and his son take an allegorical stroll through life with a talking bird that spouts social and political philosophy.,1966-05-04,1.0013,7.226,354 +2365,25205,The Concert,"A former world-famous conductor of the Bolshoï orchestra, known as ""The Maëstro"", Andreï Filipov had seen his career publicly broken by Leonid Brezhnev for hiring Jewish musicians and now works cleaning the concert hall where he once directed. One day, he intercepts an official invitation from the prestigious Théâtre du Châtelet. Through a series of mad antics, he reunites his old orchestra, now composed of old alcoholic musicians, and flies to perform in Paris and complete the Tchaikovsky concerto interrupted 30 years earlier. For the concerto, he engages a young violin soloist with whom he has an unexpected connection.",2009-11-04,1.1903,7.235,511 +2366,15152,"OSS 117: Cairo, Nest of Spies","Set in 1955, French secret agent Hubert Bonisseur de La Bath/OSS 117 is sent to Cairo to investigate the disappearance of his best friend and fellow spy Jack Jefferson, only to stumble into a web of international intrigue.",2006-04-19,2.5384,7.235,1787 +2367,8424,Love Me If You Dare,"As adults, best friends Julien and Sophie continue the odd game they started as children -- a fearless competition to outdo one another with daring and outrageous stunts. While they often act out to relieve one another's pain, their game might be a way to avoid the fact that they are truly meant for one another.",2003-09-17,1.9761,7.2,1820 +2368,820446,Downton Abbey: A New Era,"The Crawley family goes on a grand journey to the south of France to uncover the mystery of the dowager countess's newly inherited villa. Meanwhile, a Hollywood director seeks to film his latest production at Downton.",2022-04-27,3.0208,7.234,531 +2369,41201,The Illusionist,A French illusionist travels to Scotland to work. He meets a young woman in a small village. Their ensuing adventure in Edinburgh changes both their lives forever.,2010-06-16,1.0069,7.234,635 +2370,6537,The Orphanage,"A woman brings her family back to her childhood home, which used to be an orphanage, intent on reopening it. Before long, her son starts to communicate with a new invisible friend.",2007-05-20,3.492,7.232,2962 +2371,268,Batman,"Batman must face his most ruthless nemesis when a deformed madman calling himself ""The Joker"" seizes control of Gotham's criminal underworld.",1989-06-21,8.3079,7.234,8150 +2372,778730,Crazy About Her,"After a magical night together, Adri voluntarily turns himself into the psychiatric institution where Carla lives.",2021-02-26,1.2023,7.233,467 +2373,198277,Begin Again,"Gretta, a budding songwriter, finds herself alone after her boyfriend Dave ditches her. Her life gains purpose when Dan, a record label executive, notices her talent.",2014-07-03,2.8511,7.233,3854 +2374,25846,Baaria,"Giuseppe Tornatore traces three generations of a Sicilian family in in the Sicilian town of Bagheria (known as Baarìa in the local Sicilian dialect), from the 1930s to the 1980s, to tell the story of the loves, dreams and delusions of an unusual community.",2009-09-25,1.4318,7.233,645 +2375,846214,"The Good, the Bart, and the Loki",Loki is banished from Asgard once again and must face his toughest opponents yet: the Simpsons and Springfield’s mightiest heroes. The God of Mischief teams up with Bart Simpson in the ultimate crossover event paying tribute to the Marvel Cinematic Universe of superheroes and villains.,2021-07-07,1.5306,7.232,678 +2376,10795,Tell No One,"A man receives a mysterious e-mail appearing to be from his wife, who was murdered years earlier. As he frantically tries to find out whether she's alive, he finds himself being implicated in her death.",2006-11-01,2.1252,7.232,1444 +2377,1716,The Last Metro,"In occupied Paris, an actress married to a Jewish theater owner must keep him hidden from the Nazis while doing both of their jobs.",1980-09-17,1.6514,7.232,498 +2378,403,Driving Miss Daisy,"The story of an old Jewish widow named Daisy Werthan and her relationship with her black chauffeur, Hoke. From an initial mere work relationship grew in 25 years a strong friendship between the two very different characters, in a time when those types of relationships were shunned.",1989-12-13,2.2016,7.232,1655 +2379,998022,The Teachers' Lounge,"When one of her students is suspected of theft, teacher Carla Nowak decides to get to the bottom of the matter. Caught between her ideals and the school system, the consequences of her actions threaten to break her.",2023-05-04,2.4764,7.231,592 +2380,9078,The Sword in the Stone,"Wart is a young boy who aspires to be a knight's squire. On a hunting trip he falls in on Merlin, a powerful but amnesiac wizard who has plans for him beyond mere squiredom. He starts by trying to give him an education, believing that once one has an education, one can go anywhere. Needless to say, it doesn't quite work out that way.",1963-12-25,5.9886,7.231,3938 +2381,256962,Little Boy,An eight-year-old boy is willing to do whatever it takes to end World War II so he can bring his father home. The story reveals the indescribable love a father has for his little boy and the love a son has for his father.,2015-04-23,1.5713,7.23,539 +2382,1538,Collateral,Cab driver Max picks up a man who offers him $600 to drive him around. But the promise of easy money sours when Max realizes his fare is an assassin.,2004-08-04,6.8505,7.23,5870 +2383,807196,Boiling Point,A head chef balances multiple personal and professional crises at a popular restaurant in London.,2021-07-05,2.0288,7.229,639 +2384,14168,3:10 to Yuma,"Dan Evans, a small time farmer, is hired to escort Ben Wade, a dangerous outlaw, to Yuma. As Evans and Wade wait for the 3:10 train to Yuma, Wade's gang is racing to free him.",1957-08-07,1.9387,7.2,384 +2385,1072371,Jules,"A flying saucer lands in the backyard of an elderly suburbanite with memory problems, who forms a bond with the scared alien inside.",2023-08-10,2.3224,7.228,320 +2386,9267,And Now for Something Completely Different,A collection of Monty Python's Flying Circus skits from the first two seasons of their British TV series.,1971-09-28,1.0479,7.2,546 +2387,5825,National Lampoon's Christmas Vacation,"It's Christmastime, and the Griswolds are preparing for a family seasonal celebration. But things never run smoothly for Clark, his wife Ellen, and their two kids. Clark's continual bad luck is worsened by his obnoxious family guests, but he manages to keep going, knowing that his Christmas bonus is due soon.",1989-11-30,3.8259,7.228,2517 +2388,1621,Trading Places,A snobbish investor and a wily street con-artist find their positions reversed as part of a bet by two callous millionaires.,1983-06-07,6.2015,7.228,3428 +2389,251,Ghost,"After a young man is murdered, his spirit stays behind to warn his lover of impending danger, with the help of a reluctant psychic.",1990-07-13,7.4849,7.2,5755 +2390,370964,I Am Dragon,"In the midst of the wedding princess Miroslava is kidnapped by a dragon and carried away into his castle on the remote island. Mira left everything behind in the past - family, friends and groom. Now the only things she had were a stone cage and a mysterious young man named Arman ... but who is he and what is he doing on that island? Miroslava will know the truth too late: loving a dragon will reveal the bitter truth - love is scary.",2015-12-03,2.5716,7.2,389 +2391,11176,The Muppet Movie,"The Muppets gather to watch their newly-finished big-budget rich-and-famous feature film: a talent agent persuades Kermit the Frog to leave the swamp to pursue a career in Hollywood. On his way there, he meets a bear, a pig, a whatever (his future muppet crew), and some special celebrity guest stars, while being chased by the desperate owner of a frog-leg restaurant!",1979-06-22,1.8719,7.2,649 +2392,837881,She Said,New York Times reporters Megan Twohey and Jodi Kantor break one of the most important stories in a generation — a story that helped launch the #MeToo movement and shattered decades of silence around the subject of sexual assault in Hollywood.,2022-11-17,2.382,7.226,646 +2393,364689,Ferdinand,"Ferdinand, a little bull, prefers sitting quietly under a cork tree just smelling the flowers versus jumping around, snorting, and butting heads with other bulls. As Ferdinand grows big and strong, his temperament remains mellow, but one day five men come to choose the ""biggest, fastest, roughest bull"" for the bullfights in Madrid and Ferdinand is mistakenly chosen. Based on the classic 1936 children's book by Munro Leaf.",2017-12-09,6.8268,7.226,2951 +2394,336845,Cleveland Abduction,"A single mother becomes Ariel Castro's first kidnapping victim, and finds herself trapped in his home with two other women for 11 years.",2015-05-02,1.4929,7.226,399 +2395,324849,The Lego Batman Movie,"A cooler-than-ever Bruce Wayne must deal with the usual suspects as they plan to rule Gotham City, while discovering that he has accidentally adopted a teenage orphan who wishes to become his sidekick.",2017-02-08,6.3218,7.2,5168 +2396,18947,The Boat That Rocked,"An ensemble comedy, where the romance is between the young people of the 60s, and pop music. It's about a band of DJs that captivate Britain, playing the music that defines a generation and standing up to a government that wanted control of popular culture via the British Broadcasting Corporation. Loosely based on the events in Britain in the 60's when the Labour government of Harold Wilson, wanted to bring the pirate radio stations under control, enough to see the passage of the Marine Broadcasting Offences Act on 15 August 1967. Also known as ""Pirate Radio"".",2009-04-01,2.6778,7.226,2174 +2397,11051,The Last Temptation of Christ,"Jesus, a humble Judean carpenter beginning to see that he is the son of God, is drawn into revolutionary action against the Roman occupiers by Judas -- despite his protestations that love, not violence, is the path to salvation. The burden of being the savior of mankind torments Jesus throughout his life, leading him to doubt.",1988-05-28,3.5205,7.2,1117 +2398,73624,The Man from the Future,"Zero is a brilliant scientist. However, 20 years ago, he was publicly humiliated when he lost Helena, the love of his life. One day, an accidental experience with one of his inventions causes him to travel back in time to 1991. Having taken the opportunity to change history, Zero returns to own time to find totally changed.",2011-09-02,1.2111,7.225,365 +2399,374205,One Piece Film: GOLD,"The glittering Gran Tesoro, a city of entertainment beyond the laws of the government, is a sanctuary for the world’s most infamous pirates, Marines, and filthy rich millionaires. Drawn by dreams of hitting the jackpot, Captain Luffy and his crew sail straight for the gold. But behind the gilded curtains lies a powerful king whose deep pockets and deeper ambitions spell disaster for the Straw Hats and the New World alike.",2016-07-23,3.3995,7.2,504 +2400,348657,Woman at War,Halla declares a one-woman-war on the local aluminium industry. She is prepared to risk everything to protect the pristine Icelandic Highlands she loves… Until an orphan unexpectedly enters her life.,2018-05-22,1.2777,7.224,418 +2401,21641,The Damned United,"Taking over Leeds United, Brian Clough's abrasive approach and his clear dislike of the players' dirty style of play make it certain there is going to be friction. Glimpses of his earlier career help explain both his hostility to previous manager Don Revie and how much he is missing right-hand man Peter Taylor.",2009-03-27,1.5065,7.224,658 +2402,9400,Set It Off,"Four inner-city Black women, determined to end their constant struggle, decide to live by one rule — get what you want or die trying. So the four women take back their lives and take out some banks in the process.",1996-11-06,1.8325,7.224,368 +2403,549053,Last Christmas,"Kate is a young woman who has a habit of making bad decisions, and her last date with disaster occurs after she accepts work as Santa's elf for a department store. However, after she meets Tom there, her life takes a new turn.",2019-11-07,3.047,7.223,2473 +2404,257211,The Intern,"70-year-old widower Ben Whittaker has discovered that retirement isn't all it's cracked up to be. Seizing an opportunity to get back in the game, he becomes a senior intern at an online fashion site, founded and run by Jules Ostin.",2015-09-23,9.5834,7.223,6956 +2405,168259,Furious 7,Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.,2015-04-01,14.5999,7.223,10894 +2406,20367,Detour,"The life of Al Roberts, a pianist in a New York nightclub, turns into a nightmare when he decides to hitchhike to Los Angeles to visit his girlfriend.",1945-11-30,1.9299,7.223,377 +2407,3019,Dr. Jekyll and Mr. Hyde,"Dr. Henry Jekyll believes that there are two distinct sides to men - a good and an evil side. He believes that by separating the two, man can become liberated. He succeeds in his experiments with chemicals to accomplish this and transforms into Hyde to commit horrendous crimes. When he discontinues use of the drug, it is already too late.",1931-12-24,1.3202,7.2,309 +2408,844,2046,Women enter and exit a science fiction author's life over the course of a few years after the author loses the woman he considers his one true love.,2004-10-29,2.1977,7.223,969 +2409,811634,The Monkey King: Reborn,"When the irritable monkey king visits a temple together with his master Tang Monk, he feels offended because of a trifle and thereupon accidentally destroys a magic tree growing on the sacred ground. This brings an ancient demon king back to life, who promptly kidnaps Tang Monk to take revenge for his long imprisonment. The monkey king and his followers have only three days to not only save their master but also to prevent the demon king from regaining his full powers and destroying the world…",2021-04-02,3.1248,7.2,334 +2410,79707,Children Who Chase Lost Voices,"The film centers on Asuna, a young girl who spends her solitary days listening to the mysterious music emanating from the crystal radio she received from her late father as a memento. One day while walking home she is attacked by a fearsome monster and saved mysterious boy named Shun. However, Shun disappears and Asuna embarks on a journey of adventure to the land of Agartha with her teacher Mr. Morisaki to meet a Shun again. Through her journey she comes to know the cruelty and beauty of the world, as well as loss.",2011-05-07,3.6553,7.222,735 +2411,75258,Secret of the Wings,Tinkerbell wanders into the forbidden Winter woods and meets Periwinkle. Together they learn the secret of their wings and try to unite the warm fairies and the winter fairies to help Pixie Hollow.,2012-08-17,5.7771,7.222,1313 +2412,26842,The Message,"In sixth-century Mecca, Prophet Muhammad receives his first revelation from God as a messenger. Three years later, he's not alone in his quest and publicly declares his prophecy. Muhammad is fought by Abu Sufian and his wife Hind, rulers of Mecca. Muhammad's followers are hunted and tortured but he continues his calling.",1976-03-09,1.8378,7.222,369 +2413,20246,The Stranger,"An investigator from the War Crimes Commission travels to Connecticut to find an infamous Nazi, who may be hiding out in a small town in the guise of a distinguished professor engaged to the Supreme Court Justice’s daughter.",1946-07-02,1.9196,7.222,600 +2414,19597,The Hedgehog,"Paloma is a serious and highly articulate but deeply bored 11-year-old who has decided to kill herself on her 12th birthday. Fascinated by art and philosophy, she questions and documents her life and immediate circle, drawing trenchant and often hilarious observations on the world around her. But as her appointment with death approaches, Paloma finally meets some kindred spirits in her building's grumpy janitor and an enigmatic, elegant neighbor, both of whom inspire Paloma to question her rather pessimistic outlook on life.",2009-07-01,1.8291,7.2,398 +2415,11577,Pat Garrett & Billy the Kid,Pat Garrett is hired as a lawman on behalf of a group of wealthy New Mexico cattle barons to bring down his old friend Billy the Kid.,1973-05-23,2.5747,7.222,431 +2416,5590,Donkey Skin,A fairy godmother helps a princess disguise herself so she won't have to marry her father.,1970-12-20,1.9152,7.2,530 +2417,5176,3:10 to Yuma,"In Arizona in the late 1800s, infamous outlaw Ben Wade and his vicious gang of thieves and murderers have plagued the Southern Railroad. When Wade is captured, Civil War veteran Dan Evans, struggling to survive on his drought-plagued ranch, volunteers to deliver him alive to the ""3:10 to Yuma"", a train that will take the killer to trial.",2007-09-06,4.1896,7.222,3770 +2418,1672,The Professional,"French secret service agent Josselin Beaumont is dispatched to take down African warlord N'Jala. But when his assignment is canceled, he's shocked to learn that his government is surrendering him to local authorities. He is given a mock trial and sentenced to 20 years of hard labor. But Beaumont escapes from prison and vows not only to avenge himself against his betrayers but also to finish his original assignment.",1981-10-21,2.685,7.222,556 +2419,959604,Beating Hearts,"Local rebellious teenager Clotaire falls for his schoolmate Jackie, but gang violence leads him to a darker destructive path. After years apart, the star-crossed lovers discover that every path they've taken leads them back together.",2024-10-16,4.7059,7.221,854 +2420,614696,#Alive,"As a grisly virus rampages a city, a lone man stays locked inside his apartment, digitally cut off from seeking help and desperate to find a way out.",2020-06-24,4.4125,7.221,1921 +2421,43920,Dog Pound,Three juvenile delinquents arrive at a correctional center and are put under the care of an experienced guard.,2010-04-24,1.1578,7.2,374 +2422,15906,Barbie and the Magic of Pegasus,"Princess Annika escapes the clutches of the evil wizard, explores the wonders of Cloud Kingdom, and teams up with a magnificent winged horse - who turns out to be her sister, Princess Brietta - to defeat the wizard and break the spells that imprisoned her family.",2005-10-04,3.0037,7.2,747 +2423,10086,Man Bites Dog,"The activities of rampaging, indiscriminate serial killer Ben are recorded by a willingly complicit documentary team, who eventually become his accomplices and active participants. Ben provides casual commentary on the nature of his work and arbitrary musings on topics of interest to him, such as music or the conditions of low-income housing, and even goes so far as to introduce the documentary crew to his family. But their reckless indulgences soon get the better of them.",1992-08-20,2.4914,7.221,960 +2424,2567,The Aviator,"A biopic depicting the life of filmmaker and aviation pioneer Howard Hughes from 1927 to 1947, during which time he became a successful film producer and an aviation magnate, while simultaneously growing more unstable due to severe obsessive-compulsive disorder.",2004-12-17,4.1516,7.221,5521 +2425,345920,Collateral Beauty,"Retreating from life after a tragedy, a man questions the universe by writing to Love, Time and Death. Receiving unexpected answers, he begins to see how these things interlock and how even loss can reveal moments of meaning and beauty.",2016-12-15,3.0764,7.22,5454 +2426,11287,A League of Their Own,"As America's stock of athletic young men is depleted during World War II, a professional all-female baseball league springs up in the Midwest, funded by publicity-hungry candy maker Walter Harvey. Competitive sisters Dottie Hinson and Kit Keller spar with each other, scout Ernie Capadino and grumpy has-been coach Jimmy Dugan on their way to fame.",1992-07-01,4.2654,7.22,1451 +2427,10625,Mean Girls,"Cady Heron is a hit with The Plastics, the A-list girl clique at her new school, until she makes the mistake of falling for Aaron Samuels, the ex-boyfriend of alpha Plastic Regina George.",2004-04-30,12.43,7.2,9088 +2428,850,A Christmas Story,"The comic mishaps and adventures of a young boy named Ralph, trying to convince his parents, teachers, and Santa that a Red Ryder B.B. gun really is the perfect Christmas gift for the 1940s.",1983-11-18,1.8589,7.22,1310 +2429,667538,Transformers: Rise of the Beasts,"When a new threat capable of destroying the entire planet emerges, Optimus Prime and the Autobots must team up with a powerful faction known as the Maximals. With the fate of humanity hanging in the balance, humans Noah and Elena will do whatever it takes to help the Transformers as they engage in the ultimate battle to save Earth.",2023-06-06,14.683,7.219,4984 +2430,446696,Life Itself,"As a young New York couple goes from college romance to marriage and the birth of their first child, the unexpected twists of their journey create reverberations that echo over continents and through lifetimes.",2018-09-21,1.8439,7.219,586 +2431,220289,Coherence,Four couples gather for dinner the night a mysterious and powerful comet passes overhead.,2013-09-19,5.5328,7.2,3123 +2432,23168,The Town,"Doug MacRay is a longtime thief, who, smarter than the rest of his crew, is looking for his chance to exit the game. When a bank job leads to the group kidnapping an attractive branch manager, he takes on the role of monitoring her – but their burgeoning relationship threatens to unveil the identities of Doug and his crew to the FBI Agent who is on their case.",2010-09-15,7.807,7.218,5277 +2433,8329,[REC],A television reporter and cameraman follow emergency workers into a dark apartment building and are quickly locked inside with something terrifying.,2007-11-23,5.1822,7.218,4610 +2434,1640,Crash,"In post-Sept. 11 Los Angeles, tensions erupt when the lives of a Brentwood housewife, her district attorney husband, a Persian shopkeeper, two cops, a pair of carjackers and a Korean couple converge during a 36-hour period.",2005-05-06,4.0093,7.218,3636 +2435,632617,C'mon C'mon,Johnny and his young nephew forge a tenuous but transformational relationship when they embark on a cross-country trip to see life away from Los Angeles.,2021-11-19,1.6064,7.2,718 +2436,321528,Batman vs. Robin,"Damian Wayne is having a hard time coping with his father's ""no killing"" rule. Meanwhile, Gotham is going through hell with threats such as the insane Dollmaker, and the secretive Court of Owls.",2015-04-03,2.6745,7.217,947 +2437,70160,The Hunger Games,"Every year in the ruins of what was once North America, the nation of Panem forces each of its twelve districts to send a teenage boy and girl to compete in the Hunger Games. Part twisted entertainment, part government intimidation tactic, the Hunger Games are a nationally televised event in which “Tributes” must fight with one another until one survivor remains. Pitted against highly-trained Tributes who have prepared for these Games their entire lives, Katniss is forced to rely upon her sharp instincts as well as the mentorship of drunken former victor Haymitch Abernathy. If she’s ever to return home to District 12, Katniss must make impossible choices in the arena that weigh survival against humanity and life against love. The world will be watching.",2012-03-12,7.5698,7.217,22545 +2438,10198,The Princess and the Frog,"A waitress, desperate to fulfill her dreams as a restaurant owner, is set on a journey to turn a frog prince back into a human being, but she has to face the same problem after she kisses him.",2009-12-08,13.3723,7.217,5852 +2439,4415,Les Misérables,"In 19th century France, Jean Valjean, a man imprisoned for stealing bread, must flee a relentless policeman named Javert. The pursuit consumes both men's lives, and soon Valjean finds himself in the midst of the student revolutions in France.",1998-05-01,1.9807,7.2,647 +2440,365045,Heidi,"Heidi, is an eight-year-old Swiss orphan who is given by her aunt to her mountain-dwelling grandfather. She is then stolen back by her aunt from her grandfather to live in the wealthy Sesemann household in Frankfurt, Germany as a companion to Klara, a sheltered, disabled girl in a wheelchair. Heidi is unhappy but makes the best of the situation, always longing for her grandfather.",2015-12-10,2.3092,7.216,414 +2441,16553,Little Manhattan,"Ten-year-old Gabe was just a normal kid growing up in Manhattan until Rosemary Telesco walked into his life, actually into his karate class. But before Gabe can tell Rosemary how he feels, she tells him she will not be going to public school any more. Gabe has a lot more to learn about life, love, and girls.",2005-09-26,2.3796,7.216,726 +2442,11850,Invasion of the Body Snatchers,"The residents of San Francisco are becoming drone-like shadows of their former selves, and as the phenomenon spreads, two Department of Health workers uncover the horrifying truth.",1978-12-20,3.1745,7.216,1202 +2443,11524,Thief,"Frank is an expert professional safecracker, specialized in high-profile diamond heists. He plans to use his ill-gotten income to retire from crime and build a nice life for himself complete with a home, wife and kids. To accelerate the process, he signs on with a top gangster for a big score.",1981-03-27,3.4716,7.219,754 +2444,10528,Sherlock Holmes,Eccentric consulting detective Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.,2009-12-23,7.1911,7.215,14277 +2445,1076487,Warhorse One,A gunned down Navy SEAL Master Chief must guide a child to safety through a gauntlet of hostile Taliban insurgents and survive the brutal Afghanistan wilderness.,2023-06-30,3.3889,7.2,314 +2446,970348,The Old Oak,"A pub landlord in a previously thriving mining community struggles to hold onto his pub. Meanwhile, tensions rise in the town when Syrian refugees are placed in the empty houses in the community.",2023-09-29,1.5478,7.215,356 +2447,297762,Wonder Woman,An Amazon princess comes to the world of Man in the grips of the First World War to confront the forces of evil and bring an end to human conflict.,2017-05-30,20.8088,7.215,20365 +2448,245168,Suffragette,"Based on true events about the foot soldiers of the early feminist movement, women who were forced underground to pursue a dangerous game of cat and mouse with an increasingly brutal State.",2015-10-16,2.241,7.215,1640 +2449,177677,Mission: Impossible - Rogue Nation,"Ethan and team take on their most impossible mission yet—eradicating 'The Syndicate', an International and highly-skilled rogue organization committed to destroying the IMF.",2015-07-28,9.3713,7.215,9217 +2450,10772,Django,A coffin-dragging gunslinger and a prostitute become embroiled in a bitter feud between a merciless masked clan and a band of Mexican revolutionaries.,1966-04-06,3.4761,7.215,941 +2451,874299,South Park: Post COVID,"What happened to the children who lived through the Pandemic? Stan, Kyle, Cartman and Kenny survived but will never be the same Post Covid.",2021-11-25,1.865,7.2,358 +2452,15196,Clue,"Clue finds six colorful dinner guests gathered at the mansion of their host, Mr. Boddy -- who turns up dead after his secret is exposed: He was blackmailing all of them. With the killer among them, the guests and Boddy's chatty butler must suss out the culprit before the body count rises.",1985-12-13,3.2715,7.2,1812 +2453,9820,The Parent Trap,"Hallie Parker and Annie James are identical twins who were separated at a young age due to their parents' divorce. Unbeknownst to their parents, the girls are sent to the same summer camp, where they meet, discover the truth about their relationship, and come up with a plan to switch places in an effort to reunite their mother and father.",1998-07-28,8.9636,7.214,4322 +2454,9576,Tootsie,"When struggling, out of work actor Michael Dorsey secretly adopts a female alter ego – Dorothy Michaels – in order to land a part in a daytime drama, he unwittingly becomes a feminist icon and ends up in a romantic pickle.",1982-12-17,2.2427,7.214,1826 +2455,2654,In the Mouth of Madness,An insurance investigator begins discovering the impact a horror writer's books has on his fans is more than inspirational.,1995-02-03,3.3844,7.2,1750 +2456,338189,It's Only the End of the World,"Louis, a terminally ill writer, returns home after a long absence to tell his family that he is dying.",2016-09-21,1.6323,7.213,1622 +2457,204436,Jack and the Cuckoo-Clock Heart,"In Scotland 1874, Jack is born on the coldest day ever. Because of the extreme cold, his heart stops beating. The responsible midwife in Edinburgh finds a way to save him by replacing his heart with a clock. So he lives and remains under the midwife's protective care. But he must not get angry or excited because that endangers his life by causing his clock to stop working. Worse than that, when he grows up, he has to face the fact he cannot fall in love because that too could stop his delicate heart.",2014-02-05,2.6148,7.2,736 +2458,2355,Reign Over Me,A man who lost his family in the September 11 attack on New York City runs into his old college roommate. Rekindling the friendship is the one thing that appears able to help the man recover from his grief.,2007-03-22,1.6792,7.2,1116 +2459,2055,Open Range,A former gunslinger is forced to take up arms again when he and his cattle crew are threatened by a corrupt lawman.,2003-08-11,3.1803,7.215,1136 +2460,2014,The Edge of Heaven,"The lives of six German-Turkish immigrants are drawn together by circumstance: An old man and a prostitute forging a partnership, a young scholar reconciling his past, two young women falling in love, and a mother putting the shattered pieces of her life back together.",2007-09-27,0.9655,7.213,327 +2461,607,Men in Black,"After a police chase with an otherworldly being, a New York City cop is recruited as an agent in a top-secret organization established to monitor and police alien activity on Earth: the Men in Black. Agent K and new recruit Agent J find themselves in the middle of a deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies.",1997-07-02,8.8657,7.213,14205 +2462,429200,Good Time,"After a botched bank robbery lands his younger brother in prison, Connie Nikas embarks on a twisted odyssey through New York City's underworld to get his brother Nick out of jail.",2017-08-11,2.7027,7.2,2925 +2463,306745,Freeheld,New Jersey car mechanic Stacie Andree and her police detective girlfriend Laurel Hester both battle to secure Hester's pension benefits after she was diagnosed with a terminal illness.,2015-10-02,1.803,7.212,664 +2464,152603,Only Lovers Left Alive,"A depressed musician reunites with his lover in the desolate streets of Detroit. Though their romance has endured several centuries, it is tested by the arrival of her capricious and unpredictable younger sister.",2013-12-12,2.0333,7.212,2273 +2465,34433,Dragon Ball Z: Broly - The Legendary Super Saiyan,"While the Saiyan Paragus persuades Vegeta to rule a new planet, King Kai alerts Goku of the South Galaxy's destruction by an unknown Super Saiyan.",1993-03-06,7.5029,7.212,949 +2466,6978,Big Trouble in Little China,"Truck driver Jack Burton gets embroiled in a supernatural battle when his best friend Wang Chi's green-eyed fiancée is kidnapped by henchmen of the sorcerer Lo Pan, who must marry a girl with green eyes in order to return to the human realm.",1986-05-30,3.9691,7.2,3147 +2467,504,Monster,"An emotionally scarred highway drifter shoots a sadistic trick who rapes her, and ultimately becomes America's first female serial killer.",2003-12-24,4.6434,7.212,2405 +2468,401104,To the Bone,A young woman dealing with anorexia meets an unconventional doctor who challenges her to face her condition and embrace life.,2017-01-22,2.4851,7.211,3527 +2469,393624,Official Secrets,The true story of British intelligence whistleblower Katharine Gun who—prior to the 2003 Iraq invasion—leaked a top-secret NSA memo exposing a joint US-UK illegal spying operation against members of the UN Security Council. The memo proposed blackmailing member states into voting for war.,2019-08-30,1.7364,7.211,1027 +2470,315011,Shin Godzilla,"When a massive, gilled monster emerges from the deep and tears through the city, the government scrambles to save its citizens. A rag-tag team of volunteers cuts through a web of red tape to uncover the monster's weakness and its mysterious ties to a foreign superpower. But time is not on their side - the greatest catastrophe to ever befall the world is about to evolve right before their very eyes.",2016-07-29,5.2445,7.211,1421 +2471,17379,Last Holiday,"The discovery that she has a terminal illness prompts introverted department store saleswoman Georgia Byrd to reflect on what she realizes has been an overly cautious life. With weeks to live, she withdraws her life savings, sells all her possessions and jets off to Europe where she lives it up at a posh hotel. Upbeat and passionate, Georgia charms everybody she meets, including renowned Chef Didier. The only one missing from her new life is her longtime crush Sean Matthews.",2006-01-13,4.9782,7.2,801 +2472,1878,Fear and Loathing in Las Vegas,"Raoul Duke and his attorney Dr. Gonzo drive a red convertible across the Mojave desert to Las Vegas with a suitcase full of drugs to cover a motorcycle race. As their consumption of drugs increases at an alarming rate, the stoned duo trash their hotel room and fear legal repercussions. Duke begins to drive back to L.A., but after an odd run-in with a cop, he returns to Sin City and continues his wild drug binge.",1998-05-22,4.0288,7.211,4766 +2473,372519,The Ten Commandments: The Movie,Follows Moses leading and conducting the Hebrew people from the slavery of Egypt to the freedom towards the Promised Land according to the Ancient Testament Bible book of the Exodus. The story told like never before is faithful to the Scriptures.,2016-01-28,2.1387,7.21,307 +2474,353577,Love at First Sight,"Hadley and Oliver begin falling in love on a flight from New York to London, but when they lose each other at customs, can they defy all odds to reunite?",2023-09-15,2.6876,7.21,638 +2475,6479,I Am Legend,"Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune, Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone.",2007-12-12,12.4,7.21,16181 +2476,3543,Bagdad Cafe,"A German woman named Jasmin stumbles upon a dilapidated motel/diner in the middle of nowhere. Her unusual appearance and demeanor are at first suspicious to Brenda, the exasperated owner who has difficulty making ends meet. But when an unlikely magic sparks between the two women, this lonely desert outpost is transformed into a thriving and popular oasis.",1987-11-12,1.744,7.21,416 +2477,695,Short Cuts,"Many loosely connected characters cross paths in this film, based on the stories of Raymond Carver. Waitress Doreen Piggot accidentally runs into a boy with her car. Soon after walking away, the child lapses into a coma. While at the hospital, the boy's grandfather tells his son, Howard, about his past affairs. Meanwhile, a baker starts harassing the family when they fail to pick up the boy's birthday cake.",1993-10-01,1.7137,7.21,629 +2478,227,The Outsiders,"When two poor Greasers, Johnny and Ponyboy, are assaulted by a vicious gang, the Socs, and Johnny kills one of the attackers, tension begins to mount between the two rival gangs, setting off a turbulent chain of events.",1983-03-25,5.85,7.212,1444 +2479,614930,Teenage Mutant Ninja Turtles: Mutant Mayhem,"After years of being sheltered from the human world, the Turtle brothers set out to win the hearts of New Yorkers and be accepted as normal teenagers through heroic acts. Their new friend April O'Neil helps them take on a mysterious crime syndicate, but they soon get in over their heads when an army of mutants is unleashed upon them.",2023-07-31,6.0815,7.21,1455 +2480,48254,Ovosodo,"From childhood to fatherhood, Piero learns things the hard way while growing up in a working-class neighborhood of Livorno.",1997-09-12,1.4583,7.209,452 +2481,42297,Burlesque,"Ali leaves behind a troubled life and follows her dreams to Los Angeles, where she lands a job as a cocktail waitress at the Burlesque Lounge, a once-majestic theater that houses an inspired musical revue. Vowing to perform there, she makes the leap from bar to stage, helping restore the club's former glory.",2010-11-23,3.6336,7.208,2298 +2482,10452,Queen Margot,"Paris, Kingdom of France, August 18, 1572. To avoid the outbreak of a religious war, the Catholic princess Marguerite de Valois, sister of the feeble King Charles IX, marries the Huguenot King Henry III of Navarre.",1994-05-13,2.372,7.209,393 +2483,761,The Wing or the Thigh?,"Charles Duchemin, a well-known gourmet and publisher of a famous restaurant guide, is waging a war against fast food entrepreneur Tri- catel to save the French art of cooking. After having agreed to appear on a talk show to show his skills in naming food and wine by taste, he is confronted with two disasters: his son wants to become a clown rather than a restaurant tester and he, the famous Charles Duchemin, has lost his taste!",1976-10-27,2.7557,7.207,919 +2484,555285,"Are You There God? It's Me, Margaret.","When her family moves from New York City to New Jersey, an 11-year-old girl navigates new friends, feelings, and the beginning of adolescence.",2023-03-29,2.8028,7.208,437 +2485,9303,Bound,"Corky, a tough female ex-convict working on an apartment renovation in a Chicago building, meets a couple living next door, Caesar, a paranoid mobster, and Violet, his seductive girlfriend, who is immediately attracted to her.",1996-09-13,3.95,7.208,998 +2486,1885,The Karate Kid,"New Jersey teen Daniel LaRusso moves to Los Angeles with his mother, and soon strikes up a relationship with Ali. He quickly finds himself the target of bullying by a group of thugs, led by Ali's ex-boyfriend Johnny, who study karate at the Cobra Kai dojo under ruthless sensei John Kreese. Fortunately, Daniel befriends Mr. Miyagi, an unassuming repairman who just happens to be a martial arts master himself. Miyagi takes Daniel under his wing, training him in a more compassionate form of karate for self-defense and, later, preparing him to compete against the brutal Cobra Kai.",1984-06-22,10.0997,7.208,4431 +2487,436,Maria Full of Grace,A pregnant Colombian teenager becomes a drug mule to make some desperately needed money for her family.,2004-01-18,1.4837,7.208,403 +2488,793998,Happening,"France, 1963. Anne is a bright young student with a promising future ahead of her. But when she falls pregnant, she sees the opportunity to finish her studies and escape the constraints of her social background disappearing. With her final exams fast approaching and her belly growing, Anne resolves to act, even if she has to confront shame and pain, even if she must risk prison to do so.",2021-11-04,1.4956,7.207,460 +2489,281338,War for the Planet of the Apes,"Caesar and his apes are forced into a deadly conflict with an army of humans led by a ruthless Colonel. After the apes suffer unimaginable losses, Caesar wrestles with his darker instincts and begins his own mythic quest to avenge his kind. As the journey finally brings them face to face, Caesar and the Colonel are pitted against each other in an epic battle that will determine the fate of both their species and the future of the planet.",2017-07-11,9.7415,7.207,9331 +2490,11832,Babette's Feast,A French housekeeper with a mysterious past brings quiet revolution in the form of one exquisite meal to a circle of starkly pious villagers in late 19th century Denmark.,1987-08-11,1.7613,7.2,415 +2491,363579,The Age of Shadows,"Set in the late 1920s, The Age of Shadows follows the cat-and-mouse game that unfolds between a group of resistance fighters trying to bring in explosives from Shanghai to destroy key Japanese facilities in Seoul, and Japanese agents trying to stop them.",2016-09-07,1.3026,7.2,347 +2492,330483,The Choice,Travis and Gabby first meet as neighbors in a small coastal town and wind up in a relationship that is tested by life's most defining events.,2016-02-04,2.4992,7.206,1923 +2493,18030,Kiss Me Deadly,"One evening, Hammer gives a ride to Christina, an attractive hitchhiker on a lonely country road, who has escaped from the nearby lunatic asylum. Thugs waylay them and force his car to crash. When Hammer returns to semi-consciousness, he hears Christina being tortured until she dies. Hammer, both for vengeance and in hopes that ""something big"" is behind it all, decides to pursue the case.",1955-04-28,2.2883,7.206,388 +2494,10403,The Player,A Hollywood studio executive is being sent death threats by a writer whose script he rejected - but which one?,1992-05-08,2.2038,7.2,873 +2495,9660,Operation Petticoat,"A World War II submarine commander finds himself stuck with a damaged sub, a con-man executive officer, and a group of army nurses.",1959-12-05,1.6994,7.206,386 +2496,167,K-PAX,"Prot is a patient at a mental hospital who claims to be from a far away planet. His psychiatrist tries to help him, only to begin to doubt his own explanations.",2001-10-26,2.935,7.206,2533 +2497,951491,Saw X,"Between the events of 'Saw' and 'Saw II', a sick and desperate John Kramer travels to Mexico for a risky and experimental medical procedure in hopes of a miracle cure for his cancer, only to discover the entire operation is a scam to defraud the most vulnerable. Armed with a newfound purpose, the infamous serial killer returns to his work, turning the tables on the con artists in his signature visceral way through devious, deranged, and ingenious traps.",2023-09-27,6.6817,7.2,2154 +2498,863873,Caddo Lake,"When an 8-year-old girl mysteriously vanishes on Caddo Lake, a series of past deaths and disappearances begin to link together, forever altering a broken family’s history.",2024-11-28,4.7218,7.208,320 +2499,38684,Jane Eyre,"After a bleak childhood, Jane Eyre goes out into the world to become a governess. As she lives happily in her new position at Thornfield Hall, she meet the dark, cold, and abrupt master of the house, Mr. Rochester. Jane and her employer grow close in friendship and she soon finds herself falling in love with him. Happiness seems to have found Jane at last, but could Mr. Rochester's terrible secret be about to destroy it forever?",2011-03-11,2.4454,7.2,1501 +2500,11020,Picnic at Hanging Rock,"In the early 1900s, Miranda attends a girls boarding school in Australia. One Valentine's Day, the school's typically strict headmistress treats the girls to a picnic field trip to an unusual but scenic volcanic formation called Hanging Rock. Despite rules against it, Miranda and several other girls venture off. It's not until the end of the day that the faculty realizes the girls and one of the teachers have disappeared mysteriously.",1975-09-02,3.4085,7.203,822 +2501,10886,The Unknown Woman,"Irena, a Ukrainian woman, comes to Italy looking for a job as a maid. She does everything she can to become a beloved nanny for an adorable little girl, Thea. However, that is just the very beginning of her unknown journey.",2006-10-09,1.2659,7.205,355 +2502,10150,The Last Unicorn,"From a riddle-speaking butterfly, a unicorn learns that she is supposedly the last of her kind, all the others having been herded away by the Red Bull. The unicorn sets out to discover the truth behind the butterfly's words. She is eventually joined on her quest by Schmendrick, a second-rate magician, and Molly Grue, a now middle-aged woman who dreamed all her life of seeing a unicorn. Their journey leads them far from home, all the way to the castle of King Haggard.",1982-11-19,2.3127,7.2,538 +2503,1420,Breakfast on Pluto,"In the 1970s, a young transgender woman called “Kitten” leaves her small Irish town for London in search of love, acceptance, and her long-lost mother.",2005-11-16,2.3554,7.2,407 +2504,974576,Conclave,"After the unexpected death of the Pope, Cardinal Lawrence is tasked with managing the covert and ancient ritual of electing a new one. Sequestered in the Vatican with the Catholic Church’s most powerful leaders until the process is complete, Lawrence finds himself at the center of a conspiracy that could lead to its downfall.",2024-10-25,10.2838,7.201,2809 +2505,979,Irreversible,A woman’s lover and her ex-boyfriend take justice into their own hands after she becomes the victim of a rapist. Because some acts can’t be undone. Because man is an animal. Because the desire for vengeance is a natural impulse. Because most crimes remain unpunished.,2002-05-22,8.7647,7.204,3060 +2506,623,A Fish Called Wanda,"While a diamond advocate attempts to steal a collection of diamonds, troubles arise when he realises he’s not the only one after the collection.",1988-07-15,4.3482,7.204,2288 +2507,90,Beverly Hills Cop,"Fast-talking, quick-thinking Detroit street cop Axel Foley has bent more than a few rules and regs in his time, but when his best friend is murdered, he heads to sunny Beverly Hills to work the case like only he can.",1984-12-05,4.631,7.204,4347 +2508,499932,The Devil All the Time,"In Knockemstiff, Ohio and its neighboring backwoods, sinister characters converge around young Arvin Russell as he fights the evil forces that threaten him and his family.",2020-09-11,4.237,7.203,3473 +2509,12159,What Dreams May Come,"Chris Nielsen dies to find himself in a heaven more amazing than he could have ever dreamed of. There is one thing missing: his wife. After he dies, his wife Annie killed herself and went to hell. Chris decides to risk eternity in Hades for the small chance that he will be able to bring her back to heaven.",1998-10-02,3.1484,7.203,2372 +2510,1254,"Don't Worry, I'm Fine","A 19-year-old searches for her twin brother after he runs away from home, following a fight with their father.",2006-09-06,1.3438,7.203,590 +2511,500006,Utøya: July 22,"The movie tells the story about a girl who has to hide and survive from a right wing terrorist while looking for her little sister during the terrorist attacks in Norway on the island Utøya, July 22nd.",2018-03-09,2.3753,7.202,418 +2512,12598,Joe: The Busybody,A writer accidentally shoots his blackmailer and tries to hide the body.,1971-08-31,0.6824,7.2,320 +2513,12554,Citizen X,"Based on the true story of a Russian serial killer who, over many years, claimed victim to over 50 people. His victims were mostly under the age of 17. In what was then a communists state, the police investigations were hampered by bureaucracy, incompetence and those in power. The story is told from the viewpoint of the detective in charge of the case.",1995-02-25,2.0256,7.204,357 +2514,56831,The Sunset Limited,"A deeply religious black ex-con thwarts the suicide attempt of an asocial white college professor who tries to throw himself in front of an oncoming subway train, 'The Sunset Limited.' As the one attempts to connect on a rational, spiritual and emotional level, the other remains steadfast in his hard-earned despair. Locked in a philosophical debate, both passionately defend their personal credos and try to convert the other.",2011-02-12,1.3594,7.201,457 +2515,75629,Evangelion: 3.0 You Can (Not) Redo,"Fourteen years after Third Impact, Shinji Ikari awakens to a world he does not remember. He hasn't aged. Much of Earth is laid in ruins, NERV has been dismantled, and people who he once protected have turned against him. Befriending the enigmatic Kaworu Nagisa, Shinji continues the fight against the angels and realizes the fighting is far from over, even when it could be against his former allies. The characters' struggles continue amidst the battles against the angels and each other, spiraling down to what could inevitably be the end of the world.",2012-11-17,2.762,7.2,858 +2516,116745,The Secret Life of Walter Mitty,A timid magazine photo manager who lives life vicariously through daydreams embarks on a true-life adventure when a negative goes missing.,2013-12-18,6.1668,7.199,7858 +2517,34584,The NeverEnding Story,"While hiding from bullies in his school's attic, a young boy discovers the extraordinary land of Fantasia, through a magical book called The Neverending Story. The book tells the tale of Atreyu, a young warrior who, with the help of a luck dragon named Falkor, must save Fantasia from the destruction of The Nothing.",1984-04-06,4.9683,7.199,4167 +2518,642885,Hocus Pocus 2,"29 years since the Black Flame Candle was last lit, the 17th-century Sanderson sisters are resurrected, and they are looking for revenge. Now it's up to three high school students to stop the ravenous witches from wreaking a new kind of havoc on Salem before dawn on All Hallow's Eve.",2022-09-27,4.6109,7.198,1735 +2519,374671,After the Storm,"Ryota is an unpopular writer although he won a literary award 15 years ago. Now, Ryota works as a private detective. He is divorced from his ex-wife Kyoko and he has an 11-year-old son Shingo. His mother Yoshiko lives alone at her apartment. One day, Ryota, his ex-wife Kyoko, and son Shingo gather at Yoshiko's apartment. A typhoon passes and the family must stay there all night long.",2016-05-21,1.3353,7.198,356 +2520,10693,Peter Pan,"Leaving the safety of their nursery behind, Wendy, Michael and John follow Peter Pan to a magical world where childhood lasts forever. But while in Neverland, the kids must face Captain Hook and foil his attempts to get rid of Peter for good.",1953-02-05,6.6547,7.198,5527 +2521,560050,Over the Moon,"Fueled by memories of her mother, resourceful Fei Fei builds a rocket to the moon on a mission to prove the existence of a legendary moon goddess.",2020-10-16,3.5158,7.197,1337 +2522,10223,A Simple Plan,"Captivated by the lure of sudden wealth, the quiet rural lives of two brothers erupt into conflicts of greed, paranoia and distrust when over $4 million in cash is discovered at the remote site of a downed small airplane. Their simple plan to retain the money while avoiding detection opens a Pandora's box when the fear of getting caught triggers panicked behavior and leads to virulent consequences.",1998-12-11,2.3358,7.197,991 +2523,10149,Smoke,"Writer Paul Benjamin is nearly hit by a bus when he leaves Auggie Wren's smoke shop. Stranger Rashid Cole saves his life, and soon middle-aged Paul tells homeless Rashid that he wouldn't mind a short-term housemate. Still grieving over his wife's murder, Paul is moved by both Rashid's quest to reconnect with his father and Auggie's discovery that a woman who might be his daughter is about to give birth.",1995-06-09,1.81,7.197,503 +2524,6615,Lars and the Real Girl,"Extremely shy Lars finds it impossible to make friends or socialize. His brother and sister-in-law worry about him, so when he announces that he has a girlfriend he met on the Internet, they are overjoyed. But Lars' new lady is a life-size plastic woman. On the advice of a doctor, his family and the rest of the community go along with his delusion.",2007-10-12,2.5839,7.197,1915 +2525,1818,Shoot the Piano Player,"Charlie is a former classical pianist who has changed his name and now plays jazz in a grimy Paris bar. When Charlie's brothers, Richard and Chico, surface and ask for Charlie's help while on the run from gangsters they have scammed, he aids their escape. Soon Charlie and Lena, a waitress at the same bar, face trouble when the gangsters arrive, looking for his brothers.",1960-11-25,1.9149,7.2,417 +2526,859,Dangerous Liaisons,"In 18th century France, Marquise de Merteuil asks her ex-lover Vicomte de Valmont to seduce the future wife of another ex-lover of hers in return for one last night with her. Yet things don’t go as planned.",1988-12-21,3.28,7.197,1209 +2527,363676,Sully,"On 15 January 2009, the world witnessed the 'Miracle on the Hudson' when Captain 'Sully' Sullenberger glided his disabled plane onto the Hudson River, saving the lives of all 155 souls aboard. However, even as Sully was being heralded by the public and the media for his unprecedented feat of aviation skill, an investigation was unfolding that threatened to destroy his reputation and career.",2016-09-07,4.5926,7.196,7402 +2528,109410,42,"In 1946, Branch Rickey, owner of the Brooklyn Dodgers, took a stand against Major League Baseball's infamous color line when he signed Jackie Robinson to the team. The deal put both men in the crosshairs of the public, the press and even other players. Facing unabashed racism from every side, Robinson was forced to demonstrate tremendous courage and let his talent on the field wins over fans and his teammates – silencing his critics and forever changing the world by changing the game of baseball.",2013-04-12,2.6693,7.2,1865 +2529,50348,The Lincoln Lawyer,"Mick Haller is a charismatic defense attorney who does business out of his Lincoln Continental sedan. Mick spends most of his time defending petty crooks and other bottom-feeders, so it comes as quite a surprise when he lands the case of a lifetime: defending a Beverly Hills playboy who is accused of attempted murder. However, what Mick initially thinks is an open-and-shut case with a big monetary reward develops into something more sinister.",2011-03-17,3.7299,7.196,3413 +2530,14359,Doubt,"In 1964 Bronx, two Catholic school nuns question the new priest's ambiguous relationship with a troubled African-American student.",2008-12-12,2.2067,7.196,1790 +2531,11837,Watership Down,"When the warren belonging to a community of rabbits is threatened, a brave group led by Fiver, Bigwig, Blackberry and Hazel leave their homeland in a search of a safe new haven.",1978-10-14,2.1205,7.196,657 +2532,497698,Black Widow,"Natasha Romanoff, also known as Black Widow, confronts the darker parts of her ledger when a dangerous conspiracy with ties to her past arises. Pursued by a force that will stop at nothing to bring her down, Natasha must deal with her history as a spy and the broken relationships left in her wake long before she became an Avenger.",2021-07-07,9.469,7.195,10692 +2533,329819,Standing Tall,The film tells the story of Malony and his education as he grows from a six-year-old into an 18-year-old. A minors’ judge and a caseworker work tirelessly to try to save the young offender.,2015-05-13,0.7092,7.2,473 +2534,213121,Toy Story of Terror!,"What starts out as a fun road trip for the Toy Story gang takes an unexpected turn for the worse when the trip detours to a roadside motel. After one of the toys goes missing, the others find themselves caught up in a mysterious sequence of events that must be solved before they all suffer the same fate in this Toy Story of Terror.",2013-10-16,0.1359,7.195,958 +2535,88284,Barbara,"In 1980s East Germany, Barbara is a Berlin doctor banished to a country medical clinic for applying for an exit visa. Deeply unhappy with her reassignment and fearful of her co-workers as possible Stasi informants, Barbara stays aloof, especially from the good natured clinic head, Andre.",2012-03-08,1.1233,7.195,339 +2536,55931,The Animatrix,"Straight from the creators of the groundbreaking Matrix trilogy, this collection of short animated films from the world's leading anime directors fuses computer graphics and Japanese anime to provide the background of the Matrix universe and the conflict between man and machines. The shorts include Final Flight of the Osiris, The Second Renaissance, Kid's Story, Program, World Record, Beyond, A Detective Story and Matriculated.",2003-05-09,3.0549,7.196,1651 +2537,14675,The Awful Truth,"Unfounded suspicions lead a married couple to begin divorce proceedings, whereupon they start undermining each other's attempts to find new romance.",1937-10-21,2.1588,7.195,328 +2538,1213,The Talented Mr. Ripley,"Tom Ripley is a calculating young man who believes it's better to be a fake somebody than a real nobody. Opportunity knocks in the form of a wealthy U.S. shipbuilder who hires Tom to travel to Italy to bring back his playboy son, Dickie. Ripley worms his way into the idyllic lives of Dickie and his girlfriend, plunging into a daring scheme of duplicity, lies and murder.",1999-12-25,3.7102,7.2,3905 +2539,788,Mrs. Doubtfire,"Loving but irresponsible dad Daniel Hillard, estranged from his exasperated spouse, is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper, he gets the job -- disguised as a British nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.",1993-11-24,5.6649,7.195,6313 +2540,355338,Riley's First Date?,"Riley, now 12, who is hanging out with her parents at home when potential trouble comes knocking. Mom's and Dad's Emotions find themselves forced to deal with Riley going on her first ""date.""",2015-11-03,1.7786,7.194,1084 +2541,11489,Rosetta,"Young, impulsive Rosetta lives a hard and stressful life as she struggles to support herself and her alcoholic mother. Refusing all charity, she is desperate to maintain a dignified job.",1999-09-29,1.0946,7.2,315 +2542,11328,Pusher II,"Tonny is released from prison - again. This time he has his mind set on changing his broken down life, but that is easier said than done.",2004-12-25,2.0869,7.2,484 +2543,1014590,Upgraded,"Ana is an ambitious intern dreaming of a career in the art world while trying to impress her demanding boss Claire. When she's upgraded to first class on a work trip, she meets handsome Will, and Ana pretends to be her boss– a white lie that sets off a glamorous chain of events, romance and opportunity, until her fib threatens to surface.",2024-02-07,8.2211,7.194,916 +2544,287495,Labyrinth of Lies,A young prosecutor in postwar West Germany investigates a massive conspiracy to cover up the Nazi pasts of prominent public figures.,2014-11-06,0.845,7.2,579 +2545,51876,Limitless,The life of an unsuccessful writer is transformed by a top-secret 'smart drug' that allows him to use 100% of his brain and become a perfect version of himself. His enhanced abilities soon attract shadowy forces that threaten his new life.,2011-03-17,9.8127,7.193,10954 +2546,16562,The Cutting Edge,"Two former Olympians, one a figure skater and the other a hockey player, pin their hopes of one last shot at Olympic glory on one another. That is, of course, if they can keep from killing each other in the process...",1992-03-27,1.7432,7.2,371 +2547,9013,Midnight Run,"A bounty hunter pursues a former Mafia accountant who embezzled $15 million of mob money. He is also being chased by a rival bounty hunter, the F.B.I., and his old mob boss after jumping bail.",1988-07-20,2.4175,7.2,1163 +2548,1040148,"Ruby Gillman, Teenage Kraken","Ruby Gillman, a sweet and awkward high school student, discovers she's a direct descendant of the warrior kraken queens. The kraken are sworn to protect the oceans of the world against the vain, power-hungry mermaids. Destined to inherit the throne from her commanding grandmother, Ruby must use her newfound powers to protect those she loves most.",2023-06-28,5.1275,7.192,1050 +2549,955555,The Roundup: No Way Out,"Detective Ma Seok-do changes his affiliation from the Geumcheon Police Station to the Metropolitan Investigation Team, in order to eradicate Japanese gangsters who enter Korea to commit heinous crimes.",2023-05-31,6.0001,7.2,484 +2550,539681,DC League of Super-Pets,"When Superman and the rest of the Justice League are kidnapped, Krypto the Super-Dog must convince a rag-tag shelter pack - Ace the hound, PB the potbellied pig, Merton the turtle and Chip the squirrel - to master their own newfound powers and help him rescue the superheroes.",2022-07-27,4.3071,7.192,1640 +2551,198663,The Maze Runner,"Set in a post-apocalyptic world, young Thomas is deposited in a community of boys after his memory is erased, soon learning they're all trapped in a maze that will require him to join forces with fellow “runners” for a shot at escape.",2014-09-10,22.5456,7.192,17472 +2552,187022,A Touch of Sin,Four independent stories set in modern China about random acts of violence.,2013-10-04,1.4377,7.192,352 +2553,16085,Funny Girl,"The life of famed 1930s comedienne Fanny Brice, from her early days in the Jewish slums of New York, to the height of her career with the Ziegfeld Follies, as well as her marriage to the rakish gambler Nick Arnstein.",1968-09-19,1.4884,7.2,402 +2554,14306,Marley & Me,"A newly married couple, in the process of starting a family, learn many of life's important lessons from their trouble-loving retriever, Marley. Packed with plenty of laughs to lighten the load, the film explores the highs and lows of marriage, maturity and confronting one's own mortality, as seen through the lens of family life with a dog.",2008-12-25,3.3521,7.192,4653 +2555,13156,Secondhand Lions,"The comedic adventures of an introverted boy left on the doorstep of a pair of reluctant, eccentric great-uncles, whose exotic remembrances stir the boy's spirit and re-ignite the men's lives.",2003-09-19,2.0672,7.192,790 +2556,10860,Steel Magnolias,"A young beautician, newly arrived in a small Louisiana town, finds work at the local salon, where a small group of women share a close bond of friendship and welcome her into the fold.",1989-11-15,2.972,7.192,686 +2557,7350,The Bucket List,"Corporate billionaire Edward Cole and working class mechanic Carter Chambers are worlds apart. At a crossroads in their lives, they share a hospital room and discover they have two things in common: a desire to spend the time they have left doing everything they ever wanted to do and an unrealized need to come to terms with who they are. Together they embark on the road trip of a lifetime, becoming friends along the way and learning to live life to the fullest, with insight and humor.",2007-12-25,4.3393,7.192,3894 +2558,1114513,Speak No Evil,"When an American family is invited to spend the weekend at the idyllic country estate of a charming British family they befriended on vacation, what begins as a dream holiday soon warps into a snarled psychological nightmare.",2024-09-11,7.5671,7.189,1658 +2559,900667,One Piece Film Red,"Uta — the most beloved singer in the world. Her voice, which she sings with while concealing her true identity, has been described as “otherworldly.” She will appear in public for the first time at a live concert. As the venue fills with all kinds of Uta fans — excited pirates, the Navy watching closely, and the Straw Hats led by Luffy who simply came to enjoy her sonorous performance — the voice that the whole world has been waiting for is about to resound.",2022-08-06,6.1882,7.191,1076 +2560,571785,Time to Hunt,"Four young men want to leave their dystopian world behind and go to a distant paradise to execute a money robbery, a daring act that will have unexpected consequences.",2020-02-22,1.6635,7.191,330 +2561,407655,A Cinderella Story: If the Shoe Fits,A contemporary musical version of the classic Cinderella story in which the servant step daughter hope to compete in a musical competition for a famous pop star.,2016-08-02,3.4699,7.191,843 +2562,342473,Ballerina,"In 1879 Paris, a young orphan dreams of becoming a ballerina and flees her rural Brittany for Paris, where she passes for someone else and accedes to the position of pupil at the Grand Opera house.",2016-12-14,4.5187,7.191,1920 +2563,21519,Project A,"In late 19th century Hong Kong, the British may rule the land, but the pirates rule the waters. Coast Guard officer Dragon Ma is determined that his beloved Coast Guard will not be made a fool of.",1983-12-22,1.8781,7.191,499 +2564,14375,Romanzo Criminale,"After serving prison time for a juvenile offense, Freddo gathers his old buddies Libano and Dandi and embarks on a crime spree that makes the trio the most powerful gangsters in Rome. Libano loves their new status, and seeks to spread their influence throughout the underworld, while the other two pursue more fleshly desires. For decades, their gang perpetrates extravagant crimes, until paranoia threatens to split the friends apart.",2005-09-30,1.2473,7.191,661 +2565,10511,In America,A family of Irish immigrants adjusts to life on the mean streets of Hell's Kitchen while also grieving the death of a child.,2003-09-22,1.5451,7.191,366 +2566,2771,American Splendor,An original mix of fiction and reality illuminates the life of comic book hero everyman Harvey Pekar.,2003-08-15,1.2479,7.191,497 +2567,2576,The Diary of Anne Frank,"The true, harrowing story of a young Jewish girl who, with her family and their friends, is forced into hiding in an attic in Nazi-occupied Amsterdam.",1959-03-18,1.7934,7.191,358 +2568,539617,Big Time Adolescence,"A seemingly bright and mostly innocent 16-year-old named Mo attempts to navigate high school under the guidance of his best friend Zeke, an unmotivated-yet-charismatic college dropout. Although Zeke genuinely cares about Mo, things start to go awry as he teaches Mo nontraditional life lessons in drug dealing, partying, and dating. Meanwhile, Mo’s well-meaning dad tries to step in and take back the reins of his son’s upbringing.",2020-03-13,1.8214,7.19,353 +2569,91417,Dragons: Gift of the Night Fury,Hiccup and Toothless go on an exciting adventure and discover an island of new dragons.,2011-11-15,4.9062,7.19,403 +2570,28043,Black Sabbath,"Three short tales of supernatural horror. In “The Telephone,” a woman is plagued by threatening phone calls. In ""The Wurdalak,” a family is preyed upon by vampiric monsters. In “The Drop of Water,” a deceased medium wreaks havoc on the living.",1963-08-17,1.8189,7.19,453 +2571,9388,Thank You for Smoking,"Nick Naylor is a charismatic spin-doctor for Big Tobacco who'll fight to protect America's right to smoke -- even if it kills him -- while still remaining a role model for his 12-year old son. When he incurs the wrath of a senator bent on snuffing out cigarettes, Nick's powers of ""filtering the truth"" will be put to the test.",2005-09-09,2.3331,7.19,2258 +2572,1271,300,"Based on Frank Miller's graphic novel, ""300"" is very loosely based the 480 B.C. Battle of Thermopylae, where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians, and helped usher in the world's first democracy.",2007-03-07,9.5201,7.19,14133 +2573,645757,That Christmas,It's an unforgettable Christmas for the townsfolk of Wellington-on-Sea when the worst snowstorm in history alters everyone's plans — including Santa's.,2024-11-27,3.5229,7.189,354 +2574,591274,Fear Street: 1978,"In 1978, two rival groups at Camp Nightwing must band together to solve a terrifying mystery when horrors from their towns' history come alive.",2021-07-08,3.3191,7.2,2063 +2575,110398,No,"In 1988, Chilean military dictator Augusto Pinochet, due to international pressure, is forced to call a plebiscite on his presidency. The country will vote ‘Yes’ or ‘No’ to Pinochet extending his rule for another eight years. Opposition leaders for the ‘No’ vote persuade a brash young advertising executive, René Saavedra, to spearhead their campaign. Against all odds, with scant resources and while under scrutiny by the despot’s minions, Saavedra and his team devise an audacious plan to win the election and set Chile free.",2012-08-09,1.3295,7.189,449 +2576,86829,Inside Llewyn Davis,"In Greenwich Village in the early 1960s, gifted but volatile folk musician Llewyn Davis struggles with money, relationships, and his uncertain future.",2013-10-18,2.8012,7.2,2773 +2577,56825,Compagni di scuola,"A group of former high school classmates meets for a reunion 15 years after graduation, only to discover that any innocence or friendship is long lost.",1988-12-21,0.3848,7.2,380 +2578,19625,Munna Bhai M.B.B.S.,A gangster sets out to fulfill his father's dream of becoming a doctor.,2003-12-19,1.3796,7.189,318 +2579,945961,Alien: Romulus,"While scavenging the deep ends of a derelict space station, a group of young space colonizers come face to face with the most terrifying life form in the universe.",2024-08-13,23.8617,7.188,3852 +2580,612368,In the Name of the Land,"Pierre is 25 when he returns from Wyoming to his fiancée and take over the family farm. Twenty years later, the farm expanded and so did the family. It's the time of happy days, at least at the beginning. The debts accumulate and Pierre is exhausted at work. Despite the love of his wife and children, he is slowly falling...",2019-09-25,0.5786,7.2,314 +2581,581734,Nomadland,"A woman in her sixties embarks on a journey through the western United States after losing everything in the Great Recession, living as a van-dwelling modern-day nomad.",2021-01-29,2.3053,7.188,3130 +2582,459003,Mavka: The Forest Song,"Mavka, a Soul of the Forest, faces an impossible choice between love and her duty as Guardian of the Heart of the Forest when she falls for a human, a talented young musician named Lukas.",2023-03-02,4.9443,7.2,808 +2583,421467,The Return of Godzilla,"After a fishing boat is attacked, the sole surviving crew member realizes it is none other than a resurrected Godzilla. However, efforts to bring the story to light are suppressed by the Japanese government amid growing political tensions between the United States and the Soviet Union, who are both willing to bomb Japan to stop the monster.",1984-12-15,1.7191,7.2,314 +2584,129533,Barbie: The Princess & the Popstar,"Tori is a blonde princess who is bored of living her royal life, and has dreams of becoming a popstar. Keira, on the other hand, is a brunette popstar who dreams of being a princess. When the two meet, they magically trade places, but after realising it is best to be themselves.",2012-09-13,3.0982,7.2,613 +2585,16136,Juice,"Four Harlem friends -- Bishop, Q, Steel and Raheem -- dabble in petty crime, but they decide to go big by knocking off a convenience store. Bishop, the magnetic leader of the group, has the gun. But Q has different aspirations. He wants to be a DJ and happens to have a gig the night of the robbery. Unfortunately for him, Bishop isn't willing to take no for answer in a game where everything's for keeps.",1992-01-17,1.6841,7.2,418 +2586,4043,Law of Desire,"Pablo, a successful film director, disappointed in his relationship with his young lover, Juan, concentrates in a new project, a monologue starring his transgender sister, Tina. Antonio, an uptight young man, falls possessively in love with the director and in his passion would stop at nothing to obtain the object of his desire.",1987-02-07,1.4552,7.188,308 +2587,788734,Sick of Myself,"Increasingly overshadowed by her boyfriend's recent rise to fame as a contemporary artist creating sculptures from stolen furniture, Signe hatches a vicious plan to reclaim her rightfully deserved attention within the milieu of Oslo's cultural elite.",2022-09-30,1.0555,7.187,338 +2588,420622,Professor Marston and the Wonder Women,"The unconventional life of Dr. William Marston, the Harvard psychologist and inventor who helped invent the modern lie detector test and co-created Wonder Woman in 1941.",2017-10-13,3.4663,7.2,892 +2589,2668,Sleepy Hollow,"Skeptical young detective Ichabod Crane gets transferred to the hamlet of Sleepy Hollow, New York, where he is tasked with investigating the decapitations of three people – murders the townsfolk attribute to a legendary specter, The Headless Horseman.",1999-11-19,6.8608,7.187,7012 +2590,41662,3 Women,"Two co-workers, one a vain woman and the other an awkward teenager, share an increasingly bizarre relationship after becoming roommates.",1977-04-10,1.4348,7.2,306 +2591,14163,Chak De! India,"A team of rag-tag girls with their own agenda form Team India competing for international fame in field hockey. Their coach, the ex-men's Indian National team captain, returns from a life of shame after being unjustly accused of match fixing in his last match. Can he give the girls the motivation required to win, while dealing with the shadows of his own past?",2007-08-09,2.121,7.2,342 +2592,11773,Village of the Damned,"In a small English village everyone suddenly falls unconscious. When they awake every woman of child bearing age is pregnant. The resulting children have the same strange blond hair, eyes and a strong connection to each other.",1960-06-16,1.8452,7.186,460 +2593,6023,P.S. I Love You,A young widow discovers that her late husband has left her 10 messages intended to help ease her pain and start a new life.,2007-11-15,4.0552,7.186,3364 +2594,1278,The Dreamers,"When Isabelle and Theo invite Matthew to stay with them, what begins as a casual friendship ripens into a sensual voyage of discovery and desire in which nothing is off limits and everything is possible.",2003-10-10,6.3421,7.2,2956 +2595,502425,Escape from Pretoria,"South Africa, 1978. Tim Jenkin and Stephen Lee, two white political activists from the African National Congress imprisoned by the apartheid regime, put a plan in motion to escape from the infamous Pretoria Prison.",2020-03-06,2.2135,7.185,1390 +2596,12092,Alice in Wonderland,"On a golden afternoon, wildly curious young Alice tumbles into the burrow and enters the merry, madcap world of Wonderland full of whimsical escapades.",1951-07-28,6.7063,7.185,6034 +2597,11109,Vera Drake,Abortionist Vera Drake finds her beliefs and practices clash with the mores of 1950s Britain – a conflict that leads to tragedy for her family.,2004-10-22,1.2616,7.185,371 +2598,519035,Nappily Ever After,"After an accident at the hair salon, Violet realizes she's not living life to the fullest. A soulful barber helps her put the pieces back together.",2018-09-21,2.0178,7.184,811 +2599,13885,Sweeney Todd: The Demon Barber of Fleet Street,"The infamous story of Benjamin Barker, a.k.a Sweeney Todd, who sets up a barber shop down in London which is the basis for a sinister partnership with his fellow tenant, Mrs. Lovett. Based on the hit Broadway musical.",2007-12-20,3.7575,7.182,6056 +2600,1594,A Shot in the Dark,"Inspector Jacques Clouseau, smitten with the accused maid Maria Gambrelli, unwittingly turns a straightforward murder investigation into a comedic series of mishaps, testing the patience of his irritable boss Charles Dreyfus as casualties mount.",1964-06-23,2.0002,7.184,582 +2601,512895,Lady and the Tramp,"The love story between a pampered Cocker Spaniel named Lady and a streetwise mongrel named Tramp. Lady finds herself out on the street after her owners have a baby and is saved from a pack by Tramp, who tries to show her to live her life footloose and collar-free.",2019-11-12,2.78,7.2,1597 +2602,475094,The Captain,"Germany, 1945. Soldier Willi Herold, a deserter of the German army, stumbles into a uniform of Nazi captain abandoned during the last and desperate weeks of the Third Reich. Newly emboldened by the allure of a suit that he has stolen only to stay warm, Willi discovers that many Germans will follow the leader, whoever he is.",2018-02-02,1.8993,7.183,459 +2603,22954,Invictus,"Newly elected President Nelson Mandela knows his nation remains racially and economically divided in the wake of apartheid. Believing he can bring his people together through the universal language of sport, Mandela rallies South Africa's rugby union team as they make their historic run to the 1995 Rugby World Cup Championship match.",2009-12-11,2.4798,7.183,4200 +2604,285733,Barbie and the Secret Door,"It's the ultimate fairytale musical! Barbie stars as Alexa, a shy princess who discovers a secret door in her kingdom and enters a whimsical land filled with magical creatures and surprises. Inside, Alexa meets Romy and Nori, a mermaid and a fairy, who explain that a spoiled ruler named Malucia is trying to take all the magic in the land. To her surprise, Alexa has magical powers in this world, and her new friends are certain that only she can restore their magic. Discover what happens when Alexa finds the courage to stand up for what's right and learns that the power of friendship is far more precious than magic.",2014-08-30,1.3388,7.2,417 +2605,8963,Crimson Tide,"After the Cold War, a breakaway Russian republic with nuclear warheads becomes a possible worldwide threat. U.S. submarine Capt. Frank Ramsey signs on a relatively green but highly recommended Lt. Cmdr. Ron Hunter to the USS Alabama, which may be the only ship able to stop a possible Armageddon. When Ramsey insists that the Alabama must act aggressively, Hunter, fearing they will start rather than stop a disaster, leads a potential mutiny to stop him.",1995-05-12,4.0378,7.2,1856 +2606,10925,The Return of the Living Dead,"When foreman Frank shows new employee Freddy a secret military experiment in a supply warehouse in Louisville, Kentucky, the two klutzes accidentally release a gas that reanimates corpses into flesh-eating zombies. As the epidemic spreads throughout the town, and the creatures satisfy their hunger in gory and outlandish ways, Frank and Freddy fight to survive with the help of their boss and a mysterious mortician.",1985-04-25,3.4866,7.2,2181 +2607,2024,The Patriot,"After proving himself on the field of battle in the French and Indian War, Benjamin Martin wants nothing more to do with such things, preferring the simple life of a farmer. But when his son Gabriel enlists in the army to defend their new nation, America, against the British, Benjamin reluctantly returns to his old life to protect his son.",2000-06-28,5.5376,7.182,4068 +2608,785539,Resort to Love,Aspiring pop star Erica ends up as the entertainment at her ex-fiancé’s wedding after reluctantly taking a gig at a luxurious island resort while in the wake of a music career meltdown.,2021-07-29,1.296,7.2,417 +2609,736732,Broker,"Sang-hyun is always struggling from debt, and Dong-soo works at a baby box facility. On a rainy night, they steal the baby Woo-sung, who was left in the baby box, to sell him at a good price. Meanwhile, detectives were watching, and they quietly track them down to capture the crucial evidence.",2022-06-08,3.0749,7.182,493 +2610,616251,The Broken Hearts Gallery,"Lucy is a young gallery assistant who collects mementos from her relationships. She discovers that she must let go of her past to move forward, and comes up with a lovely, artistic way to help herself and others who have suffered heartbreak.",2020-09-11,1.6441,7.18,323 +2611,2280,Big,When a young boy makes a wish at a carnival machine to be big—he wakes up the following morning to find that it has been granted and his body has grown older overnight. But he is still the same 13-year-old boy inside. Now he must learn how to cope with the unfamiliar world of grown-ups including getting a job and having his first romantic encounter with a woman.,1988-06-03,4.2325,7.18,3770 +2612,583903,Our Friend,"After learning that his terminally ill wife has six months to live, a man welcomes the support of his best friend who moves into their home to help out.",2019-09-04,1.7067,7.179,315 +2613,537056,Batman: Hush,"A mysterious new villain known only as Hush uses a gallery of villains to destroy Batman's crime-fighting career as well as Bruce Wayne's personal life, which has been further complicated by a relationship with Selina Kyle/Catwoman.",2019-07-19,2.5346,7.179,915 +2614,130739,A Coffee in Berlin,"Niko, a twenty-something college dropout, lives for the moment as he drifts through the streets of Berlin, curiously observing everyone around him and oblivious to his growing status as an outsider. Then on one fateful day, through a series of absurdly amusing encounters, everything changes.",2012-11-01,0.8454,7.2,333 +2615,577922,Tenet,"Armed with only one word - Tenet - and fighting for the survival of the entire world, the Protagonist journeys through a twilight world of international espionage on a mission that will unfold in something beyond real time.",2020-08-22,10.6448,7.178,10394 +2616,515916,Girl,A promising teenage dancer enrolls at a prestigious ballet school while grappling with her gender dysphoria.,2018-09-18,1.5093,7.178,740 +2617,454983,The Kissing Booth,"When teenager Elle's first kiss leads to a forbidden romance with the hottest boy in high school, she risks her relationship with her best friend.",2018-05-11,8.7878,7.177,7318 +2618,244403,Rudderless,"A grieving father in a downward spiral stumbles across a box of his recently deceased son's demo tapes and lyrics. Shocked by the discovery of this unknown talent, he forms a band in the hope of finding some catharsis.",2014-10-17,1.2428,7.178,321 +2619,10243,The Flight of the Phoenix,A cargo aircraft crashes in a sandstorm in the Sahara with less than a dozen men on board. One of the passengers is an airplane designer who comes up with the idea of ripping off the undamaged wing and using it as the basis for a replacement aircraft they need to build before their food and water run out.,1965-12-15,2.2369,7.2,339 +2620,10178,The Caine Mutiny,"When a US Naval captain shows signs of mental instability that jeopardize his ship, the first officer relieves him of command and faces court martial for mutiny.",1954-06-24,1.6469,7.2,348 +2621,6037,Murder by Death,"Lionel Twain invites the world's five greatest detectives to a 'dinner and murder'. Included are a blind butler, a deaf-mute maid, screams, spinning rooms, secret passages, false identities and more plot turns and twists than are decently allowed.",1976-06-23,1.6793,7.2,839 +2622,606,Out of Africa,"Tells the life story of Danish author Karen Blixen, who at the beginning of the 20th century moved to Africa to build a new life for herself. The film is based on her 1937 autobiographical novel.",1985-12-20,2.1929,7.178,1436 +2623,651881,Bye Bye Morons,"When 43-year-old hairdresser Suze Trappet finds out that she's seriously ill, she decides to go looking for a child she was forced to abandon when she was only 15. On her madcap bureaucratic quest she crosses paths with JB, a 50-year-old man in the middle of a burnout, and Mr. Blin, a blind archivist prone to overenthusiasm. The unlikely trio set off on a hilarious and poignant helterskelter journey across the city in search of Suze's long-lost child.",2020-10-21,1.473,7.177,910 +2624,15283,Pom Poko,"The Raccoons of the Tama Hills are being forced from their homes by the rapid development of houses and shopping malls. As it becomes harder to find food and shelter, they decide to band together and fight back. The Raccoons practice and perfect the ancient art of transformation until they are even able to appear as humans in hilarious circumstances.",1994-07-16,3.5743,7.177,1108 +2625,2832,Identity,"Complete strangers stranded at a remote desert motel during a raging storm soon find themselves the target of a deranged murderer. As their numbers thin out, the travelers begin to turn on each other, as each tries to figure out who the killer is.",2003-04-25,3.8316,7.177,4056 +2626,2153,The Driver,The Driver specializes in driving getaway cars for robberies. His exceptional talent has prevented him from being caught yet. After another successful flight from the police a self-assured detective makes it his primary goal to catch the Driver. He promises pardons to a gang if they help to convict him in a set-up robbery. The Driver seeks help from The Player to mislead the detective.,1978-06-08,2.0959,7.177,474 +2627,72113,Carnage,"Two pairs of parents hold a cordial meeting after their sons are involved in a fight, though as their time together progresses, increasingly childish behavior throws the discussion into chaos.",2011-09-16,1.6863,7.176,2996 +2628,13368,White Christmas,Two talented song-and-dance men team up after the war to become one of the hottest acts in show business. In time they befriend and become romantically involved with the beautiful Haynes sisters who comprise a sister act.,1954-10-14,2.0688,7.176,539 +2629,10518,Marathon Man,"A graduate student and obsessive runner in New York is drawn into a mysterious plot involving his brother, a member of the secretive Division.",1976-10-08,2.6977,7.176,1138 +2630,1888,The Fortune Cookie,"A cameraman is knocked over during a football game. His brother-in-law, as the king of the ambulance-chasing lawyers, starts a suit while he's still knocked out. The cameraman is against it until he hears that his ex-wife will be coming to see him. He pretends to be injured to get her back, but also sees what the strain is doing to the football player who injured him.",1966-10-19,1.3391,7.176,324 +2631,11330,Pusher III,"Milo is aging, he is planning his daughter's 25th birthday, and his shipment of heroin turns out to be 10,000 pills of ecstasy. When Milo tries to sell the pills anyway, all Hell breaks loose and his only chance is to ask for help from his ex-henchman and old friend Radovan.",2005-08-22,2.7694,7.175,399 +2632,593643,The Menu,"A young couple travels to a remote island to eat at an exclusive restaurant where the chef has prepared a lavish menu, with some shocking surprises.",2022-11-17,7.6031,7.2,5478 +2633,44826,Hugo,"Orphaned and alone except for an uncle, Hugo Cabret lives in the walls of a train station in 1930s Paris. Hugo's job is to oil and maintain the station's clocks, but to him, his more important task is to protect a broken automaton and notebook left to him by his late father. Accompanied by the goddaughter of an embittered toy merchant, Hugo embarks on a quest to solve the mystery of the automaton and find a place he can call home.",2011-11-22,5.281,7.174,7383 +2634,12230,One Hundred and One Dalmatians,"When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.",1961-01-25,5.915,7.2,6438 +2635,461615,MFKZ,"Angelino is just one of thousands of deadbeats living in Dark Meat City. But an otherwise unremarkable scooter accident caused by a beautiful, mysterious stranger is about to transform his life... into a waking nightmare! He starts seeing monstrous forms prowling around all over the city... Is Angelino losing his mind, or could an alien invasion really be happening this quietly...?",2018-05-23,1.1244,7.2,321 +2636,40807,50/50,"Inspired by a true story, a comedy centered on a 27-year-old guy who learns of his cancer diagnosis and his subsequent struggle to beat the disease.",2011-09-30,2.2974,7.173,3879 +2637,4518,Elizabeth,"The story of the ascension to the throne and the early reign of Queen Elizabeth the First, the endless attempts by her council to marry her off, the Catholic hatred of her and her romance with Lord Robert Dudley.",1998-09-13,3.2426,7.2,1430 +2638,1164,Babel,"Tragedy strikes a married couple vacationing in the Moroccan desert, which jumpstarts an interlocking story involving four different families.",2006-10-26,3.7287,7.2,3869 +2639,585245,Clifford the Big Red Dog,"As Emily struggles to fit in at home and at school, she discovers a small red puppy who is destined to become her best friend. When Clifford magically undergoes one heck of a growth spurt, becomes a gigantic dog and attracts the attention of a genetics company, Emily and her Uncle Casey have to fight the forces of greed as they go on the run across New York City. Along the way, Clifford affects the lives of everyone around him and teaches Emily and her uncle the true meaning of acceptance and unconditional love.",2021-11-10,3.5996,7.2,1771 +2640,96714,Diaz - Don't Clean Up This Blood,"On July 19–21, 2001, over 200,000 people took to the streets of Genoa to protest against the ongoing G8 summit. Anti-globalization activists clashed with the police, with 23-year-old protester Carlo Giuliani shot dead after confronting a police vehicle. In the aftermath, the police organized a night raid on the Diaz high school, where around a hundred people between unarmed protesters—mostly students—and independent reporters who documented the police brutality during the protests had took shelter. What happened next was called by Amnesty International ""the most serious breach of civil liberties in a democratic Western country since World War II.""",2012-04-13,0.4643,7.171,427 +2641,18320,The Young Victoria,"As the only legitimate heir of England's King William, teenage Victoria gets caught up in the political machinations of her own family. Victoria's mother wants her to sign a regency order, while her Belgian uncle schemes to arrange a marriage between the future monarch and Prince Albert, the man who will become the love of her life.",2009-03-04,2.4468,7.171,1033 +2642,474395,Teen Titans Go! To the Movies,"All the major DC superheroes are starring in their own films, all but the Teen Titans, so Robin is determined to remedy this situation by getting over his role as a sidekick and becoming a movie star. Thus, with a few madcap ideas and an inspirational song in their hearts, the Teen Titans head to Hollywood to fulfill their dreams.",2018-07-27,3.4131,7.2,1136 +2643,404368,Ralph Breaks the Internet,"Video game bad guy Ralph and fellow misfit Vanellope von Schweetz must risk it all by traveling to the World Wide Web in search of a replacement part to save Vanellope's video game, Sugar Rush. In way over their heads, Ralph and Vanellope rely on the citizens of the internet — the netizens — to help navigate their way, including an entrepreneur named Yesss, who is the head algorithm and the heart and soul of trend-making site BuzzzTube.",2018-11-20,6.6183,7.17,7787 +2644,62215,Melancholia,"Justine and Michael are celebrating their marriage at a sumptuous party in the home of her sister Claire, and brother-in-law John. Despite Claire’s best efforts, the wedding is a fiasco, with family tensions mounting and relationships fraying. Meanwhile, a planet called Melancholia is heading directly towards Earth…",2011-05-26,3.6983,7.17,3619 +2645,33511,Nowhere Boy,"A rebellious teenager, future Beatle John Lennon lives with his Aunt Mimi in working-class mid-1950s Liverpool, England. Mimi's husband suddenly dies, and John spies his mother Julia at the funeral. Despite Mimi's misgivings, John intends to have a real relationship with his mother. Julia introduces him to popular music and the banjo and, though a family conflict looms, young John is inspired to form his own band.",2009-12-25,1.7478,7.2,828 +2646,8879,Pale Rider,A mysterious preacher protects a humble prospector village from a greedy mining company trying to encroach on their land.,1985-06-28,3.6118,7.17,1129 +2647,1160018,Kill,"When an army commando finds out his true love is engaged against her will, he boards a New Dehli-bound train in a daring quest to derail the arranged marriage. But when a gang of knife-wielding thieves begin to terrorize innocent passengers on his train, the commando takes them on, one by one.",2024-07-03,5.3138,7.169,399 +2648,574475,Final Destination Bloodlines,"Plagued by a violent recurring nightmare, college student Stefanie heads home to track down the one person who might be able to break the cycle and save her family from the grisly demise that inevitably awaits them all.",2025-05-14,126.0721,7.2,1912 +2649,373226,Belzebuth,"While leading a police investigation of a massacre in a public school at the border of Mexico and U.S.A, special Agent Emanuel Ritter links this strange case to the coming and rising of the ancient demon Belzebuth. But in order to stop the trail of upcoming infanticides, Ritter shall have to confront himself before dealing with the forces of good and evil.",2019-01-11,1.4199,7.169,359 +2650,340270,The Healer,The film follows a man with an unwanted gift for healing who meets a teenager with cancer who helps him to find himself.,2017-02-17,1.5291,7.169,520 +2651,319888,Eddie the Eagle,"The feel-good story of Michael 'Eddie' Edwards, an unlikely but courageous British ski-jumper who never stopped believing in himself—even as an entire nation was counting him out. With the help of a rebellious and charismatic coach, Eddie takes on the establishment and wins the hearts of sports fans around the world by making an improbable and historic showing at the 1988 Calgary Winter Olympics.",2016-02-25,3.1399,7.169,2184 +2652,581997,Batman vs Teenage Mutant Ninja Turtles,"Batman, Batgirl, and Robin forge an alliance with the Teenage Mutant Ninja Turtles to fight against the Turtles' sworn enemy, The Shredder, who has apparently teamed up with Ra's Al Ghul and The League of Assassins.",2019-03-31,2.743,7.168,519 +2653,15359,Wonder Woman,"On the mystical island of Themyscira, a proud and fierce warrior race of Amazons have raised a daughter of untold beauty, grace and strength: Princess Diana. When an Army fighter pilot, Steve Trevor, crash-lands on the island, the rebellious and headstrong Diana defies Amazonian law by accompanying Trevor back to civilization.",2009-03-03,2.4047,7.2,586 +2654,870028,The Accountant²,"When an old acquaintance is murdered, Wolff is compelled to solve the case. Realizing more extreme measures are necessary, Wolff recruits his estranged and highly lethal brother, Brax, to help. In partnership with Marybeth Medina, they uncover a deadly conspiracy, becoming targets of a ruthless network of killers who will stop at nothing to keep their secrets buried.",2025-04-23,49.3499,7.164,1223 +2655,77877,The Lucky One,A Marine travels to Louisiana after serving three tours in Iraq and searches for the unknown woman he believes was his good luck charm during the war.,2012-04-19,8.0513,7.166,3724 +2656,45162,Superman/Batman: Apocalypse,"Batman discovers a mysterious teen-aged girl with superhuman powers and a connection to Superman. When the girl comes to the attention of Darkseid, the evil overlord of Apokolips, events take a decidedly dangerous turn.",2010-09-28,3.1162,7.2,725 +2657,15067,"The Good, the Bad, the Weird","The story of three Korean outlaws in 1930s Manchuria and their dealings with the Japanese army and Chinese and Russian bandits. The Good (a bounty hunter), the Bad (a hitman), and the Weird (a thief) battle the army and the bandits in a race to use a treasure map to uncover the riches of legend.",2008-07-16,2.3899,7.2,752 +2658,11533,Jason and the Argonauts,"Jason, a fearless sailor and explorer, returns to his home land of Thessaly after a long voyage to claim his rightful throne. He learns, however, that he must first find the magical Golden Fleece. To do so, he must embark on an epic quest fraught with fantastic monsters and terrible perils.",1963-06-19,3.3652,7.2,644 +2659,652,Troy,"In year 1250 B.C. during the late Bronze age, two emerging nations begin to clash. Paris, the Trojan prince, convinces Helen, Queen of Sparta, to leave her husband Menelaus, and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans, he asks his brother Agamemnon to help him get her back. Agamemnon sees this as an opportunity for power. They set off with 1,000 ships holding 50,000 Greeks to Troy.",2004-05-13,11.4035,7.166,10545 +2660,613504,After We Collided,Tessa finds herself struggling with her complicated relationship with Hardin; she faces a dilemma that could change their lives forever.,2020-09-02,11.3495,7.165,5390 +2661,29005,McCabe & Mrs. Miller,A gambler and a prostitute become thriving business partners in a remote Old West mining town until a large corporation arrives on the scene.,1971-06-24,1.4701,7.2,419 +2662,10830,Matilda,"Matilda Wormwood is an exquisite and intelligent little girl. Unfortunately, her parents, Harry and Zinnia misunderstand her because they think she is so different. As time passes, she finally starts school and has a kind teacher, loyal friends, and a sadistic headmistress. As she gets fed up with the constant cruelty, she begins to realize that she has a gift of telekinetic powers. After some days of practice, she suddenly turns the tables to stand up to Harry and Zinnia and outwit the headmistress.",1996-08-02,8.6167,7.2,4592 +2663,8619,Master and Commander: The Far Side of the World,"After an abrupt and violent encounter with a French warship inflicts severe damage upon his ship, a captain of the British Royal Navy begins a chase over two oceans to capture or destroy the enemy, though he must weigh his commitment to duty and ferocious pursuit of glory against the safety of his devoted crew, including the ship's thoughtful surgeon, his best friend.",2003-11-14,6.931,7.2,3297 +2664,59,A History of Violence,An average family is thrust into the spotlight after the father commits a seemingly self-defense murder at his diner.,2005-09-23,4.0481,7.2,3452 +2665,795811,Wheel of Fortune and Fantasy,"An unexpected love triangle, a seduction trap, and a random encounter are the three episodes, told in three movements to depict three female characters and trace the trajectories between their choices and regrets.",2021-04-11,1.527,7.164,326 +2666,10673,Wall Street,"A young and impatient stockbroker is willing to do anything to get to the top, including trading on illegal inside information taken through a ruthless and greedy corporate raider, whom takes the youth under his wing.",1987-12-10,4.9615,7.164,2130 +2667,8438,Murder in the First,"A young, inexperienced public defender is assigned to defend an inmate accused of committing murder while behind bars.",1995-01-20,2.1659,7.164,583 +2668,276,The Edukators,Three activists cobble together a kidnapping plot after they encounter a businessman in his home.,2004-10-25,1.2491,7.164,351 +2669,97365,Rust and Bone,"Put in charge of his young son, Ali leaves Belgium for Antibes to live with his sister and her husband as a family. Ali's bond with Stephanie, a killer whale trainer, grows deeper after Stephanie suffers a horrible accident.",2012-05-17,3.0433,7.2,1412 +2670,23637,"Ciao, Professore!","A bureaucratic snafu sends Marco Tullio Sperelli, a portly, middle-aged northern Italian, to teach third grade in a poor town outside Naples",1992-10-09,0.4044,7.163,392 +2671,2100,The Last Castle,A court-martialed general rallies together 1200 inmates to rise against the system that put him away.,2001-10-19,3.8755,7.163,1314 +2672,49047,Gravity,"Dr. Ryan Stone, a brilliant medical engineer, is on her first Shuttle mission, with veteran astronaut Matt Kowalsky in command of his last flight before retiring. But on a seemingly routine spacewalk, disaster strikes. The Shuttle is destroyed, leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic, every gulp of air eats away at what little oxygen is left. But the only way home may be to go further out into the terrifying expanse of space.",2013-10-03,5.4968,7.2,15715 +2673,5236,Kiss Kiss Bang Bang,A petty thief posing as an actor is brought to Los Angeles for an unlikely audition and finds himself in the middle of a murder investigation along with his high school dream girl and a detective who's been training him for his upcoming role...,2005-09-14,3.2211,7.162,2818 +2674,1011477,Karate Kid: Legends,"After a family tragedy, kung fu prodigy Li Fong is uprooted from his home in Beijing and forced to move to New York City with his mother. When a new friend needs his help, Li enters a karate competition – but his skills alone aren't enough. Li's kung fu teacher Mr. Han enlists original Karate Kid Daniel LaRusso for help, and Li learns a new way to fight, merging their two styles into one for the ultimate martial arts showdown.",2025-05-08,198.5261,7.158,641 +2675,82825,Kahaani,"Pregnant and alone in the city of Kolkata, a woman begins a relentless search for her missing husband, only to find that nothing is what it seems.",2012-03-08,0.8369,7.2,314 +2676,12762,Broadway Danny Rose,"A hapless talent manager named Danny Rose, by helping a client, gets dragged into a love triangle involving the mob. His story is told in flashback, an anecdote shared amongst a group of comedians over lunch at New York's Carnegie Deli. Rose's one-man talent agency represents countless incompetent entertainers, including a one-legged tap dancer, and one slightly talented one: washed-up lounge singer Lou Canova, whose career is on the rebound.",1984-01-27,1.2274,7.2,466 +2677,988,The China Syndrome,"While doing a series of reports on alternative energy sources, opportunistic reporter Kimberly Wells witnesses an accident at a nuclear power plant. Wells is determined to publicize the incident, but soon finds herself entangled in a sinister conspiracy to keep the full impact of the incident a secret.",1979-03-16,1.463,7.161,485 +2678,504949,The King,"England, 15th century. Hal, a capricious prince who lives among the populace far from court, is forced by circumstances to reluctantly accept the throne and become Henry V.",2019-10-11,3.9471,7.16,3355 +2679,489925,Eighth Grade,Thirteen-year-old Kayla endures the tidal wave of contemporary suburban adolescence as she makes her way through the last week of middle school — the end of her thus far disastrous eighth grade year — before she begins high school.,2018-01-19,1.9815,7.16,1585 +2680,376660,The Edge of Seventeen,"Two high school girls are best friends until one dates the other's older brother, who is totally his sister's nemesis.",2016-11-18,3.5034,7.16,4123 +2681,50723,Naruto Shippuden the Movie: The Lost Tower,"Assigned on a mission to capture Mukade, a missing-nin, Naruto Uzumaki sets out for the once glorious historic ruins of ""Ouran"", where he pursues and corners the rouge ninja. Mukade's goal is revealed to be a dormant leyline within the ruins; he unleashes the power of the leyline, causing a light to envelop Naruto, sending him into the past, 20 years before the series began. When Naruto awakens, he comes into contact with the Fourth Hokage, Minato Namikaze.",2010-07-31,3.4482,7.16,491 +2682,12473,The Visitor,A college professor travels to New York City to attend a conference and finds a young couple living in his apartment.,2008-02-21,1.2248,7.16,470 +2683,11636,New Police Story,"Sent into a drunken tailspin when his entire unit is killed by a gang of thrill-seeking punks, disgraced Hong Kong police inspector Wing needs help from his new rookie partner, with a troubled past of his own, to climb out of the bottle and track down the gang and its ruthless leader.",2004-09-23,2.2601,7.16,757 +2684,11044,Arizona Dream,"An Inuit hunter races his sled home with a fresh-caught halibut. This fish pervades the entire film, in real and imaginary form. Meanwhile, Axel tags fish in New York as a naturalist's gofer. He's happy there, but a messenger arrives to bring him to Arizona for his uncle's wedding. It's a ruse to get Axel into the family business. In Arizona, Axel meets two odd women: vivacious, needy, and plagued by neuroses and familial discord. He gets romantically involved with one, while the other, rich but depressed, plays accordion tunes to a gaggle of pet turtles.",1993-01-06,2.4933,7.16,716 +2685,409,The English Patient,"In the 1930s, Count Almásy is a Hungarian map maker employed by the Royal Geographical Society to chart the vast expanses of the Sahara Desert along with several other prominent explorers. As World War II unfolds, Almásy enters into a world of love, betrayal, and politics.",1996-11-14,3.364,7.16,2274 +2686,809140,Father Stu,"The true-life story of boxer-turned-priest. When an injury ends his amateur boxing career, Stuart Long moves to Los Angeles to find money and fame. While scraping by as a supermarket clerk, he meets Carmen, a Sunday school teacher who seems immune to his bad-boy charm. Determined to win her over, the longtime agnostic starts going to church to impress her. However, a motorcycle accident leaves him wondering if he can use his second chance to help others, leading to the surprising realization that he's meant to be a Catholic priest.",2022-04-13,3.8863,7.159,660 +2687,657644,Minnal Murali,A tailor gains special powers after being struck by lightning but must take down an unexpected foe if he is to become the superhero his hometown in Kerala needs.,2021-12-16,1.2479,7.2,314 +2688,558144,Deadpool: No Good Deed,"Deadpool sees an opportunity to save the day, but it doesn't go entirely as planned.",2017-03-03,2.0662,7.159,525 +2689,406990,What Happened to Monday,"In a world where families are limited to one child due to overpopulation, a set of identical septuplets must avoid being put to a long sleep by the government and dangerous infighting while investigating the disappearance of one of their own.",2017-08-18,4.9307,7.159,6216 +2690,1089,Point Break,"In Los Angeles, a gang of bank robbers who call themselves The Ex-Presidents commit their crimes while wearing masks of Reagan, Carter, Nixon and Johnson. Believing that the members of the gang could be surfers, the F.B.I. sends young agent Johnny Utah to the beach undercover to mix with the surfers and gather information.",1991-07-12,7.6409,7.159,3735 +2691,475215,Mirai,"Unhappy after his new baby sister displaces him, four-year-old Kun begins meeting people and pets from his family's history in their unique house in order to help him become the big brother he was meant to be.",2018-06-16,2.1393,7.158,799 +2692,294016,Trumbo,The career of screenwriter Dalton Trumbo is halted by a witch hunt in the late 1940s when he defies the anti-communist HUAC committee and is blacklisted.,2015-10-27,2.5363,7.158,1610 +2693,14903,Pooh's Grand Adventure: The Search for Christopher Robin,"Pooh gets confused when Christopher Robin leaves him a note to say that he has gone back to school after the holidays. So Pooh, Piglet, Tigger, Eeyore and Rabbit go in search of Christopher Robin which leads to a big adventure.",1997-08-05,1.9472,7.2,376 +2694,13459,Barbie in 'A Christmas Carol',"On Christmas Eve, Kelly is reluctant to go to a Christmas Eve ball, so Barbie tells her the story of Eden Starling, a glamorous singing diva in the Victorian England and the owner of a theatre house. However, Eden is self-centered and loves only herself. She is frequently accompanied by her snooty cat, Chuzzlewit. She does not believe in Christmas and orders all her employees to work on Christmas.",2008-11-03,2.102,7.158,568 +2695,530385,Midsommar,"Several friends travel to Sweden to study as anthropologists a summer festival that is held every ninety years in the remote hometown of one of them. What begins as a dream vacation in a place where the sun never sets, gradually turns into a dark nightmare as the mysterious inhabitants invite them to participate in their disturbing festive activities.",2019-07-03,9.7901,7.157,7534 +2696,473033,Uncut Gems,"A charismatic New York City jeweler always on the lookout for the next big score makes a series of high-stakes bets that could lead to the windfall of a lifetime. Howard must perform a precarious high-wire act, balancing business, family, and encroaching adversaries on all sides in his relentless pursuit of the ultimate win.",2019-08-30,4.7282,7.157,4982 +2697,348893,Boyka: Undisputed IV,"In the fourth installment of the fighting franchise, Boyka is shooting for the big leagues when an accidental death in the ring makes him question everything he stands for. When he finds out the wife of the man he accidentally killed is in trouble, Boyka offers to fight in a series of impossible battles to free her from a life of servitude.",2016-08-01,11.5228,7.157,1389 +2698,59421,Bedevilled,"A disillusioned Seoul woman visits a remote island to reconnect with a childhood friend, only to find her trapped in an oppressive cycle of physical, mental, and sexual abuse. As tensions escalate, the situation spirals into a harrowing tale of survival and retribution.",2010-08-19,3.397,7.157,443 +2699,978,Seven Years in Tibet,"Austrian mountaineer Heinrich Harrer journeys to the Himalayas without his family to head an expedition in 1939. But when World War II breaks out, the arrogant Harrer falls into Allied forces' hands as a prisoner of war. He escapes with a fellow detainee and makes his way to Lhasa, Tibet, where he meets the 14-year-old Dalai Lama, whose friendship ultimately transforms his outlook on life.",1997-09-12,4.0586,7.2,2951 +2700,18240,The Proposal,"When she learns she's in danger of losing her visa status and being deported, overbearing book editor Margaret Tate forces her put-upon assistant, Andrew Paxton, to marry her.",2009-06-02,9.1418,7.156,7122 +2701,10705,Henry V,"In the midst of the Hundred Years War, the young King Henry V of England embarks on the conquest of France in 1415.",1989-10-05,1.757,7.156,392 +2702,4538,The Darjeeling Limited,"Three American brothers who have not spoken to each other in a year set off on a train voyage across India with a plan to find themselves and bond with each other -- to become brothers again like they used to be. Their ""spiritual quest"", however, veers rapidly off-course (due to events involving over-the-counter pain killers, Indian cough syrup, and pepper spray).",2007-09-07,3.8222,7.156,3716 +2703,505954,T-34,"In 1944, a courageous group of Russian soldiers managed to escape from German captivity in a half-destroyed legendary T-34 tank. Those were the times of unforgettable bravery, fierce fighting, unbreakable love, and legendary miracles.",2018-12-27,2.4673,7.155,878 +2704,403300,A Hidden Life,Austrian farmer Franz Jägerstätter faces the threat of execution for refusing to fight for the Nazis during World War II.,2019-08-27,2.5487,7.155,727 +2705,10142,Casualties of War,"During the Vietnam War, a soldier finds himself the outsider of his own squad when they unnecessarily kidnap a female villager.",1989-08-18,2.0674,7.155,934 +2706,1857,The Transformers: The Movie,"The Autobots must stop a colossal planet-consuming robot who goes after the Autobot Matrix of Leadership. At the same time, they must defend themselves against an all-out attack from the Decepticons.",1986-08-08,2.813,7.2,553 +2707,994,Straw Dogs,"David Sumner, a mild-mannered academic from the United States, marries Amy, an Englishwoman. In order to escape a hectic stateside lifestyle, David and his wife relocate to the small town in rural Cornwall where Amy was raised. There, David is ostracized by the brutish men of the village, including Amy's old flame, Charlie. Eventually the taunts escalate.",1971-11-25,2.362,7.155,988 +2708,69315,Battlestar Galactica: Razor,"The history and adventures of the Battlestar Pegasus, from shortly before the Cylon invasion to shortly after Lee Adama is made commander. The story is told through the eyes of and largely focuses on one particular member of Pegasus's crew, Kendra Shaw.",2007-11-12,1.2967,7.2,424 +2709,10876,Quills,"A nobleman with a literary flair, the Marquis de Sade lives in a madhouse where a beautiful laundry maid smuggles his erotic stories to a printer, defying orders from the asylum's resident priest. The titillating passages whip all of France into a sexual frenzy, until a fiercely conservative doctor tries to put an end to the fun.",2000-11-22,3.2817,7.153,675 +2710,9441,Stepmom,"Jackie is a divorced mother of two. Isabel is the career minded girlfriend of Jackie’s ex-husband Luke, forced into the role of unwelcome stepmother to their children. But when Jackie discovers she is ill, both women realise they must put aside their differences to find a common ground and celebrate life to the fullest, while they have the chance.",1998-12-25,4.1299,7.154,1479 +2711,138,Dracula,"British estate agent Renfield travels to Transylvania to meet the mysterious Count Dracula, who is interested in leasing a castle in London. After Dracula enslaves Renfield and drives him to insanity, the pair sail to London together and Dracula, a secret vampire, begins preying on London socialites.",1931-02-12,2.6748,7.154,1280 +2712,469,Stranger Than Paradise,"A Hungarian immigrant, his friend, and his cousin go on an unpredictable adventure across America.",1984-10-01,1.2953,7.153,568 +2713,1008042,Talk to Me,"When a group of friends discover how to conjure spirits using an embalmed hand, they become hooked on the new thrill, until one of them goes too far and unleashes terrifying supernatural forces.",2023-07-26,10.3691,7.152,3321 +2714,479226,The Purity of Vengeance,"Copenhagen, 2018. A frightening discovery is made in an old apartment. The subsequent investigation of Department Q leads them to an infamous institution for girls that was suddenly closed in the early sixties.",2018-10-04,2.0273,7.152,514 +2715,324560,Brimstone,"In the menacing inferno of the old North-American West, Liz is a genuine survivor who is hunted by a vengeful preacher for a crime she didn’t commit.",2016-03-12,3.2352,7.152,1188 +2716,20345,The Bird with the Crystal Plumage,"An American writer living in Rome witnesses an attempted murder that is connected to an ongoing killing spree in the city and conducts his own investigation, despite he and his girlfriend being targeted by the killer.",1970-02-27,1.8121,7.2,792 +2717,916,Bullitt,"Senator Walter Chalmers is aiming to take down mob boss Pete Ross with the help of testimony from the criminal's hothead brother Johnny, who is in protective custody in San Francisco under the watch of police lieutenant Frank Bullitt. When a pair of mob hitmen enter the scene, Bullitt follows their trail through a maze of complications and double-crosses. This thriller includes one of the most famous car chases ever filmed.",1968-10-17,3.3372,7.2,1204 +2718,647,Final Fantasy VII: Advent Children,"Two years have passed since the final battle with Sephiroth. Though Midgar, city of mako, city of prosperity, has been reduced to ruins, its people slowly but steadily walk the road to reconstruction. However, a mysterious illness called Geostigma torments them. With no cure in sight, it brings death to the afflicted, one after another, robbing the people of their fledgling hope.",2005-07-14,2.6483,7.154,1185 +2719,459,Sissi: The Fateful Years of an Empress,After a wonderful time in Hungary Sissi falls extremely ill and must retreat to a Mediterranean climate to rest. The young empress’ mother takes her from Austria to recover in Madeira.,1957-12-18,2.1741,7.2,342 +2720,168,Star Trek IV: The Voyage Home,"When a huge alien probe enters the galaxy and begins to vaporize Earth's oceans, Kirk and his crew must travel back in time in order to bring back whales and save the planet.",1986-11-26,4.0158,7.152,1555 +2721,353326,The Man Who Knew Infinity,"Growing up poor in Madras, India, Srinivasa Ramanujan Iyengar earns admittance to Cambridge University during WWI, where he becomes a pioneer in mathematical theories with the guidance of his professor, G.H. Hardy.",2016-04-08,2.9701,7.151,1491 +2722,140212,Confession of Murder,"A serial killer reappears 15 years after his murder spree with a book detailing his crimes. The resentful cop who failed to catch him before is assigned to protect him. The families of the victims plan revenge. And as the media circus spirals out of control, a masked man called ""J"" appears claiming to be the real killer.",2012-11-08,1.1475,7.151,311 +2723,13012,Felon,A family man convicted of killing an intruder must cope with life afterward in the violent penal system.,2008-07-17,2.0489,7.151,910 +2724,277217,Descendants,"A present-day idyllic kingdom where the benevolent teenage son of King Adam and Queen Belle offers a chance of redemption for the troublemaking offspring of Disney's classic villains: Cruella De Vil (Carlos), Maleficent (Mal), the Evil Queen (Evie) and Jafar (Jay).",2015-07-31,8.5408,7.15,2424 +2725,11093,House of Sand and Fog,"Behrani, an Iranian immigrant buys a California bungalow, thinking he can fix it up, sell it again, and make enough money to send his son to college. However, the house is the legal property of former drug addict Kathy. After losing the house in an unfair legal dispute with the county, she is left with nowhere to go. Wanting her house back, she hires a lawyer and befriends a police officer. Neither Kathy nor Behrani have broken the law, so they find themselves involved in a difficult moral dilemma.",2003-12-19,1.7884,7.15,789 +2726,10601,Peter Pan,"In stifling Edwardian London, Wendy Darling mesmerizes her brothers every night with bedtime tales of swordplay, swashbuckling and the fearsome Captain Hook. But the children become the heroes of an even greater story, when Peter Pan flies into their nursery one night and leads them over moonlit rooftops through a galaxy of stars and to the lush jungles of Neverland.",2003-12-18,4.6709,7.15,2686 +2727,8088,Broken Embraces,"Harry Caine, a blind writer, reaches this moment in time when he has to heal his wounds from 14 years back. He was then still known by his real name, Mateo Blanco, and directing his last movie.",2009-03-18,2.2286,7.15,678 +2728,609,Poltergeist,"Upon realizing that something truly evil haunts his home, Steve Freeling calls in a team of parapsychologists to help before it's too late.",1982-06-04,4.0722,7.15,3135 +2729,575265,Mission: Impossible - The Final Reckoning,"Ethan Hunt and team continue their search for the terrifying AI known as the Entity — which has infiltrated intelligence networks all over the globe — with the world's governments and a mysterious ghost from Hunt's past on their trail. Joined by new allies and armed with the means to shut the Entity down for good, Hunt is in a race against time to prevent the world as we know it from changing forever.",2025-05-17,86.391,7.1,1008 +2730,16563,Seven Brides for Seven Brothers,"In 1850 Oregon, when a backwoodsman brings a wife home to his farm, his six brothers decide that they want to get married too.",1954-07-22,2.5221,7.1,551 +2731,12289,Red Cliff,"In 208 A.D., in the final days of the Han Dynasty, shrewd Prime Minster Cao convinced the fickle Emperor Han the only way to unite all of China was to declare war on the kingdoms of Xu in the west and East Wu in the south. Thus began a military campaign of unprecedented scale. Left with no other hope for survival, the kingdoms of Xu and East Wu formed an unlikely alliance.",2008-07-10,3.0232,7.1,836 +2732,1924,Superman,"Mild-mannered Clark Kent works as a reporter at the Daily Planet alongside his crush, Lois Lane. Clark must summon his superhero alter-ego when the nefarious Lex Luthor launches a plan to take over the world.",1978-12-14,12.1465,7.149,4033 +2733,595671,Never Rarely Sometimes Always,A pair of teenage girls in rural Pennsylvania travel to New York City to seek out medical help after an unintended pregnancy.,2020-03-13,1.3486,7.148,539 +2734,520736,Loro 2,"""Loro"", in two parts, is a period movie that chronicles, as a fiction story, events likely happened in Italy (or even made up) between 2006 and 2010. ""Loro"" wants to suggest in portraits and glimps, through a composite constellation of characters, a moment in history, now definitively ended, which can be described in a very summary picture of the events as amoral, decadent but extraordinarily alive. Additionally, ""Loro"" wishes to tell the story of some Italians, fresh and ancient people at the same time: souls from a modern imaginary Purgatory who, moved by heterogeneous intents like ambition, admiration, affection, curiosity, personal interests, establish to try and orbit around the walking Paradise that is the man named Silvio Berlusconi.",2018-05-10,0.6024,7.148,376 +2735,520172,Happiest Season,A young woman's plans to propose to her girlfriend while at her family's annual holiday party are upended when she discovers her partner hasn't yet come out to her conservative parents.,2020-11-26,2.0228,7.148,1256 +2736,435577,The 12th Man,"After a failed anti-Nazi sabotage mission leaves his eleven comrades dead, a Norwegian resistance fighter finds himself fleeing the Gestapo through the snowbound reaches of Scandinavia.",2017-12-25,2.1575,7.148,573 +2737,396371,Molly's Game,"Molly Bloom, a young skier and former Olympic hopeful becomes a successful entrepreneur (and a target of an FBI investigation) when she establishes a high-stakes, international poker game.",2017-12-07,3.3824,7.148,3829 +2738,11770,Shaolin Soccer,A young Shaolin follower reunites with his discouraged brothers to form a soccer team using their martial art skills to their advantage.,2001-07-05,6.7593,7.148,2372 +2739,12914,Stargate: Continuum,Ba'al travels back in time and prevents the Stargate program from being started. SG-1 must somehow restore history.,2008-07-29,2.6431,7.1,544 +2740,10617,Once Upon a Time in China,"Set in late 19th century Canton, this martial arts film depicts the stance taken by the legendary martial arts hero Wong Fei-Hung against foreign forces' plundering of China.",1991-08-15,3.1432,7.147,443 +2741,10102,La Grande Bouffe,Four friends gather at a villa with the intention of eating themselves to death.,1973-05-16,1.4737,7.147,525 +2742,4688,Across the Universe,"When young dockworker Jude leaves Liverpool to find his estranged father in the United States, he is swept up by the waves of change that are re-shaping the nation. Jude falls in love with Lucy, who joins the growing anti-war movement. As the body count in Vietnam rises, political tensions at home spiral out of control and the star-crossed lovers find themselves in a psychedelic world gone mad.",2007-09-14,2.5515,7.147,1372 +2743,2117,Sophie Scholl: The Final Days,"In 1943, as Hitler continues to wage war across Europe, a group of college students mount an underground resistance movement in Munich. Dedicated expressly to the downfall of the monolithic Third Reich war machine, they call themselves the White Rose. One of its few female members, Sophie Scholl is captured during a dangerous mission to distribute pamphlets on campus with her brother Hans. Unwavering in her convictions and loyalty to the White Rose, her cross-examination by the Gestapo quickly escalates into a searing test of wills as Scholl delivers a passionate call to freedom and personal responsibility.",2005-02-13,1.5618,7.1,434 +2744,986280,Fallen Leaves,"In modern-day Helsinki, two lonely souls in search of love meet by chance in a karaoke bar. However, their path to happiness is beset by obstacles – from lost phone numbers to mistaken addresses, alcoholism, and a charming stray dog.",2023-09-14,1.501,7.146,639 +2745,749004,Petite Maman,"After the death of her beloved grandmother, eight-year-old Nelly meets a strangely familiar girl her own age in the woods. Instantly forming a connection with this mysterious new friend, Nelly embarks on a fantastical journey of discovery which helps her come to terms with this newfound loss.",2021-06-02,0.8275,7.1,408 +2746,82693,Silver Linings Playbook,"After losing his job and wife, and spending time in an institution, a former teacher winds up living with his parents. He wants to rebuild his life and reconcile with his wife, but his father would be happy if he shared his obsession with the Philadelphia Eagles. Things get complicated when he meets Tiffany Maxwell who offers to help him reconnect with his wife if he will do something very important for her in exchange.",2012-11-16,5.3904,7.146,12233 +2747,15157,Another Cinderella Story,"A guy who danced with what could be the girl of his dreams at a costume ball only has one hint at her identity: the Zune she left behind as she rushed home in order to make her curfew. And with a once-in-a-lifetime opportunity in front of him, he sets out to find his masked beauty.",2008-09-16,3.9301,7.147,1945 +2748,259954,5 to 7,A young writer begins an affair with an older woman from France whose open marriage to a diplomat dictates that they can meet only between the hours of 5 p.m. to 7 p.m.,2014-04-19,1.8779,7.147,392 +2749,9741,Unbreakable,"An ordinary man makes an extraordinary discovery when a train accident leaves his fellow passengers dead — and him unscathed. The answer to this mystery could lie with the mysterious Elijah Price, a man who suffers from a disease that renders his bones as fragile as glass.",2000-11-22,5.9565,7.145,9542 +2750,4176,Murder on the Orient Express,"In 1935, when his train is stopped by deep snow, detective Hercule Poirot is called on to solve a murder that occurred in his car the night before.",1974-11-22,3.2652,7.145,1483 +2751,501170,Doctor Sleep,"Still scarred by the trauma he endured as a child at the Overlook Hotel, Dan Torrance faces the ghosts of the past when he meets Abra, a courageous teen who desperately needs his help -- and who possesses a powerful extrasensory ability called the ""shine"".",2019-10-30,4.909,7.144,4607 +2752,12144,The Land Before Time,"An orphaned brontosaurus named Littlefoot sets off in search of the legendary Great Valley. A land of lush vegetation where the dinosaurs can thrive and live in peace. Along the way he meets four other young dinosaurs, each one a different species, and they encounter several obstacles as they learn to work together in order to survive.",1988-11-18,3.1474,7.145,2613 +2753,535544,Downton Abbey,"The beloved Crawleys and their intrepid staff prepare for the most important moment of their lives. A royal visit from the King and Queen of England will unleash scandal, romance and intrigue that will leave the future of Downton hanging in the balance.",2019-09-12,2.9153,7.1,1182 +2754,472674,The Goldfinch,"A boy in New York is taken in by a wealthy family after his mother is killed in a bombing at the Metropolitan Museum of Art. In a rush of panic, he steals 'The Goldfinch', a painting that eventually draws him into a world of crime.",2019-09-12,2.6906,7.143,901 +2755,411728,The Professor and the Madman,"Professor James Murray begins work compiling words for the first edition of the Oxford English Dictionary in the mid 19th century, and receives over 10,000 entries from a patient at Broadmoor Criminal Lunatic Asylum, Dr. William Minor.",2019-03-07,2.4122,7.143,1220 +2756,11165,Tora! Tora! Tora!,"In the summer of 1941, the United States and Japan seem on the brink of war after constant embargos and failed diplomacy come to no end. ""Tora! Tora! Tora!"", named after the code words used by the lead Japanese pilot to indicate they had surprised the Americans, covers the days leading up to the attack on Pearl Harbor, which plunged America into the Second World War.",1970-01-26,2.6262,7.1,562 +2757,1637,Speed,"Jack Traven, an LAPD cop on SWAT detail, and veteran SWAT officer Harry Temple thwart an extortionist-bomber's scheme for a $3 million ransom. As they corner the bomber, he flees and detonates a bomb vest, seemingly killing himself. Weeks later, Jack witnesses a mass transit city bus explode and nearby a pay phone rings. On the phone is that same bomber looking for vengeance and the money he's owed. He gives a personal challenge to Jack: a bomb is rigged on another city bus - if it slows down below 50 mph, it will explode - bad enough any day, but a nightmare in LA traffic. And that's just the beginning...",1994-06-09,8.7441,7.143,6457 +2758,65,8 Mile,"For Jimmy Smith, Jr., life is a daily fight just to keep hope alive. Feeding his dreams in Detroit's vibrant music scene, Jimmy wages an extraordinary personal struggle to find his own voice - and earn a place in a world where rhymes rule, legends are born and every moment… is another chance.",2002-11-08,5.437,7.1,7496 +2759,1156593,Your Fault,The love between Noah and Nick seems unwavering despite their parents' attempts to separate them. But his job and her entry into college open up their lives to new relationships that will shake the foundations of both their relationship and the Leister family itself.,2024-12-26,30.0537,7.142,1320 +2760,664300,Shiva Baby,"College student Danielle must cover her tracks when she unexpectedly runs into her sugar daddy at a shiva - with her parents, ex-girlfriend and family friends also in attendance.",2021-03-26,1.1902,7.142,696 +2761,509364,By the Grace of God,"Alexandre, a man in his 40s living in Lyon with his wife and children, discovers that the priest who abused him decades ago continues to work with children. He joins forces with others victims of the priest, to bring justice and “lift the burden of silence” about what they endured.",2019-02-20,1.7789,7.1,572 +2762,241863,As the Gods Will,"High school student Shun Takahata is bored. Bored with the day-to-day monotony of school and life, he prays for change, for something exciting. Suddenly, he and his classmates are forced to play deadly children's games and facing terrifying creatures from a talking Daruma doll to a sharp-clawed lucky cat.",2014-11-15,2.6845,7.1,537 +2763,58574,Sherlock Holmes: A Game of Shadows,"There is a new criminal mastermind at large (Professor Moriarty) and not only is he Holmes’ intellectual equal, but his capacity for evil and lack of conscience may give him an advantage over the detective.",2011-11-22,6.0513,7.142,10564 +2764,22527,The Wrong Man,"In 1953, an innocent man named Christopher Emmanuel ""Manny"" Balestrero is arrested after being mistaken for an armed robber.",1956-12-22,1.5773,7.142,583 +2765,19236,Santa Sangre,A former circus artist escapes from a mental hospital to rejoin his mother – the leader of a strange religious cult – and is forced to enact brutal murders in her name.,1989-11-24,1.635,7.1,473 +2766,19123,La Chèvre,"When the boss' unlucky daughter is missing in South America, Campana is sent to watch the boss' most unlucky employee who is sent as a private detective in hopes he can duplicate the daughter's mistakes.",1981-12-09,1.5349,7.142,673 +2767,14807,The Long Good Friday,"In the late 1970s, Cockney crime boss Harold Shand, a gangster trying to become a legitimate property mogul, has big plans to get the American Mafia to bankroll his transformation of a derelict area of London into the possible venue for a future Olympic Games. However, a series of bombings targets his empire on the very weekend the Americans are in town. Shand is convinced there is a traitor in his organization, and sets out to eliminate the rat in typically ruthless fashion.",1980-11-01,2.2225,7.1,391 +2768,10476,Hustle & Flow,"With help from his friends, a Memphis pimp in a mid-life crisis attempts to become a successful hip-hop emcee.",2005-07-22,1.7636,7.142,406 +2769,612,Munich,"During the 1972 Olympic Games in Munich, eleven Israeli athletes are taken hostage and murdered by a Palestinian terrorist group known as Black September. In retaliation, the Israeli government recruits a group of Mossad agents to track down and execute those responsible for the attack.",2005-12-23,3.0455,7.1,2783 +2770,1222248,Number 24,"On the brink of the Second World War, a young Norwegian man's drive to resist the Nazis sets a new course for his future – and the future of his country.",2024-10-30,4.738,7.141,313 +2771,933260,The Substance,"A fading celebrity decides to use a black market drug, a cell-replicating substance that temporarily creates a younger, better version of herself.",2024-09-07,27.0744,7.141,4934 +2772,351339,Anthropoid,"In December 1941, Czech soldiers Jozef Gabčík and Jan Kubiš parachute into their occupied homeland to assassinate Nazi officer Reinhard Heydrich.",2016-08-12,2.065,7.141,1073 +2773,302429,Strange Magic,"A love potion works its devious charms on fairies, elves and the swamp-dwelling Bog King as they all try to possess the potion for themselves.",2015-01-23,3.4057,7.141,520 +2774,11660,Following,"Bill, an idle, unemployed aspiring writer, walks the crowded streets of London following randomly chosen strangers, a seemingly innocent entertainment that becomes dangerous when he crosses paths with a mysterious character.",1999-05-06,1.5855,7.141,1699 +2775,9769,Lolita,"Humbert Humbert is a middle-aged British novelist who is both appalled by and attracted to the vulgarity of American culture. When he comes to stay at the boarding house run by Charlotte Haze, he soon becomes obsessed with Lolita, the woman's teenaged daughter.",1997-09-27,9.7361,7.1,1866 +2776,4192,Death on the Nile,"As Hercule Poirot enjoys a luxurious cruise down the Nile, a newlywed heiress is found murdered on board and every elegant passenger becomes a prime suspect.",1978-09-29,2.9889,7.141,843 +2777,978870,Last Night of Amore,"On the night before his retirement, police lieutenant Franco Amore is called to investigate the death of a long-time partner of his in a diamond heist in which he was involved.",2023-03-09,0.9041,7.14,503 +2778,527435,The Christmas Chronicles,"Siblings Kate and Teddy try to prove Santa Claus is real, but when they accidentally cause his sleigh to crash, they have to save Christmas.",2018-11-22,2.7773,7.14,2265 +2779,440472,The Upside,"Phillip is a wealthy quadriplegic who needs a caretaker to help him with his day-to-day routine in his New York penthouse. He decides to hire Dell, a struggling parolee who's trying to reconnect with his ex and his young son. Despite coming from two different worlds, an unlikely friendship starts to blossom.",2019-01-10,4.287,7.1,1325 +2780,78480,Monsieur Lazhar,"During a harsh Montréal winter, an elementary-school class is left reeling after its teacher commits suicide. Bachir Lazhar, a charismatic Algerian immigrant, steps in as the substitute teacher for the classroom of traumatized children. All the while, he must keep his personal life tucked away: the fact that he is seeking political refuge in Québec – and that he, like the children, has suffered an appalling loss.",2011-09-10,0.89,7.14,328 +2781,12105,Yellow Submarine,"The wicked Blue Meanies take over Pepperland, eliminating all color and music. As the only survivor, the Lord Admiral escapes in the yellow submarine and journeys to Liverpool to enlist the help of the Beatles.",1968-07-17,1.1557,7.14,525 +2782,4441,Candy,"A poet falls in love with an art student, who gravitates to his bohemian lifestyle — and his love of heroin. Hooked as much on one another as they are on the drug, their relationship alternates between states of oblivion, self-destruction, and despair.",2006-05-25,1.2517,7.1,615 +2783,765245,Swan Song,"In the near future, Cameron Turner is diagnosed with a terminal illness. Presented with an experimental solution to shield his wife and son from grief, he grapples with altering their fate in this thought-provoking exploration of love, loss, and sacrifice.",2021-12-17,2.8857,7.139,545 +2784,39105,Dragon Ball Z: Bojack Unbound,"Mr. Money is holding another World Martial Arts Tournament and Mr. Satan invites everyone in the world to join in. Little does he know that Bojack, an ancient villain who has escaped his prison, is competing. Since Goku is currently dead, it is up to Gohan, Vegeta, and Trunks to defeat Bojack and his henchman.",1993-07-10,4.4239,7.139,594 +2785,16161,Baby Boy,"The story of Jody, a misguided, 20-year-old African-American who is really just a baby boy finally forced-kicking and screaming to face the commitments of real life. Streetwise and jobless, he has not only fathered two children by two different women-Yvette and Peanut but still lives with his own mother. He can't seem to strike a balance or find direction in his chaotic life.",2001-06-27,2.4761,7.139,327 +2786,536743,Queen & Slim,"While on a forgettable first date together in Ohio, a black man and a black woman are pulled over for a minor traffic infraction. The situation escalates, with sudden and tragic results.",2019-11-27,1.9168,7.138,712 +2787,10948,The Fox and the Hound,"When a feisty little fox named Tod is adopted into a farm family, he quickly becomes friends with a fun and adorable hound puppy named Copper. Life is full of hilarious adventures until Copper is expected to take on his role as a hunting dog -- and the object of his search is his best friend!",1981-07-10,4.6227,7.1,3337 +2788,985939,Fall,"For best friends Becky and Hunter, life is all about conquering fears and pushing limits. But after they climb 2,000 feet to the top of a remote, abandoned radio tower, they find themselves stranded with no way down. Now Becky and Hunter’s expert climbing skills will be put to the ultimate test as they desperately fight to survive the elements, a lack of supplies, and vertigo-inducing heights",2022-08-11,11.9198,7.137,4198 +2789,826769,Rosaline,"Left heartbroken after Romeo begins to pursue her cousin Juliet, Rosaline schemes to foil the famous romance and win back her guy in this comedic twist of Shakespeare's Romeo and Juliet.",2022-10-11,1.6084,7.137,306 +2790,814340,Cha Cha Real Smooth,"Fresh out of college and stuck at his New Jersey home without a clear path forward, 22-year-old Andrew begins working as a party starter for bar/bat mitzvahs—where he strikes up a unique friendship with a young mom and her teenage daughter.",2022-06-17,3.6215,7.137,361 +2791,226448,In Your Eyes,"Two seemingly unconnected souls from different corners of the United States make a telepathic bond that allows them to see, hear and feel the other's experiences, creating a bond that apparently can't be broken.",2014-04-20,1.1211,7.137,706 +2792,10590,We Were Soldiers,The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.,2002-03-01,3.4676,7.138,2131 +2793,4643,The Guardian,"A high school swim champion with a troubled past enrolls in the U.S. Coast Guard's 'A' School, where legendary rescue swimmer Ben Randall teaches him some hard lessons about loss, love, and self-sacrifice.",2006-09-28,3.4689,7.137,1572 +2794,272878,Max,A dog that helped soldiers in Afghanistan returns to the U.S. and is adopted by his handler's family after suffering a traumatic experience.,2015-06-25,2.4995,7.136,851 +2795,71325,With Every Heartbeat,"After they meet at their parent's engagement party, Mia and Frida are intrigued by and attracted to one another, despite Mia's own upcoming engagement to Tim. Mia must decide whether to continue her life with Tim or to follow her heart with Frida.",2011-07-29,2.8299,7.136,369 +2796,11296,Birdy,"Two young men are seriously affected by the Vietnam War. One of them has always been obsessed with birds - but now believes he really is a bird, and has been sent to a mental hospital. Can his friend help him pull through?",1984-12-14,1.0964,7.1,535 +2797,9802,The Rock,"When vengeful General Francis X. Hummel seizes control of Alcatraz Island and threatens to launch missiles loaded with deadly chemical weapons into San Francisco, only a young FBI chemical weapons expert and notorious Federal prisoner have the skills to penetrate the impregnable island fortress and take him down.",1996-06-07,8.1622,7.136,4898 +2798,1016084,BlackBerry,Two mismatched entrepreneurs – egghead innovator Mike Lazaridis and cut-throat businessman Jim Balsillie – joined forces in an endeavour that was to become a worldwide hit in little more than a decade. The story of the meteoric rise and catastrophic demise of the world's first smartphone.,2023-02-13,3.0999,7.135,709 +2799,567646,Extreme Job,"A drug squad attempts to take down a criminal organization and they must go undercover to do so, so they begin working at a chicken restaurant, that becomes famous for its delicious chicken. Due to the unexpected popularity, the detectives find themselves in a situation they never expected.",2019-01-23,2.9156,7.135,314 +2800,537996,The Ballad of Buster Scruggs,"Vignettes weaving together the stories of six individuals in the old West at the end of the Civil War. Following the tales of a sharp-shooting songster, a wannabe bank robber, two weary traveling performers, a lone gold prospector, a woman traveling the West to an uncertain future, and a motley crew of strangers undertaking a carriage ride.",2018-11-09,4.5524,7.135,4189 +2801,403431,Brigsby Bear,"Brigsby Bear Adventures is a children's TV show produced for an audience of one: James. When the show abruptly ends, James's life changes forever, and he sets out to finish the story himself.",2017-07-27,1.2769,7.1,392 +2802,310307,The Founder,"The true story of how Ray Kroc, a salesman from Illinois, met Mac and Dick McDonald, who were running a burger operation in 1950s Southern California. Kroc was impressed by the brothers’ speedy system of making the food and saw franchise potential. He maneuvered himself into a position to be able to pull the company from the brothers and create a billion-dollar empire.",2016-11-24,4.4823,7.135,5137 +2803,13001,Stargate: The Ark of Truth,"SG-1 searches for an ancient weapon which could help them defeat the Ori, and discover it may be in the Ori's own home galaxy. As the Ori prepare to send ships through to the Milky Way to attack Earth, SG-1 travels to the Ori galaxy aboard the Odyssey. The International Oversight committee have their own plans and SG-1 finds themselves in a distant galaxy fighting two powerful enemies.",2008-03-11,3.0635,7.1,533 +2804,9540,Dead Ringers,"Elliot, a successful gynecologist, works at the same practice as his identical twin, Beverly. Elliot is attracted to many of his patients and has affairs with them. When he inevitably loses interest, he will give the woman over to Beverly, the meeker of the two, without the woman knowing the difference. Beverly falls hard for one of the patients, Claire, but when she inadvertently deceives him, he slips into a state of madness.",1988-09-23,1.6618,7.1,932 +2805,6396,SLC Punk,"Two former geeks become 1980s punks, then party and go to concerts while deciding what to do with their lives.",1998-09-24,1.4565,7.135,394 +2806,927,Gremlins,"After receiving an exotic small animal as a Christmas gift, a young man inadvertently breaks three important rules concerning his new pet, which unleashes a horde of malevolently mischievous creatures on a small town.",1984-06-08,5.724,7.135,6623 +2807,467909,In the Heights,"The story of Usnavi, a bodega owner who has mixed feelings about closing his store and retiring to the Dominican Republic or staying in Washington Heights.",2021-06-10,1.5464,7.1,744 +2808,254172,Fathers and Daughters,"A Pulitzer-winning writer grapples with being a widower and father after a mental breakdown, while, 27 years later, his grown daughter struggles to forge connections of her own.",2015-10-01,2.3005,7.134,993 +2809,10986,The Taming of the Scoundrel,"A rich farmer is well known for being very unkind. He's misanthropic, misogynous and cantankerous. Until he meets by chance a gorgeous girl...",1980-12-20,2.0341,7.1,473 +2810,506,Marnie,"Marnie is a thief, a liar, and a cheat. When her new boss, Mark Rutland, catches on to her routine kleptomania, she finds herself being blackmailed.",1964-07-17,2.4409,7.134,1167 +2811,336050,Son of Saul,"In the horror of 1944 Auschwitz, a prisoner forced to burn the corpses of his own people finds moral survival trying to save from the flames the body of a boy he takes for his son, seeking to give him a proper jewish burial.",2015-06-11,1.7385,7.133,1109 +2812,205601,Belle,"Dido Elizabeth Bell, the illegitimate, mixed-race daughter of a Royal Navy admiral, plays an important role in the campaign to abolish slavery in England.",2013-05-01,1.9438,7.134,694 +2813,22302,Polytechnique,A dramatization of the Montreal Massacre of 1989 where several female engineering students were murdered by an unstable misogynist.,2009-02-06,1.2376,7.1,660 +2814,411,"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe","Siblings Lucy, Edmund, Susan and Peter step through a magical wardrobe and find the land of Narnia. There, they discover a charming, once peaceful kingdom that has been plunged into eternal winter by the evil White Witch, Jadis. Aided by the wise and magnificent lion, Aslan, the children lead Narnia into a spectacular, climactic battle to be free of the Witch's glacial powers forever.",2005-12-07,22.8696,7.133,11015 +2815,547016,The Old Guard,Four undying warriors who've secretly protected humanity for centuries become targeted for their mysterious powers just as they discover a new immortal.,2020-07-09,8.6609,7.1,4506 +2816,38700,Bad Boys for Life,"Marcus and Mike are forced to confront new threats, career changes, and midlife crises as they join the newly created elite team AMMO of the Miami police department to take down the ruthless Armando Armas, the vicious leader of a Miami drug cartel.",2020-01-15,8.2729,7.132,8462 +2817,30074,Scooby-Doo! and the Legend of the Vampire,"The Yowie Yahoo starts kidnapping musicians at a concert attended by Scooby and the gang in Vampire Rock, Australia.",2003-03-04,1.7342,7.132,325 +2818,9464,Buffalo '66,"Billy is released after five years in prison. In the next moment, he kidnaps teenage student Layla and visits his parents with her, pretending she is his girlfriend and they will soon marry.",1998-01-20,2.8788,7.132,979 +2819,9316,Ong Bak,"When the head of a statue sacred to a village is stolen, a young martial artist goes to the big city and finds himself taking on the underworld to retrieve it.",2003-01-21,5.7278,7.132,1731 +2820,8470,John Q,"John Quincy Archibald is a father and husband whose son is diagnosed with an enlarged heart and then finds out he cannot receive a transplant because HMO insurance will not cover it. Therefore, he decides to take a hospital full of patients hostage until the hospital puts his son's name on the donor's list.",2002-02-15,3.7127,7.132,2475 +2821,336000,The Glass Castle,"A young girl is raised in a dysfunctional family constantly on the run from the FBI. Living in poverty, she comes of age guided by her drunkard, ingenious father who distracts her with magical stories to keep her mind off the family's dire state, and her selfish, nonconformist mother who has no intention of raising a family, along with her younger brother and sister, and her other older sister. Together, they fend for each other as they mature in an unorthodox journey that is their family life.",2017-08-11,2.6688,7.131,850 +2822,329805,My King,"Tony is admitted to a rehabilitation center after a serious ski accident. Dependent on the medical staff and pain relievers, she takes time to look back on a turbulent relationship that she experienced with Georgio.",2015-10-21,1.1277,7.131,791 +2823,147773,The Way Way Back,"Shy 14-year-old Duncan goes on summer vacation with his mother, her overbearing boyfriend, and her boyfriend's daughter. Having a rough time fitting in, Duncan finds an unexpected friend in Owen, manager of the Water Wizz water park.",2013-06-06,2.6811,7.132,1846 +2824,37767,Fun Is Beautiful,"Three characters' misadventures in semi-deserted, summertime Rome: a dim-witted mama's boy falls for a tourist; a would-be womanizer struggles to find company for his sex tourism trip to Kraków; a hippie is drawn into his father's schemes to bring him back into polite society.",1980-01-19,0.9485,7.131,401 +2825,24615,Aloha Scooby-Doo!,"The Mystery Gang goes to Hawaii for the Big Kahuna of Hanahuna Surfing Contest. However, the gang and the locals find the island invaded by the vengeful Wiki Tiki spirit and his demons.",2005-02-08,2.1673,7.1,440 +2826,82881,Tangled Ever After,"The kingdom is in a festive mood as everyone gathers for the royal wedding of Rapunzel and Flynn. However, when Pascal and Maximus, as flower chameleon and ring bearer, respectively, lose the gold bands, a frenzied search and recovery mission gets underway. As the desperate duo tries to find the rings before anyone discovers that they’re missing, they leave behind a trail of comical chaos that includes flying lanterns, a flock of doves, a wine barrel barricade and a very sticky finale. Will Maximus and Pascal save the day and make it to the church in time? And will they ever get Flynn’s nose right?",2012-01-13,5.2093,7.13,1077 +2827,672647,The Map of Tiny Perfect Things,Two teenagers trapped in an endless time loop set out to find all the tiny things that make that one day perfect.,2021-02-12,3.3486,7.1,819 +2828,3549,After the Wedding,"A manager of an orphanage in India is sent to Copenhagen, Denmark, where he discovers a life-altering family secret.",2006-02-24,1.5915,7.129,445 +2829,673309,American Underdog,"The true story of Kurt Warner, who went from a stockboy at a grocery store to a two-time NFL MVP, Super Bowl champion, and Hall of Fame quarterback.",2021-12-25,1.8907,7.128,384 +2830,26617,Five Easy Pieces,"A drop-out from upper-class America picks up work along the way on oil-rigs when his life isn't spent in a squalid succession of bars, motels, and other points of interest.",1970-09-12,1.5495,7.128,547 +2831,15370,The Cat Returns,"Young Haru rescues a cat from being run over, but soon learns it's no ordinary feline; it happens to be the Prince of the Cats.",2002-07-19,4.6948,7.1,2323 +2832,11462,Suspicion,"A wealthy and sheltered young woman elopes with a charming playboy and soon learns of his bad traits, including his extreme dishonesty and lust for money. Gradually, she begins to suspect that he intends to kill her to collect her life insurance.",1941-11-14,2.2287,7.1,849 +2833,8982,The Protector,"A young fighter named Kham must go to Australia to retrieve his stolen elephant. With the help of a Thai-born Australian detective, Kham must take on all comers, including a gang led by an evil woman and her two deadly bodyguards.",2005-08-11,4.3011,7.128,883 +2834,3111,A Star Is Born,"A movie star helps a young singer-actress find fame, even as age and alcoholism send his own career into a downward spiral.",1954-10-01,1.8616,7.128,312 +2835,1555,The Spanish Apartment,"A strait-laced French student moves into an apartment in Barcelona with a cast of six other characters from all over Europe. Together, they speak the international language of love and friendship.",2002-06-19,1.9387,7.128,1171 +2836,1152014,A Little Something Extra,"To escape the police, a father and his son are forced to find refuge in a summer camp for young adults with mental disabilities, taking on the role of an educator and a boarder. The beginning of troubles and a wonderful human experience that will change them forever.",2024-04-18,2.063,7.127,761 +2837,352490,This Beautiful Fantastic,"Set against the backdrop of a beautiful garden in the heart of London, this contemporary fairy tale revolves around the unlikely friendship between a reclusive young woman and a cantankerous old widower. Bella Brown is a beautifully quirky young woman who dreams of writing and illustrating a successful children’s book. After she is forced by her landlord to deal with her neglected garden or face eviction, she meets her match, nemesis, and unlikely mentor in Alfie Stephenson, a grumpy, loveless, old man who lives next door who happens to be an amazing horticulturalist.",2016-10-20,1.8443,7.1,335 +2838,11687,The Visitors,"After a wizard's spell goes awry, 12th-century Gallic knight Godefroy de Papincourt, Count of Montmirail finds himself transported to 1993, along with his dimwitted servant, Jacquouille la Fripouille. Startled and perplexed by modern technology, the duo run amok, destroying cars and causing chaos until they meet Beatrice de Montmirail, an aristocratic descendant of the nobleman, who may be able to help them get back to 1123.",1993-01-27,3.0403,7.127,1978 +2839,11075,Audition,"Seven years after the death of his wife, widower Shigeharu seeks advice on how to find a new wife from a colleague. Taking advantage of their position as a film company, they stage an audition. Interviewing a series of women, Shigeharu is enchanted by the quiet Asami. But soon things take a twisted turn as Asami isn’t what she seems to be.",2000-03-03,3.382,7.127,1634 +2840,8092,This Boy's Life,"When a son and mother move to Seattle in hopes for a better life, the mother meets a seemingly polite man. Things go south when the man turns out to be abusive, endangering their lives. As the mother struggles to maintain hope in an impossible situation, the son has plans to escape.",1993-04-09,2.5906,7.127,1013 +2841,635,Angel Heart,"A down-and-out Brooklyn detective is hired to track down a singer on an odyssey that will take him through the desperate streets of Harlem, the smoke-filled jazz clubs of New Orleans, and the swamps of Louisiana and its seedy underworld of voodoo.",1987-03-06,2.859,7.127,1612 +2842,524047,Greenland,"John Garrity, his estranged wife and their young son embark on a perilous journey to find sanctuary as a planet-killing comet hurtles toward Earth. Amid terrifying accounts of cities getting levelled, the Garritys experience the best and worst in humanity. As the countdown to the global apocalypse approaches zero, their incredible trek culminates in a desperate and last-minute flight to a possible safe haven.",2020-07-29,6.8008,7.127,4734 +2843,398173,The House That Jack Built,"Failed architect, engineer and vicious murderer Jack narrates the details of some of his most elaborately orchestrated crimes, each of them a towering piece of art that defines his life's work as a serial killer for twelve years.",2018-07-05,4.5156,7.126,2893 +2844,17187,The Emperor's Club,"William Hundert is a passionate and principled Classics professor who finds his tightly-controlled world shaken and inexorably altered when a new student, Sedgewick Bell, walks into his classroom. What begins as a fierce battle of wills gives way to a close student-teacher relationship, but results in a life lesson for Hundert that will still haunt him a quarter of a century later.",2002-11-22,1.619,7.126,390 +2845,9606,Metropolis,"In the midst of societal conflict in the futuristic city of Metropolis, Kenichi and his uncle Shunsaku Ban set out to uncover the mystery behind the first human-like robot, Tima.",2001-05-26,1.8554,7.1,502 +2846,414453,Columbus,"When a renowned architecture scholar falls suddenly ill during a speaking tour, his son Jin finds himself stranded in Columbus, Indiana - a small Midwestern city celebrated for its many significant modernist buildings. Jin strikes up a friendship with Casey, a young architecture enthusiast who works at the local library.",2017-08-04,1.98,7.1,420 +2847,302946,The Accountant,"As a math savant uncooks the books for a new client, the Treasury Department closes in on his activities and the body count starts to rise.",2016-10-13,11.6086,7.125,6900 +2848,290250,The Nice Guys,A private eye investigates the apparent suicide of a fading porn star in 1970s Los Angeles and uncovers a conspiracy.,2016-05-15,5.1971,7.1,8199 +2849,89636,Dragon Ball Z: Plan to Eradicate the Super Saiyans,"Dr. Raichi is one of the only survivors of the Tuffles, a race that once lived on Planet Plant before the coming of the Saiyans. The Saiyans not only massacred the entire Tuffle race, but also stole their technology and conquered the planet, renaming it Planet Vegeta in honor of their king. Raichi managed to escape with a capsule and found refuge on the Dark Planet, a world at the end of the universe. His only wish is to eradicate the last remaining Saiyans.",2010-11-11,2.0499,7.125,303 +2850,50270,Paprika,"Mimma starts working in Madame Colette’s brothel to help her boyfriend financially. There she is rechristened “Paprika,” and falls in love with her first client, naval officer Franco. Despite this attraction, she begins her climb through the sex trade, residing in Italy’s most illustrious brothels.",1991-02-13,10.2494,7.125,541 +2851,10564,Where the Heart Is,"Novalee Nation is a 17-year-old Tennessee transient who has to grow up in a hurry when she's left pregnant and abandoned by her boyfriend on a roadside, and takes refuge in the friendly aisles of Wal-Mart. Eventually, some eccentric but kindly strangers 'adopt' Novalee and her infant daughter, helping them buck the odds and build a new life.",2000-04-27,2.2453,7.125,705 +2852,68730,Silence,"In the 17th century, two Portuguese Jesuit priests travel to Japan in an attempt to locate their mentor, who is rumored to have committed apostasy, and to propagate Catholicism.",2016-12-23,4.6031,7.124,3135 +2853,11951,Vanishing Point,"Kowalski works for a car delivery service, and takes delivery of a 1970 Dodge Challenger to drive from Colorado to San Francisco. Shortly after pickup, he takes a bet to get the car there in less than 15 hours.",1971-01-15,1.7368,7.124,477 +2854,468198,The Place,"The fates of an apparently random group of strangers who each come into contact with a mysterious figure who they believe possesses the power to grant any wish, in return for which they must carry out a task he assigns them.",2017-11-04,0.9859,7.1,1214 +2855,23483,Kick-Ass,"Dave Lizewski is an unnoticed high school student and comic book fan who one day decides to become a super-hero, even though he has no powers, training or meaningful reason to do so.",2010-03-26,6.9206,7.123,11933 +2856,10634,Friday,"Craig and Smokey are two guys in Los Angeles hanging out on their porch on a Friday afternoon, smoking and drinking, looking for something to do.",1995-04-26,5.2263,7.1,1903 +2857,11222,The American Friend,"Tom Ripley, an American who deals in forged art, is slighted at an auction in Hamburg by picture framer Jonathan Zimmerman. When Ripley is asked by gangster Raoul Minot to kill a rival, he suggests Zimmerman, and the two, exploiting Zimmerman's terminal illness, coerce him into being a hitman.",1977-06-24,1.3468,7.122,399 +2858,10537,The Doors,"The story of the famous and influential 1960s rock band and its lead singer and composer, Jim Morrison.",1991-03-01,2.7087,7.1,1498 +2859,10340,Lady and the Tramp,"Lady, a golden cocker spaniel, meets up with a mongrel dog who calls himself the Tramp. He is obviously from the wrong side of town, but happenings at Lady's home make her decide to travel with him for a while.",1955-06-22,5.7356,7.122,5440 +2860,1574,Chicago,Murderesses Velma Kelly and Roxie Hart find themselves on death row together and fight for the fame that will keep them from the gallows in 1920s Chicago.,2002-12-10,3.16,7.122,2729 +2861,408,Snow White and the Seven Dwarfs,"A beautiful girl, Snow White, takes refuge in the forest in the house of seven dwarfs to hide from her stepmother, the wicked Queen. The Queen is jealous because she wants to be known as ""the fairest in the land,"" and Snow White's beauty surpasses her own.",1938-01-14,11.5327,7.122,7707 +2862,1241436,Warfare,"A platoon of Navy SEALs embarks on a dangerous mission in Ramadi, Iraq, with the chaos and brotherhood of war retold through their memories of the event.",2025-04-09,30.3588,7.12,822 +2863,475946,Blade Runner: Black Out 2022,"This animated short revolves around the events causing an electrical systems failure on the west coast of the US. According to Blade Runner 2049’s official timeline, this failure leads to cities shutting down, financial and trade markets being thrown into chaos, and food supplies dwindling. There’s no proof as to what caused the blackouts, but Replicants — the bio-engineered robots featured in the original Blade Runner, are blamed.",2017-09-26,1.984,7.121,419 +2864,7485,Shooter,"A top Marine sniper, Bob Lee Swagger, leaves the military after a mission goes horribly awry and disappears, living in seclusion. He is coaxed back into service after a high-profile government official convinces him to help thwart a plot to kill the President of the United States. Ultimately double-crossed and framed for the attempt, Swagger becomes the target of a nationwide manhunt. He goes on the run to track the real killer and find out who exactly set him up, and why, eventually seeking revenge against some of the most powerful and corrupt leaders in the free world.",2007-03-22,8.9429,7.121,5122 +2865,2760,The Lodger: A Story of the London Fog,"London. A mysterious serial killer brutally murders young blond women by stalking them in the night fog. One foggy, sinister night, a young man who claims his name is Jonathan Drew arrives at the guest house run by the Bunting family and rents a room.",1927-02-14,1.5982,7.121,314 +2866,243,High Fidelity,"After his long-time girlfriend dumps him, a thirty-year-old record store owner seeks to understand why he is unlucky in love while recounting his ""top five breakups of all time"".",2000-03-17,2.764,7.121,2074 +2867,618355,Superman: Red Son,"Set in the thick of the Cold War, Red Son introduces us to a Superman who landed in the USSR during the 1950s and grows up to become a Soviet symbol that fights for the preservation of Stalin’s brand of communism.",2020-02-24,2.4238,7.12,857 +2868,430447,Mary and The Witch's Flower,"Mary Smith, a young girl who lives with her great-aunt in the countryside, follows a mysterious cat into the nearby forest where she finds a strange flower and an old broom, none of which is as ordinary as it seems.",2017-07-08,2.7536,7.12,836 +2869,197950,The Connection,"Newly transferred to the bustling port city of Marseille to assist with a crackdown on organized crime, energetic young magistrate Pierre Michel is given a rapid-fire tutorial on the ins and outs of an out-of-control drug trade. Pierre's wildly ambitious mission is to take on the French Connection, a highly organized operation that controls the city's underground heroin economy and is overseen by the notorious —and reputedly untouchable— Gaetan Zampa. Fearless, determined and willing to go the distance, Pierre plunges into an underworld world of insane danger and ruthless criminals.",2014-12-03,2.0506,7.12,894 +2870,14748,Boy A,"Freed after a lengthy term in a juvenile detention center, convicted child killer Jack Burridge finds work as a deliveryman and begins dating co-worker Michelle. While out on the road one day, Jack notices a distressed child, and, after reuniting the girl with her family, becomes a local celebrity. But when a local newspaper unearths his past, Jack must cope with the anger of citizens who fear for the safety of their children.",2007-10-28,1.1486,7.12,472 +2871,1443,The Virgin Suicides,"A group of male friends become obsessed with five mysterious sisters who are sheltered by their strict, religious parents.",2000-04-21,4.847,7.121,3420 +2872,1010821,Groot Takes a Bath,"Everybody needs some alone time to relax and wash up, but things go quite differently when you’re a Flora Colossi toddler.",2022-08-10,1.3695,7.1,352 +2873,964960,The Taste of Things,"Set in 1889 France, Dodin Bouffant is a chef living with his personal cook and lover Eugénie. They share a long history of gastronomy and love but Eugénie refuses to marry Dodin, so the food lover decides to do something he has never done before: cook for her.",2023-11-08,1.4491,7.096,332 +2874,335797,Sing,A koala named Buster recruits his best friend to help him drum up business for his theater by hosting a singing competition.,2016-11-23,8.4842,7.12,8168 +2875,130925,Partysaurus Rex,"When Rex finds himself left behind in the bathroom, he puts his limbs to use by getting a bath going for a bunch of new toy friends.",2012-09-14,1.9723,7.119,490 +2876,51241,Heartbeats,"Francis is a young gay man, Marie is a young straight woman and the two of them are best friends -- until the day the gorgeous Nicolas walks into a Montreal coffee shop. The two friends, instantly and equally infatuated, compete for Nicolas' indeterminate affections, a conflict that climaxes when the trio visit the vacation home of Nicolas' mother. The frothy comedy unfolds through narrative, fantasy sequences and confessional monologues.",2010-09-29,0.9081,7.119,1021 +2877,17887,Barefoot in the Park,"In this film based on a Neil Simon play, newlyweds Corie, a free spirit, and Paul Bratter, an uptight lawyer, share a sixth-floor apartment in Greenwich Village. Soon after their marriage, Corie tries to find a companion for mother, Ethel, who is now alone, and sets up Ethel with neighbor Victor. Inappropriate behavior on a double date causes conflict, and the young couple considers divorce.",1967-05-25,1.4029,7.119,577 +2878,9846,To Live and Die in L.A.,"When his longtime partner on the force is killed, reckless U.S. Secret Service agent Richard Chance vows revenge, setting out to nab dangerous counterfeit artist Eric Masters.",1985-11-01,2.1823,7.119,705 +2879,537915,After,"Tessa Young is a dedicated student, dutiful daughter and loyal girlfriend to her high school sweetheart. Entering her first semester of college, Tessa's guarded world opens up when she meets Hardin Scott, a mysterious and brooding rebel who makes her question all she thought she knew about herself -- and what she wants out of life.",2019-04-11,20.0441,7.118,8378 +2880,212778,Chef,"When Chef Carl Casper suddenly quits his job at a prominent Los Angeles restaurant after refusing to compromise his creative integrity for its controlling owner, he is left to figure out what's next. Finding himself in Miami, he teams up with his ex-wife, his friend and his son to launch a food truck. Taking to the road, Chef Carl goes back to his roots to reignite his passion for the kitchen -- and zest for life and love.",2014-05-08,6.5218,7.118,3422 +2881,103332,Ruby Sparks,"Calvin is a young novelist who achieved phenomenal success early in his career but is now struggling with his writing – as well as his romantic life. Finally, he makes a breakthrough and creates a character named Ruby who inspires him. When Calvin finds Ruby, in the flesh, sitting on his couch about a week later, he is completely flabbergasted that his words have turned into a living, breathing person.",2012-07-25,2.5402,7.118,1685 +2882,30675,Planet Hulk,"When the Hulk's presence on Earth becomes too great a risk, the Illuminati trick him to board a shuttle destined for a planet where he will be able to live in peace, and launch it into space. The Hulk's struggle to escape causes the shuttle to malfunction and crash land on the planet Sakaar, however, where he is sold into slavery and trained as a gladiator.",2010-02-02,1.7961,7.1,519 +2883,11639,The Dark Crystal,"On another planet in the distant past, a Gelfling embarks on a quest to find the missing shard of a magical crystal and restore order to his world, before the grotesque race of Skeksis find and use the crystal for evil.",1982-12-17,3.0729,7.1,1182 +2884,519141,Matthias & Maxime,"Two childhood best friends are asked to share a kiss for the purposes of a student short film. Soon, a lingering doubt sets in, confronting both men with their preferences, threatening the brotherhood of their social circle, and, eventually, changing their lives.",2019-10-09,2.0931,7.117,480 +2885,239563,St. Vincent,"A young boy whose parents just divorced finds an unlikely friend and mentor in the misanthropic, bawdy, hedonistic, war veteran who lives next door.",2014-10-09,3.7337,7.1,1957 +2886,157832,Calvary,"After being threatened during a confession, a good-natured priest must battle the dark forces closing in around him.",2014-04-11,1.6298,7.1,995 +2887,44716,In a Better World,"The lives of two Danish families cross each other, and an extraordinary but risky friendship comes into bud. But loneliness, frailty and sorrow lie in wait.",2010-08-26,1.4863,7.1,422 +2888,10648,Magnum Force,"""Dirty"" Harry Callahan is a San Francisco Police Inspector on the trail of a group of rogue cops who have taken justice into their own hands. When shady characters are murdered one after another in grisly fashion, only Dirty Harry can stop them.",1973-12-13,2.4804,7.117,1116 +2889,10545,The Hunchback of Notre Dame,"Isolated bell-ringer Quasimodo wishes to leave Notre Dame tower against the wishes of Judge Claude Frollo, his stern guardian and Paris' strait-laced Minister of Justice. His first venture to the outside world finds him Esmeralda, a kind-hearted and fearless Romani woman who openly stands up to Frollo's tyranny.",1996-06-21,5.2479,7.1,5160 +2890,522162,Midway,"The story of the Battle of Midway, and the leaders and soldiers who used their instincts, fortitude and bravery to overcome massive odds.",2019-11-06,4.0697,7.116,2568 +2891,25300,I'm Not Scared,"In a tiny community enclosed by wheat fields, the adults shelter indoors, while six children venture out on their bikes across the scorched, deserted countryside. Exploring a dilapidated and uninhabited farmhouse, nine-year-old Michele discovers a secret so momentous, so terrible, that he dares not tell anyone about it …",2003-02-08,1.0461,7.116,943 +2892,15400,Mickey's Once Upon a Christmas,"Mickey, Minnie, and their famous friends Goofy, Donald, Daisy and Pluto gather together to reminisce about the love, magic and surprises in three wonder-filled stories of Christmas past.",1999-10-31,1.7604,7.116,690 +2893,8697,Who Am I?,"A group of covert CIA operatives trailing a potential new energy source are double-crossed by corrupt agent Morgan, who causes a helicopter crash in remote South Africa. The sole survivor, suffering severe amnesia, is nursed to recovery by a kindly native tribe who call him ""Whoami"" after the question he keeps asking. With the help of a mysterious reporter Christine, Whoami pieces together his past and tracks the turncoat agent and his criminal cohorts.",1998-01-17,3.1281,7.1,918 +2894,711,Finding Forrester,Gus Van Sant tells the story of a young African American man named Jamal who confronts his talents while living on the streets of the Bronx. He accidentally runs into an old writer named Forrester who discovers his passion for writing. With help from his new mentor Jamal receives a scholarship to a private school.,2000-12-21,1.9512,7.116,1134 +2895,21521,Project A Part II,"Dragon is now transferred to be the police head of Sai Wan district, and has to contend with a gangster kingpin, anti-Manchu revolutionaries, some runaway pirates, Manchu Loyalists and a corrupt police superintendent.",1987-07-25,2.0787,7.115,304 +2896,12877,Dead Man's Shoes,A soldier returns to his small town and exacts a deadly revenge on the thugs who tormented his disabled brother while he was away.,2004-09-29,1.556,7.115,560 +2897,11050,Terms of Endearment,"Aurora, a finicky woman, is in search of true love while her daughter faces marital issues. Together, they help each other deal with problems and find reasons to live a joyful life.",1983-11-20,2.0935,7.115,780 +2898,127373,What Maisie Knew,"In New York City, a young girl is caught in the middle of her parents' bitter custody battle.",2013-05-02,0.8232,7.1,427 +2899,23169,Remember Me,"Still reeling from a heartbreaking family event and his parents' subsequent divorce, Tyler Hawkins discovers a fresh lease on life when he meets Ally Craig, a gregarious beauty who witnessed her mother's death. But as the couple draws closer, the fallout from their separate tragedies jeopardizes their love.",2010-03-11,2.5113,7.114,3592 +2900,11446,Welcome to the Dollhouse,An unattractive 7th grader struggles to cope with suburban life as the middle child with inattentive parents and bullies at school.,1995-09-10,1.1585,7.114,460 +2901,5916,The Getaway,A recently released ex-convict and his loyal wife go on the run after a heist goes wrong.,1972-12-13,1.9885,7.114,599 +2902,938614,Late Night with the Devil,"A live broadcast of a late-night talk show in 1977 goes horribly wrong, unleashing evil into the nation's living rooms.",2024-03-19,6.9323,7.118,1727 +2903,570670,The Invisible Man,"When Cecilia's abusive ex takes his own life and leaves her his fortune, she suspects his death was a hoax. As a series of coincidences turn lethal, Cecilia works to prove that she is being hunted by someone nobody can see.",2020-02-26,5.2219,7.113,5932 +2904,279229,Sapphire Blue,"Gwen has just discovered, that she's the final member of the secret time-traveling Circle of Twelve. Now she has to juggle with constant trips to the past, her relationships with Gideon and figuring out dark secrets surrounding the Circle.",2014-08-14,1.8389,7.113,1003 +2905,10497,Bitter Moon,A passenger on a cruise ship develops an irresistible infatuation with an eccentric paraplegic's wife.,1992-09-02,2.9757,7.113,795 +2906,533,Wallace & Gromit: The Curse of the Were-Rabbit,"Cheese-loving eccentric Wallace and his cunning canine pal, Gromit, investigate a mystery in Nick Park's animated adventure, in which the lovable inventor and his intrepid pup run a business ridding the town of garden pests. Using only humane methods that turn their home into a halfway house for evicted vermin, the pair stumble upon a mystery involving a voracious vegetarian monster that threatens to ruin the annual veggie-growing contest.",2005-09-15,4.5657,7.1,2919 +2907,334517,The Siege of Jadotville,Irish Commandant Pat Quinlan leads a stand off with troops against French and Belgian Mercenaries in the Congo during the early 1960s.,2016-09-19,1.9864,7.112,897 +2908,68722,The Master,"Freddie, a volatile, heavy-drinking veteran who suffers from post-traumatic stress disorder, finds some semblance of a family when he stumbles onto the ship of Lancaster Dodd, the charismatic leader of a new ""religion"" he forms after World War II.",2012-09-14,2.4938,7.112,3075 +2909,8051,Punch-Drunk Love,A socially awkward and volatile small business owner meets the love of his life after being threatened by a gang of scammers.,2002-10-11,4.0573,7.112,2488 +2910,428836,Ophelia,"Ophelia comes of age as lady-in-waiting for Queen Gertrude, and her singular spirit captures Hamlet's affections. As lust and betrayal threaten the kingdom, Ophelia finds herself trapped between true love and controlling her own destiny.",2019-06-28,1.9004,7.111,579 +2911,116149,Paddington,"A young Peruvian bear travels to London in search of a home. Finding himself lost and alone at Paddington Station, he meets the kindly Brown family, who offer him a temporary haven.",2014-11-24,5.847,7.111,3954 +2912,10531,Death and the Maiden,A political activist is convinced that her guest is a man who once tortured her for the government.,1994-05-04,1.408,7.1,522 +2913,2323,Field of Dreams,"Ray Kinsella is an Iowa farmer who hears a mysterious voice telling him to turn his cornfield into a baseball diamond. He does, but the voice's directions don't stop -- even after the spirits of deceased ballplayers turn up to play.",1989-04-21,2.6039,7.111,1565 +2914,561,Constantine,"John Constantine has literally been to Hell and back. When he teams up with a policewoman to solve the mysterious suicide of her twin sister, their investigation takes them through the world of demons and angels that exists beneath the landscape of contemporary Los Angeles.",2005-02-08,9.0451,7.1,7553 +2915,103758,Reality,"A dark comedy centering on the lives of a Neapolitan based family whose father, a fish merchant, is so infatuated with the reality TV show ""Grande Fratello"" (the Italian version of ""Big Brother"") he starts living his life as if he were on it.",2012-05-04,0.8657,7.11,337 +2916,48034,Little White Lies,"Despite a traumatic event, a group of friends decide to go ahead with their annual beach vacation. Their relationships, convictions, sense of guilt and friendship are sorely tested. They are finally forced to own up to the little white lies they've been telling each other.",2010-10-20,1.7671,7.11,1584 +2917,11634,Show Me Love,"Two teenage girls in small-town Sweden. Elin is beautiful, popular, and bored with life. Agnes is friendless, sad, and secretly in love with Elin.",1998-10-23,1.9928,7.1,557 +2918,10839,Cross of Iron,"It is 1943, and the German army—ravaged and demoralised—is hastily retreating from the Russian front. In the midst of the madness, conflict brews between the aristocratic yet ultimately pusillanimous Captain Stransky and the courageous Corporal Steiner. Stransky is the only man who believes that the Third Reich is still vastly superior to the Russian army. However, within his pompous persona lies a quivering coward who longs for the Iron Cross so that he can return to Berlin a hero. Steiner, on the other hand is cynical, defiantly non-conformist and more concerned with the safety of his own men rather than the horde of military decorations offered to him by his superiors.",1977-01-29,2.1139,7.11,448 +2919,7972,Before the Devil Knows You're Dead,"When two brothers organize the robbery of their parents' jewelry store, the job goes horribly wrong, triggering a series of events that send them and their family hurtling towards a shattering climax.",2007-09-26,3.1153,7.11,1592 +2920,487242,Suicide Squad: Hell to Pay,"It’s batter up at Belle Reve and that can only mean that Amanda Waller, the penitentiary’s cold and calculating warden, has a mission that only the damned will take on. It’s time to unleash Task Force X again, stacked with seasoned vets such as Deadshot, Captain Boomerang and Harley Quinn, these crafty criminals are joined by newcomers Copperhead, Killer Frost and the martial art master, Bronze Tiger! With the target objective being a mystical object so powerful that they’re willing to risk their own lives to steal it, you can be sure it will be collision of chaos, gunfire and attitudes. So, take aim for a raging road trip with the Suicide Squad!",2018-03-23,2.6546,7.109,682 +2921,433945,Tokyo Ghoul,"A Tokyo college student is attacked by a ghoul, a super-powered human who feeds on human flesh. He survives, but has become part ghoul and becomes a fugitive on the run.",2017-07-16,1.416,7.1,361 +2922,420818,The Lion King,"Simba idolizes his father, King Mufasa, and takes to heart his own royal destiny. But not everyone in the kingdom celebrates the new cub's arrival. Scar, Mufasa's brother—and former heir to the throne—has plans of his own. The battle for Pride Rock is ravaged with betrayal, tragedy and drama, ultimately resulting in Simba's exile. With help from a curious pair of newfound friends, Simba will have to figure out how to grow up and take back what is rightfully his.",2019-07-12,10.9836,7.108,10438 +2923,371638,The Disaster Artist,"An aspiring actor in Hollywood meets an enigmatic stranger by the name of Tommy Wiseau, the meeting leads the actor down a path nobody could have predicted; creating the worst movie ever made.",2017-03-12,2.6431,7.108,3610 +2924,11485,Take the Money and Run,"Virgil Starkwell is intent on becoming a notorious bank robber. Unfortunately for Virgil and his not-so-budding career, he is completely incompetent.",1969-08-18,0.9469,7.108,757 +2925,476,Drugstore Cowboy,"Portland, Oregon, 1971. Bob Hughes is the charismatic leader of a peculiar quartet, formed by his wife, Dianne, and another couple, Rick and Nadine, who skillfully steal from drugstores and hospital medicine cabinets in order to appease their insatiable need for drugs. But neither fun nor luck last forever.",1989-10-20,1.8303,7.108,578 +2926,473,Pi,"A mathematical genius discovers a link between numbers and reality, and thus believes he can predict the future.",1998-07-10,2.8429,7.108,2329 +2927,754067,Vicky and Her Mystery,"Stéphane decides to move to the beautiful mountains of Cantal in order to reconnect with his 8-year-old daughter, Victoria, who has been silent since her mother's disappearance. During a walk in the forest, a shepherd gives Victoria a puppy named ""Mystery"" who will gradually give her a taste for life. But very quickly, Stéphane discovers that the animal is in reality a wolf… Despite the warnings and the danger of this situation, he cannot bring himself to separate his daughter from this seemingly harmless ball of hair.",2021-12-15,1.906,7.107,507 +2928,517331,The Realm,"Manuel, a Spanish politician whose high-class lifestyle is based on nefarious and illegal business threatens to break his entire party after a newspaper exposes him to the public eye. Rather than admit to any wrongdoing, he decides to sell out his whole party in an effort to avoid jail time. It's a decision that will put many lives at risk.",2018-09-28,1.0225,7.107,442 +2929,291270,Anomalisa,An inspirational speaker becomes reinvigorated after meeting a lively woman who shakes up his mundane existence.,2015-12-30,2.5285,7.106,1750 +2930,59468,The Way,"When his son dies while hiking the famed Camino de Santiago pilgrimage route in the Pyrenees, Tom flies to France to claim the remains. Looking for insights into his estranged child’s life, he decides to complete the 500-mile mountain trek to Spain. Tom soon joins up with other travelers and realizes they’re all searching for something.",2010-09-10,2.3521,7.107,605 +2931,15588,OSS 117: Lost in Rio,"In 1967, OSS 117 is sent to Brazil in order to retrieve a microfilm list of French Nazi sympathizers, only to once again unknowingly set foot into a bigger international intrigue.",2009-04-15,1.6962,7.107,1476 +2932,11457,Life as a House,"When a man is diagnosed with terminal cancer, he takes custody of his misanthropic teenage son, for whom quality time means getting high, engaging in small-time prostitution, and avoiding his father.",2001-10-25,1.7259,7.107,424 +2933,1714,Fahrenheit 451,"In the future, the government maintains control of public opinion by outlawing literature and maintaining a group of enforcers, known as “firemen,” to perform the necessary book burnings. Fireman Montag begins to question the morality of his vocation…",1966-09-07,2.8402,7.107,1015 +2934,370755,Paterson,"A week in the life of Paterson, a poet bus driver, and his wife Laura, a very creative artist, who live in Paterson, New Jersey, hometown of many famous poets and artists.",2016-11-17,1.8538,7.106,1942 +2935,24804,Black Dynamite,"This is the story of 1970s African-American action legend Black Dynamite. The Man killed his brother, pumped heroin into local orphanages, and flooded the ghetto with adulterated malt liquor. Black Dynamite was the one hero willing to fight The Man all the way from the blood-soaked city streets to the hallowed halls of the Honky House.",2009-10-16,1.3155,7.106,655 +2936,9675,Sideways,"Two middle-aged men embark on a spiritual journey through Californian wine country. One is an unpublished novelist suffering from depression, and the other is only days away from walking down the aisle.",2004-10-22,2.4093,7.1,1743 +2937,551,The Poseidon Adventure,"When their ocean liner capsizes, a group of passengers struggle to survive and escape.",1972-12-01,2.9326,7.1,931 +2938,508,Love Actually,Eight very different couples deal with their love lives in various loosely interrelated tales all set during a frantic month before Christmas in London.,2003-09-07,5.3628,7.106,7011 +2939,591275,Fear Street: 1666,"In 1666, a colonial town is gripped by a hysterical witch-hunt that has deadly consequences for centuries to come, and it's up to teenagers in 1994 to finally put an end to their town's curse, before it's too late.",2021-07-14,2.5453,7.105,1850 +2940,14533,Gia,Gia Carangi meteorically rises to modeling fame in the late 1970s but becomes overconsumed by persistent loneliness and drug addiction.,1998-01-31,2.4681,7.105,780 +2941,11620,Quo Vadis,"After fierce Roman commander Marcus Vinicius becomes infatuated with beautiful Christian hostage Lygia, he begins to question the tyrannical leadership of the despotic emperor Nero.",1951-11-08,2.324,7.1,424 +2942,302401,Snowden,CIA employee Edward Snowden leaks thousands of classified documents to the press.,2016-09-15,3.1718,7.104,4442 +2943,18861,Naruto the Movie: Guardians of the Crescent Moon Kingdom,"Naruto Uzumaki, Kakashi Hatake, Sakura Haruno, and Rock Lee are assigned to protect the prince of the Land of the Moon, Michiru, during his world trip; other escorts had been hired, but quit due to being treated poorly. The Land of the Moon is a very wealthy nation, so Michiru tends to buy whatever he wants, and has a very materialistic worldview. His Hikaru, also acts in much the same manner.",2006-08-05,3.6892,7.104,466 +2944,11153,National Lampoon's Vacation,"Clark Griswold is on a quest to take his family to the Walley World theme park for a vacation, but things don't go exactly as planned.",1983-07-29,5.179,7.104,1624 +2945,1997,Two Brothers,"Two tigers are separated as cubs and taken into captivity, only to be reunited years later as enemies by an explorer (Pearce) who inadvertently forces them to fight each other.",2004-04-07,1.9931,7.104,838 +2946,573,Frenzy,"London is terrorized by a vicious sex killer known as The Necktie Murderer. Following the brutal slaying of his ex-wife, down-on-his-luck Richard Blaney is suspected by the police of being the killer. He goes on the run, determined to prove his innocence.",1972-05-25,1.9805,7.104,935 +2947,594530,Lamp Life,Bo Peep explains what happened to herself and her sheep between the events of Toy Story 2 and Toy Story 4.,2020-01-31,1.0273,7.103,312 +2948,437033,Toc Toc,"A group of patients meet at a prestigious psychologist's office. Apart from the day and time of the appointment, something else unites them all: all six suffer from OCD. But the plane bringing the doctor is unexpectedly delayed, which forces them to spend an endless wait until the doctor shows up. Will they be able to keep their manias, impulses, convulsions, obsessions and rituals at bay during the wait?",2017-09-01,3.0701,7.103,1235 +2949,14299,Cadillac Records,"The story of sex, violence, race and rock and roll in 1950s Chicago, and the exciting but turbulent lives of some of America's musical legends, including Muddy Waters, Leonard Chess, Little Walter, Howlin' Wolf, Etta James and Chuck Berry.",2008-12-05,1.8978,7.103,453 +2950,11447,The Son's Room,A psychoanalyst and his family go through profound emotional trauma when their son dies in a scuba diving accident.,2001-03-09,1.3154,7.105,524 +2951,2,Ariel,A Finnish man goes to the city to find a job after the mine where he worked is closed and his father commits suicide.,1988-10-21,1.4569,7.1,354 +2952,774752,The Guardians of the Galaxy Holiday Special,"On a mission to make Christmas unforgettable for Quill, the Guardians head to Earth in search of the perfect present.",2022-11-24,3.4843,7.1,2174 +2953,611698,A Writer's Odyssey,"Kongwen Lu is the author of a fantasy novel series following a heroic teenager, also named Kongwen, on a quest to end the tyrannical rule of Lord Redmane, under the guidance of a Black Armor. But through a strange twist of fate, the fantasy world of the novel begins to impact life in the real world, leading Guan Ning to accept a mission from Tu Ling to kill the author.",2021-02-12,3.599,7.1,328 +2954,567604,Once Upon a Deadpool,"A kidnapped Fred Savage is forced to endure Deadpool's PG-13 rendition of Deadpool 2, as a Princess Bride-esque story that's full of magic, wonder, and zero Fs.",2018-12-11,3.158,7.102,810 +2955,565179,The First King,"Romulus and Remus, two shepherds and loyal brothers, end up taking part to a journey that will lead one of them to be the founder of the greatest nation ever seen. However, the fate of the chosen one will pass from killing his own brother.",2019-01-31,1.3236,7.102,1114 +2956,209276,Starred Up,"19-year-old Eric, arrogant and ultra-violent, is prematurely transferred to the same adult prison facility as his estranged father. As his explosive temper quickly finds him enemies in both prison authorities and fellow inmates — and his already volatile relationship with his father is pushed past breaking point — Eric is approached by a volunteer psychotherapist, who runs an anger management group for prisoners. Torn between gang politics, prison corruption, and a glimmer of something better, Eric finds himself in a fight for his own life, unsure if his own father is there to protect him or join in punishing him.",2014-03-21,1.8085,7.102,969 +2957,10895,Pinocchio,A little wooden puppet yearns to become a real boy.,1940-02-23,7.1729,7.102,6029 +2958,9787,Lords of Dogtown,"The radical true story behind three teenage surfers from Venice Beach, California, who took skateboarding to the extreme and changed the world of sports forever. Stacy Peralta, Tony Alva and Jay Adams are the Z-Boys, a bunch of nobodies until they create a new style of skateboarding that becomes a worldwide phenomenon. But when their hobby becomes a business, the success shreds their friendship.",2005-06-03,2.2498,7.102,770 +2959,9631,The Negotiator,"The police try to arrest expert hostage negotiator Danny Roman, who insists he's being framed for his partner's murder in what he believes is an elaborate conspiracy. Thinking there's evidence in the Internal Affairs offices that might clear him, he takes everyone in the office hostage and demands that another well-known negotiator be brought in to handle the situation and secretly investigate the conspiracy.",1998-07-29,3.9554,7.102,2193 +2960,661539,A Complete Unknown,"New York, early 1960s. Against the backdrop of a vibrant music scene and tumultuous cultural upheaval, an enigmatic 19-year-old from Minnesota arrives in the West Village with his guitar and revolutionary talent, destined to change the course of American music.",2024-12-18,6.3957,7.101,1157 +2961,56292,Mission: Impossible - Ghost Protocol,"Ethan Hunt and his team are racing against time to track down a dangerous terrorist named Hendricks, who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.",2011-12-07,9.7408,7.101,10289 +2962,9829,United 93,"A real-time account of the events on United Flight 93, one of the planes hijacked on 9/11 that crashed near Shanksville, Pennsylvania when passengers foiled the terrorist plot.",2006-04-28,2.1906,7.101,1549 +2963,845222,Kingdom: Ashin of the North,"Tragedy, betrayal and a mysterious discovery fuel a woman's vengeance for the loss of her tribe and family.",2021-07-23,3.2793,7.1,576 +2964,30159,I Confess,"Unable, due to the seal of the confessional, to be forthcoming with information that would serve to clear himself during a murder investigation, a priest becomes the prime suspect.",1953-02-13,0.9464,7.1,456 +2965,25431,Adam's Rib,"A woman's attempted murder of her uncaring husband results in everyday quarrels in the lives of Adam and Amanda, a pair of happily married lawyers who end up on opposite sides of the case in court.",1949-11-18,1.9906,7.1,320 +2966,4552,A Tale of Two Sisters,"Two sisters return home after a stay in a mental institution, only to face disturbing events and a strained relationship with their stepmother. As eerie occurrences unfold, dark family secrets begin to surface, blurring the line between reality and nightmare.",2003-06-13,3.5805,7.1,1239 +2967,606952,The Goddess of Fortune,"Alessandro and Arturo have been together for over 15 years and, despite the feeling they still have for each other, their relationship is now at crisis. When Alessandro’s best friend, out of the blue, asks them to take care of her two kids for a few days, something changes in their daily routine and love will drive them to a crazy and unexpected turn in their life.",2019-12-19,0.8022,7.1,514 +2968,323027,Justice League: Gods and Monsters,"In an alternate universe, very different versions of DC's Trinity fight against the government after they are framed for an embassy bombing.",2015-06-18,1.6689,7.099,591 +2969,22383,The Professionals,An arrogant Texas millionaire hires four adventurers to rescue his kidnapped wife from a notorious Mexican bandit.,1966-11-01,2.3622,7.1,322 +2970,327,Brother,"A Japanese Yakuza gangster's deadly existence in his homeland gets him exiled to Los Angeles, where he is taken in by his little brother and his brother's gang.",2000-12-13,1.9612,7.099,492 +2971,927855,Love Tactics,"An ad executive and a fashion designer-blogger don't believe in love, so they place a bet to make the other fall head over heels - with unusual tactics.",2022-02-11,1.9395,7.098,315 +2972,336843,Maze Runner: The Death Cure,"Thomas leads his group of escaped Gladers on their final and most dangerous mission yet. To save their friends, they must break into the legendary Last City, a WCKD-controlled labyrinth that may turn out to be the deadliest maze of all. Anyone who makes it out alive will get answers to the questions the Gladers have been asking since they first arrived in the maze.",2018-01-10,9.2867,7.098,8057 +2973,680531,The Mad Women's Ball,A woman who is unfairly institutionalized at a Paris asylum plots to escape with the help of one of its nurses. Based on the novel 'Le bal des folles' by Victoria Mas.,2021-09-12,3.1477,7.097,330 +2974,22536,Thirst,"A respected priest volunteers for an experimental procedure that may lead to a cure for a deadly virus. He gets infected and dies, but a blood transfusion of unknown origin brings him back to life. Now, he’s torn between faith and bloodlust, and has a newfound desire for the wife of a childhood friend.",2009-04-30,4.7679,7.097,979 +2975,9281,Witness,"While protecting an Amish boy - who is the sole witness to a brutal murder - and his mother, a detective is forced to seek refuge within their community when his own life is threatened.",1985-02-08,3.5451,7.097,1767 +2976,1259,Notes on a Scandal,"A veteran high school teacher befriends a younger art teacher, who is having an affair with one of her 15-year-old students. However, her intentions with this new ""friend"" also go well beyond platonic friendship.",2006-12-25,2.2438,7.097,929 +2977,11382,Bullets Over Broadway,"After young playwright, David Shayne obtains funding for his play from gangster Nick Valenti, Nick's girlfriend Olive miraculously lands the role of a psychiatrist—but not only is she a bimbo who could never pass for a psychiatrist—she's a dreadful actress. David puts up with the leading man who is a compulsive eater, the grand dame who wants her part jazzed up, and Olive's interfering hitman/bodyguard—but, eventually he must decide whether art or life is more important.",1994-10-14,1.5233,7.096,638 +2978,9322,La Femme Nikita,"A beautiful felon, sentenced to life in prison for the murder of a policeman, is given a second chance – as a secret political assassin controlled by the government.",1990-02-21,3.0354,7.1,2027 +2979,856289,Creation of the Gods I: Kingdom of Storms,"Based on the most well-known classical fantasy novel of China, Fengshenyanyi, the trilogy is a magnificent eastern high fantasy epic that recreates the prolonged mythical wars between humans, immortals and monsters, which happened more than three thousand years ago.",2023-07-15,25.9557,7.095,427 +2980,799876,The Outfit,"Leonard is an English tailor who used to craft suits on London’s world-famous Savile Row. After a personal tragedy, he’s ended up in Chicago, operating a small tailor shop in a rough part of town where he makes beautiful clothes for the only people around who can afford them: a family of vicious gangsters.",2022-02-25,2.9075,7.095,1221 +2981,420817,Aladdin,A kindhearted street urchin named Aladdin embarks on a magical adventure after finding a lamp that releases a wisecracking genie while a power-hungry Grand Vizier vies for the same lamp that has the power to make their deepest wishes come true.,2019-05-22,8.18,7.094,10299 +2982,12481,The Big Boss,"Cheng is a young Chinese mainlander who moves in with his expatriate cousins to work at an ice factory in Thailand. He does this with a family promise never to get involved in any fights. However, when members of his family begin disappearing after meeting the management of the factory, the resulting mystery and pressures force him to break that vow and take on the villainy of the Big Boss.",1971-10-23,4.8164,7.095,774 +2983,817758,TÁR,"As celebrated conductor Lydia Tár starts rehearsals for a career-defining symphony, the consequences of her past choices begin to echo in the present.",2022-09-23,3.0197,7.094,1382 +2984,763165,The Burial,"When a handshake deal goes sour, funeral home owner Jeremiah O'Keefe enlists charismatic, smooth-talking attorney Willie E. Gary to save his family business. Tempers flare and laughter ensues as the unlikely pair bond while exposing corporate corruption and racial injustice.",2023-10-06,4.0579,7.094,545 +2985,677179,Creed III,"After dominating the boxing world, Adonis Creed has thrived in his career and family life. When a childhood friend and former boxing prodigy, Damian Anderson, resurfaces after serving a long sentence in prison, he is eager to prove that he deserves his shot in the ring. The face-off between former friends is more than just a fight. To settle the score, Adonis must put his future on the line to battle Damian — a fighter with nothing to lose.",2023-03-01,9.4434,7.1,2683 +2986,428449,A Ghost Story,"Recently deceased, a white-sheeted ghost returns to his suburban home to console his bereft wife, only to find that in his spectral state he has become unstuck in time, forced to watch passively as the life he knew and the woman he loves slowly slip away.",2017-04-24,2.4325,7.094,2389 +2987,71689,Phineas and Ferb The Movie: Across the 2nd Dimension,"Phineas and Ferb get trapped in an alternate dimension where the evil Doofenshmirtz rules the tri-state area. They must find a way back home with the help of their pet platypus named Perry, who they discover is a secret agent.",2011-08-05,5.19,7.094,576 +2988,20410,Scooby-Doo and the Alien Invaders,"A cosmic case of flying saucers, intergalactic intrigue and out-of-this-world romance launches Scooby-Doo! and the Mystery Inc., Gang into their most unearthly adventure ever.",2000-10-03,1.6983,7.094,375 +2989,8079,Om Shanti Om,"Reincarnated 30 years after being killed in a suspicious on-set fire, a small-time actor is determined to punish the person who ignited the blaze.",2007-11-07,2.4617,7.094,367 +2990,2007,Lorenzo's Oil,Augusto and Michaela Odone are dealt a cruel blow by fate when their five-year-old son Lorenzo is diagnosed with a rare and incurable disease. But the Odones' persistence and faith leads to an unorthodox cure which saves their boy and re-writes medical history.,1992-12-30,1.5362,7.1,540 +2991,618353,Batman: Death in the Family,Tragedy strikes the Batman's life again when Robin Jason Todd tracks down his birth mother only to run afoul of the Joker. An adaptation of the 1988 comic book storyline of the same name.,2020-10-13,2.8834,7.093,455 +2992,14292,Miracle,"When college coach Herb Brooks is hired to helm the 1980 U.S. men's Olympic hockey team, he brings a unique and brash style to the ice. After assembling a team of hot-headed college all-stars, who are humiliated in an early match, Brooks unites his squad against a common foe: the heavily-favored Soviet team.",2004-02-06,1.7265,7.093,625 +2993,4972,The Green Butchers,"A black comedy featuring two butchers, Svend ""Sweat"" and Bjarne, who start their own shop to get away from their arrogant boss. Cannibalism is soon introduced to the plot, and further complications arise due to the reappearance of Bjarne's intellectually disabled twin brother Eigil.",2003-03-08,1.6643,7.1,302 +2994,1581,The Holiday,"Two women, one American and one British, swap homes at Christmastime following bad breakups. Each woman finds romance with a local man but realizes that the imminent return home may end the relationship.",2006-12-05,4.5027,7.093,5320 +2995,895549,NYAD,Athlete Diana Nyad sets out at 60 to achieve a nearly impossible lifelong dream: to swim from Cuba to Florida across more than 100 miles of open ocean.,2023-10-18,1.5679,7.092,486 +2996,10141,Dirty Rotten Scoundrels,"Con artist Lawrence Jamieson is a longtime resident of a luxurious coastal resort, where he enjoys the lavish fruits of his deceptions -- that is, until a competitor, Freddy Benson, shows up. When the new guy's lowbrow tactics impinge on his own sophisticated work and believing him to be the infamous conman 'The Jackal', Lawrence resolves to get rid of him. Confident of his own duplicitous talents, he challenges Freddy to a winner-takes-all competition: whoever swindles their latest mark, American heiress Janet Colgate, out of $50,000 first can stay, while the other must leave town.",1988-12-14,2.4935,7.092,927 +2997,8222,High Heels,"After being estranged for 15 years, flamboyant actress Becky del Paramo re-enters her daughter Rebeca's life when she comes to perform a concert. Rebeca, she finds, is now married to one of Becky's ex-lovers, Manuel. The mother and daughter begin making up for lost time, when suddenly, a murder occurs...",1991-10-23,2.1079,7.092,431 +2998,7913,Rang De Basanti,"After a group of friends graduate from Delhi University, they listlessly haunt their old campus, until a British filmmaker casts them in a film she's making about freedom fighters under British rule. Although the group is largely apolitical, the tragic death of a friend owing to local government corruption awakens their patriotism. Inspired by the freedom fighters they represent in the film, the friends collectively decide to avenge the killing.",2006-01-26,1.5839,7.092,464 +2999,14626,Beau Travail,"Foreign Legion officer Galoup recalls his once glorious life, training troops in the Gulf of Djibouti. His existence there was happy, strict and regimented, until the arrival of a promising young recruit, Sentain, plants the seeds of jealousy in Galoup's mind.",2000-05-03,1.4913,7.094,331 +3000,597219,The Half of It,"Shy, straight-A student Ellie is hired by sweet but inarticulate jock Paul, who needs help wooing the most popular girl in school. But their new and unlikely friendship gets tricky when Ellie discovers she has feelings for the same girl.",2020-05-01,2.4569,7.09,1535 +3001,102651,Maleficent,"A beautiful, pure-hearted young woman, Maleficent has an idyllic life growing up in a peaceable forest kingdom, until one day when an invading army threatens the harmony of the land. She rises to be the land's fiercest protector, but she ultimately suffers a ruthless betrayal – an act that begins to turn her heart into stone. Bent on revenge, Maleficent faces an epic battle with the invading King's successor and, as a result, places a curse upon his newborn infant Aurora. As the child grows, Maleficent realizes that Aurora holds the key to peace in the kingdom – and to Maleficent's true happiness as well.",2014-05-28,11.5552,7.089,13369 +3002,63310,Bullhead,A young cattle farmer is approached by an unscrupulous veterinarian to make a shady deal with a notorious beef trader.,2011-02-02,1.2381,7.1,357 +3003,13701,Immortal Beloved,"A chronicle of the life of infamous classical composer Ludwig van Beethoven and his painful struggle with hearing loss. Following Beethoven's death in 1827, his assistant, Schindler, searches for an elusive woman referred to in the composer's love letters as ""immortal beloved."" As Schindler solves the mystery, a series of flashbacks reveal Beethoven's transformation from passionate young man to troubled musical genius.",1994-12-16,1.6381,7.09,347 +3004,11575,The Great Race,"Professional daredevil and white-suited hero, The Great Leslie, convinces turn-of-the-century auto makers that a race from New York to Paris (westward across America, the Bering Straight and Russia) will help to promote automobile sales. Leslie's arch-rival, the mustached and black-attired Professor Fate vows to beat Leslie to the finish line in a car of Fate's own invention.",1965-07-01,2.3755,7.09,345 +3005,653851,Devotion,The harrowing true story of two elite US Navy fighter pilots during the Korean War. Their heroic sacrifices would ultimately make them the Navy's most celebrated wingmen.,2022-11-23,2.4742,7.088,762 +3006,618354,Superman: Man of Tomorrow,"It’s the dawn of a new age of heroes, and Metropolis has just met its first. But as Daily Planet intern Clark Kent – working alongside reporter Lois Lane – secretly wields his alien powers of flight, super-strength and x-ray vision in the battle for good, there’s even greater trouble on the horizon.",2020-08-23,2.5877,7.088,461 +3007,563,Starship Troopers,"Set in the future, the story follows a young soldier named Johnny Rico and his exploits in the Mobile Infantry. Rico's military career progresses from recruit to non-commissioned officer and finally to officer against the backdrop of an interstellar war between mankind and an arachnoid species known as ""the Bugs.""",1997-11-07,5.8679,7.088,5148 +3008,266,Contempt,"A philistine in the art film business, Jeremy Prokosch is a producer unhappy with the work of his director. Prokosch has hired Fritz Lang to direct an adaptation of ""The Odyssey,"" but when it seems that the legendary filmmaker is making a picture destined to bomb at the box office, he brings in a screenwriter to energize the script. The professional intersects with the personal when a rift develops between the writer and his wife.",1963-10-29,2.1015,7.088,875 +3009,633515,The Forgotten Battle,"In WWII's final years, a soldier in the German army, a British glider pilot, and a Dutch resistance fighter's paths intertwine. Their choices shape destinies, impacting not only their freedom but also that of others.",2020-12-14,1.4833,7.1,722 +3010,31602,The Chase,The escape of Bubber Reeves from prison affects the inhabitants of a small Southern town.,1966-02-18,1.5598,7.087,303 +3011,836225,The Exorcism of God,"An American priest working in Mexico is considered a saint by many local parishioners. However, due to a botched exorcism, he carries a secret that’s eating him alive until he gets an opportunity to face his demon one final time.",2022-03-11,3.8324,7.086,1112 +3012,438740,Salyut-7,"USSR, June 1985. After contact with the Salyut 7 space station is lost, cosmonauts Vladimir Dzhanibekov and Viktor Savinykh dock with the empty, frozen craft, and bring her back to life. Based on actual events.",2017-09-22,1.3695,7.086,475 +3013,270400,Breathe,"Charlie, a 17-year-old girl tortured by doubt, is thrilled when she becomes friends with Sarah, but when Sarah tires of Charlie and looks for a new friend, their relationship takes an ominous turn.",2014-11-12,1.4601,7.1,467 +3014,14943,Crows Zero,"The students of Suzuran High compete for the King of School title. An ex-graduate yakuza is sent to kill the son of a criminal group, but he can't make himself do it as he reminds him of his youth.",2007-10-26,1.5622,7.1,359 +3015,11937,The Gods Must Be Crazy II,"Xixo is back again. This time, his children accidentally stow away on a fast-moving poachers' truck, unable to get off, and Xixo sets out to rescue them. Along the way, he encounters a couple of soldiers trying to capture each other and a pilot and passenger of a small plane, who are each having a few problems of their own.",1989-07-01,2.5061,7.086,512 +3016,1584,School of Rock,"Fired from his band and hard up for cash, guitarist and vocalist Dewey Finn finagles his way into a job as a fifth-grade substitute teacher at a private school, where he secretly begins teaching his students the finer points of rock 'n' roll. The school's hard-nosed principal is rightly suspicious of Finn's activities. But Finn's roommate remains in the dark about what he's doing.",2003-10-03,4.7917,7.086,5842 +3017,1547,The Lost Boys,"When an unsuspecting town newcomer is drawn to local blood fiends, the Frog brothers and other unlikely heroes gear up to rescue him.",1987-07-31,3.6512,7.1,2156 +3018,823464,Godzilla x Kong: The New Empire,"Following their explosive showdown, Godzilla and Kong must reunite against a colossal undiscovered threat hidden within our world, challenging their very existence – and our own.",2024-03-27,17.7849,7.087,4291 +3019,458423,Mamma Mia! Here We Go Again,"Five years after meeting her three fathers, Sophie Sheridan prepares to open her mother’s hotel. In 1979, young Donna Sheridan meets the men who each could be Sophie’s biological father.",2018-07-18,4.0674,7.085,3449 +3020,271714,Love & Mercy,"In the late 1960s, the Beach Boys' Brian Wilson stops touring, produces ""Pet Sounds"" and begins to lose his grip on reality. By the 1980s, under the sway of a controlling therapist, he finds a savior in Melinda Ledbetter.",2015-05-29,1.3084,7.085,711 +3021,8764,Top Secret!,"Popular and dashing American singer Nick Rivers travels to East Germany to perform in a music festival. When he loses his heart to the gorgeous Hillary Flammond, he finds himself caught up in an underground resistance movement. Rivers joins forces with Agent Cedric and Flammond to attempt the rescue of her father, Dr. Paul, from the Germans, who have captured the scientist in hopes of coercing him into building a new naval mine.",1984-06-08,2.8462,7.1,1267 +3022,6173,Read My Lips,She is almost deaf and she lip-reads. He is an ex-convict. She wants to help him. He thinks no one can help except himself.,2001-10-17,1.2134,7.085,343 +3023,3059,Intolerance: Love's Struggle Throughout the Ages,"The story of a poor young woman, separated by prejudice from her husband and baby, is interwoven with tales of intolerance from throughout history.",1916-09-04,1.8938,7.085,355 +3024,401,Garden State,"Andrew returns to his hometown for the funeral of his mother, a journey that reconnects him with past friends. The trip coincides with his decision to stop taking his powerful antidepressants. A chance meeting with Sam - a girl also suffering from various maladies - opens up the possibility of rekindling emotional attachments, confronting his psychologist father, and perhaps beginning a new life.",2004-07-28,2.0905,7.085,1920 +3025,321741,Concussion,"A dramatic thriller based on the incredible true David vs. Goliath story of American immigrant Dr. Bennet Omalu, the brilliant forensic neuropathologist who made the first discovery of CTE, a football-related brain trauma, in a pro player and fought for the truth to be known. Omalu's emotional quest puts him at dangerous odds with one of the most powerful institutions in the world.",2015-11-12,2.7315,7.084,2614 +3026,203801,The Man from U.N.C.L.E.,"At the height of the Cold War, a mysterious criminal organization plans to use nuclear weapons and technology to upset the fragile balance of power between the United States and Soviet Union. CIA agent Napoleon Solo and KGB agent Illya Kuryakin are forced to put aside their hostilities and work together to stop the evildoers in their tracks. The duo's only lead is the daughter of a missing German scientist, whom they must find soon to prevent a global catastrophe.",2015-08-13,5.156,7.084,6521 +3027,43539,The Next Three Days,"A married couple's life is turned upside down when the wife is accused of murdering her boss. Her husband John would spend the next few years trying to get her released, but there's no evidence that negates the evidence against her. When the strain of being separated from her husband and son gets to her, John decides to find a way to break her out.",2010-11-18,3.8586,7.084,2941 +3028,12579,The Woman Next Door,"Madame Jouve, the narrator, tells the tragedy of Bernard and Mathilde. Bernard was living happily with his wife Arlette and his son Thomas. One day, a couple, Philippe and Mathilde Bauchard, moves into the next house. This is the accidental reunion of Bernard and Mathilde, who had a passionate love affair years ago. The relationship revives... A somber study of human feelings.",1981-09-30,1.6944,7.1,323 +3029,12545,Jesus Christ Superstar,"As played out by a theatre troupe, the last days of Jesus Christ are depicted from the perspective of Judas Iscariot, his betrayer. As Jesus' following increases, Judas begins to worry that Jesus is falling for his own hype, forgetting the principles of his teachings and growing too close to the prostitute Mary Magdalene.",1973-08-15,2.0102,7.1,574 +3030,2383,The Bear,An orphan bear cub hooks up with an adult male as they try to dodge human hunters.,1988-10-21,2.2137,7.084,496 +3031,269494,A Hard Day,"After trying to cover up a car accident that left a man dead, a crooked homicide detective is stalked by a mysterious man claiming to have witnessed the event.",2014-05-29,1.5101,7.083,458 +3032,44115,127 Hours,The true story of mountain climber Aron Ralston's remarkable adventure to save himself after a fallen boulder crashes on his arm and traps him in an isolated canyon in Utah.,2010-11-12,5.4244,7.084,7745 +3033,581389,Space Sweepers,"When the crew of a space junk collector ship called The Victory discovers a humanoid robot named Dorothy that's known to be a weapon of mass destruction, they get involved in a risky business deal which puts their lives at stake.",2021-02-05,2.4608,7.082,1081 +3034,36955,True Lies,"A fearless, globe-trotting, terrorist-battling secret agent has his life turned upside down when he discovers his wife might be having an affair with a used car salesman while terrorists smuggle nuclear war heads into the United States.",1994-07-15,6.3186,7.082,4286 +3035,19265,Whatever Works,"Whatever Works explores the relationship between a crotchety misanthrope, Boris and a naïve, impressionable young runaway from the south, Melody. When Melody's uptight parents arrive in New York to rescue her, they are quickly drawn into wildly unexpected romantic entanglements. Everyone discovers that finding love is just a combination of lucky chance and appreciating the value of ""whatever works.""",2009-06-19,2.3456,7.082,1782 +3036,1900,Traffic,"An exploration of the United States of America's war on drugs from multiple perspectives. For the new head of the Office of National Drug Control Policy, the war becomes personal when he discovers his well-educated daughter is abusing cocaine within their comfortable suburban home. In Mexico, a flawed, but noble policeman agrees to testify against a powerful general in league with a cartel, and in San Diego, a drug kingpin's sheltered trophy wife must learn her husband's ruthless business after he is arrested, endangering her luxurious lifestyle.",2000-12-27,3.7426,7.082,2245 +3037,1374,Rocky IV,"Rocky Balboa holds the world heavyweight championship, but a new challenger has stepped forward: Drago, a six-foot-four, 261-pound fighter who has the backing of the Soviet Union. This time, Rocky's training regimen takes him to Siberia, where he prepares for a globally televised match in the heart of Moscow. But nothing can truly prepare him for what he's about to face – a fight to the finish, in which he must defend not only himself, but also the honor of his country!",1985-11-21,6.9992,7.1,4586 +3038,846433,The Enforcer,"A noir thriller set in Miami, the film follows an enforcer who discovers his femme fatale boss has branched out into cyber sex trafficking, putting a young runaway he’s befriended at risk. He sacrifices everything to save the young girl from the deadly organization he’s spent his life building.",2022-09-22,16.7703,7.087,452 +3039,188538,Remember Sunday,"A lonely, down-on-her-luck waitress meets a handsome, quirky jewelry store clerk and thinks that maybe, finally, she's met Mr. Right. The more Molly gets to know Gus, the more she's intrigued by him. But she's also mystified. Gus is absent-minded, preoccupied. Is he hiding something? The short answer is: yes. He's reluctant to share with her that since suffering a brain aneurysm, he's totally lost his short-term memory. Every day is a brand new day, his life starts anew. Every day he sees Molly he struggles to remember who she is and what she represents. Every day, he has to fall in love with her all over again.",2013-04-21,0.9771,7.081,496 +3040,1440,Little Children,"The lives of two lovelorn spouses from separate marriages, a registered sex offender, and a disgraced ex-police officer intersect as they struggle to resist their vulnerabilities and temptations.",2006-10-06,3.9644,7.081,1062 +3041,11942,Bring Me the Head of Alfredo Garcia,An American bartender and his prostitute girlfriend go on a road trip through the Mexican underworld to collect a $1 million bounty on the head of a dead gigolo.,1974-08-01,1.2716,7.1,387 +3042,3073,Bud Abbott and Lou Costello Meet Frankenstein,"Baggage handlers Bud and Lou accidentally stumble upon Frankenstein's Monster, Dracula and the Wolf Man.",1948-06-15,1.5236,7.1,327 +3043,13041,El Topo,"El Topo decides to confront warrior Masters on a trans-formative desert journey he begins with his 6 year old son, who must bury his childhood totems to become a man.",1970-12-18,1.3133,7.1,617 +3044,11772,The Haunting,Dr. John Markway invites three distinct individuals to the eerie and isolated Hill House to be subjects for a sleep disorder study. The unfortunate guests discover that Markway is far more interested in the sinister mansion itself — and they soon see the true nature of its horror.,1963-08-21,1.3465,7.1,668 +3045,11209,The Alamo,The legendary true story of a small band of soldiers who sacrificed their lives in hopeless combat against a massive army in order to prevent a tyrant from smashing the new Republic of Texas.,1960-10-23,1.8231,7.1,372 +3046,832964,Lee,"The true story of photographer Elizabeth ""Lee"" Miller, a fashion model who became an acclaimed war correspondent for Vogue magazine during World War II.",2024-09-12,3.7669,7.1,493 +3047,179150,Reality,"A wanna-be director is given 48 hours by a producer to find the best groan of pain, worthy of an Oscar, as the only condition to back his film.",2015-02-18,0.8492,7.078,531 +3048,474354,22 July,"On 22 July 2011, neo-Nazi terrorist Anders Behring Breivik murdered 77 young people attending a Labour Party Youth Camp on Utøya Island outside of Oslo. This three-part story focuses on the survivors, the political leadership of Norway, and the lawyers involved.",2018-10-04,2.0941,7.077,1209 +3049,399121,An Officer and a Spy,"In 1894, French Captain Alfred Dreyfus is wrongfully convicted of treason and sentenced to life imprisonment at the Devil’s Island penal colony.",2019-09-30,1.9229,7.077,1538 +3050,30197,The Producers,"Broadway producer Max Bialystock and his accountant, Leo Bloom plan to make money by charming wealthy old biddies to invest in a production many times over the actual cost, and then put on a sure-fire flop, so nobody will ask for their money back – and what can be a more certain flop than a tasteless musical celebrating Hitler.",1968-03-18,2.1746,7.1,826 +3051,13751,Akeelah and the Bee,"11-year-old Akeelah Anderson has a way with words. After winning her schoolwide spelling bee, she decides to enter the competition, despite her classmates' derision and the antipathy of her mother Tanya. Thanks to the efforts of her teacher Dr. Larabee, she reaches the finals. As she gets to know her fellow competitors, Akeelah realizes that coming first isn't everything in life.",2006-04-28,1.7543,7.1,339 +3052,1548,Ghost World,"Two quirky, cynical teenaged girls try to figure out what to do with their lives after high school graduation. After they play a prank on an eccentric, middle aged record collector, one of them befriends him, which causes a rift in the girls’ friendship.",2001-07-20,2.4212,7.076,1479 +3053,436931,Pokémon the Movie: I Choose You!,"Ash Ketchum wakes up late one morning after having broken his alarm clock in his sleep. He eventually makes it to Professor Oak's lab, but is told that the three starter List of Pokémon (Bulbasaur, Squirtle, and Charmander) have already been taken by Trainers who were on time. However, Oak reveals that he has one more Pokémon, an Electric-type named Pikachu. Despite its volatile and feisty personality, as well as its refusal to get inside a Poké Ball, Ash happily takes Pikachu for his journey.",2017-07-15,2.6237,7.076,642 +3054,17443,...And Justice for All,An ethical Baltimore defense lawyer disgusted with rampant legal corruption is forced to defend a judge he despises in a rape trial under the threat of being disbarred.,1979-10-19,1.7613,7.076,542 +3055,3291,"Good Night, and Good Luck.",The story of journalist Edward R. Murrow's stand against Senator Joseph McCarthy's anti-communist witch-hunts in the early 1950s.,2005-09-16,1.9685,7.076,1033 +3056,860,WarGames,"High school student David Lightman has a talent for hacking. But while trying to hack into a computer system to play unreleased video games, he unwittingly taps into the Department of Defense's war computer and initiates a confrontation of global proportions. Together with his friend and a wizardly computer genius, David must race against time to outwit his opponent and prevent a nuclear Armageddon.",1983-06-03,4.429,7.076,1999 +3057,11042,The Barbarian Invasions,"In this belated sequel to 'The Decline of the American Empire', middle-aged Montreal college professor, Remy, learns that he is dying of liver cancer. His ex-wife, Louise, asks their estranged son, Sebastian, a successful businessman living in London, to come home. Sebastian makes the impossible happen, using his contacts and disrupting the Canadian healthcare system in every way possible to help his father fight his terminal illness to the bitter end, while reuniting some of Remy's old friends, including Pierre, Alain, Dominique, Diane, and Claude, who return to see their friend before he passes on.",2003-09-24,1.3848,7.1,378 +3058,203,Mean Streets,"A small-time hood must choose from among love, friendship and the chance to rise within the mob.",1973-10-14,2.3398,7.075,2174 +3059,823951,November,"In November 2015, a series of unprecedented and deadly attacks hits Paris. The anti-terrorist police led by Heloise and her chief commander Fred - face an unprecedented level of pressure: in a race against the clock, they must find the perpetrators of the attacks as quickly as possible before they can strike again, travelling across Europe and beyond in one of the biggest manhunts in history.",2022-10-05,1.6007,7.074,805 +3060,657,From Russia with Love,"Agent 007 is back in the second installment of the James Bond series, this time battling a secret crime organization known as SPECTRE. Russians Rosa Klebb and Kronsteen are out to snatch a decoding device known as the Lektor, using the ravishing Tatiana to lure Bond into helping them. Bond willingly travels to meet Tatiana in Istanbul, where he must rely on his wits to escape with his life in a series of deadly encounters with the enemy.",1963-10-10,5.6185,7.1,3135 +3061,1084199,Companion,"During a weekend getaway at a secluded lakeside estate, a group of friends finds themselves entangled in a web of secrets, deception, and advanced technology. As tensions rise and loyalties are tested, they uncover unsettling truths about themselves and the world around them.",2025-01-22,25.2416,7.073,1563 +3062,369523,The Tale,An investigation into one woman’s memory as she‘s forced to re-examine her first sexual relationship and the stories we tell ourselves in order to survive.,2018-01-20,2.1682,7.073,449 +3063,152584,Blue Is the Warmest Color,"Adèle's life is changed when she meets Emma, a young woman with blue hair, who will allow her to discover desire, to assert herself as a woman and as an adult. In front of others, Adele grows, seeks herself, loses herself, finds herself.",2013-10-09,5.4711,7.073,4698 +3064,421,The Life Aquatic with Steve Zissou,"Renowned oceanographer Steve Zissou has sworn vengeance upon the rare shark that devoured a member of his crew. In addition to his regular team, he is joined on his boat by Ned, a man who believes Zissou to be his father, and Jane, a journalist pregnant by a married man. They travel the sea, all too often running into pirates and, perhaps more traumatically, various figures from Zissou's past, including his estranged wife, Eleanor.",2004-12-10,2.9194,7.073,3003 +3065,787699,Wonka,"Willy Wonka – chock-full of ideas and determined to change the world one delectable bite at a time – is proof that the best things in life begin with a dream, and if you’re lucky enough to meet Willy Wonka, anything is possible.",2023-12-06,10.1506,7.07,3985 +3066,518896,Warriors of Future,"When a meteor carrying a destructive plant strikes the world, a suicide squad is given hours to save their post-apocalyptic city from total collapse.",2022-08-05,3.5788,7.072,438 +3067,283552,The Light Between Oceans,A lighthouse keeper and his wife living off the coast of Western Australia raise a baby they rescue from an adrift rowboat.,2016-09-02,1.7665,7.1,1376 +3068,38397,"The Legend of Al, John and Jack","Hapless Depression-era gangsters Al, John and Jack find out their boss wants to get rid of them and come up with a plan to sell him to the FBI, but Al's short-term memory loss could make it difficult.",2002-12-13,0.355,7.072,1175 +3069,14291,Searching for Bobby Fischer,A seven-year-old chess prodigy refuses to harden himself in order to become a champion like the famous but unlikable Bobby Fischer.,1993-08-13,3.0221,7.073,595 +3070,1715,The Cider House Rules,"Homer is an orphan who was never adopted, becoming the favorite of orphanage director Dr. Larch. Dr. Larch imparts his full medical knowledge on Homer, who becomes a skilled, albeit unlicensed, physician. But Homer yearns for a self-chosen life outside the orphanage. What will Homer learn about life and love in the cider house? What of the destiny that Dr. Larch has planned for him?",1999-12-17,3.3221,7.074,1215 +3071,1623,Brubaker,The new warden of a small prison farm in Arkansas tries to clean it up of corruption after initially posing as an inmate.,1980-06-20,1.5562,7.072,480 +3072,449749,The Leisure Seeker,"A runaway couple go on an unforgettable journey from Boston to Key West, recapturing their passion for life and their love for each other on a road trip that provides revelation and surprise right up to the very end.",2018-01-03,1.3622,7.1,482 +3073,26736,Wizards of Waverly Place: The Movie,A young wizard accidentally conjures a spell that puts her family in jeopardy.,2009-08-28,2.5749,7.071,1616 +3074,13580,The Spy Who Came In from the Cold,"British agent Alec Leamas refuses to come in from the Cold War during the 1960s, choosing to face another mission, which may prove to be his final one.",1965-12-16,1.4981,7.1,312 +3075,2998,Zabriskie Point,"Anthropology student Daria, who's helping a property developer build a village in the Los Angeles desert, and dropout Mark, who's wanted by the authorities for allegedly killing a policeman during a student riot, accidentally encounter each other in Death Valley and soon begin an unrestrained romance.",1970-03-26,1.7874,7.071,414 +3076,1931,Stomp the Yard,"After the death of his younger brother, a troubled 19-year-old street dancer from Los Angeles is able to bypass juvenile hall by enrolling in the historically black, Truth University in Atlanta, Georgia. But his efforts to get an education and woo the girl he likes are sidelined when he is courted by the top two campus fraternities, both of which want and need his fierce street-style dance moves to win the highly coveted national step show competition.",2007-05-16,3.0231,7.071,479 +3077,926,Galaxy Quest,"For four years, the courageous crew of the NSEA protector - ""Commander Peter Quincy Taggart"", ""Lt. Tawny Madison and ""Dr.Lazarus"" - set off on a thrilling and often dangerous mission in space...and then their series was cancelled! Now, twenty years later, aliens under attack have mistaken the Galaxy Quest television transmissions for ""historical documents"" and beam up the crew of has-been actors to save the universe. With no script, no director and no clue, the actors must turn in the performances of their lives.",1999-12-25,3.8745,7.071,2370 +3078,799583,The Ministry of Ungentlemanly Warfare,"During World War II, the British Army assigns a group of competent soldiers to carry out a mission against the Nazi forces behind enemy lines... A true story about a secret British WWII organization — the Special Operations Executive. Founded by Winston Churchill, their irregular warfare against the Germans helped to change the course of the war, and gave birth to modern black operations.",2024-04-18,13.9564,7.07,1544 +3079,646380,Don't Look Up,Two astronomers go on a media tour to warn humankind of a planet-killing comet hurtling toward Earth. The response from a distracted world: Meh.,2021-12-08,6.1261,7.07,8699 +3080,585077,Children of the Sea,"Ruka is a young girl whose parents are separated and whose father works in an aquarium. When two boys, Umi and Sora, who were raised in the sea by dugongs, are brought to the aquarium, Ruka feels drawn to them and begins to realize that she has the same sort of supernatural connection to the ocean that they do. Umi and Sora's special power seems to be connected to strange events that have been occurring more and more frequently, such as the appearance of sea creatures far from their home territory and the disappearance of aquarium animals around the world. However, the exact nature of the boys' power and of the abnormal events is unknown, and Ruka gets drawn into investigating the mystery that surrounds her new friends.",2019-06-07,1.8489,7.1,316 +3081,454640,The Angry Birds Movie 2,"Red, Chuck, Bomb and the rest of their feathered friends are surprised when a green pig suggests that they put aside their differences and unite to fight a common threat. Aggressive birds from an island covered in ice are planning to use an elaborate weapon to destroy the fowl and swine.",2019-08-02,5.2392,7.07,1781 +3082,400090,The Nightingale,"In 1825, Clare, a 21-year-old Irish convict, chases a British soldier through the rugged Tasmanian wilderness, bent on revenge for a terrible act of violence he committed against her family. She enlists the services of an Aboriginal tracker who is also marked by trauma from his own violence-filled past.",2018-09-23,2.0813,7.07,611 +3083,19576,One Piece: The Movie,"There once was a pirate known as the Great Gold Pirate Woonan, who obtained almost one-third of the world's gold. Over the course of a few years, the pirate's existence faded, and a legend grew that he disappeared with his gold to a remote island, an island pirates continue to search for. Aboard the Going Merry, Luffy and his crew, starved and reckless, are robbed of their treasure. In an attempt to get it back, they wreck the getaway ship, guided by a young boy named Tobio, who's a captured part of El Drago's pirate crew. El Drago's love for gold has driven him to look for Woonan's island, and thanks to Woonan's treasure map, he finds it. During this time, Luffy's crew have been split up, and despite their own circumstances, they must find a way to stop El Drago from obtaining Woonan's gold.",2000-03-04,3.6263,7.07,359 +3084,11121,Tess,"A strong-willed peasant girl is sent by her father to the estate of some local aristocrats to capitalize on a rumor that their families are from the same line, but is left traumatised from her experiences.",1979-10-06,1.4519,7.07,351 +3085,10994,White Oleander,A teenager journeys through a series of foster homes after her mother goes to prison for committing a crime of passion.,2002-10-11,1.7508,7.1,393 +3086,102899,Ant-Man,"Armed with the astonishing ability to shrink in scale but increase in strength, master thief Scott Lang must embrace his inner-hero and help his mentor, Doctor Hank Pym, protect the secret behind his spectacular Ant-Man suit from a new generation of towering threats. Against seemingly insurmountable obstacles, Pym and Lang must plan and pull off a heist that will save the world.",2015-07-14,8.637,7.069,20230 +3087,77495,Sleep Tight,"César, an unhappy concierge, maintains a peculiar relationship with the very diverse inhabitants of the upper-class apartment building where he works in Barcelona.",2011-10-14,1.7747,7.069,1144 +3088,45094,Conviction,"When Betty Anne Waters' older brother Kenny is arrested for murder and sentenced to life in 1983, Betty Anne, a Massachusetts wife and mother of two, dedicates her life to overturning the murder conviction. Convinced that her brother is innocent, Betty Anne puts herself through high school, college and, finally, law school in an 18 year quest to free Kenny. With the help of best friend Abra Rice, Betty Anne pores through suspicious evidence mounted by small town cop Nancy Taylor, meticulously retracing the steps that led to Kenny's arrest. Belief in her brother - and her quest for the truth - pushes Betty Anne and her team to uncover the facts and utilize DNA evidence with the hope of exonerating Kenny.",2010-10-15,0.9622,7.1,621 +3089,14794,if....,"In an English boys' boarding school, social hierarchy reigns supreme and power remains in the hands of distanced and ineffectual teachers and callously vicious prefects in the Upper Sixth. Three Lower Sixth students, Wallace, Johnny and leader Mick Travis decide on a shocking course of action to redress the balance of privilege once and for all.",1968-12-19,1.148,7.069,385 +3090,7980,The Lovely Bones,"After being brutally murdered, 14-year-old Susie Salmon watches from heaven over her grief-stricken family -- and her killer. As she observes their daily lives, she must balance her thirst for revenge with her desire for her family to heal.",2009-12-26,5.3565,7.069,4760 +3091,3293,Pirates of Silicon Valley,"The story about the men who made the world of technology what it is today, their struggles during college, the founding of their companies, and the ingenious actions they took to build up the global corporate empires of Apple Computer Inc. and Microsoft Corporation.",1999-05-10,1.5152,7.069,561 +3092,123377,Pieta,A loan shark is forced to reconsider his violent lifestyle after the arrival of a mysterious woman claiming to be his long-lost mother.,2012-09-06,1.0118,7.068,388 +3093,18912,Angst,"A killer is released from prison and breaks into a remote home to kill a woman, her handicapped son and her pretty daughter.",1983-01-01,1.6404,7.068,375 +3094,16007,Death Note,"Light Yagami finds the ""Death Note,"" a notebook with the power to kill, and decides to create a Utopia by killing the world's criminals, and soon the world's greatest detective, ""L,"" is hired to find the mysterious murderer. An all out battle between the two greatest minds on earth begins and the winner will control the world.",2006-06-17,4.1741,7.068,727 +3095,11934,The Hudsucker Proxy,A naive business graduate is installed as president of a manufacturing company as part of a stock scam.,1994-03-11,2.2239,7.07,1104 +3096,10653,The Seven Year Itch,"With his family away for their annual summer holiday, a publishing executive decides to live a bachelor's life. The beautiful but ditzy blonde from the apartment above catches his eye and they soon start spending time together—maybe a little too much time!",1955-06-03,2.4985,7.068,927 +3097,964,The Phantom of the Opera,The deformed Phantom who haunts the Paris Opera House causes murder and mayhem in an attempt to make the woman he loves a star.,1925-09-22,1.4409,7.1,366 +3098,558582,First Cow,"In the 1820s, a taciturn loner and skilled cook travels west to Oregon Territory, where he meets a Chinese immigrant also seeking his fortune. Soon the two team up on a dangerous scheme to steal milk from the wealthy landowner’s prized Jersey cow – the first, and only, in the territory.",2020-03-06,1.9822,7.067,491 +3099,364051,The Innocents,"Poland, 1945. Mathilde, a young French Red Cross doctor, is on a mission to help the war survivors. When a nun seeks for her help, she is brought to a convent where several pregnant sisters are hiding, unable to reconcile their faith with their pregnancy. Mathilde becomes their only hope.",2016-02-10,1.6866,7.067,409 +3100,38810,Dogtooth,"Three teenagers are confined to an isolated country estate that could very well be on another planet. The trio spend their days listening to endless homemade tapes that teach them a whole new vocabulary. Any word that comes from beyond their family abode is instantly assigned a new meaning. Hence 'the sea' refers to a large armchair and 'zombies' are little yellow flowers. Having invented a brother whom they claim to have ostracized for his disobedience, the uber-controlling parents terrorize their offspring into submission.",2009-10-22,4.1015,7.067,2449 +3101,16520,The King and I,"Widowed Welsh mother Anna Loenowens becomes a governess and English tutor to the wives and many children of the stubborn King Mongkut of Siam. Anna and the King have a clash of personalities as she works to teach the royal family about the English language, customs and etiquette, and rushes to prepare a party for a group of European diplomats who must change their opinions about the King.",1956-06-29,1.5471,7.067,388 +3102,8428,Pump Up the Volume,"Mark Hunter, a lonely high school student, uses his shortwave radio to moonlight as the popular pirate DJ ""Hard Harry."" When his show gets blamed for a teen committing suicide, the students clash with high school faculty and the authorities.",1990-08-22,1.6788,7.067,374 +3103,2671,Ring,"A mysterious video has been linked to a number of deaths, and when an inquisitive journalist finds the tape and views it herself, she sets in motion a chain of events that puts her own life in danger.",1998-01-31,3.7145,7.067,1510 +3104,522478,Peter Rabbit 2: The Runaway,"Peter Rabbit runs away from his human family when he learns they are going to portray him in a bad light in their book. Soon, he crosses paths with an older rabbit who ropes him into a heist.",2021-03-25,3.8627,7.066,846 +3105,120605,The Punisher: Dirty Laundry,"In a bad neighborhood, on his way to a laundromat to do his laundry, Frank Castle witnesses a ruthless street gang harassing several people.",2012-07-16,0.714,7.066,351 +3106,91342,Barbie in A Mermaid Tale 2,"Surf's up for Barbie as she returns as Merliah, the fun and fashionable surfing champion who's also a magical mermaid princess! In this exciting sea-quel, Merliah makes a splash when she heads to Australia for the ultimate surfing competition. When the evil mermaid Eris escapes from her whirlpool with plans to take over the throne of Oceana, Merliah and her sea friends dive in to stop her. It's a fresh new adventure where Merliah learns that anything is possible and she really can have the best of both worlds!",2012-02-22,3.0302,7.066,464 +3107,1090,The Thirteenth Floor,"In Los Angeles, a wealthy man, known as Mr. Fuller, discovers a shocking secret about the world he lives in. Fearing for his life, he leaves a desperate message for a friend of his in the most unexpected place.",1999-04-16,3.0638,7.066,1395 +3108,606954,I Hate Summer,"Three families end up in the same rented house. Throughout the summer, they become friends and rediscover how to enjoy life.",2020-01-30,0.6728,7.065,953 +3109,42661,The Vikings,"Einar, brutal son of the viking Ragnar and future heir to his throne, tangles with clever slave Eric, for the hand of a beautiful English maiden.",1958-06-11,2.8368,7.065,340 +3110,15765,What's Love Got to Do with It,Singer Tina Turner rises to stardom while mustering the courage to break free from her abusive husband Ike.,1993-06-09,1.5663,7.1,337 +3111,31587,Scarecrow,"Two drifters bum around, visit earthy women and discuss opening a car wash in Pittsburgh.",1973-04-11,1.1442,7.1,320 +3112,15767,Godzilla: Final Wars,"Humanity finally rids themselves of Godzilla, imprisoning him in an icy tomb in the South Pole. All is peaceful until various monsters emerge to lay waste to Earth's cities. Overwhelmed, humanity is seemingly saved by a race of benevolent aliens known as Xiliens. But not all is what it seems with these bizarre visitors. If humanity wishes to survive, they must reluctantly resurrect their most hated enemy, Godzilla.",2004-12-04,3.6395,7.1,335 +3113,458,Sissi: The Young Empress,"Sissi is now the empress of Austria and attempts to learn etiquette. While she is busy being empress she also has to deal with her difficult new mother-in-law, while the arch-duchess Sophie is trying to tell the emperor how to rule and also Sissi how to be a mother.",1956-12-01,2.0238,7.1,357 +3114,653346,Kingdom of the Planet of the Apes,"Several generations following Caesar's reign, apes – now the dominant species – live harmoniously while humans have been reduced to living in the shadows. As a new tyrannical ape leader builds his empire, one young ape undertakes a harrowing journey that will cause him to question all he's known about the past and to make choices that will define a future for apes and humans alike.",2024-05-08,16.7575,7.062,3838 +3115,308639,Dope,"Malcolm is carefully surviving life in a tough neighborhood in Los Angeles while juggling college applications, academic interviews, and the SAT. A chance invitation to an underground party leads him into an adventure that could allow him to go from being a geek, to being dope, to ultimately being himself.",2015-06-19,2.2678,7.063,1514 +3116,206563,Trash,"Set in Brazil, three kids who make a discovery in a garbage dump soon find themselves running from the cops and trying to right a terrible wrong.",2014-10-09,1.6249,7.1,626 +3117,71524,Ace of Aces,"In this action comedy the French boxer Jo Cavalier is charmed on the train to Berlin for the Olympics in Hitler's Germany by the little boy Simon Rosenblum who asks his autograph; when it turns out his adorable young fan is a Jewish orphan in danger of persecution, he risks his one shot at Olympic glory to save Simon and his family, helped only by a German officer-gentleman who became his friend in World War I, by an adventurous escape to Switzerland, Nazi troops on their heals and braving impossible odds in roller coaster-style.",1982-10-27,1.6084,7.063,332 +3118,40751,Ashes of Time,"Ouyang Feng is a heartbroken and cynical man who spends his days in the desert, connecting expert swordsmen with those seeking revenge and willing to pay for it. Throughout five seasons in exile, Ouyang spins tales of his clients' unrequited loves and unusual acts of bravery.",1994-09-17,1.4392,7.1,359 +3119,14859,Keith,"Natalie is high school royalty, but her queen bee status falls apart when she falls for the new guy at school. Although Keith ignores her at first, they soon become friends -- even though Natalie suspects that Keith has something to hide. As the free-spirited Keith shows Natalie how to embrace what life offers, they grow closer -- until a secret tests the bounds of their relationship",2008-09-13,0.9358,7.063,456 +3120,40751,Ashes of Time,"Ouyang Feng is a heartbroken and cynical man who spends his days in the desert, connecting expert swordsmen with those seeking revenge and willing to pay for it. Throughout five seasons in exile, Ouyang spins tales of his clients' unrequited loves and unusual acts of bravery.",1994-09-17,1.4392,7.1,359 +3121,14859,Keith,"Natalie is high school royalty, but her queen bee status falls apart when she falls for the new guy at school. Although Keith ignores her at first, they soon become friends -- even though Natalie suspects that Keith has something to hide. As the free-spirited Keith shows Natalie how to embrace what life offers, they grow closer -- until a secret tests the bounds of their relationship",2008-09-13,0.9358,7.063,456 +3122,10974,Armour of God,"Jackie Chan stars as Asian Hawk, an Indiana Jones-style adventurer looking to make a fortune in exotic antiquities. After Hawk discovers a mysterious sword in Africa, a band of Satan-worshipping monks kidnap his ex-girlfriend Lorelei, demanding the sword as ransom as well as other pieces of the legendary Armour of God - a magical outfit dating back to the Crusades.",1986-08-16,3.5079,7.063,589 +3123,468,My Own Private Idaho,"In this loose adaptation of Shakespeare's ""Henry IV,"" Mike Waters is a hustler afflicted with narcolepsy. Scott Favor is the rebellious son of a mayor. Together, the two travel from Portland, Oregon to Idaho and finally to the coast of Italy in a quest to find Mike's estranged mother. Along the way they turn tricks for money and drugs, eventually attracting the attention of a wealthy benefactor and sexual deviant.",1991-02-01,2.3959,7.063,1168 +3124,653346,Kingdom of the Planet of the Apes,"Several generations following Caesar's reign, apes – now the dominant species – live harmoniously while humans have been reduced to living in the shadows. As a new tyrannical ape leader builds his empire, one young ape undertakes a harrowing journey that will cause him to question all he's known about the past and to make choices that will define a future for apes and humans alike.",2024-05-08,16.7575,7.062,3838 +3125,82633,Lawless,"In 1931, the Bondurant brothers of Franklin County, Virginia, run a multipurpose backwoods establishment that hides their true business — bootlegging. Middle brother Forrest is the brain of the operation; older Howard is the brawn, and younger Jack, the lookout. Though the local police have taken bribes and left the brothers alone, a violent war erupts when a sadistic lawman from Chicago arrives and tries to shut down the Bondurants operation.",2012-08-29,4.8472,7.062,3153 +3126,63831,The Kid with a Bike,"Abandoned by his father, a young boy is left in the hands of an unqualified childcare provider.",2011-05-18,1.4738,7.1,433 +3127,1088,Whale Rider,"A contemporary story of love, rejection, and triumph as a young Maori girl fights to fulfill a destiny her grandfather refuses to recognize.",2003-01-30,1.1786,7.062,421 +3128,536554,M3GAN,"A brilliant toy company roboticist uses artificial intelligence to develop M3GAN, a life-like doll programmed to emotionally bond with her newly orphaned niece. But when the doll's programming works too well, she becomes overprotective of her new friend with terrifying results.",2022-12-28,17.7638,7.061,4415 +3129,455207,Crazy Rich Asians,"An American-born Chinese economics professor accompanies her boyfriend to Singapore for his best friend's wedding, only to get thrust into the lives of Asia's rich and famous.",2018-08-15,4.3502,7.061,3778 +3130,365942,The Space Between Us,A young man raised by scientists on Mars returns to Earth to find his father.,2017-01-26,2.6033,7.061,2493 +3131,11703,Kiss of the Spider Woman,"The story of two radically different men thrown together in a Latin American prison cell. One is Valentin, a journalist being tortured for his political beliefs. The other is Molina, a gay window-dresser who fills their lonely nights by spinning romantic fantasies drawn from memories of old movies.",1985-07-26,1.0674,7.061,310 +3132,2907,The Addams Family,"When a man claiming to be long-lost Uncle Fester reappears after 25 years lost, the family plans a celebration to wake the dead. But the kids barely have time to warm up the electric chair before Morticia begins to suspect Fester is fraud when he can't recall any of the details of Fester's life.",1991-11-22,12.7297,7.061,4766 +3133,744,Top Gun,"For Lieutenant Pete 'Maverick' Mitchell and his friend and co-pilot Nick 'Goose' Bradshaw, being accepted into an elite training school for fighter pilots is a dream come true. But a tragedy, as well as personal demons, will threaten Pete's dreams of becoming an ace pilot.",1986-05-16,14.6018,7.061,9028 +3134,624,Easy Rider,"Wyatt and Billy, two Harley-riding hippies, complete a drug deal in Southern California and decide to travel cross-country in search of spiritual truth.",1969-06-26,3.2436,7.061,2042 +3135,604,The Matrix Reloaded,"The Resistance builds in numbers as humans are freed from the Matrix and brought to the city of Zion. Neo discovers his superpowers, including the ability to see the code inside the Matrix. With machine sentinels digging to Zion in 72 hours, Neo, Morpheus and Trinity must find the Keymaker to ultimately reach the Source.",2003-05-15,8.9109,7.061,11376 +3136,378,Raising Arizona,"When a childless couple--an ex-con and an ex-cop--decide to help themselves to one of another family's quintuplets, their lives become more complicated than they anticipated.",1987-03-13,3.9493,7.061,2197 +3137,777270,Belfast,"Buddy is a young boy on the cusp of adolescence, whose life is filled with familial love, childhood hijinks, and a blossoming romance. Yet, with his beloved hometown caught up in increasing turmoil, his family faces a momentous choice: hope the conflict will pass or leave everything they know behind for a new life.",2021-11-12,1.9916,7.06,1573 +3138,585083,Hotel Transylvania: Transformania,"When Van Helsing's mysterious invention, the ""Monsterfication Ray,"" goes haywire, Drac and his monster pals are all transformed into humans, and Johnny becomes a monster. In their new mismatched bodies, Drac and Johnny must team up and race across the globe to find a cure before it's too late, and before they drive each other crazy.",2022-01-31,11.9325,7.06,2895 +3139,558915,The Color Purple,"A decades-spanning tale of love and resilience and of one woman's journey to independence. Celie faces many hardships in her life, but ultimately finds extraordinary strength and hope in the unbreakable bonds of sisterhood.",2023-12-25,2.7953,7.06,316 +3140,10753,Police Story 2,The Hong Kong super-cop must stop a group of blackmailing bombers at the same time that the villains of the first Police Story are out for revenge.,1988-08-13,2.0565,7.1,572 +3141,1110358,Yannick,"In the middle of a performance of the play ""Le Cocu"", a bad boulevard comedy at a Parisian theatre, Yannick gets up and interrupts the show to take the evening back in hand.",2023-08-02,0.5615,7.058,655 +3142,276907,Legend,"Suave, charming and volatile, Reggie Kray and his unstable twin brother Ronnie start to leave their mark on the London underworld in the 1960s. Using violence to get what they want, the siblings orchestrate robberies and murders while running nightclubs and protection rackets. With police Detective Leonard ""Nipper"" Read hot on their heels, the brothers continue their rapid rise to power and achieve tabloid notoriety.",2015-09-09,7.4155,7.058,4033 +3143,12584,The Shootist,"Afflicted with a terminal illness John Bernard Books, the last of the legendary gunfighters, quietly returns to Carson City for medical attention from his old friend Dr. Hostetler. Aware that his days are numbered, the troubled man seeks solace and peace in a boarding house run by a widow and her son. However, it is not Books' fate to die in peace, as he becomes embroiled in one last valiant battle.",1976-07-21,2.4525,7.1,359 +3144,4886,And Then There Were None,"Ten strangers are summoned to a remote island and while they are waiting for the mysterious host to appear, a recording levels serious accusations at each of the guests. Soon they start being murdered, one by one. As the survivors try to keep their wits, they reach a disturbing conclusion: one of them must be the killer.",1945-10-31,1.6109,7.058,386 +3145,560044,The Willoughbys,"When the four Willoughby children are abandoned by their selfish parents, they must learn how to adapt their Old-Fashioned values to the contemporary world in order to create something new: The Modern Family.",2020-04-22,2.0172,7.057,932 +3146,558915,The Color Purple,"A decades-spanning tale of love and resilience and of one woman's journey to independence. Celie faces many hardships in her life, but ultimately finds extraordinary strength and hope in the unbreakable bonds of sisterhood.",2023-12-25,2.7953,7.06,316 +3147,196024,The Keeper of Lost Causes,"Denmark, 2013. Police officers Carl Mørck and Hafez el-Assad, sole members of Department Q, which is focused on closing cold cases, investigate the disappearance of politician Merete Lynggaard, vanished when she and her brother were traveling aboard a ferry five years ago.",2013-10-03,2.3196,7.057,778 +3148,1807,Elephant,Several ordinary high school students go through their daily routine as two others prepare for something more malevolent.,2003-09-20,2.4827,7.1,1986 +3149,924,Dawn of the Dead,"A group of survivors take refuge in a shopping mall after the world is taken over by aggressive, flesh-eating zombies.",2004-03-19,6.6368,7.1,4204 +3150,388399,Patriots Day,"In the aftermath of an unspeakable act of terror, Police Sergeant Tommy Saunders joins courageous survivors, first responders and investigators in a race against the clock to hunt down the Boston Marathon bombers before they strike again.",2016-12-12,3.405,7.056,2711 +3151,382399,High Strung,"When a hip hop violinist busking in the New York subway encounters a classical dancer on scholarship at the Manhattan Conservatory of the Arts, sparks fly. With the help of a hip hop dance crew they must find a common ground while preparing for a competition that could change their lives forever.",2016-04-08,1.7774,7.056,918 +3152,127517,Disconnect,"A hard-working lawyer, attached to his cell phone, can't find the time to communicate with his family. An estranged couple uses the internet as a means to escape from their lifeless marriage. A widowed ex-cop struggles to raise a mischievous son who cyber-bullies a classmate. An ambitious journalist sees a career-making story in a teen that performs on an adult-only site. They are strangers, neighbors and colleagues and their stories collide as ordinary people struggling to connect in today's wired world.",2013-04-12,1.8375,7.1,1157 +3153,20077,The Batman vs. Dracula,"Gotham City is terrorized not only by recent escapees Joker and Penguin, but by the original creature of the night, Dracula! Can Batman stop the ruthless vampire before he turns everyone in the city, including The Caped Crusader, Joker and Penguin, into his mindless minions?",2005-10-18,2.1974,7.056,383 +3154,445,Caché,"George, host of a television show focusing on literature, receives videos shot on the sly that feature his family, along with disturbing drawings that are difficult to interpret. He has no idea who has made and sent him the videos. Progressively, the contents of the videos become more personal, indicating that the sender has known George for a long time.",2005-10-05,2.2865,7.1,1163 +3155,241,Natural Born Killers,Two victims of traumatized childhoods become lovers and serial murderers irresponsibly glorified by the mass media.,1994-08-26,4.3502,7.056,3566 +3156,412202,Handsome Devil,A music-mad 16-year-old outcast at a rugby-mad boarding school forms an unlikely friendship with his dashing new roommate.,2017-02-15,1.5675,7.055,677 +3157,340613,The Wife,"A wife questions her life choices as she travels to Stockholm with her husband, where he is slated to receive the Nobel Prize for Literature.",2018-08-02,2.214,7.055,1082 +3158,39254,Real Steel,"Charlie Kenton is a washed-up fighter who retired from the ring when robots took over the sport. After his robot is trashed, he reluctantly teams up with his estranged son to rebuild and train an unlikely contender.",2011-09-28,17.583,7.055,8673 +3159,27725,High Sierra,"Given a pardon from jail, Roy Earle gets back into the swing of things as he robs a swanky resort.",1941-01-23,1.1925,7.1,334 +3160,10339,Moby Dick,"In 1841, young Ishmael signs up for service aboard the Pequod, a whaler sailing out of New Bedford. The ship is under the command of Captain Ahab, a strict disciplinarian who exhorts his men to find Moby Dick, the great white whale. Ahab lost his leg to that creature and is desperate for revenge. As the crew soon learns, he will stop at nothing to gain satisfaction.",1956-06-27,3.005,7.055,436 +3161,245842,The King's Daughter,"King Louis XIV's quest for immortality leads him to capture and steal a mermaid's life force, a move that is further complicated by his illegitimate daughter's discovery of the creature.",2022-01-21,2.9153,7.1,688 +3162,1103,Escape from New York,"In a world ravaged by crime, the entire island of Manhattan has been converted into a walled prison where brutal prisoners roam free. After the US president crash-lands inside, war hero Snake Plissken has 24 hours to bring him back.",1981-05-23,3.7798,7.1,3315 +3163,267,Live Flesh,"When Victor attempts to seduce Elena, all he gets for his trouble is a one-way, six-year ticket to prison, where he concentrates on strengthening his mind, his body... and his desire for vengeance on the man who put him there. After his release and still madly in love with her, Victor will stop at nothing to win her over even if means revenge, for Elena has married David, the cop who sent him to prison!",1997-10-10,2.5494,7.054,689 +3164,1241982,Moana 2,"After receiving an unexpected call from her wayfinding ancestors, Moana journeys alongside Maui and a new crew to the far seas of Oceania and into dangerous, long-lost waters for an adventure unlike anything she's ever faced.",2024-11-21,52.033,7.053,2627 +3165,56020,Radiofreccia,"April 24, 1993: it's the last broadcast of Radiofreccia, an independent radio station closing after 18 years, barely one minute before coming of age. Bruno, one of its founders, begins to tell its story, the story of a group of friends—especially troubled Freccia's—and a period of their youth in their small hometown.",1998-10-16,0.8493,7.053,343 +3166,33613,The Girl Who Kicked the Hornet's Nest,"After taking a bullet to the head, Salander is under close supervision in a hospital and is set to face trial for attempted murder on her eventual release. With the help of journalist Mikael Blomkvist and his researchers at Millennium magazine, Salander must prove her innocence. In doing this she plays against powerful enemies and her own past.",2009-11-27,2.6779,7.053,1402 +3167,1062807,SPY x FAMILY CODE: White,"While under the guise of taking his family on a weekend winter getaway, Loid's attempt to make progress on his current mission Operation Strix proves difficult when Anya mistakenly gets involved and triggers events that threaten world peace.",2023-12-22,5.3786,7.1,556 +3168,915931,Revoir Paris,"Three months after surviving a terrorist attack in a bistro, Mia is still traumatized and unable to recall the events of that night. In an effort to move forward, she investigates her memories and retraces her steps.",2022-09-07,1.2236,7.052,326 +3169,779782,The School for Good and Evil,Best friends Sophie and Agatha navigate an enchanted school for young heroes and villains — and find themselves on opposing sides of the battle between good and evil.,2022-10-19,5.3747,7.052,1307 +3170,512263,Honey Boy,"The story of a child star attempting to mend his relationship with his law-breaking, alcohol-abusing father over the course of a decade, loosely based on Shia LaBeouf’s life.",2019-09-28,1.5746,7.052,697 +3171,497828,Triangle of Sadness,"A celebrity model couple are invited on a luxury cruise for the uber-rich, helmed by an unhinged, alcoholic captain. What first appears Instagrammable ends catastrophically, leaving the survivors stranded on a desert island in a struggle of hierarchy.",2022-09-18,4.1981,7.052,2502 +3172,31906,The Beguiled,"Offbeat Civil War drama in which a wounded Yankee soldier, after finding refuge in an isolated girls' school in the South towards the end of the war, becomes the object of the young women's sexual fantasies. The soldier manipulates the situation for his own gratification, but when he refuses to completely comply with the girls' wishes, they make it very difficult for him to leave.",1971-01-23,1.545,7.052,460 +3173,30890,Radio Days,"The Narrator tells us how the radio influenced his childhood in the days before TV. In the New York City of the late 1930s to the New Year's Eve 1944, this coming-of-age tale mixes the narrator's experiences with contemporary anecdotes and urban legends of the radio stars.",1987-01-30,1.6892,7.052,598 +3174,9766,Gridiron Gang,"Under the leadership of their counselor, teenagers at a juvenile detention center gain self-esteem by playing football together.",2006-09-15,2.793,7.1,1029 +3175,748783,The Garfield Movie,"Garfield, the world-famous, Monday-hating, lasagna-loving indoor cat, is about to have a wild outdoor adventure! After an unexpected reunion with his long-lost father – scruffy street cat Vic – Garfield and his canine friend Odie are forced from their perfectly pampered life into joining Vic in a hilarious, high-stakes heist.",2024-04-30,14.7833,7.049,1307 +3176,570131,Love at Second Sight,"A man tries to make his wife fall in love with him again, after waking up in an alternate reality where she never knew him.",2019-01-18,1.3198,7.051,827 +3177,522241,The Courier,Cold War spy Greville Wynne and his Russian source try to put an end to the Cuban Missile Crisis.,2020-01-24,2.3386,7.051,1215 +3178,20770,But I'm a Cheerleader,"Megan is an all-American girl. A cheerleader. She has a boyfriend. But Megan doesn't like kissing her boyfriend very much. And she's pretty touchy with her cheerleader friends. Her conservative parents worry that she must be a lesbian and send her off to ""sexual redirection"" school, where she must, with other lesbians and gays learn how to be straight.",2000-07-07,2.6068,7.1,750 +3179,16140,Death Note: The Last Name,"In the second installment of the Death Note film franchise, Light Yagami meets a second Kira and faithful follower Misa Amane and her Shinigami named Rem. Light attempts to defeat L along with Teru Mikami (a Kira follower) and Kiyomi Takada (another Kira follower) but in the end will Light win? or will a Shinigami named Ryuk make all the difference in Light's victory or his ultimate death?",2006-10-28,2.2137,7.051,512 +3180,11646,Gallipoli,"As World War I rages, brave and youthful Australians Archy and Frank—both agile runners—become friends and enlist in the Australian and New Zealand Army Corps together. They later find themselves part of the Dardanelles Campaign on the Gallipoli peninsula, a brutal eight-month conflict which pit the British and their allies against the Ottoman Empire and left over 500,000 men dead.",1981-08-13,1.7352,7.1,501 +3181,10514,The Andromeda Strain,"When virtually all of the residents of Piedmont, New Mexico, are found dead after the return to Earth of a space satellite, the head of the US Air Force's Project Scoop declares an emergency. A group of eminent scientists led by Dr. Jeremy Stone scramble to a secure laboratory and try to first isolate the life form while determining why two people from Piedmont - an old alcoholic and a six-month-old baby - survived. The scientists methodically study the alien life form unaware that it has already mutated and presents a far greater danger in the lab, which is equipped with a nuclear self-destruct device designed to prevent the escape of dangerous biological agents.",1971-03-12,2.1827,7.1,732 +3182,9798,Enemy of the State,"The life of labor lawyer and dedicated family man Robert 'Bobby' Dean is turned upside down after a chance meeting with a college buddy while holiday shopping. Unbeknownst to Dean, he's just been burdened with a videotape of a congressman's assassination. Hot on the trail of this tape is a ruthless group of National Security Agents commanded by a belligerently ambitious NSA official named Reynolds. Using satellite surveillance, bugs, and other sophisticated snooping devices, the NSA infiltrates every facet of Dean's existence, tracing each physical and digital footprint he leaves while also framing him for murder. With the help of the mysterious Brill, he attempts to throw the NSA off his trail and prove his innocence.",1998-11-20,6.3374,7.051,4007 +3183,7326,Juno,"Faced with an unplanned pregnancy, sixteen year old high-schooler, Juno MacGuff, makes an unusual decision regarding her unborn child.",2007-12-05,4.2055,7.051,7347 +3184,2109,Rush Hour,"When Hong Kong Inspector Lee is summoned to Los Angeles to investigate a kidnapping, the FBI doesn't want any outside help and assigns cocky LAPD Detective James Carter to distract Lee from the case. Not content to watch the action from the sidelines, Lee and Carter form an unlikely partnership and investigate the case themselves.",1998-09-18,10.0396,7.051,5267 +3185,800787,A Good Person,Allison's life falls apart following her involvement in a fatal accident. The unlikely relationship she forms with her would-be father-in-law helps her live a life worth living.,2023-03-23,1.8227,7.05,387 +3186,787428,Two Distant Strangers,A man trying to get home to his dog becomes stuck in a time loop that forces him to relive a deadly run-in with a cop.,2020-11-20,1.1504,7.05,480 +3187,845781,Red One,"After Santa Claus (codename: Red One) is kidnapped, the North Pole's Head of Security must team up with the world's most infamous tracker in a globe-trotting, action-packed mission to save Christmas.",2024-10-31,20.69,7.05,2617 +3188,9393,Before the Fall,"In 1942, Friedrich Weimer's boxing skills get him an appointment to a National Political Academy (NaPolA) – high schools that produce Nazi elite. Over his father's objections, Friedrich enrolls. During his year in seventh column,Friedrich encounters hazing, cruelty, death, and the Nazi code. His friendship with Albrecht, the ascetic son of the area's governor, is central to this education.",2004-07-04,1.9458,7.049,339 +3189,1064213,Anora,"A young sex worker from Brooklyn gets her chance at a Cinderella story when she meets and impulsively marries the son of an oligarch. Once the news reaches Russia, her fairytale is threatened as his parents set out to get the marriage annulled.",2024-10-14,20.432,7.048,2495 +3190,251519,Son of Batman,"Batman learns he has a violent, unruly pre-teen son, secretly raised by the terrorist group known as The League of Assassins.",2014-05-13,2.0737,7.0,1088 +3191,25736,The Postman Always Rings Twice,"A married woman and a drifter fall in love, then plot to murder her husband.",1946-05-02,1.3575,7.048,352 +3192,11000,The Birdcage,"Middle-aged gay life partners, Armand Goldman, a Jewish drag club owner, and Albert, the club's flamboyant star attraction, live in the eclectic community of South Beach and have raised a straight son. Now, their newly engaged son, 20-year-old Val, wants to bring his fiancée, Barbara, and her ultraconservative parents home to meet his family for the first time. By Val's request, Armand pretends to be straight, not Jewish and attempts to hide his relationship with Albert, in order to please Barbara's father, controversial right-wing Republican Sen. Kevin Keeley.",1996-03-08,3.3688,7.0,1228 +3193,1694,Re-Animator,"Conducting clandestine experiments within the morgue at Miskatonic University, scientist Herbert West reveals to a fellow graduate student his groundbreaking work concerning the re-animation of fresh corpses.",1985-10-18,2.1477,7.048,1561 +3194,644,A.I. Artificial Intelligence,"David, a robotic boy—the first of his kind programmed to love—is adopted as a test case by a Cybertronics employee and his wife. Though he gradually becomes their child, a series of unexpected circumstances make this life impossible for David.",2001-06-29,6.1567,7.048,6351 +3195,791177,Bones and All,"Abandoned by her father, a young woman embarks on a thousand-mile odyssey through the backroads of America where she meets a disenfranchised drifter. But despite their best efforts, all roads lead back to their terrifying pasts and to a final stand that will determine whether their love can survive their otherness.",2022-11-18,3.9491,7.047,1467 +3196,10868,The Accused,"Out drinking one night after a fight with her boyfriend, three men brutally rape Sarah Tobias in a bar while people watch and cheer. District Attorney Kathryn Murphy takes the case; however, she allows the rapists to receive a mild sentence. A distraught Sarah decides to seek punishment for the men who witnessed and encouraged the rape. To get justice, Sarah must take the stand and revisit the night of her attack.",1988-10-14,2.6003,7.0,635 +3197,10712,Far from Heaven,"In 1950s Connecticut, a housewife's life is upended by a marital crisis and mounting racial tensions in society.",2002-11-08,1.2044,7.047,639 +3198,4464,Seabiscuit,True story of the undersized Depression-era racehorse whose victories lifted not only the spirits of the team behind it but also those of their nation.,2003-07-22,2.488,7.047,866 +3199,391757,Never Back Down: No Surrender,"Picking up after the events of Never Back Down 2, former MMA champion Case Walker is on the comeback trail to become champion once again.",2016-06-07,4.7591,7.046,487 +3200,43641,Superman/Shazam!: The Return of Black Adam,"Chosen the world’s protector against the Seven Deadly Enemies of Man – pride, envy, greed, hatred, selfishness, laziness and injustice – young Billy Batson accepts his destiny as Captain Marvel. Battling alongside Superman against nefarious Black Adam, Billy soon discovers the challenge super heroes ultimately face: is it revenge or justice?",2010-11-16,3.0139,7.0,1524 +3201,11224,Cinderella,"Cinderella has faith her dreams of a better life will come true. With help from her loyal mice friends and a wave of her Fairy Godmother's wand, Cinderella's rags are magically turned into a glorious gown and off she goes to the Royal Ball. But when the clock strikes midnight, the spell is broken, leaving a single glass slipper... the only key to the ultimate fairy-tale ending!",1950-02-22,10.3528,7.045,6902 +3202,6106,Salvador,"In 1980, an American journalist covering the Salvadoran Civil War becomes entangled with both the leftist guerrilla groups and the right-wing military dictatorship while trying to rescue his girlfriend and her children.",1986-04-23,1.4486,7.0,370 +3203,754,Face/Off,"In order to foil a terrorist plot, an FBI agent undergoes facial transplant surgery and assumes the identity of a criminal mastermind. The plan turns sour when the criminal wakes up prematurely and seeks revenge.",1997-06-27,6.1887,7.046,5562 +3204,588921,AINBO: Spirit of the Amazon,"An epic journey of a young hero and her Spirit Guides, 'Dillo' a cute and humorous armadillo and ""Vaca"" a goofy oversized tapir, who embark on a quest to save their home in the spectacular Amazon Rainforest.",2021-02-09,5.2811,7.045,448 +3205,505642,Black Panther: Wakanda Forever,"Queen Ramonda, Shuri, M’Baku, Okoye and the Dora Milaje fight to protect their nation from intervening world powers in the wake of King T’Challa’s death. As the Wakandans strive to embrace their next chapter, the heroes must band together with the help of War Dog Nakia and Everett Ross and forge a new path for the kingdom of Wakanda.",2022-11-09,13.346,7.045,6958 +3206,236735,Marshland,"The Spanish Deep South, 1980. A series of brutal murders of adolescent girls in a remote and forgotten town bring together two disparate characters - both detectives in the homicide division - to investigate the cases.",2014-09-25,1.9424,7.045,985 +3207,157370,Kill Your Darlings,"A murder in 1944 draws together the great poets of the beat generation: Allen Ginsberg, Jack Kerouac and William Burroughs.",2013-10-16,1.6273,7.045,1372 +3208,49444,Kung Fu Panda 2,"Po and his friends fight to stop a peacock villain from conquering China with a deadly new weapon, but first the Dragon Warrior must come to terms with his past.",2011-05-25,11.1665,7.045,7484 +3209,912916,The Other Zoey,"Highly intelligent computer major Zoey Miller is uninterested in romantic love, but her life is turned upside down when Zack, the school's soccer star, gets amnesia and mistakes Zoey for his girlfriend.",2023-10-19,4.2217,7.044,436 +3210,661374,Glass Onion: A Knives Out Mystery,World-famous detective Benoit Blanc heads to Greece to peel back the layers of a mystery surrounding a tech billionaire and his eclectic crew of friends.,2022-11-23,6.4578,7.0,6009 +3211,320006,Taxi,"A yellow cab is driving through the vibrant and colourful streets of Tehran. Very diverse passengers enter the taxi, each candidly expressing their views while being interviewed by the driver who is no one else but the director Jafar Panahi himself. His camera placed on the dashboard of his mobile film studio captures the spirit of Iranian society through this comedic and dramatic drive…",2015-04-15,1.209,7.044,439 +3212,248933,The Dark Valley,"The Alps, late 19th century. Greider, a mysterious lone rider who claims to be a photographer, arrives at an isolated lumber village, despotically ruled by a family clan, asking for winter accommodation.",2014-02-13,1.2463,7.044,402 +3213,79113,A Princess for Christmas,"After her sister and brother-in-law's tragic deaths, an American woman who is the guardian for her young niece and nephew is invited to a royal European castle for Christmas by her late brother-in-law's father, the Duke of Castlebury. Feeling out of place as a commoner, she is determined to give her family a merry Christmas and surprises herself when she falls for a handsome prince.",2011-12-03,1.6069,7.0,405 +3214,15060,Futurama: Into the Wild Green Yonder,"Leela becomes an outlaw when she and a group of ecologically-minded feminists attempt to save an asteroid of primitive life forms and the Violet Dwarf star from being destroyed, while Fry joins a secret society and attempts to stop a mysterious species known as the ""Dark Ones"" from destroying all life in the universe.",2009-02-23,1.036,7.044,562 +3215,9994,The Great Mouse Detective,"When the diabolical Professor Ratigan kidnaps London's master toymaker, the brilliant master of disguise Basil of Baker Street and his trusted sidekick Dawson try to elude the ultimate trap and foil the perfect crime.",1986-07-02,2.5884,7.0,1724 +3216,8095,Cleopatra,"Determined to hold on to the throne, Cleopatra seduces the Roman emperor Julius Caesar. When Caesar is murdered, she redirects her attentions to his general, Marc Antony, who vows to take power—but Caesar’s successor has other plans.",1963-06-12,4.0538,7.044,794 +3217,7299,Equilibrium,"In a dystopian future, a totalitarian regime maintains peace by subduing the populace with a drug, and displays of emotion are punishable by death. A man in charge of enforcing the law rises to overthrow the system.",2002-12-06,4.6166,7.044,4709 +3218,4512,The Assassination of Jesse James by the Coward Robert Ford,"Outlaw Jesse James is rumored to be the 'fastest gun in the West'. An eager recruit into James' notorious gang, Robert Ford eventually grows jealous of the famed outlaw and, when Robert and his brother sense an opportunity to kill James, their murderous action elevates their target to near mythical status.",2007-09-20,4.0099,7.044,2606 +3219,483,Wild at Heart,"Young lovers Sailor and Lula hit the road to start a new life together away from the wrath of Lula’s deranged, disapproving mother, who has hired a team of hitmen to cut the lovers’ surreal honeymoon short.",1990-08-17,2.4961,7.0,1782 +3220,440642,The Spacewalker,"March 1965. In the heat of the Cold War, the USA and the USSR are competing for supremacy in space. What both superpowers aim for in this race, is to be the first to have a man walk in outer space. To accomplish that, no price is too high and no risk is too great. Now it’s up to the unlikely duo of a seasoned war veteran and a hot-headed test-pilot to fulfill this mission. Two men in a tiny spaceship, without proper testing, facing the complete unknown. They were supposed to do what no man has done before—and no man imagined what would happen next.",2017-04-06,1.6279,7.043,329 +3221,393519,Raw,"In Justine’s family everyone is a vet and a vegetarian. At 16, she’s a gifted teen ready to take on her first year in vet school, where her older sister also studies. There, she gets no time to settle: hazing starts right away. Justine is forced to eat raw meat for the first time in her life. Unexpected consequences emerge as her true self begins to form.",2016-11-11,3.1942,7.044,3282 +3222,43347,Love & Other Drugs,"Maggie is an alluring free spirit who won't let anyone – or anything – tie her down. But she meets her match in Jamie, whose relentless and nearly infallible charm serves him well with the ladies and the cutthroat world of pharmaceutical sales. Maggie and Jamie's evolving relationship takes them both by surprise, as they find themselves under the influence of the ultimate drug: love.",2010-11-04,8.319,7.043,5335 +3223,11836,The SpongeBob SquarePants Movie,"There's trouble brewing in Bikini Bottom. Someone has stolen King Neptune's crown, and it looks like Mr. Krab, SpongeBob's boss, is the culprit. Though he's just been passed over for the promotion of his dreams, SpongeBob stands by his boss, and along with his best pal Patrick, sets out on a treacherous mission to Shell City to reclaim the crown and save Mr. Krab's life.",2004-11-19,8.6319,7.043,3030 +3224,5335,Theorem,"A wealthy Italian household is turned upside down when a handsome stranger arrives, seduces every family member and then disappears. Each has an epiphany of sorts, but none can figure out who the seductive visitor was or why he came.",1968-09-07,1.4983,7.043,422 +3225,653349,Vacation Friends,"When a straight-laced couple that has fun with a rowdy couple on vacation in Mexico return to the States, they discover that the crazy couple they met in Mexico followed them back home and decide to play tricks on them.",2021-08-27,2.6429,7.042,824 +3226,524348,The Report,"The story of Daniel Jones, lead investigator for the US Senate’s sweeping study into the CIA's Detention and Interrogation Program, which was found to be brutal, immoral and ineffective. With the truth at stake, Jones battled tirelessly to make public what many in power sought to keep hidden.",2019-09-12,2.1584,7.042,1078 +3227,517148,Beanpole,"1945, Leningrad. World War II has devastated the city, demolishing its buildings and leaving its citizens in tatters, physically and mentally. Two young women, Iya and Masha, search for meaning and hope in the struggle to rebuild their lives amongst the ruins.",2019-06-20,1.0153,7.042,333 +3228,394374,At the End of the Tunnel,A paraplegic computer engineer that moves in a wheelchair and works in his basement starts hearing noises and voices of bank-robbers.,2016-04-21,1.6317,7.042,414 +3229,385128,F9,Dominic Toretto and his crew battle the most skilled assassin and high-performance driver they've ever encountered: his forsaken brother.,2021-05-19,6.7494,7.042,7425 +3230,369972,First Man,"A look at the life of the astronaut, Neil Armstrong, and the legendary space mission that led him to become the first man to walk on the Moon on July 20, 1969.",2018-10-10,5.6905,7.042,5411 +3231,117691,Gangs of Wasseypur - Part 1,"In 1970s India, Sardar Khan vows to take revenge on the man who killed his father decades earlier.",2012-06-22,1.4313,7.042,390 +3232,10162,Waking Ned,"When a lottery winner dies of shock, his fellow townsfolk attempt to claim the money.",1998-11-20,1.1689,7.042,312 +3233,118,Charlie and the Chocolate Factory,"A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.",2005-07-13,13.8405,7.042,15572 +3234,1211472,September 5,"During the 1972 Munich Olympics, an American sports broadcasting crew finds itself thrust into covering the hostage crisis involving Israeli athletes.",2024-11-07,2.8019,7.041,378 +3235,639933,The Northman,"Prince Amleth is on the verge of becoming a man when his father is brutally murdered by his uncle, who kidnaps the boy's mother. Two decades later, Amleth is now a Viking who's on a mission to save his mother, kill his uncle and avenge his father.",2022-04-07,6.188,7.041,4637 +3236,507076,Climax,"When a dance troupe is lured to an empty school, a bowl of drug-laced sangria causes their jubilant rehearsal to descend into a dark and explosive nightmare as they try to survive the night—and find who's responsible—before it's too late.",2018-09-19,3.2195,7.041,2217 +3237,62211,Monsters University,A look at the relationship between Mike and Sulley during their days at Monsters University — when they weren't necessarily the best of friends.,2013-06-19,7.2428,7.0,10921 +3238,10439,Hocus Pocus,"After 300 years of slumber, three sister witches are accidentally resurrected in Salem on Halloween night, and it is up to three kids and their newfound feline friend to put an end to the witches' reign of terror once and for all.",1993-07-16,5.5096,7.041,3120 +3239,2028,Say Anything...,"Lloyd, an eternal optimist, seeks to capture the heart of Diane, an unattainable high school beauty and straight-A student. He surprises just about everyone-including himself-when she returns the sentiment. But Diane's over-possessive, divorced Dad disapproves and it's going to take more than just the power of love to conquer all.",1989-04-14,3.0897,7.0,1040 +3240,936074,Tenor,"While working part-time as a food deliveryman, Antoine, an aspiring young rapper from the suburbs of Paris, meets Mrs. Loiseau, an eminent teacher at the Paris Opéra. Stunned by the young man's raw talent, she introduces him to the world of opera. As Antoine becomes one of Mrs. Loiseau's students, he hides his new dream from his friends and family, fearing that they won’t understand – this double life burdens him... Somewhere in between the gilded and uptight Parisian upper-class, and the harsh yet free-spirited and familiar suburbs he grew up in, Antoine will have to find his own voice.",2022-05-04,1.3624,7.04,329 +3241,487672,Reign of the Supermen,"In the wake of The Death of Supermen, the world is still mourning the loss of the Man of Steel following his fatal battle with the monster Doomsday. However, no sooner as his body been laid to rest than do four new bearers of the Superman shield come forward to take on the mantle. The Last Son of Krypton, Superboy, Steel, and the Cyborg Superman all attempt to fill the vacuum left by the world's greatest champion. Meanwhile, Superman's death has also signaled to the universe that Earth is vulnerable. Can these new Supermen and the rest of the heroes prove them wrong?",2019-01-13,2.5701,7.04,663 +3242,254201,The Absent One,"Denmark, 2014. A former police officer asks Carl Mørck, head of Department Q, to find out who brutally killed his young twins in 1994. Although a local inhabitant confessed and was convicted of murder, Carl and his partner Assad soon realize that there is something in the case resolution that is terribly wrong.",2014-10-02,2.2197,7.04,654 +3243,127380,Finding Dory,Dory is reunited with her friends Nemo and Marlin in the search for answers about her past. What can she remember? Who are her parents? And where did she learn to speak Whale?,2016-06-16,6.062,7.0,12318 +3244,38438,Buffet Froid,"Alphonse Tram is unwittingly involved in several murders despite having no memory of committing the crimes. His confusion lead him to confess to his neighbour, Inspector Morvandieu. Alphonse and Morvandieu become the axis around which murders occur.",1979-12-19,1.6058,7.04,328 +3245,978592,Sleeping Dogs,"Roy Freeman, an ex-homicide detective with a fractured memory, is forced to revisit a case he can't remember. As a man's life hangs in the balance on death row, Freeman must piece together the brutal evidence from a decade-old murder investigation, uncovering a sinister web of buried secrets and betrayals linking to his past. With only instincts to trust, he faces a chilling truth - sometimes, it's best to let sleeping dogs lie.",2024-03-21,4.2002,7.0,441 +3246,670292,The Creator,"Amid a future war between the human race and the forces of artificial intelligence, a hardened ex-special forces agent grieving the disappearance of his wife, is recruited to hunt down and kill the Creator, the elusive architect of advanced AI who has developed a mysterious weapon with the power to end the war—and mankind itself.",2023-09-27,8.005,7.0,3438 +3247,554600,Uri: The Surgical Strike,"Following the roguish terrorist attacks at Uri Army Base camp in Kashmir, India takes the fight to the enemy, in its most successful covert operation till date with one and only one objective of avenging their fallen heroes.",2019-01-11,3.3347,7.0,439 +3248,254320,The Lobster,"In a dystopian near future, single people, according to the laws of The City, are taken to The Hotel, where they are obliged to find a romantic partner in forty-five days or are transformed into animals and sent off into The Woods.",2015-10-15,5.2242,7.039,6508 +3249,26039,Point Blank,"After being double-crossed and left for dead, a mysterious man named Walker single-mindedly tries to retrieve the rather inconsequential sum of money that was stolen from him.",1967-08-30,1.445,7.039,399 +3250,1682,Mothra vs. Godzilla,"Journalists Ichiro Sakai and Junko cover the wreckage of a typhoon when an enormous egg is found and claimed by greedy entrepreneurs. Mothra's fairies arrive and are aided by the journalists in a plea for its return. As their requests are denied, Godzilla arises near Nagoya and the people of Infant Island must decide if they are willing to answer Japan's own pleas for help.",1964-04-29,2.2728,7.039,310 +3251,340357,April and the Extraordinary World,"It’s 1941, but France is trapped in the 19th Century, governed by steam and Napoleon V. Avril, a teenage girl, goes in search of her missing scientist parents.",2015-11-04,1.6546,7.0,341 +3252,18299,Love in the Afternoon,Lovestruck conservatory student Ariane pretends to be just as much a cosmopolitan lover as the worldly mature Frank Flannagan hoping that l’amour will take hold.,1957-05-29,1.1911,7.0,319 +3253,4727,Le Gendarme de Saint-Tropez,"The ambitious police officer Cruchot is transferred to St. Tropez. He's struggling with crimes such as persistent nude swimming, but even more with his teenage daughter, who's trying to impress her rich friends by telling them her father was a millionaire and owned a yacht in the harbor.",1964-09-08,2.4654,7.0,890 +3254,2044,The Lake House,"A lonely doctor who once occupied an unusual lakeside home begins exchanging love letters with its former resident, a frustrated architect. They must try to unravel the mystery behind their extraordinary romance before it's too late.",2006-06-16,3.6073,7.038,2825 +3255,173,"20,000 Leagues Under the Sea","A ship sent to investigate a wave of mysterious sinkings encounters the advanced submarine, the Nautilus, commanded by Captain Nemo.",1954-12-23,2.7455,7.038,924 +3256,696157,Whitney Houston: I Wanna Dance with Somebody,"The joyous, emotional, heartbreaking celebration of the life and music of Whitney Houston, the greatest female R&B pop vocalist of all time. Tracking her journey from obscurity to musical superstardom.",2022-12-20,2.1824,7.037,488 +3257,912480,Red Rooms,"The high-profile case of serial killer Ludovic Chevalier has just gone to trial, and Kelly-Anne is obsessed. When reality blurs with her morbid fantasies, she goes down a dark path to seek the final piece of the case’s puzzle.",2023-08-11,3.3633,7.036,358 +3258,639720,IF,"After discovering she can see everyone's imaginary friends, a girl embarks on a magical adventure to reconnect forgotten imaginary friends with their kids.",2024-05-08,10.8347,7.036,1403 +3259,482373,Don't Breathe 2,"The Blind Man has been hiding out for several years in an isolated cabin and has taken in and raised a young girl orphaned from a devastating house fire. Their quiet life together is shattered when a group of criminals kidnap the girl, forcing the Blind Man to leave his safe haven to save her.",2021-08-12,3.8111,7.036,2672 +3260,11797,Fright Night,"Charley Brewster, a high school student, accidentally discovers the true and creepy nature of Jerry Dandrige, his dashing and enigmatic new neighbor; but no one seems willing to believe him.",1985-08-02,3.4504,7.036,1437 +3261,785538,7 Prisoners,An impoverished teen seeking to escape the clutches of a human trafficker must weigh living up to his moral code against his struggle to survive.,2021-10-22,0.9274,7.035,358 +3262,567609,Ready or Not,A young bride's wedding night turns into her worst nightmare when her ridiculously rich in-laws force her to play a gruesome game of hide-and-seek.,2019-08-21,5.8765,7.035,4863 +3263,445651,The Darkest Minds,"After a disease kills 98% of America's children, the surviving 2% develop superpowers and are placed in internment camps. A 16-year-old girl escapes her camp and joins a group of other teens on the run from the government.",2018-07-25,3.6153,7.035,2865 +3264,385687,Fast X,"Over many missions and against impossible odds, Dom Toretto and his family have outsmarted, out-nerved and outdriven every foe in their path. Now, they confront the most lethal opponent they've ever faced: A terrifying threat emerging from the shadows of the past who's fueled by blood revenge, and who is determined to shatter this family and destroy everything—and everyone—that Dom loves, forever.",2023-05-17,25.7093,7.035,5985 +3265,64720,Take Shelter,"Plagued by a series of apocalyptic visions, a young husband and father questions whether to shelter his family from a coming storm, or from himself.",2011-09-30,4.0201,7.035,1843 +3266,8408,Day of the Dead,A small group of scientists and soldiers take refuge in an underground missile silo where they struggle to control the flesh-eating dead that walks the Earth above.,1985-07-03,2.789,7.0,1299 +3267,4104,Benny & Joon,A mentally ill young woman finds her love in an eccentric man who models himself after Buster Keaton.,1993-04-16,2.1102,7.0,789 +3268,925263,A Brighter Tomorrow,"An old film director, unhappy with the movie he's shooting about a Hungarian circus stranded in Rome during the 1956 anti-Soviet uprising, faces divorce from his producer wife and other problems.",2023-04-20,0.5504,7.0,313 +3269,366924,Batman: Bad Blood,"Bruce Wayne is missing. Alfred covers for him while Nightwing and Robin patrol Gotham City in his stead and a new player, Batwoman, investigates Batman's disappearance.",2016-01-19,2.4492,7.034,939 +3270,14886,The Last Detail,"Two Navy men are ordered to bring a young offender to prison, but decide to show him one last good time along the way.",1973-12-11,1.5598,7.034,382 +3271,174,Star Trek VI: The Undiscovered Country,"After years of war, the Federation and the Klingon empire find themselves on the brink of a peace summit when a Klingon ship is nearly destroyed by an apparent attack from the Enterprise. Both worlds brace for what may be their deadliest encounter.",1991-12-06,1.9721,7.034,1326 +3272,480530,Creed II,"Between personal obligations and training for his next big fight against an opponent with ties to his family's past, Adonis Creed is up against the challenge of his life.",2018-11-21,12.0641,7.033,5570 +3273,17917,Oliver!,"Musical adaptation of Charles Dickens' Oliver Twist, a classic tale of an orphan who runs away from the workhouse and joins up with a group of boys headed by the Artful Dodger and trained to be pickpockets by master thief Fagin.",1968-09-26,2.2945,7.0,448 +3274,13925,Luxo Jr.,"A baby lamp finds a ball to play with and it's all fun and games until the ball bursts. Just when the elder Luxo thinks his kid will settle down for a bit, Luxo Jr. finds a ball ten times bigger.",1986-08-17,1.0517,7.0,630 +3275,838,American Graffiti,A couple of high school graduates spend one final night cruising the strip with their buddies before they go off to college.,1973-08-11,3.7113,7.0,1500 +3276,636565,Rose Island,"In 1968, engineer Giorgio Rosa established the independent state called ""The Isle of Roses"" off the coast of Rimini, built on a platform outside the territorial waters, with Esperanto as the official language. The Italian authorities did not take it well because the micronation was seen as an expedient to not pay taxes on the revenues obtained thanks to the arrival of numerous tourists and curious people.",2020-12-09,1.9381,7.033,1349 +3277,348089,Grease Live,"After enjoying a holiday romance, high school students Danny and Sandy are unexpectedly reunited when she transfers to Rydell High, where she must contend with cynical Rizzo and the Pink Ladies.",2016-01-31,1.1064,7.032,300 +3278,36950,You Don't Know Jack,Controversy and legal problems follow Dr. Jack Kevorkian as he advocates assisted suicide.,2010-06-27,1.6075,7.032,407 +3279,12335,Bedknobs and Broomsticks,Three children evacuated from London during World War II are forced to stay with an eccentric spinster. The children's initial fears disappear when they find out she is in fact a trainee witch.,1971-10-07,2.0915,7.0,986 +3280,418680,Goodbye Christopher Robin,The behind the scenes story of the life of A.A. Milne and the creation of the Winnie the Pooh stories inspired by his son Christopher Robin.,2017-09-29,1.5655,7.031,851 +3281,35558,Starstruck,"Pop star Christopher Wilde has fame, fortune and a big-budget Hollywood movie awaiting him. But after meeting Jessica Olson, a down-to-earth girl from the Midwest, he is faced with following his heart or doing what's best for his career.",2010-02-14,3.008,7.031,1204 +3282,36658,X2,"Professor Charles Xavier and his team of genetically gifted superheroes face a rising tide of anti-mutant sentiment led by Col. William Stryker. Storm, Wolverine and Jean Grey must join their usual nemeses—Magneto and Mystique—to unhinge Stryker's scheme to exterminate all mutants.",2003-04-27,0.3775,7.03,10440 +3283,13928,Knick Knack,"Life on a shelf as a snowman trapped in a snow-globe blizzard can become wearing, especially when you're surrounded by knickknacks from sunnier locales. When the jaded snowman finally breaks free of his glass house, his vacation plans are cut short.",1989-11-23,1.027,7.03,580 +3284,11085,Mutiny on the Bounty,"The Bounty leaves Portsmouth in 1787. Its destination: to sail to Tahiti and load bread-fruit. Captain Bligh will do anything to get there as fast as possible, using any means to keep up a strict discipline. When they arrive at Tahiti, it is like a paradise for the crew, something completely different than the living hell aboard the ship. On the way back to England, officer Fletcher Christian becomes the leader of a mutiny.",1962-11-08,2.2724,7.03,320 +3285,8053,The Three Burials of Melquiades Estrada,"When brash Texas border officer Mike Norton wrongfully kills and buries the friend and ranch hand of Pete Perkins, the latter is reminded of a promise he made to bury his friend, Melquiades Estrada, in his Mexican home town. He kidnaps Norton and exhumes Estrada's corpse, and the odd caravan sets out on horseback for Mexico.",2005-11-17,1.2551,7.03,607 +3286,340027,Brain on Fire,"Susannah Cahalan, an up-and-coming journalist at the New York Post becomes plagued by voices in her head and seizures, causing a rapid descent into insanity.",2017-02-22,1.5549,7.0,1392 +3287,5693,Hoosiers,"Failed college coach Norman Dale gets a chance at redemption when he is hired to coach a high school basketball team in a tiny Indiana town. After a teacher persuades star player Jimmy Chitwood to quit and focus on his long-neglected studies, Dale struggles to develop a winning team in the face of community criticism for his temper and his unconventional choice of assistant coach: Shooter, a notorious alcoholic.",1986-11-14,2.568,7.0,549 +3288,546,Transamerica,"A transgender woman takes an unexpected journey when she learns that she had a son, now a teenage runaway hustling on the streets of New York.",2005-02-14,1.2965,7.0,482 +3289,293,A River Runs Through It,"The Maclean brothers, Paul and Norman, live a relatively idyllic life in rural Montana, spending much of their time fly fishing. The sons of a minister, the boys eventually part company when Norman moves east to attend college, leaving his rebellious brother to find trouble back home. When Norman finally returns, the siblings resume their fishing outings, and assess where they've been and where they're going.",1992-10-09,5.0616,7.029,1121 +3290,893723,PAW Patrol: The Mighty Movie,"A magical meteor crash lands in Adventure City and gives the PAW Patrol pups superpowers, transforming them into The Mighty Pups.",2023-09-21,7.8495,7.028,503 +3291,11690,Bloodsport,An American Army Major goes AWOL to Hong Kong for an outlawed martial arts contest called the Kumite.,1988-02-26,6.2121,7.028,1973 +3292,10995,The Lover,"A poor French teenage girl engages in an illicit affair with a wealthy Chinese heir in 1920s Saigon. For the first time in her young life she has control, and she wields it deftly over her besotted lover throughout a series of clandestine meetings and torrid encounters.",1992-01-22,5.5391,7.0,715 +3293,10607,Don't Be a Menace to South Central While Drinking Your Juice in the Hood,"When Ashtray moves to South Central L.A. to live with his father (who appears to be the same age he is) and grandmother (who likes to talk tough and smoke reefer), he falls in with his gang-banging cousin Loc Dog, who along with the requisite pistols and Uzi carries a thermo-nuclear warhead for self-defense. Will Ashtray be able to keep living the straight life?",1996-01-12,8.5044,7.028,1394 +3294,9533,Red Dragon,"Former FBI Agent Will Graham, who was once almost killed by the savage Hannibal 'The Cannibal' Lecter, now has no choice but to face him again, as it seems Lecter is the only one who can help Graham track down a new serial killer.",2002-10-02,1.3374,7.028,4430 +3295,722913,Malcolm & Marie,"As a filmmaker and his girlfriend return home from his movie premiere, smoldering tensions and painful revelations push them toward a romantic reckoning.",2021-01-29,1.8803,7.027,1404 +3296,641662,Pieces of a Woman,"When a young mother's home birth ends in unfathomable tragedy, she begins a year-long odyssey of mourning that fractures relationships with loved ones in this deeply personal story of a woman learning to live alongside her loss.",2020-12-30,2.0061,7.0,1245 +3297,542178,The French Dispatch,"The staff of an American magazine based in France puts out its last issue, with stories featuring an artist sentenced to life imprisonment, student riots, and a kidnapping resolved by a chef.",2021-10-21,2.9956,7.026,2761 +3298,429191,A Fantastic Woman,"Marina's life is thrown into turmoil following the death of her partner. Mourning the loss of the man she loved, she finds herself under intense scrutiny from those with no regard for her privacy.",2017-04-06,1.2094,7.027,711 +3299,11975,The Rainmaker,"When Rudy Baylor, a young attorney with no clients, goes to work for a seedy ambulance chaser, he wants to help the parents of a terminally ill boy in their suit against an insurance company. But to take on corporate America, Rudy and a scrappy paralegal must open their own law firm.",1997-11-18,3.7251,7.0,1369 +3300,755,From Dusk Till Dawn,"After kidnapping a father and his two kids, the Gecko brothers head south to a seedy Mexican bar to hide out in safety, unaware of its notorious vampire clientele.",1996-01-19,6.9772,7.027,6151 +3301,519182,Despicable Me 4,"Gru and Lucy and their girls—Margo, Edith and Agnes—welcome a new member to the Gru family, Gru Jr., who is intent on tormenting his dad. Gru also faces a new nemesis in Maxime Le Mal and his femme fatale girlfriend Valentina, forcing the family to go on the run.",2024-06-20,38.7004,7.026,2876 +3302,341744,Truman,"Tomás, who lives in Canada, travels to Madrid, Spain, to visit his old friend Julián. Both of them, accompanied by Truman, Julián's faithful dog, will share many surprising and emotional little moments, triggered by the hard situation Julián is going through, for just a few days.",2015-09-24,1.5042,7.026,381 +3303,19833,In the Loop,"The US President and the UK Prime Minister are planning on launching a war in the Middle East, but—behind the scenes—government officials and advisers are either promoting the war or are trying to prevent it.",2009-01-22,1.8254,7.026,720 +3304,432068,C'est la vie!,"Max is a battle-weary veteran of the wedding-planning racket. His latest — and last — gig is a hell of a fête, involving stuffy period costumes for the caterers, a vain, hyper- sensitive singer who thinks he's a Gallic James Brown, and a morose, micromanaging groom determined to make Max's night as miserable as possible. But what makes the affair too bitter to endure is that Max's colleague and ostensible girlfriend, Joisette, seems to have written him off, coolly going about her professional duties while openly flirting with a much younger server. It's going to be a very long night… especially once the groom's aerial serenade gets underway.",2017-10-04,2.2607,7.025,1507 +3305,5488,"I'm a Cyborg, But That's OK","Young-goon, mentally deranged and frequently electro-charging herself with a transistor radio, has been admitted into a mental institution. Firmly believing herself to be a cyborg, she refuses to consume like a human being. Il-soon is another patient, who catches the eye of Young-goon and soon becomes a close friend. Il-soon is now confronted with the biggest task: to cure Young-goon's mental problem and have her eat real food.",2006-12-07,1.577,7.025,543 +3306,744275,After We Fell,"Just as Tessa's life begins to become unglued, nothing is what she thought it would be. Not her friends nor her family. The only person that she should be able to rely on is Hardin, who is furious when he discovers the massive secret that she's been keeping. Before Tessa makes the biggest decision of her life, everything changes because of revelations about her family.",2021-09-01,12.8452,7.024,2663 +3307,19186,The Parent Trap,"Two identical twin sisters, separated at birth by their parents' divorce, are reunited years later at a summer camp, where they scheme to bring their parents back together. The girls, one of whom has been living with their mother and the other with their father, switch places after camp and go to work on their plan, the first objective being to scare off a gold-digger pursuing their father.",1961-05-13,8.4352,7.0,400 +3308,15016,Barbie of Swan Lake,"Barbie as Odette, the young daughter of a baker, follows a unicorn into the Enchanted Forest and is transformed into a swan by an evil wizard intent on defeating the Fairy Queen.",2003-09-27,3.5114,7.0,1111 +3309,10865,Atlantis: The Lost Empire,A young linguist named Milo Thatch joins an intrepid group of explorers to find the mysterious lost continent of Atlantis.,2001-06-02,4.2287,7.024,4916 +3310,461955,Rakka,"A story of broken humanity following the invasion of a technologically superior alien species. Bleak, harrowing, and unrelenting, the humans must find enough courage to go on fighting.",2017-06-14,1.0408,7.023,320 +3311,367544,The Spirit of Christmas,A woman falls in love with a man who is somewhat unavailable.,2015-11-28,0.9902,7.0,301 +3312,365222,Ip Man 3,"When a band of brutal gangsters led by a crooked property developer make a play to take over the city, Master Ip is forced to take a stand.",2015-12-24,3.1465,7.023,1813 +3313,16608,The Proposition,"In 1880s Australia, a lawman offers renegade Charlie Burns a difficult choice. In order to save his younger brother from the gallows, Charlie must hunt down and kill his older brother, who is wanted for rape and murder. Venturing into one of the Outback's most inhospitable regions, Charlie faces a terrible moral dilemma that can end only in violence.",2005-10-06,2.1543,7.023,664 +3314,8293,Howards End,"A saga of class relations and changing times in an Edwardian England on the brink of modernity, the film centers on liberal Margaret Schlegel, who, along with her sister Helen, becomes involved with two couples: wealthy, conservative industrialist Henry Wilcox and his wife Ruth, and the downwardly mobile working-class Leonard Bast and his mistress Jackie.",1992-03-13,2.627,7.023,563 +3315,22201,Gunfight at the O.K. Corral,Lawman Wyatt Earp and outlaw Doc Holliday form an unlikely alliance which culminates in their participation in the legendary Gunfight at the O.K. Corral.,1957-05-30,2.2381,7.0,358 +3316,19562,The Magnificent One,A writer of pulpy book series in which he's the hero and his beautiful English roommate is the love interest attempts to finish his new book in time at the publisher's demand.,1973-11-23,1.2066,7.022,361 +3317,2623,An Officer and a Gentleman,"Zack Mayo is an aloof, taciturn man who aspires to be a navy pilot. Once he arrives at training camp for his 13-week officer's course, Mayo runs afoul of abrasive, no-nonsense drill Sergeant Emil Foley. Mayo is an excellent cadet, but a little cold around the heart, so Foley rides him mercilessly, sensing that the young man would be prime officer material if he weren't so self-involved. Zack's affair with a working girl is likewise compromised by his unwillingness to give of himself.",1982-07-28,3.8191,7.0,1139 +3318,1073,Arlington Road,Threats from sinister foreign nationals aren't the only thing to fear. Bedraggled college professor Michael Faraday has been vexed (and increasingly paranoid) since his wife's accidental death in a botched FBI operation. But all that takes a backseat when a seemingly all-American couple set up house next door.,1999-03-19,3.257,7.022,1153 +3319,926899,The House,"Across different eras, a poor family, an anxious developer and a fed-up landlady become tied to the same mysterious house in this animated dark comedy.",2022-01-14,1.8495,7.021,1072 +3320,62177,Brave,"In the mystical Scottish Highlands, Merida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer, Merida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right, Merida seeks out an eccentric old Wise Woman and is granted an ill-fated wish. Also figuring into Merida's quest — and serving as comic relief — are the kingdom's three lords: the enormous Lord MacGuffin, the surly Lord Macintosh, and the disagreeable Lord Dingwall.",2012-06-21,9.6958,7.021,13706 +3321,17264,The Black Stallion,"While traveling with his father, young Alec becomes fascinated by a mysterious Arabian stallion that is brought on board and stabled in the ship he is sailing on. When it tragically sinks both he and the horse survive only to be stranded on a deserted island. He befriends it, so when finally rescued both return to his home where they soon meet Henry Dailey, a once successful trainer. Together they begin training the horse to race against the fastest ones in the world.",1979-10-13,2.417,7.021,303 +3322,11652,Invincible,"Inspired by the true story of Vince Papale, a man with nothing to lose who ignored the staggering odds and made his dream come true. When the coach of Papale's beloved hometown football team hosted an unprecedented open tryout, the public consensus was that it was a waste of time – no one good enough to play professional football was going to be found this way.",2006-08-25,2.2267,7.0,961 +3323,942,Lethal Weapon 2,Riggs and Murtaugh are on the trail of South African diplomats using their immunity to engage in criminal activities.,1989-07-07,4.3729,7.021,3540 +3324,14139,Timecrimes,A man accidentally gets into a time machine and travels back in time nearly an hour. Finding himself will be the first of a series of disasters of unforeseeable consequences.,2007-11-01,2.8994,7.0,1332 +3325,11831,Amistad,"In 1839, the slave ship Amistad set sail from Cuba to America. During the long trip, Cinque leads the slaves in an unprecedented uprising. They are then held prisoner in Connecticut, and their release becomes the subject of heated debate. Freed slave Theodore Joadson wants Cinque and the others exonerated and recruits property lawyer Roger Baldwin to help his case. Eventually, John Quincy Adams also becomes an ally.",1997-12-10,0.7197,7.0,1335 +3326,2064,While You Were Sleeping,"A transit worker pulls commuter Peter off railway tracks after he's mugged, but—while he's in a coma—his family mistakenly thinks she's Peter's fiancée, and she doesn't correct them. Things get more complicated when she falls for his brother, who's not quite sure that she's who she claims to be.",1995-04-21,3.4376,7.0,1889 +3327,1143319,Puppy Love,"After a disastrous first date, wild-child Nicole and socially-anxious Max vow to lose each other’s numbers until they learn that their dogs found a love match, and now puppies are on the way! The hilariously mismatched Nicole and Max are forced to become responsible co-parents, but may end up finding love themselves.",2023-08-22,3.4103,7.018,311 +3328,12920,Dreamer: Inspired By a True Story,Ben Crane believes that a severely injured racehorse deserves another chance. He and his daughter Cale adopt the mare and save it from being sacrificed by the owner.,2005-09-10,1.6137,7.019,407 +3329,763215,Damsel,A young woman's marriage to a charming prince turns into a fierce fight for survival when she's offered up as a sacrifice to a fire-breathing dragon.,2024-03-07,9.4059,7.018,2507 +3330,651070,A Fall from Grace,"When a law-abiding woman gets indicted for murdering her husband, her lawyer soon realizes that a larger conspiracy may be at work.",2020-01-17,2.9284,7.018,949 +3331,250734,Far from the Madding Crowd,"In Victorian England, the independent and headstrong Bathsheba Everdene attracts three very different suitors: Gabriel Oak, a hardworking young sheep farmer; Frank Troy, a handsome and reckless Sergeant; and William Boldwood, a prosperous and mature bachelor.",2015-04-23,2.7938,7.018,1060 +3332,62204,Quest for Fire,"In the prehistoric world, a Cro-Magnon tribe depends on an ever-burning source of fire, which eventually extinguishes. Lacking the knowledge to start a new fire, the tribe sends three warriors on a quest for more. With the tribe's future at stake, the warriors make their way across a treacherous landscape full of hostile tribes and monstrous beasts. On their journey, they encounter Ika, a woman who has the knowledge they seek.",1981-12-16,1.888,7.0,533 +3333,385103,Scoob!,"In Scooby-Doo’s greatest adventure yet, see the never-before told story of how lifelong friends Scooby and Shaggy first met and how they joined forces with young detectives Fred, Velma, and Daphne to form the famous Mystery Inc. Now, with hundreds of cases solved, Scooby and the gang face their biggest, toughest mystery ever: an evil plot to unleash the ghost dog Cerberus upon the world. As they race to stop this global “dogpocalypse,” the gang discovers that Scooby has a secret legacy and an epic destiny greater than anyone ever imagined.",2020-07-08,4.1331,7.017,1749 +3334,9036,Eight Below,"In the Antarctic, after an expedition with Dr. Davis McClaren, the sled dog trainer Jerry Shepherd has to leave the polar base with his colleagues due to the proximity of a heavy snow storm. He ties his dogs to be rescued after, but the mission is called-off and the dogs are left alone at their own fortune. For six months, Jerry tries to find a sponsor for a rescue mission.",2006-02-17,3.1563,7.017,1746 +3335,2769,An American in Paris,"Jerry Mulligan is an exuberant American expatriate in Paris trying to make a reputation as a painter. His friend Adam is a struggling concert pianist who's a long time associate of a famous French singer, Henri Baurel. A lonely society woman, Milo Roberts, takes Jerry under her wing and supports him, but is interested in more than his art.",1951-09-26,1.7416,7.017,604 +3336,556678,Emma.,"In 1800s England, a well-meaning but selfish young woman meddles in the love lives of her friends.",2020-02-13,3.2343,7.016,1829 +3337,429197,Vice,"George W. Bush picks Dick Cheney, the CEO of Halliburton Co., to be his Republican running mate in the 2000 presidential election. No stranger to politics, Cheney's impressive résumé includes stints as White House chief of staff, House Minority Whip and Defense Secretary. When Bush wins by a narrow margin, Cheney begins to use his newfound power to help reshape the country and the world.",2018-12-25,3.3357,7.016,3443 +3338,11848,Animal Farm,Animals on a farm lead a revolution against the farmers to put their destiny in their own hands. However this revolution eats their own children and they cannot avoid corruption.,1954-12-28,2.277,7.0,503 +3339,664413,365 Days,"A woman falls victim to a dominant mafia boss, who imprisons her and gives her one year to fall in love with him.",2020-02-07,5.6982,7.015,9248 +3340,300669,Don't Breathe,A group of teens break into a blind man's home thinking they'll get away with the perfect crime. They're wrong.,2016-06-08,7.1385,7.016,7652 +3341,11848,Animal Farm,Animals on a farm lead a revolution against the farmers to put their destiny in their own hands. However this revolution eats their own children and they cannot avoid corruption.,1954-12-28,2.277,7.0,503 +3342,664413,365 Days,"A woman falls victim to a dominant mafia boss, who imprisons her and gives her one year to fall in love with him.",2020-02-07,5.6982,7.015,9248 +3343,522039,The Last Black Man in San Francisco,"Jimmie Fails dreams of reclaiming the Victorian home his grandfather built in the heart of San Francisco. Joined on his quest by his best friend Mont, Jimmie searches for belonging in a rapidly changing city that seems to have left them behind.",2019-06-07,1.294,7.015,334 +3344,43959,Soul Surfer,"The true story of teen surfer Bethany Hamilton, who lost her arm in a shark attack and courageously overcame all odds to become a champion again, through her sheer determination and unwavering faith.",2011-04-08,2.4874,7.015,1196 +3345,20766,The Road,"A father and his son walk alone through burned America. Nothing moves in the ravaged landscape save the ash on the wind and water. It is cold enough to crack stones and, when the snow falls, it is gray. Their destination is the warmer south, although they don't know what, if anything, awaits them there.",2009-11-25,4.7827,7.015,4011 +3346,19971,The Little Girl Who Lives Down the Lane,"Quiet, withdrawn 13-year-old Rynn Jacobs lives peacefully in her home in a New England beach town. Whenever the prying landlady inquires after Rynn's father, she politely claims that he's in the city on business. But when the landlady's creepy and increasingly persistent son, Frank, won't leave Rynn alone, she teams up with kindly neighbor boy Mario to maintain the dark family secret that she's been keeping to herself.",1976-12-25,1.452,7.0,330 +3347,696806,The Adam Project,"After accidentally crash-landing in 2022, time-traveling fighter pilot Adam Reed teams up with his 12-year-old self on a mission to save the future.",2022-03-11,5.1961,7.014,4591 +3348,661914,One Night in Miami...,"In the aftermath of Cassius Clay's defeat of Sonny Liston in 1964, the boxer meets with Malcolm X, Sam Cooke and Jim Brown to change the course of history in the segregated South.",2020-12-25,1.4782,7.014,655 +3349,460465,Mortal Kombat,"Washed-up MMA fighter Cole Young, unaware of his heritage, and hunted by Emperor Shang Tsung's best warrior, Sub-Zero, seeks out and trains with Earth's greatest champions as he prepares to stand against the enemies of Outworld in a high stakes battle for the universe.",2021-04-07,7.9573,7.014,6035 +3350,399057,The Killing of a Sacred Deer,"Dr. Steven Murphy is a renowned cardiovascular surgeon who presides over a spotless household with his wife and two children. Lurking at the margins of his idyllic suburban existence is Martin, a fatherless teen who insinuates himself into the doctor's life in gradually unsettling ways.",2017-10-20,3.5075,7.014,4202 +3351,328387,Nerve,"Industrious high school senior Vee Delmonico has had it with living life on the sidelines. When pressured by friends to join the popular online game Nerve, Vee decides to sign up for just one dare in what seems like harmless fun. But as she finds herself caught up in the thrill of the adrenaline-fueled competition partnered with a mysterious stranger, the game begins to take a sinister turn with increasingly dangerous acts, leading her into a high stakes finale that will determine her entire future.",2016-06-27,3.1259,7.014,6865 +3352,12143,Bad Lieutenant,"While investigating a young nun's rape, a corrupt New York City police detective, with a serious drug and gambling addiction, tries to change his ways and find forgiveness.",1992-11-20,1.4954,7.0,903 +3353,2604,Born on the Fourth of July,"Paralyzed in the Vietnam war, Ron Kovic becomes an anti-war and pro-human rights political activist after feeling betrayed by the country he fought for.",1989-12-20,3.0403,7.014,1784 +3354,579583,The King of Staten Island,"Scott has been a case of arrested development ever since his firefighter father died when he was seven. He's now reached his mid-20s having achieved little, chasing a dream of becoming a tattoo artist that seems far out of reach. As his ambitious younger sister heads off to college, Scott is still living with his exhausted ER nurse mother and spends his days smoking weed, hanging with the guys — Oscar, Igor and Richie — and secretly hooking up with his childhood friend Kelsey. But when his mother starts dating a loudmouth firefighter named Ray, it sets off a chain of events that will force Scott to grapple with his grief and take his first tentative steps toward moving forward in life.",2020-07-22,2.5774,7.013,1060 +3355,130150,Labor Day,Two two strangers are drawn together under incredible circumstances. What starts as an unforeseen encounter over a long holiday weekend soon becomes a second chance love story.,2013-12-27,4.76,7.013,1235 +3356,15015,Barbie as Rapunzel,"Long, long ago, in a time of magic and dragons, there lived a girl named Rapunzel who had the most beautiful radiant hair the world had ever seen. But Rapunzel's life was far from wonderful. She lived as a servant to Gothel, a jealous, scheming witch who kept her hidden deep in a forbidding forest, guarded by the enormous dragon Hugo and surrounded by an enchanted glass wall. However, in a twist of fate, Rapunzel's discovery of a magic paintbrush leads her on a journey that will unravel a web of deception, bring peace to two feuding kingdoms, and ultimately lead her to love with the help of Penelope, the least intimidating of dragons!",2002-10-01,4.3493,7.0,1250 +3357,11336,The Dead Zone,"Johnny Smith is a schoolteacher with his whole life ahead of him but, after leaving his fiancee's home one night, is involved in a car crash which leaves him in a coma for 5 years. When he wakes, he discovers he has an ability to see into the past, present and future life of anyone with whom he comes into physical contact.",1983-10-21,2.5765,7.0,1712 +3358,35,The Simpsons Movie,"After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.",2007-07-25,8.0397,7.013,8236 +3359,9696,Ichi the Killer,"As sadomasochistic yakuza enforcer Kakihara searches for his missing boss he comes across Ichi, a repressed and psychotic killer who may be able to inflict levels of pain that Kakihara has only dreamed of.",2001-12-22,2.3299,7.0,1024 +3360,332283,Mary Shelley,"The love affair between poet Percy Shelley and Mary Wollstonecraft Godwin resulted in the creation of an immortal novel, “Frankenstein; or, The Modern Prometheus.”",2017-08-06,1.4915,7.011,1016 +3361,28384,Husbands and Wives,"When Jack and Sally announce that they're splitting up, this comes as a shock to their best friends Gabe and Judy. Maybe mostly because they also are drifting apart and are now being made aware of it. So while Jack and Sally try to go on and meet new people, the marriage of Gabe and Judy gets more and more strained, and they begin to find themselves being attracted to other people.",1992-09-18,0.9565,7.0,474 +3362,16198,My Neighbors the Yamadas,"The Yamadas are a typical middle class Japanese family in urban Tokyo and this film shows us a variety of episodes of their lives. With tales that range from the humorous to the heartbreaking, we see this family cope with life's little conflicts, problems, and joys in their own way.",1999-07-17,2.1469,7.0,571 +3363,11973,Thirteen Days,The story of the Cuban Missile Crisis in 1962—the nuclear standoff with the USSR sparked by the discovery by the Americans of missile bases established on the Soviet-allied island of Cuba.,2000-12-25,2.4561,7.011,783 +3364,5698,The Great Train Robbery,"After the train station clerk is assaulted and left bound and gagged, then the departing train and its passengers robbed, a posse goes in hot pursuit of the fleeing bandits.",1903-12-07,1.4208,7.011,649 +3365,2164,Stargate,"An interstellar teleportation device, found in Egypt, leads to a planet with humans resembling ancient Egyptians who worship the god Ra.",1994-10-28,6.9889,7.0,3565 +3366,281,Strange Days,"Former policeman Lenny Nero has moved into a more lucrative trade: the illegal sale of virtual reality-like recordings that allow users to experience the emotions and past experiences of others. While they typically contain tawdry incidents, Nero is shocked when he receives one showing a murder.",1995-10-13,2.1556,7.011,1418 +3367,745881,The Medium,"A shaman's family learn that their goddess is supposedly controlling one of them. However, their lives take a frightening turn when they realise the goddess has nothing to do with the possession.",2021-07-14,4.1032,7.01,679 +3368,467244,The Zone of Interest,"The commandant of Auschwitz, Rudolf Höss, and his wife Hedwig, strive to build a dream life for their family in a house and garden next to the camp.",2023-12-15,4.9033,7.01,2239 +3369,10220,Rounders,A young reformed gambler must return to playing big stakes poker to help a friend pay off loan sharks.,1998-09-11,2.5302,7.0,1792 +3370,5919,The Towering Inferno,"At the opening party of a colossal—but poorly constructed—skyscraper, a massive fire breaks out, threatening to destroy the tower and everyone in it.",1974-12-14,3.0218,7.0,970 +3371,3170,Bambi,"Bambi's tale unfolds from season to season as the young prince of the forest learns about life, love, and friends.",1942-08-14,7.6649,7.0,5824 +3372,746036,The Fall Guy,"Fresh off an almost career-ending accident, stuntman Colt Seavers has to track down a missing movie star, solve a conspiracy and try to win back the love of his life while still doing his day job.",2024-04-24,9.5834,7.009,3104 +3373,582873,Martin Eden,"The tale of an individualist proletarian in a time marked by the rise of mass political movements. In early 20th-century Italy, illiterate sailor Martin Eden seeks fame as a writer while torn between the love of a bourgeois girl and allegiance to his social class.",2019-09-04,1.1112,7.009,671 +3374,246355,Saw,"David, an orderly at a hospital, tells his horrific story of being kidnapped and forced to play a vile game of survival.",2003-10-16,1.4992,7.009,634 +3375,233063,Suck Me Shakespeer,Ex-con Zeki Müller goes undercover as a teacher at a below average Gymnasium to find money he'd stashed prior to incarceration.,2013-11-07,2.0768,7.009,1712 +3376,82684,Chasing Mavericks,Surfer Jay Moriarity sets out to ride the Northern California break known as Mavericks.,2012-10-25,1.2743,7.009,574 +3377,37347,Fort Apache,"Owen Thursday sees his new posting to the desolate Fort Apache as a chance to claim the military honour which he believes is rightfully his. Arrogant, obsessed with military form and ultimately self-destructive, he attempts to destroy the Apache chief Cochise after luring him across the border from Mexico, against the advice of his subordinates.",1948-05-21,2.4676,7.0,381 +3378,26748,Lone Star,"When the skeleton of his murdered predecessor is found, Sheriff Sam Deeds unearths many other long-buried secrets in his Texas border town.",1996-06-21,1.5259,7.009,385 +3379,13666,The Wolf Man,"After his brother's death, Larry Talbot returns home to his father and the family estate. Events soon take a turn for the worse when Larry is bitten by a werewolf.",1941-12-12,1.9729,7.0,643 +3380,8833,Double Trouble,A stuntman and a saxophonist stand in for two billionaires threatened by killers.,1984-10-19,2.1995,7.0,545 +3381,847,Willow,"The evil Queen Bavmorda hunts the newborn princess Elora Danan, a child prophesied to bring about her downfall. When the royal infant is found by Willow, a timid farmer and aspiring sorcerer, he's entrusted with delivering her from evil.",1988-05-20,3.6362,7.01,2025 +3382,526,Ladyhawke,"Captain Etienne Navarre is a man on whose shoulders lies a cruel curse. Punished for loving each other, Navarre must become a wolf by night whilst his lover, Lady Isabeau, takes the form of a hawk by day. Together, with the thief Philippe Gaston, they must try to overthrow the corrupt Bishop and in doing so break the spell.",1985-03-27,3.3119,7.009,1182 +3383,1079091,It Ends with Us,"When a woman's first love suddenly reenters her life, her relationship with a charming, but abusive neurosurgeon is upended, and she realizes she must learn to rely on her own strength to make an impossible choice for her future.",2024-08-07,7.8997,7.008,1675 +3384,249688,The End of the Tour,"The story of the five-day interview between Rolling Stone reporter David Lipsky and acclaimed novelist David Foster Wallace, which took place right after the 1996 publication of Wallace's groundbreaking epic novel, 'Infinite Jest.'",2015-07-31,2.4778,7.008,572 +3385,24752,Dragon Ball Z: Cooler's Revenge,"After defeating Frieza, Goku returns to Earth and goes on a camping trip with Gohan and Krillin. Everything is normal until Cooler - Frieza's brother - sends three henchmen after Goku. A long fight ensues between our heroes and Cooler, in which he transforms into the fourth stage of his evolution and has the edge in the fight... until Goku transforms into a Super Saiyan.",1991-07-20,4.363,7.0,703 +3386,15058,Speak,"Freshman high-school student Melinda has refused to speak ever since she called the cops on a popular summer party. With her old friends snubbing her for being a rat, and her parents too busy to notice her troubles, she folds into herself, trying to hide her secret: that star senior Andy raped her at the party. But Melinda does manage to find solace in her art class headed by Mr. Freeman.",2004-01-20,2.5369,7.008,486 +3387,4946,The Swimming Pool,"Set in a magnificent villa near a sun-drenched St. Tropez, lovers Jean-Paul and Marianne are spending a happy, lazy summer holiday. Their only concern is to gratify their mutual passion - until the day when Marianne invites her former lover and his beautiful teenage daughter to spend a few days with them. From the first moment, a certain uneasiness and tension begin to develop between the four, which soon escalates in a dangerous love-game.",1969-01-31,2.6227,7.0,525 +3388,2061,Pusher,A drug pusher grows increasingly desperate after a botched deal leaves him with a large debt to a ruthless drug lord.,1996-08-30,2.9488,7.0,789 +3389,408508,Blue Jay,"Meeting by chance when they return to their tiny California hometown, two former high-school sweethearts reflect on their shared past.",2016-10-07,1.6386,7.007,503 +3390,402897,The Death of Stalin,"When dictator Joseph Stalin dies, his parasitic cronies square off in a frantic power struggle to become the next Soviet leader. As they bumble, brawl and back-stab their way to the top, the question remains — just who is running the government?",2017-10-20,2.7919,7.007,1991 +3391,38055,Megamind,"After Megamind, a highly intelligent alien supervillain, defeats his long-time nemesis Metro Man, Megamind creates a new hero to fight, but must act to save the city when his ""creation"" becomes an even worse villain than he was.",2010-10-28,9.2422,7.006,7086 +3392,15775,If Only,"After his impetuous musician girlfriend, Samantha, dies in an accident shortly after they had a fight (and nearly broke up), Ian Wyndham, a grief-stricken British businessman living in London gets a chance to relive the day all over again, in the hope of changing the events that led up to her getting killed.",2004-01-23,2.7641,7.0,600 +3393,10130,Gorillas in the Mist,"The story of Dian Fossey, a scientist who came to Africa to study the vanishing mountain gorillas, and later fought to protect them.",1988-09-23,2.0018,7.0,611 +3394,7270,Matchstick Men,A phobic con artist and his protege are on the verge of pulling off a lucrative swindle when the con artist's teenage daughter arrives unexpectedly.,2003-09-12,1.681,7.007,1825 +3395,555561,The Invisible Witness,"Adriano wakes up in a hotel room next to the dead body of his lover, Laura. The door is locked from the inside and there is no evidence of anybody else in the room.",2018-12-13,0.4398,7.006,332 +3396,472451,Boy Erased,"Jared, the son of a Baptist pastor in a small American town, is outed to his parents at age 19. Jared is faced with an ultimatum: attend a gay conversion therapy program – or be permanently exiled and shunned by his family, friends, and faith.",2018-09-24,2.1603,7.006,1438 +3397,15789,A Goofy Movie,"An endearing modern-day story about how the lovable Goof bonds with his teenage son Max on a hilarious cross-country road trip. En route to the ol' fishing hole, they find themselves up to their floppy ears in misadventure!",1995-04-07,3.0539,7.0,1832 +3398,11454,Manhunter,"FBI Agent Will Graham, who retired after catching Hannibal Lecter, returns to duty to engage in a risky cat-and-mouse game with Lecter to capture a new killer.",1986-08-14,0.1938,7.008,1419 +3399,954,Mission: Impossible,"When Ethan Hunt, the leader of a crack espionage team whose perilous operation has gone awry with no explanation, discovers that a mole has penetrated the CIA, he's surprised to learn that he's the prime suspect. To clear his name, Hunt now must ferret out the real double agent and, in the process, even the score.",1996-05-22,12.8474,7.006,9442 +3400,457799,"Extremely Wicked, Shockingly Evil and Vile","A chronicle of the crimes of Ted Bundy, from the perspective of his longtime girlfriend, Elizabeth Kloepfer, who refused to believe the truth about him for years.",2019-05-02,3.2105,7.005,3417 +3401,228970,Wild,A woman with a tragic past decides to start her new life by hiking for one thousand miles on the Pacific Crest Trail.,2014-12-05,2.9454,7.005,2560 +3402,36657,X-Men,"Two mutants, Rogue and Wolverine, come to a private academy for their kind whose resident superhero team, the X-Men, must oppose a terrorist organization with similar powers.",2000-07-13,0.4341,7.005,11693 +3403,26428,Agora,"A historical drama set in Roman Egypt, concerning philosopher Hypatia of Alexandria and her relationship with her slave Davus, who is torn between his love for her and the possibility of gaining his freedom by joining the rising tide of Christianity.",2009-05-17,2.6125,7.0,1476 +3404,12665,Powder,"Harassed by classmates who won't accept his shocking appearance, a shy young man known as ""Powder"" struggles to fit in. But the cruel taunts stop when Powder displays a mysterious power that allows him to do incredible things. This phenomenon changes the lives of all those around him in ways they never could have imagined.",1995-10-27,2.6138,7.0,684 +3405,1771,Captain America: The First Avenger,"During World War II, Steve Rogers is a sickly man from Brooklyn who's transformed into super-soldier Captain America to aid in the war effort. Rogers must stop the Red Skull – Adolf Hitler's ruthless head of weaponry, and the leader of an organization that intends to use a mysterious device of untold powers for world domination.",2011-07-22,8.9624,7.005,22030 +3406,920,Cars,"Lightning McQueen, a hotshot rookie race car driven to succeed, discovers that life is about the journey, not the finish line, when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros, McQueen gets to know the town's offbeat characters.",2006-06-08,9.623,7.005,14502 +3407,923667,Twilight of the Warriors: Walled In,"In 1980s Hong Kong, troubled youth Chan Lok-kwun, a mainland refugee, struggles to survive in the Kowloon Walled City by joining underground fights. Betrayed by crime boss Mr. Big while trying to buy a fake ID, he steals drugs from him and seeks refuge in the Walled City, where he encounters Cyclone, a compassionate yet authoritative crime lord.",2024-05-01,5.3215,7.004,373 +3408,333352,Eye in the Sky,"A UK-based military officer in command of a top secret drone operation to capture terrorists in Kenya discovers the targets are planning a suicide bombing and the mission escalates from “capture” to “kill.” As American pilot Steve Watts is about to engage, a nine-year old girl enters the kill zone, triggering an international dispute reaching the highest levels of US and British government over the moral, political, and personal implications of modern warfare.",2015-09-07,2.4421,7.004,1628 +3409,50472,Anplagghed al Cinema,"A queue at the ATM machine, a displaced family after a seismic shock that has half-washed their home, a tour within an art gallery, moments of everyday life that become the cues for the emergence of comic, farce, paradoxical situations – trademarks of one of the most successful Italian comic groups.",2006-11-26,0.3024,7.004,339 +3410,961268,Ballerina,"Grieving the loss of a best friend she couldn't protect, an ex-bodyguard sets out to fulfill her dear friend's last wish: sweet revenge.",2023-10-05,5.5929,7.003,600 +3411,695721,The Hunger Games: The Ballad of Songbirds & Snakes,"64 years before he becomes the tyrannical president of Panem, Coriolanus Snow sees a chance for a change in fortunes when he mentors Lucy Gray Baird, the female tribute from District 12.",2023-11-15,8.9159,7.0,3158 +3412,50393,Kung Fu Panda Holiday,"The Winter Feast is Po's favorite holiday. Every year he and his father hang decorations, cook together, and serve noodle soup to the villagers. But this year Shifu informs Po that as Dragon Warrior, it is his duty to host the formal Winter Feast at the Jade Palace. Po is caught between his obligations as the Dragon Warrior and his family traditions: between Shifu and Mr. Ping.",2010-11-26,1.9138,7.003,358 +3413,37056,Letters to Juliet,"An American girl on vacation in Italy finds an unanswered ""letter to Juliet"" -- one of thousands of missives left at the fictional lover's Verona courtyard, which are typically answered by the ""secretaries of Juliet"" -- and she goes on a quest to find the lovers referenced in the letter.",2010-05-13,3.208,7.004,2920 +3414,13378,Mickey's Twice Upon a Christmas,"Santa Claus, Mickey Mouse and all his Disney pals star in an original movie about the importance of opening your heart to the true spirit of Christmas. Stubborn old Donald tries in vain to resist the joys of the season, and Mickey and Pluto learn a great lesson about the power of friendship.",2004-11-09,2.227,7.003,460 +3415,1985,The Constant Gardener,"Justin Quayle is a low-level British diplomat who has always gone about his work very quietly, not causing any problems. But after his radical wife Tessa is killed he becomes determined to find out why, thrusting himself into the middle of a very dangerous conspiracy.",2005-08-31,2.9768,7.002,1574 +3416,446354,The Post,A cover-up that spanned four U.S. Presidents pushed the country's first female newspaper publisher and a hard-driving editor to join an unprecedented battle between journalist and government. Inspired by true events.,2017-12-22,3.1928,7.002,4735 +3417,211052,Miss Violence,"On the day of her birthday, eleven-year-old Angeliki jumps off the balcony and falls to her death with a smile on her face. While the police and Social Services try to discover the reason for this apparent suicide, Angeliki's family keep insisting that it was an accident. What is the secret that young Angeliki took with her? Why does her family persist in trying to ""forget"" her and to move on with its life?",2013-09-09,1.7542,7.002,540 +3418,12089,The Tall Blond Man with One Black Shoe,A hapless orchestra player becomes an unwitting pawn of rival factions within the French secret service after he is chosen as a decoy by being identified as a super secret agent.,1972-12-06,1.4904,7.002,453 +3419,298382,The Dressmaker,"In 1950s Australia, beautiful, talented dressmaker Tilly returns to her tiny hometown to right wrongs from her past. As she tries to reconcile with her mother, she starts to fall in love while transforming the fashion of the town.",2015-10-29,3.0169,7.001,1695 +3420,73532,Le Havre,"In the French harbor city of Le Havre, fate throws young African refugee Idrissa into the path of Marcel Marx, a well-spoken bohemian who works as a shoe-shiner. With innate optimism and the tireless support of his community, Marcel stands up to officials pursuing the boy for deportation.",2011-09-08,1.1246,7.001,448 +3421,44009,Another Year,"During a year, a very content couple approaching retirement are visited by friends and family less happy with their lives.",2010-11-05,1.4605,7.0,407 +3422,1495,Kingdom of Heaven,"After his wife dies, a blacksmith named Balian is thrust into royalty, political intrigue and bloody holy wars during the Crusades.",2005-05-03,10.3872,7.0,4579 +3423,917496,Beetlejuice Beetlejuice,"After a family tragedy, three generations of the Deetz family return home to Winter River. Still haunted by Betelgeuse, Lydia's life is turned upside down when her teenage daughter, Astrid, accidentally opens the portal to the Afterlife.",2024-09-04,10.0404,7.0,2677 +3424,528888,Dolemite Is My Name,"The story of Rudy Ray Moore, who created the iconic big screen pimp character Dolemite in the 1970s.",2019-10-04,2.0666,7.0,1205 +3425,62214,Frankenweenie,"When a car hits young Victor's pet dog Sparky, Victor decides to bring him back to life the only way he knows how. But when the bolt-necked ""monster"" wreaks havoc and terror in the hearts of Victor's neighbors, he has to convince them that Sparky's still the good, loyal friend he was.",2012-10-04,4.7849,7.0,3442 +3426,11219,The Trouble with Harry,"When a local man's corpse appears on a nearby hillside, no one is quite sure what happened to him. Many of the town's residents secretly wonder if they are responsible, including the man's ex-wife, Jennifer, and Capt. Albert Wiles, a retired seaman who was hunting in the woods where the body was found. As the no-nonsense sheriff gets involved and local artist Sam Marlowe offers his help, the community slowly unravels the mystery.",1955-10-03,1.8609,7.0,857 +3427,1730,Inland Empire,An actress’s perception of reality becomes increasingly distorted as she finds herself falling for her co-star in a remake of an unfinished Polish production that was supposedly cursed.,2006-12-06,2.5573,7.0,1168 +3428,1382,Me and You and Everyone We Know,"Single dad Richard meets Christine, a starving artist who moonlights as a cabbie. They awkwardly attempt to start a romance, but Richard’s divorce has left him emotionally damaged. Meanwhile, Richard’s sons—one a teenager, the other 6-years-old—take part in clumsy experiments with the opposite sex.",2005-06-17,1.1613,7.0,347 +3429,300,The Science of Sleep,A man entranced by his dreams and imagination is lovestruck with a French woman and feels he can show her his world.,2006-06-25,1.5378,7.0,791 +3430,1010818,Groot's First Steps,"Following the events of “Guardians of the Galaxy Vol. 1,” Baby Groot is finally ready to try taking his first steps out of his pot—only to learn you have to walk before you can run.",2022-08-10,1.4668,7.0,362 +3431,420821,Chip 'n Dale: Rescue Rangers,"Decades since their successful television series was canceled, Chip has succumbed to a life of suburban domesticity as an insurance salesman. Dale, meanwhile, has had CGI surgery and works the nostalgia convention circuit, desperate to relive his glory days. When a former cast mate mysteriously disappears, Chip and Dale must repair their broken friendship and take on their Rescue Rangers detective personas once again to save their friend’s life.",2022-05-20,3.2505,6.999,1291 +3432,71864,The Odd Life of Timothy Green,"A childless couple bury a box in their backyard, containing all of their wishes for an infant. Soon, a child is born, though Timothy Green is not all that he appears.",2012-08-15,1.7571,6.999,1210 +3433,9905,Shallow Grave,"When David, Juliet, and Alex find their new roommate dead with a large sum of money, they agree to hide the body and keep the cash. However, this newfound fortune gradually corrodes their friendship.",1994-12-22,2.3364,7.0,1062 +3434,864,Cool Runnings,"When a Jamaican sprinter is disqualified from the Olympic Games, he enlists the help of a dishonored coach to start the first Jamaican bobsled team.",1993-10-01,3.0601,6.999,2128 +3435,14070,Ghajini,"A man suffering from anterograde amnesia as a result of a violent attack in the past sets out to avenge his girlfriend's death with the aid of photographs, notes and tattoos all over his body.",2008-12-25,1.3618,6.998,416 +3436,11815,The Fly,"Industrialist François Delambre is called late at night by his sister-in-law, Helene Delambre, who tells him that she has just killed her husband, André. Reluctant at first, she eventually explains to the police that André invented a matter transportation apparatus and, while experimenting on himself, a fly entered the chamber during the matter transference.",1958-07-16,2.1185,6.998,569 +3437,556803,The Princess Switch,"When a down-to-earth Chicago baker and a soon-to-be princess discover they look like twins, they hatch a Christmastime plan to trade places.",2018-10-25,2.8518,6.997,2235 +3438,549509,The Brutalist,"When a visionary architect and his wife flee post-war Europe in 1947 to rebuild their legacy and witness the birth of modern United States, their lives are changed forever by a mysterious, wealthy client.",2024-12-20,6.9081,6.995,1198 +3439,26973,Pretty Baby,"Hattie, a New Orleans prostitute, meets a photographer named Bellocq at her brothel one night and, after he photographs her, he befriends her 12-year-old daughter, Violet. When Violet is brought on as a working girl by her mother's madam and Hattie skips town to get married, Violet quickly loses her innocence and focuses on reuniting with Bellocq. But a life with Bellocq is compromised for Violet after her mother returns to town.",1978-04-05,4.0399,7.0,380 +3440,26973,Pretty Baby,"Hattie, a New Orleans prostitute, meets a photographer named Bellocq at her brothel one night and, after he photographs her, he befriends her 12-year-old daughter, Violet. When Violet is brought on as a working girl by her mother's madam and Hattie skips town to get married, Violet quickly loses her innocence and focuses on reuniting with Bellocq. But a life with Bellocq is compromised for Violet after her mother returns to town.",1978-04-05,4.0399,7.0,380 +3441,943134,The Animal Kingdom,"In a world hit by a wave of mutations transforming humans into animals, François does everything he can to save his wife. As some of the creatures disappear into a nearby forest, he and their son Émile embark on a quest that will change their lives forever.",2023-10-04,2.4875,6.996,836 +3442,726139,Project Silence,"Due to sudden deteriorating weather conditions, visibility on the Airport Bridge is severely impaired, leaving people stranded and at risk of the bridge collapsing due to a series of chain collisions and explosions. Amidst the chaos, the canine subjects ""Echo"" from the military experiment ""Project Silence,"" who were being transported in secret, break free, and all human survivors become targets of relentless attacks.",2024-07-11,8.8604,6.996,352 +3443,524251,I See You,"When a 10-year-old boy goes missing, lead investigator Greg Harper struggles to balance the pressure of the investigation and troubles with his wife, Jackie. Facing a recent affair, great strain is put on the family that slowly gnaws away at Jackie's grip on reality. But after a malicious presence manifests itself in their home and puts their son, Connor, in mortal danger, the cold, hard truth about evil in the Harper household is finally uncovered.",2019-09-11,2.8406,6.996,1521 +3444,377897,Barbie: Spy Squad,"Barbie and her best friends Teresa and Renee transform from hard-working gymnasts to undercover secret agents. When their amazing gymnastics skills catch the eye of a top-secret spy agency, the girls are soon following clues to a gem-stealing cat burglar, using high-tech gadgets, glam disguises and cute robo-pets to save the day.",2016-01-15,2.2624,7.0,414 +3445,256835,Toy Story That Time Forgot,"During a post-Christmas play date, the gang find themselves in uncharted territory when the coolest set of action figures ever turn out to be dangerously delusional. It's all up to Trixie, the triceratops, if the gang hopes to return to Bonnie's room in this Toy Story That Time Forgot.",2014-12-02,2.9048,6.996,1007 +3446,21208,Orphan,"After losing their baby, a married couple adopt 9-year old Esther, who may not be as innocent as she seems.",2009-07-24,5.7711,6.996,5396 +3447,12783,The Duchess,"A chronicle of the life of 18th century aristocrat Georgiana, Duchess of Devonshire, who was reviled for her extravagant political and personal life.",2008-09-05,3.3756,6.996,1722 +3448,9799,The Fast and the Furious,"Dominic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian O'Conner infiltrates Toretto's iconoclastic crew, he falls for Toretto's sister and must choose a side: the gang or the LAPD.",2001-06-22,1.1842,6.996,10343 +3449,646,Dr. No,"Agent 007 battles mysterious Dr. No, a scientific genius bent on destroying the U.S. space program. As the countdown to disaster begins, Bond must go to Jamaica, where he encounters beautiful Honey Ryder, to confront a megalomaniacal villain in his massive island headquarters.",1962-10-07,6.2998,6.996,3793 +3450,77174,ParaNorman,"In the town of Blithe Hollow, Norman Babcock can speak to the dead, but no one other than his eccentric new friend believes his ability is real. One day, Norman's eccentric uncle tells him of a ritual he must perform to protect the town from a curse cast by a witch centuries ago.",2012-08-03,4.5982,6.995,2606 +3451,49009,The Way Back,"At the dawn of WWII, several men escape from a Russian gulag—to take a perilous and uncertain journey to freedom as they cross deserts, mountains and several nations.",2010-11-22,2.5399,6.995,1656 +3452,11360,Dumbo,"Dumbo is a baby elephant born with over-sized ears and a supreme lack of confidence. But thanks to his even more diminutive buddy Timothy the Mouse, the pint-sized pachyderm learns to surmount all obstacles.",1941-10-31,6.4412,6.995,5109 +3453,1485,Get Carter,"Jack Carter is a small-time hood working in London. When word reaches him of his brother's death, he travels to Newcastle to attend the funeral. Refusing to accept the police report of suicide, Carter seeks out his brother’s friends and acquaintances to learn who murdered his sibling and why.",1971-02-03,1.6851,7.0,520 +3454,615665,Holidate,"Fed up with being single on holidays, two strangers agree to be each other's platonic plus-ones all year long, only to catch real feelings along the way.",2020-10-27,3.1062,6.994,2259 +3455,48303,Certified Copy,"In Tuscany to promote his latest book, a middle-aged English writer meets a French woman who leads him to the village of Lucignano.",2010-05-19,0.8968,7.0,418 +3456,10536,The Italian Job,"Charlie's got a 'job' to do. Having just left prison he finds one of his friends has attempted a high-risk job in Torino, Italy, right under the nose of the mafia. Charlie's friend doesn't get very far, so Charlie takes over the 'job'. Using three Mini Coopers, a couple of Jaguars, and a bus, he hopes to bring Torino to a standstill, steal a fortune in gold and escape in the chaos.",1969-06-02,3.8736,6.994,797 +3457,2742,Naked Lunch,"Blank-faced bug killer Bill Lee and his dead-eyed wife, Joan, like to get high on Bill's pest poisons while lounging with Beat poet pals. After meeting the devilish Dr. Benway, Bill gets a drug made from a centipede. Upon indulging, he accidentally kills Joan, takes orders from his typewriter-turned-cockroach, ends up in a constantly mutating Mediterranean city and learns that his hip friends have published his work -- which he doesn't remember writing.",1991-12-27,2.0501,6.993,1128 +3458,532814,The Bad Seed,A widower suspects that his seemingly perfect adolescent daughter is a heartless killer.,2018-09-09,1.6853,6.993,305 +3459,255718,Barbie: The Pearl Princess,"Barbie plays Lumina, a mermaid girl with the power to change the color of pearls. Cheerful and creative, Lumina finds herself working in a mermaid salon customizing fabulous hairstyles. And when Lumina has the chance to attend the royal ball, her friends adorn her with a gown fit for a princess. At the ball, villains try to seize power over the kingdom, and Lumina finds within herself an unexpected power that proves she is much more than a hair stylist.",2014-02-15,3.0079,6.993,342 +3460,84199,The First Time,"A spark of attraction smolders, then ignites, between two teens from different high schools who meet by chance at a party.",2012-10-19,2.0548,6.993,2125 +3461,53487,This Must Be the Place,"A bored, retired rock star sets out to find his father's tormentor, an ex-Nazi war criminal who is a refugee in the U.S.",2011-08-24,1.3473,6.993,1252 +3462,811367,22 vs. Earth,"Set before the events of ‘Soul’, 22 refuses to go to Earth, enlisting a gang of 5 new souls in attempt of rebellion. However, 22’s subversive plot leads to a surprising revelation about the meaning of life.",2021-04-30,1.4268,7.0,465 +3463,528949,The Photographer of Mauthausen,"Spanish photographer Francesc Boix, imprisoned in the Mauthausen-Gusen concentration camp, works in the SS Photographic Service. Between 1943 and 1945, he hides, with the help of other prisoners, thousands of negatives, with the purpose of showing the freed world the atrocities committed by the Nazis, exhaustively documented. He will be a key witness during the Nuremberg Trials.",2018-10-26,1.483,6.992,718 +3464,333371,10 Cloverfield Lane,"After a catastrophic car crash, a young woman wakes up in a survivalist's underground bunker, where he claims to have saved her from an apocalyptic attack that has left the outside world uninhabitable.",2016-03-10,8.1978,6.992,8221 +3465,11826,Sexy Beast,"Ex-safecracker Gal Dove has served his time behind bars and is blissfully retired to a Spanish villa paradise with a wife he adores. The idyll is shattered by the arrival of his nemesis Don Logan, intent on persuading Gal to return to London for one last big job.",2000-09-13,1.3201,7.0,823 +3466,797394,Secret Magic Control Agency,"The Secret Magic Control Agency sends its two best agents, Hansel and Gretel, to fight against the witch of the Gingerbread House.",2021-03-18,1.9215,7.0,384 +3467,760099,Living,"London, 1953. Mr. Williams, a veteran civil servant, is an important cog within the city's bureaucracy as it struggles to rebuild in the aftermath of World War II. Buried under paperwork at the office and lonely at home, his life has long felt empty and meaningless. Then a devastating medical diagnosis forces him to take stock, and to try and grasp some fulfilment before it passes permanently beyond reach.",2022-11-04,1.541,6.991,447 +3468,285783,The Walk,The story of French high-wire artist Philippe Petit's attempt to cross the Twin Towers of the World Trade Center in 1974.,2015-09-30,2.7,6.992,3253 +3469,23202,Trick 'r Treat,"Four interwoven stories that occur on Halloween: an everyday high school principal has a secret life as a serial killer; a college virgin might have just met the one guy for her; a group of teenagers pull a mean prank, and a bitter old recluse receives an uninvited guest.",2007-12-09,3.3554,6.991,1949 +3470,14411,Sinbad: Legend of the Seven Seas,"The sailor of legend is framed by the goddess Eris for the theft of the Book of Peace, and must travel to her realm at the end of the world to retrieve it and save the life of his childhood friend Prince Proteus.",2003-07-02,4.746,7.0,2097 +3471,9427,The Full Monty,"Sheffield, England. Gaz, a jobless steelworker in need of quick cash persuades his mates to bare it all in a one-night-only strip show.",1997-08-13,2.7307,6.991,1707 +3472,909,Meet Me in St. Louis,Young love and childish fears highlight a year in the life of a turn-of-the-century family up to the 1904 St. Louis World's Fair.,1944-11-28,1.5466,6.991,399 +3473,366564,Comment c'est loin,"After ten years of doing nothing, Orel and Gringe are in their mid 30s and they struggle to finish their first rap album. Their texts are mostly sex jokes and booze stories and reflect the everyday life they have in a small town from France. The problem is that they never really finished a song and when their producers want to meet, they have to face a new challenge : finish their first song in the next 24h. Their old issues, the fear of failure, their alcoholic friends and annoying girlfriends won't help them to do so, or will they ?",2015-12-09,0.3266,6.99,675 +3474,332872,Julieta,"The film spans 30 years in Julieta’s life from a nostalgic 1985 where everything seems hopeful, to 2015 where her life appears to be beyond repair and she is on the verge of madness.",2016-04-08,1.0671,7.0,880 +3475,287947,Shazam!,A boy is given the ability to become an adult superhero in times of need with a single magic word.,2019-03-29,7.2735,6.99,9798 +3476,87825,Trouble with the Curve,"Slowed by age and failing eyesight, crack baseball scout Gus Lobel takes his grown daughter along as he checks out the final prospect of his career. Along the way, the two renew their bond, and she catches the eye of a young player-turned-scout.",2012-09-21,3.9926,6.99,1635 +3477,34067,Pokémon: Lucario and the Mystery of Mew,"In the legendary past, before Poké Balls were invented, an aura-guiding hero Pokémon named Lucario sensed two groups of armies about to clash, and a threat of a massive war in front of Oldoran Castle in Kanto that would leave no survivors. He transferred this message to his master, the legendary hero Arlon, while he was being attacked by a violent group of Hellgar. During the battle, his sense of sight was lost and he was rendered unable to see. He used the detection of his Aura, and so with the offensive Wave Bomb, he eliminated them. Though by the threat, the queen of Rota, Lady Rin was resolute to die with her civilians, and so Arlon made a choice.",2005-07-16,2.3368,6.99,310 +3478,9430,Go,"A supermarket clerk decides to step in for an absent drug dealer, setting off an explosive, comedic chain of events.",1999-04-09,2.2538,6.99,764 +3479,4148,Revolutionary Road,A young couple living in a Connecticut suburb during the mid-1950s struggle to come to terms with their personal problems while trying to raise their two children. Based on a novel by Richard Yates.,2008-12-19,4.8333,6.99,3929 +3480,458737,First Reformed,A pastor of a small church in upstate New York starts to spiral out of control after a soul-shaking encounter with an unstable environmental activist and his pregnant wife.,2018-05-18,2.1355,7.0,1379 +3481,325690,The Legendary Giulia and Other Miracles,"Five down-on-their luck strangers meet by chance while looking at a property in the country none of them are able to afford. They decide to join forces and risk everything to turn it into a B&B, only for the local mafia to show up demanding their ""fair"" share.",2015-02-19,0.43,6.989,520 +3482,310131,The Witch,"In 1630, a farmer relocates his family to a remote plot of land on the edge of a forest where strange, unsettling things happen. With suspicion and paranoia mounting, each family member's faith, loyalty and love are tested in shocking ways.",2016-02-19,7.942,6.989,7278 +3483,97630,Zero Dark Thirty,"A chronicle of the decade-long hunt for al-Qaeda terrorist leader Osama bin Laden after the September 2001 attacks, and his death at the hands of the Navy S.E.A.L. Team 6 in May, 2011.",2012-12-19,4.8586,7.0,4656 +3484,24253,The Girl Who Played with Fire,"Mikael Blomkvist, publisher of Millennium magazine, has made his living exposing the crooked and corrupt practices of establishment Swedish figures. So when a young journalist approaches him with a meticulously researched thesis about sex trafficking in Sweden and those in high office who abuse underage girls, Blomkvist immediately throws himself into the investigation.",2009-09-18,3.2296,6.989,1700 +3485,381356,Five,A young man paying the rent for himself and his lifelong friends ends up flat-broke and resorts to selling marijuana to pay the bills – only to get caught up in the dangerous world of drugs.,2016-03-30,0.9163,6.988,1308 +3486,282631,The Admiral: Roaring Currents,Admiral Yi Sun-sin faces a tough challenge when he is forced to defend his nation with just 13 battleships against 300 Japanese enemy ships in the Battle of Myeongryang.,2014-07-30,2.1323,6.988,300 +3487,103328,Holy Motors,"We follow 24 hours in the life of a being moving from life to life like a cold and solitary assassin moving from hit to hit. In each of these interwoven lives, the being possesses an entirely distinct identity: sometimes a man, sometimes a woman, sometimes youthful, sometimes old. By turns murderer, beggar, company chairman, monstrous creature, worker, family man.",2012-07-02,1.5529,6.988,1191 +3488,67913,The Guard,"When a small-town Irish cop with a crass personality is partnered with a straight-laced FBI agent to bust an international drug-trafficking ring, they must settle their differences in order to take down a dangerous gang.",2011-07-07,1.4004,6.988,1290 +3489,29987,Facing Windows,"Overburdened and stuck in a greying marriage, Giovanna takes to caring for a Jewish Holocaust survivor her husband brings home. As she begins to reflect on her life, she turns to the man who lives across from her.",2003-02-27,0.9298,7.0,319 +3490,615774,Scooby-Doo! Return to Zombie Island,"Scooby-Doo and his pals win an all-expense paid vacation and embark on a trip of a lifetime to a tropical paradise. Their destination however, turns out to be Zombie Island. As soon as they arrive, they realize the place looks strangely familiar and is reminiscent of a trip they took years ago, in which they became wrapped up in a mystery involving zombies. The gang soon learns that their trip to paradise comes with a price when the zombies re-emerge and attack their hotel. Will Scooby-Doo and the Mystery Inc. gang finally solve the mystery behind Zombie Island?",2019-09-03,2.5378,7.0,941 +3491,504827,The Bob's Burgers Movie,"When a ruptured water main creates an enormous sinkhole right in front of Bob's Burgers, it blocks the entrance indefinitely and ruins the Belchers’ plans for a successful summer. While Bob and Linda struggle to keep the business afloat, the kids try to solve a mystery that could save their family's restaurant. As the dangers mount, these underdogs help each other find hope and fight to get back behind the counter, where they belong.",2022-05-26,2.1348,6.986,331 +3492,160588,Blue Jasmine,"After experiencing a traumatic misfortune, Jasmine French, a wealthy woman from New York, moves to San Francisco to live with her foster sister Ginger and the firm purpose of getting a new life, but she will be haunted by anxiety and memories of the past.",2013-08-01,2.2458,6.986,3514 +3493,85739,ACAB : All Cops Are Bastards,"A look at the controversial riot cops unit, told through the stories of three veteran cops and a young recruit.",2012-01-27,0.9115,6.985,833 +3494,934433,Scream VI,"Following the latest Ghostface killings, the four survivors leave Woodsboro behind and start a fresh chapter.",2023-03-08,8.2294,6.984,2858 +3495,501633,The Invisibles,"Following a city councils decision, a women's shelter will soon be closed and social workers have only three months to accommodate the residents.",2019-01-09,0.4373,6.984,374 +3496,156700,The Kings of Summer,"Joe Toy, on the verge of adolescence, finds himself increasingly frustrated by his single father, Frank's attempts to manage his life. Declaring his freedom once and for all, he escapes to a clearing in the woods with his best friend, Patrick, and a strange kid named Biaggio. He announces that they are going to build a house there, free from responsibility and parents. Once their makeshift abode is finished, the three young men find themselves masters of their own destiny, alone in the woods.",2013-01-19,1.7609,6.984,1166 +3497,41428,Tetsuo: The Iron Man,"A ""metal fetishist"", driven mad by the maggots wriggling in the wound he's made to embed metal into his flesh, runs out into the night and is accidentally run down by a Japanese businessman and his girlfriend. The pair dispose of the corpse in hopes of quietly moving on with their lives. However, the businessman soon finds that he is now plagued by a vicious curse that transforms his flesh into iron.",1989-07-01,2.0295,7.0,650 +3498,13550,The Changeling,"After a tragic event happens, composer John Russell moves to Seattle to try to overcome it and build a new and peaceful life in a lonely big house that has been uninhabited for many years. But, soon after, the obscure history of such an old mansion and his own past begin to haunt him.",1980-03-28,2.2617,7.0,671 +3499,24589,Dug's Special Mission,"Dug is sent on foolish missions by Alpha, Beta, and Gamma so they can hunt for the Bird of Paradise Falls by themselves. Dug may find that where he belongs is not where he's been looking.",2009-11-10,1.4883,6.983,429 +3500,297556,Justice League: Throne of Atlantis,"After the events of Justice League: War, Ocean Master and Black Manta have declared a war against the surface in retaliation of the aftermath of Apokoliptian-tyrant Darkseid's planetary invasion. Queen Atlanna seeks out her other son, Ocean Master’s half-brother Arthur Curry, a half-human with aquatic powers with no knowledge of his Atlantean heritage, to restore balance. Living with powers he doesn’t understand and seeing the danger around him, Curry takes steps to embrace his destiny, joining the Justice League, and with his new teammates he battles to save Earth from total destruction.",2015-01-13,2.7511,6.982,951 +3501,25670,Foreign Correspondent,"American crime reporter John Jones is reassigned to Europe as a foreign correspondent to cover the imminent war. When he walks into the middle of an assassination and stumbles on a spy ring, he seeks help from a beautiful politician’s daughter and an urbane English journalist to uncover the truth.",1940-08-16,2.0239,7.0,407 +3502,11897,How the West Was Won,"The epic tale of the development of the American West from the 1830s through the Civil War to the end of the century, as seen through the eyes of one pioneer family.",1962-11-02,2.8673,6.982,453 +3503,232,Rumble Fish,"Rusty James, an absent-minded street thug, struggles to live up to his legendary older brother's reputation and longs for the days when gang warfare was going on.",1983-10-09,1.816,6.982,710 +3504,1138194,Heretic,"Two young missionaries are forced to prove their faith when they knock on the wrong door and are greeted by a diabolical Mr. Reed, becoming ensnared in his deadly game of cat-and-mouse.",2024-10-31,9.852,6.981,2012 +3505,787752,Fresh,"Frustrated by scrolling dating apps only to end up on lame, tedious dates, Noa takes a chance by giving her number to the awkwardly charming Steve after a produce-section meet-cute at the grocery store.",2022-03-03,4.2281,6.981,1717 +3506,13537,Shattered Glass,"The true story of fraudulent Washington, D.C. journalist Stephen Glass, who rose to meteoric heights as a young writer in his 20s, becoming a staff writer at The New Republic for three years. Looking for a short cut to fame, Glass concocted sources, quotes and even entire stories, but his deception did not go unnoticed forever, and eventually, his world came crumbling down.",2003-11-14,1.7248,6.981,440 +3507,1255,The Host,"A teenage girl is captured by a giant mutated squid-like creature that appears from Seoul's Han River after toxic waste was dumped in it, prompting her family into a frantic search for her.",2006-07-27,4.773,6.981,2922 +3508,46829,Barney's Version,"The picaresque and touching story of the politically incorrect, fully lived life of the impulsive, irascible and fearlessly blunt Barney Panofsky.",2010-10-26,1.3483,6.98,471 +3509,32646,Safe,"Carol White, a Los Angeles housewife in the late 1980s, comes down with a debilitating illness with no clear diagnosis.",1995-06-23,1.3254,6.98,318 +3510,8841,The Class,Teacher and novelist François Bégaudeau plays a version of himself as he negotiates a year with his racially mixed students from a tough Parisian neighborhood.,2008-09-24,0.9541,7.0,678 +3511,8469,Animal House,"At a 1962 College, Dean Vernon Wormer is determined to expel the entire Delta Tau Chi Fraternity, but those troublemakers have other plans for him.",1978-07-28,3.1871,6.98,1584 +3512,7304,Running Scared,"A low-ranking thug is entrusted by his boss to dispose of a gun that killed corrupt cops, but things spiral out of control when the gun ends up in wrong hands.",2006-01-06,2.0989,6.98,1069 +3513,1087891,The Amateur,"After his life is turned upside down when his wife is killed in a London terrorist attack, a brilliant but introverted CIA decoder takes matters into his own hands when his supervisors refuse to take action.",2025-04-09,54.8647,6.987,1045 +3514,628534,The White Tiger,An ambitious Indian driver uses his wit and cunning to escape from poverty and rise to the top. An epic journey based on the New York Times bestseller.,2021-01-13,1.7993,6.979,926 +3515,97367,The Place Beyond the Pines,"A motorcycle stunt rider considers committing a crime in order to provide for his wife and child, an act that puts him on a collision course with a cop-turned-politician.",2013-03-20,3.9185,6.979,4973 +3516,87093,Big Eyes,"In the late 1950s and early '60s, artist Walter Keane achieves unbelievable fame and success with portraits of saucer-eyed waifs. However, no one realizes that his wife, Margaret, is the real painter behind the brush. Although Margaret is horrified to learn that Walter is passing off her work as his own, she is too meek to protest too loudly. It isn't until the Keanes' marriage comes to an end and a lawsuit follows that the truth finally comes to light.",2014-12-24,2.4743,6.979,3527 +3517,64685,Extremely Loud & Incredibly Close,"A year after his father's death, Oskar, a troubled young boy, discovers a mysterious key he believes was left for him by his father and embarks on a scavenger hunt to find the matching lock.",2011-12-25,2.3704,6.979,2051 +3518,13320,Funny Face,A shy Greenwich Village book clerk is discovered by a fashion photographer and whisked off to Paris where she becomes a reluctant model.,1957-02-13,2.182,6.979,703 +3519,11689,Crime Busters,An attempted robbery turns to be an unexpected recruitment when two unemployed men mistakenly break into a police office instead of a store.,1977-04-01,2.7876,6.979,669 +3520,10436,The Age of Innocence,"In 19th century New York high society, a young lawyer falls in love with a woman separated from her husband, while he is engaged to the woman's cousin.",1993-09-10,2.8248,6.979,1144 +3521,9909,Dangerous Minds,"Former Marine Louanne Johnson lands a gig teaching in a pilot program for bright but underachieving teens at a notorious inner-city high school. After having a terrible first day, she decides she must throw decorum to the wind. When Johnson returns to the classroom, she does so armed with a no-nonsense attitude informed by her military training and a fearless determination to better the lives of her students -- no matter what the cost.",1995-08-11,3.5916,6.979,1191 +3522,398,Capote,"A biopic of writer Truman Capote and his assignment for The New Yorker to write the non-fiction book ""In Cold Blood"".",2005-09-30,3.4891,6.977,1538 +3523,894205,Werewolf by Night,"On a dark and somber night, a secret cabal of monster hunters emerge from the shadows and gather at the foreboding Bloodstone Temple following the death of their leader. In a strange and macabre memorial to the leader’s life, the attendees are thrust into a mysterious and deadly competition for a powerful relic—a hunt that will ultimately bring them face to face with a dangerous monster.",2022-09-25,3.5037,7.0,1400 +3524,645689,The Duke,"In 1961, a 60-year-old taxi driver stole Goya’s portrait of the Duke of Wellington from the National Gallery in London. It was the first (and remains the only) theft in the Gallery’s history. What happened next became the stuff of legend.",2021-07-23,1.7936,7.0,340 +3525,523777,Next Gen,"A friendship with a top-secret robot turns a lonely girl's life into a thrilling adventure as they take on bullies, evil bots and a scheming madman.",2018-09-07,1.6074,7.0,800 +3526,506281,The World to Come,"In 1856, two women forge a close connection despite their isolation on the American frontier.",2021-02-12,2.2358,6.978,358 +3527,140870,Minuscule: Valley of the Lost Ants,"In a peaceful little clearing, the remains of a hastily abandoned picnic sparks a battle between two tribes of ants. A bold young ladybug finds himself caught in the middle. He befriends the leader of the black ants, Mandible, and helps him save the anthill from the assault of the terrible red ant warriors, led by the fearful Butor. A fantastic journey at ground level.",2013-11-17,1.6824,6.978,461 +3528,101731,The Magic of Belle Isle,"In an effort to tap into his original talent, a wheelchair-bound author moves to a rural town, where he befriends a single mother and her three kids, who help reignite his passion for writing.",2012-07-06,1.8201,6.978,418 +3529,395993,Stronger,A victim of the Boston Marathon bombing in 2013 helps the police track down the killers while struggling to recover from devastating trauma.,2017-09-22,1.8119,6.977,1514 +3530,18533,Bronson,"A young man who was sentenced to 7 years in prison for robbing a post office ends up spending 30 years in solitary confinement. During this time, his own personality is supplanted by his alter ego, Charles Bronson.",2009-03-13,2.1278,6.977,2540 +3531,11006,Smokey and the Bandit,"A race car driver tries to transport an illegal beer shipment from Texas to Atlanta in under 28 hours, picking up a reluctant bride-to-be on the way.",1977-05-26,2.8925,7.0,754 +3532,11509,Silverado,"Four unwitting heroes cross paths on their journey to the sleepy town of Silverado. Little do they know the town where their family and friends reside has been taken over by a corrupt sheriff and a murderous posse. It's up to the sharp-shooting foursome to save the day, but first they have to break each other out of jail, and learn who their real friends are.",1985-07-10,2.7549,7.0,750 +3533,1024,Heavenly Creatures,"Precocious teenager Juliet moves to New Zealand with her family and soon befriends the quiet, brooding Pauline through their shared love of fantasy and literature. This friendship gradually develops into an intense and obsessive bond.",1994-09-12,1.7495,6.976,962 +3534,379149,The Foreigner,Quan is a humble London businessman whose long-buried past erupts in a revenge-fueled vendetta when the only person left for him to love – his teenage daughter – dies in an Irish Republican Army car bombing. His relentless search to find the terrorists leads to a cat-and-mouse conflict with a British government official whose own past may hold the clues to the identities of the elusive killers.,2017-09-28,4.6668,7.0,2749 +3535,11631,Mamma Mia!,A spirited young bride-to-be living with her single mother on a small Greek island secretly invites three of her mother's ex-boyfriends in hope of finding her biological father to walk her down the aisle.,2008-07-03,5.9697,6.975,6742 +3536,11576,"It's a Mad, Mad, Mad, Mad World","A group of strangers come across a man dying after a car crash who proceeds to tell them about the $350,000 he buried in California. What follows is the madcap adventures of those strangers as each attempts to claim the prize for himself.",1963-11-07,3.8507,6.975,633 +3537,9386,In the Line of Fire,"Veteran Secret Service agent Frank Horrigan is a man haunted by his failure to save President Kennedy while serving protection detail in Dallas. Thirty years later, a man calling himself ""Booth"" threatens the life of the current President, forcing Horrigan to come back to protection detail to confront the ghosts from his past.",1993-07-08,2.8058,6.974,1668 +3538,6968,The Baader Meinhof Complex,"'Der Baader Meinhof Komplex' depicts the political turmoil in the period from 1967 to the bloody ""Deutschen Herbst"" in 1977. The movie approaches the events based on Stefan Aust's standard work on the Rote Armee Fraktion (RAF). The story centers on the leadership of the self named anti-fascist resistance to state violence: Andreas Baader, Ulrike Meinhof and Gudrun Ensslin.",2008-09-25,1.7055,6.974,604 +3539,651,M*A*S*H,The staff of a Korean War field hospital use humor and hijinks to keep their sanity in the face of the horror of war.,1970-02-18,2.6896,6.974,1082 +3540,758330,"Good Luck to You, Leo Grande","Nancy Stokes, a retired schoolteacher, is pretty sure she has never had good sex. Now that her husband has died, she is determined to take a tour of sexual vistas that until now she has only imagined. She even has a plan; it involves an anonymous hotel room, and a sex worker who calls himself Leo Grande.",2022-06-16,4.196,6.973,589 +3541,398175,Brawl in Cell Block 99,"After working as a drug courier and getting into a brutal shootout with police, a former boxer finds himself at the mercy of his enemies as they force him to instigate violent acts that turn the prison he resides in into a battleground.",2017-09-23,3.2707,6.973,1481 +3542,265228,Timbuktu,"Just outside of the Malian city of Timbuktu, now occupied by militant Islamic rebels who impose the Sharia on civilians and inconvenience their daily life, a cattleman kills a fisherman.",2014-12-10,1.203,6.973,489 +3543,153158,Underdogs,"All seems well for Amadeo, a shy but talented foosball player who's in love with the free-spirited Laura. Trouble strikes when Grosso, the world's best soccer player, returns home with plans to destroy the village and turn it into a new sports stadium. When Grosso kidnaps Laura, Amadeo receives the ultimate surprise when the figurines from his foosball table spring to life to help him save his beloved and reclaim the town.",2013-07-18,2.4751,6.973,524 +3544,14030,"Hello, Dolly!","Dolly Levi is a strong-willed matchmaker who travels to Yonkers, New York in order to see the miserly ""well-known unmarried half-a-millionaire"" Horace Vandergelder. In doing so, she convinces his niece, his niece's intended, and Horace's two clerks to travel to New York City.",1969-12-12,2.2443,7.0,365 +3545,11227,Angel-A,A beautiful and mysterious woman helps an inept scam artist get his game together... but is their meeting purely coincidence?,2005-12-21,1.1682,6.973,744 +3546,972533,Last Breath,Seasoned deep-sea divers battle the raging elements to rescue their crewmate trapped hundreds of feet below the ocean's surface.,2025-02-27,3.9544,6.972,374 +3547,9487,A Bug's Life,"On behalf of ""oppressed bugs everywhere,"" an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.",1998-11-25,12.0502,7.0,9415 +3548,392,Chocolat,"A mother and daughter move to a small French town where they open a chocolate shop. The town, religious and morally strict, is against them, as they represent free-thinking and indulgence. When a group of gypsies arrive by riverboat, the Mayor's prejudices lead to a crisis.",2000-12-22,3.1547,7.0,3366 +3549,619264,The Platform,"A slab of food descends down a vertical facility. The residents above eat heartily, leaving those below starving and desperate. A rebellion is imminent.",2019-11-08,5.9404,6.971,7450 +3550,49530,In Time,"In the not-too-distant future, the aging gene has been switched off. To avoid overpopulation, time has become the currency and the way people pay for luxuries and necessities. The rich can live forever, while the rest struggle to negotiate for their immortality. A poor young man who suddenly comes into a fortune of time finds himself on the run from a corrupt police force known as the ""time keepers"".",2011-10-27,9.1694,6.971,11713 +3551,6936,Ben X,"Harassed by bullies because of his mild autism, teen Ben finds refuge in an online computer game, which leads him to his virtual dream girl, Scarlite. Together, the odd couple seeks revenge against Ben's tormentors.",2007-08-26,0.5222,7.0,307 +3552,3053,The Fearless Vampire Killers,"A noted professor and his dim-witted apprentice fall prey to their inquiring vampires, while on the trail of the ominous damsel in distress.",1967-11-13,3.6371,6.971,774 +3553,930564,Saltburn,"Struggling to find his place at Oxford University, student Oliver Quick finds himself drawn into the world of the charming and aristocratic Felix Catton, who invites him to Saltburn, his eccentric family's sprawling estate, for a summer never to be forgotten.",2023-11-16,7.4391,6.972,2591 +3554,588182,Compartment No. 6,"A young Finnish woman escapes an enigmatic love affair in Moscow by boarding a train to the arctic port of Murmansk. Forced to share the long ride and a tiny sleeping car with a larger than life Russian miner, the unexpected encounter leads the occupants of Compartment No. 6 to face major truths about human connection.",2021-10-29,0.7058,6.97,421 +3555,321612,Beauty and the Beast,A live-action adaptation of Disney's version of the classic tale of a cursed prince and a beautiful young woman who helps him break the spell.,2017-03-16,10.2056,7.0,15721 +3556,120475,Dragon Ball: Episode of Bardock,"A spin-off scenario taking place after the events of the TV special Dragon Ball Z: Bardock - The Father of Goku, in which Bardock survives the destruction of Planet Vegeta and is sent into the past, combating Frieza's ancestor Chilled and turning into a Super Saiyan.",2011-12-17,2.9782,6.97,415 +3557,49948,Fantasia 2000,"Blending lively music and brilliant animation, this sequel to the original 'Fantasia' restores 'The Sorcerer's Apprentice' and adds seven new shorts.",2000-01-01,2.4596,7.0,1318 +3558,9555,Rabbit-Proof Fence,"In 1931, three Aboriginal girls escape after being plucked from their homes to be trained as domestic staff, and set off on a trek across the Outback.",2002-02-04,1.0255,6.97,368 +3559,6878,Homeward Bound: The Incredible Journey,"Before the Seavers leave for a family vacation to San Francisco, they drop off their pets -- Chance, an adventurous American bulldog; Shadow, a wise golden retriever; and Sassy, a cautious cat -- at a friend's ranch. But when the animals start to worry that they've been left for good, the three embark together on a treacherous and thrilling journey to find their way back home through the California wilderness.",1993-02-03,3.0875,7.0,1068 +3560,820722,The Good Boss,"Julio Blanco is the proprietor of Básculas Blanco, a Spanish company producing industrial scales in a provincial Spanish town, which awaits the imminent visit from a committee that will decide if they merit a local Business Excellence award: everything has to be perfect when the time comes. Working against the clock, Blanco pulls out all the stops to address and resolve issues with his employees, crossing every imaginable line in the process.",2021-10-15,1.4255,6.969,435 +3561,402900,Ocean's Eight,"Debbie Ocean, a criminal mastermind, gathers a crew of female thieves to pull off the heist of the century at New York's annual Met Gala.",2018-06-07,8.9515,6.969,8481 +3562,346698,Barbie,"Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land. However, when they get a chance to go to the real world, they soon discover the joys and perils of living among humans.",2023-06-18,14.4812,6.969,10164 +3563,13198,Wristcutters: A Love Story,"Zia, distraught over breaking up with his girlfriend, decides to end it all. Unfortunately, he discovers that there is no real ending, only a run-down afterlife that is strikingly similar to his old one, just a bit worse. Discovering that his ex-girlfriend has also ""offed"" herself, he sets out on a road trip to find her.",2007-10-19,1.6268,6.969,576 +3564,9392,The Descent,"After a personal tragedy, Sarah joins her friends on a caving expedition in the Appalachian Mountains. But when a rockfall traps them deep underground, their adventure turns into a nightmare. As they search for a way out, the group discovers they are not alone—lurking in the darkness are savage, cave-dwelling creatures. With rising tension and dwindling trust, the women must fight to survive against both the predators and each other.",2005-07-08,7.1983,7.0,4090 +3565,357953,Return,"Return is a methodical construction of the approach of an individual towards an unseen goal, which assumes metaphorical significance. Viola moves toward the camera/viewer, pausing every few steps to ring a bell, at which point he is momentarily thrust back to his starting place, and then advanced again. Finally reaching his destination, he is taken through all of the previous stages in a single instant and returned to the source of his journey.",1975-09-04,0.2738,6.968,637 +3566,348668,A Conspiracy of Faith,"Denmark, 2016. A blurred note is found in a bottle that has traveled across the ocean for a long time. After deciphering the cryptic note, Department Q follow a sinister trail that leads them to investigate a case that occurred in 2008. At the same time, new tragic events take place that test their faith and deepest beliefs.",2016-03-03,1.8582,6.968,585 +3567,74306,God Bless America,"Fed up with the cruelty and stupidity of American culture, an unlikely duo goes on a killing spree, killing reality TV stars, bigots and others they find repugnant.",2012-05-11,1.3913,6.968,994 +3568,63700,My Babysitter's a Vampire,"Geeky 14-year old Ethan is left to babysit his younger sister, Jane, with his best friend Benny but after Ethan inadvertently puts Jane in harm's way, his parents hire a professional babysitter, the beautiful yet mysterious 17-year-old Sarah who, unbeknownst to them, is actually a fledgling vampire.",2010-10-09,1.4713,7.0,396 +3569,9390,Jerry Maguire,"Jerry Maguire used to be a typical sports agent: willing to do just about anything he could to get the biggest possible contracts for his clients, plus a nice commission for himself. Then, one day, he suddenly has second thoughts about what he's really doing. When he voices these doubts, he ends up losing his job and all of his clients, save Rod Tidwell, an egomaniacal football player.",1996-12-13,5.4268,6.968,3456 +3570,511809,West Side Story,"Two youngsters from rival New York City gangs fall in love, but tensions between their respective friends build toward tragedy.",2021-12-08,2.7915,7.0,1649 +3571,397837,Before I Fall,"Samantha Kingston has everything. Then, everything changes. After one fateful night, she wakes up with no future at all. Trapped into reliving the same day over and over, she begins to question just how perfect her life really was.",2017-03-02,2.2153,6.967,3461 +3572,374475,Toni Erdmann,Without warning a father comes to visit his daughter abroad. He believes that she lost her humor and therefore surprises her with a rampage of jokes.,2016-07-14,2.0895,7.0,1021 +3573,9880,The Princess Diaries,"A socially awkward but very bright 15-year-old girl being raised by a single mom discovers that she is the princess of a small European country because of the recent death of her long-absent father, who, unknown to her, was the crown prince of Genovia. She must make a choice between continuing the life of a San Francisco teen or stepping up to the throne.",2001-08-03,8.5092,6.967,5084 +3574,2758,Addams Family Values,"Siblings Wednesday and Pugsley Addams will stop at nothing to get rid of Pubert, the new baby boy adored by parents Gomez and Morticia. Things go from bad to worse when the new ""black widow"" nanny, Debbie Jellinsky, launches her plan to add Fester to her collection of dead husbands.",1993-11-19,10.8963,6.967,3131 +3575,854,The Mask,"When timid bank clerk Stanley Ipkiss discovers a magical mask containing the spirit of the Norse god Loki, his entire life changes. While wearing the mask, Ipkiss becomes a supernatural playboy exuding charm and confidence which allows him to catch the eye of local nightclub singer Tina Carlyle. Unfortunately, under the mask's influence, Ipkiss also robs a bank, which angers junior crime lord Dorian Tyrell, whose goons get blamed for the heist.",1994-07-29,14.2835,6.967,10686 +3576,816904,Mummies,"Through a series of unfortunate events, three mummies end up in present-day London and embark on a wacky and hilarious journey in search of an old ring belonging to the Royal Family, stolen by ambitious archaeologist Lord Carnaby.",2023-01-05,3.6979,7.0,477 +3577,597208,Nightmare Alley,An ambitious carnival man with a talent for manipulating people with a few well-chosen words hooks up with a female psychologist who is even more dangerous than he is.,2021-12-02,4.3724,6.967,3102 +3578,381283,mother!,"A couple's relationship is tested when uninvited guests arrive at their home, disrupting their tranquil existence.",2017-09-13,5.0497,6.966,6830 +3579,31967,Dante's Inferno: An Animated Epic,"Dante journeys through the nine circles of Hell -- limbo, lust, gluttony, greed, anger, heresy, violence, fraud and treachery -- in search of his true love, Beatrice. An animated version of the video game of the same name.",2010-02-09,1.522,7.0,534 +3580,14412,Body Heat,"In the midst of a searing Florida heat wave, a woman convinces her lover, a small-town lawyer, to murder her rich husband.",1981-08-28,2.885,7.0,638 +3581,9045,Amen.,"Kurt Gerstein—a member of the Institute for Hygiene of the Waffen-SS—is horrified by what he sees in the death camps. he is then shocked to learn that the process he used to purify water for his troops by using Zyklon-B, is now used to kill people in gas chambers.",2002-02-27,1.6346,6.966,353 +3582,37950,Charlie St. Cloud,"Accomplished sailor Charlie St. Cloud has the adoration of his mother Claire and his little brother Sam, as well as a college scholarship that will lead him far from his sleepy Pacific Northwest hometown. But his bright future is cut short when tragedy strikes and takes his dreams with it. After high school classmate Tess returns home unexpectedly, Charlie grows torn between honoring a promise he made four years earlier and moving forward with newfound love. As he finds the courage to let go of the past for good, Charlie discovers the soul most worth saving is his own.",2010-07-30,2.6746,6.965,2188 +3583,14506,The Adventures of Baron Munchausen,An account of Baron Munchausen's supposed travels and fantastical experiences with his band of misfits.,1988-12-07,2.419,6.965,941 +3584,830784,"Lyle, Lyle, Crocodile","When the Primm family moves to New York City, their young son Josh struggles to adapt to his new school and new friends. All of that changes when he discovers Lyle — a singing crocodile who loves baths, caviar and great music — living in the attic of his new home. But when Lyle’s existence is threatened by evil neighbor Mr. Grumps, the Primms must band together to show the world that family can come from the most unexpected places.",2022-10-07,3.3565,6.964,618 +3585,718032,Licorice Pizza,"The story of Gary Valentine and Alana Kane growing up, running around and going through the treacherous navigation of first love in the San Fernando Valley, 1973.",2021-11-26,3.2493,6.964,2408 +3586,1029281,Strange Darling,Nothing is what it seems when a twisted one-night stand spirals into a serial killer’s vicious murder spree.,2024-08-14,7.3516,6.967,658 +3587,559969,El Camino: A Breaking Bad Movie,"In the wake of his dramatic escape from captivity, Jesse Pinkman must come to terms with his past in order to forge some kind of future.",2019-10-11,6.8394,6.964,5134 +3588,452187,Le Brio,"After an incident, a brilliant professor known for his outbursts is forced to mentor the student he wronged for a speech contest.",2017-11-22,0.9091,6.963,897 +3589,263109,Shaun the Sheep Movie,"When Shaun decides to take the day off and have some fun, he gets a little more action than he bargained for. A mix up with the Farmer, a caravan and a very steep hill lead them all to the Big City and it's up to Shaun and the flock to return everyone safely to the green grass of home.",2015-02-05,3.4646,6.963,1432 +3590,76492,Hotel Transylvania,"Welcome to Hotel Transylvania, Dracula's lavish five-stake resort, where monsters and their families can live it up and no humans are allowed. One special weekend, Dracula has invited all his best friends to celebrate his beloved daughter Mavis's 118th birthday. For Dracula catering to all of these legendary monsters is no problem but the party really starts when one ordinary guy stumbles into the hotel and changes everything!",2012-09-20,10.5477,6.963,8840 +3591,33680,Grand Hotel,"Guests at a posh Berlin hotel struggle through worry, scandal, and heartache.",1932-05-25,1.1319,6.963,321 +3592,13198,Wristcutters: A Love Story,"Zia, distraught over breaking up with his girlfriend, decides to end it all. Unfortunately, he discovers that there is no real ending, only a run-down afterlife that is strikingly similar to his old one, just a bit worse. Discovering that his ex-girlfriend has also ""offed"" herself, he sets out on a road trip to find her.",2007-10-19,1.6268,6.969,576 +3593,1272,Sunshine,"Fifty years into the future, the sun is dying, and Earth is threatened by arctic temperatures. A team of astronauts is sent to revive the Sun — but the mission fails. Seven years later, a new team is sent to finish the mission as mankind’s last hope.",2007-04-05,3.5391,6.963,3965 +3594,632666,Unpregnant,"A 17-year old Missouri teen discovers she has gotten pregnant, a development that threatens to end her dreams of matriculating at an Ivy League college, and the career that could follow.",2020-09-10,0.8011,6.962,302 +3595,43923,It's Kind of a Funny Story,A clinically depressed teenager gets a new start after he checks himself into an adult psychiatric ward.,2010-10-08,1.4112,6.962,2377 +3596,25676,Rob-B-Hood,"For never-do-well compulsive gambler Fong, there's only one thing more fearsome than debtors at his doorstep - having to coax a crying baby. But what if the baby becomes his golden goose to fend off his debtors? Can he overcome his phobia of diapers, milk bottles, and cloying lullabies?",2006-09-28,3.993,6.962,625 +3597,24163,As Tears Go By,"Mid-level gangster Wah falls in love with his beautiful cousin, but must also continue to protect his volatile partner-in-crime and friend, Fly.",1988-06-09,1.8027,6.962,339 +3598,16153,Alice Doesn't Live Here Anymore,"After her husband dies, Alice and her son, Tommy, leave their small New Mexico town for California, where Alice hopes to make a new life for herself as a singer. Money problems force them to settle in Arizona instead, where Alice takes a job as waitress in a small diner.",1974-12-09,2.0445,7.0,486 +3599,11527,Excalibur,"A surreal adaptation of Sir Thomas Malory's ""Le Morte d'Arthur"" chronicling Arthur Pendragon's conception, his rise to the throne, the search by his Knights of the Round Table for the Holy Grail, and ultimately, his death.",1981-04-10,2.6415,7.0,1055 +3600,1630,The People vs. Larry Flynt,"Larry Flynt is the hedonistically obnoxious, but indomitable, publisher of Hustler magazine. The film recounts his struggle to make an honest living publishing his girlie magazine and how it changes into a battle to protect the freedom of speech for all people.",1996-12-25,2.0753,6.962,1158 +3601,508791,The Sun Is Also a Star,"Two young New Yorkers begin to fall in love over the course of a single day, as a series of potentially life-altering meetings loom over their heads - hers concerning her family’s deportation to Jamaica, and his concerning an education at Dartmouth.",2019-05-16,1.7835,6.961,604 +3602,28053,City Island,"The Rizzos, a family who doesn't share their habits, aspirations, and careers with one another, find their delicate web of lies disturbed by the arrival of a young ex-con brought home by Vince, the patriarch of the family, who is a corrections officer in real life, and a hopeful actor in private.",2009-03-06,2.0904,6.961,382 +3603,8195,Ronin,"A briefcase with undisclosed contents – sought by Irish terrorists and the Russian mob – makes its way into criminals' hands. An Irish liaison assembles a squad of mercenaries, or 'ronin', and gives them the thorny task of recovering the case.",1998-09-25,3.6798,6.961,2482 +3604,989662,A Different Man,"Aspiring actor Edward undergoes a radical medical procedure to drastically transform his appearance. But his new dream face quickly turns into a nightmare, as he loses out on the role he was born to play and becomes obsessed with reclaiming what was lost.",2024-08-24,3.3095,7.0,323 +3605,972614,Knox Goes Away,"A contract killer, after being diagnosed with a fast-moving form of dementia, is presented with the opportunity to redeem himself by saving the life of his estranged adult son. But to do so, he must race against the police closing in on him as well as the ticking clock of his own rapidly deteriorating mind.",2024-03-15,3.6159,6.96,421 +3606,639721,The Addams Family 2,The Addams get tangled up in more wacky adventures and find themselves involved in hilarious run-ins with all sorts of unsuspecting characters.,2021-10-01,6.3163,6.96,1346 +3607,567189,Tom Clancy's Without Remorse,An elite Navy SEAL uncovers an international conspiracy while seeking justice for the murder of his pregnant wife.,2021-04-29,6.3858,6.96,2535 +3608,11893,Runaway Train,A hardened convict and a younger prisoner escape from a brutal prison in the middle of winter only to find themselves on an out-of-control train with a female railway worker while being pursued by the vengeful head of security.,1985-11-15,2.1456,7.0,610 +3609,9542,The Hitcher,"On a stormy night, young Jim, who transports a luxury car from Chicago to California to deliver it to its owner, feeling tired and sleepy, picks up a mysterious hitchhiker, who has appeared out of nowhere, thinking that a good conversation will help him not to fall asleep. He will have enough time to deeply regret such an unmeditated decision.",1986-01-17,2.8925,6.96,983 +3610,868,Tsotsi,"A young South African boy from the Johannesburg ghetto named Tsotsi, meaning Gangster, leaves home as a child to get away from his helpless parents. Now a teenage thug, Tsotsi finds a baby in the back seat of a car he's just stolen. He decides that it is his responsibility to care for the infant and in the process learns that maybe the criminal life isn’t the best way.",2005-12-23,1.1118,6.96,328 +3611,1254786,The Life List,"When her mother sends her on a quest to complete a teenage bucket list, a young woman uncovers family secrets, finds romance — and rediscovers herself.",2025-03-27,7.696,7.0,462 +3612,703771,Deathstroke: Knights & Dragons - The Movie,The assassin Deathstroke tries to save his family from the wrath of H.I.V.E. and the murderous Jackal.,2020-08-04,2.5213,7.0,454 +3613,520758,Chicken Run: Dawn of the Nugget,A band of fearless chickens flock together to save poultry-kind from an unsettling new threat: a nearby farm that's cooking up something suspicious.,2023-12-08,4.574,7.0,814 +3614,339692,Shot Caller,A newly-released prison gangster is forced by the leaders of his gang to orchestrate a major crime with a brutal rival gang on the streets of Southern California.,2017-07-07,4.7128,7.0,2111 +3615,283564,SlugTerra: Return of the Elementals,"A new member has joined Eli and the Shane Gang! Junjie, once the protector of the Eastern Caverns, is a master of the slugslinging art of Slug Fu! But even with the power of five slingers, the Shane Gang find themselves in over their heads as they race across The 99 Caverns in search of the Legendary Elemental Slugs. The five Elementals are ancient slugs of great power, and the forbearers of all slugs found in SlugTerra today. In the wrong hands, they could bring Slugterra to the brink of destruction. So when an evil alliance starts hunting down the Elementals, Eli and his friends — old and new — take off in pursuit of the greatest threat their world has ever faced!",2014-08-02,0.9751,6.959,345 +3616,11916,Two Mules for Sister Sara,"When a wandering mercenary named Hogan rescues a nun called Sister Sara from the unwanted attentions of a band of rogues on the Mexican plains, he has no idea what he has let himself in for. Their chance encounter results in the blowing up of a train and a French garrison, as well as igniting a spark between them that survives a shocking discovery.",1970-03-02,2.4306,7.0,610 +3617,11033,Dressed to Kill,"After witnessing a mysterious woman brutally slay a homemaker, prostitute Liz Blake finds herself trapped in a dangerous situation. While the police thinks she is the murderer, the real killer is intent on silencing her only witness.",1980-07-25,4.5567,7.0,1019 +3618,2054,Mr. Holland's Opus,"In 1965, passionate musician Glenn Holland takes a day job as a high school music teacher, convinced it's just a small obstacle on the road to his true calling: writing a historic opus. As the decades roll by with the composition unwritten but generations of students inspired through his teaching, Holland must redefine his life's purpose.",1995-12-29,2.2405,6.959,431 +3619,937287,Challengers,"Tennis player turned coach Tashi has taken her husband, Art, and transformed him into a world-famous Major champion. To jolt him out of his recent losing streak, she signs him up for a ""Challenger"" event — close to the lowest level of pro tournament — where he finds himself standing across the net from his former best friend and Tashi's former boyfriend.",2024-04-18,11.1618,6.958,2280 +3620,796185,The Three Musketeers: D'Artagnan,"D'Artagnan, a spirited young Gascon, is left for dead after trying to save a noblewoman from being kidnapped. Once in Paris, he tries by all means to find his attackers, unaware that his quest will lead him to the very heart of a war where the future of France is at stake. Aided by King's Musketeers Athos, Porthos and Aramis, he faces the machinations of villainous Cardinal Richelieu and Milady de Winter, while falling in love with Constance, the Queen's confidante.",2023-04-05,5.048,6.958,1297 +3621,227735,Dolphin Tale 2,The team of people who saved Winter's life reassemble in the wake of her surrogate mother's passing in order to find her a companion so she can remain at the Clearwater Marine Hospital.,2014-09-11,1.8114,7.0,359 +3622,458723,Us,"Husband and wife Gabe and Adelaide Wilson take their kids to their beach house expecting to unplug and unwind with friends. But as night descends, their serenity turns to tension and chaos when some shocking visitors arrive uninvited.",2019-03-14,6.7196,6.957,7658 +3623,22826,The Monster,"A vicious serial sex killer is on the loose, and landscape gardener and shop-window outfitter Loris is the prime suspect, thanks to his unfortunate habit of getting caught in compromising situations (for which there is always a totally innocent explanation that the police fail to spot). Undercover policewoman Jessica is assigned by eccentric police psychologist Taccone to follow Loris.",1994-10-22,2.7027,6.955,617 +3624,12225,Cashback,"After a painful breakup, Ben develops insomnia. To kill time, he starts working the late night shift at the local supermarket, where his artistic imagination runs wild.",2007-01-17,3.0913,6.957,1302 +3625,412117,The Secret Life of Pets 2,"Max the terrier must cope with some major life changes when his owner gets married and has a baby. When the family takes a trip to the countryside, nervous Max has numerous run-ins with canine-intolerant cows, hostile foxes and a scary turkey. Luckily for Max, he soon catches a break when he meets Rooster, a gruff farm dog who tries to cure the lovable pooch of his neuroses.",2019-05-24,6.76,7.0,3188 +3626,11536,The Misfits,"While filing for a divorce, beautiful ex-stripper Roslyn Taber ends up meeting aging cowboy-turned-gambler Gay Langland and former World War II aviator Guido Racanelli. The two men instantly become infatuated with Roslyn and, on a whim, the three decide to move into Guido's half-finished desert home together. When grizzled ex-rodeo rider Perce Howland arrives, the unlikely foursome strike up a business capturing wild horses.",1961-02-01,8.8643,6.956,402 +3627,10236,The Way We Were,"Opposites attract when, during their college days, Katie Morosky, a politically active Jew, meets Hubbell Gardiner, a feckless WASP. Years later, in the wake of World War II, they meet once again and, despite their obvious differences, attempt to make their love for each other work.",1973-10-17,1.9017,6.956,475 +3628,9007,Just Like Heaven,"Shortly after David Abbott moves into his new San Francisco digs, he has an unwelcome visitor on his hands: winsome Elizabeth Masterson, who asserts that the apartment is hers -- and promptly vanishes. When she starts appearing and disappearing at will, David thinks she's a ghost, while Elizabeth is convinced she's alive.",2005-09-16,3.7615,6.956,2447 +3629,501907,A Beautiful Day in the Neighborhood,"An award-winning cynical journalist, Lloyd Vogel, begrudgingly accepts an assignment to write an Esquire profile piece on the beloved television icon Fred Rogers. After his encounter with Rogers, Vogel's perspective on life is transformed.",2019-09-07,2.4992,6.955,1669 +3630,491926,Resistance,The story of mime Marcel Marceau as he works with a group of Jewish boy scouts and the French Resistance to save the lives of ten thousand orphans during World War II.,2020-03-27,1.4366,6.955,445 +3631,343668,Kingsman: The Golden Circle,"When an attack on the Kingsman headquarters takes place and a new villain rises, Eggsy and Merlin are forced to work together with the American agency known as the Statesman to save the world.",2017-09-20,7.128,6.955,10699 +3632,77887,Hawaiian Vacation,The toys throw Ken and Barbie a Hawaiian vacation in Bonnie's room.,2011-06-16,2.8784,6.955,673 +3633,38366,The Cyclone,"The everyday life of accountant Levante, his family and the other people of a small town in the Tuscan countryside is taken by storm by the serendipitous arrival of five gorgeous Spanish flamenco dancers.",1996-12-20,0.7278,6.955,747 +3634,12889,Futurama: The Beast with a Billion Backs,"Fresh off ripping space-time a new one at the end of ""Bender's Big Score,"" the Planet Express crew is back to mend the tear in reality, or (hopefully) at least not make it worse. Beyond the tear, though, lurks a being of inconceivable...tentacularity. What will become of Earth, and indeed, our universe, when faced with the Beast with a Billion Backs?",2008-06-30,1.2016,6.955,575 +3635,2048,"I, Robot","In 2035, where robots are commonplace and abide by the three laws of robotics, a technophobic cop investigates an apparent suicide. Suspecting that a robot may be responsible for the death, his investigation leads him to believe that humanity may be in danger.",2004-07-15,7.5472,7.0,12137 +3636,1662,State of Grace,"Hell's Kitchen, New York. Terry Noonan returns home after a ten-year absence. He soon reconnects with Jackie, a childhood friend and member of the Irish mob, and rekindles his love affair with Jackie's sister Kathleen.",1990-09-14,1.6435,7.0,379 +3637,1573,Die Hard 2,"One year after his heroics in Los Angeles, John McClane is an off-duty cop who is the wrong guy in the wrong place at the wrong time. On a snowy Christmas Eve, as he waits for his wife's plane to land at Washington Dulles International Airport, terrorists take over the air traffic control system in a plot to free a South American army general and drug smuggler being flown into the US to face drug charges. It's now up to McClane to take on the terrorists, while coping with an inept airport police chief, an uncooperative anti-terrorist squad, and the life of his wife and everyone else trapped in planes circling overhead.",1990-07-03,6.1475,6.956,6051 +3638,394741,Stan & Ollie,"With their golden era long behind them, comedy duo Stan Laurel and Oliver Hardy embark on a variety hall tour of Britain and Ireland. Despite the pressures of a hectic schedule, and with the support of their wives Lucille and Ida – a formidable double act in their own right – the pair's love of performing, as well as for each other, endures as they secure their place in the hearts of their adoring public",2018-12-28,1.9279,6.954,1082 +3639,74534,The Best Exotic Marigold Hotel,"British retirees travel to India to take up residence in what they believe is a newly restored hotel. Less luxurious than its advertisements, the Marigold Hotel nevertheless slowly begins to charm in unexpected ways as the residents find new purpose in their old age.",2012-02-23,2.0912,6.954,1390 +3640,18573,House of Wax,"A New York sculptor who opens a wax museum to showcase the likenesses of famous historical figures runs into trouble with his business partner, who demands that the exhibits become more extreme in order to increase profits.",1953-04-16,1.8841,7.0,351 +3641,9952,Rescue Dawn,A US Fighter pilot's epic struggle of survival after being shot down on a mission over Laos during the Vietnam War.,2007-06-23,2.038,7.0,1308 +3642,617762,The Electrical Life of Louis Wain,"The extraordinary true story of eccentric British artist Louis Wain, whose playful, sometimes even psychedelic pictures helped to transform the public's perception of cats forever.",2021-10-21,1.921,6.953,472 +3643,581032,News of the World,"A Texan traveling across the wild West bringing the news of the world to local townspeople, agrees to help rescue a young girl who was kidnapped.",2020-12-25,2.1282,6.953,1823 +3644,491472,At Eternity's Gate,"Famed but tormented artist Vincent van Gogh spends his final years in Arles, France, painting masterworks of the natural world that surrounds him.",2018-11-15,2.7719,6.952,1490 +3645,355111,Barbie in Rock 'N Royals,"When royal Princess Courtney trades places with famous rock star Erika, two worlds collide while both learn to appreciate new friends and experiences.",2015-08-12,1.9816,7.0,308 +3646,274870,Passengers,"A spacecraft traveling to a distant colony planet and transporting thousands of people has a malfunction in its sleep chambers. As a result, two passengers are awakened 90 years early.",2016-12-21,5.5346,6.953,13662 +3647,14637,Nothing But the Truth,"When reporter Rachel Armstrong writes a story that reveals the identity of a covert CIA operative, the government demands that Rachel reveal her source. She defies the special prosecutor and is thrown in jail. Meanwhile, her attorney, Albert Burnside argues her case all the way to the U.S. Supreme Court.",2008-12-19,1.9655,7.0,509 +3648,10776,Little Shop of Horrors,"Seymour Krelborn is a nerdy orphan working at Mushnik's; a flower shop in urban Skid Row. He harbors a crush on fellow co-worker, Audrey Fulquard, and is berated by Mr. Mushnik daily. One day, Seymour finds a very mysterious unidentified plant which he calls Audrey II. The plant seems to have a craving for blood and soon begins to sing for his supper.",1986-12-19,3.575,7.0,1515 +3649,8653,The Isle,"Mute Hee-Jin is working as a clerk in a fishing resort in the Korean wilderness; selling baits, food and occasionally her body to the fishing tourists. One day she falls in love with Hyun-Shik, who is on the run from the police, and rescues him with a fish hook when he tries to commit suicide.",2000-04-22,2.4613,7.0,341 +3650,975773,Wicked Little Letters,"When the denizens of Littlehampton – including conservative Edith – begin receiving letters full of hilarious profanities, rowdy Irish migrant Rose is charged with the crime. Suspecting something amiss, the town's women band together to investigate.",2024-02-23,2.6578,6.952,534 +3651,359410,Road House,"Ex-UFC fighter Dalton takes a job as a bouncer at a Florida Keys roadhouse, only to discover that this paradise is not all it seems.",2024-03-08,20.7044,6.952,2611 +3652,103269,Superman vs. The Elite,The Man of Steel finds himself outshone by a new team of ruthless superheroes who hold his idealism in contempt.,2012-06-12,2.1629,7.0,424 +3653,3033,Gods and Monsters,"It's 1957, and James Whale's heyday as the director of ""Frankenstein,"" ""Bride of Frankenstein"" and ""The Invisible Man"" is long behind him. Retired and a semi-recluse, he lives his days accompanied only by images from his past. When his dour housekeeper, Hannah, hires a handsome young gardener, the flamboyant director and simple yard man develop an unlikely friendship, which will change them forever.",1998-09-12,1.4292,6.952,372 +3654,450489,Irreplaceable You,"A stunning cancer diagnosis spurs Abbie to seek a future girlfriend for fiancé and childhood sweetheart Sam, who's clueless when it comes to dating.",2018-02-16,1.7157,6.951,705 +3655,339987,The Exception,"Nothing is as it seems in this riveting World War 2 thriller as a wary soldier goes to investigate a mysterious German monarch at his secluded mansion, leading him into a web of deceit and a dangerous love affair with a local Jewish woman.",2017-06-02,1.9814,6.951,446 +3656,175774,Ruby Red,"On her 16th birthday, Gwendolyn Shepherd finds out that instead of her cousin, she has inherited a rare gene that allows her to travel through time.",2013-03-14,2.139,6.951,1123 +3657,11616,Go for It,"After Doug picks up hitchhiking Rosco with his truck, they are mistaken for two bank robbers by the traffic police. They manage to escape only to be confused for two secret agents while trying to take a flight at the airport.",1983-02-01,2.1666,6.951,516 +3658,9778,Serendipity,"Although strangers Sara and Jonathan are both already in relationships, they realize they have genuine chemistry after a chance encounter – but part company soon after. Years later, they each yearn to reunite, despite being destined for the altar. But to give true love a chance, they have to find one another again.",2001-10-05,3.6262,6.951,2003 +3659,175112,Tinker Bell and the Pirate Fairy,"Zarina, a smart and ambitious dust-keeper fairy who’s captivated by Blue Pixie Dust and its endless possibilities, flees Pixie Hollow and joins forces with the scheming pirates of Skull Rock, who make her captain of their ship. Tinker Bell and her friends must embark on an epic adventure to find Zarina, and together they go sword-to-sword with the band of pirates led by a cabin boy named James, who’ll soon be known as Captain Hook himself.",2014-02-13,5.5382,7.0,1035 +3660,48714,The Big Shave,"A young man walks into a meticulously clean and sterile bathroom and proceeds to shave away hair, then skin, in an increasingly bloody and graphic bathroom scene.",1967-12-29,0.5476,6.95,342 +3661,37495,Four Lions,"Four Lions tells the story of a group of British jihadists who push their abstract dreams of glory to the breaking point. As the wheels fly off, and their competing ideologies clash, what emerges is an emotionally engaging (and entirely plausible) farce.",2010-05-07,1.8071,7.0,1190 +3662,13192,Moonwalker,"Moonwalker is a 1988 American experimental anthology musical film starring Michael Jackson. Rather than featuring one continuous narrative, the film expresses the influence of fandom and innocence through a collection of short films about Jackson, some of which are long-form music videos from Jackson's 1987 album Bad. The film is named after his famous dance, ""the moonwalk"", which he originally learned as ""the backslide"" but perfected the dance into something no one had seen before. The movie's introduction is a type of music video for Jackson's ""Man in the Mirror"" but is not the official video for the song. The film then expresses a montage of Michael's career, which leads into a parody of his Bad video titled ""Badder"", followed by sections ""Speed Demon"" and ""Leave Me Alone"". What follows is the biggest section where Michael plays a hero with magical powers and saves three children from Mr. Big. This section is ""Smooth Criminal"" which leads into a performance of ""Come Together"".",1988-10-29,1.7064,6.95,567 +3663,1412,"sex, lies, and videotape","Ann, a frustrated wife, enters into counseling due to a troubled marriage. Unbeknownst to her, her husband John has begun an affair with her sister. When John’s best friend Graham arrives, his penchant for interviewing women about their sex lives forever changes John and Ann’s rocky marriage.",1989-08-04,2.5937,7.0,962 +3664,1165,The Queen,"The Queen is an intimate behind the scenes glimpse at the interaction between HM Elizabeth II and Prime Minister Tony Blair during their struggle, following the death of Diana, to reach a compromise between what was a private tragedy for the Royal family and the public's demand for an overt display of mourning.",2006-09-15,2.5926,6.95,1348 +3665,320,Insomnia,Two Los Angeles homicide detectives are dispatched to a northern town where the sun doesn't set to investigate the methodical murder of a local teen.,2002-05-24,3.5527,6.95,4933 +3666,758323,The Pope's Exorcist,"Father Gabriele Amorth, Chief Exorcist of the Vatican, investigates a young boy's terrifying possession and ends up uncovering a centuries-old conspiracy the Vatican has desperately tried to keep hidden.",2023-04-05,7.6496,6.949,2928 +3667,542417,Skin,"A destitute young man, raised by racist skinheads and notorious among white supremacists, turns his back on hatred and violence to transform his life, with the help of a black activist and the woman he loves.",2019-07-26,2.313,6.949,429 +3668,65215,Stewie Griffin: The Untold Story,"The maniacal baby of the Griffin family, Stewie, meets his future self. In doing this he discovers that his future image is not what he has anticipated because of a near death experience.",2005-07-23,1.3413,6.9,403 +3669,13809,RocknRolla,"When a Russian mobster sets up a real estate scam that generates millions of pounds, various members of London's criminal underworld pursue their share of the fortune. Various shady characters, including Mr One-Two, Stella the accountant, and Johnny Quid, a druggie rock-star, try to claim their slice.",2008-09-04,3.5686,6.949,3076 +3670,11864,Enemy Mine,"A soldier from Earth crashlands on an alien world after sustaining battle damage. Eventually he encounters another survivor, but from the enemy species he was fighting; they band together to survive on this hostile world. In the end the human finds himself caring for his enemy in a completely unexpected way.",1985-12-12,1.6587,6.9,1006 +3671,10707,The Squid and the Whale,"Based on the true childhood experiences of Noah Baumbach and his brother, The Squid and the Whale tells the touching story of two young boys dealing with their parents' divorce in Brooklyn in the 1980s.",2005-10-05,2.1322,6.949,1014 +3672,9929,Asterix and Cleopatra,"Popular animated hero Asterix and his faithful sidekick Obelix travel to ancient Egypt to help Cleopatra build a new summer home. Cleopatra and Julius Caesar have made a bet, with Caesar wagering the project cannot be completed in a few weeks time. With the help of a magic potion, Asterix comes to the rescue of the Queen of the Nile as Caesar and an angry architect plot against them.",1968-12-19,1.9019,6.9,990 +3673,564,The Mummy,Dashing legionnaire Rick O'Connell stumbles upon the hidden ruins of Hamunaptra while in the midst of a battle to claim the area in 1920s Egypt. It has been over three thousand years since former High Priest Imhotep suffered a fate worse than death as a punishment for a forbidden love—along with a curse that guarantees eternal doom upon the world if he is ever awoken.,1999-04-16,11.4169,6.949,9428 +3674,749170,Heads of State,"The UK Prime Minister and US President have a public rivalry that risks their countries' alliance. But when they become targets of a powerful enemy, they're forced to rely on each other as they go on a wild, multinational run. Allied with Noel, a brilliant MI6 agent, they must find a way to thwart a conspiracy that threatens the free world.",2025-06-24,67.6164,6.9,651 +3675,46705,Blue Valentine,"Dean and Cindy live a quiet life in a modest neighborhood. They appear to have the world at their feet at the outset of the relationship. However, his lack of ambition and her retreat into self-absorption cause potentially irreversible cracks in their marriage.",2010-12-26,3.8342,6.9,3357 +3676,12502,Silkwood,"Like most of the people in her town, Karen Silkwood works at the local nuclear plant producing highly radioactive plutonium. Exposed one day to a lethal dose of radiation, Karen faces the blank walls of corporate indifference and denial. As her illness increases, her protest grows louder and she becomes an obvious danger to the powers that be.",1983-12-14,1.5989,6.9,329 +3677,8390,"Definitely, Maybe","When Will decides to tell his daughter the story of how he met her mother, he discovers that a second look at the past might also give him a second chance at the future.",2008-02-08,3.5897,6.948,2514 +3678,337556,Emerald Green,"Emerald Green is the stunning conclusion to Kerstin Gier's Ruby Red Trilogy, picking up where Sapphire Blue left off, reaching new heights of intrigue and romance as Gwen finally uncovers the secrets of the time-traveling society and learns her fate.",2016-07-07,1.7875,6.947,863 +3679,37653,The Three Brothers,"Three half-brothers are reunited at their mother's funeral. After being told of their inheritance they quickly spend the money, only to find out that they will not receive it after all. The men grow closer while deciding how to proceed.",1995-12-13,0.8764,6.9,770 +3680,19703,A Wednesday!,"Prakash Rathod, a retired police commissioner recounts the most memorable case of his career wherein he was informed about a bomb scare in Mumbai by an ordinary commoner.",2008-09-05,1.2109,6.946,333 +3681,9732,The Lion King II: Simba's Pride,"The circle of life continues for Simba, now fully grown and in his rightful place as the king of Pride Rock. Simba and Nala have given birth to a daughter, Kiara who's as rebellious as her father was. But Kiara drives her parents to distraction when she catches the eye of Kovu, the son of the evil lioness, Zira. Will Kovu steal Kiara's heart?",1998-10-24,7.3569,6.9,4523 +3682,9663,Starman,"When an alien takes the form of a young widow's husband and asks her to drive him from Wisconsin to Arizona, the government tries to stop them.",1984-12-13,2.2703,6.946,919 +3683,2750,24 Hour Party People,"Manchester, 1976. Tony Wilson is an ambitious but frustrated local TV news reporter looking for a way to make his mark. After witnessing a life-changing concert by a band known as the Sex Pistols, he persuades his station to televise one of their performances, and soon Manchester's punk groups are clamoring for him to manage them. Riding the wave of a musical revolution, Wilson and his friends create the legendary Factory Records label and The Hacienda club.",2002-02-13,1.4351,6.9,476 +3684,2253,Valkyrie,"Wounded in Africa during World War II, Nazi Col. Claus von Stauffenberg returns to his native Germany and joins the Resistance in a daring plan to create a shadow government and assassinate Adolf Hitler. When events unfold so that he becomes a central player, he finds himself tasked with both leading the coup and personally killing the Führer.",2008-12-25,5.8322,6.946,3850 +3685,468224,Tolkien,"England, early 20th century. The future writer and philologist John Ronald Reuel Tolkien (1892-1973) and three of his schoolmates create a strong bond between them as they share the same passion for literature and art, a true fellowship that strengthens as they grow up, but the outbreak of World War I threatens to shatter it.",2019-05-03,2.7098,6.9,1463 +3686,204082,Homefront,"Phil Broker is a former DEA agent who has gone through a crisis after his action against a biker gang went horribly wrong and it cost the life of his boss' son. He is recently widowed and is left with a 9-years-old daughter, Maddy. He decides to quit the turbulent and demanding life of thrill for Maddy's sake and retires to a small town. His daughter fights off a boy who was bullying her at school and this sets in motion a round of events that end in his direct confrontation with the local Meth drug lord. His past history with the biker gang also enters the arena, making matters more complex. But he has a mission in his mind to protect his daughter and he is ready to pay any cost that it demands.",2013-11-12,11.9211,6.945,3627 +3687,192141,No Escape,"In their new overseas home, an American family soon finds themselves caught in the middle of a coup, and they frantically look for a safe escape in an environment where foreigners are being immediately executed.",2015-08-26,4.2424,6.9,2596 +3688,180863,T2 Trainspotting,"After 20 years abroad, Mark Renton returns to Scotland and reunites with his old friends Sick Boy, Spud and Begbie.",2017-01-27,2.6515,6.945,3213 +3689,11257,A Room with a View,"When Lucy Honeychurch and chaperon Charlotte Bartlett find themselves in Florence with rooms without views, fellow guests Mr Emerson and son George step in to remedy the situation. Meeting the Emersons could change Lucy's life forever but, once back in England, how will her experiences in Tuscany affect her marriage plans?",1986-03-07,2.261,6.9,794 +3690,10882,Sleeping Beauty,"Cursed to die by the evil fairy Maleficent when she was a baby, Princess Aurora is sent into hiding under protection from three good fairies. As she grows up far away, Maleficent becomes increasingly determined to seal the princess's fate.",1959-02-17,6.5688,6.945,5294 +3691,103747,The Angels' Share,"Narrowly avoiding jail, new dad Robbie vows to turn over a new leaf. A visit to a whisky distillery inspires him and his mates to seek a way out of their hopeless lives.",2012-06-01,1.3265,6.944,586 +3692,49018,Insidious,"A family discovers that dark spirits have invaded their home after their son inexplicably falls into an endless sleep. When they reach out to a professional for help, they learn things are a lot more personal than they thought.",2011-03-31,8.6322,6.944,7007 +3693,24684,An Education,"Despite her sheltered upbringing, Jenny is a teen with a bright future; she's smart, pretty, and has aspirations of attending Oxford University. When David, a charming but much older suitor, motors into her life in a shiny automobile, Jenny gets a taste of adult life that she won't soon forget.",2009-10-29,1.888,6.944,1347 +3694,868759,Ghosted,"Salt-of-the-earth Cole falls head over heels for enigmatic Sadie—but then makes the shocking discovery that she's a secret agent. Before they can decide on a second date, Cole and Sadie are swept away on an international adventure to save the world.",2023-04-18,12.7954,6.943,1984 +3695,568467,Ammonite,"In 1840s England, palaeontologist Mary Anning and a young woman sent by her husband to convalesce by the sea develop an intense relationship. Despite the chasm between their social spheres and personalities, Mary and Charlotte discover they can each offer what the other has been searching for: the realisation that they are not alone. It is the beginning of a passionate and all-consuming love affair that will defy all social bounds and alter the course of both lives irrevocably.",2020-11-13,2.0486,6.943,609 +3696,55787,Water for Elephants,"In this captivating Depression-era melodrama, impetuous veterinary student Jacob Jankowski joins a celebrated circus as an animal caretaker but faces a wrenching dilemma when he's transfixed by angelic married performer Marlena.",2011-04-15,2.4165,6.943,2558 +3697,24469,Fish Tank,"Fifteen-year-old Mia is in a constant state of war with her family and the world around her. When she meets her party-girl mother’s charming new boyfriend Connor, she is amazed to find he returns her attention, and believes he might help her start to make sense of her life.",2009-09-11,1.4959,6.943,879 +3698,10122,Flight of the Navigator,"12-year-old David is accidentally knocked out in the forest near his home, but when he awakens eight years have passed. His family is overjoyed to have him back, but is just as perplexed as he is that he hasn't aged. When a NASA scientist discovers a UFO nearby, David gets the chance to unravel the mystery and recover the life he lost.",1986-07-30,2.6101,6.943,882 +3699,9434,Grosse Pointe Blank,"Martin Blank is a hitman for hire. When he starts to develop a conscience, he botches a couple of routine jobs. On the advice of his secretary and his psychiatrist, he decides to attend his ten-year high school reunion in Grosse Pointe, Michigan.",1997-04-11,1.7483,6.9,962 +3700,586,Wag the Dog,"During the final weeks of a presidential race, the President is accused of sexual misconduct. To distract the public until the election, the President's adviser hires a Hollywood producer to help him stage a fake war.",1997-12-25,1.8574,6.943,985 +3701,13127,SPL: Kill Zone,"Chan, an articulate senior detective nearing the end of his career, is taking care of the daughter of a witness killed by ruthless crime lord Po. Martial arts expert Ma is set to take over as head of the crime unit, replacing Chan who wants an early retirement.",2005-11-18,2.0827,6.942,329 +3702,725201,The Gray Man,"When a shadowy CIA agent uncovers damning agency secrets, he's hunted across the globe by a sociopathic rogue operative who's put a bounty on his head.",2022-07-13,5.0552,6.941,3885 +3703,664031,Out of My League,"Marta may be an orphan, and she may be affected by a lethal illness, yet she is the most positive person one can meet. She wants a boy to fall for her. Not any boy - the most handsome of them all. One day, she may have found her match.",2020-10-22,0.9424,6.941,472 +3704,429199,The Other Side of Hope,A restaurateur befriends a Syrian refugee who has recently arrived in Finland.,2017-02-03,1.8521,6.941,332 +3705,5876,The Mist,"After a violent storm, a dense cloud of mist envelops a small Maine town, trapping David Drayton and his five-year-old son in a local grocery store with other local residents. They soon discover that the mist conceals deadly horrors that threaten their lives, and worse, their sanity.",2007-11-21,6.8189,6.94,5478 +3706,676,Pearl Harbor,"The lifelong friendship between Rafe McCawley and Danny Walker is put to the ultimate test when the two ace fighter pilots become entangled in a love triangle with beautiful Naval nurse Evelyn Johnson. But the rivalry between the friends-turned-foes is immediately put on hold when they find themselves at the center of Japan's devastating attack on Pearl Harbor on Dec. 7, 1941.",2001-05-21,8.2518,6.941,6716 +3707,369883,Middle School: The Worst Years of My Life,A quiet teenage artist Rafe Katchadorian has a wild imagination and is sick of middle school and the rules that have been put before him. Rafe and his best friend Leo have come up with a plan: break every rule in the school hand book and as you expect trouble follows.,2016-10-07,1.8881,6.9,435 +3708,14410,Notorious,"""Notorious"" is the story of Christopher Wallace. Through raw talent and sheer determination, Wallace transforms himself from Brooklyn street hustler (once selling crack to pregnant women) to one of the greatest rappers of all time: The Notorious B.I.G. Follow his meteoric rise to fame and his refusal to succumb to expectations - redefining our notion of ""The American Dream.""",2009-01-16,2.1539,6.9,744 +3709,11367,Odds and Evens,A bumbling government agent recruits a trucker whose gambling knowledge can help crack an illegal Florida operation.,1978-10-28,0.0776,6.9,408 +3710,8072,Alphaville,"Lemmy Caution is on a mission to eliminate Professor Von Braun, the creator of a malevolent computer that rules the city of Alphaville. Befriended by the scientist’s daughter Natasha, Lemmy must unravel the mysteries of the strictly logical Alpha 60 and teach Natasha the meaning of the word “love.”",1965-05-05,2.2167,6.94,575 +3711,1643,Last Tango in Paris,A recently widowed American begins an anonymous sexual relationship with a young Parisian woman.,1972-12-15,3.4686,6.9,1270 +3712,17445,Green Lantern: First Flight,"Test pilot Hal Jordan finds himself recruited as the newest member of the intergalactic police force, The Green Lantern Corps.",2009-07-28,1.8323,6.939,468 +3713,364,Batman Returns,"Batman must face The Penguin, a sewer-dwelling gangleader intent on being accepted into Gotham society. Meanwhile, another Gotham resident finds herself transformed into Catwoman and is out for revenge...",1992-06-19,7.7312,6.939,6752 +3714,519465,Queen of Hearts,"Anne, a brilliant and dedicated advocacy lawyer specialising in society’s most vulnerable, children and young adults, lives what appears to be the picture-perfect life with her doctor-husband, Peter, and their twin daughters. When her estranged teenage stepson, Gustav, moves in with them, Anne’s escalating desire leads her down a dangerous rabbit hole which, once exposed, unleashes a sequence of events destined to destroy her world.",2019-03-27,6.8523,6.9,325 +3715,12101,Soylent Green,"In the year 2022, overcrowding, pollution, and resource depletion have reduced society’s leaders to finding food for the teeming masses. The answer is Soylent Green.",1973-04-18,2.6873,6.938,1331 +3716,10166,The Witches,"A young boy named Luke and his grandmother go on vacation only to discover their hotel is hosting an international witch convention, where the Grand High Witch is unveiling her master plan to turn all children into mice. Will Luke fall victim to the witches' plot before he can stop them?",1990-05-25,2.9993,6.938,1293 +3717,10027,Unleashed,"Raised as a slave, Danny is used to fighting for his survival. In fact, his ""master,"" Bart, thinks of him as a pet and goes as far as leashing him with a collar so they can make money in fight clubs, where Danny is the main contender. When Bart's crew is in a car accident, Danny escapes and meets a blind, kindhearted piano tuner who takes him in and uses music to free the fighter's long-buried heart.",2005-02-02,3.7011,6.938,2062 +3718,659,The Tin Drum,"Oskar Matzerath is a very unusual boy. Refusing to leave the womb until promised a tin drum by his mother, Agnes, Oskar is reluctant to enter a world he sees as filled with hypocrisy and injustice, and vows on his third birthday to never grow up. Miraculously, he gets his wish. As the Nazis rise to power in Danzig, Oskar wills himself to remain a child, beating his tin drum incessantly and screaming in protest at the chaos surrounding him.",1979-05-02,2.8756,6.9,495 +3719,560008,Minamata,War photographer W. Eugene Smith travels back to Japan where he documents the devastating effect of mercury poisoning in coastal communities.,2020-03-13,1.1504,6.937,302 +3720,16938,Black Christmas,"As the residents of the Pi Kappa Sigma sorority house prepare for the festive season, a stranger begins to harass them with a series of obscene phone calls.",1974-10-11,1.7219,6.937,859 +3721,11820,Mona Lisa Smile,"Katherine Watson is a recent UCLA graduate hired to teach art history at the prestigious all-female Wellesley College, in 1953. Determined to confront the outdated mores of society and the institution that embraces them, Katherine inspires her traditional students, including Betty and Joan, to challenge the lives they are expected to lead.",2003-12-19,2.9169,6.937,1803 +3722,11337,Stardust Memories,"While attending a retrospect of his work, a filmmaker recalls his life and his loves: the inspirations for his films.",1980-09-26,1.0116,6.9,444 +3723,10228,Pokémon: The First Movie,"Determined to prove its superiority, a bio-engineered Pokémon called Mewtwo lures Ash, Pikachu and others into a Pokemon match like none before.",1998-07-18,4.6752,6.937,1500 +3724,384680,Hostiles,A legendary Native American-hating Army captain nearing retirement in 1892 is given one last assignment: to escort a Cheyenne chief and his family through dangerous territory back to his Montana reservation.,2017-12-22,3.9185,6.936,2373 +3725,203819,Tracks,"Accompanied only by her faithful dog and four camels, an Australian satisfies her craving for solitude by embarking on a solo trip across the desert from Alice Springs to the Indian Ocean.",2013-12-19,0.0555,6.936,539 +3726,114955,Let It Shine,"A young teenage rapper must use his musical talent to help his friend out and win the girl of his dreams by going through several events of betrayal, trust and agreement while his religious parents have strictly dislike his interests.",2012-06-15,1.27,6.9,307 +3727,93456,Despicable Me 2,Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.,2013-06-26,9.0679,6.936,11574 +3728,13675,Frosty the Snowman,"A discarded silk top-hat becomes the focus of a struggle between a washed-up stage magician and a group of schoolchildren, after it magically brings a snowman to life. Realizing that newly-living Frosty will melt in spring unless he takes refuge in a colder climate, Frosty and Karen, a young girl who he befriends, stow away on a freight train headed for the north pole. Little do they know that the magician is following them, and he wants his hat back!",1969-12-07,1.3369,6.936,360 +3729,1890,Children of a Lesser God,"Starting his new job as an instructor at a New England school for the deaf, James Leeds meets Sarah Norman, a young deaf woman who works at the school as a member of the custodial staff. In spite of Sarah's withdrawn emotional state, a romance slowly develops between the pair.",1986-09-13,1.4962,6.9,329 +3730,713704,Evil Dead Rise,"A reunion between two estranged sisters gets cut short by the rise of flesh-possessing demons, thrusting them into a primal battle for survival as they face the most nightmarish version of family imaginable.",2023-04-12,9.1663,6.935,3333 +3731,400535,Sicario: Day of the Soldado,Agent Matt Graver teams up with operative Alejandro Gillick to prevent Mexican drug cartels from smuggling terrorists across the United States border.,2018-06-27,8.3841,6.935,3782 +3732,11971,Much Ado About Nothing,"In this Shakespearean farce, Hero and her groom-to-be, Claudio, team up with Claudio's commanding officer, Don Pedro, the week before their wedding to hatch a matchmaking scheme. Their targets are sharp-witted duo Benedick and Beatrice -- a tough task indeed, considering their corresponding distaste for love and each other. Meanwhile, meddling Don John plots to ruin the wedding.",1993-05-07,2.4971,6.935,758 +3733,11076,Fly Away Home,"Amy is only 13 years old when her mother is killed. She goes to Canada to live with her father, an eccentric inventor whom she barely knows. Amy is miserable in her new life... until she discovers a nest of goose eggs that were abandoned when a local forest was torn down. The eggs hatch and Amy becomes ""Mama Goose"". When Winter comes, Amy, and her dad must find a way to lead the birds South.",1996-09-13,2.619,6.935,480 +3734,465914,If Beale Street Could Talk,"After her fiance is falsely imprisoned, a pregnant African-American woman sets out to clear his name and prove his innocence.",2018-12-14,2.4293,6.934,1166 +3735,407890,Lean on Pete,"Charley Thompson, a teenager living with his single father, gets a summer job working for horse trainer Del Montgomery. Bonding with an aging racehorse named Lean on Pete, Charley is horrified to learn he is bound for slaughter, and so he steals the horse, and the duo embark on an odyssey across the new American frontier.",2018-04-06,1.269,6.934,347 +3736,60670,The Crimson Rivers,"Two French policemen, one investigating a grisly murder at a remote mountain college, the other working on the desecration of a young girl's grave by skinheads, are brought together by the clues from their respective cases. Soon after they start working together, more murders are committed, and the pair begin to discover just what dark secrets are behind the killings.",2000-09-27,2.5895,6.934,1603 +3737,24420,The Time Traveler's Wife,"Due to a genetic disorder, handsome librarian Henry DeTamble involuntarily zips through time, appearing at various moments in the life of his true love, the beautiful artist Clare Abshire.",2009-08-14,3.9849,6.934,2562 +3738,12153,White Chicks,"Two FBI agent brothers, Marcus and Kevin Copeland, accidentally foil a drug bust. To avoid being fired they accept a mission escorting a pair of socialites to the Hamptons--but when the girls are disfigured in a car accident, they refuse to go. Left without options, Marcus and Kevin decide to pose as the sisters, transforming themselves from black men into rich white women.",2004-06-23,12.6014,6.934,4225 +3739,2289,Cold Mountain,"In this classic story of love and devotion set against the backdrop of the American Civil War, a wounded Confederate soldier named W.P. Inman deserts his unit and travels across the South, aiming to return to his young wife, Ada, who he left behind to tend their farm. As Inman makes his perilous journey home, Ada struggles to keep their home intact with the assistance of Ruby, a mysterious drifter sent to help her by a kindly neighbor.",2003-12-24,4.3752,6.9,1849 +3740,925102,The Night of the 12th,"Young and ambitious Captain Vivés has just been appointed group leader at the Grenoble Criminal Squad when Clara's murder case lands on his desk. Vivés and his team investigate Clara's complex life and relations, but what starts as a professional and methodical immersion into the victim's life soon turns into a haunting obsession.",2022-07-13,1.2229,6.933,697 +3741,734265,Love Hard,"An LA girl, unlucky in love, falls for an East Coast guy on a dating app and decides to surprise him for Christmas, only to discover that she's been catfished. But the object of her affection actually lives in the same town, and the guy who duped her offers to set them up if she pretends to be his own girlfriend for the holidays.",2021-11-05,2.1373,6.933,1530 +3742,599281,Fear of Rain,"A teenage girl living with schizophrenia begins to suspect her neighbor has kidnapped a child. Her parents try desperately to help her live a normal life, without exposing their own tragic secrets, and the only person who believes her is Caleb – a boy she isn’t even sure exists.",2021-02-12,1.9358,6.933,536 +3743,16093,Carnival of Souls,"Mary Henry ends up the sole survivor of a fatal car accident through mysterious circumstances. Trying to put the incident behind her, she moves to Utah and takes a job as a church organist. But her fresh start is interrupted by visions of a fiendish man. As the visions begin to occur more frequently, Mary finds herself drawn to the deserted carnival on the outskirts of town. The strangely alluring carnival may hold the secret to her tragic past.",1962-11-02,2.1194,6.933,503 +3744,2259,The House of the Spirits,"A rancher, his clairvoyant wife and their family face turbulent years in South America.",1993-10-21,2.5541,6.933,705 +3745,921452,Jeanne du Barry,"The life of Jeanne Bécu, who was born as the illegitimate daughter of an impoverished seamstress in 1743 and went on to rise through the Court of Louis XV to become his last official mistress.",2023-05-16,1.9141,6.932,604 +3746,441829,Team Thor: Part 2,"A continuation of the documentary spoof of what Thor and his roommate Darryl were up to during the events of ""Captain America: Civil War"". While Cap and Iron Man duke it out, Thor tries to pay Darryl his rent in Asgardian coins.",2017-02-14,1.0361,6.9,339 +3747,227973,The Peanuts Movie,"Snoopy embarks upon his greatest mission as he and his team take to the skies to pursue their arch-nemesis, while his best pal Charlie Brown begins his own epic quest.",2015-11-05,4.4989,6.932,1709 +3748,14746,Streets of Fire,"Raven Shaddock and his gang of merciless biker friends kidnap rock singer Ellen Aim. Ellen's former lover, soldier-for-hire Tom Cody, happens to be passing through town on a visit. In an attempt to save his star act, Ellen's manager hires Tom to rescue her. Along with a former soldier, they battle through dangerous cityscapes, determined to get Ellen back.",1984-06-01,2.0781,6.932,519 +3749,760336,Munich – The Edge of War,"At the tense 1938 Munich Conference, former friends who now work for opposing governments become reluctant spies racing to expose a Nazi secret.",2021-12-31,1.5246,6.931,609 +3750,402431,Wicked,"In the land of Oz, ostracized and misunderstood green-skinned Elphaba is forced to share a room with the popular aristocrat Glinda at Shiz University, and the two's unlikely friendship is tested as they begin to fulfill their respective destinies as Glinda the Good and the Wicked Witch of the West.",2024-11-20,18.175,6.929,2330 +3751,76025,Shame,"Brandon, a thirty-something man living in New York, eludes intimacy with women but feeds his deepest desires with a compulsive addiction to sex. When his younger sister temporarily moves into his apartment, stirring up bitter memories of their shared painful past, Brandon's life, like his fragile mind, gets out of control.",2011-10-02,4.1444,6.9,3248 +3752,3432,Mr. Brooks,A psychological thriller about a man who is sometimes controlled by his murder-and-mayhem-loving alter ego.,2007-05-31,2.422,6.931,1765 +3753,699102,A Week Away,"Troubled teen Will Hawkins has a run-in with the law that puts him at an important crossroad: go to juvenile detention or attend a Christian summer camp. At first a fish-out-of-water, Will opens his heart, discovers love with a camp regular, and sense of belonging in the last place he expected to find it.",2021-03-26,1.1251,6.9,394 +3754,347031,Swiss Army Man,"Alone on a tiny deserted island, Hank has given up all hope of ever making it home again. But one day everything changes when a dead body washes ashore, and he soon realizes it may be his last opportunity to escape certain death. Armed with his new “friend” and an unusual bag of tricks, the duo go on an epic adventure to bring Hank back to the woman of his dreams.",2016-06-24,2.1473,6.93,3614 +3755,304410,The Bélier Family,"The whole Bélier family is deaf, except for sixteen year old Paula who is the important translator in her parents' day to day life especially when it comes to matters concerning the family farm. When her music teacher discovers she has a fantastic singing voice and she gets an opportunity to enter a big Radio France contest the whole family's future is set up for big changes.",2014-12-17,2.7598,6.93,2400 +3756,179826,Odd Thomas,"In a California desert town, a short-order cook with clairvoyant abilities encounters a mysterious man with a link to dark, threatening forces.",2013-01-29,2.5911,6.93,1380 +3757,68721,Iron Man 3,"When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.",2013-04-18,16.6123,6.93,22716 +3758,168903,Barbie in the Pink Shoes,"Dance your way to a magical adventure with Barbie as Kristyn, a ballerina with big dreams! When she tries on a pair of sparkling pink shoes, she and her best friend, Hailey, are whisked away to a fantastical ballet world. There, Kristyn discovers she must dance in her favorite ballets in order to defeat an evil Snow Queen. With performances to the legendary Giselle and Swan Lake ballets, it's a wonderful journey where if you dance with your heart, dreams come true!",2013-02-14,2.8674,6.929,388 +3759,12244,9,"When 9 first comes to life, he finds himself in a post-apocalyptic world. All humans are gone, and it is only by chance that he discovers a small community of others like him taking refuge from fearsome machines that roam the earth intent on their extinction. Despite being the neophyte of the group, 9 convinces the others that hiding will do them no good.",2009-08-19,5.4059,6.929,3686 +3760,8068,Desperado,"El Mariachi plunges headfirst into the dark border underworld when he follows a trail of blood to the last of the infamous Mexican drug lords, Bucho, for an action-packed, bullet-riddled showdown. With the help of his friend and a beautiful bookstore owner, El Mariachi tracks Bucho, takes on his army of desperados, and leaves his own trail of blood.",1995-08-25,4.3595,6.929,2964 +3761,458253,Missing Link,"The charismatic Sir Lionel Frost considers himself to be the world's foremost investigator of myths and monsters. Trouble is, none of his small-minded, high-society peers seems to recognize this. Hoping to finally gain acceptance from these fellow adventurers, Sir Lionel travels to the Pacific Northwest to prove the existence of a legendary creature known as the missing link.",2019-04-04,2.4864,6.928,885 +3762,384677,Set It Up,Two overworked and underpaid assistants come up with a plan to get their bosses off their backs by setting them up with each other.,2018-06-15,2.946,6.928,2719 +3763,68341,Cold Fish,Shamoto runs a small tropical fish shop. When his daughter Mitsuko is caught shoplifting at a grocery store a man named Murata steps in to settle things between the girl and the store manager. Murata also runs a tropical fish shop and he and Shamoto soon become friendly. However Murata hides many dark secrets behind his friendly face.,2011-01-29,2.0312,6.9,363 +3764,17965,The Abominable Dr. Phibes,"After a team of surgeons botches his beloved wife's operation, the distraught Dr. Phibes unleashes a score of Old-Testament atrocities on his enemies.",1971-05-18,1.1213,6.928,318 +3765,10655,Gettysburg,"In the summer of 1863, General Robert E. Lee leads the Confederate Army of Northern Virginia into Gettysburg, Pennsylvania with the goal of marching through to Washington, D.C. The Union Army of the Potomac, under the command of General George G. Meade, forms a defensive position to confront the rebel forces in what will prove to be the decisive battle of the American Civil War.",1993-10-08,1.9174,6.9,307 +3766,402,Basic Instinct,"Catherine, a novelist with an insatiable sexual appetite, becomes a prime suspect when her boyfriend is brutally murdered -- a crime she had described in her latest story.",1992-03-20,7.9736,6.928,4095 +3767,334304,Belle and Sebastian: The Adventure Continues,"September, 1945. Sebastian impatiently waits for the return of his friend Angelina, whom he has not seen for two years. When the plane carrying the young woman to her small village in the Alps is reported to have crashed in the mountains, Sebastian is convinced that Angelina is still alive. Along with his faithful dog Belle, Sebastian embarks on the most dangerous adventure of his life.",2015-12-08,1.3792,6.9,351 +3768,33914,Frankenweenie,"When young Victor's pet dog Sparky (who stars in Victor's home-made monster movies) is hit by a car, Victor decides to bring him back to life the only way he knows how. But when the bolt-necked ""monster"" wreaks havoc and terror in the hearts of Victor's neighbors, he has to convince them (and his parents) that despite his appearance, Sparky's still the good loyal friend he's always been.",1984-12-14,1.0583,6.927,422 +3769,15805,Batman & Mr. Freeze: SubZero,"When Mr. Freeze kidnaps Barbara Gordon, as an involuntary organ donor to save his dying wife, Batman and Robin must find her before the operation can begin.",1998-02-11,1.7884,6.927,464 +3770,11329,Runaway Jury,"After a workplace shooting in New Orleans, a trial against the gun manufacturer pits lawyer Wendell Rohr against shady jury consultant Rankin Fitch, who uses illegal means to stack the jury with people sympathetic to the defense. But when juror Nicholas Easter and his girlfriend Marlee reveal their ability to sway the jury into delivering any verdict they want, a high-stakes cat-and-mouse game begins.",2003-01-16,3.1782,6.927,1413 +3771,957608,Junkyard Dog,"Dog and Mirales have been friends since childhood, and live in a small village in the south of France. They spend most of the day hanging around in the streets. To kill time, Mirales has got into the habit of teasing Dog, to the extent that he has become a sort of whipping boy. But one summer, Dog meets Elsa, and they fall in love. Eaten away with jealousy, Mirales will have to get over his past to be able to grow and find his place…",2023-04-19,0.9899,6.926,344 +3772,58522,Boris: The Film,A director and his crew attempt to make the transition from the small to the big screen.,2011-04-01,0.5229,6.926,605 +3773,49519,The Croods,"The prehistoric Croods family live in a particularly dangerous moment in time. Patriarch Grug, his mate Ugga, teenage daughter Eep, son Thunk, and feisty Gran gather food by day and huddle together in a cave at night. When a more evolved caveman named Guy arrives on the scene, Grug is distrustful, but it soon becomes apparent that Guy is correct about the impending destruction of their world.",2013-03-15,8.8482,6.926,7258 +3774,12528,Southern Comfort,"A squad of National Guards on an isolated weekend exercise in the Louisiana swamp must fight for their lives when they anger local Cajuns by stealing their canoes. Without live ammunition and in a strange country, their experience begins to mirror the Vietnam experience.",1981-09-24,1.6198,6.926,330 +3775,1832,Dogma,An abortion clinic worker with a special heritage is called upon to save the existence of humanity from being negated by two renegade angels trying to exploit a loophole and reenter Heaven.,1999-10-04,3.1157,6.926,2634 +3776,778,Monsieur Hulot's Holiday,"Monsieur Hulot, Jacques Tati’s endearing clown, takes a holiday at a seaside resort, where his presence provokes one catastrophe after another. Tati’s masterpiece of gentle slapstick is a series of effortlessly well-choreographed sight gags involving dogs, boats, and firecrackers; it was the first entry in the Hulot series and the film that launched its maker to international stardom.",1953-02-25,1.9225,6.9,496 +3777,758679,Mothers' Instinct,"Housewives Alice and Celine are best friends and neighbours who seem to have it all. However, when a tragic accident shatters the harmony of their lives, guilt, suspicion and paranoia begin to unravel their sisterly bond.",2024-01-11,2.5444,6.931,519 +3778,618416,Penguin Bloom,"When an unlikely ally enters the Bloom family's world in the form of an injured baby magpie they name Penguin, the bird’s arrival makes a profound difference in the struggling family’s life.",2021-01-21,1.5883,6.925,320 +3779,484482,Sink or Swim,"40-year-old Bertrand has been suffering from depression for the last two years and is barely able to keep his head above water. Despite the medication he gulps down all day, every day, and his wife's encouragement, he is unable to find any meaning in his life. Curiously, he will end up finding this sense of purpose at the swimming pool, by joining an all-male synchronised swimming team.",2018-10-24,1.7221,6.925,1535 +3780,308266,War Dogs,"Based on the true story of two young men, David Packouz and Efraim Diveroli, who won a $300 million contract from the Pentagon to arm America's allies in Afghanistan.",2016-08-18,6.6521,6.925,5147 +3781,196254,Barbie Mariposa & the Fairy Princess,"Mariposa becomes the Royal Ambassador of Flutterfield, and is sent to bring peace between her fairy land and their rivals, the Crystal Fairies of Shimmervale. While Mariposa doesn't make a great first impression on the King, she becomes fast friends with his shy daughter, Princess Catania. However, a misunderstanding causes Mariposa to be banished from their fairy land. As Mariposa and Zee returns to Flutterfield, they encounter a dark fairy on her way to destroy Shimmervale. Mariposa rushes back and helps Princess Catania to save their fairy land and together, the two girls prove that the best way to make a friend, is to be a friend.",2013-08-25,2.3839,6.9,320 +3782,116440,"Maggie Simpson in ""The Longest Daycare""","Maggie must navigate an eventful first day in daycare. At the Ayn Rand School for Tots, Maggie is diagnosed with average intelligence. Barred from the gifted children, she longs to escape from her glue-guzzling classmates. But when a lonely caterpillar befriends her, she makes it her mission to save it from a ruthless butterfly smashing toddler.",2012-07-03,1.4483,6.925,369 +3783,13435,Antwone Fisher,"A sailor prone to violent outbursts is sent to a naval psychiatrist for help. Refusing at first to open up, the young man eventually breaks down and reveals a horrific childhood. Through the guidance of his doctor, he confronts his painful past and begins a quest to find the family he never knew.",2002-12-19,1.7112,6.925,521 +3784,931,Don't Look Now,"While grieving a terrible loss, a married couple meet two mysterious sisters, one of whom gives them a message sent from the afterlife.",1973-10-11,2.3478,6.926,1110 +3785,19204,The Beyond,"A young woman inherits an old hotel in Louisiana where, following a series of supernatural ""accidents"", she learns that the building was built over one of the entrances to Hell.",1981-04-22,2.4213,6.9,612 +3786,14310,Infernal Affairs III,"While Yeung Kam Wing is trying to remove all connections between the mob and him, his actions are being carefully observed by Lau Kin Ming, who bears a personal grudge against him.",2003-12-12,2.1594,6.923,349 +3787,1267,Meet the Robinsons,"Lewis, a brilliant young inventor, is keen on creating a time machine to find his mother, who abandoned him in an orphanage. Things take a turn when he meets Wilbur Robinson and his family.",2007-03-23,5.1156,6.923,2979 +3788,62837,Dolphin Tale,A story centered on the friendship between a boy and a dolphin whose tail was lost in a crab trap.,2011-09-22,1.9619,6.922,662 +3789,19933,The Brave Little Toaster,"A group of dated appliances, finding themselves stranded in a summer home that their family had just sold, decide to seek out their eight year old 'master'.",1987-07-09,1.2958,6.9,448 +3790,12919,Can't Buy Me Love,"Nerdy high schooler Ronald Miller rescues cheerleader Cindy Mancini from parental punishment after she accidentally destroys her mother's designer clothes. Ronald agrees to pay for the $1,000 outfit on one condition: that she will act as though they're a couple for an entire month. As the days pass, however, Cindy grows fond of Ronald, making him popular. But when Ronald's former best friend gets left behind, he realizes that social success isn't everything.",1987-08-14,2.2671,6.922,682 +3791,9812,Thursday,"A former Los Angeles drug dealer moves far away to Texas, making a new life for himself as a married architect in the suburbs. His old crime partner unexpectedly shows up with heroin and gangster business, attracting a slew of violent unsavory characters.",1998-09-25,1.5449,6.922,333 +3792,457332,Hidden Strike,Two elite soldiers must escort civilians through a gauntlet of gunfire and explosions.,2023-07-06,3.2892,6.921,1019 +3793,23479,The Bad News Bears,"An aging, down-on-his-luck ex-minor leaguer coaches a team of misfits in an ultra-competitive California little league.",1976-04-06,1.1908,6.9,310 +3794,658760,Isi & Ossi,"Isi and Ossi couldn't be any more different: She's a billionaire's daughter from Heidelberg, he's a struggling boxer from the nearby town of Mannheim. But when Isi meets Ossi, the two quickly realize that they can take advantage of one another: She dates the broke boxer to provoke her parents and get them to fund a long-desired chef training in New York. He tries to rip off the rich daughter to finance his first professional boxing match. Their plans soon develop into emotional chaos that challenges everything the two believe to know about money, career and love.",2020-02-14,2.2972,6.92,928 +3795,646389,Plane,"After a heroic job of successfully landing his storm-damaged aircraft in a war zone, a fearless pilot finds himself between the agendas of multiple militias planning to take the plane and its passengers hostage.",2023-01-12,4.6385,6.92,2431 +3796,505706,The Golden Glove,A serial killer strikes fear in the hearts of residents of Hamburg during the early 1970s.,2019-02-21,2.0833,6.922,585 +3797,170657,Journey to the West: Conquering the Demons,"In a world plagued by demons who cause great human suffering, young demon hunter Tang Sanzang must fight against monstrous demons, as well as contend with a beautiful demon hunting woman on his path to enlightenment.",2013-02-07,2.7037,6.92,400 +3798,26466,Triangle,"When Jess sets sail on a yacht with a group of friends, she cannot shake the feeling that there is something wrong.",2009-10-16,4.407,6.9,2760 +3799,25508,Cat People,"A Serbian émigré in Manhattan believes that, because of an ancient curse, any physical intimacy with the man she loves will turn her into a feline predator.",1942-12-05,1.152,6.92,622 +3800,11571,Journey to the Center of the Earth,An Edinburgh professor and assorted colleagues follow an explorer's trail down an extinct Icelandic volcano to the earth's center.,1959-12-15,2.8392,6.9,481 +3801,1999,In the Bedroom,"Summertime on the coast of Maine, ""In the Bedroom"" centers on the inner dynamics of a family in transition. Matt Fowler is a doctor practicing in his native Maine and is married to New York born Ruth Fowler, a music teacher. His son is involved in a love affair with a local single mother. As the beauty of Maine's brief and fleeting summer comes to an end, these characters find themselves in the midst of unimaginable tragedy.",2001-11-23,1.6364,6.92,374 +3802,614488,Street Flow,"Noumouké, from the suburb of Paris, is about to decide which brother's foot steps to follow - the lawyer student Soulaymaan or the gangster Demba.",2019-10-12,1.684,6.919,354 +3803,495193,Benji,"Two school kids strike up a friendship with an orphaned puppy named Benji. When danger befalls them and they end up kidnapped by robbers who are in over their heads, Benji and his scruffy sidekick come to the rescue.",2018-03-16,1.6835,6.919,310 +3804,591538,The Tragedy of Macbeth,"Macbeth, the Thane of Glamis, receives a prophecy from a trio of witches that one day he will become King of Scotland. Consumed by ambition and spurred to action by his wife, Macbeth murders his king and takes the throne for himself.",2021-12-05,2.142,6.9,812 +3805,422803,A Shaun the Sheep Movie: Farmageddon,"When an alien with amazing powers crash-lands near Mossy Bottom Farm, Shaun the Sheep goes on a mission to shepherd the intergalactic visitor home before a sinister organization can capture her.",2019-09-26,2.3857,6.918,552 +3806,20762,The Substitute,"When an inner-city Miami schoolteacher gets her knee broken after standing up to the school's gang leader, her mercenary combat specialist boyfriend goes undercover as a substitute teacher to take down the punk. Soon he discovers a conspiracy of criminals at work, and must reassemble his team from his last jungle raid to stop them.",1996-04-19,3.9412,6.917,515 +3807,1553,The Beat That My Heart Skipped,"A ruthless real estate agent discovers a passion for piano and auditions with help from a young virtuoso, but the pressures of his corrupt career threaten to derail his musical aspirations.",2005-03-16,0.9787,6.918,466 +3808,660942,The Innocents,"Four children become friends during the summer holidays, and out of sight of the adults they discover they have hidden powers. While exploring their newfound abilities in the nearby forests and playgrounds, their innocent play takes a dark turn and strange things begin to happen.",2021-09-03,5.6546,6.917,645 +3809,534259,Blinded by the Light,"In 1987, during the austere days of Thatcher’s Britain, a teenager learns to live life, understand his family, and find his own voice through the music of Bruce Springsteen.",2019-08-09,1.318,6.917,588 +3810,204668,Belle and Sebastian,"Belle and Sebastian is set high in the snowy Alps during the Second World War. The resourceful Sebastian is a lonely boy who tames and befriends a giant, wild mountain dog, Belle – even though the villagers believe her to be ‘the beast’ that has been killing their sheep.",2013-12-18,1.8957,6.9,664 +3811,91010,Game Change,"During the Republican run of the 2008 Presidential election, candidate John McCain picks a relative unknown, Alaskan governor Sarah Palin, to be his running mate. As the campaign kicks into high gear, her lack of experience, in both political and media savvy, becomes a drain upon McCain and his strategists.",2012-02-28,1.4804,6.917,330 +3812,9362,Tremors,"Val McKee and Earl Bassett are in a fight for their lives when they discover that their desolate town has been infested with gigantic, man-eating creatures that live below the ground.",1990-01-19,4.5761,6.917,3383 +3813,308,Broken Flowers,"As the devoutly single Don Johnston is dumped by his latest girlfriend, he receives an anonymous pink letter informing him that he has a son who may be looking for him.",2005-07-31,1.6835,6.9,1394 +3814,447404,Pokémon Detective Pikachu,"In a world where people collect pocket-size monsters (Pokémon) to do battle, a boy comes across an intelligent monster who seeks to be a detective.",2019-05-03,5.6653,6.9,7061 +3815,338967,Zombieland: Double Tap,"Columbus, Tallahassee, Wichita, and Little Rock move to the American heartland as they face off against evolved zombies, fellow survivors, and the growing pains of the snarky makeshift family.",2019-10-09,5.1541,6.916,5936 +3816,140300,Kung Fu Panda 3,"While Po and his father are visiting a secret panda village, an evil spirit threatens all of China, forcing Po to form a ragtag army to fight back.",2016-01-23,9.0267,6.916,6274 +3817,36568,Paulie,"Paulie, a talking parrot, recounts his travels looking for his original owner to a Russian janitor who helps him to the end of his journey.",1998-04-17,2.1287,6.916,498 +3818,19494,Nine to Five,"Three female employees of a sexist, egotistical, lying, hypocritical bigot find a way to turn the tables on him.",1980-12-18,1.8531,6.916,521 +3819,363088,Ant-Man and the Wasp,"Just when his time under house arrest is about to end, Scott Lang once again puts his freedom at risk to help Hope van Dyne and Dr. Hank Pym dive into the quantum realm and try to accomplish, against time and any chance of success, a very dangerous rescue mission.",2018-07-04,8.3508,6.915,13676 +3820,84329,Robot & Frank,"Curmudgeonly old Frank lives by himself. His routine involves daily visits to his local library, where he has a twinkle in his eye for the librarian. His grown children are concerned about their father’s well-being and buy him a caretaker robot. Initially resistant to the idea, Frank soon appreciates the benefits of robotic support – like nutritious meals and a clean house – and eventually begins to treat his robot like a true companion. With his robot’s assistance, Frank’s passion for his old, unlawful profession is reignited, for better or worse.",2012-08-24,1.1956,6.915,1113 +3821,10530,Pocahontas,"Pocahontas, daughter of a Native American tribe chief, falls in love with an English soldier as colonists invade 17th century Virginia.",1995-06-14,6.6745,6.9,5848 +3822,1987,Benny's Video,"A 14-year-old video enthusiast obsessed with violent films decides to make one of his own and show it to his parents, with tragic results.",1992-10-20,1.03,6.915,363 +3823,892153,Tom and Jerry Cowboy Up!,"This time, the rivals team up to help a cowgirl and her brother save their homestead from a greedy land-grabber, and they’re going to need some help! Jerry’s three precocious nephews are all ready for action, and Tom is rounding up a posse of prairie dogs. But can a ragtag band of varmints defeat a deceitful desperado determined to deceive a damsel in distress? No matter what happens with Tom and Jerry in the saddle, it’ll be a rootin’ tootin’ good time!",2022-01-24,1.9578,6.9,442 +3824,602223,The Forever Purge,All the rules are broken as a sect of lawless marauders decides that the annual Purge does not stop at daybreak and instead should never end as they chase a group of immigrants who they want to punish because of their harsh historical past.,2021-06-30,5.5332,6.914,2566 +3825,437109,The Villainess,"Honed from childhood into a merciless killing machine by a criminal organization, assassin Sook-hee is recruited with the promise of freedom after ten years of service. However, secrets from her past destroy everything she’s worked for and now she embarks on a roaring rampage of revenge.",2017-06-08,2.9891,6.914,722 +3826,323372,The Corpse of Anna Fritz,"Anna Fritz is a beautiful and famous actress. Suddenly her body is found in a hotel and the news of her death goes around the planet. The young, shy caretaker Pau works at the hospital where they carried the body of Anna Fritz. He and his friends decide to take pictures of the body of Anna Fritz. They decide they could make love to her and nobody would know. They are in front of Anna Fritz ... and can do with it what they want.",2015-03-15,3.5101,6.9,555 +3827,85446,Step Up Revolution,"Emily arrives in Miami with aspirations to become a professional dancer. She sparks with Sean, the leader of a dance crew whose neighborhood is threatened by Emily's father's development plans.",2012-07-26,2.8711,6.914,2070 +3828,16281,Creepshow,"Five tales in the style of classic '50s horror comics, involving a murdered man emerging from the grave, a meteor's ooze that makes everything grow, a snack for a crated creature, a scheming husband, and a malevolent millionaire with an insect phobia.",1982-11-10,2.6089,6.913,1085 +3829,953,Madagascar,Four animal friends get a taste of the wild life when they break out of captivity at the Central Park Zoo and wash ashore on the island of Madagascar.,2005-05-25,11.6962,6.915,11220 +3830,1139566,Through My Window 3: Looking at You,"After the events of the summer, Ares and Raquel they don't see a way forward in their relationship and decide to go separate ways. But when they meet again in the winter in Barcelona, the love and desire they feel for each other is undeniable. Will they be able to find a way to get back together?",2024-02-23,7.5512,6.9,628 +3831,25196,Crazy Heart,"When reporter Jean Craddock interviews Bad Blake—an alcoholic, seen-better-days country music legend—they connect, and the hard-living crooner sees a possible saving grace in a life with Jean and her young son.",2009-12-16,1.4843,6.913,1099 +3832,883,Coffee and Cigarettes,Coffee And Cigarettes is a collection of eleven films from cult director Jim Jarmusch. Each film hosts star studded cast of extremely unique individuals who all share the common activities of conversing while drinking coffee and smoking cigarettes.,2004-03-12,1.5089,6.913,974 +3833,590854,The Hater,A duplicitous young man finds success in the dark world of social media smear tactics — but his virtual vitriol soon has violent real-life consequences.,2020-03-06,1.1787,6.912,563 +3834,157350,Divergent,"In a world divided into factions based on personality types, Tris learns that she's been classified as Divergent and won't fit in. When she discovers a plot to destroy Divergents, Tris and the mysterious Four must find out what makes Divergents dangerous before it's too late.",2014-03-14,7.7662,6.912,13055 +3835,11205,Wheels on Meals,"Cousins Thomas and David, owners of a mobile restaurant, team up with their friend Moby, a bumbling private detective, to save the beautiful Sylvia, a pickpocket.",1984-08-17,3.0542,6.912,402 +3836,10779,The Frighteners,"Once an architect, Frank Bannister now passes himself off as an exorcist of evil spirits. To bolster his facade, he claims his ""special"" gift is the result of a car accident that killed his wife. But what he does not count on is more people dying in the small town where he lives. As he tries to piece together the supernatural mystery of these killings, he falls in love with the wife of one of the victims and deals with a crazy FBI agent.",1996-07-18,2.7254,6.912,1598 +3837,1182047,The Apprentice,"A young Donald Trump, eager to make his name as a hungry scion of a wealthy family in 1970s New York, comes under the spell of Roy Cohn, the cutthroat attorney who would help create the Donald Trump we know today. Cohn sees in Trump the perfect protégé—someone with raw ambition, a hunger for success, and a willingness to do whatever it takes to win.",2024-10-09,2.913,6.908,715 +3838,739993,Metal Lords,"For teenage misfits Hunter and Kevin, the path to glory is clear: Devote themselves to metal. Win Battle of the Bands. And be worshipped like gods.",2022-04-08,1.8311,6.912,695 +3839,551271,Medieval,"The story of fifteenth century Czech icon and warlord, Jan Zizka, who defeated armies of the Teutonic Order and the Holy Roman Empire.",2022-09-08,2.5931,6.911,501 +3840,458342,Private Life,"Richard and Rachel, a couple in the throes of infertility, try to maintain their marriage as they descend deeper and deeper into the insular world of assisted reproduction and domestic adoption.",2018-10-05,1.6505,6.9,388 +3841,426613,The Miseducation of Cameron Post,"Pennsylvania, 1993. After getting caught with another girl, teenager Cameron Post is sent to a conversion therapy center run by the strict Dr. Lydia Marsh and her brother, Reverend Rick, whose treatment consists in repenting for feeling “same sex attraction.” Cameron befriends fellow sinners Jane and Adam, thus creating a new family to deal with the surrounding intolerance.",2018-07-18,1.5473,6.911,987 +3842,68726,Pacific Rim,"Using massive piloted robots to combat the alien threat, earth's survivors take the fight to the invading alien force lurking in the depths of the Pacific Ocean. Nearly defenseless in the face of the relentless enemy, the forces of mankind have no choice but to turn to two unlikely heroes who now stand as earth's final hope against the mounting apocalypse.",2013-07-11,11.4901,6.911,12804 +3843,21588,Cemetery Man,"Cemetery watchman, Francesco Dellamorte, is tasked with dispatching the recently deceased when they rise from their graves.",1994-03-25,2.3143,6.911,542 +3844,13179,Tinker Bell,"Journey into the secret world of Pixie Hollow and hear Tinker Bell speak for the very first time as the astonishing story of Disney's most famous fairy is finally revealed in the all-new motion picture ""Tinker Bell.""",2008-09-11,4.8499,6.911,1493 +3845,718789,Lightyear,Legendary Space Ranger Buzz Lightyear embarks on an intergalactic adventure alongside a group of ambitious recruits and his robot companion Sox.,2022-06-15,5.2421,6.91,3605 +3846,10423,Dragon: The Bruce Lee Story,"This film is a glimpse into the life, love and the unconquerable spirit of the legendary Bruce Lee. From a childhood of rigorous martial arts training, Lee realizes his dream of opening his own kung-fu school in America. Before long, he is discovered by a Hollywood producer and begins a meteoric rise to fame and an all too short reign as one the most charismatic action heroes in cinema history.",1993-05-07,2.8715,6.9,763 +3847,1381,The Fountain,"Spanning over one thousand years, and three parallel stories, The Fountain is a story of love, death, spirituality, and the fragility of our existence in this world.",2006-11-22,2.3593,6.91,2905 +3848,1195506,Novocaine,"When the girl of his dreams is kidnapped, everyman Nate turns his inability to feel pain into an unexpected strength in his fight to get her back.",2025-03-12,13.1436,6.912,1037 +3849,397538,Borg vs McEnroe,"The Swedish Björn Borg and the American John McEnroe, the best tennis players in the world, maintain a legendary duel during the 1980 Wimbledon tournament.",2017-09-08,2.4126,6.909,1167 +3850,56648,The Toy,"When Francois, a journalist, tours a big store for an article, he is chosen by the son of the newspaper's owner, Rambal-Cochet, as his new toy. Needing money and unwilling to quit his job, Francois agrees to this ridiculous assignment. Gradually befriending the spoiled boy, he induces him to play at making a newspaper, unveiling publicly the tyrannical way of life of the father. The powerful emotional climax we experience with the child astonishes both men.",1976-12-08,1.2653,6.9,305 +3851,12187,Heart and Souls,"A fateful night in 1959, four people die when the bus they are riding crashes. They continue as ghosts; their souls become eternally entwined to the life of a child born at the moment of their deaths as his guardians. Baby Thomas grows up to be a businessman who has memories of his playmates, but assumes they are products of his youthful imagination. When the ghosts realize they need Thomas' help to move on to the afterlife, they decide to make an appearance once more.",1993-08-13,2.2417,6.9,396 +3852,11393,The Natural,An unknown middle-aged batter named Roy Hobbs with a mysterious past appears out of nowhere to take a losing 1930s baseball team to the top of the league.,1984-05-11,2.1131,6.908,616 +3853,4836,Layer Cake,"When a seemingly straight-forward drug deal goes awry, XXXX has to break his die-hard rules and turn up the heat, not only to outwit the old regime and come out on top, but to save his own skin...",2004-09-30,3.1052,6.908,2207 +3854,33196,Tidal Wave,"On Haeundae Beach, a guilt-ridden fisherman takes care of a woman whose father accidentally got killed. A scientist reunites with his ex-wife and a daughter who doesn't even remember his face. And a poor rescue worker falls in love with a rich city girl. When they all find out a gigantic tsunami will hit the beach, they realize they only have 10 minutes to escape.",2009-07-22,3.2871,6.9,474 +3855,18971,Rosencrantz & Guildenstern Are Dead,"Two minor characters from the play ""Hamlet"" stumble around unaware of their scripted lives and unable to deviate from them.",1991-02-08,1.1755,6.907,306 +3856,6418,Hotel Chevalier,"In a Paris hotel room, Jack Whitman lies on a bed. His phone rings; it's a woman on her way to see him, a surprise. She arrives and the complications of their relationship emerge in bits and pieces. Will they make love? Is their relationship over? (A prequel to The Darjeeling Limited, 2007.)",2007-10-26,1.2346,6.907,864 +3857,1535,Spy Game,"On the day of his retirement, a veteran CIA agent learns that his former protégé has been arrested in China, is sentenced to die the next morning in Beijing, and that the CIA is considering letting that happen to avoid an international scandal.",2001-11-18,2.4411,6.907,2186 +3858,531876,The Outpost,"A small unit of U.S. soldiers, alone at the remote Combat Outpost Keating, located deep in the valley of three mountains in Afghanistan, battles to defend against an overwhelming force of Taliban fighters in a coordinated attack. The Battle of Kamdesh, as it was known, was the bloodiest American engagement of the Afghan War in 2009 and Bravo Troop 3-61 CAV became one of the most decorated units of the 19-year conflict.",2020-06-24,3.5997,6.906,1098 +3859,400136,Resident Evil: Vendetta,BSAA Chris Redfield enlists the help of government agent Leon S. Kennedy and Professor Rebecca Chambers from Alexander Institute of Biotechnology to stop a death merchant with a vengeance from spreading a deadly virus in New York.,2017-05-27,3.7865,6.906,1024 +3860,110415,Snowpiercer,"In a future where a failed global-warming experiment kills off most life on the planet, a class system evolves aboard the Snowpiercer; a train that travels around the globe via a perpetual-motion engine.",2013-08-01,8.0876,6.906,9929 +3861,38408,Life As We Know It,"After a disastrous first date for caterer Holly and network sports director Messer, all they have in common is a dislike for each other and their love for their goddaughter Sophie. But when they suddenly become all Sophie has in this world, Holly and Messer must set their differences aside. Juggling careers and social calendars, they'll have to find common ground while living under the same roof.",2010-10-02,3.0938,6.906,3187 +3862,17578,The Adventures of Tintin,"Intrepid young reporter, Tintin, and his loyal dog, Snowy, are thrust into a world of high adventure when they discover a ship carrying an explosive secret. As Tintin is drawn into a centuries-old mystery, Ivan Ivanovitch Sakharine suspects him of stealing a priceless treasure. Tintin and Snowy, with the help of salty, cantankerous Captain Haddock and bumbling detectives, Thompson and Thomson, travel half the world, one step ahead of their enemies, as Tintin endeavors to find the Unicorn, a sunken ship that may hold a vast fortune, but also an ancient curse.",2011-10-24,6.0898,6.906,5550 +3863,741074,Once Upon a Snowman,"The previously untold origins of Olaf, the innocent and insightful, summer-loving snowman are revealed as we follow Olaf’s first steps as he comes to life and searches for his identity in the snowy mountains outside Arendelle.",2020-10-23,1.8844,6.905,547 +3864,470229,Summer of 84,"After suspecting that their police officer neighbor is a serial killer, a group of teenage friends spend their summer spying on him and gathering evidence, but as they get closer to discovering the truth, things get dangerous.",2018-08-10,3.1962,6.905,1374 +3865,360784,Hidden,A family takes refuge in a fallout shelter to avoid a dangerous outbreak.,2015-09-15,3.8219,6.905,1074 +3866,226857,Endless Love,A privileged girl and a charismatic boy's instant desire sparks a love affair made only more reckless by parents trying to keep them apart.,2014-02-12,2.6859,6.905,1711 +3867,10323,Clash of the Titans,"To win the right to marry his love, the beautiful princess Andromeda, and fulfil his destiny, half-God-half-mortal Perseus must complete various tasks including taming Pegasus, capturing Medusa's head and battling the feared Kraken.",1981-06-12,3.577,6.9,804 +3868,361292,Suspiria,"A darkness swirls at the center of a world-renowned dance company, one that will engulf the artistic director, an ambitious young dancer, and a grieving psychotherapist. Some will succumb to the nightmare. Others will finally wake up.",2018-10-26,5.6917,6.9,2617 +3869,15163,Amazing Grace,"The true story of William Wilberforce and his courageous quest to end the British slave trade. Along the way, Wilberforce meets intense opposition, but his minister urges him to see the cause through.",2006-09-16,1.4666,6.904,302 +3870,13416,Friday Night Lights,"A small, turbulent town in Texas obsesses over their high school football team to an unhealthy degree. When the star tailback, Boobie Miles, is seriously injured during the first game of the season, all hope is lost, and the town's dormant social problems begin to flare up. It is left to the inspiring abilities of new coach Gary Gaines to instill in the other team members -- and, by proxy, the town itself -- a sense of self-respect and honor.",2004-10-08,2.5762,6.9,591 +3871,13253,Futurama: Bender's Game,"When Leela is insulted by a group of space-rednecks (like regular rednecks, but in space), she enters the Planet Express ship in a demolition derby. Leela emerges victorious, but when she brings the damaged ship home, and the Professor sees the fuel gauge, he's enraged by the hit he's going to take at the Dark Matter pump. Now the crew have to find a way to break Mom's stranglehold on starship fuel, even if they have to wade through a Lord of the Rings-inspired fantasy-land to do it!",2008-11-03,1.6917,6.9,562 +3872,2196,Death at a Funeral,A myriad of outrageous calamities befalls an eccentric English clan with more than a few skeletons in its closets when the family's patriarch dies an unexpected death.,2007-08-17,2.6958,6.904,1809 +3873,1958,8 Women,"Eight women gather to celebrate Christmas in a snowbound cottage, only to find the family patriarch dead with a knife in his back. Trapped in the house, every woman becomes a suspect, each having her own motive and secret.",2002-02-06,1.8681,6.9,1016 +3874,335787,Uncharted,"A young street-smart, Nathan Drake and his wisecracking partner Victor “Sully” Sullivan embark on a dangerous pursuit of “the greatest treasure never found” while also tracking clues that may lead to Nathan’s long-lost brother.",2022-02-10,8.0606,6.903,6364 +3875,6471,The Jerk,"After discovering he's not really black like the rest of his family, likable dimwit Navin Johnson sets off on a hilarious misadventure that takes him from rags to riches and back again. The slaphappy jerk strikes it rich, but life in the fast lane isn't all it's cracked up to be and, in the end, all that really matters to Johnson is his true love.",1979-12-14,2.0107,6.903,843 +3876,2163,Breakdown,"On their cross-country drive, a married couple, Jeff and Amy Taylor, experience car trouble after their SUV breaks down. Stranded in the New Mexico desert, the two catch a break when a passing truck driver offers Amy a ride to a nearby café to call for help. Meanwhile, Jeff is able to fix the car and make his way to the café, but Amy isn't there. He tracks down the trucker -- who tells the police he's never seen Jeff or his wife before. Jeff then begins a desperate, frenzied search for Amy.",1997-05-02,3.6584,6.903,1005 +3877,252822,In Order of Disappearance,"Upstanding community leader Nils has just won an award for ""Citizen of the Year"" when he learns the news that his son has died of a heroin overdose. Suspecting foul play, Nils begins to investigate, and soon finds himself at the center of an escalating underworld gang war between Serbian drug dealers and a sociopathic criminal mastermind known only as “The Count.”",2014-02-21,1.2927,6.901,640 +3878,79108,Starbuck,"David Wozniak is a perpetual adolescent who discovers that, as a sperm donor, he has fathered 533 children. He is advised that more than 100 of his offspring are trying to force the fertility clinic to reveal the true identity of ""Starbuck,"" the pseudonym he used when donating his sperm. To make matters worse, his girlfriend Valérie is pregnant with his child, but doesn't feel that he is mature enough to be a father.",2011-07-27,1.7593,6.901,450 +3879,70667,Kon-Tiki,"The true story about legendary explorer Thor Heyerdahl and his epic crossing of the Pacific on a balsa wood raft in 1947, in an effort to prove it was possible for South Americans to settle in Polynesia in pre-Columbian times.",2012-08-24,1.8396,6.901,781 +3880,51162,Winnie the Pooh,"During an ordinary day in Hundred Acre Wood, Winnie the Pooh sets out to find some honey. Misinterpreting a note from Christopher Robin, Owl convinces Pooh, Tigger, Rabbit, Piglet, Kanga, Roo, and Eeyore that their young friend has been captured by a creature named ""Backson"" and they set out to rescue him.",2011-04-06,2.5189,6.901,901 +3881,22599,Star,"The Driver now carries an arrogant rock star who is visiting a major city. Played by Madonna, this title character wants to get away from her bodyguards in the Driver's BMW. He soon gets tired of her and decides to have a bit of fun.",2001-06-01,0.5699,6.901,307 +3882,2322,Sneakers,"When shadowy U.S. intelligence agents blackmail a reformed computer hacker and his eccentric team of security experts into stealing a code-breaking 'black box' from a Soviet-funded genius, they uncover a bigger conspiracy. Now, he and his 'sneakers' must save themselves and the world economy by retrieving the box from their blackmailers.",1992-09-09,5.6688,6.901,968 +3883,10217,The Sweet Hereafter,"A small mountain community in Canada is devastated when a school bus accident leaves more than a dozen of its children dead. A big-city lawyer arrives to help the survivors' and victims' families prepare a class-action suit, but his efforts only seem to push the townspeople further apart. At the same time, one teenage survivor of the accident has to reckon with the loss of innocence brought about by a different kind of damage.",1997-09-25,2.1235,6.9,406 +3884,9263,Now and Then,"Waxing nostalgic about the bittersweet passage from childhood to puberty, four childhood girlfriends — Teeny, Chrissy, Samantha and Roberta — recall the magical summer of 1970. During their walk down memory lane, they reconcile experiences with boys, secrets, bullies and more.",1995-10-20,1.9853,6.9,454 +3885,717980,Sharper,"A small, wealthy family in New York City gets progressively torn apart by secrets, lies, and the theft that orchestrates all of it.",2023-02-10,3.8384,6.899,602 +3886,45284,Outrage,"When a tough yakuza gangster is betrayed by his bosses, it means all out war. Bodies pile up as he takes out everyone in his way to the top in a brutal quest for revenge.",2010-05-17,1.5217,6.899,435 +3887,25195,Leap Year,"When yet another anniversary passes without a marriage proposal from her boyfriend, Anna decides to take action. Aware of a Celtic tradition that allows women to pop the question on Feb. 29, she plans to follow her lover to Dublin and ask him to marry her. Fate has other plans, however, and Anna winds up on the other side of the Emerald Isle with handsome, but surly, Declan -- an Irishman who may just lead Anna down the road to true love.",2010-01-08,4.546,6.9,2078 +3888,249,The War of the Roses,"Barbara and Oliver Rose live happily as a married couple. When Barbara starts to wonder what life would be like without Oliver and likes what she sees, the two begin a campaign to force each other to leave their house, with their divorce lawyer D'Amato caught in the middle.",1989-12-08,2.6524,6.899,1161 +3889,423899,Victoria & Abdul,Queen Victoria strikes up an unlikely friendship with a young Indian clerk named Abdul Karim.,2017-09-13,1.8974,6.9,1170 +3890,245473,Cloud 9,"Set high atop snow-capped mountains in the adrenaline-fueled world of competitive snowboarding, the Disney Channel Original Movie “Cloud 9″ tells the inspiring story of two snowboarders who must overcome self-doubt to learn that achieving their dreams is possible.",2014-01-17,2.0599,6.9,529 +3891,228108,The Road Within,A young man with Tourette's Syndrome embarks on a road trip with his recently-deceased mother's ashes.,2014-10-24,0.9325,6.9,387 +3892,131634,The Hunger Games: Mockingjay - Part 2,"With the nation of Panem in a full scale war, Katniss confronts President Snow in the final showdown. Teamed with a group of her closest friends – including Gale, Finnick, and Peeta – Katniss goes off on a mission with the unit from District 13 as they risk their lives to stage an assassination attempt on President Snow who has become increasingly obsessed with destroying her. The mortal traps, enemies, and moral choices that await Katniss will challenge her more than any arena she faced in The Hunger Games.",2015-11-18,7.462,6.898,12864 +3893,39104,Dragon Ball Z: Super Android 13!,"Dr. Gero's Androids #13, #14, and #15 are awakened by the laboratory computers and immediately head to the mall where Goku is shopping. After Goku, Trunks, and Vegeta defeat #14 and #15, #13 absorbs their inner computers and becomes a super being greater than the original three separately were. Now it is up to Goku to stop him.",1992-07-11,5.2838,6.898,581 +3894,11561,Sleeper,"Miles Monroe, a clarinet-playing health food store proprietor, is revived out of cryostasis 200 years into a future world in order to help rebels fight an oppressive government regime.",1973-12-17,0.9479,6.898,800 +3895,10644,The Unbearable Lightness of Being,"Successful surgeon Tomas leaves Prague for an operation, meets a young photographer named Tereza, and brings her back with him. Tereza is surprised to learn that Tomas is already having an affair with the bohemian Sabina, but when the Soviet invasion occurs, all three flee to Switzerland. Sabina begins an affair, Tom continues womanizing, and Tereza, disgusted, returns to Czechoslovakia. Realizing his mistake, Tomas decides to chase after her.",1988-02-05,2.7589,6.9,474 +3896,9344,Kids,"A day in the life of a group of teens as they travel around New York City skating, drinking, smoking and deflowering virgins.",1995-07-28,2.6355,6.9,1196 +3897,516729,Paddington in Peru,"Paddington travels to Peru to visit his beloved Aunt Lucy, who now resides at the Home for Retired Bears. With the Brown Family in tow, a thrilling adventure ensues when a mystery plunges them into an unexpected journey through the Amazon rainforest and up to the mountain peaks of Peru.",2024-11-08,9.5528,6.897,458 +3898,423646,In the Fade,"Katja's life collapses after the deaths of her husband and son in a bomb attack. After a time of mourning and injustice, Katja seeks revenge.",2017-11-23,1.1923,6.897,838 +3899,210479,Locke,"Ivan Locke has worked hard to craft a good life for himself. Tonight, that life will collapse around him. On the eve of the biggest challenge of his career, Ivan receives a phone call that sets in motion a series of events that will unravel his family, job, and soul.",2014-04-10,3.5267,6.897,2768 +3900,210479,Locke,"Ivan Locke has worked hard to craft a good life for himself. Tonight, that life will collapse around him. On the eve of the biggest challenge of his career, Ivan receives a phone call that sets in motion a series of events that will unravel his family, job, and soul.",2014-04-10,3.5267,6.897,2768 +3901,1005331,Carry-On,An airport security officer races to outsmart a mysterious traveler forcing him to let a dangerous item slip onto a Christmas Eve flight.,2024-12-05,11.453,6.896,2347 +3902,676547,Prey for the Devil,"In response to a global rise in demonic possessions, the Catholic Church reopens exorcism schools to train priests in the Rite of Exorcism. On this spiritual battlefield, an unlikely warrior rises: a young nun, Sister Ann. Thrust onto the spiritual frontline with fellow student Father Dante, Sister Ann finds herself in a battle for the soul of a young girl and soon realizes the Devil has her right where he wants her.",2022-10-23,2.7732,6.896,960 +3903,556694,Three Thousand Years of Longing,"A solitary scholar discovers an ancient bottle while on a trip to Istanbul and unleashes a djinn who offers her three wishes. Filled with reluctance, she is unable to come up with one, so the djinn tries to inspire her with his stories.",2022-08-24,3.53,6.896,1500 +3904,495764,Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn),"Harley Quinn joins forces with a singer, an assassin and a police detective to help a young girl who had a hit placed on her after she stole a rare diamond from a crime lord.",2020-02-05,7.007,6.896,10480 +3905,337170,American Made,"The true story of pilot Barry Seal, who transported contraband for the CIA and the Medellin cartel in the 1980s.",2017-08-18,4.9594,6.896,4696 +3906,310593,Youth,"Two lifelong friends bond whilst vacationing in a luxury Swiss Alps lodge as they ponder retirement. While Fred has no plans to resume his musical career despite the urging of his loving daughter Lena, Mick is intent on finishing the screenplay for what may be his last important film for his muse Brenda. And where will inspiration lead their younger friend Jimmy, an actor grasping to make sense of his next performance?",2015-05-20,2.7326,6.896,2114 +3907,2023,Hidalgo,"Set in 1890, this is the story of a Pony Express courier who travels to Arabia to compete with his horse, Hidalgo, in a dangerous race for a massive contest prize, in an adventure that sends the pair around the world...",2004-02-04,3.1756,6.896,1265 +3908,1371,Rocky III,"After an intense fight with Clubber Lang and the death of his trainer Mickey, Rocky Balboa is left devastated. Former rival Apollo Creed steps in to help Balboa get back his fighting spirit.",1982-05-28,5.5847,6.896,4278 +3909,13939,Death Wish,"After his wife is murdered by street punks, a pacifistic New York City architect becomes a one-man vigilante squad, prowling the streets for would-be muggers after dark.",1974-07-24,2.3274,6.895,892 +3910,4193,Evil Under the Sun,An opulent beach resort provides a scenic background to this amusing whodunit as Poirot attempts to uncover the nefarious evildoer behind the strangling of a notorious stage star.,1982-03-05,3.0794,6.895,464 +3911,2295,Clerks II,"A calamity at Dante and Randall's shops sends them looking for new horizons - but they ultimately settle at Mooby's, a fictional Disney-McDonald's-style fast-food empire.",2006-07-21,1.5227,6.9,1398 +3912,113947,The Sessions,"Though a childhood bout with polio left him dependent on an iron lung, Mark O'Brien maintains a career as a journalist and poet. A writing assignment dealing with sex and the disabled piques Mark's curiosity, and he decides to investigate the possibility of experiencing sex himself. When his overtures toward a caregiver scare her away, he books an appointment with sex surrogate Cheryl Cohen-Greene to lose his virginity.",2012-05-02,2.2587,6.894,573 +3913,59967,Looper,"In the year 2044, time travel has not yet been invented but in 30 years it will have been. When the mob wants to get rid of someone, they will send their target into the past where a looper, a hired gun, like Joe is waiting to mop up. Joe is getting rich and life is good until the day the mob decides to close the loop, sending back Joe's future self for assassination.",2012-09-26,5.9527,6.894,10438 +3914,21506,Noroi: The Curse,"A documentary filmmaker explores seemingly unrelated paranormal incidents connected by the legend of an ancient demon called the ""kagutaba.""",2005-08-20,2.6034,6.894,369 +3915,710,GoldenEye,"When a powerful satellite system falls into the hands of Alec Trevelyan, AKA Agent 006, a former ally-turned-enemy, only James Bond can save the world from a dangerous space weapon that -- in one short pulse -- could destroy the earth! As Bond squares off against his former compatriot, he also battles Xenia Onatopp, an assassin who uses pleasure as her ultimate weapon.",1995-11-16,7.9109,6.894,4063 +3916,602,Independence Day,"Strange phenomena surface around the globe. The skies ignite. Terror races through the world's major cities. As these extraordinary events unfold, it becomes increasingly clear that a force of incredible magnitude has arrived. Its mission: total annihilation over the Fourth of July weekend. The last hope to stop the destruction is an unlikely group of people united by fate and unimaginable circumstances.",1996-06-25,8.3422,6.894,9908 +3917,537055,Wonder Woman: Bloodlines,"Witness the legendary origin of renowned Justice League member Wonder Woman as she fights for good with her sword and magic lasso. Equally strong in body, heart and will, she makes it her mission to help a troubled young girl enlisted by a deadly organization known as Villainy, Inc., whose criminal members have their sights set on invading Themyscira, Wonder Woman’s paradise home. The battle will be epic, because if there's one thing an Amazon knows, it’s war!",2019-10-04,2.7366,6.893,492 +3918,390043,The Hitman's Bodyguard,"The world’s top bodyguard gets a new client, a hitman who must testify at the International Court of Justice. They must put their differences aside and work together to make it to the trial on time.",2017-08-16,5.7713,6.893,6389 +3919,77459,A Monster in Paris,"Paris, 1910. Emile, a shy movie projectionist, and Raoul, a colourful inventor, find themselves embarked on the hunt for a monster terrorizing citizens. They join forces with Lucille, the big-hearted star of the Bird of Paradise cabaret, an eccentric scientist and his irascible monkey to save the monster, who turns out to be an oversized but harmless flea, from the city's ruthlessly ambitious police chief.",2011-10-12,3.5014,6.9,1294 +3920,33583,The Decameron,"A young Sicilian is swindled twice, but ends up rich; a man poses as a deaf-mute in a convent of curious nuns; a woman must hide her lover when her husband comes home early; a scoundrel fools a priest on his deathbed; three brothers take revenge on their sister's lover; a young girl sleeps on the roof to meet her boyfriend at night; a group of painters wait for inspiration; a crafty priest attempts to seduce his friend's wife; and two friends make a pact to find out what happens after death.",1971-08-25,2.692,6.9,337 +3921,13931,Mike's New Car,"Mike discovers that being the top-ranking laugh collector at Monsters, Inc. has its benefits – in particular, earning enough money to buy a six-wheel-drive car that's loaded with gadgets. That new-car smell doesn't last long enough, however, as Sulley jump-starts an ill-fated road test that teaches Mike the true meaning of buyer's remorse.",2002-05-24,1.5004,6.893,718 +3922,10560,Center Stage,A group of 12 teenagers from various backgrounds enroll at the American Ballet Academy in New York to make it as ballet dancers and each one deals with the problems and stress of training and getting ahead in the world of dance.,2000-05-12,1.1888,6.9,341 +3923,9871,Ginger Snaps,"The story of two outcast sisters, Ginger and Brigitte, in the mindless suburban town of Bailey Downs. On the night of Ginger's first period, she is savagely attacked by a wild creature. Ginger's wounds miraculously heal but something is not quite right. Now Brigitte must save her sister and save herself.",2001-03-13,2.8878,6.9,915 +3924,1680,King Kong vs. Godzilla,"The advertising director of Pacific Pharmaceuticals, frustrated with the low ratings of their sponsored TV program, seeks a more sensationalist approach. He orders his staff to Faro Island to capture King Kong for exploitation. As Godzilla re-emerges, a media frenzy generates with Pacific looking to capitalize off of the ultimate battle.",1962-08-11,2.4259,6.9,321 +3925,547,The Horse Whisperer,The mother of a severely traumatized daughter enlists the aid of a unique horse trainer to help the girl's equally injured horse.,1998-02-01,2.3377,6.9,1134 +3926,560016,Monkey Man,"Kid is an anonymous young man who ekes out a meager living in an underground fight club where, night after night, wearing a gorilla mask, he is beaten bloody by more popular fighters for cash. After years of suppressed rage, Kid discovers a way to infiltrate the enclave of the city’s sinister elite. As his childhood trauma boils over, his mysteriously scarred hands unleash an explosive campaign of retribution to settle the score with the men who took everything from him.",2024-04-03,4.4876,6.892,1178 +3927,512200,Jumanji: The Next Level,"As the gang return to Jumanji to rescue one of their own, they discover that nothing is as they expect. The players will have to brave parts unknown and unexplored in order to escape the world’s most dangerous game.",2019-12-04,11.1751,6.892,8971 +3928,399402,Hunter Killer,"Captain Glass of the USS Arkansas discovers that a coup d'état is taking place in Russia, so he and his crew join an elite group working on the ground to prevent a war.",2018-10-19,6.5593,6.9,2251 +3929,308084,Tangerine,"It's Christmas Eve in Tinseltown and Sin-Dee is back on the block. Upon hearing that her pimp boyfriend hasn't been faithful during the 28 days she was locked up, the working girl and her best friend, Alexandra, embark on a mission to get to the bottom of the scandalous rumor. Their rip-roaring odyssey leads them through various subcultures of Los Angeles, including an Armenian family dealing with their own repercussions of infidelity.",2015-07-10,2.4139,6.9,744 +3930,31900,Gainsbourg: A Heroic Life,"A glimpse at the life of French singer Serge Gainsbourg, from growing up in 1940s Nazi-occupied Paris through his successful song-writing years in the 1960s to his death in 1991 at the age of 62.",2010-01-20,1.8873,6.9,344 +3931,17979,A Christmas Carol,"Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence, what opportunities he wasted in his youth, his current cruelties, and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness, and must decide what his own future will hold: death or redemption.",2009-11-04,4.5893,6.892,4708 +3932,642208,Supernova,"Sam and Tusker, partners of 20 years, are traveling across England in their old RV visiting friends, family and places from their past. Since Tusker was diagnosed with early-onset dementia two years ago, their time together is the most important thing they have. As the trip progresses, however, their ideas for the future clash, secrets come out, and their love for each other is tested as never before. Ultimately, they must confront the question of what it means to love one another in the face of Tusker’s illness.",2020-11-20,1.4557,6.891,330 +3933,24100,The Little Vampire,"Based on the popular books, the story tells of Tony who wants a friend to add some adventure to his life. What he gets is Rudolph, a vampire kid with a good appetite. The two end up inseparable, but their fun is cut short when all the hopes of the vampire race could be gone forever in single night. With Tony's access to the daytime world, he helps them to find what they've always wanted.",2000-10-27,2.576,6.891,443 +3934,11477,Common Wealth,"Julia, a real estate agent, finds an enormous amount of money hidden in a dead man's apartment, a stroke of luck that will force her to face the wrath of the very peculiar inhabitants of the community, who will stop at nothing to get their hands on the money.",2000-09-29,1.0173,6.891,322 +3935,7305,Alive,"The amazing true story of a Uruguayan rugby team's plane that crashed in the middle of the Andes mountains, and their immense will to survive and pull through alive, forced to do anything and everything they could to stay alive on meager rations and through the freezing cold.",1993-01-15,3.6267,6.891,1503 +3936,419743,Disobedience,"New York photographer Ronit flies to London after learning about the death of her estranged father. Ronit is returning to the same Orthodox Jewish community that shunned her decades earlier for her childhood attraction to Esti, a female friend. Their fortuitous and happy reunion soon reignites their burning passion as the two women explore the boundaries of faith and sexuality.",2018-04-24,7.192,6.89,1238 +3937,322125,A Perfect Man,"A struggling writer finds a shortcut to fame, but a blackmailer threatens to ruin his perfect life.",2015-03-18,0.9857,6.9,679 +3938,35854,Flash Point,"Detective Sergeant Ma Jun, known for dispensing his own brand of justice during arrests, teams up with an undercover cop, Wilson, to try and bring down three merciless Vietnamese brothers running a smuggling ring in the months before mainland China's takeover of Hong Kong. Jun pursues the gang tirelessly, sometimes ignoring police protocols. A showdown is inevitable!",2007-07-26,2.0749,6.89,341 +3939,16270,Career Opportunities,"Josie, the daughter of the town's wealthiest businessman, faces problems at home and wishes to leave town but is disoriented. Her decision is finalized after she falls asleep in a Target dressing room. She awakens to find herself locked in the store overnight with the janitor, Jim, the town ""no hoper"" and liar.",1991-03-29,3.3478,6.9,702 +3940,12763,Take the Lead,"A former professional dancer volunteers to teach dance in the New York public school system and, while his background first clashes with his students' tastes, together they create a completely new style of dance. Based on the story of ballroom dancer, Pierre Dulane.",2006-03-17,1.5937,6.89,710 +3941,232672,Blended,"Recently divorced mom Lauren and widowed dad Jim let their friends push them into a blind date, which goes disastrously wrong. Unsurprisingly, neither wants to see the other ever again. However, fate intervenes when both Jim and Lauren, unbeknownst to each other, purchase one-half of the same vacation package at a South African resort for families, during spring break. They and their children are forced to share the same romantic suite and participate in a slew of family activities together.",2014-05-21,10.8602,6.889,3649 +3942,177888,Teen Beach Movie,"Life's a beach for surfers Brady and McKenzie – until a rogue wave magically transports them inside the classic '60s beach party flick, ""Wet Side Story,"" where a full-blown rivalry between bikers and surfers threatens to erupt. There, amidst a sea of surfing, singing and dancing, Brady and Mack accidentally change the storyline, and the film’s dreamy hero and heroine fall for them instead of for each other!",2013-08-07,2.172,6.9,929 +3943,500860,The Mustang,"While participating in a rehabilitation program training wild mustangs, a convict at first struggles to connect with the horses and his fellow inmates, but he learns to confront his violent past as he soothes an especially feisty horse.",2019-03-15,1.8932,6.888,398 +3944,354859,The Promise,"Set during the last days of the Ottoman Empire, a love triangle develops between Mikael, a brilliant medical student, the beautiful and sophisticated artist Ana, and Chris, a renowned American journalist based in Paris.",2016-12-02,1.9298,6.888,477 +3945,12476,The Hidden,"When average, law-abiding citizens suddenly turn to a life of hedonistic behavior and violent crime, Detective Tom Beck is tasked with helping young FBI agent Lloyd Gallagher determine the cause.",1987-10-30,1.8987,6.9,443 +3946,11148,XXY,"Alex, an intersexed 15-year-old, is living as a girl, but she and her family begin to wonder whether she's emotionally a boy when another teenager's sexual advances bring the issue to a head. As Alex faces a final decision regarding her gender, she meets both hostility and compassion.",2007-06-14,1.3371,6.888,303 +3947,9300,Orlando,"England, 1600. Queen Elizabeth I promises Orlando, a young nobleman obsessed with poetry, that she will grant him land and fortune if he agrees to satisfy a very particular request.",1992-12-11,1.5995,6.9,345 +3948,2140,Kiss of the Dragon,"Liu Jian, an elite Chinese police officer, comes to Paris to arrest a Chinese drug lord. When Jian is betrayed by a French officer and framed for murder, he must go into hiding and find new allies.",2001-07-06,3.5302,6.888,1251 +3949,846,The X-Files,"Mulder and Scully, now taken off the FBI's X Files cases, must find a way to fight the shadowy elements of the government to find out the truth about a conspiracy that might mean the alien colonization of Earth.",1998-06-19,3.0324,6.888,1682 +3950,254,King Kong,"In 1933 New York, an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island, where they encounter Kong, a giant ape who is immediately smitten with the leading lady.",2005-12-12,8.7527,6.888,8125 +3951,777245,Women Talking,A group of women in an isolated religious colony struggle to reconcile their faith with a series of sexual assaults committed by the colony's men.,2022-12-23,2.5731,6.9,635 +3952,454652,Colette,"After marrying a successful Parisian writer known commonly as Willy, Sidonie-Gabrielle Colette is transplanted from her childhood home in rural France to the intellectual and artistic splendor of Paris. Soon after, Willy convinces Colette to ghostwrite for him. She pens a semi-autobiographical novel about a witty and brazen country girl named Claudine, sparking a bestseller and a cultural sensation. After its success, Colette and Willy become the talk of Paris and their adventures inspire additional Claudine novels.",2018-09-21,1.6017,6.887,917 +3953,449992,The Night Comes for Us,"After sparing a girl's life during a massacre, an elite Triad assassin is targeted by an onslaught of murderous gangsters.",2018-10-05,2.5537,6.887,735 +3954,425134,How to Be a Latin Lover,An aging Latin lover gets dumped by his sugar mama and must fend for himself in a harsh world.,2017-03-06,2.2923,6.9,635 +3955,291984,The Death & Life of John F. Donovan,"A decade after the death of an American TV star, a young actor reminisces about the written correspondence he once shared with the former, as well as the impact those letters had on both their lives.",2019-03-13,1.5231,6.887,702 +3956,221902,"Two Days, One Night",Sandra is a young woman who has only one weekend to convince her colleagues they must give up their bonuses in order for her to keep her job — not an easy task in this economy.,2014-05-21,1.6433,6.888,962 +3957,83542,Cloud Atlas,"A set of six nested stories spanning time between the 19th century and a distant post-apocalyptic future. Cloud Atlas explores how the actions and consequences of individual lives impact one another throughout the past, the present and the future. Action, mystery and romance weave through the story as one soul is shaped from a killer into a hero and a single act of kindness ripples across centuries to inspire a revolution in the distant future. Based on the award winning novel by David Mitchell. Directed by Tom Tykwer and the Wachowskis.",2012-10-26,5.7075,6.887,7233 +3958,57214,Project X,"Three high school seniors throw a party to make a name for themselves. As the night progresses, things spiral out of control as word of the party spreads.",2012-03-01,6.8074,6.887,6535 +3959,18254,Reds,"An account of the revolutionary years of the legendary American journalist John Reed, who shared his adventurous professional life with his radical commitment to the socialist revolution in Russia, his dream of spreading its principles among the members of the American working class, and his troubled romantic relationship with the writer Louise Bryant.",1981-12-25,2.185,6.884,346 +3960,11156,Coco Before Chanel,"Several years after leaving the orphanage, to which her father never returned for her, Gabrielle Chanel finds herself working in a provincial bar. She's both a seamstress for the performers and a singer, earning the nickname Coco from the song she sings nightly with her sister. A liaison with Baron Balsan gives her an entree into French society and a chance to develop her gift for designing.",2009-04-22,2.0324,6.887,984 +3961,9359,Maverick,"Bret Maverick is a gambler who would rather con someone than fight them, and needs an additional $3k in order to enter a winner-takes-all poker game beginning in a few days. He joins forces with a woman with a marvelous Southern accent, and the two try and enter the game.",1994-05-20,2.7456,6.887,1657 +3962,932086,Horizon: An American Saga - Chapter 1,"In 1859, families discover the lure of the Old West as they settle in territories from Wyoming to Kansas. Meanwhile, a gruff cowboy soon finds himself on the run with a prostitute and a young boy after killing a fellow gunman.",2024-06-26,2.9547,6.886,544 +3963,31997,Saboteur,Aircraft factory worker Barry Kane flees across the United States after he is wrongly accused of starting the fire that killed his best friend.,1942-04-24,2.144,6.886,515 +3964,17360,Escape to Victory,A group of POWs in a German prison camp during World War II play the German National Soccer Team in this powerful film depicting the role of prisoners during wartime.,1981-06-17,2.6754,6.886,947 +3965,14900,The Great Muppet Caper,"Kermit and Fozzie are newspaper reporters sent to London to interview Lady Holiday, a wealthy fashion designer whose priceless diamond necklace is stolen. Kermit meets and falls in love with her secretary, Miss Piggy. The jewel thieves strike again, and this time frame Miss Piggy. It's up to Kermit and Muppets to bring the real culprits to justice.",1981-06-26,1.1983,6.886,320 +3966,9567,Tears of the Sun,"Navy SEAL Lieutenant A.K. Waters and his elite squadron of tactical specialists are forced to choose between their duty and their humanity, between following orders by ignoring the conflict that surrounds them, or finding the courage to follow their conscience and protect a group of innocent refugees. When the democratic government of Nigeria collapses and the country is taken over by a ruthless military dictator, Waters, a fiercely loyal and hardened veteran is dispatched on a routine mission to retrieve a Doctors Without Borders physician.",2003-03-07,6.0876,6.885,2456 +3967,3472,Dirty Pretty Things,An undocumented immigrant finds a human heart in one of the toilets of the west London hotel where he works with other undocumented immigrants.,2002-09-05,1.2274,6.886,460 +3968,342672,4th Man Out,"After a night of drinking, Adam Hutcherson stumbles out of the closet to his three straight buddies. A disruption to their dynamic which they now must try and overcome through alcohol, Tinder dates and forgiveness.",2015-05-26,1.2578,6.885,337 +3969,296524,Deepwater Horizon,"A story set on the offshore drilling rig Deepwater Horizon, which exploded during April 2010 and created the worst oil spill in U.S. history.",2016-09-28,4.7144,6.9,4665 +3970,1808,Velvet Goldmine,"Almost a decade since larger-than-life glam-rock enigma Brian Slade disappeared from public eye, an investigative journalist is on assignment to uncover the truth behind his former idol.",1998-08-28,1.8046,6.885,517 +3971,14926,Uptown Girls,"Molly Gunn, the freewheeling daughter of a deceased rock legend, is forced to get a job when her manager steals her money. As nanny for precocious Ray, the oft ignored daughter of a music executive she learns what it means to be an adult while teaching Ray how to be a child.",2003-08-15,4.656,6.887,969 +3972,9692,The Woodsman,"After twelve years in prison, Walter returns home. His family has abandoned him, save for his brother-in-law. Few know he's a sex offender and pedophile. Walter finds an apartment and is regularly visited by his parole officer. He gets a job at a lumber mill and starts seeing a coworker. Then his new world begins to unravel; as his past becomes known, he strikes up a high-risk friendship with a young girl and realizes that a man loitering near a schoolyard is a child molester prowling for his next victim.",2004-12-24,1.3377,6.884,497 +3973,587301,School Life,"In one of the poorest areas of Paris, a school counselor devotes herself to working with disadvantaged students, while facing challenges of her own.",2019-08-28,1.0615,6.9,789 +3974,307103,SK1,"The hunt, capture and trial of Guy Georges, one of France's most notorious serial killers.",2015-01-07,0.9297,6.9,320 +3975,133121,Resident Evil: Damnation,"U.S. federal agent Leon S. Kennedy sneaks into the ""East Slavic Republic"" to verify rumors that Bio-Organic Weapons (BOWs) are being used in the country's civil war, which the U.S. and Russia are making preparations to jointly intervene in. Right after his infiltration, the U.S. government orders him to leave immediately. Determined to uncover the truth, Leon ignores the order and enters the battlefield to end the chain of tragedies caused by the BOWs.",2012-09-25,3.2816,6.883,931 +3976,10934,Under the Tuscan Sun,"After a rough divorce, Frances, a 35-year-old professor and writer from San Francisco takes a tour of Tuscany at the urgings of her friends. On a whim she buys Bramasole, a run down villa in the Tuscan countryside and begins to piece her life together starting with the villa and finds that life sometimes has unexpected ways of giving her everything she wanted.",2003-09-20,2.7087,6.883,904 +3977,8953,Steamboy,"After receiving a package from his grandfather, Ray, a young inventor who lives in England during the mid-19th century, finds himself caught in the middle of a deadly conflict related to a revolutionary advance in steam power.",2004-07-17,2.5135,6.883,453 +3978,8882,Gomorrah,"An inside look at Italy's modern-day crime families, the Camorra in Naples and Caserta. Based on a book by Roberto Saviano. Power, money and blood: these are the ""values"" that the residents of the Province of Naples and Caserta have to face every day. They hardly ever have a choice and are forced to obey the rules of the Camorra. Only a lucky few can even think of leading a normal life.",2008-05-16,1.8535,6.883,1239 +3979,1951,Manderlay,"In 1933, after leaving Dogville, Grace Margaret Mulligan sees a slave being punished at a cotton farm called Manderlay. Officially, slavery is illegal and Grace stands up against the farmers. She stays with some gangsters in Manderlay and tries to influence the situation. But when harvest time comes, Grace sees the social and economic reality of Manderlay.",2005-06-03,1.6943,6.883,362 +3980,820525,After Everything,"Besieged by writer’s block and the crushing breakup with Tessa, Hardin travels to Portugal in search of a woman he wronged in the past – and to find himself. Hoping to win back Tessa, he realizes he needs to change his ways before he can make the ultimate commitment.",2023-09-13,6.7674,6.882,933 +3981,727745,The Kissing Booth 3,"It’s the summer before Elle heads to college, and she has a secret decision to make. Elle has been accepted into Harvard, where boyfriend Noah is matriculating, and also Berkeley, where her BFF Lee is headed and has to decide if she should stay or not.",2021-08-11,3.5789,6.883,1956 +3982,192136,Mandela: Long Walk to Freedom,A chronicle of Nelson Mandela's life journey from his childhood in a rural village through to his inauguration as the first democratically elected president of South Africa.,2013-11-28,1.3903,6.882,549 +3983,10083,No Way Out,"Navy Lt. Tom Farrell meets a young woman, Susan Atwell , and they share a passionate fling. Farrell then finds out that his superior, Defense Secretary David Brice, is also romantically involved with Atwell. When the young woman turns up dead, Farrell is put in charge of the murder investigation. He begins to uncover shocking clues about the case, but when details of his encounter with Susan surface, he becomes a suspect as well.",1987-08-14,4.3161,6.9,743 +3984,1770,Michael Collins,"Michael Collins plays a crucial role in the establishment of the Irish Free State in the 1920s, but becomes vilified by those hoping to create a completely independent Irish republic.",1996-10-25,1.8393,6.882,488 +3985,833425,No Exit,"Stranded at a rest stop in the mountains during a blizzard, a recovering addict discovers a kidnapped child hidden in a car belonging to one of the people inside the building which sets her on a terrifying struggle to identify who among them is the kidnapper.",2022-02-24,3.722,6.884,1210 +3986,805327,Look Both Ways,"On the night of her college graduation, Natalie's life splits into parallel realities after she takes a pregnancy test. What will life and love bring?",2022-08-16,1.7886,6.874,685 +3987,64688,21 Jump Street,"When cops Schmidt and Jenko join the secret Jump Street unit, they use their youthful appearances to go undercover as high school students. They trade in their guns and badges for backpacks, and set out to shut down a dangerous drug ring. But, as time goes on, Schmidt and Jenko discover that high school is nothing like it was just a few years earlier -- and, what's more, they must again confront the teenage terror and anxiety they thought they had left behind.",2012-03-14,6.6137,6.881,10560 +3988,9591,That Thing You Do!,"A Pennsylvania band scores a hit in 1964 and rides the star-making machinery as long as it can, with lots of help from its manager.",1996-10-04,1.7861,6.9,867 +3989,746131,"Paris, 13th District","Émilie meets Camille who is attracted to Nora, who crosses paths with Amber. Three girls and a boy – They're friends, sometimes lovers and often both.",2021-11-03,0.9764,6.9,351 +3990,539651,Don't Let Go,"A detective suffering from a personal loss receives a call from his recently deceased niece. Being able to communicate across time, the two work together to try and stop the crime before it occurs.",2019-08-30,2.7675,6.88,418 +3991,522098,Babyteeth,A terminally ill teen upsets her parents when she falls in love with a small-time drug dealer.,2020-06-15,1.1056,6.88,366 +3992,10443,Fearless,"After a terrible air disaster, survivor Max Klein emerges a changed person. Unable to connect to his former life or to wife Laura, he feels godlike and invulnerable. When psychologist Bill Perlman is unable to help Max, he has Max meet another survivor, Carla Rodrigo, who is wracked with grief and guilt since her baby died in the crash which she and Max survived.",1993-10-15,1.8041,6.88,321 +3993,9602,Coming to America,"An African prince decides it’s time for him to find a princess... and his mission leads him and his most loyal friend to Queens, New York. In disguise as an impoverished immigrant, the pampered prince quickly finds himself a new job, new friends, new digs, new enemies and lots of trouble.",1988-06-29,5.4624,6.88,4510 +3994,1102776,AKA,A steely special ops agent finds his morality put to the test when he infiltrates a crime syndicate and unexpectedly bonds with the boss' young son.,2023-04-28,2.8327,6.879,656 +3995,696506,Mickey 17,"Unlikely hero Mickey Barnes finds himself in the extraordinary circumstance of working for an employer who demands the ultimate commitment to the job… to die, for a living.",2025-02-28,14.13,6.876,2511 +3996,27233,Kids Return,"Shinji and Masaru spend most of their school days harassing fellow classmates and playing pranks. They drop out and Shinji becomes a small-time boxer, while Masaru joins up with a local yakuza gang. However, the world is a tough place.",1996-07-27,1.7297,6.879,323 +3997,22947,Up in the Air,"Corporate downsizing expert Ryan Bingham spends his life in planes, airports, and hotels, but just as he’s about to reach a milestone of ten million frequent flyer miles, he meets a woman who causes him to rethink his transient life.",2009-12-04,3.6326,6.879,3762 +3998,22373,Saturn in Opposition,"This film focuses on contemporary 30- and 40-somethings trying to make sense of their lives in an age in which the old certainties have disappeared. Lorenzo and Davide make their lives together within a circle that includes Antonio and Angelica, married with children; Nerval and her policeman husband.",2007-02-23,1.0048,6.879,389 +3999,14367,Adventures in Babysitting,"When plans with her boyfriend fall through, high school senior Chris Parker ends up babysitting the Anderson kids, Brad and Sara. What should be a quiet night in, however, turns into a series of ridiculous exploits, starting when they leave the house to pick up Chris' friend Brenda. Soon, Brad's buddy Daryl is involved, and the group must contend with car thieves, blues musicians and much more.",1987-07-01,2.4053,6.9,698 +4000,44896,Rango,"When Rango, a lost family pet, accidentally winds up in the gritty, gun-slinging town of Dirt, the less-than-courageous lizard suddenly finds he stands out. Welcomed as the last hope the town has been waiting for, new Sheriff Rango is forced to play his new role to the hilt.",2011-03-02,9.8929,6.879,6761 +4001,22494,Frequently Asked Questions About Time Travel,Follows three social outcasts -- two geeks and a cynic -- as they attempt to navigate a time-travel conundrum in the middle of a British pub.,2009-04-24,1.9452,6.878,625 +4002,15167,Barbie in the Nutcracker,"""Barbie"" stars as Clara in this animated retelling of the classic Christmas ballet, complete with Tchaikovsky soundtrack and ballet choreography.",2001-09-30,3.0972,6.9,1080 +4003,13285,Barbie Fairytopia: Mermaidia,"In this animated follow-up to Fairytopia, Elina enlists the help of a mermaid, Nori, to save her friend Nalu, a merman prince who has been captured by the wicked Laverna.",2006-03-14,3.0702,6.9,716 +4004,9003,Hellraiser,"Hedonist Frank Cotton finds a mysterious puzzle box that summons the Cenobites, who open the doors to a dominion where pain and pleasure are indivisible.",1987-09-11,4.2255,6.878,2684 +4005,1051891,Thelma,"When 93-year-old Thelma Post gets duped by a phone scammer pretending to be her grandson, she sets out on a treacherous quest across the city to reclaim what was taken from her.",2024-06-21,3.3374,6.88,313 +4006,526050,Little,"Jordan Sanders, a take-no-prisoners tech mogul, wakes up one morning in the body of her 13-year-old self right before a do-or-die presentation. Her beleaguered assistant April is the only one in on the secret that her daily tormentor is now trapped in an awkward tween body, just as everything is on the line.",2019-04-04,2.3737,6.877,730 +4007,13909,She Wore a Yellow Ribbon,"On the eve of retirement, Captain Nathan Brittles takes out a last patrol to stop an impending massive Indian attack. Encumbered by women who must be evacuated, Brittles finds his mission imperiled.",1949-10-22,2.1019,6.9,375 +4008,78215,Into the White,"Based on a true story. On 27 April 1940, Luftwaffe pilot Horst Schopis' Heinkel 111 bomber is shot down near Grotli by an RAF Blackburn Skua L2940 fighter, which then crash-lands. The surviving German and English crew members begin to shoot at each other, but later find themselves huddled up in the same cabin. In order to survive the harsh winter in the Norwegian wilderness, they have to stand together. An unlikely, lifelong friendship blossoms.",2012-03-09,1.404,6.876,307 +4009,605886,To Catch a Killer,Baltimore. New Year's Eve. A talented but troubled police officer is recruited by the FBI's chief investigator to help profile and track down a mass murderer.,2023-04-06,2.7442,6.875,1167 +4010,340684,Those People,"On Manhattan's gilded Upper East Side, a young gay painter is torn between an obsession with his infamous best friend and a promising new romance with an older foreign pianist.",2015-05-16,0.6022,6.875,345 +4011,17845,Loft,"Five close friends, all of them married, share a loft to meet their mistresses. One day they find the body of a young woman in the loft. Since there are only five keys to the loft, the five men begin to suspect each other of murder.",2008-10-21,1.3227,6.875,409 +4012,8009,Highlander,He fought his first battle on the Scottish Highlands in 1536. He will fight his greatest battle on the streets of New York City in 1986. His name is Connor MacLeod. He is immortal.,1986-03-07,5.7981,6.875,2729 +4013,1100988,28 Years Later,"Twenty-eight years since the rage virus escaped a biological weapons laboratory, now, still in a ruthlessly enforced quarantine, some have found ways to exist amidst the infected. One such group lives on a small island connected to the mainland by a single, heavily-defended causeway. When one member departs on a mission into the dark heart of the mainland, he discovers secrets, wonders, and horrors that have mutated not only the infected but other survivors as well.",2025-06-18,218.1212,6.867,1066 +4014,934761,A Perfect Pairing,"To land a major client, an LA wine exec travels to an Australian sheep station, where she signs on as a ranch hand and hits it off with a rugged local.",2022-05-19,1.221,6.9,568 +4015,805327,Look Both Ways,"On the night of her college graduation, Natalie's life splits into parallel realities after she takes a pregnancy test. What will life and love bring?",2022-08-16,1.7886,6.874,685 +4016,541134,The Good Nurse,"Suspicious that her colleague is responsible for a series of mysterious patient deaths, a nurse risks her own life to uncover the truth.",2022-10-19,2.5774,6.873,1319 +4017,513347,Flavors of Youth,"The rigorous city life of China, while bustling and unforgiving, contains the everlasting memories of days past. Three stories told in three different cities, follow the loss of youth and the daunting realization of adulthood. Though reality may seem ever changing, unchangeable are the short-lived moments of one's childhood days. A plentiful bowl of noodles, the beauty of family and the trials of first love endure the inevitable flow of time, as three different characters explore the strength of bonds and the warmth of cherished memories. Within the disorder of the present world, witness these quaint stories recognize the comfort of the past, and attempt to revive the neglected flavors of youth.",2018-08-04,1.6179,6.9,566 +4018,297802,Aquaman,"Half-human, half-Atlantean Arthur Curry is taken on the journey of his lifetime to discover if he is worth of being a king.",2018-12-07,7.8671,6.874,14422 +4019,284305,Shrew's Nest,"Spain, 1950s. Montse's agoraphobia keeps her locked in a sinister apartment in Madrid and her only link to reality is the little sister she lost her youth raising. But one day, a reckless young neighbor, Carlos, falls down the stairwell and drags himself to their door. Someone has entered the shrew's nest... perhaps he'll never leave.",2014-09-21,1.2557,6.874,310 +4020,31175,Soul Kitchen,"In Hamburg, German-Greek chef Zinos unknowingly disturbs the peace in his locals-only restaurant by hiring a more talented chef.",2009-09-09,0.9311,6.874,550 +4021,4012,The Believer,"A hardcore US racist skinhead who, because of his intelligence, leads a gang dedicated to fighting the enemy: the supposed American-Jewish conspiracy for domination. However, he's hiding a secret: he's Jewish-born, a brilliant scholar whose questioning of the tenets of his faith has left him angry and confused, turning against those who he thinks have a tragic history of their own making.",2001-08-23,2.219,6.874,630 +4022,256591,Focus,"Nicky, an accomplished con artist, gets romantically involved with his disciple Jess but later ends their relationship. Years later, she returns as a femme fatale to spoil his plans.",2015-02-25,4.4743,6.873,8015 +4023,18444,Swiss Family Robinson,"After being shipwrecked, the Robinson family is marooned on an island inhabited only by an impressive array of wildlife. In true pioneer spirit, they quickly make themselves at home but soon face a danger even greater than nature: dastardly pirates.",1960-12-21,1.8082,6.9,332 +4024,10858,Nixon,A look at President Richard M. Nixon—a man carrying the fate of the world on his shoulders while battling the self-destructive demands from within—spanning his troubled boyhood in California to the shocking Watergate scandal that would end his Presidency.,1995-12-22,1.7382,6.9,377 +4025,8769,Christine,"Nerdy high schooler Arnie Cunningham falls for Christine, a rusty 1958 Plymouth Fury, and becomes obsessed with restoring the classic automobile to her former glory. As the car changes, so does Arnie, whose newfound confidence turns to arrogance behind the wheel of his exotic beauty. Arnie's girlfriend Leigh and best friend Dennis reach out to him, only to be met by a Fury like no other.",1983-12-09,6.1989,6.873,2073 +4026,8326,Holes,A wrongfully convicted boy is sent to a brutal desert detention camp where he must dig holes in order to build character. What he doesn't know is that he is digging holes in order to search for a lost treasure hidden somewhere in the camp.,2003-04-18,3.07,6.873,1445 +4027,116979,Chained,"A serial killer kidnaps a young boy after murdering his mother, then raises him to be his accomplice. After years in captivity, the boy must choose between escaping or following in his captor's bloody footprints.",2012-10-02,1.2454,6.872,503 +4028,16962,Barbie Fairytopia: Magic of the Rainbow,Elina goes to a fairy school to learn dancing and fairy magic. The spring of the fairy land is soon threatened by evil Laverna who intends to prevent fairies from performing the annual vital rainbow dance. Elina must stop quarreling with her fellow students and unite them to save the first bud of the spring.,2007-03-13,2.5202,6.9,454 +4029,11463,Battle of Britain,"In 1940, the Royal Air Force fights a desperate battle against the might of the Luftwaffe for control of the skies over Britain, thus preventing the Nazi invasion of Britain.",1969-09-15,2.5394,6.9,325 +4030,9942,Major League,"When Rachel Phelps inherits the Cleveland Indians from her deceased husband, she's determined to move the team to a warmer climate—but only a losing season will make that possible, which should be easy given the misfits she's hired. Rachel is sure her dream will come true, but she underestimates their will to succeed.",1989-02-16,3.3933,6.872,825 +4031,1824,50 First Dates,"Henry is a player skilled at seducing women. But when this veterinarian meets Lucy, a girl with a quirky problem when it comes to total recall, he realizes it's possible to fall in love all over again…and again, and again. That's because the delightful Lucy has no short-term memory, so Henry must woo her day after day until he finally sweeps her off her feet.",2004-02-13,8.6549,6.872,7405 +4032,1246,Rocky Balboa,"When he loses a highly publicized virtual boxing match to ex-champ Rocky Balboa, reigning heavyweight titleholder Mason Dixon retaliates by challenging the Italian Stallion to a 10-round exhibition bout. To the surprise of his son and friends, Rocky agrees to come out of retirement and face an opponent who's faster, stronger and thirty years his junior. Rocky takes on Dixon in what will become the greatest fight in boxing history!",2006-12-20,4.7653,6.872,3618 +4033,632856,Spirited,"Each Christmas Eve, the Ghost of Christmas Present selects one dark soul to be reformed by a visit from three spirits. But this season, he picked the wrong Scrooge. Clint Briggs turns the tables on his ghostly host until Present finds himself reexamining his own past, present and future.",2022-11-10,1.9233,6.871,675 +4034,57737,Barbie: A Fairy Secret,"Get ready for Barbie: A Fairy Secret, an amazing adventure with Barbie where she discovers there are fairies living secretly all around us! When Ken is suddenly whisked away by a group of fairies, Barbie's two fashion stylist friends reveal they are actually fairies and that Ken has been taken to a magical secret fairy world not far away! Barbie and her rival Raquelle take off with the fairy friends on an action-packed journey to bring him back. Along the way they must stick together and learn that the real magic lies not just in the fairy world itself, but in the power of friendship.",2011-03-01,3.8497,6.871,522 +4035,38939,Tales from the Crypt,Five people find themselves in a tomb. The Crypt keeper explains why they are there through a series of frightening stories. Based on the classic comic book.,1972-03-09,1.9903,6.871,313 +4036,11593,Nobody's Fool,"A rascally nearing-retirement man juggles a workers' compensation suit while secretly working for his nemesis and flirting with his nemesis' young wife. As his estranged son returns, he faces new family responsibilities, while a banker plots to evict him from his home.",1994-12-23,1.843,6.9,318 +4037,9762,Step Up,"Tyler Gage receives the opportunity of a lifetime after vandalizing a performing arts school, gaining him the chance to earn a scholarship and dance with an up and coming dancer, Nora.",2006-08-11,4.1803,6.871,3770 +4038,171372,Frank,A young wannabe musician discovers he has bitten off more than he can chew when he joins an eccentric pop band led by the mysterious and enigmatic Frank.,2014-05-09,1.2527,6.9,1652 +4039,11879,Near Dark,A farm boy reluctantly becomes a member of the undead when a girl he meets turns out to be part of a band of vampires who roam the highways in stolen cars.,1987-10-02,1.8052,6.87,793 +4040,11134,Police Story 3: Super Cop,A Hong Kong detective teams up with his female Red Chinese counterpart to stop a Chinese drug czar.,1992-07-04,2.5216,6.9,525 +4041,9667,The Jacket,"A military veteran goes on a journey into the future, where he can foresee his death and is left with questions that could save his life and those he loves.",2005-03-04,2.2312,6.87,1567 +4042,7551,Déjà Vu,"Called in to recover evidence in the aftermath of a horrific explosion on a New Orleans ferry, Federal agent Doug Carlin gets pulled away from the scene and taken to a top-secret government lab that uses a time-shifting surveillance device to help prevent crime.",2006-11-22,4.6494,6.87,5004 +4043,1921,Sweet November,"Nelson is a man devoted to his advertising career in San Francisco. One day, while taking a driving test at the DMV, he meets Sara. She is very different from the other women in his life. Nelson causes her to miss out on taking the test and later that day she tracks him down. One thing leads to another and Nelson ends up living with her through a November that will change his life forever.",2001-02-16,2.6771,6.9,1359 +4044,339405,Christine,"In 1974, television reporter Christine Chubbuck struggles with depression and professional frustrations as she tries to advance her career.",2016-10-14,1.0458,6.9,383 +4045,294963,Bone Tomahawk,"During a shootout in a saloon, Sheriff Hunt injures a suspicious stranger. The doctor's assistant, wife of the local foreman, tends to him in prison. That night, the town is attacked and they both disappear—only the arrow of a cannibal tribe is found. Hunt and a few of his men go in search of the prisoner and the foreman's wife.",2015-10-23,3.1906,6.869,2356 +4046,9451,Election,"Tracy Flick is running unopposed for this year’s high school student election. But Jim McAllister has a different plan. Partly to establish a more democratic election, and partly to satisfy some deep personal anger toward Tracy, Jim talks football player Paul Metzler to run for president as well.",1999-04-23,2.4616,6.9,1113 +4047,8052,Hard Eight,A stranger mentors a young Reno gambler who weds a hooker and befriends a vulgar casino regular.,1996-05-15,1.2732,6.9,886 +4048,35138,Little Big Soldier,"The story of a farmer forced into conscription, who has been looking to get out of the army ever since. His great chance arrives when he stumbles upon a wounded general from an enemy state, and he kidnaps him, intending to claim credit for the capture, which includes five acres of land, and most importantly, honorable discharge from the army.",2010-02-14,2.4631,6.868,319 +4049,15143,Some Kind of Wonderful,"Keith Nelson, an artsy high school outcast, tries to land a date with popular girl Amanda Jones with some help from his tomboy best friend, Watts. However, Watts realizes she likes Keith as more than just a friend and tries to convince him to stop pursuing Amanda. Matters are further complicated when Keith's invitation draws the ire of Amanda's rich yet snobby ex-boyfriend, Hardy Jenns, who makes plans to get even.",1987-02-27,1.7599,6.868,496 +4050,14012,Flicka,"Katy McLaughlin desires to work on her family's mountainside horse ranch, although her father insists she finish boarding school. Katy finds a mustang in the hills near her ranch. The headstrong 16 year old then sets her mind to tame a mustang and prove to her father she can run the ranch. But when tragedy happens, it will take all the love and strength the family can muster to restore hope.",2006-10-20,1.3868,6.868,300 +4051,13275,Annapolis,"Jake Huard, from a shipbuilders family, promised his dying mother he'ld make it to Anapolis Naval Academy. Thanks to tenaciously bugging a Congressman, he's selected despite dubious grades. Once inside, Jake soon proves sub-standard academically. Constantly challenged to his limits, repeatedly made the 'over-cocky' reason for the entire class to suffer, Jake nearly quits, but after facing his utterly un-supportive father's gloating returns just in time. Stubborn Jake finds support withs mates as well as Senor Ali, his lover-to-be, and a discipline he may excel in: the 'brigade' boxing tournament, open to all ranks.",2006-01-27,2.2256,6.868,532 +4052,11087,The Hand That Rocks the Cradle,"A suburban family chooses seemingly sweet Peyton Flanders as their newborn's nanny. Only much later does the infant's mother, Claire Bartel, realize Peyton's true intentions -- to destroy Claire and replace her in the family. The nail-biting suspense builds quickly in this chilling psychological thriller about deception and bitter revenge.",1992-01-10,2.5045,6.868,925 +4053,10218,Swingers,"After 6 years together, Mike's girlfriend leaves him, so he travels to LA to be a star. Six months on, he's still not doing very well— so a few of his friends try to reconnect him to the social scene and hopefully help him forget his failed relationship.",1996-10-18,2.7539,6.868,764 +4054,9476,A Knight's Tale,"William Thatcher, a knight's peasant apprentice, gets a chance at glory when the knight dies suddenly mid-tournament. Posing as a knight himself, William won't stop until he's crowned tournament champion—assuming matters of the heart don't get in the way.",2001-05-11,6.6983,6.868,3186 +4055,2469,Tie Me Up! Tie Me Down!,"Recently released from a mental hospital, Ricky ties up Marina, a film star he once had sex with and keeps her hostage.",1990-01-22,2.0041,6.9,645 +4056,893370,Virus: 32,A virus is unleashed and a chilling massacre runs through the streets of Montevideo.,2022-04-21,1.2178,6.9,300 +4057,51999,Perfect Sense,"In Glasgow, Scotland, while a mysterious pandemic begins to spread around the world, Susan, a brilliant epidemiologist, falls in love with Michael, a skillful cook.",2011-09-29,1.6771,6.9,1187 +4058,82507,Sinister,"True-crime writer Ellison Oswald is in a slump; he hasn't had a best seller in more than 10 years and is becoming increasingly desperate for a hit. So, when he discovers the existence of a snuff film showing the deaths of a family, he vows to solve the mystery. He moves his own family into the victims' home and gets to work. However, when old film footage and other clues hint at the presence of a supernatural force, Ellison learns that living in the house may be fatal.",2012-03-29,8.4562,6.866,5727 +4059,9059,Tales from the Crypt: Demon Knight,"Ex-soldier Frank Brayker is the guardian of an ancient key that can unlock tremendous evil; the sinister Collector is a demon who wants the key so he can initiate the apocalypse. On the run from wicked mercenaries for almost 90 years, Brayker finally stops in at a boarding house in New Mexico where — with the help of its residents — he plans to face off against the Collector and his band of ghouls, preventing them from ever seizing the key.",1995-01-13,2.5408,6.869,510 +4060,592834,My Spy,"A hardened CIA operative finds himself at the mercy of a precocious 9-year-old girl, having been sent undercover to surveil her family.",2020-01-09,3.553,6.865,1302 +4061,514207,Invasion,"Two years after the fall of the alien ship, the life of a young woman from Moscow has been changed forever. Her growing powers are now at the focus of both human and celestial investigation: an alien force takes an interest in her, and will stop short of nothing, including an invasion. Can love and compassion save humanity, when faced with a much greater and more demanding test this time?",2020-02-27,4.6929,6.864,833 +4062,432087,Back to Burgundy,"Jean left his hometown ten years ago. When his father falls ill, he comes back and reunites with his sister Juliette and his brother Jérémie. As seasons go by around their vineyard, they'll have to trust each other again.",2017-06-14,1.0865,6.865,596 +4063,400020,The Young Karl Marx,"26 year-old Karl Marx embarks with his wife, Jenny, on the road to exile. In 1844 in Paris, he meets Friedrich Engels, an industrialist’s son, who has been investigating the sordid birth of the British working class. Engels, the dandy, provides the last piece of the puzzle to the young Karl Marx’s new vision of the world. Together, between censorship and the police’s repression, riots and political upheavals, they will lead the labor movement during its development into a modern era.",2017-03-02,1.4827,6.865,314 +4064,393457,Fences,"In 1950s Pittsburgh, a frustrated African-American father struggles with the constraints of poverty, racism, and his own inner demons as he tries to raise a family.",2016-12-16,3.0325,6.9,2679 +4065,846867,Mad God,"A figure known as ""The Assassin"" descends from the heavens into a nightmarish pit full of monsters, titans, and cruelty.",2021-09-17,1.721,6.864,463 +4066,508101,Plus One,"Longtime single friends, Ben and Alice, agree to be each other's respective plus one at every wedding they're invited to, during a busy summer of wedding fever.",2019-06-14,2.2674,6.864,381 +4067,360920,The Grinch,The Grinch hatches a scheme to ruin Christmas when the residents of Whoville plan their annual holiday celebration.,2018-11-08,8.6362,6.9,4218 +4068,50839,Margin Call,A thriller that revolves around the key people at an investment bank over a 24-hour period during the early stages of the financial crisis.,2011-09-28,15.5704,6.864,1915 +4069,48769,Gramps Is in the Resistance,"It is 1943 in Paris. Like so many others, the Bourbelle family's home has been taken over by the Germans and they now live in their cellar. Little do they know that the son, Guy-Hubert Bourdelle, is far from being the cowardly hairdresser he pretends. He is in truth the Germans’ most feared opponent: le super-résistant!",1983-10-26,1.3808,6.864,414 +4070,11170,We Are Marshall,"When a plane crash claims the lives of members of the Marshall University football team and some of its fans, the team's new coach and his surviving players try to keep the football program alive.",2006-12-12,2.8978,6.864,738 +4071,10276,What About Bob?,"Before going on vacation, self-involved psychiatrist Dr. Leo Marvin has the misfortune of taking on a new patient: Bob Wiley. An exemplar of neediness and a compendium of phobias, Bob follows Marvin to his family's country house. Dr. Marvin tries to get him to leave; the trouble is, everyone loves Bob. As his oblivious patient makes himself at home, Dr. Marvin loses his professional composure and, before long, may be ready for the loony bin himself.",1991-05-17,1.7694,6.864,850 +4072,8272,The Savages,A sister and brother face the realities of familial responsibility as they begin to care for their ailing father.,2007-11-28,1.1295,6.9,403 +4073,532865,The Dig,"As WWII looms, a wealthy widow hires an amateur archaeologist to excavate the burial mounds on her estate. When they make a historic discovery, the echoes of Britain's past resonate in the face of its uncertain future‎.",2021-01-14,1.5708,6.863,1250 +4074,467956,The Professor,"A world-weary college professor is given a life-changing diagnosis and decides to throw all pretense and conventions to the wind and live his life as boldly and freely as possible with a biting sense of humor, a reckless streak and a touch of madness.",2018-05-17,1.9992,6.863,1196 +4075,452970,Mazinger Z: Infinity,"When the evil Dr. Hell attacks the Earth, the mighty giant mecha Mazinger Z is formed to stop him.",2017-10-27,1.6476,6.9,304 +4076,278927,The Jungle Book,"A man-cub named Mowgli fostered by wolves. After a threat from the tiger Shere Khan, Mowgli is forced to flee the jungle, by which he embarks on a journey of self discovery with the help of the panther, Bagheera and the free-spirited bear, Baloo.",2016-04-07,7.2561,6.863,8224 +4077,82424,Small Fry,A fast food restaurant mini variant of Buzz forcibly switches places with the real Buzz and his friends have to deal with the obnoxious impostor.,2011-11-23,2.4027,6.863,560 +4078,16366,Joseph: King of Dreams,"In this animated retelling of the story from the Bible's Book of Genesis, Joseph's gift of dream interpretation and his brilliantly colored coat inspires jealousy in his brothers.",2002-12-04,3.5741,6.9,1028 +4079,14609,Ultimate Avengers: The Movie,"When a nuclear missile was fired at Washington in 1945, Captain America managed to detonate it in the upper atmosphere. But then he fell miles into the icy depths of the North Atlantic, where he remained lost for over sixty years. But now, with the world facing the very same evil, Captain America must rise again as our last hope for survival.",2006-02-21,2.2705,6.863,372 +4080,13785,Best in Show,"The tension is palpable, the excitement is mounting and the heady scent of competition is in the air as hundreds of eager contestants from across America prepare to take part in what is undoubtedly one of the greatest events of their lives -- the Mayflower Dog Show. The canine contestants and their owners are as wondrously diverse as the great country that has bred them.",2000-09-29,1.8586,6.863,606 +4081,930921,Strangeness,"During a trip to Sicily in 1920, Luigi Pirandello meets two gravediggers-turned-playwrights rehearsing a play with their amateur dramatics. Pirandello takes an interest in the odd couple, having been suffering from writer's block while working on his eventual masterpiece, Six Characters in Search of an Author.",2022-10-27,0.3562,6.862,336 +4082,513310,Boss Level,"A former special forces agent is trapped in a time loop and relives his death over and over again. To escape the terrible situation, he must track down those responsible and stop them.",2021-02-19,5.2564,6.864,1736 +4083,473072,2036: Nexus Dawn,"This in-world short film takes place in the year 2036 and revolves around Jared Leto’s character, Niander Wallace. In this short, Wallace introduces a new line of “perfected” replicants called the Nexus 9, seeking to get the prohibition on replicants repealed. This no doubt has serious ramifications that will be crucial to the plot of Blade Runner 2049.",2017-08-30,1.6596,6.862,392 +4084,337339,The Fate of the Furious,"When a mysterious woman seduces Dom into the world of crime and a betrayal of those closest to him, the crew face trials that will test them as never before.",2017-04-12,9.7512,6.862,10492 +4085,68924,The Ice Storm,"In the weekend after thanksgiving 1973 the Hood family is skidding out of control. Then an ice storm hits, the worst in a century.",1997-09-27,1.4411,6.862,695 +4086,55292,Shaolin,"China is plunged into strife as feuding warlords try to expand their power by warring over neighboring lands. Fuelled by his success on the battlefield, young and arrogant Hao Jie sneers at Shaolin's masters when he beats one of them in a duel. But the pride comes before a fall. When his own family is wiped out by a rival warlord, Hao is forced to take refuge with the monks. As the civil unrest spreads and the people suffer, Hao and the Shaolin masters are forced to take a fiery stand against the evil warlords. They launch a daring plan or rescue and escape.",2011-01-20,2.6821,6.862,376 +4087,8367,Robin Hood: Prince of Thieves,"Nobleman crusader Robin of Locksley breaks out of a Jerusalem prison with the help of Moorish fellow prisoner Azeem and travels back home to England. But upon arrival he discovers his dead father in the ruins of his family estate, killed by the vicious sheriff of Nottingham, Robin and Azeem join forces with outlaws Little John and Will Scarlett to save the kingdom from the sheriff's villainy.",1991-06-14,4.8834,6.862,3382 +4088,2039,Moonstruck,"37-year-old Italian-American widow Loretta Castorini believes she is unlucky in love, and so accepts a marriage proposal from her boyfriend Johnny, even though she doesn't love him. When she meets his estranged younger brother Ronny, an emotional and passionate man, she finds herself drawn to him. She tries to resist, but Ronny, who blames his brother for the loss of his hand, has no scruples about aggressively pursuing her while Johnny is out of the country. As Loretta falls for Ronny, she learns that she's not the only one in her family with a secret romance.",1987-12-16,4.4064,6.862,1018 +4089,504172,The Mule,"Earl Stone, a man in his eighties, is broke, alone, and facing foreclosure of his business when he is offered a job that simply requires him to drive. Easy enough, but, unbeknownst to Earl, he's just signed on as a drug courier for a Mexican cartel. He does so well that his cargo increases exponentially, and Earl hit the radar of hard-charging DEA agent Colin Bates.",2018-12-14,4.0203,6.86,5117 +4090,34463,Three Little Pigs,"The two pigs building houses of hay and sticks scoff at their brother, building the brick house. But when the wolf comes around and blows their houses down (after trickery like dressing as a foundling sheep fails), they run to their brother's house. And throughout, they sing the classic song, ""Who's Afraid of the Big Bad Wolf?"".",1933-05-27,0.9908,6.9,410 +4091,6399,Who Finds a Friend Finds a Treasure,"Alan gets a map to some war treasure which the Japanese army left behind on a small Pacific island at the end of World War II. But some gangsters try to steal the map from him and so he hides on Charlie's boat which just leaves the harbor. He manipulates the ship's compass so that Charlie is not aware that he is sailing to the treasure island. But when they step on the island, they discover that it is not as abandoned as they believed: there are some natives - and a Japanese soldier still defending the treasure",1981-12-09,2.1296,6.9,635 +4092,437342,The First Omen,"When a young American woman is sent to Rome to begin a life of service to the church, she encounters a darkness that causes her to question her own faith and uncovers a terrifying conspiracy that hopes to bring about the birth of evil incarnate.",2024-04-03,5.8733,6.861,1131 +4093,426865,UFO,"A college student, who sees a UFO, uses his exceptional math skills to investigate the sighting with his friends while the FBI follows closely behind.",2018-09-04,1.3711,6.859,464 +4094,207933,Stonehearst Asylum,"An Oxford Medical School graduate takes a position at a mental institution and soon becomes obsessed with a female mental patient, but he has no idea of a recent and horrifying staffing change.",2014-10-23,3.59,6.9,1480 +4095,12268,The Pink Panther Strikes Again,"Charles Dreyfus, who has finally cracked over inspector Clouseau's antics, escapes from a mental institution and launches an elaborate plan to get rid of Clouseau once and for all.",1976-12-15,1.8851,6.859,571 +4096,10019,Mannequin,"Jonathan Switcher, an unemployed artist, finds a job as an assistant window dresser for a department store. When Jonathan happens upon a beautiful mannequin he previously designed, she springs to life and introduces herself as Emmy, an Egyptian under an ancient spell. Despite interference from the store's devious manager, Jonathan and his mannequin fall in love while creating eye-catching window displays to keep the struggling store in business.",1987-02-13,2.8538,6.9,781 +4097,5889,Azumi,"In war-torn Japan, the Tokugawa Shogun, desperate to restore peace to his people, orders the assassination of the hostile warlords. A beautiful young woman is raised from birth with nine other orphans, to become an assassin. Her name is Azumi, the ultimate assassin.",2003-05-10,1.8255,6.859,344 +4098,929590,Civil War,"In the near future, a group of war journalists attempt to survive while reporting the truth as the United States stands on the brink of civil war.",2024-04-10,8.9003,6.858,3739 +4099,718633,Bruised,"Jackie Justice is a mixed martial arts fighter who leaves the sport in disgrace. Down on her luck and simmering with rage and regret years after the fight, she's coaxed into a brutal underground fight by her manager and boyfriend Desi and grabs the attention of a fight league promoter who promises Jackie a life back in the Octagon. But the road to redemption becomes unexpectedly personal when Manny - the son she gave up as an infant - shows up at her doorstep. A triumphant story of a fighter who reclaims her power, in and out of the ring, when everyone has counted her out",2020-09-12,1.2499,6.9,460 +4100,242090,The One I Love,"Ethan and Sophie are a married couple on the brink of separation when, at the urging of their therapist, they decide to salvage their relationship by escaping to a beautiful vacation house for the weekend.",2014-08-08,1.7951,6.858,723 +4101,13497,Drumline,"A talented street drummer from Harlem enrolls in a Southern university, expecting to lead its marching band's drumline to victory. He initially flounders in his new world, before realizing that it takes more than talent to reach the top.",2002-12-13,2.4371,6.9,529 +4102,12560,The Big Chill,Seven old college friends gather for a weekend reunion after the funeral of one of their own.,1983-09-30,2.583,6.858,618 +4103,11873,The Color of Money,"Former pool hustler ""Fast Eddie"" Felson decides he wants to return to the game by taking a pupil. He meets talented but green Vincent Lauria and proposes a partnership. As they tour pool halls, Eddie teaches Vincent the tricks of scamming, but he eventually grows frustrated with Vincent's showboat antics, leading to an argument and a falling-out. Eddie takes up playing again and soon crosses paths with Vincent as an opponent.",1986-10-17,2.7457,6.9,1419 +4104,1172676,Poison,"When a poisonous snake slithers onto an Englishman's stomach in India, his associate and a doctor race to save him.",2023-09-29,1.3087,6.856,493 +4105,181886,Enemy,A mild-mannered college professor discovers a look-alike actor and delves into the other man's private affairs.,2014-03-14,5.1226,6.856,6093 +4106,21946,Counter Investigation,A cop investigates whether the man convicted of murdering his daughter is really guilty.,2007-03-07,0.794,6.856,320 +4107,10937,Barfly,"Downtrodden writer Henry and distressed goddess Wanda aren't exactly husband and wife: they're wedded to their bar stools. But, they like each other's company—and Barfly captures their giddy, gin-soaked attempts to make a go of life on the skids.",1987-09-02,0.9341,6.856,358 +4108,1934,Shakespeare in Love,"Young Shakespeare is forced to stage his latest comedy, ""Romeo and Ethel, the Pirate's Daughter,"" before it's even written. When a lovely noblewoman auditions for a role, they fall into forbidden love -- and his play finds a new life (and title). As their relationship progresses, Shakespeare's comedy soon transforms into tragedy.",1998-12-11,3.0813,6.856,3073 +4109,1648,Bill & Ted's Excellent Adventure,"Bill and Ted are high school buddies starting a band. They are also about to fail their history class—which means Ted would be sent to military school—but receive help from Rufus, a traveller from a future where their band is the foundation for a perfect society. With the use of Rufus' time machine, Bill and Ted travel to various points in history, returning with important figures to help them complete their final history presentation.",1989-02-17,4.6683,6.9,1947 +4110,168672,American Hustle,"A conman and his seductive partner are forced to work for a wild FBI agent, who pushes them into a world of Jersey power-brokers and the Mafia.",2013-12-03,5.2491,6.855,7441 +4111,152737,August: Osage County,"An intense look at the lives of the strong-willed daughters of the Weston family, whose paths have diverged until a family crisis brings them back to the Midwest house they grew up in, and to the dysfunctional mother who raised them.",2013-12-26,1.6363,6.855,1525 +4112,72976,Lincoln,"The revealing story of the 16th US President's tumultuous final months in office. In a nation divided by war and the strong winds of change, Lincoln pursues a course of action designed to end the war, unite the country and abolish slavery. With the moral courage and fierce determination to succeed, his choices during this critical moment will change the fate of generations to come.",2012-11-09,3.3355,6.855,3884 +4113,8942,Wendy and Lucy,A near-penniless drifter's journey to Alaska in search of work is interrupted when she loses her dog while attempting to shoplift food for it.,2008-12-10,1.05,6.9,341 +4114,1817,Phone Booth,"A slick New York publicist who picks up a ringing receiver in a phone booth is told that if he hangs up, he'll be killed... and the little red light from a laser rifle sight is proof that the caller isn't kidding.",2003-04-04,3.238,6.855,3892 +4115,337401,Mulan,"When the Emperor of China issues a decree that one man per family must serve in the Imperial Chinese Army to defend the country from Huns, Hua Mulan, the eldest daughter of an honored warrior, steps in to take the place of her ailing father. She is spirited, determined and quick on her feet. Disguised as a man by the name of Hua Jun, she is tested every step of the way and must harness her innermost strength and embrace her true potential.",2020-09-04,7.223,6.854,6851 +4116,260514,Cars 3,"Blindsided by a new generation of blazing-fast racers, the legendary Lightning McQueen is suddenly pushed out of the sport he loves. To get back in the game, he will need the help of an eager young race technician with her own plan to win, inspiration from the late Fabulous Hudson Hornet, and a few unexpected turns. Proving that #95 isn't through yet will test the heart of a champion on Piston Cup Racing’s biggest stage!",2017-06-15,10.1211,6.854,6096 +4117,42188,Never Let Me Go,"As children, Kathy, Ruth, and Tommy spend their childhood at an idyllic and secluded English boarding school. As they grow into adults, they must come to terms with the complexity and strength of their love for one another while also preparing for the haunting reality awaiting them.",2010-03-18,2.139,6.9,2349 +4118,436270,Black Adam,"Nearly 5,000 years after he was bestowed with the almighty powers of the Egyptian gods—and imprisoned just as quickly—Black Adam is freed from his earthly tomb, ready to unleash his unique form of justice on the modern world.",2022-10-19,9.6821,6.853,6641 +4119,314402,Dheepan,"Three war-torn strangers posing as a family flee Sri Lanka’s civil war to start over in a troubled Paris suburb, but their past traumas resurface as they struggle to survive in their new environment.",2015-08-26,1.7592,6.853,487 +4120,164052,The Strange Thing About the Johnsons,A father gets trapped in a one-sided incestuous relationship with his abusive son.,2011-01-22,1.2119,6.9,344 +4121,19185,Night of the Living Dead,"In this remake of the classic 1968 film, a group of people are trapped inside a farmhouse as legions of the walking dead try to get inside and use them for food.",1990-10-19,2.0353,6.853,877 +4122,10362,Two Lovers,A depressed man moves back in with his parents following a recent heartbreak and finds himself with two women.,2008-11-19,1.3408,6.853,880 +4123,402298,Denial,"Acclaimed writer and historian Deborah E. Lipstadt must battle for historical truth to prove the Holocaust actually occurred when David Irving, a renowned denier, sues her for libel.",2016-09-30,1.4895,6.852,668 +4124,317560,Carrie Pilby,"Awkward, isolated and disapproving of most of the people around her, a precocious 19-year-old genius is challenged to put her convictions to the test by venturing out on to the NYC dating scene.",2017-03-31,1.761,6.852,435 +4125,303857,Dragon Ball Z: Resurrection 'F',"One peaceful day on Earth, two remnants of Frieza's army named Sorbet and Tagoma arrive searching for the Dragon Balls with the aim of reviving Frieza. They succeed, and Frieza subsequently seeks revenge on the Saiyans.",2015-04-18,7.5799,6.9,1952 +4126,265189,Force Majeure,"While holidaying in the French Alps, a Swedish family deals with acts of cowardliness as an avalanche breaks out.",2014-08-15,1.7757,6.9,1126 +4127,3683,Flags of Our Fathers,"There were five Marines and one Navy Corpsman photographed raising the U.S. flag on Mt. Suribachi by Joe Rosenthal on February 23, 1945. This is the story of three of the six surviving servicemen - John 'Doc' Bradley, Pvt. Rene Gagnon and Pvt. Ira Hayes - who fought in the battle to take Iwo Jima from the Japanese.",2006-10-19,3.001,6.9,1898 +4128,521777,Good Boys,A group of young boys on the cusp of becoming teenagers embark on an epic quest to fix their broken drone before their parents get home.,2019-08-14,3.4374,6.851,1906 +4129,449443,Den of Thieves,A gritty crime saga which follows the lives of an elite unit of the LA County Sheriff's Dept. and the state's most successful bank robbery crew as the outlaws plan a seemingly impossible heist on the Federal Reserve Bank.,2018-01-18,7.7867,6.9,3186 +4130,85889,Filth,A bigoted junkie cop suffering from borderline personality disorder and drug addiction manipulates and hallucinates his way in a bid to secure promotion.,2013-09-23,2.0162,6.851,1790 +4131,30508,Berlin Calling,A man tours clubs around the globe with his manager and girlfriend. On the eve of their largest album release he is admitted to a psychiatric clinic after overdosing at a gig.,2008-10-01,1.146,6.9,346 +4132,1106739,Juror #2,"While serving as a juror in a high profile murder trial, family man Justin Kemp finds himself struggling with a serious moral dilemma…one he could use to sway the jury verdict and potentially convict—or free—the accused killer.",2024-10-30,6.7869,6.851,1964 +4133,400155,Hotel Transylvania 3: Summer Vacation,"Dracula, Mavis, Johnny and the rest of the Drac Pack take a vacation on a luxury Monster Cruise Ship, where Dracula falls in love with the ship’s captain, Ericka, who’s secretly a descendant of Abraham Van Helsing, the notorious monster slayer.",2018-06-28,8.0704,6.85,4548 +4134,157841,The Young and Prodigious T.S. Spivet,A 10-year-old child prodigy cartographer secretly leaves his family's ranch in Montana where he lives with his cowboy father and scientist mother and travels across the country on board a freight train to receive an award at the Smithsonian Institute.,2013-10-16,2.1906,6.85,836 +4135,127560,The Railway Man,"A victim from World War II's ""Death Railway"" sets out to find those responsible for his torture. A true story.",2013-12-02,1.3731,6.85,754 +4136,9026,The Importance of Being Earnest,"Two young gentlemen living in 1890s England use the same pseudonym ('Ernest') on the sly, which is fine until they both fall in love with women using that name, which leads to a comedy of mistaken identities.",2002-05-17,1.2832,6.8,491 +4137,445629,Fighting with My Family,"Born into a tight-knit wrestling family, Paige and her brother Zak are ecstatic when they get the once-in-a-lifetime opportunity to try out for the WWE. But when only Paige earns a spot in the competitive training program, she must leave her loved ones behind and face this new cutthroat world alone. Paige's journey pushes her to dig deep and ultimately prove to the world that what makes her different is the very thing that can make her a star.",2019-02-14,3.3781,6.849,1772 +4138,445571,Game Night,"Max and Annie's weekly game night gets kicked up a notch when Max's brother Brooks arranges a murder mystery party -- complete with fake thugs and federal agents. So when Brooks gets kidnapped, it's all supposed to be part of the game. As the competitors set out to solve the case, they start to learn that neither the game nor Brooks are what they seem to be. The friends soon find themselves in over their heads as each twist leads to another unexpected turn over the course of one chaotic night.",2018-02-15,4.2276,6.849,5997 +4139,87502,Flight,"Commercial airline pilot Whip Whitaker has a problem with drugs and alcohol, though so far he's managed to complete his flights safely. His luck runs out when a disastrous mechanical malfunction sends his plane hurtling toward the ground. Whip pulls off a miraculous crash-landing that results in only six lives lost. Shaken to the core, Whip vows to get sober -- but when the crash investigation exposes his addiction, he finds himself in an even worse situation.",2012-11-02,5.4025,6.849,6177 +4140,22971,Dear John,"While Sergeant John Tyree is home on two weeks leave from Germany, he meets Savannah after he dives into the ocean to retrieve Savannah's purse that had fallen off a pier. John eventually falls in love with Savannah, who promises to write to him until he returns from overseas.",2010-02-04,4.0073,6.849,4193 +4141,10138,Iron Man 2,"With the world now aware of his dual life as the armored superhero Iron Man, billionaire inventor Tony Stark faces pressure from the government, the press and the public to share his technology with the military. Unwilling to let go of his invention, Stark, with Pepper Potts and James 'Rhodey' Rhodes at his side, must forge new alliances – and confront powerful enemies.",2010-04-28,22.4066,6.848,21613 +4142,2787,Pitch Black,"When their ship crash-lands on a remote planet, the marooned passengers soon learn that escaped convict Riddick isn't the only thing they have to fear. Deadly creatures lurk in the shadows, waiting to attack in the dark, and the planet is rapidly plunging into the utter blackness of a total eclipse. With the body count rising, the doomed survivors are forced to turn to Riddick with his eerie eyes to guide them through the darkness to safety. With time running out, there's only one rule: Stay in the light.",2000-02-18,2.5404,6.849,4572 +4143,56804,Honeymoon Trips,The vicissitudes of three couples of newlyweds from the celebration of weddings to their respective honeymoons.,1995-12-15,0.8824,6.848,499 +4144,7874,Black Snake Moan,"A God-fearing bluesman takes to a wild young woman who, as a victim of childhood sexual abuse, is looking everywhere for love, but never quite finding it.",2006-12-31,2.9726,6.848,904 +4145,2755,About Schmidt,"A recently retired man embarks on a journey to his estranged daughter's wedding, only to discover more about himself and life than he ever expected.",2002-12-12,1.8949,6.8,1292 +4146,957,Spaceballs,"When the nefarious Dark Helmet hatches a plan to snatch Princess Vespa and steal her planet's air, space-bum-for-hire Lone Starr and his clueless sidekick fly to the rescue. Along the way, they meet Yogurt, who puts Lone Starr wise to the power of ""The Schwartz."" Can he master it in time to save the day?",1987-06-24,6.2334,6.849,3156 +4147,919,Blood The Last Vampire,"In Japan, the vampire-hunter Saya, who is a powerful original, is sent by her liaison with the government, David, posed as a teenage student to the Yokota High School on the eve of Halloween to hunt down vampires. Saya asks David to give a new katana to her. Soon she saves the school nurse Makiho Amano from two vampires disguised of classmates and Makiho witnesses her fight against the powerful demon.",2000-11-18,1.3333,6.8,345 +4148,834860,RETURN,8mm work directed by Norihiko Morinaga.,1985-01-01,0.2535,6.847,654 +4149,527729,Asterix: The Secret of the Magic Potion,"Following a fall during mistletoe picking, Druid Getafix decides that it is time to secure the future of the village. Accompanied by Asterix and Obelix, he undertakes to travel the Gallic world in search of a talented young druid to transmit the Secret of the Magic Potion.",2018-05-12,3.8716,6.8,1266 +4150,254470,Pitch Perfect 2,"The Bellas are back, and they are better than ever. After being humiliated in front of none other than the President of the United States of America, the Bellas are taken out of the Aca-Circuit. In order to clear their name, and regain their status, the Bellas take on a seemingly impossible task: winning an international competition no American team has ever won. In order to accomplish this monumental task, they need to strengthen the bonds of friendship and sisterhood and blow away the competition with their amazing aca-magic! With all new friends and old rivals tagging along for the trip, the Bellas can hopefully accomplish their dreams.",2015-05-07,6.9764,6.847,5380 +4151,11386,The Crying Game,"Irish Republican Army member Fergus forms an unexpected bond with Jody, a kidnapped British soldier in his custody, despite the warnings of fellow IRA members Jude and Maguire. Jody makes Fergus promise he'll visit his girlfriend, Dil, in London, and when Fergus flees to the city, he seeks her out. Hounded by his former IRA colleagues, he finds himself increasingly drawn to the enigmatic, and surprising, Dil.",1992-09-02,1.7615,6.847,792 +4152,1494,Curse of the Golden Flower,"During China's Tang dynasty the emperor has taken the princess of a neighboring province as his wife. She has borne him two sons and raised his eldest. Now his control over his dominion is complete, including the royal family itself.",2006-12-14,3.197,6.847,762 +4153,446021,Bad Times at the El Royale,"Lake Tahoe, 1969. Seven strangers, each one with a secret to bury, meet at El Royale, a decadent motel with a dark past. In the course of a fateful night, everyone will have one last shot at redemption.",2018-10-04,2.7613,6.846,3701 +4154,12281,Mean Creek,"Teenagers living in small-town Oregon take a boat trip for a birthday celebration. When they get an idea to play a mean trick on the town bully, it suddenly goes too far. Soon they're forced to deal with the unexpected consequences of their actions.",2004-08-20,1.5925,6.846,381 +4155,11018,Year of the Dragon,"In New York, racist Capt. Stanley White becomes obsessed with destroying a Chinese-American drug ring run by Joey Tai, an up-and-coming young gangster as ambitious as he is ruthless. While pursuing an unauthorized investigation, White grows increasingly willing to violate police protocol, resorting to progressively violent measures -- even as his concerned wife, Connie, and his superiors beg him to consider the consequences of his actions.",1985-08-16,2.1465,6.846,448 +4156,4929,Hang 'em High,"Marshall Jed Cooper survives a hanging, vowing revenge on the lynch mob that left him dangling. To carry out his oath for vengeance, he returns to his former job as a lawman. Before long, he's caught up with the nine men on his hit list and starts dispensing his own brand of Wild West justice.",1968-04-12,4.3245,6.845,804 +4157,384018,Fast & Furious Presents: Hobbs & Shaw,"Ever since US Diplomatic Security Service Agent Hobbs and lawless outcast Shaw first faced off, they just have traded smack talk and body blows. But when cyber-genetically enhanced anarchist Brixton's ruthless actions threaten the future of humanity, they join forces to defeat him.",2019-07-31,11.864,6.8,7450 +4158,338952,Fantastic Beasts: The Crimes of Grindelwald,"Gellert Grindelwald has escaped imprisonment and has begun gathering followers to his cause—elevating wizards above all non-magical beings. The only one capable of putting a stop to him is the wizard he once called his closest friend, Albus Dumbledore. However, Dumbledore will need to seek help from the wizard who had thwarted Grindelwald once before, his former student Newt Scamander, who agrees to help, unaware of the dangers that lie ahead. Lines are drawn as love and loyalty are tested, even among the truest friends and family, in an increasingly divided wizarding world.",2018-11-14,4.9668,6.845,11120 +4159,49049,Dredd,"In the future, America is a dystopian wasteland. The latest scourge is Ma-Ma, a prostitute-turned-drug pusher with a dangerous new drug and aims to take over the city. The only possibility of stopping her is an elite group of urban police called Judges, who combine the duties of judge, jury and executioner to deliver a brutal brand of swift justice. But even the top-ranking Judge, Dredd, discovers that taking down Ma-Ma isn’t as easy as it seems in this explosive adaptation of the hugely popular comic series.",2012-09-07,5.2449,6.845,5243 +4160,14831,Help!,"An obscure Eastern cult that practices human sacrifice pursues Ringo after he unknowingly puts on a ceremonial ring (that, of course, won't come off). On top of that, a pair of mad scientists, members of Scotland Yard, and a beautiful but dead-eyed assassin all have their own plans for the Fab Four.",1965-07-29,1.3322,6.845,335 +4161,13813,Defiance,"Based on a true story, during World War II, four Jewish brothers escape their Nazi-occupied homeland of West Belarus in Poland and join the Soviet partisans to combat the Nazis. The brothers begin the rescue of roughly 1,200 Jews still trapped in the ghettos of Poland.",2008-12-31,2.6666,6.8,1788 +4162,10212,Ravenous,"Upon receiving reports of missing persons at Fort Spencer, a remote Army outpost on the Western frontier, Capt. John Boyd investigates. After arriving at his new post, Boyd and his regiment aid a wounded frontiersman who recounts a horrifying tale of a wagon train murdered by its supposed guide – a vicious U.S. Army colonel gone rogue. Fearing the worst, the regiment heads out into the wilderness to verify the gruesome claims.",1999-03-16,1.5881,6.845,649 +4163,9919,How to Lose a Guy in 10 Days,"It's the battle of wills, as Andie needs to prove she can dump a guy in 10 days, whereas Ben needs to prove he can win a girl in 10 days. Now, the clock is ticking—and the wildly entertaining comedy smash is off and running in this irresistible tale of sex, lies and outrageous romantic fireworks!",2003-02-07,7.1779,6.845,4200 +4164,258216,Nymphomaniac: Vol. I,"A man named Seligman finds a fainted wounded woman in an alley and he brings her home. She tells him that her name is Joe and that she is nymphomaniac. Joe tells her life and sexual experiences with hundreds of men since she was a young teenager while Seligman tells about his hobbies, such as fly fishing, reading about Fibonacci numbers or listening to organ music.",2013-12-25,2.292,6.844,3479 +4165,15171,Charlotte's Web,"Wilbur the pig is scared of the end of the season, because he knows that come that time, he will end up on the dinner table. He hatches a plan with Charlotte, a spider that lives in his pen, to ensure that this will never happen.",1973-03-01,1.2111,6.8,391 +4166,574436,Piranhas,A gang of teenage boys stalk the streets of Naples armed with hand guns and AK-47s to do their mob bosses' bidding – until they decide to be the bosses themselves.,2019-02-14,0.9321,6.842,521 +4167,417870,Girls Trip,"Four girlfriends take a trip to New Orleans for an annual festival and, along the way, rediscover their wild sides and strengthen the bonds of sisterhood.",2017-07-21,3.0326,6.842,1525 +4168,56590,All Star Superman,"Lex Luthor enacts his plan to rid the world of Superman, once and for all. Succeeding with solar radiation poisoning, the Man of Steel is slowly dying. With what little times remains, the Last Son of Krypton must confront the revealing of his secret identity to Lois Lane and face Luthor in a final battle.",2011-01-01,1.7569,6.848,521 +4169,10697,The Taste of Others,"Unpolished and ultra-pragmatic industrialist Jean-Jacques Castella reluctantly attends Racine's tragedy ""Berenice"" in order to see his niece play a bit part. He is taken with the play's strangely familiar-looking leading lady Clara Devaux. During the course of the show, Castella soon remembers that he once hired and then promptly fired the actress as an English language tutor. He immediately goes out and signs up for language lessons. Thinking that he is nothing but an ill-tempered philistine with bad taste, Clara rejects him until Castella charms her off her feet.",2000-03-01,1.6005,6.842,339 +4170,441393,Ash Is Purest White,"Set in China's underworld, this tale of love and betrayal follows a dancer who fired a gun to protect her mobster boyfriend during a fight. On release from prison 5 years later, she sets out to find him.",2018-09-21,1.0427,6.8,339 +4171,308032,The Stanford Prison Experiment,"In 1971, Stanford's Professor Philip Zimbardo conducts a controversial psychology experiment in which college students pretend to be either prisoners or guards, but the proceedings soon get out of hand. Based on a true story.",2015-07-17,2.5992,6.841,953 +4172,65057,The Descendants,"With his wife Elizabeth on life support after a boating accident, Hawaiian land baron Matt King takes his daughters on a trip from Oahu to Kauai to confront a young real estate broker, who was having an affair with Elizabeth before her misfortune.",2011-09-09,2.474,6.8,2886 +4173,10998,Fatal Attraction,A married man's one-night stand comes back to haunt him when that lover begins to stalk him and his family.,1987-09-18,3.9622,6.8,1588 +4174,4523,Enchanted,"The beautiful princess Giselle is banished by an evil queen from her magical, musical animated land and finds herself in the gritty reality of the streets of modern-day Manhattan. Shocked by this strange new environment that doesn't operate on a ""happily ever after"" basis, Giselle is now adrift in a chaotic world badly in need of enchantment. But when Giselle begins to fall in love with a charmingly flawed divorce lawyer who has come to her aid - even though she is already promised to a perfect fairy tale prince back home - she has to wonder: Can a storybook view of romance survive in the real world?",2007-11-20,6.59,6.841,5530 +4175,1871,Fantomas,Fantômas is a man of many disguises. He uses maquillage as a weapon. He can impersonate anyone using an array of masks and can create endless confusion by constantly changing his appearance.,1964-11-04,1.6687,6.841,765 +4176,936,The Pink Panther,"The trademark of The Phantom, a renowned jewel thief, is a glove left at the scene of the crime. Inspector Clouseau, an expert on The Phantom's exploits, feels sure that he knows where The Phantom will strike next and leaves Paris for the Tyrolean Alps, where the famous Lugashi jewel 'The Pink Panther' is going to be. However, he does not know who The Phantom really is, or for that matter who anyone else really is...",1963-12-18,3.5676,6.841,1104 +4177,947891,My Old Ass,"An 18th birthday mushroom trip brings free-spirited Elliott face-to-face with her wisecracking 39-year-old self. But when Elliott’s ""old ass"" starts handing out warnings about what her younger self should and shouldn't do, Elliott realizes she has to rethink everything about family, love, and what's becoming a transformative summer.",2024-09-13,11.418,6.84,371 +4178,429300,Adrift,"Tami Oldham and Richard Sharp couldn't anticipate that they would be sailing directly into one of the most catastrophic hurricanes in recorded history. In the aftermath of the storm, Tami awakens to find Richard badly injured and their boat in ruins. With no hope of rescue, Tami must now find the strength and determination to save herself and the only man she has ever loved.",2018-05-31,3.3405,6.84,2628 +4179,110390,A Pigeon Sat on a Branch Reflecting on Existence,"An absurdist, surrealistic and shocking pitch-black comedy, which moves freely from nightmare to fantasy to hilariously deadpan humour as it muses on man’s perpetual inhumanity to man.",2014-10-24,1.2196,6.84,467 +4180,236,Muriel's Wedding,"A young social outcast in Australia steals money from her parents to finance a vacation where she hopes to find happiness, and perhaps love.",1994-09-29,1.4338,6.84,470 +4181,1072790,Anyone But You,"After an amazing first date, Bea and Ben’s fiery attraction turns ice cold — until they find themselves unexpectedly reunited at a destination wedding in Australia. So they do what any two mature adults would do: pretend to be a couple.",2023-12-21,13.5316,6.838,2684 +4182,14752,Dil Chahta Hai,"Three inseparable childhood friends are just out of college. Nothing comes between them - until they each fall in love, and their wildly different approaches to relationships creates tension.",2001-07-24,1.9151,6.839,305 +4183,277,Underworld,"Vampires and werewolves have waged a nocturnal war against each other for centuries. But all bets are off when a female vampire warrior named Selene, who's famous for her strength and werewolf-hunting prowess, becomes smitten with a peace-loving male werewolf, Michael, who wants to end the war.",2003-09-19,5.6125,6.839,6330 +4184,49367,Two Sons of Francisco,"The story of Francisco, a very simple and poor man whose dream was to see his children become country music stars, and who made all the efforts to make it happen.",2005-08-19,0.6489,6.838,408 +4185,44249,The Legend Is Born: Ip Man,"The remarkable true story of the early life of Ip Man, the formidable kung fu genius who would become Bruce Lee's mentor; beginning at the start of his journey from his initial training through to the ultimate battle to become supreme master of the art of Wing Chun.",2010-06-24,0.4142,6.838,684 +4186,18937,Quest for Camelot,"During the times of King Arthur, Kayley is a brave girl who dreams of following her late father as a Knight of the Round Table. The evil Ruber wants to invade Camelot and take the throne of King Arthur, and Kayley has to stop him.",1998-05-15,3.1347,6.838,825 +4187,11004,Wonder Boys,Grady is a 50-ish English professor who hasn't had a thing published in years—not since he wrote his award winning 'Great American Novel' 7 years ago. This weekend proves even worse than he could imagine as he finds himself reeling from one misadventure to another in the company of a new wonder boy author.,2000-02-22,1.4961,6.838,618 +4188,10258,The Madagascar Penguins in a Christmas Caper,"During the holiday season, when the animals of the Central Park Zoo are preparing for Christmas, Private, the youngest of the penguins notices that the Polar Bear is all alone. Assured that nobody should have to spend Christmas alone, Private goes into the city for some last-minute Christmas shopping. Along the way, he gets stuffed into a stocking",2005-09-23,1.3514,6.8,370 +4189,879,Hook,"The boy who wasn't supposed to grow up—Peter Pan—does just that, becoming a soulless corporate lawyer whose workaholism could cost him his wife and kids. During his trip to see Granny Wendy in London, the vengeful Capt. Hook kidnaps Peter's kids and forces Peter to return to Neverland.",1991-04-10,6.1632,6.839,5468 +4190,1034541,Terrifier 3,"Five years after surviving Art the Clown's Halloween massacre, Sienna and Jonathan are still struggling to rebuild their shattered lives. As the holiday season approaches, they try to embrace the Christmas spirit and leave the horrors of the past behind. But just when they think they're safe, Art returns, determined to turn their holiday cheer into a new nightmare. The festive season quickly unravels as Art unleashes his twisted brand of terror, proving that no holiday is safe.",2024-10-09,18.0289,6.834,1677 +4191,369778,Chocolat,"Chocolat the clown, the first black stage performer in France, goes from anonymity to fame after forming an unprecedented duo with fellow performer Footit in the very popular in Belle Epoque Paris. But easy money, gambling, and discrimination take their toll on their friendship and Chocolat's career.",2016-02-03,1.0701,6.837,734 +4192,283366,Miss Peregrine's Home for Peculiar Children,A teenager finds himself transported to an island where he must help protect a group of orphans with special powers from creatures intent on destroying them.,2016-09-27,8.5652,6.8,10205 +4193,254578,Phoenix,"German-Jewish cabaret singer Nelly survived Auschwitz but had to undergo reconstructive surgery as her face was disfigured. Without recognizing Nelly, her former husband Johnny asks her to help him claim his wife’s inheritance. To see if he betrayed her, she agrees, becoming her own doppelganger.",2014-09-25,0.9613,6.837,448 +4194,28501,The Pit and the Pendulum,"In the sixteenth century, Francis Barnard travels to Spain to clarify the strange circumstances of his sister's death after she had married the son of a cruel Spanish Inquisitor.",1961-08-23,1.197,6.837,349 +4195,24679,Bird,Saxophone player Charlie ‘Bird’ Parker comes to New York in 1940 and is quickly noticed for his remarkable way of playing. He becomes a drug addict but his loving wife Chan tries to help him.,1988-06-01,1.5189,6.837,334 +4196,18093,Northanger Abbey,A young woman's penchant for sensational Gothic novels leads to misunderstandings in the matters of the heart.,2007-10-24,1.2989,6.837,303 +4197,9433,The Edge,"The plane carrying wealthy Charles Morse crashes down in the Alaskan wilderness. Together with the two other passengers, photographer Robert and assistant Stephen, Charles devises a plan to help them reach civilization. However, his biggest obstacle might not be the elements, or even the Kodiak bear stalking them -- it could be Robert, whom Charles suspects is having an affair with his wife and would not mind seeing him dead.",1997-09-06,3.2902,6.837,1224 +4198,1833,Rent,"This rock opera tells the story of one year in the life of a group of bohemians struggling in late 1980s East Village, New York, USA. The film centers around Mark and Roger, two roommates. While a tragedy has made Roger numb to new experiences, Mark begins capturing their world through his attempts to make a personal movie. In the year that follows, they and their friends deal with love, loss, and working together.",2005-11-17,2.0257,6.837,572 +4199,95,Armageddon,"When an asteroid threatens to collide with Earth, NASA honcho Dan Truman determines the only way to stop it is to drill into its surface and detonate a nuclear bomb. This leads him to renowned driller Harry Stamper, who agrees to helm the dangerous space mission provided he can bring along his own hotshot crew. Among them is the cocksure A.J. who Harry thinks isn't good enough for his daughter, until the mission proves otherwise.",1998-07-01,7.5425,6.837,8211 +4200,450322,The Man Who Invented Christmas,"In 1843, despite the fact that Dickens is a successful writer, the failure of his latest book puts his career at a crossroads, until the moment when, struggling with inspiration and confronting reality with his childhood memories, a new character is born in the depths of his troubled mind; an old, lonely, embittered man, so vivid, so human, that a whole world grows around him, a story so inspiring that changed the meaning of Christmas forever.",2017-10-12,3.1874,6.836,832 +4201,55347,Beginners,"Oliver meets the irreverent and unpredictable Anna only months after his father Hal Fields has passed away. This new love floods Oliver with memories of his father, who, following the death of his wife of 44 years, came out of the closet at age 75 to live a full, energized, and wonderfully tumultuous gay life – which included a younger boyfriend.",2011-06-03,2.3817,6.836,1077 +4202,1991,Death Proof,"Austin's hottest DJ, Jungle Julia, sets out into the night to unwind with her two friends Shanna and Arlene. Covertly tracking their moves is Stuntman Mike, a scarred rebel leering from behind the wheel of his muscle car, revving just feet away.",2007-05-22,5.3381,6.836,5332 +4203,884971,Goliath,Patrick is a tenacious lawyer specializing in environmental law. France is a schoolteacher who becomes an activist after her husband develops cancer from exposure to a pesticide. Mathias is an ambitious lobbyist working for an international chemical corporation. The paths of these characters collide as the lives of thousands are affected by a tragic act that sparks a powerful movement while the corporation fights to prevent the truth from being revealed.,2022-03-09,1.1639,6.835,381 +4204,238713,Spy,"A desk-bound CIA analyst volunteers to go undercover to infiltrate the world of a deadly arms dealer, and prevent diabolical global disaster.",2015-05-06,5.576,6.835,6160 +4205,138832,We're the Millers,A veteran pot dealer creates a fake family as part of his plan to move a huge shipment of weed into the U.S. from Mexico.,2013-08-07,7.2935,6.8,9109 +4206,28609,Dragon Ball Z: Dead Zone,"In order to wish for immortality and avenge his father, Garlic Jr. collects the dragon balls, kidnapping Goku's son Gohan in the process. Goku, Kami, Piccolo, and Krillin unite to rescue Gohan and save the world from being sucked into a dead zone.",1989-07-15,3.8696,6.8,580 +4207,10780,Overboard,"Heiress Joanna Stayton hires carpenter Dean Proffitt to build a closet on her yacht—and refuses to pay him for the project when it's done. But after Joanna accidentally falls overboard and loses her memory, Dean sees an opportunity to get even.",1987-12-16,4.941,6.8,896 +4208,849869,Kill Boksoon,"At work, she's a renowned assassin. At home, she's a single mom to a teenage daughter. Killing? That's easy. It's parenting that's the hard part.",2023-02-17,2.0089,6.8,465 +4209,762504,Nope,"Residents in a lonely gulch of inland California bear witness to an uncanny, chilling discovery.",2022-07-20,6.19,6.834,4455 +4210,582206,The Best Is Yet to Come,"Following a huge misunderstanding, two friends always decide to tackle everything to make up for lost time.",2019-12-04,0.7822,6.834,307 +4211,474350,It Chapter Two,"27 years after overcoming the malevolent supernatural entity Pennywise, the former members of the Losers' Club, who have grown up and moved away from Derry, are brought back together by a devastating phone call.",2019-09-04,12.8448,6.834,9014 +4212,454227,Outlaw King,"Forced into exile by the English after being crowned King of Scotland, legendary warrior Robert the Bruce fights to reclaim the throne.",2018-09-06,3.1381,6.834,1614 +4213,261102,The Misfits Club,"Valeria has just moved to Madrid after her parent's separation. What at first seems a bad start for her new life becomes the beginning of an amazing life experience. New friendships, a city full of possibilities, first love...",2014-12-25,1.0975,6.834,418 +4214,26171,Everybody's Fine,"Eight months after the death of his wife, Frank Goode looks forward to a reunion with his four adult children. When all of them cancel their visits at the last minute, Frank, against the advice of his doctor, sets out on a road trip to reconnect with his offspring. As he visits each one in turn, Frank finds that his children's lives are not quite as picture-perfect as they've made them out to be.",2009-12-04,2.3357,6.834,1014 +4215,8848,The Bank Job,"Terry is a small-time car dealer trying to leave his shady past behind and start a family. Martine is a beautiful model from Terry's old neighbourhood who knows that Terry is no angel. When Martine proposes a foolproof plan to rob a bank, Terry recognises the danger but realises this may be the opportunity of a lifetime.",2008-02-28,5.8566,6.833,2435 +4216,326359,Frozen Fever,"On Anna's birthday, Elsa and Kristoff are determined to give her the best celebration ever, but Elsa's icy powers may put more than just the party at risk.",2015-03-09,2.434,6.832,1857 +4217,15867,Interiors,"When Eve, an interior designer, is deserted by her husband of many years, Arthur, the emotionally glacial relationships of the three grown-up daughters are laid bare. Twisted by jealousy, insecurity and resentment, Renata, a successful writer; Joey, a woman crippled by indecision; and Flyn, a budding actress; struggle to communicate for the sake of their shattered mother. But when their father unexpectedly falls for another woman, his decision to remarry sets in motion a terrible twist of fate…",1978-08-02,0.5728,6.832,360 +4218,11208,Wicker Park,"Matthew, a young advertising executive in Chicago, puts his life and a business trip to China on hold when he thinks he sees Lisa, the love of his life who left him without a word two years earlier, walking out of a restaurant one day.",2004-09-03,2.2142,6.832,701 +4219,913290,Barbarian,"In town for a job interview, a young woman arrives at her Airbnb late at night only to find that it has been mistakenly double-booked and a strange man is already staying there. Against her better judgement, she decides to stay the night anyway.",2022-09-08,12.8208,6.832,2774 +4220,601796,Alienoid,"Gurus in the late Goryeo dynasty try to obtain a fabled, holy sword, and humans in 2022 hunt down an alien prisoner that is locked in a human's body. The two parties cross paths when a time-traveling portal opens up.",2022-07-20,7.5989,6.831,483 +4221,207686,The House at the End of Time,"The story of Dulce, a mother who has encounters with apparitions inside her old house. She must decipher a mystery that could trigger a prophecy: the death of her family.",2013-06-21,0.8277,6.831,316 +4222,76726,Chronicle,"Three high school students make an incredible discovery, leading to their developing uncanny powers beyond their understanding. As they learn to control their abilities and use them to their advantage, their lives start to spin out of control, and their darker sides begin to take over.",2012-02-01,4.7392,6.831,5458 +4223,14295,You Can Count on Me,"A single mother's life is thrown into turmoil after her struggling, rarely-seen younger brother returns to town.",2000-11-17,1.9349,6.831,325 +4224,10222,Kickboxer,"If your enemy refuses to be humbled... Destroy him. Accompanied by his brother Kurt, American kickboxing champion Eric Sloane, arrives in Thailand to defeat the Eastern warriors at their own sport. His opponent: ruthless fighter and Thai champion, Tong Po. Tong not only defeats Eric, he paralyzes him for life. Crazed with anger, Kurt vows revenge.",1989-04-20,4.1223,6.831,1472 +4225,7443,Chicken Run,"The creators of Wallace & Gromit bring you an exciting and original story about a group of chickens determined to fly the coop–even if they can’t fly! It’s hardly poultry in motion when Rocky attempts to teach Ginger and her feathered friends to fly…but, with teamwork, determination and a little bit o’ cluck, the fearless flock plots one last attempt in a spectacular bid for freedom.",2000-06-23,4.7502,6.8,5192 +4226,2112,Payback,"With friends like these, who needs enemies? That's the question bad guy Porter is left asking after his wife and partner steal his heist money and leave him for dead -- or so they think. Five months and an endless reservoir of bitterness later, Porter's partners and the crooked cops on his tail learn how bad payback can be.",1999-02-05,3.7188,6.831,1891 +4227,405774,Bird Box,"Five years after an ominous unseen presence drives most of society to suicide, a survivor and her two children make a desperate bid to reach safety.",2018-12-13,6.0783,6.83,10188 +4228,187017,22 Jump Street,"After making their way through high school (twice), big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team, and Schmidt infiltrates the bohemian art major scene, they begin to question their partnership. Now they don't have to just crack the case - they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men, college might be the best thing that ever happened to them.",2014-06-05,6.9172,6.83,8140 +4229,47854,Legend of the Fist: The Return of Chen Zhen,"The Japanese forces occupy Shanghai and slowly start spreading terror in the city. Chen Zhen, who was presumed dead, returns to fight against the Japanese and put an end to their tyrannical rule.",2010-09-01,2.3194,6.83,424 +4230,13510,Eden Lake,"When a young couple goes to a remote wooded lake for a romantic getaway, their quiet weekend is shattered by an aggressive group of local kids. Rowdiness quickly turns to rage as the teens terrorize the couple in unimaginable ways, and a weekend outing becomes a bloody battle for survival.",2008-09-12,5.6079,6.83,1922 +4231,5279,Gosford Park,"In 1930s England, a group of pretentious rich and famous gather together for a weekend of relaxation at a hunting resort. But when a murder occurs, each one of these interesting characters becomes a suspect.",2001-12-26,2.578,6.83,1146 +4232,440161,The Sisters Brothers,"Oregon, 1851. Hermann Kermit Warm, a chemist and aspiring gold prospector, keeps a profitable secret that the Commodore wants to know, so he sends the Sisters brothers, two notorious assassins, to capture him on his way to California.",2018-09-19,2.6094,6.831,1981 +4233,335983,Venom,"Investigative journalist Eddie Brock attempts a comeback following a scandal, but accidentally becomes the host of Venom, a violent, super powerful alien symbiote. Soon, he must rely on his newfound powers to protect the world from a shadowy organization looking for a symbiote of their own.",2018-09-28,12.896,6.829,16668 +4234,243683,Step Up All In,"All-stars from the previous Step Up installments come together in glittering Las Vegas, battling for a victory that could define their dreams and their careers.",2014-07-16,3.7339,6.829,1953 +4235,17365,The Parallax View,An ambitious reporter gets in trouble while investigating a senator's assassination which leads to a vast conspiracy involving a multinational corporation behind every event in the world's headlines.,1974-06-14,2.7303,6.829,334 +4236,8976,A Lot Like Love,"On a flight from Los Angeles to New York, Oliver and Emily make a connection, only to decide that they are poorly suited to be together. Over the next seven years, however, they are reunited time and time again, they go from being acquaintances to close friends to ... lovers?",2005-04-21,1.8984,6.829,1314 +4237,2288,Closer,"A love story about chance meetings, instant attractions, and casual betrayals. Four strangers - with one thing in common: each other.",2004-12-03,3.6412,6.829,3564 +4238,2005,Sister Act,"A Reno singer witnesses a mob murder and the cops stash her in a nunnery to protect her from the mob's hitmen. The mother superior does not trust her, and takes steps to limit her influence on the other nuns. Eventually the singer rescues the failing choir and begins helping with community projects, which gets her an interview on TV—and identification by the mob.",1992-05-28,4.0905,6.8,3288 +4239,39144,Dragon Ball: Curse of the Blood Rubies,The great King Gurumes is searching for the Dragon Balls in order to put a stop to his endless hunger. A young girl named Pansy who lives in the nearby village has had enough of the treachery and decides to seek Muten Rōshi for assistance. Can our heroes save the village and put a stop to the Gurumes Army?,1986-12-20,4.5002,6.828,352 +4240,9655,She's the Man,"Viola Hastings is in a real jam. Complications threaten her scheme to pose as her twin brother, Sebastian, and take his place at a new boarding school. She falls in love with her handsome roommate, Duke, who loves beautiful Olivia, who has fallen for Sebastian! As if that were not enough, Viola's twin returns from London ahead of schedule but has no idea that his sister has already replaced him on campus.",2006-03-17,8.0747,6.828,3147 +4241,717930,Kandahar,"After his mission is exposed, an undercover CIA operative stuck deep in hostile territory in Afghanistan must fight his way out, alongside his Afghan translator, to an extraction point in Kandahar, all whilst avoiding elite enemy forces and foreign spies tasked with hunting them down.",2023-05-25,8.6821,6.827,1122 +4242,465003,The Red Sea Diving Resort,"Sudan, East Africa, 1980. A team of Israeli Mossad agents plans to rescue and transfer thousands of Ethiopian Jews to Israel. To do so, and to avoid raising suspicions from the inquisitive and ruthless authorities, they establish as a cover a fake diving resort by the Red Sea.",2019-07-28,1.4179,6.827,830 +4243,303991,Demolition,An emotionally desperate investment banker finds hope through a woman he meets.,2016-04-06,3.2529,6.827,2325 +4244,34205,Halloweentown II: Kalabar's Revenge,"The Cromwell clan lives in the real world, except for their grandmother who lives in Halloweentown, a place where monsters go to escape reality. But now the son of the Cromwells' old enemy Kalabar has a plan to use the grandmother's book to turn Halloweentown into a grey dreary version of the real world while transforming the denizens of the real world into monsters.",2001-10-12,1.8103,6.827,341 +4245,10973,Creature from the Black Lagoon,"When scientists exploring the Amazon River stumble on a “missing link” connecting humans and fish, they plan to capture it for later study. But the Creature has plans of his own, and has set his sights on the lead scientist's beautiful fiancée, Kay.",1954-03-05,2.0255,6.827,807 +4246,9319,The Last Boy Scout,"When the girl that detective Joe Hallenback is protecting gets murdered, the boyfriend of the murdered girl attempts to investigate and solve the case. What they discover is that there is deep seated corruption going on between a crooked politician and the owner of a pro football team.",1991-12-13,4.0656,6.827,1997 +4247,9062,Love Story,"Harvard Law student Oliver Barrett IV and music student Jennifer Cavilleri share a chemistry they cannot deny - and a love they cannot ignore. Despite their opposite backgrounds, the young couple put their hearts on the line for each other. When they marry, Oliver's wealthy father threatens to disown him. Jenny tries to reconcile the Barrett men, but to no avail.",1970-12-16,2.4598,6.8,709 +4248,796499,Army of Thieves,A mysterious woman recruits bank teller Ludwig Dieter to lead a group of aspiring thieves on a top-secret heist during the early stages of the zombie apocalypse.,2021-10-29,4.2708,6.826,2139 +4249,150689,Cinderella,"When her father unexpectedly passes away, young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope, Ella's fortunes begin to change after meeting a dashing stranger in the woods.",2015-03-06,13.0234,6.8,7197 +4250,10586,The Ghost and the Darkness,"Sir Robert Beaumont is behind schedule on a railroad in Africa. Enlisting noted engineer John Henry Patterson to right the ship, Beaumont expects results. Everything seems great until the crew discovers the mutilated corpse of the project's foreman, seemingly killed by a lion. After several more attacks, Patterson calls in famed hunter Charles Remington, who has finally met his match in the bloodthirsty lions.",1996-10-11,3.9366,6.826,1084 +4251,10115,Stick It,"Haley is a naturally gifted athlete but, with her social behavior, the teen seems intent on squandering her abilities. After a final brush with the law, a judge sentences her to an elite gymnastics academy run by a legendary, hard-nosed coach. Once there, Haley's rebellious attitude wins her both friends and enemies.",2006-04-21,1.5618,6.826,583 +4252,5185,The Private Life of Sherlock Holmes,"Holmes and Dr. Watson take on the case of a beautiful woman whose husband has vanished. The investigation proves strange indeed, involving six missing midgets, villainous monks, a Scottish castle, the Loch Ness monster, and covert naval experiments.",1970-10-29,1.5425,6.826,302 +4253,760883,Blood Red Sky,"A woman with a mysterious illness is forced into action when a group of terrorists attempt to hijack a transatlantic overnight flight. In order to protect her son she will have to reveal a dark secret, and unleash the inner monster she has fought to hide.",2021-07-23,3.0538,6.825,1620 +4254,11439,The Ghost Writer,A writer stumbles upon a long-hidden secret when he agrees to help former British Prime Minister Adam Lang complete his memoirs on a remote island after the politician's assistant drowns in a mysterious accident.,2010-02-12,2.3651,6.825,2308 +4255,291805,Now You See Me 2,"One year after outwitting the FBI and winning the public’s adulation with their mind-bending spectacles, the Four Horsemen resurface only to find themselves face to face with a new enemy who enlists them to pull off their most dangerous heist yet.",2016-06-02,7.2427,6.824,10994 +4256,630004,The Vault,"Madrid, Spain, 2010. While the whole city follows the national team's successful participation in the World Cup, a group of daring thieves look for a way into one of the most secure and guarded places on the planet.",2021-03-04,3.3507,6.823,1002 +4257,9270,Brick,A teenage loner pushes his way into the underworld of a high school crime ring to investigate the disappearance of his ex-girlfriend.,2006-03-31,2.5423,6.823,1293 +4258,2614,Innerspace,"Test pilot Tuck Pendleton volunteers to test a special vessel for a miniaturization experiment. Accidentally injected into a neurotic hypochondriac, Jack Putter, Tuck must convince Jack to find his ex-girlfriend, Lydia Maxwell, to help him extract Tuck and his ship and re-enlarge them before his oxygen runs out.",1987-07-01,2.9653,6.823,1298 +4259,374416,Where Am I Going?,"Checco is 39 and lived his entire life with his parents. He loves his job where he does nothing the whole day, until something happens that will change his behavior and his life forever...",2016-01-01,0.7269,6.822,2142 +4260,253412,Everest,"Inspired by the incredible events surrounding a treacherous attempt to reach the summit of the world's highest mountain, ""Everest"" documents the awe-inspiring journey of two different expeditions challenged beyond their limits by one of the fiercest snowstorms ever encountered by mankind. Their mettle tested by the harshest of elements found on the planet, the climbers will face nearly impossible obstacles as a lifelong obsession becomes a breathtaking struggle for survival.",2015-09-10,4.8826,6.8,4999 +4261,86838,Seven Psychopaths,A struggling screenwriter inadvertently becomes entangled in the Los Angeles criminal underworld after his oddball friends kidnap a gangster's beloved Shih Tzu.,2012-10-12,3.414,6.822,4048 +4262,72190,World War Z,"Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly, the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos, Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.",2013-06-19,12.5215,6.822,15843 +4263,14011,Justice League: The New Frontier,"The human race is threatened by a powerful creature, and only the combined power of Superman, Batman, Wonder Woman, Green Lantern, Martian Manhunter and The Flash can stop it. But can they overcome their differences to thwart this enemy using the combined strength of their newly formed Justice League?",2008-02-26,1.9833,6.8,535 +4264,11071,Them!,"As a result of nuclear testing, gigantic, ferocious mutant ants appear in the American desert southwest, and a father-daughter team of entomologists join forces with the state police officer who first discovers their existence, an FBI agent and, eventually, the US Army to eradicate the menace, before it spreads across the continent — and the world.",1954-06-16,2.518,6.8,428 +4265,9737,Bad Boys,"Marcus Burnett is a henpecked family man. Mike Lowrey is a footloose and fancy free ladies' man. Both Miami policemen, they have 72 hours to reclaim a consignment of drugs stolen from under their station's nose. To complicate matters, in order to get the assistance of the sole witness to a murder, they have to pretend to be each other.",1995-04-07,7.6548,6.822,6629 +4266,9563,Any Given Sunday,A star quarterback gets knocked out of the game and an unknown third stringer is called in to replace him. The unknown gives a stunning performance and forces the aging coach to reevaluate his game plans and life. A new co-owner/president adds to the pressure of winning. The new owner must prove herself in a male dominated world.,1999-12-22,3.6741,6.823,1699 +4267,800815,The Pale Blue Eye,"West Point, New York, 1830. When a cadet at the burgeoning military academy is found hanged with his heart cut out, the top brass summons former New York City constable Augustus Landor to investigate. While attempting to solve this grisly mystery, the reluctant detective engages the help of one of the cadets: a strange but brilliant young fellow by the name of Edgar Allan Poe.",2022-12-22,6.6827,6.821,1968 +4268,567797,The Dry,Aaron Falk returns to his drought-stricken hometown to attend a tragic funeral. But his return opens a decades-old wound - the unsolved death of a teenage girl.,2021-01-01,2.9345,6.821,740 +4269,565426,To All the Boys: P.S. I Still Love You,Lara Jean and Peter have just taken their romance from pretend to officially real when another recipient of one of her love letters enters the picture.,2020-02-03,4.6781,6.8,2616 +4270,353486,Jumanji: Welcome to the Jungle,"Four teenagers in detention discover an old video game console with a game they’ve never heard of. When they decide to play, they are immediately sucked into the jungle world of Jumanji in the bodies of their avatars. They’ll have to complete the adventure of their lives filled with fun, thrills and danger or be stuck in the game forever!",2017-12-09,8.9528,6.821,13979 +4271,33542,Rumble in the Bronx,"Keong comes from Hong Kong to visit New York for his uncle's wedding. His uncle runs a market in the Bronx and Keong offers to help out while Uncle is on his honeymoon. During his stay in the Bronx, Keong befriends a neighbor kid and beats up some neighborhood thugs who cause problems at the market. One of those petty thugs in the local gang stumbles into a criminal situation way over his head.",1995-01-21,3.3142,6.8,1081 +4272,15927,A Passage to India,"Set during the period of growing influence of the Indian independence movement in the British Raj, the story begins with the arrival in India of a British woman, Miss Adela Quested, who is joining her fiancé, a city magistrate named Ronny Heaslop. She and Ronny's mother, Mrs. Moore, befriend an Indian doctor, Aziz H. Ahmed.",1984-12-14,1.9149,6.821,307 +4273,864370,Incantation,Inspired by the true story of a family who believed they were possessed by spirits. This film follows a woman who must protect her child from a curse.,2022-03-18,4.4778,6.82,740 +4274,6961,The Wedding Date,"With the wedding of her younger sister fast approaching, Kat Ellis faces the undesirable prospect of traveling alone to London for the ceremony. While this is bad enough, Jeffrey, the man who left her as they moved closer to marriage, happens to be the groom's best man. Determined to show everyone -- most of all Jeffrey -- that her romantic life is as full and thrilling as ever, Kat hires a charming male escort as her date.",2005-02-04,2.0412,6.82,1215 +4275,55725,Win Win,"When down-on-his-luck part-time high school wrestling coach Mike agrees to become legal guardian to an elderly man, his ward's troubled grandson turns out to be a star grappler, sparking dreams of a big win -- until the boy's mother retrieves him.",2011-03-18,1.0187,6.8,518 +4276,691,The Spy Who Loved Me,Russian and British submarines with nuclear missiles on board both vanish from sight without a trace. England and Russia both blame each other as James Bond tries to solve the riddle of the disappearing ships. But the KGB also has an agent on the case.,1977-07-07,4.5615,6.819,2082 +4277,581387,Ashfall,A group of unlikely heroes from across the Korean peninsula try to save the day after a volcano erupts on the mythical and majestic Baekdu Mountain.,2019-12-19,2.9657,6.8,595 +4278,426338,Holy Camp!,"María and Susana, two rebellious teenagers, spend the summer in a catholic camp. While they are grounded during a weekend, the most unexpected arrival in the most unexpected way will change their feelings about life, love and freedom.",2017-09-29,0.8708,6.818,359 +4279,397243,The Autopsy of Jane Doe,"Father and son coroners receive a mysterious unidentified corpse with no apparent cause of death. As they attempt to examine the ""Jane Doe,"" they discover increasingly bizarre clues that hold the key to her terrifying secrets.",2016-12-21,5.6719,6.818,4449 +4280,241771,Beyond the Lights,"Noni Jean is a hot new rising star. But not all is what it seems, and the pressure causes Noni to nearly fall apart - until she meets Kaz Nicol, a promising young cop and aspiring politician who's been assigned to her detail. Can Kaz's love give Noni the courage to find her own voice and break free to become the artist she was meant to be?",2014-11-14,1.77,6.8,379 +4281,235260,Son of God,"In the Holy Land, the Roman occupation has produced a cauldron of oppression, anxiety and excessive taxes levied upon the Jewish people. Fearing the wrath of Roman governor Pontius Pilate , Jewish high priest Caiaphas tries to keep control of his people. That control is threatened when Jesus arrives in Jerusalem, performing miracles and spreading messages of love and hope. Those who fear that Jesus will inspire a revolution decide that he must die.",2014-02-28,2.4319,6.818,321 +4282,56415,A Gang Story,"After growing up in a poor gypsy camp, Edmond Vidal, aka Momon, has retained a sense of family, unfailing loyalty and pride in his origins. Most of all, he has remained friends with Serge Suttel, with whom he first discovered prison life - for stealing cherries. The two of them inevitably got involved in organized crime. The team they formed, the Ganf Des Lyonnais, made them the most notorious armed robbers of the early 1970s. Their irresistible rise ended in 1974 with a spectacular arrest. Today, as he nears 60, Momon would like to forget that part of his life. He has found peace by retiring from the ""business"". He tends to his wife Janou, who suffered so in the past, and to his children and grandchildren, all of whom have great respect for this man of simple and universal values, so clear-headed and full of kindness. But then Serge Suttel, who has disowned nothing of his past, comes back into the picture.",2011-11-10,1.6112,6.818,374 +4283,10855,Naked Weapon,"A mysterious woman, known as Madame M, kidnaps forty pre-teen girls and transports them to a remote island to train them as the most deadly assassins. CIA operative Jack Chen follows the case for 6 years with no leads, but when a series of assassinations begin to occur, Jack suspects that Madame M is back in business.",2002-11-15,1.2796,6.818,377 +4284,718821,Twisters,"As storm season intensifies, the paths of former storm chaser Kate Carter and reckless social-media superstar Tyler Owens collide when terrifying phenomena never seen before are unleashed. The pair and their competing teams find themselves squarely in the paths of multiple storm systems converging over central Oklahoma in the fight of their lives.",2024-07-10,8.9008,6.818,2580 +4285,520765,Go!,"Jack is a charismatic larrikin who has just discovered the one thing he's really good at — go-kart racing. With the support of his mentor, Patrick, an old race car driver with a secret past, and his best mates Colin and Mandy, Jack must learn to control his recklessness if he is to defeat the best drivers in Australia, including the ruthless champion Dean, and win the National title.",2020-01-16,1.2175,6.817,325 +4286,82992,Fast & Furious 6,"Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries; Dominic unexpectedly gets sidetracked with facing his presumed deceased girlfriend, Letty.",2013-05-21,1.5466,6.817,10815 +4287,29702,Tenebre,"A razor-wielding serial killer is on the loose, murdering those around Peter Neal, an American mystery author in Italy to promote his newest novel.",1982-10-28,1.8207,6.817,654 +4288,13682,Pooh's Heffalump Movie,"Who or what exactly is a Heffalump? The lovable residents of the Hundred Acre Wood -- Winnie the Pooh, Rabbit, Tigger, Eeyore, Kanga and the rest of the pack -- embark on a journey of discovery in search of the elusive Heffalump. But as is always the case, this unusual road trip opens their eyes to so much more than just the creature they're seeking.",2005-02-11,1.7855,6.8,468 +4289,9972,Lock Up,"Frank Leone is nearing the end of his prison term for a relatively minor crime. Just before he is paroled, however, Warden Drumgoole takes charge. Drumgoole was assigned to a hell-hole prison after his administration was publicly humiliated by Leone, and has now arrived on the scene to ensure that Leone never sees the light of day.",1989-08-04,3.3319,6.817,1245 +4290,9503,Pope Joan,A 9th century woman of English extraction born in the German city of Ingelheim disguises herself as a man and rises through the Vatican ranks.,2009-10-22,1.2472,6.8,356 +4291,2652,Hard Candy,"Hayley’s a smart, charming teenage girl. Jeff’s a handsome, smooth fashion photographer. An Internet chat, a coffee shop meet-up, an impromptu fashion shoot back at Jeff’s place. Jeff thinks it’s his lucky night. He’s in for a surprise.",2005-01-14,2.5173,6.817,2652 +4292,1858,Transformers,Young teenager Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots – the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.,2007-06-27,3.6879,6.8,11670 +4293,252171,A Girl Walks Home Alone at Night,"In the Iranian ghost-town Bad City, a place that reeks of death and loneliness, the townspeople are unaware they are being stalked by a lonesome vampire.",2014-11-21,1.4516,6.816,897 +4294,17467,Riki-Oh: The Story of Ricky,"In 2001, where all correctional facilities have been privatized, martial artist Ricky finds himself victim to the corrupt system, found ""guilty"" of the manslaughter of an infamous crime boss.",1991-10-05,1.9427,6.822,340 +4295,11774,Lemony Snicket's A Series of Unfortunate Events,"Three wealthy children's parents are killed in a fire. When they are sent to a distant relative, they find out that he is plotting to kill them and seize their fortune.",2004-12-16,5.1715,6.816,5099 +4296,4484,La Cage aux Folles,Two gay men living in St. Tropez have their lives turned upside down when the son of one of the men announces he is getting married. They try to conceal their lifestyle and their ownership of the drag club downstairs when the fiancée and her parents come for dinner.,1978-10-20,1.191,6.816,414 +4297,41216,Legend of the Guardians: The Owls of Ga'Hoole,"When a young owl is abducted by an evil Owl army, he must escape with new-found friends and seek the legendary Guardians to stop the menace.",2010-07-10,2.9397,6.815,2362 +4298,25941,Harry Brown,An elderly ex-serviceman and widower looks to avenge his best friend's murder by doling out his own form of justice.,2009-11-11,2.649,6.818,1103 +4299,9599,The Blob,"In Arborville, California, three high school students try to protect their hometown from a gelatinous alien life form that engulfs everything it touches.",1988-08-05,3.0117,6.8,952 +4300,1903,Vanilla Sky,"David Aames has it all: wealth, good looks and gorgeous women on his arm. But just as he begins falling for the warmhearted Sofia, his face is horribly disfigured in a car accident. That's just the beginning of his troubles as the lines between illusion and reality, between life and death, are blurred.",2001-12-14,5.188,6.815,4351 +4301,393764,The African Doctor,"1975. When Seyolo Zantoko, a doctor from the Congo who has managed, along with his family, to flee tyranny, is hired by the mayor of a small town in northern France, he begins a struggle to adapt to a new life and gain the trust of the prejudiced villagers.",2016-06-08,1.0119,6.814,657 +4302,131631,The Hunger Games: Mockingjay - Part 1,Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.,2014-11-19,10.9631,6.814,16199 +4303,41233,Step Up 3D,"A tight-knit group of New York City street dancers, including Luke and Natalie, team up with NYU freshman Moose, and find themselves pitted against the world's best hip hop dancers in a high-stakes showdown that will change their lives forever.",2010-08-04,3.6103,6.814,1929 +4304,22051,Adam,"Adam, a lonely man with Asperger's Syndrome, develops a relationship with his upstairs neighbor, Beth.",2009-07-07,1.0784,6.814,447 +4305,9387,Conan the Barbarian,"A horde of rampaging warriors massacre the parents of young Conan and enslave the young child for years on The Wheel of Pain. As the sole survivor of the childhood massacre, Conan is released from slavery and taught the ancient arts of fighting. Transforming himself into a killing machine, Conan travels into the wilderness to seek vengeance on Thulsa Doom, the man responsible for killing his family. In the wilderness, Conan takes up with the thieves Valeria and Subotai. The group comes upon King Osric, who wants the trio of warriors to help rescue his daughter who has joined Doom in the hills.",1982-04-02,4.9581,6.814,2601 +4306,766798,Parallel Mothers,"Two unmarried women who have become pregnant by accident and are about to give birth meet in a hospital room: Janis, in her late-thirties, unrepentant and happy; Ana, a teenager, remorseful and frightened.",2021-10-08,2.2858,6.813,980 +4307,446894,Smallfoot,A bright young yeti finds something he thought didn't exist—a human. News of this “smallfoot” throws the simple yeti community into an uproar over what else might be out there in the big world beyond their snowy village.,2018-09-20,2.8206,6.813,1569 +4308,84175,Beasts of the Southern Wild,"Hushpuppy, an intrepid six-year-old girl, lives with her father, Wink, in 'the Bathtub', a southern Delta community at the edge of the world. Wink’s tough love prepares her for the unraveling of the universe—for a time when he’s no longer there to protect her. When Wink contracts a mysterious illness, nature flies out of whack—temperatures rise and the ice caps melt, unleashing an army of prehistoric creatures called aurochs. With the waters rising, the aurochs coming, and Wink’s health fading, Hushpuppy goes in search of her lost mother.",2012-06-29,1.1433,6.813,1083 +4309,24750,Time After Time,Writer H. G. Wells pursues Jack the Ripper to modern day San Francisco after the infamous serial killer steals his time machine to escape the 19th century.,1979-09-28,1.3907,6.8,351 +4310,11144,They Called Him Bulldozer,"The ""Bulldozer"", a former football star, is now working as a fisherman. As a group of street-people arranges a football match against the local Armybase, he is asked to be their trainer. His boat was damaged by a submarine and he currently has no work, so he agrees.",1978-09-15,1.059,6.813,324 +4311,2300,Space Jam,"With their freedom on the line, the Looney Tunes seek the help of NBA superstar Michael Jordan to win a basketball game against a team of moronic aliens.",1996-11-15,5.0195,6.813,6169 +4312,974931,Totally Killer,"When the infamous ""Sweet Sixteen Killer"" returns 35 years after his first murder spree to claim another victim, 17-year-old Jamie accidentally travels back in time to 1987, determined to stop the killer before he can start.",2023-09-28,7.9347,6.812,980 +4313,426249,Lords of Chaos,A teenager's quest to launch Norwegian Black Metal in Oslo in the 1990s results in a very violent outcome.,2018-09-20,2.0537,6.812,501 +4314,290864,Kung Fu Jungle,"A martial arts instructor working at a police academy gets imprisoned after killing a man by accident. But when a vicious killer starts targeting martial arts masters, the instructor offers to help the police in return for his freedom.",2014-10-31,4.2794,6.812,479 +4315,225574,Non-Stop,"Bill Marks is a Federal Air Marshall for whom every day is the same until this one. On this plane ride, he starts receiving text messages from someone claiming to be on the flight and threatening to kill passengers. In a race against the clock, he must identify and stop the killer to save everyone on board.",2014-02-26,3.9165,6.812,5484 +4316,37768,Talcum Powder,"Sergio Benvenuti is a shy seller of contracts for a Roman company of music, but because of his character he cannot find even a customer, so he asks for help from a fellow named Nadia.",1982-01-22,0.5502,6.812,466 +4317,36647,Blade,"The Daywalker known as ""Blade"" - a half-vampire, half-mortal man - becomes the protector of humanity against an underground army of vampires.",1998-08-21,7.1095,6.812,6317 +4318,11617,Rio Grande,"Lt. Col. Kirby Yorke is posted on the Texas frontier to defend settlers against depredations of marauding Apaches. Col. Yorke is under considerable stress by a serious shortage of troops of his command. Tension is added when Yorke's son (whom he hasn't seen in fifteen years), Trooper Jeff Yorke, is one of 18 recruits sent to the regiment.",1950-11-15,2.3889,6.812,357 +4319,11590,Slap Shot,"To build up attendance at their games, the management of a struggling minor-league hockey team signs up the Hanson Brothers, three hard-charging players whose job is to demolish the opposition.",1977-02-25,1.3352,6.8,398 +4320,8292,Four Brothers,Four adopted brothers return to their Detroit hometown when their mother is murdered and vow to exact revenge on the killers.,2005-08-11,3.9727,6.812,2247 +4321,795,City of Angels,"When a guardian angel – who invisibly watches over the citizens of Los Angeles – becomes captivated by a strong-willed heart surgeon, he ponders trading in his pure, otherworldly existence for a mortal life with his beloved. The couple embarks on a tender but forbidden romance spanning heaven and Earth.",1998-04-10,3.6842,6.813,2235 +4322,956842,Fly Me to the Moon,"Sparks fly in all directions as marketing maven Kelly Jones, brought in to fix NASA's public image, wreaks havoc on Apollo 11 launch director Cole Davis' already difficult task of putting a man on the moon. When the White House deems the mission too important to fail, Jones is directed to stage a fake moon landing as backup, and the countdown truly begins.",2024-07-10,4.5015,6.811,983 +4323,596161,Let Him Go,"Following the loss of their son, a retired sheriff and his wife leave their Montana ranch to rescue their young grandson from the clutches of a dangerous family living off the grid in the Dakotas.",2020-11-05,2.5247,6.8,721 +4324,508664,Danger Close: The Battle of Long Tan,"Vietnam War, 1966. Australia and New Zealand send troops to support the United States and South Vietnamese in their fight against the communist North. Soldiers are very young men, recruits and volunteers who have never been involved in a combat. On August 18th, members of Delta Company will face the true horror of a ruthless battle among the trees of a rubber plantation called Long Tân. They are barely a hundred. The enemy is a human wave ready to destroy them.",2019-08-08,2.2212,6.81,337 +4325,401898,Thelma,A college student starts to experience extreme seizures. She soon learns that the violent episodes are a symptom of inexplicable abilities.,2017-09-15,1.8371,6.81,1060 +4326,377154,Being 17,"Damien lives with his mother Marianne, a doctor, while his father, a pilot, is on a tour of duty abroad with the French military. At school, Damien is bullied by Thomas, who lives in the farming community up in the mountains. The boys find themselves living together when Marianne invites Thomas to come and stay with them while his mother is ill in hospital. Damien must learn to live with the boy who terrorized him.",2016-02-27,0.9099,6.8,368 +4327,59387,The Powerpuff Girls Movie,"After destroying the city of Townsville in a game of tag, a trio of superpowered little girls must redeem themselves by stopping a vengeful monkey's plot for world domination.",2002-07-03,2.2087,6.81,327 +4328,37735,Easy A,"Olive, an average high school student, sees her below-the-radar existence turn around overnight once she decides to use the school's gossip grapevine to advance her social standing. Now her classmates are turning against her and the school board is becoming concerned, including her favorite teacher and the distracted guidance counselor. With the support of her hilariously idiosyncratic parents and a little help from a long-time crush, Olive attempts to take on her notorious new identity and crush the rumor mill once and for all.",2010-09-16,6.5683,6.81,7068 +4329,19997,Niagara,"Rose Loomis and her older, gloomier husband, George, are vacationing at a cabin in Niagara Falls, N.Y. The couple befriend Polly and Ray Cutler, who are honeymooning in the area. Polly begins to suspect that something is amiss between Rose and George, and her suspicions grow when she sees Rose in the arms of another man. While Ray initially thinks Polly is overreacting, things between George and Rose soon take a shockingly dark turn.",1953-01-26,2.0827,6.8,404 +4330,1947,An Unfinished Life,"Stoic and heartbroken, Einar Gilkyson quietly lives in the rugged Wyoming ranchlands alongside his only trusted friend, Mitch Bradley. One day, the woman he blames for the death of his only son arrives at his door broke, desperate and with a granddaughter he's never known. But even as buried anger and accusations resurface, the way is opened for unexpected connection, adventure and forgiveness.",2005-09-09,2.2688,6.81,643 +4331,776797,The Sadness,"A young couple is pushed to the limits of sanity as they attempt to be reunited amid the chaos of a pandemic outbreak. The streets erupt into violence and depravity, as those infected are driven to enact the most cruel and ghastly things imaginable.",2021-01-22,5.952,6.809,978 +4332,283704,Leopardi,"In 19th-century Italy, Giacomo Leopardi channels his debilitating illness and isolation into poetry.",2014-10-16,0.5082,6.809,661 +4333,128136,My Awkward Sexual Adventure,A hyper-repressed and schlubby accountant (Jonas Chernick) strikes a deal with a worldly but disorganized stripper (Emily Hampshire): he'll help her with her crushing debt if she helps him become a better lover.,2012-09-11,1.4666,6.8,351 +4334,109417,Battle of the Year,"A down-on-his-luck coach is hired to prepare a team of the best American dancers for an international tournament that attracts all the best crews from around the world, but the Americans haven't won in fifteen years.",2013-09-21,1.6713,6.809,345 +4335,12205,Dark Water,A woman in the midst of an unpleasant divorce moves to an eerie apartment building with her young daughter. The ceiling of their apartment has a dark and active leak.,2002-01-19,2.2539,6.809,650 +4336,10060,Get Rich or Die Tryin',"A tale of an inner city drug dealer who turns away from crime to pursue his passion, rap music.",2005-11-09,4.2255,6.81,957 +4337,8881,Che: Part One,"The Argentine, begins as Che and a band of Cuban exiles (led by Fidel Castro) reach the Cuban shore from Mexico in 1956. Within two years, they mobilized popular support and an army and toppled the U.S.-friendly regime of dictator Fulgencio Batista.",2008-09-05,2.0678,6.8,772 +4338,974635,Hit Man,A mild-mannered professor moonlighting as a fake hit man in police stings ignites a chain reaction of trouble when he falls for a potential client.,2024-05-16,5.0827,6.809,1369 +4339,597156,The Boys in the Band,"At a birthday party in 1968 New York, a surprise guest and a drunken game leave seven gay friends reckoning with unspoken feelings and buried truths.",2020-09-30,1.1659,6.808,437 +4340,107985,The World's End,Five friends who reunite in an attempt to top their epic pub crawl from 20 years earlier unwittingly become humankind's only hope for survival.,2013-07-18,4.6035,6.808,5590 +4341,14611,Ultimate Avengers 2,"Mysterious Wakanda lies in the darkest heart of Africa, unknown to most of the world. An isolated land hidden behind closed borders, fiercely protected by its young king: Black Panther. But when brutal alien invaders attack, the threat leaves Black Panther with no option but to go against the sacred decrees of his people and ask for help from outsiders.",2006-08-08,1.8871,6.808,305 +4342,11708,Chitty Chitty Bang Bang,"A hapless inventor finally finds success with a flying car, which a dictator from a foreign government sets out to take for himself.",1968-12-17,3.6607,6.8,697 +4343,9746,Kundun,"The Tibetans refer to the Dalai Lama as 'Kundun', which means 'The Presence'. He was forced to escape from his native home, Tibet, when communist China invaded and enforced an oppressive regime upon the peaceful nation. The Dalai Lama escaped to India in 1959 and has been living in exile in Dharamsala ever since.",1997-12-25,1.5896,6.8,461 +4344,9314,Nineteen Eighty-Four,George Orwell's novel of a totalitarian future society in which a man whose daily work is rewriting history tries to rebel by falling in love.,1984-11-09,4.1535,6.8,1521 +4345,8974,The War of the Worlds,"The residents of a small town are excited when a flaming meteor lands in the hills, until they discover it is the first of many transport devices from Mars bringing an army of invaders invincible to any man-made weapon, even the atomic bomb.",1953-08-13,3.9526,6.808,656 +4346,796,Cruel Intentions,"Slaking a thirst for dangerous games, Kathryn challenges her stepbrother, Sebastian, to deflower their headmaster's daughter before the summer ends. If he succeeds, the prize is the chance to bed Kathryn. But if he loses, Kathryn will claim his most prized possession.",1999-03-05,7.2362,6.808,3381 +4347,431,Cube,"A group of strangers find themselves trapped in a maze-like prison. It soon becomes clear that each of them possesses the peculiar skills necessary to escape, if they don't wind up dead first.",1998-07-11,3.5597,6.808,4936 +4348,759175,The Princess,"A beautiful, strong-willed young royal refuses to wed the cruel sociopath to whom she is betrothed and is kidnapped and locked in a remote tower of her father’s castle. With her scorned, vindictive suitor intent on taking her father’s throne, the princess must protect her family and save the kingdom.",2022-06-16,2.3461,6.8,809 +4349,524434,Eternals,"The Eternals are a team of ancient aliens who have been living on Earth in secret for thousands of years. When an unexpected tragedy forces them out of the shadows, they are forced to reunite against mankind’s most ancient enemy, the Deviants.",2021-11-03,9.691,6.8,8681 +4350,401847,Can You Ever Forgive Me?,"When a bestselling celebrity biographer is no longer able to get published because she has fallen out of step with current tastes, she turns her art form to deception.",2018-10-19,1.876,6.807,1300 +4351,26719,House of Games,"A psychiatrist comes to the aid of a compulsive gambler and is led by a smooth-talking grifter into the shadowy but compelling world of stings, scams, and con men.",1987-10-11,1.3003,6.8,321 +4352,11092,Presumed Innocent,"Rusty Sabich is a deputy prosecutor engaged in an obsessive affair with a coworker who is murdered. Soon after, he's accused of the crime. And his fight to clear his name becomes a whirlpool of lies and hidden passions.",1990-07-27,2.7925,6.807,743 +4353,11054,Hairspray,"'Pleasantly plump' teenager Tracy Turnblad achieves her dream of becoming a regular on the Corny Collins Dance Show. Now a teen hero, she starts using her fame to speak out for the causes she believes in, most of all integration. In doing so, she earns the wrath of the show's former star, Amber Von Tussle, as well as Amber's manipulative, pro-segregation parents. The rivalry comes to a head as Amber and Tracy vie for the title of Miss Auto Show 1963.",1988-02-26,1.3915,6.807,425 +4354,438747,Tangled: Before Ever After,"Rapunzel grapples with the responsibilities of being a princess and the overprotective ways of her father. While she wholeheartedly loves Eugene, Rapunzel does not share his immediate desire to get married and settle down within the castle walls. Determined to live life on her own terms, she and her tough-as-nails Lady-in-Waiting Cassandra embark on a secret adventure where they encounter mystical rocks that magically cause Rapunzel's long blonde hair to grow back. Impossible to break and difficult to hide, Rapunzel must learn to embrace her hair and all that it represents.",2017-03-10,2.8063,6.806,377 +4355,74465,We Bought a Zoo,"Benjamin has lost his wife and, in a bid to start his life over, purchases a large house that has a zoo – welcome news for his daughter, but his son is not happy about it. The zoo is in need of renovation and Benjamin sets about the work with the head keeper and the rest of the staff, but, the zoo soon runs into financial trouble.",2011-12-08,4.5842,6.806,2799 +4356,8835,Legally Blonde,"Fashionable sorority queen Elle Woods has it all, but, she wants nothing more than to be Mrs. Warner Huntington III. But he dumps her before heading to Harvard Law School. Elle rallies all of her resources and gets into Harvard, determined to win him back. While there, she figures out that there is more to herself than just good looks.",2001-07-13,9.1016,6.806,4238 +4357,634528,The Marksman,"Jim Hanson’s quiet life is suddenly disturbed by two people crossing the US/Mexico border – a woman and her young son – desperate to flee a Mexican cartel. After a shootout leaves the mother dead, Jim becomes the boy’s reluctant defender. He embraces his role as Miguel’s protector and will stop at nothing to get him to safety, as they go on the run from the relentless assassins.",2021-01-15,4.0061,6.805,1661 +4358,606566,The Best Years,"Italy from the '80s to the present day, through the dreams, loves, successes and failures of four friends.",2020-02-13,0.689,6.8,419 +4359,171337,Siberian Education,"The story of a gang of children growing up in a community of banished criminals, in a forgotten corner of the former Soviet Union. This community rejects the world outside. The only law it obeys… is its own. Against this backdrop two best friends, Kolyma and Gagarin, gradually become fierce enemies as they find themselves on opposite sides of the strict code of honour of the ‘honest criminal’ brotherhood.",2013-02-27,1.693,6.8,545 +4360,57243,The Women on the 6th Floor,"Paris, in the early 1960s. Jean-Louis Joubert is a serious but uptight stockbroker, married to Suzanne, a starchy class-conscious woman and father of two arrogant teenage boys, currently in a boarding school. The affluent man lives a steady yet boring life. At least until, due to fortuitous circumstances, Maria, the charming new maid at the service of Jean-Louis' family, makes him discover the servants' quarter on the sixth floor of the luxury building he owns and lives in. There live a crowd of lively Spanish maids who will help Jean-Louis to open to a new civilization and a new approach of life. In their company - and more precisely in the company of beautiful Maria - Jean-Louis will gradually become another man, a better man.",2011-02-16,0.9342,6.8,390 +4361,17612,Lost and Delirious,"After starting at an upmarket boarding school, a teenage girl forms close friendships with her two older roommates. However, when she discovers that her new friends are lovers she finds herself caught in a complicated situation.",2001-01-21,1.6831,6.805,510 +4362,3509,A Scanner Darkly,An undercover cop in a not-too-distant future becomes involved with a dangerous new drug and begins to lose his own identity as a result.,2006-07-07,2.0151,6.805,1827 +4363,974262,Descendants: The Rise of Red,"After the Queen of Hearts incites a coup on Auradon, her rebellious daughter Red and Cinderella's perfectionist daughter Chloe join forces and travel back in time to try to undo the traumatic event that set Red's mother down her villainous path.",2024-07-11,9.6866,6.804,432 +4364,534490,Avengement,"While on a prison furlough, a lowly criminal evades his guards and returns to his old stomping ground to take revenge on the people who turned him into a cold blooded killer.",2019-05-24,7.2518,6.804,533 +4365,256917,The Water Diviner,"In 1919, Australian farmer Joshua Connor travels to Turkey to discover the fate of his three sons, reported missing in action. Holding on to hope, Joshua must travel across the war-torn landscape to find the truth and his own peace.",2014-12-25,2.5154,6.804,1268 +4366,154400,The Drop,"Bob Saginowski finds himself at the center of a robbery gone awry and entwined in an investigation that digs deep into the neighborhood's past where friends, families, and foes all work together to make a living - no matter the cost.",2014-09-12,5.3729,6.804,2273 +4367,76535,Marvel One-Shot: A Funny Thing Happened on the Way to Thor's Hammer,Agent Coulson stops at a convenience store and deals with a coincidental robbery during his visit.,2011-10-25,1.3356,6.804,515 +4368,44835,Hesher,A young boy has lost his mother and is losing touch with his father and the world around him. Then he meets Hesher who manages to make his life even more chaotic.,2010-01-22,1.1551,6.804,701 +4369,37137,The Naked Gun 2½: The Smell of Fear,"Bumbling lieutenant Frank Drebin is out to foil the big boys in the energy industry, who intend to suppress technology that will put them out of business.",1991-06-28,9.43,6.803,2431 +4370,13648,Resident Evil: Degeneration,"Leon S. Kennedy and Claire Redfield must battle a rogue warrior seeking revenge after unleashing the deadly G-Virus, whilst a mutated monster goes on a rampage.",2008-02-13,2.436,6.804,1108 +4371,11129,Human Traffic,"For Jip, Lulu, Koop, Nina and Moff, the dead-end jobs they endure during the week just kill the time until Friday night. That's when they cut very loose and get on the rollercoaster ride that takes them right through to Monday morning.",1999-06-04,1.9792,6.8,365 +4372,10045,District B13,"Set in the ghettos of Paris in 2010, an undercover cop and ex-thug try to infiltrate a gang in order to defuse a neutron bomb.",2004-11-09,3.4826,6.804,1896 +4373,5994,The Family Man,"Jack's lavish, fast-paced lifestyle changes one Christmas night when he stumbles into a grocery store holdup and disarms the gunman. The next morning he wakes up in bed lying next to Kate, his college sweetheart he left in order to pursue his career, and to the horrifying discovery that his former life no longer exists. As he stumbles through this alternate suburban universe, Jack finds himself at a crossroad where he must choose between his high-power career and the woman he loves.",2000-12-12,3.6879,6.804,2047 +4374,643882,The Princess Switch: Switched Again,"When Duchess Margaret unexpectedly inherits the throne & hits a rough patch with Kevin, it’s up to Stacy to save the day before a new lookalike — party girl Fiona — foils their plans.",2020-11-19,2.2424,6.803,895 +4375,604578,Spontaneous,"When students in their high school begin inexplicably exploding (literally), seniors Mara and Dylan struggle to survive in a world where each moment may be their last.",2020-10-02,1.4128,6.803,548 +4376,332979,Bleed for This,"The inspirational story of World Champion Boxer Vinny Pazienza, who after a near fatal car crash, which left him not knowing if he'd ever walk again, made one of sports most incredible comebacks.",2016-11-04,1.9738,6.8,800 +4377,253331,Black or White,"A grieving widower is drawn into a custody battle over his granddaughter, whom he helped raise her entire life.",2014-09-06,1.1995,6.8,351 +4378,13342,Fast Times at Ridgemont High,"Based on the real-life adventures chronicled by Cameron Crowe, Fast Times follows a group of high school students growing up in Southern California. Stacy Hamilton and Mark Ratner are looking for a love interest, and are helped along by their older classmates, Linda Barrett and Mike Damone, respectively. At the center of the film is Jeff Spicoli, a perpetually stoned surfer who faces-off with the resolute Mr. Hand—a man convinced that everyone is on dope.",1982-08-13,3.0562,6.803,1295 +4379,10297,How to Marry a Millionaire,"Three women set out to find eligible millionaires to marry, but find true love in the process.",1953-10-29,2.0864,6.803,531 +4380,1978,Stage Fright,A struggling actress tries to help a friend prove his innocence when he's accused of murdering the husband of a high-society entertainer.,1950-02-23,1.0738,6.8,340 +4381,252178,'71,A young British soldier must find his way back to safety after his unit accidentally abandons him during a riot in the streets of Belfast.,2014-10-10,2.463,6.802,1153 +4382,38285,Il ragazzo di campagna,A man is forced to completely change his habits when he decides to move from the country to the city.,1984-12-20,0.5103,6.8,398 +4383,12246,Mongol: The Rise of Genghis Khan,"The story recounts the early life of Genghis Khan, a slave who went on to conquer half the world in the 11th century.",2007-09-20,2.0947,6.8,717 +4384,369885,Allied,"In 1942, an intelligence officer in North Africa encounters a female French Resistance fighter on a deadly mission behind enemy lines. When they reunite in London, their relationship is tested by the pressures of war.",2016-11-23,5.1514,6.8,4623 +4385,9282,11:14,Tells the seemingly random yet vitally connected story of a set of incidents that all converge one evening at 11:14pm. The story follows the chain of events of five different characters and five different storylines that all converge to tell the story of murder and deceit.,2003-09-05,1.3003,6.8,890 +4386,8366,Manitou's Shoe,"Abahachi, Chief of the Apache Indians, and his blood brother Ranger maintain peace and justice in the Wild West. One day, Abahachi needs to take up a credit from the Shoshone Indians to finance his tribe's new saloon. Unfortunately Santa Maria, who sold the saloon, betrays Abahachi, takes the money and leaves. Soon, the Shoshones are on the warpath to get their money back, and Abahachi is forced to organize it quickly.",2001-07-11,2.1488,6.801,521 +4387,370663,Below Her Mouth,An unexpected affair quickly escalates into a heart-stopping reality for two women whose passionate connection changes their lives forever.,2017-02-10,17.8286,6.8,1242 +4388,67660,Think Like a Man,"The balance of power in four couples’ relationships is upset when the women start using the advice in Steve Harvey’s book, Act Like A Lady, Think Like A Man, to get more of what they want from their men. When the men realize that the women have gotten a hold of their relationship “playbook,” they decide that the best defense is a good offense and come up with a plan to use this information to their advantage.",2012-04-20,2.9908,6.8,858 +4389,44629,Animal Kingdom,"Joshua “J” is taken in by his extended family after his mother dies of an overdose. The clan, ruled by J’s scheming grandmother, is heavily involved in criminal activities, and J is soon indoctrinated into their way of life. But J is given a chance to take another path when a cop seeks to help him.",2010-06-03,2.0273,6.8,847 +4390,19548,The Restaurant,"A great French restaurant's owner, Monsieur Septime, is thrust into intrigue and crime, when one of his famous guests disappears.",1966-09-09,1.4168,6.8,518 +4391,16995,State of Play,"When a congressional aide is killed, a Washington, D.C. journalist starts investigating the case involving the Representative, his old college friend.",2009-04-17,2.7869,6.8,2018 +4392,646207,The Ice Road,"After a remote diamond mine collapses in far northern Canada, an ice road driver must lead an impossible rescue mission over a frozen ocean to save the trapped miners.",2021-06-24,6.1225,6.799,1770 +4393,629015,Shut In,A young single mother is held captive along with her two children by a violent ex and must plot their escape before it’s too late.,2022-03-24,1.6109,6.8,373 +4394,14392,The Warlords,The civil war in China has ruined many lives including General Pang's. A wounded General Pang is saved by a beautiful young woman along with two other men. Together they vow to eradicate the rebels.,2007-12-12,2.3732,6.799,343 +4395,475132,A Private War,"One of the most celebrated war correspondents of our time, Marie Colvin is an utterly fearless and rebellious spirit, driven to the frontlines of conflicts across the globe to give voice to the voiceless.",2018-11-16,1.9364,6.798,517 +4396,424781,Sorry to Bother You,"In an alternate present-day version of Oakland, black telemarketer Cassius Green discovers a magical key to professional success – which propels him into a macabre universe.",2018-07-06,3.5376,6.798,1631 +4397,262551,Babysitting,"Looking for a baby-sitter for the night, Marc Schaudel entrusts his son Remy to the care of his employee Franck, a straight man. But the thing that Marc doesn't know, is that Franck is getting 30 years old this weekend and that his son Remy is a very capricious child. The next day, Marc and his wife Claire are awakened by a call from the police. Remy and Franck are missing, and the house is totally devastated. The police finds a camera in the leftovers. Marc, Claire and the police start watching the video that has been recorded the day before during the night and find out what happened to Franck and Remy.",2014-04-16,2.0191,6.798,1964 +4398,41402,Let Me In,A bullied young boy befriends a young female vampire who lives in secrecy with her guardian. A remake of the movie “Let The Right One In” which was an adaptation of a book.,2010-10-01,3.1791,6.798,2097 +4399,475759,2048: Nowhere to Run,"“2048: Nowhere to Run” takes place one year before the events of Blade Runner 2049. The short film focuses on Sapper, a man who is trying to make it through life day-by-day without turning back to his old ways. We’re introduced to both the gentle nature of Sapper and the violence he’s capable of when set off.",2017-09-14,1.4586,6.797,349 +4400,340485,American Honey,"A teenage girl with nothing to lose joins a traveling magazine sales crew, and gets caught up in a whirlwind of hard partying, law bending and young love as she criss-crosses the Midwest with a band of misfits.",2016-09-30,5.0821,6.797,881 +4401,299537,Captain Marvel,"The story follows Carol Danvers as she becomes one of the universe’s most powerful heroes when Earth is caught in the middle of a galactic war between two alien races. Set in the 1990s, Captain Marvel is an all-new adventure from a previously unseen period in the history of the Marvel Cinematic Universe.",2019-03-06,8.4621,6.797,16186 +4402,15247,The Ipcress File,"Sly and dry intelligence agent Harry Palmer is tasked with investigating British Intelligence security, and is soon enmeshed in a world of double-dealing, kidnap and murder when he finds a traitor operating at the heart of the secret service.",1965-03-18,1.0303,6.797,323 +4403,419635,Kodachrome,"Matt Ryder is convinced to drive his estranged and dying father Benjamin Ryder cross country to deliver four old rolls of Kodachrome film to the last lab in the world that can develop them before it shuts down for good. Along with Ben's nurse Zooey, the three navigate a world changing from analogue to digital while trying to put the past behind them.",2017-09-08,1.3183,6.796,460 +4404,158011,The Call,"Jordan Turner is an experienced 911 operator but when she makes an error in judgment and a call ends badly, Jordan is rattled and unsure if she can continue. But when teenager Casey Welson is abducted in the back of a man's car and calls 911, Jordan is the one called upon to use all of her experience, insights and quick thinking to help Casey escape, and not just to save her, but to make sure the man is brought to justice.",2013-03-14,3.0808,6.796,2940 +4405,18198,Barbie Mariposa,"Elina, heroine of the Fairytopia films tells her friend Bibble the story of Flutterfield, a faraway kingdom populated by fairies with butterfly wings. Henna, the evil butterfly fairy has poisoned the queen of Flutterfield in an attempt to take over the kingdom.",2008-02-26,2.9681,6.796,526 +4406,1946,eXistenZ,A game designer on the run from assassins must play her latest virtual reality creation with a marketing trainee to determine if the game has been damaged.,1999-04-14,3.031,6.796,2028 +4407,619730,Don't Worry Darling,"Alice and Jack are lucky to be living in the idealized community of Victory, the experimental company town housing the men who work for the top-secret Victory Project and their families. But when cracks in their idyllic life begin to appear, exposing flashes of something much more sinister lurking beneath the attractive façade, Alice can’t help questioning exactly what they’re doing in Victory, and why.",2022-09-21,6.0032,6.795,2681 +4408,514921,The Aeronauts,"In 1862, daredevil balloon pilot Amelia Wren teams up with pioneering meteorologist James Glaisher to advance human knowledge of the weather and fly higher than anyone in history. While breaking records and advancing scientific discovery, their voyage to the very edge of existence helps the unlikely pair find their place in the world they have left far below them. But they face physical and emotional challenges in the thin air, as the ascent becomes a fight for survival.",2019-11-04,2.1934,6.8,1137 +4409,188166,Blue Ruin,"When the quiet life of a beach bum is upended by dreadful news, he sets off for his childhood home to carry out an act of vengeance. However, he proves an inept assassin and finds himself in a brutal fight to protect his estranged family.",2014-04-25,1.3447,6.8,1514 +4410,145247,The 100 Year-Old Man Who Climbed Out the Window and Disappeared,"After living a long and colorful life, Allan Karlsson finds himself stuck in a nursing home. On his 100th birthday, he leaps out a window and begins an unexpected journey.",2013-12-25,2.0064,6.795,958 +4411,39013,Winter's Bone,"After discovering her father put their house up for his bail bond and then disappeared, 17-year-old Ree Dolly must confront the local criminal underworld and the harsh Ozark wilderness in order to to track down her father and save her family.",2010-06-11,2.4078,6.795,1844 +4412,29161,Phenomena,"A young girl, with an amazing ability to communicate with insects, is transferred to an exclusive Swiss boarding school, where her unusual capability might help solve a string of murders.",1985-01-25,1.9062,6.8,856 +4413,9481,The Bone Collector,"Lincoln Rhyme was the department's top homicide detective and leading expert in criminal forensics until an injury left him paralyzed, depressed, and incapable of working. But when a gruesome murder in Manhattan leaves detectives baffled, they call on Rhyme to help solve the mystery. Amelia Donaghy, a rookie cop whose quick thinking preserved a gruesome murder scene, is enlisted by Rhyme to be his on-the-scene forensics expert. With Amelia reluctantly acting as Rhyme's able-bodied go-between, the pair piece together cryptic clues the killer leaves behind at the scene of the crime, hoping to catch the grisly serial killer.",1999-11-04,3.967,6.795,3662 +4414,5038,Vicky Cristina Barcelona,"Two girlfriends on a summer holiday in Spain become enamored with the same painter, unaware that his ex-wife, with whom he has a tempestuous relationship, is about to re-enter the picture.",2008-08-15,4.3398,6.8,3831 +4415,3079,The Curse of Frankenstein,Baron Victor Frankenstein has discovered life's secret and unleashed a blood-curdling chain of events resulting from his creation: a cursed creature with a horrid face — and a tendency to kill.,1957-05-20,1.1839,6.795,314 +4416,126963,Dragon Ball Z: Battle of Gods,"The events of Battle of Gods take place some years after the battle with Majin Buu, which determined the fate of the entire universe. After awakening from a long slumber, Beerus, the God of Destruction is visited by Whis, his attendant and learns that the galactic overlord Frieza has been defeated by a Super Saiyan from the North Quadrant of the universe named Goku, who is also a former student of the North Kai. Ecstatic over the new challenge, Goku ignores King Kai's advice and battles Beerus, but he is easily overwhelmed and defeated. Beerus leaves, but his eerie remark of ""Is there nobody on Earth more worthy to destroy?"" lingers on. Now it is up to the heroes to stop the God of Destruction before all is lost.",2013-03-30,5.7893,6.8,1580 +4417,20504,The Book of Eli,"A post-apocalyptic tale, in which a lone man fights his way across America in order to protect a sacred book that holds the secrets to saving humankind.",2010-01-14,4.6302,6.794,6345 +4418,18377,200 Pounds Beauty,"Based on a Japanese manga, Kanna-San, Daiseikou Desu, this story revolves around Kang Han-na, an overweight phone sex employee and secret vocalist for Ammy, a famous Korean pop singer who actually lip syncs as she cannot sing. After getting humilitated publicly by an ungrateful Ammy, Han-na undergoes an extreme makeover to become a pop sensation herself.",2006-12-14,3.0354,6.8,328 +4419,25475,Tinker Bell and the Lost Treasure,"A blue harvest moon will rise, allowing the fairies to use a precious moonstone to restore the Pixie Dust Tree, the source of all their magic. But when Tinker Bell accidentally puts all of Pixie Hollow in jeopardy, she must venture out across the sea on a secret quest to set things right.",2009-09-03,4.6318,6.793,1070 +4420,14635,The Rookie,"Jim Morris never made it out of the minor leagues before a shoulder injury ended his pitching career twelve years ago. Now a married-with-children high-school chemistry teacher and baseball coach in Texas, Jim's team makes a deal with him: if they win the district championship, Jim will try out with a major-league organization. The bet proves incentive enough for the team, and they go from worst to first, making it to state for the first time in the history of the school. Jim, forced to live up to his end of the deal, is nearly laughed off the try-out field--until he gets onto the mound, where he confounds the scouts (and himself) by clocking successive 98 mph fastballs, good enough for a minor-league contract with the Tampa Bay Devil Rays. Jim's still got a lot of pitches to throw before he makes it to The Show, but with his big-league dreams revived, there's no telling where he could go.",2002-03-25,1.9018,6.793,462 +4421,11381,Tommy Boy,"To save the family business, two ne’er-do-well traveling salesmen hit the road with disastrously funny consequences.",1995-03-31,2.2262,6.793,998 +4422,1088514,The Room Next Door,"Ingrid and Martha were close friends in their youth, when they worked together at the same magazine. Ingrid went on to become an autofiction novelist while Martha became a war reporter, and they were separated by the circumstances of life. After years of being out of touch, they meet again in an extreme but strangely sweet situation.",2024-10-07,4.4734,6.792,540 +4423,785533,The Princess Switch 3: Romancing the Star,"A priceless relic is stolen from identical royals Queen Margaret and Princess Stacy, who enlist the help of their sketchy look-alike cousin Fiona Pembroke to retrieve it.",2021-11-18,1.5385,6.792,442 +4424,61667,We Have a Pope,"The newly elected Pope suffers a panic attack just as he is about to greet the faithful who have gathered to see him. His advisors, unable to convince him he is the right man for the job, call on a renowned therapist who also happens to be an atheist. But the Pope's fear of his newfound responsibility is one he must face alone. Winner Best Film at the Italian Golden Globes.",2011-04-15,1.5956,6.792,575 +4425,27850,Halloweentown,"On her 13th birthday, Marnie learns she's a witch, discovers a secret portal, and is transported to Halloweentown — a magical place where ghosts and ghouls, witches and werewolves live apart from the human world. But she soon finds herself battling wicked warlocks, evil curses, and endless surprises.",1998-11-10,1.8893,6.792,557 +4426,2142,Cop Land,"Freddy Heflin is the sheriff of a place everyone calls “Cop Land” — a small and seemingly peaceful town populated by the big city police officers he’s long admired. Yet something ugly is taking place behind the town’s peaceful facade. And when Freddy uncovers a massive, deadly conspiracy among these local residents, he is forced to take action and make a dangerous choice between protecting his idols and upholding the law.",1997-08-15,3.0234,6.792,1678 +4427,882059,Boy Kills World,"When his family is murdered, a deaf-mute named Boy escapes to the jungle and is trained by a mysterious shaman to repress his childish imagination and become an instrument of death.",2024-04-24,4.6486,6.791,695 +4428,482981,Wild Rose,"A young Scottish singer, Rose-Lynn Harlan, dreams of making it as a country artist in Nashville after being released from prison.",2019-04-12,0.897,6.791,337 +4429,184352,Tom at the Farm,"A young man travels to an isolated farm for his lover's funeral where he's quickly drawn into a twisted, sexually charged game by his lover's aggressive brother.",2014-04-16,1.0525,6.8,829 +4430,25284,The Last Seduction,A devious femme fatale steals her husband’s drug money and hides out in a small town where she meets the perfect dupe for her next scheme.,1994-05-26,1.3547,6.8,397 +4431,10935,Heaven's Gate,"Harvard graduate James Averill serves as the sheriff of prosperous Jackson County, Wyoming, standing at the center of a conflict between impoverished immigrants and affluent cattle farmers. Politically connected ranchers enlist mercenary Nathan Champion—who is also vying for the affections of local madam Ella Watson—to combat the immigrant uprising. As tensions escalate, both Averill and Champion start to question their decisions.",1980-11-19,1.8708,6.8,383 +4432,912,The Thomas Crown Affair,"Young businessman Thomas Crown is bored and decides to plan a robbery and assigns a professional agent with the right information to the job. However, Crown is soon betrayed yet cannot blow his cover because he’s in love.",1968-06-26,2.729,6.791,535 +4433,795813,I'm Your Man,"Alma is a scientist coerced into participating in an extraordinary study in order to obtain research funds for her work. For three weeks, she has to live with a humanoid robot tailored to her character and needs, whose artificial intelligence is designed to be the perfect life partner for her. Enter Tom, a machine in human form in a class of its own, created solely to make her happy.",2021-07-01,1.0537,6.79,333 +4434,648579,The Unbearable Weight of Massive Talent,"Creatively unfulfilled and facing financial ruin, Nick Cage must accept a $1 million offer to attend the birthday of a dangerous superfan. Things take a wildly unexpected turn when Cage is recruited by a CIA operative and forced to live up to his own legend, channeling his most iconic and beloved on-screen characters in order to save himself and his loved ones.",2022-04-20,3.9268,6.79,2218 +4435,502422,Thunder Road,A police officer faces a personal meltdown following a divorce and the death of his mother.,2018-09-12,0.7981,6.79,428 +4436,9647,Scrooged,"Frank Cross is a wildly successful television executive whose cold ambition and curmudgeonly nature has driven away the love of his life. But after firing a staff member on Christmas Eve, Frank is visited by a series of ghosts who give him a chance to re-evaluate his actions and right the wrongs of his past.",1988-11-22,2.6916,6.79,1592 +4437,1020006,Priscilla,"When teenage Priscilla Beaulieu meets Elvis Presley at a party, the man who is already a meteoric rock-and-roll superstar becomes someone entirely unexpected in private moments: a thrilling crush, an ally in loneliness, a vulnerable best friend.",2023-10-27,3.908,6.789,921 +4438,744276,After Ever Happy,"As a shocking truth about a couple's families emerges, the two lovers discover they are not so different from each other. Tessa is no longer the sweet, simple, good girl she was when she met Hardin — any more than he is the cruel, moody boy she fell so hard for.",2022-08-24,8.1969,6.789,1296 +4439,598331,Rumble,"In a world where monster wrestling is a global sport and monsters are superstar athletes, teenage Winnie seeks to follow in her father’s footsteps by coaching a loveable underdog monster into a champion.",2021-02-12,2.143,6.789,525 +4440,744276,After Ever Happy,"As a shocking truth about a couple's families emerges, the two lovers discover they are not so different from each other. Tessa is no longer the sweet, simple, good girl she was when she met Hardin — any more than he is the cruel, moody boy she fell so hard for.",2022-08-24,8.1969,6.789,1296 +4441,598331,Rumble,"In a world where monster wrestling is a global sport and monsters are superstar athletes, teenage Winnie seeks to follow in her father’s footsteps by coaching a loveable underdog monster into a champion.",2021-02-12,2.143,6.789,525 +4442,228161,Home,"When Earth is taken over by the overly-confident Boov, an alien race in search of a new place to call home, all humans are promptly relocated, while all Boov get busy reorganizing the planet. But when one resourceful girl, Tip, manages to avoid capture, she finds herself the accidental accomplice of a banished Boov named Oh. The two fugitives realize there’s a lot more at stake than intergalactic relations as they embark on the road trip of a lifetime.",2015-03-18,6.9415,6.8,4066 +4443,11843,The Return of the Pink Panther,The famous Pink Panther jewel has once again been stolen and Inspector Clouseau is called in to catch the thief. The Inspector is convinced that 'The Phantom' has returned and utilises all of his resources – himself and his Asian manservant – to reveal the identity of 'The Phantom'.,1975-05-21,2.9194,6.789,631 +4444,2616,Uncle Buck,"Buck Russell, a lovable but slovenly bachelor, suddenly becomes the temporary caretaker of his nephew and nieces after a family emergency. His freewheeling attitude soon causes tension with his older niece Tia, loyal girlfriend Chanice and just about everyone else who crosses his path.",1989-08-16,2.8519,6.789,1248 +4445,8193,Napoleon Dynamite,"A listless and alienated teenager decides to help his new friend win the class presidency in their small western high school, while he must deal with his bizarre family life back home.",2004-06-11,3.4161,6.8,1987 +4446,6435,Practical Magic,"Sally and Gillian Owens, born into a magical family, have mostly avoided witchcraft themselves. But when Gillian's vicious boyfriend, Jimmy Angelov, dies unexpectedly, the Owens sisters give themselves a crash course in hard magic. With policeman Gary Hallet growing suspicious, the girls struggle to resurrect Angelov -- and unwittingly inject his corpse with an evil spirit that threatens to end their family line.",1998-10-16,4.8864,6.8,1595 +4447,4547,Panic Room,"Trapped in their New York brownstone's panic room, a hidden chamber built as a sanctuary in the event of break-ins, newly divorced Meg Altman and her young daughter Sarah play a deadly game of cat-and-mouse with three intruders - Burnham, Raoul and Junior - during a brutal home invasion. But the room itself is the focal point because what the intruders really want is inside it.",2002-03-29,4.2253,6.788,5144 +4448,525661,Bombshell,Bombshell is a revealing look inside the most powerful and controversial media empire of all time; and the explosive story of the women who brought down the infamous man who created it.,2019-12-13,3.2985,6.787,3066 +4449,170522,Asterix: The Mansions of the Gods,"In order to wipe out the Gaulish village by any means necessary, Caesar plans to absorb the villagers into Roman culture by having an estate built next to the village to start a new Roman colony.",2014-11-26,3.174,6.8,1414 +4450,11162,The Merchant of Venice,"Venice, 1596. Bassanio begs his friend Antonio, a prosperous merchant, to lend him a large sum of money so that he can woo Portia, a very wealthy heiress; but Antonio has invested his fortune abroad, so they turn to Shylock, a Jewish moneylender, and ask him for a loan.",2004-12-03,1.8568,6.787,580 +4451,9443,Chariots of Fire,"In the class-obsessed and religiously divided UK of the early 1920s, two determined young runners train for the 1924 Paris Olympics. Eric Liddell, a devout Christian born to Scottish missionaries in China, sees running as part of his worship of God's glory and refuses to train or compete on the Sabbath. Harold Abrahams overcomes anti-Semitism and class bias, but neglects his beloved sweetheart in his single-minded quest.",1981-05-15,2.5745,6.787,962 +4452,9100,The Craft,"A Catholic school newcomer falls in with a clique of teen witches who wield their powers against all who dare to cross them -- be they teachers, rivals or meddlesome parents.",1996-05-03,3.9238,6.787,1936 +4453,1001865,Scrooge: A Christmas Carol,"On a cold Christmas Eve, selfish miser Ebenezer Scrooge has one night left to face his past — and change the future — before time runs out.",2022-11-18,2.2007,6.8,454 +4454,227719,Project Almanac,"A group of teens discover secret plans of a time machine, and construct one. However, things start to get out of control.",2015-01-28,4.5502,6.786,2701 +4455,198184,Chappie,"Every child comes into the world full of promise, and none more so than Chappie: he is gifted, special, a prodigy. Like any child, Chappie will come under the influence of his surroundings—some good, some bad—and he will rely on his heart and soul to find his way in the world and become his own man. But there's one thing that makes Chappie different from any one else: he is a robot.",2015-03-04,8.4636,6.786,8131 +4456,33908,Three... Extremes,"An Asian cross-cultural trilogy of horror films from accomplished indie directors: ""Dumplings"", directed by Fruit Chan of Hong Kong; ""Cut"", directed by Park Chan-Wook of Korea; ""Box"", directed by Miike Takashi of Japan. The first film ""Dumplings"" was extended and turned into a full-length theatrical film of the same name.",2004-08-20,1.6417,6.786,381 +4457,2926,The Three Musketeers,"The young D'Artagnan arrives in Paris with dreams of becoming a King's musketeer. He meets and quarrels with three men, Athos, Porthos, and Aramis, each of whom challenges him to a duel. D'Artagnan finds out they are musketeers and is invited to join them in their efforts to oppose Cardinal Richelieu, who wishes to increase his already considerable power over the King. D'Artagnan must also juggle affairs with the charming Constance Bonancieux and the passionate Lady De Winter, a secret agent for the Cardinal.",1973-12-11,3.4479,6.8,318 +4458,454,Romeo + Juliet,"In director Baz Luhrmann's contemporary take on William Shakespeare's classic tragedy, the Montagues and Capulets have moved their ongoing feud to the sweltering suburb of Verona Beach, where Romeo and Juliet fall in love and secretly wed. Though the film is visually modern, the bard's dialogue remains.",1996-11-01,4.4898,6.786,5125 +4459,301351,We Are Your Friends,"Young Cole Carter dreams of hitting the big time as a Hollywood disc jockey, spending his days and nights hanging with buddies and working on the one track that will set the world on fire. Opportunity comes knocking when he meets James Reed, a charismatic DJ who takes the 23-year-old under his wing. Soon, his seemingly clear path to success gets complicated when he starts falling for his mentor's girlfriend, jeopardizing his new friendship and the future he seems destined to fulfill.",2015-08-26,3.3722,6.8,2373 +4460,444090,The Ash Lad: In the Hall of the Mountain King,"Espen “Ash Lad”, a poor farmer’s son, embarks on a dangerous quest with his brothers to save the princess from a vile troll known as the Mountain King – in order to collect a reward and save his family’s farm from ruin.",2017-09-29,3.9704,6.8,389 +4461,30163,The Fugitives,"Coming out from jail, Lucas has decided to change his life and behave like a good citizen. But when he is taken hostage in a bank by a hare-brained robber, no cops can believe he is not part of the action.",1986-12-17,1.5806,6.784,406 +4462,27554,The Panic in Needle Park,"A stark portrayal of life among a group of heroin addicts who hang out in Needle Park in New York City. Played against this setting is a low-key love story between Bobby, a young addict and small-time hustler, and Helen, a homeless girl who finds in her relationship with Bobby the stability she craves.",1971-06-01,1.5819,6.8,340 +4463,27130,I Walked with a Zombie,"A nurse in the Caribbean turns to voodoo in hopes of curing her patient, a mindless woman whose husband she's fallen in love with.",1943-04-21,1.2584,6.8,305 +4464,15856,House on Haunted Hill,"Frederick Loren has invited five strangers to a party of a lifetime. He is offering each of them $10,000 if they can stay the night in a house. But the house is no ordinary house. This house has a reputation for murder. Frederick offers them each a gun for protection. They all arrived in a hearse and will either leave in it $10,000 richer or leave in it dead!",1959-01-01,1.8608,6.784,552 +4465,10897,The Little Rascals,"When nine-year-old Alfalfa falls for Darla, his ""He-Man-Woman-Hating"" friends attempt to sabotage their relationship.",1994-08-05,5.1354,6.785,1257 +4466,9411,Fallen,"Homicide detective John Hobbes witnesses the execution of serial killer Edgar Reese. Soon after the execution the killings start again, and they are very similar to Reese's style.",1998-01-16,4.7015,6.784,1487 +4467,525686,My Cousin the Sexologist,"Two cousins began to discover their sexuality together in adolescence and they reunite after ten years: he only recently returned to bachelorhood, and she returned from Buenos Aires, where she opted to specialize in Sexology.",2016-07-20,2.7305,6.783,515 +4468,443463,Leave No Trace,"A father and daughter live a perfect but mysterious existence in Forest Park, a beautiful nature reserve near Portland, Oregon, rarely making contact with the world. But when a small mistake tips them off to authorities, they are sent on an increasingly erratic journey in search of a place to call their own.",2018-06-29,2.2538,6.783,1290 +4469,188927,Star Trek Beyond,"The USS Enterprise crew explores the furthest reaches of uncharted space, where they encounter a mysterious new enemy who puts them and everything the Federation stands for to the test.",2016-07-07,5.1782,6.783,6797 +4470,30596,Bodyguards and Assassins,"In 1905, revolutionist Sun Yat-Sen visits Hong Kong to discuss plans with Tongmenghui members to overthrow the Qing dynasty. But when they find out that assassins have been sent to kill him, they assemble a group of protectors to prevent any attacks.",2009-12-18,2.04,6.783,373 +4471,2179,Tenacious D in The Pick of Destiny,"In Venice Beach, naive Midwesterner JB bonds with local slacker KG and they form the rock band Tenacious D. Setting out to become the world's greatest band is no easy feat, so they set out to steal what could be the answer to their prayers... a magical guitar pick housed in a rock-and-roll museum some 300 miles away.",2006-11-22,2.3777,6.783,1672 +4472,836009,Against the Ice,"In 1909, two explorers fight to survive after they're left behind while on a Danish expedition in ice-covered Greenland.",2022-02-10,1.6526,6.782,570 +4473,578189,Black and Blue,"A rookie cop inadvertently captures the murder of a young drug dealer on her body cam. After realizing that the murder was committed by corrupt cops, she teams up with the one person from her community who is willing to help her as she tries to escape both the criminals out for revenge and the police who are desperate to destroy the incriminating footage.",2019-10-25,4.8319,6.782,911 +4474,537059,Justice League vs. the Fatal Five,"The Justice League faces a powerful new threat — the Fatal Five! Superman, Batman and Wonder Woman seek answers as the time-traveling trio of Mano, Persuader and Tharok terrorize Metropolis in search of budding Green Lantern, Jessica Cruz. With her unwilling help, they aim to free remaining Fatal Five members Emerald Empress and Validus to carry out their sinister plan. But the Justice League has also discovered an ally from another time in the peculiar Star Boy — brimming with volatile power, could he be the key to thwarting the Fatal Five? An epic battle against ultimate evil awaits!",2019-03-29,2.313,6.782,363 +4475,318917,Look Who's Back,"When Adolf Hitler reawakens at the site of his former bunker in present-day Berlin, he is mistaken for a comedian and quickly becomes a media phenomenon.",2015-10-08,2.0742,6.782,1842 +4476,11259,Far and Away,"A young couple escapes Ireland, dreaming of a new life during the land giveaway in Oklahoma. As they struggle to survive against betrayal and harsh winter conditions, they must fend off her parents who are determined to bring her back home.",1992-05-22,2.575,6.8,1238 +4477,668482,Roald Dahl's Matilda the Musical,"An extraordinary young girl discovers her superpower and summons the remarkable courage, against all odds, to help others change their stories, whilst also taking charge of her own destiny. Standing up for what's right, she's met with miraculous results.",2022-11-25,4.033,6.781,756 +4478,472734,Dumplin',"To prove a point about measuring up and fitting in, Texas teen Willowdean “Dumplin’” Dickson enters a local pageant run by her ex-beauty queen mom.",2018-12-20,1.6168,6.8,1405 +4479,9654,The Italian Job,"Charlie Croker pulled off the crime of a lifetime. The one thing that he didn't plan on was being double-crossed. Along with a drop-dead gorgeous safecracker, Croker and his team take off to re-steal the loot and end up in a pulse-pounding, pedal-to-the-metal chase that careens up, down, above and below the streets of Los Angeles.",2003-05-30,7.5046,6.781,5719 +4480,4566,Michael Clayton,"A law firm brings in its ""fixer"" to remedy the situation after a lawyer has a breakdown while representing a chemical company that he knows is guilty in a multi-billion dollar class action suit.",2007-09-28,2.1184,6.781,1827 +4481,1241320,Kingdom: Return of the Great General,"Depicts a continuation of the ""Battle of Mayang"", an all-out war against the neighboring country Zhao that Shin and Wang Ki fought in in the previous work ""Flame of Fate"".",2024-07-12,5.0882,6.78,662 +4482,381262,In Her Name,"In 1982, André Bamberski learns about the death of his 14 year-old daughter, Kalinka, while she was on vacation with her mother and stepfather in Germany. Convinced that Kalinka’s death was not an accident, Bamberski begins to investigate. A botched autopsy report raises his suspicions and leads him to accuse Kalinka’s stepfather, Dr Dieter Krombach, as the murderer. Unable to indict Krombach in Germany, Bamberski attempts to take the trial to France, where he will dedicate his life to Kalinka’s justice and the imprisonment of Krombach.",2016-03-16,1.5824,6.78,323 +4483,11497,All Dogs Go to Heaven,"When a casino-owning dog named Charlie is murdered by his rival Carface, he finds himself in Heaven basically by default since all dogs go to heaven. However, since he wants to get back at his killer, he cons his way back to the living with the warning that doing that damns him to Hell. Once back, he teams with his old partner, Itchy, to prep his retaliation. He also stumbles onto an orphan girl who can talk to the animals, thus allowing him to get the inside info on the races to ensure his wins to finance his plans. However, all the while, he is still haunted by nightmares of what's waiting for him on the other side unless he can prove that he is worthy of Heaven again.",1989-11-17,4.993,6.78,1075 +4484,9684,Sweet and Lowdown,"In the 1930s, jazz guitarist Emmet Ray idolizes Django Reinhardt, faces gangsters and falls in love with a mute woman.",1999-12-03,1.1534,6.78,525 +4485,9374,Death Becomes Her,"Madeline is married to Ernest, who was once her arch-rival Helen's fiancé. After recovering from a mental breakdown, Helen vows to kill Madeline and steal back Ernest. Unfortunately for everyone, the introduction of a magic potion causes things to be a great deal more complicated than a mere murder plot.",1992-07-30,5.6891,6.78,2776 +4486,763329,Red Rocket,"After hitting rock bottom in Los Angeles, former porn star Mikey Saber returns to his hometown in Texas to stay with his estranged wife and mother-in-law. Just as tensions begin to ease, he becomes infatuated with a young doughnut shop worker named Strawberry.",2021-12-10,2.35,6.779,552 +4487,11319,The Rescuers,Two agents of the mouse-run International Rescue Aid Society search for a little orphan girl kidnapped by sinister treasure hunters.,1977-06-22,3.0813,6.779,2579 +4488,6973,In the Valley of Elah,A career officer and his wife work with a police detective to uncover the truth behind their son's disappearance following his return from a tour of duty in Iraq.,2007-09-14,2.165,6.779,1030 +4489,496,Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan,"Kazakh journalist Borat Sagdiyev travels to America to make a documentary. As he zigzags across the nation, Borat meets real people in real situations with hysterical consequences. His backwards behavior generates strong reactions around him exposing prejudices and hypocrisies in American culture.",2006-11-01,3.9118,6.779,5609 +4490,1172675,The Swan,"Two large, ignorant bullies ruthlessly pursue a small, brilliant boy in this young adult Roald Dahl short story.",2023-09-27,0.9556,6.778,455 +4491,14830,Doctor Strange,"Dr. Stephen Strange embarks on a wondrous journey to the heights of a Tibetan mountain, where he seeks healing at the feet of the mysterious Ancient One.",2007-08-14,1.3389,6.778,325 +4492,1151039,Nonnas,"After losing his beloved mother, a man risks everything to honor her by opening an Italian restaurant with actual nonnas — grandmothers — as the chefs.",2025-05-01,5.0511,6.779,331 +4493,845659,Perfect Addiction,A female boxing trainer discovers that her champion cage-fighter boyfriend has been cheating on her with her sister and decides to seek revenge by training up his arch-rival to challenge him.,2023-02-16,3.5508,6.777,311 +4494,345887,The Equalizer 2,"Robert McCall, who serves an unflinching justice for the exploited and oppressed, embarks on a relentless, globe-trotting quest for vengeance when his former partner is murdered.",2018-07-19,7.9319,6.777,5617 +4495,8852,Prince of Darkness,"A group of graduate students and scientists uncover an ancient canister in an abandoned church, but when they open it, they inadvertently unleash a strange liquid and an evil force on all of humanity.",1987-10-23,2.3265,6.776,1065 +4496,8456,Never Back Down,"Jake, full of anger after his father's death, is just starting to find a place for himself at his new Orlando high school - until Ryan, head of an underground MMA fight club, picks Jake out as a prime opponent. After being trounced by Ryan in front of the entire school, Jake begins training under the firm, moral guidance of a MMA master, where he learns how to fight... and how to avoid a fight. But it becomes obvious that a rematch will be inevitable if Jake wants to stop Ryan and his bullying, once and for all.",2008-03-04,5.5007,6.777,2378 +4497,4031,Going Places,"Two whimsical, aimless thugs harass and assault women, steal, murder, and alternately charm, fight, or sprint their way out of trouble. They take whatever the bourgeoisie holds dear, whether it’s cars, peace of mind, or daughters. Marie-Ange, a jaded, passive hairdresser, joins them as lover, cook, and mother confessor. She’s on her own search for seemingly unattainable sexual pleasure.",1974-03-20,2.5301,6.777,462 +4498,321697,Steve Jobs,"Set backstage at three iconic product launches and ending in 1998 with the unveiling of the iMac, Steve Jobs takes us behind the scenes of the digital revolution to paint an intimate portrait of the brilliant man at its epicenter.",2015-10-09,2.9692,6.776,4212 +4499,10711,French Connection II,"""Popeye"" Doyle travels to Marseilles to find Alain Charnier, the drug smuggler that eluded him in New York.",1975-05-18,1.4189,6.776,438 +4500,10711,French Connection II,"""Popeye"" Doyle travels to Marseilles to find Alain Charnier, the drug smuggler that eluded him in New York.",1975-05-18,1.4189,6.776,438 +4501,10156,History of the World: Part I,"An uproarious version of history that proves nothing is sacred – not even the Roman Empire, the French Revolution and the Spanish Inquisition.",1981-06-12,1.7501,6.776,845 +4502,9519,Chopper,"The true and infamous story of Australia's notorious criminal Mark 'Chopper' Read and his years of crime, interest in violence, drugs and prostitutes.",2000-06-21,1.8443,6.776,388 +4503,8852,Prince of Darkness,"A group of graduate students and scientists uncover an ancient canister in an abandoned church, but when they open it, they inadvertently unleash a strange liquid and an evil force on all of humanity.",1987-10-23,2.3265,6.776,1065 +4504,1439,Anna and the King,The story of the romance between the King of Siam (now Thailand) and the widowed British school teacher Anna Leonowens during the 1860s. Anna teaches the children and becomes romanced by the King. She convinces him that a man can be loved by just one woman.,1999-12-16,2.1615,6.776,792 +4505,98548,People Like Us,"After flying home to L.A. for the funeral of his estranged record-producer father, a struggling man discovers that the will stipulates that he must deliver $150,000 in cash to a 30-year-old alcoholic sister he never knew existed, and her troubled 12-year-old son.",2012-06-29,1.6176,6.775,628 +4506,16910,Naruto the Movie: Legend of the Stone of Gelel,"Naruto, Shikamaru, and Sakura are executing their mission of delivering a lost pet to a certain village. However, right in the midst of things, troops led by the mysterious knight, Temujin, attack them. In the violent battle, the three become separated. Temujin challenges Naruto to a fight and at the end of the fierce battle, both fall together from a high cliff...",2005-08-06,4.8607,6.775,422 +4507,12178,Miss Pettigrew Lives for a Day,"London, England, on the eve of World War II. Guinevere Pettigrew, a strict governess who is unable to keep a job, is fired again. Lost in the hostile city, a series of fortunate circumstances lead her to meet Delysia LaFosse, a glamorous and dazzling American jazz singer whose life is a chaos ruled by indecision, a continuous battle between love and fame.",2008-03-07,1.3768,6.775,404 +4508,11013,Secretary,"A young woman, recently released from a mental hospital, gets a job as a secretary to a demanding lawyer, where their employer-employee relationship turns into a sexual, sadomasochistic one.",2002-09-20,8.638,6.775,1738 +4509,11003,The Wedding Singer,"Robbie, a local rock star turned wedding singer, is dumped on the day of his wedding. Meanwhile, waitress Julia finally sets a wedding date with her fiancée Glenn. When Julia and Robbie meet and hit it off, they find that things are more complicated than anybody thought.",1998-02-13,3.6151,6.775,1808 +4510,712,Four Weddings and a Funeral,"Over the course of five social occasions, a committed bachelor must consider the notion that he may have discovered love.",1994-03-09,4.3702,6.775,2827 +4511,239566,Get on Up,A chronicle of James Brown's rise from extreme poverty to become one of the most influential musicians in history.,2014-08-01,2.5235,6.774,544 +4512,41110,I Am Love,"Emma has left Russia to live with her husband in Italy. Now a member of a powerful industrial family, she is the respected mother of three, but feels unfulfilled. One day, Antonio, a talented chef and her son's friend, makes her senses kindle.",2010-03-19,1.8753,6.774,372 +4513,12160,Wyatt Earp,"From Wichita to Dodge City, to the O.K. Corral in Tombstone, Wyatt Earp is taught that nothing matters more than family and the law. Joined by his brothers and Doc Holliday, Earp wages war on the dreaded Clanton and McLaury gangs.",1994-06-24,5.0327,6.8,877 +4514,3784,Frankie and Johnny,"When Johnny is released from prison following a forgery charge, he quickly lands a job as a short-order cook at a New York diner. Following a brief fling with waitress Cora, he develops an attraction for Cora's friend and fellow waitress Frankie. While Frankie resists Johnny's charms initially, she eventually relents when her best friend, Tim, persuades her to give Johnny a chance.",1991-10-11,2.1998,6.8,601 +4515,2362,Westworld,"Delos is a futuristic amusement park that features themed worlds populated by human-like androids. After two patrons have a run-in with a menacing gunslinger in West World, the androids at Delos all begin to malfunction, causing havoc throughout the park.",1973-08-15,2.9925,6.774,1350 +4516,892515,Masquerade,"Adrien, an attractive dancer whose career was shattered by a motorcycle accident, squanders his youth in idleness. His life changes when he meets Margot, who lives off scams and amorous manipulations.",2022-11-01,1.0636,6.773,444 +4517,635910,The Last Voyage of the Demeter,The crew of the merchant ship Demeter attempts to survive the ocean voyage from Carpathia to London as they are stalked each night by a merciless presence onboard the ship.,2023-08-09,5.2149,6.773,1763 +4518,419709,Last Flag Flying,"Thirty years after serving together in the Vietnam War, Larry, Sal and Richard reunite for a different type of mission: to bury Doc's son, a young Marine killed in Iraq. Forgoing the burial, the trio take the casket on a bittersweet trip up the coast to New Hampshire – along the way reminiscing and coming to terms with the shared memories of a war that continues to shape their lives.",2017-11-03,1.0861,6.773,465 +4519,9953,A Love Song for Bobby Long,A headstrong young woman returns to New Orleans after the death of her estranged mother.,2004-09-02,1.8909,6.8,390 +4520,417670,Loro 1,"""Loro"", in two parts, is a period movie that chronicles, as a fiction story, events likely happened in Italy (or even made up) between 2006 and 2010. ""Loro"" wants to suggest in portraits and glimps, through a composite constellation of characters, a moment in history, now definitively ended, which can be described in a very summary picture of the events as amoral, decadent but extraordinarily alive. Additionally, ""Loro"" wishes to tell the story of some Italians, fresh and ancient people at the same time: souls from a modern imaginary Purgatory who, moved by heterogeneous intents like ambition, admiration, affection, curiosity, personal interests, establish to try and orbit around the walking Paradise that is the man named Silvio Berlusconi.",2018-04-24,1.0579,6.8,529 +4521,338768,Please Stand By,"A young autistic woman runs away from her caregiver in order to boldly go and deliver her 500-page Star Trek script to a writing competition in Hollywood. On an adventure full of laughter and tears, Wendy follows the guiding spirit of Mr. Spock on her journey into the unknown.",2018-01-26,3.3734,6.772,489 +4522,283235,99 Homes,"After his family is evicted from their home, proud and desperate construction worker Dennis Nash tries to win his home back by striking a deal with the devil and working for Rick Carver, the corrupt real estate broker who evicted him.",2015-09-25,1.6388,6.772,779 +4523,181808,Star Wars: The Last Jedi,"Rey develops her newly discovered abilities with the guidance of Luke Skywalker, who is unsettled by the strength of her powers. Meanwhile, the Resistance prepares to do battle with the First Order.",2017-12-13,11.0897,6.8,15732 +4524,724209,Heart of Stone,An intelligence operative for a shadowy global peacekeeping agency races to stop a hacker from stealing its most valuable — and dangerous — weapon.,2023-08-09,4.1815,6.771,1796 +4525,352161,The Clan,"In Argentina, between 1982 and 1985, the Puccios, a well-established family of San Isidro, an upper-class suburb of Buenos Aires, kidnap several people and hold them as hostages for a ransom.",2015-08-13,1.3356,6.771,423 +4526,9272,The Good Son,"A young boy stays with his aunt and uncle, and befriends his cousin who's the same age. But his cousin begins showing increasing signs of psychotic behavior.",1993-09-24,3.25,6.771,985 +4527,619778,Malignant,"Madison is paralyzed by shocking visions of grisly murders, and her torment worsens as she discovers that these waking dreams are in fact terrifying realities with a mysterious tie to her past.",2021-09-01,3.4017,6.77,2441 +4528,258152,Party Central,"Mike and Sulley are back at Monsters University for a fun-filled weekend with their Oozma Kappa fraternity brothers. The gang is throwing their first party, but no one’s showing up. Luckily for them, Mike and Sulley have come up with a plan to make sure “Party Central” is the most epic party the school has ever seen.",2014-02-20,0.9715,6.77,302 +4529,37686,Super 8,"In 1979 Ohio, several youngsters are making a zombie movie with a Super-8 camera. In the midst of filming, the friends witness a horrifying train derailment and are lucky to escape with their lives. They soon discover that the catastrophe was no accident, as a series of unexplained events and disappearances soon follows. Deputy Jackson Lamb, the father of one of the kids, searches for the terrifying truth behind the crash.",2011-06-08,5.306,6.77,6764 +4530,10195,Thor,"Against his father Odin's will, The Mighty Thor - a powerful but arrogant warrior god - recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.",2011-04-21,11.6098,6.77,21665 +4531,2266,Paris Je T'aime,"Olivier Assayas, Gus Van Sant, Wes Craven and Alfonso Cuaron are among the 20 distinguished directors who contribute to this collection of 18 stories, each exploring a different aspect of Parisian life. The colourful characters in this drama include a pair of mimes, a husband trying to chose between his wife and his lover, and a married man who turns to a prostitute for advice.",2006-06-21,1.8319,6.77,781 +4532,585268,War,"Khalid, entrusted with the task of eliminating former soldier turned rogue Kabir, engages in an epic battle with his mentor who taught him everything.",2019-10-02,4.6129,6.8,337 +4533,580489,Venom: Let There Be Carnage,"After finding a host body in investigative reporter Eddie Brock, the alien symbiote must face a new enemy, Carnage, the alter ego of serial killer Cletus Kasady.",2021-09-30,9.9342,6.769,10762 +4534,10226,High Tension,"Best friends Marie and Alexia decide to spend a quiet weekend at Alexia's parents' secluded farmhouse. But on the night of their arrival, the girls' idyllic getaway turns into an endless night of horror.",2003-06-18,2.1786,6.769,1375 +4535,913673,Nefarious,"On the day of his scheduled execution, a convicted serial killer gets a psychiatric evaluation during which he claims he is a demon, and further claims that before their time is over, the psychiatrist will commit three murders of his own.",2023-04-14,2.5275,6.768,384 +4536,620725,Jexi,"Phil's new phone comes with an unexpected feature, Jexi...an A.I. determined to keep him all to herself in a comedy about what can happen when you love your phone more than all else.",2019-10-10,2.8939,6.768,1234 +4537,592863,Respect,The rise of Aretha Franklin’s career from a child singing in her father’s church’s choir to her international superstardom.,2021-08-12,1.81,6.768,437 +4538,316152,Free State of Jones,"In 1863, Mississippi farmer Newt Knight serves as a medic for the Confederate Army. Opposed to slavery, Knight would rather help the wounded than fight the Union. After his nephew dies in battle, Newt returns home to Jones County to safeguard his family but is soon branded an outlaw deserter. Forced to flee, he finds refuge with a group of runaway slaves hiding out in the swamps. Forging an alliance with the slaves and other farmers, Knight leads a rebellion that would forever change history.",2016-06-24,2.4019,6.768,1550 +4539,51209,Kill the Irishman,"Over the summer of 1976, thirty-six bombs detonate in the heart of Cleveland while a turf war raged between Irish mobster Danny Greene and the Italian mafia. Based on a true story, Kill the Irishman chronicles Greene's heroic rise from a tough Cleveland neighborhood to become an enforcer in the local mob.",2011-03-10,2.4285,6.77,661 +4540,592863,Respect,The rise of Aretha Franklin’s career from a child singing in her father’s church’s choir to her international superstardom.,2021-08-12,1.81,6.768,437 +4541,316152,Free State of Jones,"In 1863, Mississippi farmer Newt Knight serves as a medic for the Confederate Army. Opposed to slavery, Knight would rather help the wounded than fight the Union. After his nephew dies in battle, Newt returns home to Jones County to safeguard his family but is soon branded an outlaw deserter. Forced to flee, he finds refuge with a group of runaway slaves hiding out in the swamps. Forging an alliance with the slaves and other farmers, Knight leads a rebellion that would forever change history.",2016-06-24,2.4019,6.768,1550 +4542,11935,Capricorn One,"In order to protect the reputation of the American space program, a team of NASA administrators turn the first Mars mission into a phony Mars landing. Under threat of harm to their families the astronauts play their part in the deception on a staged set in a deserted military base. But once the real ship returns to Earth and burns up on re-entry, the astronauts become liabilities. Now, with the help of a crusading reporter, they must battle a sinister conspiracy that will stop at nothing to keep the truth hidden.",1977-12-10,2.381,6.768,477 +4543,2255,Chasing Amy,"Holden and Banky are comic book artists. Everything is going good for them until they meet Alyssa, also a comic book artist. Holden falls for her, but his hopes are crushed when he finds out she's a lesbian.",1997-04-04,2.0018,6.768,1452 +4544,1365,Monster's Ball,A prison guard begins a tentative romance with the unsuspecting widow of a man whose execution he presided over.,2001-12-26,3.2136,6.768,1023 +4545,272693,The DUFF,"Bianca's universe turns upside down when she learns that her high school refers to her as a ‘DUFF' (Designated Ugly Fat Friend). Hoping to erase that label, she enlists the help of a charming jock and her favorite teacher. Together they'll face the school's mean girl and remind everyone that we are all someone's DUFF… and that's totally fine.",2015-02-20,3.3186,6.767,4399 +4546,159824,Hotel Transylvania 2,"When the old-old-old-fashioned vampire Vlad arrives at the hotel for an impromptu family get-together, Hotel Transylvania is in for a collision of supernatural old-school and modern day cool.",2015-09-21,7.0332,6.767,5910 +4547,84332,Safety Not Guaranteed,Three magazine employees head out on an assignment to interview a guy who placed a classified ad seeking a companion for time travel.,2012-06-08,1.9536,6.767,1516 +4548,20115,Opera,A young opera singer is stalked by a deranged fan bent on killing the people associated with her to claim her for himself.,1987-12-19,0.9395,6.8,497 +4549,1263256,Happy Gilmore 2,"Happy Gilmore isn't done with golf — not by a long shot. Since his retirement after his first Tour Championship win, Gilmore returns to finance his daughter's ballet classes.",2025-07-25,145.9472,6.766,531 +4550,1212073,Sixty Minutes,"Desperate to keep custody of his daughter, a mixed martial arts fighter abandons a big match and races across Berlin to attend her birthday party.",2024-01-19,3.7835,6.766,587 +4551,538207,We Die Young,"Lucas, a 14-year-old boy inducted into the gang life in Washington D.C., is determined that his 10-year-old brother won't follow the same path. When an Afghanistan war veteran comes into the neighborhood, an opportunity arises.",2019-05-09,1.7303,6.8,336 +4552,105077,Battlestar Galactica: The Plan,"When the initial Cylon attack against the Twelve Colonies fails to achieve complete extermination of human life as planned, twin Number Ones (Cavils) embedded on Galactica and Caprica must improvise to destroy the human survivors.",2009-10-27,1.6379,6.766,446 +4553,38050,The Adjustment Bureau,"A man glimpses the future Fate has planned for him – and chooses to fight for his own destiny. Battling the powerful Adjustment Bureau across, under and through the streets of New York, he risks his destined greatness to be with the only woman he's ever loved.",2011-03-03,4.4821,6.766,4671 +4554,11835,Death Sentence,"Nick Hume is a mild-mannered executive with a perfect life, until one gruesome night he witnesses something that changes him forever. Transformed by grief, Hume eventually comes to the disturbing conclusion that no length is too great when protecting his family.",2007-08-31,7.4117,6.766,1180 +4555,11507,Body Double,"After losing an acting role and his girlfriend, Jake Scully finally catches a break: he gets offered a gig house-sitting in the Hollywood Hills. While peering through the beautiful home's telescope one night, he spies a gorgeous woman dancing in her window. But when he witnesses the girl's murder, it leads Scully through the netherworld of the adult entertainment industry on a search for answers—with porn actress Holly Body as his guide.",1984-10-25,2.9348,6.8,850 +4556,9318,Asterix in Britain,"One little ancient British village still holds out against the Roman invaders. Asterix and Obelix are invited to help. They must face fog, rain, warm beer and boiled boar with mint sauce, but they soon have Governor Encyclopaedius Britannicus's Romans declining and falling. Until a wild race for a barrel of magic potion lands them in the drink.",1986-12-03,2.374,6.8,695 +4557,9058,Only You,"Two childhood paranormal incidents have convinced schoolteacher Faith Corvatch that her true love is a guy named ""Damon Bradley,"" but she has yet to meet him. Preparing to marry podiatrist Dwayne in 10 days, Faith receives a phone call from Dwayne's old classmate named Damon Bradley who is on his way to Venice. Faith tries to catch him at the airport but just misses him so she impulsively decides to fly to Venice hoping to finally encounter the man of her dreams; accompanying her on the trip is her sister-in-law and childhood best friend, Kate, who has just left her husband, Faith's brother Larry.",1994-03-04,1.9486,6.766,533 +4558,8348,Thunderbolt and Lightfoot,"With the help of an irreverent young sidekick, a bank robber gets his old gang back together to organise a daring new heist.",1974-05-23,2.4303,6.766,571 +4559,535292,21 Bridges,"An embattled NYPD detective, is thrust into a citywide manhunt for a pair of cop killers after uncovering a massive and unexpected conspiracy. As the night unfolds, lines become blurred on who he is pursuing, and who is in pursuit of him.",2019-10-24,3.2685,6.8,2036 +4560,11622,Blast from the Past,"Following a bomb scare in the 1960s that locked the Webers into their bomb shelter for 35 years, Adam now ventures forth into Los Angeles to obtain food and supplies for his family, and a non-mutant wife for himself.",1999-02-12,4.2563,6.765,1138 +4561,9740,Hannibal,"After having successfully eluded the authorities for years, Hannibal peacefully lives in Italy in disguise as an art scholar. Trouble strikes again when he's discovered leaving a deserving few dead in the process. He returns to America to make contact with now disgraced Agent Clarice Starling, who is suffering the wrath of a malicious FBI rival as well as the media.",2001-02-08,1.6951,6.765,4908 +4562,772,Home Alone 2: Lost in New York,"Instead of flying to Florida with his folks, Kevin ends up alone in New York, where he gets a hotel room with his dad's credit card—despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses, the Wet Bandits, he's determined to foil their plans to rob a toy store on Christmas Eve.",1992-11-15,10.0769,6.8,10048 +4563,818397,Memory,"Alex, an assassin-for-hire, finds that he's become a target after he refuses to complete a job for a dangerous criminal organization. With the crime syndicate and FBI in hot pursuit, Alex has the skills to stay ahead, except for one thing: he is struggling with severe memory loss, affecting his every move. Alex must question his every action and whom he can ultimately trust.",2022-04-28,12.1118,6.764,1564 +4564,468202,The Girl in the Fog,A gripping and chilling thriller that brings us to a hazy mountain village where an enigmatic detective is investigating the sudden disappearance of fifteen-year-old girl.,2017-10-26,2.3657,6.764,1042 +4565,231176,Sun in Buckets,The story of a father and a son. An on the road trip from South to North.,2013-10-31,0.5566,6.763,1687 +4566,51052,Arthur Christmas,"For hundreds of years, the Claus family has delegated the title ""Santa"" to a chosen few of its members, which can be passed down upon retirement. Each Christmas, Santa and his vast army of highly trained elves produce gifts and distribute them around the world in a one-night high-tech operation. However, when one of 600 million children to receive a gift from Santa on Christmas Eve is missed, it is deemed ‘acceptable’ to all but one—Arthur Claus, the current Santa’s misfit son deemed ineligible for the title, who executes an unauthorised rookie mission to get the last present halfway around the globe before dawn on Christmas morning.",2011-11-10,2.9683,6.8,1538 +4567,852438,Final Cut,Things go badly for a small film crew shooting a low-budget zombie movie when they are attacked by real zombies.,2022-05-18,1.2814,6.8,427 +4568,278427,Family Guy Presents: It's a Trap!,"With the Griffins stuck again at home during a blackout, Peter tells the story of “Star Wars Episode VI: Return of the Jedi.”",2010-12-21,1.4242,6.762,435 +4569,9763,Goal!,"Like millions of kids around the world, Santiago harbors the dream of being a professional footballer... However, living in the Barrios section of Los Angeles, he thinks it is only that—a dream. Until one day an extraordinary turn of events has him trying out for Premiership club Newcastle United.",2005-09-29,2.0383,6.762,1151 +4570,8489,Ali,"In 1964, a brash, new pro boxer, fresh from his Olympic gold medal victory, explodes onto the scene: Cassius Clay. Bold and outspoken, he cuts an entirely new image for African Americans in sport with his proud public self-confidence and his unapologetic belief that he is the greatest boxer of all time. Yet at the top of his game, both Ali's personal and professional lives face the ultimate test.",2001-12-10,3.2646,6.762,1774 +4571,654895,Run to You,"Gianni is a serial seducer but his life is destined to change when he meets Chiara, a beautiful woman who has had an accident and is paraplegic.",2022-03-17,0.9411,6.761,381 +4572,600583,The Power of the Dog,"A domineering but charismatic rancher wages a war of intimidation on his brother's new wife and her teen son, until long-hidden secrets come to light.",2021-10-25,2.4593,6.761,2777 +4573,569547,Black Mirror: Bandersnatch,"In 1984, a young programmer begins to question reality as he adapts a dark fantasy novel into a video game. A mind-bending tale with multiple endings.",2018-12-28,3.0972,6.761,4006 +4574,548066,Level 16,"The teenage girls of Vestalis Academy are meticulously trained in the art of being “clean girls,” practicing the virtues of perfect femininity. But what exactly are they being trained for? Vivien intends to find out.",2018-02-20,2.8966,6.761,688 +4575,512195,Red Notice,"An Interpol-issued Red Notice is a global alert to hunt and capture the world's most wanted. But when a daring heist brings together the FBI's top profiler and two rival criminals, there's no telling what will happen.",2021-11-04,6.5354,6.761,6061 +4576,209451,Jersey Boys,"A musical biopic of the Four Seasons—the rise, the tough times and personal clashes, and the ultimate triumph of a group of friends whose music became symbolic of a generation. Far from a mere tribute concert, it gets to the heart of the relationships at the centre of the group, with a special focus on frontman Frankie Valli, the small kid with the big falsetto.",2014-06-18,1.4403,6.761,710 +4577,12227,White Fang,Jack London's classic adventure story about the friendship developed between a Yukon gold hunter and the mixed dog-wolf he rescues from the hands of a man who mistreats him.,1991-01-18,2.2153,6.761,622 +4578,11791,The Hound of the Baskervilles,"When a nobleman is threatened by a family curse on his newly inherited estate, detective Sherlock Holmes is hired to investigate.",1959-05-04,1.908,6.8,350 +4579,11253,Hellboy II: The Golden Army,"Hellboy, his pyrokinetic girlfriend, Liz, and aquatic empath, Abe Sapien, face their biggest battle when an underworld elven prince plans to reclaim Earth for his magical kindred. Tired of living in the shadow of humans, Prince Nuada tries to awaken an ancient force of killing machines, the all-powerful Golden Army, to clear the way for fantasy creatures to roam free. Only Hellboy can stop the dark prince and prevent humanity's annihilation.",2008-07-11,5.3693,6.76,5359 +4580,10510,Miracle on 34th Street,"Six-year-old Susan Walker has doubts about childhood's most enduring miracle—Santa Claus. Her mother told her the secret about Santa a long time ago, but, after meeting a special department store Santa who's convinced he's the real thing, Susan is given the most precious gift of all—something to believe in.",1994-11-18,2.6836,6.761,1078 +4581,9326,Romancing the Stone,"Though she can spin wild tales of passionate romance, novelist Joan Wilder has no life of her own. Then one day adventure comes her way in the form of a mysterious package. It turns out that the parcel is the ransom she'll need to free her abducted sister, so Joan flies to South America to hand it over. But she gets on the wrong bus and winds up hopelessly stranded in the jungle.",1984-03-30,4.3414,6.761,1915 +4582,5729,L'Âge d'or,"The film consists of a series of tightly interlinked vignettes, the most sustained of which details the story of a man and a woman who are passionately in love. Their attempts to consummate their passion are constantly thwarted, by their families, by the Church and bourgeois society in general.",1930-11-28,0.8672,6.8,316 +4583,1263256,Happy Gilmore 2,"Happy Gilmore isn't done with golf — not by a long shot. Since his retirement after his first Tour Championship win, Gilmore returns to finance his daughter's ballet classes.",2025-07-25,145.9472,6.759,528 +4584,48175,7 and 8,"6th January 1975, in an infant nursery in Palermo (Italy), for a mysterious reason, a male nurse exchanges the labels of baby number 7 and 8. Thirty-one years later Tommaso (7) and Daniele (8) meet each other by accident.",2007-03-16,0.5233,6.76,672 +4585,10096,13 Going on 30,"After total humiliation at her thirteenth birthday party, Jenna Rink wants to just hide until she's thirty. Thanks to some magic wishing dust, Jenna's prayer has been answered. With a knockout body, a fabulous wardrobe, an athlete boyfriend, a dream job, and superstar friends, this can't be a better life. But soon Jenna realizes that adult life isn’t as easy as she hoped for.",2004-04-13,6.3751,6.76,5310 +4586,1721,All the Way Boys,"The ""Trinity"" crew makes another modern era film. Plata and Salud are pilots ditching aircraft for insurance money. They wind up crashing for real in the jungles of South America. The plot involves ""Mr. Big"", who is buying the diamonds from the miners for much too little, and has thugs who keep the price down. Of course, Plata and Salud side with the miners",1972-12-22,1.694,6.8,398 +4587,814776,Bottoms,Unpopular best friends PJ and Josie start a high school self-defense club to meet girls and lose their virginity. They soon find themselves in over their heads when the most popular students start beating each other up in the name of self-defense.,2023-08-25,2.7264,6.759,719 +4588,752505,The Old Ways,"Cristina, a journalist of Mexican origin, travels to her ancestral home in Veracruz to investigate a story of sorcery and healing. There, she is kidnapped by a group of locals who claim she's the devil incarnated.",2021-04-04,0.9226,6.8,343 +4589,325189,Teen Beach 2,"When characters from the movie musical “Wet Side Story” get stuck in the real world, teens Brady and Mack must find a way to return them home.",2015-06-26,1.72,6.8,592 +4590,18764,Twin Dragons,"Twins, separated at birth, end up as a Hong Kong gangster and a New York concert pianist. When the pianist travels to Hong Kong for a concert, the two inevitably get mistaken for each other.",1992-01-15,2.4037,6.759,401 +4591,14337,Primer,"A group of fledgling inventors discover a complex method to manipulate reality. At first, they successfully game the stock market with it, but the consequences of the invention start to catch up with them.",2004-10-08,2.988,6.759,2257 +4592,8355,Ice Age: Dawn of the Dinosaurs,"Times are changing for Manny the moody mammoth, Sid the motor mouthed sloth and Diego the crafty saber-toothed tiger. Life heats up for our heroes when they meet some new and none-too-friendly neighbors – the mighty dinosaurs.",2009-06-26,9.9668,6.759,8556 +4593,28089,The Messenger,"Will Montgomery, a U.S. Army Staff Sergeant who has returned home from Iraq, is assigned to the Army’s Casualty Notification service. Montgomery is partnered with Captain Tony Stone, to give notice to the families of fallen soldiers. The Sergeant is drawn to Olivia Pitterson, to whom he has delivered news of her husband’s death.",2009-11-13,1.341,6.758,450 +4594,11974,The 'Burbs,"When secretive new neighbors move in next door, suburbanite Ray Peterson and his friends let their paranoia get the best of them as they start to suspect the newcomers of evildoings and commence an investigation. But it's hardly how Ray, who much prefers drinking beer, reading his newspaper and watching a ball game on the tube expected to spend his vacation.",1989-02-17,2.5337,6.8,1283 +4595,11313,Hearts in Atlantis,A widowed mother and her son change when a mysterious stranger enters their lives.,2001-09-28,1.3908,6.758,573 +4596,587807,Tom & Jerry,"Tom the cat and Jerry the mouse get kicked out of their home and relocate to a fancy New York hotel, where a scrappy employee named Kayla will lose her job if she can’t evict Jerry before a high-class wedding at the hotel. Her solution? Hiring Tom to get rid of the pesky mouse.",2021-02-10,5.8536,6.759,2494 +4597,205775,In the Heart of the Sea,"In the winter of 1820, the New England whaling ship Essex is assaulted by something no one could believe—a whale of mammoth size and will, and an almost human sense of vengeance.",2015-12-03,4.4001,6.757,4203 +4598,15144,Sixteen Candles,"With the occasion all but overshadowed by her sister's upcoming wedding, angst-ridden Samantha faces her 16th birthday with typical adolescent dread. Samantha pines for studly older boy Jake, but worries that her chastity will be a turnoff for the popular senior. Meanwhile, she must constantly rebuff the affections of nerdy Ted, who is unfortunately the only boy in school who seems to take an interest in her.",1984-05-04,3.3039,6.8,2125 +4599,466,Klute,A high-priced call girl is forced to depend on a reluctant private eye when she is stalked by a psychopath.,1971-06-23,1.8485,6.757,475 +4600,928344,Weird: The Al Yankovic Story,"Exploring every facet of ‘Weird Al’ Yankovic’s life, from his meteoric rise to fame with early hits like ‘Eat It’ and ‘Like a Surgeon’ to his torrid celebrity love affairs and famously depraved lifestyle, this biopic takes audiences on a truly unbelievable journey through Yankovic’s life and career, from gifted child prodigy to the greatest musical legend of all time.",2022-09-08,2.8,6.756,500 +4601,758336,Love Again,"Mira Ray, dealing with the loss of her fiancé, John, sends a series of romantic texts to his old cell phone number… not realizing the number was reassigned to Rob Burns' new work phone. Rob, a journalist, is captivated by the honesty in the beautifully confessional texts. When he’s assigned to write a profile of megastar Céline Dion, he enlists her help in figuring out how to meet Mira in person and win her heart.",2023-05-04,3.4441,6.756,429 +4602,11086,The Majestic,"Set in 1951, a blacklisted Hollywood writer gets into a car accident, loses his memory and settles down in a small town where he is mistaken for a long-lost son.",2001-12-21,1.6548,6.756,769 +4603,5854,Family Plot,Spiritualist Blanche Tyler and her cab-driving boyfriend encounter a pair of serial kidnappers while trailing a missing heir in California.,1976-04-09,1.8913,6.759,476 +4604,500682,The Highwaymen,"In 1934, Frank Hamer and Manny Gault, two former Texas Rangers, are commissioned to put an end to the wave of vicious crimes perpetrated by Bonnie Parker and Clyde Barrow, a notorious duo of infamous robbers and cold-blooded killers who nevertheless are worshiped by the public.",2019-03-15,3.7862,6.755,2118 +4605,13312,Inside,"Scarred for life after a harrowing near-death experience, emotionally fragile mother-to-be Sarah is still struggling to come to terms with her loss. Overcome with silent grief, Sarah now seeks solace in work; however, she is on a collision course with sheer terror when a knock at the door in the dead of night chills her bones to the marrow. Now, the raven-haired, late-night visitor in black wants something precious from Sarah, and will stop at nothing to get it.",2007-06-13,1.9915,6.755,865 +4606,11223,Coma,"When relatively healthy patients begin having 'complications' during simple operations and ending up in comas, a concerned doctor defies her male superiors and uncovers a secret plot.",1978-01-06,1.8637,6.755,428 +4607,1701,Con Air,"Newly-paroled former US Army ranger Cameron Poe is headed back to his wife, but must fly home aboard a prison transport flight dubbed ""Jailbird"" taking the “worst of the worst” prisoners, a group described as “pure predators”, to a new super-prison. Poe faces impossible odds when the transport plane is skyjacked mid-flight by the most vicious criminals in the country led by the mastermind — genius serial killer Cyrus ""The Virus"" Grissom, and backed by black militant Diamond Dog and psychopath Billy Bedlam.",1997-06-05,6.3229,6.756,4404 +4608,539892,Freaks,"Kept locked inside the house by her father, 7-year-old Chloe lives in fear and fascination of the outside world, where Abnormals create a constant threat—or so she believes. When a mysterious stranger offers her a glimpse of what's really happening outside, Chloe soon finds that while the truth isn't so simple, the danger is very real.",2019-09-12,2.9339,6.754,1199 +4609,348765,Alaska,"Nadine is a French young woman. Fausto is an Italian young man trying to make it in Paris as a restaurant waiter. They accidentally meet at a five-star hotel. Both are fragile, alone and obsessed with the idea of an unattainable happiness. Their intense love is challenged by their own individual ambition and desperation.",2015-11-05,0.4742,6.754,307 +4610,21481,Twitches,"Twins separated at birth, Camryn and Alex meet by chance for the first time on their 21st birthday and discover they're witches with the power to save their homeland of Coventry from the evil that threatens it. But when Camryn leaves Alex to face the darkness alone, will Coventry be doomed? Or will the sisters multiply their magic by standing together?",2005-10-14,2.2651,6.754,517 +4611,13640,Superman: Doomsday,"When LexCorp accidentally unleashes a murderous creature, Superman meets his greatest challenge as a champion. Based on the ""The Death of Superman"" storyline that appeared in DC Comics' publications in the 1990s.",2007-09-18,2.686,6.754,667 +4612,9031,I'm for the Hippopotamus,"In Africa, Slim and Tom don't like it when a German tyrant starts selling all of the African wildlife to Canadian zoos. Slim and Tom must teach this guy a lesson by beating the hell out of him and his gang.",1979-11-30,1.0844,6.8,493 +4613,1870,Fantomas Unleashed,"In the second episode of the trilogy Fantômas kidnaps distinguished scientist professor Marchand with the aim to develop a super weapon that will enable him to menace the world. Fantômas is also planning to abduct a second scientist, professor Lefebvre.",1965-12-08,1.5941,6.754,541 +4614,1137350,The Phoenician Scheme,"Wealthy businessman Zsa-zsa Korda appoints his only daughter, a nun, as sole heir to his estate. As Korda embarks on a new enterprise, they soon become the target of scheming tycoons, foreign terrorists, and determined assassins.",2025-05-23,14.5636,6.745,457 +4615,256924,Danny Collins,An ageing hard-living 1970s rock star decides to change his life when he discovers a 40-year-old undelivered letter written to him by John Lennon.,2015-03-19,1.4704,6.753,542 +4616,733156,Sightless,"After an attack renders her blind, Ellen withdraws from the world to recover. But soon she plunges into paranoia, unable to convince anyone that her assailant has returned to terrorize her by hiding in plain sight.",2020-09-29,1.3809,6.752,399 +4617,401246,The Square,A prestigious Stockholm museum's chief art curator finds himself in times of both professional and personal crisis as he attempts to set up a controversial new exhibit.,2017-08-25,2.3018,6.752,1636 +4618,377799,One Man and his Cow,An Algerian man's life-long dream finally comes true when he receives an invitation to take his cow Jacqueline to the Paris International Agriculture Fair.,2016-02-17,1.6639,6.752,341 +4619,11185,"See No Evil, Hear No Evil","A murder takes place in the shop of David Lyons, a deaf man who fails to hear the gunshot being fired. Outside, blind man Wally Karue hears the shot, but cannot see the perpetrator. Both are arrested, but escape to form an unlikely partnership. Being chased by both the law AND the original killers, can the pair work together to outwit them all?",1989-05-12,2.9566,6.752,1002 +4620,377799,One Man and his Cow,An Algerian man's life-long dream finally comes true when he receives an invitation to take his cow Jacqueline to the Paris International Agriculture Fair.,2016-02-17,1.6639,6.752,341 +4621,11185,"See No Evil, Hear No Evil","A murder takes place in the shop of David Lyons, a deaf man who fails to hear the gunshot being fired. Outside, blind man Wally Karue hears the shot, but cannot see the perpetrator. Both are arrested, but escape to form an unlikely partnership. Being chased by both the law AND the original killers, can the pair work together to outwit them all?",1989-05-12,2.9566,6.752,1002 +4622,5175,Rush Hour 2,"It's vacation time for Carter as he finds himself alongside Lee in Hong Kong wishing for more excitement. While Carter wants to party and meet the ladies, Lee is out to track down a Triad gang lord who may be responsible for killing two men at the American Embassy. Things get complicated as the pair stumble onto a counterfeiting plot. The boys are soon up to their necks in fist fights and life-threatening situations. A trip back to the U.S. may provide the answers about the bombing, the counterfeiting, and the true allegiance of sexy customs agent Isabella.",2001-08-03,8.8222,6.752,4317 +4623,297725,The Man Who Killed Don Quixote,"Toby, a cynical film director finds himself trapped in the outrageous delusions of an old Spanish shoe-maker who believes himself to be Don Quixote. In the course of their comic and increasingly surreal adventures, Toby is forced to confront the tragic repercussions of a film he made in his idealistic youth.",2018-05-19,2.4505,6.751,1036 +4624,245698,Pawn Sacrifice,American chess champion Bobby Fischer prepares for a legendary match-up against Russian Boris Spassky.,2015-09-16,2.1753,6.751,994 +4625,11091,Riding in Cars with Boys,"In 1965, a young woman with dreams of becoming a writer has a son at the age of 15 and struggles to make things work with the drug-addicted father.",2001-10-19,1.5695,6.8,453 +4626,42691,Oedipus Rex,"In pre-war Italy, a young couple have a baby boy. The father, however, is jealous of his son - and the scene moves to antiquity, where the baby is taken into the desert to be killed. He is rescued, given the name Oedipus, and brought up by the King and Queen of Corinth as their son. One day an oracle informs Oedipus that he is destined to kill his father and marry his mother. Horrified, he flees Corinth and his supposed parents - only to get into a fight and kill an older man on the road…",1967-09-07,1.134,6.8,352 +4627,15723,The Big Kahuna,"Three salesmen working for a firm that makes industrial lubricants are waiting in the company's ""hospitality suite"" at a manufacturers' convention for a ""big kahuna"" named Dick Fuller to show up, in hopes they can persuade him to place an order that could salvage the company's flagging sales.",1999-11-17,0.9201,6.75,363 +4628,9558,King of New York,A former drug lord returns from prison determined to wipe out all his competition and distribute the profits of his operations to New York's poor and lower classes in this stylish and ultra violent modern twist on Robin Hood.,1990-07-18,2.7777,6.75,723 +4629,9367,El Mariachi,"El Mariachi just wants to play his guitar and carry on the family tradition. Unfortunately, the town he tries to find work in has another visitor, a killer who carries his guns in a guitar case. The drug lord and his henchmen mistake el Mariachi for the killer, Azul, and chase him around town trying to kill him and get his guitar case.",1993-02-22,2.0957,6.75,1196 +4630,956,Mission: Impossible III,"Retired from active duty, and training recruits for the Impossible Mission Force, agent Ethan Hunt faces the toughest foe of his career: Owen Davian, an international broker of arms and information, who's as cunning as he is ruthless. Davian emerges to threaten Hunt and all that he holds dear – including the woman Hunt loves.",2006-04-25,8.3222,6.75,7208 +4631,1102493,Small Things Like These,"In 1985, while working as a coal merchant to support his family, Bill Furlong discovers disturbing secrets kept by the local convent and uncovers truths of his own; forcing him to confront his past and the complicit silence of a small Irish town controlled by the Catholic Church.",2024-11-01,2.2933,6.749,344 +4632,919573,The Innocent,"Sylvie, a nearly sixty-year-old woman, has fallen in love with Michel, a thug she marries in prison. The couple dream of starting again with a clean slate by opening a flower shop. But Sylvie’s son Abel, convinced that Michel will fall into a life of crime, disapproves of this relationship.",2022-10-12,0.6656,6.749,355 +4633,46195,Rio,"Captured by smugglers when he was just a hatchling, a macaw named Blu never learned to fly and lives a happily domesticated life in Minnesota with his human friend, Linda. Blu is thought to be the last of his kind, but when word comes that Jewel, a lone female, lives in Rio de Janeiro, Blu and Linda go to meet her. Animal smugglers kidnap Blu and Jewel, but the pair soon escape and begin a perilous adventure back to freedom -- and Linda.",2011-04-03,8.4869,6.749,6884 +4634,15854,Kung Fu Panda: Secrets of the Furious Five,"Ordered to teach a martial arts class of rambunctious bunny kittens, Po tells stories of each of the Furious Five's pasts.",2008-11-08,2.4683,6.749,438 +4635,14924,Sid and Nancy,"January 1978. After their success in England, the punk rock band Sex Pistols venture out on their tour of the southern United States. Temperamental bassist Sid Vicious is forced by his band mates to travel without his troubled girlfriend, Nancy Spungen, who will meet him in New York. When the band breaks up and Sid begins his solo career in a hostile city, the turbulent couple definitely falls into the depths of drug addiction.",1986-09-12,2.0012,6.749,527 +4636,11235,Local Hero,An American oil company sends a man to Scotland to buy up an entire village where they want to build a refinery. But things don't go as expected.,1983-02-17,1.7469,6.7,369 +4637,10846,The Tiger and the Snow,"Love and injury in time of war. Attilio de Giovanni teaches poetry in Italy. He has a romantic soul, and women love him. But he is in love with Vittoria, and the love is unrequited. Every night he dreams of marrying her, in his boxer shorts and t-shirt, as Tom Waits sings. Vittoria travels to Iraq with her friend, Fuad, a poet; they are there with the second Gulf War breaks out. Vittoria is injured. Attilio must get to her side, and then, as war rages around him, he must find her the medical care she needs. In war, does love conquer all?",2005-10-14,1.5235,6.7,483 +4638,716612,Spencer,"During her Christmas holidays with the royal family at the Sandringham estate in Norfolk, England, Diana decides to leave her marriage to Prince Charles.",2021-11-04,1.8678,6.748,1722 +4639,581392,Peninsula,A soldier and his team battle hordes of post-apocalyptic zombies in the wastelands of the Korean Peninsula.,2020-07-15,6.2472,6.748,2452 +4640,524216,The Mortuary Collection,"In the phantasmagorical town of Raven's End, a misguided young girl takes refuge in a decrepit old mortuary. The eccentric undertaker chronicles the strange history of the town through a series of twisted tales, each more terrifying than the last, but the young girl's world is unhinged when she discovers that the final story... is her own.",2020-09-25,2.0247,6.747,442 +4641,44251,Dragon Ball Z: Broly - Second Coming,"A Saiyan Space pod crash-lands on Earth out of which a wounded Saiyan crawls: Broly, the Legendary Super Saiyan. The wounded Broly shouts out in frustration and turns into normal form. The place soon freezes, trapping him in it and he falls into a coma.",1994-03-12,4.6022,6.7,691 +4642,13061,Your Friend the Rat,"Let's face it, rats are not the most beloved creatures on earth. However, maybe this little tale about the history of human and rat interaction will change the world's tune. At least that is the hope of Remy, the star of Ratatouille, and his reluctant brother Emile as they guide us through world history from a rat's perspective. Why can't we all just get along?",2007-11-06,1.7918,6.747,377 +4643,913,The Thomas Crown Affair,"Bored billionaire executive Thomas Crown entertains himself by stealing a Monet from a reputed museum with an elaborate diversion. When Catherine Banning, the insurance company's investigator, takes an interest in Crown, he may have met his match, and a complicated back-and-forth game with seductive undertones begins between them.",1999-08-06,5.1579,6.747,1245 +4644,634,Bridget Jones's Diary,"Bridget Jones is an average woman struggling against her age, her weight, her job, her lack of a man, and her various imperfections. As a New Year's resolution, Bridget decides to take control of her life, starting by keeping a diary in which she will always tell the complete truth. The fireworks begin when her charming though disreputable boss takes an interest in the quirky Miss Jones. Thrown into the mix are Bridget's band of slightly eccentric friends and a rather disagreeable acquaintance into whom Bridget cannot seem to stop running or help finding quietly attractive.",2001-04-13,5.3333,6.747,5264 +4645,1013850,A Real Pain,Mismatched cousins David and Benji reunite for a tour through Poland to honor their beloved grandmother. The adventure takes a turn when the pair's old tensions resurface against the backdrop of their family history.,2024-11-01,4.3461,6.7,1101 +4646,390734,Kingsglaive: Final Fantasy XV,"The magical kingdom of Lucis is home to the world’s last remaining Crystal, and the menacing empire of Niflheim is determined to steal it. King Regis of Lucis commands an elite force of soldiers called the Kingsglaive. Wielding their king’s magic, they fight to protect Lucis. As the overwhelming military might of the empire bears down, King Regis is faced with an impossible ultimatum – to marry his son, Prince Noctis to Princess Lunafreya of Tenebrae, captive of Niflheim, and surrender his lands to Niflheim rule. Although the king concedes, it becomes clear that the empire will stop at nothing to achieve their devious goals, with only the Kingsglaive standing between them and world domination.",2016-07-09,2.6058,6.746,710 +4647,236751,Heaven Is for Real,"The true story of the 4-year old son of a small-town pastor who, during emergency surgery, slips from consciousness and enters heaven. When he awakes, he recounts his experiences on the other side.",2014-04-16,4.5193,6.746,843 +4648,4271,Life Is a Long Quiet River,"Two babies are switched at birth. When the mistake is discovered 12 years later, it leads to complications in the lives of both families. One family is affluent, with dutiful and (apparently) contented children. The other family is poor, with rambunctious (even delinquent) children, often hungry, but with lots of laughter in the house.",1988-02-03,1.1827,6.746,441 +4649,1875,Fantomas vs. Scotland Yard,"In the third and final episode of the trilogy, Fantômas imposes a head tax on the rich, threatening to kill those who do not comply.",1967-03-16,1.4786,6.746,536 +4650,416194,The Quake,"A geologist races against time to save his estranged wife and two children when a devastating earthquake strikes Oslo, Norway.",2018-08-31,2.835,6.7,780 +4651,11904,Young Sherlock Holmes,"Sherlock Holmes and Dr. Watson meet as boys in an English Boarding school. Holmes is known for his deductive ability even as a youth, amazing his classmates with his abilities. When they discover a plot to murder a series of British business men by an Egyptian cult, they move to stop it.",1985-12-04,1.9387,6.746,657 +4652,1696,The Devil's Rejects,"The murderous, backwoods Firefly family take to the road to escape the vengeful Sheriff Wydell, who is not afraid of being as ruthless as his target.",2005-07-22,2.8936,6.7,1465 +4653,571891,Pokémon the Movie: Mewtwo Strikes Back - Evolution,"After accepting an invitation from a mysterious trainer, Ash, Misty and Brock meet Mewtwo, an artificially created Pokémon who wants to do battle.",2019-07-12,2.8923,6.744,545 +4654,300666,Bravetown,"After an accidental drug overdose, a talented teenage DJ goes to live with his estranged father in a small Army town, where he gets to the bottom of his own pain and learns empathy for others.",2015-05-08,0.704,6.744,301 +4655,283350,Before We Go,A woman who is robbed on her way to catch the 1:30 train to Boston is left stranded in New York City. She meets a man who helps her during the course of the night and the two form a romance.,2014-09-04,2.6099,6.7,1839 +4656,11592,Serial Mom,"Beverly is the perfect happy homemaker, along with her doting husband and two children, but this nuclear family just might explode when her fascination with serial killers collides with her ever-so-proper code of ethics.",1994-04-13,2.2384,6.744,716 +4657,15849,The Mummy,An ancient Egyptian priest named Imhotep is revived when an archaeological expedition finds his mummy and one of the archaeologists accidentally reads an ancient life-giving spell. Imhotep escapes from the field site and searches for the reincarnation of the soul of his lover.,1932-12-22,2.2507,6.743,647 +4658,10135,Road House,"The Double Deuce is the meanest, loudest and rowdiest bar south of the Mason-Dixon Line, and Dalton has been hired to clean it up. He might not look like much, but the Ph.D.-educated bouncer proves he's more than capable – busting the heads of troublemakers and turning the roadhouse into a jumping hot spot. But Dalton's romance with the gorgeous Dr. Clay puts him on the bad side of cutthroat local big shot Brad Wesley.",1989-05-19,3.5543,6.743,1372 +4659,858,Sleepless in Seattle,"After the death of his mother, a young boy calls a radio station in an attempt to set his father up on a date. Talking about his father’s loneliness soon leads to a meeting with a young female journalist, who has flown to Seattle to write a story about the boy and his father.",1993-06-24,3.5998,6.743,2448 +4660,568091,Fractured,"Driving cross-country, Ray and his wife and daughter stop at a highway rest area where his daughter falls and breaks her arm. After a frantic rush to the hospital and a clash with the check-in nurse, Ray is finally able to get her to a doctor. While the wife and daughter go downstairs for an MRI, Ray, exhausted, passes out in a chair in the lobby. Upon waking up, they have no record or knowledge of Ray's family ever being checked in.",2019-09-22,5.2375,6.742,2699 +4661,464502,Acrimony,"Faithful wife Melinda, who is tired of standing by her devious husband Robert, is enraged when it becomes clear she has been betrayed. That's when she lost it, and now she cannot let it go.",2018-03-30,2.6212,6.742,387 +4662,448776,A Prayer Before Dawn,"The amazing true story of Billy Moore, an English boxer incarcerated in Thailand’s most notorious prison. Thrown into a world of drugs and violence, he finds his best chance to escape is to fight his way out in prison Muay Thai tournaments.",2018-05-24,2.7678,6.7,596 +4663,212716,What If,"Medical-school dropout Wallace has been repeatedly burned by bad relationships. So while everyone around him, including his roommate Allan, seems to be finding the perfect partner, Wallace decides to put his love life on hold. It is then that he meets Chantry, an animator who lives with her longtime boyfriend Ben. Wallace and Chantry form an instant connection, striking up a close friendship. Still, there is no denying the chemistry between them, leading the pair to wonder, what if the love of your life is actually your best friend?",2013-09-07,1.68,6.742,2003 +4664,19200,Shadows and Fog,"With a serial strangler on the loose, a bookkeeper wanders around town searching for the vigilante group intent on catching the killer.",1991-12-05,1.2657,6.742,376 +4665,12626,Broadcast News,"Basket-case network news producer Jane Craig falls for new reporter Tom Grunnick, a pretty boy who represents the trend towards entertainment news she despises. Aaron Altman, a talented but plain correspondent, carries an unrequited torch for Jane. Sparks fly between the three as the network prepares for big changes, and both the news and Jane must decide between style and substance.",1987-12-16,1.5363,6.7,428 +4666,8536,Superman II,"Three Kryptonian criminals led by General Zod team up with Lex Luthor to conquer Earth, forcing a depowered Superman to regain his strength and stop them.",1980-12-12,6.3416,6.7,2373 +4667,105864,The Good Dinosaur,An epic journey into the world of dinosaurs where an Apatosaurus named Arlo makes an unlikely human friend.,2015-11-14,7.9543,6.741,5764 +4668,57112,Have You Met Claudia?,"Claudia is married with Giovanni, a rather dull type. Meek Giacomo is happily divorced, until he meets her. Aldo is a colorful cabbie with whom she had an affair. Who'll win her heart?",2004-12-15,0.4078,6.741,1023 +4669,18095,Dragon Ball GT: A Hero's Legacy,"Son Goku Jr. is the great-great-grandson of the legendary martial artist Son Goku. However, unlike his predecessor he's not a brave fighter. He's constantly picked on by school bullies, his grandmother Pan sees this and she's worried, but even though Goku Jr. is not a strong and powerful Saiyan, he has a kind heart, and Pan loves him. When Pan gets sick Goku Jr. realizes he must do something if he doesn't want to lose Pan. Then he will remember about the legends of the Dragon Balls. It was told they granted a wish to the bearer, Goku Jr. needs a magical wish more than ever.",1997-03-26,3.5482,6.741,355 +4670,14022,Slacker,"Austin, Texas, is an Eden for the young and unambitious, from the enthusiastically eccentric to the dangerously apathetic. Here, the nobly lazy can eschew responsibility in favor of nursing their esoteric obsessions. The locals include a backseat philosopher who passionately expounds on his dream theories to a seemingly comatose cabbie, a young woman who tries to hawk Madonna's Pap test to anyone who will listen and a kindly old anarchist looking for recruits.",1991-07-05,1.276,6.741,319 +4671,9781,Detroit Rock City,"In 1978, a Kiss concert was an epoch-making event. For the four teen fans in Detroit Rock City getting tickets to the sold-out show becomes the focal point of their existence. They'll do anything for tickets -- compete in a strip club's amateur-night contest, take on religious protesters, even rob a convenience store!",1999-08-13,2.1556,6.741,422 +4672,9469,He Got Game,A basketball player's father must try to convince him to go to a college so he can get a shorter prison sentence.,1998-05-01,2.149,6.741,750 +4673,7012,The Day After,"In the mid-1980s, the U.S. is poised on the brink of nuclear war. This shadow looms over the residents of a small town in Kansas as they continue their daily lives. Dr. Russell Oakes maintains his busy schedule at the hospital, Denise Dahlberg prepares for her upcoming wedding, and Stephen Klein is deep in his graduate studies. When the unthinkable happens and the bombs come down, the town's residents are thrust into the horrors of nuclear winter.",1983-11-20,2.6496,6.746,408 +4674,605,The Matrix Revolutions,The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.,2003-11-05,7.2126,6.741,10259 +4675,826510,Harold and the Purple Crayon,"Inside of his book, adventurous Harold can make anything come to life simply by drawing it. After he grows up and draws himself off the book's pages and into the physical world, Harold finds he has a lot to learn about real life.",2024-07-31,5.4934,6.7,306 +4676,760104,X,"In 1979, a group of young filmmakers set out to make an adult film in rural Texas, but when their reclusive, elderly hosts catch them in the act, the cast find themselves fighting for their lives.",2022-03-17,9.2227,6.74,3604 +4677,667869,The Life Ahead,"In seaside Italy, a Holocaust survivor with a daycare business takes in a 12-year-old street kid who recently robbed her.",2020-11-03,0.5955,6.74,550 +4678,476669,The King's Man,"As a collection of history's worst tyrants and criminal masterminds gather to plot a war to wipe out millions, one man must race against time to stop them.",2021-12-22,8.9889,6.741,4763 +4679,257,Oliver Twist,"An adaptation of the classic Dickens tale, where an orphan meets a pickpocket on the streets of London. From there, he joins a household of boys who are trained to steal for their master.",2005-09-23,1.7549,6.7,1191 +4680,933419,Champions,A stubborn and hotheaded minor league basketball coach is forced to train a Special Olympics team when he is sentenced to community service.,2023-03-09,2.4554,6.7,450 +4681,798286,Beau Is Afraid,"Following the sudden death of his mother, a mild-mannered but anxiety-ridden man confronts his darkest fears as he embarks on an epic, Kafkaesque odyssey back home.",2023-04-14,3.3539,6.739,1172 +4682,253980,Marvel One-Shot: All Hail the King,A documentary filmmaker interviews the now-famous Trevor Slattery from behind bars.,2014-02-04,1.8134,6.739,572 +4683,51980,Germinal,"It's mid 19th century, north of France. The story of a coal miner's town. They are exploited by the mine's owner. One day the decide to go on strike, and then the authorities repress them.",1993-09-29,1.1133,6.7,329 +4684,44683,Tinker Bell and the Great Fairy Rescue,"During a summer stay on the mainland, Tinker Bell is accidentally discovered while investigating a little girl's fairy house. As the other fairies, led by the brash Vidia, launch a daring rescue in the middle of a fierce storm, Tink develops a special bond with the lonely, little girl.",2010-07-29,3.9442,6.7,964 +4685,11022,Narc,"When the trail goes cold on a murder investigation of a policeman, an undercover narcotics officer is lured back to the force to help solve the case.",2002-01-14,1.7903,6.739,543 +4686,10692,Henry: Portrait of a Serial Killer,"Arriving in Chicago, Henry moves in with ex-con acquaintance Otis and starts schooling him in the ways of the serial killer.",1986-09-24,1.322,6.7,733 +4687,9739,Demolition Man,"In 1996, brash L.A. detective John Spartan and maniac killer Simon Phoenix are both sentenced to decades in a cryogenic prison as punishment for a rescue mission gone wrong. When Phoenix escapes 36 years later to wreak havoc on the future, Spartan is awakened to capture his nemesis the old-fashioned way.",1993-10-08,6.6978,6.739,3860 +4688,394684,May God Save Us,"Madrid, summer 2011. Economic crisis. 15-M movement and 1.5 million pilgrims waiting for the Pope’s arrival live side by side in a Madrid that’s hotter and more chaotic than ever. In this context, detectives Velarde and Alfaro must find what seems to be a serial killer. Their against-the-clock hunt will make them realise something they’d never imagined: neither of them are so very different from the killer.",2016-10-28,1.2267,6.738,443 +4689,186161,The Gilded Cage,"In the beautiful area of ​​Paris, Maria and José Ribeiro lived for almost thirty years on the ground floor of a Haussmann building, in their dear little lodge.",2013-04-19,0.8301,6.7,343 +4690,16241,The Boys from Brazil,"Nazi hunter Ezra Lieberman discovers a sinister and bizarre plot, masterminded by Dr. Josef Mengele, to rekindle the Third Reich.",1978-10-05,2.129,6.7,411 +4691,12508,Rock Star,"A wannabe rock star who fronts a Pennsylvania-based tribute band is devastated when his bandmates kick him out of the group he founded. Things begin to look up for Izzy when he is asked to join Steel Dragon, the heavy metal rockers he had been imitating for so long. This film is loosely based on the true story of the band Judas Priest.",2001-09-04,2.067,6.738,775 +4692,8967,The Tree of Life,"The impressionistic story of a Texas family in the 1950s. The film follows the life journey of the eldest son, Jack, through the innocence of childhood to his disillusioned adult years as he tries to reconcile a complicated relationship with his father. Jack finds himself a lost soul in the modern world, seeking answers to the origins and meaning of life while questioning the existence of faith.",2011-05-17,3.6413,6.7,3180 +4693,21474,Bring It On: Fight to the Finish,"When her mother falls for a wealthy man, Lina Cruz must move in with her new stepfather and transfer from an urban East Los Angeles public high school to an exclusive prep school in Malibu, where she struggles to fit in with her affluent new peers. After snooty cheerleading captain Avery blocks Lina from varsity, Lina recruits her best friends from her old school to help her whip the pathetic junior varsity cheerleading squad -- the Sea Lions -- into fighting shape.",2009-07-30,0.1841,6.7,557 +4694,9749,Fletch,"When investigative reporter Irwin ""Fletch"" Fletcher goes undercover to write a piece on the drug trade at a local beach, he's approached by wealthy businessman Alan Stanwyk, who offers him $50,000 to murder him. With sarcastic wit and a knack for disguises, Fletch sets out to uncover Stanwyk's story.",1985-05-31,1.4996,6.737,711 +4695,500475,SuperFly,"Career criminal Youngblood Priest wants out of the Atlanta drug scene, but as he ramps up sales, one little slip up threatens to bring the whole operation down before he can make his exit.",2018-06-13,2.2653,6.736,388 +4696,244506,Camp X-Ray,"A young woman joins the military to be part of something bigger than herself and her small-town roots. Instead, she ends up as a new guard at Guantanamo Bay, where her mission is far from black and white. Surrounded by hostile jihadists and aggressive squadmates, she strikes up an unusual friendship with one of the detainees.",2014-10-17,2.8294,6.736,1055 +4697,4587,Mermaids,"Fifteen-year-old Charlotte Flax is tired of her wacky mom moving their family to a different town any time she feels it is necessary. When they move to a small Massachusetts town and Mrs. Flax begins dating a shopkeeper, Charlotte and her 9-year-old sister, Kate, hope that they can finally settle down. But when Charlotte's attraction to an older man gets in the way, the family must learn to accept each other for who they truly are.",1990-12-14,2.2818,6.736,535 +4698,294254,Maze Runner: The Scorch Trials,"Thomas and his fellow Gladers face their greatest challenge yet: searching for clues about the mysterious and powerful organization known as WCKD. Their journey takes them to the Scorch, a desolate landscape filled with unimaginable obstacles. Teaming up with resistance fighters, the Gladers take on WCKD’s vastly superior forces and uncover its shocking plans for them all.",2015-09-09,10.1303,6.735,10648 +4699,13509,The Monster Squad,"Count Dracula adjourns to Earth, accompanied by Frankenstein's Monster, the Wolfman, the Mummy, and the Gillman. The uglies are in search of a powerful amulet that will grant them power to rule the world. Our heroes - the Monster Squad are the only ones daring to stand in their way.",1987-08-14,2.3417,6.735,597 +4700,662546,Godmothered,"A young and unskilled fairy godmother that ventures out on her own to prove her worth by tracking down a young girl whose request for help was ignored. What she discovers is that the girl has now become a grown woman in need of something very different than a ""prince charming.""",2020-12-04,2.2319,6.7,617 +4701,37233,The Firm,"Mitch McDeere is a young man with a promising future in Law. About to sit his Bar exam, he is approached by 'The Firm' and made an offer he doesn't refuse. Seduced by the money and gifts showered on him, he is totally oblivious to the more sinister side of his company. Then, two Associates are murdered. The FBI contact him, asking him for information and suddenly his life is ruined. He has a choice - work with the FBI, or stay with the Firm. Either way he will lose his life as he knows it. Mitch figures the only way out is to follow his own plan...",1993-06-30,4.6556,6.734,2134 +4702,13195,Flawless,"A female executive and a night janitor conspire to commit a daring diamond heist from their mutual employer, The London Diamond Corporation.",2007-09-01,3.2724,6.7,573 +4703,12706,Croupier,"Jack Manfred is an aspiring writer who to make ends meet, takes a job as a croupier. Jack remains an observer, knowing that everything in life is a gamble and that gamblers are born to lose. Inevitably, he gets sucked into the world of the casino which takes its toll on his relationships and the novel he is writing.",1998-06-25,1.4777,6.734,301 +4704,4978,An American Tail,"A young mouse named Fievel and his family decide to migrate to America, a ""land without cats,"" at the turn of the 20th century. But somehow, Fievel ends up in the New World alone and must fend off not only the felines he never thought he'd have to deal with again but also the loneliness of being away from home.",1986-11-21,2.4768,6.736,1386 +4705,39513,Paul,"For the past 60 years, a space-traveling smart-ass named Paul has been locked up in a top-secret military base, advising world leaders about his kind. But when he worries he’s outlived his usefulness and the dissection table is drawing uncomfortably close, Paul escapes on the first RV that passes by his compound in Area 51. Fortunately, it contains the two earthlings who are most likely to rescue and harbor an alien on the run.",2011-02-14,5.8478,6.7,5964 +4706,37777,Soap and Water,A school janitor pretends to be a priest in order to give private lessons to a young top model.,1983-10-27,0.6869,6.7,356 +4707,11211,Bring It On: All or Nothing,"A transfer student at a rough high school tries joining the cheer-leading squad and finds that she not only has to face off against the head cheerleader, but also against her former school in preparation for a cheer-off competition.",2006-07-18,0.1888,6.7,830 +4708,7985,Penelope,"Forlorn heiress Penelope Wilhern is cursed, and the only way out is to fall in love with someone of suitable stock. But how can she find her soul mate when she's sequestered inside her family's estate with only her parents to keep her company. This untraditional fairy tale about a girl who bucks convention to create her own happy ending.",2006-03-01,2.3804,6.733,1418 +4709,538225,Deadwood: The Movie,"Follow the 10-year reunion of the Deadwood camp to celebrate South Dakota's statehood. Former rivalries are reignited, alliances are tested and old wounds are reopened, as all are left to navigate the inevitable changes that modernity and time have wrought.",2019-05-31,1.7027,6.732,419 +4710,351145,Retribution,"While Carlos, a banking executive, takes his two kids to school in his car, he gets a phone call telling him that there is a bomb under the seats and he must to gather a large amount of money; otherwise, his car will blow up.",2015-09-21,0.977,6.731,433 +4711,10591,The Girl Next Door,"Exceptionally ambitious high schooler Matthew has aspirations for a career in politics when he falls in love with his gorgeous 19-year-old neighbor, Danielle. But Matthew's bright future is jeopardized when he finds Danielle was once a porn star. As Danielle's past catches up with her, Matthew's love for her forces him to re-evaluate his goals.",2004-04-09,8.9152,6.731,3724 +4712,65760,The Whistleblower,"Nebraska cop Kathryn Bolkovac discovers a deadly sex trafficking ring while serving as a U.N. peacekeeper in post-war Bosnia. Risking her own life to save the lives of others, she uncovers an international conspiracy that is determined to stop her, no matter the cost.",2010-09-13,2.2901,6.7,573 +4713,1909,Don Juan DeMarco,"John Arnold DeMarco is a man who believes he is Don Juan, the greatest lover in the world. Clad in a cape and mask, DeMarco undergoes psychiatric treatment with Dr. Jack Mickler to cure him of his apparent delusion. But the psychiatric sessions have an unexpected effect on the psychiatric staff and, most profoundly, Dr Mickler, who rekindles the romance in his complacent marriage.",1994-10-12,2.5997,6.73,760 +4714,1118031,Apocalypse Z: The Beginning of the End,"When a kind of rabies that transforms people into aggressive creatures spreads across the planet, Manel isolates himself at home with his cat, relying on his wits to survive; but soon they must go out in search of food, by land and by sea, dodging many dangers.",2024-10-04,20.2571,6.73,1122 +4715,1111873,Abigail,"A group of criminals kidnap a teenage ballet dancer, the daughter of a notorious gang leader, in order to obtain a ransom of $50 million, but over time, they discover that she is not just an ordinary girl. After the kidnappers begin to diminish, one by one, they discover, to their increasing horror, that they are locked inside with no normal little girl.",2024-04-16,8.3866,6.731,1643 +4716,530723,Bad Education,"A superintendent of a school district works for the betterment of the student’s education when an embezzlement scheme is discovered, threatening to destroy everything.",2019-09-08,1.4469,6.73,712 +4717,399170,Logan Lucky,"Trying to reverse a family curse, brothers Jimmy and Clyde Logan set out to execute an elaborate robbery during the legendary Coca-Cola 600 race at the Charlotte Motor Speedway.",2017-08-17,5.1144,6.729,3650 +4718,376570,Hush,A deaf woman is stalked by a psychotic killer in her secluded home.,2016-03-12,3.404,6.729,4673 +4719,14522,Black Beauty,"The fates of horses, and the people who own and command them, are revealed as Black Beauty narrates the circle of his life.",1994-07-29,1.4339,6.729,339 +4720,11558,Silver Streak,"A somewhat daffy book editor on a rail trip from Los Angeles to Chicago thinks that he sees a murdered man thrown from the train. When he can find no one who will believe him, he starts doing some investigating of his own. But all that accomplishes is to get the killer after him.",1976-12-03,1.902,6.729,341 +4721,11009,Saturday Night Fever,Tony spends his Saturdays at a disco where his stylish moves raise his popularity among the patrons. But his life outside the disco is not easy and things change when he gets attracted to Stephanie.,1977-12-16,3.242,6.729,1984 +4722,9789,My Brother Is an Only Child,"Accio and Manrico are siblings from a working-class family in 1960s Italy: older Manrico is handsome, charismatic, and loved by all, while younger Accio is sulky, hot-headed, and treats life as a battleground — much to his parents' chagrin. After the former is drawn into left-wing politics, Accio joins the fascists out of spite, but his flimsy beliefs are put to test when he falls for Manrico's like-minded girlfriend.",2007-03-28,1.1683,6.729,401 +4723,458594,Peppermint,"A grieving mother transforms herself into a vigilante following the murders of her husband and daughter, eluding the authorities to deliver her own personal brand of justice.",2018-09-06,3.6048,6.728,2124 +4724,14197,My Sassy Girl,"A guy has his life planned out until he is wooed, groomed and then dumped by an elusive woman.",2008-05-26,1.2454,6.7,384 +4725,10675,Frantic,"The wife of an American doctor suddenly vanishes in Paris. To find her, he navigates a puzzling web of language, locale, laissez-faire cops, triplicate-form filling bureaucrats and a defiant, mysterious waif who knows more than she tells.",1988-02-19,1.9677,6.728,1049 +4726,4244,The Kid,"Powerful businessman Russ Duritz is self-absorbed and immersed in his work. But by the magic of the moon, he meets Rusty, a chubby, charming 8-year-old version of himself who can't believe he could turn out so badly – with no life and no dog. With Rusty's help, Russ is able to reconcile the person he used to dream of being with the man he's actually become.",2000-07-07,2.656,6.728,1048 +4727,614292,Bad Tales,"In a small suburb on the outskirts of Rome, the cheerful heat of summer camouflages a stifling atmosphere of alienation. From a distance, the families seem normal, but it’s an illusion: in the houses, courtyards and gardens, silence shrouds the subtle sadism of the fathers, the passivity of the mothers and the guilty indifference of adults. But it’s the desperation and repressed rage of the children that will explode and cut through this grotesque façade, with devastating consequences for the entire community.",2020-06-15,1.3428,6.727,587 +4728,467632,Bad Samaritan,"A thief makes a disturbing discovery in the house where he breaks in. Later, when he returns to the same house with his partner in crime, things are no longer how he expected.",2018-04-19,2.6397,6.727,721 +4729,276843,What We Did on Our Holiday,"Doug and Abi and their three children travel to the Scottish Highlands for Doug's father Gordie's birthday party. It's soon clear that when it comes to keeping a secret under wraps from the rest of the family, their children are their biggest liability...",2014-09-26,1.7313,6.727,538 +4730,591,The Da Vinci Code,"A murder in Paris’ Louvre Museum and cryptic clues in some of Leonardo da Vinci’s most famous paintings lead to the discovery of a religious mystery. For 2,000 years a secret society closely guards information that — should it come to light — could rock the very foundations of Christianity.",2006-05-17,6.8799,6.727,9623 +4731,732450,Batman: Soul of the Dragon,"Bruce Wayne faces a deadly menace from his past, with the help of three former classmates: world-renowned martial artists Richard Dragon, Ben Turner and Lady Shiva.",2021-01-12,1.2861,6.726,359 +4732,438799,Overlord,"France, June 1944. On the eve of D-Day, some American paratroopers fall behind enemy lines after their aircraft crashes while on a mission to destroy a radio tower in a small village near the beaches of Normandy. After reaching their target, the surviving paratroopers realise that, in addition to fighting the Nazi troops that patrol the village, they also must fight against something else.",2018-11-01,6.3173,6.726,2957 +4733,12651,Memphis Belle,"The ""Memphis Belle"" is a World War II bomber, piloted by a young crew on dangerous bombing raids into Europe. The crew only have to make one more bombing raid before they have finished their duty and can go home. In the briefing before their last flight, the crew discover that the target for the day is Bremen.",1990-09-07,1.4322,6.7,394 +4734,11448,Mighty Aphrodite,"When Lenny and his wife, Amanda, adopt a baby, Lenny realizes that his son is a genius and becomes obsessed with finding the boy's biological mother in hopes that she will be brilliant too. But when he learns that Max's mother is Linda Ash, a kindhearted prostitute and porn star, Lenny is determined to reform her immoral lifestyle. A Greek chorus chimes in to relate the plot to Greek mythology in this quirky comedy.",1995-09-13,2.0107,6.7,710 +4735,10837,DuckTales: The Movie - Treasure of the Lost Lamp,"With his nephews and niece, everyone's favorite rich uncle, Scrooge McDuck, treks from his mansion home in Duckburg in search of the long-lost loot of the thief Collie Baba. But finding the goods isn't quite what it's ""quacked"" up to be! Their thrilling adventure leads to comical chaos, magical mayhem, and a lesson about what is far more valuable than money, gold and jewels.",1990-08-03,2.514,6.726,897 +4736,10649,The Enforcer,"Dirty Harry Callahan returns again, this time saddled with a rookie female partner. Together, they must stop a terrorist group consisting of angry Vietnam veterans.",1976-12-16,3.1281,6.7,920 +4737,10585,Child's Play,An innocent-looking doll is inhabited by the soul of a serial killer who refuses to die.,1988-11-09,5.7555,6.728,3127 +4738,4985,The Longest Yard,"A football player-turned-convict organizes a team of inmates to play against a team of prison guards. His dilemma is that the warden asks him to throw the game in return for an early release, but he is also concerned about the inmates' lack of self-esteem.",1974-08-21,2.1553,6.7,303 +4739,459992,Long Shot,"Journalist Fred Flarsky reunites with his childhood crush, Charlotte Field, now one of the most influential women in the world. As she prepares to make a run for the Presidency, Charlotte hires Fred as her speechwriter — much to the dismay of her trusted advisers.",2019-05-02,2.4843,6.7,2759 +4740,21385,"Mickey, Donald, Goofy: The Three Musketeers","In Disney's take on the Alexander Dumas tale, Mickey Mouse, Donald Duck and Goofy want nothing more than to perform brave deeds on behalf of their queen (Minnie Mouse), but they're stymied by the head Musketeer, Pete. Pete secretly wants to get rid of the queen, so he appoints Mickey and his bumbling friends as guardians to Minnie, thinking such a maneuver will ensure his scheme's success. The score features songs based on familiar classical melodies.",2004-08-04,2.8173,6.725,956 +4741,10427,Red Rock West,"When a promised job for Texan Michael fails to materialize in Wyoming, Mike is mistaken by Wayne to be the hitman he hired to kill his unfaithful wife, Suzanne. Mike takes full advantage of the situation, collects the money, and runs. During his getaway, things go wrong, and soon get worse when he runs into the real hitman, Lyle.",1993-05-14,1.5517,6.7,365 +4742,9960,Lord of the Flies,Following a plane crash a group of schoolboys find themselves on a deserted island. They appoint a leader and attempt to create an organized society for the sake of their survival. Democracy and order soon begin to crumble when a breakaway faction regresses to savagery with horrifying consequences.,1963-08-13,1.7985,6.725,541 +4743,790,The Fog,"Strange things begin to occurs as a tiny California coastal town prepares to commemorate its centenary. Inanimate objects spring eerily to life; Rev. Malone stumbles upon a dark secret about the town's founding; radio announcer Stevie witnesses a mystical fire; and hitchhiker Elizabeth discovers the mutilated corpse of a fisherman. Then a mysterious iridescent fog descends upon the village, and more people start to die.",1980-02-01,3.8182,6.725,1632 +4744,614933,Atlas,A brilliant counterterrorism analyst with a deep distrust of AI discovers it might be her only hope when a mission to capture a renegade robot goes awry.,2024-05-23,4.7526,6.726,1418 +4745,504603,The World Is Yours,"To escape his life of crime, a Paris drug dealer takes on one last job involving Spain, unhinged gangsters, his longtime crush and his scheming mother.",2018-08-15,0.9759,6.724,427 +4746,359983,The Lion Guard: Return of the Roar,"Set in the African savannah, the film follows Kion as he assembles the members of the 'Lion Guard'. Throughout the film, the diverse team of young animals will learn how to utilize each of their unique abilities to solve problems and accomplish tasks to maintain balance within the Circle of Life, while also introducing viewers to the vast array of animals that populate the prodigious African landscape.",2016-01-25,2.2496,6.7,1215 +4747,11838,Ju-on: The Grudge,"When social worker Rika is sent to check on a traumatized old lady whose family have moved in at the site of the notorious Saeki family murder case, she unwittingly unleashes a cycle of terror that is transmitted via its victims further and further from its original source.",2002-10-18,2.7347,6.724,846 +4748,11163,Satyricon,"After his young lover, Gitone, leaves him for another man, Encolpio decides to kill himself, but a sudden earthquake destroys his home before he has a chance to do so. Now wandering around Rome in the time of Nero, Encolpio encounters one bizarre and surreal scene after another.",1969-09-18,1.3282,6.724,341 +4749,10552,Cat's Eye,"Three short stories linked by a stray cat that roams from one tale to the next, in this creepy triptych that begins as Dick tries to quit smoking by any means necessary. Next, we meet Johnny, an adulterous man who's forced by his lover's husband onto a building's hazardous ledge. Finally, Amanda is threatened by an evil gnome who throws suspicion on the family cat.",1985-04-12,2.6229,6.724,681 +4750,6312,Brotherhood of the Wolf,"In 18th century France, the Chevalier de Fronsac and his Native American friend Mani are sent by the King to the Gevaudan province to investigate the killings of hundreds by a mysterious beast.",2001-01-31,3.8992,6.724,1614 +4751,933131,Badland Hunters,"After a deadly earthquake turns Seoul into a lawless badland, a fearless huntsman springs into action to rescue a teenager abducted by a mad doctor.",2024-01-26,4.5349,6.723,754 +4752,785457,Afterlife of the Party,A social butterfly who dies during her birthday week is given a second chance to right her wrongs on Earth.,2021-09-02,1.3241,6.723,465 +4753,13851,Batman: Gotham Knight,A chronicle of Bruce Wayne's establishment and progression into Gotham City’s legendary caped crusader through 6 standalone episodes.,2008-07-08,2.5768,6.723,726 +4754,616803,Breaking Surface,"Two Swedish/Norwegian half sisters go on a winter diving trip in Northern Norway, when they get trapped after a rockslide.",2020-02-14,1.9698,6.7,422 +4755,427348,Carbone,"In danger of losing his business, Anthony Roca, an ordinary man, develops a scam that will become the heist of the century. Overtaken by the crime, he will have to deal with betrayal, murder and settling.",2017-11-01,1.0543,6.722,432 +4756,360605,Invisible Sister,"Teenager Cleo's school science project goes quite awry, causing her popular older sister Molly to go invisible.",2015-12-10,2.7949,6.7,300 +4757,91745,Romeo & Juliet,"In Verona, bad blood between the Montague and Capulet families leads to much bitterness. Despite the hostility, Romeo Montague manages an invitation to a masked ball at the estate of the Capulets and meets Juliet, their daughter. The two are instantly smitten but dismayed to learn that their families are enemies. Romeo and Juliet figure out a way to pursue their romance, but Romeo is banished for his part in the slaying of Juliet's cousin, Tybalt.",2013-09-12,2.7232,6.722,573 +4758,48415,Welcome to the South,"Alberto, post office manager of a small town in Brianza, under pressure of his wife Sylvia, is willing to do anything to get the transfer to Milan. Even pretending to be disabled to climb in the ranking. But the trick does not work and as punishment, he is transferred in a small town in Campania, which to an inhabitant of the north is equivalent to a nightmare ...",2010-10-01,1.171,6.722,1821 +4759,45610,Machine Gun Preacher,"The true story of Sam Childers, a former drug-dealing biker who finds God and became a crusader for hundreds of Sudanese children who've been kidnapped and pressed into duty as soldiers.",2011-09-23,2.4524,6.723,1083 +4760,11522,Pretty in Pink,"Andie is an outcast, hanging out either with her older boss, who owns the record store where she works, or her quirky high school classmate Duckie, who has a crush on her. When one of the rich and popular kids at school, Blane, asks Andie out, it seems too good to be true. As Andie starts falling for Blane, she begins to realize that dating someone from a different social sphere is not easy.",1986-02-28,3.2714,6.7,1150 +4761,310,Bruce Almighty,"Bruce Nolan toils as a ""human interest"" television reporter in Buffalo, NY, but despite his high ratings and the love of his beautiful girlfriend, Bruce remains unfulfilled. At the end of the worst day in his life, he angrily ridicules God — and the Almighty responds, endowing Bruce with all of His divine powers.",2003-05-23,7.6599,6.7,11029 +4762,298,Ocean's Thirteen,"Danny Ocean's team of criminals are back and composing a plan more personal than ever. When ruthless casino owner Willy Bank doublecrosses Reuben Tishkoff, causing a heart attack, Danny Ocean vows that he and his team will do anything to bring down Willy Bank along with everything he's got. Even if it means asking for help from an enemy.",2007-06-05,4.8782,6.722,6540 +4763,597094,First Love,"One night in Tokyo, Leo, a young boxer, meets his first love, Monica, an imprisoned sex worker. Caught up in a drug-smuggling scheme, they find themselves pursued by a corrupt cop, a yakuza, his nemesis, and a female assassin.",2019-05-31,1.266,6.7,312 +4764,353571,Tallulah,"Desperate to be rid of her toddler, a dissatisfied Beverly Hills housewife hires a stranger to babysit and ends up getting much more than she bargained for.",2016-06-02,1.4071,6.7,734 +4765,107846,Escape Plan,"Ray Breslin is the world's foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He's framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.",2013-10-09,6.812,6.721,5315 +4766,74513,Special Forces,"Afghanistan. War correspondent Elsa Casanova is taken hostage by the Taliban. Faced with her imminent execution, a Special Forces unit is dispatched to free her. In some of the world’s most breathtaking yet hostile landscapes, a relentless pursuit begins between her kidnappers who have no intention of letting their prey escape them and a group of soldiers who risk their lives in pursuit of their single aim – to bring her home alive. This strong, independent woman and these men of duty are thrown together and forced to confront situations of great danger that inextricably bind them – emotionally, violently and intimately.",2011-11-02,2.4908,6.721,596 +4767,5255,The Polar Express,"When a doubting young boy takes an extraordinary train ride to the North Pole, he embarks on a journey of self-discovery that shows him that the wonder of life never fades for those who believe.",2004-11-10,6.5827,6.721,6559 +4768,1197306,A Working Man,"Levon Cade left behind a decorated military career in the black ops to live a simple life working construction. But when his boss's daughter, who is like family to him, is taken by human traffickers, his search to bring her home uncovers a world of corruption far greater than he ever could have imagined.",2025-03-26,54.0749,6.719,1438 +4769,884605,No Hard Feelings,"On the brink of losing her childhood home, Maddie discovers an intriguing job listing: wealthy helicopter parents looking for someone to “date” their introverted 19-year-old son, Percy, before he leaves for college. To her surprise, Maddie soon discovers the awkward Percy is no sure thing.",2023-06-15,8.6071,6.7,3451 +4770,463858,The Freshmen,"Antoine is about to start his first year of medical school… for the third time. Benjamin, just out of high school, will make his first try. He soon realizes it's not exactly a walk in the park. In a fiercely competitive environment, with nights dedicated to hard studying rather than hard partying, the two freshmen will have to adapt and find a middle ground between despair for the present and hope for the future.",2018-09-12,0.8546,6.72,706 +4771,424783,Bumblebee,"On the run in the year 1987, Bumblebee finds refuge in a junkyard in a small Californian beach town. Charlie, on the cusp of turning 18 and trying to find her place in the world, discovers Bumblebee, battle-scarred and broken. When Charlie revives him, she quickly learns this is no ordinary yellow VW bug.",2018-11-22,5.5529,6.72,6345 +4772,338958,Disenchanted,"Disillusioned with life in the city, feeling out of place in suburbia, and frustrated that her happily ever after hasn’t been so easy to find, Giselle turns to the magic of Andalasia for help. Accidentally transforming the entire town into a real-life fairy tale and placing her family’s future happiness in jeopardy, she must race against time to reverse the spell and determine what happily ever after truly means to her and her family.",2022-11-18,4.0268,6.7,1124 +4773,313922,Green Room,A punk rock band is forced to fight for survival after witnessing an act of violence at a skinhead bar.,2016-04-15,3.0412,6.719,2781 +4774,269650,Appleseed Alpha,"Based on the comic book by the creator of Ghost in the Shell, a young female soldier Deunan and her cyborg partner Briareos survive through the post World War 3 apocalyptic New York in search of human's future hope, the legendary city of Olympus.",2014-05-28,0.8696,6.728,392 +4775,28176,Tucker: The Man and His Dream,"Ypsilanti, Michigan, 1945. Engineer Preston Tucker dreams of designing the car of future, but his innovative envision will be repeatedly sabotaged by his own unrealistic expectations and the Detroit automobile industry tycoons.",1988-08-12,3.0254,6.72,402 +4776,16121,The Big Red One,"A veteran sergeant of World War I leads a squad in World War II, always in the company of the survivor Pvt. Griff, the writer Pvt. Zab, the Sicilian Pvt. Vinci and Pvt. Johnson, in Vichy French Africa, Sicily, D-Day at Omaha Beach, Belgium and France, and ending in a concentration camp in Czechoslovakia where they face the true horror of war.",1980-05-28,1.4662,6.72,320 +4777,10785,The Thing from Another World,Scientists and US Air Force officials fend off a blood-thirsty alien organism while investigating at a remote arctic outpost.,1951-04-05,2.097,6.7,638 +4778,3989,Team America: World Police,"When North Korean ruler Kim Jong-il orchestrates a global terrorist plot, it's up to the heavily armed, highly specialized Team America unit to stop his dastardly scheme. The group, which has recruited troubled Broadway actor Gary Johnston, not only has to face off against Jong-il, but they must also contend with the Film Actors Guild, a cadre of Hollywood liberals at odds with Team America's 'policing the world' tactics.",2004-10-10,1.9486,6.7,1925 +4779,1239193,Deep Cover,"Kat is an improv comedy teacher beginning to question if she’s missed her shot at success. When an undercover cop offers her the role of a lifetime, she recruits two of her students to infiltrate London’s gangland by impersonating dangerous criminals.",2025-06-12,23.7351,6.724,361 +4780,1197306,A Working Man,"Levon Cade left behind a decorated military career in the black ops to live a simple life working construction. But when his boss's daughter, who is like family to him, is taken by human traffickers, his search to bring her home uncovers a world of corruption far greater than he ever could have imagined.",2025-03-26,54.0749,6.719,1438 +4781,313922,Green Room,A punk rock band is forced to fight for survival after witnessing an act of violence at a skinhead bar.,2016-04-15,3.0412,6.719,2781 +4782,256274,"As Above, So Below","When a team of explorers ventures into the uncharted maze of bones that lies beneath the streets of Paris, they embark on a journey into madness and terror.",2014-08-14,7.7035,6.719,3624 +4783,35554,Cado dalle nubi,"An aspiring singer from southern Italy who's just been dumped moves north to Milan, where he falls in love and enters a TV singing competition show.",2009-11-27,0.6685,6.719,1643 +4784,1930,The Amazing Spider-Man,"Peter Parker is an outcast high schooler abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents' disappearance – leading him directly to Oscorp and the lab of Dr. Curt Connors, his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero.",2012-06-23,16.529,6.719,17846 +4785,1125,Dreamgirls,"A trio of female soul singers cross over to the pop charts in the early 1960s, facing their own personal struggles along the way.",2006-12-25,1.953,6.719,1041 +4786,198185,Million Dollar Arm,"In a last-ditch effort to save his career, sports agent JB Bernstein dreams up a wild game plan to find Major League Baseball’s next great pitcher from a pool of cricket players in India. He soon discovers two young men who can throw a fastball but know nothing about the game of baseball. Or America. It’s an incredible and touching journey that will change them all — especially JB, who learns valuable lessons about teamwork, commitment and family.",2014-05-09,1.6248,6.718,634 +4787,82703,Mr. Peabody & Sherman,"A young boy and his dog, who happens to have a genius-level IQ, spring into action when their time-machine is stolen and moments in history begin to be changed.",2014-02-07,3.9268,6.718,2433 +4788,11780,Rob Roy,"In the highlands of Scotland in the 1700s, Rob Roy tries to lead his small town to a better future, by borrowing money from the local nobility to buy cattle to herd to market. When the money is stolen, Rob is forced into a Robin Hood lifestyle to defend his family and honour.",1995-04-13,2.4295,6.718,671 +4789,575299,Fidelity,"Lena is a talented midwife and gynaecologist, her husband Serezha is an actor at a provincial drama theatre. They are close and gentle with each other, but there is no sex. Lena suspects that Serezha has an affair, but she worries quietly and does not reveal her jealousy. Instead of sorting out her relationship with her husband, Lena starts to betray him with chance acquaintances. Gradually Lena’s parallel life gets out of control and changes her original life.",2019-10-31,3.7913,6.717,314 +4790,25189,The Mirror Has Two Faces,"Rose Morgan, who still lives with her mother, is a professor of Romantic Literature who desperately longs for passion in her life. Gregory Larkin, a mathematics professor, has been burned by passionate relationships and longs for a sexless union based on friendship and respect.",1996-11-15,1.8831,6.7,350 +4791,17894,The Beautician and the Beast,A New York City beautician is mistakenly hired as the school teacher for the children of the president of a small Eastern European country.,1997-02-07,2.0378,6.717,355 +4792,12573,A Serious Man,"It is 1967, and Larry Gopnik, a physics professor at a quiet Midwestern university, has just been informed by his wife Judith that she is leaving him. She has fallen in love with one of his more pompous acquaintances Sy Ableman.",2009-10-02,2.024,6.7,2195 +4793,9819,Marvin's Room,A leukemia patient attempts to end a 20-year feud with her sister to get her bone marrow.,1996-12-18,1.332,6.7,609 +4794,881462,Still Time,"Dante accidentally kisses Alice and they get engaged. After a surprise party for his 40th birthday, he wakes up a year later, not remembering what happened. Not only does he discover that Alice is pregnant... He feels time is passing too quickly and he starts forgetting some of the most important moments of his life.",2023-03-16,0.6666,6.716,334 +4795,13691,Piglet's Big Movie,"When the gang from the Hundred Acre Wood begin a honey harvest, young Piglet is excluded and told that he is too small to help. Feeling inferior, Piglet disappears and his pals Eeyore, Rabbit, Tigger, Roo and Winnie the Pooh must use Piglet's scrapbook as a map to find him. In the process they discover that this very small animal has been a big hero in a lot of ways.",2003-03-16,2.0131,6.7,380 +4796,13448,Angels & Demons,"Harvard symbologist Robert Langdon is recruited by the Vatican to investigate the apparent return of the Illuminati – a secret, underground organization – after four cardinals are kidnapped on the night of the papal conclave.",2009-04-20,6.525,6.716,7006 +4797,11542,Altered States,"A research scientist explores the boundaries and frontiers of consciousness. Using sensory deprivation and hallucinogenic mixtures from native American shamans, he explores these altered states of consciousness and finds that memory, time, and perhaps reality itself are states of mind.",1980-12-25,2.2687,6.716,695 +4798,10758,Waitress,"Jenna is a pregnant, unhappily married waitress in the deep south. She meets a newcomer to her town and falls into an unlikely relationship as a last attempt at happiness.",2007-05-25,1.4858,6.716,540 +4799,2462,Hibernatus,"The frozen body of Paul Fournier is discovered in Greenland where he had disappeared during a scientific expedition in 1905. Perfectly conserved he is brought back to life in the 1960s. His descendants take care of him: to spare him the cultural shock they behave so to make believe it's 1905 and they are his cousins, uncle...",1969-09-10,1.2638,6.716,489 +4800,912649,Venom: The Last Dance,"Eddie and Venom are on the run. Hunted by both of their worlds and with the net closing in, the duo are forced into a devastating decision that will bring the curtains down on Venom and Eddie's last dance.",2024-10-22,30.8396,6.714,3632 +4801,792293,Dumb Money,"Vlogger Keith Gill sinks his life savings into GameStop stock and posts about it. When social media starts blowing up, so do his life and the lives of everyone following him. As a stock tip becomes a movement, everyone gets rich—until the billionaires fight back, and both sides find their worlds turned upside down.",2023-09-15,3.2649,6.715,676 +4802,22307,Sisters,"Inquisitive journalist Grace Collier is horrified when she witnesses her neighbor, fashion model Danielle Breton, violently murder a man. Panicking, she calls the police. But when the detective arrives at the scene and finds nothing amiss, Grace is forced to take matters into her own hands. Her first move is to recruit private investigator Joseph Larch, who helps her to uncover a secret about Danielle's past that has them both seeing double.",1973-03-26,2.1008,6.715,416 +4803,16367,Kinky Boots,"Charles Price may have grown up with his father in the family shoe business in Northampton, central England, but he never thought that he would take his father's place. Charles has a chance encounter with the flamboyant drag queen cabaret singer Lola and everything changes.",2005-08-30,1.0811,6.715,346 +4804,13971,Wild Child,"Sixteen-year-old Poppy has everything her unlimited credit cards can buy, and a spoiled attitude to match. After a final thoughtless prank, her exasperated father ships her off to boarding school in England. There, Poppy meets her match in a stern headmistress and a class full of girls who will not tolerate her selfishness.",2008-08-15,4.8031,6.715,1868 +4805,12233,Oliver & Company,"A young cat named Oliver is left alone in a kitten box, while all the other young cats have new owners. A big dog named Dodger shows him how to get food and later Oliver lives with him, his owner Fagin and Fagin's other dogs Tito, Rita, Einstein, and Francis. Fagin has one problem besides being broke he owes a nasty man named Sykes a lot of money. If he can't pay it back he's in big trouble. While Oliver runs into a little girl named Jenny who becomes his new owner which he is happy with and later Sykes sees Jenny as the key for him to get his money.",1988-11-18,3.2046,6.715,1628 +4806,4349,The Kingdom,A team of U.S. government agents is sent to investigate the bombing of an American facility in the Middle East.,2007-08-22,2.7308,6.7,1714 +4807,663712,Terrifier 2,"A year after the Miles County massacre, Art the Clown is resurrected by a sinister entity. Art returns home, where he must hunt down and destroy teenage Sienna and her younger brother Jonathan on Halloween. As the body count rises, the siblings fight to stay alive while uncovering the true nature of Art's evil intent.",2022-10-06,8.991,6.714,2297 +4808,96724,Anna Karenina,"In Imperial Russia, Anna, the wife of the officer Karenin, goes to Moscow to visit her brother. On the way, she meets the charming cavalry officer Vronsky to whom she is immediately attracted. But in St. Petersburg’s high society, a relationship like this could destroy a woman’s reputation.",2012-09-06,3.0629,6.7,2326 +4809,53957,La matassa,"Two cousins haven't spoken for almost twenty years, thanks to the enmity that their fathers feel toward one another. But an accident suddenly brings the cousins back together and thrusts them deep into the heart of the mafia.",2009-03-13,0.4708,6.714,478 +4810,10744,The Cooler,"Bernie works at a Las Vegas casino, where he uses his innate ability to bring about misfortune in those around him to jinx gamblers into losing. His imposing boss, Shelly Kaplow, is happy with the arrangement. But Bernie finds unexpected happiness when he begins dating attractive waitress Natalie Belisario.",2003-11-26,1.2235,6.7,367 +4811,762441,A Quiet Place: Day One,"As New York City is invaded by alien creatures who hunt by sound, a woman named Sam fights to survive with her cat.",2024-06-26,12.8695,6.713,2890 +4812,402529,All Eyez on Me,"All Eyez on Me chronicles the life and legacy of Tupac Shakur, including his rise to superstardom as a hip-hop artist, actor, poet and activist, as well as his imprisonment and prolific, controversial time at Death Row Records. Against insurmountable odds, Tupac rose to become a cultural icon whose career and persona both continue to grow long after his passing.",2017-06-12,2.3643,6.713,1190 +4813,15762,Night of the Creeps,"In 1959, an alien experiment crashes to earth and infects a fraternity member. They freeze the body, but in the modern day, two geeks pledging a fraternity accidentally thaw the corpse, which proceeds to infect the campus with parasites that transform their hosts into killer zombies.",1986-08-21,1.9294,6.7,527 +4814,14181,Boiler Room,A college dropout gets a job as a broker for a suburban investment firm and is on the fast track to success—but the job might not be as legitimate as it sounds.,2000-02-18,2.3801,6.714,693 +4815,950,Ice Age: The Meltdown,"Diego, Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around, the deep freeze is over, and the ice-covered earth is starting to melt, which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.",2006-03-29,8.2727,6.7,10002 +4816,375183,A Family Man,"Dane Jensen is a driven, Chicago-based headhunter, working at a cut-throat job placement firm. When his boss pits Dane against Lynn Vogel, Dane's equally driven but polar-opposite rival at the firm, in a battle for control over the company. When his young son is then given a harrowing diagnosis, Dane is suddenly pulled between achieving his professional dream and spending time with the family that needs him now more than ever.",2016-09-13,3.2394,6.7,513 +4817,27431,The Cat o' Nine Tails,A newsman works with a blind puzzle-solver to uncover a deadly conspiracy linked to a genetic research facility.,1971-02-12,1.3869,6.7,429 +4818,22798,Whip It,"In Bodeen, Texas, an indie-rock loving misfit finds a way of dealing with her small-town misery after she discovers a roller derby league in nearby Austin.",2009-04-09,2.0637,6.7,1082 +4819,4517,Elizabeth: The Golden Age,"When Queen Elizabeth's reign is threatened by ruthless familial betrayal and Spain's invading army, she and her shrewd adviser must act to safeguard the lives of her people.",2007-09-09,2.2036,6.712,1257 +4820,489430,Terrified,Police commissioner Funes and three researchers of supernatural phenomena investigate inexplicable events that are occurring in the suburbs of Buenos Aires.,2018-05-03,3.9929,6.711,720 +4821,249397,Nymphomaniac: Vol. II,The continuation of Joe's sexually dictated life delves into the darker aspects of her adult life and what led to her being in Seligman's care.,2013-12-25,9.7097,6.7,2994 +4822,209263,Enough Said,"Eva is a divorced soon-to-be empty-nester wondering about her next act. Then she meets Marianne, the embodiment of her perfect self. Armed with a restored outlook on being middle-aged and single, Eva decides to take a chance on her new love interest Albert — a sweet, funny and like-minded man. But things get complicated when Eva discovers that Albert is in fact the dreaded ex–husband of Marianne...",2013-09-18,1.1807,6.711,873 +4823,77499,Barbie: A Perfect Christmas,"Join Barbie and her sisters Skipper, Stacie and Chelsea as their holiday vacation plans turn into a most unexpected adventure and heartwarming lesson. After a snowstorm diverts their plane, the girls find themselves far from their New York destination and their holiday dreams. Now stranded at a remote inn in the tiny town of Tannenbaum, the sisters are welcomed by new friends and magical experiences. In appreciation for the wonderful hospitality they receive, they use their musical talents to put on a performance for the whole town. Barbie and her sisters realize the joy of being together is what really makes A Perfect Christmas!",2011-11-03,1.9312,6.7,313 +4824,24803,Julie & Julia,"Julia Child and Julie Powell – both of whom wrote memoirs – find their lives intertwined. Though separated by time and space, both women are at loose ends... until they discover that with the right combination of passion, fearlessness and butter, anything is possible.",2009-08-06,2.3889,6.711,2135 +4825,636706,Spaceman,"Six months into a solo mission, a lonely astronaut confronts the cracks in his marriage with help from a mysterious creature he discovers on his ship.",2024-02-23,3.4999,6.71,923 +4826,463319,Shadow,"In a kingdom ruled by a young and unpredictable king, the military commander has a secret weapon: a shadow, a look-alike who can fool both his enemies and the King himself. Now he must use this weapon in an intricate plan that will lead his people to victory in a war that the King does not want.",2018-09-30,1.7696,6.7,410 +4827,424277,Annette,"The story of Henry, a stand-up comedian with a fierce sense of humour and Ann, a singer of international renown. In the spotlight, they are the perfect couple, healthy, happy, and glamourous. The birth of their first child, Annette, a mysterious girl with an exceptional destiny, will change their lives.",2021-07-07,1.9344,6.7,708 +4828,24740,The Entity,"Carla Moran begins experiencing violent attacks by an unseen force. Her psychiatrist, Dr. Phil Sneiderman, believes the events stem from psychological trauma, while Carla becomes increasingly convinced something supernatural is at play.",1982-09-30,2.6852,6.7,513 +4829,4108,The Transporter,"Former Special Forces officer Frank Martin will deliver anything to anyone for the right price, and his no-questions-asked policy puts him in high demand. But when he realizes his latest cargo is alive, it sets in motion a dangerous chain of events. The bound and gagged Lai is being smuggled to France by a shady American businessman, and Frank works to save her as his own illegal activities are uncovered by a French detective.",2002-10-02,7.2392,6.7,5531 +4830,1216191,Oddity,"After the brutal murder of her twin sister, Darcy goes after those responsible by using haunted items as her tools for revenge.",2024-07-19,7.1351,6.709,576 +4831,814338,Lady Chatterley's Lover,Unhappily married aristocrat Lady Chatterley begins a torrid affair — and falls deeply in love — with the gamekeeper on her husband's country estate.,2022-11-22,3.8197,6.7,463 +4832,806368,The Son,"A successful lawyer, with a new wife and infant, agrees to care for his teenage son from a previous marriage after his ex-wife becomes concerned about the boy's wayward behavior.",2022-11-10,1.4418,6.709,501 +4833,11130,The Princess Diaries 2: Royal Engagement,"Mia Thermopolis is now a college graduate and on her way to Genovia to take up her duties as princess. Accompanied by her friend Lilly, Mia continues her 'princess lessons', like riding horses side-saddle and archery. But her already complicated life is turned upside down once again when she learns that she is to take the crown as queen earlier than expected, all while she meets a mysteriously charming young man.",2004-08-06,4.792,6.709,3310 +4834,2925,The First Wives Club,"After years of helping their hubbies climb the ladder of success, three mid-life Manhattanites have been dumped for a newer, curvier model. But the trio is determined to turn their pain into gain. They come up with a cleverly devious plan to hit their exes where it really hurts - in the wallet!",1996-09-20,2.8095,6.709,776 +4835,493551,Operation Finale,"In 1960, a team of Israeli secret agents is deployed to find Adolf Eichmann, the infamous Nazi architect of the Holocaust, supposedly hidden in Argentina, and get him to Israel to be judged.",2018-08-29,1.8774,6.708,1031 +4836,455980,Tag,"For one month every year, five highly competitive friends hit the ground running in a no-holds-barred game of tag they’ve been playing since the first grade. This year, the game coincides with the wedding of their only undefeated player, which should finally make him an easy target. But he knows they’re coming...and he’s ready.",2018-05-30,4.4775,6.709,3263 +4837,11880,Dog Soldiers,"A band of soldiers is dispatched to war games deep in the woods. When they stumble across a rival team slaughtered in camp, they realize they're not alone.",2002-05-10,2.4896,6.708,923 +4838,505948,I Am Mother,"A teenage girl is raised underground by a robot ""Mother"", designed to repopulate the earth following an extinction event. But their unique bond is threatened when an inexplicable stranger arrives with alarming news.",2019-06-07,2.1588,6.7,2661 +4839,491283,Judy,"Thirty years after starring in ""The Wizard of Oz,"" beloved actress and singer Judy Garland arrives in London to perform sold-out shows at the Talk of the Town nightclub. While there, she reminisces with friends and fans and begins a whirlwind romance with musician Mickey Deans, her soon-to-be fifth husband.",2019-09-27,1.962,6.706,1209 +4840,418879,The Current War,Electricity titans Thomas Edison and George Westinghouse compete to create a sustainable system and market it to the American people.,2018-02-01,2.1095,6.7,1098 +4841,55420,Another Earth,Tragedy connects a young woman and a shattered music professor as an exact replica of Earth is discovered.,2011-07-22,2.1648,6.706,1702 +4842,20649,Clockers,"Strike is a young city drug pusher under the tutelage of drug lord Rodney Little. When a night manager at a fast-food restaurant is found with four bullets in his body, Strike’s older brother turns himself in as the killer. Detective Rocco Klein doesn’t buy the story, however, setting out to find the truth, and it seems that all the fingers point toward Strike & Rodney.",1995-09-15,2.0,6.7,330 +4843,15674,Sabrina the Teenage Witch,"A girl, sent by her parents to live with her two eccentric aunts, finds out on her sixteenth birthday that she is a witch.",1996-04-07,1.5653,6.706,332 +4844,649394,Worth,"Kenneth Feinberg, a powerful D.C. lawyer appointed Special Master of the 9/11 Fund, fights off the cynicism, bureaucracy, and politics associated with administering government funds and, in doing so, discovers what life is worth.",2021-07-21,0.9045,6.705,347 +4845,334522,Alone in Berlin,"Berlin in June of 1940. While Nazi propaganda celebrates the regime’s victory over France, a kitchen-cum-living room in Prenzlauer Berg is filled with grief. Anna and Otto Quangel’s son has been killed at the front. This working class couple had long believed in the ‘Führer’ and followed him willingly, but now they realise that his promises are nothing but lies and deceit. They begin writing postcards as a form of resistance and in a bid to raise awareness: Stop the war machine! Kill Hitler! Putting their lives at risk, they distribute these cards in the entrances of tenement buildings and in stairwells. But the SS and the Gestapo are soon onto them, and even their neighbours pose a threat.",2016-02-15,1.7591,6.705,381 +4846,124157,The Thieves,"A gang of South Korean thieves team up with a Hong Kong crew to steal a diamond necklace from a heavily-guarded casino safe in Macau. As the cops close in, old betrayals — and misunderstandings — resurface.",2012-07-25,2.4697,6.705,303 +4847,28942,The Brood,"A man tries to uncover an unconventional psychologist's therapy techniques on his institutionalized wife, while a series of brutal attacks committed by a brood of mutant children coincides with the husband's investigation.",1979-05-25,1.6751,6.705,740 +4848,13258,Son of Rambow,"Will is looking for an escape from his family when he encounters Lee, the school bully. Armed with a video camera and a copy of Rambo, Lee plans to make his own action-packed video epic.",2007-01-22,1.4185,6.705,462 +4849,9534,The Ferpect Crime,A playboy has the tables turned on him when he finds himself being used as a plaything by an undesirable woman.,2004-09-10,1.3226,6.705,320 +4850,2330,Taxi,"In Marseilles a skilled pizza delivery boy Daniel who drives a scooter finally has his dreams come true. He gets a taxi license. Caught by the police for a huge speed infraction, he will help Emilien, a loser inspector who can't drive, on the track of German bank robbers, so he doesn't lose his license and his dream job.",1998-04-08,5.4153,6.705,2565 +4851,638597,YES DAY,A mom and dad who usually say no decide to say yes to their kids' wildest requests — with a few ground rules — on a whirlwind day of fun and adventure.,2021-03-11,3.2792,6.704,1244 +4852,471474,Batman: Gotham by Gaslight,"In an alternative Victorian Age Gotham City, Batman begins his war on crime while he investigates a new series of murders by Jack the Ripper.",2018-01-12,1.9164,6.704,727 +4853,338762,Bloodshot,"After he and his wife are murdered, marine Ray Garrison is resurrected by a team of scientists. Enhanced with nanotechnology, he becomes a superhuman, biotech killing machine—'Bloodshot'. As Ray first trains with fellow super-soldiers, he cannot recall anything from his former life. But when his memories flood back and he remembers the man that killed both him and his wife, he breaks out of the facility to get revenge, only to discover that there's more to the conspiracy than he thought.",2020-03-05,6.0307,6.7,5078 +4854,78698,Big Miracle,A small-town news reporter and a Greenpeace volunteer enlist the help of rival superpowers to save three majestic gray whales trapped under the ice of the Arctic Circle.,2012-02-02,1.6937,6.7,506 +4855,62630,The Devil's Double,A chilling vision of the House of Saddam Hussein comes to life through the eyes of the man who was forced to become the double of Hussein's sadistic son.,2011-02-11,1.7226,6.7,570 +4856,29917,Exam,"Eight talented candidates have reached the final stage of selection to join the ranks of a mysterious and powerful corporation. Entering a windowless room, where an armed guard keeps watch, they are given 80 minutes to answer one simple question.",2009-06-19,3.0679,6.704,2146 +4857,17332,The Soloist,"A Los Angeles journalist befriends a homeless Juilliard-trained musician, while looking for a new article for the paper.",2009-04-24,1.3825,6.704,786 +4858,968051,The Nun II,"In 1956 France, a priest is violently murdered, and Sister Irene begins to investigate. She once again comes face-to-face with a powerful evil.",2023-09-06,10.7406,6.703,2228 +4859,484641,Anna,Beneath Anna Poliatova's striking beauty lies a secret that will unleash her indelible strength and skill to become one of the world's most feared government assassins.,2019-06-19,3.9701,6.703,2811 +4860,443009,"Don't Worry, He Won't Get Far on Foot","On the rocky path to sobriety after a life-changing accident, John Callahan discovers the healing power of art, willing his injured hands into drawing hilarious, often controversial cartoons, which bring him a new lease on life.",2018-04-04,1.5246,6.703,710 +4861,392044,Murder on the Orient Express,Genius Belgian detective Hercule Poirot investigates the murder of an American tycoon aboard the Orient Express train.,2017-11-03,5.8912,6.703,10179 +4862,337676,"Mektoub, My Love: Canto Uno","Amin, an aspiring screenwriter living in Paris, returns home for the summer, to a fishing village in the South of France. It is a time of reconnecting with his family and his childhood friends. Together with his cousin Tony and his best friend Ophélie, he spends his time between the Tunisian restaurant run by his parents, the local bars and the beaches frequented by girls on holiday. Enchanted by the many female characters who surround him, Amin remains in awe of these summer sirens while his dionysiac cousin throws himself into their carnal delights with euphoria. Armed with his camera and guided by the bright simmer light of the Mediterranean coast, Amin pursues his philosophical quest while gathering inspiration for his screenplays. When it comes to love, only Mektoub (‘destiny' in Arabic) can decide.",2017-09-07,2.1071,6.7,315 +4863,278236,X+Y,A socially awkward teenage math prodigy finds new confidence and new friendships when he lands a spot on the British squad at the International Mathematics Olympiad.,2014-03-13,1.4614,6.703,580 +4864,254375,Hector and the Search for Happiness,"Hector is a quirky psychiatrist who has become increasingly tired of his humdrum life. As he tells his girlfriend, Clara, he feels like a fraud: he hasn’t really tasted life, and yet he’s offering advice to patients who are just not getting any happier. So Hector decides to break out of his deluded and routine driven life. Armed with buckets of courage and child-like curiosity, he embarks on a global quest in hopes of uncovering the elusive secret formula for true happiness. And so begins a larger than life adventure with riotously funny results.",2014-08-14,1.6458,6.703,901 +4865,50546,Just Go with It,"While romancing Palmer, a much younger schoolteacher, plastic surgeon Danny Maccabee enlists his loyal assistant Katherine to pretend to be his soon to be ex-wife, in order to cover up a careless lie. When more lies backfire, Katherine's kids become involved, and everyone heads off for a weekend in Hawaii that will change all their lives.",2011-02-10,10.2176,6.703,5887 +4866,46138,Made in Dagenham,"A dramatization of the 1968 strike at the Ford Dagenham car plant, where female workers walked out in protest against sexual discrimination.",2010-10-01,1.2566,6.703,313 +4867,21683,Batman: Mystery of the Batwoman,"As if the Penguin wasn't enough to contend with, a new vigilante has surfaced in Gotham City, and her strong-arm tactics give Batman cause for concern. Being the World's Greatest Detective and The Dark Knight, he sets out to uncover her identity while stopping a dangerous criminal plot.",2003-10-21,2.1175,6.703,417 +4868,12599,Pokémon the Movie 2000,"When Lawrence III's scheme to capture the Legendary Pokémon Lugia upsets the balance of nature, it is up to Ash Ketchum and his friends to save the world.",1999-07-17,3.4308,6.703,880 +4869,1624,Liar Liar,"Forced by his son's birthday wish, fast-talking attorney and habitual liar Fletcher Reede must tell the truth for the next 24 hours.",1997-03-21,5.4727,6.702,5920 +4870,811592,One Shot,"An elite squad of Navy SEALs, on a covert mission to transport a prisoner off a CIA black site island prison, are trapped when insurgents attack while trying to rescue the same prisoner.",2021-11-05,3.2219,6.702,885 +4871,2669,The Bounty,"The familiar story of Lieutenant Bligh, whose cruelty leads to a mutiny on his ship. This version follows both the efforts of Fletcher Christian to get his men beyond the reach of British retribution, and the epic voyage of Lieutenant Bligh to get his loyalists safely to East Timor in a tiny lifeboat.",1984-05-04,3.1444,6.7,589 +4872,2290,Jakob the Liar,"In 1944 Poland, a Jewish shop keeper named Jakob is summoned to ghetto headquarters after being caught out after curfew. While waiting for the German Kommondant, Jakob overhears a German radio broadcast about Russian troop movements. Returned to the ghetto, the shopkeeper shares his information with a friend and then rumors fly that there is a secret radio within the ghetto.",1999-09-16,1.7023,6.702,381 +4873,1045944,The Boss Baby: Christmas Bonus,Christmas Eve takes a twisty turn when the Boss Baby accidentally swaps places with one of Santa's elves and gets stranded at the North Pole.,2022-12-06,2.9458,6.701,309 +4874,419639,The Thinning,"In a post-apocalyptic future where population control is dictated by a high-school aptitude test, two students discover the test is smoke and mirrors hiding a larger conspiracy.",2016-10-12,1.2782,6.701,365 +4875,200505,Draft Day,"At the NFL Draft, general manager Sonny Weaver has the opportunity to rebuild his team when he trades for the number one pick. He must decide what he's willing to sacrifice on a life-changing day for a few hundred young men with NFL dreams.",2014-04-11,2.5581,6.701,957 +4876,44718,Get Low,"A movie spun out of equal parts folk tale, fable and real-life legend about the mysterious, 1930s Tennessee hermit who famously threw his own rollicking funeral party... while he was still alive.",2010-07-30,0.977,6.701,314 +4877,10731,The Client,"A street-wise kid, Mark Sway, sees the suicide of Jerome Clifford, a prominent Louisiana lawyer, whose current client is Barry 'The Blade' Muldano, a Mafia hit-man. Before Jerome shoots himself, he tells Mark where the body of a Senator is buried. Clifford shoots himself and Mark is found at the scene, and both the FBI and the Mafia quickly realize that Mark probably knows more than he says.",1994-07-20,3.0708,6.7,1204 +4878,943,Lethal Weapon 3,Riggs and Murtaugh pursue a former officer who uses his knowledge of police procedure and policies to steal and sell confiscated guns and ammunition to local street gangs.,1992-05-15,4.9706,6.701,3034 +4879,778106,Along for the Ride,"The summer before college, Auden meets the mysterious Eli, a fellow insomniac. While the seaside town of Colby sleeps, the two embark on nightly quests to help Auden experience the fun, carefree teen life she never knew she wanted.",2022-05-06,1.4203,6.7,355 +4880,592984,Hillbilly Elegy,"An urgent phone call pulls a Yale Law student back to his Ohio hometown, where he reflects on three generations of family history and his own future.",2020-11-09,2.7252,6.694,967 +4881,353070,Going in Style,"Desperate to pay the bills and come through for their loved ones, three lifelong pals risk it all by embarking on a daring bid to knock off the very bank that absconded with their money.",2017-04-06,4.3025,6.7,2882 +4882,339419,Loving,"The story of Richard and Mildred Loving, an interracial couple, whose challenge of their anti-miscegenation arrest for their marriage in Virginia led to a legal battle that would end at the US Supreme Court.",2016-11-04,1.6241,6.7,933 +4883,11371,The Score,An aging thief hopes to retire and live off his ill-gotten wealth when a young kid convinces him into doing one last heist.,2001-07-13,2.4819,6.699,1732 +4884,10999,Commando,"John Matrix, the former leader of a special commando strike force that always got the toughest jobs done, is forced back into action when his young daughter is kidnapped. To find her, Matrix has to fight his way through an array of punks, killers, one of his former commandos, and a fully equipped private army. With the help of a feisty stewardess and an old friend, Matrix has only a few hours to overcome his greatest challenge: finding his daughter before she's killed.",1985-10-03,5.0967,6.7,2933 +4885,8872,Wayne's World,"The adventures of two amiably aimless metal-head friends, Wayne and Garth. From Wayne's basement, the pair broadcast a talk-show called ""Wayne's World"" on local public access television. The show comes to the attention of a sleazy network executive who wants to produce a big-budget version of ""Wayne's World""—and he also wants Wayne's girlfriend, a rock singer named Cassandra. Wayne and Garth have to battle the executive not only to save their show, but also Cassandra.",1992-02-14,3.5934,6.7,2328 +4886,7191,Cloverfield,"Five young New Yorkers throw their friend a going-away party the night that a monster the size of a skyscraper descends upon the city. Told from the point of view of their video camera, the film is a document of their attempt to survive the most surreal, horrifying event of their lives.",2008-01-15,5.7542,6.7,7384 +4887,820609,No One Will Save You,A lonely woman battles extraterrestrials who threaten her future while forcing her to face her past.,2023-09-21,3.4998,6.699,1282 +4888,39514,RED,"After surviving an assault from a squad of hit men, retired CIA black ops agent Frank Moses reassembles his old team for an all-out war. Frank reunites with old Joe, crazy Marvin and wily Victoria to uncover a massive conspiracy that threatens their lives. Only their expert training will allow them to survive a near-impossible mission -- breaking into CIA headquarters.",2010-10-13,5.1917,6.699,6872 +4889,14553,Stealing Beauty,"Lucy Harmon, an American teenager is arriving in the lush Tuscan countryside to be sculpted by a family friend who lives in a beautiful villa. Lucy visited there four years earlier and exchanged a kiss with an Italian boy with whom she hopes to become reacquainted.",1996-03-29,2.1142,6.699,577 +4890,11302,Bananas,"When a bumbling New Yorker is dumped by his activist girlfriend, he travels to a tiny Latin American nation and becomes involved in its latest rebellion.",1971-04-28,1.3137,6.699,773 +4891,1887,Marie Antoinette,"The retelling of France’s iconic but ill-fated queen, Marie Antoinette. From her betrothal and marriage to Louis XVI at 15 to her reign as queen at 19 and ultimately the fall of Versailles.",2006-05-24,4.3182,6.699,2832 +4892,460059,Burn Out,"Tony, a promising young motorcycle racer, is forced to do perilous drug runs to save the mother of his child from a dangerous mobster.",2018-01-03,0.9809,6.698,434 +4893,426063,Nosferatu,"A gothic tale of obsession between a haunted young woman and the terrifying vampire infatuated with her, causing untold horror in its wake.",2024-12-25,13.158,6.698,2917 +4894,273153,Summertime,"In 1971, a young woman moves from the French countryside to Paris and begins a passionate love affair with a feminist leader.",2015-08-19,2.8999,6.7,349 +4895,135397,Jurassic World,"Twenty-two years after the events of Jurassic Park, Isla Nublar now features a fully functioning dinosaur theme park, Jurassic World, as originally envisioned by John Hammond.",2015-06-06,25.002,6.699,20909 +4896,24767,Iron Will,"When Will Stoneman's father dies, he is left alone to take care of his mother and their land. Needing money to maintain it, he decides to join a cross country dogsled race. This race will require days of racing for long hours, through harsh weather and terrain. This young man will need a lot of courage and a strong will to complete this race.",1994-01-14,1.6599,6.7,310 +4897,13155,Return to Oz,"Dorothy, saved from a psychiatric experiment by a mysterious girl, finds herself back in the land of her dreams, and makes delightful new friends, and dangerous new enemies.",1985-06-21,2.7598,6.7,1037 +4898,2675,Signs,A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.,2002-08-02,4.5151,6.698,5867 +4899,768,From Hell,Frederick Abberline is an opium-huffing inspector from Scotland Yard who falls for one of Jack the Ripper's prostitute targets in this Hughes brothers adaption of a graphic novel that posits the Ripper's true identity.,2001-02-08,2.9479,6.698,2882 +4900,591273,Fear Street: 1994,"After a series of brutal slayings, a teen and her friends take on an evil force that's plagued their notorious town for centuries.",2021-06-28,3.4339,6.7,2455 +4901,541660,Loro,"Internationally released Director's Cut of ""Loro 1"" and ""Loro 2"", which were released separately as two movies in Italy. The film talks about the group of businessmen and politicians – the Loro (Them) from the title – who live and act near to media tycoon and politician Silvio Berlusconi in the years between 2006 and 2009.",2018-09-13,1.2595,6.697,320 +4902,373571,Godzilla: King of the Monsters,"Follows the heroic efforts of the crypto-zoological agency Monarch as its members face off against a battery of god-sized monsters, including the mighty Godzilla, who collides with Mothra, Rodan, and his ultimate nemesis, the three-headed King Ghidorah. When these ancient super-species, thought to be mere myths, rise again, they all vie for supremacy, leaving humanity's very existence hanging in the balance.",2019-05-29,8.7608,6.697,6390 +4903,12684,Sabotage,Karl Anton Verloc and his wife own a small cinema in a quiet London suburb where they live seemingly happily. But Mrs. Verloc does not know that her husband has a secret that will affect their relationship and threaten her teenage brother's life.,1937-01-08,1.6516,6.7,347 +4904,12509,Pollock,"In August of 1949, Life Magazine ran a banner headline that begged the question: ""Jackson Pollock: Is he the greatest living painter in the United States?"" The film is a look back into the life of an extraordinary man, a man who has fittingly been called ""an artist dedicated to concealment, a celebrity who nobody knew."" As he struggled with self-doubt, engaging in a lonely tug-of-war between needing to express himself and wanting to shut the world out, Pollock began a downward spiral.",2000-09-06,1.3029,6.697,325 +4905,10729,Quick Change,"With the aid of his girlfriend, Phyllis Potter, and best friend, Loomis, Grimm enters a Manhattan bank dressed as a clown, creates a hostage situation and executes a flawless robbery. The only thing left for the trio to do is make their getaway out of the city and to the airport. It sounds simple enough, but it seems that fate deserts them immediately after the bank heist. One mishap after another conspires to keep these robbers from reaching freedom.",1990-07-13,1.5059,6.697,388 +4906,628866,The Return,"After the death of his father, a brilliant college student returns to his family home where he learns that the horrors from his childhood aren't as dead and gone as he once thought.",2020-09-05,1.3667,6.696,312 +4907,46146,Troll Hunter,"A group of students investigates a series of mysterious bear killings, but learns that there are much more dangerous things going on. They start to follow a mysterious hunter, learning that he is actually a troll hunter.",2010-10-29,2.0421,6.697,1643 +4908,10660,It Could Happen to You,"Charlie Lang is a simple, kindhearted New York City cop. When he realizes he has no money to tip waitress Yvonne Biasi, Lang offers her half the winnings of his lottery ticket. Amazingly, the ticket happens to be a winner, in the sum of $4 million. True to his word, Lang proceeds to share the prize money with Biasi, which infuriates his greedy wife, Muriel. Not content with the arrangement, Muriel begins scheming to take all the money.",1994-07-16,3.5896,6.696,845 +4909,8699,Anchorman: The Legend of Ron Burgundy,"It's the 1970s and San Diego anchorman Ron Burgundy is the top dog in local TV, but that's all about to change when ambitious reporter Veronica Corningstone arrives as a new employee at his station.",2004-06-28,3.6592,6.696,4334 +4910,1498,Teenage Mutant Ninja Turtles,"A quartet of humanoid turtles, trained by their mentor in ninjitsu, must learn to work together to face the menace of Shredder and the Foot Clan.",1990-03-30,7.1058,6.7,1856 +4911,672741,Till Death,"After a romantic evening at their secluded lake house, a woman wakes up handcuffed to her dead husband. Trapped and isolated in the dead of winter, she must fight off hired killers to escape her late spouse's twisted plan.",2021-07-02,1.9262,6.695,893 +4912,236399,Flowers in the Attic,"After the sudden death of their father, four children face cruel treatment from their ruthless grandmother.",2014-01-18,1.8017,6.695,377 +4913,4912,Confessions of a Dangerous Mind,"Television made him famous, but his biggest hits happened off screen. Television producer by day, CIA assassin by night, Chuck Barris was recruited by the CIA at the height of his TV career and trained to become a covert operative. Or so Barris said.",2002-12-31,1.5382,6.695,1184 +4914,3021,1408,"A man who specializes in debunking paranormal occurrences checks into the fabled room 1408 in the Dolphin Hotel. Soon after settling in, he confronts genuine terror.",2007-06-22,4.2627,6.695,4602 +4915,2001,We Own the Night,A New York nightclub manager tries to save his brother and father from Russian mafia hitmen.,2007-10-12,2.1816,6.695,1411 +4916,426284,Blade of the Immortal,"Manji, a highly skilled samurai, becomes cursed with immortality after a legendary battle. Haunted by the brutal murder of his sister, Manji knows that only fighting evil will regain his soul. He promises to help a young girl named Rin avenge her parents, who were killed by a group of master swordsmen led by ruthless warrior Anotsu. The mission will change Manji in ways he could never imagine.",2017-04-29,1.9395,6.694,584 +4917,414770,Antiporno,Young artist Kyoko wreaks havoc on everyone that she encounters when Japan's oldest major movie studio asks a batch of venerable filmmakers to revive its high-brow soft-core Roman Porno series.,2017-01-28,2.3141,6.7,413 +4918,43645,The Little Devil,"Father Maurice, a priest living in a residential college for priests in Rome, is called out one day to ""exorcise"" the devil from someone. The devil turns out to be in the form of a fun-loving man called Giuditta. What Father Maurice doesn't know is that this type of devil will turn his life around.",1988-07-01,1.4352,6.692,419 +4919,12184,The Other Boleyn Girl,"A sumptuous and sensual tale of intrigue, romance and betrayal set against the backdrop of a defining moment in European history: two beautiful sisters, Anne and Mary Boleyn, driven by their family's blind ambition, compete for the love of the handsome and passionate King Henry VIII.",2008-02-28,4.0004,6.694,2130 +4920,619,The Bodyguard,"A former Secret Service agent grudgingly takes an assignment to protect a pop idol who's threatened by a crazed fan. At first, the safety-obsessed bodyguard and the self-indulgent diva totally clash. But before long, all that tension sparks fireworks of another sort, and the love-averse tough guy is torn between duty and romance.",1992-11-25,5.9036,6.695,3063 +4921,13763,Purple Rain,"A victim of his own anger, the Kid is a Minneapolis musician on the rise with his band, the Revolution, escaping a tumultuous home life through music. While trying to avoid making the same mistakes as his truculent father, the Kid navigates the club scene and a rocky relationship with a captivating singer, Apollonia. But another musician, Morris, looks to steal the Kid's spotlight -- and his girl.",1984-07-27,1.5194,6.7,389 +4922,8265,Welcome to the Sticks,"Although living a comfortable life in Salon-de-Provence, a charming town in the South of France, Julie has been feeling depressed for a while. To please her, Philippe Abrams, a post office administrator, her husband, tries to obtain a transfer to a seaside town, on the French Riviera, at any cost. The trouble is that he is caught red-handed while trying to scam an inspector. Philippe is immediately banished to the distant unheard of town of Bergues, in the Far North of France...",2008-02-20,2.5079,6.693,2485 +4923,7446,Tropic Thunder,"A group of self-absorbed actors set out to make the most expensive war film ever. After ballooning costs force the studio to cancel the movie, the frustrated director refuses to stop shooting, leading his cast into the jungles of Southeast Asia, where they encounter real bad guys.",2008-08-09,5.4038,6.694,6510 +4924,1008409,The Bikeriders,"After a chance encounter, headstrong Kathy is drawn to Benny, member of Midwestern motorcycle club the Vandals. As the club transforms into a dangerous underworld of violence, Benny must choose between Kathy and his loyalty to the club.",2024-06-19,3.6183,6.692,959 +4925,504562,Motherless Brooklyn,"New York City, 1957. Lionel Essrog, a private detective living with Tourette syndrome, tries to solve the murder of his mentor and best friend, armed only with vague clues and the strength of his obsessive mind.",2019-10-31,2.4388,6.692,1507 +4926,174733,Metro,"Terror strikes the underground train system in Moscow in the form of a flood from a collapsed tunnel. The film follows a diverse group of Moscow citizens who find themselves trapped in the city’s underground rail network, their train derailed and virtually crushed after an aging tunnel collapses. Amongst this band of survivors is softly spoken surgeon Andrey (Sergei Puskepalis), whose wife is having an affair with the conceited businessman Vlad (Anatoly Beliy). Fate brings these two men together on the same doomed train, but there is little time to resolve their differences, as the tunnel begins to quickly fill with water, forcing them to work together with the others and find a way back to the surface.",2013-02-21,1.5927,6.692,352 +4927,170687,The Boxtrolls,"An orphaned boy raised by underground creatures called Boxtrolls comes up from the sewers and out of his box to save his family and the town from the evil exterminator, Archibald Snatcher.",2014-09-10,3.3904,6.7,1730 +4928,8328,Step Up 2: The Streets,"When rebellious street dancer Andie lands at the elite Maryland School of the Arts, she finds herself fighting to fit in while also trying to hold onto her old life. When she joins forces with the schools hottest dancer, Chase, to form a crew of classmate outcasts to compete in Baltimore s underground dance battle The Streets.",2008-02-14,3.8617,6.692,2339 +4929,245,About a Boy,"Will Freeman is a good-looking, smooth-talking bachelor whose primary goal in life is avoiding any kind of responsibility. But when he invents an imaginary son in order to meet attractive single moms, Will gets a hilarious lesson about life from a bright, but hopelessly geeky 12-year-old named Marcus. Now, as Will struggles to teach Marcus the art of being cool, Marcus teaches Will that you're never too old to grow up.",2002-04-26,2.0741,6.692,2277 +4930,998846,Back to Black,"The extraordinary story of Amy Winehouse’s early rise to fame from her early days in Camden through the making of her groundbreaking album, Back to Black that catapulted Winehouse to global fame. Told through Amy’s eyes and inspired by her deeply personal lyrics, the film explores and embraces the many layers of the iconic artist and the tumultuous love story at the center of one of the most legendary albums of all time.",2024-04-11,3.1694,6.7,613 +4931,451925,Time Freak,"Stillman, a heartbroken physics student, builds a time machine when his girlfriend breaks up with him. Going back in time, he attempts to save their relationship by fixing every mistake he made—while dragging his best friend along in the process.",2018-11-09,1.3588,6.691,465 +4932,381719,Peter Rabbit,Peter Rabbit's feud with Mr. McGregor escalates to greater heights than ever before as they rival for the affections of the warm-hearted animal lover who lives next door.,2018-02-07,3.7791,6.7,1833 +4933,347026,A United Kingdom,"The inspiring true story of Seretse Khama, the King of Bechuanaland (modern Botswana), and Ruth Williams, the London office worker he married in 1948 in the face of fierce opposition from their families and the British and South African governments. Seretse and Ruth defied family, Apartheid and empire - their love triumphed over every obstacle flung in their path and in so doing they transformed their nation and inspired the world.",2016-11-25,1.8917,6.7,516 +4934,328425,The Gift,Simon and Robyn are a young married couple whose life is going as planned until a chance run-in with Simon's high school acquaintance sends their world into a tailspin.,2015-07-31,2.7258,6.691,3317 +4935,325789,The Infiltrator,A U.S Customs official uncovers a massive money laundering scheme involving Pablo Escobar.,2016-07-13,1.7376,6.7,1718 +4936,52744,Falling in Love,"During shopping for Christmas, Frank and Molly run into each other. This fleeting short moment will start to change their lives, when they recognize each other months later in the train home and have a good time together. Although both are married and Frank has two little kids, they meet more and more often, their friendship becoming the most precious thing in their lives.",1984-11-21,1.6957,6.691,374 +4937,515195,Yesterday,A struggling musician realizes he's the only person on Earth who can remember The Beatles after waking up in an alternate reality where the group was forgotten.,2019-06-26,4.1952,6.69,4051 +4938,421447,The Climb,"A true story of Samy, native of La Courneuve, who is out of love for Nadia, decides to climb Mount Everest.",2017-01-25,1.223,6.69,873 +4939,337167,Fifty Shades Freed,"Believing they have left behind shadowy figures from their past, newlyweds Christian and Ana fully embrace an inextricable connection and shared life of luxury. But just as she steps into her role as Mrs. Grey and he relaxes into an unfamiliar stability, new threats could jeopardize their happy ending before it even begins.",2018-01-17,17.8999,6.7,8166 +4940,223485,Slow West,"In the Old West, a 17-year-old Scottish boy teams up with a mysterious gunman to find the woman with whom he is infatuated.",2015-05-15,1.8494,6.7,1003 +4941,48466,Scared Shrekless,"Shrek challenges Donkey, Puss in Boots and his other fairy tale character friends to spend the night in Lord Farquaad's haunted castle, telling scary stories to see who can resist becoming scared and stay the longest.",2010-10-28,1.7478,6.69,479 +4942,9297,Monster House,"Monsters under the bed are scary enough, but what happens when an entire house is out to get you? Three teens aim to find out when they go up against a decrepit neighboring home and unlock its frightening secrets.",2006-06-30,7.0308,6.691,4111 +4943,8065,21,"Ben Campbell is a young, highly intelligent student at M.I.T. who strives to succeed. Wanting a scholarship to transfer to Harvard School of Medicine to become a doctor, Ben learns that he cannot afford the $300,000 tuition as he comes from a poor, working-class background. But one evening, Ben is introduced by his unorthodox math professor to a small but secretive club of five students, Jill, Choi, Kianna, and Fisher, who are being trained by Professor Rosa to count cards at blackjack.",2008-03-27,5.1353,6.69,4808 +4944,1911,The 13th Warrior,"A Muslim ambassador exiled from his homeland joins a group of Vikings, initially offended by their behavior but growing to respect them. As they travel together, they learn of a legendary evil closing in and must unite to confront this formidable force.",1999-08-13,4.3755,6.69,1928 +4945,787,Mr. & Mrs. Smith,"A husband and wife struggle to keep their marriage alive until they realize they are both secretly working as assassins. Now, their respective assignments require them to kill each other.",2005-06-07,10.0036,6.69,10734 +4946,760747,The Trip,"A dysfunctional couple head to a remote lakeside cabin under the guise of reconnecting, but each has secret designs to kill the other. Before they can carry out their respective plans, unexpected visitors arrive and the couple is faced with a greater danger than anything they could have plotted.",2021-07-30,1.9305,6.689,596 +4947,655187,Coven,"French Basque Country, year 1609. The men of a small fishing village have gone to sea. Judge Rostegui, who has been charged by the king with ridding the country of the devil's wiles, arrests Ana and her friends and accuses them of witchcraft.",2020-10-02,0.8118,6.7,301 +4948,543343,Guava Island,"Deni Maroon, a musician and dock worker is determined to pull off a music festival against the interests of the local factory owner.",2019-04-13,1.2869,6.689,330 +4949,10874,Muppet Treasure Island,"After telling the story of Flint's last journey to young Jim Hawkins, Billy Bones has a heart attack and dies just as Jim and his friends are attacked by pirates. The gang escapes into the town where they hire out a boat and crew to find the hidden treasure, which was revealed by Bones before he died. On their voyage across the seas, they soon find out that not everyone on board can be trusted.",1996-02-16,1.563,6.689,424 +4950,9588,Quigley Down Under,"American Matt Quigley answers Australian land baron Elliott Marston's ad for a sharpshooter to kill the dingoes on his property. But when Quigley finds out that Marston's real target is the aborigines, Quigley hits the road. Now, even American expatriate Crazy Cora can't keep Quigley safe in his cat-and-mouse game with the homicidal Marston.",1990-10-17,2.7891,6.689,400 +4951,9489,You've Got Mail,"Book superstore magnate, Joe Fox and independent book shop owner, Kathleen Kelly fall in love in the anonymity of the Internet—both blissfully unaware that he's trying to put her out of business.",1998-12-18,4.6212,6.69,3429 +4952,9336,Police Academy,"New rules enforced by the Lady Mayoress mean that sex, weight, height and intelligence need no longer be a factor for joining the Police Force. This opens the floodgates for all and sundry to enter the Police Academy, much to the chagrin of the instructors. Not everyone is there through choice, though. Social misfit Mahoney has been forced to sign up as the only alternative to a jail sentence and it doesn't take long before he falls foul of the boorish Lieutenant Harris. But before long, Mahoney realises that he is enjoying being a police cadet and decides he wants to stay... while Harris decides he wants Mahoney out!",1984-03-22,10.275,6.689,2802 +4953,8271,Disturbia,"Kale has a life most teenagers would envy. He spends his days endlessly playing video games, surfing the net, eating junk food and watching cable. He has complete free reign of the house, and a beautiful young hottie named Ashley has just moved in next door. There’s only one problem—he’s not allowed to leave the house. Kale’s under court-ordered house arrest for three months, and if he takes one step beyond a 100-foot perimeter of the house, his next confinement will be in a real prison.",2007-03-27,4.5466,6.689,3838 +4954,1552,Parenthood,"The story of the Buckman family and friends, attempting to bring up their children. They suffer/enjoy all the events that occur: estranged relatives, the 'black sheep' of the family, the eccentrics, the skeletons in the closet, and the rebellious teenagers.",1989-07-31,1.6709,6.689,668 +4955,379686,Space Jam: A New Legacy,"When LeBron and his young son Dom are trapped in a digital space by a rogue A.I., LeBron must get them home safe by leading Bugs, Lola Bunny and the whole gang of notoriously undisciplined Looney Tunes to victory over the A.I.'s digitized champions on the court. It's Tunes versus Goons in the highest-stakes challenge of his life.",2021-07-08,5.8074,6.687,4096 +4956,15035,Fire and Ice,"In this animated tale, a tiny village is destroyed by a surging glacier, which serves as the deadly domain for the evil Ice Lord, Nekron. The only survivor is a young warrior, Larn, who vows to avenge this act of destruction. The evil continues, however, as Nekron's palace of ice heads straight towards Fire Keep, the great fortress ruled by the good King Jarol. When Jarol's beautiful daughter, Teegra, is abducted by Nekron's sub-human ape-like creatures, Larn begins a daring search for her. What results is a tense battle between good and evil, surrounded by the mystical elements of the ancient past.",1983-03-25,2.3483,6.688,316 +4957,13685,Bottle Rocket,"Upon his release from a mental hospital following a nervous breakdown, the directionless Anthony joins his friend Dignan, who seems far less sane than the former. Dignan has hatched a harebrained scheme for an as-yet-unspecified crime spree that somehow involves his former boss, the (supposedly) legendary Mr. Henry.",1996-02-21,2.0017,6.688,1104 +4958,11583,The First Great Train Robbery,"In Victorian England, a master criminal makes elaborate plans to steal a shipment of gold from a moving train.",1978-12-14,2.4843,6.7,404 +4959,10072,A Nightmare on Elm Street 3: Dream Warriors,"During a hallucinatory incident, Kristen Parker has her wrists slashed by dream-stalking monster, Freddy Krueger. Her mother, mistaking the wounds for a suicide attempt, sends her to a psychiatric ward, where she joins a group of similarly troubled teens.",1987-02-27,1.8855,6.688,1879 +4960,484510,Trolls Holiday,"When the eternally optimistic Poppy, queen of the Trolls, learns that the Bergens no longer have any holidays on their calendar, she enlists the help of Branch and the rest of the gang on a delightfully quirky mission to fix something that the Bergens don't think is broken.",2017-11-01,2.0024,6.687,497 +4961,60307,Diary of a Wimpy Kid: Rodrick Rules,"Wimpy Greg Heffley, now in seventh grade, thinks he has it all together. He has mastered middle school and gotten rid of the Cheese Touch. However, Greg's older brother, Rodrick, is itching to cut him down to size. He gets the perfect opportunity when their mother tries to force the boys to bond. Rodrick may be Greg's chief tormentor, but he feels his constant pranks are just what his little brother needs to prepare him for life's hard knocks.",2011-03-25,4.1782,6.7,1179 +4962,10399,Mansfield Park,"Fanny, born into a poor family, is sent away to live with wealthy uncle Sir Thomas, his wife and their four children, where she'll be brought up for a proper introduction to society. She is treated unfavorably by her relatives, except for her cousin Edmund, whom she grows fond of. However, Fanny's life is thrown into disarray with the arrival of worldly Mary Crawford and her brother Henry.",1999-11-12,2.1061,6.7,310 +4963,646385,Scream,"Twenty-five years after a streak of brutal murders shocked the quiet town of Woodsboro, a new killer has donned the Ghostface mask and begins targeting a group of teenagers to resurrect secrets from the town’s deadly past.",2022-01-12,8.5133,6.686,3533 +4964,614560,Mank,1930s Hollywood is reevaluated through the eyes of scathing social critic and alcoholic screenwriter Herman J. Mankiewicz as he races to finish the screenplay of Citizen Kane.,2020-11-13,1.5748,6.686,1674 +4965,11322,Public Enemies,"Depression-era bank robber John Dillinger's charm and audacity endear him to much of America's downtrodden public, but he's also a thorn in the side of J. Edgar Hoover and the fledgling FBI. Desperate to capture the elusive outlaw, Hoover makes Dillinger his first Public Enemy Number One and assigns his top agent, Melvin Purvis, the task of bringing him in dead or alive.",2009-07-01,5.7853,6.686,4599 +4966,9079,Dying Young,"After she discovers that her boyfriend has betrayed her, Hilary O'Neil is looking for a new start and a new job. She begins to work as a private nurse for a young man suffering from blood cancer. Slowly, they fall in love, but they always know their love cannot last because he is destined to die.",1991-06-20,1.6538,6.686,462 +4967,7555,Rambo,"In Thailand, ex-Green Beret John James Rambo joins a group of mercenaries to venture into war-torn neighboring Myanmar to rescue a group of Christian aid workers who have been kidnapped by a ruthless local infantry unit.",2008-01-24,7.0225,6.686,4055 +4968,618219,Mosul,"When ISIS took their homes, families and city, one group of men fought to take it all back. Based on true events, this is the story of the Nineveh SWAT team, a renegade police unit who waged a guerrilla operation against ISIS in a desperate struggle to save their home city of Mosul.",2019-09-04,2.3268,6.685,317 +4969,64328,The Muppets,"When Kermit the Frog and the Muppets learn that their beloved theater is slated for demolition, a sympathetic human, Gary, and his puppet brother, Walter, swoop in to help the gang put on a show and raise the $10 million they need to save the day.",2011-11-22,2.2409,6.7,1617 +4970,12223,The Stepford Wives,"Joanna Eberhart has come to the quaint little town of Stepford, Connecticut with her family, but soon discovers there lies a sinister truth in the all too perfect behavior of the female residents.",1975-02-12,1.4011,6.685,335 +4971,150,48 Hrs.,"A hard-nosed cop reluctantly teams up with a wise-cracking criminal temporarily paroled to him, in order to track down a killer.",1982-12-07,3.8062,6.685,1579 +4972,48138,Unknown,"A man awakens from a coma, only to discover that someone has taken on his identity and that no one, (not even his wife), believes him. With the help of a young woman, he sets out to prove who he is.",2011-02-16,5.3776,6.685,3976 +4973,8736,Dikkenek,"Jean-Claude is a loud-mouthed, know-it-all and full time boor who is best friends with Stef, a self-styled lady killer who would do better with the fairer sex if he could work up the ambition to wake up in the morning. Stef has decided that he may need some help in finding the woman of his dreams, and embracing loyalty rather than logic he turns to Jean-Claude for advice.",2006-06-21,1.1542,6.684,686 +4974,1597,Meet the Parents,"Greg Focker is ready to marry his girlfriend, Pam, but before he pops the question, he must win over her formidable father, humorless former CIA agent Jack Byrnes, at the wedding of Pam's sister. As Greg bends over backward to make a good impression, his visit to the Byrnes home turns into a hilarious series of disasters, and everything that can go wrong does, all under Jack's critical, hawklike gaze.",2000-10-06,5.5216,6.684,6106 +4975,1233069,Exterritorial,"When her son vanishes inside a US consulate, ex-special forces soldier Sara does everything in her power to find him — and uncovers a dark conspiracy.",2025-04-29,18.9317,6.683,528 +4976,517839,Border,"When a border guard with a sixth sense for identifying smugglers encounters the first person she cannot prove is guilty, she is forced to confront terrifying revelations about herself and humankind.",2018-09-27,2.2048,6.684,857 +4977,336882,The Wave,"Although theorised, no one is really ready when a mountain pass above the scenic and narrow Geiranger fjord in Norway collapses and creates a tsunami over 300 feet high. A geologist is one of those caught in the middle of it.",2015-08-28,4.0442,6.683,1327 +4978,280180,Beverly Hills Cop: Axel F,"Forty years after his unforgettable first case in Beverly Hills, Detroit cop Axel Foley returns to do what he does best: solve crimes and cause chaos.",2024-06-20,7.4193,6.683,1283 +4979,22171,Ms .45,"A shy and mute seamstress goes insane after being attacked and raped twice in one day. She wanders the New York streets at night in a sexy black dress with her attacker's gun strapped to her garter belt, blowing away any man who tries to pick her up.",1981-04-24,1.6229,6.7,364 +4980,13804,Fast & Furious,"When a crime brings them back to L.A., fugitive ex-con Dom Toretto reignites his feud with agent Brian O'Conner. But as they are forced to confront a shared enemy, Dom and Brian must give in to an uncertain new trust if they hope to outmaneuver him. And the two men will find the best way to get revenge: push the limits of what's possible behind the wheel.",2009-04-02,1.336,6.683,7468 +4981,10464,"Corrina, Corrina","When Manny Singer's wife dies, his young daughter Molly becomes mute and withdrawn. To help cope with looking after Molly, he hires sassy housekeeper Corrina Washington, who coaxes Molly out of her shell and shows father and daughter a whole new way of life. Manny and Corrina's friendship delights Molly and enrages the other townspeople.",1994-08-12,1.6116,6.7,431 +4982,511322,The Good Liar,"Career con man Roy sets his sights on his latest mark: recently widowed Betty, worth millions. And he means to take it all. But as the two draw closer, what should have been another simple swindle takes on the ultimate stakes.",2019-11-08,2.7342,6.682,1191 +4983,19403,The Mechanic,"Arthur Bishop is a veteran hit man who, owing to his penchant for making his targets' deaths seem like accidents, thinks himself an artist. It's made him very rich, but as he hits middle age, he's so depressed and lonely that he takes on one of his victim's sons, Steve McKenna, as his apprentice. Arthur puts him through a rigorous training period and brings him on several hits. As Steven improves, Arthur worries that he'll discover who killed his father.",1972-10-06,2.1517,6.7,318 +4984,11283,Nanny McPhee,"Widower Cedric Brown hires Nanny McPhee to care for his seven rambunctious children, who have chased away all previous nannies. Taunted by Simon and his siblings, Nanny McPhee uses mystical powers to instill discipline. And when the children's great-aunt and benefactor, Lady Adelaide Stitch, threatens to separate the kids, the family pulls together under the guidance of Nanny McPhee.",2005-10-21,5.6085,6.7,3108 +4985,8736,Dikkenek,"Jean-Claude is a loud-mouthed, know-it-all and full time boor who is best friends with Stef, a self-styled lady killer who would do better with the fairer sex if he could work up the ambition to wake up in the morning. Stef has decided that he may need some help in finding the woman of his dreams, and embracing loyalty rather than logic he turns to Jean-Claude for advice.",2006-06-21,1.1542,6.684,686 +4986,7229,Ruby & Quentin,"After hiding his loot and getting thrown in jail, brooding outlaw Ruby befriends Quentin, a dim-witted and garrulous giant. After Quentin botches a solo escape attempt, they make a break together. Unable to shake the clumsy Quentin, Ruby is forced to take him along as he pursues his former partners in crime to avenge the death of the woman he loved and get to the money.",2003-10-22,3.3,6.679,853 +4987,1635,The Island,"In 2019, Lincoln Six-Echo is a resident of a seemingly ""Utopian"" but contained facility. Like all of the inhabitants of this carefully-controlled environment, Lincoln hopes to be chosen to go to The Island — reportedly the last uncontaminated location on the planet. But Lincoln soon discovers that everything about his existence is a lie.",2005-07-21,6.3547,6.682,5579 +4988,565,The Ring,Rachel Keller is a journalist investigating a videotape that may have killed four teenagers. There is an urban legend about this tape: the viewer will die seven days after watching it. Rachel tracks down the video... and watches it. Now she has just seven days to unravel the mystery of the Ring so she can save herself and her son.,2002-10-18,5.1541,6.7,6351 +4989,75900,My Week with Marilyn,"London, 1956. Genius actor and film director Laurence Olivier is about to begin the shooting of his upcoming movie, premiered in 1957 as The Prince and the Showgirl, starring Marilyn Monroe. Young Colin Clark, who dreams on having a career in movie business, manages to get a job on the set as third assistant director.",2011-11-23,1.9993,6.681,1305 +4990,56812,The Last Circus,"A trapeze artist must decide between her lust for Sergio, the Happy Clown, or her affection for Javier, the Sad Clown, both of whom are deeply disturbed.",2010-12-17,1.2456,6.681,426 +4991,10201,Yes Man,"Carl Allen, a guy whose life is going nowhere, signs up for a self-help program based on one simple covenant: say yes to everything…and anything.",2008-12-09,4.8567,6.681,7043 +4992,2016,Days of Glory,"1943. They have never stepped foot on French soil but because France was at war, Said, Abdelkader, Messaoud and Yassir enlist in the French Army, along with 130,000 other “indigenous” soldiers, to liberate the “fatherland” from the Nazi enemy. Heroes that history has forgotten…",2006-09-27,1.1108,6.681,381 +4993,565770,Blue Beetle,"Recent college grad Jaime Reyes returns home full of aspirations for his future, only to find that home is not quite as he left it. As he searches to find his purpose in the world, fate intervenes when Jaime unexpectedly finds himself in possession of an ancient relic of alien biotechnology: the Scarab.",2023-08-16,6.296,6.68,2860 +4994,517116,Haunt,"On Halloween, a group of friends encounter an extreme haunted house that promises to feed on their darkest fears. The night turns deadly as they come to the horrifying realisation that some nightmares are real.",2019-09-13,2.0476,6.68,1283 +4995,34204,Return to Halloweentown,"As Halloweentown prepares to celebrate its 1,000th anniversary, Marnie Piper and her brother Dylan return to Witch University, where trouble is in session from the Sinister Sisters and from someone who's plotting to use Marnie's powers for evil.",2006-10-20,1.3765,6.68,609 +4996,20760,Lilo & Stitch 2: Stitch Has a Glitch,"Now, we find the rowdy extraterrestrial getting used to life with his new ʻohana. However, a malfunction in the ultimate creation of Dr. Jumba soon emerges, which reinstates his destructive programming and threatens to both ruin his friendship with Lilo and to short him out for good!",2005-08-22,7.7713,6.68,1556 +4997,11307,The World According to Garp,"A struggling young writer finds his life and work dominated by his unfaithful wife and his radical feminist mother, whose best-selling manifesto turns her into a cultural icon.",1982-07-23,1.2016,6.7,358 +4998,1992,Planet Terror,"Two doctors find their graveyard shift inundated with townspeople ravaged by sores. Among the wounded is Cherry Darling, a dancer whose leg was ripped from her body. As the invalids quickly become enraged aggressors, Cherry and her ex-boyfriend El Wray lead a team of accidental warriors into the night.",2007-04-06,3.9162,6.68,3614 +4999,32042,Night Moves,"Private detective and former football player Harry Moseby gets hired on to what seems a standard missing person case - a former Hollywood actress wants Moseby to find and return her daughter. Harry travels to Florida to find her, but he begins to see a connection between the runaway girl, the world of Hollywood stuntmen, and a suspicious mechanic when an unsolved murder comes to light.",1975-06-11,1.8052,6.7,319 +5000,13676,The Little Mermaid: Ariel's Beginning,"Follow Ariel's adventures before she gave up her fins for true love. When Ariel wasn't singing with her sisters, she spent time with her mother, Queen Athena. Ariel is devastated when Athena is killed by pirates, and after King Triton outlaws all singing. Along with pals Flounder and Sebastian, Ariel sets off in hopes of changing her father's decision to ban music from the kingdom.",2008-08-25,0.2005,6.678,1043 +5001,9869,Patriot Games,"When CIA Analyst Jack Ryan interferes with an IRA assassination, a renegade faction targets Jack and his family as revenge.",1992-06-04,3.3934,6.678,1709 +5002,9659,Mad Max,"In the ravaged near-future, a savage motorcycle gang rules the road. Terrorizing innocent civilians while tearing up the streets, the ruthless gang laughs in the face of a police force hell-bent on stopping them.",1979-04-12,5.5481,6.678,4668 +5003,3595,Ransom,"When a rich man's son is kidnapped, he cooperates with the police at first but then tries a unique tactic against the criminals.",1996-11-08,2.5129,6.678,1937 +5004,1788,Footloose,"When teenager Ren and his family move from big-city Chicago to a small town in the West, he's in for a real case of culture shock after discovering he's living in a place where music and dancing are illegal.",1984-02-17,3.7358,6.678,2121 +5005,629176,Samaritan,"Thirteen year old Sam Cleary suspects that his mysteriously reclusive neighbor Mr. Smith is actually the legendary vigilante Samaritan, who was reported dead 25 years ago. With crime on the rise and the city on the brink of chaos, Sam makes it his mission to coax his neighbor out of hiding to save the city from ruin.",2022-08-25,5.0095,6.677,2081 +5006,558449,Gladiator II,"Years after witnessing the death of the revered hero Maximus at the hands of his uncle, Lucius is forced to enter the Colosseum after his home is conquered by the tyrannical Emperors who now lead Rome with an iron fist. With rage in his heart and the future of the Empire at stake, Lucius must look to his past to find strength and honor to return the glory of Rome to its people.",2024-11-13,22.4765,6.7,3734 +5007,452773,"Tad, the Lost Explorer, and the Secret of King Midas","Tad dreams of becoming an archaeologist traveling the world, uncovering hidden secrets and lost treasure, but his job working construction keeps him daydreaming instead of exploring. The chance of a lifetime comes when he is invited to attend archaeologist Sara Lavrof's presentation of her latest discovery - the papyrus that proves the existence of the Necklace of Midas, the legendary King who turned everything he touched into solid gold.",2017-03-25,2.7918,6.7,415 +5008,75802,Hysteria,"Two doctors in Victorian England use manual stimulation of female genitalia to cure their patients' ills, leading to the invention of the vibrator.",2011-06-06,1.586,6.677,826 +5009,11655,Cronos,"Faced with his own mortality, an ingenious alchemist tried to perfect an invention that would provide him with the key to eternal life. It was called the Cronos device. When he died more than 400 years later, he took the secrets of this remarkable device to the grave with him. Now, an elderly antiques dealer has found the hellish machine hidden in a statue and learns about its incredible powers. The more he uses the device, the younger he becomes...but nothing comes without a price. Life after death is just the beginning as this nerve-shattering thriller unfolds and the fountain of youth turns bloody.",1993-11-05,1.8144,6.7,690 +5010,11633,Appleseed,"In a utopian society created at the end of the third world war, a female warrior who has been plucked from the badlands begins to see cracks in this new facade. And what does this community have planned for the rest of humankind?",2004-04-17,1.2444,6.677,367 +5011,574376,Eye for an Eye,"Mario, an exemplary man, lives in a village on the Galician coast. In the old people’s home, where he works as a nurse, everyone appreciates him. When the best known narco in the area, Antonio Padín, recently released from prison, enters the residence, Mario tries to make Antonio feel at home. Now, Padín's two sons, Kike and Toño, are in charge of the family business. The failure of an operation will put Kike in jail and cause them to owe a large debt to a Colombian supplier. Toño will turn to the nurse to try to convince his father to assume the debt. But Mario has his own plans.",2019-08-30,1.3407,6.676,315 +5012,401513,Attraction,"After an alien ship crash lands in a Russian city, many who see the inside and the occupants start to question their own existence while others demand the aliens leave Earth.",2017-01-26,3.39,6.7,850 +5013,250235,Tutta colpa di Freud,"Francesco is a psychoanalyst grappling with three hopeless causes: a bookseller in love with a book thief, a lesbian hell-bent on becoming straight after a heartbreak, and an 18-year-old in a relationship with a much older married man. Unfortunately, these patients are also his three beloved daughters!",2014-01-23,0.5159,6.676,1029 +5014,185567,Zulu,"As a child, Ali Neuman narrowly escaped being murdered by Inkhata, a militant political party at war with Nelson Mandela's African National Congress. Only he and his mother survived the carnage of those years. But as with many survivors, the psychological scars remain.",2013-12-04,1.1823,6.676,492 +5015,91586,Insidious: Chapter 2,The haunted Lambert family seeks to uncover the mysterious childhood secret that has left them dangerously connected to the spirit world.,2013-09-12,5.6324,6.676,4367 +5016,81250,Geek Charming,"Film geek Josh is looking for the subject of his new documentary when a chance meeting puts the perfect star in his sights—Dylan, his school's most popular junior. But Dylan's hopes of using the film to become Blossom Queen don't quite match with Josh's goal to make a hard-hitting exposé about popularity. Will Josh shoot the film as planned, or show Dylan as the truly interesting person she is?",2011-11-11,2.3795,6.7,765 +5017,9044,Tristan & Isolde,An affair between the second in line to Britain's throne and the princess of the feuding Irish spells doom for the young lovers.,2006-04-07,1.6339,6.676,805 +5018,7453,The Hitchhiker's Guide to the Galaxy,"Mere seconds before the Earth is to be demolished by an alien construction crew, Arthur Dent is swept off the planet by his friend Ford Prefect, a researcher penning a new edition of ""The Hitchhiker's Guide to the Galaxy.""",2005-04-28,3.3001,6.676,4007 +5019,2161,Fantastic Voyage,"In order to save an assassinated scientist, a submarine and its crew are shrunk to microscopic size and injected into his bloodstream.",1966-08-24,1.5024,6.7,460 +5020,83686,The Words,"The Words follows young writer Rory Jansen who finally achieves long sought after literary success after publishing the next great American novel. There's only one catch - he didn't write it. As the past comes back to haunt him and his literary star continues to rise, Jansen is forced to confront the steep price that must be paid for stealing another man's work, and for placing ambition and success above life's most fundamental three words.",2012-09-07,2.6701,6.675,1229 +5021,3638,No Reservations,"Master chef Kate Armstrong runs her life and her kitchen with intimidating intensity. However, a recipe for disaster may be in the works when she becomes the guardian of her young niece while crossing forks with the brash sous-chef who just joined her staff. Though romance blooms in the face of rivalry, Kate needs to look outside the kitchen to find true happiness.",2007-06-15,2.8857,6.675,1409 +5022,840705,Blink Twice,"When tech billionaire Slater King meets cocktail waitress Frida at his fundraising gala, he invites her to join him and his friends on a dream vacation on his private island. But despite the epic setting, beautiful people, ever-flowing champagne, and late-night dance parties, Frida can sense that there’s something sinister hiding beneath the island’s lush façade.",2024-08-21,8.2307,6.675,1559 +5023,190880,"Me, Myself and Mum","How to become a man when your mother and your closed circle have decided otherwise? This is the challenge Guillaume took up. The film recounts Guillaume's tragicomic battle from the young age of eight, as he adopts the role of a girl then of a homosexual... until, aged 30, he meets the woman who, after his mother, will become the other woman in his life. Beyond this story of a heterosexual coming-out, the film tells the tale of an actor who never stopped loving women, maybe even a little too much.",2013-11-20,1.088,6.674,671 +5024,36897,Pokémon: Mewtwo Returns,"The Team Rocket leader, Giovanni, has found Mewtwo in a remote area of the Johto region. As Giovanni tries to re-capture Mewtwo, Ash and his friends are kidnapped by Domino, a new Team Rocket member, while trying to rescue Pikachu from Jessie and James. The Clone Pokemon are also captured and are then used as bait for Mewtwo. The situation then becomes a battle between the wills of Mewtwo and Giovanni; and Mewtwo also tries to discover if it and the clones have a purpose in life, even though they are products of science.",2001-08-17,1.5007,6.674,411 +5025,1389,Out of Sight,"Meet Jack Foley, a smooth criminal who bends the law and is determined to make one last heist. Karen Sisco is a federal marshal who chooses all the right moves … and all the wrong guys. Now they're willing to risk it all to find out if there's more between them than just the law.",1998-06-26,2.7069,6.674,1328 +5026,1059128,Queer,"1950. William Lee, an American expat in Mexico City, spends his days almost entirely alone, except for a few contacts with other members of the small American community. His encounter with Eugene Allerton, an expat former soldier, new to the city, shows him, for the first time, that it might be finally possible to establish an intimate connection with somebody.",2024-11-27,4.1078,6.671,394 +5027,370665,Dilwale,Raj is a Mafia member. One day he meet a girl (Meera) while chasing by his rival gang and falls in love with her. Later he finds out that this girl is the daughter of the leader of his rival gang. Yet their love story continues until he was shot by his girlfriend upon a deep misunderstanding. After that incident these two lovers lives separate until their siblings fallen in love. With this new love story their paths intertwines again.,2015-12-18,1.2542,6.7,321 +5028,276844,The Little Death,A comedy film that looks into the loosely connected lives of people with strange sexual fantasies.,2014-06-13,1.5335,6.673,496 +5029,46420,The Loved Ones,"When Brent turns down his classmate Lola's invitation to the prom, she concocts a wildly violent plan for revenge.",2010-08-04,2.226,6.677,779 +5030,37645,22 Bullets,A retired mobster goes on a revenge spree after being left for dead with 22 bullets in his body by his former childhood friend.,2010-03-23,2.8109,6.7,1246 +5031,11601,Stir of Echoes,"After being hypnotized by his sister-in-law, Tom Witzky begins seeing haunting visions of a girl's ghost and a mystery begins to unfold around her.",1999-09-10,2.5656,6.673,1274 +5032,25,Jarhead,"Jarhead is a film about a US Marine Anthony Swofford’s experience in the Gulf War. After putting up with an arduous boot camp, Swofford and his unit are sent to the Persian Gulf where they are eager to fight, but are forced to stay back from the action. Swofford struggles with the possibility of his girlfriend cheating on him, and as his mental state deteriorates, his desire to kill increases.",2005-11-04,3.9505,6.7,2993 +5033,5126,Martian Child,A recently-widowed science fiction writer considers whether to adopt a hyper-imaginative 6-year-old abandoned and socially-rejected boy who says he's really from Mars.,2007-11-02,1.1756,6.672,311 +5034,660,Thunderball,A criminal organization has obtained two nuclear bombs and are asking for a 100 million pound ransom in the form of diamonds in seven days or they will use the weapons. The secret service sends James Bond to the Bahamas to once again save the world.,1965-12-11,5.487,6.672,2446 +5035,866463,Reptile,"Following the brutal murder of a young real estate agent, a hardened detective attempts to uncover the truth in a case where nothing is as it seems, and by doing so dismantles the illusions in his own life.",2023-09-29,3.2964,6.671,1074 +5036,435126,Perfect Strangers,"During a lunar eclipse, seven friends gather for dinner and decide to play a game in which they must share with each other the content of every message, email or phone call they receive throughout the evening.",2017-12-01,1.2329,6.671,659 +5037,332794,The Odyssey,"The aquatic adventure of the highly influential and fearlessly ambitious pioneer, innovator, filmmaker, researcher, and conservationist, Jacques-Yves Cousteau, covers roughly thirty years of an inarguably rich in achievements life.",2016-10-12,1.8511,6.671,418 +5038,232679,When the Game Stands Tall,A young coach turns a losing high school football program around to go undefeated for 12 consecutive seasons.,2014-08-22,1.602,6.671,362 +5039,10393,The Replacements,"Maverick old-guard coach Jimmy McGinty is hired in the wake of a players' strike to help the Washington Sentinels advance to the playoffs. But that impossible dream hinges on whether his replacements can hunker down and do the job. So, McGinty dusts off his secret dossier of ex-players who never got a chance (or screwed up the one they were given) and knits together a bad-dream team of guys who just may give the Sentinels their title shot.",2000-08-11,4.568,6.671,1007 +5040,10316,The Ides of March,Dirty tricks stand to soil an ambitious young press spokesman's idealism in a cutthroat presidential campaign where 'victory' is relative.,2011-10-07,2.8936,6.671,2569 +5041,1064028,Subservience,"With his wife out sick, a struggling father brings home a lifelike AI, only to have his self-aware new help want everything her new family has to offer... Like the affection of her owner and she'll kill to get it.",2024-08-15,11.6822,6.669,798 +5042,862965,Emily the Criminal,"Desperate for income, Emily takes a shady gig buying goods with stolen credit cards supplied by a charismatic middleman named Youcef. Seduced by the quick cash and illicit thrills, they hatch a plan to take their business to the next level.",2022-08-12,2.7294,6.67,901 +5043,762079,The Advent Calendar,"Eva, an ex-dancer, is now living in a wheelchair, unable to walk. When her friend Sophie gives her an old wooden antique advent calendar before Christmas, she realizes each window contains a surprise that triggers repercussions in real life: some of them good, but most of them bad... Now Eva will have to choose between getting rid of the calendar or walking again… even if it causes death around her.",2021-12-01,1.9745,6.67,373 +5044,532953,Purl,"Purl, an earnest ball of yarn, gets a job at a fast-paced, male-centered startup company. Things start to unravel as Purl tries to fit in with this tight-knit group, but she must ask herself how far is she willing to go to get the acceptance she yearns for and if, in the end, it is worth it.",2019-01-18,1.264,6.67,311 +5045,284303,Goodnight Mommy,"In the heat of the summer lays a lonesome house in the countryside where nine year old twin brothers await their mother’s return. When she comes home, bandaged after cosmetic surgery, nothing is like before and the children start to doubt whether this woman is actually who she says she is.",2015-01-08,2.7338,6.67,1623 +5046,22832,Ninja Assassin,"Ninja Assassin follows Raizo, one of the deadliest assassins in the world. Taken from the streets as a child, he was transformed into a trained killer by the Ozunu Clan, a secret society whose very existence is considered a myth. But haunted by the merciless execution of his friend by the Clan, Raizo breaks free from them and vanishes. Now he waits, preparing to exact his revenge.",2009-09-29,5.774,6.67,1634 +5047,14370,Real Genius,"When teenage geniuses Mitch Taylor and Chris Knight, working on an advanced laser project, learn that the military wants to use it as a weapon, they decide to thwart the plan.",1985-08-07,2.4416,6.67,465 +5048,11967,Young Guns,"A group of young gunmen, led by Billy the Kid, become deputies to avenge the murder of the rancher who became their benefactor. But when Billy takes their authority too far, they become the hunted.",1988-02-17,2.7582,6.67,965 +5049,11959,UHF,The eccentric new manager of a UHF television channel tries to save the station from financial ruin with an odd array of programming.,1989-07-21,1.3459,6.7,377 +5050,9726,A Good Year,"Failed London banker Max Skinner inherits his uncle's vineyard in Provence, where he spent many childhood holidays. Upon his arrival, he meets a woman from California who tells Max she is his long-lost cousin and that the property is hers.",2006-09-09,2.6019,6.67,1542 +5051,2924,Backdraft,Firemen brothers Brian and Stephen McCaffrey battle each other over past slights while trying to stop an arsonist with a diabolical agenda from torching Chicago.,1991-05-24,2.8983,6.7,1473 +5052,1487,Hellboy,"In the final days of World War II, the Nazis attempt to use black magic to aid their dying cause. The Allies raid the camp where the ceremony is taking place, but not before they summon a baby demon who is rescued by Allied forces and dubbed ""Hellboy"". Sixty years later, Hellboy serves the cause of good rather than evil as an agent in the Bureau of Paranormal Research & Defense, along with Abe Sapien - a merman with psychic powers, and Liz Sherman - a woman with pyrokinesis, protecting America against dark forces.",2004-04-02,5.9655,6.67,7086 +5053,802219,Bob Marley: One Love,Jamaican singer-songwriter Bob Marley overcomes adversity to become the most famous reggae musician in the world.,2024-02-14,3.2793,6.667,863 +5054,763152,More the Merrier,Multiple stories about the oscillating world of couple relationships and how difficult it can be to separate sex from love.,2021-07-30,2.2186,6.669,435 +5055,406994,Better Watch Out,"On a quiet suburban street tucked within a 'safe neighborhood', a babysitter must defend a twelve-year-old boy from strangers breaking into the house, only to discover that this is far from a normal home invasion.",2017-10-06,2.0218,6.669,1547 +5056,384664,Goodbye Berlin,"Maik, a fourteen-year-old teenager, sets out on a road trip during summertime with Tschick, a new classmate, in a stolen car. The two share life changing experiences during the eventful journey.",2016-09-15,1.146,6.669,316 +5057,157386,The Spectacular Now,"Sutter, a popular party animal, unexpectedly meets the introverted Aimee after waking up on a stranger's lawn. As Sutter deals with the problems in his life and Aimee plans for her future beyond school, an unexpected romance blossoms between them.",2013-08-02,2.942,6.669,2921 +5058,2251,Unfaithful,"Connie is a wife and mother whose 11-year marriage to Edward has lost its sexual spark. When Connie literally runs into handsome book collector Paul, he sweeps her into an all-consuming affair. But Edward soon becomes suspicious and decides to confront the other man.",2002-05-10,5.862,6.669,1602 +5059,332210,Storks,"Storks deliver babies…or at least they used to. Now they deliver packages for a global internet retail giant. Junior, the company’s top delivery stork, is about to be promoted when he accidentally activates the Baby Making Machine, producing an adorable and wholly unauthorized baby girl...",2016-09-22,4.7542,6.668,2410 +5060,280217,The Lego Movie 2: The Second Part,"It's been five years since everything was awesome and the citizens are facing a huge new threat: LEGO DUPLO® invaders from outer space, wrecking everything faster than they can rebuild.",2019-02-06,5.0455,6.668,2294 +5061,46169,Twitches Too,"Reunited witch twins Camryn and Alex adjust to their new life as supernatural beings while at the same time trying to maintain a normal existence in this sequel to the magical Disney Channel original movie Twitches. But they soon find themselves going head to head with the forces of darkness that threaten to destroy their world. Luckily, their birth mother, the powerful Miranda, is on hand to help out.",2007-10-12,1.9579,6.668,355 +5062,41610,Fracchia The Human Beast,The world's greatest criminal and the world greatest loser share the same face... now they'll share the same life!,1981-12-22,0.3892,6.668,327 +5063,31608,Three Fugitives,"On his first day after being released from jail for 14 armed bank robberies, Lucas finds himself caught up in someone else's robbery. Perry has decided to hold up the local bank to raise money so that he can keep his daughter, Meg, and get her the treatment she needs. Dugan, a detective, assumes Lucas helped plan the robbery, and hence Lucas, Perry and Meg become three fugitives.",1989-01-27,1.6454,6.7,304 +5064,11548,*batteries not included,"In a soon to be demolished block of apartments, the residents resist the criminal methods used to force them to leave so a greedy tycoon can build his new skyscraper. When tiny mechanical aliens land for a recharge, they decide to stay and help out.",1987-12-18,2.7836,6.668,742 +5065,2976,Hairspray,"Pleasantly plump teenager Tracy Turnblad auditions to be on Baltimore's most popular dance show - The Corny Collins Show - and lands a prime spot. Through her newfound fame, she becomes determined to help her friends and end the racial segregation that has been a staple of the show.",2007-07-19,3.2016,6.668,2536 +5066,1364,Sex and Lucía,"Various lives converge on an isolated island, all connected by an author whose novel has become inextricably entwined with his own life.",2001-08-24,3.4659,6.668,582 +5067,614939,Bros,Two emotionally unavailable men attempt a relationship.,2022-09-30,1.8314,6.7,533 +5068,276908,Comet,"When a chance encounter brings together the cynical Dell and the quick-witted Kimberly, the stage is set for a tempestuous love affair that unfolds like a puzzle. As the film zigzags back and forth in time — from a meteor shower in LA, to an encounter in a Paris hotel room, to a fateful phone call — an unforgettable portrait of a relationship emerges.",2014-12-05,0.9195,6.667,446 +5069,8669,Charlie Bartlett,"Awkward teenager Charlie Bartlett has trouble fitting in at a new high school. Charlie needs some friends fast, and decides that the best way to find them is to appoint himself the resident psychiatrist. He becomes one of the most popular guys in school by doling out advice and, occasionally, medication, to the student body.",2008-02-22,1.2876,6.7,652 +5070,522931,Hitman's Wife's Bodyguard,"The world’s most lethal odd couple – bodyguard Michael Bryce and hitman Darius Kincaid – are back on another life-threatening mission. Still unlicensed and under scrutiny, Bryce is forced into action by Darius's even more volatile wife, the infamous international con artist Sonia Kincaid. As Bryce is driven over the edge by his two most dangerous protectees, the trio get in over their heads in a global plot and soon find that they are all that stand between Europe and a vengeful and powerful madman.",2021-06-14,4.8921,6.666,2404 +5071,41663,Fantozzi Against the Wind,"The third film in the saga of the unlucky clerk Ugo Fantozzi, played by its creator, Paolo Villaggio.",1980-11-13,0.7458,6.666,532 +5072,8270,The Lookout,"Chris is a once promising high school athlete whose life is turned upside down following a tragic accident. As he tries to maintain a normal life, he takes a job as a janitor at a bank, where he ultimately finds himself caught up in a planned heist.",2007-03-09,1.2306,6.666,659 +5073,262391,Serial (Bad) Weddings,A catholic French couple sees their life upside down when their four daughters get married to men of different religion and origins.,2014-04-16,2.2097,6.665,3448 +5074,9291,The Longest Yard,"Disgraced pro football quarterback Paul Crewe lands in a Texas federal penitentiary, where manipulative Warden Hazen recruits him to advise the institution's football team of prison guards. Crewe suggests a tune-up game which lands him quarterbacking a crew of inmates in a game against the guards. Aided by incarcerated ex-NFL coach and player Nate Scarborough, Crewe and his team must overcome not only the bloodthirstiness of the opposition, but also the corrupt warden trying to fix the game against them.",2005-05-27,7.718,6.666,3513 +5075,790142,The Royal Treatment,"Isabella runs her own salon and isn’t afraid to speak her mind, while Prince Thomas runs his own country and is about to marry for duty rather than love. When Izzy and her fellow stylists get the opportunity of a lifetime to do the hair for the royal wedding, she and Prince Thomas learn that taking control of their own destiny requires following their hearts.",2022-01-20,1.3519,6.664,779 +5076,450465,Glass,"In a series of escalating encounters, former security guard David Dunn uses his supernatural abilities to track Kevin Wendell Crumb, a disturbed man who has twenty-four personalities. Meanwhile, the shadowy presence of Elijah Price emerges as an orchestrator who holds secrets critical to both men.",2019-01-16,6.2093,6.664,8727 +5077,1957,Enough,"Working-class waitress Slim thought she was entering a life of domestic bliss when she married Mitch, the man of her dreams. After the arrival of their first child, her picture perfect life is shattered when she discovers Mitch's hidden possessive dark side, a controlling and abusive alter ego that can turn trust, love and tranquility into terror. Terrified for her child's safety, Slim flees with her daughter. Relentless in his pursuit and enlisting the aid of lethal henchmen, Mitch continually stalks the prey that was once his family.",2002-05-21,2.4401,6.664,1186 +5078,321751,A Perfect Day,"Somewhere in the Balkans, 1995. A team of aid workers must solve an apparently simple problem in an almost completely pacified territory that has been devastated by a cruel war, but some of the local inhabitants, the retreating combatants, the UN forces, many cows and an absurd bureaucracy will not cease to put obstacles in their way.",2015-08-28,1.5926,6.663,640 +5079,34942,Balto III: Wings of Change,"Balto and the other sled dogs are feeling dejected because the mail that used to be delivered by dogsled is now being delivered by airplanes. But when a mail plane crashes in the mountains, the dogs come to the rescue.",2004-04-14,1.4372,6.7,331 +5080,22244,Society,Bill Whitney is worried that he is different to his sister and parents. They mix with other upper-class people while Bill is more down to earth. Even his girlfriend seems a bit odd. All is revealed when Bill returns home to find a party in full swing.,1989-05-13,1.3239,6.663,574 +5081,15613,Fire in the Sky,"After clearing brush for the government, a group of men return to town claiming their friend was abducted their friend. Despite no apparent motive or evidence of foul play, no-one believes their story and his disappearance is treated as murder.",1993-03-12,2.2925,6.663,629 +5082,8204,The Spiderwick Chronicles,"Upon moving into the run-down Spiderwick Estate with their mother, twin brothers Jared and Simon Grace, along with their sister Mallory, find themselves pulled into an alternate world full of faeries and other creatures.",2008-02-14,5.7034,6.664,2721 +5083,882598,Smile,"After witnessing a bizarre, traumatic incident involving a patient, Dr. Rose Cotter starts experiencing frightening occurrences that she can't explain.",2022-09-23,9.7477,6.663,3671 +5084,722149,Luther: The Fallen Sun,"A gruesome serial killer is terrorizing London while brilliant but disgraced detective John Luther sits behind bars. Haunted by his failure to capture the cyber psychopath who now taunts him, Luther decides to break out of prison to finish the job by any means necessary.",2023-02-24,2.2689,6.662,994 +5085,454619,Overboard,"A spoiled, wealthy yacht owner is thrown overboard and becomes the target of revenge from his mistreated employee.",2018-04-13,3.9883,6.662,1411 +5086,315664,Florence Foster Jenkins,"The story of Florence Foster Jenkins, a New York heiress, who dreamed of becoming an opera singer, despite having a terrible singing voice.",2016-05-06,2.2203,6.662,1486 +5087,209361,One Chance,"This film follows the remarkable and inspirational true story of Paul Potts, a shy, bullied shop assistant by day and an amateur opera singer by night.",2013-09-09,1.0602,6.662,300 +5088,63578,The Trip,"When Steve Coogan is asked by The Observer to tour the country's finest restaurants, he envisions it as the perfect getaway with his beautiful girlfriend. But, when she backs out on him, he has no one to accompany him but his best friend and source of eternal aggravation, Rob Brydon.",2011-04-24,0.5511,6.662,300 +5089,12609,Help! I'm a Fish,"Three children are accidentally transformed into fish after consuming a potion made by an eccentric scientist. The kids end up in the sea, with one problem: they must find and drink the antidote within 48 hours, or forever remain as fish.",2000-10-06,2.1617,6.7,433 +5090,11023,Thirteen,"When average 13-year-old Tracy befriends Evie, the most popular girl in school, Tracy's world is turned upside down as Evie introduces her to a world of sex, drugs and cash. But it isn't long before Tracy's new world and attitude finally takes a toll on her, her family, and old friends.",2003-08-20,4.8951,6.7,1675 +5091,209185,The Grand Seduction,"A small fishing village must procure a local doctor to secure a lucrative business contract. When unlikely candidate and big city doctor Paul Lewis lands in their lap for a trial residence, the townsfolk rally together to charm him into staying. As the doctor’s time in the village winds to a close, acting mayor Murray French has no choice but to pull out all the stops and begin The Grand Seduction.",2014-05-30,1.3092,6.661,330 +5092,52274,Julia's Eyes,"Julia, a woman suffering from a degenerative sight disease, finds her blind sister Sara hung in a basement. Despite all signs pointing to suicide, Julia decides to investigate what she intuitively feels is a murder case.",2010-08-16,1.6401,6.7,811 +5093,46332,Of Gods and Men,"A group of Trappist monks reside in the monastery of Tibhirine in Algeria, where they live in harmony with the largely muslim population. When a bloody conflict between Algeria's army and Muslim Jihadi insurgents disrupts the peace, they are forced to consider fleeing the monastery and deserting the villagers they have ministered to. In the face of deadly violence the monks wrestle with their faith and their convictions, eventually deciding to stay and help their neighbours keep the army and the insurgents at bay.",2010-09-08,1.4024,6.661,398 +5094,9614,Happy Gilmore,"Failed hockey player-turned-golf whiz Happy Gilmore — whose unconventional approach and antics on the green courts the ire of rival Shooter McGavin — is determined to win a PGA tournament so he can save his granny's house with the prize money. Meanwhile, an attractive tour publicist tries to soften Happy's image.",1996-02-16,30.5855,6.661,3016 +5095,9517,Bully,"A pack of naïve teenagers conspire to murder a mutual friend, whose aggressive demeanour has proven too much.",2001-06-15,2.3375,6.661,505 +5096,1936,River of No Return,An itinerant farmer and his young son help a heart-of-gold saloon singer search for her estranged husband.,1954-04-30,2.4775,6.661,455 +5097,881164,Boston Strangler,"Reporters Loretta McLaughlin and Jean Cole bravely pursue the story of the Boston Strangler at great personal risk, putting their own lives on the line in their quest to uncover the truth.",2023-03-16,1.8252,6.66,761 +5098,440021,Happy Death Day,"Caught in a bizarre and terrifying time warp, college student Tree finds herself repeatedly reliving the day of her murder, ultimately realizing that she must identify the killer and the reason for her death before her chances of survival run out.",2017-10-12,3.337,6.66,6328 +5099,10629,Veronica Guerin,"In this true story, Veronica Guerin is an investigative reporter for an Irish newspaper. As the drug trade begins to bleed into the mainstream, Guerin decides to take on and expose those responsible. Beginning at the bottom with addicts, Guerin then gets in touch with John Traynor, a paranoid informant. Not without some prodding, Traynor leads her to John Gilligan, the ruthless head of the operation, who does not take kindly to Guerin's nosing.",2003-07-11,1.5752,6.66,319 +5100,4944,Burn After Reading,"When a disc containing memoirs of a former CIA analyst falls into the hands of gym employees, Linda and Chad, they see a chance to make enough money for Linda to have life-changing cosmetic surgery. Predictably, events whirl out of control for the duo, and those in their orbit.",2008-09-05,3.5392,6.7,4920 +5101,75612,Oblivion,"Jack Harper is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jack’s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.",2013-04-10,6.0144,6.659,11016 +5102,27585,Rabbit Hole,Life for a happy couple is turned upside down after their young son dies in an accident.,2010-12-16,3.1636,6.7,617 +5103,13672,JCVD,"Between his tax problems and his legal battle with his wife for the custody of his daughter, these are hard times for the action movie star who finds that even Steven Seagal has pinched a role from him! This fictionalized version of Jean-Claude Van Damme returns to the country of his birth to seek the peace and tranquility he can no longer enjoy in the United States, but inadvertently gets involved in a bank robbery with hostages.",2008-06-04,1.0524,6.7,530 +5104,10364,Catch-22,"A bombardier in World War II tries desperately to escape the insanity of the war. However, sometimes insanity is the only sane way to cope with a crazy situation.",1970-06-24,1.9861,6.659,318 +5105,621870,Secret Society of Second Born Royals,"Sam is a teenage royal rebel, second in line to the throne of the kingdom of Illyria. Just as her disinterest in the royal way of life is at an all-time high, she discovers she has super-human abilities and is invited to join a secret society of similar extraordinary second-born royals charged with keeping the world safe.",2020-09-25,2.4278,6.658,545 +5106,529106,Major Grom: Plague Doctor,"In present day St. Petersburg, police major Igor Grom, an honest and skilled cop with unconventional methods, pursues a vigilante murderer in the mask of a plague doctor.",2021-04-01,1.3349,6.658,612 +5107,201085,Crimson Peak,"In the aftermath of a family tragedy, an aspiring author is torn between love for her childhood friend and the temptation of a mysterious outsider. Trying to escape the ghosts of her past, she is swept away to a house that breathes, bleeds… and remembers.",2015-10-13,3.5494,6.658,5038 +5108,65291,Green Lantern: Emerald Knights,"As the home planet of the Green Lantern Corps faces a battle with an ancient enemy, Hal Jordan prepares new recruit Arisia for the coming conflict by relating stories of the first Green Lantern and several of Hal's comrades.",2011-04-09,2.1346,6.658,524 +5109,35052,Cracks,Jealousy flares after the headmistress of an elite boarding school for girls becomes obsessed with a new student.,2009-12-04,1.7858,6.658,411 +5110,11520,Grumpy Old Men,"For decades, next-door neighbors and former friends John and Max have feuded, trading insults and wicked pranks. When an attractive widow moves in nearby, their bad blood erupts into a high-stakes rivalry full of naughty jokes and adolescent hijinks.",1993-12-25,2.5211,6.658,701 +5111,6072,One Eight Seven,"After surviving a stabbing by a student, teacher Trevor Garfield moves from New York to Los Angeles. There, he resumes teaching as a substitute teacher. The education system, where violent bullies control the classrooms and the administration is afraid of lawsuits, slowly drives Garfield mad.",1997-07-29,2.4696,6.658,589 +5112,635731,Pig,A truffle hunter who lives alone in the Oregon wilderness must visit Portland to find the mysterious person who stole his beloved foraging pig.,2021-07-16,2.1655,6.657,1564 +5113,337674,Elle,"When Michèle, the CEO of a gaming software company, is attacked in her home by an unknown assailant, she refuses to let it alter her precisely ordered life. She manages crises involving family, all the while becoming engaged in a game of cat and mouse with her stalker.",2016-05-25,2.8962,6.657,1909 +5114,19255,Away We Go,"Verona and Burt have moved to Colorado to be close to Burt's parents but, with Verona expecting their first child, Burt's parents inexplicably decide to move to Belgium, now leaving them in a place they hate and without a support structure in place. They set off on a whirlwind tour of of disparate locations where they have friends or relatives, sampling not only different cities and climates but also different families. Along the way they realize that the journey is less about discovering where they want to live and more about figuring out what type of parents they want to be.",2009-06-05,1.6176,6.657,593 +5115,11654,The Hunger,"Five-thousand-year-old vampire Miriam promises her lovers the gift of eternal life. When John, her cellist companion for centuries, discovers that he has suddenly begun growing old, he attempts to seek out the help of Dr. Sarah Roberts, a researcher on the mechanisms of aging.",1983-04-29,1.5376,6.657,600 +5116,11566,Dave,A sweet-natured Temp Agency operator and amateur Presidential look-alike is recruited by the Secret Service to become a temporary stand-in for the President of the United States.,1993-05-07,1.6599,6.657,779 +5117,10873,Shadow of the Vampire,"Director F.W. Murnau makes a Faustian pact with a vampire to get him to star in his 1922 film ""Nosferatu.""",2000-08-30,2.1888,6.657,625 +5118,8880,Che: Part Two,"After the Cuban Revolution, Che is at the height of his fame and power. Then he disappears, re-emerging incognito in Bolivia, where he organizes a small group of Cuban comrades and Bolivian recruits to start the great Latin American Revolution. Through this story, we come to understand how Che remains a symbol of idealism and heroism that lives in the hearts of people around the world.",2008-12-12,2.4439,6.7,645 +5119,1098110,Blood & Gold,"At the end of World War II, a German soldier is looking for his daughter while an SS troop is looking for a Jewish treasure.",2023-04-21,1.705,6.656,390 +5120,604685,Den of Thieves 2: Pantera,"Big Nick is back on the hunt in Europe and closing in on Donnie, who is embroiled in the treacherous and unpredictable world of diamond thieves and the infamous Panther mafia, as they plot a massive heist of the world's largest diamond exchange.",2025-01-08,9.3024,6.656,595 +5121,833339,Speak No Evil,A Danish family visits a Dutch family they met on a holiday. What was supposed to be an idyllic weekend slowly starts unraveling as the Danes try to stay polite in the face of unpleasantness.,2022-03-17,3.3453,6.656,970 +5122,494974,Red Joan,"London, England, May 2000. The peaceful life of elderly Joan Stanley is suddenly disrupted when she is arrested by the British Intelligence Service and accused of providing information to communist Russia during the forties.",2018-09-13,1.3272,6.655,378 +5123,33875,Pokémon Heroes,"Ash, Pikachu and the gang try and stop a pair of thieves hiding out in the canals and alleyways of Altomare, the age-old water capital. Joining the adventure are two new legendary Pokémon, a pair of siblings named Latias and Latios, who serve as peacekeepers and protectors of the Soul Dew — a priceless treasure with a mysterious power.",2002-07-13,2.8042,6.7,359 +5124,19458,Princess Protection Program,"When her nation is invaded, a young princess is taken into the Princess Protection Program. She is relocated to Louisiana, where she stays with a covert agent and his tomboyish daughter, and must learn how to behave like an ordinary teenager.",2009-06-08,3.6209,6.655,1716 +5125,11455,Up in Smoke,"An unemployed pot-smoking slacker and amateur drummer, Anthony Stoner ditches his strict parents and hits the road, eventually meeting kindred spirit Pedro de Pacas. While the drug-ingesting duo is soon arrested for possession of marijuana, Anthony and Pedro get released on a technicality, allowing them to continue their many misadventures and ultimately compete in a rock band contest, where they perform the raucous tune ""Earache My Eye.""",1978-05-16,1.8482,6.655,596 +5126,11340,Banana Joe,"Island farmer Banana Joe helps the local community by trading his bananas for goods. When gangsters arrive with plans to construct a banana processing plant, Joe kicks them out, but the mob boss discovers that Joe is operating without a license. After the mob tips off the authorities and Joe's boat is impounded, he ventures into a big city for the first time to seek help.",1982-03-24,1.5853,6.655,466 +5127,9687,Keeping Mum,A pastor preoccupied with writing the perfect sermon fails to realize that his wife is having an affair and his children are up to no good.,2005-12-02,1.5332,6.655,580 +5128,823482,Dream Scenario,"Hapless family man Paul Matthews finds his life turned upside down when millions of strangers suddenly start seeing him in their dreams. But when his nighttime appearances take a nightmarish turn, Paul is forced to navigate his newfound stardom.",2023-11-10,2.6017,6.655,1093 +5129,81440,"Good Luck Charlie, It's Christmas!","Teddy Duncan's middle-class family embarks on a road trip from their home in Denver to visit Mrs. Duncans Parents, the Blankenhoopers, in Palm Springs. When they find themselves stranded between Denver and Utah, they try to hitch a ride to Las Vegas with a seemingly normal older couple in a station wagon from Roswell, New Mexico. It turns out that the couple believes they are the victims of alien abduction. The Duncan's must resort to purchasing a clunker Yugo to get to Utah, have their luggage stolen in Las Vegas, and survive a zany Christmas with Grandpa and Grandma Blankenhooper.",2011-12-02,1.8606,6.654,416 +5130,38368,Uncle Boonmee Who Can Recall His Past Lives,"Suffering from acute kidney failure, Boonmee has chosen to spend his final days surrounded by his loved ones in the countryside. Surprisingly, the ghost of his deceased wife appears to care for him, and his long lost son returns home in a non-human form. Contemplating the reasons for his illness, Boonmee treks through the jungle with his family to a mysterious hilltop cave—the birthplace of his first life.",2010-06-25,1.2402,6.7,396 +5131,10719,Elf,"When young Buddy falls into Santa's gift sack on Christmas Eve, he's transported back to the North Pole and raised as a toy-making elf by Santa's helpers. But as he grows into adulthood, he can't shake the nagging feeling that he doesn't belong. Buddy vows to visit Manhattan and find his real dad, a workaholic.",2003-11-07,4.1856,6.655,4238 +5132,6415,Three Kings,"A group of American soldiers stationed in Iraq at the end of the Gulf War find a map they believe will take them to a huge cache of stolen Kuwaiti gold hidden near their base, and they embark on a secret mission that's destined to change everything.",1999-09-27,2.6118,6.654,2139 +5133,839321,Return,"Polish animator Anna Błaszczyk’s humorous short—a collage of drawing, cut-out, and computer animation—was inspired by Stanisław Lem’s 1961 novel Return from the Stars, a time-paradox tale of an astronaut who returns to Earth after many years away.",2008-01-01,0.2514,6.7,582 +5134,615667,Ma Rainey's Black Bottom,Tensions rise when the trailblazing Mother of the Blues and her band gather at a Chicago recording studio in 1927. Adapted from August Wilson's play.,2020-11-25,2.7296,6.653,1201 +5135,360638,The Student and Mister Henri,"Because of his wavering health, Monsieur Henri can no longer live alone in his Paris appartment. Particularly grumpy, he ends up nonetheless accepting his son Paul's suggestion that he let one of his rooms out to a young female student. Far from falling for her charms, Henri uses her to orchestrate utter family chaos...",2015-10-07,1.3738,6.653,382 +5136,166426,Pirates of the Caribbean: Dead Men Tell No Tales,"Thrust into an all-new adventure, a down-on-his-luck Capt. Jack Sparrow feels the winds of ill-fortune blowing even more strongly when deadly ghost sailors led by his old nemesis, the evil Capt. Salazar, escape from the Devil's Triangle. Jack's only hope of survival lies in seeking out the legendary Trident of Poseidon, but to find it, he must forge an uneasy alliance with a brilliant and beautiful astronomer and a headstrong young man in the British navy.",2017-05-23,11.9315,6.653,12326 +5137,50544,Friends with Benefits,Dylan is done with relationships. Jamie decides to stop buying into the Hollywood clichés of true love. When the two become friends they decide to try something new and take advantage of their mutual attraction - but without any emotional attachment.,2011-07-21,5.8584,6.653,8115 +5138,8961,Bad Boys II,"Detectives Marcus Burnett and Mike Lowrey of the Miami Narcotics Task Force are tasked with stopping the flow of the drug Ecstasy into Miami. They track the drugs to the whacked-out Cuban drug lord Johnny Tapia, who is also involved in a bloody war with Russian and Haitian mobsters. If that isn't bad enough, there's tension between the two detectives when Marcus discovers that playboy Mike is secretly romancing Marcus’ sister, Syd.",2003-07-18,6.2047,6.7,5678 +5139,6522,Life,Two men in 1930s Mississippi become friends after being sentenced to life in prison together for a crime they did not commit.,1999-04-16,3.428,6.7,824 +5140,629017,Run Hide Fight,"A 17-year-old girl uses her wits, survival skills, and compassion to fight for her life, and those of her fellow classmates, against a group of live-streaming school shooters.",2021-06-17,1.6095,6.652,320 +5141,511817,Wendell & Wild,Two demon brothers enlist the aid of Kat Elliot — a tough teen with a load of guilt — to summon them to the Land of the Living. But what Kat demands in return leads to a brilliantly bizarre and comedic adventure like no other.,2022-10-21,1.3312,6.652,343 +5142,315872,Mia madre,"Margherita, a director in the middle of an existential crisis, has to deal with the inevitable and still unacceptable loss of her mother.",2015-04-16,0.8578,6.652,362 +5143,236737,Spanish Affair,"Rafael, a Seville citizen who has never left the Spanish region of Andalucia, decides to leave his homeland to follow Amaia, a Basque girl unlike other women he has known.",2014-03-14,1.0072,6.652,651 +5144,72432,Puncture,A lawyer who is a drug addict fights a medical-supplies corporation in court while battling his personal demons.,2011-09-23,1.2671,6.652,407 +5145,27995,She's Gotta Have It,"The story of Nola Darling's simultaneous sexual relationships with three different men is told by her and by her partners and other friends. All three men wanted her to commit solely to them; Nola resists being ""owned"" by a single partner.",1986-08-08,1.3237,6.7,339 +5146,1948,Crank,"Chev Chelios, a hit man wanting to go straight, lets his latest target slip away. Then he awakes the next morning to a phone call that informs him he has been poisoned and has only an hour to live unless he keeps adrenaline coursing through his body while he searches for an antidote.",2006-08-31,5.5706,6.652,3959 +5147,817648,Home Team,"Two years after a Super Bowl win when NFL head coach Sean Payton is suspended, he goes back to his hometown and finds himself reconnecting with his 12-year-old son by coaching his Pop Warner football team.",2022-01-28,1.9118,6.651,756 +5148,498402,Aline,"A fictionalized biopic of Aline Dieu, a multitalented singer from a musically inclined family.",2020-11-19,1.1242,6.7,372 +5149,474335,Uncle Drew,Uncle Drew recruits a squad of older basketball players to return to the court to compete in a tournament.,2018-06-27,2.2317,6.651,578 +5150,290512,The Mountain Between Us,"Stranded on a mountain after a tragic plane crash, two strangers must work together to endure the extreme elements of the remote, snow-covered terrain. When they realize help is not coming, they embark on a perilous journey across hundreds of miles of wilderness, pushing each other to survive and discovering their inner strength.",2017-10-05,3.3534,6.651,2453 +5151,287590,Saint Seiya: Legend of Sanctuary,"Mitsumasa Kido discovers a misterious baby in the himalayas whom he adopts as his grandaughter. 16 years later, Saori Kido is a young girl troubled by her mysterious powers. She is saved by Seiya from an assassin sent to kill her. Saori then learns she is the reincarnation of the Goddess Athena with Seiya being one of her Saints sworn to protect her. Upon learning of her destiny, she heads to the Sanctuary to rebel against the Pope's murderous plot.",2014-06-21,2.8052,6.7,704 +5152,13820,Repo Man,"A down and out young punk gets a job working with a seasoned repo man, but what awaits him in his new career is a series of outlandish adventures revolving around aliens, the CIA, and a most wanted '64 Chevy.",1984-03-02,2.1622,6.651,639 +5153,9613,Spider,"A mentally disturbed man takes residence in a halfway house. His mind gradually slips back into the realm created by his illness, where he replays a key part of his childhood.",2002-11-06,0.9966,6.7,887 +5154,9331,Clear and Present Danger,"Agent Jack Ryan becomes acting Deputy Director of Intelligence for the CIA when Admiral Greer is diagnosed with cancer. When an American businessman, and friend of the president, is murdered on his yacht, Ryan starts discovering links between the man and drug dealers. As former CIA agent John Clark is sent to Colombia to kill drug cartel kingpins in retaliation, Ryan must fight through multiple cover-ups to figure out what happened and who's responsible.",1994-08-03,3.6558,6.651,1575 +5155,7457,Alpha Dog,"Johnny Truelove likes to see himself as tough. He's the son of an underworld figure and a drug dealer. Johnny also likes to get tough when things don't go his way. When Jake Mazursky fails to pay up for Johnny, things get worse for the Mazursky family, as Johnny and his 'gang' kidnap Jake's 15 year old brother and holds him hostage. Problem now is what to do with 'stolen boy?'",2006-01-27,2.6794,6.651,1426 +5156,1016121,Beautiful Disaster,College freshman Abby tries to distance herself from her dark past while resisting her attraction to bad boy Travis.,2023-04-04,5.0118,6.65,842 +5157,87492,Foxcatcher,The greatest Olympic Wrestling Champion brother team joins Team Foxcatcher led by multimillionaire sponsor John E. du Pont as they train for the 1988 games in Seoul - a union that leads to unlikely circumstances.,2014-11-14,2.3897,6.65,2368 +5158,862968,Pain Hustlers,"After losing her job, a single mom falls into a lucrative but ultimately dangerous scheme selling prescription drugs.",2023-10-20,2.431,6.649,693 +5159,529485,The Way Back,"A former basketball all-star, who has lost his wife and family foundation in a struggle with addiction, attempts to regain his soul and salvation by becoming the coach of a disparate ethnically mixed high school basketball team at his alma mater.",2020-03-05,2.2326,6.6,1262 +5160,13291,Traitor,"When straight arrow FBI agent Roy Clayton heads up the investigation into a dangerous international conspiracy, all clues seem to lead back to former U.S. Special Operations officer Samir Horn.",2008-08-23,1.4705,6.649,662 +5161,11443,Dead Presidents,On the streets they call cash dead presidents. And that's just what a Vietnam veteran is after when he returns home from the war only to find himself drawn into a life of crime. With the aid of his fellow vets he plans the ultimate heist -- a daring robbery of an armored car filled with unmarked U.S. currency!,1995-09-29,1.639,6.649,302 +5162,9357,One Hour Photo,"Sy ""the photo guy"" Parrish has lovingly developed photos for the Yorkin family since their son was a baby. But as the Yorkins' lives become fuller, Sy's only seems lonelier, until he eventually believes he's part of their family. When ""Uncle"" Sy's picture-perfect fantasy collides with an ugly dose of reality, what happens next ""has the spine-tingling elements of the best psychological thrillers!""",2002-08-21,2.3671,6.649,1777 +5163,2110,Wasabi,"Hubert is a French policeman with very sharp methods. After being forced to take 2 months off by his boss, who doesn't share his view on working methods, he goes back to Japan, where he used to work 19 years ago, to settle the probate of his girlfriend who left him shortly after marriage without a trace.",2001-10-31,2.9526,6.649,1341 +5164,1369,Rambo: First Blood Part II,John Rambo is released from prison by the government for a top-secret covert mission to the last place on Earth he'd want to return - the jungles of Vietnam.,1985-05-21,8.3666,6.65,4083 +5165,66,Absolute Power,"A master thief coincidentally is robbing a house where a murder—in which the President of the United States is involved—occurs in front of his eyes. He is forced to run, while holding evidence that could convict the President.",1997-02-14,1.9886,6.649,1148 +5166,763285,Ambulance,"Decorated veteran Will Sharp, desperate for money to cover his wife's medical bills, asks for help from his adoptive brother Danny. A charismatic career criminal, Danny instead offers him a score: the biggest bank heist in Los Angeles history: $32 million.",2022-03-16,3.7336,6.648,2254 +5167,523773,Little Italy,Former childhood pals Leo and Nikki are attracted to each other as adults—but will their feuding parents' rival pizzerias put a chill on their sizzling romance?,2018-08-24,1.754,6.648,677 +5168,401200,Kursk,"Barents Sea, August 12th, 2000. During a Russian naval exercise, and after suffering a serious accident, the K-141 Kursk submarine sinks with 118 crew members on board. While the few sailors who are still alive barely manage to survive, their families push for accurate information and a British officer struggles to obtain from the Russian government a permit to attempt a rescue before it is late. But general incompetence are against all their efforts.",2018-11-07,4.3212,6.649,654 +5169,347866,Hot Summer Nights,"In 1991, a sheltered teenager comes of age during a wild summer on Cape Cod, getting rich from selling pot to gangsters, falling in love for the first time, partying, and eventually realizing that he's in way over his head.",2018-07-26,2.4721,6.648,768 +5170,10010,Brother Bear 2,"Kenai finds his childhood human friend Nita and the two embark on a journey to burn the amulet he gave to her before he was a bear, much to Koda's dismay.",2006-08-17,4.3008,6.648,1517 +5171,9283,Beautiful Girls,"During a snowy winter in the small fictional town of Knight's Ridge, Massachusetts, a group of lifelong buddies hang out, drink and struggle to connect with the women who affect their decisions, dreams and desires.",1996-02-09,1.38,6.6,374 +5172,1826,Russian Dolls,"Five years after their summer together in Barcelona, Xavier, William, Wendy, Martine and Isabelle reunite.",2005-06-15,1.5637,6.648,700 +5173,366672,Paws of Fury: The Legend of Hank,"A hard-on-his-luck hound finds himself in a town full of cats in need of a hero to defend them from a ruthless villain's wicked plot to wipe their village off the map. With help from a reluctant mentor, our underdog must assume the role of town samurai and team up with the villagers to save the day.",2022-07-14,3.3798,6.6,313 +5174,6964,Something's Gotta Give,"When perpetually single, aging music industry exec Harry Sanborn, and his latest trophy girlfriend, Marin, arrive at her mother's beach house in the Hamptons, they find that her mother, playwright Erica Barry, also plans to stay for the weekend. Erica is scandalized by the relationship and Harry's sexist ways. But when Harry has a heart attack while there, and the doctor prescribes bedrest, his only option is to stay at the Barry home. Left in the care of Erica and his doctor, a love triangle starts to take shape.",2003-12-12,3.3383,6.647,1653 +5175,474331,Keep an Eye Out,"Louis just found the corpse of a man in front of his apartment building. Taken in for custody by Captain Buron, he finds himself on the wrong end of a surreal interrogation. But how can you prove you are innocent when the cops are crazy?",2018-07-04,0.7216,6.6,621 +5176,330764,The Brand New Testament,"God lives in Brussels. On Earth though, God is a coward, morally pathetic and odious to his family. His daughter, Ea, is bored at home and can't stand being locked up in a small apartment in ordinary Brussels, until the day she decides to revolt against her dad...",2015-09-02,2.7549,6.646,1688 +5177,11541,The Year of Living Dangerously,"Australian journalist Guy Hamilton travels to Indonesia to cover civil strife in 1965. There—on the eve of an attempted coup—he befriends a Chinese Australian photographer with a deep connection to and vast knowledge of the Indonesian people, and also falls in love with a British national.",1982-12-17,1.2331,6.646,339 +5178,7859,Half Nelson,"Despite his dedication to the junior-high students who fill his classroom, idealistic teacher Dan Dunne leads a secret life of addiction that the majority of his students will never know. But things change when a troubled student Drey makes a startling discovery of his secret life, causing a tenuous bond between the two that could either end disastrously or provide a catalyst of hope.",2006-08-11,1.4968,6.6,892 +5179,5680,Elvira: Mistress of the Dark,"Arriving in the small town of Fallwell, Massachusetts to claim her inheritance, horror hostess Elvira receives a less than enthusiastic reception from the conservative locals -- amongst them, her sinister uncle Vincent, who, unbeknownst to her, is an evil warlock.",1988-09-30,2.3359,6.646,561 +5180,1576,Resident Evil,"When a virus leaks from a top-secret facility, turning all resident researchers into ravenous zombies and their lab animals into mutated hounds from hell, the government sends in an elite military task force to contain the outbreak.",2002-03-15,3.8866,6.646,6592 +5181,535167,The Wandering Earth,"When the Sun begins to expand in such a way that it will inevitably engulf and destroy the Earth in a hundred years, united mankind finds a way to avoid extinction by propelling the planet out of the Solar System using gigantic engines, moving it to a new home located four light years away, an epic journey that will last thousands of years.",2019-02-05,3.4253,6.649,1040 +5182,152747,All Is Lost,"During a solo voyage in the Indian Ocean, a veteran mariner awakes to find his vessel taking on water after a collision with a stray shipping container. With his radio and navigation equipment disabled, he sails unknowingly into a violent storm and barely escapes with his life. With any luck, the ocean currents may carry him into a shipping lane -- but, with supplies dwindling and the sharks circling, the sailor is forced to face his own mortality.",2013-08-23,2.3511,6.645,1657 +5183,39538,Contagion,"As an epidemic of a lethal airborne virus - that kills within days - rapidly grows, the worldwide medical community races to find a cure and control the panic that spreads faster than the virus itself.",2011-09-08,4.6114,6.644,6253 +5184,15356,The Girl Next Door,"In a quiet suburban town in the summer of 1958, two recently orphaned sisters are placed in the care of their mentally unstable Aunt Ruth. But Ruth's depraved sense of discipline will soon lead to unspeakable acts of abuse and torture that involve her young sons, the neighborhood children, and one 12-year-old boy whose life will be changed forever.",2007-07-19,3.3331,6.6,739 +5185,287,Bull Durham,"Veteran catcher Crash Davis is brought to the minor league Durham Bulls to help their up and coming pitching prospect, ""Nuke"" Laloosh. Their relationship gets off to a rocky start and is further complicated when baseball groupie Annie Savoy sets her sights on the two men.",1988-06-15,1.8834,6.645,611 +5186,267999,White God,"13 year old Lili fights to protect her dog Hagen, and is devastated when her father sets Hagen free on the streets. Still innocently believing love can conquer any difficulty, Lili sets out to save her dog. Failing in his desperate efforts to find his beloved owner, Hagen joins a canine revolt leading a revolution against their human abusers.",2014-06-12,1.0996,6.644,348 +5187,241848,The Guest,"A soldier introduces himself to the Peterson family, claiming to be a friend of their son who died in action. After the young man is welcomed into their home, a series of accidental deaths seem to be connected to his presence.",2014-09-05,4.137,6.644,2021 +5188,162215,How I Live Now,"An American girl, sent to the English countryside to stay with relatives, finds love and purpose while fighting for her survival as war envelops the world around her.",2013-09-10,1.4645,6.6,900 +5189,75780,Jack Reacher,"One morning in an ordinary town, five people are shot dead in a seemingly random attack. All evidence points to a single suspect: an ex-military sniper who is quickly brought into custody. The interrogation yields one written note: 'Get Jack Reacher!'. Reacher, an enigmatic ex-Army investigator, believes the authorities have the right man but agrees to help the sniper's defense attorney. However, the more Reacher delves into the case, the less clear-cut it appears. So begins an extraordinary chase for the truth, pitting Jack Reacher against an unexpected enemy, with a skill for violence and a secret to keep.",2012-12-20,7.2488,6.644,7257 +5190,589524,The Champion,"Christian is an extremely talented as well as unpredictable football player. After his latest screw-up, the president of his team decides to assign him a personal tutor, to help him in controlling his temper. Valerio is a shy and solitary professor, the exact opposite of the champion. Sparks will fly between the two at first, but soon their relationship will change both for the better.",2019-04-18,0.4254,6.643,391 +5191,298618,The Flash,"When his attempt to save his family inadvertently alters the future, Barry Allen becomes trapped in a reality in which General Zod has returned and there are no Super Heroes to turn to. In order to save the world that he is in and return to the future that he knows, Barry's only hope is to race for his life. But will making the ultimate sacrifice be enough to reset the universe?",2023-06-13,14.2636,6.643,4637 +5192,86825,Stoker,"After India's father dies in an auto accident, her uncle Charlie, who she never knew existed, comes to live with her and her emotionally unstable mother Evelyn. Soon after his arrival, she comes to suspect this mysterious, charming man has ulterior motives, but instead of feeling outrage or horror, this friendless girl becomes increasingly infatuated with him.",2013-02-28,2.5155,6.643,2299 +5193,27324,Pulse,"In the immense city of Tokyo, the darkness of the afterlife lures some of its inhabitants who are desperately trying to escape the sadness and isolation of the modern world.",2001-02-03,2.594,6.6,578 +5194,16418,Barbie Presents: Thumbelina,"Meet a tiny girl named Thumbelina who lives in harmony with nature in the magical world of the Twillerbees that's hidden among the wildflowers. At the whim of a spoiled young girl named Makena, Thumbelina and her two friends have their patch of wildflowers uprooted and are transported to a lavish apartment in the city.",2009-02-24,2.549,6.6,493 +5195,9093,The Four Feathers,"A young British officer resigns his post when he learns of his regiment's plan to ship out to the Sudan for the conflict with the Mahdi. His friends and fiancée send him four white feathers as symbols of what they view as his cowardice. To redeem his honor, he disguises himself as an Arab and secretly saves their lives.",2002-09-08,1.9967,6.6,562 +5196,542830,Little White Lies 2,"The result of the small handkerchiefs ""Petits mouchoirs"", 7 years later. The band, which erupted, is found on the occasion of the anniversary surprise organized for Max.",2019-05-01,1.3469,6.642,709 +5197,13768,Tuck Everlasting,"Teenager Winnie Foster is growing up in a small rural town in 1914 with her loving but overprotective parents, but Winnie longs for a life of greater freedom and adventure.",2002-10-11,1.92,6.642,478 +5198,9313,The Man in the Iron Mask,"Years have passed since the Three Musketeers, Aramis, Athos and Porthos, have fought together with their friend, D'Artagnan. But with the tyrannical King Louis using his power to wreak havoc in the kingdom while his twin brother, Philippe, remains imprisoned, the Musketeers reunite to abduct Louis and replace him with Philippe.",1998-03-12,4.0131,6.642,3945 +5199,513576,Always Be My Maybe,"Reunited after 15 years, famous chef Sasha and hometown musician Marcus feel the old sparks of attraction, but struggle to adapt to each other's worlds.",2019-05-31,1.9964,6.641,1357 +5200,507086,Jurassic World Dominion,"Four years after Isla Nublar was destroyed, dinosaurs now live—and hunt—alongside humans all over the world. This fragile balance will reshape the future and determine, once and for all, whether human beings are to remain the apex predators on a planet they now share with history's most fearsome creatures.",2022-06-01,30.8091,6.641,6580 +5201,23439,House of Usher,"Convinced that his family’s blood is tainted by generations of evil, Roderick Usher is hell-bent on destroying his sister Madeline’s wedding to prevent the cursed Usher bloodline from extending any further. When her fiancé, Philip Winthrop, arrives at the crumbling family estate to claim his bride, Roderick goes to ruthless lengths to keep them apart.",1960-07-20,1.1957,6.641,329 +5202,22794,Cloudy with a Chance of Meatballs,"Inventor Flint Lockwood creates a machine that makes clouds rain food, enabling the down-and-out citizens of Chewandswallow to feed themselves. But when the falling food reaches gargantuan proportions, Flint must scramble to avert disaster. Can he regain control of the machine and put an end to the wild weather before the town is destroyed?",2009-09-17,6.0524,6.641,6160 +5203,2059,National Treasure,"Modern treasure hunters, led by archaeologist Ben Gates, search for a chest of riches rumored to have been stashed away by George Washington, Thomas Jefferson and Benjamin Franklin during the Revolutionary War. The chest's whereabouts may lie in secret clues embedded in the Constitution and the Declaration of Independence, and Gates is in a race to find the gold before his enemies do.",2004-11-19,5.26,6.641,6530 +5204,940139,Here,"An odyssey through time and memory, centered on a place in New Jersey where—from wilderness, and then, later, from a home—love, loss, struggle, hope and legacy play out between couples and families over generations.",2024-10-30,3.7135,6.64,501 +5205,873126,My Name Is Vendetta,"After old enemies kill his family, a former mafia enforcer and his feisty daughter flee to Milan, where they hide out while plotting their revenge.",2022-11-30,3.2976,6.641,623 +5206,733668,Return,"Eyüp decides to cross mount Ararat looking for his aunt in Yerevan after following a madman's words. His aunt has also been expecting someone to come from behind this mount for many years. Eyüp cannot be sure about the woman he finds behind the blue door, whether it is his aunt or not because they can't understand each other.",,0.2057,6.64,422 +5207,552688,The Mother,"A deadly female assassin comes out of hiding to protect the daughter that she gave up years before, while on the run from dangerous men.",2023-05-04,3.4493,6.6,1331 +5208,10158,White Men Can't Jump,"Two street basketball hustlers try to con each other, then team up for a bigger score.",1992-03-27,1.9686,6.6,1412 +5209,4437,2010,"While planet Earth poises on the brink of nuclear self-destruction, a team of Russian and American scientists aboard the Leonov hurtles to a rendezvous with the still-orbiting Discovery spacecraft and its sole known survivor, the homicidal computer HAL.",1984-12-06,2.9647,6.6,987 +5210,2621,Return to Me,"It took a lot of cajoling to get Bob, a recently widowed architect, to go on a blind date at a quirky Irish-Italian eatery. Once there, he's smitten instantly not with his date but with the sharp-witted waitress. Everything seems to be going great until an unbelievable truth is revealed, one that could easily break both of their hearts for good.",2000-04-07,2.2525,6.64,450 +5211,338953,Fantastic Beasts: The Secrets of Dumbledore,"Professor Albus Dumbledore knows the powerful, dark wizard Gellert Grindelwald is moving to seize control of the wizarding world. Unable to stop him alone, he entrusts magizoologist Newt Scamander to lead an intrepid team of wizards and witches. They soon encounter an array of old and new beasts as they clash with Grindelwald's growing legion of followers.",2022-04-06,10.1285,6.639,4783 +5212,10189,Pineapple Express,A stoner and his dealer are forced to go on the run from the police after the pothead witnesses a cop commit a murder.,2008-08-06,3.3251,6.638,3960 +5213,97,Tron,"When brilliant video game maker Flynn hacks the mainframe of his ex-employer, he is beamed inside an astonishing digital world...And becomes part of the very game he is designing. In his mission through cyberspace, Flynn matches wits with a maniacal Master Control Program and teams up with Tron, a security measure created to bring balance to the digital environment.",1982-07-09,6.7879,6.64,2425 +5214,597891,Kate,A ruthless criminal operative has less than 24 hours to exact revenge on her enemies and in the process forms an unexpected bond with the daughter of one of her past victims.,2021-09-10,1.8334,6.638,1590 +5215,464446,Return,"A young man returns home for the weekend to discover the difficulty of juggling friends, parents, magic mushrooms and several thousand chickens.",2015-07-04,0.3064,6.638,629 +5216,22970,The Cabin in the Woods,A group of teens journey to a remote cabin in the woods where their fate is unknowingly controlled by technicians as part of a worldwide conspiracy where all horror movie clichés are revealed to be part of an elaborate sacrifice ritual.,2012-04-12,6.0655,6.638,8123 +5217,11135,The Rescuers Down Under,"A lawless poacher wants to capture a majestic and rare golden eagle, so he kidnaps the boy who knows where to find the bird. Not to worry -- the Rescue Aid Society's top agents, heroic mice Miss Bianca and Bernard, fly to Australia to save the day. Accompanying the fearless duo are bumbling albatross Wilbur and local field operative Jake the Kangaroo Rat.",1990-11-16,0.981,6.638,1333 +5218,16340,Rugrats in Paris: The Movie,"A group of rambunctious toddlers travel a trip to Paris. As they journey from the Eiffel Tower to Notre Dame, they learn new lessons about trust, loyalty and love.",2000-11-17,2.4669,6.637,467 +5219,4780,Obsession,A wealthy New Orleans businessman becomes obsessed with a young woman who resembles his late wife.,1976-08-01,1.6259,6.6,302 +5220,3179,Beavis and Butt-Head Do America,"Slacker duo Beavis and Butt-Head wake to discover their TV has been stolen. Their search for a new one takes them on a clueless adventure across America, during which they manage to accidentally become America's most wanted.",1996-12-20,2.717,6.637,730 +5221,2897,Around the World in Eighty Days,"Based on the famous book by Jules Verne the movie follows Phileas Fogg on his journey around the world. Which has to be completed within 80 days, a very short period for those days.",1956-10-17,2.949,6.6,533 +5222,615904,Marry Me,"After finding out about her fiancé's cheating ways, a pop superstar impulsively marries a total stranger. They must soon decide if two people from such different worlds can find true love.",2022-02-09,2.813,6.636,1051 +5223,599845,The Immortal,"After reuniting with his first mentor Bruno and receiving his latest mission, an exiled Ciro is left to fearlessly confront whatever comes his way, navigating a new chapter of gang warfare while grappling with devastating memories of loss and trauma. Weaving between his past as an orphan in Naples' cruel underworld and present as a hardened, cunning assassin with nothing left to lose, Ciro is plunged into the cold, dark depths of a world where immortality is just another form of damnation.",2019-12-05,1.1602,6.636,483 +5224,499701,Dora and the Lost City of Gold,"Dora, a girl who has spent most of her life exploring the jungle with her parents, now must navigate her most dangerous adventure yet: high school. Always the explorer, Dora quickly finds herself leading Boots (her best friend, a monkey), Diego, and a rag tag group of teens on an adventure to save her parents and solve the impossible mystery behind a lost Inca civilization.",2019-08-08,5.6721,6.6,1773 +5225,363992,The Wizard of Lies,"A look behind the scenes at Bernie Madoff's massive Ponzi scheme, how it was perpetrated on the public and the trail of destruction it left in its wake, both for the victims and Madoff's family.",2017-05-11,2.2924,6.636,604 +5226,340101,Their Finest,"During the Blitz of World War II, a female screenwriter works on a film celebrating England's resilience as a way to buoy a weary populace's spirits. Her efforts to dramatise the true story of two sisters who undertook their own maritime mission to rescue wounded soldiers are met with mixed feelings by a dismissive all-male staff.",2017-02-19,1.5303,6.636,424 +5227,11372,The Eagle Has Landed,"When the Nazi high command learns in late 1943 that Winston Churchill will be spending time at a country estate in Norfolk, it hatches an audacious scheme to kidnap the prime minister and spirit him to Germany for enforced negotiations with Hitler.",1976-12-24,2.2556,6.636,350 +5228,8467,Dumb and Dumber,"Lloyd and Harry are two men whose stupidity is really indescribable. When Mary, a beautiful woman, loses an important suitcase with money before she leaves for Aspen, the two friends (who have found the suitcase) decide to return it to her. After some ""adventures"" they finally get to Aspen where, using the lost money they live it up and fight for Mary's heart.",1994-12-16,6.6655,6.636,6354 +5229,618162,The Harder They Fall,"Gunning for revenge, outlaw Nat Love saddles up with his gang to take down enemy Rufus Buck, a ruthless crime boss who just got sprung from prison.",2021-10-22,1.8214,6.635,1115 +5230,484247,A Simple Favor,"Stephanie, a dedicated mother and popular vlogger, befriends Emily, a mysterious upper-class woman whose son Nicky attends the same school as Miles, Stephanie's son. When Emily asks her to pick Nicky up from school and then disappears, Stephanie undertakes an investigation that will dive deep into Emily's cloudy past.",2018-09-13,4.045,6.635,4397 +5231,390062,Jungle,"In 1981, an enthusiastic young adventurer follows his dreams into the Bolivian Amazon jungle with two friends and a guide with a mysterious past. Their journey quickly turns into a terrifying ordeal as the darkest elements of human nature and the deadliest threats of the wilderness lead to an all-out fight for survival.",2017-06-27,3.5762,6.635,2026 +5232,244772,The Skeleton Twins,"Estranged twins Maggie and Milo coincidentally cheat death on the same day, prompting them to reunite and confront the reasons their lives went so wrong. As the twins' reunion reinvigorates them, they realize the key to fixing their lives may just lie in repairing their relationship.",2014-06-05,2.6932,6.635,657 +5233,177699,Alan Partridge: Alpha Papa,"When famous DJ Alan Partridge’s radio station is taken over by a new media conglomerate, it sets in motion a chain of events which see Alan having to work with the police to defuse a potentially violent siege.",2013-07-24,1.1225,6.635,466 +5234,136799,Trolls,"After the monstrous Bergens invade Troll Village, Princess Poppy, the happiest Troll ever born, and overly-cautious, curmudgeonly outcast Branch set off on a journey to rescue her friends. Their mission is full of adventure and mishaps, as this mismatched duo try to tolerate each other long enough to get the job done.",2016-10-13,6.9459,6.6,3682 +5235,62835,Colombiana,"After witnessing her parents’ murder as a child in Bogota, Cataleya Restrepo grows up to be a stone-cold assassin. She works for her uncle as a hitman by day, but her personal time is spent engaging in vigilante murders that she hopes will lead her to her ultimate target: the mobster responsible for her parents' death.",2011-07-27,8.9892,6.6,2700 +5236,12155,Alice in Wonderland,"Alice, now 19 years old, returns to the whimsical world she first entered as a child and embarks on a journey to discover her true destiny.",2010-03-03,10.8577,6.635,14331 +5237,1266,Street Kings,"Tom Ludlow is a disillusioned L.A. Police Officer, rarely playing by the rules and haunted by the death of his wife. When evidence implicates him in the execution of a fellow officer, he is forced to go up against the cop culture he's been a part of his entire career, ultimately leading him to question the loyalties of everyone around him.",2008-04-10,2.4519,6.635,1567 +5238,575428,The Wild Goose Lake,"A gangster ends up making a mistake that causes every gun on both sides of the law to point at him. While on the run, he comes across a mysterious woman who might get him out of trouble or make things worse.",2019-12-06,1.0094,6.634,347 +5239,417812,Wildlife,"14-year-old Joe is the only child of Jeanette and Jerry — a housewife and a golf pro — in a small town in 1960s Montana. Nearby, an uncontrolled forest fire rages close to the Canadian border, and when Jerry loses his job (and his sense of purpose) he decides to join the cause of fighting the fire, leaving his wife and son to fend for themselves.",2018-09-23,1.7917,6.6,744 +5240,180894,Ninja: Shadow of a Tear,"Fight everyone and trust no one: it's the code of survival practiced by martial-arts master Casey Bowman after his life of domestic bliss is shattered by a savage act of violence. Vowing revenge, the fearless American stealthily tracks the killer from Osaka to Bangkok to Rangoon with the help of a wise and crafty sensei. His only clues: a series of victims whose necks bear the distinctive mark of strangulation by barbed wire. Fighting to avenge as well as to survive, Casey must sharpen his razor-like responses and take his battle skills to the next level, even using deep meditation to fake his own death. His target: the sinister drug lord Goro, who is flooding the streets with deadly meth cooked at his remote jungle factory. To prepare for his ultimate confrontation, Casey must finally become an invisible warrior worthy of the name Ninja. But just when his prey is cornered, an unexpected twist shows Casey that his battle is only beginning: he truly can trust no one.",2013-12-27,2.8521,6.6,398 +5241,49521,Man of Steel,"A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.",2013-06-12,14.9898,6.634,15571 +5242,2605,Short Circuit,"After a lightning bolt zaps a robot named Number 5, the lovable machine starts to think he's human and escapes the lab. Hot on his trail is his designer, Newton, who hopes to get to Number 5 before the military does. In the meantime, a spunky animal lover mistakes the robot for an alien and takes him in, teaching her new guest about life on Earth.",1986-05-09,2.3155,6.6,1534 +5243,814757,Empire of Light,"The duty manager of a seaside cinema, who is struggling with her mental health, forms a relationship with a new employee on the south coast of England in the 1980s.",2022-12-09,1.777,6.633,577 +5244,433252,Our Souls at Night,"Addie Moore and Louis Waters, a widow and widower, have lived next to each other for years. The pair have almost no relationship, but that all changes when Addie tries to make a connection with her neighbour.",2017-09-29,1.1515,6.6,443 +5245,59860,Monte Carlo,Three young women vacationing in Paris find themselves whisked away to Monte Carlo after one of the girls is mistaken for a British heiress.,2011-07-01,4.198,6.633,2166 +5246,13531,Empire Records,The employees of an independent music store learn about each other as they try to stop the store from being absorbed by a large chain.,1995-09-22,2.283,6.633,743 +5247,3877,Things We Lost in the Fire,"A recent widow invites her husband's troubled best friend to live with her and her two children. As he gradually turns his life around, he helps the family cope and confront their loss.",2007-09-26,1.4246,6.633,365 +5248,668640,Official Competition,"When a billionaire entrepreneur impulsively decides to create an iconic movie, he demands the best. Renowned filmmaker Lola Cuevas is recruited to mastermind this ambitious endeavour. Completing the all-star team are two actors with massive talent but even bigger egos: Hollywood heartthrob Félix Rivero and radical theatre actor Iván Torres. Both are legends, but not exactly best friends. Through a series of increasingly eccentric trials set by Lola, Félix and Iván must confront not only each other but also their own legacies. Who will be left when the cameras finally start rolling?",2021-09-04,2.0653,6.6,405 +5249,320367,Return,"A tale of terror. Cathy Reed has been institutionalized most of her life because of Schizophrenia, as a child her parents thought she was possessed by demons and had her exercised by priests. Medical science saw different. Now decades later Cathy is freed, relocated to her own flat and given a chance to be independent. Once alone things are not what they all seem and when her nightmares turn real she questions her state of mind before she is left to face her demons.",2015-01-01,0.5417,6.632,1177 +5250,241855,Spring,"A young man in a personal tailspin flees the US to Italy, where he sparks up a romance with a woman harboring a dark, primordial secret.",2014-10-08,1.808,6.632,729 +5251,17609,Antichrist,"A grieving couple retreats to their cabin 'Eden' in the woods, hoping to repair their broken hearts and troubled marriage. But nature takes its course and things go from bad to worse.",2009-05-20,4.9716,6.632,2672 +5252,12113,Body of Lies,"The CIA’s hunt is on for the mastermind of a wave of terrorist attacks. Roger Ferris is the agency’s man on the ground, moving from place to place, scrambling to stay ahead of ever-shifting events. An eye in the sky – a satellite link – watches Ferris. At the other end of that real-time link is the CIA’s Ed Hoffman, strategizing events from thousands of miles away. And as Ferris nears the target, he discovers trust can be just as dangerous as it is necessary for survival.",2008-10-09,3.1364,6.6,3134 +5253,10133,Cypher,"An unsuspecting, disenchanted man finds himself working as a spy in the dangerous, high-stakes world of corporate espionage. Quickly getting way over-his-head, he teams up with a mysterious femme fatale.",2002-10-01,1.8319,6.632,591 +5254,9585,Not Without My Daughter,"An American woman, trapped in Islamic Iran by her brutish husband, must find a way to escape with her daughter as well.",1991-01-11,3.0587,6.632,311 +5255,3573,Emma,"Emma Woodhouse is a congenial young lady who delights in meddling in other people’s affairs. She is perpetually trying to unite men and women who are utterly wrong for each other. Despite her interest in romance, Emma is clueless about her own feelings, and her relationship with gentle Mr. Knightley.",1996-08-02,2.3185,6.6,638 +5256,238636,The Purge: Anarchy,"One night per year, the government sanctions a 12-hour period in which citizens can commit any crime they wish -- including murder -- without fear of punishment or imprisonment. Leo, a sergeant who lost his son, plans a vigilante mission of revenge during the mayhem. However, instead of a death-dealing avenger, he becomes the unexpected protector of four innocent strangers who desperately need his help if they are to survive the night.",2014-07-17,6.5789,6.631,6511 +5257,177494,Veronica Mars,"Years after walking away from her past as a teenage private eye, Veronica Mars gets pulled back to her hometown - just in time for her high school reunion - in order to help her old flame Logan Echolls, who's embroiled in a murder mystery.",2014-03-13,1.3163,6.631,1100 +5258,9442,Dead Men Don't Wear Plaid,"Juliet Forrest is convinced that the reported death of her father in a mountain car crash was no accident. Her father was a prominent cheese scientist working on a secret recipe. To prove it was murder, she enlists the services of private eye Rigby Reardon. He finds a slip of paper containing a list of people who are 'The Friends and Enemies of Carlotta'.",1982-05-21,1.498,6.631,409 +5259,720755,The Kid Detective,"A once-celebrated kid detective, now 31, continues to solve the same trivial mysteries between hangovers and bouts of self-pity. Until a naive client brings him his first 'adult' case, to find out who brutally murdered her boyfriend.",2020-10-16,1.1064,6.63,436 +5260,616651,Stillwater,"Bill Baker, an American oil-rig roughneck from Oklahoma, travels to Marseille to visit his estranged daughter, Allison, who is in prison for a murder she claims she did not commit. Confronted with language barriers, cultural differences, and a complicated legal system, Bill builds a new life for himself in France as he makes it his personal mission to exonerate his daughter.",2021-07-29,2.5649,6.63,1312 +5261,577242,Kaamelott: The First Chapter,"Following the end of the acclaimed tv series, King Arthur will oppose Lancelot's army to get the throne back after his flee to Rome.",2021-07-21,1.1261,6.63,702 +5262,339964,Valerian and the City of a Thousand Planets,"In the 28th century, Valerian and Laureline are special operatives charged with keeping order throughout the human territories. On assignment from the Minister of Defense, the two undertake a mission to Alpha, an ever-expanding metropolis where species from across the universe have converged over centuries to share knowledge, intelligence, and cultures. At the center of Alpha is a mysterious dark force which threatens the peaceful existence of the City of a Thousand Planets, and Valerian and Laureline must race to identify the menace and safeguard not just Alpha, but the future of the universe.",2017-07-19,6.2454,6.63,7681 +5263,245775,Yves Saint Laurent,"A look at the life of French designer Yves Saint Laurent from the beginning of his career in 1958 when he met his lover and business partner, Pierre Berge.",2014-01-08,1.4975,6.63,900 +5264,184341,Hands of Stone,The legendary Roberto Duran and his equally legendary trainer Ray Arcel change each other's lives.,2016-08-26,2.1757,6.63,431 +5265,46655,The Little Bather,"Louis-Philippe Fourchaume, another typical lead-role for French comedy superstar Louis de Funès, is the dictatorial CEO of a French company which designs and produces sail yachts, and fires in yet another tantrum his designer André Castagnier, not realizing that man is his only chance to land a vital contract with the Italian magnate Marcello Cacciaperotti. So he has to find him at his extremely rural birthplace in 'la France profonde', which proves a torturous odyssey for the spoiled rich man; when he does get there his torment is far from over: the country bumpkin refuses to resume his slavish position now the shoe is on the other foot, so Fourchaume is dragged along in the boorish family life, and at times unable to control his temper, which may cost him more credit then he painstakingly builds up...",1968-03-22,1.2,6.63,372 +5266,18415,Gummo,"Solomon and Tummler are two teenagers killing time in Xenia, Ohio, a small town that has never recovered from the tornado that ravaged the community in the 1970s.",1997-10-17,1.6319,6.6,664 +5267,16395,Inferno,A young man returns from Rome to his sister's satanic New York apartment house.,1980-02-07,1.3102,6.63,633 +5268,9529,Candyman,"The Candyman, a murderous soul with a hook for a hand, is accidentally summoned to reality by a skeptic grad student researching the monster's myth.",1992-10-16,3.305,6.63,1678 +5269,8827,99 Francs,"Paris, France, 2001. Octave Parango, a young advertiser working at the Ross & Witchcraft advertising agency, lives a suicidal existence, ruled by cynicism, irresponsibility and debauchery. The obstacles he will encounter in developing a campaign for a new yogurt brand will force him to face the meaning of his work and the way he manages his relationship with those who orbit around his egotistic lifestyle.",2007-09-26,2.1769,6.63,753 +5270,242042,Barefoot,"The ""black sheep"" son of a wealthy family meets a young psychiatric patient who's been raised in isolation her entire life. He takes the naive young woman home for his brother's wedding an improbable romance blooms, as she impresses everyone with her genuine, simple charms.",2014-02-02,4.0891,6.629,646 +5271,41211,Heartbreaker,Alex and his sister run a business designed to break up relationships. They are hired by a rich man to break up the wedding of his daughter. The only problem is that they only have one week to do so.,2010-03-17,1.4958,6.629,1366 +5272,26388,Buried,Paul is a U.S. truck driver working in Iraq. After an attack by a group of Iraqis he wakes to find he is buried alive inside a coffin. With only a lighter and a cell phone it's a race against time to escape this claustrophobic death trap.,2010-09-24,2.5409,6.629,2890 +5273,10952,New Jack City,"A gangster, Nino, is in the Cash Money Brothers, making a million dollars every week selling crack. A cop, Scotty, discovers that the only way to infiltrate the gang is to become a dealer himself.",1991-03-08,2.0553,6.629,556 +5274,578701,Those Who Wish Me Dead,"A young boy finds himself pursued by two assassins in the Montana wilderness, with a survival expert determined to protect him, and a forest fire threatening to consume them all.",2021-05-05,5.8272,6.628,1715 +5275,417466,Monos,"On a faraway mountaintop, eight kids with guns watch over a hostage and a conscripted milk cow.",2019-08-15,0.99,6.628,409 +5276,11300,Something Wild,"A free-spirited woman ""kidnaps"" a yuppie for a weekend of adventure. But the fun quickly takes a dangerous turn when her ex-con husband shows up.",1986-11-07,1.2884,6.628,364 +5277,9532,Final Destination,"After a teenager has a terrifying vision of him and his friends dying in a plane crash, he prevents the accident only to have Death hunt them down, one by one.",2000-03-17,13.9287,6.628,6231 +5278,8913,Pet Sematary,"After the Creed family's cat is accidentally killed, a friendly neighbor advises its burial in a mysterious nearby cemetery.",1989-04-21,4.548,6.628,2255 +5279,1571,Live Free or Die Hard,"John McClane is back and badder than ever, and this time he calls on the services of a young hacker in his bid to stop a ring of Internet terrorists intent on taking control of America's computer infrastructure.",2007-06-20,6.0521,6.629,6043 +5280,9532,Final Destination,"After a teenager has a terrifying vision of him and his friends dying in a plane crash, he prevents the accident only to have Death hunt them down, one by one.",2000-03-17,13.9287,6.628,6231 +5281,8913,Pet Sematary,"After the Creed family's cat is accidentally killed, a friendly neighbor advises its burial in a mysterious nearby cemetery.",1989-04-21,4.548,6.628,2255 +5282,513045,Stuber,"After crashing his car, a cop who's recovering from eye surgery recruits an Uber driver to help him catch a heroin dealer. The mismatched pair soon find themselves in for a wild day of stakeouts and shootouts as they encounter the city's seedy side.",2019-07-11,2.1665,6.627,1340 +5283,416186,Godard Mon Amour,"In 1967, during the making of “La Chinoise,” film director Jean-Luc Godard falls in love with 19-year-old actress Anne Wiazemsky and marries her.",2017-06-24,1.4934,6.6,359 +5284,514847,The Hunt,"Twelve strangers wake up in a clearing. They don't know where they are—or how they got there. In the shadow of a dark internet conspiracy theory, ruthless elitists gather at a remote location to hunt humans for sport. But their master plan is about to be derailed when one of the hunted turns the tables on her pursuers.",2020-03-11,5.5133,6.626,3393 +5285,334524,Gold,"Kenny Wells, a modern-day prospector, hustler, and dreamer, is desperate for a lucky break. Left with few options, Wells teams up with an equally luckless geologist to execute a grandiose, last-ditch effort: to find gold deep in the uncharted jungle of Indonesia.",2016-02-03,2.5698,6.626,1676 +5286,244539,Infinitely Polar Bear,"A manic-depressive mess of a father tries to win back his wife by attempting to take full responsibility of their two young, spirited daughters, who don't make the overwhelming task any easier.",2014-01-18,1.8869,6.626,378 +5287,15742,Taxidermia,"Grotesquely surreal offering charting three male generations of the same bizarre family, including a pervert who constantly seeks for new kinds of satisfaction, an obese speed eater, and a passionate embalmer.",2006-08-23,1.6604,6.626,325 +5288,9913,The Skeleton Key,A hospice nurse working at a spooky New Orleans plantation home finds herself entangled in a mystery involving the house's dark past.,2005-07-29,4.1265,6.626,2155 +5289,660833,Multiverse,Four brilliant university students are forced to confront themselves in terrifying ways when their Quantum Physics experiment leads to an entangled parallel existence that leaves them questioning who they are and what is real.,2021-11-12,0.6544,6.624,336 +5290,532938,The Shiny Shrimps,"Matthias Le Goff, an Olympic champion at the end of his career, makes a homophobic statement on TV. His punishment: coach the Shiny Shrimps, a flamboyant and amateur gay water-polo team. They have only one thing in mind: to qualify for the Gay Games in Croatia where the hottest international LGBT athletes compete. It's the start of a bumpy and joyful ride - Faster, Higher, Stronger.",2019-05-08,0.8657,6.624,441 +5291,239678,This Is Where I Leave You,"When their father passes away, four grown, world-weary siblings return to their childhood home and are requested -- with an admonition -- to stay there together for a week, along with their free-speaking mother and a collection of spouses, exes and might-have-beens. As the brothers and sisters re-examine their shared history and the status of each tattered relationship among those who know and love them best, they reconnect in hysterically funny and emotionally significant ways.",2014-09-10,3.2379,6.624,1387 +5292,27936,Micmacs,"While standing in the doorway of the video shop where he works, Bazil is inadvertently shot in the head. Now homeless and jobless, he is taken in by a troupe of misfits who live in a giant mound of trash. There Bazil begins his quest for revenge against the people who produced the gun that shot him.",2009-10-28,1.5209,6.6,616 +5293,38718,Reversal of Fortune,"Wealthy Sunny von Bülow lies brain-dead, husband Claus guilty of attempted murder; but he says he's innocent and hires Alan Dershowitz for his appeal.",1990-10-19,2.8335,6.6,329 +5294,12151,Ruthless People,"Sam Stone hates his wife Barbara so much that he wants her dead. He's ecstatic when she's taken by a duo of kidnappers who want $500,000 ransom in exchange for her life. Fully intending to ignore every one of the kidnappers' demands in the hopes that they do him a favor and murder her for him, the two confused kidnappers have to figure out how they're going get their money, and what they're going to do with the overbearing Barbara.",1986-06-26,1.5176,6.6,415 +5295,11184,Kinsey,"Kinsey is a portrait of researcher Alfred Kinsey, driven to uncover the most private secrets of a nation. What begins for Kinsey as a scientific endeavor soon takes on an intensely personal relevance, ultimately becoming an unexpected journey into the mystery of human behavior.",2004-09-04,1.6901,6.623,485 +5296,10328,Cocoon,"When a group of trespassing seniors swim in a pool containing alien cocoons, they find themselves energized with youthful vigor.",1985-06-21,2.3593,6.623,1331 +5297,1063879,Infested,"Residents of a rundown French apartment building battle against an army of deadly, rapidly reproducing spiders.",2023-12-27,1.8403,6.622,496 +5298,68727,Trance,A violent gang enlists the help of a hypnotherapist in an attempt to locate a painting which somehow vanished in the middle of a heist.,2013-03-27,2.2536,6.622,2237 +5299,10155,U Turn,"When a desperate man’s car breaks down in a bizarre desert town while evading vengeful bookies, he becomes entangled in a dangerous love triangle. Caught between a married couple, he’s faced with deadly contracts to kill them both.",1997-10-03,1.7871,6.622,762 +5300,445793,Husband & Wife,"Married for ten years, in full crisis, thinking about divorce. But following a failed scientific experiment, they suddenly find one inside the body of the other.",2017-04-13,1.0022,6.621,343 +5301,2454,The Chronicles of Narnia: Prince Caspian,"One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now, with the help of a colorful cast of new characters, including Trufflehunter the badger and Nikabrik the dwarf, the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.",2008-05-15,7.4797,6.621,6525 +5302,555850,The Holiday Calendar,A talented photographer stuck in a dead-end job inherits an antique Advent calendar that may be predicting the future -- and pointing her toward love.,2018-11-02,0.8978,6.62,1026 +5303,431819,Fireworks,"Moshimo, Japan. The annual fireworks festival is about to take place and a group of schoolboys, arguing over whether they are round or flat when viewed from different angles, set out to find it out.",2017-08-18,1.8206,6.6,347 +5304,172803,Hours,A father struggles to keep his infant daughter alive in the wake of Hurricane Katrina.,2013-12-04,1.4386,6.62,759 +5305,80321,Madagascar 3: Europe's Most Wanted,"Animal pals Alex, Marty, Melman, and Gloria are still trying to make it back to New York's Central Park Zoo. They are forced to take a detour to Europe to find the penguins and chimps who broke the bank at a Monte Carlo casino. When French animal-control officer Capitaine Chantel DuBois picks up their scent, Alex and company are forced to hide out in a traveling circus.",2012-06-06,8.1518,6.619,6326 +5306,10664,[REC]²,"The action continues from [REC], with the medical officer and a SWAT team outfitted with video cameras are sent into the sealed off apartment to control the situation.",2009-09-15,1.7974,6.619,2072 +5307,10176,The Quiet Earth,"After a top-secret experiment misfires, a scientist may be the only man left alive in the world.",1985-09-08,1.6303,6.619,564 +5308,852046,Athena,"Hours after the tragic death of their youngest brother in unexplained circumstances, three siblings have their lives thrown into chaos.",2022-09-09,2.9407,6.618,765 +5309,626412,Alienoid: Return to the Future,"Ean has a critical mission to return to the future to save everyone. However, she becomes trapped in the distant past while trying to prevent the escape of alien prisoners who are locked up in the bodies of humans. Meanwhile, Muruk, who helps Ean escape various predicaments, is unnerved when he begins sensing the presence of a strange being in his body. Traveling through the centuries, they are trying to prevent the explosion of the haava.",2024-01-10,3.9822,6.618,809 +5310,136403,Populaire,An insurance agent and his new secretary become locked in the grip of romance and competition as they train together for a speed-typing contest.,2012-11-27,1.3973,6.618,581 +5311,44865,The Grandmaster,"Ip Man's peaceful life in Foshan changes after Gong Yutian seeks an heir for his family in Southern China. Ip Man then meets Gong Er who challenges him for the sake of regaining her family's honor. After the Second Sino-Japanese War, Ip Man moves to Hong Kong and struggles to provide for his family. In the mean time, Gong Er chooses the path of vengeance after her father was killed by Ma San.",2013-01-10,2.7953,6.618,914 +5312,33408,The Crush,A precocious and obsessive teenager develops a crush on a naive writer with harrowing consequences.,1993-04-02,2.4454,6.618,516 +5313,11884,The Last Starfighter,"Video game expert Alex Rogan finds himself transported to another planet after conquering the video game The Last Starfighter, only to find out it was just a test. He was recruited to join the team of best Starfighters to defend their world from the attack.",1984-07-13,2.0134,6.618,718 +5314,1729,The Forbidden Kingdom,"An American teenager who is obsessed with Hong Kong cinema and kung-fu classics makes an extraordinary discovery in a Chinatown pawnshop: the legendary stick weapon of the Chinese sage and warrior, the Monkey King. With the lost relic in hand, the teenager unexpectedly finds himself travelling back to ancient China to join a crew of warriors from martial arts lore on a dangerous quest to free the imprisoned Monkey King.",2008-04-17,3.9417,6.618,1782 +5315,39100,Dragon Ball Z: The World's Strongest,"The evil Dr. Kochin uses the dragon balls to resurrect his mentor, Dr. Wheelo, in an effort to take over the world. Dr. Wheelo, his body having been destroyed by the avalanche that killed him fifty years before, desires the body of the strongest fighter in the world as his new vessel. Believing Roshi to be the world's strongest warrior, Dr. Kochin abducts Bulma and forces Roshi to surrender himself to save her. When Goku hears of their abduction, he goes to their rescue.",1990-03-10,3.7489,6.6,525 +5316,27958,Cruising,"When New York is caught in the grip of a sadistic serial killer who preys on patrons of the city's underground bars, young rookie Steve Burns infiltrates the S&M subculture to try and lure him out of the shadows.",1980-02-15,1.5562,6.6,573 +5317,10183,Frozen River,"After her husband deserts her, working-class mother Ray Eddy is in great need of money to find a home. Lured by the possibility of easy cash, she joins Lila, a widowed Mohawk who earns a living by smuggling immigrants from Canada to the U.S. across the St. Lawrence.",2008-03-26,1.3196,6.6,333 +5318,1070514,Zom 100: Bucket List of the Dead,"Bullied by his boss, worked around the clock, he's nothing more than a corporate drone. All it takes is a zombie outbreak for him to finally feel alive!",2023-08-03,1.5205,6.616,585 +5319,1048241,My Spy The Eternal City,"JJ, a veteran CIA agent, reunites with his protégé Sophie, in order to prevent a catastrophic nuclear plot targeting the Vatican.",2024-07-18,6.5665,6.609,407 +5320,839033,The Lord of the Rings: The War of the Rohirrim,"A sudden attack by Wulf, a clever and traitorous lord of Rohan seeking vengeance for the death of his father, forces Helm Hammerhand, the King of Rohan, and his people to make a daring last stand in the ancient stronghold of the Hornburg.",2024-12-05,12.4636,6.619,658 +5321,171540,Big Bad Wolves,"Tel Aviv, Israel. The twisted paths of three very different men brutally collide due to a chain of unspeakable murders: a grieving father who has been doomed to seek vengeance and a police detective who boldly crosses the narrow boundary between law and crime meet a religion teacher suspected of being the murderer.",2013-04-21,1.1163,6.616,391 +5322,11977,Caddyshack,"At an exclusive country club, an ambitious young caddy, Danny Noonan, eagerly pursues a caddy scholarship in hopes of attending college and, in turn, avoiding a job at the lumber yard. In order to succeed, he must first win the favour of the elitist Judge Smails, and then the caddy golf tournament which Smails sponsors.",1980-07-25,3.0643,6.616,1216 +5323,11422,Midway,"This war drama depicts the U.S. and Japanese forces in the naval Battle of Midway, which became a turning point for Americans during World War II.",1976-06-18,4.2597,6.6,303 +5324,9346,Risky Business,"Meet Joel Goodson, an industrious, college-bound 17-year-old and a responsible, trustworthy son. However, when his parents go away and leave him home alone in the wealthy Chicago suburbs with the Porsche at his disposal he quickly decides he has been good for too long and it is time to enjoy himself. After an unfortunate incident with the Porsche Joel must raise some cash, in a risky way.",1983-08-05,3.088,6.616,1368 +5325,3635,Girl with a Pearl Earring,"This film, adapted from a work of fiction by author Tracy Chevalier, tells a story about the events surrounding the creation of the painting ""Girl With A Pearl Earring"" by 17th century Dutch master Johannes Vermeer. A young peasant maid working in the house of painter Johannes Vermeer becomes his talented assistant and the model for one of his most famous works.",2003-12-12,3.1617,6.617,1409 +5326,544,There's Something About Mary,"For Ted, prom night went about as bad as it’s possible for any night to go. Thirteen years later, he finally gets another chance with his old prom date, only to run up against other suitors including the sleazy detective he hired to find her.",1998-07-15,5.497,6.616,5084 +5327,471498,Oxygen,"A woman wakes in a cryogenic chamber with no recollection of how she got there, and must find a way out before running out of air.",2021-05-12,1.2896,6.6,1461 +5328,70954,The Hunter,"Martin, a mercenary, is sent from Europe by an anonymous biotech company to the Tasmanian wilderness on a hunt for the last Tasmanian tiger.",2011-10-06,1.4931,6.6,673 +5329,49517,Tinker Tailor Soldier Spy,"In the bleak days of the Cold War, espionage veteran George Smiley is forced from semi-retirement to uncover a Soviet mole within his former colleagues at the heart of MI6.",2011-09-16,3.859,6.615,2742 +5330,14134,Main Hoon Na,"An army major goes undercover as a college student. His mission is both professional and personal: to protect his general's daughter from a radical militant, and to find his estranged half-brother.",2004-04-30,2.0632,6.6,400 +5331,13967,Miss Potter,"Beatrix Potter, the author of the beloved children's book ""The Tale of Peter Rabbit"", struggles for love, happiness and success.",2006-12-03,1.5193,6.615,506 +5332,10668,Suicide Kings,"Carlo, a former mobster, is abducted by five privileged young men desperate to raise a $2 million ransom to save the sister of a friend. As Carlo plays mind games, however, his captors splinter -- each wondering whether one of their own had a hand in the crime.",1997-09-06,1.2464,6.615,304 +5333,5595,Fermat's Room,"Four mathematicians are imprisoned in a shrinking room; with the walls closing in, they must try anything to escape this fatal puzzle.",2007-10-07,1.3318,6.615,422 +5334,11012,Damage,The life of a respected British politician at the height of his career crumbles when he becomes obsessed with his son's lover.,1992-12-02,5.8261,6.614,627 +5335,10449,When a Man Loves a Woman,"An airline pilot and his wife are forced to face the consequences of her alcoholism when her addictions threaten her life and their daughter's safety. While the woman enters detox, her husband must face the truth of his enabling behavior.",1994-04-29,1.9232,6.614,363 +5336,492452,Ben Is Back,"19-year-old Ben Burns unexpectedly returns home to his family's suburban home on Christmas Eve morning. Ben's mother, Holly, is relieved and welcoming but wary of her son staying clean. Over a turbulent 24 hours, new truths are revealed, and a mother's undying love for her son is tested as she does everything in her power to keep him safe.",2018-12-05,2.3848,6.613,933 +5337,201749,Mr. Morgan's Last Love,A widowed professor living in Paris develops a special relationship with a younger French woman.,2013-08-22,1.3662,6.613,302 +5338,192577,Space Pirate Captain Harlock,Space Pirate Captain Harlock and his fearless crew face off against the space invaders who seek to conquer the planet Earth.,2013-09-07,3.3457,6.613,1048 +5339,61404,Point Blank,"Samuel Pierret is a nurse who saves the wrong guy – a thief whose henchmen take Samuel's pregnant wife hostage to force him to spring their boss from the hospital. A race through the subways and streets of Paris ensues, and the body count rises. Can Samuel evade the cops and the criminal underground and deliver his beloved to safety?",2010-11-08,1.2246,6.6,474 +5340,12185,Heaven Can Wait,"Joe Pendleton is a quarterback preparing to lead his team to the superbowl when he is almost killed in an accident. An overanxious angel plucks him to heaven only to discover that he wasn't ready to die, and that his body has been cremated. A new body must be found, and that of a recently-murdered millionaire is chosen. His wife and accountant—the murderers—are confused by this development, as he buys the L.A. Rams in order to once again quarterback them into the Superbowl.",1978-06-28,1.6683,6.613,415 +5341,8834,Conspiracy Theory,"A man obsessed with conspiracy theories becomes a target after one of his theories turns out to be true. Unfortunately, in order to save himself, he has to figure out which theory it is.",1997-08-08,3.4485,6.613,1531 +5342,5780,Torn Curtain,"During the Cold War, an American scientist appears to defect to East Germany as part of a cloak and dagger mission to find the formula for a resin solution, but the plan goes awry when his fiancee, unaware of his motivation, follows him across the border.",1966-07-15,1.7778,6.615,605 +5343,39781,The Kids Are All Right,"Two women, Nic and Jules, brought a son and daughter into the world through artificial insemination. When one of their children reaches age, both kids go behind their mothers' backs to meet with the donor. Life becomes so much more interesting when the father, two mothers and children start to become attached to each other.",2010-07-09,1.6762,6.612,1523 +5344,619297,Sweet Girl,"A man vows to bring justice to those responsible for his wife's death while protecting the only family he has left, his daughter.",2021-08-18,2.8516,6.611,1232 +5345,341012,Popstar: Never Stop Never Stopping,"When his new album fails to sell records, pop/rap superstar Conner4real goes into a major tailspin and watches his celebrity high life begin to collapse. He'll try anything to bounce back, anything except reuniting with his old rap group The Style Boyz.",2016-06-03,2.2014,6.611,1287 +5346,119675,Behind the Candelabra,"Based on the autobiographical novel, the tempestuous 6-year relationship between Liberace and his (much younger) lover, Scott Thorson, is recounted.",2013-05-26,2.0828,6.61,801 +5347,20156,Exotica,"In the upscale Toronto strip club Exotica, dancer Christina is visited nightly by the obsessive Francis, a depressed tax auditor. Her ex-boyfriend, the club's MC, Eric, still jealously pines for her even as he introduces her onstage, but Eric is having his own relationship problems with the club's female owner. Thomas, a mysterious pet-shop owner, is about to become unexpectedly involved in their lives.",1994-09-29,1.9158,6.61,363 +5348,16296,Killer Klowns from Outer Space,Aliens disguised as clowns crash land on Earth in a rural town to capture unsuspecting victims in cotton candy cocoons for later consumption.,1988-05-27,2.6632,6.61,1080 +5349,10875,The Fabulous Baker Boys,"The lives of two struggling musicians, who happen to be brothers, inevitably change when they team up with a beautiful, up-and-coming singer.",1989-10-13,1.4416,6.6,345 +5350,10691,Crazy/Beautiful,"At Pacific Palisades High, a poor Latino falls hard for a troubled girl from the affluent neighborhood.",2001-06-29,1.2106,6.6,347 +5351,2779,The Curse of the Jade Scorpion,"CW Briggs is a veteran insurance investigator, with many successes. Betty Ann Fitzgerald is a new employee in the company he works for, with the task of reorganizing the office. They don't like each other - or at least that's what they think. During a night out with the rest of the office employees, they go to watch Voltan, a magician who secretly hypnotizes both of them.",2001-08-10,2.0493,6.61,794 +5352,529862,Brittany Runs a Marathon,"Hilarious and outgoing, Brittany Forgler, is everybody’s best friend ― except her own. Her partying, underemployment and toxic relationships are catching up with her. She receives a startling wake-up call when a visit to the doctor reveals how unhealthy she is. Motivated to lose weight, but too broke for a gym and too proud to ask for help, Brit is at a loss, until her neighbor pushes her to run one sweaty block. Soon, she sets an almost unthinkable goal: the New York City Marathon.",2019-08-23,1.7133,6.609,497 +5353,433422,Fairy Tail: Dragon Cry,"Dragon Cry is a magical artifact of deadly power, formed into a staff by the fury and despair of dragons long gone. Now, this power has been stolen from the hands of the Fiore kingdom by the nefarious traitor Zash Caine, who flees with it to the small island nation of Stella. Frightened that the power has fallen into the wrong hands, the King of Fiore hastily sends Fairy Tail to retrieve the staff. But this task proves frightening as a shadowy secret lies in the heart of the kingdom of Stella. Dragon Cry follows their story as they muster up all their strength to recover the stolen staff and save both kingdoms.",2017-05-06,1.6526,6.6,410 +5354,14029,Demons,"A group of people are trapped in a West Berlin movie theater infested with ravenous demons who proceed to kill and possess the humans one-by-one, thereby multiplying their numbers.",1985-10-04,2.4376,6.6,594 +5355,10687,Tigerland,"A group of recruits go through Advanced Infantry Training at Fort Polk, Louisiana's infamous Tigerland, last stop before Vietnam for tens of thousands of young men in 1971.",2000-10-06,1.6832,6.609,580 +5356,10184,He's Just Not That Into You,"Have you ever sat by the phone wondering why he said he would call, but didn't, or you can't figure out why she doesn't want to sleep with you anymore, or why your relationship just isn't going to the next level... they're just not that into you. Gigi just wants a man who says he'll call—and does—while Alex advises her to stop waiting by the phone. Beth wants a proposal after years of a committed relationship with her boyfriend, Neil, who sees nothing wrong with the status quo. Janine's not sure if she can trust her husband, Ben, who can't quite trust himself around Anna. Anna can't decide between the sexy married guy, or her straightforward, no-sparks standby, Conor, who can't get over the fact that he can't have her. And Mary, who's found an entire network of loving, supportive men, just needs to find one who's straight.",2009-02-06,6.6349,6.609,3858 +5357,481084,The Addams Family,"The Addams family's lives begin to unravel when they face-off against a treacherous, greedy crafty reality-TV host while also preparing for their extended family to arrive for a major celebration.",2019-10-10,8.6543,6.608,2392 +5358,454527,Benedetta,A 17th-century nun becomes entangled in a forbidden lesbian affair with a novice. But it is Benedetta's shocking religious visions that threaten to shake the Church to its core.,2021-07-09,4.4686,6.6,1076 +5359,4169,Breach,"Eric O'Neill, a low-level surveillance expert with the FBI, believes he is accomplishing his dream of becoming a full-fledged agent, with his unexpected promotion and assignment to clerk for Robert Hanssen, a renowned senior agent with 25 years in the FBI. However, he soon learns the reason for his promotion is to gain Hanssen's trust and find proof that he is a traitor to the country. Determined to draw the suspected double-agent out of deep cover, O'Neill finds himself in a lethal game of spy vs. spy, where nothing is as it seems.",2007-02-12,1.5146,6.61,617 +5360,166,The Party,"A thirteen-year-old French girl deals with moving to a new city and school in Paris, while at the same time her parents are getting a divorce.",1980-12-17,2.8192,6.6,1159 +5361,382322,Batman: The Killing Joke,"As Batman hunts for the escaped Joker, the Clown Prince of Crime attacks the Gordon family to prove a diabolical point mirroring his own fall into madness.",2016-07-24,2.1524,6.607,1872 +5362,21407,The Collector,"Desperate to repay his debt to his ex-wife, an ex-con plots a heist at his new employer's country home, unaware that a second criminal has also targeted the property, and rigged it with a series of deadly traps.",2009-07-09,3.5387,6.6,1550 +5363,483104,A Christmas Prince,"When a reporter goes undercover as a nanny to get the inside scoop on a playboy prince, she gets tangled in some royal intrigue and ends up finding love - but will she be able to keep up her lie?",2017-11-17,1.1813,6.606,1451 +5364,245916,Kill the Messenger,A reporter becomes the target of a vicious smear campaign that drives him to the point of suicide after he exposes the CIA's role in arming Contra rebels in Nicaragua and importing cocaine into California. Based on the true story of journalist Gary Webb.,2014-10-09,1.9666,6.606,871 +5365,109421,Side Effects,A woman turns to prescription medication as a way of handling her anxiety concerning her husband's upcoming release from prison.,2013-02-07,2.1879,6.606,3160 +5366,13704,License to Drive,"Teenager Les Anderson thinks his life can't get any worse after he flunks his driver's exam, but he's wrong. Even though he didn't receive his license, Les refuses to break his date with the cool Mercedes Lane, and he decides to lift his family's prize luxury car for the occasion. Unfortunately, Mercedes sneaks some booze along and passes out drunk, and a confused Les makes the bad decision of enlisting his rebellious friend, Dean, to help.",1988-07-06,2.0313,6.606,379 +5367,11635,Old School,Three friends attempt to recapture their glory days by opening up a fraternity near their alma mater.,2003-02-21,9.0721,6.6,1957 +5368,8738,The Final Countdown,"During routine manoeuvres near Hawaii in 1980, the aircraft-carrier USS Nimitz is caught in a strange vortex-like storm, throwing the ship back in time to 1941—mere hours before the Japanese attack on Pearl Harbor.",1980-01-31,3.1743,6.606,630 +5369,2123,"Me, Myself & Irene","Rhode Island State Trooper Charlie Baileygates has a multiple personality disorder. One personality is crazy and aggressive, while the other is more friendly and laid back. Both of these personalities fall in love with the same woman named Irene after Charlie loses his medication.",2000-06-22,5.1034,6.606,4023 +5370,823766,The Wonder,"Haunted by her past, a nurse travels from England to a remote Irish village in 1862 to investigate a young girl's supposedly miraculous fast.",2022-11-02,2.1135,6.605,875 +5371,166076,Superman: Unbound,"Superman and Supergirl take on the cybernetic being known as Brainiac, who boasts that he possesses ""the knowledge and strength of 10,000 worlds.""",2013-04-23,1.9755,6.613,438 +5372,20178,World's Greatest Dad,"In the wake of a freak accident, Lance suffers the worst tragedy and the greatest opportunity of his life. He is suddenly faced with the possibility of fame, fortune and popularity, if he can only live with the knowledge of how he got there.",2009-08-20,1.8937,6.605,621 +5373,15393,Play Misty for Me,"A brief fling between a male disc jockey and an obsessed female fan takes a frightening, and perhaps even deadly turn when another woman enters the picture.",1971-10-01,1.4498,6.605,525 +5374,10398,Double Jeopardy,"Libby Parsons, wrongly convicted for her husband Nick's murder, thinks he is still alive and wants to settle the score and find their son. As she has been tried for the crime, she cannot be re-prosecuted if she finds and kills Nick.",1999-09-24,3.5923,6.605,1384 +5375,1562,28 Weeks Later,"Twenty-eight weeks after the spread of a deadly rage virus, the inhabitants of the British Isles have lost their battle against the onslaught, as the virus has killed everyone there. Six months later, a group of Americans dare to set foot on the Isles, convinced the danger has passed. But it soon becomes all too clear that the scourge continues to live, waiting to pounce on its next victims.",2007-04-26,16.4976,6.605,4957 +5376,586461,Swallow,"Hunter, a newly pregnant housewife, finds herself increasingly compelled to consume dangerous objects. As her husband and his family tighten their control over her life, she must confront the dark secret behind her new obsession.",2020-01-15,1.4963,6.604,788 +5377,246860,Clouds of Sils Maria,A veteran actress comes face-to-face with an uncomfortable reflection of herself when she agrees to take part in a revival of the play that launched her career 20 years earlier.,2014-08-20,1.9566,6.604,772 +5378,241239,A Most Violent Year,"A thriller set in New York City during the winter of 1981, statistically one of the most violent years in the city's history, and centered on the lives of an immigrant and his family trying to expand their business and capitalize on opportunities as the rampant violence, decay, and corruption of the day drag them in and threaten to destroy all they have built.",2014-12-31,3.0615,6.604,1455 +5379,20306,Swimming with Sharks,"Guy is a young film executive who's willing to do whatever it takes to make it in Hollywood. He begins working for famed producer Buddy Ackerman, a domineering, manipulative, coldhearted boss. When Guy also finds out that his cynical girlfriend, Dawn, has been using sex as a career move, he reaches his limit. Guy decides to exact revenge on Buddy by kidnapping him and subjecting him to cruel and unusual punishment.",1994-09-10,1.0206,6.6,323 +5380,11515,Goya's Ghosts,"Painter Francisco Goya becomes involved with the Spanish Inquisition after his muse, Inés, is arrested by the church for heresy. Her family turns to him, hoping that his connection with fanatical Inquisitor Lorenzo, whom he is painting, can secure her release.",2006-11-08,1.203,6.604,497 +5381,559907,The Green Knight,"An epic fantasy adventure based on the timeless Arthurian legend, The Green Knight tells the story of Sir Gawain, King Arthur's reckless and headstrong nephew, who embarks on a daring quest to confront the eponymous Green Knight, a gigantic emerald-skinned stranger and tester of men.",2021-07-29,3.7571,6.6,2011 +5382,300673,The Finest Hours,The Coast Guard makes a daring rescue attempt off the coast of Cape Cod after a pair of oil tankers are destroyed during a blizzard in 1952.,2016-01-27,3.2067,6.603,1652 +5383,12150,Sea of Love,"Seen-it-all New York detective Frank Keller is unsettled - he has done twenty years on the force and could retire, and he hasn't come to terms with his wife leaving him for a colleague. Joining up with an officer from another part of town to investigate a series of murders linked by the lonely hearts columns he finds he is getting seriously and possibly dangerously involved with Helen, one of the main suspects.",1989-09-15,1.3436,6.603,638 +5384,10484,The ComDads,"Unable to find her runaway son, a woman deceives two of her ex-lovers from her youth, a mild-mannered teacher and a tough journalist, that each is the real father in order to obtain their help.",1983-11-23,1.4569,6.603,413 +5385,10264,Hamlet,"Hamlet, Prince of Denmark, finds out that his uncle Claudius killed his father to obtain the throne, and plans revenge.",1990-12-19,0.9632,6.603,416 +5386,405177,"Where'd You Go, Bernadette","When architect-turned-recluse Bernadette Fox goes missing prior to a family trip to Antarctica, her 15-year-old daughter, Bee, goes on a quest with Bernadette's husband to find her.",2019-08-16,1.3967,6.602,683 +5387,50837,Martha Marcy May Marlene,"After several years of living with a cult, Martha finally escapes and calls her estranged sister, Lucy, for help. Martha finds herself at the quiet Connecticut home Lucy shares with her new husband, Ted, but the memories of what she experienced in the cult make peace hard to find. As flashbacks continue to torment her, Martha fails to shake a terrible sense of dread, especially in regard to the cult's manipulative leader.",2011-10-21,1.6975,6.602,770 +5388,5121,The Sugarland Express,"Married small-time crooks Lou-Jean and Clovis Poplin lose their baby to the state of Texas and resolve to do whatever it takes to get him back. Lou-Jean gets Clovis out of jail, and the two steal their son from his foster home, in addition to taking a highway patrolman hostage. As a massive dragnet starts to pursue them across Texas, the couple become unlikely folk heroes and even start to bond with the captive policeman.",1974-03-31,2.2273,6.602,426 +5389,3525,Working Girl,"Tess McGill is an ambitious secretary with a unique approach for climbing the ladder to success. When her classy, but villainous boss breaks a leg skiing, Tess takes over her office, her apartment and even her wardrobe. She creates a deal with a handsome investment banker that will either take her to the top, or finish her off for good.",1988-12-20,2.2871,6.6,1005 +5390,215,Saw II,"The chilling and relentless Jigsaw killer returns to terrorize the city once again. When a gruesome murder victim emerges with unmistakable traces of Jigsaw's sinister methods, Detective Eric Matthews is thrust into a high-stakes investigation. To his surprise, apprehending Jigsaw seems almost too easy, but what he doesn't realize is that being caught is merely another piece of Jigsaw's intricate puzzle.",2005-10-28,5.0583,6.602,5586 +5391,311291,45 Years,"There is just one week until Kate Mercer's 45th wedding anniversary and the planning for the party is going well. But then a letter arrives for her husband. The body of his first love has been discovered, frozen and preserved in the icy glaciers of the Swiss Alps. By the time the party is upon them, five days later, there may not be a marriage left to celebrate.",2015-05-29,1.4771,6.6,759 +5392,68817,Footloose,"Ren MacCormack is transplanted from Boston to the small southern town of Bomont where loud music and dancing are prohibited. Not one to bow to the status quo, Ren challenges the ban, revitalizing the town and falling in love with the minister’s troubled daughter Ariel in the process.",2011-10-06,3.5875,6.601,1676 +5393,36819,Time Bandits,"Young history buff Kevin can scarcely believe it when six dwarfs emerge from his closet one night. Former employees of the Supreme Being, they've purloined a map charting all of the holes in the fabric of time and are using it to steal treasures from different historical eras. Taking Kevin with them, they variously drop in on Napoleon, Robin Hood and King Agamemnon before the Supreme Being catches up with them.",1981-07-13,2.4001,6.601,1070 +5394,29963,Bright Star,"In 1818, high-spirited young Fanny Brawne finds herself increasingly intrigued by the handsome but aloof poet John Keats, who lives next door to her family friends the Dilkes. After reading a book of his poetry, she finds herself even more drawn to the taciturn Keats. Although he agrees to teach her about poetry, Keats cannot act on his reciprocated feelings for Fanny, since as a struggling poet he has no money to support a wife.",2009-09-18,1.8347,6.601,459 +5395,9352,EuroTrip,"When Scott learns that his longtime cyber-buddy from Berlin is a gorgeous young woman, he and his friends embark on a trip across Europe.",2004-02-20,4.8794,6.6,2735 +5396,454467,Noelle,"Kris Kringle's daughter, Noelle, sets off on a mission to find and bring back her brother, after he gets cold feet when it's his turn to take over as Santa.",2019-11-12,2.0226,6.6,693 +5397,428495,The Nile Hilton Incident,"Cairo, 2011. A police officer investigates the murder of a woman in a luxurious hotel in the days leading up to the Egyptian revolution.",2017-06-19,0.7485,6.6,366 +5398,83899,You're Next,"When the Davison family comes under attack during their wedding anniversary getaway, the gang of mysterious killers soon learns that one of their victims harbors a secret talent for fighting back.",2013-08-22,3.0938,6.6,2553 +5399,11064,Brewster's Millions,"Monty Brewster, an aging minor-league baseball player, stands to inherit $300 million if he can successfully spend $30 million in 30 days without anything to show for it, and without telling anyone what he's up to... A task that's a lot harder than it sounds!",1985-05-22,1.9118,6.6,620 +5400,883083,You Won't Be Alone,"In an isolated mountain village in 19th century Macedonia, a young feral witch accidentally kills a peasant. She assumes the peasant's shape to see what life is like in her skin, igniting a deep seated curiosity to experience life inside the bodies of others.",2022-04-01,1.7672,6.599,323 +5401,581726,Infinite,"Evan McCauley has skills he never learned and memories of places he has never visited. Self-medicated and on the brink of a mental breakdown, a secret group that call themselves “Infinites” come to his rescue, revealing that his memories are real.",2021-09-09,6.2244,6.599,1984 +5402,11412,The Long Kiss Goodnight,"Samantha Caine is a small-town schoolteacher and mom with no memory of her life before washing up on a beach eight years ago. After a car accident and a violent home invasion trigger flashes of her past, she discovers she used to be a deadly CIA assassin. Teaming up with a wisecracking private investigator, Samantha must return to her old ways to take down the people who tried to erase her.",1996-10-11,2.8522,6.599,1242 +5403,10503,Happy-Go-Lucky,"A look at a few chapters in the life of Poppy, a cheery, colorful, North London schoolteacher whose optimism tends to exasperate those around her.",2008-04-18,1.3904,6.599,474 +5404,736526,Troll,"When an explosion in the Norwegian mountains awakens an ancient troll, officials appoint a fearless paleontologist to stop it from wreaking deadly havoc.",2022-11-30,3.3834,6.598,1789 +5405,329996,Dumbo,"A young elephant, whose oversized ears enable him to fly, helps save a struggling circus, but when the circus plans a new venture, Dumbo and his friends discover dark secrets beneath its shiny veneer.",2019-03-27,5.2058,6.598,4409 +5406,9410,Great Expectations,"Loosely based on the Charles Dickens' classic novel, ""Great Expectations"" is a sensual tale of a young man's unforgettable passage into manhood, and the three individuals who will undeniably change his life forever. Through the surprising interactions of these vivid characters, ""Great Expectations"" takes a unique and contemporary look at life's great coincidences.",1998-01-30,2.4883,6.6,625 +5407,413658,The Warriors Gate,"After a mysterious chest opens a gateway through time, teen gamer Jack is transported to an ancient empire terrorized by a cruel barbarian king. Jack will need all of his gaming skills as he battles to defeat the barbarian, protect a beautiful princess, and somehow find his way back home.",2016-11-18,2.0882,6.597,359 +5408,13090,Sunshine Cleaning,A single mother and her slacker sister find an unexpected way to turn their lives around in this off-beat dramatic comedy. In order to raise the tuition to send her young son to private school the mom starts an unusual business – a biohazard removal/crime scene clean-up service.,2008-01-18,1.5208,6.597,791 +5409,8005,Robin Hood: Men in Tights,"Robin Hood comes home after fighting in the Crusades to learn that the noble King Richard is in exile and that the despotic King John now rules England, with the help of the Sheriff of Rottingham. Robin Hood assembles a band of fellow patriots to do battle with King John and the Sheriff.",1993-07-28,4.752,6.6,2151 +5410,396422,Annabelle: Creation,"Several years after the tragic death of their little girl, a doll maker and his wife welcome a nun and several girls from a shuttered orphanage into their home, soon becoming the target of the doll maker's possessed creation—Annabelle.",2017-08-03,10.7863,6.596,5732 +5411,44048,Unstoppable,"When a massive, unmanned locomotive roars out of control, the threat is more ominous than just a derailment. The train is laden with toxic chemicals, and an accident would decimate human life and cause an environmental disaster. The only hope of bringing the train to a safe stop is in the hands of veteran engineer Frank Barnes, and young conductor Will Colson, who must risk their lives to save those in the runaway's path. Inspired by true events.",2010-11-04,5.9327,6.596,3681 +5412,13161,Big Stan,A weak con man panics when he learns he's going to prison for fraud. He hires a mysterious martial arts guru who helps transform him into a martial arts expert who can fight off inmates who want to hurt or love him.,2007-11-03,5.5704,6.596,952 +5413,4958,The Legend of Bagger Vance,"World War I has left golfer Rannulph Junuh a poker-playing alcoholic, his perfect swing gone. Now, however, he needs to get it back to play in a tournament to save the financially ravaged golf course of a long-ago sweetheart. Help arrives in the form of mysterious caddy Bagger Vance.",2000-11-02,2.3582,6.596,935 +5414,944,Lethal Weapon 4,"With personal crises and age weighing in on them, Riggs and Murtaugh must contend with deadly Chinese triads trying to free their former leaders from prison and onto American soil.",1998-07-10,3.6154,6.596,2764 +5415,945729,A Haunting in Venice,"Celebrated sleuth Hercule Poirot, now retired and living in self-imposed exile in Venice, reluctantly attends a Halloween séance at a decaying, haunted palazzo. When one of the guests is murdered, the detective is thrust into a sinister world of shadows and secrets.",2023-09-13,3.7571,6.595,2552 +5416,727293,The Tender Bar,"JR is a fatherless boy growing up in the glow of a bar where the bartender, his Uncle Charlie, is the sharpest and most colorful of an assortment of quirky and demonstrative father figures. As the boy’s determined mother struggles to provide her son with opportunities denied to her — and leave the dilapidated home of her outrageous if begrudgingly supportive father — JR begins to gamely, if not always gracefully, pursue his romantic and professional dreams, with one foot persistently placed in Uncle Charlie’s bar.",2021-12-17,2.0331,6.595,572 +5417,630392,The Cursed,"In the late 19th century, a brutal land baron slaughters a Roma clan, unleashing a curse on his family and village. In the days that follow, the townspeople are plagued by nightmares, the baron's son goes missing, and a boy is found murdered. The locals suspect a wild animal, but a visiting pathologist warns of a more sinister presence lurking in the woods.",2021-07-28,3.4296,6.595,372 +5418,136795,The Heat,"Uptight and straight-laced, FBI Special Agent Sarah Ashburn is a methodical investigator with a reputation for excellence--and hyper-arrogance. Shannon Mullins, one of Boston P.D.'s ""finest,"" is foul-mouthed and has a very short fuse, and uses her gut instinct and street smarts to catch the most elusive criminals. Neither has ever had a partner, or a friend for that matter. When these two wildly incompatible law officers join forces to bring down a ruthless drug lord, they become the last thing anyone expected: buddies.",2013-06-27,3.9335,6.595,4023 +5419,9595,Hot Shots!,"The gang that created Airplane and The Naked Gun sets its sights on Top Gun in this often hilarious spoof starring Charlie Sheen, who previously only inspired laughs with his personal life. He plays Topper Harley, a fighter pilot with an axe to grind: clearing the family name. He gets involved in a relationship with Valerie Golino, a woman with an unusually talented stomach. But his mission is to avenge his father. Lloyd Bridges, late in his career, revealed an aptitude for this kind of silliness, here as a commander who is both incredibly dim and delightfully accident prone. Directed by Jim Abrahams, the film makes fun of a variety of other films as well, from Dances with Wolves to The Fabulous Baker Boys. It was so successful that they all returned in the sequel, Hot Shots! Part Deux.",1991-07-31,4.3179,6.595,2271 +5420,7450,Titan A.E.,"A young man finds out that he holds the key to restoring hope and ensuring survival for the human race, while an alien species called the Drej are bent on mankind's destruction.",2000-06-16,2.1043,6.594,1118 +5421,4413,The Brave One,A woman struggles to recover from a brutal attack by setting out on a mission for revenge.,2007-09-12,1.9765,6.595,996 +5422,834,Underworld: Evolution,"As the war between the vampires and the Lycans rages on, Selene, a former member of the Death Dealers (an elite vampire special forces unit that hunts werewolves), and Michael, the werewolf hybrid, work together in an effort to unlock the secrets of their respective bloodlines.",2006-01-12,4.6195,6.595,4172 +5423,123,The Lord of the Rings,The Fellowship of the Ring embark on a journey to destroy the One Ring and end Sauron's reign over Middle-earth.,1978-11-15,2.7395,6.595,978 +5424,575776,Saint Maud,"Having recently found God, self-effacing young nurse Maud arrives at a plush home to care for Amanda, a hedonistic dancer left frail from a chronic illness. When a chance encounter with a former colleague throws up hints of a dark past, it becomes clear there is more to sweet Maud than meets the eye.",2020-10-09,1.9046,6.6,795 +5425,572802,Aquaman and the Lost Kingdom,"Black Manta seeks revenge on Aquaman for his father's death. Wielding the Black Trident's power, he becomes a formidable foe. To defend Atlantis, Arthur (Aquaman) forges an alliance with his imprisoned brother. They must protect the kingdom.",2023-12-20,10.4357,6.594,3163 +5426,468362,The Angel,"True story of Ashraf Marwan, who was President Nasser's son-in-law and special adviser and confidant to his successor Anwar Sadat - while simultaneously Israeli Intelligence's most precious asset of the 20th century. Based on NYT bestselling book 'The Angel: The Egyptian Spy Who Saved Israel' by Uri Bar-Joseph.",2018-05-15,1.6749,6.594,314 +5427,423204,Angel Has Fallen,"After a treacherous attack, Secret Service agent Mike Banning is charged with attempting to assassinate President Trumbull. Chased by his own colleagues and the FBI, Banning begins a race against the clock to clear his name.",2019-08-21,6.3826,6.594,3647 +5428,8643,The Exorcism of Emily Rose,"When a younger girl called Emily Rose dies, everyone puts blame on the exorcism which was performed on her by Father Moore prior to her death. The priest is arrested on suspicion of murder. The trial begins with lawyer Erin Bruner representing Moore, but it is not going to be easy, as no one wants to believe what Father Moore says is true.",2005-09-09,5.3942,6.594,2881 +5429,6972,Australia,"Set in northern Australia before World War II, an English aristocrat who inherits a sprawling ranch reluctantly pacts with a stock-man in order to protect her new property from a takeover plot. As the pair drive 2,000 head of cattle over unforgiving landscape, they experience the bombing of Darwin by Japanese forces firsthand.",2008-11-18,3.2979,6.594,2345 +5430,2105,American Pie,"At a high-school party, four friends find that losing their collective virginity isn't as easy as they had thought. But they still believe that they need to do so before college. To motivate themselves, they enter a pact to all ""score"" by their senior prom.",1999-07-09,15.789,6.595,7917 +5431,588,Silent Hill,"Rose, a desperate mother takes her adopted daughter, Sharon, to the town of Silent Hill in an attempt to cure her of her ailment. After a violent car crash, Sharon disappears and Rose begins a desperate search to get her back. She descends into the center of the twisted reality of a town's terrible secret. Pursued by grotesquely deformed creatures and townspeople stuck in permanent purgatory, Rose begins to uncover the truth behind the apocalyptic disaster that burned the town 30 years earlier.",2006-04-21,6.1359,6.6,4498 +5432,774825,The Ice Age Adventures of Buck Wild,The fearless one-eyed weasel Buck teams up with mischievous possum brothers Crash & Eddie as they head off on a new adventure into Buck's home: The Dinosaur World.,2022-01-28,5.5362,6.593,1767 +5433,554241,Playing with Fire,A crew of rugged firefighters meet their match when attempting to rescue three rambunctious kids.,2019-11-08,2.2585,6.6,729 +5434,448119,Dolittle,"After losing his wife seven years earlier, the eccentric Dr. John Dolittle, famed doctor and veterinarian of Queen Victoria’s England, hermits himself away behind the high walls of Dolittle Manor with only his menagerie of exotic animals for company. But when the young queen falls gravely ill, a reluctant Dolittle is forced to set sail on an epic adventure to a mythical island in search of a cure, regaining his wit and courage as he crosses old adversaries and discovers wondrous creatures.",2020-01-02,5.7573,6.593,3723 +5435,250124,The Diary of a Teenage Girl,"Minnie Goetze is a 15-year-old aspiring comic-book artist, coming of age in the haze of the 1970s in San Francisco. Insatiably curious about the world around her, Minnie is a pretty typical teenage girl. Oh, except that she’s sleeping with her mother’s boyfriend.",2015-08-07,1.9097,6.6,756 +5436,11676,Nothing to Lose,"Advertising executive Nick Beame learns that his wife is sleeping with his employer. In a state of despair, he encounters a bumbling thief whose attempted carjacking goes awry when Nick takes him on an involuntary joyride. Soon the betrayed businessman and the incompetent crook strike up a partnership and develop a robbery-revenge scheme. But it turns out that some other criminals in the area don't appreciate the competition.",1997-07-18,2.8371,6.6,634 +5437,11198,City Hunter,"A self-indulgent private investigator winds up on a cruise ship full of rich patrons, gorgeous women, murderous terrorists, and scarce food.",1993-01-14,2.5348,6.593,427 +5438,8649,Bringing Out the Dead,"Once called ""Father Frank"" for his efforts to rescue lives, Frank Pierce sees the ghosts of those he failed to save around every turn. He has tried everything he can to get fired, calling in sick, delaying taking calls where he might have to face one more victim he couldn't help, yet cannot quit the job on his own.",1999-10-22,2.0779,6.6,1127 +5439,5486,A Bay of Blood,"An elderly heiress is killed by her husband who wants control of her fortunes. What ensues is an all-out murder spree as relatives and friends attempt to reduce the inheritance playing field, complicated by some teenagers who decide to camp out in a dilapidated building on the estate.",1971-09-08,2.3178,6.6,397 +5440,512,Scoop,"An American journalism student in London scoops a big story, and begins an affair with an aristocrat as the incident unfurls.",2006-07-27,2.353,6.593,1667 +5441,706503,Lost Bullet,"A small time delinquent, turned police mechanic for a go fast task force, is forced to defend his innocence when his mentor is killed by dirty cops.",2020-06-19,2.1723,6.592,884 +5442,480857,Radioactive,The story of Nobel Prize winner Marie Curie and her extraordinary scientific discoveries—through the prism of her marriage to husband Pierre—and the seismic and transformative effects their discovery of radium had on the 20th century.,2020-03-11,1.7507,6.592,865 +5443,438674,Dragged Across Concrete,"Two policemen, one an old-timer, the other his volatile younger partner, find themselves suspended when a video of their strong-arm tactics becomes the media's cause du jour. Low on cash and with no other options, these two embittered soldiers descend into the criminal underworld to gain their just due, but instead find far more than they wanted awaiting them in the shadows.",2019-02-21,3.811,6.592,1039 +5444,345009,Mine,"After a failed assassination attempt, a soldier finds himself stranded in the desert. Exposed to the elements, he must survive the dangers of the desert and battle the psychological and physical toll of the treacherous conditions.",2016-10-06,2.8414,6.592,1310 +5445,25059,Homeward Bound II: Lost in San Francisco,"When the pets accidentally get separated from their vacationing owners, Chance, Shadow, and Sassy navigate the mean streets of San Francisco, trying to find their home across the Golden Gate Bridge. But the road is blocked by a series of hazards, both man and beast.",1996-03-08,1.8877,6.592,504 +5446,12165,The Burning Plain,"A trailer is burning in the middle of a plain. The bodies of two adulterous lovers are found. Scenes from both families, before and after the dramatic events, suggest an unusual connection between them. But what is their secret?",2008-11-07,1.2548,6.592,442 +5447,9944,The Pelican Brief,"A law student's theory about the recent deaths of two Supreme Court justices embroils her in a far-reaching web of murder, corruption, and greed.",1993-09-17,2.9533,6.592,1670 +5448,8874,My Best Friend's Wedding,"When she receives word that her longtime platonic pal Michael O'Neal is getting married to debutante Kimberly Wallace, food critic Julianne Potter realizes her true feelings for Michael -- and sets out to sabotage the wedding.",1997-06-19,3.3656,6.592,2751 +5449,8066,Stay,"Psychiatrist Sam Foster has a new patient, Henry Letham, who claims to be suicidal. In trying to diagnose him, Sam visits Henry's prior therapist and also finds Henry's mother -- even though Henry has said that he murdered both of his parents. As reality starts to contradict fact, Sam spirals into an unstable mental state. Then he finds a clue as to how and when Henry may try to kill himself, and races to try to stop him.",2005-09-24,2.7117,6.592,1402 +5450,2978,Ghostbusters II,The discovery of a massive river of ectoplasm and a resurgence of spectral activity allows the staff of Ghostbusters to revive the business.,1989-06-16,5.3817,6.6,4613 +5451,623520,Z,A family find themselves terrorized by their eight-year-old son's imaginary friend.,2019-09-19,1.4261,6.591,329 +5452,546630,100 Things,"Best friends Toni and Paul decide to relinquish all of their belongings for 100 days, whereby they receive one of their items back on each day. During this challenge the two realize, that the only thing they cannot be without is their friendship. A story about contemporary materialism and the quest for the truly important things in life.",2018-12-06,0.7816,6.6,308 +5453,50456,Hanna,"Raised by her father, an ex-CIA agent, in the wilds of Finland, Hanna's upbringing has been geared to making her the perfect assassin. Sent into the world by her father on a mission, Hanna journeys across Europe, eluding agents dispatched after her by a ruthless intelligence operative. As she nears her ultimate target, Hanna faces startling revelations about her existence.",2011-04-07,2.9836,6.59,3479 +5454,1100782,Smile 2,"About to embark on a new world tour, global pop sensation Skye Riley begins experiencing increasingly terrifying and inexplicable events. Overwhelmed by the escalating horrors and the pressures of fame, Skye is forced to face her dark past to regain control of her life before it spirals out of control.",2024-10-16,19.0697,6.591,1710 +5455,762430,Retribution,"When a mysterious caller plants a bomb under his car seat, a bank executive begins a high-speed chase across the city to complete a specific series of tasks — all with his kids trapped in the back seat.",2023-08-23,4.255,6.59,1245 +5456,487476,Nothing to Hide,"To spice up a dinner party, old friends agree to share every private message that pops up on their phones -- with disastrous results.",2018-10-17,1.7856,6.59,1383 +5457,10409,Strictly Ballroom,"Brave new steps put Scott's career in jeopardy. With a new partner and determination, can he still succeed?",1992-08-20,2.0331,6.59,357 +5458,6575,Walk Hard: The Dewey Cox Story,"Following a childhood tragedy, Dewey Cox follows a long and winding road to music stardom. Dewey perseveres through changing musical styles, an addiction to nearly every drug known and bouts of uncontrollable rage.",2007-12-21,2.5699,6.6,701 +5459,1593,Night at the Museum,"Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse, awakening Attila the Hun, an army of gladiators, a Tyrannosaurus rex and other exhibits.",2006-12-20,7.5088,6.591,10505 +5460,948549,Love Lies Bleeding,"Reclusive gym manager Lou falls hard for Jackie, an ambitious bodybuilder headed through town to Las Vegas in pursuit of her dream. But their love ignites violence, pulling them deep into the web of Lou’s criminal family.",2024-03-07,5.9866,6.589,829 +5461,420426,Bleach,"High school student Ichigo Kurosaki lives an ordinary life, besides being able to see ghosts and the blurry memories of his mother's death under strange circumstances when he was a kid. His peaceful world suddenly breaks as he meets Rukia Kuchiki, a God of Death.",2018-07-20,4.0764,6.6,551 +5462,396810,The Last Word,"A retired businesswoman – who tries to control everything around her – decides to write her own obituary. A young journalist takes up the task of finding out the truth, and the result is a life-altering friendship.",2017-03-03,1.3011,6.589,358 +5463,644495,House of Gucci,"When Patrizia Reggiani, an outsider from humble beginnings, marries into the Gucci family, her unbridled ambition begins to unravel the family legacy and triggers a reckless spiral of betrayal, decadence, revenge, and ultimately… murder.",2021-11-24,4.5139,6.588,3246 +5464,454458,UglyDolls,"In the adorably different town of Uglyville, weirdness is celebrated, strangeness is special and beauty is embraced as more than meets the eye. After traveling to the other side of a mountain, Moxy and her UglyDoll friends discover Perfection -- a town where more conventional dolls receive training before entering the real world to find the love of a child.",2019-05-01,2.7226,6.6,449 +5465,80274,Ender's Game,"Based on the classic novel by Orson Scott Card, Ender's Game is the story of the Earth's most gifted children training to defend their homeplanet in the space wars of the future.",2013-10-24,4.0084,6.6,5981 +5466,9463,Vampire Hunter D,"In a far-future time ruled by the supernatural, a young girl requests the help of a vampire hunter to kill the vampire who has bitten her and thus prevent her from becoming a vampire herself.",1985-12-21,2.1552,6.6,494 +5467,547565,The Night House,"Reeling from the unexpected death of her husband, Beth is left alone in the lakeside home he built for her. Soon she begins to uncover her recently deceased husband's disturbing secrets.",2021-07-15,2.1748,6.587,1206 +5468,348877,Return,"Static images of an old country house are combined with voices of the past to evocative effect. Haunting and nostalgic, 'Return' conveys the life that exists in old, abandoned places.",1972-07-15,0.1737,6.587,415 +5469,92591,Bernie,"In small-town Texas, affable and popular mortician Bernie Tiede strikes up a friendship with Marjorie Nugent, a wealthy widow well known for her sour attitude. When she becomes controlling and abusive, Bernie goes to great lengths to remove himself from her grasp.",2012-04-27,1.5649,6.587,970 +5470,21159,The Last Man on Earth,"When a disease turns all of humanity into the living dead, the last man on earth becomes a reluctant vampire hunter.",1964-05-06,1.8624,6.6,450 +5471,12775,Flesh + Blood,"A band of medieval mercenaries take revenge on a noble lord who decides not to pay them by kidnapping the betrothed of the noble's son. As the plague and warfare cut a swathe of destruction throughout the land, the mercenaries hole up in a castle and await their fate.",1985-08-30,1.8626,6.587,403 +5472,12079,Spun,"Over the course of three days Ross, a college dropout addicted to crystal-meth, encounters a variety of oddball folks - including a stripper named Nikki and her boyfriend, the local meth producer, The Cook - but all he really wants to do is hook up with his old girlfriend, Amy.",2003-02-07,2.534,6.587,481 +5473,19405,Recess: School's Out,"The school year is finally ending, and T.J. Detweiler is looking forward to summer. But boredom quickly sets in when his friends leave for camp — until T.J. uncovers an evil plot to do away with summer vacation! A crazy former principal, Dr. Benedict, is planning to use a laser beam to alter the weather and create permanent winter. Faced with the dire threat of year-round school, T.J. rounds up the RECESS gang and bands together with some unexpected allies — Miss Finster and Principal Prickly — in a nonstop adventure to save everyone's summer break. As the kids discover the heroes inside themselves, a platoon of wacky characters, far-out music, and sci-fi surprises turn this madcap mission into a major victory for fun!",2001-02-16,2.0924,6.586,353 +5474,10803,Logan's Run,"In the 23rd century, inhabitants of a domed city freely experience all of life's pleasures — but no one is allowed to live past 30. Citizens can try for a chance at being ""renewed"" in a civic ceremony on their 30th birthday. Escape is the only other option.",1976-06-23,2.7421,6.586,985 +5475,9950,Find Me Guilty,"Based on the true story of Jack DiNorscio, a mobster who defended himself in court for what would be the longest mafia trial in U.S. history.",2006-03-16,1.8114,6.586,511 +5476,9685,Igby Goes Down,"Igby Slocumb, a rebellious and sarcastic 17-year-old boy, is at war with the stifling world of old money privilege he was born into. With a schizophrenic father, a self-absorbed, distant mother, and a shark-like young Republican big brother, Igby figures there must be a better life out there -- and sets about finding it.",2002-09-13,1.4672,6.586,324 +5477,5879,In the Realm of the Senses,"A passionate telling of the story of Sada Abe, a woman whose affair with her master led to an obsessive and ultimately destructive sexual relationship.",1976-09-15,6.8803,6.586,666 +5478,11183,French Fried Vacation,"Holidaymakers arriving in a Club Med camp on the Ivory Coast are determined to forget their everyday problems and emotional disappointments. Games, competitions, outings, bathing and sunburn accompany a continual succession of casual affairs.",1978-11-11,1.5331,6.585,918 +5479,577,To Die For,"Suzanne Stone wants to be a world-famous news anchor and she is willing to do anything to get what she wants. What she lacks in intelligence, she makes up for in cold determination and diabolical wiles. As she pursues her goal with relentless focus, she is forced to destroy anything and anyone that may stand in her way, regardless of the ultimate cost or means necessary.",1995-09-22,2.795,6.6,823 +5480,653744,Sergio,"A sweeping drama set in the chaotic aftermath of the US invasion of Iraq, where the life of top UN diplomat Brazilian Sérgio Vieira de Mello hangs in the balance during the most treacherous mission of his career.",2020-01-28,1.5734,6.584,341 +5481,376166,From the Land of the Moon,"In 1950s France, a free-spirited woman trapped in an arranged marriage falls in love with an injured veteran of the Indochinese War.",2016-10-19,1.9656,6.584,310 +5482,80389,Get the Gringo,A career criminal nabbed by Mexican authorities is placed in a tough prison where he learns to survive with the help of a 9-year-old boy.,2012-03-15,2.8742,6.584,1686 +5483,667,You Only Live Twice,A mysterious spacecraft captures Russian and American space capsules and brings the two superpowers to the brink of war. James Bond investigates the case in Japan and comes face to face with his archenemy Blofeld.,1967-06-13,5.238,6.584,2299 +5484,157,Star Trek III: The Search for Spock,A surprise visit from Spock's father provides a startling revelation: McCoy is harboring Spock's living essence.,1984-06-01,2.3602,6.584,1425 +5485,988078,Through My Window: Across the Sea,"After a year of long-distance, Raquel and Ares reunite on a steamy beach trip. Faced with fresh flirtations and insecurities, will their love prevail?",2023-06-23,6.7286,6.583,911 +5486,839369,May December,"Twenty years after their notorious tabloid romance gripped the nation, a married couple buckles under the pressure when an actress arrives to do research for a film about their past.",2023-11-16,3.5633,6.583,929 +5487,736769,They Cloned Tyrone,A series of eerie events thrusts an unlikely trio onto the trail of a nefarious government conspiracy lurking directly beneath their neighborhood.,2023-06-14,1.7896,6.6,643 +5488,441282,Night Hunter,A Minnesota police officer crosses paths with a committed and tireless vigilante as he follows the trail of a ruthless predator responsible for several abductions and murders.,2019-08-08,3.2707,6.578,1012 +5489,270303,It Follows,"When carefree teenager Jay sleeps with her older boyfriend for the first time, she learns that she is the latest recipient of a fatal curse that is passed from victim to victim via sexual intercourse. Death, Jay learns, will creep inexorably toward her as either a friend or a stranger. Jay's friends don't believe her seemingly paranoid ravings, until they too begin to see the phantom assassins and band together to help her defend herself.",2015-02-04,8.8644,6.583,6580 +5490,4105,Black Rain,"Two New York cops get involved in a gang war between members of the Yakuza, the Japanese Mafia. They arrest one of their killers and are ordered to escort him back to Japan. However, in Japan he manages to escape, and as they try to track him down, they get deeper and deeper into the Japanese Mafia scene and they have to learn that they can only win by playing the game—the Japanese way.",1989-09-22,2.6389,6.6,1151 +5491,1198870,Return,A girl is at school. Suddenly it's as if she can't breathe. As she runs down the stairs we follow her into her mind. It takes us deep into dark woods.,,0.1707,6.582,439 +5492,848058,Piggy,A bullied overweight teenager sees a glimpse of hope when her tormentors are brutally abducted by a mesmerizing stranger.,2022-10-07,1.5774,6.582,646 +5493,683340,Vengeance,A journalist and podcaster from New York City travels to West Texas in order to report on the death of a girl he was hooking up with.,2022-07-29,1.8259,6.582,420 +5494,536176,Brexit: The Uncivil War,Political strategist Dominic Cummings leads a popular but controversial campaign to convince British voters to leave the European Union from 2015 up until the present day.,2019-01-19,0.955,6.582,329 +5495,411638,The Fury of a Patient Man,"Quiet Jose woos cafe worker Ana, but she is unaware he has intentions other than the purely romantic.",2016-09-09,1.452,6.582,438 +5496,25319,The Masque of the Red Death,"A European prince terrorizes the local peasantry while using his castle as a refuge against the ""Red Death"" plague that stalks the land.",1964-06-24,1.5176,6.582,335 +5497,18126,Hannah Montana: The Movie,"When Miley Stewart (aka pop-star Hannah Montana) gets too caught up in the superstar celebrity lifestyle, her dad decides it's time for a total change of scenery. But sweet niblets! Miley must trade in all the glitz and glamour of Hollywood for some ol' blue jeans on the family farm in Tennessee, and question if she can be both Miley Stewart and Hannah Montana.",2009-04-10,3.4203,6.582,2044 +5498,1894,Star Wars: Episode II - Attack of the Clones,"Following an assassination attempt on Senator Padmé Amidala, Jedi Knights Anakin Skywalker and Obi-Wan Kenobi investigate a mysterious plot that could change the galaxy forever.",2002-05-15,6.7084,6.582,13712 +5499,816,Austin Powers: International Man of Mystery,"As a swinging fashion photographer by day and a groovy British superagent by night, Austin Powers is the '60s' most shagadelic spy. But can he stop megalomaniac Dr. Evil after the bald villain freezes himself and unthaws in the '90s? With the help of sexy sidekick Vanessa Kensington, he just might.",1997-05-02,4.769,6.6,3567 +5500,1082195,The Order,A string of violent robberies in the Pacific Northwest leads veteran FBI agent Terry Husk into a white supremacist plot to overthrow the federal government.,2024-12-05,5.9718,6.58,690 +5501,622855,Jingle Jangle: A Christmas Journey,"An imaginary world comes to life in a holiday tale of an eccentric toymaker, his adventurous granddaughter, and a magical invention that has the power to change their lives forever.",2020-11-06,1.6029,6.581,535 +5502,500840,I'm Thinking of Ending Things,Nothing is as it seems when a woman experiencing misgivings about her new boyfriend joins him on a road trip to meet his parents at their remote farm.,2020-08-28,2.1223,6.581,2032 +5503,22586,The Swan Princess,"The beautiful princess Odette is transformed into a swan by an evil sorcerer's spell. Held captive at an enchanted lake, she befriends Jean-Bob the frog, Speed the turtle and Puffin the bird. Despite their struggle to keep the princess safe, these good-natured creatures can do nothing about the sorcerer's spell, which can only be broken by a vow of everlasting love.",1994-11-18,2.7757,6.581,973 +5504,417859,Puss in Boots,"Long before he even met Shrek, the notorious fighter, lover and outlaw Puss in Boots becomes a hero when he sets off on an adventure with the tough and street smart Kitty Softpaws and the mastermind Humpty Dumpty to save his town. This is the true story of The Cat, The Myth, The Legend... The Boots.",2011-10-27,11.5433,6.58,4261 +5505,20714,12,"A loose remake of “12 Angry Men”, “12” is set in contemporary Moscow where 12 very different men must unanimously decide the fate of a young Chechen accused of murdering his step-father, a Russian army officer. Consigned to a makeshift jury room in a school gymnasium, one by one each man takes center stage to confront, connect, and confess while the accused awaits a verdict and revisits his heartbreaking journey through war in flashbacks.",2007-06-06,1.054,6.58,401 +5506,601666,I Care a Lot,A court-appointed legal guardian defrauds her older clients and traps them under her care. But her latest mark comes with some unexpected baggage.,2021-02-19,3.2222,6.579,2803 +5507,467936,The Children Act,"In the midst of a marital crisis, a High Court judge must decide if she should order a life-saving blood transfusion for a teen with cancer despite his family's refusal to accept medical treatment for religious reasons.",2018-08-01,1.3934,6.579,625 +5508,113160,My First Time,"Zachary is 20 years old. Dark and independent, he collects amorous conquests and school failure. Sarah is 18 years old. First class, fragile, she fills her emotional gaps with perfect control of his life. Nothing should close and yet, the year of the tank, for six months, they will live a love against which nothing can be, the true, the big one that marks a life forever.",2012-01-18,0.5668,6.6,532 +5509,20539,The Crucible,A Salem resident attempts to frame her ex-lover's wife for being a witch in the middle of the 1692 witchcraft trials.,1996-11-27,1.7194,6.579,521 +5510,13667,Better Off Dead...,"High school student Lane Meyer sinks into suicidal depression when his girlfriend dumps him for jock Roy Stalin, the high school ski racing champion. Meanwhile, he has to deal with his eccentric family, a tenacious paperboy and an obnoxious neighbor whose mother is hosting a beautiful French exchange student named Monique.",1985-08-23,3.107,6.6,518 +5511,11430,The Lion King 1½,Timon the meerkat and Pumbaa the warthog are best pals and the unsung heroes of the African savanna. This prequel to the smash Disney animated adventure takes you back -- way back -- before Simba's adventure began. You'll find out all about Timon and Pumbaa and tag along as they search for the perfect home and attempt to raise a rambunctious lion cub.,2004-10-28,4.5675,6.578,3042 +5512,11247,A Cinderella Story,"Routinely exploited by her wicked stepmother, the downtrodden Samantha Montgomery is excited about the prospect of meeting her Internet beau at the school's Halloween dance.",2004-07-16,5.7689,6.579,3274 +5513,109428,Evil Dead,"Mia, a drug addict, is determined to kick the habit. To that end, she asks her brother, David, his girlfriend, Natalie and their friends Olivia and Eric to accompany her to their family's remote forest cabin to help her through withdrawal. Eric finds a mysterious Book of the Dead at the cabin and reads aloud from it, awakening an ancient demon. All hell breaks loose when the malevolent entity possesses Mia.",2013-04-05,5.599,6.578,4772 +5514,70981,Prometheus,"A team of explorers discover a clue to the origins of mankind on Earth, leading them on a journey to the darkest corners of the universe. There, they must fight a terrifying battle to save the future of the human race.",2012-05-30,10.5399,6.578,12663 +5515,10909,Kalifornia,"A journalist duo go on a tour of serial killer murder sites with two companions, unaware that one of them is a serial killer himself.",1993-06-24,1.2543,6.6,814 +5516,10539,James and the Giant Peach,"When the young orphan boy James spills a magic bag of crocodile tongues, he finds himself in possession of a giant peach that flies him away to strange lands.",1996-04-12,3.9967,6.578,1366 +5517,632357,The Unholy,"Alice is a young hearing-impaired girl who, after a supposed visitation from the Virgin Mary, is inexplicably able to hear, speak and heal the sick. As word spreads and people from near and far flock to witness her miracles, a disgraced journalist hoping to revive his career visits the small New England town to investigate. When terrifying events begin to happen all around, he starts to question if these phenomena are the works of the Virgin Mary or something much more sinister.",2021-03-31,5.3434,6.577,2202 +5518,9342,The Mask of Zorro,"It has been twenty years since Don Diego de la Vega fought Spanish oppression in Alta California as the legendary romantic hero, Zorro. Having escaped from prison he transforms troubled bandit Alejandro into his successor, in order to foil the plans of the tyrannical Don Rafael Montero who robbed him of his freedom, his wife and his precious daughter.",1998-07-16,5.7831,6.577,4124 +5519,800158,The Killer,"After a fateful miss, an assassin battles his employers, and himself, on an international manhunt he insists isn't personal.",2023-10-25,5.0546,6.576,2442 +5520,471506,Greta,"A young woman returns a lonely widow’s lost purse, leading to an unlikely relationship between the two — until the young woman discovers the widow might not be all that she seems.",2019-02-28,3.0995,6.576,1384 +5521,16538,"I Love You, Man","Peter Klaven is a successful real estate agent who, upon getting engaged to the woman of his dreams, Zooey, discovers, to his dismay and chagrin, that he has no male friend close enough to serve as his Best Man. Peter immediately sets out to rectify the situation, embarking on a series of bizarre and awkward ""man-dates.""",2009-03-20,2.5551,6.576,1801 +5522,12690,Appaloosa,Two friends hired to police a small town that is suffering under the rule of a rancher find their job complicated by the arrival of a young widow.,2008-09-19,2.049,6.576,1037 +5523,11899,The Muppets Take Manhattan,"When the Muppets graduate from Danhurst College, they take their song-filled senior revue to New York City, only to learn that it isn't easy to find a producer who's willing to back a show starring a frog and a pig. Of course, Kermit the Frog and Miss Piggy won't take no for an answer, launching a search for someone to take them to Broadway.",1984-06-27,1.8654,6.576,393 +5524,412656,Chaos Walking,"Two unlikely companions embark on a perilous adventure through the badlands of an unexplored planet as they try to escape a dangerous and disorienting reality, where all inner thoughts are seen and heard by everyone.",2021-02-24,3.886,6.575,2414 +5525,51917,A Whole Life Ahead,"25-year-old philosophy major Marta faces the ugly truth for many young Italians — a complete lack of career opportunities. While babysitting for single mother Sonia, she starts to work as a telemarketer, experiencing first-hand the fanatical and exploitative rat-race culture pushed on employees while quickly rising through the ranks of the company. Around her revolve people like delusional supervisor Daniela, her womanizing boss Claudio, fragile coworker Lucio ""2"", and well-meaning but inconsistent union rep Giorgio.",2008-03-28,0.8323,6.575,314 +5526,11281,Halloween II,"After failing to kill stubborn survivor Laurie and taking a bullet or six from former psychiatrist Dr. Sam Loomis, Michael Myers has followed Laurie to the Haddonfield Memorial Hospital, where she's been admitted for Myers' attempt on her life. The institution proves to be particularly suited to serial killers, however, as Myers cuts, stabs and slashes his way through hospital staff to reach his favorite victim.",1981-10-30,2.7333,6.6,2133 +5527,332340,Man Up,"A 34 year old single woman, Nancy, hung-over again, exhausted by the endless fruitless set ups by her friends, traveling across London to toast another 10 years of her parent's successful happy magical marriage runs in with a 40 year old divorcee, Jack, who mistakes her for his 24 year old blind date. Nancy, deciding to go with it, happens to hop on the most chaotic yet hilarious journey of her life which neither of them will ever forget.",2015-05-29,1.6917,6.574,1010 +5528,17898,Silver Bullet,"The small city of Tarker's Mills is startled by a series of sadistic murders. The population fears the work of a manic, but sightings of a mysterious, hairy creature soon spread. People lock themselves up at night, but there's one boy who's still outside…",1985-10-10,2.3822,6.574,642 +5529,11298,The Howling,"After a bizarre and near fatal encounter with a serial killer, a newswoman is sent to a rehabilitation center whose inhabitants may not be what they seem.",1981-01-21,2.0868,6.6,817 +5530,9399,Lionheart,"Lyon Gaultier is a deserter in the Foreign Legion arriving in the USA entirely hard up. He finds his brother between life and death and his sister-in-law without the money needed to heal her husband and to maintain her child. To earn the money needed, Gaultier decides to take part in some very dangerous clandestine fights.",1990-06-07,4.7077,6.6,1083 +5531,7518,Over the Hedge,"A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food, by invading the new suburban sprawl that popped up while they were hibernating – and learns a lesson about family himself.",2006-05-17,5.8877,6.573,4606 +5532,668,On Her Majesty's Secret Service,"James Bond tracks his archnemesis, Ernst Blofeld, to a mountaintop retreat in the Swiss alps where he is training an army of beautiful, lethal women. Along the way, Bond falls for Italian contessa Tracy Draco, and marries her in order to get closer to Blofeld.",1969-12-18,4.8996,6.573,1990 +5533,511785,Alex Strangelove,"Alex Truelove is on a quest to lose his virginity, an event eagerly awaited by his patient girlfriend and cheered on with welcome advice by his rowdy friends. But Alex, a super gregarious dude, is oddly unmotivated. A magical house party throws Alex into the presence of Elliot, a hunky college guy, who pegs Alex as gay and flirts hard. Alex is taken aback but after a series of setbacks on the girlfriend front he takes the plunge and learns some interesting new facts about himself.",2018-04-16,2.1032,6.572,1547 +5534,206408,Chinese Puzzle,"Xavier is a 40-year-old father of two who still finds life very complicated. When the mother of his children moves to New York, he can't bear them growing up far away from him and so he decides to move there as well.",2013-12-04,2.2948,6.572,697 +5535,51540,Horrible Bosses,"For Nick, Kurt and Dale, the only thing that would make the daily grind more tolerable would be to grind their intolerable bosses into dust. Quitting is not an option, so, with the benefit of a few-too-many drinks and some dubious advice from a hustling ex-con, the three friends devise a convoluted and seemingly foolproof plan to rid themselves of their respective employers... permanently.",2011-07-08,5.2218,6.573,6508 +5536,12924,The Place Promised in Our Early Days,"In a post-war alternative timeline, Japan is divided into the North, controlled by the Union, and the South, controlled by the United States. A mysterious high tower rises within the borders of the Union. Three high school students promise to cross the border with a self-built airplane and unravel the secret of the tower.",2004-11-20,1.9939,6.6,528 +5537,1172674,The Rat Catcher,"In an English village, a reporter and a mechanic listen to a ratcatcher explain his clever plan to outwit his prey.",2023-09-28,1.5486,6.571,446 +5538,974950,Emilia Pérez,"Rita, an underrated lawyer working for a large law firm more interested in getting criminals out of jail than bringing them to justice, is hired by the leader of a criminal organization.",2024-08-21,5.446,6.572,1747 +5539,489927,The Kindergarten Teacher,"Lisa Spinelli is a Staten Island teacher who is unusually devoted to her students. When she discovers one of her five-year-olds is a prodigy, she becomes fascinated with the boy, ultimately risking her family and freedom to nurture his talent.",2018-09-23,1.3788,6.571,358 +5540,462883,Woody Woodpecker,Woody Woodpecker enters a turf war with a big city lawyer wanting to tear down his home in an effort to build a house to flip.,2017-10-05,2.4245,6.571,744 +5541,413644,The Son of Bigfoot,"Teenage outsider Adam sets out on an epic and daring quest to uncover the mystery behind his long-lost dad, only to find out that he is none other than the legendary Bigfoot! He has been hiding deep in the forest for years to protect himself and his family from HairCo., a giant corporation eager to run scientific experiments with his special DNA. As father and son start making up for lost time after the boy's initial disbelief, Adam soon discovers that he too is gifted with superpowers beyond his imagination. But little do they know, HairCo. is on their tail as Adam's traces have led them to Bigfoot!",2017-07-26,3.2236,6.571,500 +5542,410117,Lady Macbeth,"Rural England, 1865. Katherine, suffocated by her loveless marriage to a bitter man and restrained by his father's tyranny, unleashes an irresistible force within her, so powerful that she will stop at nothing to get what she wants.",2016-12-12,1.7227,6.571,780 +5543,164457,Out of the Furnace,"Two brothers live in the economically-depressed Rust Belt, when a cruel twist of fate lands one in prison. His brother is then lured into one of the most violent crime rings in the Northeast.",2013-11-12,1.9617,6.571,2013 +5544,10894,May,A socially awkward veterinary assistant with a lazy eye and obsession with perfection descends into depravity after developing a crush on a boy with perfect hands.,2003-04-11,1.461,6.6,651 +5545,8488,Hitch,"Dating coach Alex 'Hitch' Hitchens mentors a bumbling client, Albert, who hopes to win the heart of the glamorous Allegra Cole. While Albert makes progress, Hitch faces his own romantic setbacks when proven techniques fail to work on Sara Melas, a tabloid reporter digging for dirt on Allegra Cole's love life. When Sara discovers Hitch's connection to Albert – now Allegra's boyfriend – it threatens to destroy both relationships.",2005-02-11,5.4008,6.571,5957 +5546,1945,Nell,"In a remote woodland cabin, a small town doctor discovers Nell — a beautiful young hermit woman with many secrets.",1994-12-23,1.218,6.571,520 +5547,72431,Red Tails,"The story of the Tuskegee Airmen, the first African-American pilots to fly in a combat squadron during World War II.",2012-01-19,2.2228,6.57,652 +5548,48289,The Debt,"Rachel Singer is a former Mossad agent who tried to capture a notorious Nazi war criminal – the Surgeon of Birkenau – in a secret Israeli mission that ended with his death on the streets of East Berlin. Now, 30 years later, a man claiming to be the doctor has surfaced, and Rachel must return to Eastern Europe to uncover the truth. Overwhelmed by haunting memories of her younger self and her two fellow agents, the still-celebrated heroine must relive the trauma of those events and confront the debt she has incurred.",2010-09-30,1.5232,6.57,913 +5549,10389,The Eye,"A blind concert violinist gets a cornea transplant allowing her to see again. However, she gets more than she bargained for when she realizes her new eye can see ghosts. She sets out to find the origins of the cornea and discover the fate of its former host.",2002-05-09,1.8011,6.57,431 +5550,3049,Ace Ventura: Pet Detective,"He's Ace Ventura: Pet Detective. Jim Carrey is on the case to find the Miami Dolphins' missing mascot and quarterback Dan Marino. He goes eyeball to eyeball with a man-eating shark, stakes out the Miami Dolphins and woos and wows the ladies. Whether he's undercover, under fire or underwater, he always gets his man… or beast!",1994-02-04,6.3335,6.57,6031 +5551,620881,The Perfect Secret,"Seven friends - three women and four men - meet for dinner. Everyone should put their cell phone on the table. No matter what message comes in - anyone can read it and listen to the phone calls. However, this leads to a lot of chaos.",2019-10-31,0.5606,6.569,318 +5552,579047,Reminiscence,"Nicolas Bannister, a rugged and solitary veteran living in a near-future Miami flooded by rising seas, is an expert in a dangerous occupation: he offers clients the chance to relive any memory they desire. His life changes when he meets a mysterious young woman named Mae. What begins as a simple matter of lost and found becomes a passionate love affair. But when a different client's memories implicate Mae in a series of violent crimes, Bannister must delve through the dark world of the past to uncover the truth about the woman he fell for.",2021-08-18,2.3355,6.569,1842 +5553,10818,Water Lilies,"Set during a sultry summer in a French suburb, Marie is desperate to join the local pool's synchronized swimming team, but is her interest solely for the sake of sport or for a chance to get close to Floriane, the bad girl of the team? Sciamma, and the two leads, capture the uncertainty of teenage sexuality with a sympathetic eye in this delicate drama of the angst of coming-of-age.",2007-05-17,2.3259,6.569,441 +5554,6950,Outbreak,"A deadly airborne virus finds its way into the USA and starts killing off people at an epidemic rate. Col. Sam Daniels' job is to stop the virus spreading from a small town, which must be quarantined, and to prevent an over reaction by the White House.",1995-03-10,3.2268,6.569,2346 +5555,253306,Housebound,"When Kylie Bucknell is sentenced to home detention, she's forced to come to terms with her unsociable behaviour, her blabbering mother and a hostile spirit who seems less than happy about the new living arrangement.",2014-09-04,0.7432,6.568,864 +5556,75174,The Grey,"Following a grueling five-week shift at an Alaskan oil refinery, workers led by sharpshooter John Ottway are flying home for a much-needed vacation. But a brutal storm causes their plane to crash in the frozen wilderness, and only eight men, including Ottway, survive. As they trek southward toward civilization and safety, Ottway and his companions must battle mortal injuries, the icy elements, and a pack of hungry wolves.",2012-01-26,4.7484,6.569,3936 +5557,64678,The Art of Getting By,"George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit.",2011-06-17,1.5946,6.6,1318 +5558,31007,Welcome to the Rileys,"Years after their teenage daughter’s death, Lois and Doug Riley, an upstanding Indiana couple, are frozen by estranging grief. Doug escapes to New Orleans on a business trip. Compelled by urgencies he doesn’t understand, he insinuates himself into the life of an underage hooker, becoming her platonic guardian.",2010-10-29,0.9808,6.568,412 +5559,21755,The Brothers Bloom,"The Brothers Bloom are the best con men in the world, swindling millionaires with complex scenarios of lust and intrigue. Now they've decided to take on one last job – showing a beautiful and eccentric heiress the time of her life with a romantic adventure that takes them around the world.",2008-09-09,1.4336,6.6,666 +5560,11521,Little Man Tate,"Dede is a sole parent trying to bring up her son Fred. When it is discovered that Fred is a genius, she is determined to ensure that Fred has all the opportunities that he needs, and that he is not taken advantage of by people who forget that his extremely powerful intellect is harboured in the body and emotions of a child.",1991-09-06,1.961,6.568,315 +5561,10215,Sliding Doors,"London publicist Helen, effortlessly slides between parallel storylines that show what happens when she does or does not catch a train back to her apartment. Love. Romantic entanglements. Deception. Trust. Friendship. Comedy. All come into focus as the two stories shift back and forth, overlap and surprisingly converge.",1998-04-23,1.831,6.568,1360 +5562,7211,Dan in Real Life,"Advice columnist Dan Burns is an expert on relationships, but somehow struggles to succeed as a brother, a son and a single parent to three precocious daughters. Things get even more complicated when Dan finds out that the woman he falls in love with is actually his brother's new girlfriend.",2007-10-26,2.5562,6.568,1269 +5563,4564,Sex and the City,A New York writer on sex and love is finally getting married to her Mr. Big. But her three best girlfriends must console her after one of them inadvertently leads Mr. Big to jilt her.,2008-05-12,5.2315,6.568,2172 +5564,2788,Reality Bites,"A small circle of friends suffering from post-collegiate blues must confront the hard truth about life, love and the pursuit of gainful employment. As they struggle to map out survival guides for the future, the Gen-X quartet soon begins to realize that reality isn't all it's cracked up to be.",1994-02-18,1.5755,6.6,754 +5565,716594,No Man of God,The complicated relationship that formed between the FBI analyst Bill Hagmaier and serial killer Ted Bundy during Bundy's final years on death row.,2021-08-19,1.2522,6.567,305 +5566,413518,Pinocchio,"In this live-action adaptation of the beloved fairytale, old woodcarver Geppetto fashions a wooden puppet, Pinocchio, who magically comes to life. Pinocchio longs for adventure and is easily led astray, encountering magical beasts, fantastical spectacles, while making friends and foes along his journey. However, his dream is to become a real boy, which can only come true if he finally changes his ways.",2019-12-19,2.7176,6.567,1525 +5567,10890,Stripes,"Hard-luck cabbie John Winger, directionless after being fired from his job and dumped by his girlfriend, enlists in the U.S. Army with his close pal, Russell Ziskey. After his barely satisfactory performance in basic training, the irreverent Winger emerges as the figurehead for a ragtag band of misfits. However, his hijinks threaten to cause an international scandal when he inadvertently commandeers a military assault vehicle behind enemy lines.",1981-06-26,2.7578,6.6,947 +5568,10493,Dead Calm,"An Australian couple takes a sailing trip in the Pacific to get over the recent loss of their son. While on the open sea, they come across a sinking ship with one survivor who is not at all what he seems.",1989-04-07,4.2288,6.6,779 +5569,5955,The Pledge,A police chief about to retire pledges to help a woman find her daughter's killer.,2001-01-19,4.9478,6.569,1117 +5570,732670,LEGO Star Wars Holiday Special,"As her friends prep for a Life Day holiday celebration, Rey journeys with BB-8 on a quest to gain a deeper knowledge of the Force at a mysterious Jedi Temple. There, she embarks on a cross-timeline adventure through beloved moments in Star Wars history, coming into contact with iconic heroes and villains from all eras of the saga. But will she make it back in time for the Life Day feast?",2020-11-17,1.5492,6.566,347 +5571,28696,The Wild One,"The Black Rebels Motorcycle Club ride into the small California town of Wrightsville, eager to raise hell. Brooding gang leader Johnny Strabler takes a liking to Kathie, the daughter of the local lawman, as another club rolls into town.",1953-12-30,1.9225,6.566,311 +5572,12637,"New York, New York","An egotistical saxophone player and a young singer meet on V-J Day and embark upon a strained and rocky romance, even as their careers begin a long uphill climb.",1977-06-21,1.4565,6.566,480 +5573,760741,Beast,"A recently widowed man and his two teenage daughters travel to a game reserve in South Africa. However, their journey of healing soon turns into a fight for survival when a bloodthirsty lion starts to stalk them.",2022-08-11,4.2815,6.565,1631 +5574,480001,The Art of Self-Defense,"Casey is attacked at random on the street and enlists in a local dojo led by a charismatic and mysterious Sensei in an effort to learn how to defend himself. What he uncovers is a sinister world of fraternity, violence and hypermasculinity and a woman fighting for her place in it.",2019-07-12,2.4444,6.6,766 +5575,924482,The Ledge,"A rock climbing adventure between two friends turns into a terrifying nightmare. After Kelly captures the murder of her best friend on camera, she becomes the next target of a tight knit group of friends who will stop at nothing to destroy the evidence and anyone in their way.",2022-02-18,3.8107,6.564,373 +5576,424139,Halloween,"Laurie Strode comes to her final confrontation with Michael Myers, the masked figure who has haunted her since she narrowly escaped his killing spree on Halloween night four decades ago.",2018-10-18,6.6742,6.6,4866 +5577,112336,Hitchcock,"Following his great success with ""North by Northwest,"" director Alfred Hitchcock makes a daring choice for his next project: an adaptation of Robert Bloch's novel ""Psycho."" When the studio refuses to back the picture, Hitchcock decides to pay for it himself in exchange for a percentage of the profits. His wife, Alma Reville, has serious reservations about the film but supports him nonetheless. Still, the production strains the couple's marriage.",2012-11-22,2.6583,6.564,1560 +5578,38410,The Poughkeepsie Tapes,"When hundreds of videotapes showing torture, murder and dismemberment are found in an abandoned house, they reveal a serial killer's decade-long reign of terror and become the most disturbing collection of evidence homicide detectives have ever seen.",2007-04-27,3.1108,6.564,683 +5579,19898,Pandorum,"Two crew members wake up on an abandoned spacecraft with no idea who they are, how long they've been asleep, or what their mission is. The two soon discover they're actually not alone – and the reality of their situation is more horrifying than they could have imagined.",2009-09-08,3.5782,6.563,2483 +5580,14429,Drive Me Crazy,"Nicole and Chase live next door to each other but are worlds apart. However, they plot a scheme to date each other in order to attract the interest and jealousy of their respective romantic prey. But in the mist of planning a gala centennial celebration, Nicole and Chase find that the one they always wanted was closer than they ever thought.",1999-10-01,1.5595,6.6,401 +5581,13105,Mr. Mom,"Jack and Caroline are a couple making a decent living when Jack suddenly loses his job. They agree that he should stay at home and look after the house while Caroline works. It's just that he's never done it before, and really doesn't have a clue...",1983-07-22,1.7044,6.564,329 +5582,1893,Star Wars: Episode I - The Phantom Menace,"Anakin Skywalker, a young slave strong with the Force, is discovered on Tatooine. Meanwhile, the evil Sith have returned, enacting their plot for revenge against the Jedi.",1999-05-19,7.3701,6.564,15151 +5583,1586,Secret Window,"Mort Rainey, a writer just emerging from a painful divorce with his ex-wife, is stalked at his remote lake house by a psychotic stranger and would-be scribe who claims Rainey swiped his best story idea. But as Rainey endeavors to prove his innocence, he begins to question his own sanity.",2004-03-12,3.401,6.564,3753 +5584,163,Ocean's Twelve,"Despite pulling off one of the biggest heists in Las Vegas history and splitting the $160 million take, each of the infamous Ocean's crew have tried to go straight, lay low and live a legit life ... but that's proven to be a challenge. Casino owner Terry Benedict demands that Danny Ocean return the money, plus millions more in interest. Unable to come up the cash, the crew is forced to come together to pull off another series of heists, this time in Rome, Paris, and Amsterdam – but a Europol agent is hot on their heels.",2004-12-09,5.7786,6.564,7496 +5585,645788,The Protégé,"Rescued as a child by the legendary assassin Moody and trained in the family business, Anna is the world’s most skilled contract killer. When Moody, the man who was like a father to her and taught her everything she needs to know about trust and survival, is brutally killed, Anna vows revenge. As she becomes entangled with an enigmatic killer whose attraction to her goes way beyond cat and mouse, their confrontation turns deadly and the loose ends of a life spent killing will weave themselves ever tighter.",2021-08-19,3.8211,6.563,1056 +5586,614479,Insidious: The Red Door,"To put their demons to rest once and for all, Josh Lambert and a college-aged Dalton Lambert must go deeper into The Further than ever before, facing their family's dark past and a host of new and more horrifying terrors that lurk behind the red door.",2023-07-05,7.6046,6.563,1815 +5587,17689,The Gauntlet,Phoenix cop Ben Shockley is well on his way to becoming a derelict when he is assigned to transport a witness from Las Vegas. The witness turns out to be a belligerent prostitute with mob ties—and incriminating information regarding a high-ranking official.,1977-12-17,2.4926,6.563,568 +5588,11468,The Salton Sea,"After the murder of his beloved wife, a man in search of redemption is set adrift in a world where nothing is as it seems. On his journey, he befriends slacker Jimmy ""The Finn"", becomes involved in rescuing his neighbor Colette from her own demons, and gets entangled in a web of deceit full of unexpected twists and turns.",2002-02-12,1.5598,6.563,331 +5589,10652,Hamburger Hill,"The men of Bravo Company are facing a battle that's all uphill… up Hamburger Hill. Fourteen war-weary soldiers are battling for a mud-covered mound of earth so named because it chews up soldiers like chopped meat. They are fighting for their country, their fellow soldiers and their lives. War is hell, but this is worse. Hamburger Hill tells it the way it was, the way it really was. It's a raw, gritty and totally unrelenting dramatic depiction of one of the fiercest battles of America's bloodiest war. This happened. Hamburger Hill - war at its worst, men at their best.",1987-08-07,1.4657,6.6,479 +5590,613099,The Legacy of the Bones,Inspector Amaia Salazar must return to the Baztan valley in order to solve a series of suicides that seem to follow a similar pattern.,2019-12-05,1.9273,6.562,437 +5591,241259,Alice Through the Looking Glass,Alice Kingsleigh returns to Underland and faces a new adventure in saving the Mad Hatter.,2016-05-25,6.3004,6.562,6560 +5592,88005,Seeking a Friend for the End of the World,"As an asteroid nears Earth, a man finds himself alone after his wife leaves in a panic. He decides to take a road trip to reunite with his high school sweetheart. Accompanying him is a neighbor who inadvertently puts a wrench in his plan.",2012-06-22,1.9693,6.563,2149 +5593,15655,The Tigger Movie,"Winnie the Pooh, Piglet, Owl, Kanga, Roo, and Rabbit are preparing a suitable winter home for Eeyore, the perennially dejected donkey, but Tigger's continual bouncing interrupts their efforts. Rabbit suggests that Tigger go find others of his kind to bounce with, but Tigger thinks ""the most wonderful thing about tiggers is"" he's ""the only one!"" Just in case though, the joyously jouncy feline sets out to see if he can find relatives.",2000-02-11,2.7291,6.6,586 +5594,1865,Pirates of the Caribbean: On Stranger Tides,"Captain Jack Sparrow crosses paths with a woman from his past, and he's not sure if it's love — or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge, the ship of the formidable pirate Blackbeard, Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.",2011-05-15,15.3337,6.561,14416 +5595,440626,Sobibor,"The film is based on a real story that happened in 1943 in the Sobibor concentration camp in German-occupied Poland. The main character of the movie is the Soviet-Jewish soldier Alexander Pechersky, who at that time was serving in the Red Army as a lieutenant. In October 1943, he was captured by the Nazis and deported to the Sobibor concentration camp, where Jews were being exterminated in gas chambers. But, in just 3 weeks, Alexander was able to plan an international uprising of prisoners from Poland and Western Europe. This uprising resulted in being the only successful one throughout the war, which led to the largest escape of prisoners from a Nazi concentration camp.",2018-05-03,1.6443,6.6,305 +5596,433310,When We First Met,"Using a magical photo booth that sends him back in time, Noah relives the night he met Avery over and over, trying to persuade her to fall for him.",2018-02-08,2.3544,6.561,2318 +5597,73358,Page Eight,"Johnny is a long-serving MI5 officer. His boss dies suddenly, leaving behind an inexplicable file which threatens the stability of the organisation.",2011-08-28,1.4658,6.561,311 +5598,38575,The Karate Kid,"12-year-old Dre Parker could've been the most popular kid in Detroit, but his mother's latest career move has landed him in China. Dre immediately falls for his classmate Mei Ying but the cultural differences make such a friendship impossible. Even worse, Dre's feelings make him an enemy of the class bully, Cheng. With no friends in a strange land, Dre has nowhere to turn but maintenance man Mr. Han, who is a kung fu master. As Han teaches Dre that kung fu is not about punches and parries, but maturity and calm, Dre realizes that facing down the bullies will be the fight of his life.",2010-06-10,12.4165,6.561,6274 +5599,36586,Blade II,"Blade forms an uneasy alliance with the vampire council in order to combat the Reapers, who are feeding on vampires.",2002-03-22,4.7774,6.561,4917 +5600,492719,Godzilla: City on the Edge of Battle,"Humanity's desperate battle to reclaim the Earth from Godzilla continues. The key to defeating the King of the Monsters may be Mechagodzilla, a robotic weapon thought to have been lost nearly 20,000 years ago.",2018-05-18,1.7603,6.6,375 +5601,329712,The Measure of a Man,"At the age of 51 and after 20 months on unemployment, Thierry starts a new job that soon brings him face to face with a moral dilemma. How much is he willing to accept to keep his job?",2015-03-16,1.7306,6.565,352 +5602,206647,Spectre,"A cryptic message from Bond’s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive, Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.",2015-10-26,6.747,6.56,10784 +5603,44945,Trust,"A suburban family is torn apart when fourteen-year-old Annie meets her first boyfriend online. After months of communicating via online chat and phone, Annie discovers her friend is not who he originally claimed to be. Shocked into disbelief, her parents are shattered by their daughter's actions and struggle to support her as she comes to terms with what has happened to her once innocent life.",2010-09-10,2.504,6.56,994 +5604,19277,In Hell,A man must survive a prison where hardened criminals battle to the death for the warden's entertainment.,2003-11-24,2.9595,6.56,555 +5605,1226578,Longlegs,"FBI Agent Lee Harker is a gifted new recruit assigned to the unsolved case of an elusive serial killer. As the case takes complex turns, unearthing evidence of the occult, Harker discovers a personal connection to the merciless killer and must race against time to stop him before he claims the lives of another innocent family.",2024-07-10,8.8717,6.559,2169 +5606,551804,Freaky,"A mystical, ancient dagger causes a notorious serial killer to magically switch bodies with a 17-year-old girl.",2020-11-12,2.9051,6.559,1709 +5607,339408,The Birth of a Nation,"Nat Turner, a former slave in America, leads a liberation movement in 1831 to free African-Americans in Virginia that results in a violent retaliation from whites.",2016-09-09,2.6301,6.559,541 +5608,18032,The Secret of Moonacre,"When 13 year old Maria Merryweather's father dies, leaving her orphaned and homeless, she is forced to leave her luxurious London life to go and live with Sir Benjamin, an eccentric uncle she didn't know she had, at the mysterious Moonacre Manor.",2009-02-06,2.3594,6.559,468 +5609,9873,F/X,"A movies special effects man is hired by a government agency to help stage the assassination of a well known gangster. When the agency double cross him, he uses his special effects to trap the gangster and the corrupt agents.",1986-02-07,2.1981,6.559,464 +5610,823855,I Am All Girls,A special crimes investigator forms an unlikely bond with a serial killer to bring down a global child sex trafficking syndicate.,2021-05-14,1.197,6.6,309 +5611,348350,Solo: A Star Wars Story,"Through a series of daring escapades deep within a dark and dangerous criminal underworld, Han Solo meets his mighty future copilot Chewbacca and encounters the notorious gambler Lando Calrissian.",2018-05-15,6.1772,6.558,8876 +5612,28260,Return of the Living Dead III,"Having recently witnessed the horrific results of a top secret project to bring the dead back to life, a distraught teenager performs the operation on his girlfriend after she's killed in a motorcycle accident.",1993-10-01,2.3067,6.558,875 +5613,8461,Funny Games,"When Ann, husband George, and son Georgie arrive at their holiday home they are visited by a pair of polite and seemingly pleasant young men. Armed with deceptively sweet smiles and some golf clubs, they proceed to terrorize and torture the tight-knit clan, giving them until the next day to survive.",2008-03-14,2.676,6.558,2125 +5614,435921,It’s the Law,"A small Sicilian town elects a new, honest major but quickly learns that playing by the rules is not as easy as it seems.",2017-01-19,0.7084,6.557,766 +5615,339259,The Man with the Iron Heart,"With the Third Reich at its peak in 1942, the Czech resistance in London plans the most ambitious military operation of WWII – Anthropoid. Two young recruits are sent to Prague to assassinate the most ruthless Nazi leader – Reinhard Heydrich, head of the Reich Security Main Office, the Gestapo and the architect of the Final Solution.",2017-05-25,1.9111,6.6,787 +5616,227156,The Giver,"In a seemingly perfect community, without war, pain, suffering, differences or choice, a young boy is chosen to learn from an elderly man about the true pain and pleasure of the ""real"" world.",2014-08-13,4.0581,6.556,4501 +5617,68812,The Iceman,"The true story of Richard Kuklinski, the notorious contract killer and family man.",2012-09-01,2.3498,6.556,1062 +5618,12106,The Quick and the Dead,"A mysterious woman comes to compete in a quick-draw elimination tournament, in a town taken over by a notorious gunman.",1995-02-09,4.541,6.555,1821 +5619,9276,The Faculty,"When some very creepy things start happening around school, the kids at Herrington High make the chilling discovery that confirms their worst suspicions: their teachers really are from another planet!",1998-12-25,3.5561,6.556,2088 +5620,330,The Lost World: Jurassic Park,"Four years after Jurassic Park's genetically bred dinosaurs ran amok, multimillionaire John Hammond shocks chaos theorist Ian Malcolm by revealing that he has been breeding more beasties at a secret location. Malcolm, his paleontologist ladylove and a wildlife videographer join an expedition to document the lethal lizards' natural behavior in this action-packed thriller.",1997-05-23,0.9528,6.557,8773 +5621,1139829,Orion and the Dark,"A boy with an active imagination faces his fears on an unforgettable journey through the night with his new friend: a giant, smiling creature named Dark.",2024-02-01,4.6215,6.555,576 +5622,864168,Joy Ride,"When Audrey's business trip to Asia goes sideways, she enlists the aid of Lolo, her irreverent, childhood best friend who also happens to be a hot mess; Kat, her college friend turned Chinese soap star; and Deadeye, Lolo's eccentric cousin. Their no-holds-barred, epic experience becomes a journey of bonding, friendship, belonging, and wild debauchery that reveals the universal truth of what it means to know and love who you are.",2023-06-22,2.6665,6.557,428 +5623,60309,The Conspirator,"Mary Surratt is the lone female charged as a co-conspirator in the assassination trial of Abraham Lincoln. As the whole nation turns against her, she is forced to rely on her reluctant lawyer to uncover the truth and save her life.",2011-04-15,1.4391,6.555,460 +5624,46528,The Warrior's Way,A warrior-assassin is forced to hide in a small town in the American Badlands after refusing a mission.,2010-12-01,2.0624,6.555,635 +5625,25155,The Stepfather,"Seemingly mild-mannered Henry Morrison has just murdered his entire family. After adopting a new identity and skipping town, he begins building a new relationship with a widow and her teenage daughter. However, he soon begins struggling to hide his true identity and maintain a grip on reality.",1987-01-23,1.9786,6.555,347 +5626,2882,Hunting & Gathering,"When Camille falls ill, she is forced to live with Philibert and Franck.",2007-03-21,1.2461,6.555,417 +5627,457136,Mary Queen of Scots,"In 1561, Mary Stuart, widow of the King of France, returns to Scotland, reclaims her rightful throne and menaces the future of Queen Elizabeth I as ruler of England, because she has a legitimate claim to the English throne. Betrayals, rebellions, conspiracies and their own life choices imperil both Queens. They experience the bitter cost of power, until their tragic fate is finally fulfilled.",2018-12-07,2.8968,6.554,1845 +5628,10414,The Mighty Ducks,"After reckless young lawyer Gordon Bombay gets arrested for drunk driving, he must coach a kids hockey team for his community service. Gordon has experience on the ice, but isn't eager to return to hockey, a point hit home by his tense dealings with his own former coach, Jack Reilly. The reluctant Gordon eventually grows to appreciate his team, which includes promising young Charlie Conway, and leads them to take on Reilly's tough players.",1992-10-02,2.0629,6.6,922 +5629,565743,The Vast of Night,"At the dawn of the space-race, two radio-obsessed teens discover a strange frequency over the airwaves in what becomes the most important night of their lives and in the history of their small town.",2019-06-01,3.5136,6.553,1085 +5630,438145,Black '47,"In 1847, when Ireland is in the grip of the Great Famine that has ravaged the country for two long years, Feeney, a hardened Irish Ranger who has been fighting for the British Army abroad, returns home to reunite with his estranged family, only to discover the cruelest reality, a black land where death reigns.",2018-09-05,1.5222,6.553,313 +5631,87499,The East,An operative for an elite private intelligence firm finds her priorities irrevocably changed after she is tasked with infiltrating an anarchist group known for executing covert attacks upon major corporations.,2013-05-31,1.4864,6.6,802 +5632,30943,The Deep End of the Ocean,"A three-year-old boy disappears during his mother's high school reunion. Nine years later, by chance, he turns up in the town in which the family has just relocated.",1999-03-12,2.494,6.553,497 +5633,12133,Step Brothers,"Brennan Huff and Dale Doback might be grown men. But that doesn't stop them from living at home and turning into jealous, competitive stepbrothers when their single parents marry. Brennan's constant competition with Dale strains his mom's marriage to Dale's dad, leaving everyone to wonder whether they'll ever see eye to eye.",2008-07-25,3.9396,6.6,3219 +5634,11814,Weird Science,"Two unpopular teenagers, Gary and Wyatt, fail at all attempts to be accepted by their peers. Their desperation to be liked leads them to ""create"" a woman via their computer. Their living and breathing creation is a gorgeous woman, Lisa, whose purpose is to boost their confidence level by putting them into situations which require Gary and Wyatt to act like men.",1985-08-01,3.3501,6.6,1451 +5635,8413,Event Horizon,"In 2047, a group of astronauts are sent to investigate and salvage the starship Event Horizon which disappeared mysteriously seven years before on its maiden voyage. However, it soon becomes evident that something sinister resides in its corridors.",1997-08-15,4.4236,6.6,3021 +5636,274479,Joy,A story based on the life of a struggling Long Island single mom who became one of the country's most successful entrepreneurs.,2015-12-24,2.7448,6.552,4174 +5637,273477,Scouts Guide to the Zombie Apocalypse,"Three scouts and lifelong friends join forces with one badass cocktail waitress to become the world’s most unlikely team of heroes. When their peaceful town is ravaged by a zombie invasion, they’ll fight for the badge of a lifetime and put their scouting skills to the test to save mankind from the undead.",2015-10-23,11.421,6.552,1985 +5638,15739,Annie,"An orphan in a facility run by the mean Miss Hannigan, Annie believes that her parents left her there by mistake. When a rich man named Oliver ""Daddy"" Warbucks decides to let an orphan live at his home to promote his image, Annie is selected. While Annie gets accustomed to living in Warbucks' mansion, she still longs to meet her parents. So Warbucks announces a search for them and a reward, which brings out many frauds.",1982-05-21,3.1517,6.552,729 +5639,11551,Small Soldiers,"When missile technology is used to enhance toy action figures, the toys soon begin to take their battle programming too seriously.",1998-07-10,4.1812,6.6,2205 +5640,11348,Fragile,"Haunted by memories of a patient's death, a nurse takes a job at an antiquated hospital for children. Soon she learns that the kids fear a ghost that prowls the floors and will not allow anyone to leave. Amy tries to protect them and convince the other staffers of the evil that lurks there.",2005-10-14,1.886,6.552,596 +5641,5139,The Fox and the Child,"A young girl of about 10 years lives in a solitary peasant's house on the edge of the jurassic mountains in the East of France. One day in autumn, when she is on her way to school through the forest, she observes a hunting fox. Of course, the fox flees from her, but the girl feels a strong desire to meet the fox again.",2007-12-27,1.1125,6.6,349 +5642,628914,Queenpins,"Bored and frustrated suburban homemaker Connie and her best pal JoJo, a vlogger with dreams, turn a hobby into a multi-million-dollar counterfeit coupon caper. After firing off a letter to the conglomerate behind a box of cereal gone stale, and receiving an apology along with dozens of freebies, the duo hatch an illegal coupon club scheme that scams millions from mega-corporations and delivers deals to legions of fellow coupon clippers. On the trail to total coupon dominance, a hapless Loss Prevention Officer from the local supermarket chain joins forces with a determined U.S. Postal Inspector in hot pursuit of these newly minted “Queenpins” of pink collar crime.",2021-08-26,2.3021,6.551,458 +5643,14136,The Love Bug,"Down-on-his-luck race car driver Jim Douglas teams up with a little VW Bug that has a mind of its own, not realizing Herbie's worth until a sneaky rival plots to steal him.",1968-12-23,2.1363,6.6,612 +5644,1232546,Until Dawn,"One year after her sister Melanie mysteriously disappeared, Clover and her friends head into the remote valley where she vanished in search of answers. Exploring an abandoned visitor center, they find themselves stalked by a masked killer and horrifically murdered one by one...only to wake up and find themselves back at the beginning of the same evening.",2025-04-23,27.3379,6.549,906 +5645,967585,Alibi.com 2,"After closing his agency Alibi.com and promising Flo that he would never lie to her again, Greg's new life became quiet, too quiet... Not for long! When he decides to propose to Flo, Greg is up against the wall and has to introduce his family. But with his crooked father and his ex-charm actress mother, this could ruin his future union. He has no choice but to reopen his agency with his former accomplices for an ultimate Alibi and to find more presentable fake parents.",2023-01-07,1.516,6.5,449 +5646,458576,Monster Hunter,"A portal transports Cpt. Artemis and an elite unit of soldiers to a strange world where powerful monsters rule with deadly ferocity. Faced with relentless danger, the team encounters a mysterious hunter who may be their only hope to find a way home.",2020-12-03,3.6357,6.55,3411 +5647,10650,Sudden Impact,"When a young rape victim takes justice into her own hands and becomes a serial killer, it's up to Dirty Harry Callahan, on suspension from the SFPD, to bring her to justice.",1983-12-08,2.5282,6.55,940 +5648,375366,The Girl with All the Gifts,"In the future, a strange fungus has changed nearly everyone into thoughtless, flesh-eating monsters. When a scientist and a teacher find a girl who seems to be immune to the fungus, they all begin a journey to save humanity.",2016-09-23,4.8914,6.549,2053 +5649,274857,King Arthur: Legend of the Sword,"When the child Arthur’s father is murdered, Vortigern, Arthur’s uncle, seizes the crown. Robbed of his birthright and with no idea who he truly is, Arthur comes up the hard way in the back alleys of the city. But once he pulls the sword Excalibur from the stone, his life is turned upside down and he is forced to acknowledge his true legacy... whether he likes it or not.",2017-05-10,6.3279,6.549,5834 +5650,9429,A Night at the Roxbury,"Despite being well into adulthood, brothers Doug and Steve Butabi still live at home and work in the flower shop owned by their dad. They exist only to hit on women at discos, though they're routinely unsuccessful until a chance run-in with Richard Grieco gets them inside the swank Roxbury club. Mistaken for high rollers, they meet their dream women, Vivica and Cambi, and resolve to open a club of their own.",1998-10-01,3.3311,6.5,937 +5651,8665,K-19: The Widowmaker,"When Russia's first nuclear submarine malfunctions on its maiden voyage, the crew must race to save the ship and prevent a nuclear disaster.",2002-07-19,3.0266,6.549,1081 +5652,335977,Indiana Jones and the Dial of Destiny,"Finding himself in a new era, and approaching retirement, Indy wrestles with fitting into a world that seems to have outgrown him. But as the tentacles of an all-too-familiar evil return in the form of an old rival, Indy must don his hat and pick up his whip once more to make sure an ancient and powerful artifact doesn't fall into the wrong hands.",2023-06-25,9.0498,6.547,3751 +5653,125521,Slayers Return,"Lina Inverse and Naga the White Serpent are back! What begins as a routine bandit-stomping turns into the adventure of a lifetime involving magical golems, an ancient Elven weapon and even someone bent on destroying the world. It's a predicament only Lina and Naga could get themselves in to.",1996-08-03,0.7144,6.5,2071 +5654,14024,Raise Your Voice,"A coming-of-age story centered around a small-town singer brokenhearted by the death of her brother in a car crash, who had secretly submitted her for a summer session at a performing arts academy in Los Angeles. In the academy, she experiences a whole new way of life in the big city, far from the small town lifestyle she's used to.",2004-08-10,1.8321,6.5,840 +5655,11887,High School Musical 3: Senior Year,"As seniors in high school, Troy and Gabriella struggle with the idea of being separated from one another as college approaches. Along with the rest of the Wildcats, they stage a spring musical to address their experiences, hopes and fears about their future.",2008-10-11,3.4093,6.548,3519 +5656,10947,High School Musical,A popular high school athlete and an academically gifted girl get roles in the school musical and develop a friendship that threatens East High's social order.,2006-01-20,3.2066,6.548,4653 +5657,9707,Bubba Ho-tep,"Bubba Ho-tep tells the ""true"" story of what really did become of Elvis Presley. We find Elvis as an elderly resident in an East Texas rest home, who switched identities with an Elvis impersonator years before his ""death,"" then missed his chance to switch back. He must team up with JFK and fight an ancient Egyptian mummy for the souls of their fellow residents.",2002-06-09,1.2119,6.548,643 +5658,293167,Kong: Skull Island,"Explore the mysterious and dangerous home of the king of the apes as a team of explorers ventures deep inside the treacherous, primordial island.",2017-03-08,8.1799,6.547,10743 +5659,10412,Romper Stomper,"Nazi skinheads in Melbourne take out their anger on local Vietnamese, who are seen as threatening racial purity. Finally the Vietnamese have had enough and confront the skinheads in an all-out confrontation, sending the skinheads running. A woman who is prone to epileptic seizures joins the skins' merry band, and helps them on their run from justice, but is her affliction also a sign of impurity?",1992-03-05,1.0397,6.547,522 +5660,522681,Escape Room,"Six strangers find themselves in circumstances beyond their control, and must use their wits to survive.",2019-01-03,5.857,6.547,4825 +5661,400157,Wonder Park,"A young girl named June with a big imagination makes an incredible discovery -- the amusement park of her dreams has come to life. Filled with the world's wildest rides operated by fun-loving animals, the excitement never ends. But when trouble hits, June and her misfit team of furry friends begin an unforgettable journey to save the park.",2019-03-13,2.9237,6.546,719 +5662,331583,The Whole Truth,A defense attorney works to get his teenage client acquitted of murdering his wealthy father.,2016-03-25,2.3302,6.546,1218 +5663,244509,Cold in July,"While investigating noises in his house one balmy Texas night in 1989, Richard Dane puts a bullet in the brain of a low-life burglar. Although he’s hailed as a small-town hero, Dane soon finds himself fearing for his family’s safety when Freddy’s ex-con father rolls into town, hell-bent on revenge.",2014-05-23,2.1765,6.546,768 +5664,10567,Dinosaur,An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.,2000-05-19,6.1747,6.546,2626 +5665,10147,Bad Santa,"You'd better watch out - Santa Claus Willie T. Soke is coming to town, and he doesn't care if you've been naughty or nice. Wille's favorite holiday tradition is to fill his sacks with loot lifted from shopping malls across the country. But this year his plot gets derailed by a wisecracking store detective, a sexy bartender, and a kid who's convinced Willie is the real Santa Claus.",2003-11-26,2.8886,6.546,2222 +5666,8840,DragonHeart,"In an ancient time when majestic fire-breathers soared through the skies, a knight named Bowen comes face to face and heart to heart with the last dragon on Earth, Draco. Taking up arms to suppress a tyrant king, Bowen soon realizes his task will be harder than he'd imagined: If he kills the king, Draco will die as well.",1996-05-31,3.2039,6.546,2028 +5667,544404,Who You Think I Am,"Claire, a 50-year-old divorced teacher, creates a fake Facebook profile of a 24-year-old woman to catfish Alex, the roommate of her former lover, Ludo.",2019-02-27,1.1179,6.545,334 +5668,264656,The Homesman,"When three women living on the edge of the American frontier are driven mad by harsh pioneer life, the task of saving them falls to the pious, independent-minded Mary Bee Cuddy. Transporting the women by covered wagon to Iowa, she soon realizes just how daunting the journey will be, and employs a low-life drifter, George Briggs, to join her. The unlikely pair and the three women head east, where a waiting minister and his wife have offered to take the women in. But the group first must traverse the harsh Nebraska Territories marked by stark beauty, psychological peril and constant threat.",2014-05-18,2.6207,6.545,823 +5669,56832,Gantz,"After trying to rescue a man on the subway tracks, two teens wake up in a room dominated by a mysterious black sphere that sends them to hunt down and kill aliens hiding on Earth.",2010-11-29,2.479,6.545,313 +5670,39939,Super Troopers,"Five bored, occasionally high and always ineffective Vermont state troopers must prove their worth to the governor or lose their jobs. After stumbling on a drug ring, they plan to make a bust, but a rival police force is out to steal the glory.",2001-02-15,2.0526,6.5,1149 +5671,9255,Hot Shots! Part Deux,"Topper Harley is found to be working as an odd-job-man in a monastery. The CIA want him to lead a rescue mission into Iraq, to rescue the last rescue team, who went in to rescue the last rescue team—who went in to rescue hostages left behind after Desert Storm.",1993-05-21,3.938,6.545,1923 +5672,8696,Calendar Girls,Members of a Yorkshire branch of the Women's Institute cause controversy when they pose nude for a charity calendar.,2003-09-02,1.6695,6.545,389 +5673,1362,The Hobbit,"The story follows the adventures of Bilbo Baggins, a diminutive creative who resides in a place called Middle-Earth before he is compelled to go on a quest to find a treasure buried deep in the heart of Lonely Mountain.",1977-11-27,2.2357,6.545,337 +5674,425591,I Don't Feel at Home in This World Anymore,"When a depressed woman is burglarized, she finds a new sense of purpose by tracking down the thieves alongside her obnoxious neighbor. But they soon find themselves dangerously out of their depth against a pack of degenerate criminals.",2017-01-19,1.1658,6.544,1333 +5675,300693,Truth,"As a renowned producer and close associate of Dan Rather, Mary Mapes believes she’s broken the biggest story of the 2004 election: revelations of a sitting U.S. President’s military service. But when allegations come pouring in, sources change their stories, document authenticity is questioned, and the casualties begin to mount.",2015-10-16,2.0737,6.544,505 +5676,18898,Looking for Eric,A man trying to put his life back on track gets some advice from an unexpected benefactor -- the ex-footballer Eric Cantona.,2009-05-27,1.2055,6.544,352 +5677,16119,Cinderella III: A Twist in Time,"When Lady Tremaine steals the Fairy Godmother's wand and changes history, it's up to Cinderella to restore the timeline and reclaim her prince.",2007-02-06,3.2289,6.544,1293 +5678,13122,The People Under the Stairs,"Trapped inside a fortified home owned by a mysterious couple, a young boy quickly learns the true nature of the homicidal inhabitants, and secret creatures hidden deep within the walls.",1991-11-01,2.0991,6.5,689 +5679,6069,The Witches of Eastwick,Three single women in a picturesque Rhode Island village have their wishes granted - at a cost - when a mysterious and flamboyant man arrives in their lives.,1987-06-12,2.3876,6.54,1456 +5680,664,Twister,"An unprecedented series of violent tornadoes is sweeping across Oklahoma. Tornado chasers, headed by Dr. Jo Harding, attempt to release a groundbreaking device that will allow them to track them and create a more advanced warning system. They are joined by Jo's soon to be ex-husband Bill, a former tornado chaser himself, and his girlfriend Melissa.",1996-05-10,6.9583,6.546,3614 +5681,948276,Lost Bullet 2,"Having cleared his name, genius mechanic Lino has only one goal in mind: getting revenge on the corrupt cops who killed his brother and his mentor.",2022-11-10,1.9467,6.543,438 +5682,877817,Wolfs,"Hired to cover up a high-profile crime, a fixer soon finds his night spiralling out of control when he's forced to work with an unexpected counterpart.",2024-09-20,8.7058,6.543,1183 +5683,617502,Jolt,A bouncer with an anger management problem goes on a furious and resentful rampage after the murder of a friend.,2021-07-15,4.7986,6.543,1306 +5684,398181,You Were Never Really Here,"A traumatized veteran, unafraid of violence, tracks down missing girls for a living. When a job spins out of control, his nightmares begin to overtake him, and a conspiracy is uncovered—leading to what may be his death trip or his awakening.",2017-11-08,2.4967,6.543,2888 +5685,21316,Leroy & Stitch,"Lilo, Stitch, Jumba, and Pleakley have finally caught all of Jumba's genetic experiments and found the one true place where each of them belongs. Stitch, Jumba and Pleakley are offered positions in the Galactic Alliance, turning them down so they can stay on Earth with Lilo, but Lilo realizes her alien friends have places where they belong – and it's finally time to say ""aloha"".",2006-06-23,4.3526,6.543,573 +5686,9664,Flyboys,"The adventures of the Lafayette Escadrille, young Americans who volunteered for the French military before the U.S. entered World War I, and became the country's first fighter pilots.",2006-09-22,2.804,6.5,815 +5687,1965,A Perfect Murder,"Millionaire industrialist Steven Taylor is a man who has everything but what he craves most: the love and fidelity of his wife. A hugely successful player in the New York financial world, he considers her to be his most treasured acquisition. But she needs more than simply the role of dazzling accessory.",1998-06-05,3.8645,6.542,1459 +5688,865,The Running Man,"By 2017, the global economy has collapsed and U.S. society has become a totalitarian police state, censoring all cultural activity. The government pacifies the populace by broadcasting a number of game shows in which convicted criminals fight for their lives, including the gladiator-style The Running Man, hosted by the ruthless Damon Killian, where “runners” attempt to evade “stalkers” and certain death for a chance to be pardoned and set free.",1987-11-13,6.2514,6.543,2508 +5689,435,The Day After Tomorrow,"After paleoclimatologist Jack Hall is largely ignored by UN officials when presenting his environmental concerns about the beginning of a new Ice Age, his research proves true when a superstorm develops, setting off catastrophic natural disasters throughout the world. Trying to get to his son, Sam, who is trapped in New York City with his friend Laura and others, Jack and his crew must travel to get to Sam before it's too late.",2004-05-26,6.5732,6.543,8421 +5690,594718,Sputnik,"At the height of the Cold War, a Soviet spacecraft crash lands after a mission gone awry, leaving the commander as its only survivor. After a renowned Russian psychologist is brought in to evaluate the commander’s mental state, it becomes clear that something dangerous may have come back to Earth with him…",2020-07-24,2.2566,6.546,908 +5691,231576,Wish I Was Here,"Aidan Bloom, a struggling actor, father and husband, is 35 years old and still trying to find a purpose for his life. He and his wife are barely getting by financially and Aidan passes his time by fantasizing about being the great futuristic Space-Knight he'd always dreamed he'd be as a little kid. When his ailing father can no longer afford to pay for private school for his two kids and the only available public school is on its last legs, Aidan reluctantly agrees to attempt to home-school them. Through teaching them about life his way, Aidan gradually discovers some of the parts of himself he couldn't find.",2014-07-18,1.3867,6.542,745 +5692,45132,Super,"After his wife falls under the influence of a drug dealer, an everyday guy transforms himself into Crimson Bolt, a superhero with the best intentions, though he lacks for heroic skills.",2010-11-26,2.1215,6.542,1644 +5693,19124,Blind Fury,"A blind Vietnam vet, trained as a swordfighter, comes to America and helps to rescue the son of a fellow soldier.",1989-08-17,1.9887,6.542,474 +5694,10330,Freaky Friday,"Mother and daughter bicker over everything -- what Anna wears, whom she likes and what she wants to do when she's older. In turn, Anna detests Tess's fiancé. When a magical fortune cookie switches their personalities, they each get a peek at how the other person feels, thinks and lives.",2003-08-05,34.3584,6.542,3972 +5695,6283,MouseHunt,"Down-on-their luck brothers, Lars and Ernie Smuntz, aren't happy with the crumbling old mansion they inherit... until they discover the estate is worth millions. Before they can cash in, they have to rid the house of its single, stubborn occupant—a tiny and tenacious mouse.",1997-12-19,2.5784,6.542,1287 +5696,2360,Saving Grace,"Unexpectedly widowed, prim and proper housewife Grace Trevethyn finds herself in dire financial straits when she inherits massive debts her late husband had been accruing for years. Faced with losing her house, she decides to use her talent for horticulture and hatches a plan to grow potent marijuana which can be sold at an astronomical price, thus solving her financial crisis.",2000-01-24,1.0296,6.5,421 +5697,171274,Inherent Vice,"In Los Angeles at the turn of the 1970s, drug-fueled detective Larry ""Doc"" Sportello investigates the disappearance of an ex-girlfriend.",2014-12-12,4.4051,6.541,2561 +5698,54318,The Water Horse,A lonely boy discovers a mysterious egg that hatches a sea creature of Scottish legend.,2007-12-25,2.8158,6.541,1086 +5699,11364,Regarding Henry,"Respected lawyer Henry Turner survives a convenience-store shooting only to find he has lost his memory, and has serious speech and mobility issues. After also losing his job—where he no longer 'fits in'—his loving wife and daughter give him all their love and support.",1991-07-10,1.4319,6.541,609 +5700,54318,The Water Horse,A lonely boy discovers a mysterious egg that hatches a sea creature of Scottish legend.,2007-12-25,2.8158,6.541,1086 +5701,11364,Regarding Henry,"Respected lawyer Henry Turner survives a convenience-store shooting only to find he has lost his memory, and has serious speech and mobility issues. After also losing his job—where he no longer 'fits in'—his loving wife and daughter give him all their love and support.",1991-07-10,1.4319,6.541,609 +5702,11282,Harold & Kumar Go to White Castle,"Nerdy accountant Harold and his irrepressible friend, Kumar, get stoned watching television and find themselves utterly bewitched by a commercial for White Castle. Convinced there must be one nearby, the two set out on a late-night odyssey that takes them deep into New Jersey. Somehow, the boys manage to run afoul of rednecks, cops and even a car-stealing Neil Patrick Harris before getting anywhere near their beloved sliders.",2004-07-02,3.338,6.5,2134 +5703,351286,Jurassic World: Fallen Kingdom,"Three years after Jurassic World was destroyed, Isla Nublar now sits abandoned. When the island's dormant volcano begins roaring to life, Owen and Claire mount a campaign to rescue the remaining dinosaurs from this extinction-level event.",2018-06-06,22.7168,6.54,12243 +5704,9638,Phantasm,"A teenage boy and his friends face off against a mysterious grave robber, known only as the Tall Man, who employs a lethal arsenal of unearthly weapons.",1979-03-28,2.1293,6.54,720 +5705,6069,The Witches of Eastwick,Three single women in a picturesque Rhode Island village have their wishes granted - at a cost - when a mysterious and flamboyant man arrives in their lives.,1987-06-12,2.3876,6.54,1456 +5706,2789,The Chronicles of Riddick,"After years of outrunning ruthless bounty hunters, escaped convict Riddick suddenly finds himself caught between opposing forces in a fight for the future of the human race. Now, waging incredible battles on fantastic and deadly worlds, this lone, reluctant hero will emerge as humanity's champion - and the last hope for a universe on the edge of annihilation.",2004-06-11,2.8833,6.5,4237 +5707,470918,Beast,A troubled woman living in an isolated community finds herself pulled between the control of her oppressive family and the allure of a secretive outsider suspected of a series of brutal murders.,2018-04-18,1.3964,6.539,308 +5708,13483,Awake,"While undergoing heart surgery, a man experiences a phenomenon called ‘anesthetic awareness’, which leaves him awake but paralyzed throughout the operation. As various obstacles present themselves, his wife must make life-altering decisions while wrestling with her own personal drama.",2007-11-28,2.9645,6.539,1412 +5709,11624,Everything You Always Wanted to Know About Sex *But Were Afraid to Ask,"A collection of seven vignettes, which each address a question concerning human sexuality. From aphrodisiacs to sexual perversion to the mystery of the male orgasm, characters like a court jester, a doctor, a queen and a journalist adventure through lab experiments and game shows, all seeking answers to common questions that many would never ask.",1972-08-06,2.0765,6.539,953 +5710,10388,The Limey,"The Limey follows Wilson, a tough English ex-con who travels to Los Angeles to avenge his daughter's death. Upon arrival, Wilson goes to task battling Valentine and an army of L.A.'s toughest criminals, hoping to find clues and piece together what happened. After surviving a near-death beating, getting thrown from a building and being chased down a dangerous mountain road, the Englishman decides to dole out some bodily harm of his own.",1999-10-08,1.7636,6.539,459 +5711,693158,Proximity,A young NASA JPL scientist is abducted by extraterrestrials but when no one believes his story he becomes obsessed with finding proof which leads him on a journey of discovery.,2020-05-15,2.8237,6.538,342 +5712,613349,A Good Doctor,"On Christmas eve, Serge is the only on-call emergency doctor available. Struck by a crippling back-ache, he gets help from a pizza delivery boy who will need to step in the doctor's shoes.",2019-12-11,0.8309,6.5,320 +5713,486131,Shaft,"JJ, aka John Shaft Jr., may be a cyber security expert with a degree from MIT, but to uncover the truth behind his best friend’s untimely death, he needs an education only his dad can provide. Absent throughout JJ’s youth, the legendary locked-and-loaded John Shaft agrees to help his progeny navigate Harlem’s heroin-infested underbelly.",2019-06-14,2.0404,6.538,1773 +5714,116711,Epic,A teenager finds herself transported to a deep forest setting where a battle between the forces of good and the forces of evil is taking place. She bands together with a rag-tag group characters in order to save their world—and ours.,2013-05-15,4.7551,6.538,2824 +5715,12437,Underworld: Rise of the Lycans,"A prequel to the first two Underworld films, this fantasy explains the origins of the feud between the Vampires and the Lycans. Aided by his secret love, Sonja, courageous Lucian leads the Lycans in battle against brutal Vampire king Viktor. Determined to break the king's enslavement of his people, Lucian faces off against the Death Dealer army in a bid for Lycan independence.",2009-01-22,5.4636,6.538,3774 +5716,1990,Paranoid Park,"A teenage skateboarder becomes suspected of being connected with a security guard who suffered a brutal death in a skate park called ""Paranoid Park"".",2007-07-12,0.9627,6.538,563 +5717,699,For Your Eyes Only,A British spy ship has sunk and on board was a hi-tech encryption device. James Bond is sent to find the device that holds British launching instructions before the enemy Soviets get to it first.,1981-06-24,4.6606,6.538,1935 +5718,1153714,Death of a Unicorn,"A father and daughter accidentally hit and kill a unicorn while en route to a weekend retreat, where his billionaire boss seeks to exploit the creature’s miraculous curative properties.",2025-03-27,25.0362,6.537,446 +5719,136400,2 Guns,A DEA agent and an undercover Naval Intelligence officer who have been tasked with investigating one another find they have been set up by the mob -- the very organization the two men believe they have been stealing money from.,2013-08-02,4.6477,6.537,4265 +5720,777443,The Electric State,"An orphaned teen hits the road with a mysterious robot to find her long-lost brother, teaming up with a smuggler and his wisecracking sidekick.",2025-03-07,8.5674,6.536,1309 +5721,245700,Mr. Turner,"Eccentric British painter J.M.W. Turner lives his last 25 years with gusto and secretly becomes involved with a seaside landlady, while his faithful housekeeper bears an unrequited love for him.",2014-10-31,2.1385,6.536,541 +5722,18331,The Nutty Professor,"A timid, nearsighted chemistry teacher discovers a magical potion that can transform him into a suave and handsome Romeo. The Jekyll and Hyde game works well enough until the concoction starts to wear off at the most embarrassing times.",1963-06-04,2.036,6.5,434 +5723,401981,Red Sparrow,"Prima ballerina Dominika Egorova faces a bleak and uncertain future after she suffers an injury that ends her career. She soon turns to Sparrow School, a secret intelligence service that trains exceptional young people to use their minds and bodies as weapons. Dominika emerges as the most dangerous Sparrow after completing the sadistic training process. As she comes to terms with her new abilities, she meets a CIA agent who tries to convince her that he is the only person she can trust.",2018-02-15,5.4379,6.5,6132 +5724,381890,The Mermaid,"A playboy business tycoon, Liu Xuan, purchases the Green Gulf, a wildlife reserve, for a sea reclamation project, and uses sonar technology to get rid of the sea life in the area. Unknown to him, the Green Gulf is the home of merpeople, and the sonar has caused many of them to succumb to illness or die. Xuan's business ventures in the area are threatened when he crosses paths with the mermaid, Shan, who is sent to avenge her people.",2016-02-08,3.2895,6.535,449 +5725,297608,The Taking of Deborah Logan,"What starts as a poignant medical documentary about Deborah Logan's descent into Alzheimer's disease and her daughter's struggles as caregiver degenerates into a maddening portrayal of dementia at its most frightening, as hair-raising events begin to plague the family and crew and an unspeakable malevolence threatens to tear the very fabric of sanity from them all.",2014-10-21,8.6631,6.536,1323 +5726,10872,The Ref,"A cat burglar is forced to take a bickering, dysfunctional family hostage on Christmas Eve.",1994-03-09,1.025,6.535,347 +5727,10502,The Man Without a Face,"Justin McLeod is a former teacher who lives as a recluse on the edge of town after his face is disfigured from an automobile accident ten years earlier, in which a boy was incinerated--and for which he was convicted of involuntary manslaughter. Also suspected of being a paedophile, he is befriended by Chuck, causing the town's suspicions and hostility to be ignited.",1993-08-25,1.7982,6.535,526 +5728,832502,The Monkey King,"A stick-wielding monkey teams with a young girl on an epic quest for immortality, battling demons, dragons, gods — and his own ego — along the way.",2023-08-11,2.7601,6.534,310 +5729,645710,The Voyeurs,"When Pippa and Thomas move into their dream apartment, they notice that their windows look directly into the apartment opposite – inviting them to witness the volatile relationship of the attractive couple across the street. But what starts as a simple curiosity turns into full-blown obsession with increasingly dangerous consequences.",2021-08-25,11.0921,6.534,1043 +5730,522938,Rambo: Last Blood,"After fighting his demons for decades, John Rambo now lives in peace on his family ranch in Arizona, but his rest is interrupted when Gabriela, the granddaughter of his housekeeper María, disappears after crossing the border into Mexico to meet her biological father. Rambo, who has become a true father figure for Gabriela over the years, undertakes a desperate and dangerous journey to find her.",2019-09-18,6.1556,6.5,4023 +5731,41154,Men in Black 3,"Agents J and K are back...in time. J has seen some inexplicable things in his 15 years with the Men in Black, but nothing, not even aliens, perplexes him as much as his wry, reticent partner. But when K's life and the fate of the planet are put at stake, Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him - secrets that will reveal themselves as he teams up with the young Agent K to save his partner, the agency, and the future of humankind.",2012-05-23,6.8295,6.534,10568 +5732,15070,Undisputed,"Monroe Hutchens is the heavyweight champion of Sweetwater, a maximum security prison. He was convicted to a life sentence due to a passionate crime. Iceman Chambers is the heavyweight champion, who lost his title due to a rape conviction to ten years in Sweetwater. When these two giants collide in the same prison, they fight against each other disputing who is the real champion.",2002-07-17,4.9742,6.534,761 +5733,13922,The Great Raid,"As World War II rages, the elite Sixth Ranger Battalion is given a mission of heroic proportions: push 30 miles behind enemy lines and liberate over 500 American prisoners of war.",2005-08-12,1.7897,6.5,352 +5734,12797,Ghost Town,"Bertram Pincus, a cranky, people-hating Manhattan dentist, develops the unwelcome ability to see dead people. Really annoying dead people. Even worse, they all want something from him, particularly Frank Herlihy, a smooth-talking ghost, who pesters him into a romantic scheme involving his widow Gwen. They are soon entangled in a hilarious predicament between the now and the hereafter!",2008-09-19,2.2221,6.534,1004 +5735,8868,Asterix vs. Caesar,"Obelix falls for a new arrival in his home village in Gaul, but is heartbroken when her true love arrives to visit her. However, the lovers are kidnapped by Romans; Asterix and Obelix set out to rescue them on a dangerous journey that will involve gladiators, slavers and beauracracy - and a personal encounter with the Emperor himself, Julius Caesar...",1985-03-06,1.6986,6.5,609 +5736,3902,I'm Not There,"Six actors portray six personas of music legend Bob Dylan in scenes depicting various stages of his life, chronicling his rise from unknown folksinger to international icon and revealing how Dylan constantly reinvented himself.",2007-10-01,1.5259,6.534,739 +5737,1127166,The Tearsmith,"Adopted together after a tough childhood in an orphanage, Nica and Rigel realize that unexpected but irresistible feelings pull them together.",2024-04-03,7.6079,6.533,894 +5738,436274,Radius,"Liam wakes from a car crash with no memory of who he is. As he makes his way into town to look for help, he finds only dead bodies, all with strange pale eyes. Liam's first assessment is that a virus is present in the air, but he soon discovers the horrible truth: anyone who comes within a 50-foot radius of him dies instantly.",2017-07-17,2.667,6.533,688 +5739,53319,What a Beautiful Day,"Checco, an uneducated but self-satisfied fellow from Milan, who has always dreamed of becoming a police officer, fails his entrance exam for the third time. It must be said that at the oral examination Checco said that the reason why he wanted to join the police was benefits in kind and cronyism! But the young man has connections and he soon finds himself a security agent at the Milan Cathedral. Of course the bumbling idiot proves a living catastrophe! Spotted by Sufien, an Arab terrorist who is preparing an attack against the cathedral, Checco appears as the perfect sucker. To manipulate him, he sends his charming sister Farah to him, with the mission to seduce him...",2011-01-05,0.5473,6.533,1511 +5740,10052,Dragonfly,A grieving doctor is being contacted by his late wife through his patient's near death experiences.,2002-02-22,2.0501,6.533,884 +5741,9768,Cry-Baby,A prim and proper schoolgirl goes against her society grandmother's wishes when she dates a motorcycle-riding juvenile delinquent.,1990-04-06,2.2538,6.5,1521 +5742,9087,The American President,"Widowed U.S. president Andrew Shepherd, one of the world's most powerful men, can have anything he wants -- and what he covets most is Sydney Ellen Wade, a Washington lobbyist. But Shepherd's attempts at courting her spark wild rumors and decimate his approval ratings.",1995-11-17,1.98,6.533,741 +5743,6538,Charlie Wilson's War,"In the 1980s U.S. Rep. Charlie Wilson, Texas socialite Joanne Herring and CIA agent Gust Avrakotos form an unlikely alliance to boost funding for Afghan freedom fighters in their war against invading Soviets. The trio's successful efforts to finance these covert operations contributes to the fall of the Soviet Union and the end of the Cold War.",2007-12-19,2.5639,6.533,1558 +5744,785398,EO,"The world is a mysterious place when seen through the eyes of an animal. EO, a grey donkey with melancholic eyes, meets good and bad people on his life’s path, experiences joy and pain, endures the wheel of fortune randomly turn his luck into disaster and his despair into unexpected bliss. But not even for a moment does he lose his innocence.",2022-09-30,1.0128,6.532,358 +5745,218425,Frequencies,The story of the forbidden relationship between a 'low born' boy and a 'high born' girl in an alternate reality where every person's relationships and life worth are determined by their innate 'frequencies'.,2013-07-24,1.5953,6.532,412 +5746,38843,Ramona and Beezus,"Ramona is a little girl with a very big imagination and a nose for mischief. Her playful antics keep everyone in her loving family on their toes, including her older sister Beezus, who's just trying to survive her first year of high school. Through all the ups and downs of childhood, Ramona and Beezus learn that anything's possible when you believe in yourself and rely on each other.",2010-07-23,2.3507,6.532,763 +5747,9816,Save the Last Dance,"After the death of her mother, Sara moves to the South Side of Chicago to live with her father and gets transferred to a majority-black school. Her life takes a turn for the better when befriends Chenille and her brother Derek, who helps her with her dancing skills.",2001-01-12,3.6497,6.535,1301 +5748,799546,Luckiest Girl Alive,A successful woman in New York City finds her life upended when she is forced to confront a dark truth that threatens to unravel her meticulously crafted life.,2022-09-30,1.8875,6.531,870 +5749,401545,Everybody Knows,"Laura, a Spanish woman living in Buenos Aires, returns to her hometown outside Madrid with her Argentinian husband and children. However, the trip is upset by unexpected events that bring secrets into the open.",2018-05-09,2.1443,6.531,1001 +5750,37933,Tales from Earthsea,"Something bizarre has come over the land. The kingdom is deteriorating. People are beginning to act strange... What's even more strange is that people are beginning to see dragons, which shouldn't enter the world of humans. Due to all these bizarre events, Ged, a wandering wizard, is investigating the cause. During his journey, he meets Prince Arren, a young distraught teenage boy. While Arren may look like a shy young teen, he has a severe dark side, which grants him strength, hatred, ruthlessness and has no mercy, especially when it comes to protecting Teru. For the witch Kumo this is a perfect opportunity. She can use the boy's ""fears"" against the very one who would help him, Ged.",2006-07-29,2.8668,6.531,1383 +5751,9035,Slither,"A small town is taken over by an alien plague, turning residents into zombies and all forms of mutant monsters.",2006-03-31,2.3479,6.531,1616 +5752,8198,The Quiet American,"Cynical British journalist Fowler falls in love with a young Vietnamese woman but is dismayed when a naïve U.S. official also begins vying for her attention. In retaliation, Fowler informs the communists that the American is selling arms to their enemy.",2002-11-22,1.3494,6.531,307 +5753,270946,Penguins of Madagascar,"Skipper, Kowalski, Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.",2014-11-22,9.867,6.53,4295 +5754,635744,Jarhead: Law of Return,"Major Ronan Jackson, an accomplished fighter pilot for the Israel Defense Forces and son of a U.S. Senator, is shot down while flying through Syrian airspace. After miraculously surviving the crash, Jackson is taken captive by a group of Hezbollah militiamen. A squad of elite soldiers, led by Gunnery Sergeant Dave Torres, risk their own lives in the hopes of saving an ally they've never met.",2019-10-01,2.0828,6.529,3351 +5755,585216,Escape Room: Tournament of Champions,"Six people unwittingly find themselves locked in another series of escape rooms, slowly uncovering what they have in common to survive... and discovering they've all played the games before.",2021-07-01,4.0713,6.529,2131 +5756,73567,Killer Joe,A cop who moonlights as a hit man agrees to kill the hated mother of a desperate drug dealer in exchange for a tumble with the young man's virginal sister.,2012-06-07,1.9438,6.5,1482 +5757,13053,Bolt,"Bolt is the star of the biggest show in Hollywood. The only problem is, he thinks it's real. After he's accidentally shipped to New York City and separated from Penny, his beloved co-star and owner, Bolt must harness all his ""super powers"" to find a way home.",2008-11-21,6.2572,6.5,6245 +5758,10970,Silent Movie,"Aspiring filmmakers Mel Funn, Marty Eggs and Dom Bell go to a financially troubled studio with an idea for a silent movie. In an effort to make the movie more marketable, they attempt to recruit a number of big name stars to appear, while the studio's creditors attempt to thwart them.",1976-06-17,1.2662,6.5,308 +5759,10622,Mr. Nice Guy,A Chinese chef accidentally gets involved with a news reporter who filmed a drug bust that went awry and is now being chased by gangs who are trying to get the video tape.,1997-01-31,2.6807,6.529,698 +5760,73567,Killer Joe,A cop who moonlights as a hit man agrees to kill the hated mother of a desperate drug dealer in exchange for a tumble with the young man's virginal sister.,2012-06-07,1.9438,6.5,1482 +5761,13053,Bolt,"Bolt is the star of the biggest show in Hollywood. The only problem is, he thinks it's real. After he's accidentally shipped to New York City and separated from Penny, his beloved co-star and owner, Bolt must harness all his ""super powers"" to find a way home.",2008-11-21,6.2572,6.5,6245 +5762,10970,Silent Movie,"Aspiring filmmakers Mel Funn, Marty Eggs and Dom Bell go to a financially troubled studio with an idea for a silent movie. In an effort to make the movie more marketable, they attempt to recruit a number of big name stars to appear, while the studio's creditors attempt to thwart them.",1976-06-17,1.2662,6.5,308 +5763,10622,Mr. Nice Guy,A Chinese chef accidentally gets involved with a news reporter who filmed a drug bust that went awry and is now being chased by gangs who are trying to get the video tape.,1997-01-31,2.6807,6.529,698 +5764,9445,Apt Pupil,"One day in 1984, Todd Bowden, a brilliant high school boy fascinated by the history of Nazism, stumbles across an old man whose appearance resembles that of Kurt Dussander, a wanted Nazi war criminal. A month later, Todd decides to knock on his door.",1998-10-23,2.101,6.529,671 +5765,708,The Living Daylights,"After a defecting Russian general reveals a plot to assassinate foreign spies, James Bond is assigned a secret mission to dispatch the new head of the KGB to prevent an escalation of tensions between the Soviet Union and the West.",1987-06-29,4.2703,6.529,1870 +5766,623195,Falling Inn Love,"When a San Francisco exec wins a New Zealand inn, she ditches city life to remodel and flip the rustic property with help from a handsome contractor.",2019-08-29,1.8774,6.528,1167 +5767,271724,Hippocrates,"Benjamin is meant to be a great doctor, he’s certain of it. But his first experience as a junior doctor in the hospital ward where his father works doesn’t turn out the way he hoped it would. Responsibility is overwhelming, his father is all but present, and his co-junior partner, a foreign doctor, is far more experimented than he is. This internship will force Benjamin to confront his limits… and start his way to adulthood.",2014-09-03,0.7143,6.5,487 +5768,13205,Bambi II,"Return to the forest and join Bambi as he reunites with his father, The Great Prince, who must now raise the young fawn on his own. But in the adventure of a lifetime, the proud parent discovers there is much he can learn from his spirited young son.",2006-01-26,2.8053,6.5,1021 +5769,273271,Time Lapse,"Three friends discover a mysterious machine that takes pictures 24 hours into the future and conspire to use it for personal gain, until disturbing and dangerous images begin to develop.",2014-05-24,1.6352,6.5,1288 +5770,146216,RED 2,Retired C.I.A. agent Frank Moses reunites his unlikely team of elite operatives for a global quest to track down a missing portable nuclear device.,2013-07-18,5.0846,6.527,4141 +5771,11808,U.S. Marshals,"U.S. Marshal Sam Gerard is accompanying a plane load of convicts from Chicago to New York. The plane crashes spectacularly, and Mark Sheridan escapes. But when Diplomatic Security Agent John Royce is assigned to help Gerard recapture Sheridan, it becomes clear that Sheridan is more than just another murderer.",1998-03-06,4.0466,6.527,1676 +5772,1153714,Death of a Unicorn,"A father and daughter accidentally hit and kill a unicorn while en route to a weekend retreat, where his billionaire boss seeks to exploit the creature’s miraculous curative properties.",2025-03-27,25.0362,6.537,446 +5773,581600,Spenser Confidential,"Spenser, a former Boston patrolman who just got out from prison, teams up with Hawk, an aspiring fighter, to unravel the truth behind the death of two police officers.",2020-03-06,2.5645,6.526,2383 +5774,399360,Alpha,"In the prehistoric past, Keda, a young and inexperienced hunter, struggles to return home after being separated from his tribe when bison hunting goes awry. On his way back he will find an unexpected ally.",2018-08-17,4.4792,6.526,2624 +5775,282984,Irrational Man,"On a small town college campus, a philosophy professor in existential crisis gives his life new purpose when he enters into a relationship with his student.",2015-07-17,1.5578,6.526,2414 +5776,75674,Act of Valor,"When a covert mission to rescue a kidnapped CIA operative uncovers a chilling plot, an elite, highly trained U.S. SEAL team speeds to hotspots around the globe, racing against the clock to stop a deadly terrorist attack.",2012-02-24,2.5059,6.5,1176 +5777,44129,The Company Men,"Bobby Walker lives the proverbial American dream: great job, beautiful family, shiny Porsche in the garage. When corporate downsizing leaves him and two co-workers jobless, the three men are forced to re-define their lives as men, husbands and fathers.",2010-10-21,1.7477,6.526,767 +5778,37725,It's a Boy Girl Thing,"A visit to a natural history museum proves catastrophic for two high school rivals, an overachiever and a jock, when an ancient Aztec statue casts a spell that causes them to switch bodies and see exactly what it's like to walk in the other's shoes.",2006-07-15,2.7017,6.5,1058 +5779,34560,Halloweentown High,"Marnie Piper prepares to begin a new school year, she asks the Halloweentown Hot Witches' Council to work toward openness between Halloweentown and the mortal world. She proposes to bring a group of Halloweentown students to her own high school in the mortal world.",2004-10-08,1.286,6.526,308 +5780,9615,The Fast and the Furious: Tokyo Drift,"In order to avoid a jail sentence, Sean Boswell heads to Tokyo to live with his military father. In a low-rent section of the city, Shaun gets caught up in the underground world of drift racing",2006-06-03,2.5869,6.526,7204 +5781,665251,Altered Carbon: Resleeved,"On the planet Latimer, Takeshi Kovacs must protect a tattooist while investigating the death of a yakuza boss alongside a no-nonsense CTAC.",2020-03-19,1.6317,6.525,303 +5782,466081,The Informer,"In New York, former convict Pete Koslow, related to the Polish mafia, must deal with both Klimek the General, his ruthless boss, and the twisted ambitions of two federal agents, as he tries to survive and protect the lives of his loved ones.",2019-08-30,2.5794,6.525,884 +5783,241842,Dead Snow 2: Red vs. Dead,"The gruesome Nazi Zombies are back to finish their mission, but our hero is not willing to die. He is gathering his own army to give them a final fight.",2014-02-12,2.0329,6.526,654 +5784,8909,Wanted,"Doormat Wesley Gibson is an office worker whose life is going nowhere. He meets an attractive woman named Fox and discovers that his recently murdered father - whom Wesley never knew - belonged to the Fraternity, a secret society of assassins which takes its orders from Fate itself. Fox and Sloan, the Fraternity's leader, teach Wesley, through intense training, to tap into dormant powers and hone his innate killing skills. Though he enjoys his newfound abilities, he begins to suspect that there is more to the Fraternity than meets the eye.",2008-06-19,6.8361,6.525,7262 +5785,429473,Lou,A young girl is kidnapped during a powerful storm. Her mother joins forces with her mysterious neighbour to set off in pursuit of the kidnapper. Their journey will test their limits and expose the dark secrets of their past.,2022-09-23,1.9489,6.524,702 +5786,309245,Mistress America,A college freshman cures her disappointment and loneliness by allowing herself to be pulled into the wacky schemes of her future stepsister.,2015-08-14,1.5072,6.524,556 +5787,257785,Tulip Fever,An artist falls for a married young woman while he's commissioned to paint her portrait. The two invest in the risky tulip market in hopes to build a future together.,2017-07-13,2.8543,6.524,716 +5788,242224,The Babadook,"A single mother, plagued by the violent death of her husband, battles with her son's fear of a monster lurking in the house, but soon discovers a sinister presence all around her.",2014-05-22,5.4293,6.524,6167 +5789,39371,L'allenatore nel pallone,"Oronzo Canà is called to coach Longobarda, the football team of a small town of Northern Italy, newly promoted to the First Division. His only task is not to be relegated, but Longobarda's owner plots against him, finding the team's current ranking far too expensive, and his top Brazilian striker is affected by a deep saudade.",1984-10-26,0.5577,6.524,381 +5790,21861,LOL (Laughing Out Loud),"Lola is a striking teenaged girl who is on the cusp of adulthood and longs to rush into the adult world of independence, freedom and sexual exploits, but is tenaciously held back by her mother.",2009-02-04,1.0191,6.5,1319 +5791,13062,Boundin',"On a high mountain plain lives a lamb with wool of such remarkable sheen that he breaks into high-steppin' dance. But there comes a day when he loses his lustrous coat and, along with it, his pride. It takes a wise jackalope - a horn-adorned rabbit - to teach the moping lamb that wooly or not, it's what's inside that'll help him rebound from life's troubles.",2003-11-04,1.4708,6.524,571 +5792,11027,The Postman Always Rings Twice,The sensuous wife of a lunch wagon proprietor and a rootless drifter begin a sordidly steamy affair and conspire to murder her Greek husband.,1981-03-20,2.1594,6.524,515 +5793,9900,Grandma's Boy,"Even though he's 35, Alex acts more like he's 13, spending his days as the world's oldest video game tester and his evenings developing the next big Xbox game. But when he gets kicked out of his apartment, he's forced to move in with his grandmother.",2006-01-06,1.7648,6.524,695 +5794,8748,Eagle vs Shark,"Love blossoms for Lily over double Meaty Boy burgers at mid-day when uber-computer nerd Jarrod comes in and leaves with free extra large fries. After gatecrashing Jarrod's party and proving her skills on the game console, Lily goes down to Jarrod's home town with him so he can settle an old score with a past school bully.",2007-07-15,2.8102,6.524,311 +5795,2148,The Cotton Club,Harlem's legendary Cotton Club becomes a hotbed of passion and violence as the lives and loves of entertainers and gangsters collide.,1984-12-14,2.0897,6.5,418 +5796,27582,The Mechanic,"Arthur Bishop is a 'mechanic' - an elite assassin with a strict code requiring professional perfection and total detachment. One of an elite group of assassins, Bishop may be the best in the business - with a unique talent for cleanly eliminating targets. When Harry McKenna, his close friend and mentor, is murdered, Harry's son comes to him with vengeance in his heart and a desire to learn Bishop's trade, signaling the birth of a deadly partnership.",2011-01-13,5.8337,6.523,3384 +5797,11338,Into the Night,"Ed Okin used to have a boring life. He used to have trouble getting to sleep. Then one night, he met Diana. Now, Ed's having trouble staying alive.",1985-02-22,1.4552,6.5,307 +5798,10881,Avalon,"In a future world, young people are increasingly becoming addicted to an illegal (and potentially deadly) battle simulation game called Avalon. When Ash, a star player, hears of rumors that a more advanced level of the game exists somewhere, she gives up her loner ways and joins a gang of explorers. Even if she finds the gateway to the next level, will she ever be able to come back to reality?",2001-01-20,0.9927,6.523,330 +5799,503125,Little Monsters,A washed-up musician teams up with a teacher and a kids show personality to protect young children from a sudden outbreak of zombies.,2019-08-29,2.4917,6.522,696 +5800,38093,Just Wright,"Physical therapist Leslie Wright lands the dream job of working with basketball superstar Scott McKnight, helping him recover from a career-threatening injury. All goes well and soon Leslie finds herself falling in love with him. Just as their friendship deepens, however, Scott focuses his attention back on his tenuous relationship with his ex-fiancé Morgan, Leslie's gorgeous godsister, who would love to be the basketball player's trophy wife.",2010-05-14,1.6944,6.522,438 +5801,9437,Kiss the Girls,"Forensic psychologist and detective Alex Cross travels to North Carolina and teams with escaped kidnap victim Kate McTiernan to hunt down ""Casanova,"" a serial killer who abducts strong-willed women and forces them to submit to his demands. The trail leads to Los Angeles, where the duo discovers that the psychopath may not be working alone.",1997-09-29,4.3423,6.522,1749 +5802,102382,The Amazing Spider-Man 2,"For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen’s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.",2014-04-16,14.5354,6.521,13663 +5803,48492,Detective Dee and the Mystery of the Phantom Flame,"When the future empress Wu Zetian's two courtiers die in a mysterious fire, she gets Di Renjie, a former detective and rebel, released from prison to solve the mystery of the fire.",2010-09-18,1.8294,6.5,411 +5804,10656,Subway,"Fred, a raffish safe blower, takes refuge in the Paris Metro after being chased by the henchmen of a shady businessman from whom he has just stolen some documents. While hiding out in the back rooms and conduits of the Metro, Fred encounters a subterranean society of eccentric characters and petty criminals.",1985-04-10,2.2046,6.5,478 +5805,74,War of the Worlds,"Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop off his teenage son and young daughter for a rare weekend visit, a strange and powerful lightning storm touches down.",2005-06-28,12.4148,6.522,8690 +5806,353616,Pitch Perfect 3,"After the highs of winning the world championships, the Bellas find themselves split apart and discovering there aren't job prospects for making music with your mouth. But when they get the chance to reunite for an overseas USO tour, this group of awesome nerds will come together to make some music, and some questionable decisions, one last time.",2017-12-20,4.2316,6.52,3364 +5807,10466,The Money Pit,"After being evicted from their Manhattan apartment, a couple buy what looks like the home of their dreams—only to find themselves saddled with a bank-account-draining nightmare. Struggling to keep their relationship together as their rambling mansion falls to pieces around them, the two watch in hilarious horror as everything—including the kitchen sink—disappears into the Money Pit.",1986-03-26,2.6219,6.52,1177 +5808,928,Gremlins 2: The New Batch,"Young sweethearts Billy and Kate move to the Big Apple, land jobs in a high-tech office park and soon reunite with the friendly and lovable Gizmo. But a series of accidents creates a whole new generation of Gremlins. The situation worsens when the devilish green creatures invade a top-secret laboratory and develop genetically altered powers, making them even harder to destroy!",1990-06-15,4.5484,6.521,2725 +5809,1272149,Bridget Jones: Mad About the Boy,"Bridget Jones navigates life as a widow and single mum with the help of her family, friends, and former lover, Daniel. Back to work and on the apps, she's pursued by a younger man and maybe – just maybe – her son's science teacher.",2025-02-12,6.0067,6.5,370 +5810,526051,Look Away,A timid and socially alienated 17-year-old high school student's life is turned upside down when she switches places with her sinister mirror image.,2018-10-12,3.9773,6.519,909 +5811,55721,Bridesmaids,"Annie's life is a mess. But when she finds out her lifetime best friend is engaged, she simply must serve as Lillian's maid of honor. Though lovelorn and broke, Annie bluffs her way through the expensive and bizarre rituals. With one chance to get it perfect, she’ll show Lillian and her bridesmaids just how far you’ll go for someone you love.",2011-05-13,5.3014,6.519,4470 +5812,51991,Romantics Anonymous,"What happens when a man and a woman share a common passion? They fall in love. And this is what happens to Jean-René, the boss of a small chocolate factory, and Angélique, a gifted chocolate maker he has just hired. What occurs when a highly emotional man meets a highly emotional woman? They fall in love, and this is what occurs to Jean-René and Angélique who share the same handicap. But being pathologically timid does not make things easy for them. So whether they will manage to get together, join their solitudes and live happily ever after is a guessing matter.",2010-12-22,1.3255,6.519,555 +5813,39101,Dragon Ball Z: The Tree of Might,Goku and friends must stop a band of space pirates from consuming fruit from the Tree of Might before it's destructive powers drain Earth's energy.,1990-06-07,3.0781,6.5,593 +5814,11027,The Postman Always Rings Twice,The sensuous wife of a lunch wagon proprietor and a rootless drifter begin a sordidly steamy affair and conspire to murder her Greek husband.,1981-03-20,2.1594,6.524,515 +5815,453755,Arctic,"A man stranded in the Arctic is finally about to receive his long awaited rescue. However, after a tragic accident, his opportunity is lost and he must then decide whether to remain in the relative safety of his camp or embark on a deadly trek through the unknown for potential salvation.",2018-11-21,2.5679,6.518,1265 +5816,11400,The New World,A drama about explorer John Smith and the clash between Native Americans and English settlers in the 17th century.,2005-12-25,2.6957,6.5,1201 +5817,10684,Courage Under Fire,"A US Army officer, who made a ""friendly fire"" mistake that was covered up, has been reassigned to a desk job. He is tasked to investigate a female chopper commander's worthiness to be awarded the Medal of Honor. At first all seems in order. But then he begins to notice inconsistencies between the testimonies of the witnesses...",1996-07-04,2.6762,6.5,972 +5818,8338,Blindness,"When a sudden plague of blindness devastates a city, a small group of the afflicted band together to triumphantly overcome the horrific conditions of their imposed quarantine.",2008-05-14,1.9365,6.5,1305 +5819,96,Beverly Hills Cop II,"Axel Foley returns to the land of sunshine and palm trees to investigate the near-fatal shooting of police Captain Andrew Bogomil. With the help of Sgt. Taggart and Det. Rosewood, they soon uncover that the shooting is associated with a series of ""alphabet"" robberies masterminded by a heartless weapons kingpin—and the chase is on.",1987-05-18,4.4889,6.519,2657 +5820,1071215,Thanksgiving,"After a Black Friday riot ends in tragedy, a mysterious Thanksgiving-inspired killer terrorizes Plymouth, Massachusetts - the birthplace of the holiday. Picking off residents one by one, what begins as random revenge killings are soon revealed to be part of a larger, sinister holiday plan.",2023-11-16,6.2828,6.517,1392 +5821,1029955,Kinds of Kindness,"A triptych fable following a man without choice who tries to take control of his own life; a policeman who is alarmed that his wife who was missing-at-sea has returned and seems a different person; and a woman determined to find a specific someone with a special ability, who is destined to become a prodigious spiritual leader.",2024-05-30,3.2981,6.5,1051 +5822,758724,The Cellar,"When Keira Woods' daughter mysteriously vanishes in the cellar of their new house in the country, she soon discovers there is an ancient and powerful entity controlling their home that she will have to face or risk losing her family's souls forever.",2022-03-25,1.8304,6.517,468 +5823,536115,Godzilla: The Planet Eater,"With no means for defeating Godzilla Earth, mankind watches as King Ghidorah, clad in a golden light, descends on the planet. The heavens and earth shake once again as the war moves to a higher dimension.",2018-11-09,2.8684,6.5,373 +5824,310135,Turbo Kid,"In a post-apocalyptic wasteland, an orphaned teen must battle a ruthless warlord to save the girl of his dreams.",2015-08-14,1.4359,6.5,725 +5825,274862,The Lego Ninjago Movie,"Six young ninjas are tasked with defending their island home of Ninjago. By night, they’re gifted warriors using their skill and awesome fleet of vehicles to fight villains and monsters. By day, they’re ordinary teens struggling against their greatest enemy....high school.",2017-09-21,3.5515,6.517,1114 +5826,47760,Restless,"Two outsiders, both shaped by the circumstances that have brought them together, forge a deep and lasting love.",2011-09-16,1.4875,6.517,416 +5827,43947,I Spit on Your Grave,"A beautiful woman from the city, Jennifer Hills, rents an isolated cabin in the country to write her latest novel. Soon, a group of local lowlifes subject her to a nightmare of degradation, rape, and violence.",2010-06-17,10.2438,6.517,2409 +5828,1022690,Ricky Stanicky,"When three childhood best friends pull a prank gone wrong, they invent the imaginary Ricky Stanicky to get them out of trouble. Twenty years later, the trio still uses the nonexistent Ricky as a handy alibi for their immature behavior. But when their spouses and partners get suspicious and demand to finally meet the fabled Mr. Stanicky, the guilty trio decide to hire a washed-up actor and raunchy celebrity impersonator to bring him to life.",2024-03-07,5.8646,6.516,690 +5829,246655,X-Men: Apocalypse,"After the re-emergence of the world's first mutant, world-destroyer Apocalypse, the X-Men must unite to defeat his extinction level plan.",2016-05-18,10.4659,6.516,13279 +5830,58235,Confessions of a Brazilian Call Girl,"Rachel is a girl, adopted by an upper middle class family, who rebelled at 17 and left her family and studies at a traditional college in Sao Paulo to become a sexy call girl. Shortly after starting work, she decided to write a blog about her experiences. Since some clients thought she looked like a surfer she adopted the name ""Surfistinha"" which means little surfer girl.",2011-02-25,1.6907,6.515,492 +5831,33689,It Takes Two,"Identical 9-year-olds from very different backgrounds: orphaned Amanda and wealthy Alyssa meet at summer camp and decide to switch places -- and play matchmaker between Alyssa's dad, Roger, and the kind social worker who cares for Amanda.",1995-11-17,3.5037,6.512,923 +5832,10527,Madagascar: Escape 2 Africa,"Alex, Marty, and other zoo animals find a way to escape from Madagascar when the penguins reassemble a wrecked airplane. The precariously repaired craft stays airborne just long enough to make it to the African continent. There the New Yorkers encounter members of their own species for the first time. Africa proves to be a wild place, but Alex and company wonder if it is better than their Central Park home.",2008-10-30,7.784,6.515,7124 +5833,864959,The Curse of Bridge Hollow,A Halloween-hating dad reluctantly teams up with his teenage daughter when an evil spirit wreaks havoc by making their town's decorations come to life.,2022-10-14,1.0668,6.514,478 +5834,295964,Burnt,"Adam Jones is a Chef who destroyed his career with drugs and diva behavior. He cleans up and returns to London, determined to redeem himself by spearheading a top restaurant that can gain three Michelin stars.",2015-10-02,2.6208,6.515,3445 +5835,76338,Thor: The Dark World,"Thor fights to restore order across the cosmos… but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.",2013-10-30,8.5601,6.514,17729 +5836,37910,Voices of a Distant Star,"It is 2046 when a mysterious alien force begins their annihilation of the human race. Leaving behind the one person she loves, Mikako joins the interstellar battle as a pilot. And so - while Mikako risks her life to save mankind - Noboru waits. The two lovers, worlds apart, desperately strive to remain connected as the gap between them widens at a frightening pace.",2002-02-02,2.0228,6.514,316 +5837,5951,The Jane Austen Book Club,"Six Californians start a club to discuss the works of Jane Austen. As they delve into Austen's literature, the club members find themselves dealing with life experiences that parallel the themes of the books they are reading.",2007-09-09,1.5316,6.5,381 +5838,1045938,G20,"After the G20 Summit is overtaken by terrorists, President Danielle Sutton must bring all her statecraft and military experience to defend her family and her fellow leaders.",2025-04-10,12.7497,6.516,567 +5839,347626,He's All That,"To get revenge on her ex-boyfriend, an influencer attempts to transform an unpopular classmate into prom king.",2021-08-27,3.3231,6.513,1419 +5840,172386,Return to Nim's Island,"Fourteen year old Nim, more determined than ever to protect her island and all the wildlife that call it home, faces off against resort developers and animal poachers. Soon she realizes she can’t depend on her animal cohorts alone and must make her first human friend – Edmund, who’s run away to the island from the mainland – to save her home.",2013-03-15,0.9657,6.513,637 +5841,9779,The Sisterhood of the Traveling Pants,"Four best friends (Tibby, Lena, Carmen & Bridget) who buy a mysterious pair of pants that fits each of them, despite their differing sizes, and makes whoever wears them feel fabulous. When faced with the prospect of spending their first summer apart, the pals decide they'll swap the pants so that each girl in turn can enjoy the magic.",2005-06-01,2.3113,6.513,1311 +5842,253,Live and Let Die,James Bond must investigate a mysterious murder case of a British agent in New Orleans. Soon he finds himself up against a gangster boss named Mr. Big.,1973-06-27,3.885,6.513,2134 +5843,160139,Night Train to Lisbon,"Raimund Gregorius, having saved a beautiful Portuguese woman from leaping to her death, stumbles upon a mesmerizing book by a Portuguese author, which compels him to suddenly abandon the boring life he has led for years and to embark on an enthralling adventure. In search of the author, Gregorius acts as detective, pulling together pieces of a puzzle that involves political and emotional intrigue and the highest possible stakes. His voyage is one that transcends time and space, delving into the realms of history, medicine and love, all in search of true meaning to his life.",2013-03-07,2.4569,6.5,420 +5844,157847,Joe,The rough-hewn boss of a lumber crew courts trouble when he steps in to protect the youngest member of his team from an abusive father.,2014-04-11,1.9055,6.509,965 +5845,68724,Elysium,"In the year 2159, two classes of people exist: the very wealthy who live on a pristine man-made space station called Elysium, and the rest, who live on an overpopulated, ruined Earth. Secretary Rhodes, a hard line government official, will stop at nothing to enforce anti-immigration laws and preserve the luxurious lifestyle of the citizens of Elysium. That doesn’t stop the people of Earth from trying to get in, by any means they can. When unlucky Max is backed into a corner, he agrees to take on a daunting mission that, if successful, will not only save his life, but could bring equality to these polarized worlds.",2013-08-07,6.2653,6.512,9131 +5846,10866,Joy Ride,"Three young people on a road trip from Colorado to New Jersey talk to a trucker on their CB radio, then must escape when he turns out to be a psychotic killer.",2001-10-05,3.6294,6.512,1256 +5847,584,2 Fast 2 Furious,"It's a major double-cross when former police officer Brian O'Conner teams up with his ex-con buddy Roman Pearce to transport a shipment of ""dirty"" money for shady Miami-based import-export dealer Carter Verone. But the guys are actually working with undercover agent Monica Fuentes to bring Verone down.",2003-06-05,1.7461,6.512,7751 +5848,975511,The Return,"After twenty years away, Odysseus washes up on the shores of Ithaca, haggard and unrecognizable. The king has finally returned home, but much has changed in his kingdom since he left to fight in the Trojan war.",2024-09-07,3.1464,6.506,333 +5849,301365,The Neon Demon,"When aspiring model Jesse moves to Los Angeles, her youth and vitality are devoured by a group of beauty-obsessed women who will take any means necessary to get what she has.",2016-05-31,4.9799,6.511,3798 +5850,172385,Rio 2,"It's a jungle out there for Blu, Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in, he goes beak-to-beak with the vengeful Nigel, and meets the most fearsome adversary of all: his father-in-law.",2014-03-19,6.3733,6.511,3597 +5851,13649,High School Musical 2,"The East High Wildcats are gearing up for big fun as they land the coolest summer jobs imaginable. Troy, Gabriella, Chad, and Taylor have scored sweet gigs at the Lava Springs Country Club owned by Sharpay and Ryan's family. Sharpay's first rule of business: Get Troy. As Troy experiences a life of privilege he's never known, will he give up the Wildcats and Gabriella to rise to the top?",2007-08-17,2.535,6.511,3778 +5852,10543,Fear,"Nicole Walker always dreamed of being swept away by someone special — someone strong, sexy and sensitive who would care for her more than anything else in the world. David is all that and more: a modern-day knight who charms and seduces her, body and soul. But her perfect boyfriend is not all he seems to be. His sweet facade masks a savage, dark side that will soon transform Nicole's dream into a nightmare.",1996-04-12,4.9563,6.5,919 +5853,73723,The Lorax,"A 12-year-old boy searches for the one thing that will enable him to win the affection of the girl of his dreams. To find it he must discover the story of the Lorax, the grumpy yet charming creature who fights to protect his world.",2012-03-01,8.9487,6.51,3703 +5854,14249,Revenge,"Michael ‘Jay’ Cochran has just left the Navy after 12 years and he's not quite sure what he's going to do, except that he knows he wants a holiday. He decides to visit Tiburon Mendez, a powerful but shady Mexican businessman who he once flew to Alaska for a hunting trip. Arriving at the Mendez mansion in Mexico, he is immediately surprised by the beauty and youth of Mendez’s wife, Miryea.",1990-02-16,2.4446,6.5,456 +5855,9353,Nacho Libre,"Ignacio, a disrespected cook at a Mexican monastery, can barely afford to feed the orphans who live there. Inspired by a local wrestling hero, he decides to moonlight as the not-so-famous Luchador ""Nacho Libre"" to earn money for the monastery -- not to mention the admiration of beautiful nun Sister Encarnación.",2006-06-16,5.0437,6.51,1730 +5856,8288,A Midsummer Night's Sex Comedy,"A nutty inventor, his frustrated wife, a philosopher cousin, his much younger fiancée, a randy doctor, and a free-thinking nurse spend a summer weekend in and around a stunning - and possibly magical - country house.",1982-07-16,1.3255,6.51,442 +5857,661231,Operation Mincemeat,"In 1943, two British intelligence officers concoct Operation Mincemeat, wherein their plan to drop a corpse with false papers off the coast of Spain would fool Nazi spies into believing the Allied forces were planning to attack by way of Greece rather than Sicily.",2022-04-01,2.3374,6.509,737 +5858,458534,Rolling to You,"Jocelyn is a selfish and misogynist businessman. He tries to seduce a young pretty woman by pretending to be handicapped, till the day he meets her sister, who is also in a wheelchair.",2018-03-14,1.5283,6.5,764 +5859,390054,Sand Castle,"Set during the occupation of Iraq, a squad of U.S. soldiers try to protect a small village.",2017-04-21,1.287,6.5,816 +5860,13665,Arthur,Arthur is a 30-year-old child who will inherit $750 million if he complies with his family's demands and marries the woman of their choosing.,1981-07-17,1.476,6.509,444 +5861,11559,Tideland,"Because of the actions of her irresponsible parents, a young girl is left alone on a decrepit country estate and survives inside her fantastic imagination.",2005-09-09,1.6008,6.509,580 +5862,10991,Pokémon 3: The Movie,"When the sadness of her father's disappearance gets to Molly Hale, she unknowingly uses the Unown to create her own dream world along with Entei, who she believes to be her father. When Entei kidnaps Ash's mother, Ash — alongside Misty and Brock — invade the mansion looking for his mom and trying to stop the mysteries of Molly's Dream World and Entei!",2000-07-08,2.8257,6.5,639 +5863,9535,Analyze This,"Countless wiseguy films are spoofed in this film that centers on the neuroses and angst of a powerful Mafia racketeer who suffers from panic attacks. When Paul Vitti needs help dealing with his role in the ""family,"" unlucky shrink Dr. Ben Sobel is given just days to resolve Vitti's emotional crisis and turn him into a happy, well-adjusted gangster.",1999-03-05,3.0744,6.509,1973 +5864,9350,Cliffhanger,"A year after losing his friend in a tragic 4,000-foot fall, former ranger Gabe Walker and his partner, Hal, are called to return to the same peak to rescue a group of stranded climbers, only to learn the climbers are actually thieving hijackers who are looking for boxes full of money.",1993-05-28,4.3956,6.5,2468 +5865,3536,U-571,"In the midst of World War II, the battle under the sea rages and the Nazis have the upper hand as the Allies are unable to crack their war codes. However, after a wrecked U-boat sends out an SOS signal, the Allies realise this is their chance to seize the 'enigma coding machine'.",2000-04-20,2.7505,6.5,1276 +5866,389868,Seoul Station,"In this animated prequel to ""Train to Busan,"" a group of survivors deals with a zombie pandemic that unleashes itself in downtown Seoul.",2016-08-17,1.2705,6.508,452 +5867,374465,Things to Come,"Nathalie teaches philosophy at a high school in Paris. She is passionate about her job and particularly enjoys passing on the pleasure of thinking. Married with two children, she divides her time between her family, former students and her very possessive mother. One day, Nathalie’s husband announces he is leaving her for another woman. With freedom thrust upon her, Nathalie must reinvent her life.",2016-04-06,0.877,6.508,325 +5868,400650,Mary Poppins Returns,"Mary Poppins returns to the Banks family and helps them evade grave dangers by taking them on magical, musical adventures.",2018-12-13,3.0749,6.507,3372 +5869,351044,Welcome to Marwen,"When a devastating attack shatters Mark Hogancamp and wipes away all memories, no one expected recovery. Putting together pieces from his old and new life, Mark meticulously creates a wondrous town named Marwen where he can heal and be heroic. As he builds an astonishing art installation — a testament to the most powerful women he knows — through his fantasy world, he draws strength to triumph in the real one.",2018-12-21,2.8279,6.5,1169 +5870,184314,Young & Beautiful,"Isabelle, a 17-year-old student, loses her virginity during a quick holiday romance. When she returns home, she begins a secret life as a prostitute for a year.",2013-08-21,4.8071,6.507,1268 +5871,72197,The Pirates! In an Adventure with Scientists!,"The enthusiastic Pirate Captain, along with his rag-tag crew, sets out to beat his bitter rivals. The chaotic adventure takes them from exotic shores to Victorian London, and from a haplessly smitten scientist to a diabolical queen.",2012-03-12,2.652,6.5,1147 +5872,43629,Doodlebug,"In his squalid apartment, a man tries to squash with his shoe an insect of some kind that is moving around the room.",1997-01-01,0.8295,6.507,461 +5873,9689,Hollywood Ending,"Woody Allen stars as Val Waxman, a two-time Oscar winner turned washed-up, neurotic director in desperate need of a comeback. When it comes, Waxman finds himself backed into a corner: Work for his ex-wife Ellie or forfeit his last shot. Is Val blinded by love when he opts for the reconnect? Is love blind when it comes to Ellie's staunch support? Literally and figuratively, the proof is the picture.",2002-05-03,0.9219,6.507,508 +5874,531438,Holiday in the Wild,"When her husband abruptly ends their marriage, empty nester Kate embarks on a solo second honeymoon in Africa, finding purpose and potential romance.",2019-11-06,1.8327,6.506,541 +5875,101669,Mother's Day,Crazed members of a sadistic family return to their childhood home to terrorize the new owners.,2010-09-23,1.4425,6.507,440 +5876,30689,Four Flies on Grey Velvet,"Roberto, a drummer in a rock band, keeps receiving weird phone calls and being followed by a mysterious man. One night he manages to catch up with his persecutor and tries to get him to talk but in the ensuing struggle he accidentally stabs him. He runs away, but he understands his troubles have just begun when the following day he receives an envelope with photos of him killing the man. Someone is killing all his friends and trying to frame him for the murders.",1971-12-17,1.4216,6.5,404 +5877,20943,The Ugly Truth,"A romantically challenged morning show producer is reluctantly embroiled in a series of outrageous tests by her chauvinistic correspondent to prove his theories on relationships and help her find love. His clever ploys, however, lead to an unexpected result.",2009-07-24,5.7758,6.506,3623 +5878,20526,TRON: Legacy,"Sam Flynn, the tech-savvy and daring son of Kevin Flynn, investigates his father's disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra, Sam quests to stop evil dictator Clu from crossing into the real world.",2010-12-14,7.2477,6.506,7391 +5879,14510,From Beyond,"The Resonator, a powerful machine that can control the sixth sense, has killed its creator and sent his associate into an insane asylum. When a beautiful psychiatrist becomes determined to continue the experiment, she unwittingly opens the door to a hostile parallel universe.",1986-10-24,2.151,6.508,597 +5880,12242,Mulan II,"Fa Mulan gets the surprise of her young life when her love, Captain Li Shang asks for her hand in marriage. Before the two can have their happily ever after, the Emperor assigns them a secret mission, to escort three princesses to Chang'an, China. Mushu is determined to drive a wedge between the couple after he learns that he will lose his guardian job if Mulan marries into the Li family.",2004-11-03,5.443,6.506,2443 +5881,11543,Kingpin,"After bowler Roy Munson swindles the wrong crowd and is left with a hook for a hand, he settles into impoverished obscurity. That is, until he uncovers the next big thing: an Amish kid named Ishmael. So, the corrupt and the hopelessly naive hit the circuit intent on settling an old score with Big Ern.",1996-07-04,2.9486,6.507,906 +5882,8012,Get Shorty,"Chili Palmer is a Miami mobster who gets sent to L.A. to collect a bad debt from Harry Zimm, a Hollywood producer who specializes in cheesy horror films. When Chili meets Harry's leading lady, the romantic sparks fly. After pitching his own life story as a movie idea, Chili learns that being a mobster and being a Hollywood producer really aren't all that different.",1995-10-20,2.4461,6.506,1116 +5883,24122,The Rebound,"Upon discovering her husband's infidelity, Sandy leaves the suburbs and moves into the city. There, she befriends Aram, a guy whose wife only married him so she could get a green card. Sandy hires Aram to be her nanny, and it isn't long until Aram and Sandy find out they get along wonderfully and start to date. But is their relationship real or is it, in fact, just a rebound for both of them?",2009-09-16,3.1668,6.505,915 +5884,18129,The Grifters,"A small-time conman has his loyalties torn between his estranged mother and his new girlfriend, both of whom are high-stakes grifters with their own angles to play.",1990-08-08,2.0863,6.5,438 +5885,11827,Heavy Metal,"The embodiment of ultimate evil, a glowing orb terrorizes a young girl with bizarre stories of dark fantasy, eroticism and horror.",1981-08-07,2.3411,6.5,731 +5886,9086,Young Guns II,"Three of the original five ""young guns"" — Billy the Kid, Jose Chavez y Chavez, and Doc Scurlock — return in Young Guns, Part 2, which is the story of Billy the Kid and his race to safety in Old Mexico while being trailed by a group of government agents led by Pat Garrett.",1990-08-01,2.4599,6.505,558 +5887,392207,The Invisible Guardian,"When the naked body of a teenage girl is found on the banks of the River Baztán, it is quickly linked to a similar murder one month before. Soon, rumours are flying in the nearby village of Elizondo. Is this the work of a ritualistic killer or is it the basajaun, the ‘invisible guardian’ of Basque mythology? Inspector Amaia Salazar leads the investigation, taking her back to the heart of the Basque country where she was born, and where she hoped never to return. Shrouded in mist and surrounded by impenetrable forests, it is a place of unresolved conflicts and a terrible secret from Amaia’s childhood that will come back to haunt her. Faced with the superstitions of the village, Amaia must fight the demons of her past to confront the reality of a serial killer on the loose. But as she is drawn deeper into the investigation, she feels the presence of something darker lurking in the shadows…",2017-03-03,1.9425,6.504,701 +5888,22897,It's Complicated,"Ten years after their divorce, Jane and Jake Adler unite for their son's college graduation and unexpectedly end up sleeping together. But Jake is married, and Jane is embarking on a new romance with her architect. Now, she has to sort out her life—just when she thought she had it all figured out.",2009-12-23,2.9686,6.504,1449 +5889,13680,The Game Plan,"Bachelor football star Joe Kingman seems to have it all. He is wealthy and carefree, and his team is on the way to capturing a championship. Suddenly, he is tackled by some unexpected news: He has a young daughter, the result of a last fling with his ex-wife. Joe must learn to balance his personal and professional lives with the needs of his child.",2007-09-28,4.0943,6.504,2108 +5890,12222,Horton Hears a Who!,"The classic and beloved story from Dr. Seuss is now a CG animated film from 20th Century Fox Animation, the makers of the Ice Age films. An imaginative elephant named Horton (Jim Carrey) hears a faint cry for help coming from a tiny speck of dust floating through the air. Horton suspects there may be life on that speck and despite a surrounding community, which thinks he has lost his mind, he is determined to save the tiny particle! Jim Carrey and Steve Carell lead an all-star cast in bringing this wonderful family picture to life!",2008-03-03,4.6339,6.504,3394 +5891,11326,Tommy,"After a series of traumatic childhood events, a psychosomatically deaf, dumb and blind boy becomes a master pinball player and the object of a religious cult.",1975-03-19,1.7596,6.5,341 +5892,193,Star Trek: Generations,Captain Jean-Luc Picard and the crew of the Enterprise-D find themselves at odds with the renegade scientist Soran who is destroying entire star systems. Only one man can help Picard stop Soran's scheme...and he's been dead for seventy-eight years.,1994-11-18,2.6879,6.504,1393 +5893,390555,Bonanza: The Return,A man with a grudge against the late Little Joe seeks revenge on the Cartwrights and attempts to take over the Ponderosa.,1993-11-24,0.5647,6.503,400 +5894,10750,Toy Soldiers,"After federal agents arrest a drug czar and put him on trial, the cartel leader's vicious son storms a prep school and takes its students hostage. They rebel against the armed intruders and try to take back their academy by any means necessary.",1991-04-24,1.621,6.503,356 +5895,4729,The Gendarme Gets Married,"The Saint-Tropez police launch a major offensive against dangerous drivers. Marechal Cruchot (Louis de Funès) relishes the assignment, which he pursues with a manic zeal. Cruchot is after an offending driver, who turns out to be Josépha (Claude Gensac), the widow of a highly regarded police colonel. When they meet, Cruchot falls instantly in love....",1968-10-30,1.5389,6.5,578 +5896,444539,The Bookshop,"Set in a small English town in 1959, a woman decides, against polite but ruthless local opposition, to open a bookshop, a decision which becomes a political minefield.",2017-11-10,1.5415,6.502,443 +5897,248774,Obvious Child,"An immature, newly unemployed comic must navigate the murky waters of adulthood after her fling with a graduate student results in an unplanned pregnancy.",2014-06-06,0.7562,6.5,443 +5898,16523,Where the Wild Things Are,"Max imagines running away from his mom and sailing to a far-off land where large talking beasts—Ira, Carol, Douglas, the Bull, Judith and Alexander—crown him as their king, play rumpus, build forts and discover secret hideaways.",2009-10-16,2.5423,6.502,1907 +5899,467938,Revenge,Jen's romantic getaway with her wealthy married boyfriend is disrupted when his friends arrive for an impromptu hunting trip. Tension mounts at the house until the situation culminates in an unexpected way.,2018-02-07,4.4025,6.501,1945 +5900,14854,Lone Wolf McQuade,"The archetypical renegade Texas Ranger wages war against a drug kingpin with automatic weapons, his wits and martial arts after a gun battle leaves his partner dead. All of this inevitably culminates in a martial arts showdown between the drug lord and the ranger, and involving the woman they both love.",1983-04-15,2.1111,6.501,379 +5901,12720,Suicide Club,"When 54 high school girls throw themselves in front of a subway train it appears to be only the beginning of a string of suicides around the country. Detective Kuroda tries to find the answer to this mystery, which isn't as simple as he had hoped.",2001-10-29,1.0376,6.5,513 +5902,12689,"Angus, Thongs and Perfect Snogging","Georgia Nicolson is fourteen, lives with nosey parents who don't understand her, an annoying three year old sister and has to wear a beret to school. She would, however, rather be blonde, have a smaller nose and a boyfriend. Revolving around her hilarious journal entries, prepare to be engulfed in the world of the soaring joys and bottomless angst of being a teenager.",2008-07-25,2.1035,6.5,810 +5903,9870,Forgetting Sarah Marshall,"When actress Sarah Marshall dumps aspiring musician Peter Bretter for rock star Aldous Snow, Peter's world comes crashing down. His best friend Brian suggests that Peter should get away from everything and to fly off to Hawaii to escape all his problems. After arriving in Hawaii and meeting the beautiful receptionist Rachel Jansen, Peter is shocked to see not only Aldous in Hawaii, but also Sarah.",2008-04-17,3.8809,6.5,3504 +5904,1551,Flatliners,"Five medical students want to find out if there is life after death. They plan to stop one of their hearts for a few seconds, thus simulating death, and then bring the person back to life.",1990-08-10,3.3972,6.501,1612 +5905,877183,The Simpsons in Plusaversary,"The Simpsons host a Disney+ Day party and everyone is on the list… except Homer. With friends from across the service and music fit for a Disney Princess, Plusaversary is Springfield's event of the year.",2021-11-12,1.4687,6.5,419 +5906,445040,My Friend Dahmer,"Jeffrey Dahmer struggles with a difficult family life as a young boy. During his teenage years he slowly transforms, edging closer to the serial killer he was to become.",2017-11-03,1.7982,6.5,610 +5907,10782,Basic,"When a hurricane hits a US Army base on the edge of the Panama Canal, an elite covert operations team of US Army Rangers recruits are on a routine jungle training exercise that goes horribly awry. Only two recruits are rescued, one of which is badly injured, but both have different accounts regarding the fate of their leader, legendary and ruthless Army Ranger Drill Sergeant Nathan West, and the rest of their platoon. Tom Hardy, an ex-army Ranger turned maverick DEA agent is brought in to solve the mystery and uncover what really happened out there.",2003-04-18,3.1485,6.5,1078 +5908,4233,Scream 2,"Two years after the first series of murders, as Sidney Prescott acclimates to college life, someone donning the Ghostface costume begins a new string of killings.",1997-12-12,6.1842,6.5,4390 +5909,845783,Baghead,"Following the death of her estranged father, Iris learns she has inherited a run-down, centuries-old pub. She travels to Berlin to identify her father’s body and meet with The Solicitor to discuss the estate. Little does she know, when the deed is signed she will become inextricably tied to an unspeakable entity that resides in the pub’s basement – Baghead – a shape-shifting creature that can transform into the dead.",2023-12-28,6.8351,6.499,429 +5910,575100,When Mom Is Away,"A stressed-out mom takes off on a 10-day solo vacation, sending her family into chaos as the dad tries to take over the household duties.",2019-02-07,0.769,6.499,503 +5911,301804,Before I Wake,An orphaned child's dreams—and nightmares—manifest physically as he sleeps.,2016-04-07,2.6835,6.499,1903 +5912,13465,The Adventures of Ichabod and Mr. Toad,"The Wind in the Willows: Concise version of Kenneth Grahame's story of the same name. J. Thaddeus Toad, owner of Toad Hall, is prone to fads, such as the newfangled motor car. This desire for the very latest lands him in much trouble with the wrong crowd, and it is up to his friends, Mole, Rat and Badger to save him from himself. - The Legend of Sleepy Hollow: Retelling of Washington Irving's story set in a tiny New England town. Ichabod Crane, the new schoolmaster, falls for the town beauty, Katrina Van Tassel, and the town Bully Brom Bones decides that he is a little too successful and needs ""convincing"" that Katrina is not for him.",1949-10-05,2.5885,6.499,641 +5913,12610,Osmosis Jones,"A white blood cell policeman, with the help of a cold pill, must stop a deadly virus from destroying the human they live in, Frank.",2001-08-10,2.2123,6.499,1045 +5914,10126,Colors,"A confident young cop is shown the ropes by a veteran partner in the dangerous gang-controlled barrios of Los Angeles, where the gang culture is enforced by the colors the members wear.",1988-04-15,2.6454,6.499,496 +5915,7442,Sleeping with the Enemy,"A young woman fakes her own death in an attempt to escape her nightmarish marriage, but discovers it is impossible to elude her controlling husband.",1991-01-13,2.8507,6.499,1139 +5916,469274,City Hunter,"Nicky Larson is tasked to recover the perfume of Cupid, a perfume that would make anyone who uses it irresistible.",2019-02-06,1.443,6.5,802 +5917,376659,Bad Moms,"When three overworked and under-appreciated moms are pushed beyond their limits, they ditch their conventional responsibilities for a jolt of long overdue freedom, fun, and comedic self-indulgence.",2016-07-28,3.6046,6.498,4151 +5918,8346,My Big Fat Greek Wedding,A young Greek woman falls in love with a non-Greek and struggles to get her family to accept him while she comes to terms with her heritage and cultural identity.,2002-04-19,2.5708,6.498,2192 +5919,450001,Master Z: Ip Man Legacy,"Following his defeat by Master Ip, Cheung Tin Chi tries to make a life with his young son in Hong Kong, waiting tables at a bar that caters to expats. But it's not long before the mix of foreigners, money, and triad leaders draw him once again to the fight.",2018-12-20,2.9668,6.497,554 +5920,417384,Scary Stories to Tell in the Dark,"Mill Valley, Pennsylvania, Halloween night, 1968. After playing a joke on a school bully, Stella and her friends decide to sneak into a supposedly haunted house that once belonged to the powerful Bellows family, unleashing dark forces that they will be unable to control.",2019-08-08,3.6376,6.497,2729 +5921,448095,I Still See You,"Ten years after an apocalyptic event left the world haunted by ghosts, Roni receives a threatening message from beyond the grave. Joining forces with a mysterious classmate, Kirk, Roni descends into a shadow world that blurs the bounds of the living and the dead-and begins a desperate race against time to stop a cunning killer.",2018-09-27,1.8657,6.496,627 +5922,39102,Dragon Ball Z: Lord Slug,A Super Namekian named Slug comes to invade Earth. But the Z Warriors do their best to stop Slug and his gang.,1991-03-19,3.2144,6.5,556 +5923,11395,The Santa Clause,"On Christmas Eve, divorced dad Scott Calvin and his son discover Santa Claus has fallen off their roof. When Scott takes the reins of the magical sleigh, he finds he is now the new Santa, and must convince a world of disbelievers, including himself.",1994-11-11,2.8466,6.5,2144 +5924,10631,All of Me,"Just before stubborn millionaire Edwina Cutwater dies, she asks her uptight lawyer, Roger Cobb, to amend her will so that her soul will pass to the young, vibrant Terry Hoskins – but the spiritual transference goes awry. Edwina enters Roger's body instead, forcing him to battle Edwina for control of his own being.",1984-09-21,1.165,6.496,350 +5925,5353,The Hunting Party,"A young journalist, an experienced cameraman and a discredited reporter find their bold plan to capture Bosnia's top war criminal quickly spiraling out of control when a UN representative mistakes them for a CIA hit squad.",2007-09-03,1.6576,6.5,335 +5926,773655,Death to 2020,"2020: A year so [insert adjective of choice here], even the creators of Black Mirror couldn't make it up… but that doesn't mean they don't have a little something to add. This comedy event that tells the story of the dreadful year that was — and perhaps still is? The documentary-style special weaves together some of the world's most (fictitious) renowned voices with real-life archival footage.",2020-12-27,1.8735,6.495,752 +5927,726208,Don't Listen,"After a tragic turn of events at the new home he's fixing up, Daniel hears a ghostly plea for help, spurring him to seek out a famous paranormal expert.",2020-07-24,2.7736,6.495,768 +5928,467482,A Man in a Hurry,"The story revolves around Alain, a busy businessman who is always in a rush. In his life, there is no room for spare time or family. But one day, he suffers a stroke, which makes him lose his grasp of language and use one word in place of another.",2018-11-07,0.6923,6.495,312 +5929,186929,Borgman,"An enigmatic vagrant cons himself into the home life of an arrogant upper-class family, turning their lives into a psychological nightmare in the process.",2013-08-29,0.7724,6.5,331 +5930,72387,Safe,"After a former elite agent rescues a 12-year-old Chinese girl who's been abducted, they find themselves in the middle of a standoff between Triads, the Russian Mafia and high-level corrupt New York City politicians and police.",2012-04-16,4.6713,6.495,2541 +5931,535,Flashdance,"Alex Owens, a young woman juggling between two odd jobs, aspires to become a successful ballet dancer. Nick, who is her boss and lover, supports and encourages her to fulfil her dream.",1983-04-14,3.4399,6.495,1528 +5932,475303,A Rainy Day in New York,"Two young people arrive in New York to spend a weekend, but once they arrive they're met with bad weather and a series of adventures.",2019-07-26,0.28,6.494,2295 +5933,12117,Instinct,"In a prison for the criminally insane, deranged anthropologist Ethan Powell is set to be examined by a bright young psychiatrist, Theo Caulder. Driven by ambition and a hunger for the truth, Caulder will eventually risk everything—even put his very life on the line—in a harrowing attempt to understand the bizarre actions of this madman.",1999-06-04,1.8554,6.494,629 +5934,9522,Wedding Crashers,"John and his buddy, Jeremy are emotional criminals who know how to use a woman's hopes and dreams for their own carnal gain. Their modus operandi: crashing weddings. Normally, they meet guests who want to toast the romantic day with a random hook-up. But when John meets Claire, he discovers what true love – and heartache – feels like.",2005-07-13,4.9922,6.493,4494 +5935,340176,Tag,"Mitsuko, a young student, encounters a series of horrifying incidents set in alternate realities where people wind up dead in the most horrendous fashion.",2015-05-11,1.9142,6.493,371 +5936,17710,Hey Arnold! The Movie,Arnold and his friends must recover a stolen document in order to prevent the neighborhood from being bulldozed.,2002-06-28,1.3416,6.493,362 +5937,9691,Assassins,"Assassin Robert Rath arrives at a funeral to kill a prominent mobster, only to witness a rival hired gun complete the job for him -- with grisly results. Horrified by the murder of innocent bystanders, Rath decides to take one last job and then return to civilian life. But finding his way out of the world of contract killing grows ever more dangerous as Rath falls for his female target and becomes a marked man himself.",1995-10-06,4.967,6.493,1612 +5938,1140066,Paradise,A man sees the dark side of the time-manipulating biotech company he works for when a crushing debt forces his wife to give up 40 years of her own life.,2023-06-24,1.598,6.492,644 +5939,939335,Muzzle,"LAPD K-9 officer Jake Rosser has just witnessed the shocking murder of his dedicated partner by a mysterious assailant. As he investigates the shooter’s identity, he uncovers a vast conspiracy that has a choke-hold on the city in this thrilling journey through the tangled streets of Los Angeles and the corrupt bureaucracy of the LAPD.",2023-09-29,3.4643,6.487,301 +5940,595586,Causeway,"A US soldier suffers a traumatic brain injury while fighting in Afghanistan and struggles to adjust to life back home in New Orleans. When she meets local mechanic James, the pair begin to forge an unexpected bond.",2022-10-28,2.059,6.492,494 +5941,553604,Honest Thief,"A bank robber tries to turn himself in because he's falling in love and wants to live an honest life...but when he realizes the Feds are more corrupt than him, he must fight back to clear his name.",2020-09-03,2.7393,6.492,1789 +5942,270343,Love at First Fight,"Arnaud, facing an uncertain future and a dearth of choices in a small French coastal town, meets and falls for the apocalyptic-minded Madeleine, who joins an army boot camp to learn military and survival skills to prepare for the upcoming environmental collapse. Intrigued and excited by Madeleine’s wild ideas, Arnaud signs up for the boot camp himself. They soon realize that the boot camp is harder than they’d imagined, but the experience nonetheless cements them together as the couple continues to explore their young love.",2014-08-20,0.9321,6.492,444 +5943,10326,Forever Young,A 1939 test pilot asks his best friend to use him as a guinea pig for a cryogenics experiment. Daniel McCormick wants to be frozen for a year so that he doesn't have to watch his love lying in a coma. The next thing Daniel knows is that he's been awoken in 1992.,1992-12-16,1.7362,6.5,916 +5944,7516,Smokin' Aces,"When a Las Vegas performer-turned-snitch named Buddy Israel decides to turn state's evidence and testify against the mob, it seems that a whole lot of people would like to make sure he's no longer breathing.",2006-12-09,2.4751,6.492,1727 +5945,517088,Being the Ricardos,Lucille Ball and Desi Arnaz face a crisis that could end their careers and another that could end their marriage.,2021-12-10,1.96,6.491,660 +5946,309302,Wolf Totem,"In 1969, a young Beijing student, Chen Zhen, is sent to live among the nomadic herdsmen of Inner Mongolia. Caught between the advance of civilization from the south and the nomads' traditional enemies - the marauding wolves - to the north; humans and animals, residents and invaders alike, struggle to find their true place in the world.",2015-02-19,1.4891,6.491,388 +5947,287689,7 Days in Hell,A fictional documentary-style expose on the rivalry between two tennis stars who battled it out in a 1999 match that lasted seven days.,2015-07-08,1.6969,6.491,408 +5948,45243,The Hangover Part II,"The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year, Stu is playing it safe with a mellow pre-wedding brunch. However, nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.",2011-05-25,12.3594,6.491,10801 +5949,359246,Hell House LLC,"Five years after an unexplained malfunction causes the death of 15 tour-goers and staff on the opening night of a Halloween haunted house tour, a documentary crew travels back to the scene of the tragedy to find out what really happened.",2015-10-16,4.3234,6.5,539 +5950,229297,Magic in the Moonlight,"Set in the 1920s French Riviera, a master magician is commissioned to try and expose a psychic as a fraud.",2014-07-25,1.6605,6.49,2106 +5951,21629,Stir Crazy,"New Yorkers Skip Donahue and Harry Monroe have no jobs and no prospects, so they decide to flee the city and find work elsewhere, landing jobs wearing woodpecker costumes to promote the opening of a bank. When their feathery costumes are stolen and used in a bank robbery, they no longer have to worry about employment — they're sent to prison.",1980-12-12,2.4663,6.5,455 +5952,9975,Curious George,"When The Man in the Yellow Hat befriends Curious George in the jungle, they set off on a non-stop, fun-filled journey through the wonders of the big city toward the warmth of true friendship.",2006-02-10,2.9223,6.49,526 +5953,8954,Reservation Road,"Two fathers' lives intersect when one of them is involved in a terrible and sudden hit-and-run car accident that leaves the other's son dead. In response, the two men react in unexpected ways as a reckoning looms in the near future.",2007-09-13,1.0851,6.49,394 +5954,8208,The Man Who Knew Too Much,"While vacationing in St. Moritz, a British couple receive a clue to an imminent assassination attempt, only to learn that their daughter has been kidnapped to keep them quiet.",1934-12-01,1.8681,6.49,415 +5955,401469,Widows,"A police shootout leaves four thieves dead during an explosive armed robbery attempt in Chicago. Their widows have nothing in common except a debt left behind by their spouses' criminal activities. Hoping to forge a future on their own terms, they join forces to pull off a heist.",2018-11-06,2.7642,6.489,2358 +5956,36593,Naked Gun 33⅓: The Final Insult,"Frank Drebin is persuaded out of retirement to go undercover in a state prison. There he has to find out what top terrorist, Rocco, has planned for when he escapes. Adding to his problems, Frank's wife, Jane, is desperate for a baby.",1994-03-18,9.6214,6.488,2240 +5957,20048,Confessions of a Shopaholic,"In the glamorous world of New York City, Rebecca Bloomwood is a fun-loving girl who is really good at shopping – a little too good, perhaps. She dreams of working for her favorite fashion magazine, but can't quite get her foot in the door – until ironically, she snags a job as an advice columnist for a financial magazine published by the same company.",2009-02-05,3.0871,6.489,2658 +5958,18405,The Last House on the Left,"When athletic teen Mari Collingwood opts to hang out with her friend Paige in town rather than spend an evening in with her parents vacationing at the family's remote lake house, it marks the beginning of a night no one is going to forget.",2009-03-13,8.5074,6.489,1839 +5959,10859,Stakeout,"Two detectives observe an escaped convict's ex-girlfriend, but complications set in when one of them falls for her.",1987-08-05,2.1583,6.489,422 +5960,9032,Big Daddy,"A lazy law school grad adopts a kid to impress his girlfriend, but everything doesn't go as planned and he becomes the unlikely foster father.",1999-06-25,5.4916,6.489,3372 +5961,1907,The Beach,"Twenty-something Richard travels to Thailand and finds himself in possession of a strange map. Rumours state that it leads to a solitary beach paradise, a tropical bliss - excited and intrigued, he sets out to find it.",2000-02-03,3.5918,6.489,4491 +5962,1035048,Elevation,A single father and two women venture from the safety of their homes to face monstrous creatures to save the life of a young boy.,2024-11-07,11.8432,6.5,781 +5963,1027073,In the Land of Saints and Sinners,"In a remote Irish village, a damaged Finbar is forced to fight for redemption after a lifetime of sins, but what price is he willing to pay? In the land of saints and sinners, some sins can't be buried.",2023-10-06,2.6711,6.489,509 +5964,309299,Experimenter,"Yale University, 1961. Stanley Milgram designs a psychology experiment that still resonates to this day, in which people think they’re delivering painful electric shocks to an affable stranger strapped into a chair in another room. Despite his pleads for mercy, the majority of subjects don’t stop the experiment, administering what they think is a near-fatal electric shock, simply because they’ve been told to do so. With Nazi Adolf Eichmann’s trial airing in living rooms across America, Milgram strikes a nerve in popular culture and the scientific community with his exploration into people’s tendency to comply with authority. Celebrated in some circles, he is also accused of being a deceptive, manipulative monster, but his wife Sasha stands by him through it all.",2015-10-16,1.5507,6.488,468 +5965,41592,StreetDance 3D,"In order to win the Street Dance Championships, a dance crew is forced to work with ballet dancers from the Royal Dance School in exchange for rehearsal space.",2010-05-19,1.3983,6.488,412 +5966,11001,Blue Streak,"Miles Logan is a jewel thief who just hit the big time by stealing a huge diamond. However, after two years in jail, he comes to find out that he hid the diamond in a police building that was being built at the time of the robbery. In an attempt to regain his diamond, he poses as an LAPD detective.",1999-09-17,3.6896,6.488,1540 +5967,852096,We Have a Ghost,"After Kevin finds a ghost named Ernest haunting his new home, he becomes an overnight social media sensation. But when Kevin and Ernest go rogue to investigate the mystery of the latter's past, they become targets of the CIA.",2023-02-24,2.7551,6.487,635 +5968,4141,Shoot 'Em Up,"A man named Mr. Smith delivers a woman's baby during a shootout, and is then called upon to protect the newborn from the army of gunmen.",2007-07-26,3.6189,6.487,1935 +5969,1968,Fools Rush In,"After a one night stand with Alex, Isabel realizes that she is pregnant and they decide to get married. However, along with the marriage comes compromise of one's own cultural traditions.",1997-02-14,2.1543,6.487,568 +5970,554230,The Lost Daughter,A woman's seaside vacation takes a dark turn when her obsession with a young mother forces her to confront secrets from her past.,2021-12-15,1.8437,6.486,1027 +5971,532620,Let's Dance,"After his crew breaks up, a gifted but insecure hip-hop dancer teaches at a top ballet school in Paris, where he falls for an aspiring ballerina.",2019-03-27,0.8723,6.486,330 +5972,11285,Cocoon: The Return,"The reinvigorated elderly group that left Earth comes back to visit their relatives. Will they all decide to go back to the planet where no one grows old, or will they be tempted to remain on Earth?",1988-09-13,2.3021,6.486,1003 +5973,2107,L.A. Story,"With the help of a talking freeway billboard, a ""wacky weatherman"" tries to win the heart of an English newspaper reporter, who is struggling to make sense of the strange world of early-90s Los Angeles.",1991-02-08,1.3112,6.5,353 +5974,967847,Ghostbusters: Frozen Empire,"When the discovery of an ancient artifact unleashes an evil force, Ghostbusters new and old must join forces to protect their home and save the world from a second Ice Age.",2024-03-20,7.9142,6.5,1888 +5975,396940,Super Dark Times,"Teenagers Zach and Josh have been best friends their whole lives, but when a gruesome accident leads to a cover-up, the secret drives a wedge between them and propels them down a rabbit hole of escalating paranoia and violence.",2017-09-29,1.4381,6.5,638 +5976,375012,Under the Shadow,"After Shideh's building is hit by a missile during the Iran-Iraq War, a superstitious neighbor suggests that the missile was cursed and might be carrying malevolent Middle-Eastern spirits. She becomes convinced a supernatural force within the building is attempting to possess her daughter Dorsa, and she has no choice but to confront these forces if she is to save her daughter and herself.",2016-09-30,1.2299,6.485,684 +5977,296271,The Devil Conspiracy,"A powerful biotech company has breakthrough technology allowing them to clone history’s most influential people with just a few fragments of DNA. Behind this company is a cabal of Satanists that steals the shroud of Christ, putting them in possession of Jesus’ DNA. The clone will serve as the ultimate offering to the devil. The Archangel Michael comes to earth and will stop at nothing to end the devil’s conspiracy.",2023-01-13,3.6288,6.485,425 +5978,157547,Oculus,A woman tries to exonerate her brother's murder conviction by proving that the crime was committed by a supernatural phenomenon.,2013-09-08,3.47,6.485,3032 +5979,70006,Never Back Down 2: The Beatdown,Four fighters from different backgrounds come together to train under an ex MMA rising star and then ultimately have to fight each other and the traitor in their midst.,2011-09-13,4.8322,6.485,663 +5980,296271,The Devil Conspiracy,"A powerful biotech company has breakthrough technology allowing them to clone history’s most influential people with just a few fragments of DNA. Behind this company is a cabal of Satanists that steals the shroud of Christ, putting them in possession of Jesus’ DNA. The clone will serve as the ultimate offering to the devil. The Archangel Michael comes to earth and will stop at nothing to end the devil’s conspiracy.",2023-01-13,3.6288,6.485,425 +5981,157547,Oculus,A woman tries to exonerate her brother's murder conviction by proving that the crime was committed by a supernatural phenomenon.,2013-09-08,3.47,6.485,3032 +5982,70006,Never Back Down 2: The Beatdown,Four fighters from different backgrounds come together to train under an ex MMA rising star and then ultimately have to fight each other and the traitor in their midst.,2011-09-13,4.8322,6.485,663 +5983,20857,Hardball,"An aimless young man who is scalping tickets, gambling and drinking, agrees to coach a Little League team from the Cabrini Green housing project in Chicago as a condition of getting a loan from a friend.",2001-09-14,1.4352,6.485,515 +5984,9772,Air Force One,"When Russian neo-nationalists hijack Air Force One, the world's most secure and extraordinary aircraft, the President is faced with a nearly impossible decision to give in to terrorist demands or sacrifice not only the country's dignity, but the lives of his wife and daughter.",1997-07-25,3.0875,6.485,3106 +5985,2133,The Perfect Storm,"In October 1991, a confluence of weather conditions combined to form a killer storm in the North Atlantic. Caught in the storm was the sword-fishing boat Andrea Gail.",2000-06-29,4.4767,6.5,2409 +5986,302,Swimming Pool,"A British crime novelist travels to her publisher's upmarket summer house in Southern France to seek solitude in order to work on her next book. However, the unexpected arrival of the publisher's daughter induces complications and a subsequent crime.",2003-05-21,2.9143,6.5,739 +5987,601470,The Eyes of Tammy Faye,"From the 1960s to the 1980s, evangelist Jim Baker and his ambitious wife, Tammy Faye, rose from humble beginnings to build an empire based on big-time evangelical Christianity--only for the couple to fall from grace because of some all-too-human sins.",2021-09-17,1.184,6.484,630 +5988,474051,Calibre,Two lifelong friends head up to an isolated Scottish Highlands village for a weekend hunting trip that descends into a never-ending nightmare as they attempt to cover up a horrific hunting accident.,2018-06-22,1.7738,6.484,710 +5989,341174,Fifty Shades Darker,"When a wounded Christian Grey tries to entice a cautious Ana Steele back into his life, she demands a new arrangement before she will give him another chance. As the two begin to build trust and find stability, shadowy figures from Christian’s past start to circle the couple, determined to destroy their hopes for a future together.",2017-02-08,8.8685,6.5,7766 +5990,267192,Genius,"New York in the 1920s. Max Perkins, a literary editor is the first to sign such subsequent literary greats as Ernest Hemingway and F. Scott Fitzgerald. When a sprawling, chaotic 1,000-page manuscript by an unknown writer falls into his hands, Perkins is convinced he has discovered a literary genius.",2016-06-10,1.9596,6.484,701 +5991,204922,Before I Go to Sleep,"A woman wakes up every day, remembering nothing as a result of a traumatic accident in her past. One day, new terrifying truths emerge that force her to question everyone around her.",2014-09-03,3.9215,6.5,2051 +5992,121826,Quartet,"Cissy, Reggie, and Wilf are in a home for retired musicians. Every year, there is a concert to celebrate Composer Giuseppe Verdi's birthday and they take part. Jean, who used to be married to Reggie, arrives at the home and disrupts their equilibrium. She still acts like a diva, but she refuses to sing. Still, the show must go on, and it does.",2012-12-26,1.3126,6.5,371 +5993,34016,She's Out of My League,"When he starts dating drop-dead gorgeous Molly, insecure airport security agent Kirk can't believe it. As his friends and family share their doubts about the relationship lasting, Kirk does everything he can to avoid losing Molly forever.",2010-03-11,4.7192,6.484,2219 +5994,10576,Psycho II,"Norman Bates is declared sane and released from the facility in which he was being held, despite the complaints of Lila Loomis, sister of his most famous victim. Is he really cured, or will he kill again?",1983-06-03,2.6938,6.484,673 +5995,324670,Spectral,A special-ops team is dispatched to fight supernatural beings that have taken over a European city.,2016-12-09,3.6267,6.483,1797 +5996,22972,Green Zone,"During the U.S.-led occupation of Baghdad in 2003, Chief Warrant Officer Roy Miller and his team of Army inspectors are dispatched to find weapons of mass destruction believed to be stockpiled in the Iraqi desert. Rocketing from one booby-trapped and treacherous site to the next, the men search for deadly chemical agents but stumble instead upon an elaborate cover-up that threatens to invert the purpose of their mission.",2010-03-11,3.6041,6.483,2248 +5997,14684,School Ties,"When David Greene receives a football scholarship to a prestigious prep school in the 1950s, he feels pressure to hide the fact that he is Jewish from his classmates and teachers, fearing that they may be anti-Semitic. He quickly becomes the big man on campus thanks to his football skills, but when his Jewish background is discovered, his worst fears are realized and his friends turn on him with violent threats and public ridicule.",1992-09-18,2.0789,6.483,406 +5998,5174,Rush Hour 3,"After a botched assassination attempt, the mismatched duo finds themselves in Paris, struggling to retrieve a precious list of names, as the murderous crime syndicate's henchmen try their best to stop them. Once more, Lee and Carter must fight their way through dangerous gangsters; however, this time, the past has come back to haunt Lee. Will the boys get the job done once and for all?",2007-08-08,7.6864,6.483,3466 +5999,452,The Idiots,A mix of home-video and documentary styles about a group of young people who have decided to get to know their “inner-idiots” and thus not only facing and breaking their outer appearance but also their inner.,1998-04-28,2.3055,6.483,613 +6000,227700,Anna,"A man with the ability to enter peoples' memories takes on the case of a brilliant, troubled sixteen-year-old girl to determine whether she is a sociopath or a victim of trauma.",2013-10-13,3.5231,6.482,680 +6001,59961,Safe House,"A dangerous CIA renegade resurfaces after a decade on the run. When the safe house he's remanded to is attacked by mercenaries, a rookie operative escapes with him. Now, the unlikely allies must stay alive long enough to uncover who wants them dead.",2012-02-08,3.5912,6.482,3730 +6002,38842,Middle Men,"Chronicles Jack Harris, one of the pioneers of internet commerce, as he wrestles with his morals and struggles not to drown in a sea of conmen, mobsters, drug addicts, and pornstars.",2009-05-17,2.2033,6.482,330 +6003,18111,Bride of Re-Animator,"Unperturbed by the disastrous outcome of his previous meddling with the dead, Dr. West continues his research into the phenomenon of re-animation; only this time, he plans to create life – starting with the heart of his young protégé Dan's dearly deceased Meg Halsey.",1990-09-01,1.2574,6.482,468 +6004,6947,The Village,"When a willful young man tries to venture beyond his sequestered Pennsylvania hamlet, his actions set off a chain of chilling incidents that will alter the community forever.",2004-07-30,4.2756,6.5,4357 +6005,622,The Ninth Gate,"A rare book dealer finds himself at the heart of a string of paranormal events when he is hired to find the last two copies of a text, The Nine Gates of the Kingdom of Shadows, capable of summoning the Devil.",1999-08-25,4.3235,6.482,3134 +6006,574982,The Blackout,"Contact between most towns on Earth has been severed. A small ring-like area in Eastern Europe still has electricity, and maybe even life is being reported from space. What military forces find outside the ring is shocking.",2019-11-21,2.7027,6.481,532 +6007,8279,Paris,"Pierre, a professional dancer, suffers from a serious heart disease. While he is waiting for a transplant which may (or may not) save his life, he has nothing better to do than look at the people around him, from the balcony of his Paris apartment.",2008-02-20,1.3482,6.5,340 +6008,8194,A Guide to Recognizing Your Saints,"Dito Montiel, a successful author, receives a call from his long-suffering mother, asking him to return home and visit his ailing father. Dito recalls his childhood growing up in a violent neighborhood in Queens, N.Y., with friends Antonio, Giuseppe, Nerf and Mike.",2006-09-29,1.344,6.481,316 +6009,752623,The Lost City,"Reclusive author Loretta Sage writes about exotic places in her popular adventure novels that feature a handsome cover model named Alan. While on tour promoting her new book with Alan, Loretta gets kidnapped by an eccentric billionaire who hopes she can lead him to the ancient city's lost treasure that featured in her latest story. Alan, determined to prove he can be a hero in real life and not just on the pages of her books, sets off to rescue her.",2022-03-24,5.0367,6.48,3757 +6010,446791,All the Money in the World,The story of the kidnapping of 16-year-old John Paul Getty III and the desperate attempt by his devoted mother to convince his billionaire grandfather Jean Paul Getty to pay the ransom.,2017-12-21,2.3515,6.48,2313 +6011,339095,The Last Days of American Crime,"In the not-too-distant future, as a final response to crime and terrorism, the U.S. government plans to broadcast a signal that will make it impossible for anyone to knowingly break the law.",2020-06-05,2.4137,6.48,830 +6012,15373,Role Models,"Two salesmen trash a company truck on an energy drink-fueled bender. Upon their arrest, the court gives them a choice: do hard time or spend 150 service hours with a mentorship program. After one day with the kids, however, jail doesn't look half bad.",2008-11-07,2.7598,6.48,1976 +6013,14462,The Manchurian Candidate,"Years after his squad was ambushed during the Gulf War, Major Ben Marco finds himself having terrible nightmares. He begins to doubt that his fellow squad-mate Sergeant Raymond Shaw, now a vice-presidential candidate, is the hero he remembers him being. As Marco's doubts deepen, Shaw's political power grows, and, when Marco finds a mysterious implant embedded in his back, the memory of what really happened begins to return.",2004-07-30,2.7611,6.48,1625 +6014,1125899,Cleaner,"When a group of radical activists take over an energy company's annual gala, seizing 300 hostages, an ex-soldier turned window cleaner suspended 50 storeys up on the outside of the building must save those trapped inside, including her older brother.",2025-02-19,13.2602,6.479,311 +6015,335051,God Willing,"The son of an atheist, authoritarian father, believed to be liberal, wants to become a priest.",2015-04-09,0.7486,6.5,607 +6016,10279,Summer of Sam,"During the summer of 1977, a killer known as the Son of Sam keeps all of New York City on edge with a series of brutal murders.",1999-06-28,1.5748,6.479,487 +6017,807356,Watcher,"As a serial killer stalks the city, Julia — a young actress who just moved to town with her husband — notices a mysterious stranger watching her from across the street.",2022-06-03,3.5816,6.5,1039 +6018,709631,Cobweb,"Eight year old Peter is plagued by a mysterious, constant tapping from inside his bedroom wall—one that his parents insist is all in his imagination. As Peter's fear intensifies, he believes that his parents could be hiding a terrible, dangerous secret and questions their trustworthiness.",2023-07-19,3.8013,6.5,961 +6019,280996,Mr. Holmes,"In 1947, long-retired and near the end of his life, Sherlock Holmes grapples with an unreliable memory and must rely on his housekeeper's son as he revisits the still-unsolved case that led to his retirement.",2015-06-19,3.3188,6.478,1892 +6020,205022,Chennai Express,"Rahul embarks on a journey to a small town in Tamil Nadu to fulfill the last wish of his grandfather: to have his ashes immersed in the Holy water of Rameshwaram. En route, he meets a woman hailing from a unique family down South. As they find love through this journey in the exuberant lands of South India, an unanticipated drive awaits them.",2013-08-08,1.8696,6.477,346 +6021,10021,The Secret of My Success,"Brantley Foster, a well-educated kid from Kansas, has always dreamed of making it big in New York, but once in New York, he learns that jobs - and girls - are hard to get. When Brantley visits his uncle, Howard Prescott, who runs a multi-million-dollar company, he is given a job in the company's mail room.",1987-04-10,1.8969,6.477,646 +6022,9404,Police Story 4: First Strike,"Hong Kong cop Chan Ka-Kui returns, working with Interpol to track down and arrest an illegal weapons dealer. Chan later realizes that things are not as simple as they appear and soon finds himself to be a pawn of an organization posing as Russian intelligence.",1996-02-10,3.1168,6.5,506 +6023,13573,The United States of Leland,"A withdrawn young man, Leland Fitzgerald is imprisoned for the murder of a mentally disabled boy, who also happened to be the brother of his girlfriend, Becky. As the community struggles to deal with the killing, Pearl Madison, a teacher at the prison, decides to write about Leland's case. Meanwhile, others affected by the murder, including Becky and her sister, Julie, must contend with their own problems.",2003-05-15,1.329,6.5,326 +6024,673174,Offering to the Storm,Inspector Amaia Salazar confronts the origins of her nightmares as she unfolds the darkest secrets of the Baztan valley. Part 3 in the Baztan Trilogy.,2020-07-24,1.6549,6.475,323 +6025,649609,Renfield,"Having grown sick and tired of his centuries as Dracula's lackey, Renfield finds a new lease on life — and maybe even redemption — when he falls for feisty, perennially angry traffic cop Rebecca Quincy.",2023-04-07,3.6076,6.475,1928 +6026,324544,In the Lost Lands,"A queen sends the powerful and feared sorceress Gray Alys to the ghostly wilderness of the Lost Lands in search of a magical power, where she and her guide, the drifter Boyce, must outwit and outfight both man and demon.",2025-02-27,23.5756,6.5,575 +6027,18585,The Ramen Girl,"An American woman is stranded in Tokyo after breaking up with her boyfriend. Searching for direction in life, she trains to be a ramen chef under a tyrannical Japanese master.",2008-02-08,1.1881,6.475,343 +6028,16690,Return to Never Land,"In 1940, the world is besieged by World War II. Wendy, all grown up, has two children; including Jane, who does not believe Wendy's stories about Peter Pan.",2002-02-14,2.9248,6.475,2351 +6029,9618,Tango & Cash,"Ray Tango and Gabriel Cash are two successful narcotics detectives who can't stand each other. Crime lord Yves Perret, furious at the loss of income they have caused him, plots an elaborate revenge against them.",1989-12-22,2.8902,6.5,2005 +6030,654028,The Christmas Chronicles: Part Two,"Kate Pierce is reluctantly spending Christmas with her mom’s new boyfriend and his son Jack. But when the North Pole and Christmas are threatened to be destroyed, Kate and Jack are unexpectedly pulled into a new adventure with Santa Claus.",2020-11-18,3.005,6.474,1090 +6031,568620,Snake Eyes: G.I. Joe Origins,"After saving the life of their heir apparent, tenacious loner Snake Eyes is welcomed into an ancient Japanese clan called the Arashikage where he is taught the ways of the ninja warrior. But, when secrets from his past are revealed, Snake Eyes' honor and allegiance will be tested – even if that means losing the trust of those closest to him.",2021-07-22,5.0663,6.474,1621 +6032,199575,These Final Hours,"What would you do on the last day on Earth? With the end of the world only hours away, the self-absorbed James heads to the ultimate party-to-end-all-parties. On his way there, he saves the life of a young girl named Rose who is searching desperately for her missing father. This simple act sets James on a path to redemption.",2014-07-31,1.4117,6.474,577 +6033,104859,Mac & Devin Go to High School,"A comedy that follows two high school students -- one overachiever struggling to write his valedictorian speech, the other a senior now going on his 15th year of school.",2012-07-03,2.0578,6.474,435 +6034,13027,Eagle Eye,"Jerry Shaw and Rachel Holloman are two strangers whose lives are suddenly thrown into turmoil by a mysterious woman they have never met. Threatening their lives and family, the unseen caller uses everyday technology to control their actions and push them into increasing danger. As events escalate, Jerry and Rachel become the country's most-wanted fugitives and must figure out what is happening to them.",2008-09-25,4.0876,6.474,2949 +6035,10347,Dobermann,"The charismatic criminal Dobermann, who got his first gun when he was christened, leads a gang of brutal robbers. After a complex and brutal bank robbery, they are being hunted by the Paris police. The hunt is led by the sadistic cop Christini, who only has one goal: to catch Dobermann at any cost.",1997-06-18,2.4273,6.474,527 +6036,9294,Phenomenon,"An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.",1996-07-05,2.5731,6.474,1228 +6037,152,Star Trek: The Motion Picture,"When an unidentified alien destroys three powerful Klingon cruisers, Captain James T. Kirk returns to the newly transformed U.S.S. Enterprise to take command.",1979-12-07,3.4412,6.474,1806 +6038,266285,The Salvation,"In 1870s America, a peaceful American settler kills his family's murderer which unleashes the fury of a notorious gang leader. His cowardly fellow townspeople then betray him, forcing him to hunt down the outlaws alone.",2014-05-22,2.5135,6.5,888 +6039,57825,Bride & Prejudice,Mrs. Bakshi is eager to find suitors for her four unmarried daughters when a family friend introduces them to handsome American Will Darcy. A Bollywood-style modern adaptation of Jane Austen's classic novel.,2004-02-11,1.4278,6.473,388 +6040,38363,Fair Game,"A devoted wife and mother leads a secret life as a CIA agent until her husband’s article exposes a scandal, putting her identity and loved ones at risk. As her world crumbles, she must navigate the fallout of her double life.",2010-05-20,1.6995,6.473,810 +6041,9593,Last Action Hero,"After his father's death, a young boy finds solace in action movies featuring an indestructible cop. Given a magic ticket by a theater manager, he is transported into the film and teams up with the cop to stop a villain who escapes into the real world.",1993-06-18,3.8974,6.473,2815 +6042,5683,Pee-wee's Big Adventure,"The eccentric and childish Pee-wee Herman embarks on a big adventure when his beloved bicycle is stolen. Armed with information from a fortune-teller and a relentless obsession with his prized possession, Pee-wee encounters a host of odd characters and bizarre situations as he treks across the country to recover his bike.",1985-07-26,2.6474,6.5,811 +6043,1249213,Drop,"Violet, a widowed mother on her first date in years, arrives at an upscale restaurant where she is relieved that her date, Henry, is more charming and handsome than she expected. But their chemistry begins to curdle as Violet begins being irritated and then terrorized by a series of anonymous drops to her phone.",2025-04-10,8.558,6.5,513 +6044,582883,Deerskin,"A man's obsession with owning the designer deerskin jacket of his dreams leads him to turn his back on his humdrum life in the suburbs, blow his life savings, and even turn him to crime.",2019-06-19,1.0391,6.472,734 +6045,566454,The Mystery of Henri Pick,"In a bizarre Breton library that collects rejected, never published manuscripts, a young editor discovers a novel that she considers a masterpiece. It was written by a certain Henri Pick, a cook who died two years earlier and who, according to his widow, had never read a book in his life or written anything but a shopping list... Did he have a secret life? When the book becomes a huge best-seller, Jean- Michel Rouche, a skeptical and stubborn literary critic, teams up with Joséphine, Pick’s daughter, to unravel the mystery.",2019-03-06,0.916,6.5,457 +6046,540901,Hustlers,A crew of savvy former strip club employees band together to turn the tables on their Wall Street clients.,2019-09-12,3.6279,6.471,2999 +6047,492282,Like a Cat on a Highway,"The story of an encounter between a bourgeois man and a poor woman, because their teenage children fall in love.",2017-12-28,0.6648,6.472,916 +6048,10806,In & Out,A midwestern teacher questions his sexuality after a former student makes a comment about him at the Academy Awards.,1997-09-10,2.083,6.472,706 +6049,8922,Jeepers Creepers,"On a desolate country highway, two homeward-bound teens are nearly run off the road by a maniac in a beat-up truck, and later spot him shoving what appears to be a body down a sewer pipe.",2001-07-01,5.726,6.472,3111 +6050,4421,G.I. Jane,"In response to political pressure from Senator Lillian DeHaven, the U.S. Navy begins a program that would allow for the eventual integration of women into its combat services. The program begins with a single trial candidate, Lieutenant Jordan O'Neil, who is chosen specifically for her femininity. O'Neil enters the grueling Navy SEAL training program under the command of Master Chief John James Urgayle, who unfairly pushes O'Neil until her determination wins his respect.",1997-08-19,3.3178,6.5,1744 +6051,407436,Mowgli: Legend of the Jungle,"A human child raised by wolves, must face off against a menacing tiger named Shere Khan, as well as his own origins.",2018-11-25,3.5435,6.471,2528 +6052,238751,Best of the Best,A team from the United States is going to compete against Korea in a Tae Kwon Do tournament. The team consists of fighters from all over the country--can they overcome their rivalry and work together to win?,1989-11-10,1.8871,6.5,314 +6053,10760,Sydney White,"College freshman Sydney White arrives at Southern Atlantic University, determined to pledge her late mother's sorority. Unfortunately, she finds that the sisterhood has changed since her parent's day. Banished to a condemned house, Sydney joins forces with seven outcasts to take over the student government and win equal rights for nerd and noted alike.",2007-09-21,3.5946,6.471,1064 +6054,621151,Spell,"A father survives a plane crash in rural Appalachia, but becomes suspicious of the elderly couple who take him in to nurse him back to health with the ancient remedies.",2020-10-30,1.9812,6.5,402 +6055,300155,A Royal Night Out,"The re-imagining of VE Day in 1945, when Princess Elizabeth and her sister, Margaret were allowed out from Buckingham Palace for the night to join in the celebrations, and encounter romance and danger.",2015-05-14,1.6727,6.47,317 +6056,157849,A Most Wanted Man,A Chechen Muslim illegally immigrates to Hamburg and becomes a person of interest for a covert government team tracking the movements of potential terrorists.,2014-07-25,2.2565,6.5,1402 +6057,9928,Robots,"Rodney Copperbottom is a young robot inventor who dreams of making the world a better place, until the evil Ratchet takes over Bigweld Industries. Now, Rodney's dreams – and those of his friends – are in danger of becoming obsolete.",2005-03-10,7.0883,6.5,4723 +6058,2046,The Gift,"Annie Wilson, young widow and mother of three, makes her living foretelling others' futures⁠—though her own has become cloudier than even she can see. Threatened by a client's violent husband and plagued by visions of a missing local woman, Annie finds herself pulled into a thicket of lies and deception in which her extraordinary gift may ultimately get her killed.",2000-03-16,3.6962,6.47,1278 +6059,1710,Copycat,An agoraphobic psychologist and a female detective must work together to take down a serial killer who copies serial killers from the past.,1995-10-27,4.3936,6.472,1121 +6060,616747,Haunted Mansion,A woman and her son enlist a motley crew of so-called spiritual experts to help rid their home of supernatural squatters.,2023-07-26,3.1808,6.469,1127 +6061,409421,BLAME!,"In the distant technological future, civilization has reached its ultimate Net-based form. An ""infection"" in the past caused the automated systems to spiral out of order, resulting in a multi-leveled city structure that replicates itself infinitely in all directions. Now humanity has lost access to the city's controls, and is hunted down and purged by the defense system known as the Safeguard. In a tiny corner of the city, a little enclave known as the Electro-Fishers is facing eventual extinction, trapped between the threat of the Safeguard and dwindling food supplies. A girl named Zuru goes on a journey to find food for her village, only to inadvertently cause doom when an observation tower senses her and summons a Safeguard pack to eliminate the threat. With her companions dead and all escape routes blocked, the only thing that can save her now is the sudden arrival of Killy the Wanderer, on his quest for the Net Terminal Genes, the key to restoring order to the world.",2017-05-20,1.544,6.469,325 +6062,369230,Them Who?,"David loses his white collar job, his fiancée and his house after one night with con man Marcello. He tracks him down to exact revenge, but ends up becoming his disciple in order to win back everything.",2015-11-19,0.4581,6.469,426 +6063,1281,Bean,"Childlike Englishman, Mr. Bean, is an incompetent watchman at the Royal National Gallery. After the museum's board of directors' attempt to have him fired is blocked by the chairman, who has taken a liking to Bean, they send him to Los Angeles to act as their ambassador for the unveiling of a historic painting to humiliate him. Fooled, Mr. Bean must now successfully unveil the painting or risk his and a hapless Los Angeles curator's termination.",1997-07-03,3.9917,6.469,2475 +6064,82654,Warm Bodies,"After a zombie becomes involved with the girlfriend of one of his victims, their romance sets in motion a sequence of events that might transform the entire lifeless world.",2013-01-31,4.4877,6.467,6184 +6065,20726,Little Giants,"When Danny O'Shea's daughter is cut from the Peewee football team just for being a girl, he decides to form his own team, composed of other ragtag players who were also cut. Can his team really learn enough to beat the elite team, coached by his brother, a former pro player?",1994-10-14,1.7057,6.5,441 +6066,10278,Return to Paradise,"Lewis, Sheriff and Tony are three friends vacationing in Malaysia. Sheriff and Tony eventually leave to pursue careers in New York, but Lewis stays behind to work with orangutans. Two years later, Sheriff and Tony learn that, because of their past actions, Lewis has been arrested for drug possession. With Lewis facing a death sentence, the friends are left with a difficult decision: return to Malaysia and split Lewis' sentence, or let him die.",1998-08-10,1.5306,6.5,301 +6067,397,French Kiss,"After her fiancee admits to infidelity while on a business trip in France, a woman attempts to get her lover back and marry him by traveling to Paris despite her crippling fear of flying. On the way she unwittingly smuggles something of value that has a charming crook chasing her across France as she chases after her future husband.",1995-05-05,2.6076,6.468,754 +6068,333484,The Magnificent Seven,"Looking to mine for gold, greedy industrialist Bartholomew Bogue seizes control of the Old West town of Rose Creek. With their lives in jeopardy, Emma Cullen and other desperate residents turn to bounty hunter Sam Chisolm for help. Chisolm recruits an eclectic group of gunslingers to take on Bogue and his ruthless henchmen. With a deadly showdown on the horizon, the seven mercenaries soon find themselves fighting for more than just money once the bullets start to fly.",2016-09-14,8.778,6.468,6116 +6069,324852,Despicable Me 3,Gru and his wife Lucy must stop former '80s child star Balthazar Bratt from achieving world domination.,2017-06-15,6.4748,6.467,7363 +6070,63492,What's Your Number?,"Ally Darling is realizing she's a little lost in life. Her latest romance has just fizzled out, and she's just been fired from her marketing job. Then she reads an eye-opening magazine article that warns that 96 percent of women who've been with 20 or more lovers are unlikely to find a husband. Determined to turn her life around and prove the article wrong, Ally embarks on a mission to find the perfect mate from among her numerous ex-boyfriends.",2011-09-30,3.2203,6.467,2372 +6071,16617,Mindhunters,Trainees in the FBI's psychological profiling program must put their training into practice when they discover a killer in their midst. Based very loosely on Agatha Christie's And Then There Were None.,2004-05-07,2.6473,6.467,1235 +6072,14052,Revenge of the Nerds,"At Adams College, the jocks rule the school from their house on high, the Alpha Beta fraternity. So when a group of socially-challenged misfits try to go Greek, they're instantly rejected by every house on campus. Deciding to start their own fraternity to protect their outcast brothers, the campus nerds soon find themselves in a battle royale as the Alpha Betas try to crush their new rivals.",1984-07-20,1.917,6.5,761 +6073,489326,Mortal,A young boy must discover the origins of his extraordinary powers before he is captured by authorities hell-bent on condemning him for an accidental murder.,2020-02-28,1.884,6.463,477 +6074,396398,The Meyerowitz Stories (New and Selected),An estranged family gathers together in New York for an event celebrating the artistic work of their father.,2017-10-13,1.3632,6.466,1220 +6075,240832,Lucy,"A woman, accidentally caught in a dark deal, turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.",2014-07-25,9.6487,6.466,16465 +6076,41446,Scream 4,"Ten years have passed, and Sidney Prescott has put herself back together thanks to her writing. However, her return to Woodsboro sparks the return of the Ghostface Killer.",2011-04-13,8.1006,6.466,3905 +6077,12600,Pokémon 4Ever,"In order to escape a greedy Pokémon hunter, Celebi must use the last of its energy to travel through time to the present day. Celebi brings along Sammy, a boy who had been trying to protect it. Along with Ash, Pikachu, and the rest of the gang, Sammy and Celebi must encounter an enemy far more advanced than the hunter, with the fate of the forest hanging in the balance.",2001-07-06,3.0784,6.466,429 +6078,12085,Mad Money,Three female employees of the Federal Reserve plot to steal money that is about to be destroyed.,2008-01-17,3.0612,6.466,683 +6079,9408,Surf's Up,"A young surfer enters his first contest, hoping a win will earn him respect. But an encounter with a laid-back local forces him to rethink his values.",2007-06-08,5.0186,6.466,2600 +6080,398929,Alibi.com,"Greg founded a company called Alibi.com that creates any type of alibi. With his associate, Augustin, and Medhi his new employee, they devise unstoppable stratagems and stagings to cover their clients. But meeting Flo, a pretty blonde who hates men who lie, will complicate Greg's life, which begins by hiding the true nature of his activity. During the presentation to parents, Greg understands that Gérard, the father of Flo, is also one of their clients.",2016-12-08,2.459,6.465,1711 +6081,374617,Imperium,"Nate Foster, a young, idealistic FBI agent, goes undercover to take down a radical white supremacy terrorist group. The bright up-and-coming analyst must confront the challenge of sticking to a new identity while maintaining his real principles as he navigates the dangerous underworld of white supremacy. Inspired by real events.",2016-08-19,2.1466,6.465,1415 +6082,26285,Fantozzi Still Suffers,"After a hard day at work and a condominium-board meeting, accountant Ugo Fantozzi goes on a trip with his family. Unfortunately, he will face a nasty surprise upon his return.",1983-12-22,0.7501,6.5,469 +6083,24548,Just One of the Guys,"When Terry Griffith loses her high school's writing competition, she's convinced that it's because she's a girl. So Terry decides to change high schools and pose as a boy to prove her point. Her brother, Buddy, helps her pass as a guy so well that she is soon making friends with the boys at school, including the attractive Rick, who becomes her new best friend. But her gender-swapping makes things difficult when she falls in love with him.",1985-04-26,2.1053,6.5,317 +6084,15602,Grumpier Old Men,"A family wedding reignites the ancient feud between next-door neighbors and fishing buddies John and Max. Meanwhile, a sultry Italian divorcée opens a restaurant at the local bait shop, alarming the locals who worry she'll scare the fish away. But she's less interested in seafood than she is in cooking up a hot time with Max.",1995-12-22,1.3684,6.5,402 +6085,11846,Father of the Bride,"George Banks is an ordinary, middle-class man whose 22 year-old daughter Annie has decided to marry a man from an upper-class family, but George can't think of what life would be like without his daughter. His wife tries to make him happy for Annie, but when the wedding takes place at their home and a foreign wedding planner takes over the ceremony, he becomes slightly insane.",1991-12-20,2.2018,6.465,1402 +6086,10249,The Rocketeer,"A stunt pilot comes across a prototype jetpack that gives him the ability to fly. However, evil forces of the world also want this jetpack at any cost.",1991-06-21,1.9898,6.5,971 +6087,763148,Time Is Up,"Vivien, an accomplished student with a passion for physics, and Roy, a troubled young man, are involved in an accident that forces them to reclaim their lives one minute at the time.",2021-09-09,1.4789,6.464,686 +6088,117251,White House Down,"Capitol Policeman John Cale has just been denied his dream job with the Secret Service protecting President James Sawyer. Not wanting to let down his little girl with the news, he takes her on a tour of the White House, when the complex is overtaken by a heavily armed paramilitary group. Now, with the nation's government falling into chaos and time running out, it's up to Cale to save the president, his daughter, and the country.",2013-06-27,5.9439,6.464,4891 +6089,79218,Ice Age: A Mammoth Christmas,"When Sid accidentally destroys Manny's heirloom Christmas rock and ends up on Santa's naughty list, he leads a hilarious quest to the North Pole to make things right and ends up making things much worse. Now it's up to Manny and his prehistoric posse to band together and save Christmas for the entire world!",2011-11-24,2.4728,6.464,666 +6090,50620,The Twilight Saga: Breaking Dawn - Part 2,"After the birth of Renesmee, the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.",2012-11-13,12.4037,6.463,9092 +6091,10961,Behind the Mask: The Rise of Leslie Vernon,"The next great psycho horror slasher has given a documentary crew exclusive access to his life as he plans his reign of terror over the sleepy town of Glen Echo, all the while deconstructing the conventions and archetypes of the horror genre for them.",2006-08-29,1.1768,6.464,472 +6092,8512,Devil in a Blue Dress,"In late 1940s Los Angeles, Easy Rawlins is an unemployed black World War II veteran with few job prospects. At a bar, Easy meets DeWitt Albright, a mysterious white man looking for someone to investigate the disappearance of a missing white woman named Daphne Monet, who he suspects is hiding out in one of the city's black jazz clubs. Strapped for money and facing house payments, Easy takes the job, but soon finds himself in over his head.",1995-09-29,2.1318,6.5,427 +6093,2069,The Whole Nine Yards,"After a mobster agrees to cooperate with an FBI investigation in order to stay out of prison, he's relocated by the authorities to a life of suburban anonymity as part of a witness protection program. It's not long before a couple of his new neighbours figure out his true identity and come knocking to see if he'd be up for one more hit—suburban style.",2000-02-18,3.4864,6.464,1954 +6094,906221,Magic Mike's Last Dance,"Mike Lane takes to the stage again after a lengthy hiatus, following a business deal that went bust, leaving him broke and taking bartender gigs in Florida. For what he hopes will be one last hurrah, Mike heads to London with a wealthy socialite who lures him with an offer he can’t refuse… and an agenda all her own. With everything on the line, once Mike discovers what she truly has in mind, will he—and the roster of hot new dancers he’ll have to whip into shape—be able to pull it off?",2023-02-09,2.7912,6.463,544 +6095,333385,Mr. Right,"A girl falls for the ""perfect"" guy, who happens to have a very fatal flaw: he's a hitman on the run from the crime cartels who employ him.",2016-02-29,2.5577,6.463,1382 +6096,11359,The Indian in the Cupboard,A nine-year-old boy gets a plastic Indian and a cupboard for his birthday and finds himself involved in adventure when the Indian comes to life and befriends him.,1995-07-14,1.7775,6.463,646 +6097,11333,Super Fuzz,"While delivering a parking ticket to a small village in the Florida everglades, Officer Dave Speed finds himself in the middle of a radiation experiment conducted by the American government and NASA, where a detonated nuclear missile gives him a multitude of superpowers.",1980-09-18,1.7023,6.463,339 +6098,9403,Private Parts,"The life and career of shock-jock superstar Howard Stern is recounted from his humble beginnings to his view from the top. Possessing a desire to be an on-air personality since childhood, Stern meanders through the radio world, always with his supportive wife, Alison, by his side. Landing a gig in Washington, D.C., Stern meets Robin Quivers, who will become his long-time partner in crime. When the two move to New York, they face the wrath of NBC executives.",1997-03-07,1.4281,6.463,354 +6099,3980,Critters,"Carnivorous aliens arrive unannounced at a Kansas family farm; two intergalactic bounty hunters soon follow, determined to blow them off the planet.",1986-04-11,3.0385,6.5,1021 +6100,391710,A Futile and Stupid Gesture,"In a life full of triumph and failure, ""National Lampoon"" co-founder Doug Kenney built a comedy empire, molding pop culture in the 1970s.",2018-01-24,1.5229,6.462,344 +6101,252838,The Wedding Ringer,"Doug Harris is a loveable but socially awkward groom-to-be with a problem: he has no best man. With less than two weeks to go until he marries the girl of his dreams, Doug is referred to Jimmy Callahan, owner and CEO of Best Man, Inc., a company that provides flattering best men for socially challenged guys in need. What ensues is a hilarious wedding charade as they try to pull off the big con, and an unexpected budding bromance between Doug and his fake best man Jimmy.",2015-01-16,4.9113,6.462,1619 +6102,14442,Ella Enchanted,"Ella lives in a magical world in which each child, at the moment of their birth, is given a virtuous ""gift"" from a fairy godmother. Ella's so-called gift, however, is obedience. This birthright proves itself to be quite the curse once Ella finds herself in the hands of several unscrupulous characters whom she quite literally cannot disobey. Determined to gain control of her life and decisions, Ella sets off on a journey to find her fairy godmother who she hopes will lift the curse. The path, however, isn't easy -- Ella must outwit a slew of unpleasant obstacles including ogres, giants, wicked stepsisters, elves and Prince Charmont's evil uncle, who wants to take over the crown and rule the kingdom.",2004-04-09,4.644,6.462,1888 +6103,11229,Freeway,"Following the arrest of her mother, Ramona, young Vanessa Lutz decides to go in search of her estranged grandmother. On the way, she is given a ride by school counselor Bob Wolverton. During the journey, Lutz begins to realize that Bob is the notorious I-5 Killer and manages to escape by shooting him several times. Wounded but still very much alive, Bob pursues Lutz across the state in this modern retelling of Little Red Riding Hood.",1996-08-23,2.009,6.462,396 +6104,2019,Hard Target,"When a woman's father goes missing, she enlists a local to aid in her search. The pair soon discover that her father has died at the hands of a wealthy sportsman who hunts homeless men as a form of recreation.",1993-04-27,4.7305,6.462,1266 +6105,993710,Back in Action,"Fifteen years after vanishing from the CIA to start a family, elite spies Matt and Emily jump back into the world of espionage when their cover is blown.",2025-01-15,9.6495,6.461,1312 +6106,460793,Olaf's Frozen Adventure,"Olaf is on a mission to harness the best holiday traditions for Anna, Elsa, and Kristoff.",2017-10-27,2.7947,6.461,1461 +6107,159121,Paulette,"Paulette lives alone in a housing project in the Paris suburbs. With her meager pension, she can no longer make ends meet.",2012-10-04,0.8885,6.5,400 +6108,84355,Your Sister's Sister,"Iris invites her friend Jack to stay at her family's island getaway after the death of his brother. At their remote cabin, Jack's drunken encounter with Hannah, Iris' sister, kicks off a revealing stretch of days.",2011-09-11,1.0683,6.461,346 +6109,15301,Twilight Zone: The Movie,"An anthology film presenting remakes of three episodes from the ""Twilight Zone"" TV series—""Kick the Can"", ""It's a Good Life"" and ""Nightmare at 20,000 Feet""—and one original story, ""Time Out.""",1983-06-24,2.0362,6.5,752 +6110,10390,For Love of the Game,"A baseball legend almost finished with his distinguished career at the age of forty has one last chance to prove who he is, what he is capable of, and win the heart of the woman he has loved for the past four years.",1999-09-17,1.64,6.461,435 +6111,9843,Big Nothing,"A frustrated, unemployed teacher joins forces with a scammer and his girlfriend in a blackmailing scheme.",2006-12-01,0.6739,6.461,448 +6112,991,The Man Who Fell to Earth,"Thomas Jerome Newton is an alien who has come to Earth in search of water to save his home planet. Aided by lawyer Oliver Farnsworth, Thomas uses his knowledge of advanced technology to create profitable inventions. While developing a method to transport water, Thomas meets Mary-Lou, a quiet hotel clerk, and begins to fall in love with her. Just as he is ready to leave Earth, Thomas is intercepted by the U.S. government, and his entire plan is threatened.",1976-03-18,2.0715,6.5,557 +6113,6,Judgment Night,"Four young friends, while taking a shortcut en route to a local boxing match, witness a brutal murder which leaves them running for their lives.",1993-10-15,1.6627,6.461,356 +6114,540,D.E.B.S.,The star of a team of teenage crime fighters falls for the alluring villainess she must bring to justice.,2004-01-22,3.2148,6.46,583 +6115,615952,Armageddon Time,"In 1980, Queens, New York, a young Jewish boy befriends a rebellious African-American classmate to the disapproval of his privileged family and begins to reckon with growing up in a world of inequality and prejudice.",2022-10-28,1.6052,6.459,464 +6116,594767,Shazam! Fury of the Gods,"Billy Batson and his foster siblings, who transform into superheroes by saying ""Shazam!"", are forced to get back into action and fight the Daughters of Atlas, who they must stop from using a weapon that could destroy the world.",2023-03-15,7.7673,6.5,3380 +6117,374052,The Love Witch,"A modern-day witch uses spells and magic to get men to fall in love with her, with deadly consequences.",2016-11-11,2.1076,6.459,576 +6118,309304,Grandma,"Self-described misanthrope Elle Reid has her protective bubble burst when her 18-year-old granddaughter, Sage, shows up needing help. The two of them go on a day-long journey that causes Elle to come to terms with her past and Sage to confront her future.",2015-06-04,1.5679,6.459,368 +6119,11047,Asterix the Gaul,"In the year 50 BC, Gaul is occupied by the Romans - nearly. But the small village of Asterix and his friends still resists the Roman legions with the aid of their druid's magic potion, which gives superhuman strength. Learning of this potion, a Roman centurion kidnaps the druid to get the secret formula out of him.",1967-12-20,1.6712,6.5,766 +6120,8224,8MM,"A small, seemingly innocuous plastic reel of film leads surveillance specialist Tom Welles down an increasingly dark and frightening path. With the help of the streetwise Max, he relentlessly follows a bizarre trail of evidence to determine the fate of a complete stranger. As his work turns into obsession, he drifts farther and farther away from his wife, family and simple life as a small-town PI.",1999-02-26,4.4263,6.459,2109 +6121,791155,Secret Headquarters,"While hanging out after school, Charlie and his friends discover the headquarters of the world’s most powerful superhero hidden beneath his home. When villains attack, they must team up to defend the headquarters and save the world.",2022-08-12,3.0049,6.5,379 +6122,225728,Macbeth,"Feature film adaptation of Shakespeare's Scottish play about General Macbeth whose ambitious wife urges him to use wicked means in order to gain power of the throne over the sitting king, Duncan.",2015-09-22,2.4186,6.5,1475 +6123,23963,Pontypool,"When disc jockey Grant Mazzy reports to his basement radio station in the Canadian town of Pontypool, he thinks it's just another day at work. But when he hears reports of a virus that turns people into zombies, Mazzy barricades himself in the radio booth and tries to figure out a way to warn his listeners about the virus and its unlikely mode of transmission.",2009-03-06,2.0632,6.458,658 +6124,810873,Single All the Way,"Desperate to avoid his family’s judgment about his perpetual single status, Peter convinces his best friend Nick to join him for the holidays and pretend that they’re now in a relationship. But when Peter’s mother sets him up on a blind date with her handsome trainer James, the plan goes awry.",2021-12-02,1.2521,6.5,403 +6125,768520,A California Christmas,"With his carefree lifestyle on the line, a wealthy charmer poses as a ranch hand to get a hardworking farmer to sell her family’s land before Christmas.",2020-12-14,1.2079,6.457,337 +6126,708336,Return of the Tooth Fairy,"The Tooth Fairy is back. 15 years after the events of the first movie, Corey, now grown up but mentally scarred has gone to a class reunion. However, the Tooth Fairy is back, and this time - You better have flossed properly.",2020-06-15,1.1491,6.457,853 +6127,639798,32 Malasana Street,"Malasaña neighborhood, Madrid, Spain, 1976. While political turmoil ravages the streets all over the country, the Olmedo family arrives in the big city and settles into their new apartment. They soon discover that they are not the only ones roaming its corridors.",2020-01-17,1.7189,6.457,668 +6128,339397,Café Society,"The story of a young man who arrives in Hollywood during the 1930s hoping to work in the film industry, falls in love, and finds himself swept up in the vibrant café society that defined the spirit of the age.",2016-05-11,2.5278,6.457,2732 +6129,193893,Let's Be Cops,"Best pals Ryan and Justin are stalled in their respective careers -- a fact that is painfully driven home when they go to a college reunion. Dressed as police in the mistaken belief that they were to attend a costume party, Ryan and Justin find that the uniforms earn them much respect and attention. Although Justin is uncomfortable with the idea, Ryan decides to continue with the charade, putting them both in increasingly dangerous situations. When these newly-minted “heroes” get tangled in a real life web of mobsters and dirty detectives, they must put their fake badges on the line.",2014-08-13,5.0384,6.457,2845 +6130,11596,New Nightmare,Cast and crew from A Nightmare on Elm Street are terrorized by Freddy Krueger and his razor-fingered glove as he crosses over into the real world.,1994-10-13,2.6018,6.457,1478 +6131,9315,Flightplan,"Flying at 40,000 feet in a state-of-the art aircraft that she helped design, Kyle Pratt's 6-year-old daughter Julia vanishes without a trace. Or did she? No one on the plane believes Julia was ever onboard. And now Kyle, desperate and alone, can only count on her own wits to unravel the mystery and save her daughter.",2005-09-22,6.032,6.457,2749 +6132,427641,Rampage,"Primatologist Davis Okoye shares an unshakable bond with George, the extraordinarily intelligent, silverback gorilla who has been in his care since birth. But a rogue genetic experiment gone awry mutates this gentle ape into a raging creature of enormous size. To make matters worse, it’s soon discovered there are other similarly altered animals. As these newly created alpha predators tear across North America, destroying everything in their path, Okoye teams with a discredited genetic engineer to secure an antidote, fighting his way through an ever-changing battlefield, not only to halt a global catastrophe but to save the fearsome creature that was once his friend.",2018-04-11,8.2611,6.457,7241 +6133,59678,Attack the Block,A teen gang in a South London housing estate must team up with the other residents to protect their neighbourhood from a terrifying alien invasion.,2011-05-12,2.8971,6.456,2129 +6134,1038263,Maria,"Maria Callas, the world's greatest opera singer, lives the last days of her life in 1970s Paris, as she confronts her identity and life.",2024-11-27,3.7266,6.455,353 +6135,747188,Asteroid City,"In an American desert town circa 1955, the itinerary of a Junior Stargazer/Space Cadet convention is spectacularly disrupted by world-changing events.",2023-06-08,4.767,6.455,2182 +6136,325173,Close Range,"A rogue soldier turned outlaw is thrust into a relentless fight with a corrupt sheriff, his obedient deputies, and a dangerous drug cartel in order to protect his sister and her young daughter.",2015-11-19,1.0378,6.455,309 +6137,295693,The Boss Baby,"A story about how a new baby's arrival impacts a family, told from the point of view of a delightfully unreliable narrator, a wildly imaginative 7 year old named Tim.",2017-03-23,2.9399,6.455,7250 +6138,14191,Aquamarine,"Two teenage girls discover that mermaids really do exist after a violent storm washes one ashore. The mermaid, a sassy creature named Aquamarine, is determined to prove to her father that real love exists, and enlists the girls' help in winning the heart of a handsome lifeguard.",2006-03-03,3.832,6.455,1525 +6139,2617,The Great Outdoors,"It's vacation time for outdoorsy Chicago man Chet Ripley, along with his wife, Connie, and their two kids, Buck and Ben. But a serene weekend of fishing at a Wisconsin lakeside cabin gets crashed by Connie's obnoxious brother-in-law, Roman Craig, his wife, Kate, and the couple's two daughters. As the excursion wears on, the Ripleys find themselves at odds with the stuffy Craig family.",1988-06-17,1.9864,6.455,558 +6140,581859,Da 5 Bloods,Four African-American Vietnam veterans return to Vietnam. They are in search of the remains of their fallen squad leader and the promise of buried treasure. These heroes battle forces of humanity and nature while confronted by the lasting ravages of the immorality of the Vietnam War.,2020-06-12,1.8017,6.454,1108 +6141,429733,Mayhem,A virus spreads through an office complex causing white collar workers to act out their worst impulses.,2017-11-10,1.6609,6.5,728 +6142,376866,Jackie,"An account of the days of First Lady, Jacqueline Kennedy, in the immediate aftermath of John F. Kennedy's assassination in 1963.",2016-12-02,2.2313,6.454,2343 +6143,25472,Merry Madagascar,"While trapped on the island of Madagascar, the Central Park Zoo escapees receive a visit from Santa--crash landing on their territory and getting amnesia to boot! The animals must help Santa assume his rightful place in the universe, while King Julian laps up the opportunity for his subjects.",2009-11-16,2.3488,6.454,302 +6144,9681,Casanova,"With a reputation for seducing members of the opposite sex, regardless of their marital status, a notorious womanizer discovers a beauty who seems impervious to his charms. However, as he continues to pursue the indifferent lady, he finds himself falling in love.",2005-12-25,2.065,6.5,901 +6145,797840,Dry,"In Rome it hasn’t rained for three years and the lack of water is overturning rules and habits. Through the city dying of thirst and prohibitions moves a chorus of people, young and old, marginalised and successful, victims and profiteers. Their lives are linked in a single design, while each seeks his or her deliverance.",2022-09-29,0.696,6.453,321 +6146,157827,Louder Than Bombs,"Three years after his wife, acclaimed photographer Isabelle Reed, dies in a car crash, Gene keeps everyday life going with his shy teenage son, Conrad. A planned exhibition of Isabelle’s photographs prompts Gene's older son, Jonah, to return to the house he grew up in - and for the first time in a very long time, the father and the two brothers are living under the same roof.",2015-10-01,0.9229,6.5,339 +6147,10761,Made of Honor,"Tom and Hannah have been platonic friends for 10 years. He's a serial dater, while she wants marriage but hasn't found Mr. Right. Just as Tom is starting to think that he is relationship material after all, Hannah gets engaged. When she asks Tom to be her 'maid' of honor, he reluctantly agrees just so he can attempt to stop the wedding and woo her.",2008-04-30,3.0884,6.453,1707 +6148,38542,The Disappearance of Alice Creed,A rich man's daughter is held captive in an abandoned apartment by two former convicts who abducted her and hold her ransom in exchange for her father's money.,2009-09-12,1.415,6.452,556 +6149,329263,Suck Me Shakespeer 2,A rowdy teacher accompanies a class trip to Thailand to recover some diamonds accidentally sent there and restore the school's reputation.,2015-09-10,0.9609,6.451,978 +6150,292431,Love,"Murphy is an American living in Paris who enters a highly sexually and emotionally charged relationship with the unstable Electra. Unaware of the seismic effect it will have on their relationship, they invite their pretty neighbor into their bed.",2015-07-15,4.4363,6.451,2558 +6151,33365,The Night Before the Exams,"Rome, 1989. On his last day of high school, Luca gets in trouble when he takes it all out on hated literature teacher Martinelli, only to discover he's going to be heading the examination board for his finals. During a summer of fruitless study, he falls in love with a girl he met once at a party, unaware that she's Martinelli's daughter. The latter, strangely enough, has just offered Luca to prepare with him...",2006-02-17,0.6648,6.5,1056 +6152,15261,Bring It On: In It to Win It,Fourth 'Bring It On' movie is set at a cheerleader camp in Florida with a 'West Side Story' musical feel has the female captain of the West Side Sharks meeting and romancing a male member of the East Coast Jets amid their different team rivalries.,2007-10-29,0.1664,6.5,520 +6153,14254,The Uninvited,"Anna returns home after spending time in a psychiatric facility following her mother's tragic death and discovers that her mother's former nurse, Rachel, has moved into their house and become engaged to her father. Soon after she learns this shocking news, Anna is visited by her mother's ghost, who warns her that Rachel has evil intentions.",2009-01-30,2.5624,6.451,1543 +6154,173185,It Boy,"38-year-old Alice has everything to become the next editor-in-chief of Rebelle magazine except for her uptight image. But when the young and charming Balthazar, barely 20, crosses Alice's path, she realizes that he holds the key to her promotion.",2013-03-06,18.3778,6.45,1502 +6155,38594,Dragon Ball: Yo! Son Goku and His Friends Return!!,"Following the defeat of Majin Buu, Son Goku and friends travel to Mr. Satan's newly-opened hotel for an all-you-can-eat banquet, when they are paid a visit by Vegeta's younger brother Tarble. They are informed by Tarble that the terrible brother duo of Abo and Cado have terrorized his planet and are on their way to Earth.",2008-09-21,4.1106,6.45,573 +6156,27586,The Runaways,"Joan Jett and Cherie Currie, two rebellious teenagers from Southern California, become the frontwomen for The Runaways -- the now-legendary group that paved the way for future generations of female rockers. Under the Svengali-like influence of impresario Kim Fowley, the band becomes a huge success.",2010-03-19,1.1374,6.45,803 +6157,16871,Drag Me to Hell,"After denying a woman the extension she needs to keep her home, loan officer Christine Brown sees her once-promising life take a startling turn for the worse. Christine is convinced she's been cursed by a Gypsy, but her boyfriend is skeptical. Her only hope seems to lie in a psychic who claims he can help her lift the curse and keep her soul from being dragged straight to hell.",2009-05-27,5.1893,6.45,3838 +6158,14001,Dead Silence,"Jamie returns to his hometown in search of answers to his wife's murder, which occurred after receiving a weird package containing a ventriloquist dummy named Billy, which may be linked to the legend of ventriloquist Mary Shaw. Destined to find out the truth, Jamie goes to the town of Raven's Fair, where Shaw used to perform and is buried. But Jamie is in for more than he expected.",2007-03-16,4.9555,6.5,2333 +6159,12182,Nick and Norah's Infinite Playlist,"Nick cannot stop obsessing over his ex-girlfriend, Tris, until Tris' friend Norah suddenly shows interest in him at a club. Thus begins an odd night filled with ups and downs as the two keep running into Tris and her new boyfriend while searching for Norah's drunken friend, Caroline, with help from Nick's band mates. As the night winds down, the two have to figure out what they want from each other.",2008-10-03,1.7113,6.45,1216 +6160,10471,Next Friday,"A streetwise man flees South Central Los Angeles, heading to the suburbs and his lottery-winner uncle and cousin, to avoid a neighborhood thug with a grudge who has just escaped from prison.",2000-01-12,2.856,6.45,603 +6161,9422,A Civil Action,"Jan Schlickmann is a cynical lawyer who goes out to 'get rid of' a case, only to find out it is potentially worth millions. The case becomes his obsession, to the extent that he is willing to give up everything—including his career and his clients' goals—in order to continue the case against all odds.",1998-12-25,2.4068,6.45,459 +6162,3981,What Women Want,"Advertising executive Nick Marshall is as cocky as they come, but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion, but after an accident enables him to hear women's thoughts, he puts his newfound talent to work against Darcy, his new boss, who seems to be infatuated with him.",2000-12-15,5.3995,6.45,4092 +6163,682,The Man with the Golden Gun,"Cool government operative James Bond searches for a stolen invention that can turn the sun's heat into a destructive weapon. He soon crosses paths with the menacing Francisco Scaramanga, a hitman so skilled he has a seven-figure working fee. Bond then joins forces with the swimsuit-clad Mary Goodnight, and together they track Scaramanga to a Thai tropical isle hideout where the killer-for-hire lures the slick spy into a deadly maze for a final duel.",1974-12-04,4.6895,6.45,2139 +6164,543540,The Perfect Date,"No beau? No problem! To earn money for college, a high schooler creates a dating app that lets him act as a stand-in boyfriend.",2019-04-12,3.1835,6.449,3271 +6165,10159,The Rundown,"When Travis, the mouthy son of a criminal, disappears in the Amazon in search of a treasured artifact, his father sends in Beck, who becomes Travis's rival for the affections of Mariana, a mysterious Brazilian woman. With his steely disposition, Beck is a man of few words -- but it takes him all the discipline he can muster to work with Travis to nab a tyrant who's after the same treasure.",2003-09-26,3.6247,6.4,2053 +6166,575446,New Order,"In the near future, a popular uprising in Mexico City interrupts a wedding held at the home of a wealthy family. After the riots have been quashed, they discover the bride has gone missing and plea with the military to help locate her.",2020-10-22,1.1456,6.448,349 +6167,529962,The Perfection,"When troubled musical prodigy Charlotte seeks out Elizabeth, the new star pupil of her former school, the encounter sends both musicians down a sinister path with shocking consequences.",2018-09-20,2.3658,6.448,1387 +6168,489245,The Kill Team,"When Andrew Briggman — a young soldier in the US Army during the invasion of Afghanistan — witnesses the murderous behavior of fellow soldiers, under the direction of a malevolent Sergeant, he faces a moral dilemma. His increasingly-violent platoon becomes suspicious that someone in their ranks has turned on them, and Andrew begins to fear for his safety. A fictionalized dramatization based on a true story.",2019-10-17,1.7006,6.448,405 +6169,719221,Tarot,"When a group of friends recklessly violate the sacred rule of Tarot readings, they unknowingly unleash an unspeakable evil trapped within the cursed cards. One by one, they come face to face with fate and end up in a race against death.",2024-05-01,6.4594,6.447,1237 +6170,72105,Ted,"John Bennett, a man whose childhood wish of bringing his teddy bear to life came true, now must decide between keeping the relationship with the bear or his girlfriend, Lori.",2012-06-29,8.6764,6.447,12690 +6171,39103,Dragon Ball Z: The Return of Cooler,Cooler has resurrected himself as a robot and is enslaving the people of New Namek. Goku and the gang must help.,1992-03-07,3.8069,6.447,1069 +6172,9792,The Hills Have Eyes,"Based on Wes Craven's 1977 suspenseful cult classic, The Hills Have Eyes is the story of a family road trip that goes terrifyingly awry when the travelers become stranded in a government atomic zone. Miles from nowhere, the Carter family soon realizes the seemingly uninhabited wasteland is actually the breeding ground of a blood-thirsty mutant family...and they are the prey.",2006-03-10,7.035,6.4,3151 +6173,7300,One Fine Day,"Melanie Parker, an architect and mother of Sammy, and Jack Taylor, a newspaper columnist and father of Maggie, are both divorced. They meet one morning when overwhelmed Jack is left unexpectedly with Maggie and forgets that Melanie was to take her to school. As a result, both children miss their school field trip and are stuck with the parents. The two adults project their negative stereotypes of ex-spouses on each other, but end up needing to rely on each other to watch the children as each must save his job. Humor is added by Sammy's propensity for lodging objects in his nose and Maggie's tendency to wander.",1996-12-20,2.1314,6.447,684 +6174,553608,DJ Cinderella,"Cintia is modern princess, she's connected, decided and loves music. This ""pop"" princess used to live with their parents in a huge castle with a nice view to the city. Every night she looked through the window and watch the view dreaming with a prince she didn't met yet. But one day her castle crumbles with everything around her, after her parents divorce she went to live with her aunt and stops believing in love. What she didn't knew was that there was a charming prince in her history, that wanted to break the ice around our modern day cinderella.",2019-02-28,1.236,6.446,341 +6175,10529,Outlander,"During the reign of the Vikings, a man from another world crash-lands on Earth, bringing with him an alien predator. The man must fuse his advanced technology with the weaponry of the vikings to fight the monster.",2008-04-24,4.1536,6.446,1319 +6176,6557,27 Dresses,Altruistic Jane finds herself facing her worst nightmare as her younger sister announces her engagement to the man Jane secretly adores.,2008-01-10,5.295,6.446,3226 +6177,955916,Lift,"An international heist crew, led by Cyrus Whitaker, race to lift $500 million in gold from a passenger plane at 40,000 feet.",2024-01-10,5.9197,6.4,1343 +6178,788929,Lamb,"An Icelandic couple live with their herd of sheep on a beautiful but remote farm. When they discover a mysterious newborn on their land, they decide to keep it and raise it as their own. This unexpected development and the prospects of a new family brings them much joy before ultimately destroying them.",2021-08-12,1.9728,6.4,941 +6179,433502,The Aftermath,"In the aftermath of World War II, a British colonel and his wife are assigned to live in Hamburg during the post-war reconstruction, but tensions arise with the German widower who lives with them.",2019-03-01,2.0275,6.445,689 +6180,11128,Ladder 49,"Under the watchful eye of his mentor, Captain Mike Kennedy, probationary firefighter Jack Morrison matures into a seasoned veteran at a Baltimore fire station. However, Jack has reached a crossroads as the sacrifices he's made have put him in harm's way innumerable times and significantly impacted his relationship with his wife and kids.",2004-10-01,1.8532,6.4,807 +6181,2207,16 Blocks,"An aging cop is assigned the ordinary task of escorting a fast-talking witness from police custody to a courthouse, but they find themselves running the gauntlet as other forces try to prevent them from getting there.",2006-03-01,2.0921,6.445,1990 +6182,1825,Over the Top,"Sylvester Stallone stars as hard-luck big-rig trucker Lincoln Hawk and takes us under the glaring Las Vegas lights for all the boisterous action of the World Armwrestling Championship. Relying on wits and willpower, Hawk tries to rebuild his life by capturing the first-place prize money, and the love of the son he abandoned years earlier into the keeping of his rich, ruthless father-in-law.",1987-02-13,4.6078,6.445,1742 +6183,346685,The Girl on the Train,"Rachel Watson, devastated by her recent divorce, spends her daily commute fantasizing about the seemingly perfect couple who live in a house that her train passes every day, until one morning she sees something shocking happen there and becomes entangled in the mystery that unfolds.",2016-10-05,3.5191,6.4,5822 +6184,203793,Stalingrad,"A band of determined Russian soldiers fight to hold a strategic building in their devastated city against a ruthless German army, and in the process become deeply connected to a Russian woman who has been living there.",2013-10-09,0.0997,6.444,366 +6185,115290,Blue Lagoon: The Awakening,Two high school students become stranded on a tropical island and must rely on each other for survival. They learn more about themselves and each other while falling in love.,2012-06-16,9.0146,6.444,1452 +6186,14881,Joe Kidd,"A band of Mexicans find their U. S. land claims denied and all the records destroyed in a courthouse fire. Their leader, Louis Chama, encourages them to use force to regain their land. A wealthy landowner wanting the same decides to hire a gang of killers with Joe Kidd to track Chama.",1972-07-19,2.6632,6.444,382 +6187,9716,Everyone Says I Love You,A New York girl sets her father up with a beautiful woman in a shaky marriage while her half sister gets engaged.,1996-12-06,1.9222,6.444,683 +6188,6557,27 Dresses,Altruistic Jane finds herself facing her worst nightmare as her younger sister announces her engagement to the man Jane secretly adores.,2008-01-10,5.295,6.446,3226 +6189,5718,King of California,"Charlie gets released from an insane asylum and moves in with Miranda, the young daughter he left behind. Charlie believes that there is treasure hidden beneath the local Costco, so he puts together a plan to unearth the loot. By convincing Miranda to quit her job at McDonald's and instead work at the wholesale store, he is able to obtain a key. Although Miranda is skeptical, she helps her father with his irrational quest.",2007-01-24,1.6454,6.444,365 +6190,1406,City Slickers,"Three New York businessmen decide to take a ""Wild West"" vacation that turns out not to be the relaxing vacation they had envisioned.",1991-06-07,3.1556,6.4,817 +6191,977506,The Crime Is Mine,"In 1930s Paris, Madeleine, a pretty, young, penniless, and talentless actress, is accused of murdering a famous producer. Helped by her best friend, Pauline, a young, unemployed lawyer, she is acquitted on the grounds of self-defense. A new life of fame and success begins, until the truth comes out.",2023-02-24,1.4259,6.4,415 +6192,730769,Some Like It Rare,"Sophie and Vincent’s small butcher shop is on the brink of bankruptcy and their marriage is falling apart. Their lives are turned upside down when Vincent accidentally kills a vegan activist who vandalized their shop. Overwhelmed and terrified of being accused of murder, their only solution is to get rid of the body by turning it into ham. To their surprise the ham is so popular that it may save their business… that is if they’re ready to keep “hunting""!",2021-09-10,1.2801,6.443,467 +6193,403605,Headshot,"A young man washes ashore, his memory gone - but his past comes back to haunt him after he is nursed back to health and his killing ability is needed when he takes on a powerful drug lord.",2016-09-24,2.3809,6.443,458 +6194,395992,Life,"The six-member crew of the International Space Station is tasked with studying a sample from Mars that may be the first proof of extra-terrestrial life, which proves more intelligent than ever expected.",2017-03-22,5.2479,6.4,7579 +6195,123553,The Mortal Instruments: City of Bones,"In New York City, Clary Fray, a seemingly ordinary teenager, learns that she is descended from a line of Shadowhunters — half-angel warriors who protect humanity from evil forces. After her mother disappears, Clary joins forces with a group of Shadowhunters and enters Downworld, an alternate realm filled with demons, vampires, and a host of other creatures. Clary and her companions must find and protect an ancient cup that holds the key to her mother's future.",2013-08-21,5.5965,6.443,4523 +6196,109451,Cloudy with a Chance of Meatballs 2,"After the disastrous food storm in the first film, Flint and his friends are forced to leave the town. Flint accepts the invitation from his idol Chester V to join The Live Corp Company, which has been tasked to clean the island, and where the best inventors in the world create technologies for the betterment of mankind. When Flint discovers that his machine still operates and now creates mutant food beasts like living pickles, hungry tacodiles, shrimpanzees and apple pie-thons, he and his friends must return to save the world.",2013-09-26,5.3592,6.443,3322 +6197,49017,Dracula Untold,"Vlad Tepes is a great hero, but when he learns the Sultan is preparing for battle and needs to form an army of 1,000 boys, he vows to find a way to protect his family. Vlad turns to dark forces in order to get the power to destroy his enemies and agrees to go from hero to monster as he's turned into the mythological vampire, Dracula.",2014-10-01,3.9825,6.443,6255 +6198,16899,Easy Virtue,"A young Englishman marries a glamorous American. When he brings her home to meet the parents, she arrives like a blast from the future - blowing their entrenched British stuffiness out the window.",2008-11-07,1.4404,6.4,426 +6199,10288,Fido,"Timmy Robinson's best friend in the whole wide world is a six-foot tall rotting zombie named Fido. But when Fido eats the next-door neighbor, Mom and Dad hit the roof, and Timmy has to go to the ends of the earth to keep Fido a part of the family. A boy-and-his-dog movie for grown ups, ""Fido"" will rip your heart out.",2006-09-07,1.2655,6.443,466 +6200,520900,The Personal History of David Copperfield,"A fresh and distinctive take on Charles Dickens’ semi-autobiographical masterpiece, The Personal History of David Copperfield, set in the 1840s, chronicles the life of its iconic title character as he navigates a chaotic world to find his elusive place within it. From his unhappy childhood to the discovery of his gift as a storyteller and writer, David’s journey is by turns hilarious and tragic, but always full of life, colour and humanity.",2019-11-07,1.8179,6.4,495 +6201,457335,Guns Akimbo,"An ordinary guy suddenly finds himself forced to fight a gladiator-like battle for a dark website that streams the violence for viewers. In order to survive and rescue his kidnapped ex-girlfriend, he must battle Nix, a heavily armed and much more experienced fighter.",2020-02-27,2.424,6.442,2407 +6202,11172,Music and Lyrics,"A washed-up '80s pop star gets a chance at a comeback when reigning pop diva Cora Corman invites him to write & record a duet with her, but there's a problem--Alex hasn't written a song in years; he's never written lyrics and he has to come up with a hit in a matter of days.",2007-02-09,2.1569,6.442,1720 +6203,12535,High Anxiety,"A psychiatrist with intense acrophobia (fear of heights) goes to work for a mental institution run by doctors who appear to be crazier than their patients, and have secrets that they are willing to commit murder to keep.",1977-12-25,1.0426,6.441,366 +6204,11008,Major Payne,"Major Benson Winifred Payne is being discharged from the Marines. Payne is a killin' machine, but the wars of the world are no longer fought on the battlefield. A career Marine, he has no idea what to do as a civilian, so his commander finds him a job - commanding officer of a local school's JROTC program, a bunch of ragtag losers with no hope.",1995-03-24,2.8109,6.441,836 +6205,10569,Small Time Crooks,A loser of a crook and his wife strike it rich when a botched bank job's cover business becomes a spectacular success.,2000-05-19,1.1865,6.4,712 +6206,2655,What Lies Beneath,"When Claire Spencer starts hearing ghostly voices and seeing spooky images, she wonders if an otherworldly spirit is trying to contact her. All the while, her husband tries to reassure her by telling her it's all in her head. But as Claire investigates, she discovers that the man she loves might know more than he's letting on.",2000-07-21,4.3464,6.441,1904 +6207,559,Spider-Man 3,"The seemingly invincible Spider-Man goes up against an all-new crop of villains—including the shape-shifting Sandman. While Spider-Man’s superpowers are altered by an alien organism, his alter ego, Peter Parker, deals with nemesis Eddie Brock and also gets caught up in a love triangle.",2007-05-01,17.0869,6.441,14584 +6208,603119,The Silencing,A reformed hunter becomes involved in a deadly game of cat and mouse when he and the local sheriff set out to track a vicious killer who may have kidnapped his daughter years ago.,2020-07-18,3.9064,6.4,717 +6209,21705,The Barbie Diaries,"This movie stars Barbie as a teenage girl, trying to deal with crushes, rivals and friendship as she tries to achieve her dream of working as a news anchor for her school's TV station. She doesn't always make the right decisions, but she's a nice enough character and considerably less ""perfect"" than she is portrayed in her other films.",2006-05-17,1.9508,6.44,383 +6210,9679,Gone in Sixty Seconds,"Upon learning that he has to come out of retirement to steal 50 cars in one night to save his brother Kip's life, former car thief Randall ""Memphis"" Raines enlists help from a few ""boost happy"" pals to accomplish a seemingly impossible feat. From countless car chases to relentless cops, the high-octane excitement builds as Randall swerves around more than a few roadblocks to keep Kip alive.",2000-06-09,6.6278,6.441,4611 +6211,7873,Harsh Times,"Jim Davis is an ex-Army Ranger who finds himself slipping back into his old life of petty crime after a job offer from the LAPD evaporates. His best friend is pressured by his girlfriend Sylvia to find a job, but Jim is more interested in hanging out and making cash from small heists, while trying to get a law enforcement job so he can marry his Mexican girlfriend.",2005-09-11,1.5115,6.44,721 +6212,2294,Jay and Silent Bob Strike Back,"When Jay and Silent Bob learn that their comic-book alter egos, Bluntman and Chronic, have been sold to Hollywood as part of a big-screen movie that leaves them out of any royalties, the pair travels to Tinseltown to sabotage the production.",2001-08-22,2.1214,6.44,1624 +6213,800939,Ticket to Paradise,Divorced couple Georgia and David find themselves on a shared mission: they team up and travel to Bali to stop their daughter Lily from making the same mistake they once made 25 years ago.,2022-09-08,3.7554,6.4,1318 +6214,610253,Halloween Kills,"Michael manages to free himself from Laurie Strode's trap to resume his ritual bloodbath. As she fights for her life from injuries from their last encounter, she inspires her daughter Karen, her granddaughter Allyson, and all of Haddonfield to rise up against the unstoppable monster.",2021-10-14,3.4254,6.439,2774 +6215,605116,Project Power,"An ex-soldier, a teen and a cop collide in New Orleans as they hunt for the source behind a dangerous new pill that grants users temporary superpowers.",2020-08-14,3.1744,6.439,2926 +6216,425001,The War with Grandpa,"Peter is thrilled that his Grandpa is coming to live with his family. That is, until Grandpa moves into Peter's room, forcing him upstairs into the creepy attic. And though he loves his Grandpa, he wants his room back - so he has no choice but to declare war.",2020-08-27,5.4568,6.439,1003 +6217,82520,Return,"Back from a tour of duty, Kelli struggles to find her place in her family and the rust-belt town she no longer recognizes.",2011-02-10,0.7266,6.4,3908 +6218,60175,The Under-Gifted,"The story centers around a graduating class of ""less-gifted"" students in a private Versailles high school. Only a miracle has brought the students this far along, and after a practical joke misfires and the whole school is dynamited, the students are in deep trouble. They have to present themselves in court for their punishment and it could not be worse: If they don't pass their high-school graduation exams, they go to prison!",1980-04-30,1.7831,6.439,465 +6219,27346,Maniac,"A psychotic man, troubled by his childhood abuse, loose in NYC, kills young women and local girl American models and takes their scalps as trophies.",1980-05-10,1.2521,6.439,456 +6220,740985,Borat Subsequent Moviefilm,"14 years after making a film about his journey across the USA, Borat risks life and limb when he returns to the United States with his young daughter, and reveals more about the culture, the COVID-19 pandemic, and the political elections.",2020-10-23,5.8521,6.436,2661 +6221,606117,A Cinderella Story: Christmas Wish,"Kat is an aspiring singer-songwriter who dreams of making it big. However, her dreams are stalled by her reality: a conniving and cruel stepfamily and a demoralizing job working as a singing elf at billionaire Terrence Wintergarden’s Santa Land.",2019-10-15,2.4203,6.438,712 +6222,334298,Monster Hunt,Young monster kids try to make peace between the world of humans and the world of the monsters.,2015-07-16,1.5309,6.438,340 +6223,200713,9 Month Stretch,"Ariane Felder is pregnant! This is surprising with her being a young hardened judge with strict morals. But what is more surprising is that, according to paternity testing, the child's father is none other than Bob, a criminal from the prosecution charged with an atrocious attack! Ariane doesn't remember any of what has happened, so she has no idea what to expect...",2013-09-07,0.7969,6.4,569 +6224,36834,Total Eclipse,"Young, wild poet Arthur Rimbaud and his mentor Paul Verlaine engage in a fierce, forbidden romance while feeling the effects of a hellish artistic lifestyle.",1995-11-03,1.2269,6.438,536 +6225,10140,The Chronicles of Narnia: The Voyage of the Dawn Treader,"This time around Edmund and Lucy Pevensie, along with their pesky cousin Eustace Scrubb find themselves swallowed into a painting and on to a fantastic Narnian ship headed for the very edges of the world.",2010-12-02,10.5087,6.438,5698 +6226,400,Things to Do in Denver When You're Dead,Five different criminals face imminent death after botching a job quite badly.,1995-12-01,1.756,6.436,401 +6227,625568,Unhinged,"Rachel is a divorced single mother whose bad day gets even worse. She's running late to drop her son off at school when she honks her horn impatiently at a fellow driver during rush-hour traffic. After an exchange of words, she soon realizes that the mysterious man is following her and her young son in his truck. A case of road rage quickly escalates, at horrifyingly psychotic proportions, into full-blown terror as Rachel discovers the psychopath's sinister plan for revenge. He is single-mindedly determined to teach her a deadly lesson.",2020-07-16,3.0283,6.4,2370 +6228,464889,Sniper: Ultimate Kill,"For the first time, Brandon Beckett, Richard Miller and Sgt. Thomas Beckett join forces in Colombia to take down a brutal drug cartel. When a deadly sniper with advanced, never-before-seen weaponry targets local Special Agent Kate Estrada, our elite team is in for the ultimate battle in this explosive, game-changing action thriller.",2017-10-03,3.427,6.437,355 +6229,84306,Liberal Arts,"Newly single, 35, and uninspired by his job, Jesse Fisher worries that his best days are behind him. But no matter how much he buries his head in a book, life keeps pulling Jesse back. When his favorite college professor invites him to campus to speak at his retirement dinner, Jesse jumps at the chance.",2012-09-14,1.3628,6.437,552 +6230,13193,Saved!,"Mary is a good Christian girl who goes to a good Christian high school where she has good Christian friends and a perfect Christian boyfriend. Her life seems perfect, until the day that she finds out that her boyfriend may be gay — and that she’s pregnant.",2004-06-11,1.1845,6.437,485 +6231,8987,The River Wild,"Gail and Tom Hartman are struggling to stay together and decide to take a white-water rafting holiday adventure in Montana for their son Roarke's 10th birthday, only to meet up with a pair of mysterious men whose desperation grows, turning their vacation into a nightmare.",1994-09-30,2.3992,6.437,909 +6232,884,Crash,"After getting into a serious car accident, a TV director discovers an underground sub-culture of scarred, omnisexual car-crash victims, and he begins to use car accidents and the raw sexual energy they produce to try to rejuvenate his sex life with his wife.",1996-07-17,4.0483,6.4,1228 +6233,10671,Airport,"An airport manager tries to keep his terminals open during a snowstorm, while a suicide bomber plots to blow up a Boeing 707 airliner in flight.",1970-03-25,2.349,6.436,408 +6234,10540,Outland,"On the sunless moon Io, Marshall William T. O’Niel goes toe-to-toe with the corrupt manager of a mining colony and his gang of roughnecks while investigating a rash of worker suicides.",1981-05-22,1.8156,6.436,636 +6235,6488,Arachnophobia,"A large spider from the jungles of South America is accidentally transported in a crate with a dead body to America where it mates with a local spider. Soon after, the residents of a small California town disappear as the result of spider bites from the deadly spider offspring. It's up to a couple of doctors with the help of an insect exterminator to annihilate these eight legged freaks.",1990-07-20,1.2217,6.436,1439 +6236,5653,Luther,"During the early 16th century, idealistic German monk Martin Luther, disgusted by the materialism in the church, begins the dialogue that will lead to the Protestant Reformation.",2003-10-29,1.9385,6.4,318 +6237,171,The Party 2,A young French teenage girl after moving to a new city falls in love with a boy and is thinking of having sex with him because her girlfriends have already done it.,1982-12-08,1.2771,6.4,634 +6238,960875,The Chalk Line,"After a couple finds a traumatized child of unknown origins, wife Paula must decipher the girl's strange behaviors to unlock her identity and dark past.",2022-09-09,0.8791,6.435,348 +6239,738646,Operation Christmas Drop,"While gathering evidence to support closing a tropical U.S. Air Force base, a congressional aide warms to its generous captain.",2020-11-05,1.7379,6.435,564 +6240,429203,The Old Man & the Gun,"The true story of Forrest Tucker, from his audacious escape from San Quentin at the age of 70 to an unprecedented string of heists that confounded authorities and enchanted the public. Wrapped up in the pursuit are a detective, who becomes captivated with Forrest’s commitment to his craft, and a woman, who loves him in spite of his chosen profession.",2018-09-27,1.5934,6.435,1426 +6241,243684,"Men, Women & Children","Follows the story of a group of high school teenagers and their parents as they attempt to navigate the many ways the internet has changed their relationships, their communication, their self-image, and their love lives.",2014-10-17,3.359,6.439,920 +6242,199534,Wolf Creek 2,"Lured by the promise of an Australian holiday, backpackers Rutger, Katarina and Paul visit the notorious Wolf Creek Crater. Their dream Outback adventure soon becomes a horrific reality when they encounter the site's most infamous local, the last man any traveller to the region ever wants to meet—Mick Taylor. As the backpackers flee, Mick pursues them on an epic white knuckled rampage across hostile wasteland.",2013-08-30,2.1204,6.435,676 +6243,4513,30 Days of Night,"This is the story of an isolated Alaskan town that is plunged into darkness for a month each year when the sun sinks below the horizon. As the last rays of light fade, the town is attacked by a bloodthirsty gang of vampires bent on an uninterrupted orgy of destruction. Only the small town's husband-and-wife Sheriff team stand between the survivors and certain destruction.",2007-10-17,5.5719,6.435,2896 +6244,3036,Mary Shelley's Frankenstein,"Victor Frankenstein is a promising young doctor who, devastated by the death of his mother during childbirth, becomes obsessed with bringing the dead back to life. His experiments lead to the creation of a monster, which Frankenstein has put together with the remains of corpses. It's not long before Frankenstein regrets his actions.",1994-11-04,2.8523,6.435,1269 +6245,668489,Havoc,"When a drug heist swerves lethally out of control, a jaded cop fights his way through a corrupt city's criminal underworld to save a politician's son.",2025-04-25,15.6312,6.434,954 +6246,303858,Money Monster,Financial TV host Lee Gates and his producer Patty are put in an extreme situation when an irate investor takes over their studio.,2016-05-12,3.1174,6.434,3041 +6247,23210,Six Degrees of Separation,"The story of a young, gay, black, con artist who, posing as the son of Sidney Poitier, cunningly maneuvers his way into the lives of a white, upper-class New York family.",1993-12-08,1.676,6.4,344 +6248,11564,Class of 1984,"Andy is a new teacher at an inner city high school that is unlike any he has seen before. There are metal detectors at the front door and the place is basically run by a tough kid named Peter Stegman. Soon, Andy and Stegman become enemies and Stegman will stop at nothing to protect his turf and drug dealing business.",1982-08-20,1.7957,6.4,374 +6249,9556,Darkman,"Dr. Peyton Westlake is on the verge of realizing a major breakthrough in synthetic skin when his laboratory is destroyed by gangsters. Having been burned beyond recognition and forever altered by an experimental medical procedure, Westlake becomes known as Darkman, assuming alternate identities in his quest for revenge and a new life with a former love.",1990-08-24,2.4092,6.433,1426 +6250,3537,Fame,A chronicle of the lives of several teenagers who attend a New York high school for students gifted in the performing arts.,1980-05-16,1.5597,6.4,476 +6251,961484,Last Seen Alive,"After Will Spann's wife suddenly vanishes at a gas station, his desperate search to find her leads him down a dark path that forces him to run from authorities and take the law into his own hands.",2022-05-12,2.983,6.432,1013 +6252,897087,Freelance,"An ex-special forces operative takes a job to provide security for a journalist as she interviews a dictator, but a military coup breaks out in the middle of the interview, they are forced to escape into the jungle where they must survive.",2023-10-05,5.5844,6.432,1057 +6253,49527,Man on a Ledge,"An ex-cop turned con threatens to jump to his death from a Manhattan hotel rooftop. The NYPD dispatch a female police psychologist to talk him down. However, unbeknownst to the police on the scene, the suicide attempt is a cover for the biggest diamond heist ever pulled.",2012-01-13,3.2412,6.432,2673 +6254,39874,My Bloody Valentine,"Twenty years after a Valentine's Day tragedy claimed the lives of five miners, Harry Warden returns for a vengeful massacre among teen sweethearts gearing up for another party.",1981-02-11,1.794,6.432,518 +6255,1052280,It's What's Inside,A pre-wedding reunion descends into a psychological nightmare for a group of college friends when a surprise guest arrives with a mysterious suitcase.,2024-01-19,4.2486,6.431,643 +6256,154441,Till Luck Do Us Part,"Check out the hilarious story of luck and misadventures of Tino, a family man whose life is transformed after he wins the lottery. Dazzled by wealth, this boaster spends all his money on a life of luxury and ostentation. But after finding out that he is bankrupt, he faces comical situations: besides not telling his wife he is broke because she is pregnant and cannot get upset, Tino must accept help from his neighbor who is an extremely thrifty financial adviser and the only one capable of getting him out of the rut.",2012-10-05,0.4126,6.431,312 +6257,8952,I Love You Phillip Morris,"Steven Russell leads a seemingly average life – an organ player in the local church, happily married to Debbie, and a member of the local police force. That is until he has a severe car accident that leads him to the ultimate epiphany: he’s gay and he’s going to live life to the fullest – even if he has to break the law to do it. Taking on an extravagant lifestyle, Steven turns to cons and fraud to make ends meet and is eventually sent to the State Penitentiary where he meets the love of his life, a sensitive, soft-spoken man named Phillip Morris. His devotion to freeing Phillip from jail and building the perfect life together prompts him to attempt (and often succeed at) one impossible con after another.",2010-02-04,1.69,6.431,1710 +6258,6795,Zathura: A Space Adventure,"After their father is called into work, two young boys, Walter and Danny, are left in the care of their teenage sister, Lisa, and told they must stay inside. Walter and Danny, who anticipate a boring day, are shocked when they begin playing Zathura, a space-themed board game, which they realize has mystical powers when their house is shot into space. With the help of an astronaut, the boys attempt to return home.",2005-11-06,5.3556,6.431,3394 +6259,200,Star Trek: Insurrection,"When an alien race and factions within Starfleet attempt to take over a planet that has ""regenerative"" properties, it falls upon Captain Picard and the crew of the Enterprise to defend the planet's people as well as the very ideals upon which the Federation itself was founded.",1998-12-11,3.2781,6.431,1275 +6260,306947,The Invitation,"Will and his new girlfriend Kira are invited to a dinner with old friends at the house of Will’s ex Eden and her new partner David. Although the evening appears to be relaxed, Will soon gets a creeping suspicion that their charming host David is up to something.",2016-04-08,3.3024,6.43,2695 +6261,266082,Girlhood,"Oppressed by her family setting, dead-end school prospects and the boys law in the neighborhood, Marieme starts a new life after meeting a group of three free-spirited girls. She changes her name, her dress code, and quits school to be accepted in the gang, hoping that this will be a way to freedom.",2014-10-22,0.9112,6.43,385 +6262,19955,I Do,"Life is easy for 43-year-old Luis, a happy single guy, fulfilled in his job of star nose with a perfume creation company, cosseted by his mother and five sisters. It could have lasted for a whole life, but fed up with mollycoddling and helping him, his mother and sisters decide it's time he got married, and the sooner the better!",2006-11-01,1.427,6.43,338 +6263,15567,Stitch! The Movie,"The continuing adventures of Lilo, a little Hawaiian girl, and Stitch, the galaxy's most-wanted extraterrestrial. Stitch, Pleakley, and Dr. Jumba are all part of the household now, but what Lilo and Stitch don't know is that Dr. Jumba brought his other alien ""experiments"" to Hawaiʻi as well.",2003-09-10,4.0095,6.43,740 +6264,10766,Damien - Omen II,"Since the sudden and suspicious deaths of his parents, young Damien has been in the charge of his wealthy aunt and uncle and enrolled in a military school. Widely feared to be the Antichrist, he relentlessly plots to seize control of his uncle's business empire — and the world.",1978-06-09,2.584,6.428,767 +6265,6795,Zathura: A Space Adventure,"After their father is called into work, two young boys, Walter and Danny, are left in the care of their teenage sister, Lisa, and told they must stay inside. Walter and Danny, who anticipate a boring day, are shocked when they begin playing Zathura, a space-themed board game, which they realize has mystical powers when their house is shot into space. With the help of an astronaut, the boys attempt to return home.",2005-11-06,5.3556,6.431,3394 +6266,636,THX 1138,People in the future live in a totalitarian society. A technician named THX 1138 lives a mundane life between work and taking a controlled consumption of drugs that the government uses to make puppets out of people. As THX is without drugs for the first time he has feelings for a woman and they start a secret relationship.,1971-03-11,2.0093,6.43,991 +6267,582913,The Room,"Kate and Matt discover that a part of their house can grant wishes. In the wake of two miscarriages, what they want most is a child.",2019-09-12,2.4082,6.429,974 +6268,397722,Thoroughbreds,"Lily and Amanda, two high school students living in suburban Connecticut, rekindle their unlikely friendship after years of drifting apart. Together, they devise a plan to kill Lily's abusive stepfather by hiring a lowlife drug dealer.",2018-03-09,1.6456,6.429,1190 +6269,193610,The Other Woman,"After discovering her boyfriend is married, Carly soon meets the wife he's been cheating on. And when yet another affair is discovered, all three women team up to plot mutual revenge on the three-timing SOB.",2014-04-16,4.0136,6.429,3616 +6270,44147,Wild Target,"Victor Maynard is a middle-aged, solitary assassin who lives to please his formidable mother, despite his own peerless reputation for lethal efficiency. His professional routine is interrupted when he finds himself drawn to one of his intended victims. After sparing her life, he unexpectedly acquires a young apprentice. Believing Victor to be a private detective, his two new companions tag along, while he attempts to thwart the murderous attentions of his unhappy client.",2010-06-17,1.6453,6.429,743 +6271,449985,Triple Threat,"A crime syndicate places a hit on a billionaire's daughter, making her the target of an elite assassin squad. A small band of down-and-out mercenaries protects her, fighting tooth and nail to stop the assassins from reaching their target.",2019-03-19,3.928,6.428,608 +6272,341013,Atomic Blonde,An undercover MI6 agent is sent to Berlin during the Cold War to investigate the murder of a fellow agent and recover a missing list of double agents.,2017-07-26,5.7327,6.4,6378 +6273,300668,Annihilation,"A biologist signs up for a dangerous, secret expedition into a mysterious zone where the laws of nature don't apply.",2018-02-22,5.6156,6.428,8940 +6274,119569,Marvel One-Shot: Item 47,"Benny and Claire, a down-on-their-luck couple, find a discarded Chitauri weapon referred to as 'Item 47'.",2012-08-29,1.4215,6.428,570 +6275,42892,Happy Family,"A blocked screenwriter, Ezio, is trying to finish a story about two off-kilter families thrown together when their teenage children announce they’re getting married. So Ezio writes himself into the story with a romantic part—a development his characters welcome, as they’ve got some ideas of their own for bigger and better roles.",2010-03-26,0.7787,6.428,305 +6276,28032,Thumbelina,"Born of a flower and growing to only a couple of inches tall, poor Thumbelina is worried she'll never meet someone her own size, until she happens to catch the eye of Prince Cornelius of the Fairies. Just as soon as she finds love, however, it's torn away from her when she is kidnapped by Ms. Toad. Now Thumbelina has to escape Ms. Toad's grasp and search for Prince Cornelius. Luckily, there's a whole city of animals willing to help her.",1994-03-30,2.2974,6.428,513 +6277,802217,8-Bit Christmas,"In suburban Chicago during the late 1980s, ten-year-old Jake Doyle embarks on a herculean quest to get the latest and greatest video game system for Christmas.",2021-11-24,0.8265,6.427,445 +6278,184098,Think Like a Man Too,"All the couples are back for a wedding in Las Vegas, but plans for a romantic weekend go awry when their various misadventures get them into some compromising situations that threaten to derail the big event.",2014-06-20,2.7891,6.427,568 +6279,81025,Salmon Fishing in the Yemen,A fisheries expert is approached by a consultant to help realize a sheik's vision of bringing the sport of fly-fishing to the desert and embarks on an upstream journey of faith and fish to prove the impossible possible.,2012-03-09,1.5311,6.4,900 +6280,72784,The Loft,"For five men, the opportunity to share a penthouse in the city -- in which to carry on extramarital affairs -- is a dream come true, until the dead body of an unknown woman turns up. Realizing that her killer must be one of their group, the men are gripped by paranoia as each one suspects another. Friendships are tested, loyalties are questioned, and marriages crumble while fear and suspicion run rampant.",2014-10-14,4.7698,6.427,1504 +6281,505026,Death on the Nile,Belgian sleuth Hercule Poirot's Egyptian vacation aboard a glamorous river steamer turns into a terrifying search for a murderer when a picture-perfect couple's idyllic honeymoon is tragically cut short.,2022-02-09,6.3771,6.426,3892 +6282,210947,Afflicted,Two friends' tour of Europe takes a dark turn when one of them contracts a mysterious illness. They race to find out what it is and how to cure it before the sickness consumes him completely.,2014-04-04,1.5768,6.427,580 +6283,6081,Revenge of the Pink Panther,"Chief Inspector Jacques Clouseau is dead. At least that is what the world—and Charles Dreyfus—believe when a dead body is discovered in Clouseau's car after being shot off the road. Naturally, Clouseau knows differently and, taking advantage of not being alive, sets out to discover why an attempt was made on his life.",1978-01-08,2.1247,6.426,441 +6284,241554,Run All Night,"Brooklyn mobster and prolific hit man Jimmy Conlon has seen better days. Longtime best friend of a mob boss, Jimmy is haunted by the sins of his past—as well as a dogged police detective who’s been one step behind Jimmy for 30 years. But when Jimmy’s estranged son becomes a target, Jimmy must make a choice between the crime family he chose and the real family he abandoned long ago. Now, with nowhere safe to turn, Jimmy has just one night to figure out exactly where his loyalties lie and to see if he can finally make things right.",2015-03-11,4.6138,6.425,2856 +6285,136797,Need for Speed,"The film revolves around a local street-racer who partners with a rich and arrogant business associate, only to find himself framed by his colleague and sent to prison. After he gets out, he joins a New York-to-Los Angeles race to get revenge. But when the ex-partner learns of the scheme, he puts a massive bounty on the racer's head, forcing him to run a cross-country gauntlet of illegal racers in all manner of supercharged vehicles.",2014-03-12,5.8873,6.424,4493 +6286,9839,Beyond Borders,"Sarah Jordan, an American living in London in 1984, is married to the son of a wealthy British industrialist. She encounters Nick Callahan, a renegade doctor, whose impassioned plea for help to support his relief efforts in war-torn Africa moves her deeply. As a result, Sarah embarks upon a journey of discovery that leads to danger, heartbreak and romance in the far corners of the world.",2003-10-23,1.887,6.4,414 +6287,567748,The Guilty,A demoted police officer assigned to a call dispatch desk is conflicted when he receives an emergency phone call from a kidnapped woman.,2021-09-24,3.5326,6.424,2844 +6288,334878,Blind Date,He invents puzzles. He’s committed body and soul to his work and needs silence to be able to concentrate. She is an accomplished pianist and can’t live without music. She must prepare for a competition that could change her life. They are going to be forced to coexist without seeing each other.,2015-05-06,1.4226,6.424,555 +6289,308504,Last Knights,"When an evil emperor executes their leader, his band of knights – bound by duty and honour – embarks on a journey of vengeance that will not come to an end until they've destroyed their mortal foe.",2015-04-03,2.2597,6.424,1104 +6290,76170,The Wolverine,"Wolverine faces his ultimate nemesis - and tests of his physical, emotional, and mortal limits - in a life-changing voyage to modern-day Japan.",2013-07-21,1.7101,6.424,9873 +6291,36968,Life-Size,"Sad and lonely after the death of her mother, Casey would do anything to see her again. But when a series of mystic mishaps mistakenly brings her fashion doll “Eve” to life instead, it changes Casey’s world forever!",2000-03-05,1.6783,6.424,435 +6292,24920,City of the Living Dead,"A woman seemingly dies of fright after participating in a séance where she sees a vision of a Dunwich priest hanging himself in a church cemetery. New York City reporter Peter Bell investigates and learns that the priest's suicide has somehow opened a portal to Hell and must be sealed by All Saints Day, or else the dead will overtake humanity.",1980-08-11,1.7274,6.4,409 +6293,24341,Dolls,"A precocious girl, her nasty parents, two punk-rock losers and a weak-kneed salesman inadvertently become the guests of two ghoulish senior citizens in their dark, haunted mansion.",1986-10-27,1.4343,6.429,343 +6294,17707,Brokedown Palace,"Best friends Alice and Darlene take a trip to Thailand after graduating high school. In Thailand, they meet a captivating Australian man, who calls himself Nick Parks. Darlene is particularly smitten with Nick and convinces Alice to take Nick up on his offer to treat the two of them to what amounts to a day trip to Hong Kong. In the airport, the girls are seized by the police and shocked to discover that one of their bags contains heroin.",1999-08-13,2.5314,6.4,394 +6295,430155,Coma,"A young and talented architect comes to his senses after a horrific accident only to find himself in the odd dystopian world. A world that is filled with the memories of all current coma patients. Just like a human memory this world is fragmental, chaotic and unstable. This is COMA: icecaps, rivers and cities can all exist in a space of a single room and laws of physics are no longer laws as they can be bent.",2020-01-01,3.2953,6.4,580 +6296,379862,Return,"A young couple purchase their new home to start a life together, only to find out the elderly couple next door have other plans for them.",2015-11-28,0.2437,6.423,973 +6297,9671,Crocodile Dundee,"When a New York reporter plucks crocodile hunter Mick Dundee from the Australian Outback for a visit to the Big Apple, it's a clash of cultures and a recipe for good-natured comedy as naïve Dundee negotiates the concrete jungle. He proves that his instincts are quite useful in the city and adeptly handles everything from wily muggers to high-society snoots without breaking a sweat.",1986-09-26,3.9401,6.423,1980 +6298,950387,A Minecraft Movie,"Four misfits find themselves struggling with ordinary problems when they are suddenly pulled through a mysterious portal into the Overworld: a bizarre, cubic wonderland that thrives on imagination. To get back home, they'll have to master this world while embarking on a magical quest with an unexpected, expert crafter, Steve.",2025-03-31,68.0423,6.422,2189 +6299,845111,The Three Musketeers: Milady,"D'Artagnan, on a quest to rescue the abducted Constance, runs into the mysterious Milady de Winter again. The tension between the Catholics and the Protestants finally escalates, as the king declares war — forcing the now four musketeers into battle. But as the war goes on, they are tested physically, mentally and emotionally.",2023-12-13,3.9638,6.422,746 +6300,615656,Meg 2: The Trench,An exploratory dive into the deepest depths of the ocean of a daring research team spirals into chaos when a malevolent mining operation threatens their mission and forces them into a high-stakes battle for survival.,2023-08-02,14.1884,6.422,3667 +6301,531454,Eurovision Song Contest: The Story of Fire Saga,"Two small-town singers chase their pop star dreams at a global music competition, where high stakes, scheming rivals and onstage mishaps test their bond.",2020-06-26,2.282,6.422,1479 +6302,835113,Woman of the Hour,"An aspiring actress crosses paths with a prolific serial killer in '70s LA when they're cast on an episode of ""The Dating Game.""",2024-10-03,3.3052,6.425,836 +6303,314405,Tale of Tales,The Queen of Selvascura risks everything to be a mother; the King of Roccaforte falls in love with the voice of a mysterious girl; the King of Altomonte becomes obsessed with a flea and neglects his daughter.,2015-05-14,2.2206,6.421,1665 +6304,268238,The Second Best Exotic Marigold Hotel,As the Best Exotic Marigold Hotel has only a single remaining vacancy - posing a rooming predicament for two fresh arrivals - Sonny pursues his expansionist dream of opening a second hotel.,2015-02-26,2.8191,6.421,738 +6305,48650,Room in Rome,"A hotel room in the center of Rome serves as the setting for Alba and Natasha, two sexy and recently acquainted women, to have a physical adventure that touches their very souls.",2010-05-07,9.3509,6.424,779 +6306,10348,Thunderbolt,"In order to release his kidnapped sister, sports car mechanic, Chan Foh To, has to defeat a super-criminal street racer.",1995-09-08,1.9103,6.4,305 +6307,441183,Light of My Life,"Parent and child journey through the outskirts of society a decade after a pandemic has wiped out half the world's population. As a father struggles to protect his child, their bond—and the character of humanity—is tested.",2019-08-09,1.3698,6.4,548 +6308,258099,Just Before I Go,"Ted Morgan has been treading water for most of his life. After his wife leaves him, Ted realizes he has nothing left to live for. Summoning the courage for one last act, Ted decides to go home and face the people he feels are responsible for creating the shell of a person he has become. But life is tricky. The more determined Ted is to confront his demons, to get closure, and to withdraw from his family, the more Ted is yanked into the chaos of their lives. So, when Ted Morgan decides to kill himself, he finds a reason to live.",2015-04-24,1.4602,6.42,342 +6309,16187,Buzz Lightyear of Star Command: The Adventure Begins,Buzz Lightyear must battle Emperor Zurg with the help of three hopefuls who insist on being his partners.,2000-08-08,1.5306,6.4,325 +6310,13249,Seraphim Falls,"The Civil War has ended, but Colonel Morsman Carver is on one final mission – to kill Gideon, no matter what it takes. Launched by a gunshot and propelled by rage, the relentless pursuit takes the two men through frigid snow-capped mountains and arid deserts, far from the comforts and codes of civilisation, into the bloodiest recesses of their own souls.",2007-01-26,2.6122,6.42,591 +6311,10677,Dirty Dancing: Havana Nights,"In pre-revolution Cuba, Katey Miller is about to defy everyone's expectations. Instead of a parent-approved suitor, Katey is drawn to the sexy waiter, Javier, who spends his nights dancing in Havana's nightclubs. As she secretly learns to dance with Javier, she learns the meanings of love, sensuality and independence.",2004-02-27,2.3822,6.42,679 +6312,10490,Drop Dead Gorgeous,"In a small Minnesota town, the annual beauty pageant is being covered by a TV crew. Former winner Gladys Leeman wants to make sure her daughter follows in her footsteps; explosions, falling lights, and trailer fires prove that. As the Leemans are the richest family in town, the police are pretty relaxed about it all. Despite everything, main rival (but sweet) Amber Atkins won't give up without a fight.",1999-07-23,2.2334,6.4,396 +6313,10246,Porky's,"In 1954 Florida, a group of high school boys head to a strip club in the Everglades in an attempt to lose their collective virginity. When the club's owner and his sheriff brother swindle them out of their money and embarrass them, the boys plan revenge.",1981-11-13,2.8973,6.42,909 +6314,9666,Ju-on: The Grudge 2,"When the cast and crew of a paranormal TV reality program decide to shoot in the house of the original Saeki hauntings, a series of strange events unfold at the location.",2003-08-15,1.9913,6.42,352 +6315,1094138,Jackpot!,"In the near future, a 'Grand Lottery' has been established - the catch: kill the winner before sundown to legally claim their multi-billion dollar jackpot. When Katie Kim mistakenly finds herself with the winning ticket, she reluctantly joins forces with amateur lottery protection agent Noel Cassidy who must get her to sundown in exchange for a piece of her prize.",2024-08-13,3.8321,6.419,704 +6316,762968,Do Revenge,A dethroned queen bee at a posh private high school strikes a secret deal with an unassuming new student to enact revenge on one another’s enemies.,2022-09-14,3.5276,6.419,919 +6317,669671,Night Teeth,"A college student moonlighting as a chauffeur picks up two mysterious women for a night of party-hopping across LA. But when he uncovers their bloodthirsty intentions—and their dangerous, shadowy underworld—he must fight to stay alive.",2021-10-20,3.3367,6.419,810 +6318,302699,Central Intelligence,"Calvin Joyner, a mild-mannered accountant whose high school glory days are long behind him, reconnects with an awkward pal from high school through Facebook. After meeting up, Calvin’s mundane life takes an unexpectedly thrilling turn when he's thrust into the world of international espionage.",2016-06-16,5.6421,6.419,6111 +6319,14517,MirrorMask,"In a fantasy world of opposing kingdoms, a 15-year old girl must find the fabled MirrorMask in order to save the kingdom and get home.",2005-01-25,1.1894,6.419,344 +6320,13333,Game of Death,A martial arts movie star must fake his death to find the people who are trying to kill him.,1978-03-23,3.3082,6.4,700 +6321,8584,Shanghai Noon,"Chon Wang, a clumsy imperial guard, trails Princess Pei Pei when she's kidnapped from the Forbidden City and transported to America. Wang follows her captors to Nevada, where he teams up with an unlikely partner, outcast outlaw Roy O'Bannon, and tries to spring the princess from her imprisonment.",2000-05-26,3.7266,6.418,2619 +6322,415842,American Assassin,"Following the murder of his fiancée, Mitch Rapp trains under the instruction of Cold War veteran Stan Hurley. The pair then is enlisted to investigate a wave of apparently random attacks on military and civilian targets.",2017-07-14,5.1432,6.418,3115 +6323,328589,The Lady in the Van,"The true story of the relationship between Alan Bennett and the singular Miss Shepherd, a woman of uncertain origins who ‘temporarily’ parked her van in Bennett’s London driveway and proceeded to live there for 15 years.",2015-10-30,2.5082,6.418,769 +6324,73454,X,A veteran call girl and a runaway prostitute witness a murder which sends them on an out-of-control roller coaster ride through the twilight zone of sex-for-sale.,2011-11-23,1.9205,6.4,306 +6325,16353,Ong Bak 2,"Tien, the son of Lord Sihadecho — a murdered nobleman — is taken under the wing of Chernang, a renowned warrior and leader of the Pha Beek Krut.",2008-12-04,3.7543,6.418,654 +6326,13417,Kronk's New Groove,"Kronk, now chef and Head Delivery Boy of Mudka's Meat Hut, is fretting over the upcoming visit of his father. Kronk's father always disapproved of young Kronk's culinary interests and wished that Kronk instead would settle down with a wife and a large house on a hill.",2005-12-05,5.5973,6.416,1297 +6327,11444,The Closet,"A man spreads the rumor of his fake homosexuality with the aid of his neighbor, to prevent his imminent firing at his work.",2001-01-17,1.5092,6.417,501 +6328,231,Syriana,"The Middle Eastern oil industry is the backdrop of this tense drama, which weaves together numerous story lines. Bennett Holiday is an American lawyer in charge of facilitating a dubious merger of oil companies, while Bryan Woodman, a Switzerland-based energy analyst, experiences both personal tragedy and opportunity during a visit with Arabian royalty. Meanwhile, veteran CIA agent Bob Barnes uncovers an assassination plot with unsettling origins.",2005-11-23,2.359,6.4,1410 +6329,290859,Terminator: Dark Fate,"Decades after Sarah Connor prevented Judgment Day, a lethal new Terminator is sent to eliminate the future leader of the resistance. In a fight to save mankind, battle-hardened Sarah Connor teams up with an unexpected ally and an enhanced super soldier to stop the deadliest Terminator yet.",2019-10-23,7.1197,6.417,5352 +6330,77561,EVA,"In 2041, humans live side-by-side with robots and androids. A well-known cybernetic engineer, Alex Garel, returns to his hometown to create a new model of robot child.",2011-10-06,1.3069,6.417,399 +6331,4380,Shall We Dance?,"A bored estate lawyer spots a beautiful woman in the window of a ballroom dance studio. He secretly starts taking dancing lessons to be near her, and then over time discovers how much he loves dancing. His wife, meanwhile, has hired a private detective to find out why he has started coming home late smelling of perfume.",2004-10-15,2.5404,6.417,1233 +6332,3594,The Number 23,"Animal control officer Walter Sparrow becomes obsessed with a novel that he believes was written about him, as more and more similarities between himself and his literary alter ego seem to arise.",2007-02-23,2.6496,6.417,3324 +6333,709,Licence to Kill,"After capturing the notorious drug lord Franz Sanchez, Bond's close friend and former CIA agent Felix Leiter is left for dead and his wife is murdered. Bond goes rogue and seeks vengeance on those responsible, as he infiltrates Sanchez's organization from the inside.",1989-06-13,4.8888,6.417,2014 +6334,435707,Skins,"In a strange world where people share numerous deformities, the same problem we all face challenges each of them: to find someone who accepts you as you are. Sometimes, that means finding yourself first.",2017-06-09,1.3512,6.416,546 +6335,10957,The Black Cauldron,"Taran is an assistant pigkeeper with boyish dreams of becoming a great warrior. However, he has to put the daydreaming aside when his charge, an oracular pig named Hen Wen, is kidnapped by an evil lord known as the Horned King. The villain hopes Hen will show him the way to The Black Cauldron, which has the power to create a giant army of unstoppable soldiers.",1985-07-24,3.7532,6.4,1374 +6336,10951,Gorgeous,"When Ah Bu, a girl from a small fishing town in Taiwan, finds a glass bottle with a romantic message, she travels to Hong Kong to find her prince charming. As it turns out, her prince charming, Albert, happens to be gay. But all is not lost when Ah Bu meets the dashing Chi Wu. Meanwhile, Ah Bu's boyfriend from Taiwan comes looking for her, as the action and romance follow Ah Bu back to Taiwan.",1999-02-12,2.769,6.416,386 +6337,5125,Rendition,"When an Egyptian terrorism suspect ""disappears"" on a flight from Africa to Washington DC, his American wife and a CIA analyst find themselves caught up in a struggle to secure his release from a secret detention facility somewhere outside the US.",2007-09-07,1.5365,6.4,690 +6338,4488,Friday the 13th,Camp counselors are stalked and murdered by an unknown assailant while trying to reopen a summer camp that was the site of a child's drowning.,1980-05-09,5.2287,6.4,3111 +6339,482,Shaft,Cool Black private eye John Shaft is hired by a crime lord to find and retrieve his kidnapped daughter.,1971-06-25,1.4888,6.4,387 +6340,1234821,Jurassic World Rebirth,"Five years after the events of Jurassic World Dominion, covert operations expert Zora Bennett is contracted to lead a skilled team on a top-secret mission to secure genetic material from the world's three most massive dinosaurs. When Zora's operation intersects with a civilian family whose boating expedition was capsized, they all find themselves stranded on an island where they come face-to-face with a sinister, shocking discovery that's been hidden from the world for decades.",2025-07-01,1274.2264,6.41,1423 +6341,339527,Solace,"A psychic doctor, John Clancy, works with an FBI special agent in search of a serial killer.",2015-09-03,2.8927,6.415,2284 +6342,286554,Two Night Stand,"After an extremely regrettable one night stand, two strangers wake up to find themselves snowed in after sleeping through a blizzard that put all of Manhattan on ice. They're now trapped together in a tiny apartment, forced to get to know each other way more than any one night stand should.",2014-09-26,1.5866,6.415,1869 +6343,137093,Last Vegas,"Aging pals Billy, Paddy, Archie, and Sam have been best friends since childhood. When Billy finally proposes to his much-younger girlfriend, all four friends go to Las Vegas to celebrate the end of Billy's longtime bachelorhood and relive their glory days. However, the four quickly realize that the intervening decades have changed Sin City and tested their friendship in ways they had not imagined.",2013-10-31,3.5809,6.415,2179 +6344,214,Saw III,"Jigsaw has disappeared. Along with his new apprentice Amanda, the puppet-master behind the cruel, intricate games that have terrified a community and baffled police has once again eluded capture and vanished. While city detective scrambles to locate him, Doctor Lynn Denlon and Jeff Reinhart are unaware that they are about to become the latest pawns on his vicious chessboard.",2006-10-26,4.8834,6.415,4697 +6345,238615,Self/less,An extremely wealthy elderly man dying from cancer undergoes a radical medical procedure that transfers his consciousness to the body of a healthy young man but everything may not be as good as it seems when he starts to uncover the mystery of the body's origins and the secret organization that will kill to keep its secrets.,2015-07-10,4.4379,6.414,3165 +6346,211672,Minions,"Minions Stuart, Kevin and Bob are recruited by Scarlet Overkill, a super-villain who, alongside her inventor husband Herb, hatches a plot to take over the world.",2015-06-17,4.2698,6.414,10782 +6347,27576,Salt,"As a CIA officer, Evelyn Salt swore an oath to duty, honor and country. Her loyalty will be tested when a Russian defector accuses her of being a Russian sleeper spy. She goes on the run, using all her skills and years of experience as a covert operative to elude capture, protect her husband, and stay one step ahead of her colleagues at the CIA. Her efforts to prove her innocence only serve to cast doubt on her motives, as the hunt to uncover the truth behind her identity continues and the question remains: ""Who is Salt?""",2010-07-21,5.6065,6.414,5657 +6348,10057,The Three Musketeers,"D'Artagnan travels to Paris hoping to become a musketeer, one of the French king's elite bodyguards, only to discover that the corps has been disbanded by conniving Cardinal Richelieu, who secretly hopes to usurp the throne. Fortunately, Athos, Porthos and Aramis have refused to lay down their weapons and continue to protect their king. D'Artagnan joins with the rogues to expose Richelieu's plot against the crown.",1993-11-11,3.24,6.4,994 +6349,9064,Hellbound: Hellraiser II,"Confined to a mental hospital, young Kirsty Cotton insists her supposedly dead father is stuck in hell, controlled by sadomasochistic demons after being betrayed by his evil, occult-obsessed wife, Julia. Few believe Kirsty, except the thrill-seeking Dr. Channard, who is intrigued by the young woman's lurid stories. So when Kirsty and fellow patient Tiffany head to hell for a rescue, Channard and Julia are close behind.",1988-12-23,3.4374,6.413,1166 +6350,8007,Behind Enemy Lines,"While flying a routine reconnaissance mission over Bosnia, fighter pilot Lt. Chris Burnett photographs something he wasn't supposed to see and gets shot down behind enemy lines, where he must outrun an army led by a ruthless Serbian general. With time running out and a deadly tracker on his trail, Burnett's commanding officer, Admiral Reigart, decides to risk his career and launch a renegade rescue mission to save his life.",2001-11-30,2.9867,6.4,1556 +6351,2275,The General's Daughter,"When the body of Army Capt. Elisabeth Campbell is found on a Georgia military base, two investigators, Warrant Officers Paul Brenner and Sara Sunhill, are ordered to solve her murder. What they uncover is anything but clear-cut. Unseemly details emerge about Campbell's life, leading to allegations of a possible military coverup of her death and the involvement of her father, Lt. Gen. Joseph Campbell.",1999-06-18,2.6079,6.414,964 +6352,75,Mars Attacks!,"A fleet of Martian spacecraft surrounds the world's major cities and all of humanity waits to see if the extraterrestrial visitors have, as they claim, ""come in peace."" U.S. President James Dale receives assurance from science professor Donald Kessler that the Martians' mission is a friendly one. But when a peaceful exchange ends in the total annihilation of the U.S. Congress, military men call for a full-scale nuclear retaliation.",1996-12-13,4.333,6.414,5614 +6353,798362,The Marsh King's Daughter,"Helena, a woman living a seemingly ordinary life, hides a dark secret—her father is the infamous 'Marsh King', the man who kept her and her mother captive in the wilderness for years. After a lifetime of trying to escape her past, Helena is forced to face her demons when her father unexpectedly escapes from prison.",2023-09-28,2.0631,6.413,341 +6354,638974,Murder Mystery 2,"After starting their own detective agency, Nick and Audrey Spitz land a career-making case when their billionaire pal is kidnapped from his wedding.",2023-03-28,3.9294,6.413,1815 +6355,626393,The Sleepover,"Two siblings who discover their seemingly normal mom is a former thief in witness protection. Mom is forced to pull one last job, and the kids team up to rescue her over the course of an action-packed night.",2020-08-21,2.9329,6.413,415 +6356,999644,You Are So Not Invited to My Bat Mitzvah,Stacy and Lydia are BFFs who've always dreamed about having epic bat mitzvahs. But things start to go comically awry when a popular boy and middle school drama threatens their friendship and their rite of passage.,2023-08-18,4.0889,6.4,466 +6357,544431,The Clovehitch Killer,A picture-perfect family is torn apart after Tyler finds a cache of disturbing images in his father's possession. He begins to suspect that the man he trusts most in the world may be responsible for the murder of 13 women ten years prior.,2018-11-16,1.5834,6.412,755 +6358,477018,The Translators,"Nine translators, hired to translate the eagerly awaited final book of a bestselling trilogy, are confined in a luxurious bunker.",2019-12-20,1.3718,6.412,519 +6359,16248,D.A.R.Y.L.,"Daryl is a normal 10-year-old boy in many ways. However, unbeknown to his foster parents and friends, Daryl is actually a government-created robot with superhuman reflexes and mental abilities. Even his name has a hidden meaning -- it's actually an acronym for Data Analyzing Robot Youth Life-form. When the organization that created him deems the ""super soldier"" experiment a failure and schedules Daryl to be disassembled, it is up to a few rogue scientists to help him escape.",1985-06-14,1.8622,6.412,341 +6360,16248,D.A.R.Y.L.,"Daryl is a normal 10-year-old boy in many ways. However, unbeknown to his foster parents and friends, Daryl is actually a government-created robot with superhuman reflexes and mental abilities. Even his name has a hidden meaning -- it's actually an acronym for Data Analyzing Robot Youth Life-form. When the organization that created him deems the ""super soldier"" experiment a failure and schedules Daryl to be disassembled, it is up to a few rogue scientists to help him escape.",1985-06-14,1.8622,6.412,341 +6361,1989,My Blueberry Nights,"Elizabeth has just been through a particularly nasty breakup, and now she's ready to leave her friends and memories behind as she chases her dreams across the country. In order to support herself on her journey, Elizabeth picks up a series of waitress jobs along the way. As Elizabeth crosses paths with a series of lost souls whose yearnings are even greater than her own, their emotional turmoil ultimately helps her gain a greater understanding of her own problems...",2007-11-28,2.5873,6.412,800 +6362,669664,"My Donkey, My Lover & I","Antoinette, a school teacher, is looking forward to her long planned summer holidays with her secret lover Vladimir, the father of one of her pupils. When learning that Vladimir cannot come because his wife organized a surprise trekking holiday in the Cévennes National Park with their daughter and a donkey to carry their load, Antoinette decides to follow their track, by herself, with Patrick, a protective donkey.",2020-09-16,0.9904,6.411,371 +6363,95610,Bridget Jones's Baby,"After breaking up with Mark Darcy five years earlier, Bridget Jones' happily-ever-after hasn't quite gone according to plan. Fortysomething and single again, she decides to focus on her job as top news producer and surround herself with old friends and new. For once, Bridget has everything completely under control. Then her love life takes a turn - while a weekend away at a music festival, she meets a dashing American named Jack, who is everything Mark is not, and spends a night with him. A week later, she runs into newly-separated Mark, and has a one-night dalliance. In an unlikely twist, she finds herself pregnant, but with one hitch - she's not sure of the identity of her baby's father - Mark or Jack.",2016-09-14,3.7313,6.411,3001 +6364,21057,Ocean Waves,"At Kichijōji Station, Tokyo, Taku Morisaki glimpses a familiar woman on the platform opposite boarding a train. Later, her photo falls from a shelf as he exits his apartment before flying to Kōchi Prefecture. Picking it up, he looks at it briefly before leaving. As the aeroplane takes off, he narrates the events that brought her into his life...",1993-10-09,3.6167,6.411,919 +6365,9788,Accepted,"A high school slacker who's rejected by every school he applies to opts to create his own institution of higher learning, the South Harmon Institute of Technology, on a rundown piece of property near his hometown.",2006-08-18,4.7121,6.411,1619 +6366,9715,Hope Floats,"Birdee Pruitt has been humiliated on live television by her best friend, Connie, who's been sleeping with Birdee's husband, Bill. Birdee tries starting over with her daughter, Bernice, by returning to her small Texas hometown, but she's faced with petty old acquaintances who are thrilled to see Birdee unhappy -- except for her friend Justin. As he helps Birdee get back on her feet, love begins to blossom.",1998-05-29,2.039,6.411,482 +6367,6957,The 40 Year Old Virgin,"Andy Stitzer has a pleasant life with a nice apartment and a job stamping invoices at an electronics store. But at age 40, there's one thing Andy hasn't done, and it's really bothering his sex-obsessed male co-workers: Andy is still a virgin. Determined to help Andy get laid, the guys make it their mission to de-virginize him. But it all seems hopeless until Andy meets small business owner Trish, a single mom.",2005-08-11,8.0748,6.411,6907 +6368,1234821,Jurassic World Rebirth,"Five years after the events of Jurassic World Dominion, covert operations expert Zora Bennett is contracted to lead a skilled team on a top-secret mission to secure genetic material from the world's three most massive dinosaurs. When Zora's operation intersects with a civilian family whose boating expedition was capsized, they all find themselves stranded on an island where they come face-to-face with a sinister, shocking discovery that's been hidden from the world for decades.",2025-07-01,1274.2264,6.412,1425 +6369,653598,Spree,"Desperate for an online following, a rideshare driver has figured out a deadly plan to go viral and he will stop at nothing to get his five minutes of fame.",2020-08-14,2.1655,6.41,472 +6370,58232,Chalet Girl,"While working a job at an exclusive ski resort to support her Dad, Kim learns to snowboard and is so good at it that she enters a competition with a huge cash prize. She has to dig deep to overcome her fears, but her life gets more complicated through her spoken-for boss, Jonny.",2011-02-02,1.5609,6.4,645 +6371,36668,X-Men: The Last Stand,"When a cure is found to treat mutations, lines are drawn amongst the X-Men—led by Professor Charles Xavier—and the Brotherhood, a band of powerful mutants organised under Xavier's former ally, Magneto.",2006-05-24,0.4037,6.41,9948 +6372,15653,An Extremely Goofy Movie,"It's all extreme sports and a life of freedom as Max sets off for college -- but Goofy misses Max so much he loses his job and goes to finish college alongside Max and his friends. But as Goofy tries to get closer to Max, both must go to the extreme to learn how to live their own lives together.",2000-02-29,2.5691,6.41,663 +6373,729720,The Last Mercenary,A legendary secret service agent comes out of hiding and returns to France to help the son he's never met get out of trouble.,2021-07-30,1.8057,6.409,634 +6374,22620,Scooby-Doo! The Mystery Begins,"Unjustly accused of staging a spooky practical joke complete with ghosts, Daphne, Velma, Fred and Shaggy are suspended from Coolsville High. To clear their names, they team up to solve the supernatural mystery…and head straight into nonstop laughs and adventure.",2009-09-13,3.4804,6.4,703 +6375,11584,Roxanne,"In this modern take on Edmond Rostand's classic play ""Cyrano de Bergerac,"" C. D. Bales is the witty, intelligent, and brave fire chief of a small Pacific Northwest town who, due to the size of his enormous nose, declines to pursue the girl of his dreams, lovely Roxanne Kowalski. Instead, when his shy underling Chris McConnell becomes smitten with Roxanne, C.D. feeds the handsome young man the words of love to win her heart.",1987-06-19,1.517,6.409,643 +6376,10741,Bobby,"In 1968 the lives of a retired doorman, hotel manager, lounge singer, busboy, beautician and others intersect in the wake of Robert F. Kennedy's assassination at the Ambassador Hotel in Los Angeles.",2006-09-05,1.3387,6.4,406 +6377,10247,He Was a Quiet Man,An unhinged office worker who planned to go on a shooting spree at his workplace struggles with his newfound status as a hero after he ends up stopping a shooting spree instead.,2007-11-23,1.4776,6.409,336 +6378,575774,His House,"After making a harrowing escape from war-torn South Sudan, a young refugee couple struggle to adjust to their new life in a small English town that has an unspeakable evil lurking beneath the surface.",2020-01-27,2.7004,6.408,1140 +6379,1988,A Mighty Heart,"Based on Mariane Pearl's account of the terrifying and unforgettable story of her husband, Wall Street Journal reporter Danny Pearl's life and death.",2007-06-22,1.4108,6.408,343 +6380,13374,Ice Princess,"With the help of her coach, her mom, and the boy who drives the Zamboni, nothing can stop Casey Carlyle from realizing her dream to be a champion figure skater.",2005-03-17,2.0595,6.407,911 +6381,10295,Miami Supercops,"In 1978, $20 million was stolen from a Detroit bank. One of the robbers was caught, one was found dead, and the third disappeared. The money was never found. Seven years later, the robber who was caught was released from jail. He immediately went to Miami, only to be found dead the next day. Now FBI agents Doug Bennet and Steve Forest have been called in to investigate the case while posing as Miami police officers. Somewhere in Miami the third robber is hiding with his $20 million, and he has a seven-year head start on the authorities.",1985-12-11,1.915,6.4,435 +6382,5551,Space Cowboys,"Frank Corvin, ‘Hawk’ Hawkins, Jerry O'Neill and ‘Tank’ Sullivan were hotdog members of Project Daedalus, the Air Force's test program for space travel, but their hopes were dashed in 1958 with the formation of NASA and the use of trained chimps. They blackmail their way into orbit when Russia's mysterious ‘Ikon’ communications satellite's orbit begins to degrade and threatens to crash to Earth.",2000-08-04,2.3678,6.407,1428 +6383,117263,Olympus Has Fallen,"When the White House (Secret Service Code: ""Olympus"") is captured by a terrorist mastermind and the President is kidnapped, disgraced former Presidential guard Mike Banning finds himself trapped within the building. As the national security team scrambles to respond, they are forced to rely on Banning's inside knowledge to help retake the White House, save the President and avert an even bigger disaster.",2013-03-20,5.9976,6.406,6762 +6384,34769,Defendor,"A crooked cop, a mob boss and the young girl they abuse are the denizens of a city's criminal underworld. It's a world that ordinary Arthur Poppington doesn't understand and doesn't belong in, but is committed to fighting when he changes into a vigilante super-hero of his own making, Defendor. With no power other than courage Defendor takes to the streets to protect the city's innocents.",2009-09-12,1.4028,6.406,570 +6385,13250,Butterfly on a Wheel,A sociopathic kidnapper methodically pushes a desperate pair of parents to their absolute breaking point.,2007-07-27,1.8384,6.406,537 +6386,11529,Sweet Home Alabama,"New York fashion designer, Melanie Carmichael suddenly finds herself engaged to the city's most eligible bachelor. But her past holds many secrets—including Jake, the redneck husband she married in high school, who refuses to divorce her. Bound and determined to end their contentious relationship once and for all, Melanie sneaks back home to Alabama to confront her past.",2002-09-26,3.612,6.406,1585 +6387,621587,Next Goal Wins,Dutch coach Thomas Rongen attempts the nearly impossible task of turning the American Samoa soccer team from perennial losers into winners.,2023-11-16,2.0651,6.405,521 +6388,521029,Annabelle Comes Home,"Determined to keep Annabelle from wreaking more havoc, demonologists Ed and Lorraine Warren bring the possessed doll to the locked artifacts room in their home, placing her “safely” behind sacred glass and enlisting a priest’s holy blessing. But an unholy night of horror awaits as Annabelle awakens the evil spirits in the room, who all set their sights on a new target—the Warrens' ten-year-old daughter, Judy, and her friends.",2019-06-26,10.9393,6.4,3635 +6389,2661,Batman,The Dynamic Duo faces four super-villains who plan to hold the world for ransom with the help of a secret invention that instantly dehydrates people.,1966-07-30,2.3344,6.4,993 +6390,1085218,Darkland: The Return,"Seven years ago, Zaid went to war against the Copenhagen underworld to avenge his dead brother. His identity as a respected doctor of cardiology and life as a family man is but a fading dream, and in prison Zaid suffers the loss of his son Noah, whom he barely knows. When a police agent approaches Zaid and offers him a deal to be released in exchange for infiltrating the Copenhagen underworld, he sees his chance to reclaim the remnants of the family life he left behind. But everything has a price, and Zaid realizes that he has now seriously endangered his son's life. After all, once you become part of the underworld, is there any way out?",2023-04-13,1.1692,6.4,560 +6391,798021,Family Switch,"When the Walker family members switch bodies with each other during a rare planetary alignment, their hilarious journey to find their way back to normal will bring them closer together than they ever thought possible.",2023-11-30,4.2869,6.404,708 +6392,464052,Wonder Woman 1984,A botched store robbery places Wonder Woman in a global battle against a powerful and mysterious ancient force that puts her powers in jeopardy.,2020-12-16,12.2835,6.4,8711 +6393,425972,Cargo,"After being infected in the wake of a violent pandemic and with only 48 hours to live, a father struggles to find a new home for his baby daughter.",2017-10-06,2.6995,6.403,1779 +6394,74387,Goon,"Doug Glatt, a slacker who discovers he has a talent for brawling, is approached by a minor league hockey coach and invited to join the team as the ""muscle."" Despite the fact that Glatt can't skate, his best friend, Pat, convinces him to give it a shot, and Glatt becomes a hero to the team and their fans, until the league's reigning goon becomes threatened by Glatt's success and decides to even the score.",2012-01-06,2.1203,6.403,960 +6395,13373,Millions,"Two boys, still grieving the death of their mother, find themselves the unwitting benefactors of a bag of bank robbery loot in the week before the United Kingdom switches its official currency to the Euro. What's a kid to do?",2004-04-29,1.1213,6.403,393 +6396,9425,Soldier,"Sergeant Todd is a veteran soldier for an elite group of the armed forces. After being defeated by a new breed of genetically engineered soldiers, he is dumped on a waste planet and left for dead. He soon interacts with a group of crash survivors who lead out a peaceful existence. The peace is broken as the new soldiers land on the planet to eliminate the colony, which Sergeant Todd must defend.",1998-10-23,2.4742,6.403,879 +6397,670355,Return,"Owen, a young man is dissatisfied with his life. He heads into the forest to escape and learns a lot during his time there.",2020-01-28,0.3108,6.402,644 +6398,616037,Thor: Love and Thunder,"After his retirement is interrupted by Gorr the God Butcher, a galactic killer who seeks the extinction of the gods, Thor Odinson enlists the help of King Valkyrie, Korg, and ex-girlfriend Jane Foster, who now wields Mjolnir as the Mighty Thor. Together they embark upon a harrowing cosmic adventure to uncover the mystery of the God Butcher’s vengeance and stop him before it’s too late.",2022-07-06,10.6623,6.402,8054 +6399,62046,Flypaper,A man caught in the middle of two simultaneous robberies at a bank desperately tries to protect the teller with whom he's secretly in love.,2011-08-19,2.1183,6.4,764 +6400,61891,Anonymous,"Set against the backdrop of the succession of Queen Elizabeth I, and the Essex Rebellion against her, the story advances the theory that it was in fact Edward De Vere, Earl of Oxford who penned Shakespeare's plays.",2011-10-21,2.0294,6.402,739 +6401,14055,Starter for 10,"In 1985, against the backdrop of Thatcherism, Brian Jackson enrolls in the University of Bristol, a scholarship boy from seaside Essex with a love of knowledge for its own sake and a childhood spent watching University Challenge, a college quiz show. At Bristol he tries out for the Challenge team and falls under the spell of Alice, a lovely blond with an extensive sexual past.",2006-09-13,2.0746,6.402,425 +6402,532408,The Boogeyman,"Still reeling from the tragic death of their mother, a teenage girl and her younger sister find themselves plagued by a sadistic presence in their house and struggle to get their grieving father to pay attention before it’s too late.",2023-05-31,2.8098,6.399,964 +6403,59859,Kick-Ass 2,"After Kick-Ass’ insane bravery inspires a new wave of self-made masked crusaders, he joins a patrol led by the Colonel Stars and Stripes. When these amateur superheroes are hunted down by Red Mist — reborn as The Mother Fucker — only the blade-wielding Hit-Girl can prevent their annihilation.",2013-07-17,4.2678,6.401,6318 +6404,811,Silent Running,"After the entire flora goes extinct, ecologist Lowell maintains a greenhouse aboard a space station for the future with his android companions. However, he rebels after being ordered to destroy the greenhouse in favor of carrying cargo, a decision that puts him at odds with everyone but his mechanical companions.",1972-03-09,1.9354,6.401,597 +6405,681,Diamonds Are Forever,Diamonds are stolen only to be sold again in the international market. James Bond infiltrates a smuggling mission to find out who's guilty. The mission takes him to Las Vegas where Bond meets his archenemy Blofeld.,1971-12-14,4.3672,6.401,2199 +6406,356298,Don't Think Twice,"An improv group deals with several crises, including the loss of their lease and one member hitting the big time.",2016-07-22,1.2964,6.4,396 +6407,343674,Gerald's Game,"When her husband's sex game goes wrong, Jessie (who is handcuffed to a bed in a remote lake house) faces warped visions, dark secrets and a dire choice.",2017-09-29,3.6821,6.4,3760 +6408,84184,Celeste & Jesse Forever,"Celeste and Jesse met in high school and got married young. They laugh at the same jokes and finish each other’s sentences. They are forever linked in their friends’ minds as the perfect couple – she, a high-powered businesswoman and budding novelist; he, a free spirit who keeps things from getting boring. Their only problem is that they have decided to get divorced. Can their perfect relationship withstand this minor setback?",2012-08-03,1.6146,6.4,480 +6409,74018,A Cinderella Story: Once Upon a Song,"In this modern telling of the classic tale, aspiring singer Katie Gibbs falls for the new boy at her performing arts high school. But Katie's wicked stepmother and stepsister are scheming to crush her dream before she can sing her way into his heart.",2011-09-05,3.0414,6.4,1026 +6410,38365,Grown Ups,"After their high school basketball coach passes away, five good friends and former teammates reunite for a Fourth of July holiday weekend.",2010-06-24,18.7814,6.4,6369 +6411,11068,Singles,"A group of young adults in their twenties, who share an apartment in the city of Seattle, ponder on love and face all the challenges of adulthood.",1992-09-18,1.885,6.4,402 +6412,670203,The Talent of the Hornet,"Dj Steph is a young radio deejay on the rise, who gained a lot of popularity on social media and every evening hosts a radio show with a large following, during which he receives calls from his fans. One evening, a call chills him to the bone: a cold-blooded stranger announces on live radio that he plans to take his own life, making himself explode in the middle of the city.",2020-11-18,0.4623,6.4,434 +6413,11498,Dead Again,"In 1949, composer Roman Strauss is executed for the murder of his wife. In 1990s Los Angeles, a detective comes across a mute amnesiac woman who is somehow linked to the Strauss murder.",1991-08-23,1.3063,6.399,388 +6414,10431,War,"FBI agent Jack Crawford is out for revenge when his partner is killed and all clues point to the mysterious assassin Rogue. But when Rogue turns up years later to take care of some unfinished business, he triggers a violent clash of rival gangs. Will the truth come out before it's too late? And when the dust settles, who will remain standing?",2007-08-24,4.9579,6.399,1933 +6415,2075,Prizzi's Honor,"Charley Partanna is a hitman who works for the Prizzis, one of the richest crime families in the US. When he sees Irene Walker, it's love at first sight. But he soon finds that she, too, is a killer for hire. Charley can overlook his suspicions, but he can't turn off his heart. And the couple must remember that even if they love each other, the Prizzis love only money.",1985-06-14,1.6593,6.4,392 +6416,985617,Reality,"Augusta, Georgia, United States, June 3, 2017. After running some errands, Reality Winner returns home, where she is approached by two men.",2023-06-02,1.7107,6.398,498 +6417,723419,Mr. Harrigan's Phone,"Craig, a young boy living in a small town befriends an older, reclusive billionaire, Mr. Harrigan. The two form a bond over books and an iPhone, but when the man passes away the boy discovers that not everything dead is gone.",2022-10-05,2.1589,6.398,883 +6418,458897,Charlie's Angels,"Elena Houghlin is a scientist, engineer and inventor of Calisto -- a sustainable energy source that will revolutionize the way people use power. It will be ready as soon as she works out the last issue, if not it could be turned into a dangerous weapon. But when the cutting edge technology is pushed to an investor before she can do that, Elena turns to the Townsend Agency for help. Now, it's up to the Angels -- Jane, Sabina, and the newly recruited Elena -- to retrieve Calisto before it can be transformed into a weapon of mass destruction.",2019-11-14,6.7189,6.398,3044 +6419,314095,The Lost City of Z,"A true-life drama in the 1920s, centering on British explorer Col. Percy Fawcett, who discovered evidence of a previously unknown, advanced civilization in the Amazon and disappeared whilst searching for it.",2017-03-15,2.9583,6.398,2940 +6420,294795,The 9th Life of Louis Drax,A psychologist who begins working with a young boy who has suffered a near-fatal fall finds himself drawn into a mystery that tests the boundaries of fantasy and reality.,2016-09-01,1.7006,6.398,454 +6421,152795,The Congress,"An aging, out-of-work actress accepts one last job, though the consequences of her decision affect her in ways she didn't consider.",2013-07-03,1.3073,6.398,547 +6422,16614,Adventureland,"In the summer of 1987, a college graduate takes a 'nowhere' job at his local amusement park, only to find it's the perfect course to get him prepared for the real world.",2009-04-03,2.4561,6.398,2234 +6423,13655,Camp Rock,"When Mitchie gets a chance to attend Camp Rock, her life takes an unpredictable twist, and she learns just how important it is to be true to yourself.",2008-06-20,2.9774,6.398,2116 +6424,10898,The Little Mermaid II: Return to the Sea,"Set several years after the first film, Ariel and Prince Eric are happily married with a daughter, Melody. In order to protect Melody from the Sea Witch, Morgana, they have not told her about her mermaid heritage. Melody is curious and ventures into the sea, where she meets new friends. But will she become a pawn in Morgana's quest to take control of the ocean from King Triton?",2000-01-23,0.7986,6.4,1740 +6425,6687,TransSiberian,A TransSiberian train journey from China to Moscow becomes a thrilling chase of deception and murder when an American couple encounters a mysterious pair of fellow travelers.,2008-01-18,1.7207,6.398,752 +6426,644090,"Love, Guaranteed",A lawyer takes on a new client that wants to sue a dating website because it guarantees love.,2020-09-02,1.7188,6.397,646 +6427,411741,Ingrid Goes West,"Ingrid becomes obsessed with a social network star named Taylor Sloane who seemingly has a perfect life. But when Ingrid decides to drop everything and move west to be Taylor's friend, her behaviour turns unsettling and dangerous.",2017-08-11,2.0083,6.396,1004 +6428,20662,Robin Hood,"When soldier Robin happens upon the dying Robert of Loxley, he promises to return the man's sword to his family in Nottingham. There, he assumes Robert's identity; romances his widow, Marion; and draws the ire of the town's sheriff and King John's henchman, Godfrey.",2010-05-12,6.0023,6.397,4776 +6429,10361,Ginger Snaps 2: Unleashed,Brigitte has escaped the confines of Bailey Downs but she's not alone. Another werewolf is tailing her closely and her sister's specter haunts her. An overdose of Monkshood - the poison that is keeping her transformation at bay - leads to her being incarcerated in a rehabilitation clinic for drug addicts where her only friend is an eccentric young girl by the name of Ghost.,2004-01-30,1.8058,6.397,331 +6430,10074,Hot Rod,"For Rod Kimble, performing stunts is a way of life, even though he is rather accident-prone. Poor Rod cannot even get any respect from his stepfather, Frank, who beats him up in weekly sparring matches. When Frank falls ill, Rod devises his most outrageous stunt yet to raise money for Frank's operation -- and then Rod will kick Frank's butt.",2007-08-03,2.9308,6.4,1023 +6431,7461,Vantage Point,"During an historic counter-terrorism summit in Spain, the President of the United States is struck down by an assassin's bullet. Eight strangers have a perfect view of the kill, but what did they really see? As the minutes leading up to the fatal shot are replayed through the eyes of each eyewitness, the reality of the assassination takes shape.",2008-02-01,3.2862,6.397,2064 +6432,454992,The Spy Who Dumped Me,A couple of thirtysomething best friends unwittingly become entangled in an international conspiracy when one’s ex-boyfriend shows up at their apartment with a team of deadly assassins on his trail.,2018-08-02,3.1228,6.396,2281 +6433,300168,Dragon Blade,"Huo An, the commander of the Protection Squad of the Western Regions, was framed by evil forces and becomes enslaved. On the other hand, a Roman general escapes to China after rescuing the Prince. The heroic duo meet in the Western Desert and a thrilling story unfolds.",2015-02-19,3.4464,6.396,595 +6434,293646,The 33,"Based on the true story of the collapse of a mine in San Jose, Chile—that left 33 miners isolated underground for 69 days.",2015-08-06,2.9711,6.396,950 +6435,45156,A Little Bit of Heaven,"A guarded woman finds out she's dying of cancer but, when she meets her match, the threat of falling in love is scarier than death.",2011-02-03,1.2042,6.4,565 +6436,41602,Charlie Countryman,"While traveling abroad, a guy falls for a Romanian beauty whose unreachable heart has its origins in her violent, charismatic ex.",2013-02-09,1.6803,6.396,623 +6437,15139,The Pagemaster,"Rich knows a lot about accidents. So much so, he is scared to do anything that might endanger him, like riding his bike, or climbing into his treehouse. While in an old library, he is mystically transported into the unknown world of books, and he has to try and get home again.",1994-11-23,3.0868,6.393,754 +6438,13523,Sex Drive,A high school senior drives cross-country with his best friends to hook up with a babe he met online.,2008-10-16,3.0666,6.396,1404 +6439,11460,Red Eye,"An overnight flight to Miami quickly becomes a battle for survival when Lisa realizes her seatmate plans to use her as part of a chilling assassination plot against the Deputy Secretary of Homeland Security. If she refuses to cooperate, her own father will be killed. As the miles tick by, she's in a race against time to find a way to warn the potential victims before it's too late.",2005-08-10,5.0472,6.396,2384 +6440,571384,Come Play,"A lonely young boy feels different from everyone else. Desperate for a friend, he seeks solace and refuge in his ever-present cell phone and tablet. When a mysterious creature uses the boy’s devices against him to break into our world, his parents must fight to save their son from the monster beyond the screen.",2020-10-28,1.7867,6.395,701 +6441,537739,Can You Keep a Secret?,"Emma Corrigan, a girl with a few secrets, thinks she’s about to die on a turbulent plane ride. She spills them all to the handsome stranger sitting next to her. At least, she thought he was a stranger. But then, her company’s young and elusive CEO, arrives at the office. It’s him. And he knows every single humiliating detail about her.",2019-09-13,2.0804,6.4,930 +6442,525041,A Christmas Prince: The Royal Wedding,"A year after Amber helped Richard secure the crown. The two are set to tie the knot in a royal Christmas wedding — but their plans are jeopardized when Amber finds herself second-guessing whether or not she's cut out to be queen, and Richard is faced with a political crisis that threatens to tarnish not only the holiday season but the future of the kingdom.",2018-11-30,1.6432,6.395,938 +6443,457232,Lamborghini: The Man Behind the Legend,"Follow the launch of Lamborghini’s career as a manufacturer of tractors, a creator of military vehicles during World War II, and the designer of Lamborghini cars, which he launched in 1963 as the high-end sports car company Automobili Lamborghini.",2022-11-17,3.5117,6.395,656 +6444,8491,Weekend at Bernie's,"Two young insurance corporation employees try to pretend that their murdered employer is alive by puppeteering his dead body, leading a hitman to attempt to track him down to finish him off.",1989-07-05,2.0076,6.4,1067 +6445,1086747,The Watchers,"A young artist gets stranded in an extensive, immaculate forest in western Ireland, where, after finding shelter, she becomes trapped alongside three strangers, stalked by mysterious creatures each night.",2024-06-06,5.7652,6.4,1346 +6446,4478,Indecent Proposal,John Gage offers a down-on-his-luck yuppie husband $1 million for the opportunity to spend the night with the man's wife.,1993-04-07,6.5706,6.394,1495 +6447,4241,Visitor Q,"In a dysfunctional family where the mother is a heroin addict and prostitute, beaten by her son, and the father is an ex-TV reporter, sleeping with his daughter and filming his son being beaten up, ‘Q’, a complete stranger enters the bizarre family, changing their lives for the better, finding a balance in their disturbing natures.",2001-03-17,2.3907,6.4,517 +6448,326215,Ooops! Noah Is Gone...,"It's the end of the world. A flood is coming. Luckily for Dave and his son Finny, a couple of clumsy Nestrians, an Ark has been built to save all animals. But as it turns out, Nestrians aren't allowed. Sneaking on board with the involuntary help of Hazel and her daughter Leah, two Grymps, they think they're safe. Until the curious kids fall off the Ark. Now Finny and Leah struggle to survive the flood and hungry predators and attempt to reach the top of a mountain, while Dave and Hazel must put aside their differences, turn the Ark around and save their kids. It's definitely not going to be smooth sailing.",2015-03-26,2.235,6.404,327 +6449,325348,Hardcore Henry,"Henry, a newly resurrected cyborg who must save his wife/creator from the clutches of a psychotic tyrant with telekinetic powers, AKAN, and his army of mercenaries. Fighting alongside Henry is Jimmy, who is Henry's only hope to make it through the day. Hardcore Henry takes place over the course of one day, in Moscow, Russia.",2015-09-12,2.7713,6.393,2500 +6450,293970,The Final Girls,"A young woman grieving the loss of her mother, a famous scream queen from the 1980s, finds herself pulled into the world of her mom's most famous movie. Reunited, the women must fight off the film's maniacal killer.",2015-10-09,2.5228,6.393,1319 +6451,10047,The Messenger: The Story of Joan of Arc,"In 1429, a French teenager stood before her King with a message she claimed came from God; that she would defeat the world's greatest army and liberate her country from its political and religious turmoil. As she reclaims God's diminished kingdom, this courageous young woman has various amazing victories until her violent and untimely death.",1999-10-27,3.4342,6.4,1507 +6452,189,Sin City: A Dame to Kill For,Some of Sin City's most hard-boiled citizens cross paths with a few of its more reviled inhabitants.,2014-08-20,6.6783,6.393,3961 +6453,1045781,Ret,,2015-07-10,0.1727,6.392,325 +6454,694254,Baggio: The Divine Ponytail,"A chronicle biopic of the 22-year career of soccer star Roberto Baggio, including depictions of his difficult debut as a player, his deep rifts with some of his coaches, his triumph over injuries and personal discovery of Buddism.",2021-05-26,0.9667,6.392,420 +6455,523172,Late Night,"A legendary late-night talk show host's world is turned upside down when she hires her only female staff writer. Originally intended to smooth over diversity concerns, her decision has unexpectedly hilarious consequences as the two women separated by culture and generation are united by their love of a biting punchline.",2019-01-25,2.0037,6.392,829 +6456,405775,The Wall,An American sniper and his spotter engage in a deadly cat-and-mouse game with an Iraqi sniper.,2017-05-12,2.8954,6.4,989 +6457,45202,The Housemaid,Eun-yi is hired as a maid in a mansion owned by a wealthy businessman. He quickly starts seducing his employee who seemingly has little choice but to comply with his sexual advances. Soon the women of the family plot against Eun-yi who must fight an equally devious battle to protect herself.,2010-05-13,2.7931,6.4,340 +6458,9759,Cellular,A young man receives an emergency phone call on his cell phone from an older woman. She claims to have been kidnapped – and the kidnappers have targeted her husband and child next.,2004-09-06,3.3521,6.392,1978 +6459,759902,Hunter Hunter,"A fur trapper leaves his wife and daughter behind to kill a rogue wolf in the remote wilderness, but they soon become increasingly worried when their peaceful existence is disrupted.",2020-12-18,1.0363,6.391,325 +6460,411999,OtherLife,"Ren Amari is the driven inventor of a revolutionary new drug. OtherLife expands the brain's sense of time and creates virtual reality directly in the user's mind. With OtherLife, mere seconds in real life feel like hours or days of exciting adventures. As Ren and her colleagues race around the clock to launch OtherLife, the government muscles in to use the drugs as a radical solution to prison overcrowding. They will create virtual cells where criminals serve long sentences in just minutes of real time. When Ren resists, she finds herself an unwilling guinea pig trapped in a prison cell in her mind. She must escape before she descends into madness, and then regain control of OtherLife before others suffer the same fate.",2017-06-16,1.7958,6.391,442 +6461,156711,Austenland,"Obsessed with the BBC production of ""Pride and Prejudice"", a woman travels to a Jane Austen theme park in search for her perfect gentleman.",2013-08-15,1.1557,6.391,466 +6462,43549,The Experiment,20 men are chosen to participate in the roles of guards and prisoners in a psychological study that ultimately spirals out of control.,2010-07-15,3.4936,6.391,1238 +6463,10611,Barbershop,"A day in the life of a barbershop on the south side of Chicago. Calvin, who inherited the struggling business from his deceased father, views the shop as nothing but a burden and waste of his time. After selling the shop to a local loan shark, Calvin slowly begins to see his father's vision and legacy and struggles with the notion that he just sold it out.",2002-04-01,3.9972,6.391,500 +6464,8217,Alice,"Alice Tate, mother of two, with a marriage of 16 years, finds herself falling for a handsome sax player, Joe. Stricken with a backache, she consults herbalist Dr. Yang, who realizes that her problems are not related to her back, but in her mind and heart. Dr. Yang's magical herbs give Alice wondrous powers, taking her out of her well-established rut.",1990-12-25,1.5845,6.391,320 +6465,726209,Leave the World Behind,A family's getaway to a luxurious rental home takes an ominous turn when a cyberattack knocks out their devices—and two strangers appear at their door.,2023-11-22,5.8509,6.39,2868 +6466,320588,"Hello, My Name Is Doris",A self-help seminar inspires a sixty-something woman to romantically pursue her younger co-worker.,2015-11-27,1.8751,6.39,494 +6467,20481,Nightbreed,"A troubled young man is drawn to a mythical place called Midian where a variety of friendly monsters are hiding from humanity. Meanwhile, a sadistic serial killer is looking for a patsy.",1990-02-16,1.629,6.4,492 +6468,9992,Arthur and the Invisibles,"Arthur is a spirited ten-year old whose parents are away looking for work, whose eccentric grandfather has been missing for several years, and who lives with his grandmother in a country house that, in two days, will be repossessed, torn down, and turned into a block of flats unless Arthur's grandfather returns to sign some papers and pay off the family debt. Arthur discovers that the key to success lies in his own descent into the land of the Minimoys, creatures no larger than a tooth, whom his grandfather helped relocate to their garden. Somewhere among them is hidden a pile of rubies, too. Can Arthur be of stout heart and save the day? Romance beckons as well, and a villain lurks.",2006-12-13,4.8032,6.389,2933 +6469,68735,Warcraft,"The peaceful realm of Azeroth stands on the brink of war as its civilization faces a fearsome race of invaders: orc warriors fleeing their dying home to colonize another. As a portal opens to connect the two worlds, one army faces destruction and the other faces extinction. From opposing sides, two heroes are set on a collision course that will decide the fate of their family, their people, and their home.",2016-05-25,7.0217,6.388,6986 +6470,10592,Hart's War,"When Col. William McNamara is stripped of his freedom in a German POW camp, he's determined to keep on fighting even from behind enemy lines. Enlisting the help of a young lieutenant in a brilliant plot against his captors, McNamara risks everything on a mission to free his men and change the outcome of the war.",2002-02-15,2.8482,6.388,981 +6471,253450,The Assassin,"9th century China. Ten year old general’s daughter Nie Yinniang is abducted by a nun who initiates her into the martial arts, transforming her into an exceptional assassin charged with eliminating cruel and corrupt local governors. One day, having failed in a task, she is sent back by her mistress to the land of her birth, with orders to kill the man to whom she was promised – a cousin who now leads the largest military region in North China. After 13 years of exile, the young woman must confront her parents, her memories and her long-repressed feelings.",2015-08-27,2.3248,6.387,523 +6472,209403,Bad Words,"Forty-year-old misanthrope, Guy Trilby, enters the National Golden Quill Spelling Bee through a loophole in the rules.",2013-09-06,1.6179,6.4,852 +6473,57800,Ice Age: Continental Drift,"Manny, Diego, and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship, they encounter sea creatures and battle pirates as they explore a new world.",2012-06-27,9.2431,6.4,7816 +6474,27429,Shivers,"When the residents of a luxury apartment complex outside Montreal are infiltrated by parasites and transformed into violent, sex-crazed maniacs, it's up to Dr. Roger St. Luc to contain the outbreak from spreading to the city.",1975-05-16,2.1127,6.4,670 +6475,15357,District 13: Ultimatum,"Damien and Leito return to District 13 on a mission to bring peace to the troubled sector that is controlled by five different gang bosses, before the city’s secret services take drastic measures to solve the problem.",2009-02-18,3.605,6.387,1200 +6476,11215,Baby Boom,"J.C. Wiatt is a talented and ambitious New York City career woman who is married to her job and working towards partner at her firm. She has a live-in relationship with Steven, a successful investment broker who, along with J.C., agreed children aren't part of the plan. J.C.'s life takes an unexpected turn when a distant relative dies and the will appoints her the caretaker of their baby girl, Elizabeth. The baby's sudden arrival causes Steven to leave, breaking off their relationship. Juggling power lunches and powdered formula, she is soon forced off the fast track by a conniving colleague and a bigoted boss. But she won't stay down for long. She'll prove to the world that a woman can have it all and on her own terms too!",1987-10-07,1.8537,6.387,377 +6477,10210,A Midsummer Night's Dream,"The lovely Hermia is to wed Demetrius, but she truly cares for Lysander. Hermia's friend, Helena, is in love with Demetrius, while other romantic entanglements abound in the woods, with married fairy rulers Titania and Oberon toying with various lovers and each other.",1999-05-20,2.242,6.387,381 +6478,829560,The Next 365 Days,Laura and Massimo's relationship hangs in the balance as they try to overcome trust issues while a tenacious Nacho works to push them apart.,2022-08-18,15.9348,6.386,1240 +6479,716258,Black Box,"After losing his wife and his memory in a car accident, a single father undergoes an experimental treatment that causes him to question who he really is.",2020-10-06,1.8576,6.386,556 +6480,611207,The Knight Before Christmas,A medieval English knight is magically transported to present day where he ends up falling for a high school science teacher.,2019-11-21,1.7888,6.386,1133 +6481,356305,Why Him?,A dad forms a bitter rivalry with his daughter's young rich boyfriend.,2016-12-22,3.5279,6.386,4253 +6482,66195,The Perfect Host,"Warwick Wilson is the consummate host. He carefully prepares for a dinner party, the table impeccably set and the duck perfectly timed for 8:30 p.m. John Taylor is a career criminal. He’s just robbed a bank and needs to get off the streets. He finds himself on Warwick’s doorstep posing as a friend of a friend, new to Los Angeles, who’s been mugged and lost his luggage.",2010-07-01,0.9391,6.386,437 +6483,11212,Baby's Day Out,"Baby Bink couldn't ask for more: he has adoring (if somewhat sickly-sweet) parents, lives in a huge mansion, and he's just about to appear in the social pages of the paper. Unfortunately, not everyone in the world is as nice as Baby Bink's parents—especially the three enterprising kidnappers who pretend to be photographers from the newspaper. Successfully kidnapping Baby Bink, they have a harder time keeping hold of the rascal, who not only keeps one step ahead of them, but seems to be more than a little bit smarter than the three bumbling criminals.",1994-07-01,4.4874,6.386,1365 +6484,10017,The Wraith,"Packard Walsh and his motorized gang control and terrorize an Arizona desert town where they force drivers to drag-race so they can 'win' their vehicles. After Walsh beats the decent teenager Jamie Hankins to death after finding him with his girlfriend, a mysterious power creates Jake Kesey, an extremely cool motor-biker who has a car which is invincible. Jake befriends Jamie's girlfriend Keri Johnson, takes Jamie's sweet brother Bill under his wing and manages what Sheriff Loomis couldn't; eliminate Packard's criminal gang the hard way...",1986-10-01,2.0579,6.386,477 +6485,507241,The Killer's Game,"When top hitman Joe Flood is diagnosed with a terminal illness, he decides to take matters into his own hands – by taking a hit out on himself. But when the very hitmen he hired also target his ex-girlfriend, he must fend off an army of assassin colleagues and win back the love of his life before it's too late.",2024-09-12,7.4407,6.389,449 +6486,449574,Godzilla: Planet of the Monsters,"A desperate group of refugees attempts to recolonize Earth 20,000 years after Godzilla took over. But one young man wants revenge above all else.",2017-11-17,1.7471,6.4,523 +6487,429189,Wonder Wheel,"The story of four characters whose lives intertwine amid the hustle and bustle of the Coney Island amusement park in the 1950s: Ginny, an emotionally volatile former actress now working as a waitress in a clam house; Humpty, Ginny’s rough-hewn carousel operator husband; Mickey, a handsome young lifeguard who dreams of becoming a playwright; and Carolina, Humpty’s long-estranged daughter, who is now hiding out from gangsters at her father’s apartment.",2017-12-01,5.0347,6.385,1326 +6488,250574,Creep,"Looking for work, Aaron comes across a cryptic online ad: “$1,000 for the day. Filming service. Discretion is appreciated.” Low on cash and full of naiveté, he decides to go for it. He drives to a cabin in a remote mountain town where he meets Josef, his cinematic subject for the day. Josef is sincere and the project seems heartfelt, so Aaron begins to film. But as the day goes on, it becomes clear that Josef is not who he says, and his intentions are not at all pure.",2014-06-23,3.8497,6.385,1503 +6489,41733,Due Date,"Peter Highman must scramble across the US in five days to be present for the birth of his first child. He gets off to a bad start when his wallet and luggage are stolen, and put on the 'no-fly' list. Peter embarks on a terrifying journey when he accepts a ride from an actor.",2010-11-03,4.4334,6.385,5550 +6490,21610,Nighthawks,"When one of Europe's most lethal terrorists shows up in New York, an elite undercover cop is assigned to take him down by any means necessary.",1981-03-17,1.3647,6.385,452 +6491,13968,Jump In!,"A young boxer, Izzy Daniels, trains to follow in his father's footsteps by winning the Golden Glove. But when his friend, Mary asks him to substitute for a team member in a Double Dutch tournament, the young man discovers a hidden passion for jump roping, all while finding love with Mary and navigating conflict with himself and his father about boxing.",2007-01-12,1.7302,6.385,410 +6492,10192,Shrek Forever After,"A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again, but when he's duped and sent to a twisted version of Far Far Away—where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never met—he sets out to restore his world and reclaim his true love.",2010-05-20,12.4621,6.385,7609 +6493,674944,The Occupant,"An unemployed executive is forced to sell his apartment. When he discovers that he still has the keys, he becomes obsessed with the family that now lives there and decides to recover the life he has lost, at any price.",2020-03-25,1.9064,6.384,764 +6494,521127,Kingdoms,"Alejandro, a freshman, and Sofia, who’s doing her thesis, meet in college. They build an asymmetrical relationship: he’s in love while she just wants to see her sexual desires fulfilled.",2018-08-02,0.5005,6.384,305 +6495,11081,Taking Lives,"Recruited to assist Montreal police in their desperate search for a serial killer who assumes the identities of his victims, FBI profiler Illeana Scott knows it's only a matter of time before the killer strikes again. Her most promising lead is a museum employee who might be the killer's only eyewitness.",2004-03-19,2.4698,6.384,1658 +6496,6440,The Shipping News,An emotionally-beaten man with his young daughter moves to his ancestral home in Newfoundland to reclaim his life.,2001-12-18,1.4132,6.4,396 +6497,649409,No Sudden Move,A group of criminals are brought together under mysterious circumstances and have to work together to uncover what's really going on when their simple job goes completely sideways.,2021-06-24,1.978,6.383,741 +6498,617708,La Llorona,"Accused of the genocide of Mayan people, retired general Enrique is trapped in his mansion by massive protests. Abandoned by his staff, the indignant old man and his family must face the devastating truth of his actions and the growing sense that a wrathful supernatural force is targeting them for his crimes.",2019-07-25,1.9849,6.383,342 +6499,509635,Alone,"A recently widowed traveler is kidnapped by a cold blooded killer, only to escape into the wilderness where she is forced to battle against the elements as her pursuer closes in on her.",2020-09-10,3.2623,6.383,783 +6500,316727,The Purge: Election Year,"Two years after choosing not to kill the man who killed his son, former police sergeant Leo Barnes has become head of security for Senator Charlene Roan, the front runner in the next Presidential election due to her vow to eliminate the Purge. On the night of what should be the final Purge, a betrayal from within the government forces Barnes and Roan out onto the street where they must fight to survive the night.",2016-06-29,5.3881,6.383,5332 +6501,271736,The Program,"An Irish sports journalist becomes convinced that Lance Armstrong's performances during the Tour de France victories are fueled by banned substances. With this conviction, he starts hunting for evidence that will expose Armstrong.",2015-09-16,3.4547,6.383,518 +6502,11503,The Serpent and the Rainbow,"A Harvard anthropologist is sent to Haiti to retrieve a strange powder that is said to have the power to bring human beings back from the dead. In his quest to find the miracle drug, the cynical scientist enters the rarely seen netherworld of walking zombies, blood rites and ancient curses. Based on the true life experiences of Wade Davis and filmed on location in Haiti, it's a frightening excursion into black magic and the supernatural.",1988-02-05,1.6559,6.4,523 +6503,10428,Hackers,"Along with his new friends, a teenager who was arrested by the US Secret Service and banned from using a computer for writing a computer virus discovers a plot by a nefarious hacker, but they must use their computer skills to find the evidence while being pursued by the Secret Service and the evil computer genius behind the virus.",1995-09-14,4.5175,6.383,1359 +6504,585378,After Yang,"When his young daughter's beloved companion — an android named Yang — malfunctions, Jake searches for a way to repair him. In the process, Jake discovers the life that has been passing in front of him, reconnecting with his wife and daughter across a distance he didn't know was there.",2022-03-04,1.4637,6.382,453 +6505,460668,I Feel Pretty,A head injury causes a woman to develop an extraordinary amount of confidence and believe she's drop dead gorgeous.,2018-04-19,2.5908,6.382,2072 +6506,121674,Great Expectations,"Orphan Pip discovers through lawyer Mr. Jaggers that a mysterious benefactor wishes to ensure that he becomes a gentleman. Reunited with his childhood patron, Miss Havisham, and his first love, the beautiful but emotionally cold Estella, he discovers that the elderly spinster has gone mad from having been left at the altar as a young woman, and has made her charge into a warped, unfeeling heartbreaker.",2012-11-30,1.461,6.4,348 +6507,13154,Showdown in Little Tokyo,"An American with a Japanese upbringing, Chris Kenner is a police officer assigned to the Little Tokyo section of Los Angeles. Kenner is partnered with Johnny Murata, a Japanese-American who isn't in touch with his roots. Despite their differences, both men excel at martial arts, and utilize their formidable skills when they go up against Yoshida, a vicious yakuza drug dealer with ties to Kenner's past.",1991-08-23,2.4758,6.382,495 +6508,4824,The Jackal,"Hired by a powerful member of the Russian mafia to avenge an FBI sting that left his brother dead, a psychopathic hitman known only as The Jackal proves an elusive target for the people charged with the task of bringing him down: a deputy FBI director, a Russian MVK Major, and a jailed IRA terrorist who can recognize him.",1997-11-14,5.018,6.382,1980 +6509,1734,The Mummy Returns,"Rick and Evelyn O’Connell, along with their 8-year-old son Alex, discover the key to the legendary Scorpion King’s might: the fabled Bracelet of Anubis. Unfortunately, a newly resurrected Imhotep has designs on the bracelet as well, and isn’t above kidnapping its new bearer, Alex, to gain control of Anubis’s otherworldly army.",2001-05-04,8.6811,6.382,7287 +6510,365620,Ferrari,"Set during the summer of 1957. Ex-racecar driver, Enzo Ferrari, is in crisis. Bankruptcy stalks the company he and his wife, Laura, built from nothing ten years earlier. Their tempestuous marriage struggles with the mourning for one son and the acknowledgement of another.",2023-12-14,3.5618,6.382,1116 +6511,11530,The Discord,"Guillaume has made it: A machine that can clean dirty air by simply sucking all dirt into air balloons and then shipping them far far away so his explanation. Some Japanese business guys, after dinner with a lot of alcohol, order 5,000 pieces. His only problem: His production capacity is way to small so he gets to produce the machines in his private house. His wife Bernadette is far from being happy about it. Her private life goes down the line so she decides to leave Guillaume and to finally have revenge she candidates for major against her husband...",1978-03-16,0.9127,6.4,327 +6512,7131,Van Helsing,Famed monster slayer Gabriel Van Helsing is dispatched to Transylvania to assist the last of the Valerious bloodline in defeating Count Dracula. Anna Valerious reveals that Dracula has formed an unholy alliance with Dr. Frankenstein's monster and is hell-bent on exacting a centuries-old curse on her family.,2004-05-03,9.1914,6.381,6230 +6513,515333,Amateur,14-year-old basketball phenom Terron Forte has to navigate the under-the-table world of amateur athletics when he is recruited to an elite NCAA prep school.,2018-04-06,1.2507,6.38,301 +6514,608,Men in Black II,"Kay and Jay reunite to provide our best, last and only line of defense against a sinister seductress who levels the toughest challenge yet to the MIB's untarnished mission statement – protecting Earth from the scum of the universe. It's been four years since the alien-seeking agents averted an intergalactic disaster of epic proportions. Now it's a race against the clock as Jay must convince Kay – who not only has absolutely no memory of his time spent with the MIB, but is also the only living person left with the expertise to save the galaxy – to reunite with the MIB before the earth submits to ultimate destruction.",2002-07-03,7.1842,6.38,10210 +6515,300667,3 Generations,"A teenager transitions from female to male, and his family must come to terms with that fact.",2016-10-27,1.194,6.4,433 +6516,50780,The Beaver,"Suffering from a severe case of depression, toy company CEO Walter Black begins using a beaver hand puppet to help him open up to his family. With his father seemingly going insane, adolescent son Porter pushes for his parents to get a divorce.",2011-05-05,1.4852,6.379,881 +6517,6691,Priceless,A beautiful young gold-digger mistakes a lowly hotel clerk as a rich and therefore worthwhile catch.,2006-12-13,1.3554,6.4,750 +6518,419835,Crooked House,"A private investigator helps a former flame solve the murder of her wealthy grandfather, who lived in a sprawling estate surrounded by his idiosyncratic family.",2017-09-06,2.2857,6.378,943 +6519,26515,Pumpkinhead,"When a group of teenagers inadvertently kill his only son, Ed Harley seeks the powers of a backwoods witch to bring the child back to life.",1988-06-09,2.0696,6.378,493 +6520,11894,Curly Sue,"Bill is a penniless drifter who scams strangers out of just enough money to feed himself and his partner in crime, an orphan girl known as Curly Sue. Bill and Curly Sue target Grey, a yuppie lawyer, but their con takes an unexpected turn when the successful woman begins to like the ramshackle duo. But there's one problem—Grey's jealous, conniving boyfriend, Walker.",1991-10-25,2.3191,6.378,544 +6521,11891,Kung Pow: Enter the Fist,"A movie within a movie, created to spoof the martial arts genre. Writer/director Steve Oedekerk uses contemporary characters and splices them into a 1970s kung-fu film, weaving the new and old together. As the main character, The Chosen One, Oedekerk sets off to avenge the deaths of his parents at the hands of kung-fu legend Master Pain. Along the way he encounters some strange characters.",2002-01-25,2.3321,6.378,696 +6522,9414,The Man Who Knew Too Little,"An American gets a ticket for an audience participation game in London, then gets involved in a case of mistaken identity. As an international plot unravels around him, he thinks it's all part of the act.",1997-11-14,2.0443,6.4,530 +6523,34588,If I Were You,"The publicist Claudio and the housewife and choral teacher Helena have been married for many years, but they do not understand and respect the feelings and view point of the partner. Claudio sees Helena as a shopper and ""little teacher of a choral"" and Helena sees Claudio as an insensitive and rough man. On the night before the fiftieth anniversary of Claudio, they changed places with each other.",2006-01-06,0.4976,6.377,379 +6524,10770,The Sheriff and the Satellite Kid,"A young humanoid alien who gets stranded on earth hooks up with a grizzled old sheriff in a western town and tries to help him solve a tough case, but the sheriff doesn't want any help from a ""kid.""",1979-08-10,0.8648,6.377,308 +6525,8999,Derailed,"When two married business executives having an affair are blackmailed by a violent criminal, they are forced to turn the tables on him to save their families.",2005-11-11,1.9923,6.377,1057 +6526,515248,Someone Great,"An aspiring music journalist lands her dream job and is about to move to San Francisco when her boyfriend of nine years decides to call it quits. To nurse her broken heart, she and her two best friends spend one outrageous last adventure in New York City.",2019-04-19,1.8896,6.376,1174 +6527,438348,Knock,"Doctor Knock is a former thug who has become a doctor and arrives in the small village of Saint-Maurice to make his fortune according to a particular method. It will make the villagers believe that they are not as healthy as they might think. It is thus that he will find in each one an imaginary symptom, or not, and thus will be able to exercise his profession lucratively. Under his seductive looks and after gaining the confidence of the village, Knock is on the verge of achieving his ends. But his past catches up with him and an old acquaintance disrupts the doctor's plans.",2017-10-18,1.2966,6.376,464 +6528,77949,The Awakening,"In post–War England, a writer and sometime-ghost hunter investigates a reported haunting at a boys boarding school.",2011-08-17,2.7179,6.376,1427 +6529,294652,Son of a Gun,"Locked up for a minor crime, 19 year old JR quickly learns the harsh realities of prison life. Protection, if you can get it, is paramount. JR soon finds himself under the watchful eye of Australia's most notorious criminal, Brendan Lynch, but protection comes at a price.",2014-10-16,3.2935,6.375,782 +6530,175291,Cheap Thrills,"Recently fired and facing eviction, a new dad has his life turned upside down when he meets a wealthy couple who offer a path to financial security... but at a price.",2013-03-08,1.0663,6.4,428 +6531,8077,Alien³,"After escaping with Newt and Hicks from the alien planet, Ripley crash lands on Fiorina 161, a prison planet and host to a correctional facility. Unfortunately, although Newt and Hicks do not survive the crash, a more unwelcome visitor does. The prison does not allow weapons of any kind, and with aid being a long time away, the prisoners must simply survive in any way they can.",1992-05-22,6.8637,6.375,5983 +6532,8054,The Imaginarium of Doctor Parnassus,A travelling theatre company has more to it than meets the eye.,2009-10-01,2.117,6.4,2758 +6533,2119,Days of Thunder,"Talented but unproven stock car driver Cole Trickle gets a break and with the guidance of veteran Harry Hogge turns heads on the track. The young hotshot develops a rivalry with a fellow racer that threatens his career when the two smash their cars. But with the help of his doctor, Cole just might overcome his injuries-- and his fear.",1990-06-27,4.0274,6.4,1574 +6534,484718,Coming 2 America,"Prince Akeem Joffer is set to become King of Zamunda when he discovers he has a son he never knew about in America – a street savvy Queens native named Lavelle. Honoring his royal father's dying wish to groom this son as the crown prince, Akeem and Semmi set off to America once again.",2021-03-04,5.0342,6.374,2290 +6535,1687,Escape from the Planet of the Apes,"The world is shocked by the appearance of three talking chimpanzees, who arrived mysteriously in a spacecraft. Intrigued by their intelligence, humans use them for research - until the apes attempt to escape.",1971-05-20,3.5849,6.374,1146 +6536,1647,The Recruit,"A brilliant CIA trainee must prove his worth at the Farm, the agency's secret training grounds, where he learns to watch his back and trust no one.",2003-01-31,2.024,6.373,1797 +6537,575088,Baba Yaga: Terror of the Dark Forest,"The young family who moved to a new apartment on the outskirts of the city. The nanny hired by them for the newborn daughter quickly gained confidence. However, the older boy, Egor, talks about the frightening behavior of a woman, but his parents do not believe him. The surveillance cameras installed by the father for comfort only confirm everything is in order. Then one day, Egor, returning home, finds no trace of either the nanny or the little sister, and the parents are in a strange trance and do not even remember that they had a daughter. Then Egor, together with his friends, goes in search, during which it turns out that the nanny is an ancient Slavic demon, popularly known as Baba Yaga.",2020-02-27,1.3975,6.372,358 +6538,431072,Step Sisters,"Jamilah has her whole life figured out. She's the president of her black sorority, captain of their champion step dance crew, is student liaison to the college dean, and her next move is on to Harvard Law School. She's got it all, right? But when the hard-partying white girls from Sigma Beta Beta embarrass the school, Jamilah is ordered to come to the rescue. Her mission is to not only teach the rhythmically-challenged girls how to step dance, but to win the Steptacular, the most competitive of dance competitions. With the SBBs reputations and charter on the line, and Jamilah's dream of attending Harvard in jeopardy, these outcast screw-ups and their unlikely teacher stumble through one hilarious misstep after another. Cultures clash, romance blossoms, and sisterhood prevails as everyone steps out of their comfort zones.",2018-01-19,0.8725,6.4,456 +6539,82682,Gangster Squad,"Los Angeles, 1949. Ruthless, Brooklyn-born mob king Mickey Cohen runs the show in this town, reaping the ill-gotten gains from the drugs, the guns, the prostitutes and — if he has his way — every wire bet placed west of Chicago. And he does it all with the protection of not only his own paid goons, but also the police and the politicians who are under his control. It’s enough to intimidate even the bravest, street-hardened cop… except, perhaps, for the small, secret crew of LAPD outsiders led by Sgt. John O’Mara and Jerry Wooters who come together to try to tear Cohen’s world apart.",2013-01-09,5.0242,6.372,4110 +6540,82682,Gangster Squad,"Los Angeles, 1949. Ruthless, Brooklyn-born mob king Mickey Cohen runs the show in this town, reaping the ill-gotten gains from the drugs, the guns, the prostitutes and — if he has his way — every wire bet placed west of Chicago. And he does it all with the protection of not only his own paid goons, but also the police and the politicians who are under his control. It’s enough to intimidate even the bravest, street-hardened cop… except, perhaps, for the small, secret crew of LAPD outsiders led by Sgt. John O’Mara and Jerry Wooters who come together to try to tear Cohen’s world apart.",2013-01-09,5.0242,6.372,4110 +6541,12435,The Nanny Diaries,"A college graduate goes to work as a nanny for a rich New York family. Ensconced in their home, she has to juggle their dysfunction, a new romance, and the spoiled brat in her charge.",2007-08-24,2.8365,6.372,1177 +6542,9902,Wrong Turn,"Chris crashes into a carload of other young people, and the group of stranded motorists is soon lost in the woods of West Virginia, where they're hunted by three cannibalistic mountain men who are grossly disfigured by generations of inbreeding.",2003-05-30,7.6229,6.372,2825 +6543,5336,"Salò, or the 120 Days of Sodom","Four corrupted fascist libertines round up 9 teenage boys and girls and subject them to 120 days of sadistic physical, mental and sexual torture.",1976-01-10,2.581,6.4,2167 +6544,299,Ocean's Eleven,Danny Ocean and his gang attempt to rob the five biggest casinos in Las Vegas in one night.,1960-08-10,3.0553,6.372,371 +6545,1026436,Miller's Girl,A talented young writer embarks on a creative odyssey when her teacher assigns a project that entangles them both.,2024-01-18,11.0361,6.371,843 +6546,449756,The Postcard Killings,"After suffering a personal tragedy, and desperate for justice, Jacob Kanon, a veteran New York City police detective, embarks on the search for a twisted killer who is leaving a bloody trail of elaborate murders across Europe.",2020-03-13,2.303,6.371,607 +6547,433501,City of Lies,"Los Angeles Police Department detective Russell Poole has spent years trying to solve his biggest case -- the murders of The Notorious B.I.G. and Tupac Shakur -- but after two decades, the investigation remains open. Jack Jackson, a reporter desperate to save his reputation and career, is determined to find out why. In search of the truth, the two team up and unravel a growing web of institutional corruption and lies.",2018-09-06,1.8089,6.371,636 +6548,18892,Jawbreaker,"When an exclusive clique of teenage socialites accidentally murder their best friend on the morning of her birthday, the three girls responsible conspire to hide the truth.",1999-01-30,2.2533,6.4,549 +6549,624860,The Matrix Resurrections,"Plagued by strange memories, Neo's life takes an unexpected turn when he finds himself back inside the Matrix.",2021-12-16,7.7129,6.369,6060 +6550,435615,Possessor,"Tasya Vos, an elite corporate assassin, uses brain-implant technology to take control of other people’s bodies to terminate high profile targets. As she sinks deeper into her latest assignment, Vos becomes trapped inside a mind that threatens to obliterate her.",2020-10-02,2.0009,6.4,940 +6551,315880,Correspondence,"The relationship between Ed, a married astronomer and Amy, his lover, who spend their years apart, is based only on phone calls and texts. One day Amy begins noticing something strange in Ed's messages.",2016-01-14,1.1532,6.37,405 +6552,13225,FernGully: The Last Rainforest,"When a sprite named Crysta shrinks a human boy, Zak, down to her size, he vows to help the magical fairy folk stop a greedy logging company from destroying their home: the pristine rainforest known as FernGully. Zak and his new friends fight to defend FernGully from lumberjacks — and the vengeful spirit they accidentally unleash after chopping down a magic tree.",1992-04-10,2.8984,6.37,597 +6553,714,Tomorrow Never Dies,A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now James Bond must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium.,1997-12-11,5.18,6.37,3220 +6554,799379,Project Wolf Hunting,"While under heavily armed guard, the dangerous convicts aboard a cargo ship unite in a coordinated escape attempt that soon escalates into a bloody, all-out riot. But as the fugitives continue their brutal campaign of terror, they soon discover that not even the most vicious among them is safe from the horror they unknowingly unleashed from the darkness below deck.",2022-09-21,6.4928,6.369,398 +6555,513574,Battle,"Amalie is the girl who has everything, good looks, money, a boyfriend and a big talent of dancing. One day, her world falls apart and she moves from everything she knows. Then enter Mikael. He is dancing in the streets and Amalie joins him in dancing on the streets, dancing Battles.",2018-09-28,1.0845,6.369,647 +6556,387893,Ice Age: The Great Egg-Scapade,"A harried prehistoric bird mother entrusts her precious, soon-to-hatch egg to Sid. When she recommends him to her neighbours, business booms at his new egg-sitting service. However, dastardly pirate bunny, Squint, who is seeking revenge on the herd, steals, camouflages and hides all the eggs. Once again, with Squint’s twin brother assisting, Manny, Diego and the rest of the gang come to the rescue and take off on a daring mission that turns into the world’s first Easter egg hunt.",2016-03-19,2.6231,6.369,488 +6557,295699,Everybody Wants Some!!,A comedy that follows a group of friends as they navigate their way through the freedoms and responsibilities of unsupervised adulthood.,2016-03-30,2.1154,6.369,1146 +6558,11120,The Mosquito Coast,"Allie Fox, an American inventor exhausted by the perceived danger and degradation of modern society, decides to escape with his wife and children to Belize. In the jungle, he tries with mad determination to create a utopian community with disastrous results.",1986-11-26,1.5803,6.4,485 +6559,286987,How to Build a Better Boy,"After inadvertently inputting the qualities of the ideal boyfriend into a high-tech government computer, two social outcasts named Mae and Gabby must contend with Albert, a cybernetic sweetheart with only one directive: to treat Mae to the perfect highschool romance.",2014-11-18,2.0663,6.4,397 +6560,134597,The Collection,"Arkin escapes with his life from the vicious grips of ""The Collector"" during an entrapment party where he adds beautiful Elena to his ""Collection."" Instead of recovering from the trauma, Arkin is suddenly abducted from the hospital by mercenaries hired by Elena's wealthy father. Arkin is blackmailed to team up with the mercenaries and track down The Collector's booby trapped warehouse and save Elena.",2012-11-30,2.9653,6.368,1067 +6561,10413,Nowhere to Run,Escaped convict Sam Gillen single-handedly takes on ruthless developers who are determined to evict a widow with two young children.,1993-01-15,2.6928,6.368,746 +6562,667739,The Man from Toronto,"In a case of mistaken identity, the world’s deadliest assassin, known as the Man from Toronto, and a New York City screw-up are forced to team up after being confused for each other at a rental cabin.",2022-12-23,3.1303,6.367,444 +6563,396461,Under the Silver Lake,"Young and disenchanted Sam meets a mysterious and beautiful woman who's swimming in his building's pool one night. When she suddenly vanishes the next morning, Sam embarks on a surreal quest across Los Angeles to decode the secret behind her disappearance, leading him into the murkiest depths of mystery, scandal and conspiracy.",2018-08-08,7.1852,6.366,1477 +6564,338970,Tomb Raider,"Lara Croft, the fiercely independent daughter of a missing adventurer, must push herself beyond her limits when she finds herself on the island where her father disappeared.",2018-03-05,6.8714,6.367,8029 +6565,24274,Dead & Buried,"After a series of gory murders commited by mobs of townspeople against visiting tourists, the corpses appear to be coming back to life and living normally as locals in the small town.",1981-05-29,1.1703,6.366,303 +6566,11852,The Hot Chick,"Not only is Jessica Spencer the most popular girl in school -- she is also the meanest. But things change for the attractive teen when a freak accident involving a cursed pair of earrings and a chance encounter at a gas station causes her to switch bodies with Clive, a sleazy crook. Jessica, in the form of the repulsive Clive, struggles to adjust to this radical alteration and sets out to get her own body back before the upcoming prom.",2002-12-13,5.3559,6.366,2060 +6567,11002,"Greystoke: The Legend of Tarzan, Lord of the Apes","A shipping disaster in the 19th Century has stranded a man and woman in the wilds of Africa. The lady is pregnant, and gives birth to a son in their tree house. Soon after, a family of apes stumble across the house and in the ensuing panic, both parents are killed. A female ape takes the tiny boy as a replacement for her own dead infant, and raises him as her son. Twenty years later, Captain Phillippe D'Arnot discovers the man who thinks he is an ape. Evidence in the tree house leads him to believe that he is the direct descendant of the Earl of Greystoke, and thus takes it upon himself to return the man to civilization.",1984-03-30,2.6463,6.366,476 +6568,2642,Two Weeks Notice,"Dedicated environmental lawyer Lucy Kelson goes to work for billionaire George Wade as part of a deal to preserve a community center. Indecisive and weak-willed George grows dependent on Lucy's guidance on everything from legal matters to clothing. Exasperated, Lucy gives notice and picks Harvard graduate June Carter as her replacement. As Lucy's time at the firm nears an end, she grows jealous of June and has second thoughts about leaving George.",2002-12-19,3.6602,6.366,2116 +6569,836466,Return,"A single man has worked most of his life in a supermarket. One night, he unexpectedly meets with his father, and the two are faced with the question of the reasons for their separation.",2020-06-10,0.3554,6.365,1346 +6570,399035,The Commuter,"A businessman, on his daily commute home, gets unwittingly caught up in a criminal conspiracy that threatens not only his life but the lives of those around him.",2018-01-11,5.4668,6.365,4452 +6571,324668,Jason Bourne,The most dangerous former operative of the CIA is drawn out of hiding to uncover hidden truths about his past.,2016-07-27,5.8448,6.365,5898 +6572,294272,Pete's Dragon,"For years, old wood carver Mr. Meacham has delighted local children with his tales of the fierce dragon that resides deep in the woods of the Pacific Northwest. To his daughter, Grace, who works as a forest ranger, these stories are little more than tall tales... until she meets Pete, a mysterious 10-year-old with no family and no home who claims to live in the woods with a giant, green dragon named Elliott. And from Pete's descriptions, Elliott seems remarkably similar to the dragon from Mr. Meacham's stories. With the help of Natalie, an 11-year-old girl whose father Jack owns the local lumber mill, Grace sets out to determine where Pete came from, where he belongs, and the truth about this dragon.",2016-08-10,4.0831,6.365,2242 +6573,112205,The Family,"After ratting out his Mafia cohorts, Giovanni Manzoni and his family enter the Witness Protection Program and relocate to a sleepy town in France. Despite the best efforts of their handler to keep them in line, Giovanni (now called Fred Blake), his wife and children can't help but resort to doing things the ""family"" way. However, their dependence on such old habits places everyone in danger from vengeful mobsters.",2013-09-13,3.6216,6.365,2979 +6574,82675,Taken 2,"In Istanbul, retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.",2012-09-27,9.6173,6.365,6814 +6575,9718,Talladega Nights: The Ballad of Ricky Bobby,"The fastest man on four wheels, Ricky Bobby is one of the greatest drivers in NASCAR history. A big, hairy American winning machine, Ricky has everything a dimwitted daredevil could want, a luxurious mansion, a smokin' hot wife and all the fast food he can eat. But Ricky's turbo-charged lifestyle hits an unexpected speed bump when he's bested by flamboyant Euro-idiot Jean Girard and reduced to a fear-ridden wreck.",2006-08-04,3.7045,6.364,1760 +6576,9101,Down Periscope,"Maverick Navy Lieutenant Commander Tom Dodge will never be a textbook officer, but he's a brilliant seaman who's always wanted to command a nuclear submarine — he's been given one last chance to clean up his record. Unfortunately, Admiral Graham, his nemesis, would rather sink the fleet than give Dodge his own boat. So, Graham stacks the deck against him and assigns Dodge to the Stingray, a diesel-powered WW2 submarine that can barely keep afloat. To make matters worse, Dodge's crew is a collection of maladjusted, mistake-prone misfits. Then, he's tagged the ""enemy"" in a crucial war game, and ordered to take on the U.S. Navy's best.",1996-03-01,3.2575,6.365,484 +6577,932420,Code 8 Part II,"In a world where superpowered people are heavily policed by robots, an ex-con teams up with a drug lord he despises to protect a teen from a corrupt cop.",2024-02-27,3.4565,6.364,634 +6578,531219,Roald Dahl's The Witches,"In late 1967, a young orphaned boy goes to live with his loving grandma in the rural Alabama town of Demopolis. As the boy and his grandmother encounter some deceptively glamorous but thoroughly diabolical witches, she wisely whisks him away to a seaside resort. Regrettably, they arrive at precisely the same time that the world's Grand High Witch has gathered.",2020-10-26,5.0934,6.364,2862 +6579,355547,The Star,A small but brave donkey and his animal friends become the unsung heroes of the greatest story ever told: the first Christmas.,2017-11-15,2.5331,6.4,567 +6580,12201,Edge of Darkness,"As a seasoned homicide detective, Thomas Craven has seen the bleakest side of humanity. But nothing prepares him for the toughest investigation of his life: the search for his only daughter Emma's killer. Now, he is on a personal mission to uncover the disturbing secrets surrounding her murder, including corporate corruption, government collusion and Emma's own mysterious life.",2010-01-28,2.9719,6.364,1584 +6581,10847,Lord of the Flies,"When their plane crashes, 25 schoolboys find themselves trapped on a tropical island, miles from civilization.",1990-03-16,2.2292,6.4,581 +6582,9317,The Cabbage Soup,Two buddy farmers are visited by aliens who like their domestic cabbage soup.,1981-12-02,2.0325,6.364,895 +6583,557950,Mainstream,A young woman thinks she’s found a path to internet stardom when she starts making YouTube videos with a charismatic stranger – until the dark side of viral celebrity threatens to ruin them both.,2021-05-07,10.1294,6.4,346 +6584,492616,Luce,"A star athlete and top student, Luce's idealized image is challenged by one of his teachers when his unsettling views on political violence come to light, putting a strain on family bonds while igniting intense debates on race and identity.",2019-08-02,0.7684,6.363,302 +6585,345911,Lights Out,"Rebecca must unlock the terror behind her little brother's experiences that once tested her sanity, bringing her face to face with a supernatural spirit attached to their mother.",2016-07-21,4.3022,6.363,3959 +6586,262500,Insurgent,Beatrice Prior must confront her inner demons and continue her fight against a powerful alliance which threatens to tear her society apart.,2015-03-18,7.7801,6.4,10167 +6587,1268,Mr. Bean's Holiday,"Mr. Bean wins a trip to Cannes where he unwittingly separates a young boy from his father and must help the two reunite. On the way he discovers France, bicycling and true love, among other things.",2007-03-22,4.1304,6.363,2958 +6588,71688,The Iron Lady,"A look at the life of Margaret Thatcher, the former Prime Minister of the United Kingdom, with a focus on the price she paid for power.",2011-12-26,2.3702,6.362,1778 +6589,60420,Like Crazy,"A British college student falls for an American student, only to be separated from him when she's banned from the U.S. after overstaying her visa.",2011-10-28,1.3153,6.4,1051 +6590,11821,Doc Hollywood,"After leaving Washington D.C. hospital, plastic surgeon Ben Stone heads for California, where a lucrative practice in Beverly Hills awaits. After a car accident, he's sentenced to perform as the community's general practitioner.",1991-08-02,2.2022,6.362,639 +6591,8197,Midnight in the Garden of Good and Evil,"A visiting city reporter's assignment suddenly revolves around the murder trial of a local millionaire, whom he befriends.",1997-11-21,1.8599,6.362,596 +6592,1098006,Fountain of Youth,"A treasure-hunting mastermind assembles a team for a life-changing adventure. But to outwit and outrun threats at every turn, he'll need someone even smarter than he is: his estranged sister.",2025-05-19,13.4323,6.36,639 +6593,766475,See How They Run,"In the West End of 1950s London, plans for a movie version of a smash-hit play come to an abrupt halt after a pivotal member of the crew is murdered. When world-weary Inspector Stoppard and eager rookie Constable Stalker take on the case, the two find themselves thrown into a puzzling whodunit within the glamorously sordid theater underground, investigating the mysterious homicide at their own peril.",2022-09-09,2.1961,6.361,1194 +6594,500852,Miss Bala,"Gloria finds a power she never knew she had when she is drawn into a dangerous world of cross-border crime. Surviving will require all of her cunning, inventiveness, and strength.",2019-01-25,3.4663,6.361,561 +6595,463843,Sweetheart,"Jenn has washed ashore a small tropical island and it doesn’t take her long to realize she’s completely alone. She must spend her days not only surviving the elements, but must also fend off the malevolent force that comes out each night.",2019-01-28,1.8707,6.361,379 +6596,9333,Last Man Standing,"John Smith is a mysterious stranger who is drawn into a vicious war between two Prohibition-era gangs. In a dangerous game, he switches allegiances from one to another, offering his services to the highest bidder. As the death toll mounts, Smith takes the law into his own hands in a deadly race to stay alive.",1996-09-20,2.79,6.4,920 +6597,6637,National Treasure: Book of Secrets,"Benjamin Franklin Gates and Abigail Chase re-team with Riley Poole and, now armed with a stack of long-lost pages from John Wilkes Booth's diary, Ben must follow a clue left there to prove his ancestor's innocence in the assassination of Abraham Lincoln.",2007-12-19,4.1935,6.361,5295 +6598,602545,Into the Labyrinth,"When a kidnapping victim turns up alive after fifteen years, a profiler and a private investigator try to piece together the mystery.",2019-10-30,1.8432,6.4,512 +6599,10337,Bugsy,"New York gangster Ben 'Bugsy' Siegel takes a brief business trip to Los Angeles. A sharp-dressing womanizer with a foul temper, Siegel doesn't hesitate to kill or maim anyone crossing him. In L.A. the life, the movies, and most of all strong-willed Virginia Hill detain him while his family wait back home. Then a trip to a run-down gambling joint at a spot in the desert known as Las Vegas gives him his big idea.",1991-12-10,2.1361,6.4,407 +6600,10337,Bugsy,"New York gangster Ben 'Bugsy' Siegel takes a brief business trip to Los Angeles. A sharp-dressing womanizer with a foul temper, Siegel doesn't hesitate to kill or maim anyone crossing him. In L.A. the life, the movies, and most of all strong-willed Virginia Hill detain him while his family wait back home. Then a trip to a run-down gambling joint at a spot in the desert known as Las Vegas gives him his big idea.",1991-12-10,2.1361,6.4,407 +6601,9472,DodgeBall: A True Underdog Story,"When megalomaniacal White Goodman, the owner of a trendy, high-end fitness center, makes a move to take over the struggling local gym run by happy-go-lucky Pete La Fleur, there's only one way for La Fleur to fight back: dodgeball. Aided by a dodgeball guru and Goodman's attorney, La Fleur and his rag-tag team of underdogs launch a knock-down, drag-out battle in which the winner takes all.",2004-06-18,5.5626,6.4,3609 +6602,6279,Sister Act 2: Back in the Habit,"Deloris Van Cartier is again asked to don the nun's habit to help a run-down Catholic school, presided over by Mother Superior. And if trying to reach out to a class full of uninterested students wasn't bad enough, the sisters discover that the school is due to be closed by the unscrupulous chief of a local authority.",1993-12-09,3.7414,6.4,1869 +6603,2667,The Blair Witch Project,"In October of 1994 three student filmmakers disappeared in the woods near Burkittsville, Maryland, while shooting a documentary. A year later their footage was found.",1999-07-14,4.5173,6.36,5087 +6604,1049,Sommersby,"Set in the South just after the US Civil War, Laurel Sommersby is just managing to work the farm without her husband, believed killed in battle. By all accounts, Jack Sommersby was not a pleasant man, thus when he suddenly returns, Laurel has mixed emotions. It appears that Jack has changed a great deal, leading some people to believe that this is not actually Jack but an imposter. Laurel herself is unsure, but willing to take the man into her home, and perhaps later into her heart.",1993-02-05,2.8719,6.4,399 +6605,700,Octopussy,James Bond is sent to investigate after a fellow “00” agent is found dead with a priceless Indian Fabergé egg. Bond follows the mystery and uncovers a smuggling scandal and a Russian General who wants to provoke a new World War.,1983-06-05,4.4506,6.36,2058 +6606,775996,Outside the Wire,"In the near future, a drone pilot is sent into a deadly militarized zone and must work with an android officer to locate a doomsday device.",2021-01-15,2.8606,6.359,1841 +6607,298729,Do You See Me?,Serena Bruno is an architect who studied and got several masters in different countries of the world but she decides to go back to Italy so she can live and work there. She will soon find out that her native country is not as open minded and she will struggle to find a job that she truly loves and is passionate about. Along the way she will meet Francesco a gay man who will help and support her throughout her journey.,2014-11-20,0.893,6.359,577 +6608,14114,You Got Served,"At Mr. Rad's Warehouse, the best hip-hop crews in Los Angeles compete for money and respect. But when a suburban crew crashes the party, stealing their dancers — and their moves — two warring friends have to pull together to represent the street.",2004-01-30,1.7619,6.359,442 +6609,4614,The Sum of All Fears,"When the president of Russia suddenly dies, a man whose politics are virtually unknown succeeds him. The change in political leaders sparks paranoia among American CIA officials, so CIA director Bill Cabot recruits a young analyst to supply insight and advice on the situation. Then the unthinkable happens: a nuclear bomb explodes in a U.S. city, and America is quick to blame the Russians.",2002-05-31,4.0896,6.359,1813 +6610,1577,Resident Evil: Apocalypse,"As the city is locked down under quarantine, Alice finds out that the people that died from the previous incident at the Umbrella Corporation have turned into zombies. She then joins a small band of elite soldiers, who are enlisted to rescue the missing daughter of the creator of the mutating T-virus. Once lack of luck and resources happen, they begin to wage an exhilarating battle to survive and escape before the Umbrella Corporation erases its experiment from the face of the earth.",2004-09-10,3.7544,6.359,4498 +6611,617,Wild Things,"When teen-socialite Kelly Van Ryan and troubled bad girl Suzie Toller accuse guidance counselor Sam Lombardo of rape, he's suspended by the school, rejected by the town, and fighting to get his life back. One cop suspects conspiracy, but nothing is what it seems...",1998-03-20,3.8349,6.359,1833 +6612,84188,Compliance,"On a particularly busy day at a suburban Ohio fast food restaurant, manager Sandra receives a phone call from a police officer saying that an employee has stolen money from a customer.",2012-08-23,2.1564,6.358,723 +6613,46523,New Kids Turbo,Five friends from 'Maaskantje' are getting fired because of the economic crisis. They decide that they won't pay for anything anymore.,2010-12-09,0.6973,6.4,314 +6614,13679,Kirikou and the Wild Beasts,"The film is a sub-story to Kirikou and the Sorceress rather than a straight sequel. The movie is set while Kirikou is still a child and Karaba is still a sorceress. Like Princes et princesses and Les Contes de la nuit, it is an anthology film comprising several episodic stories, each of them describing Kirikou's interactions with a different animals. It is however unique among Michel Ocelot's films, not only in that it is co-directed by Bénédicte Galup (who has previously worked with him as an animator) but also for each of the stories being written by a different person (in all other cases, Ocelot has been the sole writer and director of his films).",2005-12-07,0.9268,6.358,310 +6615,11560,High Crimes,"A female attorney learns that her husband is really a marine officer awol for fifteen years and accused of murdering fifteen civilians in El Salvador. Believing her husband when he tells her that he's being framed as part of a U.S. Military cover-up, the attorney defends him in a military court.",2002-04-05,3.09,6.358,820 +6616,736790,Chupa,"While visiting family in Mexico, a lonely boy befriends a mythical creature hiding on his grandfather's ranch and embarks on the adventure of a lifetime.",2023-04-07,1.7083,6.357,357 +6617,13394,Shrek the Halls,"The Christmas tree isn't the only thing green in this new holiday classic. Shrek is back and trying to get into the spirit of the season. After promising Fiona and the kids a Christmas they'll remember, he is forced to take a crash course in the holiday. But just when he thinks he has everything for their quiet family Christmas just right, there is a knock at the door.",2007-11-28,3.867,6.357,876 +6618,11913,The Gendarme Takes Off,"The whole clique of Cruchot's police station is retired. Now he lives with his rich wife in her castle - and is bored almost to death. He fights with the butler, because he isn't even allowed to do the simple works. But when one of the clique suffers from amnesia after an accident, all of the others reunite and kidnap him, to take him on a tour to their old working places and through their memories. In their old uniforms they turn St. Tropez upside down.",1970-10-28,1.3529,6.357,524 +6619,539649,The Lie,"A father and daughter are on their way to dance camp when they spot the girl's best friend on the side of the road. When they stop to offer the friend a ride, their good intentions soon result in terrible consequences.",2018-09-13,2.2701,6.356,744 +6620,44269,All That Glitters,"Best friends Ely and Lila share everything together, including their dream of a life beyond the Paris suburb they've lived in since childhood. One night they venture into the capital and meet a pair of wealthy young friends at a night club. Ashamed of their working-class background, and seeing an opportunity to escape, Ely and Lila begin to lie their way into this glamorous new world. Falling deeper into their web of lies, the young women begin to lose sight of themselves as their friendship is pushed to the limit.",2010-03-24,0.7922,6.4,752 +6621,15596,Back to School,"Self-made millionaire Thornton Melon decides to get a better education and enrolls at his son Jason's college. While Jason tries to fit in with his fellow students, Thornton struggles to gain his son's respect, giving way to hilarious antics.",1986-06-13,1.6019,6.356,458 +6622,587996,Below Zero,"When a prisoner transfer van is attacked, the cop in charge must fight those inside and outside while dealing with a silent foe: the icy temperatures.",2021-01-29,1.2687,6.355,930 +6623,438808,White Boy Rick,"The story of Richard Wershe Jr., a teenager who became an undercover informant for the police during the 1980s, and was ultimately arrested for drug trafficking and sentenced to life in prison.",2018-09-14,3.0246,6.355,1128 +6624,438259,Journey's End,"Set in a dugout in Aisne in 1918, a group of British officers, led by the mentally disintegrating young officer Stanhope, variously await their fate.",2017-12-14,1.8612,6.355,307 +6625,48231,A Dangerous Method,"Seduced by the challenge of an impossible case, the driven Dr. Carl Jung takes the unbalanced yet beautiful Sabina Spielrein as his patient. Jung’s weapon is the method of his master, the renowned Sigmund Freud. Both men fall under Sabina’s spell.",2011-09-30,2.0123,6.355,2122 +6626,38357,Morning Glory,"A young and devoted morning television producer is hired as an executive producer on a long-running morning show at a once-prominent but currently failing station in New York City. Eager to keep the show on air, she recruits a former news journalist and anchor who disapproves of co-hosting a show that does not deal with real news stories.",2010-11-10,2.5522,6.355,1541 +6627,26170,Coogan's Bluff,"Coogan, an Arizona deputy sheriff goes to New York to pick up a prisoner. While escorting the prisoner to the airport, he escapes and Coogan heads into the city to recapture him.",1968-10-02,1.7779,6.4,339 +6628,608980,Three Floors,Follows the lives of three families who live in a three-story building in a Roman neighbourhood.,2021-09-23,0.5103,6.4,301 +6629,12403,A Perfect Getaway,"For their honeymoon, newlyweds Cliff and Cydney head to the tropical islands of Hawaii. While journeying through the paradisaical countryside the couple encounters Kale and Cleo, two disgruntled hitchhikers and Nick and Gina, two wild but well-meaning spirits who help guide them through the lush jungles. The picturesque waterfalls and scenic mountainsides quickly give way to terror when Cliff and Cydney learn of a grisly murder that occurred nearby and realize that they're being followed by chance acquaintances that suspiciously fit the description of the killers.",2009-06-08,2.203,6.354,1314 +6630,11653,The Myth,"When a fellow scientist asks for Jack's help in locating the mausoleum of China's first emperor, the past collides violently with the present as Jack discovers his amazing visions are based in fact.",2005-05-11,2.3389,6.4,386 +6631,746333,Superwho?,"A struggling actor seems doomed to live life as a loser. When he finally snatches a lead role as a superhero named “Badman,” he feels like everything is possible, but fate strikes again.",2022-02-02,1.3267,6.4,510 +6632,290751,Secret in Their Eyes,"A tight-knit team of FBI investigators, along with their District Attorney supervisor, is suddenly torn apart when they discover that one of their own teenage daughters has been brutally murdered.",2015-10-14,2.7829,6.353,1381 +6633,7220,The Punisher,"When undercover FBI agent Frank Castle's wife and son are slaughtered, he becomes 'the Punisher' -- a ruthless vigilante willing to go to any length to avenge his family.",2004-04-15,5.9649,6.353,2957 +6634,602147,Inheritance,"The patriarch of a wealthy and powerful family suddenly passes away, leaving his wife and daughter with a shocking secret inheritance that threatens to unravel and destroy their lives.",2020-04-30,4.5348,6.352,684 +6635,408033,Tamara,"Tamara, 15, complexed with her curves, decided its entry into second to get rid of the label of ""big"". To shut up the gossip, she made a bet with her best friend to go out with the first boy who pass the classroom door. No luck, the boy turns out to be Diego, the most handsome guy of high school. The bet is complicated for Tamara .... Between the dirty tricks of the mean girls of high school, a mother hen, boards ""drag"" his little sister, Tamara is a memorable year!",2016-10-26,0.6893,6.4,640 +6636,118293,The Suicide Shop,"In a cold French city where suicide is a common urge, there is a colorful shop, managed for many years by the Tuvache family, where it is very easy to obtain the necessary tools to satisfy the sinister desires of so many depressed citizens.",2012-09-26,1.2477,6.352,610 +6637,24929,Return of the Living Dead Part II,"A group of kids discover one of the drums containing a rotting corpse and release the 2-4-5 Trioxin gas into the air, causing the dead to once again rise from the grave and seek out brains.",1988-01-15,1.5353,6.352,653 +6638,18487,The Taking of Pelham 1 2 3,"Armed men hijack a New York City subway train, holding the passengers hostage in return for a ransom, and turning an ordinary day's work for dispatcher Walter Garber into a face-off with the mastermind behind the crime.",2009-06-10,3.4561,6.352,3220 +6639,12308,The Last Kiss,"Giulia and Carlo have been happy together for three years, but Giulia's announcement that she is pregnant sends him into a secret panic. Terrified at his imminent entry into the adult world of irreversible responsibilities, Carlo finds himself tempted by a bewitching 18-year-old girl, Francesca, whom he meets by chance at a wedding. The possibility of one last youthful crazy fling before the impending prison of parenthood proves to be too attractive to resist.",2001-02-01,0.9553,6.352,517 +6640,29437,Rabid,"After undergoing radical surgery for injuries from a motorcycle accident, a young woman develops a retractable, vampiric stinger in her armpit and a thirst for human blood.",1977-04-08,1.627,6.4,517 +6641,22824,The Fourth Kind,"Since the 1960s, a disproportionate number of the population in and around Nome, Alaska, have gone missing. Despite FBI investigations, the disappearances remain a mystery. Dr. Abigail Tyler, a psychologist, may be on the verge of blowing the unsolved cases wide open when, during the course of treating her patients, she finds evidence of alien abductions.",2009-11-05,4.1824,6.351,1794 +6642,15449,La Tour Montparnasse Infernale,"Eric and Ramzy are working as window washers at the Montparnasse skyscraper in Paris. Thinking that he has a date set up with beautiful executive Marie-Joelle (who in reality hates his guts), Ramzy stays at work late while Eric hangs around with him. As a result, the pair witness a gang of terrorists seize the tower and take its late-night occupants (including Marie- Joelle) hostage. Knowing that only they can save the day, Eric and Ramzy swing into action.",2001-03-28,1.5063,6.351,883 +6643,593910,Cinderella,"Cinderella, an orphaned girl with an evil stepmother, has big dreams and with the help of her Fabulous Godmother, she perseveres to make them come true.",2021-09-03,5.107,6.3,1426 +6644,157360,In a World...,"An underachieving vocal coach is motivated by her father, the king of movie-trailer voice-overs, to pursue her aspirations of becoming a voice-over star. Amidst pride, sexism and family dysfunction, she sets out to change the voice of a generation.",2013-08-09,1.3592,6.3,538 +6645,10028,Honey,"Honey Daniels dreams of making a name for herself as a hip-hop choreographer. When she's not busy hitting downtown clubs with her friends, she teaches dance classes at a nearby community center in Harlem, N.Y., as a way to keep kids off the streets. Honey thinks she's hit the jackpot when she meets a hotshot director casts her in one of his music videos. But, when he starts demanding sexual favors from her, Honey makes a decision that will change her life.",2003-12-05,3.1882,6.35,1196 +6646,993784,Lisa Frankenstein,"In 1989, a misunderstood teenager has a high school crush — who just happens to be a handsome corpse! After a set of playfully horrific circumstances bring him back to life, the two embark on a murderous journey to find love, happiness…and a few missing body parts along the way.",2024-02-07,2.6607,6.349,463 +6647,986070,The Wrath of Becky,"Two years after she escaped a violent attack on her family, 16-year-old Becky attempts to rebuild her life in the care of an older woman -- a kindred spirit named Elena. However, when a violent group known as the Noble Men break into their home, attack them and take their beloved dog, Becky must return to her old ways to protect herself and her loved ones.",2023-05-26,2.6179,6.349,393 +6648,628900,The Contractor,"After being involuntarily discharged from the U.S. Special Forces, James Harper decides to support his family by joining a private contracting organization alongside his best friend and under the command of a fellow veteran. Overseas on a covert mission, Harper must evade those trying to kill him while making his way back home.",2022-03-10,3.9211,6.349,968 +6649,7512,Idiocracy,"To test its top-secret Human Hibernation Project, the Pentagon picks the most average Americans it can find - an Army private and a prostitute - and sends them to the year 2505 after a series of freak events. But when they arrive, they find a civilization so dumbed-down that they're the smartest people around.",2006-09-01,6.0513,6.349,3211 +6650,1619,The Way of the Gun,Two criminal drifters without sympathy get more than they bargained for after kidnapping and holding for ransom the surrogate mother of a powerful and shady man.,2000-09-08,1.6235,6.349,459 +6651,1247,The Good Shepherd,"Edward Wilson, the only witness to his father's suicide and member of the Skull and Bones Society while a student at Yale, is a morally upright young man who values honor and discretion, qualities that help him to be recruited for a career in the newly founded OSS. His dedication to his work does not come without a price though, leading him to sacrifice his ideals and eventually his family.",2006-12-11,2.8383,6.349,1202 +6652,332567,The Shallows,"While surfing on a secluded beach, Nancy finds herself in the feeding grounds of a great white shark. Though stranded only 200 yards from shore, survival proves to be the ultimate test of wills, requiring all of her ingenuity, resourcefulness, and fortitude.",2016-06-24,4.012,6.348,5162 +6653,124905,Godzilla,"Ford Brody, a Navy bomb expert, has just reunited with his family in San Francisco when he is forced to go to Japan to help his estranged father, Joe. Soon, both men are swept up in an escalating crisis when an ancient alpha predator arises from the sea to combat malevolent adversaries that threaten the survival of humanity. The creatures leave colossal destruction in their wake, as they make their way toward their final battleground: San Francisco.",2014-05-14,8.1795,6.348,9383 +6654,49529,John Carter,"John Carter is a war-weary, former military captain who's inexplicably transported to the mysterious and exotic planet of Barsoom (Mars) and reluctantly becomes embroiled in an epic conflict. It's a world on the brink of collapse, and Carter rediscovers his humanity when he realizes the survival of Barsoom and its people rests in his hands.",2012-03-07,5.785,6.349,5824 +6655,13600,City of Ember,"For generations, the people of the City of Ember have flourished in an amazing world of glittering lights. But Ember's once powerful generator is failing and the great lamps that illuminate the city are starting to flicker. Now, two teenagers, in a race against time, must search Ember for clues that will unlock the ancient mystery of the city's existence, before the the lights go out forever.",2008-10-07,3.4403,6.348,1788 +6656,11060,Internal Affairs,"Keen young Raymold Avila joins the Internal Affairs Department of the Los Angeles police. He and partner Amy Wallace are soon looking closely at the activities of cop Dennis Peck whose financial holdings start to suggest something shady. Indeed Peck is involved in any number of dubious or downright criminal activities. He is also devious, a womaniser, and a clever manipulator, and he starts to turn his attention on Avila.",1990-01-12,2.6579,6.348,412 +6657,10056,Killer's Kiss,"Davey Gordon, a New York City boxer at the end of his career, falls for dancer Gloria Price. However, their budding relationship is interrupted by Gloria's violent boss, Vincent Rapallo, who has eyes for Gloria. The two decide to skip town, but before they can, Vincent and his thugs abduct Gloria, and Davey is forced to search for her among the most squalid corners of the city, with his enemy hiding in the shadows.",1955-10-01,1.0237,6.348,564 +6658,8960,Hancock,"Hancock is a down-and-out superhero who's forced to employ a PR expert to help repair his image when the public grows weary of all the damage he's inflicted during his lifesaving heroics. The agent's idea of imprisoning the antihero to make the world miss him proves successful, but will Hancock stick to his new sense of purpose or slip back into old habits?",2008-07-01,6.3957,6.348,9857 +6659,8386,How High,"Multi-platinum rap superstars Redman and Method Man star as Jamal and Silas, two regular guys who smoke something magical, ace their college entrance exams and wind up at Harvard. Ivy League ways are strange but Silas and Jamal take it in a stride -- until their supply of supernatural smoke runs dry. That's when they have to start living by their wits and rely on their natural resources to make the grade.",2001-12-21,3.5284,6.348,981 +6660,82525,Savages,Pot growers Ben and Chon face off against the Mexican drug cartel who kidnapped their shared girlfriend.,2012-07-06,2.5777,6.347,2190 +6661,429351,12 Strong,A team of special forces head into Afghanistan in the aftermath of the September 11th attacks in an attempt to dismantle the Taliban.,2018-01-18,4.302,6.347,3065 +6662,420634,Terrifier,A maniacal clown named Art terrorizes three young women on Halloween night and everyone else who stands in his way.,2018-01-25,10.3204,6.349,2736 +6663,137116,Smurfs: The Lost Village,"In this fully animated, all-new take on the Smurfs, a mysterious map sets Smurfette and her friends Brainy, Clumsy and Hefty on an exciting race through the Forbidden Forest leading to the discovery of the biggest secret in Smurf history.",2017-03-23,6.188,6.345,1487 +6664,76163,The Expendables 2,"Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.",2012-08-08,7.2681,6.346,6893 +6665,11427,Dead End,"Christmas Eve. On his way to his in-laws with his family, Frank Harrington decides to try a shortcut, for the first time in 20 years. It turns out to be the biggest mistake of his life.",2003-12-12,1.4307,6.346,557 +6666,2267,The Last Mimzy,"Two siblings begin to develop special talents after they find a mysterious box of toys, and soon their parents and even their teacher are drawn into a strange new world – and find a task ahead of them that is far more important than any of them could imagine.",2007-02-09,1.304,6.346,465 +6667,415401,The Party,"Various individuals think they’re coming together for a party in a private home, but a series of revelations results in a huge crisis that throws their belief systems – and their values – into total disarray.",2017-07-27,1.5218,6.345,564 +6668,179538,Witching & Bitching,A gang of gold thieves land in a coven of witches who are preparing for an ancient ritual... and in need of a sacrifice.,2013-09-20,1.5036,6.345,656 +6669,81342,Delicacy,A French woman mourning over the death of her husband three years prior is courted by a Swedish co-worker.,2011-12-20,1.9732,6.348,460 +6670,41283,Faster,"After 10 years in prison, Driver is now a free man with a single focus - hunting down the people responsible for brutally murdering his brother.",2010-11-23,3.7886,6.345,1983 +6671,10491,Enigma,"The story of the WWII project to crack the code behind the Enigma machine, used by the Germans to encrypt messages sent to their submarines.",2001-01-22,1.6635,6.345,309 +6672,833326,Zero Fucks Given,"Cassandre, 26, is a flight attendant for a low-cost airline. Based in Lanzarote, she’s always willing to take on extra hours and carries out her duties with robotic efficiency. On the side, she just goes with the flow and floats between Tinder, parties and lazy days. When she suddenly gets dismissed, she is forced to return home.",2022-03-02,1.9504,6.341,422 +6673,623491,The Babysitter: Killer Queen,"Two years after defeating a satanic cult led by his babysitter Bee, Cole's trying to forget his past and focus on surviving high school. But when old enemies unexpectedly return, Cole will once again have to outsmart the forces of evil.",2020-09-10,3.97,6.344,1724 +6674,509967,6 Underground,"After faking his death, a tech billionaire recruits a team of international operatives for a bold and bloody mission to take down a brutal dictator.",2019-12-10,5.2623,6.344,4918 +6675,13022,Rogue,"When a group of tourists stumble into the remote Australian river territory of an enormous crocodile, the deadly creature traps them on a tiny mud island with the tide quickly rising and darkness descending. As the hungry predator closes in, they must fight for survival against all odds.",2007-11-08,3.5431,6.344,716 +6676,202575,The House of Magic,"Thunder, an abandoned young cat seeking shelter from a storm, stumbles into the strangest house imaginable, owned by an old magician and inhabited by a dazzling array of automatons and gizmos. Not everyone welcomes the new addition to the troupe as Jack Rabbit and Maggie Mouse plot to evict Thunder. The situation gets worse when the magician lands in hospital and his scheming nephew sees his chance to cash in by selling the mansion. Our young hero is determined to earn his place and so he enlists the help of some wacky magician's assistants to protect his magical new home.",2013-12-24,2.6796,6.343,357 +6677,145197,Upstream Color,"A man and woman are drawn together, entangled in the lifecycle of an ageless organism. Identity becomes an illusion as they struggle to assemble the loose fragments of wrecked lives.",2013-04-05,0.9456,6.342,752 +6678,95608,The Only Living Boy in New York,"When a young man learns that his overbearing father is having an affair, he tries to stop it, only to be seduced by the older woman as well.",2017-07-27,1.6722,6.343,344 +6679,73873,Albert Nobbs,"Albert Nobbs struggles to survive in late 19th century Ireland, where women aren't encouraged to be independent. Posing as a man, so she can work as a butler in Dublin's most posh hotel, Albert meets a handsome painter and looks to escape the lie she has been living.",2011-12-21,1.8635,6.343,483 +6680,26389,From Paris with Love,"James Reese has a good job as an ambassador's aid in France, but his real passion is a side gig—working in a minor role in the CIA. He would love to be a full-fledged agent and can't believe his luck when he lands an assignment with Charlie Wax. Trigger-happy Charlie soon has James crying for his desk job, but when he learns that the same guys they're trying to catch are after him, James realises that Charlie may be his only hope of survival.",2010-02-04,8.2836,6.343,2149 +6681,1023922,MaXXXine,"In 1980s Hollywood, adult film star and aspiring actress Maxine Minx finally gets her big break. But as a mysterious killer stalks the starlets of Hollywood, a trail of blood threatens to reveal her sinister past.",2024-07-04,8.1113,6.343,1185 +6682,460846,Security,"An ex-special services veteran, down on his luck and desperate for work, takes a job as a security guard at a run-down mall in a rough area of town. On his first night on the job, he opens the door to a distraught and desperate young girl who has fled the hijacking of a Police motorcade that was transporting her to testify as a witness in a trial. Hot on her heels is the psychopathic hijacker and his team of henchmen, who will stop at nothing to extract and eliminate the witness.",2017-03-04,3.1912,6.342,919 +6683,13150,Pride and Glory,"A saga centered on a multi-generational family of New York City Police officers. The family's moral codes are tested when Ray Tierney, investigates a case that reveals an incendiary police corruption scandal involving his own brother-in-law. For Ray, the truth is revelatory, a Pandora's Box that threatens to upend not only the Tierney legacy but the entire NYPD.",2008-09-09,2.038,6.3,896 +6684,11680,The Miser,"Based on Molière's play. The children of Harpagon, Cléante and his sister Elise, are each in love but they still haven't spoken to their father yet. Harpagon is a miser who wants to choose the right man and the right woman for his children. When Cléante, at last, tries to speak to Harpagon, the old man informs the family that he wants to marry Marianne, the young girl loved by Cléante. Unaware of his son's sorrow, Harpagon doesn't understand why Cléante has become so angry with him.",1980-03-05,0.9859,6.3,447 +6685,10715,Looney Tunes: Back in Action,"Fed up with all the attention going to Bugs Bunny, Daffy Duck quits Hollywood, teams up with recently-fired stuntman Damien Drake Jr. and embarks on a round-the-world adventure, along with Bugs and The VP of Warner Bros. Their mission? Find Damien's father, and the missing blue diamond... and stay one step ahead of The Acme Corp., who wants the diamond for their own purposes.",2003-11-14,3.6768,6.342,1548 +6686,269148,Samba,"Samba migrated to France 10 years ago from Senegal, and has since been plugging away at various lowly jobs. Alice is a senior executive who has recently undergone a burnout. Both struggle to get out of their dead-end lives. Samba's willing to do whatever it takes to get working papers, while Alice tries to get her life back on track until fate draws them together.",2014-10-15,2.0458,6.341,955 +6687,10851,Revolver,"Hotshot gambler Jake Green is long on bravado and seriously short of common sense. Rarely is he allowed in any casino because he's a bona fide winner and, in fact, has taken so much money over the years that he's the sole client of his accountant elder brother, Billy. Invited to a private game, Jake is in fear of losing his life.",2005-09-11,5.1466,6.341,1438 +6688,315,"Faster, Pussycat! Kill! Kill!","A trio of thrill-seeking go-go dancers kidnap a young girl and attempt to seduce an old rancher and his two sons out of their small fortune, but their scheme doesn't play out as intended.",1965-08-06,0.9638,6.341,339 +6689,1233575,Black Bag,"When intelligence agent Kathryn Woodhouse is suspected of betraying the nation, her husband – also a legendary agent – faces the ultimate test of whether to be loyal to his marriage, or his country.",2025-03-12,8.5982,6.345,730 +6690,730047,Cyrano,"A man ahead of his time, Cyrano de Bergerac dazzles whether with ferocious wordplay at a verbal joust or with brilliant swordplay in a duel. But, convinced that his appearance renders him unworthy of the love of a devoted friend, the luminous Roxanne, Cyrano has yet to declare his feelings for her—and Roxanne has fallen in love, at first sight, with Christian.",2021-12-17,1.6798,6.34,307 +6691,413362,"Roman J. Israel, Esq.","Hard-nosed liberal lawyer Roman J. Israel has been fighting the good fight forever while others take the credit. When his partner – the firm's frontman – has a heart attack, Israel suddenly takes on that role. He soon discovers some unsettling truths about the firm – truths that conflict with his values of helping the poor and dispossessed – and finds himself in an existential crisis that leads to extreme actions.",2017-11-17,2.6597,6.34,1322 +6692,6951,Turner & Hooch,"Detective Scott Turner has three days left in the local police department before he moves to a bigger city to get some 'real' cases—not just misdemeanors. When Amos Reed is murdered, Scott sets himself on the case, but the closest thing to a witness to the murder is Reed's dog, Hooch, which Scott has to take care of—to avoid Hooch being 'put to sleep'.",1989-07-28,2.0754,6.339,1357 +6693,23631,Machete,"After being set-up and betrayed by the man who hired him to assassinate a Texas Senator, an ex-Federale launches a brutal rampage of revenge against his former boss.",2010-09-01,3.6699,6.339,3390 +6694,1063877,Don't Move,"A grieving woman in a secluded forest encounters a killer who injects her with a paralytic drug. As her body shuts down, her fight for survival begins.",2024-10-24,4.8003,6.338,852 +6695,630240,Titane,"A woman with a metal plate in her head from a childhood car accident embarks on a bizarre journey, bringing her into contact with a firefighter who's reunited with his missing son after 10 years.",2021-07-14,2.3629,6.338,1544 +6696,9785,The Invisible,After an attack leaves him in limbo -- invisible to the living and also near death -- a teenager discovers the only person who might be able help him is his attacker.,2007-04-27,1.265,6.338,552 +6697,2026,Hostage,"When a mafia accountant is taken hostage on his beat, a police officer – wracked by guilt from a prior stint as a negotiator – must negotiate the standoff, even as his own family is held captive by the mob.",2005-03-10,2.7614,6.337,1660 +6698,340837,A Cure for Wellness,"An ambitious young executive is sent to retrieve his company's CEO from an idyllic but mysterious ""wellness center"" at a remote location in the Swiss Alps but soon suspects that the spa's miraculous treatments are not what they seem.",2017-02-15,4.7763,6.337,3974 +6699,253279,The Trials of Cate McCall,"In order to be reinstated to the bar and recover custody of her daughter, a hotshot lawyer, now in recovery and on probation, must take on the appeal of a woman wrongfully convicted of murder.",2013-11-28,1.5542,6.337,300 +6700,121606,Resolution,"A man imprisons his estranged junkie friend in an isolated cabin in the boonies of San Diego to force him through a week of sobriety, but the events of that week are being mysteriously manipulated.",2013-01-25,1.059,6.3,408 +6701,11232,Kate & Leopold,"When her scientist ex-boyfriend discovers a portal to travel through time -- and brings back a 19th-century nobleman named Leopold to prove it -- a skeptical Kate reluctantly takes responsibility for showing Leopold the 21st century. The more time Kate spends with Leopold, the harder she falls for him. But if he doesn't return to his own time, his absence will forever alter history.",2001-12-25,3.1742,6.337,1406 +6702,2116,Out of Time,"Matt Lee Whitlock, respected chief of police in small Banyan Key, Florida, must solve a vicious double homicide before he himself falls under suspicion. Matt Lee has to stay a few steps ahead of his own police force and everyone he's trusted in order to find out the truth.",2003-10-03,4.1377,6.338,1228 +6703,604822,Vanguard,Covert security company Vanguard is the last hope of survival for an accountant after he is targeted by the world's deadliest mercenary organization.,2020-01-22,3.3295,6.3,564 +6704,528491,WHAT DID JACK DO?,"In a locked down train station, a homicide detective conducts an interview with a tormented monkey who is suspected of murder.",2017-11-08,1.2099,6.336,500 +6705,455476,Knights of the Zodiac,"When a headstrong street orphan, Seiya, in search of his abducted sister unwittingly taps into hidden powers, he discovers he might be the only person alive who can protect a reincarnated goddess, sent to watch over humanity. Can he let his past go and embrace his destiny to become a Knight of the Zodiac?",2023-04-27,4.5771,6.3,1210 +6706,250225,The Duke of Burgundy,"Day in and day out, lovers Cynthia and Evelyn enact an elaborate sadomasochistic fantasy as mistress and maid. But as their ritual of domination and submission begins to turn stale, Cynthia yearns for something more conventional, while Evelyn tries to push their taboos even further.",2014-10-18,1.4474,6.336,348 +6707,203739,Vampire Academy,"Rose, a rebellious half-vampire/half-human guardian-in-training and her best friend, Lissa -- a mortal, royal vampire Princess - have been on the run when they are captured and returned to St. Vladamirs Academy, the very place where they believe their lives may be in most jeopardy. Rose will sacrifice everything to protect Lissa from those who intend to exploit her from within the Academy walls and the Strigoi (immortal, evil vampires) who hunt her kind from outside its sanctuary.",2014-02-07,2.5435,6.336,1771 +6708,18269,Lady and the Tramp II: Scamp's Adventure,"Lady and Tramp's mischievous pup, Scamp, gets fed up with rules and restrictions imposed on him by life in a family, and longs for a wild and free lifestyle. He runs away from home and into the streets where he joins a pack of stray dogs known as the ""Junkyard Dogs."" Buster, the pack's leader, takes an instant disliking to the ""house-dog"" and considers him a rival. Angel, a junkyard pup Scamp's age, longs for the safety and comfort of life in a family and the two become instant companions. Will Scamp choose the wild and free life of a stray or the unconditional love of his family?",2001-02-18,3.3616,6.336,1282 +6709,8965,Atlantis: Milo's Return,Milo and Kida reunite with their friends to investigate strange occurances around the world that seem to have links to the secrets of Atlantis.,2003-02-25,3.3738,6.336,3863 +6710,222461,Wer,"A defense attorney begins to suspect that her client, who is charged with the murders of a vacationing family, might be more than meets the eye.",2013-11-16,1.3914,6.3,440 +6711,9777,Proof,"Catherine is a woman in her late twenties who is strongly devoted to her father, Robert, a brilliant and well-known mathematician whose grip on reality is beginning to slip away. As Robert descends into madness, Catherine begins to wonder if she may have inherited her father's mental illness along with his mathematical genius.",2005-09-05,1.4395,6.335,699 +6712,753342,Napoleon,"An epic that details the checkered rise and fall of French Emperor Napoleon Bonaparte and his relentless journey to power through the prism of his addictive, volatile relationship with his wife, Josephine.",2023-11-22,7.2088,6.334,2812 +6713,521034,The Secret Garden,"Mary Lennox is born in India to wealthy British parents who never wanted her. When her parents suddenly die, she is sent back to England to live with her uncle. She meets her sickly cousin, and the two children find a wondrous secret garden lost in the grounds of Misselthwaite Manor.",2020-07-08,2.2975,6.334,592 +6714,169917,A Walk Among the Tombstones,Private investigator Matthew Scudder is hired by a drug kingpin to find out who kidnapped and murdered his wife.,2014-09-18,5.1469,6.334,2875 +6715,38448,Ondine,"On the coast of Cork, Syracuse is a divorced fisherman who has stopped drinking. His precocious daughter Annie has failing kidneys. One day, he finds a nearly-drowned young woman in his net; she calls herself Ondine and wants no one to see her. He puts her up in an isolated cottage that was his mother's. Annie discovers Ondine's presence and believes she is a selkie, a seal that turns human while on land. Syracuse is afraid to hope again.",2010-03-05,1.6632,6.3,325 +6716,976720,Vesper,"After the collapse of Earth's ecosystem, Vesper, a 13-year-old girl struggling to survive with her paralyzed Father, meets a mysterious Woman with a secret that forces Vesper to use her wits, strength and bio-hacking abilities to fight for the possibility of a future.",2022-08-17,1.7558,6.333,626 +6717,970347,The Killer,"Zee is a feared contract killer known as ""the Queen of the Dead,"" but when she refuses to murder a young blind woman, she finds herself hunted both by criminal colleagues and a determined police detective.",2024-08-22,5.1029,6.333,448 +6718,920081,Megaboa,"On a trip to Colombia, a group of college students encounter a fifty-foot boa constrictor, hungry for blood.",2021-11-26,1.6529,6.333,466 +6719,483906,Polar,"When a retiring assassin realizes that he is the target of a hit, he winds up back in the game going head to head with a gang of younger, ruthless killers.",2019-01-25,10.1397,6.333,2320 +6720,478820,The Emperor of Paris,"Paris, France, early 19th century. The legendary convict François Vidocq lives in disguise trying to escape from a tragic past that torments him. When, after an unfortunate event, he crosses paths with the police chief, he makes a bold decision that will turn the ruthless mastermind of the Parisian underworld against him.",2018-12-19,3.0884,6.333,508 +6721,381034,I Am Not a Serial Killer,"In a small Midwestern town, a troubled teen with homicidal tendencies must hunt down and destroy a supernatural killer while keeping his own inner demons at bay.",2016-08-26,1.2896,6.333,496 +6722,10358,Zack and Miri Make a Porno,"Lifelong platonic friends Zack and Miri look to solve their respective cash-flow problems by making an adult film together. As the cameras roll, however, the duo begin to sense that they may have more feelings for each other than they previously thought.",2008-09-18,3.6697,6.333,2503 +6723,9349,Universal Soldier,"An American soldier who had been killed during the Vietnam War is revived 25 years later by the military as a semi-android, UniSols, a high-tech soldier of the future. After the failure of the initiative to erase all the soldier's memories, he begins to experience flashbacks that are forcing him to recall his past.",1992-07-10,3.3777,6.333,1778 +6724,87421,Riddick,"Betrayed by his own kind and left for dead on a desolate planet, Riddick fights for survival against alien predators and becomes more powerful and dangerous than ever before. Soon bounty hunters from throughout the galaxy descend on Riddick only to find themselves pawns in his greater scheme for revenge. With his enemies right where he wants them, Riddick unleashes a vicious attack of vengeance before returning to his home planet of Furya to save it from destruction.",2013-09-02,4.7174,6.332,4218 +6725,77866,Contraband,"When his brother-in-law runs afoul of a drug lord, family man Chris Farraday turns to a skill he abandoned long ago—smuggling—to repay the debt. But the job goes wrong, and Farraday finds himself wanted by cops, crooks and killers alike.",2012-01-12,2.8648,6.332,2107 +6726,49526,Premium Rush,"In Manhattan, a bike messenger picks up an envelope that attracts the interest of a dirty cop, who pursues the cyclist throughout the city.",2012-08-24,1.8946,6.332,2171 +6727,31867,Repo Men,"In the future, medical technology has advanced to the point where people can buy artificial organs to extend their lives. But if they default on payments, an organization known as the Union sends agents to repossess the organs. Remy is one of the best agents in the business, but when he becomes the recipient of an artificial heart, he finds himself in the same dire straits as his many victims.",2010-03-18,2.4651,6.332,1973 +6728,11890,Oscar,"Angelo ""Snaps"" Provolone made his dying father a promise on his deathbed: he would leave the world of crime and become an honest businessman. Despite having no experience in making money in a legal fashion, Snaps sets about to keep his promise.",1991-04-26,1.7653,6.332,529 +6729,963765,Strange Way of Life,"After 25 years, an ex hired gun visits his old colleague, who is now a small town sheriff. Their past relationship is explored, as is how they reflect on it in the present.",2023-05-26,1.4234,6.331,343 +6730,619278,Inside Man: Most Wanted,An NYPD hostage negotiator teams up with a federal agent to rescue dozens of tourists held hostage during a 10-hour seige at the U.S. Federal Reserve.,2019-09-24,2.7429,6.331,354 +6731,602269,The Little Things,"Deputy Sheriff Joe ""Deke"" Deacon joins forces with Sgt. Jim Baxter to search for a serial killer who's terrorizing Los Angeles. As they track the culprit, Baxter is unaware that the investigation is dredging up echoes of Deke's past, uncovering disturbing secrets that could threaten more than his case.",2021-01-28,4.0357,6.3,2628 +6732,16229,Prozac Nation,"When talented young writer Elizabeth Wurtzel earns a scholarship to Harvard, she sees it as her chance to escape the pressures of her working-class background and concentrate on her true talent. But what starts out so promising leads to self-destructive behavior and paralyzing depression that reflects an entire generation's struggle to navigate the effects of divorce, drugs, sex, and high expectations.",2001-09-08,1.3057,6.331,320 +6733,11905,The Company of Wolves,"An adaptation of Angela Carter's fairy tales. Young Rosaleen dreams of a village in the dark woods, where Granny tells her cautionary tales in which innocent maidens are tempted by wolves who are hairy on the inside. As Rosaleen grows into womanhood, will the wolves come for her too?",1984-09-21,1.8672,6.331,358 +6734,11041,The Beverly Hillbillies,"Jed Clampett and kin move from Arkansas to Beverly Hills when he becomes a billionaire, after an oil strike. The country folk are very naive with regard to life in the big city, so when Jed starts a search for a new wife there are inevitably plenty of takers and con artists ready to make a fast buck",1993-10-15,1.9828,6.331,559 +6735,10764,Quantum of Solace,"Betrayed by Vesper, the woman he loved, 007 fights the urge to make his latest mission personal. Pursuing his determination to uncover the truth, Bond and M interrogate Mr. White, who reveals that the organization that blackmailed Vesper is far more complex and dangerous than anyone had imagined.",2008-10-29,6.3759,6.331,8109 +6736,8839,Casper,"Casper is a kind young ghost who peacefully haunts a mansion in Maine. When specialist James Harvey arrives to communicate with Casper and his fellow spirits, he brings along his teenage daughter, Kat. Casper quickly falls in love with Kat, but their budding relationship is complicated not only by his transparent state, but also by his troublemaking apparition uncles and their mischievous antics.",1995-05-26,8.379,6.331,4700 +6737,733317,Monsters of Man,"A robotics company vying to win a lucrative military contract team up with a corrupt CIA agent to conduct an illegal live field test. They deploy four weaponized prototype robots into a suspected drug manufacturing camp in the Golden Triangle, assuming they'd be killing drug runners that no one would miss. Six doctors on a humanitarian mission witness the brutal slaughter and become prime targets.",2020-11-19,1.9146,6.329,363 +6738,524369,The Many Saints of Newark,"Young Anthony Soprano is growing up in one of the most tumultuous eras in Newark, N.J., history, becoming a man just as rival gangsters start to rise up and challenge the all-powerful DiMeo crime family. Caught up in the changing times is the uncle he idolizes, Dickie Moltisanti, whose influence over his nephew will help shape the impressionable teenager into the all-powerful mob boss, Tony Soprano.",2021-09-22,2.8256,6.33,700 +6739,320028,An Italian Name,"Paolo is an outgoing and handsome real estate broker married to Simona, a beautiful woman from the rough outskirts of Rome who has become an author of spicy bestsellers and is pregnant with their child. Betta, Paolo’s sister and her husband Sandro organise a dinner party with Paolo, Simona and their childhood friend, the eccentric musician Claudio. During the lively gathering Paolo reveals what he would like to name his son, causing reactions to steam up and a torrent of revelations to follow reaching climactic proportions.",2015-01-22,0.4585,6.3,333 +6740,22582,Tom and Jerry: The Movie,The popular cartoon cat and mouse are thrown into a feature film. The story has the twosome trying to help an orphan girl who is being berated and exploited by a greedy guardian.,1992-10-01,2.4618,6.33,593 +6741,2043,Along Came a Spider,"After the harrowing death of his partner, forensic psychologist and best-selling author Alex Cross cannot forgive himself and has retreated to the peace of retirement. But when a brilliant criminal kidnaps a senator's young daughter, he is lured back into action as the kidnapper wants to deal with Alex personally. Teamed with Jezzie Flanigan, the Secret Service agent assigned to protect the missing girl, Alex follows a serpentine trail of clues that leads him to a stunning discovery - the kidnapper wants more than just ransom.",2001-04-06,3.7826,6.329,1914 +6742,331836,Babysitting 2,"Franck and his girlfriend Sonya, plus some of their friends go on holiday in Brazil. Franck, his friends, two girls and Sonya's grandmother leave to visit a cave, but everything goes wrong and their crazy adventures begin.",2015-12-02,1.3792,6.329,1372 +6743,67748,Snowtown,"Based on true events, 16 year-old Jamie falls in with his mother's new boyfriend and his crowd of self-appointed neighborhood watchmen, a relationship that leads to a spree of torture and murder.",2011-05-19,2.997,6.329,325 +6744,52520,Underworld: Awakening,"Having escaped years of imprisonment, vampire warrioress Selene finds herself in a changed world where humans have discovered the existence of both Vampire and Lycan clans and are conducting an all-out war to eradicate both immortal species. Now Selene must battle the humans and a frightening new breed of super Lycans to ensure the death dealers' survival.",2012-01-19,4.8646,6.329,4177 +6745,44244,Camp Rock 2: The Final Jam,"Mitchie can't wait to go back to Camp Rock and spend the summer making new music with her friends and superstar Shane Gray. But the slick new camp across the lake, Camp Star, has drummed up some serious competition – featuring newcomers Luke and Dana. In a sensational battle of the bands, with Camp Rock's future at stake, will Camp Star's flashy production and over-the-top antics win out, or will Camp Rockers prove that music, teamwork, and spirit are what truly matter?",2010-09-17,2.3795,6.329,1532 +6746,12912,Chaos Theory,"Frank Allen, a professional speaker who lectures on time management has a perfectly ordered and scheduled life, down to the minute. When his wife sets his clock forward 10 minutes as a joke, his day is thrown off. Deciding that his strictly ordered life has done him little good, he begins to make multiple choice index cards, choosing one at random and doing what is written on the card.",2008-04-11,1.6924,6.3,404 +6747,11358,Walking Tall,"A former U.S. soldier returns to his hometown to find it overrun by crime and corruption, which prompts him to clean house.",2004-04-02,3.3839,6.329,1554 +6748,11191,Mystic Pizza,"Three teenage girls come of age while working at a pizza parlor in Mystic, Connecticut.",1988-10-13,2.6814,6.329,540 +6749,11096,Hide and Seek,"David Callaway tries to piece together his life in the wake of his wife's suicide and has been left to raise his nine-year-old daughter, Emily on his own. David is at first amused to discover that Emily has created an imaginary friend named 'Charlie', but it isn't long before 'Charlie' develops a sinister and violent side, and as David struggles with his daughter's growing emotional problems, he comes to the frightening realisation that 'Charlie' isn't just a figment of Emily's imagination.",2005-01-27,2.3465,6.329,1634 +6750,9407,Red Corner,"An American attorney on business in China, ends up wrongfully on trial for murder and his only key to innocence is a female defense lawyer from the country.",1997-10-30,2.3925,6.329,381 +6751,8856,The Karate Kid Part II,"Summoned by his dying father, Miyagi returns to his homeland of Okinawa, with Daniel, after a 40-year exile. There he must confront Yukie, the love of his youth, and Sato, his former best friend turned vengeful rival. Sato is bent on a fight to the death, even if it means the destruction of their village. Daniel finds his own love in Yukia's niece, Kumiko, and his own enemy in Sato's nephew, the vicious Chozen. Now, far away from the tournaments, cheering crowds and safety of home, Daniel will face his greatest challenge ever when the cost of honor is life itself.",1986-06-18,6.2114,6.329,2331 +6752,910571,Fair Play,"An unexpected promotion at a cutthroat hedge fund pushes a young couple's relationship to the brink, threatening to unravel not only their recent engagement but their lives.",2023-09-28,3.7413,6.3,558 +6753,633604,Yummy,"A young couple travels to a shabby Eastern European hospital for plastic surgery. The young woman wants a breast reduction. Her mother comes along for yet another face-lift. Wandering through an abandoned ward the boyfriend stumbles upon a young woman, gagged and strapped to an operating table; she is the result of an experimental rejuvenation treatment. He frees her, but does not realize he just caused the outbreak of a virus that will change doctors, patients and his mother-in-law into bloodthirsty zombies.",2019-12-13,2.4483,6.328,319 +6754,511987,Crawl,"When a huge hurricane hits her hometown in Florida, Haley ignores evacuation orders to look for her father. After finding him badly wounded, both are trapped by the flood. With virtually no time to escape the storm, they discover that rising water levels are the least of their problems.",2019-07-11,4.1218,6.328,3213 +6755,152599,The Immigrant,1921 New York. An immigrant woman is tricked into a life of burlesque and vaudeville until a dazzling magician tries to save her and reunite her with her sister who is being held in the confines of Ellis Island.,2013-11-27,2.0459,6.327,838 +6756,9273,Ace Ventura: When Nature Calls,"Summoned from an ashram in Tibet, Ace finds himself on a perilous journey into the jungles of Africa to find Shikaka, the missing sacred animal of the friendly Wachati tribe. He must accomplish this before the wedding of the Wachati's Princess to the prince of the warrior Wachootoos. If Ace fails, the result will be a vicious tribal war.",1995-11-10,4.2013,6.327,4303 +6757,631843,Old,A group of families on a tropical holiday discover that the secluded beach where they are staying is somehow causing them to age rapidly – reducing their entire lives into a single day.,2021-07-21,4.5649,6.326,4645 +6758,512196,Happy Death Day 2U,"Collegian Tree Gelbman wakes up in horror to learn that she's stuck in a parallel universe. Her boyfriend Carter is now with someone else, and her friends and fellow students seem to be completely different versions of themselves. When Tree discovers that Carter's roommate has been altering time, she finds herself once again the target of a masked killer. When the psychopath starts to go after her inner circle, Tree soon realizes that she must die over and over again to save everyone.",2019-02-13,3.5982,6.326,3498 +6759,326423,Barbershop: The Next Cut,"To survive harsh economic times, Calvin and Angie have merged the barbershop and beauty salon into one business. The days of male bonding are gone as Eddie and the crew must now contend with sassy female co-workers and spirited clientele. As the battle of the sexes rages on, a different kind of conflict has taken over Chicago. Crime and gangs are on the rise, leaving Calvin worried about the fate of his son. Together, the friends come up with a bold plan to take back their beloved neighborhood.",2016-04-15,2.4093,6.326,475 +6760,24869,Ink,"Invisible forces exert power over us in our sleep. A mercenary named Ink, on a literal nightmare mission, captures the spirit of 8-year-old Emma in the dream world. To save her, the dream-givers marshal all their resources, focusing on saving the soul of Emma's tragically broken father.",2009-01-23,1.1568,6.326,311 +6761,10426,Friday After Next,"Craig and his cousin Day Day have finally moved out of their parents' houses and into their own crib, working nights at a local mall as security guards. When their house is robbed on Christmas Eve they set out to track down the culprit.",2002-11-22,1.9849,6.3,431 +6762,503616,Second Act,"Value Shop assistant manager Maya Vargas wants only one thing for her 43rd birthday -- a promotion. While her résumé may not scream upper management, her track record certainly does; she is an innovator who listens to her customers and delivers results. When she loses the job to a college-educated candidate, Maya sets out to prove to Madison Avenue that street smarts are as valuable as book smarts -- and it's never too late for a second act.",2018-11-22,2.3913,6.325,1218 +6763,477033,Errementari: The Blacksmith and the Devil,"Basque Country, Spain, 1843. A police constable arrives at a small village in Álava to investigate a mysterious blacksmith who lives alone deep in the woods.",2018-03-02,1.5934,6.325,564 +6764,145135,Dark Skies,"From the producers of Paranormal Activity, Insidious, and Sinister comes Dark Skies: a supernatural thriller that follows a young family living in the suburbs. As husband and wife Daniel and Lacey Barret witness an escalating series of disturbing events involving their family, their safe and peaceful home quickly unravels. When it becomes clear that the Barret family is being targeted by an unimaginably terrifying and deadly force, Daniel and Lacey take matters in their own hands to solve the mystery of what is after their family.",2013-02-21,2.9815,6.325,1838 +6765,82650,Diary of a Wimpy Kid: Dog Days,"It's summertime, and Greg Heffley is looking forward to playing video games and spending time with his friends. However, Greg's dad has other plans: He's decided that some father-son bonding time is in order. Desperate to prevent his dad from ruining summer vacation, Greg pretends he has a job at a ritzy country club. But Greg's plan backfires, leaving him in the middle of embarrassing mishaps and a camping trip gone wrong.",2012-08-02,3.6442,6.325,1002 +6766,11186,Child's Play 2,"Chucky is reconstructed by a toy factory to dispel the negative publicity surrounding the doll, and tracks young Andy Barclay to a foster home where the chase begins again.",1990-11-09,4.3524,6.326,1913 +6767,680860,I Want You Back,"Peter and Emma thought they were on the precipice of life’s biggest moments – marriage, kids, and houses in the suburbs – until their respective partners dumped them. Horrified to learn that the loves of their lives have already moved on, Peter and Emma hatch a hilarious plan to win back their exes with unexpected results.",2022-02-10,2.2654,6.324,343 +6768,592336,Don't Stop Me Now,"Paola, a modern woman used to the hardships of modern life, takes her chance to make things right for herself.",2019-04-18,0.5138,6.324,380 +6769,420648,The Bar,"In downtown Madrid, a series of mysterious gunshots trap a motley assortment of people in a decrepit bar.",2017-02-15,1.5632,6.324,1326 +6770,270938,Falcon Rising,"Chapman is an ex-marine in Brazil's slums, battling the yakuza outfit who attacked his sister and left her for dead.",2014-09-05,3.0389,6.324,363 +6771,18086,Fright Night Part 2,"After three years of therapy Charley Brewster, now a college student, is convinced that Jerry Dandridge was a serial killer posing as a vampire. But when Regine, a mysterious actress and her entourage move into Peter Vincent's apartment block, the nightmare starts again - and this time it's personal!",1988-04-07,1.9934,6.324,407 +6772,16577,Astro Boy,"Set in the futuristic Metro City, Astro Boy (Atom) is a young robot with incredible powers created by a brilliant scientist in the image of the son he had lost. Unable to fulfill his creator's expectations, Astro embarks on a journey in search of acceptance, experiencing betrayal and a netherworld of robot gladiators, before returning to save Metro City and reconcile with the father who rejected him.",2009-10-15,3.3286,6.324,1570 +6773,430231,The Endless,Two brothers return to the cult they fled from years ago to discover that the group's beliefs may be more sane than they once thought.,2017-11-05,2.2622,6.323,1175 +6774,28355,Case 39,"In her many years as a social worker, Emily Jenkins believes she has seen it all, until she meets 10-year-old Lilith and the girl's cruel parents. Emily's worst fears are confirmed when the parents try to harm the child, and so Emily assumes custody of Lilith while she looks for a foster family. However, Emily soon finds that dark forces surround the seemingly innocent girl, and the more she tries to protect Lilith, the more horrors she encounters.",2009-08-13,3.9189,6.323,2291 +6775,9945,Vampires,The church enlists a team of vampire-hunters to hunt down and destroy a group of vampires searching for an ancient relic that will allow them to exist in sunlight.,1998-10-30,2.6699,6.324,1286 +6776,455,Bend It Like Beckham,"Jess Bhamra, the daughter of a strict Indian couple in London, is not permitted to play organized soccer, even though she is 18. When Jess is playing for fun one day, her impressive skills are seen by Jules Paxton, who then convinces Jess to play for her semi-pro team. Jess uses elaborate excuses to hide her matches from her family while also dealing with her romantic feelings for her coach, Joe.",2002-04-11,2.4455,6.3,1941 +6777,399361,Triple Frontier,"Struggling to make ends meet, former special ops soldiers reunite for a high-stakes heist: stealing $75 million from a South American drug lord.",2019-03-06,5.2853,6.322,3344 +6778,36419,After.Life,"Following a terrible car crash, a woman awakes to find an enigmatic mortician preparing her for burial.",2009-11-07,6.0809,6.322,1163 +6779,8388,¡Three Amigos!,A trio of unemployed silent film actors are mistaken for real heroes by a small Mexican village in search of someone to stop a malevolent bandit.,1986-12-12,4.6075,6.322,1057 +6780,8216,Meet the Feebles,"Heidi, star of the ""Meet The Feebles Variety Hour"" discovers her lover Bletch the Walrus is cheating on her. And with all the world waiting for the show, the assorted co-stars must contend with drug addiction, extortion, robbery, disease, drug dealing, and murder.",1989-08-12,1.02,6.3,300 +6781,5289,Chaos,"In Seattle, detective Quentin Conners is unfairly suspended and his partner Jason York leaves the police force after a tragic shooting on Pearl Street Bridge, when the hostage and the criminal die. During a bank heist with a hostage situation, Conners is assigned in charge of the operation with the rookie Shane Dekker as his partner. The thieves, lead by Lorenz, apparently do not steal a penny from the bank. While chasing the gangsters, the police team disclose that they planted a virus in the system, stealing one billion dollars from the different accounts, using the principle of the Chaos Theory. Further, they find that Lorenz is killing his accomplices.",2005-01-17,2.9894,6.322,1087 +6782,592695,Pleasure,"19 year old Linnéa leaves her small town in Sweden and heads for Los Angeles with the aim of becoming the world's next big porn star, but the road to her goal turns out to be bumpier than she imagined.",2021-10-08,20.8846,6.321,702 +6783,40205,16 Wishes,"The story about Abby Jensen, a girl who's been eager to reach her 16th birthday and has kept a secret wish list since she was a little girl. When the Big Day actually arrives, utter disaster strikes, leaving Abby to think her birthday is ruined. But when a mysterious box of magical birthday candles arrives to turn things around, Abby's 16 Wishes start to come true. Her day gets better and better...until she makes one wish that threatens to change everything.",2010-10-02,2.7281,6.3,1334 +6784,10612,The Englishman Who Went Up a Hill But Came Down a Mountain,"When an English cartographer arrives in Wales to tell the residents of the Welsh village of Ffynnon Garw that their 'mountain' is only a hill, the offended community sets out to remedy the situation.",1995-05-12,1.6802,6.321,307 +6785,715123,Books of Blood,A journey into uncharted and forbidden territory through three tales tangled in space and time.,2020-10-07,2.4706,6.32,456 +6786,477489,Just a Breath Away,"When a deadly mist engulfs Paris, people find refuge in the upper floors of the buildings. With no information, no electricity and hardly any supplies, Mathieu, Anna and their daughter Sarah try to survive the disaster.",2018-04-04,2.4364,6.32,829 +6787,447200,Skyscraper,"Framed and on the run, a former FBI agent must save his family from a blazing fire in the world's tallest building.",2018-07-11,4.6941,6.321,5127 +6788,38117,Beastly,"A modern-day take on the ""Beauty and the Beast"" tale where a New York teen is transformed into a hideous monster in order to find true love.",2011-01-21,3.2198,6.32,2801 +6789,298312,The Visit,"A brother and sister are sent to their grandparents' remote Pennsylvania farm for a week, where they discover that the elderly couple is involved in something deeply disturbing.",2015-09-10,4.4373,6.319,4923 +6790,263281,My Summer in Provence,"In the wake of their parent's separation, three siblings spend the summer in the south of France with their estranged Grandfather. In less than 24 hours, a clash of generations has occurred between the teenagers and the old man. During this turbulent summer, both generations will be transformed by one another.",2014-04-02,1.8103,6.319,307 +6791,32613,Horror Express,Mysterious and unearthly deaths start to occur while Professor Saxton is transporting the frozen remains of a primitive humanoid creature he found in Manchuria back to Europe.,1972-09-30,1.6016,6.3,312 +6792,9501,Crying Freeman,"A lethal assassin for a secret Chinese organisation, who sheds tears of regret each time he kills, is seen swiftly and mercilessly executing three Yakuza gangsters by a beautiful artist. She is captivated by the grace of his kill and later falls in love with him. An intense power struggle for the leadership of the Yakuza Clans ensues as they seek vengeance for the death of their leader.",1995-04-23,1.6487,6.319,339 +6793,44754,Margaret,"A young woman witnesses a bus accident, and is caught up in the aftermath, where the question of whether or not it was intentional affects many people's lives.",2011-09-30,1.0234,6.3,308 +6794,10380,An American Tail: Fievel Goes West,"Some time after the Mousekewitz's have settled in America, they find that they are still having problems with the threat of cats. That makes them eager to try another home out in the west, where they are promised that mice and cats live in peace. Unfortunately, the one making this claim is an oily con artist named Cat R. Waul who is intent on his own sinister plan.",1991-11-21,2.7465,6.3,754 +6795,9964,Bad Taste,"A team from the intergalactic fast food chain Crumb's Crunchy Delights descends on Earth, planning to make human flesh the newest taste sensation. After they wipe out the New Zealand town Kaihoro, the country’s Astro-Investigation and Defense Service (AIaDS) is called in to deal with the problem. Things are complicated due to Giles, an aid worker who comes to Kaihoro the same day to collect change from the residents. He is captured by the aliens, and AIaDS stages a rescue mission that quickly becomes an all-out assault on the aliens’ headquarters.",1987-12-01,1.1546,6.318,866 +6796,25913,Balto: Wolf Quest,Balto and his daughter Aleu embark on a journey of adventure and self discovery.,2002-04-30,2.0029,6.3,543 +6797,11088,Heist,"Joe Moore has a job he loves. He's a thief. His job goes sour when he gets caught on security camera tape. His fence, Bergman, reneges on the money he's owed, and his wife may be betraying him with the fence's young lieutenant. Moore and his partner, Bobby Blane, and their utility man, Pinky Pincus, find themselves broke, betrayed, and blackmailed. Moore is forced to commit his crew to do one last big job.",2001-11-09,1.6223,6.317,571 +6798,431530,A Bad Moms Christmas,"Amy, Kiki and Carla – three under-appreciated and over-burdened women – rebel against the challenges and expectations of the Super Bowl for mothers: Christmas. And if creating a more perfect holiday for their families wasn’t hard enough, they have to do all of that while hosting and entertaining their own mothers.",2017-08-04,2.541,6.316,2134 +6799,10314,She's All That,"High school hotshot Zach Siler is the envy of his peers. But his popularity declines sharply when his cheerleader girlfriend, Taylor, leaves him for sleazy reality-television star Brock Hudson. Desperate to revive his fading reputation, Siler agrees to a seemingly impossible challenge. He has six weeks to gain the trust of nerdy outcast Laney Boggs -- and help her to become the school's next prom queen.",1999-01-29,3.9574,6.316,2135 +6800,10314,She's All That,"High school hotshot Zach Siler is the envy of his peers. But his popularity declines sharply when his cheerleader girlfriend, Taylor, leaves him for sleazy reality-television star Brock Hudson. Desperate to revive his fading reputation, Siler agrees to a seemingly impossible challenge. He has six weeks to gain the trust of nerdy outcast Laney Boggs -- and help her to become the school's next prom queen.",1999-01-29,3.9574,6.316,2135 +6801,9584,Convoy,"Trucker Rubber Duck and his buddies Pig Pen, Widow Woman and Spider Mike use their CB radios to warn one another of the presence of cops. But conniving Sheriff Wallace is hip to the truckers' tactics, and begins tricking the drivers through his own CB broadcasts. Facing constant harassment from the law, Rubber Duck and his pals use their radios to coordinate a vast convoy and rule the road.",1978-06-27,3.7238,6.316,393 +6802,549294,Synchronic,"Two New Orleans paramedics' lives are ripped apart after encountering a series of horrific deaths linked to a designer drug with bizarre, otherworldly effects.",2020-10-23,2.8553,6.315,1001 +6803,214756,Ted 2,"Newlywed couple Ted and Tami-Lynn want to have a baby, but in order to qualify to be a parent, Ted will have to prove he's a person in a court of law.",2015-06-25,9.6449,6.3,7694 +6804,7459,Speed Racer,"Speed Racer is a young and brilliant racing driver. When corruption in the racing leagues costs his brother his life, Speed must team up with the police and the mysterious Racer X to bring an end to the corruption and criminal activities.",2008-05-07,4.2506,6.315,1654 +6805,407439,Mary Magdalene,"In the first century, free-spirited Mary Magdalene flees the marriage her family has arranged for her, finding refuge and a sense of purpose in a radical new movement led by the charismatic, rabble-rousing preacher named Jesus.",2018-03-15,3.0655,6.314,550 +6806,27581,The Other Guys,"Unlike their heroic counterparts on the force, desk-bound NYPD detectives Gamble and Hoitz garner no headlines as they work day to day. When a seemingly minor case turns out to be a big deal, the two cops get the opportunity to finally prove to their comrades that they have the right stuff.",2010-08-06,5.3504,6.314,4327 +6807,18736,The Lizzie McGuire Movie,"Lizzie McGuire has graduated from middle school and takes a trip to Rome, Italy with her class. And what was supposed to be only a normal trip, becomes a teenager's dream come true.",2003-05-02,2.5173,6.314,1280 +6808,12721,"No Retreat, No Surrender","The mob is trying to strongarm local martial arts schools, forcing young Jason Stillwell and his family to move after his father is injured defending their dojo. With his father now rejecting violence, Jason is forced to train on his own to protect himself and his best friend from the members of a rival karate school.",1986-05-02,2.3527,6.314,588 +6809,11114,Pete's Dragon,"Pete, a young orphan, runs away to a Maine fishing town with his best friend a lovable, sometimes invisible dragon named Elliott! When they are taken in by a kind lighthouse keeper, Nora, and her father, Elliott's prank playing lands them in big trouble. Then, when crooked salesmen try to capture Elliott for their own gain, Pete must attempt a daring rescue.",1977-11-03,2.1038,6.314,699 +6810,9335,Transporter 2,"Professional driver, and former Special Forces officer, Frank Martin is living in Miami, where he is temporarily filling in for a friend as the chauffeur for a government narcotics control policy director and his family. The young boy in the family is targeted for kidnapping, and Frank immediately becomes involved in protecting the child and exposing the kidnappers.",2005-08-03,5.3825,6.3,3736 +6811,2320,Executive Decision,"Terrorists hijack a 747 inbound to Washington D.C., demanding the release of their imprisoned leader. Intelligence expert David Grant (Kurt Russell) suspects another reason and he is soon the reluctant member of a special assault team that is assigned to intercept the plane and hijackers.",1996-03-15,3.1888,6.314,973 +6812,1013860,R.I.P.D. 2: Rise of the Damned,"When Sheriff Roy Pulsipher finds himself in the afterlife, he joins a special police force and returns to Earth to save humanity from the undead.",2022-11-15,2.4822,6.3,632 +6813,838330,Not Okay,"An ambitious young woman, desperate for followers and fame, fakes a trip to Paris to up her social media presence. When a terrifying incident takes place in the real world and becomes part of her imaginary trip, her white lie becomes a moral quandary that offers her all the attention she’s wanted.",2022-07-29,2.006,6.313,474 +6814,264729,Off Course,"Two young Spanish men, with a university education, are tired of unemployment and decide to move to Germany. But soon they will find out that finding a better living is not as easy as they expected.",2015-03-03,0.7546,6.313,337 +6815,76122,Marvel One-Shot: The Consultant,"Agent Coulson informs Agent Sitwell that the World Security Council wishes Emil Blonsky to be released from prison to join the Avengers Initiative. As Nick Fury doesn't want to release Blonsky, the two agents decide to send a patsy to sabotage the meeting...",2011-09-13,1.7954,6.313,581 +6816,50698,Grave Encounters,A crew from a paranormal reality television show lock themselves in a haunted psychiatric hospital. They search for evidence of paranormal activity as they shoot what ends up becoming their final episode.,2011-09-09,3.1605,6.313,1547 +6817,16996,17 Again,"On the brink of a midlife crisis, 30-something Mike O'Donnell wishes he could have a ""do-over."" And that's exactly what he gets when he wakes up one morning to find he's 17 years old again. With his adult mind stuck inside the body of a teenager, Mike actually has the chance to reverse some decisions he wishes he'd never made. But maybe they weren't so bad after all.",2009-03-11,6.1436,6.313,5251 +6818,16441,The Beastmaster,"Dar, is the son of a king, who's hunted by a priest after his birth and grows up in another family. When he becomes a grown man, his new father is murdered by savages and he discovers that he's the ability to communicate with the animals, which leads him on his quest for revenge against his father's killers.",1982-08-16,2.3277,6.313,423 +6819,9490,Half Baked,"Three lovable party buds try to bail their friend out of jail. But just when the guys have mastered a plan, everything comes dangerously close to going up in smoke.",1998-01-16,1.5531,6.313,594 +6820,523607,Maestro,"A towering and fearless love story chronicling the lifelong relationship between Leonard Bernstein and Felicia Montealegre Cohn Bernstein. A love letter to life and art, Maestro at its core is an emotionally epic portrayal of family and love.",2023-11-22,2.262,6.312,765 +6821,325346,The Hollars,"Aspiring New York City artist John Hollar returns to his Middle America hometown on the eve of his mother’s brain surgery. Joined by his girlfriend, eight months pregnant with their first child, John is forced to navigate the crazy world he left behind.",2016-08-25,0.8316,6.3,311 +6822,9515,The Matador,"The life of Danny Wright, a salesman forever on the road, veers into dangerous and surreal territory when he wanders into a Mexican bar and meets a mysterious stranger, Julian, who's very likely a hit man. Their meeting sets off a chain of events that will change their lives forever, as Wright is suddenly thrust into a far-from-mundane existence that he takes to surprisingly well … once he gets acclimated to it.",2005-05-12,1.87,6.312,485 +6823,279641,Whiskey Tango Foxtrot,"In 2002, cable news producer Kim Barker decides to shake up her routine by taking a daring new assignment in Kabul, Afghanistan. Dislodged from her comfortable American lifestyle, Barker finds herself in the middle of an out-of-control war zone. Luckily, she meets Tanya Vanderpoel, a fellow journalist who takes the shell-shocked reporter under her wing. Amid the militants, warlords and nighttime partying, Barker discovers the key to becoming a successful correspondent.",2016-03-04,1.7206,6.3,998 +6824,12100,Windtalkers,"Joe Enders is a gung-ho Marine assigned to protect a ""windtalker"" - one of several Navajo Indians who were used to relay messages during World War II because their spoken language was indecipherable to Japanese code breakers.",2002-06-14,2.8024,6.311,1319 +6825,8289,Gorky Park,"Police Inspector Renko tries to solve the case of three bodies found in Moscow's Gorky Park but finds his attempts to solve the crime impeded by his superiors. Working on his own, Renko seeks out more information and stumbles across a conspiracy involving the highest levels of the government.",1983-12-15,2.8591,6.311,315 +6826,1096197,No Way Up,Characters from different backgrounds are thrown together when the plane they're travelling on crashes into the Pacific Ocean. A nightmare fight for survival ensues with the air supply running out and dangers creeping in from all sides.,2024-01-18,6.0936,6.3,1042 +6827,532639,Pinocchio,A wooden puppet embarks on a thrilling adventure to become a real boy.,2022-09-07,6.5069,6.31,1658 +6828,283227,A Little Chaos,"A landscape gardener is hired by famous architect Le Nôtre to construct the grand gardens at the palace of Versailles. As the two work on the palace, they find themselves drawn to each other and are thrown into rivalries within the court of King Louis XIV.",2015-03-26,2.0713,6.3,671 +6829,257445,Goosebumps,"After moving to a small town, Zach Cooper finds a silver lining when he meets next door neighbor Hannah, the daughter of bestselling Goosebumps series author R.L. Stine. When Zach unintentionally unleashes real monsters from their manuscripts and they begin to terrorize the town, it’s suddenly up to Stine, Zach and Hannah to get all of them back in the books where they belong.",2015-08-05,4.9582,6.31,3848 +6830,468219,Dead in a Week (Or Your Money Back),"William has failed to kill himself so many times that he outsources his suicide to aging assassin Leslie. But with the contract signed and death assured within a week (or his money back), William suddenly discovers reasons to live... However Leslie is under pressure from his boss to make sure the contract is completed.",2018-09-12,1.2668,6.3,353 +6831,296099,Vacation,"Hoping to bring his family closer together and to recreate his childhood vacation for his own kids, a grown up Rusty Griswold takes his wife and their two sons on a cross-country road trip to the coolest theme park in America, Walley World. Needless to say, things don't go quite as planned.",2015-07-28,6.0706,6.3,3808 +6832,46929,Fun and Fancy Free,"Jiminy Cricket hosts two Disney animated shorts: Bongo about a circus bear escaping to the wild, and Mickey and the Beanstalk, a take on the famous fairy tale.",1947-09-27,1.8524,6.309,495 +6833,12611,The Fury,"When a devious plot separates CIA agent Peter Sandza from his son, Robin, the distraught father manages to see through the ruse. Taken because of his psychic abilities, Robin is being held by Ben Childress, who is studying people with supernatural powers in hopes of developing their talents as weapons. Soon Peter pairs up with Gillian, a teen who has telekinesis, to find and rescue Robin.",1978-03-10,1.585,6.3,377 +6834,7737,Resident Evil: Extinction,"Years after the Racoon City catastrophe, survivors travel across the Nevada desert, hoping to make it to Alaska. Alice joins the caravan and their fight against hordes of zombies and the evil Umbrella Corp.",2007-09-20,1.7029,6.309,4333 +6835,179,The Interpreter,"After Silvia Broome, an interpreter at United Nations headquarters, overhears plans of an assassination, an American Secret Service agent is sent to investigate.",2005-04-08,2.4108,6.309,1480 +6836,714869,Serial (Bad) Weddings 3,"Claude and Marie Verneuil will soon be celebrating their 40th wedding anniversary. For the occasion, their four daughters - Isabelle, Odile, Ségolène and Laure - decide to organize a big surprise party in their family home in Chinon. They also decide to invite, each, the parents of their respective husbands - Rachid Benassem, David Benichou, Chao Ling and Charles Koffi.",2021-12-21,1.2912,6.308,403 +6837,437557,Blockers,"When three parents discover that each of their daughters have a pact to lose their virginity at prom, they launch a covert one-night operation to stop the teens from sealing the deal.",2018-03-14,3.413,6.308,2041 +6838,14177,Beauty Shop,"Far from Chicago, hairdresser Gina Norris has relocated to Atlanta with her daughter and has quickly established herself as a rare talent in her profession. But after repeatedly butting heads with her shady, over-the-top boss, Jorge, Norris sets out to create her own salon -- even snagging a few of Jorge's employees and clients. Now, Jorge will do anything to shut her down.",2005-04-22,2.5961,6.308,529 +6839,4953,Be Kind Rewind,"A man whose brain becomes magnetized unintentionally destroys every tape in his friend's video store. In order to satisfy the store's most loyal renter, an aging woman with signs of dementia, the two men set out to remake the lost films.",2008-01-20,1.7092,6.308,1400 +6840,606234,Archive,"2038: George Almore is working on a true human-equivalent AI, and his latest prototype is almost ready. This sensitive phase is also the riskiest as he has a goal that must be hidden at all costs—being reunited with his dead wife.",2020-08-13,2.9557,6.307,729 +6841,333669,Bastille Day,"Michael Mason is an American pickpocket living in Paris who finds himself hunted by the CIA when he steals a bag that contains more than just a wallet. Sean Briar, the field agent on the case, soon realises that Michael is just a pawn in a much bigger game and is also his best asset to uncover a large-scale conspiracy.",2016-04-22,5.4209,6.306,1429 +6842,12146,The Missing,"When rancher and single mother of two Maggie Gilkeson sees her teenage daughter, Lily, kidnapped by Apache rebels, she reluctantly accepts the help of her estranged father, Samuel, in tracking down the kidnappers. Along the way, the two must learn to reconcile the past and work together if they are going to have any hope of getting Lily back before she is taken over the border and forced to become a prostitute.",2003-11-26,2.7605,6.307,651 +6843,11619,Flushed Away,"London high-society mouse, Roddy is flushed down the toilet by Sid, a common sewer rat. Hang on for a madcap adventure deep in the sewer bowels of Ratropolis, where Roddy meets the resourceful Rita, the rodent-hating Toad and his faithful thugs, Spike and Whitey.",2006-10-22,5.8546,6.3,3928 +6844,9882,The Siege,"The secret US abduction of a suspected terrorist from his Middle East homeland leads to a wave of terrorist attacks in New York. An FBI senior agent and his team attempt to locate and decommission the enemy cells, but must also deal with an Army General gone rogue and a female CIA agent of uncertain loyalties.",1998-11-06,3.4809,6.307,1391 +6845,4351,Bordertown,"American corporations are using the North American Free Trade Agreement by opening large maquiladoras right across the United States–Mexico border. The maquiladoras hire mostly Mexican women to work long hours for little money in order to produce mass quantity products. Lauren Adrian, an impassioned American news reporter for the Chicago Sentinel wants to be assigned to the Iraq front-lines to cover the war. Instead, her editor George Morgan assigns her to investigate a series of slayings involving young maquiladora factory women in a Mexican bordertown.",2007-02-22,1.6416,6.307,340 +6846,1086372,Return,"The main character of the film is an outstanding physicist who was invited to Armenia from Russia to head a lab. He comes across many troubles in his homeland, but nevertheless finds his true love there.",1972-07-02,0.2724,6.306,563 +6847,467824,Illang: The Wolf Brigade,"In 2029, an elite police squad combats an anti-reunification terrorist group while another enemy lurks nearby.",2018-07-25,2.4912,6.3,309 +6848,447277,The Little Mermaid,"The youngest of King Triton’s daughters, and the most defiant, Ariel longs to find out more about the world beyond the sea, and while visiting the surface, falls for the dashing Prince Eric. With mermaids forbidden to interact with humans, Ariel makes a deal with the evil sea witch, Ursula, which gives her a chance to experience life on land, but ultimately places her life – and her father’s crown – in jeopardy.",2023-05-18,9.5362,6.306,3114 +6849,352186,Good Kids,Four high school students look to redefine themselves after graduation.,2016-07-29,1.8405,6.3,315 +6850,79643,Anche se è amore non si vede,"Salvo and Valentino are two Sicilian friends who have moved to Turin, and now run a small business together. They drive foreign tourists around in a double-decker bus, and Salvo always tries to approach the pretty girls.",2011-11-23,0.4197,6.306,358 +6851,13567,Sleepaway Camp,"After a terrible boating accident, Angela Baker is sent to Camp Arawak, where a series of bizarre and violent ""accidents"" begin to claim the lives of various campers.",1983-11-18,1.6,6.306,732 +6852,8689,Cannibal Holocaust,A New York University professor returns from a rescue mission to the Amazon rainforest with the footage shot by a lost team of documentarians who were making a film about the area's local cannibal tribes.,1980-02-07,6.2186,6.3,1743 +6853,1428,Once Upon a Time in Mexico,A corrupt CIA agent Sands hires hitman El Mariachi to assassinate a Mexican general hired by a drug kingpin attempting a coup d'état of the President of Mexico.,2003-09-11,4.4408,6.306,2256 +6854,1234811,Our Little Secret,"After discovering their significant others are siblings, two resentful exes must spend Christmas under one roof — while hiding their romantic history.",2024-11-27,2.095,6.3,513 +6855,625450,Tall Girl,"Jodi, the tallest girl in her high school, has always felt uncomfortable in her own skin. But after years of slouching, being made fun of, and avoiding attention at all costs, Jodi finally decides to find the confidence to stand tall.",2019-09-13,3.4569,6.305,1896 +6856,419680,Daddy's Home 2,Brad and Dusty must deal with their intrusive fathers during the holidays.,2017-11-09,5.4438,6.3,2621 +6857,26390,Brooklyn's Finest,Enforcing the law within the notoriously rough Brownsville section of the city and especially within the Van Dyke housing projects is the NYPD's sixty-fifth precinct. Three police officers struggle with the sometimes fine line between right and wrong.,2010-03-04,2.3643,6.305,928 +6858,21778,RRRrrrr!!!,"In 35,000 BC, the tribe of the Dirty Hairs is at war against the tribe of the Clean Hairs for eight hundred years, trying to get their shampoo. The chief of the Dirty Hairs sends his daughter Guy disguised to the enemy tribe to get some shampoo for his tribe. When the healer of the Clean Hairs tribe surprisingly kills two cavemen of his tribe, their imbecile chief assigns Pierre with curled hair and Pierre blonde to investigate the murder and find the criminal.",2004-01-28,3.099,6.305,1196 +6859,9354,"Honey, I Shrunk the Kids",The scientist father of a teenage girl and boy accidentally shrinks his and two other neighborhood teens to the size of insects. Now the teens must fight diminutive dangers as the father searches for them.,1989-06-23,3.1407,6.3,3153 +6860,1880,Red Dawn,"It is the dawn of World War III. In mid-western America, a group of teenagers band together to defend their town—and their country—from invading Soviet forces.",1984-08-10,4.0228,6.305,839 +6861,728526,Encounter,"A decorated Marine goes on a rescue mission to save his two young sons from an unhuman threat. As their journey takes them in increasingly dangerous directions, the boys will need to leave their childhoods behind.",2021-12-03,1.4522,6.3,437 +6862,186992,Stranger by the Lake,"Frank spends his summer days hopelessly searching for companionship at a popular cruising spot on the shores of a lake in rural France. One day, he meets Michel, an attractive yet darkly mysterious man and falls blindly in love.",2013-06-12,1.8484,6.3,445 +6863,9477,King Arthur,"The story of the Arthurian legend, based on the 'Sarmatian hypothesis' which contends that the legend has a historical nucleus in the Sarmatian heavy cavalry troops stationed in Britain, and that the Roman-British military commander, Lucius Artorius Castus is the historical person behind the legend.",2004-07-07,4.1132,6.304,2781 +6864,4728,The Gendarme in New York,Sergeant Cruchot and his faithful comrades have been sent to the International Congress of Gendarmerie in N.Y.,1965-10-28,1.497,6.3,529 +6865,2453,Harley Davidson and the Marlboro Man,"It's the lawless future, and renegade biker Harley Davidson and his surly cowboy buddy, Marlboro, learn that a corrupt bank is about to foreclose on their friend's bar to further an expanding empire. Harley and Marlboro decide to help by robbing the crooked bank. But when they accidentally filch a drug shipment, they find themselves on the run from criminal financiers and the mob in this rugged action adventure.",1991-08-23,3.0741,6.3,452 +6866,1649,Bill & Ted's Bogus Journey,"Amiable slackers Bill and Ted are once again roped into a fantastical adventure when De Nomolos, a villain from the future, sends evil robot duplicates of the two lads to terminate and replace them. The robot doubles actually succeed in killing Bill and Ted, but the two are determined to escape the afterlife, challenging the Grim Reaper to a series of games in order to return to the land of the living.",1991-07-19,2.7829,6.3,1275 +6867,146721,Carne,A woman who works in a meat packing plant is continuously preyed upon by lecherous men.,1968-10-24,0.5548,6.303,534 +6868,8845,Under Siege,"A disgruntled ex-CIA operative, his assistant and their assembled group of terrorists seize a battleship with nuclear blackmail in mind. They've planned for every contingency but ignore the ship's cook, former Navy SEAL Casey Ryback—an error that could be fatal.",1992-10-08,3.7241,6.303,1607 +6869,747688,Yara,"The murder of 13-year-old Yara Gambirasio shocks the little town of Brembate di Sopra, Italy. To bring the culprit to justice, prosecutors have only scant DNA evidence and no database to compare them to. Based on a true story.",2021-10-18,0.8413,6.302,425 +6870,567690,Dear Evan Hansen,"Evan Hansen, a high schooler with social anxiety, unintentionally gets caught up in a lie after the family of a classmate who committed suicide mistakes one of Hansen’s letters for their son’s suicide note.",2021-09-24,1.6177,6.302,343 +6871,396493,Creep 2,"After finding an ad online for “video work,” Sara, a video artist whose primary focus is creating intimacy with lonely men, thinks she may have found the subject of her dreams. She drives to a remote house in the forest and meets a man claiming to be a serial killer. Unable to resist the chance to create a truly shocking piece of art, she agrees to spend the day with him. However, as the day goes on, she discovers she may have dug herself into a hole from which she can’t escape.",2017-10-14,1.7738,6.302,834 +6872,328111,The Secret Life of Pets,"The quiet life of a terrier named Max is upended when his owner takes in Duke, a stray whom Max instantly dislikes.",2016-06-18,3.0961,6.3,8253 +6873,11034,The Great Gatsby,"Nick Carraway, a young Midwesterner now living on Long Island, finds himself fascinated by the mysterious past and lavish lifestyle of his neighbor, the nouveau riche Jay Gatsby. He is drawn into Gatsby's circle, becoming a witness to obsession and tragedy.",1974-03-27,2.3319,6.302,487 +6874,601844,Becky,A teenager's weekend at a lake house with her father takes a turn for the worse when a group of convicts wreaks havoc on their lives.,2020-07-23,2.2425,6.301,624 +6875,527660,"Yes, God, Yes","Alice, a young innocent Catholic girl, is tempted into masturbating after an AOL chat suddenly turns sexual, however is conflicted as the act would be considered a sin.",2020-07-24,1.7969,6.301,549 +6876,399248,Beirut,"In 1980s Beirut, Mason Skiles is a former U.S. diplomat who is called back into service to save a colleague from the group that is possibly responsible for his own family's death. Meanwhile, a CIA field agent who is working under cover at the American embassy is tasked with keeping Mason alive and ensuring that the mission is a success.",2018-04-11,2.5683,6.301,569 +6877,35019,Nanny McPhee and the Big Bang,"Nanny McPhee appears at the door of a harried young mother who is trying to run the family farm while her husband is away at war. But once she’s arrived, Nanny discovers that the children are fighting a war of their own against two spoiled city cousins who have just moved in. Relying on everything from a flying motorcycle and a statue that comes to life to a tree-climbing piglet and a baby elephant, Nanny uses her magic to teach her mischievous charges five new lessons.",2010-03-26,4.4398,6.3,1879 +6878,462919,Sierra Burgess Is a Loser,A case of mistaken identity results in unexpected romance when the most popular girl in high school and the biggest loser must come together to win over their crushes.,2018-09-07,1.5157,6.3,3427 +6879,458344,"Juliet, Naked","Annie is stuck in a long-term relationship with Duncan – an obsessive fan of obscure rocker Tucker Crowe. When the acoustic demo of Tucker's hit record from 25 years ago surfaces, its discovery leads to a life-changing encounter with the elusive rocker himself.",2018-08-16,1.3525,6.3,503 +6880,37609,The Cheetah Girls 2,"Best friends Galleria, Chanel, Dorinda, and Aqua, A.K.A. the girl band ""The Cheetahs,"" get the opportunity of a lifetime when they strut their way to Barcelona, Spain, to perform in an international music festival. Along the way, the ""amigas Cheetahs"" learn that, although their paths are not the same, they are lucky to have one another for the journey.",2006-07-31,1.3989,6.3,408 +6881,15997,The Land Before Time II: The Great Valley Adventure,"This time, while building a hideaway in their new home of the Great Valley, Littlefoot and the gang rescue a mysterious egg from two scheming egg-nappers and make a starling surprise - and new friend - when the egg hatches.",1994-12-12,2.6888,6.3,571 +6882,9358,Final Destination 2,"When Kimberly has a violent premonition of a highway pileup she blocks the freeway, keeping a few others meant to die, safe...Or are they? The survivors mysteriously start dying and it's up to Kimberly to stop it before she's next.",2003-01-31,11.7271,6.3,4502 +6883,9339,Click,"A married workaholic, Michael Newman doesn't have time for his wife and children, not if he's to impress his ungrateful boss and earn a well-deserved promotion. So when he meets Morty, a loopy sales clerk, he gets the answer to his prayers: a magical remote that allows him to bypass life's little distractions with increasingly hysterical results.",2006-06-23,7.696,6.3,7226 +6884,457435,Return of the Hero,"France, 1809. Captain Neuville is called to the front, leaving his future bride heartbroken. Her sister decides to write letters on his behalf to cheer her up.",2018-02-14,1.1835,6.299,636 +6885,439998,Omicidio all'italiana,"To save his crumbling and rapidly-depopulating rural town, its mayor fakes a gruesome murder to attract media attention. His plan initially succeeds, but soon the situation will spiral out of control.",2017-03-02,0.2286,6.299,404 +6886,71552,American Reunion,"The characters we met a little more than a decade ago return to East Great Falls for their high school reunion. In one long-overdue weekend, they will discover what has changed, who hasn’t, and that time and distance can’t break the bonds of friendship.",2012-04-04,6.5876,6.299,4512 +6887,13335,Harold & Kumar Escape from Guantanamo Bay,"Having satisfied their urge for White Castle, Harold and Kumar jump on a plane to catch up with Harold's love interest, who's headed for the Netherlands. But the pair must change their plans when Kumar is accused of being a terrorist. Rob Corddry also stars in this wild comedy sequel that follows the hapless stoners' misadventures as they try to avoid being captured by the Department of Homeland Security.",2008-04-25,2.497,6.299,1528 +6888,9605,Single White Female,"Attractive Manhattanite Allison Jones has it all: a handsome beau, a rent-controlled apartment, and a promising career as a fashion designer. When boyfriend Sam proves unfaithful, Allison strikes out on her own but must use the classifieds to seek out a roommate in order to keep her spacious digs.",1992-08-14,1.8626,6.299,643 +6889,9373,The Texas Chainsaw Massacre,"After picking up a traumatized young hitchhiker, five friends find themselves stalked and hunted by a chainsaw-wielding killer and his family of equally psychopathic killers.",2003-05-21,5.7768,6.3,2741 +6890,810,Shrek the Third,"The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. However, Shrek wants to return to his cozy swamp and live in peace and quiet, so when he finds out there is another heir to the throne, they set off to bring him back to rule the kingdom.",2007-05-17,12.29,6.299,9352 +6891,710295,Wolf Man,"With his marriage fraying, Blake persuades his wife Charlotte to take a break from the city and visit his remote childhood home in rural Oregon. As they arrive at the farmhouse in the dead of night, they're attacked by an unseen animal and barricade themselves inside the home as the creature prowls the perimeter. But as the night stretches on, Blake begins to behave strangely, transforming into something unrecognizable.",2025-01-15,8.2576,6.298,728 +6892,41630,No Strings Attached,"Emma is a busy doctor who sets up a seemingly perfect arrangement when she offers her best friend Adam a relationship with one rule: No strings attached. But when a fling becomes a thing, can sex friends stay best friends?",2011-01-21,6.966,6.298,4803 +6893,1689,Little Buddha,"After the death of Lama Dorje, Tibetan Buddhist monks find three children — one American and two Nepalese — who may be the rebirth of their great teacher.",1993-12-01,1.7743,6.298,426 +6894,201,Star Trek: Nemesis,"En route to the honeymoon of William Riker to Deanna Troi on her home planet of Betazed, Captain Jean-Luc Picard and the crew of the U.S.S. Enterprise receives word from Starfleet that a coup has resulted in the installation of a new Romulan political leader, Shinzon, who claims to seek peace with the human-backed United Federation of Planets. Once in enemy territory, the captain and his crew make a startling discovery: Shinzon is human, a slave from the Romulan sister planet of Remus, and has a secret, shocking relationship to Picard himself.",2002-12-13,2.6931,6.298,1489 +6895,115210,Stitches,"The clumsy and unfunny clown Richard ""Stitches"" Grindle entertains at the 10th birthday party of little Tom, but the boy and his friends play a prank with Stitches, tying his shoelaces. Stitches slips, falls and dies. Six years later, Tom gives a birthday party for his friends at home, but Stitches revives to haunt the teenagers and revenge his death.",2012-10-05,1.242,6.297,422 +6896,10534,White Squall,"In 1960, a hardy group of prep school students boards an old-fashioned sailing ship. With Capt. Christopher Sheldon at the helm, the oceangoing voyage is intended to teach the boys fortitude and discipline. But the youthful crew are about to get some unexpected instruction in survival when they get caught in the clutches of a white squall storm.",1996-02-02,2.3041,6.3,376 +6897,7095,Jack,"Jack Powell suffers from an affliction that makes him grow four times faster than normal, so the 10 year old boy looks like a 40 year old man. After years of being tutored at home, Jack convinces his overprotective parents to send him to public school. The children don't know what to make of Jack, but with the help of his fifth-grade teacher, he makes an effort to win them over.",1996-08-09,2.9284,6.3,1297 +6898,4964,Knocked Up,"A slacker and a career-driven woman accidentally conceive a child after a one-night stand. As they try to make the relationship work, they must navigate the challenges of parenthood and their differences in lifestyle and maturity.",2007-06-01,3.7307,6.297,4075 +6899,505379,Rebecca,"After a whirlwind romance with a wealthy widower, a naïve bride moves to his family estate but can't escape the haunting shadow of his late wife.",2020-10-16,1.6804,6.296,1121 +6900,207768,I Spit on Your Grave 2,"Broke, and in desperate need to update her portfolio, New York City model Katie calls a number from a tear-off flyer offering free photos. But this innocent attempt quickly turns into an unthinkable kidnapping nightmare where she's ripped away from everyone and everything she knows.",2013-08-25,6.5704,6.3,1340 +6901,117974,Sightseers,"Chris wants to show girlfriend Tina his world, but events soon conspire against the couple and their dream caravan holiday takes a very wrong turn.",2012-11-30,1.1117,6.3,536 +6902,70436,The Raven,"A fictionalized account of the last days of Edgar Allan Poe's life, in which the poet is in pursuit of a serial killer whose murders mirror those in the writer's stories.",2012-03-09,2.2408,6.296,1372 +6903,39414,Paper Man,"A coming-of-middle-age comedy that chronicles the unlikely friendship between failed author Richard Dunne and a Long Island teen who teaches him a thing or two about growing up, all under the disapproving eye of his long-suffering wife and his imaginary Superhero friend.",2009-06-15,1.0663,6.296,346 +6904,28794,The House by the Cemetery,"After a doctor kills his mistress and himself while researching the mysterious previous owner of his Boston home, his colleague, Dr. Norman Boyle, takes over his studies and moves his family into the Boston mansion. Soon after, Boyle's young son Bob becomes plagued by visions of a young girl, who warns him of the danger within the house.",1981-08-14,2.0944,6.296,410 +6905,801071,The Jack in the Box: Awakening,"When a vintage Jack-in-the-box is opened by a dying woman, she enters into a deal with the demon within that would see her illness cured in return for helping it claim six innocent victims.",2022-02-24,1.9882,6.295,364 +6906,392142,Max & Leon,"In this WW2 epic comedy – in the vein of “La Grande Vadrouille” – our two heroes, Max and Léon, two lazy and partier pals, will try by all possible means to avoid going in the battle zone… This will lead the duo to demented and wild adventures.",2016-11-01,0.809,6.295,807 +6907,155084,13 Sins,"Drowning in debt as he's about to get married, a bright but meek salesman receives a mysterious phone call informing him that he's on a hidden-camera game show where he must execute 13 tasks to receive a multi-million dollar cash prize.",2014-04-11,4.276,6.295,1147 +6908,86812,Sound of My Voice,A journalist and his girlfriend get pulled in while they investigate a cult whose leader claims to be from the future.,2011-01-22,1.4454,6.295,390 +6909,3172,Bandits,"After escaping from prison, Joe and Terry go on a crime spree, robbing banks through Oregon and California in order to finance their scheme for a new life south of the border. Unfortunately, things get more complicated when they meet Kate, who runs into them with her car. She joins the bandits on their cross-country spree, and eventually she steals something, too: their hearts.",2001-10-12,2.146,6.295,1030 +6910,1261501,Ad Vitam,"When he and his pregnant wife are attacked in their home, a former elite agent becomes trapped in a deadly manhunt tied to his own painful past.",2025-01-09,3.4484,6.297,385 +6911,638965,Mandibles,Two dimwitted friends hatch a money-making scheme after discovering a giant fly in the trunk of a car.,2021-05-19,1.0432,6.294,574 +6912,145220,Muppets Most Wanted,"While on a grand world tour, The Muppets find themselves wrapped into an European jewel-heist caper headed by a Kermit the Frog look-alike and his dastardly sidekick.",2014-03-20,1.6409,6.3,861 +6913,75761,John Dies at the End,"A new drug promises out-of-body experiences, but users are coming back changed forever, and an otherworldly invasion of Earth is underway.",2013-01-25,1.084,6.294,678 +6914,29427,The Crazies,Four friends find themselves trapped in their small hometown after they discover their friends and neighbors going quickly and horrifically insane.,2010-02-26,3.1858,6.294,2123 +6915,9822,Mighty Joe Young,"As a child living in Africa, Jill Young saw her mother killed while protecting wild gorillas from poachers led by Andrei Strasser. Now an adult, Jill cares for an orphaned gorilla named Joe -- who, due to a genetic anomaly, is 15 feet tall. When Gregg O'Hara arrives from California and sees the animal, he convinces Jill that Joe would be safest at his wildlife refuge. But Strasser follows them to the U.S., intent on capturing Joe for himself.",1998-12-25,2.486,6.3,838 +6916,2309,Inkheart,"The adventures of a father and his young daughter, in their search for a long lost book that will help reunite a missing, close relative.",2008-12-11,2.7251,6.294,2154 +6917,323373,Deathgasm,Two teenage boys unwittingly summon an ancient evil entity known as The Blind One by delving into black magic while trying to escape their mundane lives.,2015-08-28,1.2772,6.3,612 +6918,149509,Horns,"In the aftermath of his girlfriend's mysterious death, a young man awakens to strange horns sprouting from his temples.",2013-09-06,2.4859,6.292,2340 +6919,10699,Hero,"Bernie Laplante is having a rough time. He's divorced, his ex-wife hates him and has custody of their son, the cops are setting a trap for him, then to top it all, he loses a shoe whilst rescuing passengers of a crashed jet. Being a thief who is down on his luck, Bernie takes advantage of the crash, but then someone else claims credit for the rescue.",1992-10-02,1.8653,6.292,507 +6920,323373,Deathgasm,Two teenage boys unwittingly summon an ancient evil entity known as The Blind One by delving into black magic while trying to escape their mundane lives.,2015-08-28,1.2772,6.3,612 +6921,149509,Horns,"In the aftermath of his girlfriend's mysterious death, a young man awakens to strange horns sprouting from his temples.",2013-09-06,2.4859,6.292,2340 +6922,10699,Hero,"Bernie Laplante is having a rough time. He's divorced, his ex-wife hates him and has custody of their son, the cops are setting a trap for him, then to top it all, he loses a shoe whilst rescuing passengers of a crashed jet. Being a thief who is down on his luck, Bernie takes advantage of the crash, but then someone else claims credit for the rescue.",1992-10-02,1.8653,6.292,507 +6923,4917,A Boy and His Dog,"Set in the year 2024 in post-apocalyptic America, 18-year old Vic and his telepathic dog, Blood, are scavengers in the desolate wilderness ravaged by World War IV, where survivors must battle for food and shelter in the desert-like wasteland. Vic and Blood eke out a meager existence, foraging for food and fighting gangs of cutthroats.",1975-03-23,2.4589,6.292,358 +6924,284276,Cake,"After having visions of a member of her support group who killed herself, a woman who also suffers with chronic pain seeks out the widower of the suicide.",2014-09-07,2.1208,6.291,912 +6925,86331,Desire,"In a social context deteriorated by a countrywide economic crisis, the life of several people will be turned upside down after they meet Cécile, a character who symbolizes desire.",2011-10-06,8.6365,6.291,1329 +6926,71677,Assassination Games,"Brazil is a contract killer, willing to take any job if the price is right. Flint left the assassin game when a ruthless drug dealer’s brutal attack left his wife in a coma. When a contract is put out on the same coldblooded drug dealer, both Brazil and Flint want him dead – one for the money, the other for revenge. With crooked Interpol agents and vicious members of the criminal underworld hot on their trail, these two assassins reluctantly join forces to quickly take out their target before they themselves are terminated.",2011-07-28,2.5142,6.291,417 +6927,1032823,Trap,"A father and teen daughter attend a pop concert, where they realize they're at the center of a dark and sinister event.",2024-07-31,7.0029,6.29,2352 +6928,574060,Gunpowder Milkshake,"To protect an 8-year-old girl, a dangerous assassin reunites with her mother and her lethal associates to take down a ruthless crime syndicate and its army of henchmen.",2021-07-14,2.5323,6.29,1070 +6929,274167,Daddy's Home,"The story of a mild-mannered radio executive who strives to become the best stepdad ever to his wife's two children, but complications ensue when their freewheeling, freeloading real father arrives, forcing stepdad to compete for the affection of the kids.",2015-12-25,4.04,6.29,3295 +6930,13515,Mirrors,An ex-cop and his family are the target of an evil force that is using mirrors as a gateway into their home.,2008-08-14,2.8566,6.29,1918 +6931,9526,A Prairie Home Companion,"A look at what goes on backstage during the last broadcast of America's most celebrated radio show, where singing cowboys Dusty and Lefty, a country music siren, and a host of others hold court.",2006-06-01,1.0741,6.29,302 +6932,852448,I Came By,"A rebellious young graffiti artist, who targets the homes of the wealthy elite, discovers a shocking secret that leads him on a journey endangering himself and those closest to him.",2022-08-19,3.0638,6.289,767 +6933,290595,The Huntsman: Winter's War,"As two evil sisters prepare to conquer the land, two renegades—Eric the Huntsman, who aided Snow White in defeating Ravenna in Snowwhite and the Huntsman, and his forbidden lover, Sara—set out to stop them.",2016-04-06,4.5266,6.289,4893 +6934,13641,The Air I Breathe,"A gambler’s bet spiraling into chaos, a gangster's prophetic visions, a pop star’s dark entanglement, a doctor’s desperate race against time to rescue his beloved... Four interconnected stories reveal life unfolding through four emotional pillars — joy, passion, grief, and love.",2007-02-07,1.2726,6.289,374 +6935,9543,Prince of Persia: The Sands of Time,"A rogue prince reluctantly joins forces with a mysterious princess and together, they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time – gift from the gods that can reverse time and allow its possessor to rule the world.",2010-05-19,5.7795,6.289,6899 +6936,425336,Loving Pablo,The film chronicles the rise and fall of the world's most feared drug lord Pablo Escobar and his volatile love affair with Colombia's most famous journalist Virginia Vallejo throughout a reign of terror that tore a country apart.,2017-10-12,2.986,6.288,1008 +6937,354216,The Devil's Candy,A struggling painter is possessed by satanic forces after he and his young family move into their dream home in rural Texas.,2016-12-15,1.4869,6.288,667 +6938,181812,Star Wars: The Rise of Skywalker,"The surviving Resistance faces the First Order once again as the journey of Rey, Finn and Poe Dameron continues. With the power and knowledge of generations behind them, the final battle begins.",2019-12-18,8.1645,6.288,10297 +6939,102780,Byzantium,"Residents of a coastal town learn, with deadly consequences, the secret shared by the two mysterious women who have sought refuge at a local resort.",2013-04-11,1.8737,6.288,893 +6940,39385,Would I Lie to You?,Jobless loner Eddie Vuibert gets a lucky break when a rich Jewish entrepreneur mistakes him for a Jew and gives him a sweet job in the Parisian fashion district.,1997-04-01,1.0964,6.288,531 +6941,22804,Saw VI,"Special Agent Strahm is dead, and Detective Hoffman has emerged as the unchallenged successor to Jigsaw's legacy. However, when the FBI draws closer to Hoffman, he is forced to set a game into motion, and Jigsaw's grand scheme is finally understood.",2009-10-22,3.6444,6.288,3354 +6942,15947,The Three Caballeros,"For Donald's birthday he receives a box with three gifts inside. The gifts, a movie projector, a pop-up book, and a pinata, each take Donald on wild adventures through Mexico and South America.",1944-12-21,1.6976,6.3,732 +6943,9963,Premonition,"A depressed housewife who learns her husband was killed in a car accident the day previously, awakens the next morning to find him alive and well at home, and then awakens the day after to a world in which he is still dead.",2007-02-08,2.0934,6.288,1602 +6944,9378,Thir13en Ghosts,"Arthur and his two children inherit his uncle's estate: a glass house that serves as a prison to twelve ghosts. When the family, accompanied by a nanny and an attorney, enter the house they find themselves trapped inside an evil machine 'designed by the Devil and powered by the dead' to open the Eye of Hell. Aided by a ghost hunter and his rival, a ghost rights activist out to set the ghosts free, the group must do what they can to get out of the house alive.",2001-10-26,5.1587,6.288,2223 +6945,443791,Underwater,"After an earthquake destroys their underwater station, six researchers must navigate two miles along the dangerous, unknown depths of the ocean floor to make it to safety in a race against time.",2020-01-08,5.5105,6.287,3247 +6946,438590,A-X-L,The life of a teenage boy is forever altered by a chance encounter with cutting edge military technology.,2018-08-23,2.5264,6.3,1190 +6947,413052,Hacker,"Alex, an immigrant from Ukraine comes to Canada and becomes involved with an online criminal organization called Darkweb. What starts off as a way to help his parents financially, soon becomes a personal vendetta against the entire banking system, when his mother is fired from her job at the bank",2016-09-15,2.1327,6.287,312 +6948,303542,The Invisible Boy,"Michele is thirteen year old, shy, unpopular at school, and in love with Stella. After wearing a costume for a Halloween party, he finds out that he's invisible.",2014-12-18,1.2432,6.287,956 +6949,15239,The Toxic Avenger,"A gang of thugs devise a cruel hoax that goes horribly wrong as Melvin, a nerdy emaciated janitor at the local health club, is cast through a third story window into a vat of hazardous toxic waste.",1984-05-15,1.9181,6.287,585 +6950,10735,What a Girl Wants,"An American girl, Daphne, heads to Europe in search of the father she's never met. But instead of finding a British version of her bohemian mother, she learns the love of her mom's life is an uptight politician. The only problem now is that her long-lost dad is engaged to a fiercely territorial social climber with a daughter who makes Daphne's life miserable.",2003-03-27,4.1727,6.287,1656 +6951,817,Austin Powers: The Spy Who Shagged Me,"When diabolical genius Dr. Evil travels back in time to steal superspy Austin Powers's ‘mojo,’ Austin must return to the swingin' '60s himself - with the help of American agent, Felicity Shagwell - to stop the dastardly plan. Once there, Austin faces off against Dr. Evil's army of minions to try to save the world in his own unbelievably groovy way.",1999-06-08,5.0822,6.3,3456 +6952,428399,Cold Skin,A young man who arrives at a remote island finds himself trapped in a battle for his life.,2017-10-20,2.6619,6.286,659 +6953,369781,Public Friends,"In order to make his little sick brother's dream come true, Leo and his best mates organize a fake score...but on the d day, they make a mistake and the fake score becomes a real hold up.Here starts the extraordinary adventure of PUBLIC Amis.",2016-02-17,0.4787,6.286,365 +6954,83186,Wrong,"Dolph Springer wakes up one morning to realize he has lost the love of his life, his dog, Paul. During his quest to get Paul (and his life) back, Dolph radically changes the lives of others -- risking his sanity all the while.",2012-09-05,1.0358,6.286,360 +6955,20694,Rugrats Go Wild,"When the Rugrats find themselves stranded on a deserted island, they meet the Thornberrys, a family who agrees to help them escape.",2003-06-13,1.9042,6.3,308 +6956,8966,Twilight,"When Bella Swan moves to a small town in the Pacific Northwest, she falls in love with Edward Cullen, a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions, Bella can't stay away from him, a fatal move that endangers her own life.",2008-11-20,20.3355,6.286,13898 +6957,158852,Tomorrowland,"Bound by a shared destiny, a bright, optimistic teen bursting with scientific curiosity and a former boy-genius inventor jaded by disillusionment embark on a danger-filled mission to unearth the secrets of an enigmatic place somewhere in time and space that exists in their collective memory as ""Tomorrowland.""",2015-05-19,7.3502,6.3,7128 +6958,72710,The Host,"A parasitic alien soul is injected into the body of Melanie Stryder. Instead of carrying out her race's mission of taking over the Earth, ""Wanda"" (as she comes to be called) forms a bond with her host and sets out to aid other free humans.",2013-03-22,3.2468,6.285,3967 +6959,8838,Mercury Rising,"Renegade FBI agent Art Jeffries protects a nine-year-old autistic boy who has cracked the government's new ""unbreakable"" code.",1998-04-03,3.1799,6.285,1570 +6960,27569,Extraordinary Measures,"Working-class father John Crowley is finally on the fast track to corporate success when his two young children are diagnosed with Pompe disease—a condition that prevents the body from breaking down sugar. With the support of his wife, John ditches his career and teams with unconventional specialist, Dr. Robert Stonehill to found a bio-tech company and develop a cure in time to save the lives of his children. As Dr. Stonehill works tirelessly to prove the theories that made him the black sheep of the medical community, a powerful bond is forged between the two unlikely allies.",2010-01-21,1.2715,6.284,319 +6961,11449,The Amityville Horror,"George Lutz, his wife Kathy, and their three children have just moved into a beautiful, and improbably cheap, Victorian mansion nestled in the sleepy coastal town of Amityville, Long Island. However, their dream home is concealing a horrific past and soon each member of the Lutz family is plagued with increasingly strange and violent visions and impulses.",1979-07-27,3.4118,6.284,966 +6962,1022796,Wish,"Asha, a sharp-witted idealist, makes a wish so powerful that it is answered by a cosmic force – a little ball of boundless energy called Star. Together, Asha and Star confront a most formidable foe - the ruler of Rosas, King Magnifico - to save her community and prove that when the will of one courageous human connects with the magic of the stars, wondrous things can happen.",2023-11-13,8.5322,6.283,1643 +6963,339967,Colossal,A woman discovers that severe catastrophic events are somehow connected to the mental breakdown from which she's suffering.,2017-04-06,5.1258,6.283,2159 +6964,199373,The Frozen Ground,An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.,2013-07-11,3.1186,6.283,1509 +6965,132232,Mama,"Guillermo del Toro presents Mama, a supernatural thriller that tells the haunting tale of two little girls who disappeared into the woods the day that their parents were killed. When they are rescued years later and begin a new life, they find that someone or something still wants to come tuck them in at night.",2013-01-17,5.7914,6.283,4250 +6966,59981,Legends of Oz: Dorothy's Return,"Dorothy wakes in post-tornado Kansas, only to be whisked back to Oz to try to save her old friends, the Scarecrow, the Lion, the Tin Man, and Glinda, from a devious new villain, the Jester. New comrades Wiser the Owl, Marshal Mallow, China Princess, and Tugg the Tugboat join Dorothy on her latest magical journey through the colorful landscape of Oz to restore order and happiness to Emerald City.",2014-05-08,1.9408,6.3,367 +6967,43200,Basilicata Coast to Coast,A music group and a journalist cross the region of Basilicata by foot to attend a music festival.,2010-04-09,0.2882,6.283,383 +6968,36643,The World Is Not Enough,"Greed, revenge, world dominance and high-tech terrorism – it's all in a day's work for Bond, who's on a mission to protect a beautiful oil heiress from a notorious terrorist. In a race against time that culminates in a dramatic submarine showdown, Bond works to defuse the international power struggle that has the world's oil supply hanging in the balance.",1999-11-17,5.9064,6.283,3053 +6969,19901,Daybreakers,"In the year 2019, a plague has transformed almost every human into a vampire. Faced with a dwindling blood supply, the fractured dominant race plots their survival; meanwhile, a researcher works with a covert band of vampires on a way to save humankind.",2010-01-06,2.2887,6.283,2027 +6970,14207,The Librarian: Quest for the Spear,"When a magical artifact is lifted from his library, a meek librarian sets out to ensure its safe return.",2004-07-12,2.5568,6.283,659 +6971,11069,Tremors 2: Aftershocks,"Earl Bassett's celebrity after defeating the Graboid attack against the town of Perfection has proved short-lived, until he's recruited by a Mexican oil company whose workers have found more than they bargained for under the soil.",1996-04-09,3.9771,6.283,986 +6972,11007,Cheaper by the Dozen,"The Baker brood moves to Chicago after patriarch Tom gets a job coaching football at Northwestern University, forcing his writer wife, Mary, and the couple's 12 children to make a major adjustment. The transition works well until work demands pull the parents away from home, leaving the kids bored -- and increasingly mischievous.",2003-12-24,3.7205,6.283,2843 +6973,10483,Death Race,"Terminal Island, New York: 2020. Overcrowding in the US penal system has reached a breaking point. Prisons have been turned over to a monolithic Weyland Corporation, which sees jails full of thugs as an opportunity for televised sport. Adrenalized inmates, a global audience hungry for violence and a spectacular, enclosed arena come together to form the 'Death Race', the biggest, most brutal event.",2008-08-22,6.5299,6.283,3911 +6974,1599,I ♥ Huckabees,"A husband-and-wife team play detective, but not in the traditional sense. Instead, the happy duo helps others solve their existential issues, the kind that keep you up at night, wondering what it all means.",2004-09-10,1.5311,6.283,667 +6975,267935,The BFG,"An orphan little girl befriends a benevolent giant who takes her to Giant Country, where they attempt to stop the man-eating giants that are invading the human world.",2016-06-01,4.9217,6.282,3478 +6976,181283,Child 44,"Set in Stalin-era Soviet Union, a disgraced MGB agent is dispatched to investigate a series of child murders -- a case that begins to connect with the very top of party leadership.",2015-03-15,3.1614,6.282,1710 +6977,25983,The House of the Devil,"A young college student who’s struggling financially takes a strange babysitting job which coincides with a full lunar eclipse. She slowly realizes her clients harbor a terrifying secret, putting her life in mortal danger.",2009-10-30,1.9273,6.3,790 +6978,12309,Bachelor Party,"On the eve of his wedding to his longtime girlfriend, unassuming nice guy Rick is dragged out for a night of debauchery by his friends.",1984-06-29,2.161,6.3,665 +6979,169,Predator 2,A police chief in the war-torn streets of Los Angeles discovers that an extraterrestrial creature is hunting down residents - and that he is the next target.,1990-11-21,7.3792,6.282,3509 +6980,738652,Copshop,"On the run from a lethal assassin, a wily con artist devises a scheme to hide out inside a small-town police station. However, when the hit man turns up at the precinct, an unsuspecting rookie cop finds herself caught in the crosshairs.",2021-09-09,3.4281,6.282,824 +6981,580532,Crisis,"Three stories about the world of opioids collide: a drug trafficker arranges a multi-cartel Fentanyl smuggling operation between Canada and the U.S., an architect recovering from an OxyContin addiction tracks down the truth behind her son's involvement with narcotics, and a university professor battles unexpected revelations about his research employer, a drug company with deep government influence bringing a new ""non-addictive"" painkiller to market.",2021-02-26,1.3349,6.281,363 +6982,288036,Sleeping with Other People,"Can two serial cheaters get a second chance at love? After a one-night stand in college, New Yorkers Lainey and Jake meet by chance twelve years later and discover they each have the same problem: because of their monogamy-challenged ways, neither can maintain a relationship. Determined to stay friends despite their mutual attraction, they make a pact to keep it platonic, a deal that proves easier said than done.",2015-06-26,2.6452,6.281,930 +6983,280092,Insidious: Chapter 3,"A twisted new tale of terror begins for a teenage girl and her family, and revealing more mysteries of the otherworldly realm, 'The Further'.",2015-05-28,5.1754,6.281,3460 +6984,34851,Predators,A group of cold-blooded killers find themselves trapped on an alien planet to be hunted by extraterrestrial Predators.,2010-07-07,8.5311,6.281,4329 +6985,14976,Rachel Getting Married,A young woman who has been in and out from rehab for the past 10 years returns home for the weekend for her sister's wedding.,2008-09-03,1.831,6.3,597 +6986,11625,Asterix and the Big Fight,"Due to an unfortunate accident involving Obelix throwing a menhir, Getafix the druid not only loses his memory, but goes completely mad. Now deprived of the wisdom of their beloved druid and the protection provided by his magic potion, the Armorican village falls prey to a proclaimed soothsayer who comes with ominous predictions and overweening ambitions. It's up to Asterix to keep his villager friends within reason and hopefully get Getafix to remember the magic potion's recipe before the impending Roman attack.",1989-10-04,2.1548,6.3,652 +6987,9486,Johnny English,"A lowly pencil pusher working for MI7, Johnny English is suddenly promoted to super spy after Agent One is assassinated and every other agent is blown up at his funeral. When a billionaire entrepreneur sponsors the exhibition of the Crown Jewels—and the valuable gems disappear on the opening night and on English's watch—the newly-designated agent must jump into action to find the thief and recover the missing gems.",2003-03-14,3.9553,6.281,3583 +6988,2135,The Time Machine,"Hoping to alter the events of the past, a 19th century inventor instead travels 800,000 years into the future, where he finds mankind divided into two warring races.",2002-03-04,3.1978,6.281,2365 +6989,38303,You Again,"History -- make that high school -- may repeat itself when Marni learns that Joanna, the mean girl from her past, is set to be her sister-in-law. Before the wedding bells toll, Marni must show her brother that a tiger doesn't change its stripes. On Marni's side is her mother, while Joanna's backed by her wealthy aunt.",2010-09-23,2.2908,6.3,1260 +6990,9494,Look Who's Talking,"Mollie is a single working mother who's out to find the perfect father for her child. Her baby, Mikey, prefers James, a cab driver turned babysitter who has what it takes to make them both happy. But Mollie won't even consider James. It's going to take all the tricks a baby can think of to bring them together before it's too late.",1989-10-12,2.4936,6.3,2344 +6991,1492,1492: Conquest of Paradise,1492: Conquest of Paradise depicts Christopher Columbus’ discovery of The New World and his effect on the indigenous people.,1992-10-09,2.6639,6.28,868 +6992,877269,Strange World,"A journey deep into an uncharted and treacherous land, where fantastical creatures await the legendary Clades—a family of explorers whose differences threaten to topple their latest, and by far most crucial, mission.",2022-11-23,3.2843,6.279,1333 +6993,5072,Severance,"Members of the Palisades Defense Corp. sales group arrive in Europe for a team-building exercise. A fallen tree blocks the route, and they must hike to their destination. However, a psychotic killer lurks in the woods, and he has a horrible fate in mind for each of the co-workers.",2006-05-19,2.4543,6.279,612 +6994,174772,Europa Report,A crew of international astronauts are sent on a private mission to Jupiter's fourth moon.,2013-06-27,2.2445,6.278,1438 +6995,58244,Upside Down,"In an alternate universe where twinned worlds have opposite gravities, a young man battles interplanetary prejudice and the laws of physics in his quest to reunite with the long-lost girl of his dreams in this visually stunning romantic adventure that poses the question: what if love was stronger than gravity?",2012-09-27,2.1805,6.278,2530 +6996,29787,Monkey Shines,"A quadriplegic man is given a trained monkey help him with every day activities, until the little monkey begins to develop feelings, and rage, against its new master and those who get too close to him.",1988-07-29,0.9894,6.3,333 +6997,11465,Great Balls of Fire!,"The story of Jerry Lee Lewis, arguably the greatest and certainly one of the wildest musicians of the 1950s. His arrogance, remarkable talent, and unconventional lifestyle often brought him into conflict with others in the industry, and even earned him the scorn and condemnation of the public.",1989-06-30,1.2855,6.278,324 +6998,9440,Primary Colors,"In this adaptation of the best-selling roman à clef about Bill Clinton's 1992 run for the White House, the young and gifted Henry Burton is tapped to oversee the presidential campaign of Governor Jack Stanton. Burton is pulled into the politician's colorful world and looks on as Stanton -- who has a wandering eye that could be his downfall -- contends with his ambitious wife, Susan, and an outspoken adviser, Richard Jemmons.",1998-03-20,2.3313,6.278,329 +6999,2990,Pacific Heights,A couple works hard to renovate their dream house and become landlords to pay for it. Unfortunately one of their tenants has plans of his own.,1990-09-28,1.8582,6.278,387 +7000,758009,Shotgun Wedding,"Darcy and Tom gather their families for the ultimate destination wedding but when the entire party is taken hostage, “’Til Death Do Us Part” takes on a whole new meaning. Now, Darcy and Tom must save their loved ones—if they don’t kill each other first.",2022-12-28,3.543,6.277,1238 +7001,627463,The Assistant,"A searing look at a day in the life of an assistant to a powerful executive. As Jane follows her daily routine, she grows increasingly aware of the insidious abuse that threatens every aspect of her position.",2020-01-31,1.4858,6.277,482 +7002,453405,Gemini Man,"Henry Brogan is an elite 51-year-old assassin who's ready to call it quits after completing his 72nd job. His plans get turned upside down when he becomes the target of a mysterious operative who can seemingly predict his every move. To his horror, Brogan soon learns that the man who's trying to kill him is a younger, faster, cloned version of himself.",2019-10-02,6.2925,6.277,5253 +7003,452015,Psychokinesis,"An ordinary guy suddenly finds he has superpowers he can use to help his spirited daughter and the people around them, but he also runs into trouble in the process.",2018-01-31,1.7107,6.277,319 +7004,134374,Pain & Gain,"Daniel Lugo, manager of the Sun Gym in 1990s Miami, decides that there is only one way to achieve his version of the American dream: extortion. To achieve his goal, he recruits musclemen Paul and Adrian as accomplices. After several failed attempts, they abduct rich businessman Victor Kershaw and convince him to sign over all his assets to them. But when Kershaw makes it out alive, authorities are reluctant to believe his story.",2013-04-18,4.8943,6.277,4597 +7005,10294,Vacancy,"A young married couple becomes stranded at an isolated motel and find hidden video cameras in their room. They realize that unless they escape, they'll be the next victims of a snuff film.",2007-04-20,4.2706,6.277,1527 +7006,561362,Rust Creek,"When an overachieving college senior makes a wrong turn, her road trip becomes a life-changing fight for survival in rural Kentucky.",2019-01-04,1.4125,6.276,323 +7007,255343,Escobar: Paradise Lost,"For Pablo Escobar family is everything. When young surfer Nick falls for Escobar's niece, Maria, he finds his life on the line when he's pulled into the dangerous world of the family business.",2014-10-11,2.755,6.273,785 +7008,11352,Always,The spirit of a recently deceased expert pilot mentors a newer pilot while watching him fall in love with the girlfriend that he left behind.,1989-12-22,2.5627,6.277,624 +7009,9896,Rat Race,"In an ensemble film about easy money, greed, manipulation and bad driving, a Las Vegas casino tycoon entertains his wealthiest high rollers -- a group that will bet on anything -- by pitting six ordinary people against each other in a wild dash for $2 million jammed into a locker hundreds of miles away. The tycoon and his wealthy friends monitor each racer's every move to keep track of their favorites. The only rule in this race is that there are no rules.",2001-08-17,3.3364,6.276,1856 +7010,2080,X-Men Origins: Wolverine,"After seeking to live a normal life, Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.",2009-04-28,0.9931,6.276,10813 +7011,703451,Your Place or Mine,"When best friends and total opposites Debbie and Peter swap homes for a week, they get a peek into each other's lives that could open the door to love.",2023-02-10,2.5598,6.274,802 +7012,689723,Dangerous Lies,"After losing her waitressing job, Katie Franklin takes a job as a caretaker to a wealthy elderly man in his sprawling, empty Chicago estate. The two grow close, but when he unexpectedly passes away and names Katie as his sole heir, she and her husband Adam are pulled into a complex web of lies, deception, and murder. If she's going to survive, Katie will have to question everyone's motives — even the people she loves.",2020-04-30,1.7156,6.279,877 +7013,157845,The Rover,"Ten years after a severe economic collapse in the western world, lawlessness reigns and life is cheap. Eric is a lone drifter, and his car is his only possession. When a gang steals it, Eric comes across the injured Rey, left behind by the car thieves. The pair form an unlikely and uneasy alliance.",2014-06-04,1.5865,6.275,976 +7014,10307,Stigmata,"A young woman with no strong religious beliefs, Frankie Paige begins having strange and violent experiences, showing signs of the wounds that Jesus received when crucified. When the Vatican gets word of Frankie's situation, a high-ranking cardinal requests that the Rev. Andrew Kiernan investigate her case. Soon Kiernan realizes that very sinister forces are at work, and tries to rescue Frankie from the entity that is plaguing her.",1999-09-02,2.6427,6.275,1149 +7015,9104,Buffalo Soldiers,A criminal subculture operates among U.S. soldiers stationed in West Germany just before the fall of the Berlin wall.,2002-10-31,0.8928,6.275,326 +7016,2085,Romeo Must Die,"Two warring gang families (one African-American, the other Chinese) maneuver for bragging rights to the Oakland, California, docks. Hang Sing and Trish O'Day uncover a trail of deceit that leaves most of the warring factions dead … or worse!",2000-03-22,3.1998,6.275,1237 +7017,631842,Knock at the Cabin,"While vacationing at a remote cabin, a young girl and her two fathers are taken hostage by four armed strangers who demand that the family make an unthinkable choice to avert the apocalypse. With limited access to the outside world, the family must decide what they believe before all is lost.",2023-02-01,4.6512,6.274,2855 +7018,455656,#realityhigh,"When nerdy high schooler Dani finally attracts the interest of her longtime crush, she lands in the cross hairs of his ex, a social media celebrity.",2017-07-17,1.3339,6.274,1031 +7019,133694,Promised Land,"A salesman for a natural gas company experiences life-changing events after arriving in a small town, where his corporation wants to tap into the available resources.",2012-09-23,1.7554,6.274,709 +7020,11495,Firestarter,"Charlene ""Charlie"" McGee has the amazing ability to start fires with just a glance. Can her psychic power and the love of her father save her from the threatening government agency which wants to destroy her?",1984-05-11,1.6576,6.274,722 +7021,8843,The Cell,A psychotherapist journeys inside a comatose serial killer in the hopes of saving his latest victim.,2000-08-18,3.026,6.274,1589 +7022,952701,Return to Seoul,"After an impulsive travel decision to visit friends, Freddie, 25, returns to South Korea for the first time, where she was born before being adopted and raised in France. Freddie suddenly finds herself embarking on an unexpected journey in a country she knows so little about, taking her life in new and unexpected directions.",2022-11-18,1.5553,6.273,439 +7023,455839,Time Trap,A group of students become trapped inside a mysterious cave where they discover time passes differently underground than on the surface.,2018-06-22,4.1274,6.273,1222 +7024,259695,Live by Night,"A group of Boston-bred gangsters set up shop in balmy Florida during the Prohibition era, facing off against the competition and the Ku Klux Klan.",2016-12-25,2.2655,6.3,1332 +7025,505058,Unfriended: Dark Web,"​When a 20-something finds a cache of hidden files on his new laptop, he and his friends are unwittingly thrust into the depths of the dark web. They soon discover someone has been watching their every move and will go to unimaginable lengths to protect the dark web.",2018-07-19,2.9434,6.272,1578 +7026,478860,Proxima,"Sarah is a French astronaut training at the European Space Agency in Cologne. She is the only woman in the arduous program. She lives alone with Stella, her seven year old daughter. Sarah feels guilty that she cannot spend more time with her child. Her love is overpowering, unsettling. When Sarah is chosen to join the crew of a year-long space mission called Proxima, it creates chaos in the mother-daughter relationship.",2019-11-27,1.3876,6.3,418 +7027,376134,The Discovery,"In the near future, due to a breakthrough scientific discovery by Dr. Thomas Harbor, there is now definitive proof of an afterlife. While countless people have chosen suicide to reset their existence, others try to decide what it all means. Among them is Dr. Harbor's son Will, who has arrived at his father's isolated compound with a mysterious young woman named Isla. There, they discover the strange acolytes who help Dr. Harbor with his experiments.",2017-03-31,1.7769,6.272,1356 +7028,27813,Basket Case,"A young man carrying a big basket that contains his extremely deformed, formerly conjoined twin brother seeks vengeance on the doctors who separated them against their will.",1982-04-02,0.9125,6.272,437 +7029,10207,Message in a Bottle,"A woman finds a romantic letter in a bottle washed ashore and tracks down the author, a widowed shipbuilder whose wife died tragically early. As a deep and mutual attraction blossoms, the man struggles to make peace with his past so that he can move on and find happiness.",1999-02-22,2.645,6.272,791 +7030,1537,Changing Lanes,"A rush-hour fender-bender on New York City's crowded FDR Drive, under most circumstances, wouldn't set off a chain reaction that could decimate two people's lives. But on this day, at this time, a minor collision will turn two complete strangers into vicious adversaries. Their means of destroying each other might be different, but their goals, ultimately, will be the same: Each will systematically try to dismantle the other's life in a reckless effort to reclaim something he has lost.",2002-04-07,2.1963,6.272,1146 +7031,514999,Murder Mystery,"On a long-awaited trip to Europe, a New York City cop and his hairdresser wife scramble to solve a baffling murder aboard a billionaire's yacht.",2019-05-25,4.7408,6.271,4580 +7032,406759,Moonfall,A mysterious force knocks the moon from its orbit around Earth and sends it hurtling on a collision course with life as we know it.,2022-02-03,6.6953,6.271,3317 +7033,652483,Airplane Mode,"When Ana, an influencer, crashes her car while talking on the phone, she's shipped to her grumpy grandfather's farm -- and forced into a digital detox.",2020-01-23,1.0519,6.3,705 +7034,640146,Ant-Man and the Wasp: Quantumania,"Super-Hero partners Scott Lang and Hope van Dyne, along with with Hope's parents Janet van Dyne and Hank Pym, and Scott's daughter Cassie Lang, find themselves exploring the Quantum Realm, interacting with strange new creatures and embarking on an adventure that will push them beyond the limits of what they thought possible.",2023-02-15,8.0549,6.27,5375 +7035,449755,Christmas Inheritance,"To inherit her father's company, socialite Ellen must first visit his small hometown, where she learns the value of hard work and helping others.",2017-12-15,1.365,6.27,836 +7036,63710,Honey 2,"After a brush with the law, Maria has returned to her gritty Bronx roots to rebuild her life with nothing but a talent for street dance and a burning ambition to prove herself.",2011-06-23,1.4815,6.27,400 +7037,10410,Hoffa,"A portrait of union leader James R. Hoffa, as seen through the eyes of his friend, Bobby Ciaro. The film follows Hoffa through his countless battles with the RTA and President Roosevelt.",1992-12-25,1.7002,6.27,326 +7038,1087388,Sting,"After raising an unnervingly talented spider in secret, 12-year-old Charlotte must face the truth about her pet and fight for her family's survival.",2024-04-12,4.0639,6.269,426 +7039,433808,The Ritual,"A group of college friends reunite for a trip to the forest, but encounter a menacing presence in the woods that's stalking them.",2017-10-11,5.4784,6.269,3186 +7040,10029,Very Bad Things,"Kyle Fisher has one last night to celebrate life as a single man before marrying Laura, so he sets out to Vegas with four of his best buddies. But a drug and alcohol filled night on the town with a stripper who goes all the way, turns into a cold night in the desert with shovels when the stripper goes all the way into a body bag after dying in their bathroom. And that's just the first of the bodies to pile up before Kyle can walk down the aisle...",1998-09-11,1.5069,6.269,642 +7041,463272,Johnny English Strikes Again,"Disaster strikes when a criminal mastermind reveals the identities of all active undercover agents in Britain. The secret service can now rely on only one man - Johnny English. Currently teaching at a minor prep school, Johnny springs back into action to find the mysterious hacker. For this mission to succeed, he’ll need all of his skills - what few he has - as the man with yesterday’s analogue methods faces off against tomorrow’s digital technology.",2018-09-13,3.8284,6.3,2592 +7042,27274,Frankenhooker,"A medical school dropout loses his fiancée in a tragic lawnmower incident and decides to bring her back to life. Unfortunately, he was only able to save her head, so he goes to the red light district in the city and lures prostitutes into a hotel room so he can collect body parts to reassemble her.",1990-06-01,2.4889,6.3,338 +7043,10730,King Kong,An oil company expedition disturbs the peace of a giant ape and brings him back to New York to exploit him.,1976-09-08,1.9163,6.3,872 +7044,9922,The Postman,"In 2013, there are no highways, no I-ways, no dreams of a better tomorrow, only scattered survivors across what was once the United States. Into this apocalyptic wasteland comes an enigmatic drifter with a mule, a knack for Shakespeare, and something yet undiscovered: the power to inspire hope.",1997-12-25,3.2195,6.268,1123 +7045,2246,Malice,"A tale about a happily married couple who would like to have children. Tracy teaches infants, Andy's a college professor. Things are never the same after she is taken to hospital and operated upon by Jed, a ""know all"" doctor.",1993-09-29,2.1915,6.268,477 +7046,137321,Winter's Tale,"A burglar falls for an heiress as she dies in his arms. When he learns that he has the gift of reincarnation, he sets out to save her.",2014-02-13,2.3576,6.267,1360 +7047,44706,The Bet,"Two rival ""brothers-in-law"" make a bet that they can stop smoking for 2 weeks. But, it's just not that easy...",1997-10-15,0.5676,6.3,476 +7048,587693,A Christmas Prince: The Royal Baby,"Christmas brings the ultimate gift to Aldovia: a royal baby. But first, Queen Amber must help her family and kingdom by finding a missing peace treaty.",2019-12-05,1.4417,6.266,555 +7049,24452,The Little Shop of Horrors,"Seymour works in a skid row florist shop and is in love with his beautiful co-worker, Audrey. He creates a new plant that not only talks but cannot survive without human flesh and blood.",1960-08-05,2.0607,6.266,423 +7050,4520,Sleuth,"On his sprawling country estate, an aging writer matches wits with the struggling actor who has stolen his wife's heart.",2007-10-12,1.3164,6.266,553 +7051,2171,Wet Hot American Summer,"The setting is Camp Firewood, the year 1981. It's the last day before everyone goes back to the real world, but there's still a summer's worth of unfinished business to resolve. At the center of the action is camp director Beth, who struggles to keep order while she falls in love with the local astrophysics professor. He is busy trying to save the camp from a deadly piece of NASA's Skylab which is hurtling toward earth. All that, plus: a dangerous waterfall rescue, love triangles, misfits, cool kids, and talking vegetable cans. The questions will all be resolved, of course, at the big talent show at the end of the day.",2001-07-27,1.8877,6.266,830 +7052,1378,Shortbus,"In post-9/11 New York City, an eclectic group of citizens find their lives entangled, personally, romantically, and sexually, at Shortbus, an underground Brooklyn salon infamous for its blend of art, music, politics, and carnality.",2006-10-04,3.5508,6.3,540 +7053,541524,Passing,"In 1920s New York City, a Black woman finds her world upended when her life becomes intertwined with a former childhood friend who's passing as white.",2021-10-27,1.5763,6.3,319 +7054,541305,Kajillionaire,"Two con artists have spent 26 years training their only daughter to swindle, scam and steal at every turn. During a desperate and hastily conceived heist, they charm a stranger into joining them, only to have their entire world turned upside down.",2020-09-25,1.7156,6.3,494 +7055,451500,Christmas & Co.,"Christmas is on its way and with it disaster. The 92,000 responsible for manufacturing children's toys all become sick at the same time! It's a tough moment for Santa, better known as Father Christmas. He's left no choice: he must make an emergency trip to Earth with his reindeer to search for a remedy. When he arrives, he must find some allies to save the magic of Christmas.",2017-12-06,1.5203,6.265,647 +7056,409297,A Dark Song,A determined young woman and a damaged occultist risk their lives and souls to perform a dangerous ritual that will grant them what they want.,2016-07-08,1.4463,6.27,495 +7057,168530,Ride Along,"For the past two years, high-school security guard Ben has been trying to show decorated APD detective James that he's more than just a video-game junkie who's unworthy of James' sister, Angela. When Ben finally gets accepted into the academy, he thinks he's earned the seasoned policeman's respect and asks for his blessing to marry Angela. Knowing that a ride along will demonstrate if Ben has what it takes to take care of his sister, James invites him on a shift designed to scare the hell out of the trainee. But when the wild night leads them to the most notorious criminal in the city, James will find that his new partner's rapid-fire mouth is just as dangerous as the bullets speeding at it.",2014-01-07,4.3956,6.265,2314 +7058,6282,Coyote Ugly,"Graced with a velvet voice, 21-year-old Violet Sanford heads to New York to pursue her dream of becoming a songwriter only to find her aspirations sidelined by the accolades and notoriety she receives at her ""day"" job as a barmaid at Coyote Ugly. The ""Coyotes"" as they are affectionately called tantalize customers and the media alike with their outrageous antics, making Coyote Ugly the watering hole for guys on the prowl.",2000-07-30,5.0169,6.265,2147 +7059,4787,Cassandra's Dream,"The tale of two brothers with serious financial woes. When a third party proposes they turn to crime, things go bad and the two become enemies.",2007-10-31,1.4539,6.265,798 +7060,127521,6 Bullets,An ex-mercenary known for finding missing children is hired by a mixed martial arts fighter whose daughter has been kidnapped.,2012-09-11,2.533,6.264,379 +7061,10651,The Dead Pool,"Dirty Harry Callahan returns for his final film adventure. Together with his partner Al Quan, he must investigate the systematic murder of actors and musicians. By the time Harry learns that the murders are a part of a sick game to predict the deaths of celebrities before they happen, it may be too late...",1988-07-13,2.1744,6.264,880 +7062,461130,Code 8,"In Lincoln City, some inhabitants have extraordinary abilities. Most live below the poverty line, under the close surveillance of a heavily militarized police force. Connor, a construction worker with powers, involves with a criminal gang to help his ailing mother. (Based on the short film “Code 8,” 2016.)",2019-12-06,3.2271,6.263,2063 +7063,10743,Confidence,"What Jake Vig doesn't know just might get him killed. A sharp and polished grifter, Jake has just swindled thousands of dollars from the unsuspecting Lionel Dolby with the help of his crew. It becomes clear that Lionel wasn't just any mark, he was an accountant for eccentric crime boss Winston King. Jake and his crew will have to stay one step ahead of both the criminals and the cops to finally settle their debt.",2003-04-25,1.6309,6.263,459 +7064,401478,Death Race: Beyond Anarchy,Black Ops specialist Connor Gibson infiltrates a maximum security prison to take down legendary driver Frankenstein in a violent and brutal car race.,2018-10-02,4.6143,6.262,363 +7065,260346,Taken 3,"Ex-government operative Bryan Mills finds his life is shattered when he's falsely accused of a murder that hits close to home. As he's pursued by a savvy police inspector, Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.",2014-12-16,12.5864,6.263,5908 +7066,259694,How to Be Single,"New York City is full of lonely hearts seeking the right match, and what Alice, Robin, Lucy, Meg, Tom and David all have in common is the need to learn how to be single in a world filled with ever-evolving definitions of love.",2016-02-08,3.3569,6.262,3257 +7067,34813,The Losers,"On a mission deep in the Bolivian jungle, a team of elite commandos finds itself on the receiving end of a lethal betrayal. Now presumed dead, the men join forces with a mysterious operative named Aisha to hunt down their enemy and even the score.",2010-04-23,2.7847,6.262,1862 +7068,14326,Nights in Rodanthe,"Adrienne is trying to decide whether to stay in her unhappy marriage or not, and her life changes when Paul, a doctor who is travelling to reconcile with his estranged son, checks into an inn where she is staying.",2008-09-26,1.8799,6.262,602 +7069,5968,The Woman in Red,"When a happily married family man, who would never consider an affair, meets a beautiful woman in red, he is totally infatuated and desperate to make her acquaintance. However, as he tries out various schemes to sneak out to meet her, he realizes that adultery is not quite as easy as it looks.",1984-08-15,2.7739,6.3,526 +7070,375355,Don't Hang Up,An evening of drunken prank calls becomes a nightmare for a pair of teenagers when a mysterious stranger turns their own game against them.,2016-10-22,1.2584,6.261,554 +7071,77950,Turbo,The tale of an ordinary garden snail who dreams of winning the Indy 500.,2013-07-11,5.8526,6.261,3516 +7072,49021,Killer Elite,"Based on a shocking true story, Killer Elite pits two of the world’s most elite operatives—Danny, an ex-special ops agent and Hunter, his longtime mentor—against the cunning leader of a secret military society. Covering the globe from Australia to Paris, London and the Middle East, Danny and Hunter are plunged into a highly dangerous game of cat and mouse—where the predators become the prey.",2011-09-22,4.1096,6.261,2199 +7073,121734,"Tad, the Lost Explorer","Tad is a celebrity archaeologist and adventurer just like his hero Max Mordon... in his dreams! In reality, Tad is a Chicago construction worker. One day, however, he is mistaken for a real professor and takes his place on a flight to Peru in search of the lost city of Paititi.",2012-08-10,2.5014,6.26,579 +7074,82696,Hope Springs,"After thirty years of marriage, a middle-aged couple attends an intense, week-long counseling session to work on their relationship.",2012-08-07,1.7192,6.26,798 +7075,736918,The Noel Diary,"Cleaning out his childhood home at Christmas, a novelist meets a woman searching for her birth mother. Will an old diary unlock their pasts — and hearts?",2022-11-24,1.3956,6.258,376 +7076,13190,Dead Space: Downfall,"On a deep space mining mission to a remote planet, an ancient religious relic - thought to be proof of the existence of God - is unearthed and brought aboard. When the unholy artifact unleashes a long-dormant alien race, its glimpse of Heaven transforms the ship into a living Hell. A prequel to the events of the 2008 video game Dead Space.",2008-10-28,1.788,6.259,361 +7077,10188,The Sisterhood of the Traveling Pants 2,"Four young women continue the journey toward adulthood that began with ""The Sisterhood of the Traveling Pants."" Now three years later, these lifelong friends embark on separate paths for their first year of college and the summer beyond, but remain in touch by sharing their experiences with each other.",2008-08-06,2.014,6.259,785 +7078,517302,Hatching,"12 year old Tinja is desperate to please her mother, a woman obsessed with presenting the image of a perfect family. One night, Tinja finds a strange egg. What hatches is beyond belief.",2022-03-04,1.4659,6.258,448 +7079,467660,Unsane,A woman is involuntarily committed to a mental institution where she is confronted by her greatest fear.,2018-03-22,2.803,6.258,1573 +7080,334521,Free Fire,"Set in Boston in 1978, a meeting in a deserted warehouse between two gangs turns into a shoot-out and a game of survival.",2017-03-31,2.6138,6.258,1166 +7081,268531,Captain Underpants: The First Epic Movie,"Based on the bestselling book series, this outrageous comedy tells the story of George and Harold, two overly imaginative pranksters who hypnotize their principal into thinking he’s an enthusiastic, yet dimwitted, superhero named Captain Underpants.",2017-06-01,4.128,6.258,1264 +7082,246080,Black Sea,"A rogue submarine captain pulls together a misfit crew to go after a sunken treasure rumored to be lost in the depths of the Black Sea. As greed and desperation take control on-board their claustrophobic vessel, the increasing uncertainty of the mission causes the men to turn on each other to fight for their own survival.",2014-12-05,2.5377,6.3,1122 +7083,142320,Viva l'Italia,"The story of a leading political man, suddenly telling “all the truth” after a serious illness and therefore overwhelming lifes of anyone surrounding him…",2012-10-25,0.5399,6.258,370 +7084,14728,The Librarian: The Curse of the Judas Chalice,"While on a dangerous mission to recover the historic Judas Chalice, Flynn is saved by Simone. But when double-crossed by a respected professor and ambushed by a ruthless gang, Flynn realizes Simone's secret, his true mission and a shocking discovery are all lying within a decaying New Orleans crypt.",2008-10-25,1.7641,6.258,494 +7085,2619,Splash,"A successful businessman falls in love with the girl of his dreams. There's one big complication though; he's fallen hook, line and sinker for a mermaid.",1984-03-09,3.1156,6.3,1401 +7086,296065,Last Shift,"Rookie police officer Jessica Loren has been assigned the last shift at a closing police station and must wait for a hazmat crew to collect biomedical evidence. Ordered not to leave the station under any circumstances, Jessica comes to learn that it's more than just an outdated station, it's home to the ultimate embodiment of evil and his devoted bloodthirsty followers. Jessica is left to fend for herself in the Devil's playground.",2014-10-25,3.7229,6.257,651 +7087,188222,Entourage,"Movie star Vincent Chase, together with his boys, Eric, Turtle and Johnny, are back…and back in business with super agent-turned-studio head Ari Gold. Some of their ambitions have changed, but the bond between them remains strong as they navigate the capricious and often cutthroat world of Hollywood.",2015-06-03,5.4513,6.257,1053 +7088,184346,Deliver Us from Evil,"When a frightening wave of violence sweeps through New York City, troubled cop Sarchie fails to find a rational explanation for the bizarre crimes. However, his eyes are opened to a frightening alternate reality when renegade Jesuit priest Mendoza convinces him that demonic possession may be to blame for the gruesome murders. Together, they wage a valiant supernatural struggle to rid the city of an otherworldly evil.",2014-07-01,3.2379,6.3,2114 +7089,8984,Disclosure,"A computer specialist is sued for sexual harassment by a former lover turned boss who initiated the act forcefully, which threatens both his career and his personal life.",1994-12-09,2.1564,6.3,1212 +7090,990691,Loving Adults,The thin line between love and hate turns deadly when a wife discovers her husband’s affair — and they both take extreme measures to get what they want.,2022-08-26,2.1914,6.256,328 +7091,305470,Power Rangers,"Five ordinary teens must become something extraordinary when they learn that their small town of Angel Grove — and the world — is on the verge of being obliterated by an alien threat. Chosen by destiny, our heroes quickly discover they are the only ones who can save the planet. But to do so, they will have to overcome their real-life issues and before it’s too late, band together as the Power Rangers.",2017-03-23,5.2894,6.256,4494 +7092,571495,The Ruthless,"Milan, Italy, 1967. Santo Russo, a boy of Calabrian origin, arrives north with his parents and younger brother to find better living conditions. Due to an absurd misunderstanding and his father's contempt, Santo ends up in prison, where he gets a “true education.” In 1978, he and his friends Slim and Mario embark on a 15-year criminal career, a successful and ruthless spiral of robberies, kidnappings, murders and heroin smuggling.",2019-04-08,1.8704,6.255,415 +7093,245706,True Story,"A drama centered on the relationship between journalist Michael Finkel and Christian Longo, an FBI Most Wanted List murderer who for years lived outside the U.S. under Finkel's name.",2015-04-17,2.2363,6.3,2007 +7094,16288,Creepshow 2,"Three macabre tales from the latest issue of a boy's favorite comic book, dealing with a vengeful wooden Native American, a monstrous blob in a lake, and an undying hitchhiker.",1987-05-01,2.2933,6.255,609 +7095,463821,The House with a Clock in Its Walls,"When ten-year-old Lewis is suddenly orphaned, he is sent to live with his Uncle Jonathan in a creaky (and creepy) old mansion with a mysterious ticking noise that emanates from the walls. Upon discovering that his uncle is a warlock, Lewis begins learning magic, but when he rebelliously resurrects an evil warlock he must find the secret of the house and save the world from destruction.",2018-09-15,2.818,6.254,2220 +7096,11484,Rollerball,"In a corporate-controlled future, an ultra-violent sport known as Rollerball represents the world, and one of its powerful athletes is out to defy those who want him out of the game.",1975-06-25,1.8233,6.3,563 +7097,1588,Bring It On,"The Toro cheerleading squad from Rancho Carne High School in San Diego has got spirit, spunk, sass and a killer routine that's sure to land them the national championship trophy for the sixth year in a row. But for newly-elected team captain Torrance, the Toros' road to total cheer glory takes a shady turn when she discovers that their perfectly-choreographed routines were in fact stolen.",2000-08-25,3.6444,6.3,1754 +7098,693,Meet the Fockers,"Hard-to-crack ex-CIA man Jack Byrnes and his wife Dina head for the warmer climes of Florida to meet the parents of their son-in-law-to-be, Greg Focker. Unlike their happily matched offspring, the future in-laws find themselves in a situation of opposites that definitely do not attract.",2004-12-22,4.6552,6.254,4914 +7099,814800,Goodnight Mommy,"When twin brothers arrive home to find their mother’s demeanor altered and face covered in surgical bandages, they begin to suspect the woman beneath the gauze might not be their mother.",2022-09-16,2.7802,6.253,498 +7100,525554,The Bouncer,A tough nightclub bouncer struggling to raise his 8-year-old daughter is forced to go undercover after an unfortunate event.,2018-08-22,1.3915,6.3,375 +7101,323675,Ride Along 2,"As his wedding day approaches, Ben heads to Miami with his soon-to-be brother-in-law James to bring down a drug dealer who's supplying the dealers of Atlanta with product.",2016-01-14,3.3976,6.253,1729 +7102,158015,The Purge,"Given the country's overcrowded prisons, the U.S. government begins to allow 12-hour periods of time in which all illegal activity is legal. During one of these free-for-alls, a family must protect themselves from a home invasion.",2013-05-31,7.2514,6.253,8552 +7103,126277,American Mary,A young medical student struggling to pay tuition is drawn into the shady world of underground body-modification.,2013-01-11,1.8445,6.253,549 +7104,2332,Taxi 2,A cabdriver and a cop race to Paris to rescue a love interest and the Japanese minister of defense from kidnappers.,2000-03-25,2.6886,6.253,1799 +7105,848326,Rebel Moon - Part One: A Child of Fire,"When the ruthless forces of the Motherworld threaten a quiet farming village on a distant moon, a mysterious outsider becomes its best hope for survival.",2023-12-15,5.8431,6.252,2351 +7106,518452,Like Father,"When a workaholic young executive, is left at the altar, she ends up on her Caribbean honeymoon cruise with the last person she ever expected: her estranged and equally workaholic father. The two depart as strangers, but over the course of a few hilarious adventures, a couple of umbrella-clad cocktails and a whole lot of soul-searching, they return with a renewed appreciation for family and life.",2018-08-03,1.4995,6.252,679 +7107,182415,"White as Milk, Red as Blood","Like all sixteen-year-olds, Leo prefers the company of friends, motorbike rides and music to school. None of the teachers seem to be able to arouse his interest until the arrival in his class of a young history and philosophy substitute who, with his modern methods, helps him see the world with different eyes. In love with Beatrice, the ethereal girl of his dreams, Leo divides the world by colours. Beatrice is the red of love but he is forced to confront his own beliefs and fears when he discovers that the girl is suffering from leukemia, a disease that he links to white, a symbol of emptiness and loss.",2013-04-02,0.7173,6.252,616 +7108,21786,Cold Prey,"When one of them breaks a leg, five friends snowboarding in the Norwegian mountains take shelter in an abandoned ski lodge and soon realize they’re not alone.",2006-10-13,1.3246,6.252,427 +7109,515841,I Am Not an Easy Man,"The chauvinist Damien wakes up in a world where women and men have their roles reversed in society, and everything is dominated by women.",2018-04-13,1.621,6.251,1001 +7110,146239,Delivery Man,An affable underachiever finds out he's fathered 533 children through anonymous donations to a fertility clinic 20 years ago. Now he must decide whether or not to come forward when 142 of them file a lawsuit to reveal his identity.,2013-10-10,2.2184,6.251,1518 +7111,33217,Diary of a Wimpy Kid,"Greg Heffley is headed for big things, but first he has to survive the scariest, most humiliating experience of any kid’s life – middle school! That won’t be easy, considering he’s surrounded by hairy-freckled morons, wedgie-loving bullies and a moldy slice of cheese with nuclear cooties!",2010-03-19,5.3473,6.251,1659 +7112,11587,The Exorcist III,"On the fifteenth anniversary of the exorcism that claimed Father Damien Karras' life, Police Lieutenant Kinderman's world is once again shattered when a boy is found decapitated and savagely crucified.",1990-08-17,3.2157,6.3,810 +7113,10447,No Escape,"In the year 2022, a ruthless prison warden has created the ultimate solution for his most troublesome and violent inmates: Absolom, a secret jungle island where prisoners are abandoned and left to die. But Marine Captain John Robbins, convicted of murdering a commanding officer, is determined to escape the island in order to reveal the truth behind his murderous actions and clear his name.",1994-04-29,3.0942,6.251,443 +7114,11954,Lifeforce,A space shuttle mission investigating Halley's Comet brings back a malevolent race of space vampires who transform most of London's population into zombies. The only survivor of the expedition and British authorities attempt to capture a mysterious but beautiful alien woman who appears responsible.,1985-06-21,3.4686,6.2,646 +7115,655082,Eiffel,"The French government is asking Gustave Eiffel to design something spectacular for the 1889 Paris World Fair, but he simply wants to design the subway—until he crosses paths with a mysterious woman from his past.",2021-10-07,2.1653,6.249,695 +7116,406563,Insidious: The Last Key,"Parapsychologist Elise Rainier and her team travel to Five Keys, NM, to investigate a man’s claim of a haunting. Terror soon strikes when Rainier realizes that the house he lives in was her family’s old home.",2018-01-03,6.7259,6.249,2996 +7117,351809,To Steal from a Thief,"Valencia, Spain. On a rainy morning, six armed men in disguise assault a bank. But what seemed like an easy heist, quickly goes wrong with nothing unfolding as planned, and mistrust quickly builds between the two leaders of the gang.",2016-03-03,1.3368,6.249,380 +7118,345940,The Meg,"A deep sea submersible pilot revisits his past fears in the Mariana Trench, and accidentally unleashes the seventy foot ancestor of the Great White Shark believed to be extinct.",2018-08-09,11.1387,6.249,7888 +7119,81857,Alps,"A nurse, a paramedic, a gymnast and her coach offer a service for hire wherein they stand in for dead people by appointment, hired by relatives, friends or colleagues of the deceased, to assist with the grieving process.",2011-09-01,0.846,6.2,321 +7120,63197,Megan Is Missing,"Fourteen-year–old Megan and her best friend Amy spend a lot of time on the internet, posting videos of themselves and chatting with guys online. One night Megan chats with a guy named Josh who convinces her to meet him for a date. The next day, Megan is missing—forever. Based on actual cases of child abduction.",2011-05-01,5.2393,6.249,749 +7121,11862,Father of the Bride Part II,"Just when George Banks has recovered from his daughter's wedding, he receives the news that she's pregnant ... and that George's wife is expecting too. He was planning on selling their home, but that's a plan that—like George—will have to change with the arrival of both a grandchild and a kid of his own.",1995-12-08,2.0115,6.249,760 +7122,11238,Aladdin and the King of Thieves,"Legendary secrets are revealed as Aladdin and his friends—Jasmine, Abu, Carpet and, of course, the always entertaining Genie—face all sorts of terrifying threats and make some exciting last-minute escapes pursuing the King Of Thieves and his villainous crew.",1996-05-20,2.8569,6.2,1902 +7123,10479,Rules of Engagement,A Marine Colonel is brought to court-martial after ordering his men to fire on demonstrators surrounding the American embassy in Yemen.,2000-04-07,2.2096,6.2,739 +7124,9705,Swordfish,"Rogue agent Gabriel Shear is determined to get his mitts on $9 billion stashed in a secret Drug Enforcement Administration account. He wants the cash to fight terrorism, but lacks the computer skills necessary to hack into the government mainframe. Enter Stanley Jobson, a n'er-do-well encryption expert who can log into anything.",2001-06-08,5.0658,6.249,2779 +7125,446101,Assassination Nation,"After an anonymous hacker begins leaking the private data of thousands living in a small American town, the townspeople spiral into madness, with four high school seniors at the center of the maelstrom.",2018-09-21,1.8335,6.248,856 +7126,301355,Message from the King,"On a relentless quest to avenge his sister's murder, a man from Cape Town infiltrates a sprawling network of lowlifes and elites in Los Angeles.",2017-05-10,1.874,6.248,463 +7127,49022,Something Borrowed,"Though Rachel is a successful attorney and a loyal, generous friend, she is still single. After one drink too many at her 30th-birthday celebration, Rachel unexpectedly falls into bed with her longtime crush, Dex -- who happens to be engaged to her best friend, Darcy. Ramifications of the liaison threaten to destroy the women's lifelong friendship, while Ethan, Rachel's confidant, harbors a potentially explosive secret of his own.",2011-05-05,2.7724,6.2,1061 +7128,27578,The Expendables,"Barney Ross leads a band of highly skilled mercenaries including knife enthusiast Lee Christmas, a martial arts expert Yin Yang, heavy weapons specialist Hale Caesar, demolitionist Toll Road, and a loose-cannon sniper Gunner Jensen. When the group is commissioned by the mysterious Mr. Church to assassinate the dictator of a small South American island, Barney and Lee visit the remote locale to scout out their opposition and discover the true nature of the conflict engulfing the city.",2010-08-07,8.2698,6.248,7969 +7129,11459,Sky High,"Set in a world where superheroes are commonly known and accepted, young Will Stronghold, the son of the Commander and Jetstream, tries to find a balance between being a normal teenager and an extraordinary being.",2005-07-29,4.3941,6.248,2368 +7130,9598,Babe,"Babe is a little pig who doesn't quite know his place in the world. With a bunch of odd friends, like Ferdinand the duck who thinks he is a rooster and Fly the dog he calls mum, Babe realises that he has the makings to become the greatest sheep pig of all time, and Farmer Hoggett knows it. With the help of the sheep dogs, Babe learns that a pig can be anything that he wants to be.",1995-07-18,4.1787,6.248,2986 +7131,4959,The International,"An interpol agent and an attorney are determined to bring one of the world's most powerful banks to justice. Uncovering money laundering, arms trading, and conspiracy to destabilize world governments, their investigation takes them from Berlin, Milan, New York and Istanbul. Finding themselves in a chase across the globe, their relentless tenacity puts their own lives at risk.",2009-02-03,2.9412,6.248,1316 +7132,613093,Valley of the Dead,"During the Spanish Civil War, sworn enemies must work together when they encounter flesh-eating zombies created in a Nazi experiment.",2020-10-08,1.4191,6.247,308 +7133,49494,The Eagle,"In 140 AD, twenty years after the unexplained disappearance of the entire Ninth Legion in the mountains of Scotland, young centurion Marcus Aquila arrives from Rome to solve the mystery and restore the reputation of his father, the commander of the Ninth. Accompanied only by his British slave Esca, Marcus sets out across Hadrian's Wall into the uncharted highlands of Caledonia - to confront its savage tribes, make peace with his father's memory, and retrieve the lost legion's golden emblem, the Eagle of the Ninth.",2011-02-08,3.0376,6.247,1345 +7134,38167,Eat Pray Love,"Liz Gilbert had everything a modern woman is supposed to dream of having – a husband, a house and a successful career – yet like so many others, she found herself lost, confused and searching for what she really wanted in life. Newly divorced and at a crossroads, Gilbert steps out of her comfort zone, risking everything to change her life, embarking on a journey around the world that becomes a quest for self-discovery. In her travels, she discovers the true pleasure of nourishment by eating in Italy, the power of prayer in India and, finally and unexpectedly, the inner peace and balance of true love in Bali.",2010-08-12,4.1413,6.2,2521 +7135,24924,Night of the Demons,"When partygoers at a deserted funeral home decide to have a séance on Halloween night, they awaken something evil with a thirst for blood.",1988-10-14,1.5002,6.247,360 +7136,333667,Rock Dog,"When a radio falls from the sky into the hands of a wide-eyed Tibetan Mastiff, he leaves home to fulfill his dream of becoming a musician, setting into motion a series of completely unexpected events.",2016-07-08,2.2991,6.2,303 +7137,254128,San Andreas,"In the aftermath of a massive earthquake in California, a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.",2015-05-27,8.4002,6.246,8736 +7138,116741,The Internship,Two recently laid-off men in their 40s try to make it as interns at a successful Internet company where their managers are in their 20s.,2013-06-07,0.2447,6.246,4287 +7139,14373,Death Wish II,Paul Kersey is again a vigilante trying to find five punks who murdered his housekeeper and daughter in Los Angeles.,1982-02-20,2.0026,6.2,492 +7140,14208,The Librarian: Return to King Solomon's Mines,"After retrieving the Crystal Skull in Utah, Flynn Carsen receives a map in the mail with the secret location of King Solomon's Mines. When the scroll is stolen, Judson explains the power of the Key of Solomon's book and assigns Flynn to retrieve the map. The map is useless without the legend piece to decipher it, which is located in Volubilis near the Roman ruins in Morocco. Flynn heads to Casablanca to the ruins where he is chased by a group of mercenaries leaded by General Samir. They too want to find the location of King Solomon's mines. Flynn teams-up with Professor Emily Davenport working in the dig and they escape from General Samir and his men. While traveling to Gedi, they save the local Jomo from death and the trio faces a dangerous journey through the wild Africa.",2006-09-09,2.3688,6.246,593 +7141,10521,Bride Wars,Two best friends become rivals when their respective weddings are accidentally booked for the same day.,2009-01-09,3.061,6.246,3085 +7142,608195,Ghosts of War,A group of World War II American soldiers encounter a supernatural enemy as they occupy a French castle previously under Nazi control.,2020-07-03,2.3414,6.245,566 +7143,432613,"Marry Me, Dude",Yassine asks his best friend Fred to marry him in order to avoid deportation...,2017-10-25,1.142,6.245,986 +7144,14353,Repo! The Genetic Opera,"By the year 2056, an epidemic of organ failures has devastated the planet. The megacorporation GeneCo provides organ transplants on a payment plan - and those who can’t fulfill their plans have their organs repossessed. In the midst of this, a sickly teenager discovers a shocking secret about herself, her father, and their connection to GeneCo.",2008-11-07,1.5947,6.25,352 +7145,9872,Explorers,"Middle schooler Ben spends his free time watching sci-fi films, playing video games and reading comic books. Surprisingly, his affinity for all things fantastical yields a real result – when he has a vivid dream about technology, his prodigy best friend Wolfgang manages to create a working spacecraft. Joined by their buddy Darren, the boys take off into outer space and encounter some very odd extraterrestrial life.",1985-07-12,2.6259,6.2,475 +7146,2770,American Pie 2,"After a year apart - attending different schools, meeting different people - the guys rent a beach house and vow to make this the best summer ever. As it turns out, whether that will happen or not has a lot to do with the girls. Between the wild parties, outrageous revelations and yes, a trip to band camp, they discover that times change and people change, but in the end, it's all about sticking together.",2001-08-10,7.1629,6.245,5058 +7147,425980,Brad's Status,"Although Brad has a satisfying career, a sweet wife and a comfortable life in suburban Sacramento, things aren't quite what he imagined during his college glory days. When he accompanies his musical prodigy son on a university tour, he can't help comparing his life with those of his four best college friends who seemingly have more wealthy and glamorous lives. But when circumstances force him to reconnect with his former friends, Brad begins to question whether he has really failed or if their lives are actually more flawed than they appear.",2017-09-14,1.4414,6.244,420 +7148,291276,Unlocked,"After failing to apprehend the terrorist behind a Paris attack that claimed dozens of lives, CIA agent Alice Racine is forced to live in London as a caseworker. Her mentor unexpectedly calls her back into action when the CIA discovers that another attack is imminent. Alice soon learns that the classified information she's uncovered has been compromised...",2017-04-27,4.3435,6.2,1137 +7149,245703,Midnight Special,A father and son go on the run after the dad learns his child possesses special powers.,2016-02-18,2.4553,6.244,1941 +7150,9770,Mad City,A misguided museum guard who loses his job and then tries to get it back at gunpoint is thrown into the fierce world of ratings-driven TV gone mad.,1997-11-07,0.994,6.244,352 +7151,842942,Bandit,"After escaping a Michigan prison, a charming career criminal assumes a new identity in Canada and goes on to rob a record 59 banks and jewellery stores while being hunted by a rogue task force. Based on the true story of The Flying Bandit.",2022-09-23,3.0351,6.243,367 +7152,1248,Hannibal Rising,"The story of the early, murderous roots of the cannibalistic killer, Hannibal Lecter – from his hard-scrabble Lithuanian childhood, where he witnesses the repulsive lengths to which hungry soldiers will go to satiate themselves, through his sojourn in France, where as a medical student he hones his appetite for the kill.",2007-02-06,1.0155,6.243,2291 +7153,141043,A Long Way Down,"Four lost souls—a disgraced TV presenter, a foul-mouthed teen, an isolated single mother, and a solipsistic muso—decide to end their lives on the same night, New Year's Eve. When this disillusioned quartet of strangers meet unintentionally at the same suicide hotspot, a London high-rise with the well-earned nickname Topper's Tower, they mutually agree to call off their plans for six weeks, forming an unconventional, dysfunctional family. They become media sensations as the Topper House Four and search together for the reasons to keep on living.",2014-03-20,1.7552,6.24,897 +7154,606625,Follow Me,"A social media personality travels with his friends to Moscow to capture new content for his successful vlog. Always pushing the limits and catering to a growing audience, they enter a cold world of mystery, excess, and danger. When the lines between real life and social media are blurred, the group must fight to escape, and survive.",2020-07-03,1.4707,6.241,525 +7155,196867,Annie,"Annie is a young, happy foster kid who's also tough enough to make her way on the streets of New York in 2014. Originally left by her parents as a baby with the promise that they'd be back for her someday, it's been a hard knock life ever since with her mean foster mom Miss Hannigan. But everything's about to change when the hard-nosed tycoon and New York mayoral candidate Will Stacks—advised by his brilliant VP and his shrewd and scheming campaign advisor—makes a thinly-veiled campaign move and takes her in. Stacks believes he's her guardian angel, but Annie's self-assured nature and bright, sun-will-come-out-tomorrow outlook on life just might mean it's the other way around.",2014-12-18,4.446,6.241,1310 +7156,15969,The Return of Jafar,"The evil Jafar escapes from the magic lamp as an all-powerful genie, ready to plot his revenge against Aladdin. From battling elusive villains atop winged horses, to dodging flames inside an exploding lava pit, it's up to Aladdin - with Princess Jasmine and the outrageously funny Genie by his side - to save the kingdom once and for all.",1994-05-20,3.5842,6.2,3389 +7157,3040,Night Watch,"Among normal humans live the ""Others"" possessing various supernatural powers. They are divided up into the forces of light and the forces of the dark, who signed a truce several centuries ago to end a devastating battle. Ever since, the forces of light govern the day while the night belongs to their dark opponents. In modern day Moscow the dark Others actually roam the night as vampires while a ""Night Watch"" of light forces, among them Anton, the movie's protagonist, try to control them and limit their outrage",2004-07-08,1.7106,6.241,756 +7158,2284,Mr. Magorium's Wonder Emporium,"Molly Mahoney is the awkward and insecure manager of Mr. Magorium's Wonder Emporium—the strangest, most fantastic and most wonderful toy store in the world. After Mr. Magorium bequeaths the store to her, a dark and ominous change begins to take over the once-remarkable Emporium.",2007-11-16,1.8354,6.241,1272 +7159,1008953,Incoming,Their first week of high school. The biggest party of the year. Mistakes will be made as four teenage boys navigate a night of mayhem and debauchery.,2024-08-22,4.3584,6.24,310 +7160,627290,Antebellum,Successful author Veronica finds herself trapped in a horrifying reality and must uncover the mind-bending mystery before it's too late.,2020-09-02,3.1025,6.243,939 +7161,526019,Like a Boss,"Two female friends with very different ideals decide to start a beauty company together. One is more practical, while the other wants to earn her fortune and live a lavish lifestyle.",2020-01-09,1.7157,6.2,651 +7162,335778,Risen,"Clavius, a powerful Roman military tribune, and his aide, Lucius, are tasked with solving the mystery of what happened to Jesus in the weeks following the crucifixion, in order to disprove the rumors of a risen Messiah and prevent an uprising in Jerusalem.",2016-02-18,2.557,6.24,885 +7163,244458,The Voices,"A mentally unhinged factory worker must decide whether to listen to his talking cat and become a killer, or follow his dog's advice to keep striving for normalcy.",2014-01-19,2.1031,6.24,1827 +7164,58233,Johnny English Reborn,"The most prominent heads of state in the world begin gathering for a conference that could have a major impact on global politics. When MI-7 receives word that the Chinese premier has become the target of some high-powered killers, it falls on Johnny English to save the day. Armed with the latest high-tech weaponry and gadgets that would make even James Bond jealous, the once-disgraced agent uncovers evidence of a massive conspiracy involving some of the world's most powerful organisations, and vows to redeem his tarnished reputation by stopping the killers before they can strike.",2011-09-15,6.1029,6.24,3399 +7165,644092,Finding ʻOhana,"Two Brooklyn siblings' summer in a rural Oahu town takes an exciting turn when a journal pointing to long-lost treasure sets them on an adventure, leading them to reconnect with their Hawaiian heritage.",2021-01-29,2.7984,6.2,424 +7166,79548,Gone,"Jill Conway is trying to rebuild her life after surviving a terrifying kidnapping attempt. Though she is having a difficult time, she takes small steps toward normalcy by starting a new job and inviting her sister, Molly, to move in with her. Returning home from work one morning, Jill discovers that Molly has vanished, and she is certain that the same man who previously abducted her has returned for revenge.",2012-02-23,2.4487,6.239,1170 +7167,35552,The Extraordinary Adventures of Adèle Blanc-Sec,"An adventure set in the early part of the 20th century, focused on a popular novelist and her dealings with would-be suitors, the cops, monsters, and other distractions.",2010-04-09,3.1151,6.2,1409 +7168,12103,Don't Say a Word,"When the daughter of a psychiatrist is kidnapped, he is horrified to discover that the abductors' demand is that he break through to a young woman, suffering from PTSD, who knows a secret six digit code number.",2001-09-28,2.1177,6.239,944 +7169,11845,Intimacy,"Failed musician Jay abandoned his family and now earns a living as head bartender in a trendy London pub. Every Wednesday afternoon, a woman comes to his house for graphic, almost wordless, sex. One day, Jay follows her and learns about her. This eventually disrupts their relationship.",2001-01-20,4.0558,6.242,529 +7170,11591,The Man with Two Brains,"A brain surgeon marries a femme fatale, causing his life to turn upside down. Things go more awry when he falls in love with a talking brain.",1983-06-10,1.7685,6.2,448 +7171,10225,Friday the 13th Part VI: Jason Lives,"Tommy Jarvis, tormented by the fear that maybe Jason isn't really dead, unwittingly resurrects the mass murderer for another bloody rampage.",1986-08-01,4.125,6.2,1257 +7172,10127,Critters 2,"Three bounty hunters from space fly back to the town of Grovers Bend, hoping to save local residents from a new batch of Critter eggs.",1988-04-29,2.2624,6.2,475 +7173,5172,The Astronaut Farmer,"Texan Charles Farmer left the Air Force as a young man to save the family ranch when his dad died. Like most American ranchers, he owes his bank. Unlike most, he's an astrophysicist with a rocket in his barn - one he's built and wants to take into space. It's his dream. The FBI puts him under surveillance when he tries to buy rocket fuel, and the FAA stalls him when he files a flight plan – but Charles is undeterred.",2007-02-23,2.0848,6.239,349 +7174,1845,2 Days in Paris,"Marion and Jack try to rekindle their relationship with a visit to Paris, home of Marion's parents — and several of her ex-boyfriends.",2007-02-09,0.9619,6.239,394 +7175,976734,Canary Black,"Top level CIA agent Avery Graves is blackmailed by terrorists into betraying her own country to save her kidnapped husband. Cut off from her team, she turns to her underworld contacts to survive and help locate the coveted intelligence that the kidnappers want.",2024-10-10,6.3062,6.2,439 +7176,833097,Falling for Christmas,"An engaged, spoiled hotel heiress finds herself in the care of a handsome, blue-collar lodge owner and his precocious daughter after getting amnesia in a skiing accident.",2022-11-10,1.5081,6.24,830 +7177,16325,Echelon Conspiracy,"Mysterious cell phone messages promise a young American engineer untold wealth - then make him the target of a deadly international plot. Dangerous security operatives chase the engineer across the globe, while a powerful government official pursues a mysterious agenda that threatens the stability of the entire world.",2009-02-27,1.203,6.238,462 +7178,10982,Hoodwinked!,"Little Red Riding Hood: A classic story, but there's more to every tale than meets the eye. Before you judge a book by its cover, you've got to flip through the pages. In the re-telling of this classic fable, the story begins at the end of the tale and winds its way back. Chief Grizzly and Detective Bill Stork investigate a domestic disturbance at Granny's cottage, involving a karate-kicking Red Riding Hood, a sarcastic wolf and an oafish Woodsman.",2005-12-16,4.1196,6.2,1804 +7179,4911,Dark Blue,"Set during the Rodney King riots, a robbery homicide investigation triggers a series of events that will cause a corrupt LAPD officer to question his tactics.",2002-12-14,1.6562,6.238,345 +7180,4911,Dark Blue,"Set during the Rodney King riots, a robbery homicide investigation triggers a series of events that will cause a corrupt LAPD officer to question his tactics.",2002-12-14,1.6562,6.238,345 +7181,689700,Clean,"Tormented by a past life, garbage man Clean attempts a life of quiet redemption. But when his good intentions mark him a target of a local crime boss, Clean is forced to reconcile with the violence of his past.",2022-01-28,1.5587,6.237,399 +7182,384371,Roommates Wanted,"When recently widowed, it is difficult to get used to a new life ... This is the case for Hubert Jacquin, who spends most of his time in his huge apartment, depressed, in front of his TV. One day, after a misunderstanding, his life will change. Manuela, a young and bubbly adventurer in search of a dwelling calls his home! At first reluctant, Hubert will quickly get used to the presence of this energy storm, who even manages to convince him to allow two other people to stay. There are many surprises in store for Hubert ...",2016-04-20,0.9529,6.237,361 +7183,153518,The Angry Birds Movie,"An island populated entirely by happy, flightless birds or almost entirely. In this paradise, Red, a bird with a temper problem, speedy Chuck, and the volatile Bomb have always been outsiders. But when the island is visited by mysterious green piggies, it’s up to these unlikely outcasts to figure out what the pigs are up to.",2016-05-11,5.7472,6.237,3779 +7184,14844,Chasing Liberty,"The President's daughter, unable to experience life like a normal 18 year-old, escapes from her entourage of Secret Service agents while traveling in Europe. She falls in love with a handsome British stranger, who also happens to be working undercover for her father.",2004-01-09,1.6475,6.237,624 +7185,9604,Red Heat,A tough Russian policeman is forced to partner up with a cocky Chicago police detective when he is sent to Chicago to apprehend a Georgian drug lord who killed his partner and fled the country.,1988-06-17,4.1973,6.237,1512 +7186,2086,Nick of Time,An ordinary man is suddenly forced into a plot to kill a politician in exchange for his kidnapped daughter's freedom.,1995-11-22,1.494,6.237,751 +7187,707,A View to a Kill,A newly-developed microchip designed by Zorin Industries for the British Government that can survive the electromagnetic radiation caused by a nuclear explosion has landed in the hands of the KGB. James Bond must find out how and why. His suspicions soon lead him to big industry leader Max Zorin who forms a plan to destroy his only competition in Silicon Valley by triggering a massive earthquake in the San Francisco Bay.,1985-05-24,4.3033,6.237,2055 +7188,599975,Countdown,"A young nurse downloads an app that tells her she only has three days to live. With time ticking away and a mysterious figure haunting her, she must find a way to save her life before time runs out.",2019-10-24,6.5409,6.236,2191 +7189,52505,The Other Woman,"Emilia, a law-school graduate, falls in love with her married boss, Jack. After Emilia marries Jack, her happiness turns unexpectedly to grief following the death of her infant daughter. Devastated, Emilia nonetheless carries on, attempting to forge a connection with her stepson William and to resist the interference of Jack's jealous ex-wife.",2010-10-28,1.7721,6.236,401 +7190,13934,Mater and the Ghostlight,"Mater, the rusty but trusty tow truck from Cars, spends a day in Radiator Springs playing scary pranks on his fellow townsfolk. That night at Flo's V8 Café, the Sheriff tells the story of the legend of the Ghostlight, and as everyone races home Mater is left alone primed for a good old-fashioned scare.",2006-07-27,2.3528,6.236,455 +7191,3604,Flash Gordon,A football player and his mates travel to the planet Mongo and find themselves fighting the tyranny of Ming the Merciless to save Earth.,1980-09-01,2.5398,6.236,1017 +7192,49040,The Bourne Legacy,New CIA operative Aaron Cross experiences life-or-death stakes that have been triggered by the previous actions of Jason Bourne.,2012-08-08,6.8208,6.235,5845 +7193,22907,Takers,"A seasoned team of bank robbers, including Gordon Jennings, John Rahway, A.J., and brothers Jake and Jesse Attica successfully complete their latest heist and lead a life of luxury while planning their next job. When Ghost, a former member of their team, is released from prison he convinces the group to strike an armored car carrying $20 million. As the ""Takers"" carefully plot out their strategy and draw nearer to exacting the grand heist, a reckless police officer inches closer to apprehending the criminals.",2010-08-26,4.1442,6.235,1309 +7194,11976,Legend,"Set in a timeless mythical forest inhabited by fairies, goblins, unicorns and mortals, this fantastic story follows a mystical forest dweller, chosen by fate, to undertake a heroic quest. He must save the beautiful Princess Lili and defeat the demonic Lord of Darkness, or the world will be plunged into a never-ending ice age.",1985-08-28,3.5552,6.2,1281 +7195,11702,The Replacement Killers,"Hired assassin John Lee is asked by Chinatown crime boss Terence Wei to murder the young son of policeman Stan Zedkov. Lee has the boy in his sights, but his conscience gets the better of him, and he spares the child's life. Afraid that Wei will take revenge on his family in China, Lee seeks out expert forger Meg Coburn to obtain the passport he needs to get out of the country, but a band of replacement killers is soon on his trail.",1998-02-06,2.0076,6.2,538 +7196,41210,The Switch,"Kassie is a smart, fun-loving single woman who, despite her neurotic best friend Wally’s objections, decides it’s time to have a baby – even if it means doing it herself… with a little help from a charming sperm donor. But, unbeknownst to her, Kassie’s plans go awry because of a last-minute switch that isn’t discovered until seven years later… when Wally gets acquainted with Kassie’s cute, though slightly neurotic, son.",2010-05-11,3.1055,6.234,1940 +7197,978796,Bagman,"For centuries and across cultures, parents have warned their children of the legendary Bagman, who snatches innocent children and stuffs them into his vile, rotting bag—never to be seen again. Patrick McKee narrowly escaped such an encounter as a boy, which left him with lasting scars throughout his adulthood. Now, Patrick’s childhood tormentor has returned, threatening the safety of his wife Karina and son Jake.",2024-09-20,7.2607,6.233,358 +7198,502682,Book Club,Four lifelong friends decide that their lives could change by becoming nasty and reading Fifty Shades of Grey in their monthly book club to get inspiration on how to handle sexual pleasure at an elderly age.,2018-05-18,1.9241,6.233,800 +7199,438396,Unknown Origins,"In Madrid, Spain, a mysterious serial killer ruthlessly murders his victims by recreating the first appearance of several comic book superheroes. Cosme, a veteran police inspector who is about to retire, works on the case along with the tormented inspector David Valentín and his own son Jorge Elías, a nerdy young man who owns a comic book store.",2020-08-28,1.9175,6.233,436 +7200,10498,Point of No Return,"Hardened criminal Maggie Hayward's consistent violence, even in police custody, ends in the execution chamber. However, top-secret US government agent 'Bob' arranges a staged death, so Maggie can be elaborately trained as a phantom killer and subdued into obedience.",1993-03-19,1.7515,6.2,712 +7201,9801,Bridget Jones: The Edge of Reason,"Bridget Jones is working as a TV host and still dating her new love, barrister Mark Darcy, for a perfect six weeks. But Bridget is jealous of the time Mark spends with a gorgeous co-worker Rebecca and, despite a vacation meant to smooth things over, ends their relationship. On assignment in Thailand with her disreputable ex, Daniel Cleaver - claiming to be a reformed man - they have a short dalliance, and she is arrested at the airport and temporarily jailed on the false accusation of drug smuggling before Mark, seemingly indifferent, comes to the rescue.",2004-11-10,3.3023,6.2,2916 +7202,9061,Just Cause,A Harvard professor is lured back into the courtroom after twenty-five years to take the case of a young black man condemned to death for the horrific murder of a child.,1995-02-17,1.5177,6.233,585 +7203,1041613,Immaculate,"An American nun embarks on a new journey when she joins a remote convent in the Italian countryside. However, her warm welcome quickly turns into a living nightmare when she discovers her new home harbours a sinister secret and unspeakable horrors.",2024-03-20,6.2954,6.232,1463 +7204,774741,Diary of a Wimpy Kid,Greg Heffley is a scrawny but ambitious kid with an active imagination and big plans to be rich and famous – he just has to survive middle school first.,2021-12-02,2.9695,6.242,378 +7205,441701,Veronica,"In 1991 Madrid, after holding a séance at school, a teen girl minding her younger siblings at home suspects an evil force has entered their apartment.",2017-08-25,2.7989,6.232,1784 +7206,17466,Death Warrant,"Canadian policeman Louis Burke is assigned in a jail to investigate the murders of prisoners and jailors. While there, Louis, using his outstanding martial arts skills, is able to save his life and make himself respected in this violent world.",1990-09-14,2.3319,6.232,584 +7207,17281,Gigi,"A home, a motorcar, servants, the latest fashions: the most eligible and most finicky bachelor in Paris offers them all to Gigi. But she, who's gone from girlish gawkishness to cultured glamour before our eyes, yearns for that wonderful something money can't buy.",1958-05-15,1.6705,6.2,326 +7208,760868,Black Crab,"To end an apocalyptic war and save her daughter, a reluctant soldier embarks on a desperate mission to cross a frozen sea carrying a top-secret cargo.",2022-03-18,1.7468,6.231,861 +7209,347375,Mile 22,"An elite group of American operatives, aided by a top-secret tactical command team, must transport an asset who holds life-threatening information to an extraction point 22 miles away through the hostile streets of an Asian city.",2018-08-16,3.4557,6.23,2287 +7210,329004,The Survivalist,"In a time of starvation, a survivalist lives off a small plot of land hidden deep in forest. When two women seeking food and shelter discover his farm, he finds his existence threatened.",2015-04-15,1.435,6.231,351 +7211,209262,Parkland,"November 22nd, 1963 was a day that changed the world forever — when young American President John F. Kennedy was assassinated in Dallas, Texas. This film follows, almost in real time, a handful of individuals forced to make split-second decisions after an event that would change their lives and forever alter the world’s landscape.",2013-10-02,1.5179,6.231,373 +7212,8656,Deep Impact,"A seven-mile-wide space rock is hurtling toward Earth, threatening to obliterate the planet. Now, it's up to the president of the United States to save the world. He appoints a tough-as-nails veteran astronaut to lead a joint American-Russian crew into space to destroy the comet before impact. Meanwhile, an enterprising reporter uses her smarts to uncover the scoop of the century.",1998-05-08,5.7002,6.2,3117 +7213,860623,Last Man Down,"After civilization succumbs to a deadly pandemic and his wife is murdered, a special forces soldier abandons his duty and becomes a hermit in the Nordic wilderness. Years later, a wounded woman appears on his doorstep. She's escaped from a lab and her pursuers believe her blood is the key to a worldwide cure. He's hesitant to get involved, but all doubts are cast aside when he discovers her pursuer is none other than Commander Stone, the man that murdered his wife some years ago.",2021-03-30,4.2173,6.23,716 +7214,109414,This Is the End,"While attending a party at James Franco's house, Seth Rogen, Jay Baruchel and many other celebrities are faced with the apocalypse.",2013-06-12,4.3716,6.23,6538 +7215,88794,J. Edgar,"As the face of law enforcement in the United States for almost 50 years, J. Edgar Hoover was feared and admired, reviled and revered. But behind closed doors, he held secrets that would have destroyed his image, his career, and his life.",2011-11-09,3.318,6.23,2477 +7216,77951,Walking with Dinosaurs,"In a time when dinosaurs rule the Earth, the smallest dinosaur of the herd, a playful Pachyrhinosaurus named Patchi, embarks on the biggest adventure of his life. As he tries to find his place in a spectacular world filled with fun-loving friends and a few dangerous foes, Patchi will discover the courage he needs to become the leader of the herd and a hero for the ages.",2013-12-18,3.001,6.23,497 +7217,60935,The Thing,"When paleontologist Kate Lloyd travels to an isolated outpost in Antarctica for the expedition of a lifetime, she joins an international team that unearths a remarkable discovery. Their elation quickly turns to fear as they realize that their experiment has freed a mysterious being from its frozen prison. Paranoia spreads like an epidemic as a creature that can mimic anything it touches will pit human against human as it tries to survive and flourish in this spine-tingling thriller.",2011-10-12,4.3123,6.23,3029 +7218,15037,Can't Hardly Wait,"It's graduation day at Huntington Hills High, and you know what that means - time to party. And not just any party, either. This one will be a night to remember, as the nerds become studs, the jocks are humiliated, and freshman crushes blossom into grown-up romance.",1998-06-12,1.6148,6.2,551 +7219,10657,Needful Things,"A mysterious new shop opens in a small town which always seems to stock the deepest desires of each shopper, with a price far heavier than expected.",1993-08-27,1.8988,6.2,562 +7220,516329,Antlers,"A small-town Oregon teacher and her brother, the local sheriff, discover a young student is harbouring a dangerous secret that could have frightening consequences.",2021-10-28,2.3802,6.229,1145 +7221,503736,Army of the Dead,"Following a zombie outbreak in Las Vegas, a group of mercenaries take the ultimate gamble: venturing into the quarantine zone to pull off the greatest heist ever attempted.",2021-05-14,4.9266,6.2,4170 +7222,12253,Biker Boyz,"A mythic motorcycle tale of father and son"", this is the story of Manuel Galloway, also known as ""the King of Cali"", the president of a motorcycle club whose members are all African-American men, mostly white-collar workers who exchange their suits and ties at night and on weekends for leather outfits and motorcycle helmets.",2003-01-31,2.211,6.229,371 +7223,7553,Waiting...,"Employees at a Bennigan's-like restaurant (called, creatively enough, Shenanigan's), kill time before their real lives get started. But while they wait, they'll have to deal with picky customers who want their steak cooked to order and enthusiastic managers who want to build the perfect wait staff. Luckily, these employees have effective revenge tactics.",2005-10-07,5.5254,6.229,915 +7224,1844,Entrapment,"Two thieves, who travel in elegant circles, try to outsmart each other and, in the process, end up falling in love.",1999-04-29,3.4517,6.229,2096 +7225,1727,Bird on a Wire,"An FBI informant has kept his new identity secret for 15 years. Now an old flame has recognised him, and the bad guys are back for revenge.",1990-05-18,2.6548,6.229,970 +7226,13811,Knowing,A teacher opens a time capsule that has been dug up at his son's elementary school; in it are some chilling predictions -- some that have already occurred and others that are about to -- that lead him to believe his family plays a role in the events that are about to unfold.,2009-03-19,5.0189,6.2,5511 +7227,11598,The Kentucky Fried Movie,"A series of loosely connected skits that spoof news programs, commercials, porno films, kung-fu films, disaster films, blaxploitation films, spy films, mafia films, and the fear that somebody is watching you on the other side of the TV.",1977-08-10,1.7918,6.228,334 +7228,589761,Chernobyl: Abyss,The aftermath of a shocking explosion at the Chernobyl nuclear power station made hundreds of people sacrifice their lives to clean up the site of the catastrophe and to successfully prevent an even bigger disaster that could have turned a large part of the European continent into an uninhabitable exclusion zone. This is their story.,2021-04-15,3.7744,6.227,545 +7229,582570,Sextuplets,"Father-to-be Alan is shocked to learn that he was born a sextuplet. With his newfound brother Russell riding shotgun, the duo sets out on a hilarious journey to reunite with their remaining long-lost siblings.",2019-08-16,2.4866,6.227,854 +7230,293768,Kidnap,A mother (in her Minivan) stops at nothing to recover her kidnapped son.,2017-08-03,2.1424,6.2,1300 +7231,9686,New York Stories,"Get ready for a wildly diverse, star-studded trilogy about life in the big city. One of the most-talked about films in years, New York Stories features the creative collaboration of three of America's most popular directors, Martin Scorsese, Francis Coppola, and Woody Allen.",1989-03-10,1.0553,6.227,385 +7232,9611,Romy and Michele's High School Reunion,"Two not-too-bright party girls reinvent themselves for their high school reunion. Armed with a borrowed Jaguar, new clothes and the story of their success as the inventors of Post-It notes, Romy and Michele descend on their alma mater, but their façade crumbles quickly.",1997-04-25,2.3324,6.227,553 +7233,4379,Monster-in-Law,"Office temp Charlotte Cantilini thinks she's found Mr. Right when she starts dating gorgeous surgeon Dr. Kevin Fields. But there's a problem standing in the way of everlasting bliss: Kevin's overbearing and controlling mother, Viola. Fearing she'll lose her son's affections forever, Viola decides to break up the happy couple by becoming the world's worst mother-in-law.",2005-05-13,3.5872,6.227,1693 +7234,513268,Body Cam,"As a police officer investigates the gruesome murder of her colleague, she discovers that a mysterious supernatural force is behind it.",2020-05-19,2.1583,6.226,380 +7235,15512,Monsters vs Aliens,"When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day, she mysteriously grows to 49-feet-11-inches. The military jumps into action and captures Susan, secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters...",2009-03-19,5.4676,6.226,4773 +7236,14444,The Rugrats Movie,"Based on the popular Nickelodeon TV series Rugrats, this is the first full-length feature animated movie to star the little tots. It's the story of diaper-clad kids, told from a baby's point- of-view, and they were one of the hottest-selling toy franchises of the late '90s.",1998-11-20,2.6232,6.226,607 +7237,10033,Just Friends,"While visiting his hometown during Christmas, a man comes face-to-face with his old high school crush whom he was best friends with – a woman whose rejection of him turned him into a ferocious womanizer.",2005-11-23,2.1313,6.2,1682 +7238,9885,Wolf Creek,"Stranded backpackers in remote Australia fall prey to a murderous bushman, who offers to fix their car, then takes them captive.",2005-09-16,2.4344,6.226,1211 +7239,1097870,Dear Santa,"Likeable 6th grader Liam writes to Santa asking him to prove that he's real. But Liam is dyslexic and accidentally sends his letter to Satan instead, who shows up at Liam's house, excited to have his first fanboy letter and wanting a little of Liam's soul.",2024-11-24,2.2117,6.225,404 +7240,23759,Centurion,"Britain, A.D. 117. Quintus Dias, the sole survivor of a Pictish raid on a Roman frontier fort, marches north with General Virilus' legendary Ninth Legion, under orders to wipe the Picts from the face of the Earth and destroy their leader, Gorlacon.",2010-02-15,2.5859,6.225,1460 +7241,15158,Phantasm II,"Mike, after his release from a psychiatric hospital, teams up with his old pal Reggie to hunt down the Tall Man, who is at it again. A mysterious, beautiful girl has also become part of Mike's dreams, and they must find her before the Tall Man does.",1988-07-08,1.0528,6.2,360 +7242,9804,Waterworld,"In a futuristic world where the polar ice caps have melted and made Earth a liquid planet, a beautiful barmaid rescues a mutant seafarer from a floating island prison. They escape, along with her young charge, Enola, and sail off aboard his ship. But the trio soon becomes the target of a menacing pirate who covets the map to 'Dryland'—which is tattooed on Enola's back.",1995-07-28,8.2629,6.225,3834 +7243,37834,Knight and Day,"A fugitive couple goes on a glamorous and sometimes deadly adventure where nothing and no one – even themselves – are what they seem. Amid shifting alliances and unexpected betrayals, they race across the globe, with their survival ultimately hinging on the battle of truth vs. trust.",2010-06-15,4.2177,6.224,4660 +7244,14008,Cadet Kelly,Hyperactive teenager Kelly is enrolled into a military school when her new stepfather becomes the Commandant. At first she has problems fitting in and taking orders until she tries out for the drill team.,2002-03-07,2.1212,6.2,588 +7245,9991,Mean Machine,"Disgraced ex-England football captain, Danny 'Mean Machine' Meehan, is thrown in jail for assaulting two police officers. He keeps his head down and has the opportunity to forget everything and change the lives of the prisoners. When these prisoners have the chance to put one over the evil guards during a prison football match, Danny takes the lead.",2001-12-26,2.2563,6.224,588 +7246,1724,The Incredible Hulk,"Scientist Bruce Banner scours the planet for an antidote to the unbridled force of rage within him: the Hulk. But when the military masterminds who dream of exploiting his powers force him back to civilization, he finds himself coming face to face with a new, deadly foe.",2008-06-12,10.7593,6.225,12170 +7247,369300,The Limehouse Golem,A series of murders has shaken the community to the point where people believe that only a legendary creature from dark times – the mythical Golem – must be responsible.,2016-10-18,2.0706,6.223,667 +7248,82532,"Jeff, Who Lives at Home","Dispatched from his basement room on an errand for his mother, slacker Jeff might discover his destiny (finally) when he spends the day with his brother as he tracks his possibly adulterous wife.",2012-03-16,0.9806,6.223,654 +7249,10523,W.,"The story of the eventful life of George W. Bush—his struggles and triumphs, how he found both his wife and his faith—and the critical days leading up to his decision to invade Iraq.",2008-10-17,1.537,6.223,645 +7250,9828,Unknown,Five men wake up in a locked-down warehouse with no memory of who they are. They are forced to figure out who is good and who is bad to stay alive.,2006-11-03,1.0529,6.223,433 +7251,680593,The Dark and the Wicked,"On a secluded farm in a nondescript rural town, a man is slowly dying. His family gathers to mourn, and soon a darkness grows, marked by waking nightmares and a growing sense that something evil is taking over the family.",2020-04-16,2.3593,6.222,491 +7252,526007,The Night Clerk,"Hotel night clerk Bart Bromley is a highly intelligent young man on the Autism spectrum. When a woman is murdered during his shift, Bart becomes the prime suspect. As the police investigation closes in, Bart makes a personal connection with a beautiful guest named Andrea, but soon realises he must stop the real murderer before she becomes the next victim.",2020-02-19,3.628,6.222,848 +7253,371560,The Eyes of My Mother,"A young, lonely woman is consumed by her deepest and darkest desires after tragedy strikes her quiet country life.",2016-12-02,1.6202,6.222,329 +7254,58151,Fright Night,"A teenager suspects his new neighbour is a vampire. Unable to convince anyone, he tries to enlist the help of a self-proclaimed vampire hunter and magician.",2011-08-18,2.8825,6.222,1986 +7255,510388,Villains,"When their car breaks down, a couple on the run headed southbound for a fresh start in the Sunshine State break into a nearby house looking for a new set of wheels. What they find instead is a dark secret, and a sweet-as-pie pair of homeowners who will do anything to keep it from getting out.",2019-09-20,1.7697,6.221,442 +7256,52015,Stake Land,"Martin was a normal teenage boy before the country collapsed in an empty pit of economic and political disaster. A vampire epidemic has swept across what is left of the nation's abandoned towns and cities, and it's up to Mister, a death dealing, rogue vampire hunter, to get Martin safely north to Canada, the continent's New Eden.",2010-09-30,1.4076,6.221,823 +7257,9805,(T)Raumschiff Surprise - Periode 1,"Hundreds of years after humans have settled on Mars, Regulator Rogul and Lord Jens Maul, lead a force of Martians to Earth in order to conquer the planet. Queen Metaphor looks to the gay heroes aboard the spaceship Surprise -- Captain Kork, Mr. Spuck, and first engineer Schrotty -- for help.",2004-07-14,1.7232,6.2,519 +7258,507,Killing Zoe,"Zed is an American vault-cracker who travels to Paris to meet up with his old friend Eric. Eric and his gang have planned to raid the only bank in the city which is open on Bastille day. After offering his services, Zed soon finds himself trapped in a situation beyond his control when heroin abuse, poor planning and a call-girl named Zoe all conspire to turn the robbery into a very bloody siege.",1993-10-01,1.719,6.221,346 +7259,984324,The Wages of Fear,"When an explosion at an oil well threatens hundreds of lives, a crack team is called upon to make a deadly desert crossing with nitroglycerine in tow.",2024-03-28,5.2008,6.22,468 +7260,17339,Force 10 from Navarone,"World War II, 1943. Mallory and Miller, the heroes who destroyed the guns of Navarone, are sent to Yugoslavia in search of a ghost from the past.",1978-08-16,2.1096,6.22,323 +7261,13313,Beauty and the Beast: The Enchanted Christmas,"Astonished to find the Beast has a deep-seeded hatred for the Christmas season, Belle endeavors to change his mind on the matter.",1997-11-11,3.9609,6.22,1054 +7262,10303,The Jewel of the Nile,"Joan Wilder is thrust back into a world of murder, chases, foreign intrigue... and love. This time out she's duped by a duplicitous Arab dignitary who brings her to the Middle East, ostensibly to write a book about his life. Of course, he's up to no good, and Joan is just another pawn in his wicked game. But Jack Colton and his sidekick Ralph show up to help our intrepid heroine save the day.",1985-08-01,3.8359,6.22,1205 +7263,486101,There's No Place Like Home,"An extended family reunites after a long time to celebrate the 50th wedding anniversary of their grandparents on an idyllic island. However, they remain stranded there for longer than expected, causing secrets and long-held grudges to break out.",2018-02-14,0.6536,6.219,725 +7264,12538,Senseless,A student gets his senses enhanced by an experimental drug. But abuse is not an option.,1998-02-20,1.8957,6.219,374 +7265,9285,Road Trip,"After an Ithaca College student films his one-night stand with a beautiful sorority girl, he discovers one of his friends has accidentally mailed the homemade sex tape to his girlfriend in Austin. In a frenzy, he must borrow a car and hit the road in a desperate bid to intercept the tape.",2000-05-19,3.6032,6.217,2028 +7266,516700,Gundala,"Sancaka has lived on the streets since his parents left him. Living a hard life, Sancaka survives by thinking about his own safety. When the condition of the city gets worse and injustice rages throughout the country, Sancaka must decide whether he continues to live to look after himself or rise to become their oppressed hero.",2019-08-29,0.78,6.218,326 +7267,267860,London Has Fallen,"In London for the Prime Minister's funeral, Mike Banning discovers a plot to assassinate all the attending world leaders.",2016-03-02,5.7734,6.218,4869 +7268,11342,Warlock,"In 17th century New England, witch hunter Giles Redferne captures an evil warlock, but the conjurer eludes death with supernatural help. Flung into the future, the warlock winds up in the 1980s and plans to bring about the end of the world. Redferne follows the enchanter into the modern era and continues his mission, but runs into trouble in such unfamiliar surroundings. With the help of a young woman, can Redferne finally defeat the warlock?",1989-06-01,1.7894,6.218,408 +7269,9962,The Good Girl,A discount store clerk strikes up an affair with a stock boy who considers himself the incarnation of Holden Caulfield.,2002-08-07,1.2202,6.2,651 +7270,919952,The Great Day,"In a large villa on Lake Como, everything is ready to celebrate Elio and Caterina's wedding. It will be the most beautiful day of their lives and also of their parents' lives, especially their respective fathers, Giacomo and Giovanni. Too bad that together with Margherita, Giovanni's ex-wife and mother of the bride, Aldo, her new partner, also arrives at the wedding. Friendly, outgoing and above all a total troublemaker. Giacomo and Giovanni try to contain him in every way, but under Aldo's blows, cracks open up from which a hidden malaise emerges, destined to call into question the friendship between Giovanni and Giacomo, their marriages and more. And that will force everyone to deal with their own doubts and with the courage it takes to allow themselves happiness.",2022-12-22,0.2591,6.217,351 +7271,285423,Jarhead 2: Field of Fire,"Battle-scarred and disillusioned by the war, Corporal Chris Merrimette is put in charge of a unit whose next mission is to resupply a remote outpost on the edge of Taliban-controlled territory. While driving through the hostile Helmand province, a Navy SEAL flags down their convoy and enlists the unit on an operation of international importance: they must help an Afghan woman famous for her defiance of the Taliban escape the country. Without tanks or air support, Merrimette and his team will need all the courage and firepower they can muster to fight their way across the war-torn country and shepherd the woman to safety.",2014-08-14,1.5139,6.217,302 +7272,38356,Transformers: Dark of the Moon,"The Autobots continue to work for NEST, now no longer in secret. But after discovering a strange artifact during a mission in Chernobyl, it becomes apparent to Optimus Prime that the United States government has been less than forthright with them.",2011-06-28,2.6224,6.216,8573 +7273,11860,Sabrina,"Sabrina Fairchild, a chauffeur's daughter, grew up at the Long Island estate of the wealthy Larrabee family enchanted with their sparkling world of privilege and wealth, but she's especially enamored of younger son David, a charming playboy. After the once plain Sabrina returns from a sojourn in Paris transformed into a glamorous young woman, she at long last catches David's eye. In a calculated effort to manipulate David away from her and into a more financially advantageous marriage, formidable older brother Linus devises a plan to keep them apart.",1995-12-15,2.8803,6.217,648 +7274,9986,Charlotte's Web,"Wilbur the pig is scared of the end of the season, because he knows that come that time, he will end up on the dinner table. He hatches a plan with Charlotte, a spider that lives in his pen, to ensure that this will never happen.",2006-12-07,5.109,6.217,1405 +7275,8851,The Blob,"A drive-in favorite, this sci-fi classic follows teenagers Steve and his best girl, Jane, as they try to protect their hometown from a gelatinous alien life form that engulfs everything it touches. The first to discover the substance and live to tell about it, Steve and Jane witness the blob destroying an elderly man, then it growing to a terrifying size. But no one else has seen the goo, and policeman Dave refuses to believe the kids without proof.",1958-09-10,2.9216,6.2,627 +7276,800510,Kimi,"A tech worker with agoraphobia discovers recorded evidence of a violent crime but is met with resistance when she tries to report it. Seeking justice, she must do the thing she fears the most: leave her apartment.",2022-02-10,2.2048,6.216,924 +7277,586451,Blow the Man Down,"While grieving for the loss of their mother, the Connolly sisters suddenly find they have a crime to cover up, leading them deep into the underbelly of their salty Maine fishing village.",2019-04-26,1.0724,6.216,312 +7278,181533,Night at the Museum: Secret of the Tomb,"When the magic powers of The Tablet of Ahkmenrah begin to die out, Larry Daley spans the globe, uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.",2014-12-17,6.4487,6.216,6008 +7279,9102,Screamers,"SIRIUS 6B, Year 2078. On a distant mining planet ravaged by a decade of war, scientists have created the perfect weapon: a blade-wielding, self-replicating race of killing devices known as Screamers designed for one purpose only -- to hunt down and destroy all enemy life forms.",1995-09-08,1.5983,6.216,558 +7280,506072,Prospect,"A teenage girl and her father travel to a remote alien moon, aiming to strike it rich. They've secured a contract to harvest a large deposit of the elusive gems hidden in the depths of the moon's toxic forest. But there are others roving the wilderness and the job quickly devolves into a fight to survive.",2018-10-02,1.9911,6.2,892 +7281,69798,The Inbetweeners Movie,"High school graduation just wouldn’t be complete without an un-chaperoned, uninhibited and unforgettable final holiday. At least that’s what Will, Jay, Simon and Neil think when they book a two-week stay on an exotic Greek island. As their dreams of sun-drenched days and booze-filled nights are left hopelessly unfulfilled, the lads fight their way into the party scene with hilariously humiliating results.",2011-08-19,1.8152,6.216,937 +7282,18462,Night of the Comet,"After a comet wipes out most of life on Earth, two Valley Girls find themselves fighting against cannibal zombies and a sinister group of scientists.",1984-11-16,1.3671,6.215,405 +7283,13637,Sukiyaki Western Django,"A nameless gunfighter arrives in a town ripped apart by rival gangs and, though courted by both to join, chooses his own path.",2007-09-15,0.9291,6.2,344 +7284,11823,Wimbledon,"Britain’s Peter Colt has never quite lived up to his dreams of tennis stardom. Once ranked as high as number 11 in the world, the journeyman veteran has watched his number slip to 119 as his confidence on the court slowly ebbs away.  Now, on the eve of his leaving the world of professional tennis, he’s granted a wild card, allowing him to play his final Wimbledon tournament…make that his final tournament ever.",2004-09-13,2.255,6.215,1027 +7285,2082,Halloween,"The early years of young Michael Myers and the events leading up to his fateful Halloween night murder rampage in the quiet town of Haddonfield, Illinois.",2007-08-31,4.6307,6.2,2432 +7286,159117,V/H/S/2,"Inside a darkened house looms a column of TVs littered with VHS tapes, a pagan shrine to forgotten analog gods. The screens crackle and pop endlessly with monochrome vistas of static white noise permeating the brain and fogging concentration. But you must fight the urge to relax: this is no mere movie night. Those obsolete spools contain more than just magnetic tape. They are imprinted with the very soul of evil.",2013-06-06,2.5371,6.214,1105 +7287,48395,Rare Exports: A Christmas Tale,"Young Pietari lives with his reindeer-herding father in arctic Finland. On the eve of Christmas, a nearby excavation makes a frightening discovery and an evil Santa Claus is unleashed…",2010-12-03,1.4056,6.214,597 +7288,11431,Fever Pitch,"When Ben Wrightman, a young teacher, begins dating pretty businesswoman Lindsey Meeks, the two don't seem to have a lot of the same interests, but they fall in love, regardless. Their romance goes well until baseball season begins, and Lindsey soon realizes that Ben is completely obsessed with the Boston Red Sox. Though she tries to understand Ben's passionate team loyalty, eventually it threatens to end their otherwise happy relationship.",2005-04-06,2.1566,6.214,723 +7289,8273,American Wedding,"With high school a distant memory, Jim and Michelle are getting married — and in a hurry, since Jim's grandmother is sick and wants to see him walk down the aisle — prompting Stifler to throw the ultimate bachelor party. And Jim's dad is reliable as ever, doling out advice no one wants to hear.",2003-08-01,6.4715,6.214,4185 +7290,428078,Mortal Engines,"Many thousands of years in the future, Earth’s cities roam the globe on huge wheels, devouring each other in a struggle for ever diminishing resources. On one of these massive traction cities, the old London, Tom Natsworthy has an unexpected encounter with a mysterious young woman from the wastelands who will change the course of his life forever.",2018-11-27,5.1855,6.213,4867 +7291,84194,Excision,"A misunderstood teenager Pauline, struggles with her abrasive Christian mother, her chronically ill sister, her aspiration to become a surgeon, and her increasingly violent psychosexual dreams. Pauline slowly begins to indulge in her fantasies, meanwhile, her mother tries to connect with her. In an attempt to make her mother proud she strives to cure her sister.",2012-09-12,1.9481,6.213,564 +7292,9355,Mad Max Beyond Thunderdome,"Mad Max becomes a pawn in a decadent oasis of a technological society, and when exiled, becomes the deliverer of a colony of children.",1985-06-29,4.6221,6.213,3065 +7293,178,Blown Away,"Blown Away tells the story of Jimmy Dove, who works for the Boston bomb squad. Shortly after Dove leaves the force, his partner is killed by a bomb that Dove thinks might have been made by someone he knows.",1994-07-01,2.0267,6.213,574 +7294,536437,Hypnotic,A detective becomes entangled in a mystery involving his missing daughter and a secret government program while investigating a string of reality-bending crimes.,2023-05-11,3.3979,6.212,1328 +7295,298250,Jigsaw,"Law enforcement finds itself chasing the ghost of a man dead for over a decade, embroiled in a diabolical new game that's only just begun.",2017-10-25,4.8376,6.212,3798 +7296,76812,Black Butterfly,"Paul is a down-on-his-luck screenwriter who picks up a drifter and offers him a place to stay. However, when the deranged stranger takes Paul hostage and forces him to write, their unhinged relationship brings buried secrets to light.",2017-05-26,1.7317,6.212,546 +7297,19164,The Land Before Time IV: Journey Through the Mists,"When Littlefoot grandfather falls ill, The dinosaurs only way to cure him is a flower in the forbidding land of mist which hold unexpecting perils and danger.",1996-11-01,1.287,6.212,347 +7298,9694,One Missed Call,"People mysteriously start receiving voicemail messages from their future selves, in the form of the sound of them reacting to their own violent deaths, along with the exact date and time of their future death, listed on the message log. The plot thickens as the surviving characters pursue the answers to this mystery which could save their lives.",2003-11-03,2.13,6.2,437 +7299,747687,The Catholic School,"Three well-off young men—former students at Rome’s prestigious all-boys Catholic high school San Leone Magno—brutally tortured, raped, and murdered two young women in 1975. The event, which came to be known as the Circeo massacre, shocked and captivated the country, exposing the violence and dark underbelly of the upper middle class at a moment when the traditional structures of family and religion were seen as under threat.",2021-10-07,1.2208,6.211,432 +7300,32657,Percy Jackson & the Olympians: The Lightning Thief,"Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.",2010-02-01,8.1436,6.211,7592 +7301,30874,The New York Ripper,A burned-out New York police detective teams up with a college psychoanalyst to track down a vicious serial killer randomly stalking and killing various young women around the city.,1982-03-04,1.4455,6.211,310 +7302,26320,Taking Woodstock,"The story of Elliot Tiber and his family, who inadvertently played a pivotal role in making the famed Woodstock Music and Arts Festival into the happening that it was. When Elliot hears that a neighboring town has pulled the permit on a hippie music festival, he calls the producers thinking he could drum up some much-needed business for his parents' run-down motel. Three weeks later, half a million people are on their way to his neighbor’s farm in White Lake, New York, and Elliot finds himself swept up in a generation-defining experience that would change his life–and American culture–forever.",2009-08-26,1.7977,6.211,456 +7303,24873,Death Wish 3,Architect/vigilante Paul Kersey arrives back in New York City and is forcibly recruited by a crooked police chief to fight street crime caused by a large gang terrorizing the neighborhoods.,1985-11-01,2.0985,6.211,443 +7304,9619,Dante's Peak,"Volcanologist Harry Dalton comes to the sleepy town of Dante's Peak to investigate the recent rumblings of the dormant volcano the burg is named for. Before long, his worst fears are realized when a massive eruption hits, and immediately, Harry, the mayor and the townspeople find themselves fighting for their lives amid a catastrophic nightmare.",1997-02-07,4.4668,6.2,1934 +7305,291351,The Sea of Trees,"In Japan's Aokigahara Forest, a troubled teacher meets a mysterious lost stranger who takes him on a life-changing journey of love and redemption.",2016-04-27,1.4571,6.21,520 +7306,138103,The Expendables 3,"Barney, Christmas and the rest of the team comes face-to-face with Conrad Stonebanks, who years ago co-founded The Expendables with Barney. Stonebanks subsequently became a ruthless arms trader and someone who Barney was forced to kill… or so he thought. Stonebanks, who eluded death once before, now is making it his mission to end The Expendables -- but Barney has other plans. Barney decides that he has to fight old blood with new blood, and brings in a new era of Expendables team members, recruiting individuals who are younger, faster and more tech-savvy. The latest mission becomes a clash of classic old-school style versus high-tech expertise in the Expendables’ most personal battle yet.",2014-08-07,8.737,6.21,5121 +7307,80585,Rock of Ages,"A small town girl and a city boy meet on the Sunset Strip, while pursuing their Hollywood dreams.",2012-06-13,2.2311,6.21,1291 +7308,19165,The Land Before Time V: The Mysterious Island,Littlefoot and his friends the gang in their next when a swarm of leaf gobblers had destroyed their homes and this forces them to find a new home but yet find an mysterious island.,1997-09-12,1.9726,6.21,329 +7309,1075175,How to Have Sex,"Three British teenage girls go on a rites-of-passage holiday—drinking, clubbing and hooking up, in what should be the best summer of their lives.",2023-11-02,2.6809,6.209,423 +7310,991708,El Conde,"After living for over two centuries, Augusto Pinochet is a vampire ready to die… but the vultures around him won't let him go without one last bite.",2023-09-07,2.358,6.215,302 +7311,109439,The Hangover Part III,"This time, there's no wedding. No bachelor party. What could go wrong, right? But when the Wolfpack hits the road, all bets are off.",2013-05-23,8.9477,6.209,8874 +7312,17494,Unlawful Entry,"Happily married Michael and Karen Carr call the police after Karen is held at knife point during a failed robbery attempt in their home. Before long, one of the responding officers, Officer Pete Davis, helps arrange the installation of a new security system, taking extra interest in the couple's case. As a result, the grateful Carrs invite him to stay for dinner and they strike up an unexpected friendship. However, as the lonely policeman develops an intense fixation on Karen, his take on friendship develops into a dangerous obsession soon becoming the Carrs' worst nightmare.",1992-06-26,2.0877,6.209,320 +7313,9369,Asterix Conquers America,"When marauding Romans capture - and catapult - their pal Getafix into lands unknown, the shrewd and cunning Asterix and his able sidekick Obelix spring into action! But their journey leads them to a strange and dangerous new world, where they must face a tribe of Indians, a stampeding herd of buffalo and a medicine man with designs on their magic potion!",1994-09-29,2.1726,6.2,617 +7314,7552,Fun with Dick and Jane,"After Dick Harper loses his job at Globodyne in an Enron-esque collapse, he and his wife, Jane, turn to crime in order to handle the massive debt they now face. Two intelligent people, Dick and Jane actually get pretty good at robbing people and even enjoy it -- but they have second thoughts when they're reminded that crime can hurt innocent people. When the couple hears that Globodyne boss Jack McCallister actually swindled the company, they plot revenge.",2005-12-21,3.6003,6.209,2514 +7315,624963,A Babysitter's Guide to Monster Hunting,"Recruited by a secret society of babysitters, a high schooler battles the Boogeyman and his monsters when they nab the boy she's watching on Halloween.",2020-10-14,2.486,6.208,308 +7316,449563,Isn't It Romantic,"For a long time, Natalie, an Australian architect living in New York City, had always believed that what she had seen in rom-coms is all fantasy. But after thwarting a mugger at a subway station only to be knocked out while fleeing, Natalie wakes up and discovers that her life has suddenly become her worst nightmare—a romantic comedy—and she is the leading lady.",2019-02-13,2.973,6.208,3518 +7317,43933,Monsters,"Six years ago NASA discovered the possibility of alien life within our solar system. A probe was launched to collect samples, but crashed upon re-entry over Central America. Soon after, new life forms began to appear and half of Mexico was quarantined as an infected zone. Today, the American and Mexican military still struggle to contain ""the creatures,"" while a journalist agrees to escort a shaken tourist through the infected zone in Mexico to the safety of the U.S. border.",2010-06-18,3.0468,6.208,1665 +7318,9836,Happy Feet,"Into the world of the Emperor Penguins, who find their soul mates through song, a penguin is born who cannot sing. But he can tap dance something fierce!",2006-11-16,5.0861,6.2,5245 +7319,9398,Zoolander,"Clear the runway for Derek Zoolander, VH1's three-time male model of the year. His face falls when hippie-chic Hansel scooters in to steal this year's award. The evil fashion guru Mugatu seizes the opportunity to turn Derek into a killing machine. It's a well-designed conspiracy and only with the help of Hansel and a few well-chosen accessories like Matilda can Derek make the world safe for male models everywhere.",2001-09-28,4.8603,6.207,4643 +7320,487297,What Men Want,"Magically able to hear what men are thinking, a sports agent uses her newfound ability to turn the tables on her overbearing male colleagues.",2019-02-08,9.4527,6.212,1512 +7321,279690,He Never Died,Jack is a solitary man with a mysterious past. His strange habits will soon become stranger when his past catches up with him.,2015-12-18,1.3632,6.208,497 +7322,87826,Here Comes the Boom,A high school biology teacher moonlights as a mixed-martial arts fighter in an effort to raise money to save the school's music program.,2012-10-10,4.4264,6.207,1501 +7323,24124,The Burning,"A caretaker at a summer camp is burned when a prank goes tragically wrong. After several years of intensive treatment at hospital, he is released back into society, albeit missing some social skills. What follows is a bloody killing spree with the caretaker making his way back to his old stomping ground to confront one of the youths that accidentally burned him.",1981-05-08,1.7713,6.2,425 +7324,7942,Run Fatboy Run,"Five years after jilting his pregnant fiancée on their wedding day, out-of-shape Dennis decides to run a marathon to win her back.",2007-09-06,0.9645,6.207,699 +7325,330112,Ashby,"When new kid in town Ed Wallis is given an assignment to interview an older person, he turns to his mysterious neighbor, Ashby Holt for help. That new connection leads to unexpected journeys for both of them, as Ashby – who turns out to be a retired CIA assassin – deals with a terminal prognosis, and Ed deals with adjusting to life with his newly single mom and developing relationship with a brainy classmate, Eloise.",2015-04-19,1.6357,6.206,451 +7326,302156,Criminal,"CIA Agent Bill Pope is on a mission to track down a shadowy hacker named 'The Dutchman'. When he gets mysteriously killed, an experimental procedure transfers his memories into a dangerous ex-convict. When he wakes up Pope's memories, his mission is to eliminate The Dutchman before the hacker launches ICBMs and starts World War III.",2016-04-07,2.9524,6.206,1787 +7327,23082,The Invention of Lying,"Set in a world where the concept of lying doesn't exist, a loser changes his lot when he invents lying and uses it to get ahead.",2009-10-02,2.8263,6.205,2196 +7328,9620,Paycheck,"Michael Jennings is a genius who's hired – and paid handsomely – by high-tech firms to work on highly sensitive projects, after which his short-term memory is erased so he's incapable of breaching security. But at the end of a three-year job, he's told he isn't getting a paycheck and instead receives a mysterious envelope. In it are clues he must piece together to find out why he wasn't paid – and why he's now in hot water.",2003-12-25,3.2473,6.206,1896 +7329,467,The Hole,Four teenagers at a British private school secretly uncover and explore the depths of a sealed underground hole created decades ago as a possible bomb shelter.,2001-04-20,1.8094,6.206,843 +7330,592480,Alice and the Mayor,"The mayor of Lyon, Paul Théraneau, is in a delicate position. After 30 years in politics, he is running out of ideas and is faced with a feeling of existential emptiness. To overcome this, Paul hires a young and brilliant philosopher, Alice Heimann. Then follows a dialogue between two diametrically opposed personalities who will turn their certainties upside down.",2019-05-18,0.6138,6.205,336 +7331,218778,"Alexander and the Terrible, Horrible, No Good, Very Bad Day","Alexander's day begins with gum stuck in his hair, followed by more calamities. Though he finds little sympathy from his family and begins to wonder if bad things only happen to him, his mom, dad, brother, and sister all find themselves living through their own terrible, horrible, no good, very bad day.",2014-10-08,1.8697,6.205,1371 +7332,197796,Beauty and the Beast,"Forced to face the cruel side of life, a devastated, bankrupt merchant chances upon the enchanted castle of a hideous creature, the mere sight of it chills the bone to the marrow. There, a fate worse than death awaits the poor father-of-six, who, after plucking a sweet-scented rose from the repulsive master's verdant garden, must do the impossible: permit his compassionate daughter, Belle, to take his place and pay for the sins of her parent. Now, an impenetrable mystery shrouds the haunted mansion, and, as repugnance gradually turns into affection, only true love could break the spell.",2014-02-12,4.2435,6.205,2086 +7333,9968,The Big White,"To remedy his financial problems, a travel agent has his eye on a frozen corpse, which just happens to be sought after by two hitmen.",2005-10-27,1.6381,6.205,302 +7334,8373,Transformers: Revenge of the Fallen,"Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols, the Decepticons target him and he is dragged back into the Transformers' war.",2009-06-19,3.4921,6.2,8779 +7335,2577,Code 46,"In a dystopian future, insurance fraud investigator William Gold arrives in Shanghai to investigate a forgery ring for ""papelles"", futuristic passports that record people's identities and genetics. Gold falls for Maria Gonzalez, the woman in charge of the forgeries. After a passionate affair, Gold returns home, having named a coworker as the culprit. But when one of Gonzalez's customers is found dead, Gold is sent back to Shanghai to complete the investigation.",2003-09-02,1.4754,6.2,368 +7336,987917,Old Dads,A cranky middle-aged dad and his two best friends find themselves out of step in a changing world of millennial CEOs and powerful preschool principals.,2023-10-20,2.9573,6.204,394 +7337,724665,"Confess, Fletch","The roguishly charming and endlessly troublesome Fletch becomes the prime suspect in a murder case while searching for a stolen art collection. The only way to prove his innocence? Find out which of the long list of suspects is the culprit - from the eccentric art dealer and a missing playboy to a crazy neighbor and Fletch’s Italian girlfriend. Crime, in fact, has never been this disorganized.",2022-09-16,1.6711,6.204,345 +7338,76493,The Dictator,The heroic story of a dictator who risks his life to ensure that democracy would never come to the country he so lovingly oppressed.,2012-05-15,6.9411,6.203,6074 +7339,24021,The Twilight Saga: Eclipse,"Bella once again finds herself surrounded by danger as Seattle is ravaged by a string of mysterious killings and a malicious vampire continues her quest for revenge. In the midst of it all, she is forced to choose between her love for Edward and her friendship with Jacob, knowing that her decision has the potential to ignite the ageless struggle between vampire and werewolf. With her graduation quickly approaching, Bella is confronted with the most important decision of her life.",2010-06-23,11.5136,6.204,8951 +7340,11137,The Prince & Me,"A fairy tale love-story about pre-med student Paige who falls in love with a Danish Prince ""Eddie"" who refused to follow the traditions of his parents and has come to the US to quench his thirst for rebellion. Paige and Edward come from two different worlds, but there is an undeniable attraction between them.",2004-03-28,2.4798,6.204,1015 +7341,597433,Beckett,An American tourist in Greece finds himself on the run after a tragic accident plunges him into a political conspiracy that makes him a target for assassination.,2021-08-04,1.8624,6.203,685 +7342,12154,3 Men and a Baby,Three bachelors find themselves forced to take care of a baby left by one of the guy's girlfriends.,1987-11-27,2.8145,6.203,1028 +7343,9725,Friday the 13th Part 2,"Five years after the horrible bloodbath at Camp Crystal Lake, new counselors roam the area, not sensing the ominous lurking presence that proves that the grisly legend is real.",1981-05-01,3.6937,6.2,1778 +7344,455236,Accident Man,"Mike Fallon, the Accident Man, is a stone cold killer. When a loved one is murdered by his own crew, Fallon is forced to avenge the one person who actually meant something to him.",2018-02-06,4.5045,6.209,530 +7345,258363,Desierto,"A group of Mexican emigrants attempts to cross the Mexican-US border. What begins as a hopeful journey becomes a harrowing, bloody and primal fight for survival when a deranged, rifle-toting vigilante and his loyal Belgian Malinois dog chase the group of unarmed men and women through the treacherous borderland. In the harsh, unforgiving desert terrain, the odds are stacked firmly against them as they discover there’s nowhere to hide from the unrelenting, merciless killer.",2015-04-12,1.8314,6.202,378 +7346,11931,In Her Shoes,"Irresponsible party girl Maggie is kicked out of her father's and stepmother's home—where she lives for free—and is taken in by her hard-working sister, Philadelphia lawyer Rose. After Maggie's disruptive ways ruin her sister's love life, Rose turns her out as well. But when their grandmother, who they never knew existed, comes into their lives, the sisters face some complicated truths about themselves and their family.",2005-10-07,1.8627,6.202,1220 +7347,6341,Blue Thunder,"Los Angeles, California. Officer Murphy, a veteran Metropolitan Police helicopter pilot suffering from severe trauma due to his harsh experiences during the Vietnam War, and Lymangood, his resourceful new partner, are tasked with testing an advanced and heavily armed experimental chopper known as Blue Thunder.",1983-02-05,1.7446,6.2,498 +7348,454294,The Kid Who Would Be King,"Old-school magic meets the modern world when young Alex stumbles upon the mythical sword Excalibur. He soon unites his friends and enemies, and they become knights who join forces with the legendary wizard Merlin. Together, they must save mankind from the wicked enchantress Morgana and her army of supernatural warriors.",2019-01-16,2.9566,6.2,792 +7349,56909,The Immature,"Six high school friends in their 40s who haven't seen each other in nearly 20 years rekindle their younger selves after a court cancels their diploma, forcing them to repeat the final high school exam.",2011-01-21,0.5911,6.201,787 +7350,30923,Alice in Wonderland,"Alice follows a white rabbit down a rabbit-hole into a whimsical Wonderland, where she meets characters like the delightful Cheshire Cat, the clumsy White Knight, a rude caterpillar, and the hot-tempered Queen of Hearts and can grow ten feet tall or shrink to three inches. But will she ever be able to return home?",1999-02-28,1.615,6.2,374 +7351,13888,Return to the Blue Lagoon,"In this sequel to the 1980 classic, two children are stranded on a beautiful island in the South Pacific. With no adults to guide them, the two make a simple life together and eventually become tanned teenagers in love.",1991-08-02,4.4528,6.201,1207 +7352,9024,For Love or Money,"New York concierge Doug Ireland wants to go into business for himself and refurbish a hotel on Roosevelt Island, N.Y., but he needs an investor. With a few weeks left before his option on the site runs out, Doug agrees to help wealthy Christian Hanover conceal his affair with salesgirl Andy Hart from his wife. Despite his own attraction to Andy, Doug tries to stay focused on getting Christian to invest $3 million in his project.",1993-10-01,1.7218,6.201,364 +7353,4507,Jamon Jamon,"José Luis has a cushy corporate job at the lingerie factory his mom owns. After he falls in love and proposes to Silvia, a beautiful laborer on the underwear assembly line, his mom enlists Raul, a potential underwear model and would-be bullfighter, to seduce Silvia.",1992-09-03,2.3743,6.201,369 +7354,485894,Naples in Veils,"In a Naples suspended between magic and superstition, madness and rationality, a mystery envelops the existence of Adriana, overwhelmed by a sudden love and a violent crime.",2017-12-28,1.2443,6.2,464 +7355,19457,The Yards,"In the rail yards of Queens, contractors repair and rebuild the city's subway cars. These contracts are lucrative, so graft and corruption are rife. When Leo Handler gets out of prison, he finds his aunt married to Frank Olchin, one of the big contractors; he's battling with a minority-owned firm for contracts.",2000-04-27,2.4064,6.2,473 +7356,2637,The Mothman Prophecies,Reporter John Klein is plunged into a world of impossible terror and unthinkable chaos when fate draws him to a sleepy West Virginia town whose residents are being visited by a great winged shape that sows hideous nightmares and fevered visions.,2002-01-25,2.0388,6.2,1168 +7357,50619,The Twilight Saga: Breaking Dawn - Part 1,Bella Swan and Edward Cullen's honeymoon phase is abruptly disrupted by betrayals and unforeseen tragedies that endanger their world.,2011-11-16,11.3546,6.199,8977 +7358,27374,Lake Mungo,"After 16-year-old Alice Palmer drowns at a local dam, her family experiences a series of strange, inexplicable events centered in and around their home. Unsettled, the Palmers seek the help of a psychic and parapsychologist, who discovers that Alice led a secret, double life. At Lake Mungo, Alice's secret past emerges.",2009-07-30,2.9185,6.2,596 +7359,11824,Teen Wolf,When a shy teenager's new-found powers help him score at basketball - and with the popular girls - he has some pretty hairy decisions to make.,1985-08-23,3.4457,6.2,1201 +7360,11683,Land of the Dead,"The world is full of zombies and the survivors have barricaded themselves inside a walled city to keep out the living dead. As the wealthy hide out in skyscrapers and chaos rules the streets, the rest of the survivors must find a way to stop the evolving zombies from breaking into the city.",2005-06-18,3.3386,6.199,1653 +7361,11665,Get Smart,"When members of the nefarious crime syndicate KAOS attack the U.S. spy agency Control and the identities of secret agents are compromised, the Chief has to promote hapless but eager analyst Maxwell Smart to field agent. He is partnered with veteran and capable Agent 99, the only spy whose cover remains intact. Can they work together to thwart the evil world-domination plans of KAOS and its crafty operative?",2008-06-19,3.8374,6.199,3678 +7362,721625,Songbird,"During a pandemic lockdown, Nico, a young man with rare immunity, must overcome martial law, murderous vigilantes and a powerful family to reunite with his love, Sara.",2020-12-10,1.5362,6.198,760 +7363,11966,Short Circuit 2,"Robot Johnny 5 moves to the city to help his friend Ben Jahrvi with his toy manufacturing enterprise, only to be manipulated by criminals who want to use him for their own nefarious purposes.",1988-07-06,1.9598,6.2,619 +7364,9594,Double Impact,"Jean Claude Van Damme plays a dual role as Alex and Chad, twins separated at the death of their parents. Chad is raised by a family retainer in Paris, Alex becomes a petty crook in Hong Kong. Seeing a picture of Alex, Chad rejoins him and convinces him that his rival in Hong Kong is also the man who killed their parents. Alex is suspicious of Chad, especially when it comes to his girlfriend.",1991-07-31,3.9443,6.198,1128 +7365,74725,Kill List,"Nearly a year after a botched job, a hitman takes a new assignment with the promise of a big payoff for three killings. What starts off as an easy task soon unravels, sending the killer into the heart of darkness.",2011-09-02,2.2528,6.2,811 +7366,891699,Silent Night,"A tormented father witnesses his young son die when caught in a gang's crossfire on Christmas Eve. While recovering from a wound that costs him his voice, he makes vengeance his life's mission and embarks on a punishing training regimen in order to avenge his son's death.",2023-11-30,2.3195,6.196,840 +7367,6278,Reign of Fire,"In post-apocalyptic England, an American volunteer and a British survivor team up to fight off a brood of fire-breathing dragons seeking to return to global dominance after centuries of rest underground. The Brit -- leading a clan of survivors to hunt down the King of the Dragons -- has much at stake: His mother was killed by a dragon, but his love is still alive.",2002-07-09,3.3414,6.196,2320 +7368,520023,Bodies Bodies Bodies,"In an isolated family mansion, a group of rich 20-somethings decides to play Bodies Bodies Bodies, a game where one of them is secretly a ""killer"" while the rest tries to ""escape"". Things take a turn for the worse when real bodies start turning up, setting off a paranoid and dangerous chain of events.",2022-08-05,3.1668,6.195,1306 +7369,23629,Sucker Punch,"A young woman, institutionalized by her abusive stepfather, retreats into a vivid fantasy world where she envisions a plan to escape. Gathering a group of fellow inmates, she embarks on a quest to collect five mystical items, blurring the lines between reality and imagination.",2011-03-24,3.9723,6.195,4851 +7370,11169,Spartan,"U.S. government agent Scott is assigned to rescue the daughter of a high-ranking government official. As willing as he is to bend the rules to get things done, though, Scott is shocked to find that others are willing to go even further to protect a political career.",2004-03-12,1.1524,6.195,392 +7371,1497,Teenage Mutant Ninja Turtles II: The Secret of the Ooze,"The Turtles and the Shredder battle once again, this time for the last cannister of the ooze that created the Turtles, which Shredder wants to create an army of new mutants.",1991-03-22,2.6252,6.2,1180 +7372,227300,Stretch,A hard-luck limo driver struggling to go straight and pay off a debt to his bookie takes on a job with a crazed passenger whose sought-after ledger implicates some seriously dangerous criminals.,2014-10-14,1.1444,6.194,677 +7373,64686,47 Ronin,"Kai—an outcast—joins Oishi, the leader of 47 outcast samurai. Together they seek vengeance upon the treacherous overlord who killed their master and banished their kind. To restore honour to their homeland, the warriors embark upon a quest that challenges them with a series of trials that would destroy ordinary warriors.",2013-12-06,4.1697,6.194,3949 +7374,1370,Rambo III,"Combat has taken its toll on Rambo, but he's finally begun to find inner peace in a monastery. When Rambo's friend and mentor Col. Trautman asks for his help on a top secret mission to Afghanistan, Rambo declines but must reconsider when Trautman is captured.",1988-05-24,5.1668,6.194,3287 +7375,459910,Braven,A logger defends his family from a group of dangerous drug runners.,2018-02-01,2.879,6.193,1058 +7376,393717,The Crew,"One of the members of a gang of thieves commits a serious mistake that force them to work for a ruthless gang of drug dealers, endangering the future of the team, their lives and those of their families.",2016-05-04,1.118,6.193,342 +7377,287903,Krampus,"When his dysfunctional family clashes over the holidays, young Max is disillusioned and turns his back on Christmas. Little does he know, this lack of festive spirit has unleashed the wrath of Krampus: a demonic force of ancient evil intent on punishing non-believers.",2015-11-26,2.9588,6.192,2276 +7378,69668,Dream House,"Publisher Will Atenton quits a lucrative job in New York to relocate his wife, Libby, and their daughters to a quaint town in New England. However, as they settle into their home the Atentons discover that a woman and her children were murdered there, and the surviving husband is the town's prime suspect. With help from a neighbor who was close to the murdered family, Will pieces together a horrifying chain of events.",2011-09-29,1.4893,6.193,1383 +7379,460885,Mandy,"The Shadow Mountains, 1983. Red and Mandy lead a loving and peaceful existence; but when their pine-scented haven is savagely destroyed, Red is catapulted into a phantasmagoric journey filled with bloody vengeance and laced with fire.",2018-09-13,3.0012,6.192,2000 +7380,395990,Death Wish,A mild-mannered father is transformed into a killing machine after his family is torn apart by a violent act.,2018-03-01,4.1995,6.192,2631 +7381,390061,Mark Felt: The Man Who Brought Down the White House,"The story of Mark Felt, who under the name ""Deep Throat"" helped journalists Bob Woodward and Carl Bernstein uncover the Watergate scandal in 1974.",2017-09-28,1.9925,6.192,529 +7382,65759,Happy Feet Two,"Mumble the penguin has a problem: his son Erik, who is reluctant to dance, encounters the Mighty Sven — a penguin who can fly! Things get worse for Mumble when the world is shaken by powerful forces, causing him to bring together the penguin nations and their allies to set things right.",2011-11-17,3.3181,6.2,1669 +7383,2114,Final Fantasy: The Spirits Within,"Led by a strange dream, scientist Aki Ross struggles to collect the eight spirits in the hope of creating a force powerful enough to protect the planet. With the aid of the Deep Eyes Squadron and her mentor, Dr. Sid, Aki must save the Earth from its darkest hate and unleash the spirits within.",2001-07-02,3.1239,6.193,1515 +7384,585759,The Coldest Game,"Warsaw, Poland, during the Cuban Missile Crisis, 1962. Josh Mansky, a troubled math genius and former US chess champion, is recruited to hold a dangerous public match against the Soviet champion, while playing the deadly game of espionage hidden in the darkest shadows of a hostile territory.",2019-11-08,1.6118,6.2,311 +7385,133931,Zambezia,"Set in a bustling bird city on the edge of the majestic Victoria Falls, ""Zambezia"" is the story of Kai - a naïve, but high-spirited young falcon who travels to the bird city of ""Zambezia"" where he discovers the truth about his origins and, in defending the city, learns how to be part of a community.",2012-06-05,1.6832,6.191,311 +7386,9621,Elizabethtown,"Drew Baylor is fired after causing his shoe company to lose hundreds of millions of dollars. To make matters worse, he's also dumped by his girlfriend. On the verge of ending it all, Drew gets a new lease on life when he returns to his family's small Kentucky hometown after his father dies. Along the way, he meets a flight attendant with whom he falls in love.",2005-10-14,2.137,6.191,1135 +7387,449562,The Hustle,"Two female scam artists, one low rent and the other high class, compete to swindle a naïve tech prodigy out of his fortune. A remake of the 1988 comedy ""Dirty Rotten Scoundrels.""",2019-05-09,4.1019,6.19,2580 +7388,85373,StreetDance 2,"After suffering humiliation by the crew Invincible, street dancer Ash looks to gather the best dancers from around the world for a rematch.",2012-03-30,1.2209,6.19,384 +7389,760926,Gold,"In the not-too-distant future, two drifters traveling through the desert stumble across the biggest gold nugget ever found and the dream of immense wealth and greed takes hold. They hatch a plan to excavate their bounty, with one man leaving to secure the necessary tools while the other remains with the gold. The man who remains must endure harsh desert elements, ravenous wild dogs, and mysterious intruders, while battling the sinking suspicion that he has been abandoned to his fate.",2022-01-13,2.0619,6.189,620 +7390,694234,Under the Riccione Sun,"While vacationing on the crowded beaches of Riccione, a group of teenagers becomes fast friends as they grapple with relationship issues and romance.",2020-07-01,1.1444,6.189,557 +7391,11415,House,"Roger Cobb, a divorced horror novelist coming to terms with the disappearance of his young son, inherits an old mansion home to malevolent supernatural residents.",1985-12-06,2.3632,6.189,589 +7392,4477,The Devil's Own,"Frankie McGuire, one of the IRA's deadliest assassins, draws an American family into the crossfire of terrorism. But when he is sent to the U.S. to buy weapons, Frankie is housed with the family of Tom O'Meara, a New York cop who knows nothing about Frankie's real identity. Their surprising friendship, and Tom's growing suspicions, forces Frankie to choose between the promise of peace or a lifetime of murder.",1997-03-13,2.7295,6.188,1267 +7393,399031,Happy End,A well-to-do French family living in Calais deal with a series of setbacks and crises while paying little attention to the grim conditions in the refugee camps within a few miles of their home.,2017-06-21,1.0634,6.187,403 +7394,339994,The Good Neighbor,Two high school filmmakers decide to create the illusion of a haunting on an unsuspecting neighbor.,2016-09-16,2.1318,6.2,457 +7395,195589,Neighbors,A couple with a newborn baby face unexpected difficulties after they are forced to live next to a fraternity house.,2014-05-08,5.0993,6.187,7041 +7396,228967,The Interview,"Dave Skylark and his producer Aaron Rapaport run the celebrity tabloid show ""Skylark Tonight"". When they land an interview with a surprise fan, North Korean dictator Kim Jong-un, they are recruited by the CIA to turn their trip to Pyongyang into an assassination mission.",2014-12-25,5.4734,6.186,5963 +7397,199928,The Outsider,A former American G.I. joins a yakuza family after his release from prison in post-World War II Osaka.,2018-03-09,1.6062,6.186,664 +7398,157851,Maps to the Stars,"Driven by an intense need for fame and validation, members of a dysfunctional Hollywood family are chasing celebrity, one another and the relentless ghosts of their pasts.",2014-05-21,1.8769,6.2,1101 +7399,9541,Jersey Girl,"Ollie Trinke is a young, suave music publicist who seems to have it all, with a new wife and a baby on the way. But life deals him a bum hand when he's suddenly faced with single fatherhood, a defunct career and having to move in with his father. To bounce back, it takes a new love and the courage instilled in him by his daughter.",2004-03-25,2.7316,6.2,1089 +7400,8090,Untraceable,"Special Agent Jennifer Marsh works in an elite division of the FBI dedicated to fighting cybercrime. She thinks she has seen it all, until a particularly sadistic criminal arises on the Internet. This tech-savvy killer posts live feeds of his crimes on his website; the more hits the site gets, the faster the victim dies. Marsh and her team must find the elusive killer before time runs out.",2008-01-22,1.6612,6.186,923 +7401,2662,House of 1000 Corpses,Two teenage couples traveling across the backwoods of Texas searching for urban legends of serial killers end up as prisoners of a bizarre and sadistic backwater family of serial killers.,2003-04-11,3.1504,6.186,1658 +7402,457041,Elizabeth Harvest,"The newly married Elizabeth arrives with her new husband, the scientist Henry, at a magnificent house. He tells her that she can do there anything she pleases, except to enter a certain closed room.",2018-08-10,1.4388,6.185,365 +7403,136418,Hummingbird,"Homeless and on the run from a military court martial, a damaged ex-special forces soldier navigating London's criminal underworld seizes an opportunity to assume another man's identity, transforming into an avenging angel in the process.",2013-05-07,4.0251,6.185,1765 +7404,37710,The Tourist,"American tourist Frank meets mysterious British woman Elise on the train to Venice. Romance seems to bud, but there's more to her than meets the eye.",2010-12-08,4.2382,6.185,5540 +7405,9688,Melinda and Melinda,"While dining out with friends, Sy suggests the difficulty of separating comedy from tragedy. To illustrate his point, he tells his guests two parallel stories about Melinda ; both versions have the same basic elements, but one take on her state of affairs leans toward levity, while the other is full of anguish. Each story involves Melinda coping with a recent divorce through substance abuse while beginning a romantic relationship with a close friend's husband.",2004-12-22,1.7902,6.185,475 +7406,253835,Los Bandoleros,The film tells the back story about the characters and events leading up to the explosive oil truck heist in Fast & Furious.,2009-07-28,0.1207,6.184,367 +7407,55846,Blitz,A tough cop is dispatched to take down a serial killer who has been targeting police officers.,2011-05-20,4.3457,6.184,1701 +7408,14061,The Edge of Love,"When the Welsh poet Dylan Thomas and his flirtatious wife Caitlin sweep into war-torn London, the last thing they expect is to bump into Dylan's childhood sweetheart Vera. Despite her joy at seeing Dylan after so many years, Vera is swept off her feet by a dashing officer, William Killick, and finds herself torn between the open adoration of her new found beau and the wily charms of the exotic Welshman.",2008-06-20,1.3757,6.184,378 +7409,11017,Billy Madison,"Billy Madison is the 27 year-old son of Bryan Madison, a very rich man who has made his living in the hotel industry. Billy stands to inherit his father's empire, but only if he can make it through all 12 grades, 2 weeks per grade, to prove that he has what it takes to run the family business.",1995-02-10,3.9957,6.2,1702 +7410,9573,Blood Work,"Still recovering from a heart transplant, a retired FBI profiler returns to service when his own blood analysis offers clues to the identity of a serial killer.",2002-08-09,1.8494,6.184,841 +7411,8688,Snake Eyes,"All bets are off when shady homicide cop Rick Santoro witnesses a murder during a boxing match. It's up to him and lifelong friend, Naval intelligence agent Kevin Dunne, to uncover the conspiracy behind the killing. At every turn, Santoro makes increasingly shocking discoveries that even he can't turn a blind eye to.",1998-08-07,2.2125,6.184,1407 +7412,692,Pink Flamingos,"Notorious Baltimore criminal and underground figure Divine goes up against Connie & Raymond Marble, a sleazy married couple who make a passionate attempt to humiliate her and seize her tabloid-given title as ""The Filthiest Person Alive"".",1972-03-17,2.3457,6.2,522 +7413,516632,The Empty Man,"Retired cop James Lasombra is asked by a friend to investigate the disappearance of her daughter, who seemingly packed in the night and left an ominous message on the bathroom mirror - ""The Empty Man Made Me Do It."" As he investigates this mysterious figure further, James begins to see and hear strange things, and is forced to come to terms with his past and what it means for his future.",2020-10-22,4.4266,6.183,914 +7414,59962,This Means War,Two top CIA operatives wage an epic battle against one another after they discover they are dating the same woman.,2012-02-14,3.5419,6.183,3461 +7415,41479,The Joneses,"A seemingly perfect family moves into a suburban neighborhood, but when it comes to the truth as to why they're living there, they don't exactly come clean with their neighbors.",2010-04-16,1.112,6.2,606 +7416,17182,Eye for an Eye,"It's fire and brimstone time as grieving mother Karen McCann takes justice into her own hands when a kangaroo court in Los Angeles fails to convict Robert Doob, the monster who raped and murdered her 17-year-old daughter.",1996-01-12,3.755,6.183,432 +7417,6552,Idle Hands,"Anton is a cheerful but exceedingly non-ambitious 17-year-old stoner who lives to stay buzzed, watch TV, and moon over Molly, the beautiful girl who lives next door. However, it turns out that the old cliché about idle hands being the devil's playground has a kernel of truth after all.",1999-04-30,1.9776,6.183,697 +7418,1059064,The Instigators,"Rory and Cobby are unlikely partners thrown together for a heist. But when it goes awry, they team up with an unusual accomplice — Rory's therapist — to outrun police, backward bureaucrats, and a vengeful crime boss.",2024-08-02,3.8312,6.181,507 +7419,338947,Hellraiser,"A young woman struggling with addiction comes into possession of an ancient puzzle box, unaware that its purpose is to summon the Cenobites, a group of sadistic supernatural beings from another dimension.",2022-09-28,2.4927,6.182,894 +7420,50479,Avalon High,"Elaine ""Ellie"" Harrison has just moved from Minnesota to Annapolis, Maryland while her parents take a year-long sabbatical to continue their medieval studies in nearby Washington D.C. Her new high school, Avalon High, seems like a typical high school with the stereotypical students: Lance the jock, Jennifer the cheerleader, Marco, the bad boy/desperado, and Will, the senior class president, quarterback, and all around good guy. But not everyone at Avalon High is who they appear to be, not even Ellie herself. Eventually, it becomes apparent that Avalon High is a situation where the ancient Arthurian legend is repeating itself.",2011-01-28,1.2725,6.182,563 +7421,399790,Churchill,A ticking-clock thriller following Winston Churchill in the 24 hours before D-Day.,2017-05-25,1.3033,6.181,321 +7422,218836,Planes: Fire & Rescue,"When world-famous air racer Dusty learns that his engine is damaged and he may never race again, he must shift gears and is launched into the world of aerial firefighting. Dusty joins forces with veteran fire and rescue helicopter Blade Ranger and his team, a bunch of all-terrain vehicles known as The Smokejumpers. Together, the fearless team battles a massive wildfire, and Dusty learns what it takes to become a true hero.",2014-07-17,3.2226,6.2,878 +7423,75638,Red Lights,"Two investigators of paranormal hoaxes, the veteran Dr. Margaret Matheson and her young assistant, Tom Buckley, study the most varied metaphysical phenomena with the aim of proving their fraudulent origins. Simon Silver, a legendary blind psychic, reappears after an enigmatic absence of 30 years to become the greatest international challenge to both orthodox science and professional sceptics. Tom starts to develop an intense obsession with Silver, whose magnetism becomes stronger with each new manifestation of inexplicable events. As Tom gets closer to Silver, tension mounts, and his worldview is threatened to its core.",2012-03-02,3.8917,6.181,1311 +7424,17182,Eye for an Eye,"It's fire and brimstone time as grieving mother Karen McCann takes justice into her own hands when a kangaroo court in Los Angeles fails to convict Robert Doob, the monster who raped and murdered her 17-year-old daughter.",1996-01-12,3.755,6.183,432 +7425,46529,I Am Number Four,"A teenage fugitive with an incredible secret races to stay one step ahead of the mysterious forces seeking destroy him in this sci-fi action thriller. With three dead and one on the run, the race to find the elusive Number Four begins. Outwardly normal teen John Smith never gets too comfortable in the same identity, and along with his guardian, Henri, he is constantly moving from town to town. With each passing day, John gains a stronger grasp on his extraordinary new powers, and his bond to the beings that share his fantastic fate grows stronger.",2011-02-18,4.7552,6.18,4774 +7426,20235,Belle's Magical World,"Belle, the Beast, Lumiere, Cogsworth and the rest of those zany castle residents use their imaginations to embark on three magical, storybook adventures. This direct-to-video anthology serves as a ""sequel"" to Disney's animated hit film. In ""The Perfect World,"" Belle and the Beast learn about forgiveness. In ""Fifi's Folly,"" Lumiere's girlfriend is jealous of his bond with Belle. And in ""Broken Wing,"" the Beast learns to be kind to an injured bird.",1998-02-16,2.7807,6.18,476 +7427,13499,"Yours, Mine & Ours","Admiral Frank Beardsley returns to New London to run the Coast Guard Academy, his last stop before a probable promotion to head the Guard. A widower with eight children, he runs a loving but tight ship, with charts and salutes. The kids long for a permanent home. Helen North is a free spirit, a designer whose ten children live in loving chaos, with occasional group hugs. Helen and Frank, high school sweethearts, reconnect at a reunion, and it's love at first re-sighting. They marry on the spot. Then the problems start as two sets of kids, the free spirits and the disciplined preppies, must live together. The warring factions agree to work together to end the marriage.",2005-11-23,20.9415,6.18,851 +7428,763149,Aftermath,"Desperate to save their marriage, a young couple takes a deal to move into their dream home, but disturbing events reveal the house's troubled history.",2021-08-04,1.5071,6.179,637 +7429,660982,American Pie Presents: Girls' Rules,"It's Senior year at East Great Falls. Annie, Kayla, Michelle, and Stephanie decide to harness their girl power and band together to get what they want their last year of high school.",2020-10-06,8.8951,6.2,663 +7430,21845,Rookie of the Year,"12-year-old Henry Rowengartner, whose late father was a minor league baseball player, grew up dreaming of playing baseball, despite his physical shortcomings. After Henry's arm is broken while trying to catch a baseball at school, the tendon in that arm heals too tightly, allowing Henry to throw pitches that are as fast as 103 mph. Henry is spotted at nearby Wrigley Field by Larry ""Fish"" Fisher, the general manager of the struggling Chicago Cubs, after Henry throws an opponent's home-run ball all the way from the outfield bleachers back to the catcher, and it seems that Henry may be the pitcher that team owner Bob Carson has been praying for.",1993-07-07,1.188,6.2,364 +7431,11896,Throw Momma from the Train,"Larry Donner, an author with a cruel ex-wife, teaches a writing workshop in which one of his students, Owen, is fed up with his domineering mother. When Owen watches a Hitchcock classic that seems to mirror his own life, he decides to put the movie's plot into action and offers to kill Larry's ex-wife, if Larry promises to murder his mom. Before Larry gets a chance to react to the plan, it seems that Owen has already set things in motion.",1987-12-11,2.0232,6.179,604 +7432,309886,Blood Father,An ex-con reunites with his estranged wayward 16-year old daughter to protect her from drug dealers who are trying to kill her.,2016-08-11,3.746,6.178,1580 +7433,89185,Radio Rebel,"High school senior Tara is so painfully shy that she dreads speaking to anyone in the hallways or getting called on in class. But in the privacy of her bedroom with her iPod in hand, she rocks out -- doing mock broadcasts for Miami's hottest FM radio station, which happens to be owned by her stepfather. When a slot opens up at The SLAM, Tara surprises herself by blossoming behind the mike into confident, ""Radio Rebel"" -- and to everyone's shock, she's a hit!",2012-06-09,1.6733,6.178,824 +7434,85872,Le Chef,"A veteran chef faces off against his restaurant group's new CEO, who wants to the establishment to lose a star from its rating in order to bring in a younger chef who specializes in molecular gastronomy.",2012-03-07,1.3466,6.178,610 +7435,61717,Wendy Wu: Homecoming Warrior,"It is the story of an average, popular American teenager named Wendy Wu who discovers that in order to win the coveted crown she must first learn the way of the warrior. Wendy Wu has a one track mind, and that track leads directly to the title of homecoming queen -- no unscheduled stops, and no unnecessary detours. When a mysterious Chinese monk named Shen arrives to mold Wendy into a fearless kung fu warrior, however, her royal aspirations suddenly jump the track as she desperately attempts to juggle her boyfriend, her homework, and of course, the fierce competition to become homecoming queen. Now, as Wendy begins to train her mind, body, and spirit in the ancient tradition of the martial arts and her inner warrior gradually begins to emerge, the girl who once obsessed over popularity finally begins to put that popularity into perspective as she gradually realizes what truly matters in life.",2006-06-16,1.8339,6.178,426 +7436,11699,Bad Lieutenant: Port of Call - New Orleans,"Terrence McDonagh is a New Orleans Police sergeant, who receives a medal and a promotion to lieutenant for heroism during Hurricane Katrina. Due to his heroic act, McDonagh injures his back and becomes addicted to prescription pain medication. He then finds himself involved with a drug dealer who is suspected of murdering a family of African immigrants.",2009-09-11,2.9041,6.178,1182 +7437,9080,Spies Like Us,"Two bumbling government employees think they are U.S. spies, only to discover that they are actually decoys for nuclear war.",1985-12-06,1.6353,6.2,659 +7438,698,Moonraker,"After Drax Industries' Moonraker space shuttle is hijacked, secret agent James Bond is assigned to investigate, traveling to California to meet the company's owner, the mysterious Hugo Drax. With the help of scientist Dr. Holly Goodhead, Bond soon uncovers Drax's nefarious plans for humanity, all the while fending off an old nemesis, Jaws, and venturing to Venice, Rio, the Amazon...and even outer space.",1979-06-26,4.4373,6.177,2065 +7439,296,Terminator 3: Rise of the Machines,"It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor … just like he promised.",2003-07-02,5.4399,6.2,6887 +7440,227159,Horrible Bosses 2,"Dale, Kurt and Nick decide to start their own business but things don't go as planned because of a slick investor, prompting the trio to pull off a harebrained and misguided kidnapping scheme.",2014-11-12,5.6576,6.177,4228 +7441,12145,Fierce Creatures,"Ex-policeman Rollo Lee is sent to run Marwood Zoo, the newly acquired business of a New Zealand tycoon. In order to meet high profit targets and keep the zoo open, Rollo enforces a new 'fierce creatures' policy, whereby only the most impressive and dangerous animals are allowed to remain in the zoo. However, the keepers are less enthusiastic about complying with these demands.",1997-01-23,1.2854,6.177,365 +7442,11164,D2: The Mighty Ducks,"After Gordon Bombay's hockey comeback is cut short he is named coach of Team USA Hockey for the Junior Goodwill Games. Bombay reunites the Mighty Ducks and introduces a few new players, however, he finds himself distracted by his newfound fame and must regather if the Ducks are to defeat tournament favourites Iceland.",1994-03-25,1.9646,6.177,620 +7443,859235,Coup de Chance,"Fanny and Jean have everything of an ideal couple: fulfilled in their professional life, they live in a magnificent apartment in the beautiful districts of Paris and seem to be in love as on the first day. But when Fanny crosses, by chance, Alain, a former high school friend, she is immediately capsized. They see each other again very quickly and get closer and closer.",2023-09-15,1.551,6.2,397 +7444,184345,A Haunted House 2,"After exorcising the demons of his ex, Malcolm starts afresh with his new girlfriend and her two children. After moving into their dream home, Malcolm is once again plagued by bizarre paranormal events.",2014-04-17,6.7841,6.176,1507 +7445,157825,White Bird in a Blizzard,"In 1988, a teenage girl's life is thrown into chaos when her mother disappears.",2014-10-15,1.4973,6.2,726 +7446,87496,The Company You Keep,A former Weather Underground activist goes on the run from a journalist who discovers his identity.,2012-12-20,2.7215,6.176,727 +7447,11418,National Lampoon's European Vacation,"The Griswolds win a vacation to Europe on a game show, and so pack their bags for the continent. They do their best to catch the flavor of Europe, but they just don't know how to be be good tourists. Besides, they have trouble taking holidays in countries where they CAN speak the language.",1985-07-25,3.1485,6.176,922 +7448,8978,Assault on Precinct 13,"On New Year's Eve, inside a police station that's about to be closed for good, officer Jake Roenick must cobble together a force made up cops and criminals to save themselves from a mob looking to kill mobster Marion Bishop.",2005-01-19,2.3278,6.176,1130 +7449,326285,American Pastoral,"Set in postwar America, a man watches his seemingly perfect life fall apart as his daughter's new political affiliation threatens to destroy their family.",2016-10-20,1.9374,6.175,713 +7450,98567,Chinese Zodiac,"Asian Hawk leads a mercenary team to recover several lost artifacts from the Old Summer Palace, the bronze heads of the twelve Chinese Zodiac animals which were sacked by the French and British armies from the imperial Summer Palace in Beijing in 1860. Assisted by a Chinese student and a Parisian woman, Hawk stops at nothing to accomplish the mission.",2012-12-20,3.5671,6.2,842 +7451,9545,Sniper,Tough guy Thomas Beckett is an US soldier working in the Panamanian jungle. His job is to seek out rebels and remove them using his sniper skills. Beckett is notorious for losing his partners on such missions. This time he's accompanied by crack marksman Richard Miller.,1993-01-29,2.2065,6.2,439 +7452,531509,Otherhood,"Feeling forgotten on Mother's Day, three best friends leave the suburbs and drive to New York City to surprise their adult sons.",2019-08-13,1.726,6.174,458 +7453,219572,Police Story: Lockdown,"A man looking for the release of a long-time prisoner takes a police officer, his daughter, and a group of strangers hostage.",2013-12-24,1.7485,6.2,383 +7454,81390,A Lonely Place to Die,A group of five mountaineers are hiking and climbing in the Scottish Highlands when they discover a young Serbian girl buried in a small chamber in the wilderness. They become caught up in a terrifying game of cat and mouse with the kidnappers as they try to get the girl to safety.,2011-04-09,2.3549,6.174,600 +7455,11353,Bowfinger,"On the verge of bankruptcy and desperate for his big break, aspiring filmmaker Bobby Bowfinger concocts a crazy plan to make his ultimate dream movie. Rallying a ragtag team that includes a starry-eyed ingenue, a has-been diva and a film studio gofer, he sets out to shoot a blockbuster featuring the biggest star in Hollywood, Kit Ramsey -- only without letting Ramsey know he's in the picture.",1999-08-12,2.5988,6.174,894 +7456,419479,The Babysitter,"When Cole stays up past his bedtime, he discovers that his hot babysitter is part of a Satanic cult that will stop at nothing to keep him quiet.",2017-10-13,4.5881,6.173,3728 +7457,54004,Passport to Paris,"Sent to Paris to visit their grandfather, the twins fall in love with France, not to mention two French boys.",1999-11-09,0.9386,6.2,304 +7458,530382,In the Shadow of the Moon,"In 1988, Philadelphia police officer Thomas ""Locke"" Lockhart, hungry to become a detective, begins tracking a serial killer whose crimes defy scientific explanation. When the killer mysteriously resurfaces nine years later, Locke's obsession with finding the truth threatens to destroy his career, his family, and possibly his sanity.",2019-09-27,3.1003,6.172,1479 +7459,489243,The Hummingbird Project,A pair of high-frequency traders go up against their old boss in an effort to make millions in a fiber-optic cable deal.,2019-03-15,1.8671,6.2,366 +7460,419831,I Kill Giants,"Sophia, a new high school student, tries to make friends with Barbara, who tells her that “she kills giants,” protecting this way her hometown and its inhabitants, who do not understand her strange behavior.",2017-11-15,2.2563,6.172,1198 +7461,152792,Devil's Knot,The savage murders of three young children sparks a controversial trial of three teenagers accused of killing the kids as part of a satanic ritual.,2013-05-09,1.945,6.172,681 +7462,11357,Halloween 4: The Return of Michael Myers,Michael returns to Haddonfield for Jamie Lloyd – the orphaned daughter of Laurie Strode – and her babysitter Rachel. Can Dr. Loomis stop him before the unholy slaughter reaches his innocent young niece?,1988-10-21,2.4278,6.172,1973 +7463,841,Dune,"In the year 10,191, the most precious substance in the universe is the spice Melange. The spice extends life. The spice expands consciousness. The spice is vital to space travel. The spice exists on only one planet in the entire universe, the vast desert planet Arrakis, also known as Dune. Its native inhabitants, the Fremen, have long held a prophecy that a man would come, a messiah who would lead them to true freedom.",1984-12-14,6.6122,6.173,3221 +7464,340382,Attack on Titan II: End of the World,"Eren Yeager leaves to restore a break in the wall destroyed by a Titan. He comes under attack by the Titans and is cornered. Shikishima comes to his aid. The titans never stops attacking. Eren is now injured and tries to protect Armin, but is swallowed by a titan. A Titan with black hair appears and begins to expel the other titans.",2015-09-01,3.727,6.171,363 +7465,209247,The Art of the Steal,"Crunch Calhoun, a third-rate motorcycle daredevil and part-time art thief, teams up with his snaky brother to steal one of the most valuable books in the world. But it's not just about the book for Crunch — he's keen to rewrite some chapters of his own past as well.",2013-09-20,2.3188,6.17,582 +7466,13969,First Daughter,"Samantha MacKenzie, the daughter of the president of the United States, arrives at college with a group of Secret Service agents. Samantha, however, resents their presence and decides she wants to attend school just like a normal student. Her father agrees to recall the agents but secretly assigns James, an undercover agent, to pose as a student.",2004-09-24,3.229,6.17,962 +7467,11917,Saw V,"Following Jigsaw's grisly demise, Detective Mark Hoffman is commended as a hero, but Agent Strahm is suspicious, and delves into Hoffman's past. Meanwhile, another group of people are put through a series of gruesome tests.",2008-10-23,4.4317,6.17,3644 +7468,411143,Tau,"Held captive in a futuristic smart house, a woman hopes to escape by befriending the A.I. program that controls the house.",2018-06-29,2.5781,6.169,1304 +7469,324807,A Bigger Splash,"An American couple, Paul and Marianne, spend their vacation in Italy and experience trouble when Marianne invites a former lover and his teenage daughter to visit, which leads to jealousy and dangerous sexual scenarios.",2015-11-26,1.8904,6.169,797 +7470,77930,Magic Mike,"Mike, an experienced stripper, takes a younger performer called The Kid under his wing and schools him in the arts of partying, picking up women, and making easy money.",2012-06-28,3.6172,6.169,2991 +7471,663,Saw IV,"Despite Jigsaw's death, and in order to save the lives of two of his colleagues, Lieutenant Rigg is forced to take part in a new game, which promises to test him to the limit.",2007-10-25,4.0222,6.169,3922 +7472,264999,Magic Mike XXL,"Three years after Mike bowed out of the stripper life at the top of his game, he and the remaining Kings of Tampa hit the road to Myrtle Beach to put on one last blow-out performance.",2015-07-01,2.9393,6.168,1804 +7473,63493,The Ledge,A thriller in which a battle of philosophies between a fundamentalist Christian and an atheist escalates into a lethal battle of wills.,2011-05-06,1.3441,6.168,361 +7474,11234,The Omega Man,"Due to an experimental vaccine, Dr. Robert Neville is the only human survivor of an apocalyptic war waged with biological weapons. Besides him, only a few hundred deformed, nocturnal people remain - sensitive to light, and homicidally psychotic.",1971-08-01,1.275,6.168,576 +7475,9457,Deep Rising,"A group of heavily armed hijackers board a luxury ocean liner in the South Pacific Ocean to loot it, only to do battle with a series of large-sized, tentacled, man-eating sea creatures who have taken over the ship first.",1998-01-30,2.8334,6.2,739 +7476,8916,Antz,"A neurotic worker ant in love with a rebellious princess rises to unlikely stardom when he switches places with a soldier. Signing up to march in a parade, he ends up under the command of a bloodthirsty general. But he's actually been enlisted to fight against a termite army.",1998-10-02,5.0531,6.2,4566 +7477,13492,Frontier(s),"A gang of young thieves flee Paris during the violent aftermath of a political election, only to hole up at an Inn run by neo-Nazis.",2007-07-01,1.9251,6.167,752 +7478,11025,New York Minute,"Top student Jane Ryan heads to Manhattan for a college-scholarship competition. Her rebellious twin Roxy Ryan goes along to crash a video shoot. But anything can happen - and does - in a romp involving a pursuing truant officer, a smuggler, hunkalicious guys and the girls' realization that when the chips are down, a sister can be the best friend of all.",2004-05-07,1.9551,6.163,903 +7479,59570,Escort in Love,"35-year-old Alice has a husband and a son. Her life seems a beautiful dream, but it soon turns out to be a nightmare. Her husband dies in a car accident and her lawyer tells her that she is on her uppers. The only way she has to earn money in a short time is by resorting to the oldest job in history.",2011-03-18,0.8935,6.166,624 +7480,59570,Escort in Love,"35-year-old Alice has a husband and a son. Her life seems a beautiful dream, but it soon turns out to be a nightmare. Her husband dies in a car accident and her lawyer tells her that she is on her uppers. The only way she has to earn money in a short time is by resorting to the oldest job in history.",2011-03-18,0.8935,6.166,624 +7481,12593,Fritz the Cat,"A swinging, hypocritical college student cat raises hell in a satirical vision of the 1960s.",1972-04-12,1.2641,6.2,355 +7482,9899,The Producers,"Broadway producer Max Bialystock and his accountant, Leo Bloom plan to make money by charming wealthy old biddies to invest in a production many times over the actual cost, and then put on a sure-fire flop, so nobody will ask for their money back – and what can be a more certain flop than a tasteless musical celebrating Hitler.",2005-12-25,2.0038,6.2,478 +7483,9641,Cheaper by the Dozen 2,"Steve Martin and Bonnie Hunt return as heads of the Baker family who, while on vacation, find themselves in competition with a rival family of eight children.",2005-12-21,3.2721,6.165,2022 +7484,7484,Open Season,"Boog, a domesticated 900lb. Grizzly bear finds himself stranded in the woods 3 days before Open Season. Forced to rely on Elliot, a fast-talking mule deer, the two form an unlikely friendship and must quickly rally other forest animals if they are to form a rag-tag army against the hunters.",2006-09-27,5.1113,6.165,2846 +7485,2768,American Gigolo,"Julian makes a lucrative living as an escort to older women in the Los Angeles area. He begins a relationship with Michelle, a local politician's wife, without expecting any pay. One of his clients is murdered and Detective Sunday begins pumping him for details on his different clients, something he is reluctant to do considering the nature of his work. Julian begins to suspect he's being framed. Meanwhile Michelle begins to fall in love with him.",1980-02-01,2.5665,6.2,686 +7486,331,Jurassic Park III,"In need of funds for research, Dr. Alan Grant accepts a large sum of money to accompany Paul and Amanda Kirby on an aerial tour of the infamous Isla Sorna. It isn't long before all hell breaks loose and the stranded wayfarers must fight for survival as a host of new -- and even more deadly -- dinosaurs try to make snacks of them.",2001-07-18,0.8033,6.165,7474 +7487,19004,The Land Before Time III: The Time of the Great Giving,"When a sudden shortage of water threatens all life in the great valley, The gang of young dinosaur must cooperate with a group of bullies to make a risky journey outside the valley and find the cause.",1995-03-16,1.2077,6.164,393 +7488,18781,The Haunting in Connecticut,"When the Campbell family moves to upstate Connecticut, they soon learn that their charming Victorian home has a disturbing history: not only was the house a transformed funeral parlor where inconceivable acts occurred, but the owner's clairvoyant son Jonah served as a demonic messenger, providing a gateway for spiritual entities to crossover.",2009-03-27,1.8229,6.164,1131 +7489,11384,The Hard Way,"Seeking to raise his credibility as an actor and to land a role as a tough cop on a new show, Hollywood action star Nick Lang works a deal with New York City Police Capt. Brix, who by chance is one of his fans. Nick will be paired with detective Lt. John Moss and learn how to act like a real cop. But when Nick drives John crazy with questions and imitating him, he gets in the way of John's pursuit of a serial killer.",1991-03-08,1.5412,6.2,442 +7490,10025,Just My Luck,"Manhattanite Ashley is known to many as the luckiest woman around. After a chance encounter with a down-and-out young man, however, she realizes that she's swapped her fortune for his.",2006-05-12,3.6202,6.164,1942 +7491,9889,Shallow Hal,"After taking his dying father's advice, Hal dates only the embodiments of female physical perfection. But that all changes after Hal has an unexpected run-in with self-help guru Tony Robbins. Intrigued by Hal's shallowness, Robbins hypnotizes him into seeing the beauty that exists even in the least physically appealing women. Hal soon falls for Rosemary, but he doesn't realize that his gorgeous girlfriend is actually a 300-pound-not-so-hottie.",2001-11-01,4.9254,6.2,2979 +7492,9257,S.W.A.T.,"Hondo Harrelson recruits Jim Street to join an elite unit of the Los Angeles Police Department. Together they seek out more members, including tough Deke Kay and single mom Chris Sanchez. The team's first big assignment is to escort crime boss Alex Montel to prison. It seems routine, but when Montel offers a huge reward to anyone who can break him free, criminals of various stripes step up for the prize.",2003-08-08,6.3179,6.163,2570 +7493,823625,Blacklight,Travis Block is a shadowy Government agent who specializes in removing operatives whose covers have been exposed. He then has to uncover a deadly conspiracy within his own ranks that reaches the highest echelons of power.,2022-02-10,5.4766,6.163,1175 +7494,178915,Welcome Mr. President!,"In a small mountain village lives a man with a challenging name, Giuseppe Garibaldi (one of Italy's ""fathers of the fatherland""), but everybody call him with the nickname Peppino. Love fishing, the company of friends, the library where he works as a precarious employee. He is an optimistic person even if his child accuse him of being a wannabe. One day, due to a mess of politicians, an amazing thing happens: Peppino is mistakenly elected President of the Italian Republic. Pulled out from his quiet life, is to play a role for which he knows he is obviously inappropriate, but his common sense and his instinctive gestures are incredibly effective, except for the etiquette, for which he is in trouble. The inflexible and fascinating Deputy Secretary General of the Presidency of the Republic, Janis Clementi, is anxious to no avail in an attempt to regulate the unpredictable actions of the President...",2013-03-21,0.5526,6.163,690 +7495,94562,Turkish for Beginners,"During an emergency landing on a deserted island suddenly traumatized by antiauthoritarian education Lena Schneider together with the Turkish Super Macho Cem Öztürk must fight for survival. After initially Cem macho repulsive acts on Lena, a jellyfish in the water and sand in a bikini, she recognizes the time the romantic core behind his cool facade. Meanwhile, meet also their parents, who obdurate psychologist Doris and Metin Öztürk to work together to find their missing children. So both generations take an involuntary Turkish Basic Course for beginners.",2012-03-14,1.238,6.2,371 +7496,11355,Never Been Kissed,"Josie Geller, a baby-faced junior copywriter at the Chicago Sun-Times, must pose as a student at her former high school to research contemporary teenage culture. With the help of her brother, Rob, Josie infiltrates the inner circle of the most popular clique on campus. But she hits a major snag in her investigation -- not to mention her own failed love life -- when she falls for her dreamy English teacher, Sam Coulson.",1999-04-09,3.0055,6.2,1525 +7497,11025,New York Minute,"Top student Jane Ryan heads to Manhattan for a college-scholarship competition. Her rebellious twin Roxy Ryan goes along to crash a video shoot. But anything can happen - and does - in a romp involving a pursuing truant officer, a smuggler, hunkalicious guys and the girls' realization that when the chips are down, a sister can be the best friend of all.",2004-05-07,1.9551,6.163,903 +7498,9039,Trapped,"When their daughter is abducted by experienced kidnappers, the Jennings turn the tables on their seemingly fool-proof plan.",2002-09-20,1.8741,6.163,589 +7499,750253,My Son,"When a man's only son goes missing, he travels to the town where his ex-wife lives in search of answers. To play a man whose life is clouded by mystery, McAvoy will not be given a script of dialogue.",2021-09-23,1.2359,6.162,485 +7500,45658,Everything Must Go,"When an alcoholic relapses, causing him to lose his wife and his job, he holds a yard sale on his front lawn in an attempt to start over. A new neighbor might be the key to his return to form.",2011-05-13,1.4712,6.161,623 +7501,11707,Tightrope,Wes Block is a detective who's put on the case of a serial killer whose victims are young and pretty women. The murders are getting personal when the killer chooses victims who are acquaintances of Block. Even his daughters are threatened.,1984-08-17,1.1154,6.2,361 +7502,1688,Conquest of the Planet of the Apes,"In a futuristic world that has embraced ape slavery, a chimpanzee named Caesar resurfaces after almost twenty years of hiding from the authorities, and prepares for a revolt against humanity.",1972-06-29,3.3842,6.161,1018 +7503,532671,The Prodigy,A mother concerned about her young son's disturbing behavior thinks something supernatural may be affecting him.,2019-02-06,2.3933,6.16,1010 +7504,400106,Bright,"In an alternate present-day where magical creatures live among us, two L.A. cops become embroiled in a prophesied turf battle.",2017-12-22,3.7833,6.16,5773 +7505,340481,The Unknown Girl,"Jenny, a young doctor who feels guilty after a young woman she refused to see winds up dead a few days later, decides to find out who the girl was, after the police can't identify the young woman.",2016-10-05,1.1094,6.2,413 +7506,102362,Dead Man Down,"In New York City, a crime lord's right-hand man is seduced by a woman seeking retribution.",2013-03-08,3.711,6.16,1487 +7507,43930,"Tomorrow, When the War Began","Ellie Linton, a teen from an Australian coastal town, leads her friends on an excursion to a camp deep in the woods, dubbed ""Hell."" Upon their return, the youths find that their town has been overrun by an enemy army, and their friends and family have been imprisoned. When the hostile invaders become alerted to their presence, Ellie and her friends band together to escape -- and strike back against -- this mysterious enemy.",2010-08-08,2.0053,6.155,518 +7508,2058,Addicted to Love,"Good-natured astronomer Sam is devastated when the love of his life leaves him for a suave Frenchman. He therefore does what every other normal dumpee would do — go to New York and set up home in the abandoned building opposite his ex-girlfriend's apartment, wait until she decides to leave her current lover, and then win her back.",1997-05-23,1.9914,6.16,423 +7509,823625,Blacklight,Travis Block is a shadowy Government agent who specializes in removing operatives whose covers have been exposed. He then has to uncover a deadly conspiracy within his own ranks that reaches the highest echelons of power.,2022-02-10,5.4766,6.163,1175 +7510,13595,Airheads,The Lone Rangers have heavy-metal dreams and a single demo tape they can't get anyone to play. The solution: Hijack an FM rock radio station and hold the deejays hostage until they agree to broadcast the band's tape.,1994-08-05,1.8485,6.159,771 +7511,12707,Orca,"After witnessing the killing of his mate and offspring at the hands of a reckless Irish captain, a vengeful killer whale rampages through the fisherman's Newfoundland harbor. Under pressure from the villagers, the captain, a female marine biologist, and an Indigenous tribalist venture after the great beast, who will meet them on its own turf.",1977-07-22,2.8331,6.159,441 +7512,10345,K-9,"The extravagant cop Michael Dooley needs some help to fight a drug dealer who has tried to kill him. A ""friend"" gives him a dog named Jerry Lee (Officer Lewis), who has been trained to smell drugs. With his help, Dooley sets out to put his enemy behind the bars, but Jerry Lee has a personality of his own and works only when he wants to. On the other hand, the dog is quite good at destroying Dooley's car, house and sex-life...",1989-04-28,2.8274,6.159,997 +7513,9103,The Quest,"Ghang-gheng, the ancient winner-take-all competition in which the deadliest fighters from around the world employ the most spectacular feats of martial arts skills ever displayed in order to win the prized Golden Dragon. But fighting prowess alone will not be enough for Chris to triumph over such daunting foes.",1996-04-19,2.5066,6.158,747 +7514,8592,Dick Tracy,The comic strip detective finds his life vastly complicated when Breathless Mahoney makes advances towards him while he is trying to battle Big Boy Caprice's united mob.,1990-04-05,2.5135,6.158,977 +7515,8078,Alien Resurrection,"Two hundred years after Lt. Ripley died, a group of scientists clone her, hoping to breed the ultimate weapon. But the new Ripley is full of surprises … as are the new aliens. Ripley must team with a band of smugglers to keep the creatures from reaching Earth.",1997-11-12,6.7411,6.158,5226 +7516,49013,Cars 2,Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.,2011-06-11,10.6193,6.157,8109 +7517,20701,Tales from the Darkside: The Movie,A young boy tells three stories of horror to distract a witch who plans to eat him.,1990-05-03,1.4779,6.157,394 +7518,10425,The Death and Life of Bobby Z,"A DEA agent provides former Marine Tim Kearney with a way out of his prison sentence: impersonate Bobby Z, a recently deceased drug dealer, in a hostage switch with a crime lord. When the negotiations go awry, Kearney flees, with Z's son in tow.",2007-07-23,2.193,6.157,385 +7519,10202,Bedtime Stories,Skeeter Bronson is a down-on-his-luck guy who's always telling bedtime stories to his niece and nephew. But his life is turned upside down when the fantastical stories he makes up for entertainment inexplicably turn into reality. Can a bewildered Skeeter manage his own unruly fantasies now that the outrageous characters and situations from his mind have morphed into actual people and events?,2008-12-24,3.9818,6.157,2876 +7520,10202,Bedtime Stories,Skeeter Bronson is a down-on-his-luck guy who's always telling bedtime stories to his niece and nephew. But his life is turned upside down when the fantastical stories he makes up for entertainment inexplicably turn into reality. Can a bewildered Skeeter manage his own unruly fantasies now that the outrageous characters and situations from his mind have morphed into actual people and events?,2008-12-24,3.9818,6.157,2876 +7521,10185,The Midnight Meat Train,"A photographer's obsessive pursuit of dark subject matter leads him into the path of a serial killer who stalks late night commuters, ultimately butchering them in the most gruesome ways.",2008-08-07,2.4534,6.157,1169 +7522,126889,Alien: Covenant,"The crew of the colony ship Covenant, bound for a remote planet on the far side of the galaxy, discovers what they think is an uncharted paradise but is actually a dark, dangerous world.",2017-05-09,8.1314,6.156,8974 +7523,47533,Scooby-Doo! Curse of the Lake Monster,"Scooby-Doo and the gang are on the case when a mysterious lake monster starts scaring the guests at a summer resort in Erie Point, where Fred, Daphne, Velma and Shaggy have taken on seasonal jobs to pay for a barn they accidentally burned down. But in addition to sneaking suspicions, there's some romance in the air.",2010-10-16,2.7045,6.2,516 +7524,10739,Anything Else,"Jerry Falk, an aspiring writer in New York, falls in love at first sight with a free-spirited young woman named Amanda. He has heard the phrase that life is like ""anything else,"" but soon he finds that life with the unpredictable Amanda isn't like anything else at all.",2003-08-27,2.0043,6.156,627 +7525,9506,Anger Management,"After a small misunderstanding aboard an airplane escalates out of control, timid businessman Dave Buznik is ordered by the court to undergo anger management therapy at the hands of specialist Dr. Buddy Rydell. But when Buddy steps up his aggressive treatment by moving in, Dave goes from mild to wild as the unorthodox treatment wreaks havoc with his life.",2003-04-11,4.3208,6.156,3256 +7526,1809,The Rules of Attraction,"The incredibly spoiled and overprivileged students of Camden College are a backdrop for an unusual love triangle between a drug dealer, a virgin and a bisexual classmate.",2002-10-11,1.6102,6.2,568 +7527,391714,On Chesil Beach,"In 1962 England, a young couple finds their idyllic romance colliding with issues of sexual freedom and societal pressure, leading to an awkward and fateful wedding night.",2018-01-19,1.9155,6.2,370 +7528,286565,Paper Towns,"Quentin Jacobsen has spent a lifetime loving the magnificently adventurous Margo Roth Spiegelman from afar. So when she cracks open a window and climbs back into his life dressed like a ninja and summoning him for an ingenious campaign of revenge, he follows. After their all-nighter ends and a new day breaks, Quentin arrives at school to discover that Margo, always an enigma, has now become a mystery. But Quentin soon learns that there are clues, and they're for him. Urged down a disconnected path, the closer Quentin gets, the less he sees of the girl he thought he knew.",2015-06-18,3.0933,6.155,5094 +7529,59968,Our Idiot Brother,"Everybody has one—the sibling who is always just a little bit behind the curve when it comes to getting his life together. For sisters Liz, Miranda and Natalie, that person is their perennially upbeat brother, Ned. But as each of their lives begins to unravel, Ned's family comes to realise that Ned isn't such an idiot after all.",2011-08-26,2.0584,6.155,990 +7530,43930,"Tomorrow, When the War Began","Ellie Linton, a teen from an Australian coastal town, leads her friends on an excursion to a camp deep in the woods, dubbed ""Hell."" Upon their return, the youths find that their town has been overrun by an enemy army, and their friends and family have been imprisoned. When the hostile invaders become alerted to their presence, Ellie and her friends band together to escape -- and strike back against -- this mysterious enemy.",2010-08-08,2.0053,6.155,518 +7531,5689,The Blue Lagoon,"Two small children and a ship's cook survive a shipwreck and find safety on an idyllic tropical island. Soon, however, the cook dies and the young boy and girl are left on their own. Days become years and Emmeline and Richard make a home for themselves surrounded by exotic creatures and nature's beauty. But will they ever see civilization again?",1980-07-05,6.582,6.155,1902 +7532,408648,Batman and Harley Quinn,"Batman and Nightwing are forced to team with the Joker's sometimes-girlfriend Harley Quinn to stop a global threat brought about by Poison Ivy and Jason Woodrue, the Floronic Man.",2017-08-14,2.1584,6.154,624 +7533,49520,The Change-Up,"Lifelong friends Dave and Mitch are envious of the other's life. Mitch thinks Dave has it all: a beautiful, loving family and a high-paying job at a prestigious law firm. But Dave thinks Mitch’s stress-free playboy life without obligation or consequence is the real dream come true. One fateful drunken night, they both admit that they wish they had the other’s life while peeing in a fountain when lightning strikes. The next morning, they wake up, hungover, in each other’s bodies! With time not on their side, Mitch and Dave comically struggle to avoid completely destroying each other’s lives before they can find a way to get their old ones back.",2011-08-05,5.5677,6.154,2835 +7534,13220,Splinter,"When their plans for a nature trip go awry, Polly and boyfriend Seth decide to check into a motel. On their way, they're carjacked and kidnapped by low-rent crooks Dennis and Lacey, who take the victims and their SUV to a nearby gas station. Along the way, they encounter an increasingly terrifying horde of parasites, and if any of them intend to survive, they'll have to outsmart the deadly organisms.",2008-10-31,1.8548,6.154,726 +7535,10489,Cujo,"A friendly St. Bernard named ""Cujo"" contracts rabies and conducts a reign of terror on a small American town.",1983-08-10,4.2659,6.154,1053 +7536,807339,Apartment 7A,"A struggling young dancer finds herself drawn in by dark forces when a peculiar, well-connected older couple promise her a shot at fame.",2024-09-20,4.4538,6.153,317 +7537,674607,The Decline,"Anticipating a disaster, Antoine, a father, attends a survivalist training given by Alain in his autonomous hideout. In fear of a natural, economic or social crisis, the group trains to face the different possible apocalyptic scenarios. But the disaster they will experience will not be the one they predicted.",2020-02-27,0.9771,6.153,429 +7538,369894,Wakefield,A man's nervous breakdown causes him to leave his wife and live in his attic for several months.,2017-05-19,1.5562,6.153,421 +7539,11892,Murder by Numbers,"Tenacious homicide detective Cassie Mayweather and her still-green partner are working a murder case, attempting to profile two malevolently brilliant young men: cold, calculating killers whose dark secrets might explain their crimes.",2002-04-19,2.5277,6.153,1063 +7540,10781,The Texas Chainsaw Massacre: The Beginning,"Chrissie and her friends set out on a road trip for a final fling before one is shipped off to Vietnam. Along the way, bikers harass the foursome and cause an accident that throws Chrissie from the vehicle. The lawman who arrives on the scene kills one of the bikers and brings Chrissie's friends to the Hewitt homestead, where young Leatherface is learning the tools of terror.",2006-10-05,4.9002,6.153,1859 +7541,10632,The Hunted,"In the wilderness of British Columbia, two hunters are tracked and viciously murdered by Aaron Hallam. A former Special Operations instructor is approached and asked to apprehend Hallam—his former student—who has 'gone rogue' after suffering severe battle stress from his time in Kosovo.",2003-03-11,2.3526,6.153,853 +7542,10070,Feast,"When a motley crew of strangers find themselves trapped in an isolated tavern, they must band together in a battle for survival against a family of flesh-hungry creatures.",2005-10-14,1.6443,6.153,567 +7543,341006,The Belko Experiment,A group of eighty American workers are locked in their office and ordered by an unknown voice to participate in a twisted game.,2016-03-17,4.6022,6.152,1548 +7544,113148,Prince Avalanche,Two highway road workers spend the summer of 1988 away from their city lives. The isolated landscape becomes a place of misadventure as the men find themselves at odds with each other and the women they left behind.,2013-02-13,0.8605,6.152,313 +7545,13926,Red's Dream,"Life as the sole sale item in the clearance corner of Eben's Bikes can get lonely. So Red, a unicycle, dreams up a clown owner and his own juggling act that steals the show. But all too soon, the applause turns into the sound of rainfall, as reality rushes back. Red must resign himself to sitting in the corner and await his fate.",1987-07-10,0.9205,6.152,343 +7546,10468,28 Days,"After getting into a car accident while drunk on the day of her sister's wedding, Gwen Cummings is given a choice between prison or a rehab center. She chooses rehab, but is extremely resistant to taking part in any of the treatment programs they have to offer, refusing to admit that she has an alcohol addiction.",2000-04-06,2.626,6.2,1027 +7547,5971,We're No Angels,Two escaped cons' only prayer to escape is to pass themselves off as priests and pass by the police blockade at the border into the safety of Canada.,1989-06-02,2.1575,6.152,518 +7548,668195,Ultras,An aging soccer fanatic faces down the reality of his past while struggling to give himself and a young follower very different futures.,2020-03-09,1.567,6.2,421 +7549,582596,The Wrong Missy,"A guy meets the woman of his dreams and invites her to his company's corporate retreat, but realizes he sent the invite to the wrong person.",2020-05-13,2.8956,6.151,1216 +7550,22327,Youth in Revolt,"As a fan of Albert Camus and Jean-Luc Godard, teenage Nick Twisp is definitely out of his element when his mother and her boyfriend move the family to a trailer park. When a pretty neighbor named Sheeni plays records by French crooners, it's love at first sight for frustrated and inexperienced Nick. Learning that she is dating someone, Nick launches a hilarious quest to find his way into Sheeni's heart -- and bed.",2009-09-11,1.3831,6.151,932 +7551,14709,Varsity Blues,"In small-town Texas, high school football is a religion, 17-year-old schoolboys carry the hopes of an entire community onto the gridiron every Friday night. When star quarterback Lance Harbor suffers an injury, the Coyotes are forced to regroup under the questionable leadership of John Moxon, a second-string quarterback with a slightly irreverent approach to the game.",1999-01-15,3.4643,6.151,431 +7552,10589,After the Sunset,"An FBI agent is suspicious of two master thieves, quietly enjoying their retirement near what may - or may not - be the biggest score of their careers.",2004-11-12,3.726,6.151,799 +7553,11351,Jeepers Creepers 2,"When their bus is crippled on the side of a deserted road, a team of high school athletes discover an opponent they cannot defeat – and may not survive.",2003-08-08,5.5212,6.15,1717 +7554,10836,Dagon,"A boating accident off the coast of Spain sends Paul and his girlfriend Barbara to the decrepit fishing village of Imboca. As night falls, people start to disappear and things not quite human start to appear. Paul is pursued by the entire town. Running for his life, he uncovers Imboca's secret..they worship Dagon, a monstrous god of the sea...and Dagon's unholy offspring are on the loose...",2001-10-12,1.4845,6.15,432 +7555,1019420,Irish Wish,Maddie's dream guy is days away from marrying her best friend when a wish for true love made on an ancient stone in Ireland magically alters her fate.,2024-03-14,2.7174,6.149,470 +7556,11286,The Cannonball Run,"A cross-country road race is based on an actual event, the Cannonball Baker Sea to Shining Sea Memorial Trophy Dash, organized by Brock Yates to protest the 55 mph speed limit then in effect in the U.S. The Cannonball was named for Erwin G. ""Cannonball"" Baker, who in the roaring 20's rode his motorcycle across the country. Many of the characters are based on ruses developed by real Cannonball racers over the several years that the event was run.",1981-06-19,5.3612,6.1,660 +7557,9874,Cobra,A tough-on-crime street cop must protect the only surviving witness to a strange murderous cult with far reaching plans.,1986-01-01,4.9283,6.1,1838 +7558,72545,Journey 2: The Mysterious Island,"Sean Anderson partners with his mom's boyfriend on a mission to find his grandfather, who is thought to be missing on a mythical island.",2012-01-19,7.6139,6.148,4357 +7559,55779,Final Destination 5,"Death is just as omnipresent as ever, and is unleashed after one man’s premonition saves a group of coworkers from a terrifying suspension bridge collapse. But this group of unsuspecting souls was never supposed to survive, and, in a terrifying race against time, the ill-fated group frantically tries to discover a way to escape Death’s sinister agenda.",2011-08-12,12.3539,6.148,3816 +7560,306943,The Outcasts,"After falling victim to a humiliating prank by the high school Queen Bee, best friends and world-class geeks, Mindy and Jodi, decide to get their revenge by uniting the outcasts of the school against her and her circle of friends.",2017-04-14,1.1199,6.1,493 +7561,109418,Grown Ups 2,"Lenny has relocated his family back to the small town where he and his friends grew up. This time around, the grown ups are the ones learning lessons from their kids on a day notoriously full of surprises—the last day of school.",2013-07-11,12.6987,6.147,4478 +7562,11077,Problem Child,"Ben Healy and his social climbing wife Flo adopt fun-loving seven year old Junior. But they soon discover he's a little monster as he turns a camping trip, a birthday party and even a baseball game into comic nightmares.",1990-07-27,2.9018,6.147,868 +7563,9286,Final Destination 3,"High school senior Wendy's premonition of a deadly rollercoaster ride saves her life and a lucky few, but not from death itself — which seeks out those who escaped their fate.",2006-02-09,10.2461,6.147,4269 +7564,272435,Gemma Bovery,"Martin, an ex-Parisian well-heeled hipster passionate about Gustave Flaubert who settled into a Norman village as a baker, sees an English couple moving into a small farm nearby. Not only are the names of the new arrivals Gemma and Charles Bovery, but their behavior also seems to be inspired by Flaubert's heroes.",2014-09-10,3.1102,6.146,333 +7565,403587,Return,"After reading an article about hypnotic regression, a woman whose maternal grandfather died when she was only three years old contacts the hypnotic subject named in the article believing that he is the reincarnation of her grandfather, and hoping that she can learn the truth about how he died.",1985-10-31,0.6579,6.1,2691 +7566,225565,That Awkward Moment,"Best pals Jason and Daniel indulge in casual flings and revel in their carefree, unattached lives. After learning that the marriage of their friend Mikey is over, they gladly welcome him back into their circle. The three young men make a pact to have fun and avoid commitment. However, when all three find themselves involved in serious relationships, they must keep their romances secret from one another.",2014-01-29,2.2795,6.145,2677 +7567,157820,Mood Indigo,A woman suffers from an unusual illness caused by a flower growing in her lungs.,2013-01-10,1.7025,6.145,623 +7568,1852,World Trade Center,"Two police officers struggle to survive when they become trapped beneath the rubble of the World Trade Center on September 11, 2001.",2006-08-09,4.3387,6.145,1698 +7569,31359,Would I Lie to You? 2,"Eddie, Dov, and Yvan are back, still working in Paris' Sentier textile district, This time they're confronting the high-stakes world of large distribution after striking a deal with Eurodiscount, a European hypermarket chain.",2001-02-07,1.2524,6.144,397 +7570,23049,My Life in Ruins,"A Greek tour guide named Georgia attempts to recapture her kefi (Greek for mojo) by guiding a ragtag group of tourists around Greece and showing them the beauty of her native land. Along the way, she manages to open their eyes to the wonders of an exotic foreign land while beginning to see the world through a new set of eyes in the process.",2009-06-05,1.0921,6.1,419 +7571,10929,Willard,"Desperate for companionship, the repressed Willard befriends a group of rats that inhabit his late father's deteriorating mansion. In these furry creatures, Willard finds temporary refuge from daily abuse at the hands of his bedridden mother and his father's old partner, Frank. Soon it becomes clear that the brood of rodents is ready and willing to exact a vicious, deadly revenge on anyone who dares to bully their sensitive new master.",2003-03-14,1.514,6.144,343 +7572,7007,Rising Sun,"When a prostitute is found dead in a Los Angeles skyscraper occupied by a large Japanese corporation, detectives John Connor and Web Smith are called in to investigate. Although Connor has previous experience working in Japan, cultural differences make their progress difficult until a security disc showing the murder turns up. Close scrutiny proves the disc has been doctored, and the detectives realize they're dealing with a cover-up as well.",1993-07-30,2.3618,6.144,786 +7573,464737,The End?,"A businessman gets stuck in his office elevator, but this nuisance soon turns into a nightmare, for in the outside world a zombie apocalypse has taken place...",2017-08-14,1.2143,6.143,384 +7574,18519,Free Willy 3: The Rescue,"Willy the whale is back, this time threatened by illegal whalers making money off sushi. Jesse, now 16, has taken a job on an orca-researching ship, along with old friend Randolph and a sarcastic scientist, Drew. On the whaler's ship is captain John Wesley and his son, Max, who isn't really pleased about his father's job, but doesn't have the gut to say so. Along the way, Willy reunites with Jesse.",1997-08-06,1.5436,6.1,349 +7575,18360,Night at the Museum: Battle of the Smithsonian,"Hapless museum night watchman Larry Daley must help his living, breathing exhibit friends out of a pickle now that they've been transferred to the archives at the Smithsonian Institution. Larry's (mis)adventures this time include close encounters with Amelia Earhart, Abe Lincoln and Ivan the Terrible.",2009-05-20,4.5938,6.143,7011 +7576,15648,The Perfect Man,"Holly is tired of moving every time her mom Jean breaks up with yet another second-rate guy. To distract her mother from her latest bad choice, Holly conceives the perfect plan for the perfect man, an imaginary secret admirer who will romance Jean and boost her self-esteem.",2005-06-17,2.1942,6.143,791 +7577,13455,Push,"After his father, an assassin, is brutally murdered, Nick Gant vows revenge on Division, the covert government agency that dabbles in psychic warfare and experimental drugs. Hiding in Hong Kong's underworld, Nick assembles a band of rogue psychics dedicated to destroying Division. Together with Cassie, a teenage clairvoyant, Nick goes in search of a missing girl and a stolen suitcase that could be the key to accomplishing their mutual goal.",2009-02-04,3.5416,6.1,2322 +7578,454293,Night School,"Teddy Walker is a successful salesman whose life takes an unexpected turn when he accidentally blows up his place of employment. Forced to attend night school to get his GED, Teddy soon finds himself dealing with a group of misfit students, his former high school nemesis and a feisty teacher who doesn't think he's too bright.",2018-09-27,2.5634,6.142,1707 +7579,65086,The Woman in Black,"The story follows a young lawyer, Arthur Kipps, who is ordered to travel to a remote village and sort out a recently deceased client’s papers. As he works alone in the client’s isolated house, Kipps begins to uncover tragic secrets, his unease growing when he glimpses a mysterious woman dressed only in black. Receiving only silence from the locals, Kipps is forced to uncover the true identity of the Woman in Black on his own, leading to a desperate race against time when he discovers her true identity.",2012-02-03,3.5318,6.142,3526 +7580,38543,Ironclad,"In the year 1215, the rebel barons of England have forced their despised King John to put his royal seal on the Magna Carta, a seminal document that upheld the rights of free men. Yet within months of pledging himself to the great charter, the King reneged on his word and assembled a mercenary army on the south coast of England with the intention of bringing the barons and the country back under his tyrannical rule. Barring his way stood the mighty Rochester castle, a place that would become the symbol of the rebel's momentous struggle for justice and freedom.",2011-03-03,2.796,6.142,756 +7581,12262,The Hills Have Eyes,"Taking an ill-advised detour en-route to California, the Carter family soon run into trouble when their RV breaks down in the middle of the desert. Stranded, they find themselves at the mercy of monstrous cannibals lurking in the surrounding hills.",1977-07-22,2.2953,6.142,936 +7582,11983,Proof of Life,"When American engineer Peter Bowman is kidnapped while working in South America, his wife Alice enlists special agent Terry Thorne to help free him. However, complications arise when Thorne falls in love with her. Their lives are on the line, their hearts out on a limb.",2000-12-08,1.5863,6.142,817 +7583,2269,Day Watch,"A man who serves in the war between the forces of Light and Dark comes into possession of a device that can restore life to Moscow, which was nearly destroyed by an apocalyptic event.",2006-01-01,2.7346,6.142,558 +7584,492353,Put Grandma in the Freezer,"Simone, a clumsy financier, falls in love with Claudia, who’s living on her grandma’s retirement checks. When the old lady dies Claudia hides the body in a freezer, and sets up a fraud with the help of some friends to avoid bankruptcy.",2018-03-15,0.9356,6.141,706 +7585,20187,The Eiger Sanction,"A classical art professor and collector, who doubles as a professional assassin, is coerced out of retirement to avenge the murder of an old friend.",1975-05-21,1.9401,6.141,418 +7586,13757,Melody Time,"In the grand tradition of Disney's great musical classics, Melody Time features seven timeless stories, each enhanced with high-spirited music and unforgettable characters. You'll be sure to tap your toes and clap your hands in this witty feast for the eyes and ears.",1948-05-27,1.2154,6.1,323 +7587,13673,Christmas with the Kranks,"When their only daughter Blair leaves the family nest, Luther and Nora Krank decide to book an island cruise to beat the yuletide blues and just skip the holidays. But their decision to boycott tradition has the whole neighborhood in an uproar, and when Blair calls on Christmas Eve to announce a surprise visit with her new fiancée, the Kranks have just twelve hours to perform a miracle and pull themselves and their neighbors together to throw the best celebration ever!",2004-11-24,3.1054,6.141,1220 +7588,10796,The One,A sheriff's deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.,2001-11-02,3.5231,6.141,1632 +7589,6963,The Weather Man,"A Chicago weather man, separated from his wife and children, debates whether professional and personal success are mutually exclusive.",2005-10-20,1.2578,6.141,1009 +7590,1685,Beneath the Planet of the Apes,"The sole survivor of an interplanetary rescue mission lands on the planet of the apes, and uncovers a horrible secret beneath the surface.",1970-04-23,3.7537,6.141,1387 +7591,1620,Hitman,"A genetically engineered assassin with deadly aim, known only as ""Agent 47"" eliminates strategic targets for a top-secret organization. But when he's double-crossed, the hunter becomes the prey as 47 finds himself in a life-or-death game of international intrigue.",2007-11-21,6.9333,6.141,3464 +7592,446807,The Girl in the Spider's Web,"After being enlisted to recover a dangerous computer program, hacker Lisbeth Salander and journalist Mikael Blomkvist find themselves caught in a web of spies, cybercriminals and corrupt government officials.",2018-10-25,3.2741,6.14,1421 +7593,34806,The Back-Up Plan,"When Zoe tires of looking for Mr. Right, she decides to have a baby on her own. But on the day she's artificially inseminated, she meets Stan, who seems to be just who she's been searching for all her life. Now, Zoe has to figure out how to make her two life's dreams fit with each other.",2010-04-23,2.9132,6.14,1438 +7594,509585,7500,"When terrorists try to seize control of a Berlin-Paris flight, a soft-spoken young American co-pilot struggles to save the lives of the passengers and crew while forging a surprising connection with one of the hijackers.",2019-12-26,2.3431,6.139,882 +7595,387592,Early Man,"Dug, along with his sidekick Hognob, unite a cavemen tribe to save their hidden valley from being spoiled and, all together as a team, to face the menace of a mysterious and mighty enemy, on the turf of an ancient and sacred sport.",2018-01-26,3.0457,6.139,828 +7596,335796,Ouija: Origin of Evil,"In 1967 Los Angeles, a widowed mother and her two daughters add a new stunt to bolster their séance scam business and unwittingly invite authentic evil into their home. When the youngest daughter is overtaken by the merciless spirit, this small family confronts unthinkable fears to save her and send her possessor back to the other side.",2016-10-20,3.643,6.139,2522 +7597,10869,Herbie Rides Again,The living Volkswagen Beetle helps an old lady protect her home from a corrupt developer.,1974-02-12,1.7785,6.1,417 +7598,10832,Them,"Lucas and Clementine live peacefully in their isolated country house, but one night they wake up to strange noise. They're not alone... and a group of hooded assailants begin to terrorize them throughout the night.",2006-07-19,1.5452,6.139,558 +7599,9280,Femme Fatale,"A $10-million diamond rip-off, a stolen identity, a new life married to a diplomat. Laure Ash has risked big, won big. But then a tabloid shutterbug snaps her picture in Paris, and suddenly, enemies from Laure's secret past know who and where she is. And they all want their share of the diamond heist. Or her life. Or both.",2002-04-30,2.3945,6.139,615 +7600,15577,Crossing Over,"Immigrants from around the world enter Los Angeles every day, with hopeful visions of a better life, but little notion of what that life may cost. Their desperate scenarios test the humanity of immigration enforcement officers. In Crossing Over, writer-director Wayne Kramer explores the allure of the American dream, and the reality that immigrants find – and create -- in 21st century L.A.",2009-02-10,1.585,6.138,384 +7601,15417,Every Which Way but Loose,"Philo Beddoe is your regular, easygoing, truck-driving guy. He's also the best bar-room brawler west of the Rockies. And he lives with a 165-pound orangutan named Clyde. Like other guys, Philo finally falls in love - with a flighty singer who leads him on a screwball chase across the American Southwest. Nothing's in the way except a motorcycle gang, some cops, and legendary brawler Tank Murdock.",1978-12-16,2.317,6.1,476 +7602,10065,The Amityville Horror,"George Lutz, his wife Kathy, and their three children have just moved into a beautiful, and improbably cheap, Dutch colonial mansion nestled in the sleepy coastal town of Amityville, Long Island. However, their dream home is concealing a horrific past and soon each member of the Lutz family is plagued with increasingly strange and violent visions and impulses.",2005-04-14,4.1187,6.138,2241 +7603,97370,Under the Skin,A seductive stranger prowls the streets of Glasgow in search of prey: unsuspecting men who fall under her spell.,2014-03-14,4.4139,6.137,3577 +7604,38327,My Best Enemy,"When a neurotic hotel manager fires a maid for allegedly stealing a laptop, her son swears revenge and begins to expose his deepest secrets — only to regret it after falling for his daughter.",2006-03-10,0.3558,6.137,300 +7605,13532,Fanboys,"In 1999, Star Wars fanatics take a cross-country trip to George Lucas' Skywalker Ranch so their dying friend can see a screening of The Phantom Menace before its release.",2009-02-06,1.4804,6.137,852 +7606,10832,Them,"Lucas and Clementine live peacefully in their isolated country house, but one night they wake up to strange noise. They're not alone... and a group of hooded assailants begin to terrorize them throughout the night.",2006-07-19,1.5452,6.139,558 +7607,531309,Brightburn,"What if a child from another world crash-landed on Earth, but instead of becoming a hero to mankind, he proved to be something far more sinister?",2019-05-09,6.0664,6.136,3253 +7608,272548,Moonwalkers,"What if Apollo 11 never actually made it? What if, in reality, Stanley Kubrick secretly shot the famous images of the moon landing in a studio, working for the US administration? This is the premise of a totally plausible conspiracy theory that takes us to swinging sixties London, where a stubborn CIA agent will never find Kubrick but is forced to team up with a lousy manager of a seedy rock band to develop the biggest con of all time.",2015-03-14,1.435,6.136,376 +7609,114750,Dear White People,"Four college students attend an Ivy League college where a riot breaks out over an ""African-American"" themed party thrown by white students. With tongue planted firmly in cheek, the film explores racial identity in 'post racial' America while weaving a story about forging one's unique path in the world.",2014-10-17,1.867,6.136,460 +7610,12412,Miracle at St. Anna,"Miracle at St. Anna chronicles the story of four American soldiers who are members of the all-black 92nd ""Buffalo Soldier"" Division stationed in Tuscany, Italy during World War II.",2008-09-15,1.1313,6.136,385 +7611,10972,Session 9,Tensions rise within an asbestos cleaning crew as they work in an abandoned mental hospital with a horrific past that seems to be coming back.,2001-08-10,2.486,6.1,949 +7612,8067,A Life Less Ordinary,"A couple of angels, O'Reilly and Jackson, are sent to Earth to make sure that their next supervised love-connection succeeds. They follow Celine, a spoiled rich girl who has just accidentally shot a suitor and, due to a misunderstanding, is kidnapped by janitor Robert. Although Celine quickly frees herself, she stays with Robert for thrills. O'Reilly and Jackson pursue, hoping to unite the prospective lovers.",1997-10-24,1.0923,6.136,467 +7613,6038,Shanghai Knights,"When a Chinese rebel murders Chon's estranged father and escapes to England, Chon and Roy make their way to London with revenge on their minds.",2003-02-06,2.6009,6.136,2323 +7614,354110,Forsaken,"John Henry returns to his hometown in hopes of repairing his relationship with his estranged father, but a local gang is terrorizing the town. John Henry is the only one who can stop them, however he has abandoned both his gun and reputation as a fearless quick-draw killer.",2015-09-16,2.3659,6.1,359 +7615,109443,Anchorman 2: The Legend Continues,"With the 70s behind him, San Diego's top rated newsman, Ron Burgundy, returns to take New York's first 24-hour news channel by storm.",2013-12-18,3.1401,6.134,2666 +7616,47971,xXx: Return of Xander Cage,"Xander Cage is left for dead after an incident, though he secretly returns to action for a new, tough assignment with his handler Augustus Gibbons.",2017-01-13,11.9967,6.135,9072 +7617,19959,Surrogates,"Set in a futuristic world where humans live in isolation and interact through surrogate robots, a cop is forced to leave his home for the first time in years in order to investigate the murders of others' surrogates.",2009-09-24,3.7912,6.135,3267 +7618,417644,CHiPS,The adventures of two California Highway Patrol motorcycle officers as they make their rounds on the freeways of Los Angeles.,2017-03-23,3.2813,6.134,1331 +7619,408439,Hounds of Love,"When Vicki Maloney is randomly abducted from a suburban street by a disturbed couple, she soon observes the dynamic between her captors and quickly realises she must drive a wedge between them if she is to survive.",2016-10-07,1.6325,6.134,351 +7620,23830,Last Night,"Michael and Joanna are a young and successful married couple who appear to have it all. But when Michael finds himself alone on a business trip with an attractive new colleague and Joanna encounters the other great love of her life, each is thrust into an evening of temptation.",2010-11-05,1.3968,6.134,782 +7621,848791,The Stranger,"Two strangers strike up a conversation on a long journey. However, neither is who they appear to be, each carry secrets that threaten to ruin them — and in the background, one of the nation's largest police operations is closing in.",2022-10-06,1.1576,6.133,366 +7622,299847,Happily Mixed Up,A psychoanalyst learns to have an illness and as a consequence he decides to quit his job. All his patients get together to find a way to make him feel better.,2014-10-30,0.6056,6.1,338 +7623,4599,Raising Helen,"Helen Harris has a glamorous, big-city life working for one of New York's hottest modeling agencies. But suddenly her free-spirited life gets turned upside down when she must chose between the life she's always loved, and the new loves of her life!",2004-05-27,1.7149,6.133,667 +7624,606876,Rifkin’s Festival,"The story of a married American couple who go to the San Sebastian Film Festival. They get caught up in the magic of the festival, the beauty and charm of Spain and the fantasy of movies. She has an affair with a brilliant French movie director, and he falls in love with a beautiful Spanish woman who lives there.",2020-10-01,1.6299,6.128,443 +7625,335777,The Nut Job 2: Nutty by Nature,"When the evil mayor of Oakton decides to bulldoze Liberty Park and build a dangerous amusement park in its place, Surly Squirrel and his ragtag group of animal friends need to band together to save their home, defeat the mayor, and take back the park.",2017-08-11,2.8696,6.132,447 +7626,29095,Waxwork,"Wealthy slacker college student Mark, his new girlfriend Sarah, and their friends are invited to a special showing at a mysterious wax museum which displays 18 of the most evil men of all time. After his ex-girlfriend and another friend disappear, Mark becomes suspicious.",1988-06-17,1.5106,6.132,304 +7627,25642,Ben 10 Alien Swarm,Ben and a mysterious girl from his past must prevent an alien threat from destroying the world.,2010-03-12,3.1099,6.132,355 +7628,14819,Heavyweights,"Camp Hope is a summer retreat for overweight boys run by a kindly couple who make the campers feel comfortable with their extra pounds. But when tyrannical fitness guru Tony buys the camp, he puts the kids on a cruel regimen that goes too far. Sick of the endless weeks of ""all work and no play,"" the kids stage a coup and reclaim their summer of fun.",1995-02-17,2.2416,6.1,390 +7629,14362,Out for Justice,Gino Felino is an NYPD detective from Brooklyn who knows everyone and everything in his neighborhood. Killing his partner was someone's big mistake... because he's now out for justice.,1991-04-12,2.8907,6.132,460 +7630,6076,Rabbit Without Ears,"Rainbow press reporter Ludo is sentenced to 8 months, but is released on probation. But he has to work 300 hours for a local daycare center and meets Anna who has unfinished business with him.",2007-12-01,0.7735,6.132,386 +7631,704239,The Union,A New Jersey construction worker goes from regular guy to aspiring spy when his long-lost high school sweetheart recruits him for an espionage mission.,2024-08-15,5.7628,6.131,1020 +7632,643532,The Card Counter,"William Tell just wants to play cards. His spartan existence on the casino trail is shattered when he is approached by Cirk, a vulnerable and angry young man seeking help to execute his plan for revenge on a military colonel. Tell sees a chance at redemption through his relationship with Cirk. But keeping Cirk on the straight-and-narrow proves impossible, dragging Tell back into the darkness of his past.",2021-09-03,2.3155,6.129,1011 +7633,295830,Attack on Titan,"100 years ago, titans suddenly appeared on Earth. Soon, human civilization veered on collapse due to the titans. Humans then built a giant wall to defend themselves. Within the giant walls, humans lived in peace, but, 100 years later, the giant wall is broken.",2015-08-01,3.9948,6.131,782 +7634,93837,So Undercover,"When the FBI hires her to go undercover at a college sorority, Molly Morris (Miley Cyrus) must transform herself from a tough, streetwise private investigator to a refined, sophisticated university girl to help protect the daughter of a one-time Mobster. With several suspects on her list, Molly unexpectedly discovers that not everyone is who they appear to be, including herself.",2012-12-06,1.9484,6.131,1126 +7635,15413,Don't Tell Mom the Babysitter's Dead,"Sue Ellen Crandell is a teenager eagerly awaiting her mother's summer-long absence. While the babysitter looks after her rambunctious younger siblings, Sue Ellen can party and have fun. But then the babysitter abruptly dies, leaving the Crandells short on cash. Sue Ellen finds a sweet job in fashion by lying about her age and experience on her résumé. But, while her siblings run wild, she discovers the downside of adulthood",1991-06-07,1.608,6.131,450 +7636,13282,Death Race 2000,"In a boorish future, the government sponsors a popular, but bloody, cross-country race in which points are scored by mowing down pedestrians. Five teams, each comprised of a male and female, compete using cars equipped with deadly weapons. Frankenstein, the mysterious returning champion, has become America's hero, but this time he has a passenger from the underground resistance.",1975-04-30,2.3755,6.131,516 +7637,10641,Autumn in New York,"Will Keane, a Manhattan restaurateur, is content with his playboy lifestyle until he meets Charlotte Fielding, a free-spirited young woman. Together the pair pursue a passionate affair that forces them both to reevaluate what they want out of life, even as fate threatens to steal away their future.",2000-08-11,2.3059,6.131,731 +7638,518158,Leprechaun Returns,A group of unwitting sorority sisters accidentally awaken the serial-killing Leprechaun after they build a sorority house on his hunting grounds.,2018-12-11,2.6349,6.13,644 +7639,333381,Return to Sender,"A nurse mistakes a stranger who pays her a visit for her blind date and soon, the man rapes her and turns her life upside down. The woman works to reclaim her life and exact revenge on her assailant after he's paroled from prison.",2015-05-31,3.2107,6.13,1224 +7640,268896,Pacific Rim: Uprising,"It has been ten years since The Battle of the Breach and the oceans are still, but restless. Vindicated by the victory at the Breach, the Jaeger program has evolved into the most powerful global defense force in human history. The PPDC now calls upon the best and brightest to rise up and become the next generation of heroes when the Kaiju threat returns.",2018-03-21,7.9219,6.1,5105 +7641,27022,The Sorcerer's Apprentice,"Balthazar Blake is a master sorcerer in modern-day Manhattan trying to defend the city from his arch-nemesis, Maxim Horvath. Balthazar can't do it alone, so he recruits Dave Stutler, a seemingly average guy who demonstrates hidden potential, as his reluctant protégé. The sorcerer gives his unwilling accomplice a crash course in the art and science of magic, and together, these unlikely partners work to stop the forces of darkness.",2010-07-13,5.2753,6.131,5070 +7642,5516,The Ladykillers,"An eccentric, if not charming Southern professor and his crew pose as a band in order to rob a casino, all under the nose of his unsuspecting landlord – a sharp old woman.",2004-03-25,1.8558,6.13,1650 +7643,590995,The Craft: Legacy,An eclectic foursome of aspiring teenage witches get more than they bargained for as they lean into their newfound powers.,2020-10-28,2.6354,6.129,847 +7644,258284,Every Secret Thing,"One clear summer day in a Baltimore suburb, a baby goes missing from her front porch. Two young girls serve seven years for the crime and are released into a town that hasn't fully forgiven or forgotten. Soon, another child is missing, and two detectives are called in to investigate the mystery in a community where everyone seems to have a secret.",2014-04-20,2.0778,6.1,342 +7645,115782,Jobs,The story of Steve Jobs' ascension from college dropout into one of the most revered creative entrepreneurs of the 20th century.,2013-08-15,3.3694,6.128,2505 +7646,9730,Friday the 13th: The Final Chapter,"After his revival in a hospital morgue, Jason fixes his vengeful attention on the Jarvis family and a group of hitherto carefree teenagers.",1984-04-13,3.1853,6.1,1406 +7647,955,Mission: Impossible II,"With computer genius Luther Stickell at his side and a beautiful thief on his mind, agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This mission, should Hunt choose to accept it, plunges him into the center of an international crisis of terrifying magnitude.",2000-05-24,8.1269,6.129,7128 +7648,127867,The Brass Teapot,"When a couple discovers that a brass teapot makes them money whenever they hurt themselves, they must come to terms with how far they are willing to go.",2012-09-08,1.5083,6.128,492 +7649,10407,Housesitter,"After building his dream house, architect Newton Davis proposes marriage to his girlfriend, only to be summarily rejected. He seeks solace in a one-night stand with a waitress, never imagining that a woman he slept with once would end up posing as his wife. Gwen's ruse is so effective that by the time Newton learns of his ""marriage,"" the entire town feels like they know him.",1992-06-12,1.6265,6.1,449 +7650,347126,God's Not Dead 2,"When a high school teacher is asked a question in class about Jesus, her reasoned response lands her in deep trouble and could expel God from the public square once and for all.",2016-04-01,1.711,6.127,413 +7651,336004,Heist,"A father is without the means to pay for his daughter's medical treatment. As a last resort, he partners with a greedy co-worker to rob a casino. When things go awry they're forced to hijack a city bus.",2015-11-13,3.0633,6.127,953 +7652,13186,Wrong Turn 2: Dead End,Retired military commander Colonel Dale Murphy hosts the simulated post-apocalyptic reality show where participants are challenged to survive a remote West Virginia wasteland. But the show turns into a nightmarish showdown when each realizes they are being hunted by an inbred family of cannibals determined to make them all dinner!,2007-08-25,8.1848,6.127,1449 +7653,7303,Maid in Manhattan,"Marisa Ventura is a struggling single mom who works at a posh Manhattan hotel and dreams of a better life for her and her young son. One fateful day, hotel guest and senatorial candidate Christopher Marshall meets Marisa and mistakes her for a wealthy socialite. After an enchanting evening together, the two fall madly in love. But when Marisa's true identity is revealed, issues of class and social status threaten to separate them. Can two people from very different worlds overcome their differences and live happily ever after?",2002-12-13,3.678,6.127,1960 +7654,182127,Ip Man: The Final Fight,Ip Man reluctantly begins a series of challenges from rival kung fu schools and is soon drawn into the dark and dangerous world of the Triads.,2013-03-22,0.2867,6.126,396 +7655,10199,The Tale of Despereaux,"Once upon a time... in the far away kingdom of Dor... lived a brave and virtuous mouse with comically oversized ears who dreamt of becoming a knight. Banished from his home for having such lofty ambitions, Despereaux sets off on an amazing adventure with his good-hearted rat friend Roscuro, who leads him, at long last, on a very noble quest to rescue an endangered princess and save an entire kingdom from darkness.",2008-12-18,2.9348,6.126,945 +7656,4722,Body Snatchers,"When Environmental Protection Agency inspector Steve Malone travels to a remote military base in order to check for toxic materials, he brings his family along for the ride. After arriving at the base, his teenage daughter Marti befriends Jean Platt, daughter of the base's commander, General Platt. When people at the base begin acting strangely, Marti becomes convinced that they are slowly being replaced by plant-like aliens.",1993-06-09,1.2145,6.1,438 +7657,1656,The Legend of Zorro,"Despite trying to keep his swashbuckling to a minimum, a threat to California's pending statehood causes the adventure-loving Don Alejandro de la Vega and his wife, Elena, to take action.",2005-10-24,5.0797,6.1,2954 +7658,51447,Trophy Wife,"In 1977 France, tightfisted factory owner Robert Pujol is so shocked when his workers strike for higher wages that he suffers a heart attack. His acquiescent wife, Suzanne, whose father had founded the factory, takes over management duties during Robert's convalescence.",2010-11-10,1.6445,6.1,365 +7659,11323,The Informant!,"A rising star at agri-industry giant Archer Daniels Midland (ADM), Mark Whitacre suddenly turns whistleblower. Even as he exposes his company’s multi-national price-fixing conspiracy to the FBI, Whitacre envisions himself being hailed as a hero of the common man and handed a promotion.",2009-09-18,1.5574,6.125,928 +7660,1644,The Vanishing,The boyfriend of an abducted woman never gives up the search as the abductor looks on.,1993-02-05,2.0495,6.125,521 +7661,17927,Fired Up!,Popular high schoolers and best friends Shawn and Nick decide to ditch football camp for cheerleader camp. For the girls and for the glory.,2009-02-20,2.546,6.124,659 +7662,10665,The Strangers,"After a 4 a.m. knock at the door and haunting voices, Kristen McKay and James Hoyt’s remote getaway becomes a psychological night of terror as three masked strangers invade. Now they must go far beyond what they thought themselves capable of if they hope to survive.",2008-05-29,3.6473,6.124,2500 +7663,9610,Conan the Destroyer,"Conan is commissioned by the evil queen Taramis to safely escort a teen princess and her powerful bodyguard to a far away castle to retrieve the magic Horn of Dagoth. Unknown to Conan, the queen plans to sacrifice the princess when she returns and inherit her kingdom after the bodyguard kills Conan. The queen's plans fail to take into consideration Conan's strength and cunning and the abilities of his sidekicks: the eccentric wizard Akiro, the warrior woman Zula, and the inept Malak. Together the hero and his allies must defeat both mortal and supernatural foes in this voyage to sword-and-sorcery land.",1984-06-29,3.4194,6.124,1546 +7664,4965,Impostor,A top-secret government weapons designer is arrested by a clandestine government organization on suspicion of being a clone created by the hostile alien race wanting to take over Earth.,2001-12-03,1.1991,6.1,433 +7665,569814,Rebels,"Sandra, a young woman forced to leave the south of France to flee a violent husband. Without attachment, she returned to Boulogne-sur-Mer, the city of her childhood which she left almost 15 years ago. She finds her mother there and a world she left behind. Without money, she is hired in a fish cannery where she befriends two workers. But one day, one of her colleagues tackles her insistently, she defends herself and kills him accidentally.",2019-01-17,1.0571,6.1,333 +7666,425505,Kin,"A young boy finds a powerful otherworldly weapon, which he uses to save his older adoptive brother from a crew of thugs. Before long, the two of them are also pursued by federal agents and mysterious mercenaries aiming to reclaim their asset.",2018-08-29,2.0728,6.123,851 +7667,12157,Green Card,"Urban horticulturalist Brontë Mitchell has her eye on a gorgeous apartment, but the building's board will rent it only to a married couple. Georges Fauré, a waiter from France whose visa is expiring, needs to marry an American woman to stay in the country. Their marriage of convenience turns into a burden when they must live together to allay the suspicions of the immigration service, as the polar opposites grate on each other's nerves.",1990-12-23,1.5051,6.1,500 +7668,10153,Sphere,"A spacecraft is discovered on the floor of the Pacific Ocean, presumed to be at least 300 years old and of alien origin. A crack team of scientists and experts is assembled and taken to the Habitat, a state-of-the-art underwater living environment, to investigate.",1998-02-13,2.2076,6.123,1700 +7669,274855,Geostorm,"After an unprecedented series of natural disasters threatened the planet, the world's leaders came together to create an intricate network of satellites to control the global climate and keep everyone safe. But now, something has gone wrong: the system built to protect Earth is attacking it, and it becomes a race against the clock to uncover the real threat before a worldwide geostorm wipes out everything and everyone along with it.",2017-10-12,6.5478,6.122,4946 +7670,44603,Hereafter,"Three people — a blue-collar American, a French journalist and a London school boy — are touched by death in different ways.",2010-10-22,2.4488,6.122,1728 +7671,11123,Earthquake,"Various interconnected people struggle to survive when an earthquake of unimaginable magnitude hits Los Angeles, California.",1974-11-15,2.5271,6.122,337 +7672,10395,Wolf,"Aging publisher Will Randall is at the end of his rope when a younger co-worker snatches his job out from under his nose. But after being bitten by a wolf, Will suddenly finds himself full of youthful vigor. As he struggles to regain his position, he becomes enthralled with Laura Alden, his former boss's daughter. And, as increasingly animal-like urges begin to overwhelm him, Randall worries that he may be turning into the creature that bit him.",1994-06-17,2.4044,6.122,948 +7673,516850,The Mermaid: Lake of the Dead,"An evil Mermaid falls in love with Marina's fiancé Roman and aims to keep him away from Marina in her Kingdom of Death under water. The Mermaid is a young woman who drowned a few centuries ago. Marina only has one week to overcome her fear of the dark water, to remain human in the deathly fight with the monsters and not to become one herself.",2018-07-12,1.731,6.121,342 +7674,283601,Galveston,"After a violent encounter, Roy finds Rocky and sees something in her eyes that prompts a fateful decision. He takes her with him as he flees to Galveston, an action as ill-advised as it is inescapable.",2018-10-10,1.5694,6.1,518 +7675,48171,The Rite,"Seminary student Michael Kovak reluctantly attends exorcism school at the Vatican. While he’s in Rome, Michael meets an unorthodox priest who introduces him to the darker side of his faith, uncovering the devil’s reach even to one of the holiest places on Earth.",2011-01-28,3.1973,6.121,2132 +7676,419704,Ad Astra,"The near future, a time when both hope and hardships drive humanity to look to the stars and beyond. While a mysterious phenomenon menaces to destroy life on planet Earth, astronaut Roy McBride undertakes a mission across the immensity of space and its many perils to uncover the truth about a lost expedition that decades before boldly faced emptiness and silence in search of the unknown.",2019-09-17,2.8855,6.1,6866 +7677,317744,Careful What You Wish For,"A guy gets more than he bargained for after entering into an affair with the wife of an investment banker. Soon, a suspicious death and substantial life insurance policy embroil him in a scandal.",2015-05-06,2.9252,6.12,409 +7678,283378,Fallen,"Lucinda Price is sent to a reform academy under the assumption that she has killed a boy. There, she meets two mysterious boys, Cam and Daniel, to whom she feels drawn to both. But as the love triangle unfurls, it is Daniel that Luce cannot keep herself away from, and things begin to take a darker turn when she finds out his true identity.",2016-11-10,3.0081,6.12,1625 +7679,244264,Laggies,"Overeducated and underemployed, 28 year old Megan is in the throes of a quarterlife crisis. Squarely into adulthood with no career prospects, no particular motivation to think about her future and no one to relate to, Megan is comfortable lagging a few steps behind - while her friends check off milestones and celebrate their new grown-up status. When her high-school sweetheart proposes, Megan panics and- given an unexpected opportunity to escape for a week - hides out in the home of her new friend, 16-year old Annika and Annika's world-weary single dad Craig.",2014-09-25,2.1414,6.12,1146 +7680,208134,Jackass Presents: Bad Grandpa,"86-year-old Irving Zisman is on a journey across America with the most unlikely companion: his 8 year-old grandson, Billy.",2013-10-22,2.0267,6.12,1600 +7681,190955,Blood Ties,"Two brothers, on either side of the law, face off over organized crime in Brooklyn during the 1970s.",2013-08-22,1.8604,6.12,481 +7682,31578,Body Bags,A woman working the late shift at a gas station while a killer is on the loose; a man who can't stand the thought of losing his hair; a baseball player that submits to an eye transplant. An anthology of terror.,1993-08-08,0.961,6.12,351 +7683,753453,V/H/S/94,"After the discovery of a mysterious VHS tape, a brutish police SWAT team launches a high-intensity raid on a remote warehouse, only to discover a sinister cult compound whose collection of pre-recorded material uncovers a nightmarish conspiracy.",2021-09-26,2.652,6.119,498 +7684,272692,The Possession of Michael King,"The film tells the story of documentary filmmaker Michael King (Shane Johnson), who doesn’t believe in God or the Devil. Following the sudden death of his wife, Michael decides to make his next film about the search for the existence of the supernatural, making himself the center of the experiment – allowing demonologists, necromancers, and various practitioners of the occult to try the deepest and darkest spells and rituals they can find on him – in the hopes that when they fail, he’ll once and for all have proof that religion, spiritualism, and the paranormal are nothing more than myth. But something does happen. An evil and horrifying force has taken over Michael King. And it will not let him go.",2014-08-14,1.3356,6.1,404 +7685,41664,Fantozzi Retires,"After thirty years in the big corporation, Ugo Fantozzi retires. Suddenly, he needs things to do in everyday life and he tries a number of activities: helping Pina shopping; babysitting grand-daughter Uga; a trip to Venice; learning golf. He then fakes documents to get a new job, but in the end he becomes a hypochondriac and doesn't even take a long-awaited chance with Miss Silvani.",1988-12-22,0.5979,6.119,383 +7686,13944,Passengers,"After a plane crash, a young therapist, Claire, is assigned by her mentor to counsel the flight's five survivors. When they share their recollections of the incident -- which some say include an explosion that the airline claims never happened -- Claire is intrigued by Eric, the most secretive of the passengers.",2008-09-26,2.5285,6.119,941 +7687,12526,Bug,"In Oklahoma, Agnes, a lonely waitress living in an isolated and dilapidated roadside motel, meets Peter, a quiet and mysterious man with whom she establishes a peculiar relationship.",2007-02-21,1.8221,6.119,569 +7688,9293,John Tucker Must Die,"After discovering they are all dating the same same guy, three popular students from different cliques band together for revenge, so they enlist the help of a new gal in town and conspire to break the jerk's heart, while destroying his reputation.",2006-07-27,2.7365,6.119,1406 +7689,613080,Once Upon a Time in Bethlehem,"A thief and a priest end up magically transported in the year 0's Palestine, where they'll have to make sure that the Nativity will follow its course.",2019-12-12,0.4877,6.118,500 +7690,382593,Divorce French Style,"Two years have passed. After missing their separation, the Leroy seem perfectly successful in their divorce. But the appearance of two new lovers in the life of Vincent and Florence will set fire to the powders. The match between the former spouses resumes.",2016-12-07,0.862,6.118,610 +7691,937249,57 Seconds,"When a tech blogger lands an interview with a tech guru and stops an attack on him, he finds a mysterious ring that takes him back 57 seconds into the past.",2023-09-29,7.0043,6.124,558 +7692,487680,The Kitchen,"The mobster husbands of three 1978 Hell's Kitchen housewives are sent to prison by the FBI. Left with little but a sharp ax to grind, the ladies take the Irish mafia's matters into their own hands — proving unexpectedly adept at everything from running the rackets to taking out the competition… literally.",2019-08-08,1.917,6.1,701 +7693,426814,The Domestics,A young husband and wife must fight to return home in a post-apocalyptic mid-western landscape ravaged by gangs.,2018-06-28,1.5033,6.117,479 +7694,137094,Jack Ryan: Shadow Recruit,"Jack Ryan, as a young covert CIA analyst, uncovers a Russian plot to crash the U.S. economy with a terrorist attack.",2014-01-15,4.0021,6.117,2933 +7695,111190,Adore,"Lil and Roz are two lifelong friends, having grown up together as neighbors in an idyllic beach town. As adults, their sons have developed a friendship as strong as that which binds their mothers. One summer, all four are confronted by simmering emotions that have been mounting between them, and each find unexpected happiness in relationships that cross the bounds of convention.",2013-04-03,4.6124,6.117,994 +7696,21788,Trouble at Timpetill,"The children of a small European mountain village end up being its only residents, soon after the adults cannot take their behavior any longer.",2008-12-17,1.0109,6.1,386 +7697,814889,Never Let Go,"As an evil takes over the world beyond their front doorstep, the only protection for a mother and her twin sons is their house and their family’s protective bond.",2024-09-18,5.1915,6.12,475 +7698,427900,Home Again,Life for a single mom in Los Angeles takes an unexpected turn when she allows three young guys to move in with her.,2017-09-07,3.0344,6.1,1210 +7699,254904,The November Man,An ex-CIA operative is brought back in on a very personal mission and finds himself pitted against his former pupil in a deadly game involving high level CIA officials and the Russian president-elect.,2014-08-27,5.4439,6.116,1522 +7700,134411,Snitch,"Construction company owner John Matthews learns that his estranged son, Jason, has been arrested for drug trafficking. Facing an unjust prison sentence for a first time offender courtesy of mandatory minimum sentence laws, Jason has nothing to offer for leniency in good conscience. Desperately, John convinces the DEA and the opportunistic DA Joanne Keeghan to let him go undercover to help make arrests big enough to free his son in return. With the unwitting help of an ex-con employee, John enters the narcotics underworld where every move could be his last in an operation that will demand all his resources, wits and courage to survive.",2013-02-21,2.3103,6.116,2396 +7701,9955,Blades of Glory,"When a much-publicized ice-skating scandal strips them of their gold medals, two world-class athletes skirt their way back onto the ice via a loophole that allows them to compete together as a pairs team.",2007-03-30,2.8999,6.1,1805 +7702,8989,Harry and the Hendersons,"Returning from a hunting trip in the forest, the Henderson family's car hits an animal in the road. At first they fear it was a man, but when they examine the ""body"" they find it's a ""bigfoot"". They think it's dead so they decide to take it home (there could be some money in this). As you guessed, it isn't dead. Far from being the ferocious monster they fear ""Harry"" to be, he's a friendly giant.",1987-06-05,1.74,6.116,692 +7703,7520,Cocktail,"After being discharged from the Army, Brian Flanagan moves back to Queens and takes a job in a bar run by Doug Coughlin, who teaches Brian the fine art of bar-tending. Brian quickly becomes a patron favorite with his flashy drink-mixing style, and Brian adopts his mentor's cynical philosophy on life and goes for the money.",1988-07-29,3.4914,6.1,1527 +7704,4806,Runaway Bride,"Having already left three grooms at the altar, Maggie Carpenter is branded ""the runaway bride"" by jaded New York journalist Ike Graham. But, after his facts are called into question, Ike races to Maggie's hometown to save his reputation and report on her upcoming fourth trip down the aisle – during which he's convinced she'll run again. Though he's there on a muckraking mission, Ike can't help but fall for this breathtaking heartbreaker.",1999-07-30,3.408,6.116,2073 +7705,951,Kindergarten Cop,"Hard-edged cop John Kimble gets more than he bargained for when he goes undercover as a kindergarten teacher to get the goods on a brutal drug lord while at the same time protecting the man's young son. Pitted against a class of boisterous moppets whose antics try his patience and test his mettle, Kimble may have met his match … in more ways than one.",1990-12-21,2.0413,6.116,2617 +7706,1032950,Hellhole,"In a monastery cut off from the world, the monks run a clinic for the possessed. One day, a young policeman Marek comes to the convent. Posing as a clergyman, he penetrates monastic life and tries to explain the recent, mysterious disappearance of several tormented inmates. It turns out, however, that there is no way out of the monastery.",2022-10-26,1.3022,6.115,339 +7707,507143,Candy Jar,Dueling high school debate champs who are at odds on just about everything forge ahead with ambitious plans to get into the colleges of their dreams.,2018-04-27,1.2601,6.115,477 +7708,319341,Daddy or Mommy,"Florence and Vincent Leroy are a model couple. They have great jobs, a perfect marriage and delightful children. And now they want their divorce to be an equal success. But when they are both simultaneously promoted to their dream jobs, their relationship becomes a nightmare. From that moment on, the gloves are off, the two exes declare war and will do everything in their power to NOT have custody of their children.",2015-02-04,1.6836,6.115,1054 +7709,218784,Freaks of Nature,"In the town of Dillford, humans, vampires and zombies were all living in peace - until the alien apocalypse arrived. Now three teenagers-one human, one vampire, and one zombie-have to team up to figure out how to get rid of the visitors.",2015-10-30,2.3818,6.1,572 +7710,80271,LOL,"In a world connected by YouTube, iTunes, and Facebook, Lola and her friends navigate the peer pressures of high school romance and friendship while dodging their sometimes overbearing and confused parents. When Lola's mom, Anne, ""accidentally"" reads her teenage daughter's racy journal, she realizes just how wide their communication gap has grown.",2012-02-10,2.5734,6.115,2708 +7711,53182,300: Rise of an Empire,"Greek general Themistocles attempts to unite all of Greece by leading the charge that will change the course of the war. Themistocles faces the massive invading Persian forces led by mortal-turned-god, Xerxes and Artemesia, the vengeful commander of the Persian navy.",2014-03-05,7.2551,6.115,6681 +7712,28211,Chloe,"A doctor hires an escort to seduce her husband, whom she suspects of cheating, though unforeseen events put the family in danger.",2010-02-25,3.4459,6.1,1777 +7713,4970,Gothika,"After a car crash, criminal psychologist Dr. Miranda Grey regains consciousness only to find that she's a patient in the same mental institution that currently employs her. She's been accused of murdering her husband Dr. Douglas Grey — but she has no memory of committing the crime. As she tries to regain her memory and convince her co-worker, Dr. Pete Graham, of her innocence, a vengeful spirit uses her as an earthly pawn, which further convinces everyone of her guilt.",2003-11-21,3.7995,6.116,2363 +7714,593402,Tolo Tolo,"Checco is a young Apulian entrepreneur dreamer who has opened a sushi restaurant in his Apulia. However, after one month, the restaurant went bankrupt and he chose to emigrate to Africa to escape from debt. Here he adapts to being a waiter in a resort in Kenya, but at the outbreak of a civil war he decides to embark on a stowaway trip on a boat for migrants to Europe and chooses to do it with his African friends. However, he would not like to return to Italy, but rather to go to Liechtenstein where banking secrecy is in force and there is a lower tax burden than in Italy.",2020-01-01,0.8382,6.114,1254 +7715,473149,Traffik,"A couple off for a romantic weekend in the mountains are accosted by a biker gang. Alone in the mountains, Brea and John must defend themselves against the gang, who will stop at nothing to protect their secrets.",2018-04-20,1.801,6.114,462 +7716,299054,Expend4bles,"Armed with every weapon they can get their hands on and the skills to use them, The Expendables are the world’s last line of defense and the team that gets called when all other options are off the table. But new team members with new styles and tactics are going to give “new blood” a whole new meaning.",2023-09-15,12.1321,6.114,1708 +7717,278154,Ice Age: Collision Course,"Set after the events of Continental Drift, Scrat's epic pursuit of his elusive acorn catapults him outside of Earth, where he accidentally sets off a series of cosmic events that transform and threaten the planet. To save themselves from peril, Manny, Sid, Diego, and the rest of the herd leave their home and embark on a quest full of thrills and spills, highs and lows, laughter and adventure while traveling to exotic new lands and locations.",2016-06-23,7.2409,6.114,4709 +7718,57201,The Lone Ranger,"The Texas Rangers chase down a gang of outlaws led by Butch Cavendish, but the gang ambushes the Rangers, seemingly killing them all. One survivor is found, however, by an American Indian named Tonto, who nurses him back to health. The Ranger, donning a mask and riding a white stallion named Silver, teams up with Tonto to bring the unscrupulous gang and others of that ilk to justice.",2013-07-03,3.6044,6.114,5942 +7719,21972,Like Mike,"Calvin and his friends, who all live in an orphanage, find old shoes with the faded letters MJ connected to a powerline. One stormy night, they go to get the shoes when Calvin and the shoes are struck by lightning. Calvin now has unbelievable basketball powers and has the chance to play for the NBA.",2002-07-03,2.6889,6.114,536 +7720,10606,The Philadelphia Experiment,"Based on an ""actual event"" that took place in 1943. About a US Navy Destroyer Escort that disappeared from the Philadelphia Naval Shipyard, and sent two men 40 years into the future to 1984.",1984-10-05,1.564,6.114,404 +7721,611213,The Prom,"After the PTA of a conservative high school in Indiana bans same-sex couples from attending the annual prom, a gang of flamboyant Broadway stars try to boost their image by showing up to support two lesbian students.",2020-12-02,1.2578,6.113,690 +7722,424121,Apostle,"In 1905, a man travels to a remote island in search of his missing sister who has been kidnapped by a mysterious religious cult.",2018-09-21,2.1526,6.113,1481 +7723,173897,Resident Evil: The Final Chapter,"Picking up immediately after the events in Resident Evil: Retribution, Alice is the only survivor of what was meant to be humanity's final stand against the undead. Now, she must return to where the nightmare began - The Hive in Raccoon City, where the Umbrella Corporation is gathering its forces for a final strike against the only remaining survivors of the apocalypse.",2016-12-23,0.3168,6.113,3305 +7724,14013,BASEketball,"Two losers from Milwaukee, Coop and Remer, invent a new game combining basketball with the rules of baseball. When the game becomes a huge success, they, along with a billionaire's help, form the Professional Baseketball League where everyone gets the same pay and no team can change cities. When a rival owner wants to institute major rule changes, Coop and Remer's team is the only one standing in the way.",1998-07-28,2.6567,6.1,604 +7725,11557,St. Elmo's Fire,"A group of friends, just out of college, struggle with adulthood.",1985-06-28,1.821,6.113,560 +7726,2057,Original Sin,"A young man is plunged into a life of subterfuge, deceit and mistaken identity in pursuit of a femme fatale whose heart is never quite within his grasp.",2001-05-08,6.1931,6.113,845 +7727,301875,Equals,A futuristic love story set in a world where emotions have been eradicated.,2015-07-15,2.077,6.112,1401 +7728,9395,Above the Law,"Nico Toscani is an Italian immigrant, American patriot, ex-CIA agent, aikido specialist and unorthodox Chicago policeman. He is as committed to his job as he is to his personalized brand of justice—expert and thorough bone-crushing.",1988-04-08,3.1007,6.112,735 +7729,9029,What Happens in Vegas,"During a wild vacation in Las Vegas, career woman Joy McNally and playboy Jack Fuller come to the sober realization that they have married each other after a night of drunken abandon. They are then compelled, for legal reasons, to live life as a couple for a limited period of time. At stake is a large amount of money.",2008-05-07,3.5174,6.112,3135 +7730,232572,A Walk in the Woods,"After spending two decades in England, Bill Bryson returns to the U.S., where he decides the best way to connect with his homeland is to hike the Appalachian Trail with one of his oldest friends.",2015-09-02,1.8498,6.111,729 +7731,77944,The Worst Week of My Life,"Seven days before his wedding, a man must contend with a series of never-ending disasters.",2011-10-27,0.3241,6.1,446 +7732,14817,Good Burger,Two L.A. teens with summer jobs at Good Burger try to save their small restaurant when a corporate giant burger franchise moves in across the street.,1997-07-25,1.7466,6.111,545 +7733,8818,Evita,"The hit musical based on the life of Evita Duarte, an Argentinian actress who eventually became the wife of Argentinian president Juan Perón, and the most beloved and hated woman in Argentina.",1996-12-14,1.6403,6.1,488 +7734,8675,Orgazmo,A devout Mormon living in L.A. becomes a pornographic actor after his martial arts moves impress a big-time director.,1998-07-02,2.851,6.111,451 +7735,1613,The 51st State,An American master chemist plans to score big on a once in a lifetime drug deal. All does not go as planned and he is soon entangled in a web of deceit.,2001-12-07,1.5381,6.111,624 +7736,496743,Aniara,"A ship carrying settlers to a new home on Mars after Earth is rendered uninhabitable is knocked off-course, causing the passengers to consider their place in the universe.",2019-02-01,1.4394,6.11,378 +7737,474764,The Lodge,"When a father is forced to abruptly depart for work, he leaves his children, Aidan and Mia, at their holiday home in the care of his new girlfriend, Grace. Isolated and alone, a blizzard traps them inside the lodge as terrifying events summon specters from Grace's dark past.",2020-01-16,2.8519,6.11,1314 +7738,438347,Wedding Unplanned,"When she discovers a wedding planer's business card, Alexia instantly says, ""YES"" to Mathias unaware that it belongs to his mistress. The groom is now trapped between his bride, and his lover who in charge of his unwanted marriage.",2017-04-26,1.402,6.11,474 +7739,192132,Palo Alto,A lack of parental guidance encourages teens in an affluent California town to rebel with substance abuse and casual sex.,2013-12-29,1.7293,6.1,885 +7740,27621,The Cheetah Girls: One World,"Chanel, Dorinda, and Aqua are off to India to star in a Bollywood movie. But when they discover that they will have to compete against each other to get the role in the movie, will the Cheetahs break up again?",2008-08-22,1.1382,6.11,336 +7741,10945,Jumpin' Jack Flash,"Terry works for a bank, and uses computers to communicate with clients all over the world. One day, she gets a strange coded message from an unknown source. After decoding the message, Terry becomes embroiled in an espionage ring. People are killed, and Terry is chased. Throughout, she remains in contact with this mysterious person, who needs Terry's help save his life.",1986-10-09,1.7666,6.11,369 +7742,9642,Asterix and the Vikings,"Asterix and Obelix have been given a tough mission: Transform the chief's lazy nephew Justforkix into a warrior. When the Vikings abduct him and bring him back to their homeland, Asterix and Obelix must travel to Norway to rescue Justforkix.",2006-04-12,1.8298,6.1,723 +7743,242022,The Inbetweeners 2,"Neil, Will and Simon receive an invite from Jay to join him in Australia whilst on his gap year, who promises them it’s ”the sex capital of the world”. With their lives now rather dull compared to their hedonistic school days and legendary lads holiday, it’s an offer they can’t refuse. Once again, they put growing up temporarily on-hold, and embark on a backpacking holiday of a lifetime in an awful car, inspired by Peter Andre’s ‘Mysterious Girl’. Will soon finds himself battling with the lads to do something cultural, whilst they focus their attention on drinking, girls, and annoying fellow travelers.",2014-08-06,1.4187,6.1,509 +7744,60672,Crimson Rivers II: Angels of the Apocalypse,"No one is safe when seemingly random killings emerge as a deadly pattern intended to usher in the end of the world. A murder victim with the same DNA as Christ. A serial killer mimicking the deaths of the 12 Apostles. Inspector Niemans and a young, rebellious detective team up with a beautiful expert in religion to crack the case before their elusive suspect completes the cycle of terror, paving the way to an even bigger bloody catastrophe.",2004-02-18,2.6002,6.109,741 +7745,843794,JUNG_E,"On an uninhabitable 22nd-century Earth, the outcome of a civil war hinges on cloning the brain of an elite soldier to create a robot mercenary.",2023-01-12,3.4195,6.108,629 +7746,471014,Wheelman,A getaway driver for a bank robbery realizes he has been double crossed and races to find out who betrayed him.,2017-10-20,1.1335,6.108,649 +7747,442062,Goosebumps 2: Haunted Halloween,"Be careful what you wish for. With their after school junk business, best friends Sonny and Sam hope to find treasure in other people’s trash. But when cleaning out the old Stine house, they open a locked book that frees a supernatural nightmare – Slappy! Now, with the help of Sonny’s sister Sarah, they’re in a race against time to get the sinister dummy and all the creatures he’s brought to life back into the pages before he unleashes total pandemonium!",2018-10-11,3.469,6.1,1567 +7748,14636,The Condemned,"Jack Conrad is awaiting the death penalty in a corrupt Central American prison. He is ""purchased"" by a wealthy television producer and taken to a desolate island where he must fight to the death against nine other condemned killers from all corners of the world, with freedom going to the sole survivor.",2007-04-27,2.4218,6.101,814 +7749,13927,Tin Toy,"Babies are hardly monster-like, unless you're a toy. After escaping a drooling baby, Tinny realizes that he wants to be played with after all. But in the amount of time it takes him to discover this, the baby's attention moves on to other things only an infant could find interesting.",1988-08-01,0.9186,6.108,472 +7750,11228,Daylight,A group of armed robbers fleeing the police head for the New Jersey Tunnel and run right into trucks transporting toxic waste. The spectacular explosion that follows results in both ends of the tunnel collapsing and the handful of people who survived the explosion are now in peril. Kit Latura is the only man with the skill and knowledge to lead the band of survivors out of the tunnel before the structure collapses.,1996-12-06,3.4797,6.108,1591 +7751,6520,First Knight,"The timeless tale of King Arthur and the legend of Camelot are retold in this passionate period drama. Arthur is reluctant to hand the crown to Lancelot, and Guinevere is torn between her loyalty to her husband and her growing love for his rival. But Lancelot must balance his loyalty to the throne with the rewards of true love.",1995-07-07,3.0738,6.1,1259 +7752,59108,Tower Heist,"A luxury condo manager leads a staff of workers to seek payback on the Wall Street swindler who defrauded them. With only days until the billionaire gets away with the perfect crime, the unlikely crew of amateur thieves enlists the help of petty crook Slide to steal the $20 million they’re sure is hidden in the penthouse.",2011-11-02,3.862,6.107,3033 +7753,53459,F,A group of teachers must defend themselves from a gang of murderous kids when their school comes under siege after hours.,2010-09-07,0.7178,6.107,313 +7754,10720,Down with Love,"In 1962 New York City, love blossoms between a playboy journalist and a feminist advice author.",2003-05-08,2.2036,6.107,746 +7755,10623,Cradle 2 the Grave,"Gang leader Tony pulls off a major diamond heist with his crew, but cop-turned-criminal Ling knows who has the loot and responds by kidnapping Tony's daughter and holding her for ransom. Unfortunately, Tony's lost the diamonds as well. As he frantically searches for his daughter and the jewels, Tony pairs with a high-kicking government agent who once worked with Ling and seeks revenge on him.",2003-02-28,3.1114,6.107,953 +7756,979924,On the Line,A provocative and edgy radio host must play a dangerous game of cat and mouse with a mysterious caller who's kidnapped his family and is threatening to blow up the whole station.,2022-10-31,2.626,6.1,536 +7757,641501,How I Became a Superhero,"Paris 2020. While superheroes have assimilated into the Parisian society, they discover a new drug that gives themselves personal superpowers to mere mortals. Lieutenants Moreau and Schaltzmann are investigating the case with the support of two ex-superheroes, Monte Carlo and Callista. They'll do whatever it takes to dismantle the traffic. But Moreau's past resurfaces, and the investigation becomes more complicated.",2020-11-19,2.3607,6.1,524 +7758,51588,Prom,"At “Prom,” every couple has a story and no two are exactly alike. As the big dance approaches for Nova Prescott, it’s a battle of wills as she finds herself drawn to the guy who gets in the way of her perfect prom. Fellow seniors Mei and Tyler harbor secrets, while others face all the insecurity and anticipation that surrounds one of high school’s most seminal events.",2011-04-29,1.1636,6.1,457 +7759,11858,Renaissance Man,"An advertising man is slowly sliding downhill. When he is fired from his job in Detroit, he signs up for unemployment. One day they find him a job: teaching thinking skills to Army recruits. He arrives on base to find that there is no structure set up for the class.",1994-06-03,1.1139,6.1,302 +7760,10533,The Scarlet Letter,"Set in puritanical Boston in the mid 1600s, the story of seamstress Hester Prynne, who is outcast after she becomes pregnant by a respected reverend. She refuses to divulge the name of the father, is ""convicted"" of adultery and forced to wear a scarlet ""A"" until an Indian attack unites the Puritans and leads to a reevaluation of their laws and morals.",1995-10-13,1.9534,6.106,493 +7761,578908,Bad Trip,"In this hidden-camera prank comedy, two best friends bond on a wild road trip to New York as they pull real people into their raunchy, raucous antics.",2021-03-25,1.6869,6.105,548 +7762,370978,Kiki: Love to Love,"Through five stories, the movie addresses sex and love: Paco and Ana are a marriage looking for reactivate the passion of their sexual relations, long time unsatisfied; Jose Luis tries to recover the affections of his wife Paloma, sit down on a wheelchair after an accident which has limited her mobility; Mª Candelaria and Antonio are a marriage trying by all way to be parents, but she has the trouble that no get an orgasm when make love with him; Álex try to satisfy Natalia's fantasies, while she starts to doubt if he finally will ask her in marriage; and finally, Sandra is a single woman in a permanent searching for a man to fall in love. All them love, fear, live and explore their diverse sexual paraphilias and the different sides of sexuality, trying to find the road to happiness.",2016-04-01,1.0719,6.105,368 +7763,157834,The Zero Theorem,"A computer hacker's goal to discover the reason for human existence continually finds his work interrupted thanks to the Management; this time, they send a teenager and lusty love interest to distract him.",2013-09-20,1.9081,6.105,1253 +7764,1010928,Wingwomen,"Tired of life on the run, a pro thief decides to retire — but not before one easy last job with her partner in crime and a feisty new getaway driver.",2023-11-01,2.6011,6.104,474 +7765,514593,You Should Have Left,"In an effort to repair their relationship, a couple books a vacation in the countryside for themselves and their daughter. What starts as a perfect retreat begins to fall apart as one loses their grip on reality, and a sinister force tries to tear them apart.",2020-06-18,6.4375,6.104,911 +7766,399796,Life of the Party,"When her husband suddenly dumps her, longtime dedicated housewife Deanna turns regret into re-set by going back to college... landing in the same class and school as her daughter, who's not entirely sold on the idea. Plunging headlong into the campus experience, the increasingly outspoken Deanna – now Dee Rock – embraces freedom, fun, and frat boys on her own terms, finding her true self in a senior year no one ever expected.",2018-05-10,2.3444,6.1,1011 +7767,1738,Next,"Las Vegas showroom magician Cris Johnson has a secret which torments him: he can see a few minutes into the future. Sick of the examinations he underwent as a child and the interest of the government and medical establishment in his power, he lies low under an assumed name in Vegas, performing cheap tricks and living off small-time gambling ""winnings."" But when a terrorist group threatens to detonate a nuclear device in Los Angeles, government agent Callie Ferris must use all her wiles to capture Cris and convince him to help her stop the cataclysm.",2007-04-25,5.3049,6.104,3066 +7768,609972,Paranormal Activity: Next of Kin,Margot is a documentary filmmaker looking to meet her long-lost mother and extended family in a secluded Amish community. She and her film crew soon realize the family that welcomes them into their home might be hiding a sinister secret.,2021-10-29,2.6338,6.1,710 +7769,410199,ARQ,Two old friends living in a dystopic future become trapped in a mysterious time loop — one that may have something to do with an ongoing battle between an omnipotent corporation and a ragtag band of rebels.,2016-09-16,2.3593,6.103,1222 +7770,262504,Allegiant,Beatrice Prior and Tobias Eaton venture into the world outside of the fence and are taken into protective custody by a mysterious agency known as the Bureau of Genetic Welfare.,2016-03-09,4.71,6.103,6752 +7771,22172,Street Trash,"A group of hobos begin melting into multicolored piles of goo after drinking sixty-year-old liquor. At the same time, the psychotic Vietnam War vet who rules the hobo camp snaps and begins killing at random. Two brothers set out to stop the liquor and the killer.",1987-02-22,1.4898,6.1,317 +7772,14128,Cinderella II: Dreams Come True,"As a newly crowned princess, Cinderella quickly learns that life at the Palace - and her royal responsibilities - are more challenging than she had imagined. In three heartwarming tales, Cinderella calls on her animal friends and her Fairy Godmother to help as she brings her own grace and charm to her regal role and discovers that being true to yourself is the best way to make your dreams come true.",2002-02-23,5.2691,6.103,1493 +7773,520946,100% Wolf,"Freddy Lupin, heir to a proud family line of werewolves, is in for a shock when on his 14th birthday his first 'warfing' goes awry, turning him into a ferocious poodle. The pack elders give Freddy until the next moonrise to prove he has the heart of a wolf, or risk being cast out forever. With the help of an unlikely ally in a streetwise stray named Batty, Freddy must prove he's 100% Wolf.",2020-06-26,2.0957,6.102,320 +7774,278774,Zapped,"Zoey is a talented dancer whose organized life is rudely disrupted when she moves in with her new step-dad and three step-brothers, until she discovers a dog-training app that can get boys to obey her every command. But she soon learns that it isn't the cure-all she had hoped for.",2014-06-27,2.0067,6.102,621 +7775,35056,Date Night,"Phil and Claire Foster fear that their mild-mannered relationship may be falling into a stale rut. During their weekly date night, their dinner reservation leads to their being mistaken for a couple of thieves—and now a number of unsavoury characters want Phil and Claire killed.",2010-04-08,2.3465,6.102,2931 +7776,10068,Nine 1/2 Weeks,"An erotic story about a woman, the assistant of an art gallery, who gets involved in an impersonal affair with a man. She barely knows about his life, only about the sex games they play, so the relationship begins to get complicated.",1986-02-09,5.5634,6.1,1049 +7777,404733,Overdrive,"Master car thieves square off against French gangsters in the South of France with money, women and lives all on the line.",2017-06-16,3.192,6.101,966 +7778,295151,Let It Snow,"In a small town on Christmas Eve, a snowstorm brings together a group of young people. They soon find their friendships and love lives colliding, and come Christmas morning, nothing will be the same.",2019-11-08,2.0925,6.101,1179 +7779,192102,3 Days to Kill,"A dangerous international spy is determined to give up his high stakes life to finally build a closer relationship with his estranged wife and daughter. But first, he must complete one last mission - even if it means juggling the two toughest assignments yet: hunting down the world's most ruthless terrorist and looking after his teenage daughter for the first time in ten years, while his wife is out of town.",2014-02-14,4.1163,6.101,2213 +7780,84204,Grabbers,"Something sinister has come to the shores of Erin Island, unbeknownst to the quaint population of this sleepy fishing village resting somewhere off Ireland’s coast. First, some fishermen go missing. Then there is the rash of whale carcasses suddenly washing up on the beach. When the murders start, it’s up to two mismatched cops – an irresponsible alcoholic and his new partner, a by-the-book woman from the mainland – to protect the townsfolk from the giant, bloodsucking, tentacled aliens that prey upon them. Their only weapon, they discover, is booze. If they want to survive the creatures’ onslaught, everyone will have to get very, very drunk!",2012-08-10,1.2892,6.101,470 +7781,10833,Heartbreakers,"Max and Page are a brilliant mother/daughter con team who have their grift down to a fine science. Max targets wealthy, willing men and marries them. Page then seduces them, and Max catches her husband in the act. Then it's off to palimony city and the next easy mark.",2001-03-23,2.6113,6.101,931 +7782,262841,Monster Trucks,"Tripp is a high school senior with a knack for building trucks who makes an incredible discovery - a gas-guzzling creature named Creech. To protect his mischievous new friend, Tripp hides Creech under the hood of his latest creation, turning it into a real-life super-powered Monster Truck. Together, this unlikely duo with a shared taste for speed team up on a wild and unforgettable journey to reunite Creech with his family.",2016-12-21,10.7662,6.1,870 +7783,152748,Ain't Them Bodies Saints,"Bob Muldoon and Ruth Guthrie, an impassioned young outlaw couple on an extended crime spree, are finally apprehended by lawmen after a shootout in the Texas hills. Although Ruth wounds a local officer, Bob takes the blame. But four years later, Bob escapes from prison and sets out to find Ruth and their daughter, born during his incarceration.",2013-07-03,1.3795,6.1,441 +7784,10442,So I Married an Axe Murderer,"Just after a bad breakup, Charlie MacKenzie falls for lovely butcher Harriet Michaels and introduces her to his parents. But, as voracious consumers of sensational tabloids, his parents soon come to suspect that Harriet is actually a notorious serial killer -- ""Mrs. X"" -- wanted in connection with a string of bizarre honeymoon killings. Thinking his parents foolish, Charlie proposes to Harriet. But while on his honeymoon with her, he begins to fear they were right.",1993-07-30,1.9197,6.1,441 +7785,9397,Evolution,"A comedy that follows the chaos that ensues when a meteor hits the Earth carrying alien life forms that give new meaning to the term ""survival of the fittest."" David Duchovny, Orlando Jones, Seann William Scott, and Julianne Moore are the only people standing between the aliens and world domination... which could be bad news for the Earth.",2001-06-08,3.8158,6.1,2332 +7786,37652,Didier,"Jean-Pierre Costa is a football manager upon whom fate appears not to be smiling. First, a friend, Annabelle, dumps a pet Labrador named Didier on him whilst she goes off to make a report in Los Angeles. Next, one of his star players is injured, leaving him one player short for a crucial match. As if things could not get any worse, Costa wakes up one morning to find that that Didier has been transformed into a man...",1997-01-29,1.0816,6.099,628 +7787,25602,Ninja,"A westerner named Casey, studying Ninjutsu in Japan, is asked by the Sensei to return to New York to protect the legendary Yoroi Bitsu, an armored chest that contains the weapons of the last Koga Ninja.",2009-10-22,2.5472,6.1,377 +7788,10013,Peggy Sue Got Married,"Peggy Sue faints at a high school reunion. When she wakes up she finds herself in her own past, just before she finished school.",1986-10-10,1.9461,6.099,609 +7789,934632,Rebel Moon - Part Two: The Scargiver,"The rebels gear up for battle against the ruthless forces of the Motherworld as unbreakable bonds are forged, heroes emerge — and legends are made.",2024-04-19,5.6914,6.098,1323 +7790,739990,Nightbooks,"Alex, a boy obsessed with scary stories, is trapped by a witch in her modern, magical New York City apartment. His original hair-raising tales are the only thing keeping him safe as he desperately tries to find a way out of this twisted place.",2021-09-15,1.5316,6.098,389 +7791,158990,Wrong Cops,A group of bad cops look to dispose of a body that one of them accidentally shot.,2013-12-18,0.727,6.1,311 +7792,11932,Bride of Chucky,"Chucky is reborn when his old flame, Tiffany, rescues his battered doll parts from a police impound.",1998-10-15,4.9744,6.1,2008 +7793,10173,Marked for Death,"Just retired from the Drug Enforcement Agency, John Hatcher returns to his hometown and quickly discovers that drugs have infiltrated his old neighborhood. Determined to drive the dealers out, Hatcher crosses paths with a ferocious Jamaican drug lord who vows that Hatcher and his family are now marked for death.",1990-10-05,2.595,6.098,550 +7794,10003,The Saint,"Simon Templar (The Saint), is a thief for hire, whose latest job to steal the secret process for cold fusion puts him at odds with a traitor bent on toppling the Russian government, as well as the woman who holds its secret.",1997-04-03,1.9994,6.098,1158 +7795,2665,Airplane II: The Sequel,"A faulty computer causes a passenger space shuttle to head straight for the sun, and man-with-a-past Ted Striker must save the day and get the shuttle back on track – again – all the while trying to patch up his relationship with Elaine.",1982-12-10,3.8551,6.098,1173 +7796,331313,Keeping Up with the Joneses,An ordinary suburban couple finds it’s not easy keeping up with the Joneses – their impossibly gorgeous and ultra-sophisticated new neighbors – especially when they discover that Mr. and Mrs. “Jones” are covert operatives.,2016-10-20,2.5884,6.097,2067 +7797,283726,The New Girlfriend,A young woman makes a surprising discovery about the husband of her late best friend.,2014-10-11,1.439,6.097,303 +7798,280002,The Remaining,"When a group of close-knit friends assemble for the marriage of Skylar and Dan, they have no idea they will witness The Rapture and face a series of catastrophic events turning the celebration into a life-or-death struggle.",2014-08-25,3.7239,6.097,471 +7799,261392,American Ultra,"Mike is an unmotivated stoner whose small-town life with his live-in girlfriend, Phoebe, is suddenly turned upside down. Unbeknownst to him, Mike is actually a highly trained, lethal sleeper agent. In the blink of an eye, as his secret past comes back to haunt him, Mike is thrust into the middle of a deadly government operation and is forced to summon his inner action-hero in order to survive.",2015-08-19,3.2459,6.097,2828 +7800,64807,Grudge Match,A pair of aging boxing rivals are coaxed out of retirement to fight one final bout -- 30 years after their last match.,2013-12-25,2.2536,6.097,1312 +7801,14043,Nancy Drew,Intrepid teenage private eye Nancy Drew heads to Tinseltown with her father to investigate the unsolved murder of a movie star in this old-fashioned whodunit based on Carolyn Keene's popular series of books for young adults. But can the small-town girl cut through the Hollywood hype to solve the case?,2007-06-15,2.027,6.097,520 +7802,12122,Village of the Damned,"An American village is visited by some unknown life form which leaves the women of the village pregnant. Nine months later, the babies are born, and they all look normal, but it doesn't take the ""parents"" long to realize that the kids are not human or humane.",1995-04-28,2.1226,6.097,860 +7803,428045,Iron Mask,"Commissioned to map the Far East territories of the Russian Empire, cartographer Jonathan Green sets off on a long journey of unbelievable adventures—making breath-taking discoveries and meeting mysterious creatures, Chinese princesses, deadly masters of oriental martial arts, and even the King of Dragons.",2019-08-16,4.7966,6.096,507 +7804,315837,Ghost in the Shell,"In the near future, Major is the first of her kind: a human saved from a terrible crash, then cyber-enhanced to be a perfect soldier devoted to stopping the world's most dangerous criminals.",2017-03-29,6.3366,6.096,8233 +7805,121936,Happiness Never Comes Alone,"Sacha is a real seducer, a man with no ties or emotional or professional. Charlotte is a modern and independent woman, but barely has time to care for their three children. While Sacha and Charlotte are, at first glance, two incompatible beings, when they meet soon discover that they are quite complementary and need each other.",2012-06-27,1.5722,6.096,429 +7806,14240,Maniac Cop,"Innocent people are brutally killed on the streets of New York by a uniformed police officer. A young cop, Jack Forrest, finds himself marked as the chief suspect after his wife is murdered.",1988-05-13,1.3944,6.096,500 +7807,10562,Under Suspicion,"A lawyer is asked to come to the police station to clear up a few loose ends in his witness report of a foul murder. ""This will only take ten minutes"", they say, but it turns out to be one loose end after another, and the ten minutes he is away from his speech become longer and longer.",2000-08-24,1.8398,6.096,483 +7808,507441,Sea Fever,The crew of a West of Ireland trawler—marooned at sea—struggle for their lives against a growing parasite in their water supply.,2020-03-06,2.2873,6.095,583 +7809,296100,The Night Before,"In New York City for their annual tradition of Christmas Eve debauchery, three lifelong best friends set out to find the Holy Grail of Christmas parties since their yearly reunion might be coming to an end.",2015-11-20,2.2693,6.095,1738 +7810,84348,V/H/S,"When a group of misfits is hired by an unknown third party to burglarize a desolate house and acquire one rare VHS tape, they discover more found footage than they had bargained for.",2012-07-28,2.6775,6.095,1618 +7811,38073,Going the Distance,"Erin and Garrett are very much in love. When Erin moves to San Francisco to finish her journalism degree and Garrett stays behind in New York to work in the music industry, they gamely keep the romance alive with webcams and frequent-flyer miles. But just when it seems the lovers will soon be reunited, they each score a big break that could separate them for good.",2010-08-27,1.8188,6.095,744 +7812,291356,In a Valley of Violence,"The story of a drifter named Paul who arrives in a small town seeking revenge on the thugs who murdered his friend. Sisters Mary Anne and Ellen, who run the town's hotel, help Paul in his quest for vengeance.",2016-10-21,2.0246,6.1,596 +7813,76544,Man of Tai Chi,"In Beijing, a young martial artist's skill places him in position to experience opportunities and sacrifices.",2013-07-04,1.7082,6.094,948 +7814,62213,Dark Shadows,Vampire Barnabas Collins is inadvertently freed from his tomb and emerges into the very changed world of 1972. He returns to Collinwood Manor to find that his once-grand estate and family have fallen into ruin.,2012-05-09,6.6903,6.094,7359 +7815,13973,Choke,A sex-addicted con-man pays for his mother's hospital bills by playing on the sympathies of those who rescue him from choking to death.,2008-09-26,0.9589,6.094,409 +7816,8873,Wayne's World 2,"A message from Jim Morrison in a dream prompts cable access TV stars Wayne and Garth to put on a rock concert, ""Waynestock,"" with Aerosmith as headliners. But amid the preparations, Wayne frets that a record producer is putting the moves on his girlfriend, Cassandra, while Garth handles the advances of mega-babe Honey Hornée.",1993-12-10,2.5864,6.094,1091 +7817,1956,Gerry,Two friends named Gerry become lost in the desert after taking a wrong turn. Their attempts to find their way home only lead them into further trouble.,2002-09-20,1.1215,6.094,323 +7818,340102,The New Mutants,"Five young mutants, just discovering their abilities while held in a secret facility against their will, fight to escape their past sins and save themselves.",2020-04-02,5.0053,6.1,3529 +7819,339846,Baywatch,"Devoted lifeguard Mitch Buchannon butts heads with a brash new recruit. Together, they uncover a local criminal plot that threatens the future of the Bay.",2017-05-25,8.7193,6.093,8251 +7820,576156,The Lovebirds,"A couple experiences a defining moment in their relationship when they are unintentionally embroiled in a murder mystery. As their journey to clear their names takes them from one extreme – and hilarious - circumstance to the next, they must figure out how they, and their relationship, can survive the night.",2020-05-22,1.6131,6.1,709 +7821,339792,David Brent: Life on the Road,"A camera crew catches up with David Brent, the former star of the fictional British series, ""The Office"" as he now fancies himself a rockstar on the road.",2016-08-19,1.4602,6.092,373 +7822,72358,A Thousand Words,"Jack McCall is a fast-talking literary agent, who can close any deal, any time, any way. He has set his sights on New Age guru Dr. Sinja for his own selfish purposes. But Dr. Sinja is on to him, and Jack’s life comes unglued after a magical Bodhi tree mysteriously appears in his backyard. With every word Jack speaks, a leaf falls from the tree and he realizes that when the last leaf falls, both he and the tree are toast. Words have never failed Jack McCall, but now he’s got to stop talking and conjure up some outrageous ways to communicate or he’s a goner.",2012-03-07,3.0342,6.1,1349 +7823,60304,Hansel & Gretel: Witch Hunters,"After getting a taste for blood as children, Hansel and Gretel have become the ultimate vigilantes, hell-bent on retribution. Now, unbeknownst to them, Hansel and Gretel have become the hunted, and must face an evil far greater than witches... their past.",2013-01-17,7.4629,6.093,6868 +7824,12110,Dracula: Dead and Loving It,"When a lawyer shows up at the vampire's doorstep, he falls prey to his charms and joins him in his search for fresh blood. Enter Professor Van Helsing, who may be the only one able to vanquish the Count.",1995-12-22,2.6684,6.092,1021 +7825,415132,Ares,"In a near future, the world order has changed. With its 10 millions of unemployed citizens, France has now become a poor country. Its people wavers between rebellion and resignation and find an outlet in the shape of TV broadcast ultra brutal fights in which the players are legally doped and unscrupulous.",2016-11-23,1.2189,6.091,330 +7826,44040,Devil,"A group of people are trapped in an elevator high above Philadelphia, and one of them is the devil.",2010-09-16,2.9915,6.091,2956 +7827,37861,Valhalla Rising,"Scandinavia, 1,000 AD. For years, One Eye, a mute warrior of supernatural strength, has been held prisoner by the Norse chieftain Barde. Aided by Are, a boy slave, One Eye slays his captor and together he and Are escape, beginning a journey into the heart of darkness. On their flight, One Eye and Are board a Viking vessel, but the ship is soon engulfed by an endless fog that clears only as the crew sights an unknown land. As the new world reveals its secrets and the Vikings confront their terrible and bloody fate, One Eye discovers his true self.",2009-09-04,2.98,6.091,1246 +7828,13937,Raising Cain,"Child psychologist Carter Nix is a loving and caring family man, but under this appearance lies a dark and troubled past. Grappling with the consequences of this past on his own psyche and the influence of his returning father and violent brother Cain, Carter becomes involved in a series of murders and kidnappings. Meanwhile, his wife Jenny rekindles an old love affair, placing herself in the crosshairs of her increasingly unstable husband.",1992-08-07,1.6269,6.1,364 +7829,9946,End of Days,"On 28 December 1999, the citizens of New York City are getting ready for the turn of the millennium. However, Satan decides to crash the party by coming to the city and searching for his chosen bride — a 20-year-old woman named Christine York. The world will end, and the only hope lies within an atheist named Jericho Cane.",1999-11-24,3.1088,6.1,1929 +7830,9637,Scooby-Doo,"When the Mystery Inc. gang is invited to Spooky Island, a popular amusement park, they soon discover that the attractions aren't the only things that are spooky. Strange things are happening, and it's up to Scooby, Shaggy, Fred, Daphne, and Velma to uncover the truth behind the mysterious happenings.",2002-06-14,6.1262,6.092,4566 +7831,4967,Keeping the Faith,"Best friends since they were kids, Rabbi Jacob Schram and Father Brian Finn are dynamic and popular young men living and working on New York's Upper West Side. When Anna Reilly, once their childhood friend and now grown into a beautiful corporate executive, suddenly returns to the city, she reenters Jake and Brian's lives and hearts with a vengeance. Sparks fly and an unusual and complicated love triangle ensues.",2000-04-14,1.2758,6.1,629 +7832,787298,Squared Love,A celebrity journalist and renowned womanizer starts to rethink his life choices after he falls for a mysterious model who leads a double life.,2021-02-11,0.7775,6.09,321 +7833,780609,Men,"In the aftermath of a personal tragedy, Harper retreats alone to the beautiful English countryside, hoping to find a place to heal. But someone — or something — from the surrounding woods appears to be stalking her, and what begins as simmering dread becomes a fully-formed nightmare, inhabited by her darkest memories and fears.",2022-05-20,2.7874,6.09,1222 +7834,457262,Rip Tide,"There comes a point in everyone’s life when you have to make a decision about the direction you’re going to take. For newly-18 American fashion model Cora, that time is now. She’s moved to an Australian coastal town to be with her favourite aunt, after a 'fashion faux pas’ back home.",2017-10-03,1.0019,6.1,454 +7835,421658,Final Score,"When a stadium is seized by a group of heavily armed criminals during a major sporting event, an ex-soldier must use all his military skills to save both the daughter of a fallen comrade and the huge crowd unaware of the danger.",2018-09-07,2.7056,6.1,538 +7836,201086,Cuban Fury,"Beneath Bruce Garrett's under-confident, overweight exterior, the passionate heart of a salsa king lies dormant. Now, one woman is about to reignite his Latin fire.",2014-02-14,1.5026,6.09,329 +7837,1051896,Arcadian,"In the near future, on a decimated Earth, Paul and his twin sons face terror at night when ferocious creatures awaken. When Paul is nearly killed, the boys come up with a plan for survival, using everything their father taught them to keep him alive.",2024-04-12,9.8533,6.092,717 +7838,708577,Like a Cat on a Highway 2,"Three years after her relationship with Giovanni, Monica is in prison and has to ask his ex for help.",2021-08-14,0.4794,6.089,347 +7839,8409,A Man Apart,"When Vetter's wife is killed in a botched hit organized by Diablo, he seeks revenge against those responsible. But in the process, Vetter and Hicks have to fight their way up the chain to get to Diablo but it's easier said than done when all Vetter can focus on is revenge.",2003-04-04,2.78,6.089,906 +7840,37786,Sex and the City 2,"Carrie, Charlotte, and Miranda are all married now, but they're still up for a little fun in the sun. When Samantha gets the chance to visit one of the most extravagant vacation destinations on the planet and offers to bring them all along, they surmise that a women-only retreat may be the perfect excuse to eschew their responsibilities and remember what life was like before they decided to settle down.",2010-05-26,4.7504,6.087,1665 +7841,11979,Queen of the Damned,"Lestat finds acceptance in a tattooed and pierced world, rekindling the desires of all-powerful Akasha.",2002-02-10,3.067,6.1,1097 +7842,9546,Ricochet,An attorney is terrorized by the criminal he put away years ago when he was a cop.,1991-10-04,1.4864,6.1,334 +7843,575417,On the Rocks,"Faced with sudden doubts about her marriage, a young New York mother teams up with her larger-than-life playboy father to tail her husband.",2020-10-02,1.4643,6.089,732 +7844,426543,The Nutcracker and the Four Realms,"When Clara’s mother leaves her a mysterious gift, she embarks on a journey to four secret realms—where she discovers her greatest strength could change the world.",2018-10-26,3.9786,6.086,2178 +7845,50204,Burke & Hare,Two 19th-century opportunists become serial killers so that they can maintain their profitable business supplying cadavers to an anatomist.,2010-10-29,1.9231,6.086,483 +7846,33909,Wall Street: Money Never Sleeps,"As the global economy teeters on the brink of disaster, a young Wall Street trader partners with disgraced former Wall Street corporate raider Gordon Gekko on a two tiered mission: To alert the financial community to the coming doom, and to find out who was responsible for the death of the young trader's mentor.",2010-09-20,4.2588,6.086,1583 +7847,3563,I Now Pronounce You Chuck & Larry,"Firefighters Chuck Ford and Larry Valentine are guy's guys, loyal to the core—which is why when widower Larry asks Chuck to pose as his lover so that he can get domestic partner benefits for his kids, his buddy agrees. However, things get dicey when a bureaucrat comes calling, and the boys are forced to present a picture of domestic bliss.",2007-07-12,4.6844,6.086,2412 +7848,395814,Rememory,The widow of a wise professor stumbles upon one of his inventions that's able to record and play a person's memory.,2017-09-08,1.7218,6.085,447 +7849,381518,Mindhorn,"A washed up actor best known for playing the title character in the 1980s detective show ""Mindhorn"" must work with the police when a serial killer says that he will only speak with Detective Mindhorn, whom he believes to be real.",2016-10-09,0.8365,6.085,305 +7850,296360,Love & Friendship,"From Jane Austen’s novella, the beautiful and cunning Lady Susan Vernon visits the estate of her in-laws to wait out colorful rumors of her dalliances and to find husbands for herself and her daughter. Two young men, handsome Reginald DeCourcy and wealthy Sir James Martin, severely complicate her plans.",2016-05-26,1.3579,6.1,560 +7851,228165,The SpongeBob Movie: Sponge Out of Water,"Burger Beard is a pirate who is in search of the final page of a magical book that makes any evil plan he writes in it come true, which happens to be the Krabby Patty secret formula. When the entire city of Bikini Bottom is put in danger, SpongeBob, Patrick, Mr. Krabs, Squidward, Sandy, and Plankton need to go on a quest that takes them to the surface. In order to get back the recipe and save their city, the gang must retrieve the book and transform themselves into superheroes.",2015-01-28,5.7691,6.085,2430 +7852,10908,Inferno,"Eddie Lomax is a drifter who has been in a suicidal funk since the death of his close friend Johnny. Riding his motorcycle into a small desert town where Johnny once lived, Lomax is confronted by a gang of toughs, who beat him and steal his bike. However, Lomax is not a man to take an injustice lying down, and soon he begins exacting a violent revenge on the men who stole his motorcycle, with local handyman Jubal Early lending a hand and several area ladies offering aid and comfort.",1999-09-25,3.0532,6.085,325 +7853,539181,Relic,"When elderly mother Edna inexplicably vanishes, her daughter rushes to the family's decaying home, finding clues of her increasing dementia scattered around the house in her absence.",2020-07-03,1.8007,6.084,771 +7854,284296,Top Five,"Though he began in stand-up comedy, Andre Allen hit the big-time as the star of a trilogy of action-comedies about a talking bear but now he wants to be taken seriously. His passion project about the Haitian Revolution, a movie called Uprize, was panned by the NY Times film critic. A couple days before the wedding to his reality star fiancée, he's forced to spend the day with Chelsea Brown, a profile writer for the New York Times. Unexpectedly, he opens up to her, and as they wind their way across New York, he tries to get back in touch with his comedic roots.",2014-12-12,1.4597,6.083,471 +7855,207932,Inferno,"After waking up in a hospital with amnesia, professor Robert Langdon and a doctor must race against time to foil a deadly global plot.",2016-10-13,4.5908,6.083,6378 +7856,170354,The Unlikely Prince,"Needing good PR, a snooty princess orchestrates a brief romance with an ordinary guy. But the schlub she picks proves more resourceful than expected.",2013-02-09,0.5431,6.083,654 +7857,15092,Crank: High Voltage,Chelios faces a Chinese mobster who has stolen his nearly indestructible heart and replaced it with a battery-powered ticker that requires regular jolts of electricity to keep working.,2009-04-16,5.4165,6.082,2964 +7858,10208,Muppets from Space,"When Gonzo's breakfast cereal tells him that he's the descendant of aliens from another planet, his attempts at extraterrestrial communication get him kidnapped by a secret government agency, prompting the Muppets to spring into action. It's hard to believe Gonzo's story at first, but Kermit and friends soon find themselves on an epic journey into outer space filled with plenty of intergalactic misadventures.",1999-07-14,1.8062,6.083,338 +7859,7288,Duplex,"When a young couple buys their dream home, they have no idea what the sweet little old lady upstairs is going to put them through!",2003-09-26,1.7685,6.083,1727 +7860,6068,Six Days Seven Nights,"In the South Pacific island of Makatea, career-driven magazine editor Robin Monroe is on a week-long vacation getaway with her boyfriend, Frank Martin. An emergency work assignment in neighboring Tahiti requires Robin to hire the cantankerous pilot Quinn Harris who had flown them to Makatea on a small transport plane. While flying, a powerful storm forces Quinn to make an emergency landing on a nearby deserted island. The dissimilar pair avoid each other at first, until they're forced to team up to escape from the island -- and some pirates who want their heads.",1998-06-12,3.4646,6.083,1522 +7861,928381,Restless,"After going to extremes to cover up an accident, a corrupt cop's life spirals out of control when he starts receiving threats from a mysterious witness.",2022-02-25,1.2241,6.082,398 +7862,545237,The Nest,"Rory is an ambitious entrepreneur who brings his American wife and kids to his native country, England, to explore new business opportunities. After abandoning the sanctuary of their safe American suburban surroundings, the family is plunged into the despair of an archaic '80s Britain and their unaffordable new life in an English manor house threatens to destroy the family.",2020-05-08,0.9872,6.082,358 +7863,10157,Police Academy 2: Their First Assignment,"Officer Carey Mahoney and his cohorts have finally graduated from the Police Academy and are about to hit the streets on their first assignment. Question is, are they ready to do battle with a band of graffiti-tagging terrorists? Time will tell, but don't sell short this cheerful band of doltish boys in blue.",1985-03-28,3.4407,6.082,1622 +7864,60803,The Suite Life Movie,"Cody and Zack are approached to join the Gemini Project, a high-tech research center studying the dynamics between twins. Shockingly, they find themselves interconnected in a whole new way! When one twin experiences something, the other twin feels it too. This newfound revelation helps them see eye to eye for the first time, and it puts them in more danger than they could have imagined.",2011-03-25,1.4077,6.081,521 +7865,11024,Scooby-Doo 2: Monsters Unleashed,"After solving their last mystery at Spooky Island, the Mystery Inc. gang is back in Coolsville, where they are being honored with their very own exhibit at the Coolsonian Criminology Museum. However, when a masked villain steals costumes of classic monsters on display and brings them to life, the gang must come out of retirement to solve the case.",2004-03-24,2.9916,6.081,2804 +7866,106021,Erased,A former agent of the CIA and his estranged daughter go on the run after his employers target them for assassination.,2012-08-23,2.0179,6.1,751 +7867,70577,Faces in the Crowd,"A horror-thriller centered on a woman living with ""face-blindness"" after surviving a serial killer's attack. As she lives with her condition, one in which facial features change each time she loses sight of them, the killer closes in.",2011-10-25,1.3097,6.079,499 +7868,33518,Alligator,"A baby alligator is flushed down a toilet and survives by eating discarded lab animals that have been injected with growth hormones. The now gigantic animal escapes the city sewers and goes on a rampage, pursued by a cop and a big-game hunter.",1980-07-02,1.5088,6.079,348 +7869,30974,High Lane,"A group of friends on a climbing vacation ignore warnings that the mountains are closed and start their ascent anyway. Collapsing bridges, bear traps and other dangers threaten to splinter the group… when the real hell begins and an unseen villain begins picking them off one by one.",2009-06-24,1.412,6.079,419 +7870,1140535,Presence,"A couple and their children move into a seemingly normal suburban home. When strange events occur, they begin to believe there is something else in the house with them. The presence is about to disrupt their lives in unimaginable ways.",2025-01-17,23.3964,6.1,489 +7871,740460,The Wannabes,"Daniel and Stéphane, two salesmen working in the same store but who cannot stand each other, decide despite everything to team up to participate in television games so they can pay their debts.",2022-02-09,0.3939,6.078,322 +7872,593395,Diabolik,"1960s, the city of Clerville. The forthcoming visit of heiress Eva Kant, who'll be bringing a famous pink diamond with her, catches the attention of Diabolik, the infallible and elusive thief whose real identity is unknown: while trying to steal the jewel, he finds himself bewitched by Eva's charm, a feeling she may be reciprocating. But the police, led by relentless Inspector Ginko, is rapidly closing in on him...",2021-12-16,3.7933,6.078,603 +7873,567970,Lost Girls,"When Mari Gilbert's daughter disappears, police inaction drives her own investigation into the gated Long Island community where Shannan was last seen. Her search brings attention to over a dozen murdered prostitutes.",2020-01-28,1.5084,6.078,723 +7874,451955,Double Lover,"Chloé, a fragile young woman, falls in love with her psychoanalyst, Paul. A few months later she moves in with him, but soon discovers that her lover is concealing a part of his identity.",2017-05-26,3.5374,6.1,538 +7875,318922,Kill Your Friends,"A&R man Steven Stelfox is slashing and burning his way through the music business, a world where 'no one knows anything' and where careers are made and broken by chance and the fickle tastes of the general public. Fuelled by greed, ambition and inhuman quantities of drugs, Stelfox lives the dream, as he searches for his next hit record.",2015-11-06,1.4142,6.078,314 +7876,2268,The Golden Compass,"After overhearing a shocking secret, precocious orphan Lyra Belacqua trades her carefree existence roaming the halls of Jordan College for an otherworldly adventure in the far North, unaware that it's part of her destiny.",2007-12-04,5.0125,6.078,4658 +7877,748230,Salem's Lot,Author Ben Mears returns to his childhood home of Jerusalem's Lot only to discover his hometown is being preyed upon by a bloodthirsty vampire.,2024-10-03,4.2552,6.077,571 +7878,88751,Journey to the Center of the Earth,"On a quest to find out what happened to his missing brother, a scientist, his nephew and their mountain guide discover a fantastic and dangerous lost world in the center of the earth.",2008-07-10,6.3213,6.078,4946 +7879,76640,The Last Stand,"Ray Owens is sheriff of the quiet US border town of Sommerton Junction after leaving the LAPD following a bungled operation. Following his escape from the FBI, a notorious drug baron, his gang, and a hostage are heading toward Sommerton Junction where the police are preparing to make a last stand to intercept them before they cross the border. Owens is reluctant to become involved but ultimately joins in with the law enforcement efforts.",2013-01-12,8.1043,6.077,2841 +7880,18890,We're Back! A Dinosaur's Story,"Captain New Eyes travels back in time and feeds dinosaurs his Brain Grain cereal, which makes them intelligent and non-violent. They agree to go to the ""Middle Future"" in order to grant the wishes of children in New York City. They are to meet Dr. Bleeb of the Museum of Natural History, but get sidetracked with their new children friends and run into the Captain's evil brother, Professor Screweyes.",1993-11-24,2.1222,6.1,421 +7881,9268,Eraser,A Witness Protection specialist becomes suspicious of his co-workers when dealing with a case involving high-tech weapons.,1996-06-21,4.6169,6.077,1898 +7882,15657,Tarzan II,"When one of his missteps puts his family in jeopardy, Tarzan decides they would be better off without him.",2005-06-13,3.0643,6.1,1189 +7883,10478,Tin Cup,A washed up golf pro working at a driving range tries to qualify for the US Open in order to win the heart of his succesful rival's girlfriend.,1996-08-16,1.7183,6.076,546 +7884,1249,Hollywoodland,"When Hollywood superstar George Reeves dies in his home, private detective Louis Simo is hired to investigate his death and gets caught in a web of lies involving a big studio executive's wife. Based on a true story.",2006-08-31,2.6335,6.076,422 +7885,141052,Justice League,"Fuelled by his restored faith in humanity and inspired by Superman's selfless act, Bruce Wayne and Diana Prince assemble a team of metahumans consisting of Barry Allen, Arthur Curry and Victor Stone to face the catastrophic threat of Steppenwolf and the Parademons who are on the hunt for three Mother Boxes on Earth.",2017-11-15,9.82,6.075,13251 +7886,20106,Mais qui a tué Pamela Rose ?,"FBI Agents Bullit and Riper investigate the murder of a young dancer called Pamela Rose, found dead in her motel room in Bornsville, a small american town. Despite their differences, they must team up: the local police is hostile and they can only count on themselves to solve the crime. They meet Ginger, Pamela's best friend, and discover soon enough she knows more than she says.",2003-06-04,0.8622,6.075,334 +7887,13570,Tourist Trap,"After their car breaks down, a group of young travelers find themselves stranded at a roadside museum run by the enigmatic Mr. Slausen and populated by his collection of life-like wax mannequins.",1979-03-14,1.7262,6.075,319 +7888,522406,Flashback,"Frederick Fitzell is living his best life—until he starts having horrific visions of Cindy, a girl who vanished in high school. After reaching out to old friends with whom he used to take a mystery drug called Mercury, Fredrick realizes the only way to stop the visions lies deep within his own memories, so he embarks on a terrifying mental odyssey to learn the truth.",2020-10-08,1.807,6.074,311 +7889,166271,Haunter,A teenager is stuck in a time loop that is not quite the same each time. She must uncover the truth but her actions have consequences for herself and others.,2013-10-17,1.6511,6.074,595 +7890,10544,Ned Kelly,"After getting threatened by Kelly's friends and family, Constable Fitzpatrick places the blame on Ned Kelly and exaggerates what happened. With the biggest ever award available, Kelly and his gang set into the wild, to remain hidden from everyone who seeks them. Even if it means having his family arrested, the members of the Kelly Gang stay hidden and plan a way to get their names cleared.",2003-03-22,1.7291,6.074,371 +7891,492355,Just Believe,"The owner of a dilapidated B&B has an idea: in order to dodge bankruptcy, he has to turn his business into a place of worship—a tax-free activity, where he'll host pilgrims in exchange for a generous donation. He joins forces with an unscrupulous accountant and a failed novelist to come up with his new religion.",2018-03-29,0.6007,6.073,349 +7892,8324,Fast Food Nation,A dramatised examination of the health issues and social consequences of America's love affair with fast food.,2006-11-17,1.0299,6.073,378 +7893,7342,Carrie,"An awkward, telekinetic teenage girl's lonely life is dominated by relentless bullying at school and an oppressive religious fanatic mother at home. When her tormentors pull a humiliating prank at the senior prom, she unleashes a horrifying chaos on everyone, leaving nothing but destruction in her wake.",2002-11-04,2.4242,6.073,513 +7894,667216,Infinity Pool,"While staying at an isolated island resort, James and Em are enjoying a perfect vacation of pristine beaches, exceptional staff, and soaking up the sun. But guided by the seductive and mysterious Gabi, they venture outside the resort grounds and find themselves in a culture filled with violence, hedonism, and untold horror. A tragic accident leaves them facing a zero tolerance policy for crime: either you'll be executed, or, if you’re rich enough to afford it, you can watch yourself die instead.",2023-01-27,2.7815,6.072,898 +7895,6466,Freddy vs. Jason,"Freddy enlists Jason to kill on his behalf on Elm Street, after realizing that he can't haunt dreams because people no longer fear him.",2003-08-15,4.8865,6.072,2687 +7896,4283,Primeval,A news team is sent to Burundi to capture and bring home a legendary 25-foot crocodile. Their difficult task turns potentially deadly when a warlord targets them for death.,2007-01-12,1.7342,6.1,424 +7897,598133,The F**k-It List,"After a prank blows up a studious high school senior's life, he shares a list of certain things he wishes he'd done differently — and maybe still can.",2020-07-01,1.4615,6.071,491 +7898,417643,In Darkness,A blind musician hears a murder committed in the apartment upstairs from hers that sends her down a dark path into London's gritty criminal underworld.,2018-05-25,1.1579,6.1,497 +7899,13243,Meet Bill,A mild-mannered bank executive mentors a teenage con artist and tries to make a career change as a doughnut merchant.,2007-09-07,1.9884,6.071,339 +7900,12220,The Story of Us,Ben and Katie Jordan are a married couple who go through hard times in fifteen years of marriage.,1999-10-14,1.2953,6.1,330 +7901,11052,Yu-Gi-Oh! The Movie,"After the conclusion of the Battle City Tournament, deep below the sands of Egypt, an ancient evil has awakened. Anubis, who was defeated centuries ago by Yugi’s mysterious alter ego – the ancient Pharaoh – has returned for revenge. Wielding the power of the Eighth Millennium Item, Anubis is determined to destroy Yugi and take over the world.",2004-08-13,1.9121,6.071,353 +7902,10128,Alien Nation,"A few years from now, Earth will have the first contact with an alien civilization. These aliens, known as Newcomers, slowly begin to be integrated into human society after years of quarantine.",1988-10-07,1.3344,6.07,315 +7903,8130,Desperately Seeking Susan,A bored New Jersey suburban housewife's fascination with a free-spirited woman she has read about in the personal columns leads to her being mistaken for the woman herself and into a chaotic adventure of amnesia and self-discovery.,1985-03-29,1.5829,6.1,463 +7904,342521,Keanu,Friends hatch a plot to retrieve a stolen cat by posing as drug dealers for a street gang.,2016-04-29,2.7541,6.1,1080 +7905,29425,The Crazies,"Citizens of a small town are infected by a biological weapon that causes its victims to become violently insane. As uninfected citizens struggle to survive, the military readies its own response.",1973-03-16,1.1644,6.069,379 +7906,13975,In the Electric Mist,"Lt. Dave Robicheaux, a detective in New Iberia, Louisiana, is trying to link the murder of a local hooker to New Orleans mobster Julie (Baby Feet) Balboni, who is co-producer of a Civil War film. At the same time, after Elrod Sykes, the star of the film, reports finding another corpse in the Atchafalaya Swamp near the movie set, Robicheaux starts another investigation, believing the corpse to be the remains of a black man who he saw being murdered 35 years before.",2009-04-15,1.8062,6.069,435 +7907,198287,After the Dark,"At an international school in Jakarta, a philosophy teacher challenges his class of twenty graduating seniors to choose which ten of them would take shelter underground and reboot the human race in the event of a nuclear apocalypse.",2013-07-06,2.1918,6.068,697 +7908,290999,Wyrmwood: Road of the Dead,"Barry is a talented mechanic and family man whose life is torn apart on the eve of a zombie apocalypse. His sister, Brooke, is kidnapped by a sinister team of gas-mask wearing soldiers and experimented on by a psychotic doctor. While Brooke plans her escape Barry goes out on the road to find her and teams up with Benny, a fellow survivor – together they must arm themselves and prepare to battle their way through hordes of flesh-eating monsters in a harsh Australian bushland.",2014-09-19,1.4532,6.067,467 +7909,39210,Somewhere,"After withdrawing to the Chateau Marmont, a passionless Hollywood actor reexamines his life when his eleven-year-old daughter surprises him with a visit.",2010-09-03,1.4181,6.067,764 +7910,10424,Jennifer Eight,"John Berlin, a big-city cop from LA moves to a small-town police force and immediately finds himself investigating a murder. Using theories rejected by his colleagues, Berlin meets a young blind woman named Helena, whom he is attracted to. Meanwhile, a serial killer is on the loose—and only John knows it.",1992-11-06,1.6229,6.067,372 +7911,10137,Stuart Little,"When the Littles adopt Stuart, the mouse, George is initially unwelcoming to his new brother, and the family cat, Snowbell, is even less enthusiastic. Stuart resolves to face these difficulties with as much pluck and courage as he can muster.",1999-12-17,4.9895,6.067,4473 +7912,9298,Ali G Indahouse,"Ali G unwittingly becomes a pawn in the evil Chancellor's plot to overthrow the Prime Minister of Great Britain. However, instead of bringing the Prime Minister down, Ali is embraced by the nation as the voice of youth and 'realness', making the Prime Minister and his government more popular than ever.",2002-03-21,2.4995,6.067,1411 +7913,4482,French Twist,"After learning of her husband's infidelities, a housewife invites an itinerant lesbian to move in with them. None of their lives will ever be the same again.",1995-01-18,1.1558,6.1,312 +7914,1636,Bedazzled,"Elliot Richards, a socially awkward IT worker, is given seven wishes to get the girl of his dreams when he meets a very seductive Satan. The catch: his soul. Some of his wishes include being a 7 foot basketball star, a wealthy, powerful man, and a sensitive caring guy. But, as could be expected, the Devil puts her own little twist on each of his fantasies.",2000-10-19,3.8064,6.067,1967 +7915,534,Terminator Salvation,"All grown up in post-apocalyptic 2018, John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears, his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.",2009-05-20,6.4087,6.1,6684 +7916,168138,The Last Days,"A mysterious epidemic spreads across the planet. Humanity develops an irrational fear of open spaces that causes instant death. Soon, the world population is trapped inside buildings. As Barcelona descends into chaos, Marc sets off on a quest to find Julia, his missing girlfriend, without ever going outside.",2013-03-27,1.1526,6.066,356 +7917,152760,The Monuments Men,"Based on the true story of the greatest treasure hunt in history, The Monuments Men is an action drama focusing on seven over-the-hill, out-of-shape museum directors, artists, architects, curators, and art historians who went to the front lines of WWII to rescue the world’s artistic masterpieces from Nazi thieves and return them to their rightful owners. With the art hidden behind enemy lines, how could these guys hope to succeed?",2014-01-24,3.0426,6.066,3673 +7918,119283,Parker,"A thief with a unique code of professional ethics is double-crossed by his crew and left for dead. Assuming a new disguise and forming an unlikely alliance with a woman on the inside, he looks to hijack the score of the crew's latest heist.",2013-01-23,4.9697,6.066,3125 +7919,116811,Berberian Sound Studio,"In the 1970s, a British sound technician is brought to Italy to work on the sound effects for a gruesome horror film. His nightmarish task slowly takes over his psyche, driving him to confront his own past.",2012-08-30,1.1163,6.1,374 +7920,35791,Resident Evil: Afterlife,"In a world ravaged by a virus infection, turning its victims into the Undead, Alice continues on her journey to find survivors and lead them to safety. Her deadly battle with the Umbrella Corporation reaches new heights, but Alice gets some unexpected help from an old friend. A new lead that promises a safe haven from the Undead takes them to Los Angeles, but when they arrive the city is overrun by thousands of Undead - and Alice and her comrades are about to step into a deadly trap.",2010-09-09,0.3249,6.066,3993 +7921,13252,Cleaner,"Single father and former cop Tom Cutler has an unusual occupation: he cleans up death scenes. But when he's called in to sterilize a wealthy suburban residence after a brutal shooting, Cutler is shocked to learn he may have unknowingly erased crucial evidence, entangling himself in a dirty criminal cover-up.",2007-09-11,4.0203,6.066,863 +7922,858017,I Saw the TV Glow,"Teenager Owen is just trying to make it through life in the suburbs when his classmate Maddy introduces him to a mysterious TV show — a vision of a supernatural world beneath their own. In the pale glow of the television, Owen’s view of reality begins to crack.",2024-05-03,4.1618,6.065,527 +7923,829051,About My Father,"Encouraged by his girlfriend Ellie, Sebastian and his Italian immigrant father, Salvo, spend the 4th of July weekend with her wealthy and exceedingly eccentric family. The gathering soon develops into a culture clash, allowing father and son to discover the true meaning of family.",2023-05-25,2.5728,6.065,360 +7924,437670,Suck Me Shakespeer 3,A bank robber becomes a teacher after being released from prison and finds himself at the center of a number of crazy adventures.,2017-10-26,1.7485,6.065,469 +7925,10022,The Pacifier,Navy SEAL Shane Wolfe is handed a new assignment: Protect the five Plummer kids from enemies of their recently deceased father -- a government scientist whose top-secret experiment remains hidden in the kids' house.,2005-03-04,5.9469,6.065,3105 +7926,434203,Newness,"In contemporary Los Angeles, two millennials navigating a social media–driven hookup culture begin a relationship that pushes both emotional and physical boundaries.",2017-11-03,2.4822,6.064,606 +7927,1129598,Prey,A young couple is compelled to leave their Christian missionary station in the Kalahari Desert after being threatened with death by an extremist militant gang. After crashing their aircraft they must battle man and beast for their lives.,2024-03-15,9.1665,6.063,333 +7928,616820,Halloween Ends,"Four years after the events of Halloween in 2018, Laurie has decided to liberate herself from fear and rage and embrace life. But when a young man is accused of killing a boy he was babysitting, it ignites a cascade of violence and terror that will force Laurie to finally confront the evil she can’t control, once and for all.",2022-10-12,4.4569,6.1,1871 +7929,13997,Black Sheep,"When dignified Albert Donnelly runs for Governor, his team moves to keep his slow-witted and klutzy younger brother, Mike, out of the eye of the media. To baby-sit Mike, the campaign assigns sarcastic Steve, who gets the experience of a lifetime when he tries to take Mike out of town during the election.",1996-02-01,1.9778,6.063,427 +7930,9893,Sleepover,"As their first year of high school looms ahead, best friends Julie, Hannah, Yancy and Farrah have one last summer sleepover. Little do they know they're about to embark on the adventure of a lifetime. Desperate to shed their nerdy status, they take part in a night-long scavenger hunt that pits them against their popular archrivals. Everything under the sun goes on -- from taking Yancy's father's car to sneaking into nightclubs!",2004-07-09,2.4846,6.063,492 +7931,9415,Murder at 1600,"A secretary is found dead in a White House bathroom during an international crisis, and Detective Harlan Regis is in charge of the investigation. Despite resistance from the Secret Service, Regis partners with agent Nina Chance. As political tensions rise, they learn that the crime could be part of an elaborate cover-up. Framed as traitors, the pair, plus Regis' partner, break into the White House in order to expose the true culprit.",1997-04-18,2.1577,6.063,552 +7932,849,Krull,A prince and a fellowship of companions set out to rescue his bride from a fortress of alien invaders who have arrived on their home planet.,1983-07-29,2.3791,6.1,578 +7933,11099,The Final Cut,"Set in a world with memory implants, Alan Hakman is a 'cutter'—someone with the power of final edit over people's recorded histories—but his latest assignment puts him in great danger.",2004-10-15,1.1521,6.062,722 +7934,4961,Mimic,"A disease carried by common cockroaches is killing Manhattan children. In an effort to stop the epidemic an entomologist, Susan Tyler, creates a mutant breed of insect that secretes a fluid to kill the roaches. This mutant breed was engineered to die after one generation, but three years later Susan finds out that the species has survived and evolved into a large, gruesome monster that can mimic human form.",1997-08-22,2.8551,6.1,1161 +7935,216282,Into the Storm,"As a new day begins in the town of Silverton, its residents have little reason to believe it will be anything other than ordinary. Mother Nature, however has other plans. In the span of just a few hours, an unprecedented onslaught of powerful tornadoes ravages Silverton. Storm trackers predict that the worst is still to come, as terrified residents seek shelter, and professional storm-chasers run toward the danger, hoping to study the phenomenon close up and get a once-in-a-lifetime shot.",2014-08-06,3.1111,6.061,2077 +7936,9208,Broken Arrow,"When rogue stealth-fighter pilot Vic Deakins deliberately drops off the radar while on maneuvers, the Air Force ends up with two stolen nuclear warheads -- and Deakins's co-pilot, Riley Hale, is the military's only hope for getting them back. Traversing the deserted canyons of Utah, Hale teams with park ranger Terry Carmichael to put Deakins back in his box.",1996-02-09,2.7029,6.1,1579 +7937,8850,The Shadow,"Based on the 1930s comic strip, The Shadow is put up against his archenemy Shiwan Khan, who plans to take over the world by holding a city to ransom using an atom bomb. Using his powers of invisibility and ""the power to cloud men's minds"", The Shadow comes blazing to the rescue with explosive results.",1994-07-01,2.4219,6.061,537 +7938,20,My Life Without Me,A fatally ill mother with only two months to live creates a list of things she wants to do before she dies without telling her family of her illness.,2003-03-07,2.2702,6.063,477 +7939,652004,The Wolf of Snow Hollow,"Terror grips a small mountain town as bodies are discovered after each full moon. Losing sleep, raising a teenage daughter, and caring for his ailing father, officer Marshall struggles to remind himself there's no such thing as werewolves.",2020-10-23,1.6692,6.06,456 +7940,524247,The Intruder,A psychological thriller about a young married couple who buys a beautiful Napa Valley house on several acres of land only to find that the man they bought it from refuses to let go of the property.,2019-05-03,2.1148,6.06,591 +7941,345922,Fist Fight,"When one school teacher gets the other fired, he is challenged to an after-school fight.",2017-02-16,1.7958,6.06,1263 +7942,9085,Harlem Nights,"'Sugar' Ray is the owner of an illegal casino and must contend with the pressure of vicious gangsters and corrupt police who want to see him go out of business. In the world of organised crime and police corruption in the 1920s, any dastardly trick is fair.",1989-11-17,1.607,6.06,323 +7943,5852,Angel Eyes,"A story about a seemingly unlikely couple who cross paths under life-threatening circumstances as though they are destined not only to meet but to save each other's lives. Not once, but twice.",2001-05-18,1.5984,6.1,447 +7944,48340,Sanctum,"Master diver Frank McGuire has explored the South Pacific's Esa-ala Caves for months. But when his exit is cut off in a flash flood, Frank's team—including 17-year-old son Josh and financier Carl Hurley are forced to radically alter plans. With dwindling supplies, the crew must navigate an underwater labyrinth to make it out.",2011-02-03,2.1714,6.059,1089 +7945,406761,Hotel Artemis,"Los Angeles, June 21st, 2028. While the streets are being torn apart by riots, the Nurse, who runs a clandestine hospital for criminals in the penthouse of the Artemis, a closed old hotel, has a rough night dealing with troublemaker clients: thieves, assassins, someone from the past and the one who owns the place and the whole city.",2018-06-07,2.3405,6.058,1597 +7946,383709,Wonderstruck,The story of a young boy in the Midwest is told simultaneously with a tale about a young girl in New York from fifty years ago as they both seek the same mysterious connection.,2017-10-13,1.485,6.1,412 +7947,157353,Transcendence,"Two leading computer scientists work toward their goal of Technological Singularity, as a radical anti-technology organization fights to prevent them from creating a world where computers can transcend the abilities of the human brain.",2014-04-16,4.2721,6.058,5549 +7948,56339,Whatsoeverly,"Corrupt and sleazy entrepreneur Cetto La Qualunque comes back to Italy and ""jumps into politics"" lest his law-abiding opponent, Giovanni De Santis, is elected as mayor.",2011-01-21,0.4715,6.058,533 +7949,671043,Spoiled Brats,"The billionaire is tired of the whims of his own children and decides to teach them a lesson. He announces to them that he has become bankrupt. Now spoiled teenagers will have to do what they have never done: go to work, learn to love and value life.",2021-09-15,2.1957,6.057,576 +7950,664469,Amsterdam,"In the 1930s, three friends—a doctor, a nurse, and an attorney—witness a murder, become suspects themselves and uncover one of the most outrageous plots in American history.",2022-09-27,3.0837,6.057,1655 +7951,335988,Transformers: The Last Knight,"Humans and Transformers are at war. Optimus Prime is gone. The key to saving our future lies buried in the secrets of the past, in the hidden history of Transformers on Earth. Saving our world falls upon the shoulders of an unlikely alliance: Cade Yeager; Bumblebee; an English Lord; and an Oxford Professor.",2017-06-16,8.4108,6.057,6432 +7952,13700,Home on the Range,"When a greedy outlaw schemes to take possession of the ""Patch Of Heaven"" dairy farm, three determined cows, a karate-kicking stallion and a colorful corral of critters join forces to save their home. The stakes are sky-high as this unlikely animal alliance risk their hides and match wits with a mysterious band of bad guys.",2004-04-02,4.745,6.057,2091 +7953,10480,Nurse Betty,"What happens when a person decides that life is merely a state of mind? If you're Betty, a small-town waitress and soap opera fan from Fair Oaks, Kansas, you refuse to believe that you can't be with the love of your life just because he doesn't really exist. After all, life is no excuse for not living. Traumatized by a savage event, Betty enters into a fugue state that allows -- even encourages -- her to keep functioning... in a kind of alternate reality.",2000-08-30,1.9204,6.057,410 +7954,840882,The Weekend Away,"When her best friend vanishes during a girls' trip to Croatia, Beth races to figure out what happened. But each clue yields another unsettling deception.",2022-03-03,1.8259,6.056,745 +7955,419511,Mister Happiness,A slacker switches up his cleaning job by pretending to be a mental coach's assistant and consults an injured ice skater who has lost her confidence.,2017-01-01,0.5008,6.1,342 +7956,37770,Fantozzi to the Rescue,Fantozzi is now retired but continues to go to the office where it is held up as a fine example of employees intending to do career.,1990-12-21,0.4147,6.1,351 +7957,10396,Tequila Sunrise,"In a seaside California town, best friends Mac and Nick are on opposite sides of the law. Mac is a former drug dealer trying to clean up his act, while Nick is a high-profile detective trying to take down a Mexican drug lord named Carlos. Soon Nick's loyalties are put to the test when he begins an affair with restaurateur Jo Ann -- a love interest of Mac's -- unwittingly leading his friend into a police-orchestrated trap.",1988-12-02,1.9486,6.1,531 +7958,785985,The Takedown,"Ousmane Diakité and François Monge are two cops with very different styles, backgrounds and careers. The unlikely pair are reunited once again for a new investigation that takes them across France. What seemed to be a simple drug deal turns out to be a much bigger criminal case wrapped in danger and unexpected comedy.",2022-05-06,1.3765,6.055,491 +7959,701175,The Paramedic,"Unable to face his new reality in a wheelchair, Ángel develops a deadly obsession with the woman who left him and unleashes a sinister revenge plot.",2020-09-16,2.4265,6.1,653 +7960,605804,The Wretched,"A rebellious teenage boy, struggling with his parents' imminent divorce, encounters a terrifying evil after his next-door neighbor becomes possessed by an ancient witch that feasts on children.",2019-12-15,1.5296,6.055,642 +7961,508018,The Warning,Ten-year-old Nico receives a threatening letter and now his life is in danger. No one seems to believe him except one person that he doesn't know.,2018-03-10,1.1159,6.055,379 +7962,10170,The Russia House,"Barley Scott Blair, a Lisbon-based editor of Russian literature who unexpectedly begins working for British intelligence, is commissioned to investigate the purposes of Dante, a dissident scientist trapped in the decaying Soviet Union that is crumbling under the new open-minded policies.",1990-12-21,2.1229,6.1,311 +7963,8866,The Truth About Cats & Dogs,A successful veterinarian and radio show host with low self-esteem asks her model friend to impersonate her when a handsome man wants to see her.,1996-04-26,1.8642,6.055,327 +7964,831946,Interceptor,A U.S. Army Captain uses her years of tactical training to save humanity from sixteen nuclear missiles launched at the U.S. as a violent attack threatens her remote missile interceptor station.,2022-05-26,3.5085,6.1,775 +7965,146229,Kristy,"When a college girl who is alone on campus over the Thanksgiving break is targeted by a group of outcasts, she must conquer her deepest fears to outwit them and fight back.",2014-08-07,0.9555,6.054,426 +7966,70821,Cyberbully,A woman tries to help her teenage daughter when she becomes the victim of online bullying.,2011-11-10,0.9959,6.1,467 +7967,10351,Wishmaster,"The Djinn having been released from his ancient prison seeks to capture the soul of the woman who discovered him, thereby opening a portal and freeing his fellow Djinn to take over the earth.",1997-09-19,2.7121,6.054,644 +7968,5820,The Sentinel,"Veteran Secret Service agent Pete Garrison investigates a colleague's murder and is subsequently framed as a mole in an assassination attempt on the President due to the machinations of a blackmailer who knows the secret he is hiding. Disgraced, dismissed, and now a fugitive with two relentless federal investigators hot on his heels, Garrison must both clear his name and save the president from assassination.",2006-04-19,3.7538,6.054,840 +7969,10663,The Waterboy,Bobby Boucher is a water boy for a struggling college football team. The coach discovers Boucher's hidden rage makes him a tackling machine whose bone-crushing power might vault his team into the playoffs.,1998-11-06,3.3617,6.053,1900 +7970,10411,The Distinguished Gentleman,"A Florida con man uses the recent death of the long time Congressman from his district, who he just happens to share a last name with, to get elected to his version of paradise, the U.S. Congress, where the money flows from lobbyists.",1992-12-04,1.1262,6.1,311 +7971,9416,Money Talks,"Sought by police and criminals, a small-time huckster makes a deal with a TV newsman for protection.",1997-08-22,1.5696,6.1,397 +7972,9279,Jingle All the Way,"Howard Langston, a salesman for a mattress company, is constantly kept busy at his job, disappointing his son. After he misses his son's karate exposition, Howard vows to make it up to him by buying an action figure of his son's favorite television hero for Christmas. Unfortunately for Howard, it is Christmas Eve, and every store is sold out of Turbo Man. Now, Howard must travel all over town and compete with everybody else to find a Turbo Man action figure.",1996-11-21,3.464,6.053,2770 +7973,574861,No Filter,"Beatrice celebrates with her family the release of her book: she tells about the accident of her husband Frederic. He became blind and without filter - always so funny and seductive, he is totally unpredictable. But this book, hymn-to-life, will turn into a joyful fist because if Beatrice changed the names, each of his friends seeks to find his character. The book awakens secret jealousies, while the group of friends and family pitch.",2019-04-03,1.1295,6.052,306 +7974,451184,Wasp Network,"Havana, Cuba, 1990. René González, an airplane pilot, unexpectedly flees the country, leaving behind his wife Olga and his daughter Irma, and begins a new life in Miami, where he becomes a member of an anti-Castro organization.",2020-01-29,1.9844,6.052,387 +7975,188161,A Million Ways to Die in the West,"As a cowardly farmer begins to fall for the mysterious new woman in town, he must put his new-found courage to the test when her husband, a notorious gun-slinger, announces his arrival.",2014-05-22,4.2988,6.1,4208 +7976,25769,Carriers,"A deadly virus has spread across the globe. Contagion is everywhere, no one is safe, and no one can be trusted. Four friends race through the back roads of the American West on their way to a secluded utopian beach in the Gulf of Mexico where they could peacefully wait out the pandemic. Their plans take a grim turn when their car breaks down on an isolated road starting a chain of events that will seal their fates.",2009-09-04,3.1857,6.052,1430 +7977,41215,Black Death,"As the plague decimates medieval Europe, rumours circulate of a village immune from the plague. There is talk of a necromancer who leads the village and is able to raise the dead. A fearsome knight joined by a cohort of soldiers and a young monk are charged by the church to investigate. Their journey is filled with danger, but it's upon entering the village that their true horror begins.",2010-06-07,1.83,6.051,902 +7978,31203,Little Nicholas,"Nicolas has a happy existence, parents who love him, a great group of friends with whom he has great fun, and all he wants is that nothing changes. However, one day, he overhears a conversation that leads him to believe that his life might change forever, his mother is pregnant! He panics and envisions the worst.",2009-09-30,1.5109,6.051,1134 +7979,9644,National Lampoon's Loaded Weapon 1,An LA detective is murdered because she has microfilm with the recipe to make cocaine cookies. Two cops partner to find and stop the fiends before they can dope the nation by distributing their wares via the 'Wilderness Girls' cookie drive.,1993-02-04,1.4778,6.1,750 +7980,548473,Color Out of Space,"The Gardner family moves to a remote farmstead in rural New England to escape the hustle of the 21st century. They are busy adapting to their new life when a meteorite crashes into their front yard, melts into the earth, and infects both the land and the properties of space-time with a strange, otherworldly colour. To their horror, the family discovers this alien force is gradually mutating every life form that it touches—including them.",2020-01-24,3.2116,6.05,1553 +7981,458305,Vivarium,"A young woman and her fiancé are in search of the perfect starter home. After following a mysterious real estate agent to a new housing development, the couple finds themselves trapped in a maze of identical houses and forced to raise an otherworldly child.",2019-09-07,3.3712,6.05,2268 +7982,426238,Beach Rats,"On the outskirts of Brooklyn, Frankie, an aimless teenager, suffocates under the oppressive glare cast by his family and a toxic group of delinquent friends. Struggling with his own identity, Frankie begins to scour hookup sites for older men.",2017-08-25,1.9361,6.05,548 +7983,316023,Mike and Dave Need Wedding Dates,"Mike and Dave are young, adventurous, fun-loving brothers who tend to get out of control at family gatherings. When their sister Jeanie reveals her Hawaiian wedding plans, the rest of the Stangles insist that the brothers bring respectable dates. After placing an ad on Craigslist, the siblings decide to pick Tatiana and Alice, two charming and seemingly normal women. Once they arrive on the island, however, Mike and Dave realize that their companions are ready to get wild and party.",2016-07-07,2.7839,6.05,2511 +7984,205588,Our Kind of Traitor,"A young Oxford academic and his attorney girlfriend holiday in Morocco. They bump into a Russian millionaire who owns a peninsula and a diamond watch. He wants a game of tennis. What else he wants propels the lovers on a tortuous journey to the City of London and its unholy alliance with Britain's intelligence establishment, to Paris and the Alps.",2016-05-05,1.4309,6.05,574 +7985,32293,The Cheetah Girls,"A four-member teen girl group named the Cheetah Girls go to a Manhattan High School for the Performing Arts and try to become the first freshmen to win the talent show in the school's history. During the talent show auditions, they meet a big-time producer named Jackal Johnson, who tries to make the group into superstars, but the girls run into many problems.",2003-08-15,1.7107,6.0,478 +7986,24913,April Fool's Day,"As soon as Muffy St. John and her college friends arrive on her parents' secluded island, someone starts trimming the guest list... one murder at a time.",1986-03-27,1.4065,6.05,358 +7987,10516,The Gendarme and the Creatures from Outer Space,"The bungling inspector Cruchot finds himself trying to save the residents of St. Tropez from some oil-drinking humanoid aliens. The only way to tell the aliens from the real people, besides their constant thirst for oil-products, is that they sound like empty garbage cans when you touch them. Chaos is ahead.",1979-01-31,1.5128,6.0,633 +7988,9989,Antitrust,A computer programmer's dream job at a hot Portland-based firm turns nightmarish when he discovers his boss has a secret and ruthless means of dispatching anti-trust problems.,2001-01-11,2.0616,6.05,539 +7989,36670,Never Say Never Again,"James Bond returns as the secret agent 007 to battle the evil organization SPECTRE. Bond must defeat Largo, who has stolen two atomic warheads for nuclear blackmail. But Bond has an ally in Largo's girlfriend, the willowy Domino, who falls for Bond and seeks revenge.",1983-10-07,5.0078,6.049,1509 +7990,23488,Dorian Gray,"Seduced into the decadent world of Lord Henry Wotton, handsome young aristocrat Dorian Gray becomes obsessed with maintaining his youthful appearance, and commissions a special portrait that will weather the winds of time while he remains forever young. When Gray's obsession spirals out of control, his desperate attempts to safeguard his secret turn his once-privileged life into a living hell.",2009-09-09,2.6448,6.049,2161 +7991,820912,Persuasion,"Living with her snobby family on the brink of bankruptcy, Anne Elliot is an unconforming woman with modern sensibilities. When Frederick Wentworth - the dashing one she once sent away - crashes back into her life, Anne must choose between putting the past behind her or listening to her heart when it comes to second chances.",2022-07-01,1.7576,6.044,611 +7992,12589,Jimmy Neutron: Boy Genius,"Jimmy Neutron is a boy genius and way ahead of his friends, but when it comes to being cool, he's a little behind. All until one day when his parents, and parents all over Earth are kidnapped by aliens, it's up to him to lead all the children of the world to rescue their parents.",2001-12-14,3.2567,6.048,948 +7993,12088,Fortress,"In the future, the inmates of a private underground prison are computer-controlled with cameras, dream readers, and devices that can cause pain or death. John and his illegally pregnant wife Karen are locked inside ""The Fortress"" but are determined to escape before the birth of their baby.",1992-12-18,2.0447,6.0,673 +7994,10186,The Rocker,"In the 1980s, a drummer is abandoned by his band just before they become rock superstars. Twenty years later, the drummer sees his second chance at stardom arise when he is asked to perform with his teenage nephew's high school rock band.",2008-08-20,1.4852,6.048,600 +7995,254194,Starry Eyes,A hopeful young starlet uncovers the ominous origins of the Hollywood elite and enters into a deadly agreement in exchange for fame and fortune.,2014-07-29,1.4482,6.047,466 +7996,183836,The Brats,"Newly engaged, Thomas meets his future father-in-law Gilbert, who has been married for 30 years to Suzanne. Disillusioned Gilbert is convinced that his marriage has meant he's missed out on life. He persuades Thomas not to marry his daughter Lola and encourages him to drop everything else in his life as well. The two men then throw themselves into a new brats' life full of adventure, convinced that freedom is elsewhere. But at what cost do we rediscover our adolescent dreams?",2013-04-17,1.2729,6.047,542 +7997,819876,Crimes of the Future,"With his partner, a celebrity performance artist publicly showcases the metamorphosis of his organs in avant-garde performances. An investigator from the National Organ Registry obsessively tracks their movements, which is when a mysterious group is revealed... Their mission — to use the artist's notoriety to shed light on the next phase of human evolution.",2022-05-25,2.2528,6.046,1163 +7998,308531,Teenage Mutant Ninja Turtles: Out of the Shadows,"After supervillain Shredder escapes custody, he joins forces with mad scientist Baxter Stockman and two dimwitted henchmen, Bebop and Rocksteady, to unleash a diabolical plan to take over the world. As the Turtles prepare to take on Shredder and his new crew, they find themselves facing an even greater evil with similar intentions: the notorious Krang.",2016-06-01,5.2645,6.0,3629 +7999,59457,Womb,"A woman's consuming love forces her to bear the clone of her dead beloved. From his infancy to manhood, she faces the unavoidable complexities of her controversial decision.",2010-07-15,1.5767,6.046,378 +8000,253235,And So It Goes,"Nobody likes self-centered realtor Oren Little, and he prefers it that way. He's deliberately mean to anyone who crosses his path and wants nothing more than to sell one final house and retire. His life turns upside-down when his estranged son drops off a granddaughter he never knew existed. Suddenly left in charge of her and with no idea how to take care of a child, he pawns the girl off on his neighbor, Leah -- but he eventually learns how to open his heart.",2014-07-10,1.7053,6.045,467 +8001,46503,All Good Things,"Newly-discovered facts, court records and speculation are used to elaborate the true love story and murder mystery of the most notorious unsolved murder case in New York history.",2010-12-03,1.3647,6.0,938 +8002,14400,The Heir Apparent: Largo Winch,"After a powerful billionaire is murdered, his secret adoptive son must race to prove his legitimacy, find his father's killers and stop them from taking over his financial empire.",2008-12-17,1.8004,6.045,558 +8003,11675,Halloween H20: 20 Years Later,"Two decades after surviving a massacre on October 31, 1978, former baby sitter Laurie Strode finds herself hunted by persistent knife-wielder Michael Myers. Laurie now lives in Northern California under an assumed name, where she works as the headmistress of a private school. But it's not far enough to escape Myers, who soon discovers her whereabouts. As Halloween descends upon Laurie's peaceful community, a feeling of dread weighs upon her -- with good reason.",1998-08-05,3.1131,6.045,1706 +8004,2791,The Chronicles of Riddick: Dark Fury,"After their narrow escape at the end of ""Pitch Black,"" Riddick, Jack and the Imam find themselves at the mercy of a madwoman who intends to entomb Riddick forever as part of a twisted art exhibit. With little but a shiv and Riddick's innate viciousness to aid them, Riddick and his allies must find a way to escape from their captor and her band of mercenaries.",2004-06-15,0.5694,6.045,324 +8005,486070,Blessed Madness,A man dedicated to religion and very faithful husband suddenly finds himself single. The new shop assistant in his shop will overwhelm his life.,2018-01-11,0.3789,6.044,384 +8006,398920,He Even Has Your Eyes,"Paul is married to Sali. Everything would be fine if they could get a child. Until the day when Sali receives the call that they have been waiting for so long: their adoption file is approved. He is adorable, he is 6 months old, his name is Benjamin. He is blond with blue eyes and white. They - are black.",2017-01-18,0.9201,6.044,510 +8007,12590,Below,"In the dark silence of the sea during World War II, the submarine USS Tiger Shark prowls on what should be a routine rescue mission. But for the shell-shocked crew, trapped together in the sub's narrow corridors and constricted spaces, this is about to become a journey into the sensory delusions, mental deceptions and runaway fears that lurk just below the surface of the ocean.",2002-08-11,2.08,6.0,472 +8008,11317,My Girl 2,"Vada Sultenfuss has a holiday coming up, and an assignment: to do and essay on someone she admires and has never met. She decides she wants to do an assignment on her mother, but quickly realises she knows very little about her. She manages to get her father to agree to let her go to LA to stay with her Uncle Phil and do some research on her mother.",1994-02-11,2.7495,6.048,511 +8009,522016,The 355,"A group of top female agents from American, British, Chinese, Colombian, and German government agencies are drawn together to try and stop an organization from acquiring a deadly weapon to send the world into chaos.",2022-01-05,2.891,6.0,1058 +8010,41505,6 Souls,A female forensic psychiatrist discovers that all of one of her patient's multiple personalities are murder victims. She will have to find out what's happening before her time is finished.,2010-03-27,1.5031,6.043,733 +8011,2575,The Tailor of Panama,"A British spy is banished to Panama after having an affair with an ambassador's mistress. Once there he makes connection with a local tailor with a nefarious past and connections to all of the top political and gangster figures in Panama. The tailor also has a wife, who works for the Panamanian president and a huge debt. The mission is to learn what the President intends to do with the Canal.",2001-02-11,1.9562,6.0,505 +8012,23048,Hot Tub Time Machine,"Four pals are stuck in a rut in adulthood: Adam has just been dumped, Lou is a hopeless party animal, Nick is a henpecked husband, and Jacob does nothing but play video games in his basement. But they get a chance to brighten their future by changing their past after a night of heavy drinking in a ski-resort hot tub results in their waking up in 1986.",2010-03-26,3.5905,6.042,2568 +8013,10724,Firefox,"The Soviets have developed a revolutionary new jet fighter, called 'Firefox'. Worried that the jet will be used as a first-strike weapon—as there are rumours that it is undetectable by radar—the British send ex-Vietnam War pilot, Mitchell Gant on a covert mission into the Soviet Union to steal the Firefox.",1982-06-18,2.1999,6.0,578 +8014,9910,Two for the Money,A former college athlete joins forces with a sports consultant to handicap football games for high-rolling gamblers.,2005-10-07,2.0991,6.042,676 +8015,6623,The Peacemaker,"When a train carrying atomic warheads mysteriously crashes in the former Soviet Union, a nuclear specialist discovers the accident is really part of a plot to cover up the theft of the weapons. Assigned to help her recover the missing bombs is a crack Special Forces Colonel.",1997-09-26,3.3314,6.0,1053 +8016,2370,Topaz,"Copenhagen, Denmark, 1962. When a high-ranking Soviet official decides to change sides, a French intelligence agent is caught up in a cold, silent and bloody spy war in which his own family will play a decisive role.",1969-12-17,1.6132,6.042,391 +8017,588001,Despite Everything,"Sara, Lucía, Sofía and Claudia are sisters, 4 modern women with very different personalities, who come together at their mother's funeral, after which they discover the man they've all called ""dad"" throughout their lives is not really their father. They embark on a quest to discover who their real fathers are, discovering more about themselves, their mother, and their lives.",2019-03-16,1.4904,6.041,426 +8018,140222,Love and Honor,"When a young soldier in Vietnam gets dumped by his hometown girl, he and his best friend decide to go AWOL and return to the States to win her back.",2013-03-22,0.9447,6.041,352 +8019,490445,Dumped,"Françoise has just been dumped by her husband for a much younger woman. In order to cheer her up, and to celebrate her 60th birthday, sisters Rose and Alice decide to take their mother to a resort on the tropical island of Reunion so they can relax, work on their tans, and have too many margaritas. But when Rose pays a one-night stand, Thierry, to show her mother a good time, their holiday plans start to unravel.",2018-04-18,1.1726,6.04,375 +8020,461928,Anna and the Apocalypse,"A zombie apocalypse threatens the sleepy town of Little Haven – at Christmas – forcing Anna and her friends to fight, slash and sing their way to survival, facing the undead in a desperate race to reach their loved ones. But they soon discover that no one is safe in this new world, and with civilization falling apart around them, the only people they can truly rely on are each other.",2018-11-30,1.414,6.04,403 +8021,308453,The Bronze,"In 2004, Hope Ann Greggory became an American hero after winning the bronze medal for the women's gymnastics team. Today, she's still living in her small hometown, washed-up and embittered. Stuck in the past, Hope must reassess her life when a promising young gymnast threatens her local celebrity status.",2016-01-22,1.7782,6.04,377 +8022,183,The Wizard,"A boy and his brother run away from home and hitch cross-country, with help from a girl they meet, to compete in the ultimate video-game championship.",1989-12-15,1.0424,6.04,324 +8023,109491,Beautiful Creatures,"Ethan Wate just wants to get to know Lena Duchannes better, but unbeknownst to him, Lena has strange powers. As Lena's 16th birthday approaches she might decide her fate, to be good or evil. A choice which will impact her relationship forever.",2013-02-13,2.8262,6.039,2877 +8024,6917,The Gate,"Three young children accidentally release a horde of nasty, pint-sized demons from a hole in a suburban backyard. What follows is a classic battle between good and evil as the three kids struggle to overcome a nightmarish hell that is literally taking over the Earth.",1987-04-21,1.7643,6.039,394 +8025,970450,Werewolves,"A year after a supermoon’s light activated a dormant gene, transforming humans into bloodthirsty werewolves and causing nearly a billion deaths, the nightmare resurfaces as the supermoon rises again. Two scientists attempt to stop the mutation but fail and must now struggle to reach one of their family homes.",2024-12-04,10.5941,6.038,423 +8026,347984,6 Days,"London, England, April 1980. Six terrorists assault the Embassy of Iran and take hostages. For six days, tense negotiations are held while the authorities decide whether a military squad should intervene.",2017-07-09,1.8685,6.038,717 +8027,344041,Standoff,"A troubled veteran gets a chance at redemption by protecting a girl from an assassin after she witnesses a murder. Holding a shotgun with a single shell, he engages in physical and psychological warfare in a desperate fight for the girl's life.",2016-02-26,1.6279,6.0,325 +8028,309242,Mississippi Grind,"Gerry is a talented but down-on-his-luck gambler whose fortunes begin to change when he meets Curtis, a younger, highly charismatic poker player. The two strike up an immediate friendship and Gerry quickly persuades his new friend to accompany him on a road trip to a legendary high stakes poker game in New Orleans. As they make their way down the Mississippi River, Gerry and Curtis manage to find themselves in just about every bar, racetrack, casino, and pool hall they can find, experiencing both incredible highs and dispiriting lows, but ultimately forging a deep and genuine bond that will stay with them long after their adventure is over.",2015-07-04,1.6032,6.038,537 +8029,133805,Carrie,"An awkward, telekinetic teenage girl is the object of relentless bullying at school and an oppressively religious mother at home.",2013-10-16,4.3752,6.038,4569 +8030,74944,War of the Buttons,1960. The thrilling battles waged by a band of kids from two rival villages in the southern French countryside.,2011-09-14,0.6614,6.0,421 +8031,9493,Twins,Julius and Vincent Benedict are the results of an experiment that would allow for the perfect child. Julius was planned and grows to athletic proportions. Vincent is an accident and is somewhat smaller in stature. Vincent is placed in an orphanage while Julius is taken to a south seas island and raised by philosophers. Vincent becomes the ultimate low life and is about to be killed by loan sharks.,1988-12-09,4.4617,6.0,2362 +8032,6217,Cat People,"After years of separation, Irena Gallier and her minister brother, Paul, reunite in New Orleans. When zoologists capture a wild panther, Irena is drawn to the cat – and zoo curator Oliver to her. Soon, Paul will have to reveal the family secret: that when sexually aroused, they revert into predatory jungle cats.",1982-04-02,2.1144,6.0,527 +8033,457955,The Night Eats the World,"After waking up to find himself all alone in an apartment where a massive party was being held the night before, Sam is immediately forced to face a terrifying reality: the living dead have invaded the streets of Paris.",2018-03-07,2.642,6.037,739 +8034,300681,Replicas,A scientist becomes obsessed with returning his family to normalcy after a terrible accident.,2018-10-25,3.0958,6.037,1408 +8035,289727,The Rewrite,"An Oscar-winning writer in a slump leaves Hollywood to teach screenwriting at a college on the East Coast, where he falls for a single mom taking classes there.",2014-06-15,1.4695,6.037,607 +8036,519106,The Trouble with You,"Detective Yvonne is the widow of police chief Santi, a local hero in a town on the French Riviera. When she learns he was in fact a crooked cop, she tries to right his wrongs. Crossing paths with Antoine, a victim of Santi, sets off a series of wild events.",2018-10-06,1.4185,6.036,463 +8037,37958,Immortals,"Theseus is a mortal man chosen by Zeus to lead the fight against the ruthless King Hyperion, who is on a rampage across Greece to obtain a weapon that can destroy humanity.",2011-11-10,6.0117,6.036,2675 +8038,830788,The Invitation,"After the death of her mother, Evie is approached by an unknown cousin who invites her to a lavish wedding in the English countryside. Soon, she realizes a gothic conspiracy is afoot and must fight for survival as she uncovers twisted secrets in her family’s history.",2022-08-24,3.6979,6.029,887 +8039,822119,Captain America: Brave New World,"After meeting with newly elected U.S. President Thaddeus Ross, Sam finds himself in the middle of an international incident. He must discover the reason behind a nefarious global plot before the true mastermind has the entire world seeing red.",2025-02-12,39.6942,6.035,2490 +8040,718400,The Vanished,"A family vacation takes a terrifying turn when parents Paul and Wendy discover their young daughter has vanished without a trace. Stopping at nothing to find her, the search for the truth leads to a shocking revelation.",2020-08-21,1.7477,6.035,333 +8041,48572,Red State,"Set in Middle America, a group of teens receive an online invitation for sex, though they soon encounter Christian fundamentalists with a much more sinister agenda.",2011-08-19,1.4444,6.035,979 +8042,43209,Ong Bak 3,"Tien is captured and almost beaten to death before he is saved and brought back to the Kana Khone villagers. There he is taught meditation and how to deal with his Karma, but very soon his arch rival returns challenging Tien for a final duel.",2010-05-05,2.4447,6.035,451 +8043,16342,The Children,A relaxing Christmas vacation turns into a terrifying fight for survival as the children begin to turn on their parents,2008-12-05,1.2812,6.035,398 +8044,2212,Nightwatch,A law student takes a job as a night watchman at a morgue and begins to discover clues that implicate him as the suspect in a series of murders.,1997-01-31,1.0783,6.035,404 +8045,269795,2:22,"Two planes almost collide after a blinding flash of light paralyzes air traffic controller Dylan Branson for a few seconds. Suspended from his job, Dylan starts to notice an ominous pattern of sounds and events that repeats itself in exactly the same manner every day, ending precisely at 2:22 p.m. Also drawn into a complex relationship with a woman, Dylan must figure out a way to break the power of the past and take control of time itself.",2017-06-29,2.5406,6.034,1494 +8046,77883,The Possession,"A young girl buys an antique box at a yard sale, unaware that inside the collectible lives a malicious ancient spirit. The girl's father teams with his ex-wife to find a way to end the curse upon their child.",2012-08-30,2.7646,6.034,1640 +8047,15189,Hotel for Dogs,"Placed in a foster home that doesn't allow pets, 16-year-old Andi and her younger brother, Bruce, turn an abandoned hotel into a home for their dog. Soon other strays arrive, and the hotel becomes a haven for every orphaned canine in town. But the kids have to do some quick thinking to keep the cops off their tails.",2009-01-16,2.571,6.034,885 +8048,804150,Cocaine Bear,"Inspired by a true story, an oddball group of cops, criminals, tourists and teens converge in a Georgia forest where a 500-pound black bear goes on a murderous rampage after unintentionally ingesting cocaine.",2023-02-22,4.5823,6.0,2232 +8049,429415,Extinction,"A chief mechanic at a factory, haunted by apocalyptic nightmares, becomes a hero when Earth is invaded by a mysterious army bent on destruction.",2018-07-15,3.5658,6.033,1892 +8050,244610,The Den,A young woman studying the habits of webcam chat users from the apparent safety of her apartment witnesses a brutal murder online and is quickly immersed in a nightmare in which she and her loved ones are targeted for the same grisly fate as the first victim.,2013-12-12,1.0558,6.033,350 +8051,1252,Lonely Hearts,"In the late 1940s, a murderous couple known as the 'The Lonely Hearts Killers' kills close to a dozen people. Two detectives try to nab the duo who find their targets via the personals in the paper.",2006-04-30,1.5807,6.033,351 +8052,864873,Hypnotic,"A young woman seeking self-improvement enlists the help of a renowned hypnotist but, after a handful of intense sessions, discovers unexpected and deadly consequences.",2021-10-27,1.7813,6.032,649 +8053,14628,Fletch Lives,"Fletch is a fish out of water in small-town Louisiana, where he's checking out a tumbledown mansion he's inherited. When a woman he flirts with turns up dead, he becomes a suspect and must find the killer and clear his name.",1989-03-17,1.6173,6.0,311 +8054,11452,National Lampoon's Van Wilder,"Van Wilder has been attending college for far too many years and is scared to graduate, but Van’s father eventually realizes what is going on. When he stops paying his son's tuition fees, Van must come up with the money if he wants to stay in college, so he and his friends come up with a great fund-raising idea – throwing parties. However, when the college magazine finds out and reporter Gwen is sent to do a story on Van Wilder, things get a little complicated.",2002-03-29,2.9659,6.032,1853 +8055,5549,RoboCop 2,"After a successful deployment of the RoboCop Law Enforcement unit, OCP sees its goal of urban pacification come closer and closer, but as this develops, a new narcotic known as ""Nuke"" invades the streets led by God-delirious leader Cane. As this menace grows, it may prove to be too much for Murphy to handle. OCP tries to replicate the success of the first unit, but ends up with failed prototypes with suicidal issues... until Dr. Faxx, a scientist straying away from OCP's path, uses Cane as the new subject for the RoboCop 2 project, a living God.",1990-06-22,5.1477,6.0,1982 +8056,1901,In Good Company,"Dan Foreman is a seasoned advertisement sales executive at a high-ranking publication when a corporate takeover results in him being placed under naive supervisor Carter Duryea, who is half his age. Matters are made worse when Dan's new supervisor becomes romantically involved with his daughter an 18 year-old college student Alex.",2004-12-29,1.538,6.032,641 +8057,257091,Get Hard,"When obscenely rich hedge-fund manager James is convicted of fraud and sentenced to a stretch in San Quentin, the judge gives him one month to get his affairs in order. Knowing that he won't survive more than a few minutes in prison on his own, James desperately turns to Darnell-- a black businessman who's never even had a parking ticket -- for help. As Darnell puts James through the wringer, both learn that they were wrong about many things, including each other.",2015-03-26,3.2743,6.03,2778 +8058,1969,Bandidas,"When a ruthless robber baron takes away everything they cherish, a rough-and-tumble, idealistic peasant and a sophisticated heiress embark on a quest for justice, vengeance…and a few good heists.",2006-01-18,2.6591,6.031,1123 +8059,103620,Maniac,"As he helps a young artist with her upcoming exhibition, the owner of a mannequin shop's deadly, suppressed desires come to the surface.",2012-12-26,2.3253,6.03,956 +8060,735697,Incredible But True,Alain and Marie moved to the suburb house of their dreams. But the real estate agent warned them: what is in the basement may well change their lives forever.,2022-06-15,0.7858,6.029,397 +8061,527261,The Silence,"With the world under attack by deadly creatures who hunt by sound, a teen and her family seek refuge outside the city and encounter a mysterious cult.",2019-05-16,3.5533,6.029,1608 +8062,440918,Teen Spirit,"A shy teenager living on the Isle of Wight dreams of pop stardom. With the help of an unlikely mentor, she enters a singing competition that will test her integrity, talent, and ambition.",2019-04-12,1.0654,6.0,343 +8063,311324,The Great Wall,European mercenaries searching for black powder become embroiled in the defense of the Great Wall of China against a horde of monstrous creatures.,2016-12-16,6.8093,6.029,5311 +8064,11857,Orange County,"Shaun Brumder is a local surfer kid from Orange County who dreams of going to Stanford to become a writer and to get away from his dysfunctional family household. Except Shaun runs into one complication after another, starting when his application is rejected after his dim-witted guidance counselor sends in the wrong form.",2002-01-11,1.3641,6.029,472 +8065,1642,The Net,"Angela Bennett is a freelance computer systems analyst who tracks down software viruses. At night she hooks up to the internet and chats to others 'surfing the net'. While de-bugging a new high-tech game for a cyber friend, she comes across a top secret program and becomes the target of a mysterious organization who will stop at nothing to erase her identity and her existence, in order to protect the project.",1995-07-28,3.2549,6.029,1423 +8066,872709,Smoking Causes Coughing,"After a devastating battle against a diabolical turtle, a team of five avengers — known as the ""Tobacco Force"" — is sent on a mandatory retreat to strengthen their decaying group cohesion. Their sojourn goes wonderfully well until Lézardin, Emperor of Evil, decides to annihilate planet Earth.",2022-11-30,1.0077,6.028,378 +8067,576004,Porno,"When a group of naive teens working at a movie theater in a small Christian town discover a mysterious film hidden in its basement, they unleash an alluring succubus who gives them a sex education…written in blood.",2019-06-28,3.8853,6.028,392 +8068,382598,Full Speed,"A family together with their grandpa go on a vacation, when their new car won't stop and it nearly escapes crashing into a hundred cars.",2016-11-11,1.7218,6.028,652 +8069,294793,All the Old Knives,"When the CIA discovers one of its agents leaked information that cost more than 100 people their lives, veteran operative Henry Pelham is assigned to root out the mole with his former lover and colleague Celia Harrison.",2022-04-08,3.3997,6.028,577 +8070,65599,The Woman,A lawyer puts his family in jeopardy when he captures the last member of a violent clan and tries to forcibly tame her.,2011-10-14,1.738,6.0,549 +8071,10093,The Return,"Joanna Mills has a successful career but feels her personal life is spinning out of control. She has few friends, an estranged father, and a crazy ex-boyfriend who is stalking her. Joanna begins having terrifying visions of a woman's murder, and it seems that she is the killer's next target. Determined to solve the mystery and escape her apparent fate, Joanna follows her visions to the victim's hometown and finds that some secrets just do not stay buried.",2006-11-10,1.1699,6.028,640 +8072,5559,Bee Movie,"Barry B. Benson, a recent college graduate who wants more out of his life than making honey, decides to sue the human race after learning about the exploitation of bees at the hands of mankind. What will happen next?",2007-10-28,6.5933,6.028,5020 +8073,1126166,Flight Risk,"A U.S. Marshal escorts a government witness to trial after he's accused of getting involved with a mob boss, only to discover that the pilot who is transporting them is also a hitman sent to assassinate the informant. After they subdue him, they're forced to fly together after discovering that there are others attempting to eliminate them.",2025-01-22,21.199,6.0,895 +8074,848538,Argylle,"When the plots of reclusive author Elly Conway's fictional espionage novels begin to mirror the covert actions of a real-life spy organization, quiet evenings at home become a thing of the past. Accompanied by her cat Alfie and Aidan, a cat-allergic spy, Elly races across the world to stay one step ahead of the killers as the line between Conway's fictional world and her real one begins to blur.",2024-01-31,5.2049,6.027,1530 +8075,846422,The Old Guard 2,Andy and her team of immortal warriors fight with renewed purpose as they face a powerful new foe threatening their mission to protect humanity.,2025-07-01,71.3481,6.027,619 +8076,328595,Parallels,An underground MMA fighter must confront his sister and his past in an adventure through parallel universes,2015-03-01,0.5877,6.0,372 +8077,292040,Spooks: The Greater Good,"During a handover to the head of counter-terrorism of MI5, Harry Pearce, a terrorist escapes custody. When Harry disappears soon after, his protégé is tasked with finding out what happened as an impending attack on London looms, and eventually uncovers a deadly conspiracy.",2015-04-11,1.378,6.027,592 +8078,58013,The Santa Claus Gang,"On Christmas Eve, three friends dressed as Santa Claus are arrested in what looks like an attempted burglary and charged with being the infamous ""Santa Claus Gang"". While trying to prove their innocence to the police, the trio explains why they found themselves in such a strange situation...",2010-12-17,0.464,6.027,1061 +8079,49953,A Turtle's Tale: Sammy's Adventures,"Born on a Baja, California beach in 1959, new hatchling Sammy races across the beach to the ocean while avoiding being caught by seagulls and crabs. Thus begins Sammy's incredible fifty-year ocean journey where he overcomes obstacles, both natural and man-made, while trying to fulfill his dream of travelling around the world. Along the way he meets his best friend, a fellow turtle named Ray, and never forgets about Shelly, a turtle he saved that first day on the beach and the one he's always loved.",2010-08-04,2.7487,6.0,659 +8080,11847,The Accidental Spy,A fun-filled story about an ordinary guy about to kick into an action-packed adventure. Jackie Chan plays a bored and unsuccessful salesman who never thought his life would amount to anything. All that changes one day when he becomes an instant hero by foiling an attempted bank robbery.,2001-01-18,0.916,6.0,475 +8081,11777,I.Q.,Albert Einstein helps a young man who's in love with Einstein's niece to catch her attention by pretending temporarily to be a great physicist.,1994-12-24,1.137,6.0,463 +8082,10555,Shark Tale,"Oscar is a small fish whose big aspirations often get him into trouble. Meanwhile, Lenny is a great white shark with a surprising secret that no sea creature would guess: He's a vegetarian. When a lie turns Oscar into an improbable hero and Lenny becomes an outcast, the two form an unlikely friendship.",2004-09-20,7.3871,6.026,6474 +8083,8884,Franklyn,"Set between the parallel worlds of contemporary London and the futuristic faith dominated metropolis of Meanwhile City, Franklyn weaves a tale of four souls, whose lives are intertwined by fate, romance and tragedy. As these worlds collide, a single bullet determines the destiny of these four characters.",2008-10-16,1.1305,6.026,366 +8084,4858,The Invasion,"Washington, D.C. psychologist Carol Bennell and her colleague Dr. Ben Driscoll are the only two people on Earth who are aware of an epidemic running rampant through the city. They discover an alien virus aboard a crashed space shuttle that transforms anyone who comes into contact with it into unfeeling drones while they sleep. Carol realizes her son holds the key to stopping the spread of the plague and she races to find him before it is too late.",2007-08-17,4.6816,6.0,1574 +8085,934756,Love in the Villa,"A young woman takes a trip to romantic Verona, Italy, after a breakup, only to find that the villa she reserved was double-booked, and she'll have to share her vacation with a cynical British man.",2022-09-01,1.61,6.025,373 +8086,363126,Berlin Syndrome,A passionate holiday romance leads to an obsessive relationship when an Australian photojournalist wakes one morning in an abandoned Berlin apartment and is unable to leave.,2017-04-20,1.8327,6.025,657 +8087,76285,Percy Jackson: Sea of Monsters,"In their quest to confront the ultimate evil, Percy and his friends battle swarms of mythical creatures to find the mythical Golden Fleece and to stop an ancient evil from rising.",2013-08-07,3.7268,6.025,5209 +8088,64635,Total Recall,"Factory worker Doug Quaid takes a virtual mind-trip vacation with the Rekall company, opting for implanted memories of being a spy. When the procedure goes wrong, Quaid becomes a wanted man by the police and joins forces with a rebel fighter to stop the evil Chancellor Cohaagen.",2012-08-02,6.3875,6.023,5616 +8089,13683,Tarzan & Jane,"With the first anniversary of her wedding to Tarzan beckoning, Jane ponders how to make it the perfect English celebration.",2002-06-24,2.9592,6.025,652 +8090,293767,Billy Lynn's Long Halftime Walk,19-year-old Billy Lynn is brought home for a victory tour after a harrowing Iraq battle. Through flashbacks the film shows what really happened to his squad – contrasting the realities of war with America's perceptions.,2016-11-10,3.7568,6.024,580 +8091,32985,Solomon Kane,"A nomadic 16th century warrior, condemned to hell for his brutal past, seeks redemption by renouncing violence, but finds some things are worth burning for as he fights to free a young Puritan woman from the grip of evil.",2009-12-23,2.7715,6.024,1445 +8092,23827,Paranormal Activity,"After a young, middle-class couple moves into what seems like a typical suburban house, they become increasingly disturbed by a presence that may or may not be demonic but is certainly the most active in the middle of the night.",2007-09-14,4.9384,6.024,5188 +8093,5966,Along Came Polly,"Reuben Feffer is a guy who's spent his entire life playing it safe. Polly Prince is irresistible as a free-spirit who lives for the thrill of the moment. When these two comically mismatched souls collide, Reuben's world is turned upside down, as he makes an uproarious attempt to change his life from middle-of-the-road to totally-out-there.",2004-01-16,3.4771,6.0,2907 +8094,2539,Spanglish,"Mexican immigrant and single mother Flor Moreno finds housekeeping work with Deborah and John Clasky, a well-off couple with two children of their own. When Flor admits she can't handle the schedule because of her daughter, Cristina, Deborah decides they should move into the Clasky home. Cultures clash and tensions run high as Flor and the Claskys struggle to share space while raising their children on their own, and very different, terms.",2004-12-17,1.9449,6.024,1328 +8095,579,Jaws 2,Police chief Brody must protect the citizens of Amity after a second monstrous shark begins terrorizing the waters.,1978-06-16,4.1152,6.024,2009 +8096,278924,Mechanic: Resurrection,"Arthur Bishop thought he had put his murderous past behind him when his most formidable foe kidnaps the love of his life. Now he is forced to travel the globe to complete three impossible assassinations, and do what he does best, make them look like accidents.",2016-08-25,7.2719,6.023,3465 +8097,77805,Lovelace,"Story of Linda Lovelace, who is used and abused by the porn industry at the behest of her coercive husband, before taking control of her life.",2013-08-08,3.599,6.023,709 +8098,64689,Killing Them Softly,"Jackie Cogan is an enforcer hired to restore order after three dumb guys rob a Mob protected card game, causing the local criminal economy to collapse.",2012-07-30,2.2187,6.023,2273 +8099,11428,Sleepwalkers,"Charles Brady and his mother, Mary, are the last of a dying breed whose needs are not of this world. They are Sleepwalkers - able to stay alive only by feeding on the life-force of the innocent, but destined to roam the earth, avoiding discovery while searching for their next victim. That search takes them to the sleepy little town of Travis, Indiana, where beautiful teenager Tanya Robertson is about to become an unwilling pawn in their nightmarish fight for survival.",1992-04-10,2.5443,6.023,569 +8100,901385,Significant Other,"Ruth and Harry decide to take a romantic backpacking trip through the Pacific Northwest, but amongst the beautiful scenery, Ruth makes an unexpected discovery that sets her off on a strange, frightening new path. The couple aren't alone in the woods, and they might not be the same when they come out...if they come out.",2022-10-06,3.5372,6.022,344 +8101,565028,Candyman,"A Chicago artist's sanity starts to unravel, unleashing a terrifying wave of violence when he begins to explore the macabre history of the Candyman.",2021-08-25,3.0782,6.021,1638 +8102,366514,Up for Love,"Diane is a well-known lawyer, divorced for three years. She loses her mobile telephone and receives a call from the person who finds it. That person is Alexandre, a charming man and the perfect gentleman. They make a connection over the phone and agree to meet up the following day. But when Alexandre arrives, there's a surprise in store when Diane discovers he is only 4' 6"" tall. From that moment on, Diane tries to overcome the prejudices of society and her own fears to experience the best time of her life...",2016-05-04,2.7673,6.022,850 +8103,10066,House of Wax,A group of unwitting teens are stranded near a strange wax museum and soon must fight to survive and keep from becoming the next exhibit.,2005-05-05,5.196,6.0,3139 +8104,4515,Lions for Lambs,"Three stories told simultaneously in ninety minutes of real time: a Republican Senator who's a presidential hopeful gives an hour-long interview to a skeptical television reporter, detailing a strategy for victory in Afghanistan; two special forces ambushed on an Afghani ridge await rescue as Taliban forces close in; a poli-sci professor at a California college invites a student to re-engage.",2007-10-22,1.8138,6.0,780 +8105,930600,The Deliverance,"Ebony Jackson, a struggling single mother fighting her personal demons, moves her family into a new home for a fresh start. But when strange occurrences inside the home raise the suspicions of Child Protective Services and threaten to tear the family apart, Ebony soon finds herself locked in a battle for her life and the souls of her children.",2024-08-16,4.0095,6.021,501 +8106,800497,Werewolves Within,"When a proposed pipeline creates hostilities between residents of a small town, a newly-arrived forest ranger must keep the peace after a snowstorm confines the townspeople to an old lodge. But when a mysterious creature begins terrorizing the group, their worst tendencies and prejudices rise to the surface, and it is up to the ranger to keep the residents alive, both from each other and the monster which plagues them.",2021-06-25,1.7893,6.02,570 +8107,531503,Point Blank,A nurse is forced to spring a wounded murder suspect from the hospital when the man’s brother kidnaps his pregnant wife and wants to make a trade.,2019-07-12,1.5741,6.02,554 +8108,335866,Circle,"In a massive, mysterious chamber, fifty strangers awaken to find themselves trapped with no memory of how they got there. Organized in an inward-facing circle and unable to move, they quickly learn that every two minutes, one of them must die…executed by a strange device in the center of the room.",2015-05-28,1.9789,6.0,2028 +8109,290764,Tracers,"Wanted by the mafia, a New York City bike messenger escapes into the world of parkour after meeting a beautiful stranger.",2015-01-15,2.8642,6.0,1085 +8110,13654,101 Dalmatians II: Patch's London Adventure,"Being one of 101 takes its toll on Patch, who doesn't feel unique. When he's accidentally left behind on moving day, he meets his idol, Thunderbolt, who enlists him on a publicity campaign.",2003-03-02,3.3179,6.0,1201 +8111,10433,Mad Dog and Glory,"Wayne Dobie is a shy cop whose low-key demeanor has earned him the affectionate nickname ""Mad Dog."" After Mad Dog saves the life of Frank Milo, a crime boss and aspiring stand-up comedian, he's offered the company of an attractive young waitress named Glory for a week. At first both are uneasy about the arrangement, but they eventually fall in love. However, the situation becomes complicated when Milo demands Glory back.",1993-03-05,1.7216,6.0,375 +8112,502292,The Last Summer,"Standing on the precipice of adulthood, a group of friends navigate new relationships, while reexamining others, during their final summer before college.",2019-05-03,2.9443,6.018,1383 +8113,12834,Leaves of Grass,"An Ivy League professor returns home, where his pot-growing twin brother has concocted a plan to take down a local drug lord.",2009-09-13,1.0919,6.018,428 +8114,258509,Alvin and the Chipmunks: The Road Chip,"Through a series of misunderstandings, Alvin, Simon and Theodore come to believe that Dave is going to propose to his new girlfriend in New York City - and dump them. They have three days to get to him and stop the proposal.",2015-12-17,5.3076,6.017,1694 +8115,209249,The Love Punch,"Retirement at last! Middle-aged and divorced, company owner Richard Jones is looking forward to a worry-free existence as he arrives at his office on his last day of work. Much to his dismay, he discovers that the management buyout of his company was fraudulent. The company is now bankrupt and the employee pension fund — including his own — has been embezzled. Enlisting the help of his ex-wife Kate, Richard sets out to track down the shady businessman behind the fraud.",2014-01-13,1.6801,6.017,450 +8116,66118,Case départ,Two contempo Frenchmen of Antillean descent visit their ancestor's time as well as their land in the slavery-themed French era.,2011-07-06,1.4794,6.017,517 +8117,9745,Jack Frost,"A father, who can't keep his promises, dies in a car accident. One year later, he returns as a snowman, who has the final chance to put things right with his son before he is gone forever.",1998-11-15,2.3611,6.019,1174 +8118,8831,Timecop,"In 2004, an officer for a security agency that regulates time travel must fend for his life against a shady politician who has a tie to his past.",1994-09-15,3.1333,6.017,1217 +8119,7511,The Last Kiss,"Michael has a great job, has his 4 best friends, and is in love with a beautiful girl at 30. He loves Jenna but his life seems predictable until someone else enters his life. It seems that everybody's having relationship problems.",2006-09-10,1.3687,6.017,383 +8120,121824,Stand Up Guys,"After serving 28 years in prison for accidentally killing the son of a crime boss, newly paroled gangster Val reunites with his former partners in crime, Doc and Hirsch, for a night on the town. As the three men revisit old haunts, reflect on their glory days and try to make up for lost time, one wrestles with a terrible quandary: Doc has orders to kill Val, and time is running out for him to figure out a way out of his dilemma.",2012-12-14,2.4125,6.016,963 +8121,15516,The Last House on the Left,"On the eve of her 17th birthday, Mari and friend Phyllis set off from her family home to attend a rock concert in the city. Attempting to score some drugs on the way, the pair run afoul of a group of vicious crooks, headed up by the sadistic Krug.",1972-08-30,3.4382,6.0,725 +8122,10922,The Human Stain,"Coleman Silk is a worldly and admired professor who loses his job after unwittingly making a racial slur. To clear his name, Silk writes a book about the events with his friend and colleague Nathan Zuckerman, who in the process discovers a dark secret Silk has hidden his whole life. All the while, Silk engages in an affair with Faunia Farley, a younger woman whose tormented past threatens to unravel the layers of deception Silk has constructed.",2003-10-29,2.1307,6.016,476 +8123,479,Shaft,"New York police detective John Shaft arrests Walter Wade Jr. for a racially motivated slaying. But the only eyewitness disappears, and Wade jumps bail for Switzerland. Two years later Wade returns to face trial, confident his money and influence will get him acquitted -- especially since he's paid a drug kingpin to kill the witness.",2000-06-15,3.3944,6.016,1344 +8124,549514,Fatale,"After a wild one-night stand, successful sports agent Derrick Tyler watches his perfect life slowly disappear when he discovers the sexy and mysterious woman he risked everything for is determined police detective Valerie Quinlan who entangles him in her latest investigation. As he desperately tries to put the pieces together, he falls deeper into her trap, risking his family, his career, and even his life.",2020-12-18,6.5182,6.015,358 +8125,454699,Monster Family,"The Wishbone family are far from happy. In an attempt to reconnect as a family, they plan a fun night out. However, the plan backfires when they are cursed and all turned into Monsters.",2017-08-24,1.5987,6.015,359 +8126,10353,The Visitors II: The Corridors of Time,"The sequel to The Visitors reunites us with those lovable ruffians from the French Medieval ages who - through magic - are transported into the present, with often drastic consequences. Godefroy de Montmirail travels to today to recover the missing family jewels and a sacred relic, guarantor of his wife-to-be's fertility. The confrontation between Godefroy's repellent servant Jack the Crack and his descendent, the effete Jacquart, present-day owner of the chateau, further complicates the matter.",1998-02-11,2.6826,6.015,1023 +8127,217,Indiana Jones and the Kingdom of the Crystal Skull,"Set during the Cold War, the Soviets—led by sword-wielding Irina Spalko—are in search of a crystal skull which has supernatural powers related to a mystical Lost City of Gold. Indy is coerced to head to Peru at the behest of a young man whose friend—and Indy's colleague—Professor Oxley has been captured for his knowledge of the skull's whereabouts.",2008-05-21,6.0134,6.015,8613 +8128,459928,12 Feet Deep,Two sisters are trapped under the fiberglass cover of an Olympic sized public pool and must brave the cold and each other to survive the harrowing night.,2018-11-08,1.9265,6.014,317 +8129,10740,Birth,"It took Anna 10 years to recover from the death of her husband, Sean, but now she's on the verge of marrying her boyfriend, Joseph, and finally moving on. However, on the night of her engagement party, a young boy named Sean turns up, saying he is her dead husband reincarnated. At first she ignores the child, but his knowledge of her former husband's life is uncanny, leading her to believe that he might be telling the truth.",2004-10-29,2.247,6.0,705 +8130,286521,5 Flights Up,A long-time married couple who've spent their lives together in the same New York apartment become overwhelmed by personal and real estate-related issues when they plan to move away.,2014-05-10,0.8823,6.0,312 +8131,215211,Grace of Monaco,"The story of former Hollywood star Grace Kelly's crisis of marriage and identity, during a political dispute between Monaco's Prince Rainier III and France's Charles De Gaulle, and a looming French invasion of Monaco in the early 1960s.",2014-04-22,1.6715,6.013,603 +8132,11678,Vertical Limit,"Trapped near the summit of K2, the world's second-highest mountain, Annie Garrett radios to base camp for help. Brother Peter hears Annie's message and assembles a team to save her and her group before they succumb to K2's unforgiving elements. But, as Annie lays injured in an icy cavern, the rescuers face several terrifying events that could end the rescue attempt -- and their lives.",2000-12-08,3.664,6.013,1063 +8133,921636,The Out-Laws,"A straight-laced bank manager is about to marry the love of his life. When his bank is held up by infamous Ghost Bandits during his wedding week, he believes his future in-laws who just arrived in town, are the infamous Out-Laws.",2023-07-07,2.8653,6.012,741 +8134,284536,The Gambler,"Literature professor Jim Bennett leads a secret life as a high-stakes gambler. Always a risk-taker, Bennett bets it all when he borrows from a gangster and offers his own life as collateral. Staying one step ahead, he pits his creditor against the operator of an illicit gambling ring while garnering the attention of Frank, a paternalistic loan shark. As his relationship with a student deepens, Bennett must risk everything for a second chance.",2014-12-25,4.6804,6.012,1475 +8135,242095,The Signal,"On a road trip, Nic and two friends are drawn to an isolated area by a computer genius. When everything suddenly goes dark, Nic regains consciousness – only to find himself in a waking nightmare.",2014-03-15,2.2822,6.012,1734 +8136,13092,How to Lose Friends & Alienate People,"Sidney Young is a down-on-his-luck journalist. Thanks to a stint involving a pig and a glitzy awards ceremony, Sidney turns his fortunes around, attracting the attention of Clayton Harding, editor of New York-based glossy magazine 'Sharps', and landing the holy grail of journalism jobs. The Brit jets off to the Big Apple and moves from one blunder to the next.",2008-10-02,2.427,6.012,792 +8137,10990,Mulholland Falls,"In 1950s Los Angeles, a special crime squad of the LAPD investigates the murder of a young woman.",1996-04-26,2.2599,6.012,303 +8138,6935,Yamakasi,"Yamakasi - Les samouraïs des temps modernes is a 2001 French movie written by Luc Besson. It demonstrates the skills of the Yamakasi, a group of traceurs who battle against injustice in the Paris ghetto. They use parkour to steal from the rich in order to pay off medical bills for a kid injured copying their techniques.",2001-04-04,1.3427,6.012,578 +8139,611605,1BR,"When Sarah lucks into a sweet one-bedroom at Asilo Del Mar Apartments in Los Angeles, she thinks she's hit the jackpot. It's got plenty of space, friendly tenants, group BBQs and even a cute neighbour next door. All is not what it seems: loud noises start keeping her awake at night; her cat is missing; everyone seems to be a little too helpful and friendly, except for the weirdo, Lester. Soon, Sarah learns she didn't choose this apartment — it chose her.",2019-07-18,1.865,6.0,484 +8140,517909,The Laundromat,"When a widow gets swindled out of insurance money, her search for answers leads to two cunning lawyers in Panama who hide cash for the superrich.",2019-09-27,2.222,6.011,1244 +8141,508138,Burn,"Lonely, unstable gas station attendant Melinda is tired of being overshadowed by her more confident, outgoing co-worker Sheila. When the gas station is held up at gunpoint by Billy, a desperate man in need of quick cash, Melinda finds an opportunity to make a connection with the robber, regardless of who gets hurt.",2019-08-23,2.687,6.011,316 +8142,431075,Polaroid,"High school loner Bird Fitcher has no idea what dark secrets are tied to the mysterious Polaroid vintage camera she stumbles upon, but it doesn't take long to discover that those who have their picture taken meet a tragic end. Bird and her friends must survive one more night as they race to solve the mystery of the haunted Polaroid before it kills them all.",2019-01-10,2.3052,6.011,1092 +8143,162903,The Fifth Estate,"A look at the relationship between WikiLeaks founder Julian Assange and his early supporter and eventual colleague Daniel Domscheit-Berg, and how the website's growth and influence led to an irreparable rift between the two friends.",2013-10-11,1.8861,6.011,1031 +8144,138697,Don Jon,"A New Jersey guy dedicated to his family, friends, and church, develops unrealistic expectations from watching porn and works to find happiness and intimacy with his potential true love.",2013-09-12,6.2672,6.011,4395 +8145,86597,The Tall Man,"When her child goes missing, a mother looks to unravel the legend of the Tall Man, an entity who allegedly abducts children.",2012-03-19,1.6906,6.011,1174 +8146,1022964,Candy Cane Lane,"A man, determined to win the neighborhood's annual Christmas decorating contest, makes a pact with an elf to help him win. However, the elf casts a spell bringing the twelve days of Christmas to life, bringing chaos to the small, unsuspecting town.",2023-11-29,1.4169,6.01,441 +8147,800345,Carter,"Carter, who awakens two months into a deadly pandemic originating from the DMZ that has already devastated US and North Korea. He who has no recollections of his past finds a mysterious device in his head, and a lethal bomb in his mouth. A voice in his ears gives him orders to avoid getting killed and he's thrown into a mysterious operation while the CIA and North Korean coup chase him close.",2022-08-05,2.9425,6.01,394 +8148,427989,Poor but Rich,"The ""Tucci"" are a poor Italian family living in a small village in Lazio. Father, mother, a conceited daughter and a genius son, forced to pretend being stupid to keep up with the family. One day something unexpected happens: the family wins one hundred million Euros. Excited, they decide to keep the winning a secret, but as soon as a single word slips out from the mouth of the householder, they only have one choice to avoid being persecuted by friends and acquaintances: run away. They leave at night, heading to Milan. They will realize as soon as they arrive that today's rich people behaves very differently from the past, and being rich has become a real bother... this discovery will make things way different from what Tuccis' expected.",2016-12-15,0.9218,6.01,420 +8149,228968,Kidnapping Mr. Heineken,"The true story of the kidnapping of Freddy Heineken, the grandson of the founder of the Heineken brewery, and his driver. They were released after a ransom of 35 million Dutch guilders was paid.",2015-03-12,1.7235,6.01,642 +8150,73937,The Big Year,"Three fanatical bird-watchers spend an entire year competing to spot the highest number of species as El Nino sends an extraordinary variety of rare breeds flying up into the U.S., but they quickly discover that there are more important things than coming out on top of the competition.",2011-10-13,1.3867,6.01,833 +8151,82,Miami Vice,"A case involving drug lords and murder in South Florida takes a personal turn for undercover detectives Sonny Crockett and Ricardo Tubbs. Unorthodox Crockett gets involved romantically with the Chinese-Cuban wife of a trafficker of arms and drugs, while Tubbs deals with an assault on those he loves.",2006-07-27,3.2295,6.01,1850 +8152,918,Blind Date,"When bachelor Walter Davis is set up with his sister-in-law's pretty cousin, Nadia Gates, a seemingly average blind date turns into a chaotic night on the town. Walter's brother, Ted, tells him not to let Nadia drink alcohol, but he dismisses the warning and her behaviour gets increasingly wild. Walter and Nadia's numerous incidents are made even worse as her former lover David relentlessly follows them around town.",1987-03-27,2.3437,6.0,507 +8153,25239,Day of the Woman,"A young, beautiful career woman rents a backwoods cabin to write her first novel. Attacked by a group of local lowlifes and left for dead, she devises a horrific plan to inflict revenge.",1978-11-02,3.4483,6.008,663 +8154,9564,Asterix & Obelix Take on Caesar,"Set in 50 B.C., Asterix and Obelix are living in a small but well-protected village in Gaul, where a magic potion concocted by Druids turns the townsfolk into mighty soldiers. When Roman troops carve a path through Gaul to reach the English Channel, Caesar and his aide de camp Detritus discover the secret elixir and capture the Druid leader who knows its formula, and Asterix and Obelix are sent off to rescue them.",1999-02-03,3.331,6.009,1954 +8155,955991,The Offering,"In the wake of a young Jewish girl’s disappearance, the son of a Hasidic funeral director returns home with his pregnant wife in hopes of reconciling with his father. Little do they know that directly beneath them in the family morgue, an ancient evil with sinister plans for the unborn child lurks inside a mysterious corpse.",2022-09-23,2.5081,6.007,348 +8156,9449,The Borrowers,"The four-inch-tall Clock family secretly share a house with the normal-sized Lender family, ""borrowing"" such items as thread, safety pins, batteries and scraps of food. However, their peaceful co-existence is disturbed when evil lawyer Ocious P. Potter steals the will granting title to the house, which he plans to demolish in order to build apartments. The Lenders are forced to move, and the Clocks face the risk of being exposed to the normal-sized world.",1997-12-05,2.4097,6.007,494 +8157,1029235,Azrael,"In a world where no one speaks, a devout female hunts down a young woman who has escaped her imprisonment. Recaptured by its ruthless leaders, Azrael is due to be sacrificed to pacify an ancient evil deep within the surrounding wilderness.",2024-09-27,10.2797,6.006,342 +8158,595148,Irresistible,"A Democratic political consultant helps a retired Marine colonel run for mayor in a small, conservative Wisconsin town.",2020-07-01,2.1612,6.006,462 +8159,66129,The Tuche Family,"Everyone in the village of Bouzolles knows the Tuche family, who live by the philosophy ""Man is not made to work."" Despite their lack of money, they strive to be happy... that is, until their hand-to-mouth existence is turned on its head. After winning the lottery, the Tuches get rich beyond their wildest dreams and move to Monaco. And while attempting to fit in in their swanky new homeland, they struggle to stay true to the same principles by which they've always lived.",2011-06-30,1.8318,6.006,1313 +8160,17336,Fighting,"Small-town boy Shawn MacArthur has come to New York City with nothing. Barely earning a living selling counterfeit goods on the streets, his luck changes when scam artist Harvey Boarden sees that he has a natural talent for streetfighting. When Harvey offers Shawn help at making the real cash, the two form an uneasy partnership.",2009-04-24,2.7213,6.006,722 +8161,9948,The Fox and the Hound 2,"Best friends Tod, a fox kit, and Copper, a hound puppy, visit a country fair when they see a band of dogs called ""The Singin' Strays"". The band has five members: Dixie, Cash, Granny Rose, and twin brothers Waylon and Floyd. It is important that they perform well because a talent scout is visiting.",2006-11-09,3.8923,6.006,673 +8162,672582,The Deep House,"While diving in a remote French lake, a couple of YouTubers who specialise in underwater exploration videos discover a house submerged in the deep waters. What was initially a unique finding soon turns into a nightmare when they discover that the house was the scene of atrocious crimes. Trapped, with their oxygen reserves falling dangerously, they realise the worst is yet to come: they are not alone in the house.",2021-06-30,2.5683,6.005,1041 +8163,11638,Guess Who,"When a young African-American woman brings her fiancé home to meet her parents, she's neglected to mention one tiny detail – he's white.",2005-03-25,2.122,6.005,934 +8164,1124620,The Monkey,"When twin brothers find a mysterious wind-up monkey, a series of outrageous deaths tear their family apart. Twenty-five years later, the monkey begins a new killing spree forcing the estranged brothers to confront the cursed toy.",2025-02-14,19.2745,6.003,868 +8165,143049,Adult World,"Amy, a naive college graduate who believes she's destined to be a great poet, begrudgingly accepts a job at a sex shop while she pursues a mentorship with reclusive writer Rat Billings.",2014-02-14,1.3664,6.004,375 +8166,26691,Neuilly Yo Mama!,Samy moves from the underdeveloped crime-ridden French suburb to the riches of Neuilly.,2009-08-12,0.52,6.0,935 +8167,9997,Gabriel,Gabriel tells the story of an archangel who fights to bring light back to purgatory - a place where darkness rules - and save the souls of the city's inhabitants.,2007-11-15,1.3194,6.004,408 +8168,11595,Another 48 Hrs.,"For the past four years, San Francisco cop Jack Cates has been after an unidentified drug kingpin who calls himself the Ice Man. Jack finds a picture that proves that the Ice Man has put a price on the head of Reggie Hammond, who is scheduled to be released from prison on the next day.",1990-06-08,2.1989,6.003,919 +8169,483202,Eli,"A boy named Eli with a rare autoimmune disorder is confined to a special experimental clinic for his treatment. He soon begins experiencing supernatural forces, turning the supposedly safe facility into a haunted prison for him and his fellow patients.",2019-10-18,2.1202,5.998,1445 +8170,55465,A Very Harold & Kumar Christmas,"Six years have elapsed since Guantanamo Bay, leaving Harold and Kumar estranged from one another with very different families, friends and lives. But when Kumar arrives on Harold's doorstep during the holiday season with a mysterious package in hand, he inadvertently burns down Harold's father-in-law's beloved Christmas tree. To fix the problem, Harold and Kumar embark on a mission through New York City to find the perfect Christmas tree, once again stumbling into trouble at every single turn.",2011-11-04,2.2315,5.995,992 +8171,643586,Willy's Wonderland,"When his car breaks down, a quiet loner agrees to clean an abandoned family fun center in exchange for repairs. He soon finds himself waging war against possessed animatronic mascots while trapped inside Willy's Wonderland.",2021-02-12,3.2444,5.999,1056 +8172,442249,The First Purge,"To push the crime rate below one percent for the rest of the year, the New Founding Fathers of America test a sociological theory that vents aggression for one night in one isolated community. But when the violence of oppressors meets the rage of the others, the contagion will explode from the trial-city borders and spread across the nation.",2018-07-04,4.8632,6.0,4078 +8173,340487,Certain Women,Three strong-willed women strive to forge their own paths amidst the wide-open plains of the American Northwest: a lawyer forced to subdue a troubled client; a wife and mother whose plans to construct her dream home reveal fissures in her marriage; and a lonely ranch hand who forms an ambiguous bond with a young law student.,2016-09-25,2.2755,6.0,359 +8174,249660,God's Not Dead,"After he refuses to disavow his faith, a devout Christian student must prove the existence of God or else his college philosophy professor will fail him.",2014-03-21,2.327,6.0,929 +8175,13078,The Babysitters,"Seventeen-year-old Shirley is a good student who works as a babysitter in order to make money for college. One night Michael, a father Shirley works for, confesses he's unhappy with married life. Shirley has a crush on Michael, and seizes this moment to kiss him. Michael is so happy he presents Shirley with a big tip, which gives her an idea. Shirley plans to make extra money by setting up her teenage friends with other unhappy fathers.",2008-05-09,3.7684,6.0,515 +8176,11379,The Adventures of Buckaroo Banzai Across the 8th Dimension,"Adventurer/surgeon/rock musician Buckaroo Banzai and his band of men, the Hong Kong Cavaliers, take on evil alien invaders from the 8th dimension.",1984-08-10,2.7709,6.0,461 +8177,10023,Dragnet,"LAPD Sgt. Joe Friday -- the equally straight-laced nephew of the famous police sergeant of the same name -- is paired up with a young, freewheeling detective named Pep Streebeck. After investigating some strange robberies at the local zoo and the theft of a stockpile of pornographic magazines, they uncover cult activity in the heart of the city and are hot on the case to figure out who's behind it all.",1987-06-26,2.2578,6.0,507 +8178,341689,How to Talk to Girls at Parties,"In 1970s London, a teenage outsider named Enn falls in love with a rebellious alien girl named Zan, who has come to Earth for a party. Together, they navigate the complexities of intergalactic culture and the trials of first love.",2017-10-06,1.7125,5.999,403 +8179,300153,Life,"In 1955, young photographer Dennis Stock develops a close bond with actor James Dean while shooting pictures of the rising Hollywood star.",2015-09-09,1.2704,5.999,353 +8180,20850,Ilsa: She Wolf of the SS,"Ilsa, a warden at a Nazi death camp that conducts experiments on prisoners, strives to prove that women can withstand more pain and suffering than men, and therefore should be allowed to fight on the frontlines.",1975-10-01,1.9908,6.0,361 +8181,11419,Vegas Vacation,"The Griswold family hits the road again for a typically ill-fated vacation, this time to the glitzy mecca of slots and showgirls—Las Vegas.",1997-02-13,2.1985,5.999,674 +8182,763788,Dangerous,"A reformed sociopath heads to a remote island after the death of his brother. Soon after his arrival, the island falls under siege from a deadly gang of mercenaries, and when he discovers their role in his brother’s demise, he sets out on a relentless quest for vengeance.",2021-11-05,2.5447,5.998,487 +8183,520663,The Woman in the Window,An agoraphobic woman living alone in New York begins spying on her new neighbors only to witness a disturbing act of violence.,2021-05-13,1.8789,5.998,2032 +8184,274854,The Last Witch Hunter,"The modern world holds many secrets, but by far the most astounding is that witches still live among us; vicious supernatural creatures intent on unleashing the Black Death upon the world and putting an end to the human race once and for all. Armies of witch hunters have battled this unnatural enemy for centuries, including Kaulder, a valiant warrior who many years ago slayed the all-powerful Witch Queen, decimating her followers in the process. In the moments right before her death, the Queen cursed Kaulder with immortality, forever separating him from his beloved wife and daughter. Today, Kaulder is the last living hunter who has spent his immortal life tracking down rogue witches, all the while yearning for his long-lost family.",2015-10-21,5.8116,5.999,3699 +8185,11915,The Gendarme and the Gendarmettes,"Cruchot's police office moves into a new building. They do not only get high tech equipment, but also four young female police officers to educate. All of them scramble to work with them -- and cause pure chaos while being distracted by the fine ladies. Then they get into real trouble when one after the other of their female colleagues is kidnapped.",1982-10-03,1.955,6.0,565 +8186,9645,Ghost Ship,"After discovering a passenger ship missing since 1962 floating adrift on the Bering Sea, salvagers claim the vessel as their own. Once they begin towing the ghost ship towards harbor, a series of bizarre occurrences happen and the group becomes trapped inside the ship, which they soon learn is inhabited by a demonic creature.",2002-10-25,4.2389,5.998,2499 +8187,773975,End of the Road,Recently widowed mom Brenda fights to protect her family during a harrowing road trip when a murder and a missing bag of cash plunge them into danger.,2022-09-09,1.4527,6.0,332 +8188,59861,Larry Crowne,"When he suddenly finds himself without his long-standing blue-collar job, Larry Crowne enrolls at his local college to start over. There, he becomes part of an eclectic community of students and develops a crush on his teacher.",2011-06-30,2.5167,5.997,1355 +8189,7501,Knockaround Guys,Four sons of well-known New York mobsters must retrieve a bag of cash from a small Montana town ruled by a corrupt sheriff.,2001-11-30,1.7666,5.997,368 +8190,818,Austin Powers in Goldmember,"The world's most shagadelic spy continues his fight against Dr. Evil. This time, the diabolical doctor and his clone, Mini-Me, team up with a new foe—'70s kingpin Goldmember. While pursuing the team of villains to stop them from world domination, Austin gets help from his dad and an old girlfriend.",2002-07-26,4.9732,6.0,3225 +8191,706510,Desperados,"A panicked young woman and her two best friends fly to Mexico to delete a ranting email she sent to her new boyfriend. On arrival, they run into her former beau, who soon gets caught up in their frantic scheme.",2020-07-01,1.0799,5.996,484 +8192,542224,Gretel & Hansel,"A long time ago in a distant fairy tale countryside, a young girl leads her little brother into a dark wood in desperate search of food and work, only to stumble upon a nexus of terrifying evil.",2020-01-30,2.9222,6.0,1480 +8193,36669,Die Another Day,"James Bond is sent to investigate the connection between a North Korean terrorist and a diamond mogul, who is funding the development of an international space weapon.",2002-11-17,6.1374,5.996,3659 +8194,19840,"I Love You, Beth Cooper","A valedictorian's declaration of love for a high-school cheerleader launches a night of revelry, reflection and romance for a group of graduating seniors.",2009-07-10,2.2915,6.0,914 +8195,894169,Vendetta,"When his daughter is murdered, William Duncan takes the law into his own hands, setting out on a quest for retribution. After killing the street thug responsible for her death, he finds himself in the middle of a war with the thug's brother, father, and their gang, who are equally hell-bent on getting even. What ensues is a tense back-and-forth game of vengeance. By the end, William comes to find that the quest for revenge never has a winner.",2022-05-17,3.3426,6.0,307 +8196,615677,We Can Be Heroes,"When alien invaders capture Earth's superheroes, their kids must learn to work together to save their parents - and the planet.",2020-12-25,7.1173,6.0,789 +8197,123109,No One Lives,A gang of ruthless highway killers kidnap a wealthy couple traveling cross country only to shockingly discover that things are not what they seem.,2013-03-09,1.538,5.995,645 +8198,50725,Take Me Home Tonight,"Recent MIT grad Matt Franklin should be well on his way to a successful career at a Fortune 500 company, but instead he rebels against maturity by taking a job at a video store. Matt rethinks his position when his unrequited high-school crush, Tori, walks in and invites him to an end-of-summer party. With the help of his twin sister and his best friend, Matt hatches a plan to change the course of his life.",2011-03-04,2.2264,5.995,686 +8199,28468,The Key,"Art professor Nino Rolfe attempts to break down his wife Teresa's conventional modesty. Noticing her affection for their daughter's fiancé, Nino instigates her sexual interest in him - setting off a chain of unexpected events and emotional complications...",1983-10-19,6.8282,6.0,421 +8200,9466,Celebrity,"The career and personal life of writer Lee are at a standstill, so he divorces his bashful wife, Robin, and dives into a new job as an entertainment journalist. His assignments take him to the swankiest corners of Manhattan, but as he jumps from one lavish party to another and engages in numerous empty romances, he starts to doubt the worth of his work. Meanwhile, top TV producer Tony falls for Robin and introduces her to the world of celebrity.",1998-09-07,1.5346,5.995,485 +8201,343611,Jack Reacher: Never Go Back,"Years after resigning command of an elite military police unit, the nomadic, righter-of-wrongs Reacher is drawn back into the life he left behind when his friend and successor, Major Susan Turner is framed for espionage. Reacher will stop at nothing to prove her innocence and to expose the real perpetrators behind the killings of his former soldiers.",2016-10-19,8.4733,5.994,5052 +8202,76494,What to Expect When You're Expecting,"Challenges of impending parenthood turn the lives of five couples upside down. Two celebrities are unprepared for the surprise demands of pregnancy; hormones wreak havoc on a baby-crazy author, while her husband tries not to be outdone by his father, who's expecting twins with his young trophy wife; a photographer's husband isn't sure about his wife's adoption plans; a one-time hook-up results in a surprise pregnancy for rival food-truck owners.",2012-05-17,3.4517,5.994,1816 +8203,9453,Caligula,"After the death of the paranoid emperor Tiberius, Caligula, his heir, seizes power and plunges the empire into a bloody spiral of madness and depravity.",1979-08-14,5.861,6.0,894 +8204,6472,Guarding Tess,"Doug is a Secret Service Agent who has just completed his stint in charge protecting Tess Carlisle—the widow of a former U.S. President, and a close personal friend of the current President. He finds that she has requested that he not be rotated but instead return to be her permanent detail. Doug is crushed, and—after returning—wants off her detail as she is very difficult to guard and makes her detail crazy with her whims and demands.",1994-03-11,1.8294,6.0,333 +8205,183662,Crush,A secret admirer's crush on a high school athlete takes a fatal turn.,2013-03-13,1.5759,5.993,355 +8206,44363,Frozen,"When three skiers find themselves stranded on a chair lift at a New England ski resort that has closed for the next week, they are forced to make life or death choices that prove to be more perilous than staying put and freezing to death.",2010-02-05,2.661,5.993,1901 +8207,13159,Georgia Rule,"Rebellious, uncontrollable teenager, Rachel is hauled off by her dysfunctional mother to spend the summer with her estranged grandmother, Georgia. Her journey will lead all three women to revelations of buried family secrets and an understanding that - regardless what happens - the ties that bind can never be broken.",2007-05-10,2.2091,5.993,449 +8208,10538,Passenger 57,"Airline security specialist John Cutter, finally returning to the job after his wife's death, finds himself stuck on a flight being hijacked by notorious terrorist Charles Rane. Unfortunately for the terrorists, they're also stuck with him.",1992-11-06,2.9626,5.993,1048 +8209,9894,The Cable Guy,"When recently single Steven moves into his new apartment, cable guy Chip comes to hook him up—and doesn't let go. Initially, Chip is just overzealous in his desire to be Steven's pal, but when Steven tries to end the 'friendship', Chip shows his dark side. He begins stalking Steven, who's left to fend for himself because no one else can believe Chip's capable of such behaviour.",1996-06-10,2.4081,5.993,2521 +8210,2067,Mission to Mars,"When the first manned mission to Mars meets with a catastrophic and mysterious disaster after reporting an unidentified structure, a rescue mission is launched to investigate the tragedy and bring back any survivors.",2000-03-10,2.7015,5.993,1485 +8211,413857,Tragedy Girls,"McKayla and Sadie, two death-obsessed teenage girls, use their online show about real-life tragedies to send their small Midwestern town into a frenzy and cement their legacy as modern horror legends.",2017-10-20,1.967,6.0,327 +8212,18239,The Twilight Saga: New Moon,"Forks, Washington resident Bella Swan is reeling from the departure of her vampire love, Edward Cullen, and finds comfort in her friendship with Jacob Black, a werewolf. But before she knows it, she's thrust into a centuries-old conflict, and her desire to be with Edward at any cost leads her to take greater and greater risks.",2009-11-18,10.7121,5.992,9425 +8213,11306,Extreme Measures,"Guy Luthan, a British doctor working at a hospital in New York, starts making unwelcome enquiries when the body of a man who died in his emergency room disappears. After the trail leads Luthan to the door of an eminent surgeon at the hospital, Luthan soon finds himself in extreme danger people who want the hospital's secret to remain undiscovered.",1996-09-27,1.741,6.0,329 +8214,9566,The Fan,"When the San Francisco Giants pay center-fielder, Bobby Rayburn $40 million to lead their team to the World Series, no one is happier or more supportive than #1 fan, Gil Renard. When Rayburn becomes mired in the worst slump of his career, the obsessed Renard decides to stop at nothing to help his idol regain his former glory—not even murder.",1996-08-15,2.4134,6.0,811 +8215,8914,Deep Blue Sea,"Researchers on the undersea lab Aquatica have genetically altered the brains of captive sharks to develop a cure for Alzheimer's disease. But there's an unexpected side effect: the sharks got smarter, faster, and more dangerous. After a big storm damages their remote research facility, they must fight for their lives.",1999-07-28,5.768,5.993,2516 +8216,4234,Scream 3,"While Sidney Prescott and her friends visit the Hollywood set of Stab 3, the third film based on the Woodsboro murders, another Ghostface killer rises to terrorize them.",2000-02-04,4.9221,5.991,3770 +8217,60405,Sharpay's Fabulous Adventure,"After a talent scout spots her performing with her dog Boi at a charity gala, Sharpay Evans sets off for the bright lights of NYC, convinced instant fame and fortune are in the bag. But theatre's a dog-eat-dog world. Fortunately, Sharpay also meets Peyton, a handsome student filmmaker who finds Sharpay nearly as fascinating as she finds herself.",2011-04-19,2.44,5.991,552 +8218,10402,Deuce Bigalow: Male Gigolo,"Deuce Bigalow is a less than attractive, down on his luck aquarium cleaner. One day he wrecks the house of a gigolo and needs quick money to repair it. The only way he can make it is to become a gigolo himself, taking on an unusual mix of female clients. He encounters a couple of problems, though. He falls in love with one of his unusual clients, and a sleazy police officer is hot on his trail.",1999-12-10,3.8393,5.991,1459 +8219,9096,Medicine Man,"An eccentric scientist in the Amazon jungle rejects his research assistant for being a woman, but as bulldozers threaten their work on a potential cancer cure, they learn to collaborate and begin to fall in love.",1992-02-07,1.6107,5.991,393 +8220,9091,Sudden Death,When a man's daughter is suddenly taken during a championship hockey game – with the captors demanding a billion dollars by game's end – he frantically sets a plan in motion to rescue her and abort an impending explosion before the final buzzer.,1995-10-27,1.6762,5.991,754 +8221,7090,Ken Park,"Ken Park focuses on several teenagers and their tormented home lives. Shawn seems to be the most conventional. Tate is brimming with psychotic rage; Claude is habitually harassed by his brutish father and coddled, rather uncomfortably, by his enormously pregnant mother. Peaches looks after her devoutly religious father, but yearns for freedom. They're all rather tight, or so they claim.",2003-01-30,3.6091,5.994,641 +8222,9569,Hard to Kill,"Mason Storm, a 'go it alone' cop, is gunned down at home. The intruders kill his wife, and think they've killed both Mason and his son too. Mason is secretly taken to a hospital where he spends several years in a coma. His son meanwhile is growing up thinking his father is dead. When Mason wakes up, everyone is in danger - himself, his son, his best friend, his nurse - but most of all those who arranged for his death",1990-02-09,2.9557,5.99,630 +8223,955531,Sister Death,"Spain, 1949. Narcisa, a novice, arrives at an old convent, converted into a girls' school, to work as a teacher.",2023-10-05,2.1206,5.989,333 +8224,41439,Saw 3D,"As a deadly battle rages over Jigsaw's brutal legacy, a group of Jigsaw survivors gathers to seek the support of self-help guru and fellow survivor Bobby Dagen, a man whose own dark secrets unleash a new wave of terror.",2010-10-22,4.1171,5.989,3151 +8225,22821,The Boondock Saints II: All Saints Day,"Skillfully framed by an unknown enemy for the murder of a priest, wanted vigilante MacManus brothers Murphy and Connor must come out of hiding on a sheep farm in Ireland to fight for justice in Boston.",2009-11-24,1.4977,5.989,772 +8226,11866,Flight of the Phoenix,"When an oil rig in the Gobi Desert of Mongolia proves unproductive, an aircraft crew are sent to shut the operation down and fly them out. On the flight out over the desert on the way to Beijing, Capt. Frank Towns and co-pilot A.J. are unable to keep their cargo plane, a C-119 Flying Boxcar, in the air when a violent sandstorm strikes. Crash-landing in a remote uncharted part of the desert, the two pilots and their passengers -- a crew of oil workers and a drifter -- must work together to survive by rebuilding the aircraft. Soon, low supplies and a band of merciless smugglers add even greater urgency to their task.",2004-12-17,2.6113,5.989,889 +8227,11082,The Seventh Sign,"Abby is a pregnant woman with a curious new boarder in the apartment over her garage. Turns out he's heaven-sent and is speeding along the Apocalypse by bloodying rivers, egging on plagues and following scripture word for word.",1988-04-01,1.8106,6.0,348 +8228,8452,The 6th Day,"A world of the very near future in which cattle, fish, and even the family pet can be cloned. But cloning humans is illegal - that is until family man Adam Gibson comes home from work one day to find a clone has replaced him. Taken from his family and plunged into a sinister world he doesn't understand, Gibson must not only save himself from the assassins who must destroy him to protect their secret, but uncover who and what is behind the horrible things happening to him.",2000-11-17,3.2952,5.988,2114 +8229,378018,The Void,"In the middle of a routine patrol, officer Daniel Carter happens upon a blood-soaked figure limping down a deserted stretch of road. He rushes the young man to a nearby rural hospital staffed by a skeleton crew, only to discover that patients and personnel are transforming into something inhuman. As the horror intensifies, Carter leads the other survivors on a hellish voyage into the subterranean depths of the hospital in a desperate bid to end the nightmare before it's too late.",2016-09-22,3.2726,5.987,1315 +8230,247218,A Boss in the Living Room,"Cristina lives a peaceful life until her older brother Ciro, who has to attend a trial, asks to spend house arrests at Cristina’s home.",2014-01-01,0.541,5.987,530 +8231,49730,Red Riding Hood,"Valerie is in love with a brooding outsider, Peter, but her parents have arranged for her to marry another man. Unwilling to lose each other, Valerie and Peter plan to run away together when Valerie's older sister is killed by a werewolf that prowls the dark forest surrounding their village. Panic grips the town as Valerie discovers that she has a unique connection to the beast--one that inexorably draws them together, making her both suspect ... and bait.",2011-03-10,3.5926,5.989,3208 +8232,11015,The Relic,A homicide detective teams up with an evolutionary biologist to hunt a giant creature that is killing people in a Chicago museum.,1997-01-10,2.0035,5.987,558 +8233,10547,The Arrival,"Zane Ziminski is an astrophysicist who receives a message that seems to have extraterrestrial origins. Eerily soon after his discovery, Zane is fired. He then embarks on a search to determine the origins of the transmission that leads him into a Hitchcockian labyrinth of paranoia and intrigue.",1996-05-31,2.6672,5.986,769 +8234,9266,Blue Crush,"Nothing gets between Anne Marie and her board. Living in a beach shack with three roommates, she is up before dawn every morning to conquer the waves and count the days until the Pipe Masters competition. Having transplanted herself to Hawaii with no one's blessing but her own, Anne Marie finds all she needs in the adrenaline-charged surf scene - until pro quarterback Matt Tollman comes along...",2002-08-08,2.1822,6.0,544 +8235,609681,The Marvels,"When her duties send her to an anomalous wormhole linked to a Kree revolutionary, Carol's powers become entangled with that of Jersey City super-fan Kamala Khan, aka Ms. Marvel, and Carol's estranged niece, now S.A.B.E.R. astronaut Captain Monica Rambeau. Together, this unlikely trio must team up and learn to work in concert to save the universe.",2023-11-08,9.1172,5.984,3058 +8236,58595,Snow White and the Huntsman,"After the Evil Queen marries the King, she performs a violent coup in which the King is murdered and his daughter, Snow White, is taken captive. Almost a decade later, a grown Snow White is still in the clutches of the Queen. In order to obtain immortality, The Evil Queen needs the heart of Snow White. After Snow escapes the castle, the Queen sends the Huntsman to find her in the Dark Forest.",2012-05-30,4.2276,5.985,8005 +8237,252512,While We're Young,An uptight documentary filmmaker and his wife find their lives loosened up a bit after befriending a free-spirited younger couple.,2015-03-27,1.5676,5.984,1144 +8238,222899,About Last Night,"Bernie and Joan are two fiery flirters who are passionate about everything from hookups to breakups and each other. When he sets up his best friend, Danny, with her roommate, Debbie, the sparks soon fly as they try to navigate the relationship minefields from the bar to the bedroom and are eventually put to the test in the real world.",2014-02-14,1.7034,6.0,510 +8239,43939,I'm Still Here,"I'm Still Here is a portrayal of a tumultuous year in the life of actor Joaquin Phoenix. With remarkable access, the film follows the Oscar-nominee as he announces his retirement from a successful film career in the fall of 2008 and sets off to reinvent himself as a hip-hop musician. The film is a portrait of an artist at a crossroads and explores notions of courage and creative reinvention, as well as the ramifications of a life spent in the public eye.",2010-09-10,1.4953,6.0,381 +8240,8555,Creep,"Trapped in a London subway station, a woman who's being pursued by a potential attacker heads into the unknown labyrinth of tunnels beneath the city's streets",2004-08-10,2.8392,5.984,784 +8241,3597,I Know What You Did Last Summer,"After an accident on a winding road, four teens make the fatal mistake of dumping their victim's body into the sea. Exactly one year later, the deadly secret resurfaces as they're stalked by a hook-handed figure.",1997-10-17,9.0271,5.984,2994 +8242,1679,Godzilla Raids Again,"Two fishing scout pilots make a horrifying discovery when they encounter a second Godzilla alongside a new monster named Anguirus. Without the weapon that killed the original, authorities attempt to lure Godzilla away from the mainland. But Anguirus soon arrives and the two monsters make their way towards Osaka as Japan braces for tragedy.",1955-04-24,2.0403,5.984,305 +8243,209112,Batman v Superman: Dawn of Justice,"Fearing the actions of a god-like Super Hero left unchecked, Gotham City’s own formidable, forceful vigilante takes on Metropolis’s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it’s ever known before.",2016-03-23,19.094,5.983,18421 +8244,32823,Get Him to the Greek,"Pinnacle records has the perfect plan to get their sinking company back on track: a comeback concert in LA featuring Aldous Snow, a fading rockstar who has dropped off the radar in recent years. Record company intern Aaron Green is faced with the monumental task of bringing his idol, out of control rock star Aldous Snow, back to LA for his comeback show.",2010-06-03,2.2868,6.0,1821 +8245,19994,Jennifer's Body,"Jennifer, a gorgeous, seductive cheerleader takes evil to a whole new level after she's possessed by a sinister demon. Now it's up to her best friend to stop Jennifer's reign of terror before it's too late.",2009-09-18,6.6359,5.983,4002 +8246,10349,The Dark Half,"Thad Beaumont is the author of a highly successful series of violent pulp thrillers written under the pseudonym of ‘George Stark’, but when he decides to ‘kill-off’ his alter-ego in a mock ceremony, it precipitates a string of sadistic murders matching those in his pulp novels, which are soon discovered to be the work of Stark himself. Looking like a maniacal version of his counterpart, Stark is not so willing to quit the writing game – even if it means coming after Thad's wife and their baby.",1993-04-23,1.6801,5.982,436 +8247,848187,Role Play,Emma has a wonderful husband and two kids in the suburbs of New Jersey – she also has a secret life as an assassin for hire – a secret that her husband David discovers when the couple decide to spice up their marriage with a little role play.,2023-12-14,5.8358,5.981,573 +8248,353069,Mother's Day,"Sandy is a stressed-out, single mom who learns that her ex-husband is marrying a younger woman. Her friend Jesse's parents don't know that she has a family or that her sister, Gabi is married to a woman. Jesse's friend, Kristin, is juggling motherhood of a toddler, a patient boyfriend who keeps proposing, and searching for her biological mother. Bradley is a widower who's trying to raise two daughters on his own, while Miranda is too busy with her career to worry about children. When their respective problems intersect and start coming to a head, the Mother's Day holiday takes on a special meaning for all.",2016-04-28,3.0114,6.0,1290 +8249,11133,Poltergeist II: The Other Side,"The Freeling family move in with Diane's mother in an effort to escape the trauma and aftermath of Carol Anne's abduction by the Beast. But the Beast is not to be put off so easily and appears in a ghostly apparition as the Reverend Kane, a religious zealot responsible for the deaths of his many followers. His goal is simple - he wants the angelic Carol Anne.",1986-05-23,2.5099,5.981,718 +8250,9296,S1m0ne,"The career of a disillusioned producer, who is desperate for a hit, is endangered when his star walks off the film set. Forced to think fast, the producer decides to digitally create an actress ""Simone"" to sub for the star — the first totally believable synthetic actress.",2002-08-23,1.1931,5.981,928 +8251,618,The Birth of a Nation,"Two families, abolitionist Northerners the Stonemans and Southern landowners the Camerons, intertwine. When Confederate colonel Ben Cameron is captured in battle, nurse Elsie Stoneman petitions for his pardon. In Reconstruction-era South Carolina, Cameron founds the Ku Klux Klan, battling Elsie's congressman father and his African-American protégé, Silas Lynch.",1915-03-08,2.7847,5.981,559 +8252,333348,Love the Coopers,"When four generations of the Cooper clan come together for their annual Christmas Eve celebration, a series of unexpected visitors and unlikely events turn the night upside down, leading them all toward a surprising rediscovery of family bonds and the spirit of the holiday.",2015-11-12,1.6643,5.98,822 +8253,308024,The Overnight,"Alex, Emily, and their son, RJ, are new to Los Angeles. A chance meeting at the park introduces them to the mysterious Kurt, Charlotte, and Max. A family “playdate” becomes increasingly interesting as the night goes on.",2015-06-19,1.6483,5.98,346 +8254,88042,Parental Guidance,Artie and Diane agree to look after their three grandkids when their type-A helicopter parents need to leave town for work. Problems arise when the kids' 21st-century behavior collides with Artie and Diane's old-school methods.,2012-12-25,2.7646,5.98,468 +8255,45535,Fatal,"Fatal... a diminutive for Fatal Bazooka, a bling-bling and hardcore rapper. A huge music star. Millions of fans, tens of hits, 4 « Artist of the year » Music Awards of Music, a range of fashion, a magazine, and soon his own amusement park : Fataland. He is the undisputed number one, until...",2010-06-16,0.7077,5.98,638 +8256,14451,Dead Snow,Eight medical students on a ski trip to Norway discover that Hitler's horrors live on when they come face to face with a battalion of zombie Nazi soldiers intent on devouring anyone unfortunate enough to wander into the remote mountains where they were once sent to die.,2009-01-09,1.7272,5.98,1155 +8257,497814,Breaking In,"Shaun Russell takes her son and daughter on a weekend getaway to her late father's secluded, high-tech vacation home in the countryside. The family soon gets an unwelcome surprise when four men break into the house to find hidden money. After managing to escape, Shaun must now figure out a way to turn the tables on the desperate thieves and save her captive children.",2018-05-05,1.7708,6.0,675 +8258,302688,My Big Fat Greek Wedding 2,"The continuing adventures of the Portokalos family. A follow-up to the 2002 comedy, ""My Big Fat Greek Wedding.""",2016-03-23,3.0855,5.979,1036 +8259,700391,65,"65 million years ago, the only 2 survivors of a spaceship from Somaris that crash-landed on Earth, must fend off dinosaurs to reach the escape vessel in time before an imminent asteroid strike threatens to destroy the planet.",2023-03-02,5.693,5.978,2607 +8260,312791,GirlHouse,"In an attempt to make some extra cash while away at College, Kylie moves into a house that streams content to an X-rated website. After a deranged fan hacks in to determine the house's location, she finds herself in a terrifying fight for her life.",2014-10-16,1.886,6.0,301 +8261,146198,Triple 9,A gang of criminals and corrupt cops plan the murder of a police officer in order to pull off their biggest heist yet across town.,2016-02-19,3.0751,5.978,2186 +8262,10678,Bringing Down the House,"Uptight lawyer Peter Sanderson wants to dive back into dating after his divorce and has a hard time meeting the right women. He tries online dating and lucks out when he starts chatting with a fellow lawyer. The two agree to meet in the flesh, but the woman he meets — an escaped African-American convict named Charlene — is not what he expected. Peter is freaked out, but Charlene tries to convince him to take her case and prove her innocence. Along the way, she wreaks havoc on his middle-class life as he gets a lesson in learning to lighten up.",2003-03-07,1.8955,5.978,714 +8263,8069,Barbarella,"In the far future, a highly sexual woman is tasked with finding and stopping the evil Durand-Durand. Along the way she encounters various unusual people.",1968-10-10,2.8242,5.978,770 +8264,2313,Prime,"A career driven professional from Manhattan is wooed by a young painter, who also happens to be the son of her psychoanalyst.",2005-09-21,2.2101,5.978,813 +8265,8698,The League of Extraordinary Gentlemen,"To prevent a world war from breaking out, famous characters from Victorian literature band together to do battle against a cunning villain.",2003-07-11,4.6172,5.977,4155 +8266,1008392,The Blackening,"Seven black friends go away for the weekend, only to find themselves trapped in a cabin with a killer who has a vendetta. They must pit their street smarts and knowledge of horror movies against the murderer to stay alive.",2023-06-15,1.8698,5.976,349 +8267,396806,Anon,"Set in a near-future world where there is no privacy, ignorance or anonymity, our private memories are recorded and crime almost ceases to exist. In trying to solve a series of unsolved murders, Sal Frieland stumbles onto a young woman who appears to have subverted the system and disappeared. She has no identity, no history and no record. Sal realizes it may not be the end of crime but the beginning. Known only as 'The Girl', Sal must find her before he becomes the next victim.",2018-05-03,2.5036,5.976,1633 +8268,346681,Wilson,"Middle-aged and divorced, Wilson finds himself lonely, smug, and obsessed with his past.",2017-03-24,1.6291,5.976,368 +8269,80038,Friends with Kids,"In the wake of their friends' marriages and eventual offspring, longtime pals Julie and Jason decide to have a child together without becoming a couple. By becoming ""time-share"" parents, they reason, they can experience the joys of parenthood without significantly curbing their personal freedom. However, when Julie and Jason both become involved with others, they discover that they secretly harbor romantic feelings for each other.",2012-03-09,1.6778,5.976,476 +8270,10571,Boys and Girls,"Ryan and Jennifer are opposites who definitely do not attract. At least that's what they always believed. When they met as twelve-year-olds, they disliked one another. When they met again as teenagers, they loathed each other. But when they meet in college, the uptight Ryan and the free-spirited Jennifer find that their differences bind them together and a rare friendship develops.",2000-06-16,1.549,6.0,400 +8271,7515,London,London is a drug laden adventure that centers on a party in a New York loft where a young man is trying to win back his ex-girlfriend.,2005-09-03,1.5557,5.975,324 +8272,356842,The Ones Below,"A young affluent couple expecting their first child hits it off with the new couple that moves in downstairs, until a dinner party between them ends in a shocking accident.",2016-03-11,1.1222,5.974,360 +8273,58224,Mr. Popper's Penguins,"Tom Popper is a successful businessman who’s clueless when it comes to the really important things in life...until he inherits six “adorable” penguins, each with its own unique personality. Soon Tom’s rambunctious roommates turn his swank New York apartment into a snowy winter wonderland — and the rest of his world upside-down.",2011-06-17,2.6258,5.974,3041 +8274,664341,Eileen,"During a bitter 1964 Massachusetts winter, young secretary Eileen becomes enchanted by Rebecca, the glamorous new counselor at the prison where she works. Their budding friendship takes a twisted turn when Rebecca reveals a dark secret — throwing Eileen onto a sinister path.",2023-12-01,1.8265,5.973,301 +8275,559581,Stowaway,A three-person crew on a mission to Mars faces an impossible choice when an unplanned passenger jeopardizes the lives of everyone on board.,2021-06-24,1.5914,5.973,575 +8276,21427,The Valet,"Caught by tabloid paparazzi with his mistress Elena, a famous and beautiful fashion model, billionaire Pierre Levasseur tries to avoid a divorce by inventing a preposterous lie. He uses the presence of a passerby in the photo to claim to his wife that it's not him Elena is seeing but the other man, one François Pignon. Pignon is a modest little man who works as a parking valet. To make the story convincing, Elena has to move in with Pignon.",2006-03-29,2.1874,5.973,527 +8277,9406,An American Werewolf in Paris,An American man unwittingly gets involved with werewolves who have developed a serum allowing them to transform at will.,1997-05-29,2.5369,5.973,712 +8278,8975,The Marine,A group of diamond thieves on the run kidnap the wife of a recently discharged marine who goes on a chase through the South Carolinian wilderness to retrieve her.,2006-10-13,2.8505,5.973,784 +8279,1722,Captain Corelli's Mandolin,"When a fisherman leaves to fight with the Greek army during World War II, his fiancée falls in love with the local Italian commander.",2001-04-18,1.8794,5.973,542 +8280,18502,The Stuff,"Amalgamated Dairies hires David Rutherford, an FBI man turned industrial saboteur, to investigate a popular new product called “the Stuff,” a new dessert product that is blowing ice cream sales out of the water. Nobody knows how it’s made or what’s in it, but people are lining up to buy it. It's got a delicious flavor to die for!",1985-06-14,2.3779,5.972,494 +8281,14372,Leviathan,Underwater deep-sea miners encounter a Soviet wreck and bring back a dangerous cargo to their base on the ocean floor with horrifying results. The crew of the mining base must fight to survive against a genetic mutation that hunts them down one by one.,1989-03-17,1.7455,5.972,518 +8282,12517,Calvaire,"A few days before Christmas, traveling entertainer Marc Stevens is stuck at nightfall in a remote wood in the swampy Hautes Fagnes region of Liège when his van breaks down. An odd chap who's looking for a lost dog then leads Marc to a shuttered inn.",2005-03-09,0.9372,5.972,326 +8283,11199,Wild Hogs,"Restless and ready for an adventure, four suburban bikers leave the safety of their subdivision and head out on the open road. But complications ensue when they cross paths with an intimidating band of New Mexico bikers known as the Del Fuegos.",2007-03-02,3.3335,5.972,2344 +8284,943930,Tin & Tina,"After a traumatic miscarriage, Lola and her husband Adolfo adopt Tin and Tina, a lovely albino brother and sister with an ultra-catholic education that makes them interpret Holy Bible verbatim.",2023-03-24,2.143,5.971,431 +8285,460321,Close,"A counter-terrorism expert takes a job protecting a young heiress. After an attempted kidnapping puts both of their lives in danger, they must flee.",2019-02-22,2.8948,5.971,684 +8286,301348,Elvis & Nixon,"In 1970, a few days before Christmas, Elvis Presley showed up on the White House lawn seeking to be deputized into the Bureau of Narcotics and Dangerous Drugs by the President himself.",2016-03-22,1.0736,5.971,424 +8287,211067,The Sacrament,"Two journalists set out to document their friend's journey to reunite with his estranged sister. They track her to an undisclosed location where they are welcomed into the remote world of ""Eden Parish,"" a self-sustained rural utopia composed of nearly two hundred members and overseen by a mysterious leader known only as ""Father."" It quickly becomes evident to the newcomers that this paradise may not be as it seems. Eden Parish harbors a twisted secret. What started as just another documentary shoot soon becomes a fight for survival.",2013-09-02,1.399,5.971,471 +8288,44894,I Love You in Every Language in the World,"Divorced high school PE teacher Gilberto falls in love with Margherita, unaware that she is the mother of Paolina, a student who's been hitting on him.",2005-12-16,0.2413,5.971,489 +8289,24402,Emmanuelle,An employee at the French Embassy in Bangkok invites his wife to join him – and enjoy the benefits of their open marriage.,1974-06-25,5.8495,6.0,786 +8290,12994,The Nines,"A troubled actor, a television show runner, and an acclaimed videogame designer find their lives intertwining in mysterious and unsettling ways.",2007-01-21,0.9068,5.971,441 +8291,340402,Almost Christmas,A dysfunctional family gathers together for their first Christmas since the death of their matriarch.,2016-11-11,2.1114,5.97,369 +8292,320288,Dark Phoenix,"The X-Men face their most formidable and powerful foe when one of their own, Jean Grey, starts to spiral out of control. During a rescue mission in outer space, Jean is nearly killed when she's hit by a mysterious cosmic force. Once she returns home, this force not only makes her infinitely more powerful, but far more unstable. The X-Men must now band together to save her soul and battle aliens that want to use Grey's new abilities to rule the galaxy.",2019-06-05,9.4589,5.969,6741 +8293,175116,Out of the Blue,"Andrea is a handsome and cocky 38-year old man with a successful business career. Shallow, womanizing and a confirmed bachelor, his life seems to be just perfect... until the day he comes home and finds there Layla, a teenage girl who claims to be his daughter. Alongside Layla is her grandfather Enzo, a former rockstar and the father of Andrea's first fleeting and forgotten conquest. And they've come to stay!",2013-03-14,0.4146,5.97,318 +8294,9348,Species,"In 1993, the Search for Extra Terrestrial Intelligence Project receives a transmission detailing an alien DNA structure, along with instructions on how to splice it with human DNA. The result is Sil, a sensual but deadly creature who can change from a beautiful woman to an armour-plated killing machine in the blink of an eye.",1995-07-07,5.5156,5.97,1713 +8295,9021,The Santa Clause 2,"Better watch out! The big guy in red is coming to town once again. This time, Scott Calvin -- also known as Santa Claus -- finds out there's an obscure clause in his contract requiring him to take on a wife. He has to leave the North Pole to fulfill his obligations, or else he'll be forced to give up his Yuletide gig.",2002-09-29,2.7473,6.0,1345 +8296,1125311,Imaginary,"When Jessica moves back into her childhood home with her family, her youngest stepdaughter Alice develops an eerie attachment to a stuffed bear named Chauncey she finds in the basement. Alice starts playing games with Chauncey that begin playful and become increasingly sinister. As Alice’s behavior becomes more and more concerning, Jessica intervenes only to realize Chauncey is much more than the stuffed toy bear she believed him to be.",2024-03-06,3.6517,5.969,603 +8297,491473,Gloria Bell,"Gloria is a free-spirited divorcée who spends her days at a straight-laced office job and her nights on the dance floor, joyfully letting loose at clubs around Los Angeles. After meeting Arnold on a night out, she finds herself thrust into an unexpected new romance, filled with both the joys of budding love and the complications of dating, identity, and family.",2019-03-07,1.4363,6.0,324 +8298,27579,The American,"Dispatched to a small Italian town to await further orders, assassin Jack embarks on a double life that may be more relaxing than is good for him.",2010-08-31,4.041,5.969,1408 +8299,698128,Dual,"A terminally ill woman opts for a cloning procedure to ease her loss on her friends and family. When she makes a miraculous recovery, her attempts to have her clone decommissioned fail and lead to a court-mandated duel to the death.",2022-03-18,1.5427,5.968,343 +8300,243442,A Fantastic Back and Forth,"Middle-aged family man Arnaldo is kicked out by his wife because of a misunderstanding. Instead of despairing, Arnaldo takes advantage of the situation to turn around his unsatisfying adult life by going to live in a flat shared with four university students.",2013-12-12,0.5133,5.968,317 +8301,10765,Private Benjamin,A sheltered young high society woman joins the US Army on a whim and finds herself in a more difficult situation than she ever expected.,1980-10-06,1.2117,6.0,395 +8302,8780,Baby Mama,"A successful, single businesswoman who dreams of having a baby discovers she is infertile and hires a working class woman to be her unlikely surrogate.",2008-04-25,1.3317,5.968,665 +8303,823999,Diabolik: Ginko Attacks!,"Diabolik narrowly escapes Inspector Ginko's latest trap, leaving his partner in crime Eva Kant behind. Furious, Eva offers Ginko her help in capturing him, but the former has to face first the return of an old flame of his, noblewoman Altea.",2022-11-17,1.1049,5.967,474 +8304,597890,Voyagers,"With the future of the human race at stake, a group of young men and women -- bred for intelligence and obedience -- embark on an expedition to colonize a distant planet. When they uncover disturbing secrets about the mission, they defy their training and begin to explore their most primitive natures. As life on the ship descends into chaos, they soon become consumed by fear, lust and an insatiable hunger for power.",2021-04-08,2.4589,6.0,908 +8305,337154,The Meddler,"With a new iPhone, an apartment near the Grove, and a comfortable bank account left to her by her beloved late husband, Marnie Minervini has happily relocated from New Jersey to Los Angeles to be near her daughter Lori, a successful (but still single) screenwriter, and smother her with motherly love. But when the dozens of texts, unexpected visits, and conversations dominated by unsolicited advice force Lori to draw strict personal boundaries, Marnie finds ways to channel her eternal optimism and forceful generosity to change the lives of others - as well as her own - and find a new purpose in life.",2016-04-05,0.967,5.967,362 +8306,253626,Good Kill,"In the shadowy world of drone warfare, combat unfolds like a video game–only with real lives at stake. After six tours of duty, Air Force pilot Tom Egan now fights the Taliban from an air-conditioned bunker in the Nevada desert. But as he yearns to get back in the cockpit of a real plane and becomes increasingly troubled by the collateral damage he causes each time he pushes a button, Egan’s nerves—and his relationship with his wife—begin to unravel.",2015-04-09,1.1085,5.967,568 +8307,215830,Open Grave,"A man awakes-- without memory -- in a pit full of bodies and must figure out if the people who rescued him are the killers, or if he is the murderer.",2013-08-13,1.2476,5.967,733 +8308,16113,The Delta Force,"A 707 aircraft jetliner, en route from Athens to Rome and then to New York City, is hijacked by Lebanese terrorists, who demand that the pilot take them to Beirut. What the terrorists don't realize is that an elite team of commandos have been called in to eliminate all terrorists on the jetliner.",1986-02-14,3.8821,5.967,455 +8309,13279,Lakeview Terrace,"A young interracial couple has just moved into their California dream home when they become the target of their next-door neighbor, who disapproves of their relationship. A tightly wound LAPD officer has appointed himself the watchdog of the neighborhood. His nightly foot patrols and overly watchful eyes bring comfort to some, but he becomes increasingly aggressive to the newlyweds. These persistent intrusions into their lives cause the couple to fight back.",2008-09-19,2.7614,5.967,1093 +8310,8973,Lord of Illusions,"During a routine case in L.A., NY private investigator Harry D'Amour stumbles over members of a fanatic cult who are preparing for the resurrection of their leader Nix, a powerful magician who was killed 13 years earlier.",1995-08-25,1.3119,6.0,348 +8311,4256,Scary Movie 3,"In the third installment of the Scary Movie franchise, news anchorwoman Cindy Campbell has to investigate mysterious crop circles and killing video tapes, and help the President stop an alien invasion in the process.",2003-10-24,5.6192,5.966,4223 +8312,487083,Paradise Hills,"A young woman is sent to Paradise Hills to be reformed, only to learn that the high-class facility's beautiful facade hides a sinister secret.",2019-08-29,1.7615,5.965,550 +8313,460458,Resident Evil: Welcome to Raccoon City,"Once the booming home of pharmaceutical giant Umbrella Corporation, Raccoon City is now a dying Midwestern town. The company’s exodus left the city a wasteland…with great evil brewing below the surface. When that evil is unleashed, the townspeople are forever…changed…and a small group of survivors must work together to uncover the truth behind Umbrella and make it through the night.",2021-11-24,7.2751,5.965,2551 +8314,321258,The Boy,"A young American woman takes a job as a nanny in a remote English village, soon discovering that the family's eight-year-old son is a life-sized doll that comes with a list of strict rules.",2016-01-22,3.1324,5.965,3823 +8315,266294,Sisters,Two disconnected sisters are summoned to clean out their childhood bedrooms before their parents sell their family home.,2015-12-18,3.204,6.0,1409 +8316,97614,Deadfall,"A thriller that follows two siblings who decide to fend for themselves in the wake of a botched casino heist, and their unlikely reunion during another family's Thanksgiving celebration.",2012-11-08,2.23,5.965,691 +8317,19724,Imagine That,"A financial executive who can't stop his career downspiral is invited into his daughter's imaginary world, where solutions to his problems await.",2009-06-19,1.9556,5.965,574 +8318,14979,Thick as Thieves,A master thief recruits a notorious thief to help him steal two famous Faberge eggs from an impenetrable vault in an effort to pull off one final job and repay his debt to the Russian mob.,2009-01-09,1.7508,5.965,810 +8319,11479,"Little Indian, Big City","Stephen, an international trader, tracks down his ex-wife Patricia in some Amazonian backwater. He needs her consent to a divorce so that he can marry Charlotte. Unfortunately, he discovers a son he didn’t know he had – Mimi-Siku. The young jungle boy yearns to see Paris so Stephen reluctantly agrees to take him back home with him for a few days. How will Mimi-Siku react to life in the great metropolis?",1994-12-14,1.7343,5.965,604 +8320,10313,The Men Who Stare at Goats,"A reporter in Iraq might just have the story of a lifetime when he meets Lyn Cassady, a guy who claims to be a former member of the U.S. Army's New Earth Army, a unit that employs paranormal powers in their missions.",2009-10-17,2.0144,5.965,2286 +8321,187596,Walk of Shame,"A reporter's dream of becoming a news anchor is compromised after a one-night stand leaves her stranded in downtown L.A. without a phone, car, ID or money - and only 8 hours to make it to the most important job interview of her life.",2014-05-02,2.2521,5.964,1463 +8322,352492,XOXO,"XOXO follows six strangers whose lives collide in one frenetic, dream-chasing, hopelessly romantic night.",2016-08-26,1.0773,6.0,591 +8323,125490,Antiviral,"Syd March is an employee at a clinic that sells injections of live viruses harvested from sick celebrities to obsessed fans. When he becomes infected with the disease that kills super sensation Hannah Geist, Syd becomes a target for collectors and rabid fans. He must unravel the mystery surrounding her death before he suffers the same fate.",2012-09-19,1.5304,5.963,410 +8324,15213,Everyone's Hero,A boy begins a grand journey to return Babe Ruth's baseball bat before the deciding game of the 1932 World Series comes to a close.,2006-08-04,1.5733,5.963,309 +8325,39227,When in Rome,"Teenage sisters Charli and Lola are on the verge of an experience beyond their wildest dreams! Pack your bags and jet off to Rome as the girls start their summer internship working for the legendary Derek Hanson - the totally cool international tycoon whose empire reaches from airlines to cutting-edge fashion. Amid the fabulous sights of this exciting city, the girls do their best to impress their boss, while still finding time to design their own line of very hip clothing, meet some very cute guys and turn their summer abroad into one awesome adventure they - and you - will never forget!",2002-11-26,0.7761,5.962,327 +8326,12245,The Oxford Murders,"At Oxford University, a professor and a grad student work together to try and stop a potential series of murders seemingly linked by mathematical symbols.",2008-01-18,2.9923,5.962,663 +8327,9815,Goal II: Living the Dream,"Tempted away from Newcastle United to join Real Madrid, rising star Santiago Munez finds this latest change of fortune the greatest challenge yet - personally as well as professionally. He is reunited with Gavin Harris, though they must compete to be on the team, and estranged from fiancee Roz, whose nursing career keeps her back home.",2007-02-09,1.5315,5.962,666 +8328,758879,A Castle for Christmas,"To escape a scandal, a bestselling author journeys to Scotland, where she falls in love with a castle -- and faces off with the grumpy duke who owns it.",2021-11-26,0.7826,5.961,330 +8329,670428,PG: Psycho Goreman,"Siblings Mimi and Luke unwittingly resurrect an ancient alien overlord. Using a magical amulet, they force the monster to obey their childish whims, and accidentally attract a rogues’ gallery of intergalactic assassins to small-town suburbia.",2020-10-29,1.2798,6.0,384 +8330,531306,Rim of the World,"Stranded at a summer camp when aliens attack the planet, four teens with nothing in common embark on a perilous mission to save the world.",2019-05-24,2.6522,5.961,987 +8331,523936,Meander,"After getting a car ride from an unknown man, Lisa wakes up in a tube. On her arm is strapped a bracelet with a countdown. She quickly understands that every 8 minutes, fire burns an occupied section. She has no choice but to crawl into safe sections to survive. To know why she’s there and how to get out, Lisa will have to face the memories of her dead daughter…",2021-07-01,1.7703,5.962,429 +8332,351964,The Escort,"Desperate for a good story, a sex-addicted journalist throws himself into the world of high-class escorts when he starts following a Stanford-educated prostitute.",2015-11-05,2.5987,5.961,426 +8333,257088,Point Break,"A young undercover FBI agent infiltrates a gang of thieves who share a common interest in extreme sports. A remake of the 1991 film, ""Point Break"".",2015-12-03,4.9228,5.961,2347 +8334,533642,Child's Play,"Karen, a single mother, gifts her son Andy a Buddi doll for his birthday, unaware of its more sinister nature. A contemporary re-imagining of the 1988 horror classic.",2019-06-19,2.8614,5.96,1960 +8335,310133,Cop Car,Two kids find themselves in the centre of a deadly game of cat and mouse after taking a sheriff's cruiser for a joy ride.,2015-07-08,1.7441,5.96,882 +8336,266647,Pan,"Living a bleak existence at a London orphanage, 12-year-old Peter finds himself whisked away to the fantastical world of Neverland. Adventure awaits as he meets new friend James Hook and the warrior Tiger Lily. They must band together to save Neverland from the ruthless pirate Blackbeard. Along the way, the rebellious and mischievous boy discovers his true destiny, becoming the hero forever known as Peter Pan.",2015-09-24,3.9467,5.96,2767 +8337,12500,American Ninja,"Joe Armstrong, an orphaned drifter with little respect for much other than martial arts, finds himself on an American Army base in The Philippines after a judge gives him a choice of enlistment or prison. On one of his first missions driving a convoy, his platoon is attacked by a group of rebels who try to steal the weapons the platoon is transporting and kidnap the base colonel's daughter.",1985-08-30,3.0321,6.0,452 +8338,611914,The Courier,"Ezekiel Mannings, a vicious crime boss, is out to kill Nick, the lone witness set to testify against him. He hires a mysterious female motorcycle courier to unknowingly deliver a poison-gas bomb to slay Nick, but after she rescues Nick from certain death, the duo must confront an army of ruthless hired killers in order to survive the night.",2019-11-22,2.7881,6.0,549 +8339,245906,She's Funny That Way,"On the set of a playwright's new project, a love triangle forms between his wife, her ex-lover, and the call girl-turned-actress cast in the production.",2015-04-22,1.5491,5.959,685 +8340,11429,Beyond Re-Animator,"Once again tampering with mother nature to disastrous results, Dr. Herbert West continues his research while serving time in a maximum security prison for his previous exploits. West's limited prison-cell experiments are suddenly interrupted by the arrival of a new prison doctor and the brother of the girl who suffered from West's experiments 13 years earlier.",2003-04-04,1.3593,5.959,378 +8341,81446,The Baytown Outlaws,"When three redneck brothers agree to help a woman save her son from an abusive father, they become targets on the run from an odd cast of characters.",2012-08-27,1.8311,5.958,325 +8342,37821,Killers,"When an elite assassin marries a beautiful computer whiz after a whirlwind romance, he gives up the gun and settles down with his new bride. That is, until he learns that someone from his past has put a contract out on his life.",2010-06-04,2.3597,5.957,2235 +8343,24831,Piranha,"When flesh-eating piranhas are accidently released into a summer resort's rivers, the guests become their next meal.",1978-08-03,2.8009,6.0,699 +8344,13477,When in Rome,"Disillusioned with romance, Beth, an ambitious New Yorker, travels to Rome for her sister's wedding, where she plucks magic coins from a special fountain of love. The coins attract unwanted attention from an assortment of odd yet ardent suitors: a sausage merchant, a street magician, an artist, and a male model. But when the best man from the wedding, persistent reporter Nick, throws his hat in the ring, Beth wonders if his love is the real thing.",2010-01-29,2.6828,5.958,1228 +8345,11078,National Security,"Earl Montgomery, a bombastic police academy reject, and Hank Rafferty, a disgraced, mild-mannered cop, can't seem to escape each other. They met on opposite sides of the law during a routine traffic stop that escalated out of control; now as lowly security guards they're thrown together to bust a smuggling operation.",2003-01-17,3.0805,6.0,1009 +8346,10900,Surveillance,An FBI agent tracks a serial killer with the help of three of his would-be victims - all of whom have wildly different stories to tell.,2008-02-08,1.0292,6.0,336 +8347,2176,The Glass House,"When Ruby and Rhett's parents are killed in a car accident, their carefree teenage lives are suddenly shattered. Moving to an incredible house in Malibu with the Glasses', old friends of the family, seems to be the beginning of a new life for them.",2001-09-14,3.3756,5.958,1032 +8348,97051,Would You Rather,"Desperate to help her ailing brother, a young woman agrees to compete in a deadly game of ""Would You Rather"" hosted by a sadistic aristocrat.",2013-02-08,2.6909,5.957,960 +8349,74945,War of the Buttons,"Occupied France; Lebrac leads a play war between two rival kid gangs, but a girl he likes, who's Jewish, is in danger of being discovered by local Nazi sympathisers. Lebrac and the village must now respond to the reality of what's happening.",2011-09-21,0.7129,6.0,470 +8350,50321,Mars Needs Moms,"When Martians suddenly abduct his mom, mischievous Milo rushes to the rescue and discovers why all moms are so special.",2011-03-09,3.0787,5.957,731 +8351,12556,Ghosts of Girlfriends Past,"Celebrity photographer Connor Mead lives life in the fast lane, committed to lifelong bachelorhood and simultaneous relationships with multiple women. On the eve of his younger brother Paul's wedding, Connor's mockery of love proves a real buzz-kill for everyone - including his childhood crush, Jenny, the one woman who always seemed immune to his considerable charms. Later that night, he gets a wake-up call from the ghost of his late Uncle Wayne, the hard-partying, legendary ladies' man who was Connor's mentor. Uncle Wayne has an urgent message which he delivers through three ghosts who guide Connor on an eye-opening tour of his romantic past, present and future. Along the way, they attempt to discern whether he will ever be able to change his ways -- and if there is any hope of him finding true love.",2009-05-01,2.6574,6.0,2348 +8352,7451,xXx,"Xander Cage is your standard adrenaline junkie with no fear and a lousy attitude. When the US Government ""recruits"" him to go on a mission, he's not exactly thrilled. His mission: to gather information on an organization that may just be planning the destruction of the world, led by the nihilistic Yorgi.",2002-08-09,106.2781,5.957,4504 +8353,630586,Wrong Turn,"Jen and a group of friends set out to hike the Appalachian Trail. Despite warnings to stick to the trail, the hikers stray off course—and cross into land inhabited by The Foundation, a hidden community of mountain dwellers who use deadly means to protect their way of life.",2021-01-26,8.1662,6.0,1218 +8354,415010,Ravenous,"In an isolated rural community of Quebec, Canada, some inhabitants attack other people, hungry for human flesh. A few survivors gather and go deep into the forest to escape them.",2017-09-23,2.4597,5.956,442 +8355,382517,Open Season: Scared Silly,"The humans and animals believe a werewolf is on the loose, and former hunter Shaw uses the opportunity to re-open the season. Boog, Elliot, and Mr. Weenie have to face their fears and find the werewolf to get the season closed permanently.",2015-12-18,3.1232,5.956,365 +8356,17037,I'll Be Home for Christmas,"Estranged from his father, college student Jake is lured home to New York for Christmas with the promise of receiving a classic Porsche as a gift. When the bullying football team dumps him in the desert in a Santa suit, Jake is left without identification or money to help him make the journey. Meanwhile, his girlfriend, Allie, does not know where he is, and accepts a cross-country ride from Jake's rival, Eddie.",1998-11-13,1.2468,6.0,334 +8357,11374,EDtv,Video store clerk Ed agrees to have his life filmed by a camera crew for a tv network.,1999-03-26,1.3279,6.0,653 +8358,764835,The Desperate Hour,A woman desperately races to save her child after police place her hometown on lockdown due to an active shooter incident.,2021-09-12,1.9971,6.0,459 +8359,605735,10 Days with Dad,"Antoine is the Head of HR of a big company. Managing people is his thing, so when his overwhelmed wife suddenly decides to go on holiday and leave him with the responsibility of the house and their four kids, he knows it will be a piece of cake for him. But Antoine has drastically underestimated the mess that four mischievous kids can cause...",2020-02-19,0.6538,6.0,309 +8360,605735,10 Days with Dad,"Antoine is the Head of HR of a big company. Managing people is his thing, so when his overwhelmed wife suddenly decides to go on holiday and leave him with the responsibility of the house and their four kids, he knows it will be a piece of cake for him. But Antoine has drastically underestimated the mess that four mischievous kids can cause...",2020-02-19,0.6538,6.0,309 +8361,267193,Grimsby,"Wrongfully accused and on the run, a top MI6 assassin joins forces with his long-lost, football hooligan brother to save the world from a sinister plot.",2016-02-24,3.644,5.955,2365 +8362,39345,Casper Meets Wendy,"When a warlock threatens Wendy the Good Little Witch, she and her aunts hide out at a resort where Casper the Ghost is vacationing with his uncles. Although Casper and Wendy are told ghosts and witches don't get along, the two are kindred spirits! This spooky family-friendly adventure finds Casper and Wendy bridging the ghost-witch divide to battle the warlock who is intent on destroying Wendy.",1998-09-10,2.4448,5.955,399 +8363,13460,Doomsday,"The lethal Reaper virus spreads throughout Britain—infecting millions and killing hundreds of thousands. Authorities brutally and successfully quarantine the country but, three decades later, the virus resurfaces in a major city. An elite group of specialists is urgently dispatched into the still-quarantined country to retrieve a cure by any means necessary. Shut off from the rest of the world, the unit must battle through a landscape that has become a waking nightmare.",2008-03-14,2.3961,5.955,1323 +8364,9417,Wrongfully Accused,"Ryan Harrison, a violin god, superstar and sex symbol does not want to cheat on sexy Lauren Goodhue's husband with her. Mr. Goodhue is found murdered and Ryan suddenly finds himself being the main suspect. After being sentenced to death he manages to flee while being transferred to his execution site. Now, all the world is after him as he stumbles from one unfortunate incident to the next in order to prove himself innocent - by finding a mysterious one-eyed, one-armed, one-legged man...",1998-07-23,1.6656,5.955,455 +8365,749274,Cry Macho,A one-time rodeo star and washed-up horse breeder takes a job from an ex-boss to bring the man's young son home from Mexico.,2021-09-16,1.326,5.954,1060 +8366,19384,Dark Angel,"Jack Caine is a Houston vice cop who's forgotten the rule book. His self-appointed mission is to stop the drugs trade and the number one supplier Victor Manning. Whilst involved in an undercover operation to entrap Victor Manning, his partner gets killed, and a sinister newcomer enters the scene...",1990-01-26,2.3665,5.954,336 +8367,1093231,Mother of the Bride,Lana's daughter Emma returns from abroad and drops a bombshell: she's getting married. In Thailand. In a month! Things only get worse when Lana learns that the man who captured Emma's heart is the son of the man who broke hers years ago.,2024-05-08,1.6992,5.953,322 +8368,228066,Victor Frankenstein,Eccentric scientist Victor Von Frankenstein creates a grotesque creature in an unorthodox scientific experiment.,2015-11-10,2.1883,5.953,2166 +8369,174323,G.B.F.,"The bitter fight for supremacy between the three most popular girls at North Gateway High takes an unexpected turn when their classmate, Tanner, is outed and becomes the school’s first openly gay student. The trio races to bag the big trend in fashion accessories, the Gay Best Friend, while Tanner must decide whether his skyrocketing popularity is more important than the friendships he is leaving behind.",2014-01-17,0.0716,5.953,394 +8370,85041,The Immature: The Trip,"Seven thirty-something friends organise a post-grad trip they were never able to take after school. They find new adventures on a Greek island, and show that true maturity is never really achieved.",2012-01-04,0.6428,5.953,610 +8371,59429,Paranormal Activity: Tokyo Night,"Koichi takes care of his sister, who has recently returned from a trip abroad in the United States as she is not well. While caring for her, he records evidence of ghosts in their home.",2010-11-20,2.0119,6.0,446 +8372,24795,Angels in the Outfield,"Roger is a foster child whose irresponsible father promises to get his act together when Roger's favourite baseball team, the California Angels, wins the pennant. The problem is that the Angels are in last place, so Roger prays for help to turn the team around. Sure enough, his prayers are answered in the form of angel Al.",1994-07-15,1.9919,5.953,448 +8373,12572,"New York, I Love You","New York, I Love You delves into the intimate lives of New Yorkers as they grapple with, delight in and search for love. Journey from the Diamond District in the heart of Manhattan, through Chinatown and the Upper East Side, towards the Village, into Tribeca, and Brooklyn as lovers of all ages try to find romance in the Big Apple.",2008-09-06,5.0124,5.953,556 +8374,1079485,Winnie-the-Pooh: Blood and Honey 2,"Five months following the murders, Christopher Robin struggles to maintain a regular life while dealing with PTSD. However, deep within the 100-Acre-Wood, a destructive rage grows as Pooh, Piglet, Owl, and Tigger find their home and their lives endangered after their existence is revealed.",2024-03-26,6.6195,5.952,396 +8375,785752,Intrusion,"When a husband and wife move to a small town, a home invasion leaves the wife traumatized and suspicious that those around her might not be who they seem.",2021-09-22,1.7049,5.952,715 +8376,526896,Morbius,"Dangerously ill with a rare blood disorder, and determined to save others suffering his same fate, Dr. Michael Morbius attempts a desperate gamble. What at first appears to be a radical success soon reveals itself to be a remedy potentially worse than the disease.",2022-03-30,5.5134,5.952,4550 +8377,168055,Love Is in the Air,"Antoine is a lawyer living in New York. On his way back to France for the final round of a job interview, Antoine finds himself sitting right next to his ex-girlfriend Julie. With a seven-hour flight ahead of them, they are going to have to speak to each other.",2013-04-02,1.2085,5.952,423 +8378,14248,Igor,"A cliché hunchbacked evil scientist's assistant aspires to become a scientist himself, much to the displeasure of the rest of the evil science community.",2008-09-19,1.8576,5.952,572 +8379,12658,Someone Like You...,"Jane Goodale has everything going for her. She's a producer on a popular daytime talk show, and is in a hot romance with the show's dashing executive producer Ray. But when the relationship goes terribly awry, Jane begins an extensive study of the male animal, including her womanizing roommate Eddie. Jane puts her studies and romantic misadventure to use as a pseudonymous sex columnist -- and becomes a sensation.",2001-03-30,1.6888,6.0,393 +8380,38780,Rampage,"The boredom of small town life is eating Bill Williamson alive. Feeling constrained and claustrophobic in the meaningless drudgery of everyday life and helpless against overwhelming global dissolution, Bill begins a descent into madness. His shockingly violent plan will shake the very foundations of society by painting the streets red with blood.",2009-09-27,1.8443,6.0,448 +8381,13825,The Lazarus Project,"After Ben Garvey foolishly turned back to crime, he thought his life was over when he was sentenced to death by lethal injection. But his death sentence isn't quite what it seems, as Ben regains consciousness near an eerie psychiatric ward, where he's told he's been hired as the groundskeeper. With the state of his soul in question, and the love for his wife and daughter all the more real and powerful, Ben must figure out if he's truly cheated death, or if he's become part of something far more sinister.",2008-10-24,1.8112,5.951,367 +8382,257440,Term Life,"If Nick Barrow can stay alive for 21 days, he'll die happy. Everyone Nick knows wants him dead; Mob bosses, contract killers, and dirty cops. Performing the last act of a desperate man, Nick takes out a million dollar insurance policy on himself, payable to his estranged daughter. The problem? The policy doesn't take effect for 21 days. Nick knows they'll be lucky to be alive for twenty-one hours.",2016-04-29,1.6296,5.95,313 +8383,11718,Who's Harry Crumb?,Harry Crumb is a bumbling and inept private investigator who is hired to solve the kidnapping of a young heiress which he's not expected to solve because his employer is the mastermind behind the kidnapping.,1989-02-03,1.1168,5.95,332 +8384,91314,Transformers: Age of Extinction,"As humanity picks up the pieces after the battle of Chicago, a shadowy group reveals itself in an attempt to control the direction of history…while an ancient, powerful new menace sets Earth in its crosshairs. With help from Cade Yeager, Optimus Prime and the Autobots rise to meet their most fearsome challenge yet.",2014-06-25,10.9906,5.949,8403 +8385,27740,A Return to Salem's Lot,"Joe Weber is an anthropologist who takes his son on a trip to the New England town of Salem's Lot unaware that it is populated by vampires. When the inhabitants reveal their secret, they ask Joe to write a bible for them.",1987-09-11,1.3073,5.949,302 +8386,18147,Unaccompanied Minors,Five disparate kids snowed in at the airport on Christmas Eve learn some lessons about friendship when they launch a bid to get back to their families and outsmart a disgruntled airport official who wants to keep them grounded.,2006-12-08,1.1542,5.949,313 +8387,9383,Hollow Man,"Cocky researcher Sebastian Caine is working on a project to make living creatures invisible. Determined to achieve the ultimate breakthrough, Caine pushes his team to move to the next phase — using himself as the subject. The test is a success, but when the process can't be reversed and Caine seems doomed to future without flesh, he starts to turn increasingly dangerous.",2000-08-04,4.3861,5.949,2614 +8388,1001311,Under Paris,"In order to save Paris from an international bloodbath, a grieving scientist is forced to face her tragic past when a giant shark appears in the Seine.",2024-06-04,6.6017,5.948,1313 +8389,550201,The Pool,"Left alone to clean up a 6-meter-deep deserted pool, Day falls asleep on an inflatable raft. When he wakes, the water level has sunk so low that he can't climb out on his own. Stuck in the pool, Day screams for help, but the only thing that hears him is a creature from a nearby crocodile farm.",2018-09-27,0.9626,5.948,345 +8390,470114,24 Hours to Live,An assassin seeks redemption after being given a second chance at life.,2017-10-26,3.3797,5.948,672 +8391,460648,Bleeding Steel,"Jackie Chan stars as a hardened special forces agent who fights to protect a young woman from a sinister criminal gang. At the same time, he feels a special connection to the young woman, like they met in a different life.",2017-12-18,2.1671,5.948,528 +8392,445954,Acts of Vengeance,"A fast-talking lawyer transforms his body and takes a vow of silence, not to be broken until he finds out who killed his wife and daughter and has his revenge.",2017-10-27,2.2057,5.948,577 +8393,1410,Dark Star,"A group of scientists are sent on a mission to destroy unstable planets. Twenty years into their mission, they have to battle their alien mascot as well as a ""sensitive"" and intelligent bombing device that starts to question the meaning of its existence.",1974-03-30,2.8276,5.948,596 +8394,890771,The Black Demon,"Oilman Paul Sturges' idyllic family vacation turns into a nightmare when they encounter a ferocious megalodon shark that will stop at nothing to protect its territory. Stranded and under constant attack, Paul and his family must somehow find a way to get his family back to shore alive before it strikes again in this epic battle between humans and nature.",2023-04-26,4.0747,5.947,655 +8395,10204,Around the World in 80 Days,"A bet pits a British inventor, a Chinese thief and a French artist on a worldwide adventure that they can circle the globe in 80 days.",2004-06-16,3.6536,5.9,2580 +8396,1966,Alexander,"Alexander, the King of Macedonia, leads his legions against the giant Persian Empire. After defeating the Persians, he leads his army across the then known world, venturing farther than any westerner had ever gone, all the way to India.",2004-11-21,4.8275,5.9,3353 +8397,1690,Hostel,"Three backpackers head to a Slovakian city that promises to meet their hedonistic expectations, with no idea of the hell that awaits them.",2006-01-06,4.5355,5.947,3755 +8398,13018,Deception,"As a corporate auditor who works in a number of different offices, Jonathan McQuarry wanders without an anchor among New York's power brokers. A chance meeting with charismatic lawyer Wyatt Bose leads to Jonathan's introduction to The List, an underground sex club. Jonathan begins an affair with a woman known only as S, who introduces Jonathan to a world of treachery and murder.",2008-04-24,2.1621,5.946,676 +8399,9448,The Big Hit,"Affable hit man Melvin Smiley is constantly being scammed by his cutthroat colleagues in the life-ending business. So, when he and his fellow assassins kidnap the daughter of an electronics mogul, it's naturally Melvin who takes the fall when their prime score turns sour. That's because the girl is the goddaughter of the gang's ruthless crime boss. But, even while dodging bullets, Melvin has to keep his real job secret from his unsuspecting fiancée, Pam.",1998-04-24,2.1853,5.946,436 +8400,492565,The Kid,"New Mexico Territory, 1880. Rio Cutler and his older sister Sara must abandon their home after an unfortunate event happens. In their desperate flee to Santa Fe, they cross paths with the infamous outlaw Billy the Kid and his gang, who are ruthlessly pursued by a posse led by Sheriff Pat Garret.",2019-03-08,1.8391,5.945,307 +8401,414190,iBoy,"After an accident, Tom wakes from a coma to discover that fragments of his smart phone have been embedded in his head, and worse, that returning to normal teenage life is impossible because he has developed a strange set of super powers.",2017-01-27,1.5365,5.945,1172 +8402,37905,The Horde,"A bunch of crooked cops raid a ruined building located in an impoverished suburb of Paris, determined to furiously avenge the death of one of them, murdered by the ruthless criminal gang hidden on top of the dark labyrinth that will become a deathly trap when the living, unexpectedly turned into the undead by a mysterious plague, begin to devour the world.",2010-02-10,2.1764,5.945,483 +8403,11775,Intolerable Cruelty,A revenge-seeking gold digger marries a womanizing Beverly Hills lawyer with the intention of making a killing in the divorce.,2003-09-02,2.5786,5.945,1548 +8404,586592,Come to Daddy,"After receiving a cryptic letter from his estranged father, Norval travels to his dad’s oceanfront home for what he hopes will be a positive experience. If only he’d known the dark truth about his old man beforehand.",2019-04-25,1.3335,5.944,551 +8405,464504,A Madea Family Funeral,"A joyous family reunion becomes a hilarious nightmare as Madea and the crew travel to backwoods Georgia, where they find themselves unexpectedly planning a funeral that might unveil unpleasant family secrets.",2019-03-01,2.3934,5.944,489 +8406,139038,A Haunted House,"Malcolm and Kisha move into their dream home, but soon learn a demon also resides there. When Kisha becomes possessed, Malcolm - determined to keep his sex life on track - turns to a priest, a psychic, and a team of ghost-busters for help in this spoof of all the ""found-footage/documentary style"" films released in recent years.",2013-01-11,5.0727,5.944,1953 +8407,98357,Broken City,"In a broken city rife with injustice, ex-cop Billy Taggart seeks redemption and revenge after being double-crossed and then framed by its most powerful figure, the mayor. Billy's relentless pursuit of justice, matched only by his streetwise toughness, makes him an unstoppable force - and the mayor's worst nightmare.",2013-01-18,3.0373,5.944,1506 +8408,34494,Sorry if I Love You,"Alex Belli is a 37 year old advertising executive whose fiancée Elena has just left him, and who is having difficulty at work trying to think of a good advertising campaign for a new Japanese product. Niki is a bubbly 17 year old student. She has three best friends with whom she shares all her problems, and an annoying ex-boyfriend Fabio who is set on getting her back, but Niki's not interested. One day on his way to work, Alex collides with Niki on a city street. They soon begin a romance, despite their 20-year age gap.",2008-01-25,1.0216,5.944,711 +8409,10357,Volcano,"An earthquake shatters a peaceful Los Angeles morning and opens a fissure deep into the earth, causing lava to start bubbling up. As a volcano begins forming in the La Brea Tar Pits, the director of the city's emergency management service, working with a geologist, must then use every resource in the city to try and stop the volcano from consuming LA.",1997-04-25,3.35,5.943,1577 +8410,460019,Truth or Dare,"A harmless game of ""Truth or Dare"" among friends turns deadly when someone—or something—begins to punish those who tell a lie—or refuse the dare.",2018-04-12,5.3072,5.942,4105 +8411,87101,Terminator Genisys,"The year is 2029. John Connor, leader of the resistance continues the war against the machines. At the Los Angeles offensive, John's fears of the unknown future begin to emerge when TECOM spies reveal a new plot by SkyNet that will attack him from both fronts; past and future, and will ultimately change warfare forever.",2015-06-23,9.3727,5.942,8630 +8412,13962,Blank Check,"Bullied by his siblings and nagged by his parents, 11-year-old Preston is fed up with his family -- especially their frugality. But he gets his chance to teach them a lesson when a money-laundering criminal nearly bulldozes Preston with his car and gives the boy a blank check as compensation. Preston makes the check out for $1 million and goes on a spending spree he'll never forget. Maybe now, his family will take him seriously!",1994-02-11,1.9575,5.942,509 +8413,220286,Grand Piano,"Tom Selznick, the most talented pianist of his generation, stopped performing in public because of his stage fright. Years after a catastrophic performance, he reappears in public in a long awaited concert in Chicago. Just moments after starting his performance in the packed theater, in front of an expectant audience, Tom finds a threatening message written on the score: 'Play one wrong note and you die'. Without leaving the piano, Tom must discover the anonymous sniper's motives and look for help without anyone realizing.",2013-10-11,1.8738,5.941,522 +8414,112200,Thanks for Sharing,A romantic comedy that brings together three disparate characters who are learning to face a challenging and often confusing world as they struggle together against a common demon—sex addiction.,2013-09-19,1.2693,5.941,564 +8415,299687,The 5th Wave,16-year-old Cassie Sullivan tries to survive in a world devastated by the waves of an alien invasion that has already decimated the population and knocked mankind back to the Stone Age.,2016-01-14,6.1819,5.94,5848 +8416,258193,Alien Abduction,A vacationing family encounters an alien threat in this pulse-pounding thriller based on the real-life Brown Mountain Lights phenomenon in North Carolina.,2014-04-04,1.2474,5.94,390 +8417,9073,Free Willy 2: The Adventure Home,Jesse becomes reunited with Willy three years after the whale's jump to freedom as the teenager tries to rescue the killer whale and other orcas from an oil spill.,1995-07-19,2.2247,5.9,598 +8418,579828,Superdeep,"In 1984, a Russian research team goes below the surface to find out what secret the world's deepest borehole is hiding. On their expedition, something unexpectedly gruesome awaits the researchers.",2020-11-04,2.8065,5.939,319 +8419,24056,The Tournament,"Every ten years, in an unsuspecting town, The Tournament takes place. A battle royale between 30 of the world's deadliest assassins. The last man standing receives the $10,000,000 cash prize and the title of World's No. 1 Assassin, which itself carries the legendary million dollar-a-bullet price tag.",2009-05-01,1.516,5.939,641 +8420,12540,Bring It On Again,"When new students can't get onto their college cheerleading team, they form their own squad and prepare for a cheer off.",2004-01-13,0.0909,5.9,437 +8421,9597,Vidocq,"Paris, 1830. In the heart of the town, Vidocq, a famous detective, disappears as he fights the Alchemist, an assassin that he has been pursuing for a few months. His young biographer, Etienne Boisset, decides to avenge Vidocq's death and takes the investigation on...",2001-09-18,1.6291,5.939,543 +8422,136835,No Good Deed,"Terri is a devoted wife and mother of two, living an ideal suburban life in Atlanta when Colin, a charming but dangerous escaped convict, shows up at her door claiming car trouble. Terri offers her phone to help him but soon learns that no good deed goes unpunished as she finds herself fighting for survival when he invades her home and terrorizes her family.",2014-09-10,4.2223,5.938,641 +8423,584962,Between Two Ferns: The Movie,"Galifianakis dreamed of becoming a star. But when Will Ferrell discovered his public access TV show, 'Between Two Ferns' and uploaded it to Funny or Die, Zach became a viral laughing stock. Now Zach and his crew are taking a road trip to complete a series of high-profile celebrity interviews and restore his reputation.",2019-09-20,1.4137,5.937,898 +8424,228973,Backcountry,A couple on a deep-wilderness hike become hopelessly lost within an aggressive black bear's territory.,2015-03-20,2.016,5.937,684 +8425,11011,Ri¢hie Ri¢h,"Billionaire heir Richie Rich has it all, including Reggie Jackson as a batting coach and Claudia Schiffer as a personal trainer -- but no playmates. What's more, scoundrel Laurence Van Dough is scheming to take over the family empire. Uh-oh! Enter faithful butler Cadbury to save the day.",1994-12-19,5.0204,5.938,2325 +8426,6073,The Mexican,"Jerry Welbach, a reluctant bagman, has been given two ultimatums: The first is from his mob boss to travel to Mexico and retrieve a priceless antique pistol, known as ""the Mexican""... or suffer the consequences. The second is from his girlfriend Samantha to end his association with the mob. Jerry figures alive and in trouble with Samantha is better than the more permanent alternative, so he heads south of the border.",2001-03-01,2.2479,5.937,1509 +8427,2029,Tanguy,"Tanguy is 28 years old and still living with his parents. They think it's time he moves out. He doesn't, so they hatch a plan.",2001-11-21,1.3495,5.937,473 +8428,172533,Drinking Buddies,"Weekend trips, office parties, late night conversations, drinking on the job, marriage pressure, biological clocks, holding eye contact a second too long… you know what makes the line between “friends” and “more than friends” really blurry? Beer.",2013-08-23,1.3005,5.936,830 +8429,81796,Lockout,"Set in the near future, Lockout follows a falsely convicted ex-government agent , whose one chance at obtaining freedom lies in the dangerous mission of rescuing the President's daughter from rioting convicts at an outer space maximum security prison.",2012-04-12,2.8089,5.936,1883 +8430,395,AVP: Alien vs. Predator,"When scientists discover something near Antarctica that appears to be a buried Pyramid, they send a research team out to investigate. Little do they know that they are about to step into a hunting ground where Aliens are grown as sport for the Predator race.",2004-08-12,5.2591,5.936,4654 +8431,1077280,Die Hart,"Kevin Hart - playing a version of himself - is on a death-defying quest to become an action star. And with a little help from John Travolta, Nathalie Emmanuel, and Josh Hartnett - he just might pull it off.",2023-02-22,2.7522,5.935,475 +8432,458005,Zoe,"Two colleagues at a revolutionary research lab design technology to improve and perfect romantic relationships. As their work progresses, their discoveries become more profound.",2018-07-19,1.212,5.935,417 +8433,301502,Blonde,"From her volatile childhood as Norma Jeane, through her rise to stardom and romantic entanglements, this reimagined fictional portrait of Hollywood legend Marilyn Monroe blurs the lines of fact and fiction to explore the widening split between her public and private selves.",2022-09-16,4.4807,5.9,1419 +8434,2636,The Specialist,"May Munro is a woman obsessed with getting revenge on the people who murdered her parents when she was still a girl. She hires Ray Quick, a retired explosives expert to kill her parent's killers. When Ned Trent, embittered ex-partner of Quick's is assigned to protect one of Quick's potential victims, a deadly game of cat and mouse ensues.",1994-10-07,3.317,5.935,1346 +8435,12819,Alpha and Omega,"Two young wolves at opposite ends of their pack's social order are thrown together into a foreign land and need each other to return home, but love complicates everything.",2010-07-05,2.2631,5.9,519 +8436,10714,The Jungle Book,"Raised by wild animals since childhood, Mowgli is drawn away from the jungle by the beautiful Kitty. But Mowgli must eventually face corrupt Capt. Boone, who wants both Kitty's hand and the treasures of Monkey City – a place only Mowgli can find.",1994-12-23,1.7782,5.934,475 +8437,10145,The Forgotten,"Telly Paretta is a grieving mother struggling to cope with the loss of her 8-year-old son. She is stunned when her psychiatrist reveals that she has created eight years of memories about a son she never had. But when she meets a man who has had a similar experience, Telly embarks on a search to prove her son's existence, and her sanity.",2004-09-24,2.7852,5.934,1169 +8438,4923,Zardoz,"In the far future, a savage trained only to kill finds a way into the community of bored immortals that alone preserves humanity's achievements.",1974-02-06,2.3304,5.9,473 +8439,328720,Ma che bella sorpresa,"High school professor Guido is a hopeless romantic whose life falls apart after his girlfriend leaves him. Paolo, a former student of his, helps him in getting out of his depression for a better chance to become a PE teacher himself.",2015-03-11,0.4014,5.933,404 +8440,11674,101 Dalmatians,"An evil, high-fashion designer plots to steal Dalmatian puppies in order to make an extravagant fur coat, but instead creates an extravagant mess.",1996-11-27,5.2124,5.9,3480 +8441,2018,The Wedding Planner,"San Francisco's premiere wedding planner, Mary Fiore is rescued from an accident by the man of her dreams, pediatrician Steve Edison, only to find he is the fiancé of her latest client. As Mary continues making their wedding arrangements, she and Steve are put into a string of uncomfortable situations that force them to face their mutual attraction.",2001-01-26,2.8066,5.933,1743 +8442,565413,The King's Musketeers,"In 17th-century France, the Queen brings the Three Musketeers — Athos, Porthos, Aramis, and an aging d'Artagnan — back from retirement for one last job: saving her son Louis and the whole kingdom.",2018-12-27,0.4042,5.932,391 +8443,39053,Cyrus,"With John's social life at a standstill and his ex-wife about to get remarried, a down on his luck divorcée finally meets the woman of his dreams, only to discover she has another man in her life - her son. Before long, the two are locked in a battle of wits for the woman they both love-and it appears only one man can be left standing when it's over.",2010-06-18,0.8253,5.932,427 +8444,10680,D3: The Mighty Ducks,The Ducks are offered scholarships at Eden Hall Academy but struggle with their new coach's methods and come under pressure from the board to retain their scholarships before their big game against the Varsity team.,1996-10-04,2.5878,5.9,462 +8445,1062215,Afraid,Curtis Pike and his family are selected to test a new home device: a digital assistant called AIA. AIA observes the family's behaviors and begins to anticipate their needs. And she can – and will – make sure nothing – and no one – gets in her family's way.,2024-08-28,4.0628,5.931,422 +8446,590869,Hammamet,"The last years of Bettino Craxi, one of the most important and controversial italian leader of the 1980's.",2020-01-09,0.3537,5.931,404 +8447,291870,Dirty Grandpa,"Jason Kelly is one week away from marrying his boss's uber-controlling daughter, putting him on the fast track for a partnership at the law firm. However, when the straight-laced Jason is tricked into driving his foul-mouthed grandfather, Dick, to Daytona for spring break, his pending nuptials are suddenly in jeopardy. Between riotous frat parties, bar fights, and an epic night of karaoke, Dick is on a quest to live his life to the fullest and bring Jason along for the ride.",2016-01-20,5.0251,5.931,4454 +8448,10985,The New Guy,"Nerdy high school senior Dizzy Harrison has finally gotten lucky -- after purposely getting expelled, he takes lessons in 'badass cool' from a convict and enrolls at a new school. But can he keep up the ruse?",2002-05-10,2.0289,5.931,613 +8449,9825,Lake Placid,"When a man is eaten alive by an unknown creature, the local Game Warden teams up with a paleontologist from New York to find the beast. Add to the mix an eccentric philanthropist with a penchant for ""Crocs"", and here we go! This quiet, remote lake is suddenly the focus of an intense search for a crocodile with a taste for live animals...and people!",1999-07-15,2.8942,5.931,1177 +8450,503619,The Package,"When a group of teenagers goes on a spring break camping trip, an unfortunate accident sets off a race to save their friend’s most prized possession.",2018-08-10,2.3906,5.93,1214 +8451,495766,I'm Back,"Benito Mussolini resurfaces in Rome 72 years after his death, as if not a single day had passed. Finding a country still full of problems, both old and new, his firebrand rhetoric wins him once again the hearts and minds of millions of Italians — who see him as a wacky reenactor who speaks inconvenient truths to power.",2018-02-01,0.6625,5.93,568 +8452,452507,1922,"A simple yet proud rancher conspires to murder his wife for financial gain, convincing his teenage son to participate.",2017-10-20,2.6637,5.93,2797 +8453,11648,Must Love Dogs,"Sarah Nolan is a newly divorced woman cautiously rediscovering romance with the enthusiastic but often misguided help of her well-meaning family. As she braves a series of hilarious disastrous mismatches and first dates, Sarah begins to trust her own instincts again and learns that, no matter what, it's never a good idea to give up on love.",2005-07-21,1.7084,5.93,477 +8454,895744,Studio 666,"Legendary rock band Foo Fighters move into an Encino mansion steeped in grisly rock and roll history to record their much anticipated 10th album. Once in the house, Dave Grohl finds himself grappling with supernatural forces that threaten both the completion of the album and the lives of the band.",2022-02-24,2.0234,5.928,318 +8455,13668,Catch and Release,"For a grieving fiancée, learning to love again requires the help of her late love's three best friends.",2006-10-20,1.6004,5.928,579 +8456,664574,Silent Night,"Nell, Simon, and their boy Art are ready to welcome friends and family for what promises to be a perfect Christmas gathering. Perfect except for one thing: everyone is going to die.",2021-12-03,1.8686,5.927,529 +8457,640923,Kidz,"Sara and Nicola are married and in love. Their lives seem to be perfect: they have an angelic six-year-old daughter, thriving careers and a stable marriage. The birth of their second child, which disrupts the family balance, leads to tragicomic scenarios.",2020-01-23,0.4364,5.9,376 +8458,509730,The Queen's Corgi,"Since his arrival at Buckingham palace, Rex lives a life of luxury. Top dog, he has superseded his three fellow Corgis in Her Majesty’s heart. His arrogance can be quite irritating. When he causes a diplomatic incident during an official dinner with the President of the United States, he falls into disgrace. Betrayed by one of his peers, Rex becomes a stray dog in the streets of London. How can he redeem himself? In love, he will find the resources to surpass himself in the face of great danger…",2019-02-13,1.8886,5.9,433 +8459,158907,Breathe In,"When a foreign exchange student arrives in a small upstate New York town, she challenges the dynamics of her host family's relationships and alters their lives forever.",2013-01-18,1.3513,5.927,317 +8460,52067,Cedar Rapids,A naive Midwesterner insurance salesman travels to a big-city convention in an effort to save the jobs of his co-workers.,2011-02-11,1.0541,5.927,439 +8461,501395,True History of the Kelly Gang,"Set against the badlands of Australia where the English rule with a bloody fist and the Irish endure, Ned Kelly discovers he comes from a line of Irish rebels — an uncompromising army of cross dressing bandits immortalised for terrorising their oppressors back in Ireland. Fuelled by the unfair arrest of his mother, Kelly recruits a wild bunch of warriors to plot one of the most audacious attacks of anarchy and rebellion the country has ever seen.",2019-11-23,2.7949,5.926,331 +8462,354251,Southbound,"The film contains five stories set on desolate stretches of a desert highway. Two men on the run from their past, a band on its way to a gig, a man struggling to get home, a brother in search of his long-lost sister and a family on vacation are forced to confront their worst fears and darkest secrets in these interwoven tales.",2015-09-17,1.6754,5.926,633 +8463,311667,Manhattan Night,"Porter Wren is a Manhattan tabloid writer with an appetite for scandal. On the beat he sells murder, tragedy, and anything that passes for the truth. At home, he is a dedicated husband and father. But when Caroline, a seductive stranger asks him to dig into the unsolved murder of her filmmaker husband Simon, he is drawn into a very nasty case of sexual obsession and blackmail--one that threatens his job, his marriage, and his life.",2016-05-20,2.0269,5.926,398 +8464,270487,"Hail, Caesar!","When a Hollywood star mysteriously disappears in the middle of filming, the studio sends their fixer to get him back.",2016-02-05,2.9379,5.926,3856 +8465,99579,"Farewell, My Queen",A look at the relationship between Marie Antoinette and one of her readers during the final days of the French Revolution.,2012-03-21,1.5052,5.926,312 +8466,68728,Oz the Great and Powerful,"Oscar Diggs, a small-time circus illusionist and con-artist, is whisked from Kansas to the Land of Oz where the inhabitants assume he's the great wizard of prophecy, there to save Oz from the clutches of evil.",2013-03-07,5.4667,5.926,6620 +8467,62764,Mirror Mirror,"After she spends all her money, an evil enchantress queen schemes to marry a handsome, wealthy prince. There's just one problem - he's in love with a beautiful princess, Snow White. Now, joined by seven rebellious dwarves, Snow White launches an epic battle of good vs. evil...",2012-03-15,4.5305,5.926,3200 +8468,10488,Nim's Island,A young girl inhabits an isolated island with her scientist father and communicates with a reclusive author of the novel she's reading.,2008-04-03,1.876,5.927,1154 +8469,7548,The Libertine,"The story of John Wilmot, a.k.a. the Earl of Rochester, a 17th century poet who famously drank and debauched his way to an early grave, only to earn posthumous critical acclaim for his life's work.",2004-09-16,1.2125,5.9,461 +8470,602734,Spiral: From the Book of Saw,"Working in the shadow of an esteemed police veteran, brash Detective Ezekiel “Zeke” Banks and his rookie partner take charge of a grisly investigation into murders that are eerily reminiscent of the city’s gruesome past. Unwittingly entrapped in a deepening mystery, Zeke finds himself at the center of the killer’s morbid game.",2021-05-12,4.637,5.925,2139 +8471,448194,Pyewacket,"A frustrated, angry teenage girl awakens something in the woods when she naively performs an occult ritual to invoke a witch to kill her mother.",2017-12-08,1.0299,5.925,321 +8472,9275,Death to Smoochy,"Tells the story of Rainbow Randolph, the corrupt, costumed star of a popular children's TV show, who is fired over a bribery scandal and replaced by squeaky-clean Smoochy, a puffy fuchsia rhinoceros. As Smoochy catapults to fame - scoring hit ratings and the affections of a network executive - Randolph makes the unsuspecting rhino the target of his numerous outrageous attempts to exact revenge and reclaim his status as America's sweetheart.",2002-03-29,1.249,5.9,406 +8473,1483,Begotten,"Begotten is the creation myth brought to life, the story of no less than the violent death of God and the (re)birth of nature on a barren earth.",1991-06-05,1.3258,5.9,320 +8474,563907,All You Need is Crime,"In the present day, three friends to make ends meet invent a ""criminal tour"" for the places which were scenes of the Banda della Magliana criminal acts, even with vintage clothes. Suddenly they are catapulted in the 1982, during the Spain World Cup, facing the real Banda della Magliana, which at that time had the control over illegal bets.",2019-01-10,0.2486,5.9,463 +8475,169219,The Dyatlov Pass Incident,"In February of 1959, nine Russian hikers ventured into a remote area of the Ural Mountains. Two weeks later, all of them were found dead. What happened is a mystery that has baffled investigators and researchers for decades. It has become known as the Dyatlov Pass Incident. When five ambitious American college students are issued a grant to return to the site of the original events, they gear up with the belief that they can uncover and document the truth of what happened to the supposedly experienced hikers. But what they find is more shocking than anything they could have imagined. Retracing the steps of the Russians' ill-fated journey, the students are plagued by strange and increasingly terrifying phenomena that suggest that in spite of the desolate surroundings, they are not alone. The forces at work in the Dyatlov Pass Incident have been waiting for them.",2013-02-27,2.507,5.924,683 +8476,157099,Better Living Through Chemistry,"A straight-laced pharmacist's uneventful life spirals out of control when he starts an affair with a trophy wife customer who takes him on a joyride involving sex, drugs and possibly murder.",2014-03-14,1.6549,5.924,301 +8477,1043565,Mindcage,"Detectives Jake Doyle and Mary Kelly seek the help of an incarcerated serial killer named The Artist when a copycat killer strikes. While Mary searches for clues in The Artist's brilliant but twisted psyche, she and Jake are lured into a diabolical game of cat and mouse, racing against time to stay one step ahead of The Artist and his copycat.",2022-12-16,2.6444,5.923,379 +8478,968739,Dangerous Liaisons,"The innocent Célène might be falling in love with popular surfer Tristan at her new school. But she has no idea that, in actuality, she’s the object of a cruel bet between Tristan and Instagram influencer Vanessa.",2022-07-08,2.0883,5.923,306 +8479,39386,The Corsican File,"Jack Palmer is a Paris-based detective with a huge ego. Ange Leoni is a rebel native of Corsica whose location can't be pinned down by even the most dogged of detectives. Approached by an obscure, small-time attorney and charged with the seemingly simple task of locating the missing Leoni, gifted gumshoe Palmer accepts the job under the assumption that it will be the easiest money of his professional career. But this superstar sleuth is about to find out just how mistaken he was...",2004-10-06,1.117,5.923,385 +8480,32856,Valentine's Day,Intertwining couples and singles in Los Angeles break-up and make-up based on the pressures and expectations of Valentine's Day.,2010-02-10,3.0469,5.923,3085 +8481,11152,The Ruins,"Americans Amy, Stacy, Jeff and Eric look for fun during a sunny holiday in Mexico, but they get much more than that after visiting an archaeological dig in the jungle.",2008-04-02,2.8566,5.923,1342 +8482,617505,Hubie Halloween,"Hubie Dubois, despite his devotion to his hometown of Salem, Massachusetts (and its legendary Halloween celebration), is a figure of mockery for kids and adults alike. But this year, something really is going bump in the night, and it’s up to Hubie to save Halloween.",2020-10-07,2.626,5.922,1682 +8483,98566,Teenage Mutant Ninja Turtles,"When a kingpin threatens New York City, a group of mutated turtle warriors must emerge from the shadows to protect their home.",2014-08-07,10.9717,5.9,6938 +8484,38541,The Divide,"Survivors of a nuclear attack are grouped together for days in the basement of their apartment building, where fear and dwindling supplies wear away at their dynamic.",2012-01-13,1.6117,5.922,683 +8485,14140,Herbie Goes to Monte Carlo,"Herbie, the Volkswagen Beetle with a mind of its own, is racing in the Monte Carlo Rally. But thieves have hidden a cache of stolen diamonds in Herbie's gas tank, and are now trying to get them back.",1977-06-24,1.931,5.9,331 +8486,11157,She-Devil,A cunning and resourceful housewife vows revenge on her husband when he begins an affair with a wealthy romance novelist.,1989-12-08,1.4831,5.922,403 +8487,2749,15 Minutes,"When Eastern European criminals Oleg and Emil come to New York City to pick up their share of a heist score, Oleg steals a video camera and starts filming their activities, both legal and illegal. When they learn how the American media circus can make a remorseless killer look like the victim and make them rich, they target media-savvy NYPD Homicide Detective Eddie Flemming and media-naive FDNY Fire Marshal Jordy Warsaw, the cops investigating their murder and torching of their former criminal partner, filming everything to sell to the local tabloid TV show ""Top Story.""",2001-03-01,1.454,5.922,754 +8488,496704,Tremors: A Cold Day in Hell,Burt Gummer and Travis Welker find themselves in a fight for survival after investigating deadly giant worm attacks in the Canadian arctic.,2018-05-01,3.3888,5.921,428 +8489,324542,Sleepless,"Undercover Las Vegas police officer Vincent Downs, who has a lot of enemies, is caught in a high stakes web of corrupt cops and the mob-controlled casino underground. When a heist goes wrong, a crew of homicidal gangsters kidnap Downs’ teenage son T. In one sleepless night, Downs will have to rescue his son, evade an internal affairs investigation, and bring the kidnappers to justice.",2017-01-12,2.1883,5.921,1283 +8490,829557,365 Days: This Day,"Laura and Massimo are back and hotter than ever. But the reunited couple's new beginning is complicated by Massimo’s family ties and a mysterious man who enters Laura’s life to win her heart and trust, at any cost.",2022-04-26,34.8952,5.922,1756 +8491,353569,Table 19,"Eloise, having been relieved of maid of honor duties after being unceremoniously dumped by the best man via text, decides to attend the wedding anyway – only to find herself seated with five fellow-unwanted guests at the dreaded Table 19.",2017-03-03,1.9985,5.92,978 +8492,297761,Suicide Squad,"From DC Comics comes the Suicide Squad, an antihero team of incarcerated supervillains who act as deniable assets for the United States government, undertaking high-risk black ops missions in exchange for commuted prison sentences.",2016-08-03,8.0793,5.92,21530 +8493,49010,Hobo with a Shotgun,"A vigilante homeless man pulls into a new city and finds himself trapped in urban chaos, a city where crime rules and where the city's crime boss reigns. Seeing an urban landscape filled with armed robbers, corrupt cops, abused prostitutes and even a pedophile Santa, the Hobo goes about bringing justice to the city the best way he knows how - with a 20-gauge shotgun. Mayhem ensues when he tries to make things better for the future generation. Street justice will indeed prevail.",2011-05-06,1.7007,5.914,647 +8494,14648,Podium,"Bernand Fréderic is a mediocre bank executive. He's married and has a son. He used to have another profession: being French star Claude Francois. Now, with the Imitators Gala Night coming up, he must choose between his wife or the only thing that makes him happy: the applause.",2004-02-11,0.6934,5.92,450 +8495,9973,Air Buddies,"The offspring of sportsman canine Air Bud: B-Dawg, Mudbud, Budderball, Buddha, and Rosebud, uncover a kidnapping plot motivated by a little rich boy's desire to have the world's most athletic dog as a pet.",2006-12-12,1.9654,5.9,333 +8496,418437,Unforgettable,"Barely coping with the end of her marriage, Tessa Connover learns that her ex-husband, David, is now happily engaged to Julia. Trying to settle into her new life after moving in with David, Julia believes she has finally met the man of her dreams, the man who can help her forget her troubled past. Soon, Tessa's jealousy starts to consume her, and she will stop at nothing to turn Julia's paradise into the ultimate nightmare.",2017-03-06,2.4757,5.919,664 +8497,346709,Line of Duty,"Frank Penny is a disgraced cop looking for a shot at redemption. When the police chief's 11-year-old daughter is abducted, Frank goes rogue to try and save her. But to find the girl, Frank will need the help of Ava Brooks, whose live-streaming news channel is broadcasting Frank's every move.",2019-12-25,2.1281,5.9,339 +8498,182560,Dark Places,A woman who survived the brutal killing of her family as a child is forced to confront the events of that day.,2015-04-08,2.184,5.919,1307 +8499,151960,Planes,"Dusty is a cropdusting plane who dreams of competing in a famous aerial race. The problem? He is hopelessly afraid of heights. With the support of his mentor Skipper and a host of new friends, Dusty sets off to make his dreams come true.",2013-08-09,4.5934,5.9,1742 +8500,10366,Universal Soldier: The Return,"Luc Deveraux, the heroic former Universal Soldier, is about to be thrown into action once again. When SETH, the supercomputer-controlled ultra-warrior, decides to take revenge and destroy its creators, only Luc can stop it. All hell breaks loose as Luc battles SETH and a deadly team of perfect soldiers in a struggle that pits man against machine and good against evil.",1999-08-05,2.2266,5.919,1291 +8501,673593,Mean Girls,"New student Cady Heron is welcomed into the top of the social food chain by the elite group of popular girls called ‘The Plastics,’ ruled by the conniving queen bee Regina George and her minions Gretchen and Karen. However, when Cady makes the major misstep of falling for Regina’s ex-boyfriend Aaron Samuels, she finds herself prey in Regina’s crosshairs. As Cady sets to take down the group’s apex predator with the help of her outcast friends Janis and Damian, she must learn how to stay true to herself while navigating the most cutthroat jungle of all: high school.",2024-01-10,4.2515,5.918,640 +8502,87516,Oldboy,A man has only three and a half days and limited resources to discover why he was imprisoned in a nondescript room for 20 years without any explanation.,2013-11-14,3.1396,5.918,2017 +8503,423949,Unicorn Store,"A woman named Kit moves back to her parent's house, where she receives a mysterious invitation that would fulfill her childhood dreams.",2017-09-11,1.4296,5.917,861 +8504,340676,Personal Shopper,"Maureen, mid-20s, is a personal shopper for a media celebrity. The job pays for her stay in Paris, a city she refuses to leave until she makes contact with her twin brother who previously died there. Her life becomes more complicated when a mysterious person contacts her via text message.",2016-12-14,1.7659,5.9,1253 +8505,146223,Closed Circuit,A high-profile terrorism case unexpectedly binds together two ex-lovers on the defense team - testing the limits of their loyalties and placing their lives in jeopardy.,2013-08-28,1.913,5.917,471 +8506,18823,Clash of the Titans,"Born of a god but raised as a man, Perseus is helpless to save his family from Hades, vengeful god of the underworld. With nothing to lose, Perseus volunteers to lead a dangerous mission to defeat Hades before he can seize power from Zeus and unleash hell on earth. Battling unholy demons and fearsome beasts, Perseus and his warriors will only survive if Perseus accepts his power as a god, defies fate and creates his own destiny.",2010-03-26,7.3934,5.9,6415 +8507,10708,Daddy Day Care,"Two men get laid off and have to become stay-at-home dads when they can't find jobs, which inspires them to open their own day-care center.",2003-05-09,3.1154,5.917,2167 +8508,505707,Waiting for the Barbarians,"At an isolated frontier outpost, a colonial magistrate suffers a crisis of conscience when an army colonel arrives looking to interrogate the locals about an impending uprising, using cruel tactics that horrify the magistrate.",2019-09-06,1.8091,5.916,388 +8509,399019,The Beguiled,"During the Civil War, at a Southern girls’ boarding school, young women take in an injured enemy soldier. As they provide refuge and tend to his wounds, the house is taken over with sexual tension and dangerous rivalries, and taboos are broken in an unexpected turn of events.",2017-06-23,2.097,5.918,2179 +8510,375588,Robin Hood,A war-hardened Crusader and his Moorish commander mount an audacious revolt against the corrupt English crown.,2018-11-03,4.2339,5.916,3034 +8511,38031,You Will Meet a Tall Dark Stranger,"Two married couples find only trouble and heartache as their complicated lives unfold. After 40 years of marriage, Alfie leaves his wife to pursue what he thinks is happiness with a call girl. His wife, Helena, reeling from abandonment, decides to follow the advice of a psychic. Sally, the daughter of Alfie and Helena, is unhappy in her marriage and develops a crush on her boss, while her husband, Roy, falls for a woman engaged to be married.",2010-09-22,1.4601,5.914,871 +8512,2103,Solaris,A troubled psychologist is sent to investigate the crew of an isolated research station orbiting a bizarre planet.,2002-11-27,1.7888,5.9,1356 +8513,800937,Senior Year,"A 37-year-old woman wakes up from a 22-year coma, and returns to the high school where she was once a popular cheerleader to finish her senior year and become prom queen.",2022-05-11,3.1243,5.915,873 +8514,174675,The Machine,"Already deep into a second Cold War, Britain’s Ministry of Defense seeks a game-changing weapon. Programmer Vincent McCarthy unwittingly provides an answer in The Machine, a super-strong human cyborg. When a programming bug causes the prototype to decimate his lab, McCarthy takes his obsessive efforts underground, far away from inquisitive eyes.",2013-04-25,1.6466,5.9,821 +8515,10495,The Karate Kid Part III,"Despondent over the closing of his karate school, Cobra Kai teacher John Kreese joins a ruthless businessman and martial artist to get revenge on Daniel and Mr. Miyagi.",1989-06-16,4.4427,5.915,1711 +8516,7091,Vampire's Kiss,A publishing executive is visited and bitten by a vampire and starts exhibiting erratic behavior. He pushes his secretary to extremes as he tries to come to terms with his affliction.,1989-06-02,1.5447,5.915,435 +8517,167032,Curse of Chucky,"After her mother's mysterious death, Nica begins to suspect that the talking, red-haired doll her visiting niece has been playing with may be the key to the mounting bloodshed and chaos.",2013-10-08,3.4854,5.914,1624 +8518,64639,Straw Dogs,A young couple moves to a quaint southern town. Soon their perfect getaway turns out to become a living hell when dark secrets and lethal passions spiral out of control.,2011-09-16,2.4359,5.9,587 +8519,18476,Horsemen,A recently widowed detective still grieving over his wife's death discovers a shocking connection between himself and the suspects in a serial killing spree linked to the Four Horsemen of the Apocalypse.,2009-02-06,1.6672,5.914,570 +8520,9005,The Ice Harvest,"A shady lawyer attempts a Christmas Eve crime, hoping to swindle the local mob out of some money. But his partner, a strip club owner, might have different plans for the cash.",2005-11-23,0.9732,5.9,314 +8521,2310,Beowulf,"A 6th-century Scandinavian warrior named Beowulf embarks on a mission to slay the man-like ogre, Grendel.",2007-11-05,3.8713,5.9,2913 +8522,1005776,V/H/S/99,"A thirsty teenager's home video leads to a series of horrifying revelations, harkening back to the final punk rock analog days of VHS, while taking one giant leap forward into the hellish new millennium.",2022-09-15,1.6018,5.913,316 +8523,258489,The Legend of Tarzan,"Tarzan, having acclimated to life in London, is called back to his former home in the jungle to investigate the activities at a mining encampment.",2016-06-29,5.2683,5.913,6315 +8524,74998,Seeking Justice,"After his wife is assaulted, a husband enlists the services of a vigilante group to help him settle the score.",2011-09-02,1.5893,5.913,1024 +8525,10136,The Golden Child,"After a Tibetan boy, the mystical Golden Child, is kidnapped by the evil Sardo Numspa, humankind's fate hangs in the balance. On the other side of the world in Los Angeles, the priestess Kee Nang seeks the Chosen One, who will save the boy from death. When Nang sees social worker Chandler Jarrell on television discussing his ability to find missing children, she solicits his expertise, despite his skepticism over being ""chosen.""",1986-12-12,3.4836,5.912,1115 +8526,9072,Little Man,"After leaving the prison, the dwarf criminal Calvin Sims joins to his moron brother Percy to steal an expensive huge diamond in a jewelry for the mobster Walken. They are chased by the police, and Calvin hides the stone in the purse of the executive Vanessa Edwards, whose husband Darryl Edwards wants to have a baby. Percy convinces Calvin to dress like a baby and be left in front of the Edwards's house to get inside the house and retrieve the diamond. Darryl and Vanessa keep Calvin for the weekend and decide to adopt him, while Walken threatens Darryl to get the stone back.",2006-08-31,7.3556,5.911,1794 +8527,1970,The Grudge,"An American nurse living and working in Tokyo is exposed to a mysterious supernatural curse, one that locks a person in a powerful rage before claiming their life and spreading to another victim.",2004-10-22,4.0009,5.912,3027 +8528,34480,The Descent: Part 2,"Distraught, confused, and half-wild with fear, Sarah Carter emerges alone from the Appalachian cave system where she encountered unspeakable terrors. Unable to plausibly explain to the authorities what happened - or why she's covered in her friends' blood - Sarah is forced back to the subterranean depths to help locate her five missing companions.",2009-10-14,3.0761,5.9,1214 +8529,9895,Man of the Year,"The irreverent host of a political satire talk show decides to run for president and expose corruption in Washington. His stunt goes further than he expects when he actually wins the election, but a software engineer suspects that a computer glitch is responsible for his surprising victory.",2006-10-09,2.0463,5.9,470 +8530,805320,Bird Box Barcelona,"After a mysterious force decimates the world’s population, Sebastian must navigate his own survival journey through the desolate streets of Barcelona. As he forms uneasy alliances with other survivors and they try to escape the city, an unexpected and even more sinister threat grows.",2023-07-14,2.4731,5.911,754 +8531,501979,Bill & Ted Face the Music,"Yet to fulfil their rock and roll destiny, now middle-aged best friends Bill and Ted set out on a new adventure when a visitor from the future warns them that only their song can save life as we know it. Along the way, they are helped by their daughters, a new batch of historical figures and a few music legends — to seek the song that will set their world right and bring harmony to the universe.",2020-08-27,2.8953,5.91,998 +8532,290555,Wolves,"The coming-of-age story of Cayden Richards. Forced to hit the road after the murder of his parents, Cayden wanders lost without purpose... Until he meets a certifiable lunatic named Wild Joe who sets him on a path to the ominous town of Lupine Ridge to hunt down the truths of his history. But in the end| who's really hunting whom?",2014-08-28,2.29,5.91,311 +8533,45649,Rubber,"A group of people gather in the California desert to watch a ""film"" set in the late 1990s featuring a sentient, homicidal car tire named Robert. The assembled crowd of onlookers watch as Robert becomes obsessed with a beautiful and mysterious woman and goes on a rampage through a desert town.",2010-11-09,1.6655,5.91,1055 +8534,17134,12 Rounds,"When New Orleans Police Detective Danny Fisher stops a brilliant thief from getting away with a multimillion-dollar heist, the thief's girlfriend is accidentally killed. After escaping from prison, the criminal mastermind enacts his revenge, taunting Danny with 12 rounds of near-impossible puzzles and tasks that he must somehow complete to save the life of the woman he loves.",2009-03-19,2.4217,5.91,807 +8535,7364,Sahara,"Seasoned adventurer and treasure hunter Dirk Pitt, a former Navy SEAL, sets out for the African desert with his wisecracking buddy Al in search of a confederate ironclad battleship rumored to have vanished long ago, the main draw being the treasure supposedly hidden within the lost vessel. When the daring duo come across Dr. Eva Rojas, a beautiful scientist who is juggling an escape from a warlord and a mission to stop the spread of a powerful plague, their desert expedition begins to heat up.",2005-04-06,3.0208,5.91,1547 +8536,306952,Naomi and Ely's No Kiss List,The bonds between Naomi and Ely are tested when they fall for the same guy.,2015-09-18,1.2459,5.9,1070 +8537,146381,Justin and the Knights of Valour,"A heart-warming tale about friendship, honor & courage, which sees a young boy become a man as he embarks on a quest to become a knight.",2013-08-09,1.429,5.909,318 +8538,2022,Mr. Deeds,"When Longfellow Deeds, a small-town pizzeria owner and poet, inherits $40 billion from his deceased uncle, he quickly begins rolling in a different kind of dough. Moving to the big city, Deeds finds himself besieged by opportunists all gunning for their piece of the pie. Babe, a television tabloid reporter, poses as an innocent small-town girl to do an exposé on Deeds.",2002-06-28,7.2735,5.9,2384 +8539,39285,Beauty & the Briefcase,A freelance writer looking for romance sells a story to Cosmopolitan magazine about finding love in the workplace and goes undercover at a Finance Company.,2010-07-20,1.8465,5.908,411 +8540,10030,Good Luck Chuck,"Cursed since childhood, dentist Charlie Logan cannot find the right woman. Even worse, he learns that each of his ex-girlfriends finds true love with the man she meets after her relationship with him ends. Hearing of Charlie's reputation as a good-luck charm, women from all over line up for a quick tryst. But when Charlie meets the woman of his dreams, he must find a way to break the curse or risk losing her to the next man she meets.",2007-09-21,4.6533,5.908,1561 +8541,10748,St Trinian's,"When their beloved school is threatened with closure should the powers that be fail to raise the proper funds, the girls scheme to steal a priceless painting and use the profits to pull St. Trinian's out of the red.",2007-12-21,1.5697,5.907,479 +8542,9923,Domino,"The story of the life of Domino Harvey, who abandoned her career as a Ford model to become a bounty hunter.",2005-10-14,1.4116,5.9,1232 +8543,16558,Duplicity,Two romantically involved corporate spies team up to manipulate a race to corner the market on a medical innovation that will reap huge profits and allow them to lead an extravagant lifestyle together.,2009-03-18,2.2198,5.908,819 +8544,1884,The Ewok Adventure,"Wicket the Ewok and his friends agree to help two shipwrecked human children, Mace and Cindel, on a quest to find their parents.",1984-12-21,2.6528,5.9,394 +8545,2084,Birthday Girl,"John is a mild-mannered banker who has never been lucky in love. Fed up with waiting for the right girl to come along, John takes a chance on a Russian mail-order bride arranged via the Internet, where he is introduced to Nadia. John's fondness for Nadia grows... until the sudden arrival of Nadia's gregarious cousins makes John realize that he's in over his head.",2001-09-06,1.5868,5.905,409 +8546,736500,Retirement Home,A story of friendship between a young convict who is forced to work in a retirement home and a group of crazy old people. Together they organize their escape.,2022-02-16,0.7831,5.904,301 +8547,479455,Men in Black: International,"The Men in Black have always protected the Earth from the scum of the universe. In this new adventure, they tackle their biggest, most global threat to date: a mole in the Men in Black organization.",2019-06-12,5.6843,5.904,5088 +8548,457962,Shimmer Lake,Shot in reverse day-by-day through a week—a local sheriff embarks on a quest to unlock the mystery of three small-town criminals and a bank heist gone wrong.,2017-06-09,1.2724,5.904,441 +8549,334527,Criminal Activities,Four young men make a risky investment together that gets them into trouble with the mob.,2015-11-20,1.8124,5.9,308 +8550,270302,The Riot Club,Two first-year students at Oxford University join a secret society and learn that their reputations can be made or destroyed over the course of one evening.,2014-09-19,1.2069,5.904,991 +8551,36691,Solitary Man,A car magnate watches his personal and professional life hit the skids because of his business and romantic indiscretions.,2009-09-07,1.3438,5.904,329 +8552,808023,The Virtuoso,"Danger, deception and murder descend upon a sleepy town when a professional assassin accepts a new assignment from his enigmatic boss.",2021-04-30,2.0383,5.903,402 +8553,460790,Starship Troopers: Traitor of Mars,"Federation trooper Johnny Rico is ordered to work with a group of new recruits on a satellite station on Mars, where giant bugs have decided to target their next attack.",2017-08-21,1.9649,5.903,305 +8554,346672,Underworld: Blood Wars,"Vampire death dealer Selene fends off brutal attacks from both the Lycan clan and the Vampire faction that betrayed her. With her only allies, David and his father Thomas, she must stop the eternal war between Lycans and Vampires, even if it means she has to make the ultimate sacrifice.",2016-11-24,5.2869,5.9,3781 +8555,238603,Earth to Echo,"After a construction project begins digging in their neighbourhood, best friends Tuck, Munch and Alex inexplicably begin to receive strange, encoded messages on their cell phones. Convinced something bigger is going on, they go to their parents and the authorities. The three embark on a secret adventure to crack the code and follow it to its source, and discover a mysterious being from another world who desperately needs their help. The journey that follows will change all their lives forever.",2014-06-14,1.6137,5.9,593 +8556,11968,Into the Blue,"When they take some friends on an extreme sport adventure, the last thing Jared and Sam expect to see below the shark-infested waters is a legendary pirate ship rumored to contain millions of dollars in gold. But their good fortune is short-lived, as a ruthless gang of criminals gets word of what they have uncovered.",2005-09-30,3.3432,5.902,1539 +8557,439079,The Nun,A priest with a haunted past and a novice on the threshold of her final vows are sent by the Vatican to investigate the death of a young nun in Romania and confront a malevolent force in the form of a demonic nun.,2018-09-05,15.1733,5.901,6862 +8558,513409,Earthquake Bird,"Tokyo, Japan, 1989. Lucy Fly, a foreigner who works as a translator, begins a passionate relationship with Teiji, a mysterious man obsessed with photography.",2019-11-01,1.1859,5.9,448 +8559,362637,Opposites Attract,"She's a divorce lawyer, single mother and perpetually at war against men, he is a couple's therapist, single and not looking, they meet and collide in a bourgeois and romantic Rome...",2015-10-08,0.5438,5.9,304 diff --git a/example_datasets/Movies/u.data b/example_datasets/Movies/u.data new file mode 100644 index 0000000..16ef21e --- /dev/null +++ b/example_datasets/Movies/u.data @@ -0,0 +1,100000 @@ +196 242 3 881250949 +186 302 3 891717742 +22 377 1 878887116 +244 51 2 880606923 +166 346 1 886397596 +298 474 4 884182806 +115 265 2 881171488 +253 465 5 891628467 +305 451 3 886324817 +6 86 3 883603013 +62 257 2 879372434 +286 1014 5 879781125 +200 222 5 876042340 +210 40 3 891035994 +224 29 3 888104457 +303 785 3 879485318 +122 387 5 879270459 +194 274 2 879539794 +291 1042 4 874834944 +234 1184 2 892079237 +119 392 4 886176814 +167 486 4 892738452 +299 144 4 877881320 +291 118 2 874833878 +308 1 4 887736532 +95 546 2 879196566 +38 95 5 892430094 +102 768 2 883748450 +63 277 4 875747401 +160 234 5 876861185 +50 246 3 877052329 +301 98 4 882075827 +225 193 4 879539727 +290 88 4 880731963 +97 194 3 884238860 +157 274 4 886890835 +181 1081 1 878962623 +278 603 5 891295330 +276 796 1 874791932 +7 32 4 891350932 +10 16 4 877888877 +284 304 4 885329322 +201 979 2 884114233 +276 564 3 874791805 +287 327 5 875333916 +246 201 5 884921594 +242 1137 5 879741196 +249 241 5 879641194 +99 4 5 886519097 +178 332 3 882823437 +251 100 4 886271884 +81 432 2 876535131 +260 322 4 890618898 +25 181 5 885853415 +59 196 5 888205088 +72 679 2 880037164 +87 384 4 879877127 +290 143 5 880474293 +42 423 5 881107687 +292 515 4 881103977 +115 20 3 881171009 +20 288 1 879667584 +201 219 4 884112673 +13 526 3 882141053 +246 919 4 884920949 +138 26 5 879024232 +167 232 1 892738341 +60 427 5 883326620 +57 304 5 883698581 +223 274 4 891550094 +189 512 4 893277702 +243 15 3 879987440 +92 1049 1 890251826 +246 416 3 884923047 +194 165 4 879546723 +241 690 2 887249482 +178 248 4 882823954 +254 1444 3 886475558 +293 5 3 888906576 +127 229 5 884364867 +225 237 5 879539643 +299 229 3 878192429 +225 480 5 879540748 +276 54 3 874791025 +291 144 5 874835091 +222 366 4 878183381 +267 518 5 878971773 +42 403 3 881108684 +11 111 4 891903862 +95 625 4 888954412 +8 338 4 879361873 +162 25 4 877635573 +87 1016 4 879876194 +279 154 5 875296291 +145 275 2 885557505 +119 1153 5 874781198 +62 498 4 879373848 +62 382 3 879375537 +28 209 4 881961214 +135 23 4 879857765 +32 294 3 883709863 +90 382 5 891383835 +286 208 4 877531942 +293 685 3 888905170 +216 144 4 880234639 +166 328 5 886397722 +250 496 4 878090499 +271 132 5 885848672 +160 174 5 876860807 +265 118 4 875320714 +198 498 3 884207492 +42 96 5 881107178 +168 151 5 884288058 +110 307 4 886987260 +58 144 4 884304936 +90 648 4 891384754 +271 346 4 885844430 +62 21 3 879373460 +279 832 3 881375854 +237 514 4 879376641 +94 789 4 891720887 +128 485 3 879966895 +298 317 4 884182806 +44 195 5 878347874 +264 200 5 886122352 +194 385 2 879524643 +72 195 5 880037702 +222 750 5 883815120 +250 264 3 878089182 +41 265 3 890687042 +224 245 3 888082216 +82 135 3 878769629 +262 1147 4 879791710 +293 471 3 888904884 +216 658 3 880245029 +250 140 3 878092059 +59 23 5 888205300 +286 379 5 877533771 +244 815 4 880605185 +7 479 4 891352010 +174 368 1 886434402 +87 274 4 879876734 +194 1211 2 879551380 +82 1134 2 884714402 +13 836 2 882139746 +13 272 4 884538403 +244 756 2 880605157 +305 427 5 886323090 +95 787 2 888954930 +43 14 2 883955745 +299 955 4 889502823 +57 419 3 883698454 +84 405 3 883452363 +269 504 4 891449922 +299 111 3 877878184 +194 466 4 879525876 +160 135 4 876860807 +99 268 3 885678247 +10 486 4 877886846 +259 117 4 874724988 +85 427 3 879456350 +303 919 4 879467295 +213 273 5 878870987 +121 514 3 891387947 +90 98 5 891383204 +49 559 2 888067405 +42 794 3 881108425 +155 323 2 879371261 +68 117 4 876973939 +172 177 4 875537965 +19 4 4 885412840 +268 231 4 875744136 +5 2 3 875636053 +305 117 2 886324028 +44 294 4 883612356 +43 137 4 875975656 +279 1336 1 875298353 +80 466 5 887401701 +254 164 4 886472768 +298 281 3 884183336 +279 1240 1 892174404 +66 298 4 883601324 +18 443 3 880130193 +268 1035 2 875542174 +99 79 4 885680138 +13 98 4 881515011 +26 258 3 891347949 +7 455 4 891353086 +222 755 4 878183481 +200 673 5 884128554 +119 328 4 876923913 +213 172 5 878955442 +276 322 3 874786392 +94 1217 3 891723086 +130 379 4 875801662 +38 328 4 892428688 +160 719 3 876857977 +293 1267 3 888906966 +26 930 2 891385985 +130 216 4 875216545 +92 1079 3 886443455 +256 452 4 882164999 +1 61 4 878542420 +72 48 4 880036718 +56 755 3 892910207 +13 360 4 882140926 +15 405 2 879455957 +92 77 3 875654637 +207 476 2 884386343 +292 174 5 881105481 +232 483 5 888549622 +251 748 2 886272175 +224 26 3 888104153 +181 220 4 878962392 +259 255 4 874724710 +305 471 4 886323648 +52 280 3 882922806 +161 202 5 891170769 +148 408 5 877399018 +125 235 2 892838559 +97 228 5 884238860 +58 1098 4 884304936 +83 234 4 887665548 +90 347 4 891383319 +272 178 5 879455113 +194 181 3 879521396 +125 478 4 879454628 +110 688 1 886987605 +299 14 4 877877775 +151 10 5 879524921 +269 127 4 891446165 +6 14 5 883599249 +54 106 3 880937882 +303 69 5 879467542 +16 944 1 877727122 +301 790 4 882078621 +276 1091 3 874793035 +305 214 2 886323068 +194 1028 2 879541148 +91 323 2 891438397 +87 554 4 879875940 +294 109 4 877819599 +286 171 4 877531791 +200 318 5 884128458 +229 328 1 891632142 +178 568 4 882826555 +303 842 2 879484804 +62 65 4 879374686 +207 591 3 876018608 +92 172 4 875653271 +301 401 4 882078040 +36 339 5 882157581 +70 746 3 884150257 +63 242 3 875747190 +28 201 3 881961671 +279 68 4 875307407 +250 7 4 878089716 +14 98 3 890881335 +299 1018 3 889502324 +194 54 3 879525876 +303 815 3 879485532 +119 237 5 874775038 +295 218 5 879966498 +268 930 2 875742942 +268 2 2 875744173 +66 258 4 883601089 +233 202 5 879394264 +83 623 4 880308578 +214 334 3 891542540 +192 476 2 881368243 +100 344 4 891374868 +268 145 1 875744501 +301 56 4 882076587 +307 89 5 879283786 +234 141 3 892334609 +83 576 4 880308755 +181 264 2 878961624 +297 133 4 875240090 +38 153 5 892430369 +7 382 4 891352093 +264 813 4 886122952 +181 872 1 878961814 +201 146 1 884140579 +85 507 4 879456199 +269 367 3 891450023 +59 468 3 888205855 +286 143 4 889651549 +193 96 1 889124507 +113 595 5 875936424 +292 11 5 881104093 +130 1014 3 876250718 +275 98 4 875155140 +189 520 5 893265380 +219 82 1 889452455 +218 209 5 877488546 +123 427 3 879873020 +119 222 5 874775311 +158 177 4 880134407 +222 118 4 877563802 +302 322 2 879436875 +279 501 3 875308843 +301 79 5 882076403 +181 3 2 878963441 +201 695 1 884140115 +13 198 3 881515193 +1 189 3 888732928 +145 237 5 875270570 +23 385 4 874786462 +201 767 4 884114505 +296 705 5 884197193 +42 546 3 881105817 +33 872 3 891964230 +301 554 3 882078830 +16 64 5 877720297 +95 135 3 879197562 +154 357 4 879138713 +77 484 5 884733766 +296 508 5 884196584 +302 303 2 879436785 +244 673 3 880606667 +222 77 4 878183616 +13 215 5 882140588 +16 705 5 877722736 +270 452 4 876956264 +145 15 2 875270655 +187 64 5 879465631 +200 304 5 876041644 +170 749 5 887646170 +101 829 3 877136138 +184 218 3 889909840 +128 204 4 879967478 +181 1295 1 878961781 +184 153 3 889911285 +1 33 4 878542699 +1 160 4 875072547 +184 321 5 889906967 +54 595 3 880937813 +94 343 4 891725009 +128 508 4 879967767 +23 323 2 874784266 +301 227 3 882077222 +301 191 3 882075672 +112 903 1 892440172 +82 183 3 878769848 +222 724 3 878181976 +218 430 3 877488316 +308 1197 4 887739521 +303 134 5 879467959 +133 751 3 890588547 +215 212 2 891435680 +69 256 5 882126156 +254 662 4 887347350 +276 2 4 874792436 +104 984 1 888442575 +63 1067 3 875747514 +267 410 4 878970785 +13 56 5 881515011 +240 879 3 885775745 +286 237 2 875806800 +294 271 5 889241426 +90 1086 4 891384424 +18 26 4 880129731 +92 229 3 875656201 +308 649 4 887739292 +144 89 3 888105691 +191 302 4 891560253 +59 951 3 888206409 +200 96 5 884129409 +16 197 5 877726146 +61 678 3 892302309 +271 199 4 885848448 +271 709 3 885849325 +142 169 5 888640356 +275 597 3 876197678 +222 151 3 878182109 +87 40 3 879876917 +207 258 4 877879172 +272 1393 2 879454663 +177 333 4 880130397 +207 1115 2 879664906 +299 577 3 889503806 +271 378 4 885849447 +305 425 4 886324486 +49 959 2 888068912 +94 1224 3 891722802 +130 1017 3 874953895 +10 175 3 877888677 +203 321 3 880433418 +191 286 4 891560842 +43 323 3 875975110 +21 558 5 874951695 +197 96 5 891409839 +13 344 2 888073635 +194 66 3 879527264 +234 206 4 892334543 +308 402 4 887740700 +308 640 4 887737036 +269 522 5 891447773 +94 265 4 891721889 +268 62 3 875310824 +272 12 5 879455254 +121 291 3 891390477 +296 20 5 884196921 +134 286 3 891732334 +180 462 5 877544218 +234 612 3 892079140 +104 117 2 888465972 +38 758 1 892434626 +269 845 1 891456255 +7 163 4 891353444 +234 1451 3 892078343 +275 405 2 876197645 +52 250 3 882922661 +102 823 3 888801465 +13 186 4 890704999 +178 731 4 882827532 +236 71 3 890116671 +256 781 5 882165296 +263 176 5 891299752 +244 186 3 880605697 +279 1181 4 875314001 +43 815 4 883956189 +83 78 2 880309089 +151 197 5 879528710 +254 436 2 886474216 +109 631 3 880579371 +297 716 3 875239422 +249 188 4 879641067 +144 699 4 888106106 +301 604 4 882075994 +64 392 3 889737542 +92 501 2 875653665 +222 97 4 878181739 +268 436 3 875310745 +293 135 5 888905550 +213 173 5 878955442 +160 460 2 876861185 +13 498 4 882139901 +59 715 5 888205921 +5 17 4 875636198 +125 163 5 879454956 +174 315 5 886432749 +114 505 3 881260203 +213 515 4 878870518 +23 196 2 874786926 +128 15 4 879968827 +239 56 4 889179478 +181 279 1 878962955 +291 80 4 875086354 +250 238 4 878089963 +201 649 3 884114275 +60 60 5 883327734 +181 325 2 878961814 +119 407 3 887038665 +287 1 5 875334088 +216 228 3 880245642 +216 531 4 880233810 +203 471 4 880434463 +92 587 3 875660408 +13 892 3 882774224 +213 176 4 878956338 +286 288 5 875806672 +117 1047 2 881009697 +99 111 1 885678886 +11 558 3 891904214 +65 47 2 879216672 +295 194 4 879517412 +269 217 2 891451610 +85 259 2 881705026 +250 596 5 878089921 +137 144 5 881433689 +201 960 2 884112077 +257 137 4 882049932 +111 328 4 891679939 +91 480 4 891438875 +215 211 4 891436202 +181 938 1 878961586 +189 1060 5 893264301 +1 20 4 887431883 +303 404 4 879468375 +299 305 3 879737314 +187 210 4 879465242 +222 278 2 877563913 +214 568 4 892668197 +293 770 3 888906655 +285 191 4 890595859 +303 252 3 879544791 +96 156 4 884402860 +72 1110 3 880037334 +115 1067 4 881171009 +7 430 3 891352178 +116 350 3 886977926 +73 480 4 888625753 +269 246 5 891457067 +263 419 5 891299514 +70 431 3 884150257 +221 475 4 875244204 +72 182 5 880036515 +25 357 4 885852757 +290 50 5 880473582 +189 526 4 893266205 +299 303 3 877618584 +264 294 3 886121516 +200 365 5 884129962 +187 135 4 879465653 +184 187 4 889909024 +63 289 2 875746985 +13 229 4 882397650 +298 486 3 884183063 +235 185 4 889655435 +62 712 4 879376178 +246 94 2 884923505 +54 742 5 880934806 +63 762 3 875747688 +11 732 3 891904596 +92 168 4 875653723 +8 550 3 879362356 +307 174 4 879283480 +303 200 4 879468459 +256 849 2 882164603 +72 54 3 880036854 +164 406 2 889402389 +117 150 4 880125101 +224 77 4 888103872 +193 869 3 889127811 +94 184 2 891720862 +281 338 2 881200457 +130 109 3 874953794 +128 371 1 879966954 +94 720 1 891723593 +182 845 3 885613067 +129 873 1 883245452 +254 229 4 886474580 +64 381 4 879365491 +151 176 2 879524293 +45 25 4 881014015 +193 879 3 889123257 +276 922 4 889174849 +276 57 3 874787526 +234 187 4 892079140 +181 306 1 878962006 +21 370 1 874951293 +293 249 3 888905229 +264 721 5 886123656 +10 611 5 877886722 +197 346 3 891409070 +276 142 3 874792945 +308 427 4 887736584 +221 943 4 875246759 +131 126 4 883681514 +268 824 2 876518557 +109 8 3 880572642 +198 58 3 884208173 +230 680 4 880484286 +181 741 1 878962918 +192 1061 4 881368891 +234 448 3 892335501 +90 900 4 891382309 +193 941 4 889124890 +128 603 5 879966839 +126 905 2 887855283 +244 265 4 880606634 +90 289 3 891382310 +157 25 3 886890787 +305 71 3 886323684 +119 382 5 874781742 +21 222 2 874951382 +231 181 4 888605273 +280 508 3 891700453 +288 132 3 886374129 +279 1497 2 890780576 +301 33 4 882078228 +72 699 3 880036783 +90 259 2 891382392 +308 55 3 887738760 +59 742 3 888203053 +94 744 4 891721462 +130 642 4 875216933 +26 1015 3 891352136 +56 121 5 892679480 +82 508 2 884714249 +62 12 4 879373613 +276 40 3 874791871 +181 1015 1 878963121 +152 301 3 880147407 +178 845 4 882824291 +217 597 4 889070087 +79 303 4 891271203 +138 484 4 879024127 +308 81 5 887737293 +75 284 2 884050393 +269 198 4 891447062 +307 94 3 877122695 +222 781 3 881059677 +121 740 3 891390544 +269 22 1 891448072 +13 864 4 882141924 +230 742 5 880485043 +269 507 4 891448800 +239 1099 5 889179253 +245 1028 5 888513447 +56 546 3 892679460 +295 961 5 879519556 +271 1028 2 885848102 +222 812 2 881059117 +69 240 3 882126156 +10 7 4 877892210 +22 376 3 878887112 +294 931 3 889242857 +82 717 1 884714492 +279 399 4 875313859 +269 234 1 891449406 +6 98 5 883600680 +243 1039 4 879988184 +298 181 4 884125629 +282 325 1 881703044 +78 323 1 879633567 +118 200 5 875384647 +283 1114 5 879297545 +171 292 4 891034835 +70 217 4 884151119 +10 100 5 877891747 +245 181 4 888513664 +107 333 3 891264267 +246 561 1 884923445 +13 901 1 883670672 +276 70 4 874790826 +244 17 2 880607205 +189 56 5 893265263 +226 242 5 883888671 +62 1016 4 879373008 +276 417 4 874792907 +214 478 4 891544052 +306 235 4 876504354 +222 26 3 878183043 +280 631 5 891700751 +60 430 5 883326122 +56 71 4 892683275 +42 274 5 881105817 +1 202 5 875072442 +13 809 4 882397582 +173 289 4 877556988 +15 749 1 879455311 +185 23 4 883524249 +280 540 3 891702304 +244 381 4 880604077 +150 293 4 878746946 +7 497 4 891352134 +178 317 4 882826915 +178 742 3 882823833 +95 1217 3 880572658 +234 1462 3 892333865 +97 222 5 884238887 +109 127 2 880563471 +117 268 5 880124306 +269 705 2 891448850 +130 1246 3 876252497 +264 655 4 886123530 +207 13 3 875506839 +42 588 5 881108147 +246 409 2 884923372 +87 367 4 879876702 +101 304 3 877135677 +256 127 4 882164406 +92 794 3 875654798 +181 762 2 878963418 +213 235 1 878955115 +92 739 2 876175582 +292 661 5 881105561 +246 665 4 884922831 +274 845 5 878945579 +188 692 5 875072583 +18 86 4 880129731 +5 439 1 878844423 +236 632 3 890116254 +193 407 4 889127921 +144 709 4 888105940 +90 1198 5 891383866 +48 609 4 879434819 +5 225 2 875635723 +22 128 5 878887983 +311 432 4 884365485 +8 22 5 879362183 +276 188 4 874792547 +222 173 5 878183043 +72 866 4 880035887 +299 134 4 878192311 +1 171 5 889751711 +308 295 3 887741461 +165 216 4 879525778 +222 49 3 878183512 +181 121 4 878962623 +200 11 5 884129542 +234 626 4 892336358 +244 707 4 880606243 +90 25 5 891384789 +208 216 5 883108324 +263 96 4 891298336 +134 323 4 891732335 +279 586 4 892864663 +2 292 4 888550774 +288 593 2 886892127 +49 302 4 888065432 +286 153 5 877531406 +205 304 3 888284313 +22 80 4 878887227 +234 318 4 892078890 +223 328 3 891548959 +15 25 3 879456204 +268 147 4 876514002 +94 1220 3 891722678 +274 405 4 878945840 +7 492 5 891352010 +268 217 2 875744501 +16 55 5 877717956 +164 620 3 889402298 +290 161 4 880474293 +92 515 4 875640800 +239 1070 5 889179032 +56 449 5 892679308 +248 234 4 884534968 +234 10 3 891227851 +280 1049 2 891702486 +308 187 5 887738760 +276 64 5 874787441 +192 948 3 881368302 +122 509 4 879270511 +85 588 3 880838306 +262 931 2 879790874 +201 272 3 886013700 +181 870 2 878962623 +295 739 4 879518319 +263 568 4 891299387 +295 39 4 879518279 +201 1100 4 884112800 +93 820 3 888705966 +159 1028 5 880557539 +158 665 2 880134532 +293 423 3 888906070 +82 597 3 878768882 +276 181 5 874786488 +13 823 5 882397833 +217 2 3 889069782 +83 660 4 880308256 +189 20 5 893264466 +222 796 4 878183684 +146 1022 5 891458193 +267 121 3 878970681 +126 294 3 887855087 +181 1060 1 878962675 +125 80 4 892838865 +43 120 4 884029430 +13 780 1 882142057 +253 259 2 891628883 +42 44 3 881108548 +77 518 4 884753202 +291 686 5 874835165 +268 21 3 875742822 +262 28 3 879792220 +234 81 3 892334680 +29 245 3 882820803 +236 57 5 890116575 +158 729 3 880133116 +156 661 4 888185947 +232 52 5 888550130 +168 866 5 884287927 +37 288 4 880915258 +141 245 3 884584426 +235 230 4 889655162 +102 70 3 888803537 +77 172 3 884752562 +90 506 5 891383319 +186 566 5 879023663 +44 660 5 878347915 +118 774 5 875385198 +7 661 5 891351624 +49 1003 2 888068651 +62 68 1 879374969 +42 1028 4 881106072 +178 433 4 882827834 +85 51 2 879454782 +77 474 5 884732407 +58 1099 2 892243079 +56 1047 4 892911290 +197 688 1 891409564 +286 99 4 878141681 +90 258 3 891382121 +181 1288 1 878962349 +295 190 4 879517062 +224 69 4 888082495 +272 317 4 879454977 +221 1010 3 875246662 +66 877 1 883601089 +207 318 5 877124871 +234 487 3 892079237 +7 648 5 891351653 +87 82 5 879875774 +195 1052 1 877835102 +44 449 5 883613334 +306 287 4 876504442 +194 172 3 879521474 +94 62 3 891722933 +167 659 4 892738277 +108 100 4 879879720 +230 304 5 880484286 +181 927 1 878962675 +54 302 4 880928519 +90 22 4 891384357 +181 696 2 878962997 +286 357 4 877531537 +14 269 4 892242403 +311 179 2 884365357 +92 121 5 875640679 +21 440 1 874951798 +244 550 1 880602264 +181 405 4 878962919 +65 806 4 879216529 +37 540 2 880916070 +44 443 5 878348289 +244 183 4 880606043 +1 265 4 878542441 +270 25 5 876954456 +299 387 2 889502756 +94 572 3 891723883 +286 746 4 877533058 +239 272 5 889181247 +216 55 5 880245145 +254 121 3 886472369 +62 665 2 879376483 +178 385 4 882826982 +194 23 4 879522819 +268 955 3 875745160 +188 143 5 875072674 +276 294 4 874786366 +158 1098 4 880135069 +207 845 3 881681663 +161 48 1 891170745 +305 654 4 886323937 +47 324 3 879439078 +64 736 4 889739212 +191 751 3 891560753 +7 378 5 891353011 +59 92 5 888204997 +69 268 5 882027109 +10 461 3 877888944 +21 129 4 874951382 +58 9 4 884304328 +194 152 3 879549996 +7 200 5 891353543 +113 126 5 875076827 +173 328 5 877557028 +95 233 4 879196354 +16 194 5 877720733 +59 323 4 888206809 +311 654 3 884365075 +292 589 4 881105516 +43 203 4 883955224 +79 50 4 891271545 +235 70 5 889655619 +125 190 5 892836309 +284 322 3 885329671 +303 161 5 879468547 +254 378 3 886474396 +255 1034 1 883217030 +104 301 2 888442275 +90 923 5 891383912 +6 463 4 883601713 +279 122 1 875297433 +286 298 4 875807004 +222 448 3 878183565 +297 57 5 875239383 +42 625 3 881108873 +130 1217 4 875801778 +254 357 3 886472466 +109 475 1 880563641 +230 1444 2 880485726 +244 310 3 880601905 +6 301 2 883600406 +36 748 4 882157285 +256 443 3 882164727 +102 515 1 888801316 +104 285 4 888465201 +21 447 5 874951695 +111 301 4 891680028 +18 408 5 880129628 +25 222 4 885852817 +110 944 3 886989501 +270 98 5 876955868 +68 237 5 876974133 +83 215 4 880307940 +6 258 2 883268278 +89 216 5 879459859 +128 317 4 879968029 +305 512 4 886323525 +184 412 2 889912691 +286 175 5 877532470 +279 1428 3 888465209 +256 86 5 882165103 +221 48 5 875245462 +140 332 3 879013617 +190 977 2 891042938 +11 227 3 891905896 +201 203 5 884114471 +150 181 5 878746685 +126 245 3 887854726 +20 208 2 879669401 +144 742 4 888104122 +181 930 1 878963275 +109 566 4 880578814 +85 1065 3 879455021 +213 133 3 878955973 +222 379 1 878184290 +223 11 3 891550649 +215 421 4 891435704 +218 208 3 877488366 +174 937 5 886432989 +275 186 3 880314383 +68 742 1 876974198 +268 583 4 876513830 +160 462 4 876858346 +195 273 4 878019342 +224 178 4 888082468 +5 110 1 875636493 +99 1016 5 885678724 +2 251 5 888552084 +292 9 4 881104148 +72 568 4 880037203 +85 228 3 882813248 +83 281 5 880307072 +92 831 2 886443708 +7 543 3 891351772 +87 401 2 879876813 +287 926 4 875334340 +1 155 2 878542201 +234 632 2 892079538 +222 53 5 878184113 +24 64 5 875322758 +7 554 3 891354639 +82 56 3 878769410 +161 318 3 891170824 +196 393 4 881251863 +56 91 4 892683275 +82 477 3 876311344 +7 472 2 891353357 +256 761 4 882164644 +226 56 4 883889102 +279 741 5 875296891 +308 1286 3 887738151 +16 8 5 877722736 +180 202 3 877128388 +203 93 4 880434940 +145 56 5 875271896 +288 305 4 886372527 +84 742 3 883450643 +44 644 3 878347818 +17 13 3 885272654 +313 117 4 891015319 +148 1 4 877019411 +197 347 4 891409070 +21 164 5 874951695 +279 982 3 875298314 +239 491 5 889181015 +185 287 5 883526288 +297 89 4 875239125 +303 68 4 879467361 +186 250 1 879023607 +73 206 3 888625754 +104 756 2 888465739 +94 216 3 885870665 +239 194 5 889178833 +197 511 5 891409839 +280 1 4 891700426 +1 117 3 874965739 +224 583 1 888103729 +303 397 1 879543831 +60 162 4 883327734 +198 258 4 884204501 +239 513 5 889178887 +6 69 3 883601277 +233 375 4 876374419 +85 642 4 882995615 +110 38 3 886988574 +184 522 3 889908462 +99 873 1 885678436 +13 418 2 882398763 +201 518 4 884112201 +13 858 1 882397068 +214 131 3 891544465 +296 228 4 884197264 +222 87 3 878182589 +279 725 4 875314144 +217 182 2 889070109 +85 433 3 879828720 +239 234 3 889178762 +13 72 4 882141727 +194 77 3 879527421 +208 663 5 883108476 +109 178 3 880572950 +230 172 4 880484523 +59 485 2 888204466 +313 478 3 891014373 +70 1133 3 884151344 +62 182 5 879375169 +198 234 3 884207833 +65 125 4 879217509 +174 660 5 886514261 +90 12 5 891383241 +130 1248 3 880396702 +100 354 2 891375260 +283 432 5 879297965 +275 418 3 875154718 +311 98 5 884364502 +195 751 4 883295500 +130 105 4 876251160 +269 252 1 891456350 +286 73 5 877532965 +7 623 3 891354217 +56 222 5 892679439 +210 204 5 887730676 +239 9 5 889180446 +96 87 4 884403531 +297 73 2 875239691 +249 239 3 879572284 +94 860 2 891723706 +84 121 4 883452307 +275 265 4 880314031 +135 1046 3 879858003 +291 1178 4 875086354 +125 382 1 892836623 +70 399 4 884068521 +311 9 4 884963365 +301 523 4 882076146 +152 685 5 880149074 +244 172 4 880605665 +275 1091 2 875154535 +53 281 4 879443288 +198 118 2 884206513 +244 790 4 880608037 +26 125 4 891371676 +151 13 3 879542688 +124 496 1 890286933 +24 191 5 875323003 +271 65 3 885849419 +307 634 3 879283385 +294 1245 3 877819265 +234 241 2 892335042 +25 501 3 885852301 +293 137 3 888904653 +201 432 3 884111312 +75 240 1 884050661 +13 181 5 882140354 +207 68 2 877125350 +2 50 5 888552084 +313 566 4 891016220 +144 125 4 888104191 +188 443 4 875074329 +276 324 4 874786419 +145 974 1 882182634 +72 234 4 880037418 +83 385 4 887665549 +181 619 3 878963086 +109 402 4 880581344 +207 107 3 876198301 +185 216 4 883526268 +14 213 5 890881557 +149 319 2 883512658 +57 79 5 883698495 +230 963 5 880484370 +176 875 4 886047442 +253 97 4 891628501 +284 269 4 885328991 +106 526 4 881452685 +121 180 3 891388286 +62 86 2 879374640 +291 418 4 875086920 +84 1033 4 883452711 +293 380 2 888907527 +207 58 3 875991047 +194 187 4 879520813 +109 97 3 880578711 +283 845 4 879297442 +297 275 5 874954260 +181 334 1 878961749 +78 255 4 879633745 +11 425 4 891904300 +308 59 4 887737647 +193 1078 4 889126943 +297 234 3 875239018 +87 585 4 879877008 +250 204 2 878091682 +8 50 5 879362124 +186 148 4 891719774 +312 692 4 891699426 +91 683 3 891438351 +5 454 1 875721432 +291 376 3 875086534 +175 127 5 877107640 +145 737 2 875272833 +7 644 5 891351685 +276 419 5 874792907 +83 210 5 880307751 +102 524 3 888803537 +153 174 1 881371140 +62 302 3 879371909 +49 995 3 888065577 +268 298 3 875742647 +207 554 2 877822854 +313 616 5 891015049 +286 44 3 877532173 +279 168 5 875296435 +276 474 5 889174904 +62 59 4 879373821 +254 219 1 886475980 +83 97 4 880308690 +63 100 5 875747319 +16 178 5 877719333 +297 233 2 875239914 +90 945 5 891383866 +85 25 2 879452769 +42 98 4 881106711 +303 393 4 879484981 +274 50 5 878944679 +104 299 3 888442436 +94 792 4 885873006 +184 98 4 889908539 +293 708 3 888907527 +248 589 4 884534968 +18 950 3 880130764 +217 27 1 889070011 +200 892 4 884127082 +201 148 1 884140751 +296 222 5 884196640 +7 662 3 892133739 +196 381 4 881251728 +69 427 3 882145465 +72 196 4 880036747 +256 472 4 882152471 +128 182 4 879967225 +151 747 3 879524564 +7 171 3 891351287 +286 85 5 877533224 +172 220 4 875537441 +308 516 4 887736743 +190 974 2 891625949 +82 756 1 878768741 +308 436 4 887739257 +59 235 1 888203658 +64 1063 3 889739539 +145 756 2 885557506 +220 298 4 881198966 +21 324 4 874950889 +285 269 4 890595313 +207 65 3 878104594 +198 658 3 884208173 +220 333 3 881197771 +210 70 4 887730589 +181 14 1 878962392 +158 128 2 880134296 +143 682 3 888407741 +75 237 2 884050309 +199 221 4 883782854 +223 1150 2 891549841 +297 25 4 874954497 +276 78 4 877934828 +299 847 4 877877649 +293 325 2 888904353 +301 138 2 882079446 +1 47 4 875072125 +164 281 4 889401906 +96 673 4 884402860 +291 1016 4 874833827 +7 451 5 891353892 +233 177 4 877661496 +6 517 4 883602212 +202 283 3 879727153 +214 117 4 891543241 +184 602 4 889909691 +277 257 3 879543487 +194 212 1 879524216 +95 68 4 879196231 +25 257 4 885853415 +6 23 4 883601365 +38 573 1 892433660 +313 436 4 891029877 +22 241 3 878888025 +262 617 3 879793715 +130 569 3 880396494 +66 181 5 883601425 +21 948 1 874951054 +181 1332 1 878962278 +262 174 3 879791948 +206 302 5 888180227 +222 22 5 878183285 +76 61 4 875028123 +151 703 4 879542460 +314 28 5 877888346 +13 147 3 882397502 +44 258 4 878340824 +303 418 4 879483510 +16 89 2 877717833 +270 558 5 876954927 +248 117 5 884535433 +125 318 5 879454309 +138 523 5 879024043 +268 386 2 875743978 +291 15 5 874833668 +234 147 3 892335372 +239 96 5 889178798 +15 331 3 879455166 +94 155 2 891723807 +136 89 4 882848925 +223 423 3 891550684 +82 194 4 878770027 +145 355 3 888396967 +280 845 3 891700925 +179 339 1 892151366 +178 199 4 882826306 +307 949 4 877123315 +10 488 5 877888613 +116 331 3 876451911 +23 258 5 876785704 +308 174 4 887736696 +185 114 4 883524320 +188 237 3 875073648 +118 654 5 875385007 +246 721 4 884921794 +234 98 4 892078567 +194 239 3 879522917 +94 24 4 885873423 +122 378 4 879270769 +312 100 4 891698613 +262 64 5 879793022 +154 242 3 879138235 +223 763 3 891550067 +99 403 4 885680374 +83 43 4 880308690 +130 307 4 877984546 +174 402 5 886513729 +256 487 5 882164231 +59 177 4 888204349 +161 168 1 891171174 +244 53 3 880607489 +250 196 4 878091818 +43 40 3 883956468 +285 150 5 890595636 +42 953 2 881108815 +97 670 5 884239744 +122 510 4 879270327 +61 323 3 891206450 +222 106 2 883816184 +4 264 3 892004275 +304 259 1 884967253 +37 403 5 880915942 +49 68 1 888069513 +303 1098 4 879467959 +165 372 5 879525987 +176 324 5 886047292 +3 335 1 889237269 +56 869 3 892683895 +44 15 4 878341343 +190 117 4 891033697 +29 189 4 882821942 +94 174 4 885870231 +130 949 3 876251944 +117 181 5 880124648 +303 779 1 879543418 +19 435 5 885412840 +194 191 4 879521856 +158 24 4 880134261 +56 447 4 892679067 +262 223 3 879791816 +181 1334 1 878962240 +214 137 4 891543227 +92 747 4 875656164 +188 96 5 875073128 +58 173 5 884305353 +244 154 5 880606385 +134 879 4 891732393 +298 625 4 884183406 +254 230 4 886472400 +230 138 3 880485197 +16 209 5 877722736 +151 835 5 879524199 +181 1327 1 878963305 +145 1248 3 875272195 +200 588 5 884128499 +248 257 3 884535840 +297 432 4 875239658 +312 133 5 891699296 +151 12 5 879524368 +110 568 3 886988449 +305 483 5 886323068 +141 258 5 884584338 +44 240 4 878346997 +186 263 3 879023571 +214 213 4 891544414 +233 208 4 880610814 +104 287 2 888465347 +312 153 2 891699491 +1 222 4 878873388 +206 323 1 888179833 +230 419 4 880484587 +56 450 3 892679374 +94 651 5 891725332 +205 316 4 888284710 +14 174 5 890881294 +268 790 2 876513785 +276 1081 3 880913705 +83 929 3 880307140 +268 580 3 875309344 +222 1041 3 881060155 +279 89 4 875306910 +5 424 1 875635807 +112 331 4 884992603 +296 429 5 884197330 +18 202 3 880130515 +13 868 5 882139901 +87 210 5 879875734 +10 285 5 877889186 +181 328 3 878961227 +23 463 4 874785843 +253 746 3 891628630 +234 228 3 892079190 +299 1047 2 877880041 +66 1 3 883601324 +216 174 5 881432488 +290 208 3 880475245 +79 1161 2 891271697 +264 448 2 886122031 +4 303 5 892002352 +144 831 3 888104805 +138 517 4 879024279 +64 433 2 889740286 +5 1 4 875635748 +276 357 5 874787526 +62 433 5 879375588 +239 475 5 889178689 +293 166 3 888905520 +130 234 5 875216932 +264 70 4 886123596 +208 197 5 883108797 +24 763 5 875322875 +279 1162 3 875314334 +3 245 1 889237247 +101 596 3 877136564 +162 1019 4 877636556 +223 908 1 891548802 +99 246 3 888469392 +239 430 3 889180338 +160 160 5 876862078 +172 580 4 875538028 +303 1160 2 879544629 +54 676 5 880935294 +44 507 3 878347392 +210 97 5 887736454 +164 930 4 889402340 +299 240 2 877878414 +28 217 3 881961671 +305 79 3 886324276 +18 729 3 880131236 +82 343 1 884713755 +109 1012 4 880564570 +207 25 4 876079113 +92 1209 1 875660468 +109 1 4 880563619 +15 222 3 879455730 +58 709 5 884304812 +303 693 4 879466771 +152 111 5 880148782 +194 160 2 879551380 +92 241 3 875655961 +77 91 3 884752924 +244 662 3 880606533 +177 321 2 880130481 +131 221 3 883681561 +197 302 3 891409070 +227 50 4 879035347 +85 282 3 879829618 +295 72 4 879518714 +181 1 3 878962392 +277 255 4 879544145 +279 96 4 875310606 +1 253 5 874965970 +18 182 4 880130640 +276 568 4 882659211 +87 177 5 879875940 +177 69 1 880131088 +213 13 4 878955139 +125 134 5 879454532 +128 739 4 879969349 +291 428 5 874871766 +25 208 4 885852337 +288 272 5 889225463 +207 1350 2 877878772 +271 56 3 885848559 +5 363 3 875635225 +274 748 5 878944406 +70 419 5 884065035 +311 559 2 884366187 +151 919 5 879524368 +199 268 5 883782509 +201 209 3 884112801 +99 274 1 885679157 +11 740 4 891903067 +59 77 4 888206254 +184 277 3 889907971 +222 88 4 878183336 +38 161 5 892432062 +59 418 2 888205188 +104 300 3 888442275 +298 1346 3 884126061 +180 1119 3 877128156 +7 674 2 891352659 +121 14 5 891390014 +268 1041 1 875743735 +252 277 4 891456797 +303 411 4 879483802 +210 527 5 887736232 +234 648 3 892826760 +312 573 5 891712535 +308 215 3 887737483 +234 1397 4 892334976 +75 546 3 884050422 +117 15 5 880125887 +246 239 3 884921380 +64 516 5 889737376 +85 187 5 879454235 +239 81 3 889179808 +59 54 4 888205921 +256 220 3 882151690 +216 196 5 880245145 +203 282 1 880434919 +13 195 3 881515296 +144 153 5 888105823 +100 268 3 891374982 +210 274 5 887730676 +94 471 4 891721642 +13 807 1 886304229 +125 657 3 892836422 +65 1142 4 879217349 +1 113 5 878542738 +76 175 4 875028853 +294 508 4 877819532 +263 1451 4 891299949 +294 930 3 889242704 +121 117 1 891388600 +85 13 3 879452866 +303 426 3 879542535 +212 180 1 879303974 +6 492 5 883601089 +181 240 1 878963122 +279 746 5 875310233 +303 1109 4 879467936 +184 191 4 889908716 +310 116 5 879436104 +313 22 3 891014870 +314 1150 4 877887002 +13 121 5 882397503 +43 5 4 875981421 +58 214 2 884305296 +215 164 3 891436633 +62 288 2 879371909 +280 127 5 891702544 +161 898 3 891170191 +11 723 5 891904637 +94 218 3 891721851 +35 243 2 875459046 +311 566 4 884366112 +48 680 3 879434330 +85 604 4 882995132 +288 527 3 886373565 +184 514 5 889908497 +151 929 3 879543457 +90 690 4 891383319 +11 38 3 891905936 +104 1016 1 888466002 +106 582 4 881451199 +181 1010 1 878962774 +37 117 4 880915674 +276 845 4 874786807 +22 258 5 878886261 +70 82 4 884068075 +5 98 3 875720691 +308 95 4 887737130 +60 208 5 883326028 +270 778 5 876955711 +243 208 4 879989134 +92 540 2 875813197 +81 280 4 876534214 +293 412 1 888905377 +200 478 5 884128788 +13 308 3 881514726 +56 184 4 892679088 +116 250 4 876452606 +295 172 4 879516986 +63 1007 5 875747368 +295 235 4 879517943 +104 1010 1 888465554 +156 641 5 888185677 +269 1165 1 891446904 +160 430 5 876861799 +237 191 4 879376773 +287 252 1 875334361 +290 132 3 880473993 +45 109 5 881012356 +224 678 3 888082277 +145 764 2 888398257 +277 1011 3 879543697 +65 100 3 879217558 +272 1101 5 879454977 +116 255 3 876452524 +184 86 5 889908694 +285 151 5 890595636 +222 148 2 881061164 +72 28 4 880036824 +271 187 5 885848343 +94 211 5 891721142 +246 425 5 884921918 +115 8 5 881171982 +176 327 3 886047176 +13 396 3 882141727 +129 331 2 883244737 +257 1260 2 880496892 +95 1 5 879197329 +147 904 5 885594015 +151 58 4 879524849 +184 660 3 889909962 +311 386 3 884365747 +105 268 4 889214268 +158 510 3 880134296 +34 312 4 888602742 +72 427 5 880037702 +263 416 5 891299697 +94 1048 4 891722678 +200 291 3 891825292 +45 118 4 881014550 +279 144 4 880850073 +145 22 5 875273021 +71 89 5 880864462 +182 69 5 876435435 +193 627 4 889126972 +214 302 4 892668197 +151 485 5 879525002 +102 322 3 883277645 +234 571 2 892318158 +249 930 2 879640585 +195 328 4 884420059 +109 258 5 880562908 +222 552 2 878184596 +282 288 4 879949367 +117 758 2 881011217 +23 381 4 874787350 +112 327 1 884992535 +303 145 1 879543573 +252 300 4 891448664 +151 372 5 879524819 +282 327 5 879949417 +304 237 5 884968415 +290 568 3 880474716 +64 160 4 889739288 +28 79 4 881961003 +168 1278 3 884287560 +265 471 4 875320302 +18 113 5 880129628 +83 82 5 887665423 +90 499 5 891383866 +234 1186 4 892335707 +87 196 5 879877681 +26 685 3 891371676 +150 129 4 878746946 +161 98 4 891171357 +70 210 4 884065854 +51 182 3 883498790 +222 1057 4 881061370 +92 176 5 875652981 +204 216 4 892513864 +164 685 5 889402160 +57 682 3 883696824 +184 207 4 889908903 +60 403 3 883327087 +92 180 5 875653016 +43 204 4 883956122 +222 1042 4 878184514 +197 300 4 891409422 +92 790 3 875907618 +294 282 3 877821796 +201 747 2 884113635 +201 215 2 884140382 +193 410 3 889127633 +271 705 4 885849052 +214 693 3 891544414 +73 657 5 888625422 +90 187 4 891383561 +315 273 3 879821349 +48 309 3 879434132 +255 472 1 883216958 +270 671 4 876956360 +66 7 3 883601355 +6 478 4 883602762 +101 222 3 877136243 +207 1046 4 875509787 +144 182 3 888105743 +85 83 4 886282959 +102 625 3 883748418 +158 770 5 880134477 +297 588 4 875238579 +90 507 5 891383987 +271 482 5 885848519 +130 901 1 884624044 +178 276 3 882823978 +90 245 3 891382612 +181 1094 1 878963086 +311 143 3 884364812 +267 17 4 878971773 +201 51 2 884140751 +194 647 4 879521531 +59 387 3 888206562 +1 227 4 876892946 +116 751 3 890131577 +170 292 5 884103732 +110 578 3 886988536 +60 1021 5 883326185 +287 347 4 888177040 +197 55 3 891409982 +38 679 5 892432062 +195 1014 4 879673925 +279 227 4 889326161 +84 748 4 883449530 +31 886 2 881547877 +316 98 5 880853743 +25 25 5 885853415 +168 274 4 884287865 +103 24 4 880415847 +299 588 4 877880852 +194 478 3 879521329 +287 294 5 875333873 +234 582 4 892334883 +279 1048 1 886015533 +87 9 4 879877931 +181 408 1 878962550 +279 1151 2 875744584 +49 47 5 888068715 +296 855 5 884197352 +44 95 4 878347569 +92 216 3 875653867 +135 39 3 879857931 +13 66 3 882141485 +262 386 3 879795512 +7 676 3 891354499 +116 942 3 876454090 +318 474 4 884495742 +141 826 2 884585437 +269 13 4 891446662 +222 1044 4 881060578 +82 455 4 876311319 +279 254 3 879572960 +42 685 4 881105972 +145 1245 5 875271397 +184 161 2 889909640 +49 625 3 888067031 +177 243 1 882142141 +313 99 4 891014029 +32 290 3 883717913 +308 848 4 887736925 +145 448 5 877343121 +130 542 3 875801778 +130 806 3 875217096 +165 288 2 879525673 +249 255 3 879571752 +49 581 3 888068143 +195 300 3 890588925 +118 475 5 875384793 +130 316 4 888211794 +104 293 3 888465166 +201 1229 3 884140307 +142 82 4 888640356 +119 718 5 874774956 +303 94 3 879485318 +99 50 5 885679998 +306 14 5 876503995 +92 709 2 875654590 +227 295 5 879035387 +3 337 1 889236983 +94 820 1 891723186 +59 1107 4 888206254 +30 539 3 885941454 +262 821 3 879794887 +6 508 3 883599530 +311 716 4 884365718 +268 364 3 875743979 +262 553 4 879795122 +214 275 3 891542968 +16 56 5 877719863 +262 293 2 879790906 +293 132 4 888905481 +62 132 5 879375022 +94 346 4 891725410 +13 59 4 882140425 +240 313 5 885775604 +102 161 2 888801876 +83 301 2 891181430 +291 7 5 874834481 +312 28 4 891698300 +31 484 5 881548030 +291 70 4 874868146 +56 172 5 892737191 +109 588 4 880578388 +110 1246 2 886989613 +59 429 4 888204597 +246 1218 3 884922801 +65 196 5 879216637 +24 367 2 875323241 +92 115 3 875654125 +308 741 4 887739863 +301 660 4 882076782 +214 1129 4 892668249 +158 241 4 880134445 +269 674 2 891451754 +308 493 3 887737293 +32 151 3 883717850 +224 191 4 888082468 +215 423 5 891435526 +32 1012 4 883717581 +154 289 2 879138345 +201 509 3 884111546 +85 298 4 880581629 +180 68 5 877127721 +184 36 3 889910195 +188 218 5 875074667 +305 11 1 886323237 +144 508 4 888104150 +73 94 1 888625754 +194 205 3 879524291 +177 203 4 880131026 +276 273 4 874786517 +198 7 4 884205317 +108 290 4 879880076 +189 197 5 893265291 +73 56 4 888626041 +172 462 3 875537717 +120 546 2 889490979 +101 471 3 877136535 +5 102 3 875721196 +26 235 2 891372429 +268 1249 2 875743793 +276 773 3 874792794 +13 150 5 882140588 +7 401 4 891354257 +128 482 4 879967432 +104 7 3 888465972 +293 39 3 888906804 +256 25 5 882150552 +90 821 3 891385843 +275 69 3 880314089 +22 510 5 878887765 +312 494 5 891698454 +207 192 3 877822350 +264 504 5 886122577 +137 687 4 881432756 +185 740 4 883524475 +307 687 1 879114143 +42 176 3 881107178 +145 472 3 875271128 +189 634 3 893265506 +262 121 3 879790536 +251 148 2 886272547 +259 772 4 874724882 +239 58 5 889179623 +312 921 5 891699295 +92 15 3 875640189 +81 742 2 876533764 +311 419 3 884364931 +102 448 3 888803002 +249 746 5 879641209 +95 527 4 888954440 +19 655 3 885412723 +79 100 5 891271652 +189 751 4 893265046 +253 510 5 891628416 +201 919 3 884141208 +1 17 3 875073198 +214 42 5 892668130 +7 81 5 891352626 +234 132 4 892333865 +59 148 3 888203175 +13 354 2 888779458 +6 469 5 883601155 +82 14 4 876311280 +109 627 5 880582133 +305 50 5 886321799 +195 154 3 888737525 +277 279 4 879543592 +223 8 2 891550684 +92 81 3 875654929 +201 69 2 884112901 +94 58 5 891720540 +217 144 4 889069782 +244 148 2 880605071 +313 200 3 891017736 +181 874 1 878961749 +116 1216 3 876452582 +303 433 4 879467985 +117 151 4 880126373 +221 327 4 875243968 +46 307 3 883611430 +91 28 4 891439243 +151 317 5 879524610 +64 176 4 889737567 +90 553 2 891384959 +116 271 4 886310197 +291 1139 3 874871671 +62 111 3 879372670 +196 251 3 881251274 +303 120 2 879544099 +49 547 5 888066187 +307 1022 4 879283008 +303 176 5 879467260 +286 154 4 877533381 +291 501 4 875087100 +235 87 4 889655162 +254 379 1 886474650 +276 157 5 874790773 +135 1208 3 879858003 +57 243 3 883696547 +276 1157 2 874795772 +7 576 5 892132943 +250 404 4 878092144 +318 768 2 884498022 +234 808 2 892335707 +289 282 3 876789180 +87 1079 2 879877240 +50 823 3 877052784 +25 258 5 885853199 +18 496 5 880130470 +193 790 3 889127381 +263 510 4 891298392 +209 906 2 883589546 +207 716 3 875508783 +314 535 4 877887002 +250 338 4 883263374 +262 568 3 879794113 +95 172 4 879196847 +94 470 4 891722006 +59 583 5 888205921 +277 282 4 879543697 +303 1286 4 879467413 +271 714 3 885848863 +269 235 3 891446756 +148 140 1 877019882 +223 977 2 891550295 +210 357 5 887736206 +185 199 4 883526268 +174 80 1 886515210 +235 480 4 889655044 +276 939 3 874790855 +99 354 2 888469332 +308 163 4 887737084 +303 738 2 879544276 +224 873 2 888082187 +298 252 4 884183833 +44 208 4 878347420 +315 13 4 879821158 +215 197 4 891435357 +269 9 4 891446246 +42 195 5 881107949 +293 79 3 888906045 +246 68 5 884922341 +101 405 4 877137015 +92 665 3 875906853 +249 88 4 879572668 +60 525 5 883325944 +13 331 3 881515457 +271 750 4 885844698 +92 731 4 875653769 +254 188 3 886473672 +311 203 5 884365201 +263 197 4 891299752 +201 660 3 884140927 +279 79 3 875296461 +138 496 4 879024043 +209 251 5 883417810 +217 7 4 889069741 +261 340 5 890454045 +176 258 4 886047026 +303 1037 3 879544340 +81 169 4 876534751 +62 114 4 879373568 +72 530 4 880037164 +276 364 3 877935377 +88 750 2 891037276 +49 7 4 888067307 +263 117 3 891299387 +9 298 5 886960055 +92 528 4 875657681 +249 708 4 879572403 +262 754 3 879961283 +196 655 5 881251793 +207 1436 3 878191574 +256 771 2 882164999 +276 226 4 874792520 +134 313 5 891732150 +311 849 3 884365781 +181 1383 1 878962086 +203 148 3 880434755 +247 736 5 893097024 +313 745 3 891016583 +311 83 5 884364812 +251 1014 5 886272486 +227 411 4 879035897 +59 550 5 888206605 +201 206 2 884112029 +58 100 5 884304553 +249 723 4 879641093 +286 1316 5 884583549 +11 725 3 891905568 +7 228 4 891350845 +92 846 3 886443471 +160 56 5 876770222 +103 127 4 880416331 +11 110 3 891905324 +87 2 4 879876074 +45 763 2 881013563 +293 605 3 888907702 +291 732 4 874868097 +254 575 3 886476165 +49 334 4 888065744 +222 1284 4 878184422 +161 162 2 891171413 +268 1 3 875742341 +59 215 5 888204430 +177 209 4 880130736 +151 1298 4 879528520 +299 235 1 877878184 +29 332 4 882820869 +30 435 5 885941156 +297 182 3 875239125 +315 185 4 879821267 +23 172 4 874785889 +262 47 2 879794599 +321 496 4 879438607 +191 754 3 891560366 +106 778 4 881453040 +7 151 4 891352749 +178 678 3 882823530 +84 12 5 883452874 +94 168 5 891721378 +264 33 3 886122644 +239 529 5 889179808 +90 657 5 891385190 +261 875 5 890454351 +190 302 5 891033606 +112 289 5 884992690 +144 106 3 888104684 +199 258 4 883782403 +224 20 1 888104487 +85 501 3 880838306 +301 202 5 882076211 +145 743 1 888398516 +294 127 5 877819265 +130 206 3 875801695 +103 121 3 880415766 +152 412 2 880149328 +267 840 4 878970926 +286 231 3 877532094 +200 24 2 884127370 +5 211 4 875636631 +160 117 4 876767822 +6 357 4 883602422 +158 72 3 880135118 +297 736 4 875239975 +250 244 4 878089786 +57 760 2 883697617 +58 268 5 884304288 +23 1006 3 874785809 +301 1228 4 882079423 +307 265 3 877122816 +276 1095 1 877935135 +223 411 1 891550005 +92 24 3 875640448 +137 300 5 881432524 +164 117 5 889401816 +276 38 3 874792574 +213 294 3 878870226 +286 34 5 877534701 +232 197 4 888549563 +150 221 4 878747017 +21 103 1 874951245 +130 731 3 876251922 +222 441 2 881059920 +1 90 4 878542300 +189 1005 4 893265971 +49 38 1 888068289 +311 5 3 884365853 +36 307 4 882157227 +128 228 3 879969329 +151 89 5 879524491 +248 475 5 884535446 +95 1229 2 879198800 +213 609 4 878955533 +203 181 5 880434278 +308 863 3 887736881 +269 47 4 891448386 +198 100 1 884207325 +297 307 4 878771124 +305 189 5 886323303 +266 676 3 892257897 +197 229 3 891410039 +74 272 5 888333194 +127 294 4 884363803 +194 4 4 879521397 +177 56 5 880130618 +45 473 3 881014417 +57 28 4 883698324 +239 187 5 889178798 +268 94 2 875743630 +238 252 3 883576644 +201 1010 3 884140579 +131 1281 4 883681561 +270 97 4 876955633 +159 127 5 880989744 +230 202 4 880485352 +92 219 4 875654888 +318 356 4 884496671 +123 531 3 879872671 +267 403 4 878971939 +232 630 3 888550060 +5 382 5 875636587 +16 155 3 877719157 +180 762 4 877126241 +178 282 3 882823978 +319 313 5 889816026 +180 737 3 877128327 +270 736 5 876955087 +269 658 2 891448497 +293 496 5 888905840 +269 793 4 891449880 +54 685 3 880935504 +21 98 5 874951657 +303 209 5 879467328 +13 766 4 882139686 +314 95 5 877888168 +151 387 5 879542353 +230 378 5 880485159 +201 403 3 884112427 +95 1206 4 888956137 +270 370 5 876956232 +256 716 5 882165135 +80 582 3 887401701 +303 435 5 879466491 +312 121 3 891698174 +151 1006 1 879524974 +62 258 5 879371909 +189 1115 4 893264270 +77 195 5 884733695 +99 742 5 885679114 +291 1028 3 875086561 +293 748 2 888904327 +181 1342 1 878962168 +206 900 1 888179980 +83 338 4 883868647 +262 179 4 879962570 +253 216 4 891628252 +223 596 3 891549713 +108 50 4 879879739 +94 347 5 891724950 +293 779 1 888908066 +101 281 2 877136842 +267 980 3 878970578 +201 1245 4 884141015 +314 1263 2 877890611 +271 111 4 885847956 +314 276 1 877886413 +18 387 4 880130155 +207 4 4 876198457 +313 96 5 891015144 +21 299 1 874950931 +215 144 4 891435107 +279 1376 4 886016680 +234 1015 2 892079617 +296 248 5 884196765 +270 83 4 876954995 +210 161 5 887736393 +201 79 4 884112245 +5 376 2 879198045 +184 181 4 889907426 +104 411 1 888465739 +275 449 3 876198328 +185 269 5 883524428 +276 550 4 874792574 +279 1182 3 875314370 +216 69 5 880235229 +21 457 1 874951054 +16 471 3 877724845 +147 292 5 885594040 +291 250 4 874805927 +28 95 3 881956917 +29 539 2 882821044 +291 471 4 874833746 +7 580 3 892132171 +181 16 1 878962996 +297 218 3 875409827 +308 559 4 887740367 +87 211 5 879876812 +97 89 5 884238939 +21 596 3 874951617 +59 710 3 888205463 +238 756 3 883576476 +178 209 4 882826944 +186 470 5 879023693 +299 615 4 878192555 +10 504 5 877892110 +110 682 4 886987354 +109 101 1 880578186 +157 250 1 886890296 +267 386 3 878973597 +181 327 3 878961780 +207 87 4 884386260 +47 995 3 879440429 +148 114 5 877016735 +94 9 5 885872684 +60 222 4 883327441 +244 409 4 880605294 +276 246 4 874786686 +90 906 2 891382240 +234 20 4 891227979 +106 107 4 883876961 +216 697 4 883981700 +294 1199 2 889242142 +323 257 2 878739393 +140 268 4 879013684 +220 303 4 881198014 +67 64 5 875379211 +170 299 3 886190476 +230 142 4 880485633 +299 641 4 889501514 +7 581 5 891353477 +275 501 3 875154718 +44 250 5 878346709 +291 214 4 874868146 +11 741 5 891902745 +59 286 3 888202532 +174 395 1 886515154 +194 234 3 879521167 +57 204 4 883698272 +314 417 4 877888855 +201 197 4 884113422 +184 155 3 889912656 +194 792 4 879524504 +159 1037 2 884360502 +186 983 3 879023152 +181 979 2 878963241 +68 7 3 876974096 +286 721 3 877532329 +316 306 4 880853072 +280 781 4 891701699 +13 14 4 884538727 +211 127 4 879461498 +187 215 3 879465805 +71 134 3 885016614 +306 242 5 876503793 +64 684 4 889740199 +303 277 3 879468547 +198 135 5 884208061 +232 91 5 888549515 +98 47 4 880498898 +53 24 3 879442538 +299 971 2 889502353 +254 1116 3 886473448 +7 106 4 891353892 +12 300 4 879958639 +239 10 5 889180338 +238 111 4 883576603 +130 267 5 875801239 +90 662 5 891385842 +63 20 3 875748004 +40 268 4 889041430 +181 221 1 878962465 +298 152 3 884183336 +104 327 2 888442202 +42 185 4 881107449 +181 995 1 878961585 +258 288 1 885700919 +291 578 4 874835242 +148 70 5 877021271 +305 187 4 886323189 +184 71 4 889911552 +94 556 3 891722882 +158 1011 4 880132579 +7 528 5 891352659 +174 237 4 886434047 +158 190 5 880134332 +201 853 4 884114635 +276 43 1 874791383 +278 311 4 891295130 +229 347 1 891632073 +101 252 3 877136628 +63 1028 3 875748198 +275 520 4 880314218 +275 173 3 875154795 +62 1073 4 879374752 +230 234 4 880484756 +109 975 3 880572351 +73 357 5 888626007 +83 118 3 880307071 +4 361 5 892002353 +130 245 1 874953526 +64 778 5 889739806 +15 473 1 879456204 +244 89 5 880602210 +7 643 4 891350932 +219 347 1 889386819 +295 704 5 879519266 +293 288 3 888904327 +125 997 2 892838976 +279 487 3 890282182 +76 582 3 882607444 +272 48 4 879455143 +269 285 5 891446165 +244 380 4 880608133 +271 220 3 885848179 +321 287 3 879438857 +306 864 3 876504286 +224 332 3 888103429 +57 1047 4 883697679 +145 591 4 879161848 +85 277 2 879452938 +116 7 2 876453915 +52 95 4 882922927 +209 688 1 883589626 +145 260 4 875269871 +208 202 4 883108476 +160 187 5 876770168 +141 274 5 884585220 +260 990 5 890618729 +177 299 4 880130500 +82 231 2 878769815 +223 969 5 891550649 +107 271 2 891264432 +26 25 3 891373727 +297 1016 3 874955131 +244 167 3 880607853 +15 678 1 879455311 +286 709 4 877532748 +82 411 3 878768902 +167 364 3 892738212 +99 181 5 885680138 +56 196 2 892678628 +293 346 3 888904004 +7 650 3 891350965 +90 425 4 891384996 +228 475 3 889388521 +82 919 3 876311280 +43 151 4 875975613 +10 289 4 877886223 +197 515 5 891409935 +57 756 3 883697730 +246 82 2 884921986 +62 24 4 879372633 +323 223 4 878739699 +13 320 1 882397010 +268 63 1 875743792 +18 863 3 880130680 +271 410 2 885848238 +307 509 3 877121019 +54 298 4 892681300 +295 47 5 879518166 +194 237 3 879538959 +194 82 2 879524216 +311 385 5 884365284 +287 257 4 875334224 +290 82 4 880473918 +262 96 4 879793022 +279 491 5 875296435 +290 393 3 880475169 +145 393 5 875273174 +305 61 4 886323378 +269 156 5 891449364 +276 180 5 874787353 +323 298 4 878739275 +296 258 5 884196469 +18 965 4 880132012 +72 528 4 880036664 +224 949 3 888104057 +125 239 5 892838375 +244 652 5 880606533 +135 431 2 879857868 +138 211 4 879024183 +59 604 3 888204927 +221 1059 4 875245077 +13 451 1 882141872 +42 69 4 881107375 +10 340 4 880371312 +219 882 3 889386741 +60 604 4 883327997 +125 152 1 879454892 +63 50 4 875747292 +255 448 3 883216544 +311 172 5 884364763 +7 582 5 892135347 +7 127 5 891351728 +189 203 3 893265921 +59 470 3 888205714 +313 148 2 891031979 +234 161 3 892335824 +6 143 2 883601053 +305 960 1 886324362 +226 147 3 883889479 +204 340 5 892389195 +13 493 5 882140206 +186 281 4 879023390 +6 275 4 883599102 +269 82 2 891450780 +69 300 3 882027204 +259 959 4 888720593 +5 62 4 875637575 +181 1164 3 878962464 +135 449 3 879857843 +222 1207 2 881060659 +5 231 2 875635947 +286 258 4 877530390 +104 249 3 888465675 +303 65 4 879467436 +295 73 4 879519009 +201 686 2 884112352 +13 289 2 882140759 +184 100 5 889907652 +262 786 3 879795319 +234 614 3 892334609 +1 64 5 875072404 +325 485 3 891478599 +312 641 5 891698300 +207 810 2 877125506 +262 509 3 879792818 +239 478 5 889178986 +142 181 5 888640317 +296 242 4 884196057 +291 571 2 875086608 +13 488 3 890704999 +294 676 3 877821514 +69 174 5 882145548 +195 265 4 888737346 +121 509 5 891388145 +279 509 3 875296552 +49 17 2 888068651 +7 196 5 891351432 +280 472 2 891702086 +221 780 3 875246552 +175 96 3 877108051 +180 431 4 877442098 +311 1222 3 884366010 +44 120 4 878346977 +318 257 5 884471030 +59 588 2 888204389 +320 117 4 884748641 +256 939 5 882164893 +310 24 4 879436242 +236 265 2 890116191 +83 139 3 880308959 +280 128 3 891701188 +43 52 4 883955224 +18 494 3 880131497 +303 87 3 879466421 +91 427 4 891439057 +318 631 4 884496855 +275 258 3 875154310 +97 482 5 884238693 +174 160 5 886514377 +268 470 3 875310745 +188 769 2 875074720 +94 89 3 885870284 +7 44 5 891351728 +158 85 4 880135118 +256 765 4 882165328 +221 69 4 875245641 +196 67 5 881252017 +232 175 5 888549815 +159 685 4 880557347 +99 182 4 886518810 +175 71 4 877107942 +254 624 2 886473254 +326 22 4 879874989 +303 291 3 879484804 +270 53 4 876956106 +181 1001 1 878963038 +254 418 3 886473078 +56 235 1 892911348 +11 190 3 891904174 +162 181 4 877635798 +117 829 3 881010219 +268 52 3 875309319 +320 177 5 884749360 +6 294 2 883599938 +210 380 4 887736482 +151 969 5 879542510 +42 684 4 881108093 +62 365 2 879376096 +207 121 3 875504876 +59 70 3 888204758 +26 455 3 891371506 +234 705 5 892318002 +270 466 5 876955899 +97 484 3 884238966 +11 660 3 891904573 +5 377 1 878844615 +56 797 4 892910860 +305 923 5 886323237 +173 286 5 877556626 +67 1095 4 875379287 +213 12 5 878955409 +268 684 3 875744321 +36 883 5 882157581 +100 321 1 891375112 +269 729 2 891448569 +131 100 5 883681418 +308 298 5 887741383 +14 709 5 879119693 +284 305 4 885328906 +191 752 3 891560481 +222 29 3 878184571 +201 421 2 884111708 +207 864 3 877750738 +303 1315 3 879544791 +52 1086 4 882922562 +305 529 5 886324097 +223 318 4 891550711 +22 79 4 878887765 +137 546 5 881433116 +292 328 3 877560833 +249 11 5 879640868 +269 616 4 891450453 +197 294 4 891409290 +42 603 4 881107502 +26 1016 3 891377609 +7 560 3 892132798 +193 435 4 889124439 +7 559 5 891354882 +299 186 3 889503233 +115 127 5 881171760 +59 433 5 888205982 +217 22 5 889069741 +279 709 4 875310195 +257 345 4 887066556 +279 789 4 875306580 +279 919 3 892864663 +63 222 3 875747635 +178 73 5 882827985 +90 1194 4 891383718 +111 313 4 891679901 +13 848 5 882140001 +94 625 4 891723086 +59 496 4 888205144 +179 905 4 892151331 +303 302 4 879465986 +299 516 4 889503159 +10 505 4 877886846 +62 464 4 879375196 +56 69 4 892678893 +92 289 3 875641367 +308 378 3 887740700 +13 144 4 882397146 +181 1348 1 878962200 +15 932 1 879456465 +244 155 3 880608599 +234 233 2 892335990 +15 127 2 879455505 +110 1179 2 886989501 +181 302 2 878961511 +236 313 4 890115777 +310 536 4 879436137 +37 55 3 880915942 +234 617 3 892078741 +303 369 1 879544130 +75 409 3 884050829 +197 518 1 891409982 +314 692 5 877888445 +187 523 3 879465125 +151 402 3 879543423 +268 264 3 876513607 +224 215 4 888082612 +292 195 5 881103568 +16 191 5 877719454 +99 597 4 885679210 +234 482 4 892334803 +303 323 1 879466214 +233 99 3 877663383 +66 249 4 883602158 +280 204 3 891700643 +301 174 5 882075827 +92 1142 4 886442422 +99 410 5 885679262 +221 1250 2 875247855 +97 98 4 884238728 +313 673 4 891016622 +58 109 4 884304396 +270 781 5 876955750 +13 476 2 882141997 +189 1 5 893264174 +67 147 3 875379357 +234 50 4 892079237 +40 880 3 889041643 +294 222 4 877819353 +293 629 3 888907753 +7 241 4 891354053 +87 775 2 879876848 +314 1289 2 877887388 +131 750 5 883681723 +296 48 5 884197091 +81 3 4 876592546 +151 186 4 879524222 +57 926 3 883697831 +234 134 5 892333573 +53 174 5 879442561 +280 544 4 891701302 +123 135 5 879872868 +109 797 3 880582856 +96 479 4 884403758 +236 286 5 890115777 +201 313 5 884110598 +174 471 5 886433804 +130 931 2 880396881 +151 15 4 879524879 +90 529 5 891385132 +59 12 5 888204260 +3 343 3 889237122 +310 845 5 879436534 +224 658 1 888103840 +4 357 4 892003525 +25 615 5 885852611 +11 517 2 891905222 +298 91 2 884182932 +59 170 4 888204430 +147 305 4 885593997 +314 1518 4 877891426 +256 413 4 882163956 +234 618 3 892078343 +246 8 3 884921245 +255 678 2 883215795 +92 106 3 875640609 +272 127 5 879454725 +104 269 5 888441878 +276 406 2 874786831 +276 34 2 877934264 +97 50 5 884239471 +150 121 2 878747322 +14 530 5 890881433 +23 170 4 874785348 +13 97 4 882399357 +165 325 4 879525672 +244 7 4 880602558 +95 416 4 888954961 +28 98 5 881961531 +259 269 3 877923906 +82 596 3 876311195 +28 173 3 881956220 +94 455 3 891721777 +276 384 3 874792189 +298 8 5 884182748 +151 210 4 879524419 +77 238 5 884733965 +200 241 4 884129782 +201 405 4 884112427 +193 332 3 889123257 +38 139 2 892432786 +291 226 5 874834895 +113 326 5 875935609 +313 191 5 891013829 +207 531 4 877878342 +214 151 5 892668153 +44 123 4 878346532 +18 154 4 880131358 +297 628 4 874954497 +279 116 1 888799670 +7 28 5 891352341 +115 92 4 881172049 +308 581 4 887740500 +62 138 1 879376709 +81 824 3 876534437 +293 1161 2 888905062 +13 781 3 882399528 +13 338 1 882140740 +41 28 4 890687353 +280 554 1 891701998 +287 249 5 875334430 +117 50 5 880126022 +178 106 2 882824983 +201 117 2 884112487 +256 1057 2 882163805 +221 204 4 875246008 +318 659 4 884495868 +262 11 4 879793597 +154 488 4 879138831 +186 385 4 879023894 +303 1095 2 879543988 +302 323 2 879436875 +198 179 4 884209264 +99 168 5 885680374 +229 313 2 891631948 +126 262 4 887854726 +72 226 4 880037307 +109 31 4 880577844 +34 242 5 888601628 +173 323 5 877556926 +156 276 3 888185854 +122 215 4 879270676 +276 583 3 874791444 +224 528 3 888082658 +208 88 5 883108324 +295 483 5 879517348 +279 65 1 875306767 +43 64 5 875981247 +89 197 5 879459859 +308 435 4 887737484 +315 305 5 881017419 +42 1041 4 881109060 +164 299 4 889401383 +7 153 5 891352220 +93 412 2 888706037 +125 1180 3 892838865 +70 50 4 884064188 +177 960 3 880131161 +75 476 1 884050393 +62 401 3 879376727 +130 366 5 876251972 +312 228 3 891699040 +158 414 4 880135118 +279 42 4 875308843 +210 58 4 887730177 +43 66 4 875981506 +151 490 5 879528418 +293 665 2 888908117 +293 36 1 888908041 +102 405 2 888801812 +276 291 3 874791169 +21 839 1 874951797 +194 663 4 879524292 +38 432 1 892430282 +92 453 1 875906882 +311 180 4 884364764 +198 214 4 884208273 +82 661 4 878769703 +267 238 4 878971629 +291 466 5 874834768 +151 692 3 879524669 +60 47 4 883326399 +92 79 4 875653198 +97 115 5 884239525 +314 1218 4 877887525 +319 338 2 879977242 +5 407 3 875635431 +15 685 4 879456288 +99 204 4 885679952 +123 192 5 879873119 +47 340 5 879439078 +222 135 5 878181563 +224 149 1 888103999 +58 284 4 884304519 +320 294 4 884748418 +268 135 4 875309583 +83 640 2 880308550 +106 692 3 881453290 +287 11 5 875335124 +305 186 4 886323902 +181 1320 1 878962279 +49 49 2 888068990 +6 221 4 883599431 +85 647 4 879453844 +128 736 5 879968352 +279 827 1 888426577 +271 630 2 885848943 +303 748 2 879466214 +249 124 5 879572646 +280 693 3 891701027 +207 827 3 876018501 +60 616 3 883327087 +21 184 4 874951797 +286 628 4 875806800 +145 183 5 875272009 +311 28 5 884365140 +25 228 4 885852920 +76 92 4 882606108 +246 406 3 884924749 +201 292 3 884110598 +235 647 4 889655045 +286 133 4 877531730 +48 174 5 879434723 +144 685 3 888105473 +5 24 4 879198229 +85 272 4 893110061 +286 7 4 875807003 +64 93 2 889739025 +151 429 5 879528673 +191 301 4 891561336 +287 56 5 875334759 +96 153 4 884403624 +125 615 3 879454793 +150 100 2 878746636 +93 15 5 888705388 +84 528 5 883453617 +318 50 2 884495696 +13 167 4 882141659 +213 471 3 878870816 +178 234 4 882826783 +128 418 4 879968164 +195 496 4 888737525 +13 570 5 882397581 +276 843 4 874792989 +54 268 5 883963510 +305 347 3 886308111 +14 474 4 890881557 +18 58 4 880130613 +263 921 3 891298727 +289 849 4 876789943 +194 321 3 879520306 +11 746 4 891905032 +298 842 4 884127249 +56 215 5 892678547 +13 844 1 882397010 +38 465 5 892432476 +308 165 3 887736696 +214 652 4 891543972 +102 300 3 875886434 +7 420 5 891353219 +61 328 5 891206371 +307 100 3 879206424 +21 590 1 874951898 +311 68 1 884365824 +95 1230 1 888956901 +303 182 5 879467105 +145 13 5 875270507 +50 253 5 877052550 +194 530 4 879521167 +145 1 3 882181396 +222 157 4 878181976 +7 188 5 891352778 +109 100 4 880563080 +90 631 5 891384570 +7 78 3 891354165 +181 1324 1 878962464 +201 332 2 884110887 +13 685 5 882397582 +82 73 4 878769888 +267 423 3 878972842 +194 1206 1 879554453 +269 106 1 891451947 +99 895 3 885678304 +235 1149 4 889655595 +200 665 4 884130621 +312 188 3 891698793 +145 50 5 885557660 +234 71 3 892334338 +213 48 5 878955848 +244 216 4 880605869 +316 588 1 880853992 +85 175 4 879828912 +124 50 3 890287508 +137 237 4 881432965 +13 567 1 882396955 +151 162 5 879528779 +187 116 5 879464978 +193 554 3 889126088 +49 741 4 888068079 +291 54 4 874834963 +316 292 4 880853072 +271 514 4 885848408 +194 404 3 879522445 +268 721 3 875743587 +277 1197 4 879543768 +301 606 3 882076890 +89 1048 3 879460027 +253 50 4 891628518 +102 732 3 888804089 +311 662 4 884365018 +201 943 3 884114275 +246 816 4 884925218 +172 488 3 875537965 +280 38 3 891701832 +43 1057 2 884029777 +311 661 3 884365075 +59 287 5 888203175 +268 83 4 875309344 +315 651 3 879799457 +145 299 4 875269822 +248 174 3 884534992 +327 191 4 887820828 +268 672 2 875744501 +297 286 5 874953892 +295 151 4 879517635 +13 877 2 882140792 +70 584 3 884150236 +145 460 1 875271312 +275 176 4 880314320 +48 259 4 879434270 +235 419 5 889655858 +83 413 1 891182379 +147 258 4 885594040 +92 521 4 875813412 +246 728 1 884923829 +43 284 5 883955441 +207 203 3 877124625 +234 485 3 892079434 +201 587 4 884140975 +286 689 5 884583549 +69 12 5 882145567 +237 494 4 879376553 +85 133 4 879453876 +276 85 3 874791871 +311 366 5 884366010 +320 399 3 884749411 +114 175 5 881259955 +42 121 4 881110578 +7 680 4 891350703 +154 302 4 879138235 +106 660 4 881451631 +313 71 4 891030144 +90 526 5 891383866 +94 186 4 891722278 +224 43 3 888104456 +44 230 2 883613335 +229 315 1 891632945 +151 480 5 879524151 +311 505 4 884365451 +320 202 4 884750946 +113 329 3 875935312 +255 859 3 883216748 +193 827 2 890859916 +276 789 3 874791623 +259 750 4 888630424 +204 172 3 892513819 +78 412 4 879634223 +85 98 4 879453716 +279 393 1 875314093 +222 323 3 877562839 +288 127 5 886374451 +42 606 3 881107538 +25 729 4 885852697 +119 213 5 874781257 +116 185 3 876453519 +123 13 3 879873988 +315 657 4 879821299 +142 243 1 888640199 +13 480 3 881515193 +201 326 2 884111095 +43 631 2 883955675 +195 387 4 891762491 +95 174 5 879196231 +130 332 4 876250582 +233 482 4 877661437 +44 530 5 878348725 +292 86 4 881105778 +176 294 2 886047220 +157 405 3 886890342 +207 787 3 876079054 +239 204 3 889180888 +251 144 5 886271920 +269 923 4 891447169 +178 148 4 882824325 +138 121 4 879023558 +30 82 4 875060217 +302 245 2 879436911 +34 690 4 888602513 +292 276 5 881103915 +271 11 4 885848408 +69 175 3 882145586 +42 456 3 881106113 +311 568 5 884365325 +183 241 4 892323453 +269 411 1 891451013 +288 196 5 886373474 +268 42 4 875310384 +308 634 4 887737334 +308 166 3 887737837 +57 831 1 883697785 +207 410 3 877838946 +271 211 5 885849164 +16 144 5 877721142 +90 603 5 891385132 +209 408 4 883417517 +299 238 4 877880852 +279 1228 4 890779991 +128 140 4 879968308 +307 173 5 879283786 +167 392 1 892738307 +22 791 1 878887227 +291 159 4 875087488 +194 705 2 879524007 +10 489 4 877892210 +95 128 3 879196354 +10 657 4 877892110 +59 855 4 888204502 +124 11 5 890287645 +7 133 5 891353192 +256 692 5 882165066 +85 629 3 879454685 +271 1266 2 885848943 +276 1416 3 874792634 +155 988 2 879371261 +318 476 4 884495164 +307 258 5 879283786 +28 7 5 881961531 +236 729 5 890118372 +38 672 3 892434800 +7 93 5 891351042 +255 217 2 883216600 +184 729 3 889909840 +154 175 5 879138784 +311 403 4 884365889 +116 301 3 892683732 +94 229 3 891722979 +221 508 4 875244160 +95 636 1 879196566 +44 56 2 878348601 +305 203 4 886323839 +207 508 4 877879259 +130 161 4 875802058 +98 163 3 880499053 +328 9 4 885045993 +178 218 3 882827776 +293 293 4 888904795 +162 742 4 877635758 +128 79 4 879967692 +307 1411 4 877124058 +269 514 4 891449123 +195 186 3 888737240 +327 533 4 887822530 +189 91 3 893265684 +206 1394 1 888179981 +95 143 4 880571951 +31 682 2 881547834 +94 157 5 891725332 +73 588 2 888625754 +256 819 4 882151052 +291 366 3 874868255 +222 153 4 878182416 +207 98 4 875509887 +222 298 4 877563253 +286 151 5 875806800 +116 262 3 876751342 +7 174 5 891350757 +148 495 4 877016735 +311 495 4 884366066 +178 255 4 882824001 +181 597 3 878963276 +123 847 4 879873193 +291 77 4 874834799 +237 528 5 879376606 +140 301 3 879013747 +290 222 4 880731778 +177 79 4 880130758 +65 202 4 879217852 +311 181 4 884364724 +125 796 3 892838591 +77 168 4 884752721 +58 960 4 884305004 +117 405 5 880126174 +248 127 5 884535084 +5 423 4 875636793 +254 286 1 887346861 +289 7 4 876789628 +241 294 3 887250085 +213 690 3 878870275 +99 508 4 885678840 +275 523 4 880314031 +168 284 2 884288112 +28 380 4 881961394 +144 31 3 888105823 +198 651 4 884207424 +181 1093 1 878962391 +221 268 5 876502910 +267 739 4 878973276 +129 303 3 883244011 +301 496 5 882075743 +94 33 3 891721919 +318 64 4 884495590 +298 477 4 884126202 +290 476 3 880475837 +16 942 4 877719863 +130 815 3 874953866 +181 304 1 878961586 +178 125 4 882824431 +42 506 3 881108760 +320 284 4 884748818 +138 151 4 879023389 +197 849 3 891410124 +215 157 4 891435573 +94 1119 4 891723261 +293 724 3 888907061 +79 246 5 891271545 +279 1492 4 888430806 +189 30 4 893266205 +233 806 4 880610396 +198 24 2 884205385 +222 172 5 878183079 +276 301 4 877584219 +70 417 3 884066823 +305 15 1 886322796 +201 370 1 884114506 +57 409 4 883697655 +13 314 1 884538485 +206 245 1 888179772 +125 173 5 879454100 +128 143 5 879967300 +92 763 3 886443192 +65 56 3 879217816 +236 506 5 890118153 +262 77 2 879794829 +90 958 4 891383561 +144 91 2 888106106 +63 841 1 875747917 +323 117 3 878739355 +197 176 5 891409798 +277 273 5 879544145 +176 288 3 886046979 +38 838 2 892433680 +99 546 4 885679353 +326 186 4 879877143 +59 663 4 888204928 +59 702 5 888205463 +26 15 4 891386369 +7 182 4 891350965 +112 354 3 891304031 +109 154 2 880578121 +121 405 2 891390579 +293 167 3 888907702 +297 198 3 875238923 +276 11 5 874787497 +222 210 4 878184338 +287 92 4 875334896 +62 443 3 879375080 +106 703 4 881450039 +276 1218 4 874792040 +230 210 5 880484975 +246 184 4 884921948 +22 511 4 878887983 +165 258 5 879525672 +161 174 2 891170800 +109 89 4 880573263 +305 87 1 886323153 +195 181 5 875771440 +7 193 5 892135346 +326 480 4 879875691 +77 125 3 884733014 +85 58 4 879829689 +186 588 4 879024535 +256 280 5 882151167 +84 529 5 883453108 +74 288 3 888333280 +102 432 3 883748418 +194 770 4 879525342 +267 114 5 878971514 +1 92 3 876892425 +16 504 5 877718168 +211 300 2 879461395 +90 31 4 891384673 +234 657 4 892079840 +60 1020 4 883327018 +92 947 4 875654929 +158 1 4 880132443 +87 1000 3 879877173 +276 104 1 874836682 +1 228 5 878543541 +42 143 4 881108229 +43 26 5 883954901 +299 1322 3 877878001 +130 200 5 875217392 +307 71 5 879283169 +147 339 5 885594204 +311 229 5 884365890 +296 286 5 884196209 +217 82 5 889069842 +80 886 4 883605238 +314 9 4 877886375 +64 527 4 879365590 +249 79 5 879572777 +21 298 5 874951382 +68 118 2 876974248 +215 151 5 891435761 +305 238 3 886323617 +308 417 3 887740254 +102 118 3 888801465 +189 120 1 893264954 +112 750 4 884992444 +130 622 3 875802173 +188 474 4 875072674 +56 585 3 892911366 +56 230 5 892676339 +20 11 2 879669401 +20 176 2 879669152 +222 25 3 877563437 +49 148 1 888068195 +307 431 4 877123333 +144 313 5 888103407 +23 404 4 874787860 +144 961 3 888106106 +160 3 3 876770124 +22 227 4 878888067 +79 508 3 891271676 +18 647 4 880129595 +151 481 3 879524669 +312 480 5 891698224 +256 29 4 882164644 +158 568 4 880134532 +311 141 4 884366187 +303 179 5 879466491 +25 478 5 885852271 +195 407 2 877835302 +152 147 3 880149045 +145 1001 4 875271607 +151 260 1 879523998 +194 576 2 879528568 +271 624 2 885849558 +162 121 4 877636000 +313 65 2 891016962 +6 532 3 883600066 +22 433 3 878886479 +13 915 5 892015023 +327 461 3 887746665 +200 402 4 884129029 +271 22 5 885848518 +269 478 4 891448980 +315 431 2 879821300 +178 121 5 882824291 +210 502 3 891035965 +76 135 5 875028792 +318 648 5 884495534 +279 1291 4 875297708 +75 121 4 884050450 +90 618 5 891385335 +44 174 5 878347662 +293 729 2 888907145 +217 195 5 889069709 +224 708 2 888104153 +246 121 4 884922627 +284 906 3 885328836 +301 172 5 882076403 +244 31 4 880603484 +95 395 3 888956928 +303 330 3 879552065 +198 640 3 884208651 +256 802 3 882164955 +46 690 5 883611274 +305 209 5 886322966 +83 364 1 886534501 +224 1208 1 888104554 +295 67 4 879519042 +116 248 3 876452492 +201 37 2 884114635 +155 748 2 879371261 +318 508 4 884494976 +274 288 4 878944379 +263 333 2 891296842 +145 172 5 882181632 +188 191 3 875073128 +119 313 5 886176135 +270 306 5 876953744 +262 91 3 879792713 +131 845 4 883681351 +250 260 4 878089144 +33 307 3 891964148 +37 183 4 880930042 +6 211 5 883601155 +85 517 5 879455238 +308 164 4 887738664 +42 746 3 881108279 +102 1025 2 883278200 +311 70 4 884364999 +181 1322 1 878962086 +17 508 3 885272779 +174 396 1 886515104 +125 150 1 879454892 +181 1364 1 878962464 +235 511 5 889655162 +1 266 1 885345728 +295 727 5 879517682 +56 194 5 892676908 +83 1035 4 880308959 +100 355 4 891375313 +106 828 2 883876872 +270 327 5 876953900 +181 680 1 878961709 +115 228 4 881171488 +286 771 2 877535119 +234 151 3 892334481 +16 92 4 877721905 +130 410 5 875802105 +271 121 2 885848132 +320 1157 4 884751336 +189 462 5 893265741 +313 31 4 891015486 +49 238 4 888068762 +60 79 4 883326620 +13 226 4 882397651 +1 121 4 875071823 +150 246 5 878746719 +13 548 3 882398743 +179 751 1 892151565 +222 426 1 878181351 +7 614 5 891352489 +157 1132 3 886891132 +193 368 1 889127860 +130 993 5 874953665 +166 322 5 886397723 +62 4 4 879374640 +253 183 5 891628341 +261 117 4 890455974 +269 1020 4 891449571 +269 136 4 891449075 +322 197 5 887313983 +7 647 5 891352489 +112 748 3 884992651 +170 245 5 884103758 +271 823 3 885848237 +294 288 5 877818729 +151 522 5 879524443 +311 213 4 884365075 +26 257 3 891371596 +291 627 4 875086991 +26 7 3 891350826 +221 468 3 875246824 +318 204 5 884496218 +87 996 3 879876848 +279 88 1 882146554 +279 562 3 890451433 +207 14 4 875504876 +279 163 5 875313311 +230 238 1 880484778 +94 235 4 891722980 +293 931 1 888905252 +121 86 5 891388286 +198 180 3 884207298 +292 653 4 881105442 +92 781 3 875907649 +291 572 3 874834944 +48 690 4 879434211 +102 264 2 883277645 +1 114 5 875072173 +180 79 3 877442037 +255 879 3 883215660 +250 2 4 878090414 +119 716 5 874782190 +101 282 3 877135883 +244 220 2 880605264 +67 1 3 875379445 +291 99 4 875086887 +59 238 5 888204553 +311 73 4 884366187 +177 919 4 880130736 +1 132 4 878542889 +144 778 4 888106044 +1 74 1 889751736 +268 68 4 875744173 +232 705 5 888549838 +49 758 1 888067596 +102 313 3 887048184 +279 1093 4 875298330 +279 1493 1 888465068 +22 173 5 878886368 +122 715 5 879270741 +145 315 5 883840797 +119 1101 5 874781779 +261 259 4 890454843 +1 134 4 875073067 +94 45 5 886008764 +330 11 4 876546561 +291 741 5 874834481 +6 180 4 883601311 +188 88 4 875075300 +299 921 3 889502087 +253 203 4 891628651 +215 194 4 891436150 +291 273 3 874833705 +303 867 3 879484373 +6 477 1 883599509 +307 1110 4 877122208 +130 876 4 874953291 +95 483 3 879198697 +74 326 4 888333329 +13 305 4 881514811 +4 260 4 892004275 +261 294 4 890454217 +159 259 4 893255969 +137 55 5 881433689 +174 699 5 886514220 +286 158 3 877533472 +87 1183 3 879875995 +270 230 3 876955868 +91 172 4 891439208 +296 272 5 884198772 +125 483 4 879454628 +62 1118 3 879375537 +328 200 4 885046420 +296 510 5 884197264 +234 500 3 892078890 +237 100 5 879376381 +150 13 4 878746889 +301 610 3 882077176 +151 25 4 879528496 +271 8 4 885848770 +87 303 3 879875471 +293 1220 2 888907552 +113 294 4 875935277 +311 518 3 884365451 +181 123 2 878963276 +328 905 3 888641999 +110 301 2 886987505 +288 742 3 886893063 +111 887 3 891679692 +194 196 3 879524007 +239 605 4 889180446 +109 5 3 880580637 +291 824 4 874833962 +16 168 4 877721142 +14 357 2 890881294 +22 687 1 878887476 +207 746 4 877878342 +312 1299 4 891698832 +268 250 4 875742530 +68 411 1 876974596 +195 887 4 886782489 +271 50 5 885848640 +74 9 4 888333458 +308 802 3 887738717 +144 66 4 888106078 +195 14 4 890985390 +18 199 3 880129769 +13 918 3 892524090 +174 41 1 886515063 +109 159 4 880578121 +227 293 5 879035387 +233 357 5 877661553 +264 475 5 886122706 +205 678 1 888284618 +275 1066 3 880313679 +56 68 3 892910913 +78 1160 5 879634134 +130 682 4 881076059 +127 380 5 884364950 +130 568 5 876251693 +58 1100 2 884304979 +49 473 3 888067164 +13 273 3 882397502 +203 336 3 880433474 +330 136 5 876546378 +109 195 5 880578038 +186 406 1 879023272 +293 148 1 888907015 +280 1028 5 891702276 +143 331 5 888407622 +183 96 3 891463617 +60 699 4 883327539 +178 131 4 882827947 +297 216 4 875409423 +59 1117 4 888203313 +276 429 5 874790972 +179 258 5 892151270 +87 386 2 879877006 +198 1169 4 884208834 +119 54 4 886176814 +297 20 4 874954763 +1 98 4 875072404 +268 205 5 875309859 +279 174 4 875306636 +64 187 5 889737395 +119 1262 3 890627252 +75 1017 5 884050502 +27 742 3 891543129 +307 21 4 876433101 +37 685 3 880915528 +82 15 3 876311365 +244 238 5 880606118 +271 274 3 885848014 +174 1014 3 890664424 +210 135 5 887736352 +262 258 4 879961282 +320 68 5 884749327 +85 660 4 879829618 +311 348 4 884364108 +82 208 3 878769815 +1 186 4 875073128 +145 368 3 888398492 +276 401 3 874792094 +23 213 3 874785675 +64 515 5 889737478 +63 237 3 875747342 +293 227 2 888906990 +322 32 5 887314417 +74 285 3 888333428 +297 202 3 875238638 +82 216 4 878769949 +280 145 3 891702198 +200 227 5 884129006 +290 21 3 880475695 +43 820 2 884029742 +95 573 1 888954808 +181 20 1 878962919 +178 926 4 882824671 +81 476 2 876534124 +194 410 3 879541042 +325 402 2 891479706 +276 347 4 885159630 +207 133 4 875812281 +87 135 5 879875649 +331 7 4 877196633 +315 8 3 879820961 +106 435 3 881452355 +286 83 5 877531975 +87 157 3 879877799 +87 163 4 879877083 +286 655 3 889651746 +232 8 2 888549757 +254 380 4 886474456 +96 91 5 884403250 +232 1 4 880062302 +315 98 4 879821193 +43 553 4 875981159 +305 679 3 886324792 +61 690 2 891206407 +44 665 1 883613372 +92 1016 2 875640582 +168 255 1 884287560 +276 270 4 879131395 +328 568 3 885047896 +222 1053 3 881060735 +93 222 4 888705295 +330 235 5 876544690 +82 504 4 878769917 +2 314 1 888980085 +89 732 5 879459909 +38 216 5 892430486 +308 85 4 887741245 +24 153 4 875323368 +235 1464 4 889655266 +1 221 5 887431921 +222 715 2 878183924 +222 69 5 878182338 +43 114 5 883954950 +331 486 3 877196308 +223 322 4 891548920 +201 452 1 884114770 +158 271 4 880132232 +32 249 4 883717645 +314 90 2 877888758 +313 245 3 891013144 +102 576 2 888802722 +211 526 4 879459952 +268 425 4 875310549 +332 770 3 888098170 +38 508 2 892429399 +280 975 4 891702252 +10 463 4 877889186 +92 386 3 875907727 +268 374 2 875744895 +69 258 4 882027204 +210 96 4 887736616 +213 144 5 878956047 +254 50 5 886471151 +58 272 5 884647314 +327 210 3 887744065 +291 385 4 874835141 +291 324 1 874805453 +246 596 3 884921511 +11 714 4 891904214 +329 100 4 891655812 +86 258 5 879570366 +7 621 5 892132773 +246 80 2 884923329 +308 481 4 887737997 +54 820 3 880937992 +177 651 3 880130862 +10 655 5 877891904 +83 631 2 887664566 +145 993 3 875270616 +255 185 4 883216449 +18 607 3 880131752 +226 180 4 883889322 +234 616 2 892334976 +274 25 5 878945541 +293 156 4 888905948 +83 476 3 880307359 +295 173 5 879518257 +286 1039 5 877531730 +42 48 5 881107821 +208 204 3 883108360 +232 275 2 885939945 +267 94 3 878972558 +271 242 4 885844495 +125 97 3 879454385 +323 333 4 878738865 +305 56 1 886323068 +145 250 5 882182944 +38 1030 5 892434475 +202 515 1 879726778 +181 975 2 878963343 +332 566 4 888360342 +108 13 3 879879834 +194 520 5 879545114 +144 62 2 888105902 +194 1183 2 879554453 +148 172 5 877016513 +144 1147 4 888105587 +269 961 5 891457067 +290 71 5 880473667 +249 597 2 879640436 +65 676 5 879217689 +301 395 1 882079384 +267 546 3 878970877 +207 754 4 879577345 +201 777 1 884112673 +314 1095 3 877887356 +210 631 5 887736796 +22 456 1 878887413 +59 931 2 888203610 +92 715 4 875656288 +50 475 5 877052167 +188 159 3 875074589 +303 700 3 879485718 +197 288 3 891409387 +244 676 4 880604858 +44 88 2 878348885 +164 597 4 889402225 +11 230 4 891905783 +6 297 3 883599134 +186 925 5 879023152 +190 147 4 891033863 +184 1137 5 889907812 +85 269 3 891289966 +185 127 5 883525183 +44 257 4 878346689 +293 484 5 888906217 +150 1 4 878746441 +60 179 4 883326566 +75 147 3 884050134 +269 640 5 891457067 +138 493 4 879024382 +299 271 3 879737472 +92 928 3 886443582 +299 24 3 877877732 +292 183 5 881103478 +5 394 2 879198031 +62 559 3 879375912 +198 549 3 884208518 +288 1039 2 886373565 +152 272 5 890322298 +42 999 4 881108982 +64 333 3 879365313 +99 682 2 885678371 +59 121 4 888203313 +135 233 3 879857843 +7 22 5 891351121 +24 427 5 875323002 +144 747 5 888105473 +261 322 4 890454974 +201 475 4 884112748 +133 258 5 890588639 +110 245 3 886987540 +5 384 3 875636389 +139 268 4 879537876 +112 322 4 884992690 +234 596 2 891227979 +301 184 4 882077222 +291 1471 3 874834914 +285 216 3 890595900 +85 53 3 882995643 +275 183 3 880314500 +296 275 4 884196555 +271 197 4 885848915 +29 748 2 882821558 +221 172 5 875245907 +323 9 4 878739325 +111 340 4 891679692 +95 176 3 879196298 +207 170 4 877125221 +136 276 5 882693489 +124 616 4 890287645 +185 528 4 883526268 +167 404 3 892738278 +286 341 5 884069544 +84 322 3 883449567 +151 529 5 879542610 +264 401 5 886123656 +289 1 3 876789736 +144 64 5 888105140 +56 29 3 892910913 +23 528 4 874786974 +328 742 4 885047309 +125 785 3 892838558 +200 72 4 884129542 +249 23 4 879572432 +130 56 5 875216283 +140 319 4 879013617 +49 102 2 888067164 +158 483 5 880133225 +222 58 3 878182479 +194 213 2 879523575 +177 89 5 880131088 +7 268 3 891350703 +59 549 4 888205659 +145 411 2 875271522 +265 7 2 875320689 +248 282 2 884535582 +239 47 2 889180169 +319 879 5 876280338 +42 102 5 881108873 +301 1035 4 882078809 +326 69 2 879874964 +180 67 1 877127591 +280 99 2 891700475 +145 682 3 879161624 +214 79 4 891544306 +259 210 4 874725485 +57 864 3 883697512 +261 597 4 890456142 +136 298 4 882693569 +293 705 5 888906338 +194 470 3 879527421 +75 496 5 884051921 +202 172 3 879726778 +23 183 3 874785728 +38 403 1 892432205 +52 1009 5 882922328 +95 720 2 879196513 +65 97 5 879216605 +207 290 2 878104627 +201 2 2 884112487 +190 751 4 891033606 +162 685 3 877635917 +221 250 5 875244633 +92 134 4 875656623 +49 695 3 888068957 +102 391 2 888802767 +6 500 4 883601277 +152 25 3 880149045 +145 278 4 875272871 +328 271 3 885044607 +116 750 4 886309481 +90 237 4 891385215 +221 318 5 875245690 +128 283 5 879966729 +94 467 4 885873423 +221 1218 3 875246745 +281 332 4 881200603 +294 539 4 889241707 +300 948 4 875650018 +326 153 4 879875751 +62 28 3 879375169 +159 249 4 884027269 +76 811 4 882606323 +74 237 4 888333428 +81 411 2 876534244 +280 227 3 891702153 +224 22 5 888103581 +64 77 3 889737420 +194 756 1 879549899 +15 20 3 879455541 +43 328 4 875975061 +244 100 4 880604252 +327 805 4 887819462 +21 928 3 874951616 +83 254 2 880327839 +14 22 3 890881521 +318 610 5 884496525 +92 756 3 886443582 +222 1078 2 878183449 +62 157 3 879374686 +13 840 3 886261387 +271 300 2 885844583 +59 13 5 888203415 +208 514 4 883108324 +289 815 3 876789581 +279 249 3 878878420 +326 50 5 879875112 +73 12 5 888624976 +28 234 4 881956144 +6 95 2 883602133 +90 354 3 891382240 +96 519 4 884402896 +7 627 3 891352594 +254 649 1 886474619 +328 519 5 885046420 +247 751 3 893081411 +45 472 3 881014417 +323 127 5 878739137 +268 566 3 875744321 +291 816 3 874867852 +59 405 3 888203578 +200 409 2 884127431 +332 975 3 887938631 +239 612 5 889178616 +22 399 4 878887157 +267 147 3 878970681 +235 319 4 889654419 +87 70 5 879876448 +216 143 2 881428956 +268 121 2 875743141 +239 317 5 889179291 +269 922 5 891457067 +207 468 4 877124806 +270 148 4 876954062 +184 559 3 889910418 +304 271 4 884968415 +331 479 2 877196504 +157 283 4 886890692 +239 183 5 889180071 +261 339 5 890454351 +301 58 4 882077285 +145 339 3 882181058 +10 321 4 879163494 +48 308 5 879434292 +321 631 4 879440264 +32 591 3 883717581 +125 1036 2 892839191 +1 84 4 875072923 +21 742 3 874951617 +22 186 5 878886368 +292 324 3 881104533 +72 129 4 880035588 +256 642 4 882164893 +92 1095 2 886443728 +73 475 4 888625753 +290 274 4 880731874 +83 543 2 887665445 +56 597 3 892679439 +83 216 4 880307846 +215 22 3 891435161 +101 369 2 877136928 +328 521 4 885047484 +307 175 4 877117651 +201 23 4 884111830 +197 570 4 891410124 +26 286 3 891347400 +90 489 5 891384357 +98 517 5 880498990 +57 250 3 883697223 +163 288 3 891220226 +1 31 3 875072144 +104 324 1 888442404 +333 894 3 891045496 +311 22 4 884364538 +237 211 4 879376515 +44 603 4 878347420 +22 96 5 878887680 +213 546 4 878870903 +257 258 3 879029516 +327 300 2 887743541 +279 1017 3 875296891 +53 845 3 879443083 +85 97 2 879829667 +43 286 4 875975028 +181 7 4 878963037 +297 574 1 875239092 +201 651 4 884111217 +320 99 4 884751440 +94 180 5 885870284 +235 85 4 889655232 +305 131 3 886323440 +234 229 4 892334189 +328 591 3 885047018 +328 754 4 885044607 +258 323 4 885701062 +3 323 2 889237269 +16 70 4 877720118 +286 425 2 877532013 +327 702 2 887819021 +200 265 5 884128372 +207 131 3 878104377 +292 10 5 881104606 +214 179 5 892668130 +155 321 4 879370963 +106 213 4 881453065 +200 586 4 884130391 +305 216 5 886323563 +279 1113 3 888806035 +178 984 2 882823530 +331 133 3 877196443 +58 45 5 884305295 +167 1306 5 892738385 +151 191 3 879524326 +326 168 3 879874859 +297 443 2 875240133 +191 288 3 891562090 +81 471 3 876533586 +284 258 4 885329146 +5 267 4 875635064 +150 325 1 878747322 +257 59 5 879547440 +145 443 3 882182658 +271 191 5 885848448 +176 297 3 886047918 +158 38 4 880134607 +152 716 5 884019001 +232 638 5 888549988 +109 930 3 880572351 +243 660 4 879988422 +57 744 5 883698581 +145 1057 1 875271312 +235 275 5 889655550 +181 124 1 878962550 +145 182 5 885622510 +249 476 3 879640481 +44 11 3 878347915 +194 566 4 879522819 +109 218 4 880578633 +49 10 3 888066086 +269 210 1 891449608 +87 233 4 879876036 +314 791 4 877889398 +292 132 4 881105340 +7 300 4 891350703 +291 460 5 874834254 +292 176 5 881103478 +290 1028 3 880732365 +122 427 3 879270165 +17 151 4 885272751 +59 47 5 888205574 +29 689 2 882821705 +274 411 3 878945888 +190 340 1 891033153 +213 50 5 878870456 +14 111 3 876965165 +321 131 4 879439883 +221 1314 3 875247833 +195 100 5 875771440 +236 187 3 890118340 +92 619 4 875640487 +303 576 3 879485417 +42 210 5 881108633 +246 423 3 884920900 +181 823 2 878963343 +197 231 3 891410124 +181 369 3 878963418 +130 172 5 875801530 +276 1131 3 874796116 +252 742 4 891455743 +221 1067 3 875244387 +292 488 5 881105657 +177 124 3 880130881 +42 785 4 881109060 +1 70 3 875072895 +13 178 4 882139829 +76 276 5 875027601 +269 72 2 891451470 +3 331 4 889237455 +290 429 4 880474606 +159 815 3 880557387 +248 474 2 884534672 +214 1065 5 892668173 +30 181 4 875060217 +8 182 5 879362183 +238 118 3 883576509 +249 176 4 879641109 +264 1069 5 886123728 +98 655 3 880498861 +123 275 4 879873726 +181 688 1 878961668 +7 162 5 891353444 +119 269 3 892564213 +181 457 1 878961474 +138 483 5 879024280 +56 63 3 892910268 +291 122 3 874834289 +326 468 3 879875572 +92 175 4 875653549 +293 654 5 888905760 +162 1047 5 877635896 +303 549 3 879484846 +325 504 3 891477905 +267 654 5 878971902 +130 546 4 876250932 +216 577 1 881432453 +301 53 1 882078883 +91 423 5 891439090 +301 384 5 882079315 +291 672 3 874867741 +18 196 3 880131297 +195 1084 4 888737345 +222 939 3 878182211 +327 274 2 887819462 +254 577 1 886476092 +332 693 5 888098538 +267 55 4 878972785 +16 443 5 877727055 +158 79 4 880134332 +305 14 4 886322893 +87 67 4 879877007 +313 175 4 891014697 +43 498 5 875981275 +234 1035 3 892335142 +90 11 4 891384113 +230 196 5 880484755 +1 60 5 875072370 +262 185 3 879793164 +221 1407 3 875247833 +279 382 4 875312947 +211 678 3 879461394 +287 1016 5 875334430 +167 603 4 892738212 +119 154 5 874782022 +126 878 5 887938392 +60 474 5 883326028 +296 427 5 884198772 +300 243 4 875650068 +194 971 3 879551049 +83 186 4 880308601 +207 1242 5 884386260 +311 1116 3 884364623 +181 406 1 878962955 +130 550 5 878537602 +245 222 4 888513212 +168 235 2 884288270 +256 756 4 882151167 +1 177 5 876892701 +59 10 4 888203234 +223 258 1 891548802 +243 225 3 879987655 +148 1149 5 877016513 +10 48 4 877889058 +178 549 4 882827689 +295 4 4 879518568 +99 124 2 885678886 +334 117 3 891544735 +263 523 5 891298107 +230 402 5 880485445 +152 132 5 882475496 +189 45 3 893265657 +130 231 3 875801422 +334 282 4 891544925 +91 193 3 891439057 +244 97 2 880605514 +83 866 3 883867947 +222 217 3 881060062 +10 203 4 877891967 +173 300 4 877556988 +269 168 4 891448850 +292 100 5 881103999 +60 508 4 883327368 +197 431 3 891409935 +313 265 4 891016853 +234 506 4 892318107 +234 959 2 892334189 +154 484 4 879139096 +14 56 5 879119579 +201 1211 3 884113806 +181 359 1 878961668 +52 748 4 882922629 +308 579 3 887740700 +212 515 4 879303571 +13 42 4 882141393 +268 99 3 875744744 +119 245 4 886176618 +44 202 4 878347315 +126 884 5 887938392 +159 111 4 880556981 +90 301 4 891382392 +320 42 4 884751712 +301 25 3 882075110 +114 269 4 881256090 +9 691 5 886960055 +315 17 1 879821003 +137 195 5 881433689 +183 562 3 891467003 +297 301 4 876529834 +334 603 5 891628849 +18 954 3 880130640 +152 97 5 882475618 +184 498 5 889913687 +325 430 5 891478028 +39 315 4 891400094 +231 127 3 879965565 +302 309 2 879436820 +63 150 4 875747292 +201 375 3 884287140 +200 103 2 891825521 +13 94 3 882142057 +297 22 4 875238984 +201 844 2 884112537 +14 93 3 879119311 +240 343 3 885775831 +184 716 3 889909987 +216 12 5 881432544 +38 122 1 892434801 +257 276 5 882049973 +256 778 4 882165103 +200 229 5 884129696 +148 177 2 877020715 +249 22 5 879572926 +184 47 4 889909640 +276 58 4 874791169 +268 432 3 875310145 +224 258 3 888081947 +145 25 2 875270655 +298 261 4 884126805 +244 743 5 880602170 +289 410 2 876790361 +59 132 5 888205744 +301 1112 4 882079294 +56 1090 3 892683641 +327 192 5 887820828 +285 288 5 890595584 +133 328 3 890588577 +71 346 4 885016248 +293 1132 3 888905416 +13 908 1 886302385 +1 27 2 876892946 +271 172 5 885848616 +286 269 5 879780839 +49 926 1 888069117 +290 153 3 880475310 +226 270 4 883888639 +104 122 3 888465739 +311 233 4 884365889 +60 178 5 883326399 +200 191 5 884128554 +128 276 4 879967550 +157 748 2 886890015 +303 460 4 879543600 +5 445 3 875720744 +268 540 1 875542174 +290 218 2 880475542 +181 1346 1 878962086 +189 276 3 893264300 +90 659 4 891384357 +321 134 3 879438607 +279 108 4 892174381 +197 770 3 891410082 +217 566 4 889069903 +193 682 1 889123377 +34 310 4 888601628 +293 157 5 888905779 +297 300 3 874953892 +24 742 4 875323915 +259 405 3 874725120 +303 1007 5 879544576 +326 282 2 879875964 +10 218 4 877889261 +334 635 2 891548155 +272 8 4 879455015 +76 1129 5 875028075 +13 300 1 881515736 +194 431 4 879524291 +256 291 5 882152630 +148 185 1 877398385 +276 318 5 874787496 +227 126 4 879035158 +311 553 3 884365451 +198 427 4 884207009 +13 180 5 882141248 +286 100 3 876521650 +271 451 3 885849447 +59 318 5 888204349 +328 655 4 886037429 +25 174 5 885853415 +90 971 4 891385250 +157 150 5 874813703 +106 69 4 881449886 +173 322 4 877557028 +276 1135 4 874791527 +276 76 4 874791506 +49 546 1 888069636 +115 234 5 881171982 +307 22 3 879205470 +82 218 3 878769748 +116 1082 3 876453171 +80 50 3 887401533 +59 381 5 888205659 +236 143 4 890116163 +56 174 5 892737191 +82 413 1 884714593 +82 69 4 878769948 +144 727 3 888105765 +7 526 5 891351042 +49 531 3 888066511 +1 260 1 875071713 +243 129 2 879987526 +313 488 5 891013496 +207 273 4 878104569 +334 222 4 891544904 +83 95 4 880308453 +162 230 2 877636860 +326 496 5 879874825 +236 686 3 890118372 +17 9 3 885272558 +92 1215 2 890251747 +82 147 3 876311473 +201 242 4 884110598 +223 237 5 891549657 +168 295 4 884287615 +186 977 3 879023273 +246 356 2 884923047 +62 135 4 879375080 +320 456 3 884748904 +48 603 4 879434607 +209 269 2 883589606 +236 1328 4 890116132 +92 673 4 875656392 +71 285 3 877319414 +5 167 2 875636281 +67 240 5 875379566 +188 554 2 875074891 +326 54 3 879876300 +234 462 4 892079840 +31 302 4 881547719 +228 886 1 889387173 +172 603 3 875538027 +314 1139 5 877888480 +297 652 3 875239346 +264 659 5 886122577 +118 174 5 875385007 +216 286 4 881432501 +290 1013 2 880732131 +256 278 5 882151517 +200 820 3 884127370 +49 312 3 888065786 +118 433 5 875384793 +293 195 3 888906119 +13 29 2 882397833 +42 405 4 881105541 +293 566 3 888907312 +125 158 4 892839066 +315 230 4 879821300 +296 83 5 884199624 +188 204 4 875073478 +201 4 4 884111830 +253 747 3 891628501 +315 531 5 879799457 +210 134 5 887736070 +119 1170 3 890627339 +151 509 4 879524778 +81 273 4 876533710 +324 748 5 880575108 +43 15 5 875975546 +298 432 4 884183307 +250 127 4 878089881 +286 1265 5 884069544 +203 294 2 880433398 +267 226 3 878972463 +194 735 4 879524718 +303 99 4 879467514 +193 195 1 889124507 +57 588 4 883698454 +92 672 3 875660028 +207 269 4 877845577 +325 154 3 891478480 +280 86 4 891700475 +197 449 5 891410124 +39 352 5 891400704 +197 510 5 891409935 +117 1 4 880126083 +132 922 5 891278996 +271 180 5 885849087 +222 433 4 881059876 +103 117 4 880416313 +201 26 4 884111927 +270 387 5 876955689 +104 100 4 888465166 +95 96 4 879196298 +130 204 5 875216718 +290 239 2 880474451 +314 833 4 877887155 +313 969 4 891015387 +295 722 4 879518881 +269 412 3 891446904 +49 1 2 888068651 +332 228 5 888359980 +301 11 4 882076291 +125 434 4 879454100 +336 66 3 877756126 +1 145 2 875073067 +327 230 4 887820448 +262 292 4 879961282 +313 205 5 891013652 +321 523 3 879440687 +248 185 3 884534772 +38 384 5 892433660 +224 778 1 888104057 +217 1222 1 889070050 +6 475 5 883599478 +331 47 5 877196235 +38 423 5 892430071 +1 174 5 875073198 +308 60 3 887737760 +207 642 3 875991116 +215 1039 5 891436543 +56 239 4 892676970 +109 1011 3 880571872 +10 124 5 877888545 +320 210 5 884749227 +269 180 3 891448120 +290 380 3 880731766 +311 205 5 884365357 +129 270 3 883243934 +109 281 2 880571919 +235 898 3 889654553 +335 328 3 891566903 +13 508 3 882140426 +201 558 2 884112537 +276 801 3 877935306 +81 118 2 876533764 +288 200 4 886373534 +263 97 4 891299387 +293 87 4 888907015 +136 117 4 882694498 +318 660 3 884497207 +295 405 5 879518319 +201 480 4 884111598 +232 708 4 888550060 +197 566 4 891409893 +313 180 5 891014898 +109 230 5 880579107 +168 596 4 884287615 +201 980 3 884140927 +222 554 2 881060435 +115 11 4 881171348 +334 224 2 891545020 +119 697 5 874782068 +198 385 3 884208778 +91 507 4 891438977 +62 281 3 879373118 +239 98 5 889180410 +324 1033 4 880575589 +201 823 3 884140975 +322 50 5 887314418 +107 305 4 891264327 +64 2 3 889737609 +28 50 4 881957090 +246 202 3 884922272 +168 1197 5 884287927 +34 259 2 888602808 +286 465 5 889651698 +184 521 4 889908873 +106 286 4 881449486 +198 1117 3 884205252 +291 53 5 874834827 +25 477 4 885853155 +1 159 3 875073180 +181 1393 1 878961709 +169 301 4 891268622 +60 172 4 883326339 +178 427 5 882826162 +149 327 2 883512689 +280 96 4 891700664 +205 984 1 888284710 +92 431 4 875660164 +244 369 4 880605294 +308 291 3 887739472 +235 684 4 889655162 +218 194 3 877488546 +307 313 5 888095725 +18 69 3 880129527 +23 215 2 874787116 +184 132 5 889913687 +244 237 5 880602334 +211 181 1 879461498 +236 696 2 890117223 +145 672 3 882182689 +235 648 4 889655662 +116 1016 2 876453376 +178 358 1 888512993 +11 561 2 891905936 +329 512 4 891656347 +183 405 4 891464393 +308 467 4 887737194 +207 576 3 877822904 +198 249 2 884205277 +100 750 4 891375016 +291 168 5 874871800 +115 762 4 881170508 +151 169 5 879524268 +305 403 2 886324792 +338 494 3 879438570 +292 525 5 881105701 +234 671 3 892336257 +234 584 3 892333653 +279 275 3 875249232 +234 638 4 892335989 +110 79 4 886988480 +106 273 3 881453290 +128 111 3 879969215 +298 151 3 884183952 +42 845 5 881110719 +128 747 3 879968742 +190 717 3 891042938 +1 82 5 878542589 +99 421 3 885680772 +313 208 3 891015167 +13 45 3 882139863 +305 302 4 886307860 +94 185 5 885873684 +271 204 4 885848314 +128 83 5 879967691 +267 50 5 878974783 +142 189 4 888640317 +1 56 4 875072716 +18 214 4 880132078 +188 234 4 875073048 +235 100 4 889655550 +303 408 4 879467035 +100 266 2 891375484 +178 302 4 892239796 +42 781 4 881108280 +18 488 3 880130065 +184 14 4 889907738 +293 521 3 888906288 +293 849 2 888907891 +198 156 3 884207058 +234 966 4 892334189 +181 1351 1 878962168 +194 153 3 879546723 +1 272 3 887431647 +265 279 2 875320462 +159 323 4 880485443 +332 229 5 888360342 +334 229 2 891549777 +126 258 4 887853919 +200 225 4 876042299 +63 246 3 875747514 +271 134 3 885848518 +179 316 5 892151202 +308 959 3 887739335 +270 70 5 876955066 +181 1198 1 878962585 +21 445 3 874951658 +326 675 4 879875457 +268 823 2 875742942 +109 845 4 880571684 +339 132 5 891032953 +244 95 4 880606418 +62 702 2 879376079 +321 615 5 879440109 +254 141 3 886472836 +295 423 4 879517372 +271 241 3 885849207 +7 519 4 891352831 +334 52 4 891548579 +136 14 5 882693338 +192 1160 4 881367456 +259 176 4 874725386 +244 509 5 880606017 +238 815 2 883576398 +73 127 5 888625200 +249 455 4 879640326 +320 291 4 884749014 +13 820 4 882398743 +10 283 4 877892276 +321 207 3 879440244 +201 991 4 884110735 +102 559 3 888803052 +190 742 3 891033841 +311 99 5 884365075 +309 333 3 877370419 +62 685 2 879373175 +116 187 5 886310197 +295 966 5 879518060 +234 72 3 892335674 +255 984 1 883215902 +161 582 1 891170800 +87 550 4 879876074 +59 559 5 888206562 +140 322 3 879013684 +224 301 3 888082013 +90 486 5 891383912 +14 792 5 879119651 +194 216 3 879523785 +222 501 2 881060331 +90 311 4 891382163 +328 43 3 886038224 +7 633 5 891351509 +151 228 5 879524345 +297 223 5 875238638 +207 529 4 878191679 +130 930 3 876251072 +314 743 1 877886443 +181 926 1 878962866 +13 509 5 882140691 +232 523 4 888549757 +201 87 3 884111775 +223 470 4 891550767 +18 602 3 880131407 +82 495 3 878769668 +144 403 3 888105636 +186 322 5 879022927 +250 174 3 878092104 +321 194 3 879441225 +28 12 4 881956853 +28 895 4 882826398 +151 405 3 879543055 +207 1102 3 880839891 +201 164 3 884112627 +6 509 4 883602664 +42 380 4 881108548 +221 895 2 885081339 +328 10 4 885047099 +270 159 4 876956233 +269 340 5 891446132 +216 249 3 880232917 +201 1424 3 884113114 +85 86 4 879454189 +95 843 4 880572448 +306 275 4 876503894 +256 235 3 882153668 +85 692 3 879828490 +11 312 4 891902157 +305 210 3 886323006 +181 321 2 878961623 +151 7 4 879524610 +296 961 5 884197287 +119 595 3 874781067 +314 929 3 877887356 +279 363 5 890451473 +188 357 4 875073647 +214 872 2 891542492 +234 209 4 892317967 +5 426 3 878844510 +1 80 4 876893008 +246 578 2 884923306 +294 979 3 877819897 +314 73 4 877889205 +312 98 4 891698300 +208 662 4 883108842 +43 382 5 883955702 +254 596 4 886473852 +3 294 2 889237224 +44 153 4 878347234 +25 742 4 885852569 +94 79 4 885882967 +262 406 3 879791537 +35 1025 3 875459237 +148 501 4 877020297 +70 423 5 884066910 +83 265 5 880308186 +5 222 4 875635174 +308 1028 2 887738972 +109 62 3 880578711 +49 173 3 888067691 +314 468 4 877892214 +334 1163 4 891544764 +269 205 3 891447841 +38 318 3 892430071 +102 222 3 888801406 +329 297 4 891655868 +305 1411 3 886324865 +236 289 4 890117820 +313 131 4 891015513 +332 284 5 887938245 +121 121 2 891388501 +60 183 5 883326399 +339 1030 1 891036707 +296 544 4 884196938 +11 720 1 891904717 +263 272 5 891296919 +303 203 5 879467669 +288 182 4 886374497 +291 17 4 874834850 +308 628 3 887738104 +13 755 3 882399014 +64 231 3 889740880 +277 24 4 879543931 +130 572 3 878537853 +293 386 2 888908065 +279 368 1 886016352 +189 253 4 893264150 +296 32 4 884197131 +305 169 5 886322893 +303 262 5 879466065 +95 211 3 879197652 +207 1098 4 877879172 +110 1248 3 886989126 +312 408 4 891698174 +279 1413 5 875314434 +15 301 4 879455233 +116 484 4 886310197 +198 51 3 884208455 +13 2 3 882397650 +332 232 5 888098373 +44 55 4 878347455 +62 716 4 879375951 +148 529 5 877398901 +303 421 4 879466966 +276 56 5 874791623 +311 484 4 884366590 +58 475 5 884304609 +85 488 4 879455197 +330 584 3 876547220 +181 1067 1 878962550 +301 515 3 882074561 +13 830 1 882397581 +127 268 1 884363990 +37 56 5 880915810 +314 924 5 877886921 +201 210 2 884111270 +198 511 4 884208326 +94 742 3 891722214 +209 258 2 883589626 +305 610 3 886324128 +67 405 5 875379794 +294 120 2 889242937 +246 98 4 884921428 +194 162 3 879549899 +307 393 3 877123041 +95 976 2 879195703 +268 252 3 875743182 +216 298 5 881721819 +5 453 1 879198898 +223 845 4 891549713 +293 124 4 888904696 +224 1119 3 888082634 +299 176 4 880699166 +130 71 5 875801695 +130 50 5 874953665 +54 313 4 890608360 +62 473 4 879373046 +312 495 4 891699372 +125 22 5 892836395 +318 357 4 884496069 +204 748 1 892392030 +182 293 3 885613152 +49 569 3 888067482 +69 56 5 882145428 +64 959 4 889739903 +325 179 5 891478529 +286 272 5 884069298 +116 880 3 876680723 +215 89 4 891435060 +46 333 5 883611374 +246 294 2 884924460 +213 25 4 878870750 +90 213 5 891383718 +110 188 4 886988574 +212 511 4 879304051 +57 1059 3 883697432 +57 825 1 883697761 +297 282 3 874954845 +276 176 5 874792401 +106 45 3 881453290 +151 66 4 879524974 +276 66 3 874791993 +269 76 3 891448456 +154 286 4 879138235 +210 219 3 887808581 +306 319 4 876503793 +324 471 5 880575412 +265 472 3 875320542 +85 389 3 882995832 +54 325 3 880930146 +18 498 4 880129940 +271 345 3 885844666 +123 22 4 879809943 +87 1189 5 879877951 +217 810 3 889070050 +198 148 3 884206401 +116 257 3 876452523 +131 274 3 883681351 +297 692 3 875239018 +266 874 2 892257101 +109 796 3 880582856 +189 480 5 893265291 +22 294 1 878886262 +234 471 3 892335074 +328 679 2 885049460 +56 79 4 892676303 +178 978 2 882824983 +216 226 3 880244803 +38 444 1 892433912 +219 179 5 889492687 +43 944 2 883956260 +279 1484 3 875307587 +236 507 3 890115897 +296 1009 3 884196921 +271 490 4 885848886 +206 903 2 888180018 +21 295 3 874951349 +318 47 2 884496855 +59 230 4 888205714 +151 175 5 879524244 +263 86 4 891299574 +308 193 3 887737837 +152 125 5 880149165 +123 165 5 879872672 +169 174 4 891359418 +294 10 3 877819490 +197 651 5 891409839 +263 892 3 891297766 +63 109 4 875747731 +206 362 1 888180018 +52 498 5 882922948 +316 213 5 880853516 +72 89 3 880037164 +189 705 4 893265569 +80 87 4 887401307 +198 746 4 884207946 +85 56 4 879453587 +194 56 5 879521936 +110 82 4 886988480 +99 741 3 885678886 +7 195 5 891352626 +323 546 2 878739519 +21 982 1 874951482 +334 93 4 891545020 +12 82 4 879959610 +43 235 3 875975520 +228 288 4 889387173 +109 90 3 880583192 +13 64 5 882140037 +178 288 5 882823353 +181 887 1 878962005 +123 606 3 879872540 +82 64 5 878770169 +138 285 4 879023245 +87 1182 3 879877043 +201 304 2 884110967 +70 202 4 884066713 +178 655 4 882827247 +327 558 4 887746196 +315 654 5 879821193 +251 55 3 886271856 +42 70 3 881109148 +311 482 4 884365104 +129 272 4 883243972 +307 193 3 879205470 +10 4 4 877889130 +338 211 4 879438092 +95 514 2 888954076 +342 1047 2 874984854 +342 792 3 875318882 +201 213 4 884111873 +32 276 4 883717913 +257 289 4 879029543 +14 175 5 879119497 +299 174 4 877880961 +6 134 5 883602283 +320 433 4 884751730 +305 257 2 886322122 +28 153 3 881961214 +308 609 4 887739757 +287 218 5 875335424 +62 421 5 879375716 +269 172 3 891449031 +119 628 4 874775185 +279 1142 1 890780603 +224 1442 3 888104281 +308 528 3 887737036 +151 435 4 879524131 +328 216 3 885045899 +295 493 5 879516961 +62 96 4 879374835 +59 1109 3 888205088 +255 258 4 883215406 +102 195 4 888801360 +128 660 2 879968415 +8 79 4 879362286 +197 1419 2 891410124 +217 578 5 889070087 +313 204 4 891014401 +162 298 4 877635690 +30 289 2 876847817 +260 319 2 890618198 +57 294 4 883696547 +334 86 4 891548295 +308 54 2 887740254 +210 255 4 887730842 +213 447 4 878955598 +189 1021 5 893266251 +220 306 4 881197664 +104 1241 1 888465379 +339 582 4 891032793 +28 184 4 881961671 +51 148 3 883498623 +244 157 4 880604119 +234 491 4 892079538 +275 588 3 875154535 +186 53 1 879023882 +99 1052 1 885679533 +269 131 5 891449728 +311 720 3 884366307 +270 1119 5 876955729 +286 1035 3 877532094 +311 94 3 884366187 +211 257 5 879461498 +239 671 5 889179290 +201 98 4 884111312 +43 403 4 883956305 +315 216 4 879821120 +53 924 3 879443303 +308 452 2 887741329 +338 613 3 879438597 +90 357 5 891385132 +303 327 1 879466166 +247 271 2 893081411 +144 303 4 888103407 +102 1030 1 892994075 +90 739 5 891384789 +72 527 4 880036746 +286 248 5 875806800 +201 32 3 884140049 +327 497 4 887818658 +141 125 5 884585642 +167 675 1 892738277 +262 217 3 879792818 +151 813 4 879524222 +13 859 1 882397040 +276 207 4 874795988 +246 1073 4 884921380 +298 98 4 884127720 +23 88 3 874787410 +94 700 2 891723427 +130 772 4 876251804 +5 403 3 875636152 +297 176 4 881708055 +178 250 4 888514821 +128 417 4 879968447 +270 281 5 876956137 +63 251 4 875747514 +42 357 5 881107687 +100 288 2 891374603 +334 100 5 891544707 +162 222 4 877635758 +184 1020 4 889908630 +13 625 2 882398691 +72 79 4 880037119 +213 8 3 878955564 +82 13 2 878768615 +314 735 5 877888855 +59 488 3 888205956 +14 313 2 890880970 +236 200 3 890115856 +325 240 1 891479592 +286 164 3 877533586 +268 768 3 875744895 +83 77 4 880308426 +313 230 3 891015049 +21 218 4 874951696 +325 656 4 891478219 +283 83 4 879298239 +223 323 2 891549017 +130 418 5 875801631 +28 282 4 881957425 +43 7 4 875975520 +293 559 2 888906168 +286 432 3 878141681 +176 272 5 886047068 +237 499 2 879376487 +332 451 5 888360179 +303 273 3 879468274 +286 13 2 876521933 +327 169 2 887744205 +262 50 2 879962366 +312 631 5 891699599 +102 734 2 892993786 +16 655 5 877724066 +23 90 2 874787370 +249 182 5 879640949 +18 209 4 880130861 +293 216 4 888905990 +308 607 3 887737084 +164 689 5 889401490 +306 1009 4 876503995 +327 655 4 887745303 +280 756 4 891701649 +106 97 5 881450810 +109 147 4 880564679 +156 58 4 888185906 +133 260 1 890588878 +23 511 5 874786770 +112 689 4 884992668 +116 313 5 886978155 +271 13 4 885847714 +313 136 5 891014474 +240 898 5 885775770 +52 405 4 882922610 +280 202 3 891701090 +262 1278 4 879961819 +275 252 2 876197944 +187 732 3 879465419 +13 428 5 882140588 +268 946 3 875310442 +234 283 3 891227814 +16 151 5 877721905 +336 108 3 877757320 +235 435 5 889655434 +216 274 3 880233061 +246 215 2 884921058 +13 913 1 892014908 +21 439 1 874951820 +94 99 3 891721815 +82 275 2 884714125 +339 55 3 891032765 +59 1116 3 888206562 +217 685 5 889069782 +295 736 5 879966498 +170 328 3 884103860 +151 826 1 879543212 +13 212 5 882399385 +223 1 4 891549324 +246 196 3 884921861 +154 137 3 879138657 +158 144 4 880134445 +11 120 2 891903935 +18 630 3 880132188 +197 181 5 891409893 +235 433 4 889655596 +331 69 5 877196384 +244 278 3 880605294 +217 540 1 889070087 +312 134 5 891698764 +299 168 4 878192039 +234 1172 3 892079076 +224 632 2 888103872 +327 474 3 887743986 +184 780 4 889913254 +62 1107 1 879376159 +65 70 1 879216529 +101 928 2 877136302 +210 465 4 887737131 +144 237 4 888104258 +320 250 4 884751992 +311 692 4 884364652 +159 328 3 893255993 +128 77 3 879968447 +167 48 1 892738277 +291 558 4 874867757 +56 143 3 892910182 +38 392 5 892430120 +293 264 3 888904392 +115 69 1 881171825 +276 250 4 874786784 +280 225 4 891701974 +295 588 4 879517682 +26 321 3 891347949 +302 328 3 879436844 +145 109 4 875270903 +201 380 1 884140825 +57 252 2 883697807 +280 100 3 891700385 +310 258 3 879435606 +26 269 4 891347478 +308 4 5 887737890 +269 174 1 891449124 +262 71 4 879794951 +221 684 4 875247454 +263 521 3 891297988 +256 276 3 882151198 +1 229 4 878542075 +266 508 4 892258004 +59 127 5 888204430 +325 505 4 891478557 +327 133 4 887745662 +282 269 4 879949347 +151 300 4 879523942 +104 283 4 888465582 +291 1017 4 874833911 +276 770 4 877935446 +334 1108 4 891549632 +224 879 3 888082099 +64 1133 4 889739975 +58 42 4 884304936 +106 584 4 881453481 +159 258 4 893255836 +268 248 3 875742530 +318 286 3 884470681 +6 525 5 883601203 +327 431 3 887820384 +77 23 4 884753173 +95 15 4 879195062 +255 452 3 883216672 +144 328 3 888103407 +102 307 4 883748222 +269 1014 3 891446838 +184 172 4 889908497 +306 306 5 876503792 +49 732 3 888069040 +181 1347 1 878962052 +293 514 4 888906378 +330 121 4 876544582 +125 1074 3 892838827 +291 147 4 874805768 +269 214 3 891448547 +13 168 4 881515193 +305 76 1 886323506 +313 435 5 891013803 +307 229 5 879538921 +314 54 4 877888892 +269 529 5 891455815 +283 186 5 879298239 +158 8 5 880134948 +92 87 3 876175077 +85 842 3 882995704 +20 118 4 879668442 +193 393 4 889126808 +167 222 4 892737995 +201 1187 3 884112201 +125 346 1 892835800 +144 880 5 888103509 +234 628 2 892826612 +291 574 1 875087656 +224 977 2 888104281 +152 780 5 884019189 +71 462 5 877319567 +151 755 3 879543366 +135 229 2 879857843 +92 931 1 875644796 +95 33 3 880571704 +130 125 5 875801963 +269 405 1 891450902 +297 277 3 875048641 +62 527 4 879373692 +221 17 4 875245406 +11 743 2 891904065 +230 50 5 880484755 +159 930 4 880557824 +174 107 5 886434361 +97 7 5 884238939 +84 289 5 883449419 +63 948 3 875746948 +125 143 5 879454793 +160 126 3 876769148 +316 483 4 880853810 +32 117 3 883717555 +327 93 4 887744432 +13 856 5 886303171 +216 202 4 880234346 +92 1212 3 876175626 +1 140 1 878543133 +263 183 4 891298655 +5 173 4 875636675 +85 372 4 879828720 +194 519 4 879521474 +109 550 5 880579107 +201 198 4 884111873 +340 172 4 884990620 +49 117 1 888069459 +7 642 3 892132277 +239 286 1 889178512 +198 568 3 884208710 +237 23 4 879376606 +239 135 5 889178762 +5 241 1 875720948 +72 382 4 880036691 +297 480 4 875238923 +249 826 1 879640481 +25 127 3 885853030 +94 227 3 891722759 +195 591 4 892281779 +92 85 3 875812364 +85 709 5 879828941 +308 502 5 887739521 +311 117 4 884366852 +247 251 4 893081395 +235 792 4 889655490 +329 326 3 891656639 +338 79 4 879438715 +244 428 4 880606155 +187 70 4 879465394 +253 483 5 891628122 +194 62 2 879524504 +70 71 3 884066399 +203 332 5 880433474 +49 72 2 888069246 +308 673 4 887737243 +246 426 3 884923471 +280 231 3 891701974 +180 433 5 877127273 +110 1250 3 886988818 +327 811 4 887747363 +339 47 4 891032701 +194 132 3 879520991 +1 225 2 878542738 +36 319 2 882157356 +342 746 4 875320227 +260 1105 5 890618729 +40 754 4 889041790 +175 31 4 877108051 +62 827 2 879373421 +138 100 5 879022956 +252 9 5 891456797 +59 421 5 888206015 +110 540 3 886988793 +1 235 5 875071589 +334 269 3 891544049 +301 95 5 882076334 +63 6 3 875747439 +269 805 2 891450623 +151 357 5 879524585 +268 404 4 875309430 +199 473 4 883783005 +22 780 1 878887377 +28 441 2 881961782 +299 210 4 889502980 +317 326 3 891446438 +254 384 1 886475790 +178 245 3 882823460 +297 194 3 875239453 +90 966 5 891385843 +11 734 3 891905349 +325 514 4 891478006 +249 411 3 879640436 +18 964 3 880132252 +311 118 3 884963203 +334 293 3 891544840 +294 483 4 889854323 +297 86 5 875238883 +293 647 5 888905760 +294 876 3 889241633 +286 142 4 877534793 +308 569 3 887740410 +222 164 4 878181768 +49 721 2 888068934 +303 1090 1 879485686 +73 474 5 888625200 +93 845 4 888705321 +85 1101 4 879454046 +223 216 5 891550925 +42 1043 2 881108633 +234 212 2 892334883 +16 288 3 877717078 +13 319 4 882139327 +135 294 4 879857575 +168 411 1 884288222 +72 204 4 880037853 +144 523 5 888105338 +303 398 1 879485372 +128 215 3 879967452 +320 11 4 884749255 +267 684 4 878973088 +60 490 4 883326958 +189 694 4 893265946 +116 905 2 890131519 +249 240 4 879640343 +110 300 3 886987380 +201 1063 3 884113453 +180 121 5 877127830 +87 1072 3 879876610 +6 209 4 883601713 +63 301 5 875747010 +179 895 5 892151565 +148 98 3 877017714 +13 312 1 883670630 +15 278 1 879455843 +176 305 5 886047068 +102 66 3 892992129 +293 251 4 888904734 +42 204 5 881107821 +328 523 5 885046206 +206 333 4 888179565 +279 67 4 875310419 +158 42 3 880134913 +70 151 3 884148603 +271 661 4 885848373 +37 222 3 880915528 +279 1095 1 886016480 +250 200 5 883263374 +103 144 4 880420510 +50 1084 5 877052501 +128 1141 4 879968827 +336 577 1 877757396 +275 191 4 880314797 +95 173 5 879198547 +87 651 4 879875893 +21 678 2 874951005 +145 1217 2 875272349 +13 860 1 882396984 +312 676 3 891699295 +200 431 5 884129006 +102 67 1 892993706 +325 506 5 891478180 +221 1073 4 875245846 +2 297 4 888550871 +305 733 3 886324661 +275 969 2 880314412 +11 215 3 891904389 +341 876 4 890757886 +231 126 5 888605273 +269 474 4 891448823 +13 540 3 882398410 +102 809 3 888802768 +254 240 1 886476165 +234 486 3 892079373 +256 932 3 882150508 +249 58 5 879572516 +305 947 4 886322838 +262 15 3 879962366 +325 187 3 891478455 +184 836 4 889909142 +11 428 4 891905032 +40 258 3 889041981 +313 740 2 891016540 +276 1314 3 874796412 +101 1051 2 877136891 +236 699 4 890116095 +207 134 4 875991160 +215 82 3 891435995 +125 945 5 892836465 +120 282 4 889490172 +293 461 2 888905519 +160 93 5 876767572 +298 418 4 884183406 +326 444 4 879877413 +246 849 1 884923687 +278 301 2 891294980 +166 288 3 886397510 +328 4 3 885047895 +70 265 4 884067503 +298 465 4 884182806 +343 186 4 876407485 +205 313 3 888284313 +201 461 4 884113924 +276 1478 3 889174849 +91 264 4 891438583 +250 294 1 878089033 +68 405 3 876974518 +246 99 3 884922657 +10 704 3 877892050 +97 435 4 884238752 +99 118 2 885679237 +102 302 3 880680541 +70 152 4 884149877 +41 31 3 890687473 +178 179 2 882828320 +6 19 4 883602965 +89 246 5 879461219 +254 257 3 886471389 +94 402 4 891723261 +42 404 5 881108760 +130 566 4 878537558 +13 614 4 884538634 +286 642 3 877531498 +291 410 5 874834481 +214 121 4 891543632 +246 284 1 884922475 +130 413 3 876251127 +320 1210 4 884751316 +60 810 4 883327201 +141 744 5 884584981 +288 97 4 886629750 +145 750 4 885555884 +189 496 5 893265380 +130 55 5 875216507 +328 431 2 885047822 +177 1039 3 880130807 +201 281 2 884112352 +301 456 3 882074838 +136 56 4 882848783 +74 15 4 888333542 +169 429 3 891359250 +1 120 1 875241637 +100 302 4 891374528 +303 716 2 879467639 +216 498 3 880235329 +6 476 1 883600175 +329 98 4 891656300 +230 511 2 880485656 +113 321 3 875075887 +64 100 4 879365558 +13 876 2 881515521 +269 771 1 891451754 +6 154 3 883602730 +327 962 3 887820545 +179 345 1 892151565 +60 152 4 883328033 +222 250 2 877563801 +83 252 4 883868598 +330 51 5 876546753 +125 290 4 892838375 +181 286 1 878961173 +327 451 4 887819411 +161 14 4 891171413 +18 82 3 880131236 +24 372 4 875323553 +200 286 4 884125953 +73 202 2 888626577 +22 29 1 878888228 +96 8 5 884403020 +343 1107 3 876406977 +297 12 5 875239619 +279 1411 3 884556545 +110 202 2 886988909 +94 257 4 891724178 +72 176 2 880037203 +102 89 4 888801315 +119 684 4 886177338 +60 151 5 883326995 +295 404 4 879518378 +308 447 4 887739056 +312 1203 5 891699599 +343 55 3 876405129 +284 259 2 885329593 +276 563 3 874977334 +280 736 2 891700341 +311 310 4 884363865 +18 739 3 880131776 +87 209 5 879876488 +13 90 3 882141872 +58 1097 5 884504973 +224 243 2 888082277 +279 780 4 875314165 +56 568 4 892910797 +330 215 5 876547925 +7 92 5 891352010 +179 315 5 892151202 +64 239 3 889740033 +297 699 4 875239658 +21 424 1 874951293 +188 792 2 875075062 +91 195 5 891439057 +293 194 4 888906045 +94 727 5 891722458 +274 148 2 878946133 +57 282 5 883697223 +276 780 3 874792143 +216 651 5 880233912 +151 241 3 879542645 +62 8 5 879373820 +197 68 2 891410082 +59 385 4 888205659 +119 275 5 874774575 +118 324 4 875384444 +304 298 5 884968415 +26 9 4 891386369 +312 847 3 891698174 +308 965 4 887738387 +270 707 5 876954927 +297 31 3 881708087 +221 100 5 875244125 +116 760 3 886309812 +119 193 4 874781872 +177 300 2 880130434 +161 654 3 891171357 +303 235 4 879484563 +117 174 4 881011393 +327 216 3 887818991 +327 1098 4 887820828 +23 516 4 874787330 +181 1051 2 878962586 +48 661 5 879434954 +76 531 4 875028007 +189 129 3 893264378 +1 125 3 878542960 +312 144 1 891698987 +301 410 4 882074460 +306 476 3 876504679 +38 616 3 892433375 +223 298 5 891549570 +145 1292 1 875271357 +328 528 5 886037457 +174 458 4 886433862 +303 31 3 879467361 +23 83 4 874785926 +6 175 4 883601426 +173 938 3 877557076 +313 239 3 891028873 +38 780 4 892434217 +184 89 4 889908572 +44 155 3 878348947 +244 13 4 880604379 +13 263 5 881515647 +344 479 4 884901093 +40 340 2 889041454 +141 222 4 884584865 +144 286 4 888103370 +324 597 4 880575493 +222 700 3 881060550 +96 484 5 884402860 +90 199 5 891384423 +1 215 3 876893145 +270 379 5 876956232 +251 257 3 886272378 +246 109 5 884921794 +130 90 4 875801920 +326 318 5 879875612 +9 521 4 886959343 +221 32 4 875245223 +20 186 3 879669040 +37 79 4 880915810 +279 871 4 875297410 +163 56 4 891220097 +84 284 3 883450093 +201 676 2 884140927 +46 1062 5 883614766 +72 82 3 880037242 +117 176 5 881012028 +269 608 4 891449526 +148 214 5 877019882 +294 1067 4 877819421 +121 174 3 891388063 +20 172 3 879669181 +59 724 5 888205265 +108 125 3 879879864 +49 53 4 888067405 +294 678 2 877818861 +240 301 5 885775683 +299 602 3 878191995 +246 802 1 884923471 +13 788 1 882396914 +303 1508 1 879544130 +207 1283 4 884386260 +255 271 4 883215525 +195 477 2 885110922 +312 557 5 891699599 +144 302 3 888103530 +102 399 2 888802722 +297 515 5 874954353 +106 165 5 881450536 +291 421 4 875087352 +145 552 5 888398747 +89 936 5 879461219 +85 71 4 879456308 +282 271 3 881702919 +339 856 5 891034922 +135 227 3 879857843 +151 91 2 879542796 +221 467 4 875245928 +286 196 4 877533543 +116 195 4 876453626 +94 738 2 891723558 +144 172 4 888105312 +214 208 5 892668153 +234 519 5 892078342 +244 596 4 880604735 +222 739 4 878184924 +74 126 3 888333428 +45 127 5 881007272 +344 306 5 884814359 +116 887 3 881246591 +181 1362 1 878962200 +144 461 4 888106044 +189 1099 5 893266074 +53 228 3 879442561 +2 290 3 888551441 +299 739 3 889502865 +313 139 3 891030334 +274 275 5 878944679 +321 521 2 879441201 +134 539 4 891732335 +269 486 3 891449922 +94 655 4 891720862 +262 1220 4 879794296 +181 1265 1 878961668 +109 4 2 880572756 +12 96 4 879959583 +109 42 1 880572756 +90 307 5 891383319 +77 498 5 884734016 +314 620 3 877887212 +48 210 3 879434886 +305 1101 4 886323563 +198 357 5 884207267 +222 293 3 877563353 +207 186 4 877879173 +158 580 4 880135093 +255 551 1 883216672 +87 1047 3 879877280 +301 9 3 882074291 +279 1498 4 891208884 +299 343 3 881605700 +339 288 3 891036899 +13 782 3 885744650 +210 722 4 891036021 +200 528 4 884128426 +193 693 4 889124374 +297 678 3 874954093 +128 216 5 879967102 +311 38 3 884365954 +169 879 5 891268653 +174 82 1 886515472 +13 440 1 882397040 +95 378 4 888954699 +321 224 3 879439733 +180 83 5 877128388 +150 127 5 878746889 +332 233 4 888360370 +102 83 3 888803487 +263 678 2 891297766 +128 97 3 879968125 +239 288 2 889178513 +275 202 3 875155167 +311 471 4 884963254 +267 145 4 878972903 +253 210 4 891628598 +250 64 5 878090153 +284 339 3 885329671 +327 849 2 887822530 +11 90 2 891905298 +222 93 2 883815577 +299 26 4 878192601 +276 748 3 883822507 +274 496 5 878946473 +252 129 4 891456876 +244 1225 2 880606818 +75 820 3 884050979 +194 52 4 879525876 +328 627 3 885048365 +201 955 3 884114895 +253 198 5 891628392 +221 39 4 875245798 +334 317 3 891546000 +271 414 4 885849470 +158 525 5 880133288 +64 705 5 879365558 +294 24 4 877819761 +28 480 5 881957002 +269 959 5 891457067 +299 270 4 878052375 +151 655 4 879542645 +177 87 4 880130931 +269 15 2 891446348 +279 740 3 875736276 +332 673 5 888360307 +269 483 4 891448800 +91 682 2 891438184 +246 17 2 884922658 +290 418 3 880474293 +9 487 5 886960056 +217 797 4 889070011 +234 14 3 891227730 +292 1050 4 881105778 +65 1129 4 879217258 +222 231 2 878182005 +299 32 3 877881169 +279 685 3 884982881 +15 620 4 879456204 +68 178 5 876974755 +293 210 3 888905665 +43 931 1 884029742 +344 278 3 884900454 +56 368 3 892911589 +339 30 3 891032765 +144 518 3 888106182 +125 734 3 892838977 +12 735 5 879960826 +269 484 3 891448895 +90 179 5 891385389 +185 237 4 883526268 +243 275 3 879987084 +269 1091 2 891451705 +11 429 5 891904335 +13 88 4 882141485 +120 25 5 889490370 +198 402 3 884209147 +165 304 3 879525672 +138 98 5 879024043 +94 561 3 891722882 +293 188 3 888906288 +39 258 4 891400280 +159 237 3 880485766 +344 39 3 884901290 +69 1017 5 882126156 +230 673 3 880485573 +160 124 4 876767360 +44 228 5 883613334 +298 1142 4 884183572 +345 1160 3 884994606 +94 133 4 885882685 +121 122 2 891390501 +325 109 2 891478528 +160 1019 5 876857977 +205 333 4 888284618 +343 44 3 876406640 +321 1028 2 879441064 +102 986 1 888802319 +268 123 3 875742794 +19 153 4 885412840 +125 511 5 879454699 +332 1188 5 888098374 +90 132 5 891384673 +16 657 5 877723882 +316 50 1 880853654 +272 11 4 879455143 +85 380 4 882995704 +279 1118 3 875310631 +269 761 2 891451374 +75 696 4 884050979 +249 469 4 879641285 +311 671 3 884365954 +58 222 4 884304656 +254 99 3 886473254 +308 632 3 887738057 +125 1272 1 879454892 +49 40 1 888069222 +83 1101 2 880308256 +16 294 4 877717116 +94 214 5 891725332 +295 624 5 879518654 +152 866 5 880149224 +128 227 2 879968946 +119 235 5 874774956 +122 1268 2 879270711 +276 561 2 874792745 +251 109 4 886272547 +7 90 3 891352984 +184 275 5 889913687 +262 628 2 879962366 +279 13 3 875249210 +181 764 1 878962866 +21 56 5 874951658 +298 660 3 884182838 +98 321 3 880498519 +145 949 4 875272652 +164 458 4 889402050 +232 64 4 888549441 +184 126 3 889907971 +269 209 4 891448895 +26 100 5 891386368 +57 1093 3 883697352 +117 338 3 886019636 +297 97 5 875239871 +276 969 4 874792839 +119 1263 3 886177338 +345 722 3 884993783 +318 72 4 884498540 +246 410 1 884923175 +158 809 3 880134675 +178 651 4 882826915 +254 625 3 886473808 +21 106 2 874951447 +225 136 5 879540707 +41 486 4 890687305 +234 191 4 892334765 +78 289 4 879633567 +90 9 4 891385787 +313 415 2 891030367 +180 716 1 877128119 +344 462 2 884901156 +268 810 2 875744388 +195 227 3 888737346 +72 603 4 880037417 +31 135 4 881548030 +303 1267 3 879484327 +64 731 3 889739648 +62 89 5 879374640 +151 662 4 879525054 +189 1372 4 893264429 +213 79 5 878956263 +219 13 1 889452455 +345 708 3 884992786 +244 712 3 880607925 +220 288 5 881197887 +1 6 5 887431973 +239 923 5 889179033 +290 202 4 880474590 +194 523 5 879521596 +200 831 4 891825565 +346 213 3 874948173 +267 214 4 878972342 +100 340 3 891374707 +42 521 2 881107989 +214 45 4 891543952 +264 320 4 886122261 +145 1102 1 888398162 +10 22 5 877888812 +299 71 3 878192238 +313 608 4 891017585 +209 242 4 883589606 +221 92 4 875245989 +293 646 3 888906244 +184 1012 3 889907448 +70 260 2 884065247 +90 30 5 891385843 +144 1169 4 888106044 +1 104 1 875241619 +21 288 3 874950932 +6 523 5 883601528 +248 181 4 884535374 +168 409 4 884287846 +234 878 2 892336477 +44 238 4 878347598 +296 1073 5 884197330 +296 96 5 884197287 +206 288 5 888179565 +76 100 5 875028391 +327 50 3 887745574 +308 811 4 887739212 +338 168 3 879438225 +125 238 3 892838322 +299 1074 3 889502786 +85 203 5 879455402 +77 431 5 884733695 +18 367 4 880130802 +293 572 2 888907931 +286 228 3 889651576 +246 568 4 884922451 +174 902 3 890168363 +268 163 2 875743656 +291 555 1 874868629 +151 478 5 879524471 +269 63 1 891450857 +11 97 4 891904300 +83 748 2 886534501 +83 125 5 880306811 +145 717 3 888398702 +56 426 4 892683303 +339 435 4 891032189 +35 242 2 875459166 +18 462 3 880130065 +194 708 3 879528106 +14 514 4 879119579 +345 651 4 884992493 +279 415 3 875314313 +12 471 5 879959670 +126 332 2 887853735 +16 22 5 877721071 +116 758 1 876452980 +220 325 1 881198435 +151 328 3 879523838 +280 11 5 891700570 +10 155 4 877889186 +73 1149 4 888626299 +180 213 5 877128388 +13 831 3 882398385 +181 1291 1 878963167 +92 132 3 875812211 +345 202 3 884992218 +269 482 3 891448823 +59 241 4 888205574 +322 508 4 887314073 +18 25 3 880131591 +343 135 5 876404568 +62 856 4 879374866 +144 528 4 888105846 +24 662 5 875323440 +108 282 3 879880055 +95 518 4 888954076 +276 383 2 877934828 +187 427 5 879465597 +13 315 5 884538466 +332 98 5 888359903 +12 172 4 879959088 +347 22 5 881654005 +201 8 3 884141438 +90 855 5 891383752 +193 1132 3 889127660 +99 203 4 885680723 +122 708 5 879270605 +15 742 2 879456049 +222 1239 2 881060762 +57 56 3 883698646 +332 595 4 887938574 +6 498 4 883601053 +339 58 3 891032379 +268 154 4 875743563 +102 202 4 892991269 +213 474 2 878955635 +73 196 4 888626177 +283 70 4 879298206 +122 212 5 879270567 +201 454 2 884111830 +298 652 3 884183099 +7 10 4 891352864 +314 29 5 877889234 +130 1277 4 876250897 +201 275 4 884113634 +304 681 2 884967167 +130 748 4 874953526 +118 176 5 875384793 +182 237 3 885613067 +13 794 4 882399615 +242 934 5 879741196 +69 1134 5 882072998 +77 153 5 884732685 +151 196 4 879542670 +279 202 4 875307587 +233 958 5 875508372 +284 682 3 885329322 +181 301 2 878961303 +286 419 5 889651990 +327 14 4 887744167 +256 195 5 882164406 +331 1100 2 877196634 +102 186 4 888803487 +119 338 1 892565167 +234 316 4 891033851 +295 378 4 879518233 +14 100 5 876965165 +184 1006 3 889910078 +216 721 4 880245213 +130 148 4 876251127 +130 229 4 875802173 +158 100 5 880132401 +222 972 2 881059758 +122 792 3 879270459 +59 14 5 888203234 +31 705 5 881548110 +254 501 3 886476281 +297 475 5 874954426 +193 328 3 889122993 +292 28 4 881105734 +1 49 3 878542478 +242 1152 5 879741196 +267 559 3 878972614 +82 705 3 878769598 +292 1039 4 881105778 +14 455 4 880929745 +308 511 5 887737130 +236 170 5 890116451 +334 4 3 891548345 +130 1215 2 876251389 +145 203 5 875271948 +156 205 3 888185735 +340 435 4 884990546 +94 385 2 891721975 +94 109 4 891721974 +168 988 2 884287145 +313 151 1 891014982 +96 645 5 884403020 +308 109 3 887738894 +94 393 3 891721684 +21 995 2 874950932 +5 234 2 875720692 +317 350 5 891446819 +102 62 3 888801812 +118 156 5 875384946 +276 786 3 874791694 +116 259 4 876452186 +81 93 3 876533657 +92 595 3 886443534 +250 111 4 878091915 +344 215 3 884900818 +320 148 4 884748708 +79 124 5 891271870 +94 313 4 891724925 +1 206 4 876893205 +128 966 4 879968071 +269 664 5 891457067 +318 795 2 884498766 +16 940 2 877721236 +54 276 5 880931595 +291 1109 4 874834768 +298 172 4 884124993 +234 292 4 891033821 +106 15 3 883876518 +114 1104 5 881260352 +299 137 4 877877535 +301 771 2 882079256 +73 7 4 888625956 +332 44 3 888360342 +308 1019 4 887738570 +187 28 4 879465597 +94 783 2 891723495 +15 137 4 879455939 +286 56 2 877531469 +222 756 4 877564031 +18 699 5 880130802 +68 245 3 876973777 +134 748 5 891732365 +334 1207 2 891550121 +243 223 4 879988262 +322 479 5 887313892 +334 481 5 891546206 +243 13 4 879987362 +268 16 3 875306691 +90 241 5 891384611 +267 484 5 878971542 +233 48 5 877663184 +77 4 3 884752721 +184 92 3 889908657 +148 596 5 877020297 +59 664 4 888205614 +110 734 2 886989566 +285 628 2 890595636 +244 101 5 880603288 +314 366 4 877891354 +303 654 5 879467328 +186 333 3 891718820 +92 785 3 875660304 +151 486 5 879525002 +6 188 3 883602462 +293 125 2 888905086 +194 51 4 879549793 +291 552 3 874834963 +87 790 4 879876885 +299 50 4 877877775 +56 1 4 892683248 +277 9 4 879543336 +174 823 4 886434376 +92 1047 1 875644796 +177 182 5 880130684 +41 751 4 890686872 +1 76 4 878543176 +113 262 2 875075983 +271 657 4 885848559 +323 7 2 878739355 +303 373 2 879544276 +138 238 5 879024382 +325 98 4 891478079 +106 64 4 881449830 +222 155 4 878184113 +345 367 4 884993069 +273 328 3 891293048 +144 1039 4 888105587 +157 127 5 886890541 +211 310 3 879461394 +56 31 4 892679259 +168 1016 5 884287615 +303 129 5 879468547 +76 258 3 875027206 +223 249 2 891549876 +60 28 5 883326155 +321 507 3 879441336 +141 932 3 884585128 +73 286 4 888792192 +226 480 4 883888853 +90 713 4 891385466 +272 172 4 879455043 +19 313 2 885411792 +145 286 3 875269755 +342 764 1 875318762 +224 322 2 888082013 +328 1126 3 885046580 +268 552 2 876514108 +179 354 4 892151331 +308 526 3 887739426 +267 693 4 878972266 +345 402 4 884993464 +6 213 4 883602462 +12 143 5 879959635 +210 160 4 887737210 +290 546 2 880475564 +293 300 2 888904004 +58 248 4 884794774 +303 181 5 879468082 +298 498 5 884182573 +347 501 4 881654410 +236 172 3 890116539 +102 121 3 888801673 +290 404 3 880475341 +92 123 2 875640251 +151 274 5 879542369 +6 432 4 883601713 +256 1289 4 882150552 +43 216 5 875981128 +189 632 5 893265624 +263 514 3 891299387 +22 117 4 878887869 +250 44 4 878090199 +269 188 2 891450675 +278 98 4 891295360 +155 294 3 879371194 +140 334 2 879013684 +18 190 4 880130155 +239 198 5 889181047 +104 342 3 888442437 +251 258 3 886271496 +72 64 5 880036549 +305 338 3 886308252 +72 566 4 880037277 +339 226 2 891034744 +1 72 4 878542678 +194 511 4 879520991 +316 549 5 880854049 +201 150 4 884139983 +206 1127 4 888180081 +48 187 5 879434954 +279 418 3 875733888 +94 153 5 891725333 +217 53 1 889069974 +94 765 3 891723619 +250 485 4 878092104 +79 288 3 891272015 +230 393 3 880485110 +128 64 5 879966954 +311 367 3 884365780 +76 518 3 875498895 +62 153 4 879374686 +6 515 4 883599273 +215 11 2 891436024 +145 569 4 877343156 +213 715 5 878955915 +94 1199 3 891724798 +10 294 3 879163524 +344 181 3 884901047 +53 100 5 879442537 +20 678 4 879667684 +207 294 3 875504669 +123 285 5 879873830 +256 1028 4 882151690 +174 94 2 886515062 +5 154 3 875636691 +308 488 4 887736696 +222 436 4 878184358 +200 7 4 876042451 +65 121 4 879217458 +7 485 5 891351851 +295 843 4 879517994 +63 111 3 875747896 +7 511 5 891351624 +198 11 4 884207392 +295 1503 2 879517082 +267 28 4 878972524 +91 99 2 891439386 +151 321 4 879523900 +13 302 5 881514811 +293 1098 2 888905519 +42 131 2 881108548 +328 1135 1 885045528 +14 519 5 890881335 +234 142 2 892334852 +230 154 4 880485159 +152 98 2 882473974 +164 313 5 889401284 +55 144 5 878176398 +318 1014 2 884494919 +3 332 1 889237224 +290 818 3 880732656 +125 175 2 879455184 +243 93 2 879987173 +21 670 3 874951696 +268 228 4 875309945 +7 654 5 892135347 +82 178 4 878769629 +318 524 3 884496123 +89 381 4 879459999 +301 123 4 882074726 +193 673 4 889126551 +1 185 4 875072631 +323 79 4 878739829 +21 219 5 874951797 +197 328 4 891409290 +184 15 3 889907812 +313 482 5 891016193 +109 823 3 880572296 +152 167 5 882477430 +297 629 3 875410013 +167 1147 4 892738384 +264 524 3 886123596 +280 571 3 891702338 +222 577 1 878185137 +21 591 3 874951382 +210 501 4 887736998 +280 230 3 891702153 +86 286 3 879569555 +320 174 4 884749255 +144 50 5 888103929 +256 97 4 882165103 +65 427 5 879216734 +198 429 4 884207691 +184 217 3 889910394 +151 709 5 879524778 +18 530 4 880129877 +43 724 4 875981390 +86 319 3 879569555 +242 305 5 879741340 +97 28 5 884238778 +114 195 4 881260861 +188 69 4 875072009 +301 230 4 882077033 +85 241 3 882995340 +129 313 3 883243934 +106 77 4 881451716 +261 748 3 890454310 +188 7 5 875073477 +13 208 5 882140624 +342 288 5 875318267 +299 286 4 877618524 +311 204 5 884365617 +125 813 1 879455184 +276 463 4 874792839 +13 421 2 882140389 +141 472 5 884585274 +222 550 3 878184623 +191 896 3 891562090 +144 516 2 888105197 +216 1047 3 881428365 +151 213 5 879524849 +144 845 4 888104191 +4 356 3 892003459 +96 64 5 884403336 +160 79 4 876859413 +49 369 1 888069329 +110 332 3 886987287 +209 351 2 883589546 +178 1004 4 882827375 +344 97 3 884901156 +11 203 4 891905856 +241 307 4 887249795 +239 312 2 889181247 +276 719 3 877935336 +18 191 4 880130193 +141 535 5 884585195 +18 971 4 880131878 +162 42 3 877636675 +342 591 3 875318629 +278 525 5 891295330 +102 217 2 888803149 +16 447 5 877724066 +343 82 5 876405735 +109 357 2 880572528 +301 732 4 882077351 +303 202 5 879468149 +250 378 4 878092059 +234 507 4 892334803 +217 68 3 889069974 +87 523 5 879875649 +95 26 3 880571951 +245 94 2 888513081 +95 289 2 879191590 +334 1008 4 891545126 +201 896 3 884110766 +126 323 3 887853568 +150 475 5 878746764 +59 871 2 888203865 +227 9 3 879035431 +169 603 5 891359171 +293 553 3 888907453 +201 190 4 884111873 +58 8 4 884304955 +303 840 2 879543988 +328 1106 2 893195825 +58 850 5 884305150 +299 101 2 889501721 +339 573 3 891036016 +235 198 3 889655044 +58 347 3 888638515 +291 455 5 874805958 +178 275 5 882823857 +99 1119 4 885680348 +296 292 5 884196057 +343 569 3 876406421 +18 513 4 880129769 +312 238 3 891699510 +62 294 1 879373215 +97 428 4 884239553 +215 64 4 891435804 +343 47 4 876405130 +334 223 5 891545973 +349 411 4 879466232 +311 433 3 884364931 +236 134 4 890116282 +27 596 2 891542987 +64 211 4 889739318 +144 713 4 888104322 +110 22 4 886987826 +109 665 5 880582384 +1 96 5 875072716 +267 597 3 878970805 +89 127 5 879441335 +59 258 3 888202749 +239 1245 5 889181092 +222 96 5 878181739 +8 294 3 879361521 +95 137 3 879192404 +280 566 4 891701188 +311 469 5 884366227 +11 521 2 891904174 +222 1226 4 883815840 +184 645 3 889910123 +17 1 4 885272579 +223 69 5 891550889 +64 429 4 889737800 +262 252 3 879790603 +87 154 4 879876564 +286 96 4 877532385 +207 53 1 881681725 +334 8 4 891547171 +79 937 2 891271180 +276 147 4 874786686 +314 328 4 877885887 +127 286 1 884364525 +94 203 5 885870577 +348 628 4 886523256 +348 370 4 886523621 +206 896 4 888180018 +85 508 2 879453040 +312 639 5 891698391 +59 1009 4 888203095 +344 1283 2 889814587 +188 211 4 875075062 +343 371 2 876405893 +184 972 3 889909962 +308 746 4 887739056 +62 298 4 879372304 +244 1017 4 880604583 +135 54 3 879858003 +14 151 5 876964725 +327 469 4 887822623 +148 71 5 877019251 +6 156 3 883602212 +52 257 3 882922806 +130 58 2 876251619 +222 413 3 881061213 +76 12 3 882606060 +44 317 4 878347633 +293 172 5 888905618 +95 32 1 888954726 +130 47 3 875801470 +12 97 5 879960826 +38 99 5 892430829 +13 409 3 882141872 +198 188 5 884208200 +328 144 4 885045740 +12 204 5 879960826 +241 750 5 887249576 +216 628 4 880235546 +201 357 4 884111217 +194 582 1 879535549 +72 45 5 880037853 +308 736 3 887738760 +128 427 5 879966685 +346 582 3 874951783 +178 546 3 888514680 +128 422 4 879968598 +44 82 4 878348885 +280 419 3 891701047 +13 910 2 890704721 +312 1021 3 891698365 +85 639 3 879454189 +222 313 4 883814858 +107 321 2 891264432 +5 436 5 875720717 +102 418 3 883748450 +309 326 5 877370383 +198 97 3 884207112 +339 97 4 891034626 +280 316 5 891700184 +303 325 1 879466249 +189 60 3 893265773 +279 1209 4 875314350 +293 68 3 888906990 +222 234 2 878181387 +184 855 4 889909474 +292 657 5 881103711 +323 1017 3 878739394 +303 450 3 879544386 +276 1210 2 877934988 +300 322 4 875650018 +59 972 4 888206125 +286 704 2 877531941 +249 13 4 879640396 +234 521 3 892079077 +83 294 3 887665569 +8 457 1 879361825 +279 1500 5 875306613 +200 218 5 884129410 +150 268 5 878746257 +257 305 4 882049607 +8 385 1 879362124 +28 100 5 881957425 +119 86 4 874782068 +155 328 2 879370860 +246 368 1 884924813 +273 345 3 891293108 +174 117 5 886434136 +230 125 5 880485090 +232 921 4 888549929 +198 323 2 884204637 +14 13 4 880929778 +276 448 4 874792692 +95 742 4 879193512 +103 126 5 880420002 +94 101 2 891720996 +234 1463 5 892333573 +267 187 5 878972071 +244 324 4 880601905 +279 577 1 889151559 +238 476 3 883576799 +158 228 5 880134296 +286 815 3 876521966 +195 298 4 888737703 +190 282 3 891033773 +92 42 4 875653664 +269 211 4 891449075 +188 628 5 875074200 +343 712 4 876406391 +343 375 2 876406978 +321 483 5 879439658 +45 121 4 881013563 +279 397 4 890780547 +23 483 4 884550048 +322 192 5 887313984 +13 318 3 882139686 +175 56 2 877107790 +91 331 5 891438245 +159 1002 3 884027027 +185 196 4 883524172 +244 179 5 880603833 +348 405 4 886523174 +296 950 4 884196741 +43 371 4 883955269 +16 230 5 877720813 +262 275 4 879961980 +102 686 3 888801673 +214 408 4 891543952 +277 151 3 879543768 +3 328 5 889237455 +119 526 2 886177762 +49 168 5 888068686 +63 288 3 875746948 +320 118 1 884748868 +92 825 4 875640487 +72 68 3 880037242 +271 133 4 885848971 +194 317 4 879521657 +13 898 1 884538403 +279 1495 4 889984565 +308 656 3 887736622 +253 568 4 891628295 +267 1401 4 878971816 +244 226 1 880602264 +295 401 3 879519390 +268 141 3 875744832 +344 119 5 884814457 +33 328 4 891964187 +344 619 4 885770181 +347 1035 3 881654522 +235 22 4 889655044 +313 114 4 891013554 +90 613 4 891383835 +72 12 5 880036664 +320 173 5 884750946 +271 435 4 885848802 +94 644 5 886008390 +194 648 4 879521936 +130 276 4 878537447 +340 1 5 884990988 +49 56 5 888067307 +307 143 3 879283203 +263 486 4 891299148 +1 213 2 876892896 +308 826 3 887739427 +151 464 4 879524089 +345 88 4 884992940 +265 328 4 875320084 +240 300 3 885775563 +82 191 4 878769748 +25 498 4 885852086 +151 100 3 879524514 +222 40 1 881060550 +197 385 2 891409893 +293 655 3 888905618 +280 404 3 891701114 +210 404 5 887736739 +234 213 3 892079190 +318 248 3 884494976 +104 544 3 888465413 +336 619 3 877759833 +308 475 4 887737193 +23 228 4 874785582 +234 850 2 892336047 +94 232 3 891721584 +1 233 2 878542552 +144 304 4 888103466 +295 1040 2 879519180 +130 228 4 875216420 +275 630 3 880315243 +63 250 5 875747789 +20 194 3 879669152 +354 462 3 891218116 +308 322 2 887736408 +145 185 4 875271838 +110 1206 3 886988321 +303 410 4 879484846 +317 300 4 891446313 +180 631 5 877544373 +343 76 4 876407565 +345 48 5 884902317 +301 89 2 882076046 +181 1312 1 878962349 +102 233 3 888801622 +64 222 4 889739733 +303 233 4 879484981 +41 313 3 890685449 +229 260 1 891632437 +144 855 4 888105510 +59 569 4 888206161 +191 313 5 891560481 +305 212 3 886324058 +14 408 5 879119348 +279 216 3 884983225 +316 735 4 880854337 +193 288 1 889123777 +216 231 2 880245109 +201 537 3 884141053 +348 240 3 886523839 +22 683 1 878886307 +104 823 1 888465554 +341 294 3 890757997 +169 172 5 891359317 +213 509 4 878955372 +101 840 3 877136659 +90 313 5 891382163 +159 831 2 880557604 +65 191 4 879216797 +114 204 3 881260441 +215 205 3 891435161 +184 259 3 889907096 +121 125 2 891388600 +279 992 4 889151559 +94 1074 2 891723427 +59 229 3 888205921 +73 479 5 888625127 +59 7 4 888202941 +254 472 3 886474456 +29 358 2 882821044 +145 553 3 875272786 +230 199 3 880484755 +234 731 2 892336194 +52 116 4 882922328 +218 33 4 881288386 +203 117 4 880434810 +99 346 4 885678415 +146 307 3 891457905 +59 100 5 888202899 +298 144 4 884182838 +343 655 5 876405697 +297 98 5 875238579 +119 866 3 874774575 +24 129 3 875246185 +181 824 1 878963305 +334 250 3 891544840 +32 250 4 883717684 +181 1384 1 878962052 +92 48 4 875653307 +197 748 3 891409323 +116 840 1 886309958 +251 121 4 886272118 +2 312 3 888550631 +158 68 3 880134532 +275 304 3 876197368 +145 174 5 882181728 +279 1487 1 875314076 +234 8 5 892079585 +193 234 3 889126551 +339 270 2 891036753 +64 8 4 889737968 +354 133 3 891217547 +215 239 3 891436297 +184 531 4 889910653 +233 174 5 877661553 +222 182 4 881058666 +7 168 5 891351509 +90 435 5 891383350 +140 289 4 879013719 +315 223 5 879799486 +293 781 2 888907644 +240 288 5 885775536 +222 829 3 877563934 +311 378 5 884366363 +201 271 4 884110967 +161 56 3 891171257 +181 882 1 878962006 +311 951 3 884365548 +7 269 3 891349991 +43 241 4 883955441 +59 208 5 888205533 +323 246 4 878739177 +224 325 1 888082045 +318 197 5 884496030 +178 1012 4 884837364 +214 531 4 891544222 +49 313 3 888065527 +95 737 3 879197021 +345 174 4 884992367 +333 66 5 891045515 +174 255 5 886434114 +21 569 3 874951820 +328 402 3 885047627 +280 323 2 891700106 +308 233 3 887738346 +314 623 5 877890927 +292 510 4 881104093 +276 684 4 874792436 +237 1192 5 879376553 +7 285 5 891351813 +58 340 4 884305708 +62 1060 1 879373007 +151 224 5 879524293 +96 100 5 884403758 +354 242 5 891180399 +79 269 5 891271792 +91 131 2 891439471 +299 645 4 877881276 +344 283 4 884814432 +62 1136 3 879375977 +152 220 5 884035907 +92 1041 3 875907675 +342 723 3 875319659 +268 949 2 875743909 +234 501 4 892334543 +178 135 2 882826915 +267 470 4 878972931 +159 871 4 880557003 +236 79 4 890118417 +254 183 4 886472713 +238 181 3 883576336 +329 129 3 891655905 +293 282 2 888905170 +135 176 4 879857765 +204 258 2 892388976 +294 547 3 877819972 +151 494 4 879524244 +311 258 4 884363706 +244 1178 3 880608134 +270 596 5 876954456 +83 892 2 891181444 +296 1142 5 884196524 +301 483 4 882076403 +130 222 4 874953769 +102 173 3 888803602 +299 1227 1 878192556 +16 228 5 877720733 +334 461 3 891547744 +343 187 4 876406006 +256 1119 3 882165032 +21 217 3 874951727 +276 22 5 874787496 +315 234 3 879821349 +194 30 3 879524504 +244 54 2 880607335 +87 629 4 879877006 +49 213 3 888066486 +255 249 5 883216245 +325 865 3 891478079 +178 210 5 884837073 +279 167 3 875312441 +11 47 4 891904551 +311 82 5 884364436 +292 405 3 881104820 +58 1106 4 892068866 +57 866 3 883697915 +162 174 4 877636772 +310 832 1 879436035 +345 473 2 884991244 +354 257 3 891216735 +164 322 4 889401432 +117 421 5 881012601 +330 447 4 876546619 +339 475 5 891032856 +5 42 5 875636360 +82 11 4 878769992 +209 898 3 883460304 +214 285 5 892668153 +60 751 2 883325421 +220 301 4 881197948 +214 1039 4 891544269 +133 315 4 890588524 +13 764 2 882141997 +338 204 3 879438063 +178 193 4 882826868 +11 204 3 891904920 +186 591 4 879023073 +193 117 4 889125913 +264 516 5 886123655 +248 100 4 884534716 +178 284 4 888514680 +117 168 5 881012550 +224 569 3 888104313 +223 248 1 891549683 +162 50 5 877635662 +129 339 2 883244737 +7 432 4 891352831 +77 181 3 884732278 +279 662 2 875310631 +287 39 5 875336652 +157 273 5 886889876 +331 190 3 877196308 +177 1 3 880130699 +286 234 3 877532093 +10 656 5 877886846 +89 117 5 879441357 +327 143 4 888251408 +116 806 4 876453800 +207 313 4 885066537 +87 519 4 879877652 +28 174 5 881956334 +181 1128 1 878962279 +297 56 5 875239422 +246 100 4 884921033 +188 173 5 875075118 +119 486 4 874781547 +283 588 4 879297965 +188 210 4 875071891 +291 770 4 874834799 +109 278 3 880571770 +11 402 4 891904662 +248 928 3 884536117 +258 313 5 885700778 +256 576 3 882164603 +187 792 5 879465340 +291 175 2 874867966 +189 652 5 893265428 +313 163 2 891016757 +181 1371 1 878962240 +239 479 5 889178762 +119 546 4 874775914 +144 521 4 888105312 +305 298 4 886322150 +343 823 3 876403851 +326 732 5 879877143 +95 675 2 888954310 +279 408 5 875249210 +276 456 2 874787237 +345 151 5 884991191 +184 604 4 889908693 +277 129 4 879543653 +197 720 2 891410039 +253 294 4 891627829 +303 9 5 879466830 +296 654 5 884197419 +32 246 4 883717521 +279 530 3 890780576 +49 590 1 888067579 +95 474 4 880570909 +318 1032 3 884498210 +318 194 5 884495590 +286 683 5 884583549 +191 307 3 891560935 +48 50 4 879434723 +298 195 4 884183277 +171 245 3 891034801 +339 82 4 891035850 +81 926 3 876533824 +207 42 4 877878688 +269 153 3 891449346 +303 1071 2 879485352 +7 54 3 892132380 +339 198 5 891033382 +11 435 4 891904968 +23 421 5 874786770 +188 511 2 875072211 +137 327 4 881432671 +76 690 2 882607017 +38 720 5 892432424 +221 1035 3 875246124 +59 928 4 888203449 +13 814 5 886302261 +318 315 5 884470294 +342 607 3 875318963 +200 121 5 876042268 +269 654 4 891448980 +7 89 5 891351082 +136 847 4 882693371 +254 243 2 887347834 +183 483 5 892323452 +84 265 5 883453617 +151 193 4 879524491 +70 751 4 884063601 +314 938 3 877886099 +291 1239 2 874835279 +234 192 3 892078984 +38 67 4 892434312 +156 12 3 888185853 +56 228 3 892676340 +354 463 4 891217575 +311 178 5 884364437 +122 214 2 879270676 +314 591 5 877887002 +1 258 5 878873389 +230 209 1 880485283 +42 142 4 881109271 +328 750 4 885044519 +130 357 5 875216933 +267 464 5 878974783 +267 324 3 878970114 +190 300 4 891033606 +276 853 5 889174849 +193 465 3 889126867 +59 126 5 888202899 +347 416 3 881654715 +109 69 4 880572561 +296 948 1 884196149 +28 143 4 881956564 +351 340 1 879481424 +59 760 2 888203659 +318 503 4 884497402 +181 335 1 878961748 +48 654 5 879434792 +94 693 4 891720921 +215 450 2 891436470 +82 518 4 878769747 +155 325 2 879371261 +303 318 5 879466523 +23 28 3 874786793 +1 81 5 875072865 +303 416 3 879468179 +320 472 3 884748750 +57 410 3 883697378 +305 192 2 886323275 +293 144 4 888905819 +13 387 3 886304229 +327 215 4 887820695 +327 886 2 887737493 +299 367 4 878192497 +9 286 5 886960055 +111 326 3 891680131 +246 451 2 884923003 +260 1025 5 890618729 +293 239 3 888907166 +305 151 4 886324433 +116 1253 2 876454109 +124 166 5 890287645 +161 213 2 891171887 +198 15 3 884205185 +313 132 5 891013589 +268 717 1 876513785 +113 100 4 875935610 +42 281 3 881105728 +234 709 4 892079337 +128 609 4 879967550 +293 1101 3 888906677 +156 64 3 888185677 +194 808 2 879527999 +25 455 4 885853415 +282 258 5 879949367 +327 82 2 887820448 +64 56 5 889737542 +201 276 5 884111598 +314 126 2 877886971 +325 177 5 891478627 +136 747 4 882848866 +181 1318 1 878962349 +280 265 4 891700588 +271 283 4 885847876 +262 405 2 879962367 +6 205 3 883600878 +308 283 3 887737194 +6 133 4 883601459 +130 158 5 875801897 +85 289 3 879452334 +239 530 5 889179290 +122 553 3 879270741 +7 530 5 891350900 +334 59 5 891546000 +18 14 5 880130431 +95 132 3 880570993 +313 670 3 891029877 +279 412 3 875297708 +184 462 4 889908873 +102 685 3 888801876 +271 732 4 885848672 +10 64 4 877886598 +164 125 5 889402071 +276 230 4 882659602 +216 367 3 881428365 +49 628 4 888068167 +141 50 4 884584735 +114 191 3 881309511 +82 127 2 878769777 +207 1378 3 877878714 +55 56 4 878176397 +89 221 1 879441687 +334 474 3 891546257 +160 21 1 876769480 +311 326 2 884364047 +286 191 4 877531407 +23 177 4 884550003 +32 100 3 883717662 +332 156 4 888359944 +236 478 3 890118106 +251 50 5 886272086 +7 489 3 891353477 +59 134 5 888204841 +43 117 4 883954853 +99 258 5 885678696 +295 153 5 879517324 +1 78 1 878543176 +6 70 3 883601427 +13 894 1 883670742 +279 753 2 875307443 +11 735 3 891904300 +92 778 4 875811457 +257 151 4 882050266 +23 705 4 874785526 +320 411 3 884749119 +288 202 5 889225535 +234 921 4 892079434 +358 469 4 891271063 +13 341 2 886952422 +343 275 5 876408139 +326 646 2 879875112 +256 172 3 882164443 +90 272 5 891382121 +294 118 3 877819941 +321 30 4 879439658 +339 133 4 891033165 +205 289 4 888284710 +236 307 4 890117902 +244 747 4 880606760 +303 194 5 879466742 +6 481 5 883600914 +236 204 3 890118393 +90 269 5 891382310 +181 319 3 878961173 +193 268 3 889122906 +159 451 5 884360502 +312 675 5 891698485 +234 79 3 892079910 +214 7 5 892668130 +303 480 4 879466523 +7 657 4 891351234 +305 806 3 886322720 +18 89 3 880130065 +181 676 3 878962392 +180 421 5 877128388 +119 272 5 886611471 +160 432 3 876861185 +227 244 3 879035205 +189 1098 4 893265506 +291 1253 3 874834944 +54 327 5 880928893 +95 417 3 888956158 +318 239 4 884497235 +303 506 4 879467328 +340 405 5 884991817 +62 306 4 879371909 +279 702 4 875309760 +181 742 4 878962623 +197 187 5 891409798 +10 702 3 877886722 +296 279 4 884196640 +269 179 4 891447141 +5 422 4 875636767 +58 663 2 884304728 +343 20 5 876408138 +270 441 5 876956420 +312 1124 4 891698553 +310 748 3 879435729 +236 735 5 890116599 +13 452 3 882397039 +291 470 3 874834768 +92 281 3 875812331 +295 412 2 879519237 +346 245 4 875266665 +46 127 5 883616133 +62 100 4 879372276 +343 12 5 876405735 +103 300 3 880416727 +174 369 1 886515272 +85 566 3 879454273 +217 554 3 889070050 +31 504 5 881548110 +82 476 3 878768765 +91 265 5 891439018 +48 202 4 879434791 +130 3 5 876250897 +83 22 5 880307724 +59 188 4 888205188 +236 661 3 890116451 +152 255 5 884035936 +352 55 1 884289728 +262 790 3 879795379 +326 503 3 879876542 +145 200 4 877343121 +216 172 4 880234639 +233 57 5 880190451 +314 1520 3 877892052 +131 313 5 883681723 +307 427 3 877121988 +360 334 4 880353736 +292 124 4 881104147 +152 1028 5 880149197 +314 268 5 877885836 +160 175 4 876860808 +277 117 4 879544145 +318 49 3 884497257 +354 694 5 891217299 +294 250 5 877819459 +264 1270 2 886122194 +276 249 4 874786632 +222 1089 1 877563659 +218 504 3 881288574 +56 623 3 892910268 +13 25 1 882141686 +13 632 3 884538664 +292 151 5 881104268 +130 374 4 875217392 +24 508 4 875323833 +318 384 3 884498210 +93 275 4 888705224 +7 142 3 891354090 +144 293 4 888104283 +308 1046 4 887740649 +78 269 3 879633467 +276 228 4 880913800 +142 895 4 888640143 +234 294 3 891033715 +234 1123 3 892335342 +87 1190 4 879876336 +286 790 1 877535208 +318 934 4 884495382 +215 474 4 891435022 +68 1047 1 876974379 +7 423 5 891351509 +110 204 3 886989276 +346 62 3 875263634 +72 181 1 880037203 +303 160 4 879468375 +200 357 5 884128498 +262 845 4 879962052 +235 474 5 889655112 +326 526 5 879874964 +125 949 3 892838623 +7 156 5 891351653 +347 79 5 881653890 +13 416 3 882398934 +127 227 4 884364867 +13 502 5 882141458 +308 490 4 887738104 +222 672 1 878183777 +251 132 5 886271641 +109 742 5 880564457 +97 655 5 884238860 +222 94 3 878184866 +303 234 5 879467260 +295 1459 5 879519237 +325 143 1 891479017 +186 742 3 879023073 +68 1028 4 876974430 +15 696 2 879456262 +256 662 2 882165032 +28 271 4 881955281 +49 129 2 888068079 +127 300 5 884364017 +102 326 3 879082298 +144 900 4 888103371 +314 204 5 877888644 +293 153 4 888905948 +79 286 5 891271792 +315 302 5 879799301 +181 1202 1 878962720 +23 188 3 877817151 +83 323 4 883868420 +59 48 5 888204502 +294 7 4 877819563 +257 307 4 879029581 +49 3 3 888068877 +56 98 4 892679067 +43 225 2 875975579 +280 125 2 891701148 +346 4 4 874948105 +292 429 5 881105587 +151 1065 3 879542413 +178 849 3 882828021 +145 281 4 875272299 +327 90 3 887819194 +130 183 5 875801369 +213 11 4 878956156 +42 451 2 881108982 +268 1059 3 875743310 +279 727 3 890780864 +18 194 3 880129816 +312 57 5 891699599 +69 109 3 882145428 +112 306 5 891299783 +308 170 3 887737130 +325 474 5 891478392 +314 785 3 877890960 +327 949 4 887819316 +94 829 2 891724800 +222 419 2 878182279 +42 25 3 881110670 +296 685 4 884196896 +189 274 4 893264735 +280 381 3 891700925 +144 22 5 888105439 +109 245 3 880562908 +119 658 5 874782127 +172 697 3 875536498 +18 515 5 880130155 +222 364 1 878185137 +87 393 4 879876703 +244 208 5 880606300 +363 391 2 891498811 +332 148 5 887938486 +272 474 5 879454753 +95 523 4 879197562 +102 183 4 888801360 +294 299 3 877818982 +27 925 3 891543245 +164 984 4 889401456 +121 9 5 891390013 +340 204 4 884990004 +115 530 5 881172117 +334 72 3 891549192 +268 31 4 875310311 +60 514 4 883326300 +145 637 3 882182689 +90 6 4 891384357 +344 508 4 884814697 +98 70 3 880499018 +279 1000 4 875314313 +279 390 3 875744641 +157 407 4 886891218 +334 289 3 891544491 +307 527 5 878066938 +327 237 4 887745494 +308 116 4 887737594 +211 687 2 879437184 +189 173 5 893265160 +271 200 5 885849356 +342 1007 4 874984507 +328 188 5 885046498 +144 204 2 888105116 +43 298 4 875975211 +268 826 1 875743065 +149 269 5 883512557 +92 252 4 886443582 +339 214 3 891033226 +18 286 5 880129305 +169 181 5 891359276 +189 281 2 893264766 +254 238 3 886473120 +250 1014 4 883263439 +130 946 4 875801830 +172 657 3 875538027 +10 615 4 877892276 +216 95 3 881428365 +95 24 3 879192542 +360 116 3 880354275 +301 692 3 882076619 +345 121 3 884991384 +164 245 5 889401362 +323 744 5 878739436 +264 558 5 886122447 +197 340 2 891409199 +237 28 4 879376435 +196 306 4 881251021 +179 305 4 892151270 +342 132 5 875319129 +56 82 4 892676314 +346 187 3 874948030 +118 547 5 875385228 +332 1150 3 887938631 +250 742 3 878089786 +193 871 3 890860319 +293 447 4 888907290 +348 928 5 886523683 +339 12 5 891032659 +292 343 2 881103478 +209 349 2 883589546 +23 99 4 874786098 +49 258 2 888065895 +234 490 4 892079803 +201 447 5 884112581 +43 501 4 883955605 +290 550 3 880475807 +276 290 4 874786854 +346 322 3 886273541 +292 252 3 881104881 +363 405 4 891497015 +355 300 4 879486529 +351 879 5 879481461 +211 263 3 879461395 +332 696 3 887938760 +118 185 5 875384979 +308 483 3 887736843 +100 689 3 891375212 +241 880 5 887249889 +253 566 4 891628578 +292 919 5 881103508 +334 207 4 891545950 +223 255 4 891549382 +313 174 4 891014499 +244 1098 5 880605578 +299 501 3 889501790 +328 284 3 885047593 +18 71 4 880131236 +232 471 3 880062414 +311 174 5 884364538 +7 608 4 891351653 +201 708 4 884140247 +345 285 5 884901701 +184 1136 4 889912890 +130 49 4 875802236 +232 22 3 888549988 +46 288 2 883611307 +213 151 5 878955886 +210 216 4 887737603 +75 475 5 884049939 +90 323 3 891382634 +14 7 5 876965061 +1 212 4 875072895 +272 772 2 879455220 +332 1016 5 887916529 +117 597 4 881010052 +184 287 4 889908050 +79 813 5 891271792 +10 200 5 877889261 +119 144 4 887038665 +158 277 4 880132658 +59 570 4 888205745 +322 185 5 887313850 +129 995 2 883245452 +42 692 4 881107773 +298 496 5 884127603 +318 481 4 884496156 +293 134 5 888905618 +60 1126 4 883327174 +285 538 5 890595479 +345 919 2 884991077 +72 70 4 880036691 +342 25 2 875318328 +94 31 4 891721286 +223 717 1 891550470 +339 190 4 891034215 +130 346 4 884623704 +218 265 3 881288408 +362 333 5 885019261 +334 450 1 891550338 +176 751 1 886046979 +145 1212 2 875272196 +189 815 3 893264558 +60 485 4 883327222 +293 257 2 888904696 +306 100 4 876504286 +308 319 4 887736408 +130 53 3 876251972 +320 501 3 884751462 +321 1194 5 879438607 +155 319 3 879370963 +338 310 3 879437522 +214 325 3 891542622 +49 418 3 888067031 +57 1028 3 883697432 +236 185 5 890118307 +138 617 4 879024128 +232 173 4 888549674 +331 100 4 877196308 +297 157 2 875238853 +95 88 4 880571016 +268 333 4 876513565 +58 156 5 884304955 +299 378 3 878192680 +294 327 3 877818982 +286 1091 4 877534859 +234 601 3 892334765 +207 156 2 878104438 +269 492 4 891449550 +357 284 4 878951691 +255 53 3 883216672 +92 717 3 886443416 +13 161 5 882397741 +65 197 5 879216769 +17 237 2 885272628 +167 698 4 892738307 +313 609 3 891014782 +42 99 5 881108346 +65 210 4 879217913 +303 366 3 879485221 +233 98 5 877661724 +354 86 5 891218312 +268 1090 2 875745536 +7 226 5 891353614 +81 7 4 876533545 +323 886 3 878738997 +119 87 5 874781829 +299 418 4 889501790 +174 456 1 886515240 +8 89 4 879362124 +79 900 4 891271245 +232 215 3 888549563 +271 338 1 885847194 +356 313 5 891405651 +177 271 2 882141868 +181 458 3 878962350 +6 151 3 883599558 +363 1495 5 891497278 +117 751 5 886018996 +306 744 4 876504054 +90 494 5 891383241 +117 368 3 881010610 +181 1386 1 878962119 +233 418 4 877664010 +44 542 3 878348036 +13 303 4 881514876 +127 243 5 884364764 +92 561 3 875812413 +236 864 2 890117073 +234 660 4 892334543 +363 1168 2 891496587 +177 150 4 880130807 +117 121 4 880126038 +301 514 3 882076021 +194 1 4 879539127 +276 496 4 882659476 +221 1210 3 875246887 +363 673 2 891496543 +218 516 5 877488692 +85 414 4 879828720 +60 498 5 883326566 +188 233 3 875074266 +144 960 2 888105784 +184 88 3 889909551 +83 412 1 883868208 +194 631 2 879546551 +11 751 2 891902092 +178 1051 3 885784583 +318 1023 2 884495091 +328 132 5 885046420 +142 28 4 888640404 +293 657 4 888905582 +13 437 1 882397068 +246 231 1 884922898 +346 727 1 874947794 +323 199 4 878739953 +194 510 4 879521474 +99 123 3 885678997 +280 483 4 891701066 +314 1276 4 877887179 +305 943 2 886323464 +106 923 4 881453355 +174 383 1 886515171 +62 955 4 879374072 +10 223 5 877888545 +234 526 3 892334045 +92 660 4 875654125 +361 273 3 879441215 +1 143 1 875072631 +332 258 5 887916151 +286 559 4 877534081 +308 805 4 887739471 +326 448 3 879877349 +323 22 5 878739743 +365 301 5 891303586 +23 315 3 884550320 +256 783 4 882165328 +3 334 3 889237122 +195 99 3 888737277 +236 223 5 890116032 +38 389 5 892433660 +95 505 3 888954513 +351 873 3 879481643 +271 83 4 885848408 +297 250 1 874955085 +91 351 4 891438617 +119 472 4 874775406 +42 1051 4 881106270 +270 703 4 876955019 +311 526 5 884364873 +94 562 3 891721494 +352 746 4 884290361 +350 174 5 882346720 +233 286 3 876690514 +250 1 4 883263374 +154 806 4 879139040 +255 569 1 883216672 +229 875 1 891632402 +332 1013 3 887938798 +58 237 4 884304396 +320 976 2 884749567 +307 169 5 879283625 +110 794 3 886988909 +244 818 2 880605010 +330 596 5 876544690 +343 474 5 876406677 +59 25 4 888203270 +64 173 5 889737454 +280 934 2 891702291 +283 627 4 879297966 +314 120 3 877887094 +336 13 3 877756890 +312 587 3 891699399 +222 411 3 878185137 +181 933 1 878962675 +270 741 5 876953967 +59 65 4 888205265 +174 63 4 886514985 +313 44 3 891015049 +264 208 5 886123415 +59 382 4 888205574 +301 511 4 882075803 +341 877 3 890758113 +60 1124 4 883326652 +303 849 3 879485589 +1 151 4 875072865 +13 786 3 886303088 +56 94 4 892910292 +59 175 4 888205300 +58 246 5 884304592 +234 95 3 892079689 +365 15 3 891304152 +164 148 5 889402203 +194 202 3 879524216 +151 425 4 879528647 +83 1043 3 880308807 +116 180 5 886310197 +49 347 3 888065487 +233 644 5 880610635 +102 271 2 888781860 +144 285 4 888103969 +71 475 5 877319330 +145 1077 3 875272245 +299 742 4 877878339 +263 79 4 891298047 +276 631 3 874796412 +308 968 4 887739987 +1 51 4 878543275 +269 435 3 891449011 +95 736 4 888954170 +311 708 5 884366397 +244 90 4 880607684 +313 318 4 891013712 +258 310 5 885700778 +123 485 5 879872792 +334 183 4 891545950 +130 743 2 878537778 +269 64 4 891447960 +328 451 4 885048159 +43 300 5 875975135 +130 12 4 875216340 +90 185 5 891384959 +12 132 5 879959465 +189 216 5 893265478 +207 135 2 877822350 +315 55 5 879821267 +5 139 3 875721260 +195 469 3 880710046 +88 302 3 891037111 +153 678 2 881370935 +148 1012 4 877400154 +270 155 5 876955770 +218 273 4 881288351 +145 674 4 877343184 +223 369 1 891550253 +222 4 3 878183924 +128 785 2 879968243 +192 127 4 881367456 +228 651 4 889388521 +354 191 4 891217082 +328 82 4 885046537 +344 716 3 884901403 +38 450 1 892432624 +269 137 4 891446193 +248 55 4 884534793 +310 304 5 879435664 +13 612 4 882140318 +130 335 3 875801254 +62 774 1 879376483 +135 77 4 879858003 +294 264 2 877819090 +89 813 5 879461219 +194 433 3 879523104 +94 39 3 891721317 +318 396 1 884498684 +151 223 5 879524088 +181 1120 1 878962279 +312 234 5 891712535 +177 175 5 880130972 +297 50 5 874954541 +313 162 3 891017270 +275 89 3 875154878 +293 202 3 888906490 +330 465 5 876547250 +323 100 4 878739177 +135 566 3 879857930 +229 358 1 891632437 +288 900 5 886372155 +295 1221 5 879518455 +162 151 3 877636191 +87 55 4 879875774 +128 378 5 879967804 +268 267 3 875742077 +282 302 5 879949347 +361 222 2 879441253 +280 286 4 891700185 +334 276 4 891545089 +361 387 3 879441008 +87 385 5 879875818 +344 175 5 884901110 +312 481 5 891698893 +130 1047 5 875801897 +357 222 5 878951498 +190 118 3 891033906 +308 192 5 887736696 +106 8 4 881452405 +357 928 4 878952041 +320 678 3 884748418 +217 117 4 889069842 +216 764 2 880233153 +230 633 4 880485283 +263 82 4 891299697 +233 495 4 877661364 +314 672 5 877888723 +204 310 1 892389073 +279 240 4 889151559 +188 195 3 875073179 +177 179 5 880131057 +181 330 1 878961668 +184 458 3 889907925 +86 872 3 879570366 +79 313 2 891271086 +53 181 4 879443046 +125 204 5 879454139 +326 528 3 879875112 +276 747 4 874795448 +238 300 4 883575836 +39 333 4 891400214 +201 175 2 884140022 +276 746 4 874791806 +13 334 1 886952467 +117 12 5 881011350 +301 651 5 882075994 +280 790 4 891702013 +3 350 3 889237076 +345 956 4 884916322 +174 393 4 886514837 +181 866 1 878963037 +290 158 5 880474977 +360 238 4 880355845 +247 257 4 893081396 +162 117 4 877635869 +43 336 4 880317271 +258 311 4 885700946 +348 819 4 886523710 +191 328 3 891562090 +215 483 4 891435022 +184 665 2 889910098 +114 157 2 881260611 +184 52 4 889910034 +49 821 1 888069246 +233 212 5 877665324 +345 173 5 884902317 +55 1089 1 878176134 +293 99 3 888906402 +13 353 4 886261450 +99 196 4 885680578 +49 325 3 888065744 +367 1012 4 876689825 +123 127 5 879809943 +194 383 1 879554842 +141 825 4 884585247 +323 150 4 878739568 +279 1180 2 890781034 +330 575 4 876547165 +109 1244 3 880571872 +177 318 4 880130618 +85 792 4 879828941 +248 249 4 884536117 +298 237 5 884126240 +276 139 4 889174904 +23 257 3 890276940 +52 657 5 882922833 +201 1194 4 884111899 +330 8 5 876546236 +268 403 4 875309914 +70 176 4 884066573 +280 53 5 891702544 +234 152 4 892826701 +13 759 2 882398542 +325 181 4 891478160 +268 269 4 876513523 +154 202 3 879139096 +222 689 4 881058008 +354 269 4 891180399 +42 222 4 881105882 +99 232 4 886519075 +96 170 5 884403866 +111 1024 3 891679939 +87 300 3 879875418 +328 349 2 888641949 +13 190 4 882397145 +347 227 4 881654734 +117 258 4 880126022 +229 286 4 891633029 +329 591 2 891655812 +345 508 4 884901000 +291 396 4 874867757 +320 1188 4 884749411 +94 34 1 891723558 +72 515 4 880036602 +218 695 3 881288574 +18 12 5 880129991 +346 1110 1 875264985 +218 762 4 877489091 +178 58 5 882827134 +334 302 5 891544177 +303 49 2 879483901 +145 1208 4 875272196 +42 925 4 881106113 +329 79 4 891656391 +286 11 5 877531975 +33 343 4 891964344 +326 79 4 879875203 +339 183 4 891032828 +308 521 3 887736798 +264 1225 3 886123530 +130 672 5 875801920 +114 183 5 881260545 +276 229 3 874792483 +11 383 2 891905555 +256 202 3 882165032 +273 311 4 891292905 +116 661 4 876454023 +13 137 5 882139804 +332 82 5 888098524 +6 479 5 883601053 +91 689 5 891438617 +79 137 4 891271870 +308 265 3 887737647 +10 651 4 877888812 +295 1401 5 879966498 +18 181 3 880131631 +49 299 2 888068651 +343 423 5 876408139 +92 423 3 875655990 +244 762 3 880604616 +363 288 4 891493723 +43 423 4 883955498 +201 1425 3 884111637 +84 31 4 883453755 +59 1047 2 888203371 +234 157 2 892334400 +300 328 3 875650068 +345 1082 2 884994569 +191 269 3 891562090 +268 114 5 875744966 +147 269 4 885593812 +71 222 3 877319375 +76 59 4 875027981 +232 462 4 888549879 +102 248 3 877915935 +205 326 4 888284454 +200 25 4 876042234 +311 431 4 884365201 +197 195 5 891409798 +356 937 2 891406040 +303 1016 3 879544727 +101 815 3 877136392 +119 1259 3 874780996 +264 56 5 886122261 +210 447 5 887737631 +276 63 3 874792168 +308 178 4 887737719 +64 181 4 889737420 +303 1014 3 879544588 +271 284 3 885847956 +201 513 3 884114069 +92 628 4 875639823 +54 333 5 880928745 +301 187 4 882076403 +81 410 4 876533946 +31 498 4 881548111 +21 234 5 874951657 +311 212 3 884366397 +264 792 5 886123415 +132 137 4 891278996 +307 463 5 879283786 +311 275 4 884963136 +22 403 5 878887810 +43 318 5 875975717 +201 61 2 884111986 +186 770 2 879023819 +125 475 1 879454244 +339 73 3 891035003 +145 120 2 888398563 +51 132 4 883498655 +130 84 4 876252497 +347 144 5 881654186 +110 715 2 886989440 +100 905 3 891375630 +311 470 3 884365140 +189 248 4 893264174 +365 1017 4 891304213 +44 227 4 883613334 +201 1098 2 884112747 +295 25 5 879518042 +193 276 4 890860319 +125 1093 1 892839412 +10 711 4 877888812 +276 272 5 885871447 +43 1053 3 883955859 +342 427 4 875319254 +14 211 4 879119693 +8 190 4 879362183 +280 144 2 891700514 +333 739 5 891045410 +11 721 3 891905279 +94 380 3 891722760 +8 686 3 879362356 +115 462 4 881171273 +264 559 5 886122446 +299 297 3 877877691 +299 1021 3 878192721 +268 483 5 875309859 +95 202 4 879198209 +24 25 4 875246258 +159 546 4 880557621 +174 312 5 886432972 +368 379 4 889783562 +293 943 2 888906576 +186 550 4 879023985 +250 582 4 878090114 +185 638 4 883524364 +234 566 2 892335108 +221 257 4 875244475 +187 659 5 879465274 +313 187 4 891014373 +116 199 4 876454174 +109 9 3 880564607 +174 412 1 886433919 +7 208 5 891352220 +371 97 5 877487440 +296 255 2 884196584 +280 82 2 891700925 +271 275 4 885847693 +110 791 2 886989473 +59 926 1 888203708 +217 576 1 889070087 +145 665 5 877343212 +334 204 4 891547190 +42 568 4 881107256 +200 143 5 884128499 +89 387 5 879459909 +311 588 4 884365284 +235 269 4 889654530 +287 156 5 875336804 +344 204 4 884901024 +43 289 4 875975085 +99 11 5 885680138 +145 159 4 875272299 +200 82 5 884129656 +269 316 4 891446132 +13 517 5 882139746 +184 208 4 889908985 +327 144 4 887820293 +218 517 3 877488634 +6 487 5 883600785 +279 792 3 875308843 +268 161 3 875744199 +85 124 5 882813248 +75 472 4 884050733 +18 483 4 880129940 +234 291 3 892335342 +196 238 4 881251820 +318 750 4 884469971 +2 281 3 888980240 +295 102 4 879518339 +276 81 4 874791101 +194 1409 2 879552662 +291 1078 4 875086920 +145 896 2 888396828 +160 762 3 876769148 +290 216 4 880475218 +174 1254 1 886434421 +327 435 4 888251521 +145 471 4 885622707 +83 465 4 880308578 +277 591 4 879543768 +214 56 5 892668130 +345 1315 3 884994631 +330 44 5 876546920 +328 1277 3 885049084 +6 131 5 883602048 +334 693 3 891547083 +156 192 4 888185735 +91 479 4 891439208 +130 22 5 875217265 +75 271 5 884051635 +328 265 5 885045993 +291 379 3 874834827 +222 815 2 877563716 +347 168 5 881653798 +328 510 5 885046376 +290 423 5 880474422 +12 157 5 879959138 +151 114 5 879524268 +294 603 5 889854323 +244 232 4 880608670 +130 63 4 876252521 +259 762 2 883372151 +58 425 5 884304979 +245 112 4 888513575 +184 1232 3 889910123 +122 727 4 879270849 +144 129 4 888104234 +305 357 5 886323189 +16 96 5 877717833 +1 175 5 875072547 +7 618 4 891350900 +16 546 4 877726944 +80 45 4 887401585 +173 294 5 877556864 +104 1017 1 888465634 +161 523 3 891170686 +179 1316 3 892151489 +12 71 4 879959635 +59 141 4 888206605 +339 636 4 891035248 +321 485 4 879439787 +201 204 4 884113082 +59 516 4 888204430 +56 118 4 892679460 +191 332 2 891562090 +65 318 5 879217689 +249 993 3 879571779 +145 229 3 885557699 +262 336 3 879961474 +235 52 4 889656168 +116 604 3 876454174 +49 476 1 888069222 +286 325 1 889651253 +221 588 3 875246209 +197 344 4 891409070 +198 23 4 884208491 +207 28 4 877822162 +345 251 5 884994119 +145 760 2 888398123 +316 1084 4 880853953 +77 179 5 884752806 +83 575 4 880309339 +328 55 4 885046655 +178 1035 4 882828350 +346 33 5 875261753 +89 26 3 879459909 +334 1315 4 891545185 +263 69 5 891298914 +53 199 5 879442384 +312 498 5 891699568 +213 1 2 878870719 +270 173 5 876955531 +85 690 2 890255371 +85 404 3 882994947 +184 949 3 889909618 +330 823 3 876544872 +230 1050 3 880485136 +184 255 3 889907468 +312 132 5 891699121 +322 179 5 887314416 +32 118 3 883717967 +184 1010 4 889907896 +18 180 4 880130252 +55 89 5 878176398 +373 588 3 877098821 +274 546 3 878945918 +363 97 2 891496513 +177 197 4 880130758 +87 796 4 879877280 +24 477 5 875323594 +137 261 5 882805603 +253 237 4 891628002 +298 200 3 884183063 +344 597 2 884900454 +305 638 5 886324128 +85 499 4 879455114 +44 168 5 878347504 +33 258 4 891964066 +293 8 3 888905736 +365 109 2 891304106 +90 42 4 891384885 +99 963 3 885679998 +176 250 4 886047963 +234 414 4 892336021 +308 515 3 887737536 +314 983 4 877892488 +85 1168 3 882995908 +137 50 5 881432937 +130 1016 4 874953698 +117 1057 2 881010401 +225 64 4 879539727 +109 117 5 880564457 +85 199 5 879829438 +15 924 3 879456204 +179 269 3 892151064 +154 333 3 879138287 +170 333 4 886190330 +49 202 3 888068816 +62 183 4 879374893 +343 1132 4 876403746 +43 866 4 883956417 +95 471 5 884266051 +116 294 2 876453376 +95 2 2 888955909 +223 120 2 891550504 +151 419 3 879524878 +291 1098 4 875086330 +303 79 5 879466891 +15 289 3 879455262 +308 443 3 887740500 +43 316 5 892349752 +334 77 3 891549247 +26 864 2 891383899 +130 779 4 878537558 +138 514 5 879024043 +234 237 3 892336021 +297 79 3 875239125 +335 324 1 891567098 +334 620 2 891545540 +276 597 3 874787150 +69 689 3 882027284 +297 864 3 874954541 +153 64 5 881371005 +184 699 5 889909914 +58 568 4 884304838 +178 480 3 882826048 +348 288 5 886522495 +62 173 5 879374732 +307 428 4 877118113 +222 946 2 878182237 +117 240 3 880126038 +10 705 4 877892050 +94 1032 2 891723807 +326 185 5 879875203 +59 739 4 888206485 +307 189 4 877121617 +339 431 4 891035488 +318 182 4 884496549 +321 494 4 879440318 +217 185 3 889069659 +72 435 5 880037242 +249 431 5 879641194 +299 1141 4 877880522 +13 888 2 886261388 +151 972 4 879543366 +235 705 5 889655204 +160 4 4 876861754 +12 15 5 879959670 +62 78 2 879376612 +314 42 5 877888610 +89 151 5 879441507 +230 582 4 880485380 +120 9 4 889489886 +316 614 2 880854267 +331 454 3 877196702 +40 271 2 889041523 +345 172 4 884991831 +55 1016 1 878176005 +92 1213 2 875907079 +73 28 3 888626468 +373 694 5 877098643 +373 707 4 877100378 +336 405 3 877760374 +325 484 5 891478643 +8 301 4 879361550 +141 237 4 884584865 +141 1258 4 884585071 +345 216 5 884901701 +87 88 5 879876672 +209 1105 2 883589568 +7 587 4 891353950 +290 98 4 880474235 +16 692 4 877719158 +175 176 3 877107255 +185 197 5 883524428 +328 331 4 885045085 +244 20 4 880604758 +181 1048 2 878963275 +246 840 4 884924045 +269 293 3 891446308 +246 385 1 884922272 +221 789 4 875245739 +130 150 5 874953558 +109 176 5 880577868 +174 332 5 886432901 +94 28 4 885873159 +85 1098 4 879828912 +48 522 2 879434886 +237 98 4 879376327 +293 23 4 888905865 +313 494 3 891016193 +178 70 4 882827083 +293 322 2 888904456 +6 528 4 883602174 +236 15 5 890116628 +38 393 5 892430282 +276 737 4 890979964 +143 328 4 888407656 +276 854 4 874791806 +90 693 3 891385752 +18 960 4 880131004 +251 222 4 886272547 +7 172 4 891350965 +44 106 2 878347076 +85 382 4 879454820 +184 13 3 889907839 +286 20 4 876521858 +56 219 5 892679144 +345 403 3 884992922 +45 1061 2 881016056 +73 156 4 888625835 +254 125 3 886473158 +184 202 3 889909768 +360 309 2 880354094 +214 236 5 892668153 +18 179 4 880129877 +57 1094 2 883697990 +363 616 3 891498135 +200 29 4 884130540 +148 228 4 877016514 +63 323 1 875746986 +270 66 4 876955531 +6 28 2 883603013 +291 834 3 874834358 +314 143 5 877890234 +82 520 3 878769703 +346 218 3 875263574 +103 222 3 880415875 +189 657 5 893265123 +154 182 5 879138783 +13 384 2 882141814 +291 1083 3 874834876 +148 473 5 877399322 +271 1091 4 885849648 +264 219 5 886122447 +154 50 5 879138657 +370 56 2 879434587 +27 298 4 891543164 +268 395 2 875744021 +82 480 4 878769373 +94 118 3 891723295 +342 1368 5 874984507 +299 889 3 884023918 +177 245 3 880130534 +44 185 4 878347569 +371 175 1 877487266 +186 237 2 879023934 +102 176 3 888801360 +43 238 2 883955160 +326 134 3 879875797 +243 713 3 879987495 +349 105 2 879466283 +82 25 2 878768435 +257 50 5 882049897 +14 70 1 879119692 +346 17 1 874950839 +6 467 4 883602284 +227 276 4 879035251 +157 298 4 886889876 +290 1336 3 880733010 +189 847 4 893264150 +86 889 5 879570973 +249 333 4 879571521 +42 211 4 881107880 +152 790 5 884018821 +328 1248 3 885047417 +193 485 5 889124252 +59 709 5 888204997 +293 228 3 888906315 +346 977 3 875264110 +207 183 2 875509832 +239 1020 3 889180920 +301 77 3 882076751 +248 183 5 884534772 +288 12 4 886374130 +303 451 5 879468581 +255 436 4 883216544 +210 202 5 887737338 +363 102 4 891498681 +299 479 4 878192556 +92 834 1 875906882 +323 327 4 878738910 +374 1047 3 880394179 +249 628 3 879640306 +222 401 2 878184422 +122 70 5 879270606 +122 511 5 879270084 +23 32 3 874785809 +10 696 4 877892276 +144 298 3 888103988 +196 663 5 881251911 +152 966 5 882829150 +157 740 2 886889876 +18 610 4 880130861 +107 258 4 891264466 +125 999 4 892838288 +334 475 4 891544953 +207 171 3 880839802 +85 480 4 879453658 +111 269 5 891679692 +12 191 5 879960801 +304 322 4 884968415 +342 544 1 875318606 +201 482 4 884111360 +333 748 4 891044596 +167 1126 5 892738418 +303 1224 2 879485475 +222 62 4 878183616 +6 136 5 883600842 +223 276 4 891549324 +340 1133 5 884991742 +70 546 2 884066211 +244 764 5 880605158 +355 310 4 879485423 +230 185 4 880485090 +295 210 4 879518378 +308 98 3 887737334 +210 49 3 891036116 +130 1228 3 878537681 +249 456 3 879640549 +215 230 3 891436469 +207 1118 3 878104017 +136 313 2 882693234 +276 117 4 874786568 +216 824 3 880233253 +269 50 3 891448926 +293 466 3 888906655 +275 142 2 880315197 +136 1142 4 882693569 +112 347 1 891302716 +292 1014 3 881104424 +77 176 4 884752757 +314 941 3 877889971 +181 829 1 878962675 +200 33 4 884129602 +291 551 2 874867824 +301 152 3 882077285 +291 237 4 874805668 +334 716 3 891548758 +216 218 4 880234933 +358 482 2 891270510 +13 243 3 882140966 +100 289 3 891375359 +119 12 3 874781915 +268 558 3 875309304 +94 273 4 885872684 +200 205 4 884128458 +333 98 4 891045496 +256 161 5 882164559 +265 409 3 875320462 +268 108 3 875742992 +320 3 4 884748978 +90 178 5 891384611 +347 609 4 881654064 +286 405 3 876522150 +136 223 4 882848820 +344 537 4 884814432 +244 22 4 880605665 +350 1 4 882345734 +299 127 5 877877434 +221 129 5 875244331 +328 403 3 885047281 +181 21 1 878963381 +254 174 5 886471720 +158 566 3 880134499 +262 419 3 879791710 +243 1466 3 879988104 +230 7 3 880484476 +301 411 1 882074867 +104 347 2 888442140 +348 1 4 886523078 +208 302 1 883108157 +151 675 2 879524368 +105 258 5 889214306 +72 210 4 880037242 +322 89 3 887314185 +280 180 4 891700453 +10 367 4 877892437 +156 137 4 888185735 +372 159 5 876869894 +363 316 3 891493918 +178 866 4 882825357 +181 112 1 878962955 +346 232 3 875263877 +114 507 3 881260303 +14 14 3 879119311 +271 248 4 886106129 +354 847 3 891216713 +263 328 4 891297330 +258 893 1 885701099 +100 691 4 891375260 +259 12 5 874809192 +90 604 5 891383350 +130 367 4 875801369 +327 293 3 887745574 +57 173 5 883698408 +239 493 5 889180616 +318 305 2 884470682 +13 776 2 882398934 +339 32 5 891032255 +253 188 4 891628416 +311 199 4 884365485 +311 226 4 884366397 +283 42 5 879298333 +125 386 3 892838827 +361 26 3 879440941 +283 24 4 879297867 +334 210 3 891546405 +181 1390 1 878962052 +336 202 1 877757909 +254 222 4 886471346 +276 544 3 889174870 +89 83 4 879459884 +268 265 3 875310603 +311 748 4 884364071 +270 17 2 876956064 +344 196 4 884901328 +58 480 3 884305220 +328 31 4 886036884 +234 221 2 891227814 +60 633 4 883326995 +2 13 4 888551922 +321 180 4 879440612 +131 1 4 883681384 +307 91 4 879283514 +264 709 5 886123727 +181 1282 1 878962496 +102 403 3 888801812 +197 808 3 891409893 +308 487 4 887736798 +374 126 3 880393223 +6 117 2 883599431 +367 250 5 876689824 +299 257 2 877877732 +25 480 4 885852008 +87 208 5 879876403 +277 748 3 879543879 +332 655 5 888360248 +16 735 3 877720186 +236 419 5 890116282 +11 736 4 891906411 +1 107 4 875241619 +6 32 4 883601311 +72 124 4 880035636 +214 952 3 891543176 +305 52 2 886323506 +345 297 4 884994156 +269 902 5 891446132 +336 864 1 877757837 +314 402 4 877888758 +33 313 5 891963290 +345 1017 2 884991303 +346 392 3 875266064 +123 50 3 879873726 +161 286 2 891169991 +330 204 5 876546839 +234 781 2 892335764 +181 148 2 878963204 +262 238 4 879792713 +233 492 5 880923253 +200 294 4 884125953 +213 135 5 878956101 +130 596 4 874953825 +346 167 2 875264209 +142 362 3 888639920 +325 135 5 891478006 +83 28 4 880308284 +90 521 4 891384570 +13 530 5 881515295 +314 765 3 877889480 +361 275 4 879440694 +334 436 3 891548203 +314 147 4 877886584 +363 906 2 891493795 +92 183 4 875653960 +247 272 4 893081381 +230 51 4 880484937 +44 755 3 878347742 +98 209 2 880498935 +326 674 3 879877433 +303 96 5 879466830 +92 318 2 875653307 +12 196 5 879959553 +94 64 5 885870362 +327 288 4 887743600 +288 317 4 886374497 +373 724 5 877103935 +337 106 2 875184682 +179 301 4 892151565 +267 7 5 878970503 +241 332 3 887249841 +87 182 4 879875737 +311 679 4 884365580 +58 20 1 884304538 +276 77 3 874795751 +194 450 1 879555001 +236 51 5 890116709 +44 9 5 878341196 +354 480 4 891217897 +303 62 2 879484159 +134 300 3 891732220 +92 692 4 875653805 +338 604 4 879438326 +224 86 3 888082612 +341 880 5 890757997 +194 218 4 879524892 +94 1206 3 891723593 +332 300 5 887916188 +180 111 5 877127747 +321 709 4 879441308 +108 181 3 879879985 +199 242 5 883782485 +46 313 5 883611274 +85 855 3 879827989 +188 504 3 875074589 +174 333 4 886432811 +153 22 2 881371140 +119 188 4 874781742 +45 476 3 881015729 +287 346 5 888177040 +14 498 5 890881384 +189 21 2 893264619 +363 189 5 891495070 +367 246 4 876689612 +268 82 3 875310784 +14 181 5 889666215 +200 570 4 884130484 +91 529 4 891438977 +195 258 4 882859352 +194 559 2 879521937 +301 281 4 882074903 +60 272 4 889286840 +278 347 4 891294932 +181 1370 1 878962550 +344 477 3 884900353 +44 209 5 878347315 +38 225 5 892433062 +18 276 5 880130829 +91 82 5 891439386 +336 395 2 877757094 +305 156 4 886323068 +102 810 2 888802508 +181 1272 1 878962349 +156 317 4 888185906 +365 258 4 891303515 +32 122 2 883718250 +6 15 3 883599302 +236 756 1 890117353 +234 965 3 892079538 +232 498 4 888549467 +130 625 5 875801750 +291 41 4 875086636 +344 25 4 884814480 +222 232 4 878183985 +13 907 1 884538485 +378 554 3 880333540 +214 327 5 892668196 +279 762 3 875297199 +363 1007 5 891499355 +297 135 4 875238608 +13 232 3 890704999 +13 861 3 882139774 +87 79 5 879875856 +195 61 3 888737277 +158 11 4 880134398 +13 48 5 882139863 +189 121 2 893264816 +344 663 5 884900993 +14 922 4 880929651 +181 840 1 878963204 +181 1259 1 878962496 +94 50 5 891720996 +206 904 1 888180081 +89 707 5 879459884 +62 1128 2 879372831 +288 340 5 886372155 +329 515 4 891655932 +354 882 4 891216157 +291 101 4 875087198 +153 127 3 881371140 +285 168 4 890595900 +303 153 5 879466421 +13 505 3 882140389 +246 675 4 884920978 +93 476 4 888705879 +268 129 2 875742437 +325 1411 4 891478981 +226 7 4 883889479 +297 175 4 875238883 +344 451 4 884901403 +233 69 5 877665324 +87 684 5 879875774 +70 472 3 884148885 +181 1378 1 878962169 +260 300 3 890618198 +200 45 3 884128372 +246 720 1 884923592 +92 527 3 875653549 +330 50 5 876544366 +82 103 2 878768665 +299 496 3 878192154 +28 218 3 881961601 +64 83 3 889737654 +262 1054 2 879791536 +59 102 2 888205956 +294 325 3 877818861 +294 471 4 877820189 +344 58 3 884814697 +276 46 3 874791145 +21 974 3 874951416 +43 993 3 875975211 +72 644 4 880036602 +273 902 5 891293008 +54 1016 4 890609001 +276 265 4 874792483 +328 162 4 885048004 +90 813 4 891384997 +161 127 3 891171698 +305 245 1 886308147 +69 9 4 882126086 +273 900 3 891292873 +95 14 5 879197329 +177 289 2 880130534 +334 922 4 891544810 +64 420 3 889739678 +119 562 4 886177206 +23 419 3 874787204 +154 480 5 879138784 +271 25 3 885847876 +276 231 3 874796373 +60 671 4 883327175 +279 464 4 875310041 +42 12 4 881107502 +320 576 3 884749411 +279 226 4 880850073 +378 63 3 880333719 +347 465 3 881654825 +15 508 2 879455789 +328 370 3 885048986 +204 292 5 892388857 +378 367 3 880055002 +295 485 4 879517558 +255 763 5 883217072 +67 121 4 875379683 +328 443 4 885048235 +57 237 4 883697182 +20 405 3 879668555 +243 28 4 879988215 +94 1210 3 891723558 +328 371 4 885046773 +188 148 4 875074667 +308 204 4 887737891 +344 568 5 884901419 +130 685 3 874953895 +206 258 4 888179602 +119 111 5 886176779 +347 208 2 881654480 +151 514 4 879524797 +13 21 3 882399040 +373 598 3 877112076 +210 186 4 887730532 +144 274 3 888104382 +58 813 5 884304430 +76 474 5 875498278 +294 147 4 877819845 +184 77 3 889910217 +137 222 5 881432908 +311 527 4 884365780 +259 235 2 883372151 +43 597 3 883956229 +92 196 4 875654222 +254 162 3 886472643 +95 83 5 880573288 +104 475 4 888465582 +214 248 4 891543001 +128 790 4 879969277 +293 55 4 888906096 +195 1013 3 877156636 +11 135 4 891904335 +178 178 4 882826395 +270 156 5 876955899 +269 1480 1 891451725 +151 234 4 879524819 +174 1001 1 886515030 +151 428 5 879542510 +276 164 4 874792663 +130 333 5 875801239 +332 288 5 887916151 +189 143 5 893266027 +43 847 5 875975468 +188 13 4 875073408 +172 485 3 875538028 +262 44 2 879794446 +135 802 2 879858003 +304 275 4 884968264 +308 393 4 887740367 +342 1071 4 875319497 +76 333 3 879575966 +345 988 2 884916551 +303 257 4 879544558 +293 679 2 888906699 +2 280 3 888551441 +368 50 4 889783678 +344 707 4 884900792 +92 552 3 875907078 +40 303 4 889041283 +288 157 4 886373619 +233 117 3 880190627 +90 478 5 891384754 +112 325 1 884992714 +45 276 5 881012184 +3 341 1 889237055 +159 877 3 893255740 +59 501 1 888205855 +117 358 4 880124509 +207 150 3 877847150 +318 401 3 884498292 +22 999 4 878886902 +267 384 3 878973734 +124 157 2 890287936 +6 135 5 883600747 +69 48 5 882145428 +263 1444 3 891299949 +82 1001 1 878769138 +57 7 4 883697105 +13 869 3 882141727 +286 89 4 877533381 +151 1297 1 879542847 +262 270 3 879961283 +218 410 3 881288574 +372 219 5 876869481 +213 204 5 878956130 +77 276 2 884732991 +7 8 5 891351328 +299 582 2 889502159 +145 752 4 888396828 +205 258 3 888284313 +106 1 4 881449487 +314 138 5 877890960 +346 237 4 874949086 +286 1503 3 877534107 +339 101 3 891034626 +293 31 2 888906244 +180 69 4 877355568 +347 317 1 881654409 +237 153 3 879376698 +295 154 5 879517801 +216 204 4 881432523 +291 1046 4 874834875 +334 1172 3 891545852 +329 258 3 891656639 +146 262 4 891457714 +144 194 5 888105287 +92 531 4 875653121 +313 487 3 891016378 +315 46 4 879799526 +344 106 2 884900583 +270 1014 4 876954062 +230 969 4 880484476 +90 1101 4 891384570 +276 234 5 880913767 +325 168 3 891478796 +15 754 5 879455080 +324 298 5 880575493 +73 48 2 888625785 +232 315 5 888364663 +328 98 4 885045899 +128 588 5 879967136 +43 315 4 883953665 +27 281 3 891543164 +189 100 4 893263994 +296 15 3 884196712 +342 518 3 875318858 +332 332 4 887916411 +339 693 5 891033200 +297 448 3 875240171 +303 260 3 879466291 +181 324 1 878961814 +244 287 3 880604326 +151 506 4 879524900 +251 183 5 886271733 +159 225 4 880557347 +342 156 4 874984128 +194 117 3 879535704 +85 1167 3 879829209 +244 122 4 880602804 +251 237 5 886272346 +180 216 5 877128388 +363 71 3 891495301 +233 269 5 891920842 +297 238 5 875409525 +223 1300 1 891550470 +185 318 4 883524172 +308 87 4 887737760 +262 145 1 879795155 +297 235 2 874954611 +209 304 2 883460468 +295 1446 4 879519026 +224 212 1 888104188 +279 739 1 879573060 +361 652 4 879440346 +42 82 4 881107449 +293 27 3 888907753 +234 603 4 892333573 +350 228 4 882347598 +280 159 4 891701944 +174 49 4 886513788 +296 455 1 884196921 +374 685 4 880393307 +256 12 5 882164696 +106 223 4 881450440 +181 269 1 878961511 +314 693 3 877891575 +87 1074 3 879876813 +366 853 5 888857750 +75 108 4 884050661 +85 498 4 879454400 +270 286 5 876953744 +128 423 4 879967966 +299 485 4 877881320 +378 202 3 880046229 +290 473 1 880475420 +233 97 5 877661882 +293 405 1 888905198 +92 295 2 886442386 +299 715 4 889503441 +130 678 4 874953526 +184 258 3 889906882 +183 225 1 891467546 +280 7 4 891700385 +374 231 2 880939228 +254 259 2 886470859 +149 305 4 883512658 +291 1213 3 874871655 +181 276 2 878962816 +251 265 3 886271641 +276 1013 3 874787150 +67 1093 5 875379419 +269 919 4 891446132 +276 1172 4 882659550 +41 170 4 890687713 +276 1253 1 874795729 +95 878 1 881599623 +298 473 3 884183952 +289 473 1 876790576 +6 286 2 883268170 +327 1067 4 887819538 +234 604 5 892078936 +345 197 4 884992141 +197 779 2 891410170 +120 257 2 889490979 +293 616 3 888907753 +174 196 5 886514108 +178 682 3 892239928 +137 172 5 881433719 +128 300 5 879966355 +253 127 5 891628060 +88 321 1 891037708 +222 449 4 878184899 +247 111 5 893097024 +60 176 4 883326057 +92 313 5 887042925 +256 385 5 882164603 +343 25 2 876402814 +314 215 4 877888722 +115 172 4 881171273 +263 210 3 891298792 +305 249 3 886322174 +244 62 2 880607269 +267 568 4 878972955 +87 810 3 879876111 +330 181 5 876544277 +134 258 4 891732122 +13 61 4 882140552 +346 133 5 874948513 +108 121 3 879880190 +368 637 2 889783617 +305 660 4 886324734 +298 286 4 884124929 +256 49 4 882165238 +286 277 4 875807003 +286 107 1 875807043 +327 32 4 887747266 +201 128 2 884111546 +288 15 4 886892177 +308 610 4 887738847 +334 387 4 891548579 +204 315 4 892388857 +257 165 4 879547534 +347 435 5 881654211 +181 827 2 878963276 +13 784 1 882397084 +26 508 3 891352941 +118 511 5 875384885 +239 114 3 889178616 +339 589 5 891032221 +171 327 4 891034835 +378 8 4 880045722 +14 509 5 890881521 +62 33 1 879374785 +64 284 4 889740056 +269 177 5 891449214 +200 151 3 876042204 +370 265 5 879434636 +327 478 4 887819860 +10 509 4 877889005 +108 275 5 879879739 +311 365 4 884365580 +199 324 1 883782509 +363 55 5 891495682 +180 56 5 877127130 +60 194 4 883326425 +14 121 3 876965061 +18 136 5 880129421 +270 222 5 876954521 +268 17 3 875743588 +323 203 5 878739953 +334 502 3 891546963 +354 716 3 891307157 +336 571 1 877756999 +144 33 5 888105902 +226 169 5 883888892 +301 168 4 882075994 +99 685 3 885678840 +181 1289 1 878962866 +197 271 2 891409352 +312 357 5 891698987 +54 1012 2 880936669 +200 38 3 884130348 +69 1143 5 882072998 +5 40 4 879198109 +181 766 1 878962675 +303 80 4 879484563 +110 575 3 886989566 +299 208 4 878191995 +275 423 4 880315322 +210 200 5 887737040 +327 1097 4 887819860 +99 7 4 885678784 +64 240 1 889740462 +101 1034 2 877136686 +18 778 2 880131077 +301 159 3 882076890 +90 166 4 891383423 +213 2 4 878955914 +251 520 5 886271955 +295 99 4 879517741 +279 175 5 875296461 +64 636 4 889740286 +303 231 4 879485292 +184 196 4 889908985 +197 92 1 891410082 +315 156 5 879821267 +23 662 3 874788045 +291 56 5 874834701 +5 90 3 875636297 +146 1294 4 891457749 +254 90 1 886475406 +326 559 3 879877413 +290 91 2 880474451 +94 472 3 891723707 +189 484 5 893266105 +292 479 4 881105516 +194 425 2 879522240 +326 633 4 879875852 +16 761 2 877727192 +304 288 3 884966696 +221 721 5 875246944 +160 209 4 876861185 +80 58 4 887401677 +178 76 3 882827288 +62 147 3 879372870 +158 550 3 880134445 +344 313 3 884814359 +291 365 3 874871570 +112 302 4 886398509 +207 188 3 875509262 +13 457 1 883670785 +234 1 3 891227689 +260 272 3 890618349 +63 13 4 875747439 +325 640 3 891478376 +194 124 4 879539229 +71 56 5 885016930 +30 678 2 885942002 +291 4 4 874835062 +378 1267 3 880055740 +177 260 2 880130534 +21 292 3 874950889 +326 132 4 879875398 +244 508 4 880604276 +128 602 4 879967478 +276 779 2 874977513 +263 245 4 891297417 +323 255 4 878739275 +92 986 2 890251716 +276 282 4 883822485 +186 1277 4 879023677 +264 25 4 886124197 +161 274 2 891172070 +86 300 3 879570277 +303 91 5 879483480 +10 135 5 877889004 +301 407 2 882075202 +60 502 4 883327394 +377 443 4 891299078 +142 350 4 888639882 +374 591 4 880393095 +110 732 3 886988018 +352 182 5 884290328 +109 1013 3 880572296 +328 350 3 886036374 +181 283 3 878963241 +354 631 4 891217449 +334 1073 4 891547714 +181 1373 1 878962052 +54 121 4 880936669 +293 12 4 888905665 +279 1489 3 891208884 +138 111 4 879022890 +298 502 5 884183406 +318 66 4 884495921 +67 151 4 875379619 +301 160 2 882077284 +47 321 4 879439040 +304 682 3 884967520 +109 204 4 880577844 +189 505 5 893265239 +16 183 5 877720733 +269 645 4 891448048 +297 116 4 874954260 +373 139 3 877111422 +274 815 3 878945763 +123 511 5 879872066 +13 40 2 886302815 +61 342 2 892302309 +76 421 3 875028682 +284 313 3 885328727 +339 806 4 891032737 +5 153 5 875636375 +280 1047 3 891701897 +199 322 2 883782636 +343 143 4 876406677 +303 926 2 879485814 +232 276 5 880062447 +1 218 3 876892856 +151 417 3 879543075 +270 241 5 876955633 +269 272 3 891445757 +339 248 4 891034592 +46 328 4 883611430 +198 1014 2 884206330 +151 505 5 879528909 +184 478 4 889908902 +234 274 3 892334765 +348 742 4 886523078 +374 129 5 880392846 +221 53 4 875247565 +308 584 4 887738717 +268 746 3 876513855 +263 127 4 891299514 +83 795 3 880309214 +168 7 1 884287559 +284 344 4 885329593 +375 44 3 886622131 +91 435 4 891439353 +311 58 3 884364570 +204 191 4 892513906 +109 200 2 880577734 +201 70 3 884112029 +312 241 3 891699655 +215 183 5 891435655 +128 173 5 879966756 +13 351 1 886302385 +378 52 5 880056491 +345 949 3 884992897 +12 754 4 879958810 +54 406 2 880938490 +128 237 4 879966954 +223 1014 4 891549975 +197 33 2 891409981 +270 800 5 876956106 +373 154 5 877098919 +24 275 5 875323507 +214 1401 4 891544290 +16 27 2 877726390 +325 521 4 891478160 +243 221 5 879989217 +200 578 5 884130085 +343 702 4 876406257 +345 479 4 884991812 +327 645 4 887818991 +141 750 1 886447564 +13 73 3 882141485 +299 347 4 887135610 +181 922 1 878963305 +13 467 5 882140588 +276 227 4 880913800 +189 483 5 893265291 +135 228 4 879857797 +256 1040 3 882152604 +84 151 4 883449993 +207 245 3 877994095 +189 96 5 893265971 +135 642 4 879857868 +84 523 4 883453642 +269 213 5 891447255 +307 154 5 879282952 +117 288 3 880124254 +43 648 5 883955293 +359 250 4 886453354 +373 2 4 877100416 +327 173 4 887747337 +326 82 3 879876861 +190 294 3 891033370 +72 520 5 880036515 +378 356 4 880045989 +91 338 4 891438529 +363 1267 2 891496481 +128 591 4 879967879 +252 268 5 891455329 +214 512 5 892668130 +303 249 4 879544739 +313 135 5 891014401 +239 168 4 889179478 +361 148 1 879441324 +94 447 4 891721562 +109 931 2 880572407 +298 311 3 884126552 +329 269 4 891655191 +66 117 3 883601787 +291 790 4 875086699 +175 629 3 877107942 +347 423 4 881654567 +291 155 3 875087371 +7 203 5 891352178 +201 285 4 884114471 +374 356 3 880937876 +303 326 2 879466116 +131 275 2 883681384 +186 1253 4 891719774 +347 1088 1 881653224 +184 588 5 889909812 +234 328 2 891033772 +293 147 2 888905229 +276 1239 1 874977512 +101 118 3 877136424 +269 497 3 891449429 +256 982 3 882152630 +305 602 3 886324058 +94 63 3 891723908 +327 650 4 887745699 +43 118 4 883955546 +347 268 4 881652169 +194 517 3 879521856 +281 989 2 881200789 +232 81 5 888549515 +42 88 5 881108425 +18 526 4 880131407 +55 678 3 878176206 +158 182 5 880134296 +288 13 5 886892241 +102 689 3 883277481 +323 249 3 878739488 +294 544 4 877819673 +268 232 3 875310745 +94 646 5 885873006 +157 3 3 886890734 +279 147 4 875297199 +90 475 3 891385465 +276 1073 3 874795613 +301 684 3 882077330 +191 343 3 891561856 +201 324 5 884110811 +213 448 4 878956074 +145 831 1 888398329 +65 135 4 879216567 +291 154 4 875086185 +379 69 4 880524754 +345 559 1 884901497 +62 179 4 879374969 +331 277 4 877196384 +43 54 3 883956494 +244 240 3 880604858 +279 469 4 884982881 +1 209 4 888732908 +313 417 2 891030334 +151 1074 2 879543342 +329 124 5 891655905 +332 354 5 888189331 +303 159 3 879484695 +249 472 3 879640502 +6 513 4 883600913 +1 259 1 875692979 +308 144 3 887737956 +174 577 1 886515295 +327 188 5 887745774 +332 271 4 887916217 +59 660 4 888205534 +130 959 4 876251865 +94 144 3 891721168 +280 117 5 891700366 +151 47 3 879528459 +249 169 5 879572106 +184 34 2 889913568 +344 315 5 884813342 +339 139 3 891036199 +74 1084 3 888333542 +347 69 5 881653687 +293 761 2 888907981 +308 234 3 887737084 +268 421 3 876513927 +328 185 4 885045899 +365 908 3 891303638 +200 15 4 884127745 +5 94 3 878844651 +318 509 5 884495817 +234 423 4 892334079 +118 816 3 875385335 +354 297 4 891216760 +130 405 4 875801984 +279 4 4 875296461 +198 217 4 884208273 +342 237 4 874984832 +195 1228 1 876632600 +48 988 2 879434387 +7 281 3 891353710 +64 318 4 889737593 +253 647 3 891628229 +99 56 5 885679833 +13 443 4 882140588 +151 775 2 879543366 +91 510 3 891439090 +343 211 5 876405820 +279 92 4 890282182 +57 248 5 883697223 +94 428 5 891725332 +42 28 5 881108187 +343 792 5 876405172 +144 209 2 888105116 +290 243 3 880473474 +100 316 5 891375313 +374 977 1 883628189 +249 684 4 879641285 +145 346 5 883840638 +379 705 4 888646088 +184 70 4 889908657 +94 657 5 891720761 +178 520 5 882826210 +303 1088 2 879544946 +21 774 2 874951898 +328 1042 3 885049024 +276 276 4 874786605 +77 50 4 884732345 +237 183 5 879376641 +5 389 1 875721315 +234 54 2 892336257 +22 502 4 878886647 +226 283 2 883889811 +199 678 1 883782636 +148 357 5 877016735 +326 612 2 879875083 +59 562 4 888206094 +94 206 4 891722843 +109 520 5 880572642 +329 276 4 891655905 +321 50 4 879438793 +174 655 5 886514168 +144 73 3 888105636 +56 186 3 892676933 +87 568 5 879875818 +269 387 3 891448283 +201 340 5 884110887 +165 419 4 879525706 +191 270 3 891560253 +190 628 4 891042883 +5 411 1 875635431 +169 308 3 891268776 +303 288 4 879466018 +69 151 5 882072998 +145 1040 1 888398492 +279 490 3 890282225 +1 108 5 875240920 +253 173 5 891628483 +77 265 3 884753152 +283 216 4 879298206 +224 1085 1 888104393 +336 117 3 877760603 +378 1284 2 880318158 +174 118 2 886434186 +296 98 5 884197091 +130 210 5 876252288 +1 262 3 875071421 +89 949 3 879460027 +58 204 4 884304701 +263 1473 5 891299877 +92 273 4 875640214 +67 743 4 875379445 +311 627 4 884366067 +234 727 3 892079475 +351 1316 4 883356883 +90 433 3 891384611 +194 1220 3 879524790 +222 819 2 877563353 +311 510 4 884366545 +59 1065 5 888205188 +195 421 4 892362736 +145 44 5 875272132 +38 1014 5 892429542 +186 71 5 879024535 +82 109 1 884714204 +264 436 3 886122352 +361 949 4 879440774 +200 173 5 884128554 +279 405 3 886015701 +7 505 3 891352341 +121 235 1 891390579 +301 380 4 882078459 +380 176 3 885481179 +332 7 4 887916547 +316 71 1 880854472 +7 266 4 891350703 +293 2 3 888907101 +18 792 5 880131106 +166 258 4 886397562 +373 849 3 877105005 +177 195 4 880130699 +254 15 3 886471307 +328 100 5 885046305 +344 111 4 884899767 +223 118 2 891549945 +189 607 4 893266204 +183 250 2 891464352 +276 1110 3 874977474 +194 509 3 879522085 +267 1073 5 878974783 +313 182 4 891013773 +10 498 5 877889333 +276 69 4 874790996 +60 729 4 883327975 +264 203 2 886122508 +116 531 2 876453519 +62 121 4 879372916 +345 313 4 884900467 +126 322 3 887854777 +90 423 5 891384997 +227 117 2 879035493 +271 713 4 885847800 +25 269 4 885851953 +361 1041 2 879441179 +85 971 3 879828156 +346 780 2 875264904 +338 56 3 879438535 +363 433 4 891495143 +217 1303 2 889069944 +159 245 5 880485488 +141 748 3 884584664 +49 122 2 888069138 +365 813 5 891303901 +373 25 4 877100016 +301 67 2 882078621 +149 312 1 883512950 +21 773 3 874951797 +357 742 4 878951691 +373 81 2 877100326 +82 281 3 884714290 +90 96 4 891384754 +327 198 4 887747337 +268 1157 1 875745428 +374 173 3 882158521 +83 783 4 880308453 +318 655 4 884496290 +216 693 3 881428365 +381 582 5 892696045 +333 316 5 891044659 +21 325 4 874950931 +279 195 4 875310631 +279 24 5 875295591 +349 370 2 879466283 +127 748 5 884364108 +56 95 4 892683274 +38 71 5 892430516 +276 879 3 877584219 +374 476 2 880394138 +248 198 5 884534695 +321 8 4 879440451 +344 268 3 884814359 +151 602 4 879542688 +194 284 3 879539410 +375 583 2 886622131 +380 197 3 885478886 +381 50 5 892696252 +103 527 5 880416238 +268 153 5 875743503 +232 651 3 888549515 +88 881 5 891038103 +11 268 5 891901652 +249 68 5 879641156 +67 276 4 875379515 +177 276 5 880130758 +234 96 2 892334141 +135 33 3 879857930 +345 845 3 884991220 +332 181 5 887916529 +346 561 3 874950172 +11 739 3 891906411 +239 654 5 889180747 +276 432 5 874792839 +214 294 3 891542520 +330 603 5 876545625 +363 182 1 891494962 +337 631 4 875429292 +244 411 4 880604798 +182 172 5 876435435 +43 393 4 883956417 +64 447 4 889739319 +116 421 3 876453800 +257 288 3 879029516 +130 4 2 875801778 +54 237 4 880935028 +312 603 5 891698454 +198 629 4 884209221 +279 732 3 879647301 +320 431 5 884749327 +1 12 5 878542960 +59 568 5 888205229 +257 221 3 882050202 +329 855 4 891656206 +58 1104 2 884305679 +43 486 4 883955969 +339 42 4 891033452 +344 45 5 884901210 +92 471 4 875640385 +200 313 5 884125806 +347 879 3 881652099 +18 732 3 880131698 +92 596 2 886443161 +358 1529 3 891269584 +87 231 3 879876110 +13 118 4 882397581 +305 154 4 886322670 +212 191 3 879303830 +41 746 3 890687019 +192 301 4 881366490 +344 421 2 884901561 +360 511 5 880355994 +365 124 4 891304039 +10 164 4 877889333 +234 847 4 891227730 +271 582 3 885849113 +109 96 5 880572614 +76 150 5 875028880 +59 1113 4 888205855 +381 212 5 892696982 +5 109 5 875635350 +279 386 3 889985007 +64 898 2 889737106 +41 435 3 890687550 +308 843 3 887739095 +85 661 4 879454005 +339 516 4 891033481 +95 510 4 879196188 +38 404 5 892431586 +347 735 2 881654134 +125 270 4 881357122 +345 295 4 884994592 +82 1101 4 878770169 +11 722 3 891905349 +239 79 3 889179544 +3 318 4 889237482 +56 179 3 892678669 +59 195 5 888204757 +119 930 3 874775945 +295 1135 4 879518696 +347 323 1 881652142 +291 46 4 874868045 +347 216 3 881653933 +337 257 3 875184963 +87 679 3 879876036 +381 281 2 892696616 +215 451 3 891436369 +177 948 2 882141918 +292 226 4 881105281 +314 1054 1 877886944 +256 294 3 882150053 +90 86 5 891383626 +267 622 3 878974077 +315 211 4 879821037 +62 209 4 879373849 +125 485 5 892836335 +345 317 4 884992465 +312 96 5 891699040 +201 68 2 884112487 +253 175 2 891628884 +152 204 4 882474587 +271 224 4 885847876 +313 1066 2 891030334 +99 363 4 885679262 +326 144 5 879876114 +26 343 3 891349238 +270 553 1 876955689 +206 873 3 888179833 +379 202 5 880525259 +70 527 4 884149852 +181 978 1 878963305 +94 156 5 891725332 +86 1175 5 879570973 +68 288 4 876973726 +60 71 3 883327948 +151 393 2 879528692 +22 435 5 878886682 +198 172 4 884207206 +96 474 4 884403095 +305 239 3 886323153 +301 182 5 882075774 +32 866 3 883718031 +279 114 5 879572694 +10 191 5 877888613 +279 207 5 875310394 +321 143 3 879439621 +10 496 5 877889005 +130 134 5 875801750 +26 871 2 891379664 +13 539 1 883670785 +49 594 3 888068245 +56 692 4 892676970 +318 127 5 884470970 +159 881 1 893256139 +130 940 3 875217392 +348 147 5 886523361 +243 582 5 879989217 +15 18 1 879455681 +85 514 5 879453684 +135 379 2 879857956 +286 512 2 877533101 +276 1274 1 874977513 +102 239 3 888804089 +293 871 1 888908066 +43 161 4 883955467 +290 622 3 880474204 +176 100 5 886047918 +226 14 5 883889691 +361 238 4 879440475 +38 383 2 892433801 +329 924 3 891655905 +378 65 3 880046132 +26 315 3 891347400 +5 230 3 875636070 +269 142 1 891451570 +43 275 4 875975546 +297 7 4 874954541 +151 735 5 879528438 +124 79 3 890287395 +23 405 4 874784638 +373 1135 3 877107043 +327 1141 3 887822681 +188 98 5 875071957 +69 591 3 882072803 +345 282 3 884991419 +194 417 2 879525695 +311 187 4 884364764 +204 286 3 892389046 +215 8 2 891436177 +18 970 3 880131591 +85 283 3 879454467 +96 173 3 884402791 +277 302 4 879544201 +327 25 2 887746728 +301 8 4 882076494 +33 895 3 891964187 +118 23 5 875384979 +280 542 3 891702199 +280 1479 3 891702457 +201 333 2 884110927 +7 570 3 891354639 +303 164 4 879466830 +69 748 2 882027304 +73 507 3 888625857 +296 10 2 884196605 +209 321 4 883461108 +94 420 4 891721317 +179 310 4 892151365 +188 38 3 875073828 +286 1113 3 877534107 +354 208 4 891217394 +119 385 5 874781994 +188 77 4 875072328 +184 124 5 889907652 +268 781 3 875743951 +125 28 4 879454385 +60 489 5 883326682 +220 343 3 881198738 +177 196 3 880130881 +129 307 2 883244637 +339 550 2 891035523 +378 289 5 889665232 +279 173 5 875296461 +314 105 4 877887292 +295 68 4 879518960 +145 105 2 875271442 +246 541 3 884923487 +234 117 2 892334976 +58 182 4 884304701 +108 237 3 879879796 +16 164 5 877724438 +139 303 5 879538021 +316 265 3 880854395 +337 230 5 875185319 +116 332 3 876451998 +92 376 3 875907366 +152 241 4 884035579 +168 748 2 884287031 +255 841 1 883216902 +265 181 2 875320180 +236 222 4 890116817 +326 659 4 879875397 +217 258 1 889069536 +312 209 3 891699207 +1 14 5 874965706 +287 591 5 875334293 +294 689 3 889241579 +314 255 5 877886221 +189 1403 4 893265921 +107 300 1 891264432 +267 250 5 878970399 +344 190 5 886382447 +151 65 4 879528729 +343 367 4 876406144 +10 385 4 877886783 +70 383 2 884151700 +109 131 1 880579757 +373 399 3 877105674 +378 1478 3 880333098 +125 64 5 879454139 +378 274 3 880055597 +41 98 4 890687374 +54 147 5 880935959 +213 514 5 878956130 +254 843 2 886474807 +334 245 2 891544367 +224 518 1 888103906 +31 493 5 881548110 +10 519 5 877892050 +125 25 1 879454987 +92 88 3 875656349 +194 26 3 879522240 +13 265 4 882140038 +279 578 4 879572694 +301 216 4 882076782 +2 303 4 888550774 +326 451 2 879877234 +188 205 3 875071710 +338 511 4 879438473 +328 482 3 885046580 +269 506 5 891449572 +125 407 2 892839312 +85 275 3 879454581 +92 181 4 876175052 +15 286 2 879455049 +374 162 2 880396511 +148 169 5 877020297 +54 257 4 880937311 +276 1228 1 874977422 +268 679 4 876514107 +385 1367 5 880879193 +56 181 5 892737154 +271 15 3 885847876 +308 184 4 887738847 +64 7 4 889737542 +330 38 4 876546948 +263 886 2 891297484 +244 180 4 880605920 +1 97 3 875073128 +156 211 4 888185606 +62 155 1 879376633 +271 170 5 885848827 +250 480 5 878090414 +295 419 4 879518107 +314 869 4 877891681 +346 72 3 874951714 +5 388 2 879198898 +347 87 3 881653830 +166 343 4 886397882 +194 366 2 879525761 +90 197 5 891383319 +193 174 4 889125720 +54 127 4 880933834 +201 265 3 884310104 +128 56 3 879966785 +342 974 2 874984789 +12 276 4 879959488 +276 121 4 874786897 +49 151 5 888067727 +377 354 4 891296044 +59 735 5 888205534 +219 303 4 889386799 +276 238 5 877935060 +59 125 3 888203658 +385 209 4 879441853 +373 290 5 877098784 +313 73 5 891015012 +308 205 3 887738191 +182 864 4 885613092 +1 44 5 878543541 +236 420 4 890116671 +321 474 4 879438607 +380 530 5 885478886 +288 887 5 886372155 +232 56 5 888549622 +90 203 5 891384611 +8 172 5 879362123 +308 1006 4 887739608 +303 210 4 879466717 +139 458 4 879538578 +145 1090 2 888398833 +90 962 2 891384721 +43 321 3 875975061 +66 471 5 883601296 +277 286 5 879544145 +293 82 4 888906402 +201 462 1 884141208 +267 449 3 878973358 +267 175 5 878972558 +279 101 3 891209021 +363 336 4 891494011 +340 418 5 884990669 +59 448 4 888205787 +64 216 4 889740718 +355 882 4 879486421 +208 430 4 883108360 +56 96 5 892676429 +84 237 4 883450093 +373 230 4 877107430 +74 100 4 888333428 +291 1244 4 874834345 +128 294 4 879966376 +186 554 1 879023751 +330 213 5 876546752 +293 208 3 888906071 +92 32 3 875653363 +18 57 4 880130930 +119 451 5 891286958 +99 237 5 885678886 +168 258 4 884286863 +43 50 4 875975211 +119 274 4 874775580 +151 837 4 879524642 +59 136 3 888205336 +230 153 5 880485090 +23 504 4 874785624 +131 14 5 883681313 +95 117 4 879193619 +85 8 4 879454952 +379 637 2 880962047 +25 135 3 885852059 +1 53 3 876893206 +314 1221 3 877889927 +181 740 2 878963085 +253 527 5 891628518 +172 478 3 875538027 +249 100 5 879572370 +344 87 4 889814195 +308 183 4 887736695 +330 1016 3 876544480 +130 353 1 888211764 +232 313 3 885939473 +378 196 4 880046306 +49 52 2 888066647 +313 448 3 891014956 +42 265 3 881107989 +313 100 5 891013681 +94 806 4 885873302 +7 567 1 892132019 +97 168 4 884238693 +235 292 3 889654638 +58 240 4 892242478 +325 325 1 891477695 +84 64 5 883450066 +60 186 4 883326566 +292 475 5 881103896 +94 258 5 891724044 +316 19 5 880854539 +94 483 5 885870115 +43 1 5 875975579 +218 654 4 881288234 +102 746 2 892993190 +367 760 4 876690021 +224 387 4 888103906 +7 637 4 891353570 +357 294 4 878951101 +296 277 5 884198772 +292 511 5 881105373 +79 370 2 891272016 +184 693 3 889909142 +382 127 3 875945781 +70 228 5 884064269 +38 218 3 892431871 +197 321 3 891409475 +7 624 4 891353892 +373 151 4 877100129 +378 215 4 880055336 +307 450 2 879538922 +350 530 4 882346161 +271 52 4 885849470 +13 854 1 882396914 +188 419 5 875072876 +178 22 5 882826187 +104 25 3 888465634 +320 278 3 884748886 +345 451 5 884993085 +64 582 4 889739834 +167 1309 1 892738341 +232 181 4 880062330 +89 737 1 879460376 +328 234 4 885046376 +295 737 5 879518607 +233 654 4 877665191 +235 346 4 889654483 +214 221 5 892668153 +374 111 2 880393268 +279 1133 2 892173598 +378 542 4 880333470 +249 198 5 879572349 +21 820 3 874951616 +125 1183 2 892839312 +6 125 3 883599670 +137 183 5 881433689 +194 185 4 879521254 +332 1218 5 887939171 +347 85 5 881654880 +1 163 4 875072442 +286 50 4 875806869 +181 149 1 878962719 +21 844 4 874951292 +299 318 4 877880649 +18 195 3 880131236 +232 194 4 888549988 +279 556 3 880666808 +57 975 3 883697990 +125 940 2 892838827 +194 527 4 879521474 +163 64 4 891220161 +257 237 2 882050168 +22 121 3 878887925 +64 229 4 889739490 +173 260 4 877557345 +265 15 3 875320574 +210 176 4 887735960 +291 174 5 874835062 +281 538 4 881200520 +79 301 3 891271308 +244 191 5 880605766 +248 210 3 884534946 +342 175 5 874984207 +236 111 4 890116939 +297 1296 4 875408935 +159 678 5 880485530 +255 565 1 883216748 +286 309 5 884583549 +318 88 4 884496367 +77 174 5 884733587 +109 252 5 880571629 +244 1045 5 880602132 +264 4 4 886123656 +128 190 4 879967016 +158 163 4 880135044 +83 609 4 880308453 +23 380 5 874787774 +214 313 4 892668197 +110 783 3 886988967 +308 219 3 887738717 +159 286 1 880485233 +113 327 5 875076987 +178 83 4 882826556 +254 214 1 886472608 +30 1007 5 885941156 +109 322 2 880562908 +73 923 3 888793388 +291 567 5 874867786 +60 480 4 883326273 +296 238 4 884199624 +356 689 5 891406372 +362 258 4 885019435 +16 69 5 877724846 +318 501 4 884496984 +227 286 3 879035072 +271 54 3 885849188 +184 553 3 889909746 +256 1207 3 882164999 +210 73 5 891035837 +321 215 3 879439658 +221 623 3 875245618 +311 136 5 884365357 +130 254 2 876251160 +293 1147 4 888907081 +115 466 5 881171558 +207 187 5 877878688 +346 932 2 875264752 +168 123 3 884287822 +327 238 4 887747410 +31 321 4 881547746 +182 763 3 885613092 +224 724 3 888082742 +352 216 4 884290390 +105 272 4 889214284 +90 177 5 891384516 +311 161 4 884365579 +213 735 5 878955474 +60 660 4 883327243 +8 511 5 879362183 +126 289 3 887855174 +247 50 5 893097024 +217 174 3 889069684 +34 299 5 888602923 +109 223 4 880572588 +59 659 3 888204553 +177 403 5 880131201 +311 418 4 884365202 +181 256 1 878962086 +99 369 4 885679382 +3 300 2 889236939 +137 235 5 881433357 +20 1 3 879667963 +287 111 3 875334126 +224 751 3 888081913 +298 651 5 884183063 +287 240 2 875334454 +56 73 4 892677094 +345 866 3 884991476 +110 232 3 886988449 +83 720 4 880308578 +387 1166 3 886483939 +43 47 1 883955415 +363 183 4 891494835 +6 484 5 883601011 +347 288 5 881652118 +224 148 3 888104154 +299 959 2 889503159 +280 499 4 891700496 +256 728 4 882165296 +378 191 5 880046229 +262 22 4 879792452 +90 707 5 891384476 +363 802 2 891498681 +337 1133 4 875236281 +7 82 3 891351471 +28 228 5 881961393 +151 1197 5 879542753 +64 38 3 889740415 +25 151 4 885853335 +262 98 4 879792331 +181 125 3 878962816 +97 97 5 884239525 +385 606 4 879441599 +62 235 4 879373007 +271 192 5 885848373 +20 69 1 879668979 +81 274 3 876534313 +271 328 2 885844746 +261 1025 5 890455190 +363 134 2 891494725 +70 211 3 884149646 +201 406 1 884114505 +92 189 4 875653519 +92 191 4 875653050 +77 210 3 884753028 +95 204 5 879197562 +372 635 5 876869445 +239 497 4 889180578 +89 716 3 879460027 +13 514 5 881515112 +374 125 5 880393424 +332 97 5 888359903 +339 478 5 891032466 +249 121 3 879572705 +152 162 5 882474898 +222 7 5 877563168 +360 14 5 880354149 +374 1028 1 880393425 +85 1153 4 879454751 +145 928 3 879161848 +106 86 3 881451355 +298 993 4 884125629 +151 489 5 879528623 +102 358 3 888957092 +68 50 5 876973969 +374 292 4 880392237 +56 746 4 892676885 +151 231 1 879543366 +9 6 5 886960055 +113 976 5 875936424 +295 215 5 879517247 +347 300 5 881652054 +13 752 1 886952569 +303 582 4 879483462 +194 58 4 879522917 +168 25 5 884287885 +311 188 4 884364437 +330 275 5 876544366 +360 134 5 880356025 +11 744 4 891903005 +158 825 4 880133029 +215 210 4 891436232 +311 402 4 884366187 +142 89 3 888640489 +330 255 4 876544278 +280 420 3 891701816 +387 56 5 886479649 +260 326 5 890618349 +90 611 5 891384789 +263 318 5 891298453 +96 478 2 884403123 +303 476 3 879485352 +58 193 3 884305220 +1 210 4 878542909 +181 368 1 878963440 +59 692 3 888205463 +58 1069 2 893027661 +178 1283 3 885784558 +327 127 4 887747338 +253 282 4 891628094 +201 673 3 884140115 +201 1427 2 884113975 +145 924 2 875270508 +232 96 5 888549563 +77 69 3 884752997 +246 469 3 884922475 +342 191 5 875319991 +18 185 3 880129388 +174 29 2 886514469 +343 951 1 876406144 +318 12 4 884495795 +181 1385 1 878962051 +259 180 5 877925033 +328 483 5 885045844 +219 546 4 889387867 +54 273 4 880934806 +13 857 3 881515348 +296 485 5 884197235 +178 89 4 882826514 +364 690 4 875931309 +112 678 3 884992714 +292 484 5 881105625 +10 156 4 877886846 +265 742 5 875320542 +354 508 3 891216607 +308 822 4 887739472 +373 241 5 877100326 +276 941 3 877934065 +328 148 3 885048638 +6 458 1 883599914 +178 286 3 882823324 +82 310 4 879788290 +303 183 5 879466866 +339 231 2 891035180 +359 751 4 886453467 +200 174 5 884128426 +336 208 2 877757930 +378 151 3 880044385 +213 684 4 878956000 +381 647 4 892697133 +354 268 4 891180399 +36 882 5 882157581 +270 218 5 876956206 +62 118 2 879373007 +198 184 3 884209003 +363 237 2 891496306 +94 222 3 891721258 +151 736 4 879542389 +6 199 4 883601203 +378 793 3 880046437 +332 235 3 887938723 +294 826 1 889243393 +363 270 2 891493723 +150 50 5 878746719 +295 498 5 879519556 +366 448 5 888857990 +36 682 1 882157386 +311 515 4 884365485 +348 975 4 886523813 +118 436 5 875385280 +92 190 4 876174729 +280 449 3 891702324 +291 72 4 875086090 +13 615 4 881515348 +310 257 5 879436576 +5 227 4 875636099 +358 643 3 891270091 +303 67 5 879485401 +345 221 5 884900899 +276 366 3 889174764 +385 221 5 881398053 +174 66 5 886513706 +201 193 3 884140078 +56 51 3 892677186 +72 265 4 880037164 +342 56 5 874984315 +276 840 3 874786897 +361 498 4 879441416 +249 172 3 879572106 +293 158 2 888907603 +85 300 3 879452259 +21 121 1 874951416 +330 485 5 876546839 +328 231 2 885048762 +92 129 4 886443161 +369 948 2 889428228 +299 1039 4 878191779 +56 391 3 892910950 +322 318 4 887314280 +373 420 4 877107630 +316 289 2 880853219 +177 47 3 880131187 +276 751 4 884286678 +48 266 3 879434387 +385 524 5 880924359 +109 472 2 880571715 +69 333 3 882027204 +224 223 3 888082468 +49 101 3 888067164 +328 218 4 885047281 +56 383 2 892910544 +264 153 5 886122031 +10 703 5 877892110 +296 846 2 884196985 +215 238 2 891435526 +92 31 4 875654321 +270 13 4 876954192 +305 557 4 886324521 +59 169 4 888204757 +365 287 4 891304301 +387 218 3 886481687 +75 137 4 884050102 +178 367 4 882828021 +92 11 4 875653363 +208 381 3 883108873 +23 229 3 874787162 +58 275 5 884305220 +15 148 3 879456049 +18 186 4 880131699 +1 184 4 875072956 +87 96 5 879875734 +119 742 5 874775406 +13 720 4 882397974 +94 1044 4 891722555 +295 226 4 879518166 +169 260 1 891269104 +387 180 4 886479737 +339 673 5 891034071 +326 566 4 879877073 +357 7 3 878951537 +115 511 5 881172117 +151 503 3 879524199 +323 332 3 878738865 +110 779 3 886988793 +291 28 4 875086920 +360 195 3 880355715 +178 99 4 882827574 +158 176 4 880134398 +201 596 4 884141438 +22 176 5 878887765 +195 831 2 884504132 +6 183 4 883601311 +286 738 5 877534903 +184 231 3 889910195 +199 988 1 883782655 +263 294 2 891297330 +293 425 4 888905923 +13 887 5 882140867 +43 596 3 883955650 +1 157 4 876892918 +181 10 2 878962955 +366 672 5 888858078 +13 683 1 886952521 +230 607 3 880484755 +266 272 4 892256705 +323 245 2 878739084 +194 215 3 879524291 +168 472 3 884287927 +346 546 4 875263238 +99 676 4 885678886 +21 758 1 874951314 +303 186 4 879467105 +310 14 5 879436268 +268 139 2 875744744 +270 295 5 876954248 +263 134 5 891299697 +388 313 5 886438122 +207 1226 2 882081278 +267 552 3 878973621 +90 100 5 891383241 +11 9 5 891902970 +354 175 5 891218024 +43 49 4 883956387 +92 581 4 875654189 +321 135 4 879439763 +265 125 4 875320516 +80 269 3 883605009 +60 493 5 883325994 +79 6 4 891271901 +72 509 4 880036638 +373 427 4 877099317 +62 232 3 879375977 +327 233 3 887820385 +246 1101 5 884921380 +236 596 4 890116575 +269 139 1 891451492 +178 204 4 882826048 +387 514 3 886480515 +222 780 3 881060370 +37 24 4 880915674 +49 143 3 888067726 +235 135 4 889655571 +385 4 2 879445260 +89 694 5 879460027 +268 209 4 875310311 +13 269 2 889292060 +59 202 4 888205714 +378 272 4 889665041 +225 143 2 879540748 +386 455 3 877654961 +119 209 4 886177544 +272 22 5 879454753 +286 354 4 889651029 +190 269 4 891033606 +374 122 2 882158328 +178 465 3 882827506 +38 94 5 892432030 +374 581 4 880938044 +178 244 1 884837126 +29 1018 4 882821989 +359 831 3 886453402 +92 98 5 875652934 +244 168 5 880606118 +76 64 5 875498777 +344 1007 4 889814518 +387 199 4 886483858 +193 33 3 889125912 +292 628 3 881105123 +280 576 3 891702276 +238 1190 3 883576603 +290 164 4 880474010 +380 132 4 885479186 +83 768 4 887665549 +248 515 5 884535085 +178 183 4 882826347 +178 342 4 892239863 +373 89 5 877098821 +122 191 5 879270128 +174 862 1 886515172 +297 273 4 874954763 +378 1180 3 880334269 +299 1020 4 878192237 +184 511 4 889908740 +301 31 3 882076463 +178 1169 4 882827134 +276 1044 3 877934374 +321 276 3 879438987 +195 1089 4 883295540 +1 201 3 878542960 +239 1192 1 889180949 +149 308 2 883512658 +234 1149 3 892318060 +331 653 3 877196173 +344 244 3 889814600 +134 339 2 891732507 +128 322 2 879966447 +30 255 4 875059984 +178 566 4 882826915 +83 932 4 881971414 +200 685 4 876042493 +310 274 3 879436534 +389 955 4 880087599 +65 661 4 879216605 +330 208 5 876546409 +363 163 3 891495143 +208 211 5 883108398 +198 748 2 884204577 +179 272 5 892151202 +273 690 4 891293008 +85 492 4 879454905 +121 126 3 891388936 +14 813 2 880929564 +264 672 3 886122447 +340 265 5 884990470 +280 690 2 891699964 +314 1220 5 877892293 +67 827 3 875379322 +194 471 3 879540807 +18 463 4 880131143 +308 45 4 887736843 +89 93 2 879441307 +267 575 3 878974052 +222 125 5 877563802 +268 978 2 876513927 +210 25 4 887730407 +302 307 4 879436739 +207 540 3 880161839 +15 864 4 879456231 +125 116 4 892838322 +62 225 3 879373287 +260 682 4 890618537 +299 100 3 877877600 +351 313 5 883356562 +356 272 5 891405651 +297 143 5 875239870 +288 300 5 886372155 +249 174 4 879572314 +385 367 4 879444640 +373 625 4 877104086 +387 414 4 886482969 +381 191 5 892696757 +309 324 3 877370419 +45 15 4 881012184 +56 56 5 892676376 +55 254 2 878176206 +318 105 1 884495164 +95 554 3 879196748 +41 69 4 890687145 +379 520 5 880524908 +184 766 3 889907738 +201 544 2 884140307 +243 387 4 879988752 +293 401 1 888907453 +6 499 4 883602283 +321 124 3 879438857 +172 183 5 875538864 +76 1158 4 875028190 +197 690 3 891409255 +16 418 5 877724727 +299 216 5 889502688 +99 1067 4 885679437 +340 186 4 884991082 +64 1139 1 889740260 +181 834 3 878962720 +246 1 4 884920918 +80 194 3 887401763 +128 238 4 879968125 +201 684 3 884114233 +371 24 4 877487500 +95 403 1 879196457 +174 1053 5 886514358 +85 449 4 882813248 +387 692 1 886482928 +234 210 3 892333616 +21 860 2 874951727 +72 504 4 880037461 +13 124 5 884538663 +3 345 3 889237004 +344 288 4 889813994 +254 967 3 886472139 +326 399 4 879877004 +246 588 4 884920998 +272 498 4 879454726 +235 193 5 889655204 +237 83 4 879376641 +181 1017 1 878962496 +281 877 4 881200643 +99 100 5 885678813 +141 225 3 884585523 +296 172 5 884197193 +89 121 5 879441657 +259 313 5 883370924 +6 197 5 883601203 +128 151 3 879968921 +347 588 3 881654321 +7 177 4 891352904 +334 170 3 891546181 +234 928 2 892336287 +102 443 3 888803148 +7 471 4 891352864 +141 405 3 884585105 +31 514 5 881548030 +271 258 3 885847357 +254 610 2 886472291 +236 237 4 890117001 +52 287 5 882922357 +214 50 3 891543114 +315 504 3 879821193 +61 1127 4 891206274 +181 1057 2 878963381 +312 919 3 891699263 +87 39 3 879875995 +63 1008 3 875748004 +85 108 2 880838201 +256 181 4 882164444 +279 571 4 878082781 +26 117 3 891351590 +290 432 5 880474590 +236 1013 2 890117465 +387 520 4 886480446 +119 109 5 874775580 +346 809 3 874951029 +339 523 5 891033044 +222 529 2 881059537 +230 8 5 880484501 +329 338 2 891655545 +184 647 5 889909024 +292 855 5 881105373 +60 207 3 883327342 +246 895 5 884924976 +231 252 4 888605273 +144 762 3 888104940 +254 755 3 886473489 +5 397 2 875635907 +303 473 4 879485111 +151 203 3 879524471 +168 117 5 884287318 +323 151 4 878739568 +90 995 4 891382708 +354 657 4 891218289 +372 200 5 876869481 +339 67 3 891035147 +284 328 4 885329322 +349 847 4 879466507 +177 508 4 880130825 +289 24 4 876790292 +262 195 2 879791755 +318 419 5 884495890 +1 150 5 876892196 +380 177 3 885479082 +23 549 3 874788290 +65 173 3 879217851 +56 435 3 892676429 +210 403 4 887736322 +147 340 4 885593965 +339 28 4 891032542 +12 753 5 879960679 +2 308 3 888979945 +264 283 5 886122952 +345 315 5 884900653 +193 111 1 889126375 +301 7 4 882074236 +373 68 5 877106741 +94 38 2 891722482 +357 833 4 878952341 +26 237 3 891351590 +316 197 4 880854227 +293 164 4 888906598 +217 226 1 889069878 +145 413 3 877343280 +371 177 4 877487135 +286 477 3 876521773 +74 150 3 888333458 +178 195 4 882826944 +321 527 3 879439763 +337 742 5 875184353 +90 190 5 891383687 +56 189 4 892683248 +325 403 2 891479102 +336 845 1 877758035 +13 802 2 882398254 +64 202 4 889738993 +181 1087 1 878962496 +296 281 2 884196985 +387 58 4 886484065 +293 720 1 888907674 +183 1217 3 891466405 +204 1194 4 892513906 +329 300 4 891655431 +124 226 4 890287645 +43 516 5 875981452 +181 846 3 878962586 +308 755 3 887740033 +204 482 4 892513906 +196 111 4 881251793 +200 743 3 891825607 +94 942 4 891721749 +383 319 2 891192377 +49 1078 1 888067164 +268 357 4 875309882 +389 176 4 880165047 +343 118 2 876403121 +233 205 4 877663548 +328 693 2 885046174 +17 245 2 885166209 +178 8 4 882826556 +367 17 5 876689991 +7 450 4 892132425 +118 853 5 875385228 +28 222 5 881961393 +224 704 3 888103812 +290 755 4 880475218 +312 131 5 891699702 +389 109 3 879915745 +82 529 4 878770028 +301 686 4 882078008 +158 149 3 880132383 +270 747 5 876955662 +262 237 3 879961980 +190 222 4 891033676 +271 510 4 885849140 +207 328 2 884386312 +87 229 4 879876037 +293 845 2 888904838 +94 1 4 885870323 +11 185 4 891905783 +373 596 3 877106741 +334 1010 5 891545108 +385 79 3 879441853 +297 257 3 874954763 +330 97 5 876547220 +378 162 4 880046332 +222 368 1 881061326 +326 210 3 879874964 +49 406 2 888067428 +234 87 3 892079336 +233 568 5 880612346 +215 215 3 891435680 +109 393 4 880579237 +79 325 5 891271792 +271 866 4 885848132 +97 466 3 884239449 +169 133 4 891359171 +344 148 2 884900248 +253 742 4 891628535 +15 244 2 879456447 +330 58 5 876546132 +267 177 5 878972756 +342 257 2 875318267 +114 496 4 881259994 +87 318 4 879877627 +25 189 5 885852488 +113 322 3 875076044 +5 444 2 875720762 +94 588 4 885873006 +232 1128 2 888549907 +95 111 4 879194012 +65 526 4 879216734 +158 62 5 880134759 +201 325 5 884111064 +90 1197 4 891384476 +24 178 5 875323676 +311 965 3 884365686 +280 559 3 891701583 +73 100 4 888626120 +110 384 2 886989524 +178 257 5 882823954 +201 527 3 884111360 +210 484 4 887736070 +74 137 3 888333458 +271 1101 4 885849025 +380 1449 4 885478845 +360 303 3 880353526 +323 282 3 878739543 +381 495 4 892696186 +215 222 4 891436469 +328 661 5 885047373 +145 592 3 888398867 +293 76 3 888906824 +262 625 3 879792751 +213 678 4 878870275 +267 24 5 878972682 +159 748 3 880485488 +130 240 4 875801750 +318 160 3 884497031 +363 426 2 891496927 +102 797 2 888802722 +223 225 3 891550193 +339 154 4 891032885 +332 978 4 888098459 +158 229 3 880134532 +18 215 3 880130930 +134 259 2 891732393 +13 890 1 883670672 +236 148 4 890117028 +246 719 4 884924026 +11 652 4 891905003 +107 340 5 891264356 +312 482 5 891698613 +224 846 4 888104116 +106 285 4 883876206 +313 578 3 891028241 +94 537 4 891722006 +129 269 4 883244011 +314 406 3 877887388 +336 239 3 877758001 +192 252 1 881368277 +328 183 5 885045805 +224 287 3 888104154 +125 73 5 892838288 +178 500 4 882827288 +71 923 5 885016882 +130 1274 2 878537853 +186 257 4 891719774 +293 445 4 888906315 +312 269 5 891698130 +268 998 1 875743929 +168 257 5 884287642 +203 326 4 880433398 +347 328 4 881652077 +155 286 4 879370860 +43 946 4 883955247 +374 454 4 880394997 +164 926 2 889402091 +291 179 5 874868255 +320 1011 3 884748978 +313 405 3 891028197 +82 414 4 878769748 +181 819 3 878962550 +201 1039 3 884111599 +130 541 3 876252307 +237 479 5 879376487 +9 479 4 886959343 +295 1115 5 879518568 +279 432 3 875296292 +256 866 4 882151198 +305 178 4 886322966 +378 875 3 880044108 +269 985 3 891446443 +352 4 3 884290328 +50 286 2 877052400 +311 845 4 884366824 +60 98 4 883326463 +84 7 4 883452155 +308 514 4 887738619 +95 655 4 879198109 +165 69 3 879525799 +174 288 3 886432770 +343 483 5 876404343 +296 151 2 884196964 +276 141 4 874792870 +301 427 4 882075775 +181 928 3 878963241 +293 183 4 888906119 +5 402 1 875720947 +378 4 3 880045612 +279 1231 4 875313583 +244 953 4 880607335 +334 316 4 891544407 +279 1 3 875295812 +244 164 3 880607154 +294 248 5 877819421 +114 182 3 881259994 +178 271 4 882823395 +211 286 4 879437184 +387 942 4 886483906 +278 22 5 891295360 +110 806 3 886987952 +36 885 5 882157581 +135 443 4 879857868 +385 262 4 884153000 +91 181 5 891439243 +357 291 4 878952137 +254 504 3 886472115 +123 255 1 879873905 +327 294 3 887743644 +320 716 1 884750992 +308 582 3 887736843 +264 381 4 886123596 +342 574 1 875320124 +361 286 5 879440286 +268 7 4 876513953 +77 405 3 884733422 +387 32 5 886479737 +1 183 5 875072262 +49 231 3 888069579 +380 587 4 885479274 +248 186 5 884534695 +144 454 3 888105993 +221 128 3 875246209 +22 222 4 878887925 +201 77 2 884140788 +335 245 4 891567053 +390 990 4 879693608 +136 19 4 882693529 +276 682 3 877933862 +138 150 3 879023131 +80 423 3 887401643 +308 433 5 887738301 +218 12 5 881288233 +382 546 2 875946234 +269 70 1 891447280 +326 452 3 879877470 +288 177 3 886629528 +128 48 4 879967767 +85 45 3 879455197 +233 58 3 880612403 +14 172 5 890881521 +386 121 3 877655145 +13 153 4 882139901 +379 732 5 880525995 +345 903 3 884900609 +13 343 1 883670672 +322 194 5 887313850 +243 127 4 879987045 +276 577 2 877935336 +314 399 3 877889359 +109 866 4 880571872 +248 153 3 884534716 +200 473 4 876042493 +109 91 4 880582384 +49 116 4 888066109 +23 1005 3 874787647 +198 241 3 884209264 +151 322 2 881771160 +301 772 3 882078250 +297 102 1 875240267 +144 480 4 888106322 +152 191 5 880149963 +186 44 5 879023529 +119 147 4 886176486 +196 580 2 881252056 +109 423 4 880577514 +270 551 4 876956264 +344 5 3 884901533 +246 161 3 884921679 +133 322 2 890588852 +327 476 2 887819538 +270 288 5 876953827 +243 1368 2 879987909 +8 685 4 879362423 +244 258 5 880601905 +354 900 4 891180527 +267 771 3 878973900 +43 531 4 883955160 +141 471 4 884585039 +176 13 4 886047994 +269 856 5 891448220 +99 322 3 885678499 +350 153 3 882347466 +135 603 4 879857765 +121 98 5 891388210 +297 173 4 875240237 +85 655 3 879454350 +56 761 3 892679333 +374 427 3 880396048 +214 39 4 891544845 +21 565 3 874951898 +340 526 5 884991396 +303 376 2 879543617 +277 405 3 879544027 +279 209 5 875308987 +128 65 4 879968512 +193 362 3 889122992 +325 95 2 891478895 +325 164 1 891479017 +389 1119 3 880088659 +30 286 5 885941156 +280 568 2 891701047 +346 134 5 874947644 +59 611 3 888204309 +64 217 2 889737568 +9 340 4 886958715 +224 893 3 888082350 +239 124 5 889178652 +363 212 1 891497278 +229 349 4 891633028 +96 483 5 884403057 +72 356 4 880036911 +276 669 1 874792767 +318 575 2 884497924 +210 238 3 891036021 +178 455 3 882825357 +222 1438 4 881059993 +338 408 5 879438570 +13 301 1 882140718 +232 204 4 888549515 +41 100 4 890687242 +201 578 2 884310148 +331 868 4 877196567 +321 205 5 879440109 +336 1047 4 877757063 +385 435 3 879443102 +145 5 3 875272196 +269 195 3 891449099 +167 136 4 892738418 +13 597 3 882397650 +42 939 4 881108484 +347 1283 1 881652730 +373 114 5 877098402 +303 391 1 879485747 +130 281 4 876250850 +65 328 4 879216131 +311 132 4 884365548 +6 195 4 883602283 +387 200 5 886481686 +271 402 4 885849791 +190 291 3 891042883 +15 274 4 879456168 +286 229 1 889652291 +347 472 5 881652813 +322 216 3 887313850 +275 300 4 875153898 +347 280 4 881652657 +331 64 4 877196504 +296 14 4 884196665 +130 282 5 875801750 +94 946 3 891723217 +377 748 4 891296945 +6 488 5 883601426 +11 350 4 891901991 +338 484 5 879438143 +7 481 5 891352341 +179 750 1 892151270 +314 282 5 877886862 +382 531 4 875946830 +26 597 2 891379753 +234 136 4 892317967 +290 193 4 880473802 +280 95 5 891700570 +378 141 3 880055565 +291 496 5 875088191 +181 266 1 878961709 +279 265 5 875655063 +210 50 5 887731014 +249 161 3 879572760 +293 479 4 888905923 +189 618 2 893265160 +95 712 2 888956400 +303 125 2 879467638 +43 252 4 875975363 +303 219 5 879484480 +378 386 3 880332643 +314 274 3 877886788 +151 83 5 879524611 +88 301 4 891037618 +325 185 5 891478140 +234 401 2 892336322 +293 464 3 888906927 +334 311 4 891628833 +268 244 4 875742316 +108 21 3 879880141 +374 200 5 880395735 +174 248 5 886433981 +181 682 4 878961586 +262 949 4 879792773 +8 144 5 879362286 +327 583 2 887820341 +5 100 5 875635349 +70 298 5 884064134 +181 1068 1 878962052 +7 385 5 891351585 +279 820 4 884984955 +350 340 4 882346257 +302 879 2 879436960 +393 1219 4 889729536 +374 735 5 880396359 +23 427 5 874789279 +387 447 4 886481687 +234 32 3 892078936 +286 1182 2 877535288 +181 929 1 878963122 +13 154 5 882141335 +87 239 4 879876673 +57 844 2 883697134 +269 436 3 891450675 +251 612 5 886271855 +119 174 4 874781303 +349 744 2 879465785 +128 568 4 879968544 +22 550 5 878888184 +23 739 2 874787861 +16 654 5 877720298 +361 709 5 879440974 +389 249 3 879915991 +189 225 4 893264703 +135 185 4 879857797 +151 411 4 879543228 +25 520 3 885852150 +389 613 5 880088038 +336 999 2 877757516 +236 546 4 890117223 +264 216 5 886123358 +7 667 5 892135347 +350 657 5 882346663 +160 484 5 876862243 +380 186 3 885479355 +374 930 2 880394179 +303 545 2 879544400 +7 210 4 891352904 +357 235 4 878951691 +38 1 5 892430636 +311 946 4 884366270 +387 559 3 886481737 +279 810 2 889984640 +257 100 5 882049950 +82 472 3 878768882 +295 162 4 879517157 +222 144 5 878182416 +60 218 4 883327538 +312 485 4 891699345 +157 137 5 886889876 +303 24 3 879468047 +327 153 4 887818596 +7 498 5 891351814 +10 99 5 877889130 +299 17 1 889503374 +271 294 2 885844698 +70 1065 4 884149603 +332 291 4 887938439 +322 92 4 887314073 +328 628 3 885047627 +44 148 4 878346946 +188 326 3 875071293 +347 173 2 881654503 +307 183 3 877121921 +368 396 2 889783617 +373 843 3 877106878 +312 483 5 891699156 +276 449 2 874792520 +20 742 4 879668166 +145 684 5 875273174 +310 740 4 879436292 +159 103 1 880557604 +92 568 3 875654590 +380 241 2 885479997 +311 1093 5 884963180 +13 601 4 882140104 +60 420 4 883327113 +11 100 4 891902718 +373 94 2 877111313 +5 143 3 875636815 +314 724 2 877888117 +389 160 4 880087897 +10 194 4 877886661 +269 98 4 891448951 +313 657 4 891013830 +167 133 5 892738453 +203 271 3 880433445 +50 9 4 877052297 +38 257 1 892429512 +373 357 4 877098568 +286 952 2 875807043 +95 660 5 880571456 +380 313 4 885477859 +257 531 5 879547608 +379 616 2 890464337 +1 248 4 874965954 +54 597 2 880934806 +267 22 4 878971816 +131 19 4 883681418 +327 203 3 887818540 +180 156 5 877127747 +60 163 4 883327566 +367 774 4 876690049 +213 97 5 878956299 +373 520 4 877098678 +152 699 5 882476911 +211 876 2 879461395 +299 462 5 878192463 +361 402 3 879441179 +200 231 4 884130679 +193 2 3 890860198 +341 948 3 890758169 +174 28 5 886434547 +378 73 3 880056667 +313 97 4 891016193 +38 145 1 892433062 +271 318 5 885848707 +280 62 3 891701747 +271 44 4 885849357 +372 183 5 876869667 +109 356 4 880578711 +392 178 5 891038945 +118 184 5 875385057 +1 208 5 878542960 +342 240 3 875318629 +320 974 3 884749097 +10 588 4 877886846 +7 669 1 892132020 +250 92 5 878091818 +178 508 3 884837419 +376 237 3 879459054 +195 67 2 874825826 +189 275 5 893264194 +268 91 3 875310311 +122 175 5 879270084 +1 128 4 875072573 +188 79 5 875072393 +276 418 4 874792870 +262 929 3 879791031 +44 237 3 878346748 +301 519 4 882076682 +181 990 1 878961814 +28 294 3 881954915 +276 340 5 880150440 +186 117 5 879023607 +13 808 2 882397833 +311 761 3 884366067 +364 1048 5 875931585 +297 1217 1 875240132 +342 95 4 875320297 +357 258 4 878951101 +178 596 3 882824194 +269 531 5 891447141 +87 7 4 879875735 +128 1 4 879966919 +366 447 5 888857990 +393 1034 2 889731413 +187 747 4 879465882 +7 232 3 891353766 +13 705 5 884538766 +64 151 3 879366214 +239 516 5 889180487 +7 658 3 891352419 +236 153 2 890118075 +59 974 3 888203343 +379 554 4 880525678 +360 237 4 880354484 +286 1140 3 877533586 +293 155 2 888907356 +102 663 3 892993190 +77 523 5 884752582 +380 172 3 885478334 +307 402 2 879283362 +194 161 4 879523576 +189 732 2 893277248 +293 642 3 888906804 +343 303 4 876402390 +6 466 4 883602422 +96 1 5 884403574 +206 889 2 888180081 +224 277 3 888103812 +295 164 5 879518395 +145 273 5 875270322 +3 299 3 889237199 +271 517 3 885848943 +328 726 4 885049112 +122 187 4 879270424 +368 551 4 889783617 +389 204 4 879991017 +292 288 3 877560833 +296 750 5 884196150 +296 484 4 884197308 +151 172 5 879524325 +230 739 5 880485611 +378 197 3 880056423 +58 654 5 884304865 +249 137 4 879572725 +374 9 1 880393056 +125 236 1 879454891 +268 762 2 875743216 +320 1090 3 884751376 +276 436 4 874792711 +92 214 4 875654732 +158 50 4 880133306 +62 697 4 879375932 +198 318 4 884207560 +295 450 4 879519438 +22 948 1 878887553 +334 961 4 891628832 +51 64 4 883498936 +374 1011 4 880393783 +352 96 4 884290328 +222 783 2 878184899 +113 319 2 875075887 +115 642 5 881171693 +75 952 5 884050393 +314 597 4 877887065 +5 370 1 875720814 +120 924 4 889490290 +7 183 4 891351624 +296 298 1 884196640 +373 278 5 877111423 +178 117 4 882824467 +51 679 3 883498937 +287 461 5 875336652 +222 280 3 878184545 +302 270 2 879436785 +297 705 2 875238726 +348 294 4 886522658 +194 744 3 879547130 +54 748 5 880928957 +343 228 5 876404757 +180 403 3 877355713 +374 948 2 880392592 +95 385 4 879196408 +300 261 3 875650018 +283 709 5 879298206 +291 156 5 874834768 +181 937 3 878961781 +339 11 4 891032379 +94 68 4 891722432 +109 392 3 880579237 +201 99 3 884141438 +324 1094 5 880575715 +286 1194 4 877533640 +42 418 5 881108147 +286 596 3 875806869 +105 307 2 889214381 +42 367 2 881109149 +59 131 4 888205410 +312 489 5 891699321 +327 710 4 887747410 +137 472 4 881433336 +323 467 5 878740017 +332 449 4 888360438 +99 331 3 885678247 +279 90 3 875314287 +279 228 4 889326161 +346 415 2 875265527 +113 508 4 875325377 +197 89 5 891409798 +199 294 1 883782636 +164 331 5 889401193 +287 301 3 875333873 +250 71 5 878090294 +94 576 2 891723593 +152 845 3 886535827 +66 597 3 883601456 +337 371 4 875236191 +99 312 2 885678576 +75 597 3 884050940 +393 471 4 887744549 +198 193 4 884207833 +370 42 3 879435462 +83 407 1 891182532 +344 684 3 884901249 +222 357 4 881059014 +60 82 3 883327493 +303 294 4 879466116 +52 531 5 882922833 +88 315 4 891037276 +193 258 3 889123038 +178 98 5 882826944 +200 208 5 884128904 +387 1007 5 886480623 +151 732 4 879542775 +276 450 1 874792634 +183 88 3 891466760 +387 224 5 886480703 +9 527 3 886959344 +199 111 3 883783042 +327 1056 2 887747971 +60 605 3 883326893 +325 614 4 891479038 +7 101 5 891350966 +363 82 3 891497047 +305 482 2 886323006 +305 188 2 886323757 +2 307 3 888550066 +263 143 5 891298592 +125 136 5 879454309 +342 58 5 875319912 +290 498 4 880473777 +303 15 3 879467607 +299 936 4 889417423 +236 183 2 890118206 +334 1524 4 891547467 +316 64 4 880853953 +226 9 5 883889811 +195 779 2 874825826 +249 98 5 879572256 +286 1411 2 877535425 +308 1047 3 887742130 +222 247 1 878714998 +234 12 1 892333830 +269 401 3 891451013 +135 504 4 879857843 +293 474 5 888905685 +305 511 4 886322560 +301 215 5 882077222 +299 67 2 889503740 +234 170 5 892333798 +200 373 4 884130754 +60 61 4 883326652 +224 392 4 888104154 +7 504 5 891352384 +208 428 4 883108430 +160 32 5 876859413 +102 565 2 888803395 +294 742 4 877819634 +5 176 3 875635962 +42 1044 4 881109271 +378 155 4 880333918 +322 521 5 887314244 +339 514 3 891037119 +56 231 3 892910931 +117 928 3 881009471 +303 232 4 879467191 +295 602 5 879517247 +321 855 3 879439733 +295 98 5 879517193 +70 588 5 884065528 +7 136 5 891351813 +363 555 1 891498920 +113 242 2 875075887 +360 735 5 880356059 +303 276 4 879467895 +102 47 2 888803636 +314 155 5 877891575 +64 161 3 889739779 +276 649 4 886483691 +389 28 4 880165411 +146 347 3 891457493 +206 1430 1 888179980 +333 79 3 891045496 +295 157 5 879966498 +118 655 5 875385136 +276 4 4 874791623 +160 109 2 876857844 +101 1057 2 877136789 +250 969 5 878092002 +292 1010 4 881104581 +228 313 5 889387172 +12 684 5 879959105 +195 325 2 880268330 +393 15 3 887744266 +182 423 5 876436480 +346 128 2 874950208 +56 738 3 892683978 +339 479 5 891032701 +194 451 2 879527145 +374 182 5 880395698 +263 125 4 891299573 +16 160 4 877722001 +76 197 5 875028563 +334 1133 4 891549192 +52 15 5 882922204 +117 1016 5 881008815 +59 473 3 888203610 +91 618 3 891438875 +234 435 3 892079040 +128 58 3 879968008 +279 50 3 890451347 +141 546 4 884585470 +375 356 4 886622131 +100 1236 3 891375630 +222 8 1 878182307 +344 195 5 884900771 +334 200 4 891547171 +314 1503 3 877890891 +380 518 3 885478821 +200 584 4 884129542 +311 491 4 884365168 +219 132 5 889403668 +363 2 4 891495809 +342 189 5 875319967 +210 735 4 887737338 +92 159 4 875810543 +328 291 4 885047865 +178 25 3 888514710 +104 412 3 888465900 +374 880 5 882156984 +283 659 5 879298239 +102 831 2 888802508 +59 609 2 888205855 +117 742 4 880126022 +97 432 4 884238997 +186 327 3 891717806 +334 608 4 891547668 +130 284 2 874953728 +13 100 5 882140166 +144 1286 4 888105846 +102 98 4 888802939 +6 193 3 883601529 +181 1361 1 878963122 +163 98 4 891220196 +207 832 3 877878424 +293 71 4 888906905 +116 1089 2 876453376 +270 716 4 876955563 +250 184 1 878091683 +167 169 1 892738419 +121 137 5 891388501 +393 1285 3 889555176 +13 71 4 882398654 +274 255 2 878945579 +145 302 4 879161553 +393 318 3 887745973 +303 396 4 879484846 +303 122 4 879485066 +59 45 5 888204465 +295 812 4 879518739 +164 300 5 889401221 +43 966 4 883955498 +378 508 4 880044278 +91 327 4 891438351 +135 564 1 879857956 +213 357 5 878955848 +182 121 3 885613117 +229 750 2 891631948 +253 298 3 891628074 +64 64 4 889737454 +43 210 5 883955467 +44 1058 4 878347392 +356 748 4 891406500 +295 1133 4 879519528 +162 544 4 877636167 +30 688 3 885941492 +245 411 3 888513425 +125 498 5 892836395 +303 722 2 879485372 +254 429 4 887347350 +174 1033 1 886515591 +99 245 3 885678500 +111 272 3 891679692 +256 2 5 882164480 +21 595 3 874951617 +332 218 5 888360396 +130 1208 4 875802211 +345 1247 2 884993996 +184 582 4 889909409 +343 333 3 876402468 +305 204 2 886323998 +113 324 2 875076180 +283 238 5 879298295 +89 762 3 879441491 +80 699 3 887401533 +294 346 3 889241377 +214 856 4 891543952 +380 427 4 885478193 +379 8 5 880525194 +286 55 4 877531574 +347 806 3 881653830 +223 321 1 891548920 +320 1041 3 884751084 +382 276 3 875946029 +279 1230 3 891209189 +235 523 5 889655044 +72 423 5 880036550 +301 470 4 882078199 +190 405 4 891626000 +262 762 2 879790974 +254 35 2 886475755 +75 1150 4 884050705 +3 324 2 889237247 +343 727 4 876406462 +267 433 5 878972314 +141 288 3 884584386 +151 49 3 879543055 +328 22 5 885045805 +223 25 1 891549382 +10 695 3 877892050 +83 122 1 886534501 +347 239 5 881654591 +249 39 4 879572284 +305 100 3 886323648 +293 480 5 888905685 +227 116 4 879035347 +279 290 4 875296924 +181 1129 1 878962675 +393 126 4 887743647 +70 398 2 884067339 +342 657 5 874984207 +250 324 2 878089033 +198 636 3 884209353 +340 181 4 884991431 +259 108 4 874724882 +292 118 3 881104701 +387 31 3 886483330 +85 318 4 879453684 +343 191 5 876404689 +235 237 4 889655435 +296 210 3 884197308 +313 650 4 891013829 +216 7 5 880232719 +139 127 5 879538578 +297 625 3 875240266 +305 174 3 886322635 +43 792 1 883954876 +312 584 5 891699263 +288 276 4 886892127 +110 77 4 886988202 +130 94 5 875802058 +48 423 4 879434752 +262 143 3 879793970 +200 196 4 884126833 +16 99 5 877720733 +75 100 5 884049875 +59 823 5 888203749 +269 444 3 891451971 +95 151 4 879193353 +380 1444 1 885480795 +181 1134 2 878963167 +19 310 4 885412063 +85 212 2 879454859 +332 728 4 893027298 +333 180 1 891045191 +1 242 5 889751633 +182 100 3 885613067 +235 174 4 889654971 +253 117 5 891628535 +285 313 5 890595313 +25 238 4 885852757 +33 292 4 891964244 +70 1035 3 884066399 +328 1015 3 885047737 +57 1071 3 883698324 +130 508 4 874953557 +262 778 4 879793536 +90 692 4 891384476 +293 91 2 888907499 +150 93 4 878746889 +263 205 5 891298792 +164 118 5 889401852 +128 686 4 879967174 +276 420 4 874792945 +62 475 4 879371980 +146 313 4 891457591 +201 20 2 884140275 +184 405 2 889908050 +267 642 4 878972524 +276 404 4 874792870 +222 432 3 881059142 +22 393 4 878886989 +234 945 3 892334189 +301 54 3 882076587 +7 435 5 891350845 +303 568 4 879468414 +65 239 5 879217689 +328 1109 3 885047100 +292 654 5 881105481 +394 67 5 881059383 +291 48 5 874868027 +393 402 3 889730187 +201 856 3 884140709 +365 894 1 891303760 +279 66 2 882146492 +280 92 3 891700366 +389 124 4 879916053 +363 228 3 891496481 +313 203 5 891013859 +96 435 3 884403500 +385 340 4 879438647 +21 687 2 874951005 +305 385 1 886324792 +308 28 3 887737036 +43 405 4 883956122 +336 742 3 877759928 +210 44 3 887737710 +64 238 4 889739025 +225 172 5 879540748 +292 173 5 881103631 +57 411 4 883697679 +221 272 5 885081264 +169 127 4 891359354 +385 474 5 881530739 +196 25 4 881251955 +311 715 2 884365746 +244 1107 2 880608699 +203 1 3 880434384 +307 746 4 875681078 +207 520 4 879665302 +321 514 4 879439706 +339 175 5 891032793 +85 211 5 879454005 +151 200 3 879525002 +131 286 5 883681514 +204 1022 5 892392078 +385 195 1 879453773 +92 930 2 886443582 +16 479 5 877720436 +378 1044 3 880332643 +10 447 4 877891747 +5 441 1 875720830 +151 414 5 879542474 +222 527 4 878183110 +60 88 4 883327684 +10 418 4 877886783 +360 197 5 880355888 +316 190 5 880853774 +378 123 3 880044532 +60 143 3 883327441 +394 42 4 880887152 +393 1206 3 889730494 +378 179 2 880055336 +94 282 3 891722758 +18 660 5 880130930 +130 833 4 876251037 +387 423 3 886484065 +92 238 5 875654159 +224 282 4 888082705 +172 582 4 875538864 +253 806 4 891628181 +178 746 3 882827019 +244 294 4 880601905 +370 116 3 879434707 +7 636 4 891351384 +177 1067 4 880131201 +343 163 5 876408139 +293 33 2 888907433 +308 705 5 887737837 +323 180 5 878739857 +317 328 4 891446438 +223 286 1 891548562 +279 433 4 880869018 +391 527 3 877399541 +178 454 4 882827247 +122 737 4 879270874 +296 22 4 884197068 +328 554 3 885049790 +177 878 1 882142141 +191 86 5 891562417 +280 157 3 891700733 +264 168 5 886122031 +99 69 4 885679833 +314 218 4 877889204 +352 7 3 884290549 +320 452 3 884751589 +294 355 4 889241426 +128 213 3 879967300 +381 378 4 892696019 +7 431 4 891351547 +149 896 4 883512689 +393 633 2 887746091 +125 198 3 879454385 +77 1028 1 884733400 +387 1019 4 886480288 +128 425 5 879967197 +276 727 3 889174919 +336 451 2 877756242 +323 289 2 878738910 +75 125 3 884050164 +324 754 5 880575045 +49 290 2 888069062 +258 751 5 885700946 +108 515 5 879879941 +94 921 5 891725332 +208 524 4 883108745 +210 243 2 887734998 +276 232 3 874792094 +201 443 3 884112580 +189 294 5 893264220 +332 249 3 891214777 +109 291 3 880571801 +274 478 5 878946577 +95 64 5 879197685 +392 333 4 891037531 +183 720 4 892323453 +293 619 1 888905229 +381 771 2 892696557 +385 661 4 879443045 +159 1025 2 893256139 +392 302 5 891037385 +130 1049 3 876251341 +385 99 2 879443186 +1 148 2 875240799 +372 672 5 876869512 +59 825 4 888203658 +222 239 5 878184392 +367 441 3 876690049 +42 1040 3 881106270 +141 151 2 884585039 +49 1009 3 888066133 +291 383 2 875086699 +115 763 2 881170725 +374 223 5 880394520 +173 242 5 877556626 +280 102 5 891701328 +60 511 4 883326301 +354 497 4 891217160 +320 188 4 884749360 +325 510 4 891478180 +145 7 5 875270429 +363 591 4 891499437 +5 69 1 875721555 +269 175 5 891455816 +268 182 4 875309882 +94 366 3 891722845 +116 286 3 876451911 +51 496 4 883498655 +263 95 5 891299324 +178 864 2 888514648 +363 658 3 891496543 +95 862 1 884266100 +90 367 4 891385250 +330 549 5 876547355 +7 483 4 891351851 +210 65 4 887731305 +120 405 4 889490580 +222 722 3 878184833 +130 66 5 875802173 +291 588 4 875086920 +276 672 3 874792692 +314 5 4 877889724 +43 63 3 883956353 +70 128 4 884067339 +216 4 5 880234469 +341 1527 4 890757717 +387 1097 3 886480657 +181 886 1 878961623 +385 1411 3 879447873 +393 539 3 891364757 +343 724 4 876404499 +385 224 2 879439728 +85 464 5 882996119 +13 363 3 882398076 +230 1192 4 880485352 +315 285 5 879799486 +269 7 3 891449055 +234 179 3 892079373 +149 310 2 883512689 +292 111 4 881104606 +294 748 3 877818861 +186 288 1 879022858 +326 204 3 879874964 +119 24 4 886177076 +163 234 3 891220137 +299 509 4 877880566 +117 307 5 880124339 +50 125 2 877052502 +280 448 3 891701765 +342 655 4 875319383 +94 731 3 891723295 +144 1016 3 888104322 +7 461 4 891352303 +308 70 4 887737244 +313 843 3 891030334 +257 116 3 879029742 +157 1 5 874813703 +1 112 1 878542441 +262 147 3 879790603 +42 736 5 881108187 +228 650 3 889388662 +277 15 4 879544145 +104 282 3 888465166 +18 237 3 880129991 +232 191 4 888549376 +144 96 5 888105691 +295 997 3 879518821 +279 652 4 890451408 +363 114 5 891494688 +165 181 5 879525738 +67 472 4 875379706 +275 95 3 875154535 +109 94 4 880579787 +60 673 4 883327711 +37 161 5 880915902 +378 159 3 880056887 +295 7 5 879518018 +181 262 2 878961749 +187 86 4 879465478 +145 39 4 875271838 +181 976 1 878963342 +127 449 4 884364950 +330 570 4 876547674 +174 845 5 886433771 +49 713 3 888066214 +279 105 4 875297381 +378 447 4 880056888 +307 81 5 879283091 +383 505 4 891193042 +70 48 4 884064574 +374 424 1 883628021 +334 1241 2 891545513 +380 154 3 885478624 +320 554 4 884751288 +363 366 2 891497583 +246 236 4 884921986 +263 144 4 891298792 +92 161 2 875654125 +303 1012 4 879544712 +275 662 3 880315170 +13 391 3 882398255 +43 432 3 875981421 +344 125 3 884899741 +219 114 5 889403091 +291 1188 4 874835165 +246 932 1 884923864 +21 118 1 874951382 +389 111 3 879916053 +58 283 1 884304592 +276 302 5 877584085 +190 748 3 891033388 +301 151 2 882074776 +313 831 3 891028426 +373 179 3 877104310 +328 570 3 885046498 +7 181 3 891351287 +104 248 2 888465604 +210 188 3 887737171 +130 669 4 888962754 +203 619 3 880434438 +94 390 5 891725333 +87 1187 2 879875893 +172 430 3 875537964 +373 228 4 877106328 +94 100 5 885872942 +222 670 3 878183657 +7 7 5 891352220 +188 485 3 875072087 +118 474 5 875384571 +105 286 4 889214306 +3 348 4 889237455 +368 436 3 889783562 +114 654 3 881259741 +235 213 4 889655044 +377 288 5 891295937 +296 504 5 884197394 +385 129 3 881467873 +3 351 3 889237315 +257 462 4 879547695 +398 514 4 875658794 +109 248 2 880564415 +119 250 2 874775731 +329 303 4 891655350 +346 31 4 874950383 +288 50 4 886374520 +56 815 4 892683960 +18 955 4 880130713 +194 175 3 879521595 +204 297 5 892514010 +11 291 4 891902815 +102 298 3 875886827 +271 58 3 885849325 +54 258 4 880928745 +187 175 2 879465241 +308 633 4 887739257 +290 118 4 880731896 +222 768 2 878185014 +293 1057 2 888905229 +43 17 3 883956417 +174 268 5 886432749 +293 181 3 888904734 +60 21 3 883327923 +94 82 4 891721777 +308 12 5 887737243 +30 28 4 885941321 +328 916 2 893195710 +389 429 4 879991352 +160 118 3 876768828 +307 101 3 888095824 +63 1011 1 875747731 +95 728 3 882804159 +293 69 3 888906576 +92 215 4 875656419 +41 423 2 890687175 +293 504 4 888905736 +379 452 3 880524614 +168 288 1 884287927 +201 847 2 884111546 +294 79 4 889854323 +186 225 4 879024148 +254 199 4 886472089 +378 148 4 880044944 +301 582 2 882077811 +312 496 5 891698664 +127 288 5 884363851 +11 216 3 891904949 +258 315 3 885701004 +311 592 5 884364845 +92 249 3 886443192 +161 215 2 891170866 +181 832 1 878963038 +18 188 3 880129388 +43 98 5 875981220 +312 967 3 891699321 +328 550 3 885047336 +280 50 3 891701027 +54 260 4 880930146 +325 305 2 891477638 +268 370 2 875745579 +389 845 4 879916053 +141 864 3 884585128 +301 66 4 882077330 +181 243 1 878961814 +387 773 4 886481800 +393 932 3 887744578 +38 211 1 892431907 +292 79 5 881103434 +234 91 5 892335920 +318 137 4 884494652 +80 208 5 887401604 +119 544 2 886177206 +308 5 4 887739608 +360 588 3 880355803 +151 79 4 879524642 +387 198 4 886480352 +271 425 2 885849275 +360 302 4 880353526 +378 546 2 880318158 +145 696 3 875271442 +357 125 5 878951784 +393 940 2 889731109 +85 89 4 879454075 +390 989 5 879693677 +109 1014 4 880571979 +1 193 4 876892654 +128 118 5 879968896 +145 895 3 883840687 +380 856 3 885479706 +298 69 4 884125058 +387 1115 3 886479575 +389 607 3 879991297 +206 750 3 888179981 +269 93 3 891446580 +15 9 4 879455635 +264 382 4 886123596 +135 183 4 879857723 +90 79 4 891383912 +342 108 4 874984574 +313 154 2 891014753 +340 205 4 884991516 +201 36 1 884140927 +303 739 5 879468547 +7 484 5 891351201 +354 1007 4 891216549 +85 702 2 879828054 +385 153 4 879442028 +145 713 4 875270616 +327 196 4 887745871 +246 145 1 884923922 +25 50 5 885852150 +368 219 2 889783453 +87 87 4 879877931 +7 550 4 891352489 +222 196 5 878183110 +276 1240 4 874977579 +195 46 3 891762441 +29 678 3 882821582 +313 156 3 891014838 +339 298 2 891032856 +393 128 3 887746145 +13 906 3 891749765 +279 120 1 888427451 +151 183 3 879524642 +286 168 4 877531760 +360 28 4 880355678 +275 496 3 880314031 +332 871 3 887938351 +312 443 4 891698951 +76 325 2 878101114 +246 547 4 884922512 +397 7 5 885349913 +147 751 2 885593965 +322 751 2 887313611 +8 568 4 879362233 +274 243 2 878944437 +339 188 4 891033735 +387 201 5 886484631 +42 183 4 881107821 +206 678 1 888179833 +276 403 4 888873675 +175 183 4 877107942 +201 187 3 884111312 +293 139 3 888908088 +23 747 3 874786903 +18 47 3 880131262 +307 153 5 875681145 +380 62 1 885479777 +194 286 1 879520306 +59 717 2 888203959 +311 193 5 884365075 +95 404 5 888954513 +288 69 5 886373426 +50 123 4 877052958 +117 588 3 881011697 +315 127 5 879799423 +259 357 5 874725485 +167 733 2 892738453 +79 7 5 891272016 +99 265 3 885679833 +174 950 3 886434204 +256 552 3 882164927 +18 428 3 880131325 +303 735 4 879483567 +66 280 4 883602044 +346 742 4 874948513 +54 827 3 880937813 +44 252 2 878346748 +184 69 3 889908694 +165 651 5 879525961 +211 357 2 879460172 +336 1057 4 877757373 +123 735 2 879872868 +274 208 4 878946473 +385 423 2 879445662 +13 230 3 882397503 +326 241 3 879875778 +351 984 5 879481675 +325 86 3 891478578 +250 195 2 878091736 +188 56 4 875071658 +64 879 3 879365313 +145 348 4 888397542 +126 302 4 887853469 +190 363 2 891626023 +261 359 5 890454351 +286 29 2 877533586 +284 887 4 885328906 +346 294 3 886273405 +83 63 4 880327970 +18 692 3 880130930 +303 742 4 879484899 +306 13 4 876504442 +373 747 4 877104048 +362 312 5 885019504 +360 283 4 880354215 +394 1210 3 881060330 +174 1028 4 886434087 +280 5 4 891701066 +60 523 4 883326837 +279 998 5 875313883 +323 772 3 878739904 +382 25 2 875945880 +399 813 3 882512003 +102 208 4 888803537 +286 993 2 875807043 +181 251 1 878962052 +59 597 2 888203610 +323 286 3 878738826 +390 124 4 879694232 +293 583 3 888908001 +201 1153 2 884140709 +92 961 4 875811128 +109 1039 2 880579418 +121 428 5 891388333 +295 82 4 879518126 +73 180 4 888626577 +101 121 4 877137015 +291 66 4 875086185 +293 209 3 888905519 +347 819 1 881653155 +72 203 3 880037462 +382 171 3 875946639 +180 28 3 877355568 +398 227 2 875908666 +331 705 2 877196173 +339 632 4 891033794 +398 181 4 875652318 +246 29 1 884922740 +173 1265 3 877557239 +303 184 5 879467436 +199 117 3 883782879 +374 931 3 880936233 +339 631 5 891033256 +244 204 4 880605812 +45 100 5 881010742 +315 603 5 879821267 +233 82 4 877663612 +264 183 5 886122577 +194 514 3 879521167 +303 237 5 879468307 +316 357 4 880854049 +91 230 4 891439560 +363 417 1 891498223 +117 109 4 880126336 +289 1016 5 876789843 +279 63 3 875313350 +13 665 2 882396984 +60 132 4 883325944 +276 595 2 874787195 +13 345 4 884538366 +361 183 4 879441285 +333 88 5 891045551 +197 62 2 891410039 +175 669 1 877107790 +339 1301 3 891032189 +336 282 3 877760032 +21 875 4 874951005 +309 938 4 877370383 +275 117 3 876197615 +243 286 4 879986908 +144 193 4 888105287 +115 32 5 881171348 +250 223 4 878090294 +186 988 4 891719775 +347 829 4 881653155 +378 549 3 880056701 +308 25 4 887740649 +265 477 3 875320371 +331 58 3 877196567 +130 742 5 876251053 +299 333 4 892249868 +54 741 5 880931687 +21 441 3 874951761 +130 39 4 875801496 +315 100 5 879821003 +243 268 4 879986951 +393 681 3 887742798 +276 1089 2 882659211 +336 655 3 877757752 +238 220 3 883576560 +296 923 5 884197193 +84 148 4 883452274 +18 968 3 880130155 +178 877 2 888513069 +158 286 4 880134261 +293 485 3 888905948 +387 208 3 886480484 +24 294 3 875246037 +48 511 5 879434954 +181 1374 1 878962391 +87 25 4 879876811 +382 474 5 875947199 +141 281 4 884584865 +178 187 4 882826049 +388 56 3 886441015 +90 14 5 891383987 +87 705 4 879877740 +172 1134 2 875536721 +13 261 1 883670785 +207 568 4 875509395 +270 1148 5 876955042 +252 275 5 891456464 +371 237 5 877487052 +318 158 5 884498709 +149 301 3 883512813 +148 509 5 877016605 +224 1044 3 888104353 +326 200 2 879877349 +87 64 5 879875649 +396 841 4 884646648 +389 715 3 880614012 +48 306 4 879434211 +201 636 2 884310149 +387 183 4 886480206 +325 193 4 891478627 +90 903 4 891383319 +156 124 3 888185677 +274 476 4 878945645 +326 563 3 879877470 +22 110 1 878887157 +152 67 5 882477689 +285 902 4 890595584 +18 193 5 880131358 +189 15 2 893264335 +144 181 4 888104032 +280 181 3 891701248 +14 603 4 890881484 +327 659 4 887819021 +262 447 3 879794206 +222 949 3 878183173 +198 410 1 884205385 +291 375 1 874868791 +125 63 3 892838558 +339 739 3 891036058 +249 245 2 879571999 +364 321 2 875931478 +312 659 5 891699321 +326 233 4 879876941 +262 781 3 879793667 +7 154 5 891353124 +277 121 2 879544058 +86 881 2 879570218 +13 816 1 882396983 +292 83 5 881104360 +231 846 4 888605274 +299 998 2 889503774 +360 79 4 880355485 +88 261 5 891038103 +182 471 4 885613216 +186 31 4 879023529 +343 684 3 876406878 +181 1388 1 878962168 +308 313 3 887736408 +231 151 1 879966209 +347 65 2 881654679 +64 9 4 889738085 +381 129 4 892697628 +276 307 4 878015917 +181 1284 1 878962773 +214 257 3 891543176 +311 239 3 884365284 +109 559 3 880579709 +83 452 3 880309214 +372 148 5 876869915 +369 271 5 889428642 +270 714 4 876954965 +94 685 4 891722382 +398 504 3 875722071 +311 1 4 884963202 +85 234 4 882995015 +334 1411 1 891549434 +94 170 5 891725362 +192 340 4 881366535 +56 433 4 892676970 +313 515 5 891013803 +72 127 5 880037702 +401 486 4 891033184 +255 259 3 883215759 +94 650 5 885870612 +396 291 4 884646289 +166 300 5 886397723 +398 69 5 875659191 +24 286 5 875323773 +335 260 3 891567159 +234 1050 3 892333616 +321 213 4 879440109 +385 767 1 879447361 +372 1083 3 876869878 +75 1001 1 884050531 +275 222 4 876198296 +72 177 4 880037204 +271 356 4 885849300 +188 717 4 875074329 +228 87 1 889388662 +217 840 1 889070087 +125 1000 3 892838977 +94 458 4 891722306 +326 141 3 879876235 +62 508 4 879372277 +373 204 5 877098222 +368 288 3 889783453 +313 67 1 891029117 +181 25 5 878962675 +357 118 5 878951691 +124 96 4 890399864 +276 203 4 877934910 +222 746 5 878183137 +36 269 3 882157258 +338 945 4 879438762 +323 300 2 878738827 +283 210 5 879298206 +8 56 5 879362183 +305 530 5 886323237 +140 258 3 879013617 +11 663 4 891905032 +255 833 4 883216902 +63 678 2 875747047 +194 44 4 879524007 +389 656 5 879991175 +91 322 4 891438397 +275 102 3 875154718 +352 173 1 884290361 +371 179 3 877487364 +330 72 5 876547087 +198 692 2 884208377 +365 7 2 891304213 +1 264 2 875071713 +64 1141 5 889739834 +87 63 4 879876848 +64 17 3 889739733 +179 303 1 892151270 +130 496 5 875216593 +269 276 5 891446193 +174 21 1 886515209 +303 118 2 879485623 +237 423 4 879376487 +249 108 3 879640452 +385 1353 4 879440098 +357 326 5 878951101 +299 482 4 877881508 +279 214 3 875306910 +217 281 2 889069842 +181 748 1 878961368 +319 302 4 876280242 +181 1009 1 878963276 +313 527 4 891013525 +248 11 5 884534992 +109 820 3 880572382 +269 525 4 891449055 +382 290 4 875946830 +378 1028 2 880044726 +210 185 4 887736232 +128 723 3 879967966 +363 472 1 891498469 +393 1048 3 887745120 +76 960 3 875028143 +102 510 4 888801316 +304 893 3 884967520 +360 194 3 880355803 +201 240 3 884114069 +254 951 4 886474619 +339 240 4 891036641 +234 73 2 892334368 +82 225 3 878768790 +383 464 4 891192986 +279 319 4 890780735 +89 845 2 879441335 +14 9 4 879119260 +286 1230 1 877535157 +181 260 1 878961623 +209 301 3 883460492 +330 47 5 876546409 +264 762 3 886122771 +267 578 3 878973153 +92 96 4 875656025 +303 574 1 879544184 +87 566 5 879875775 +393 88 3 889730066 +194 1058 2 879552923 +167 126 3 892738141 +90 1125 4 891384611 +69 150 5 882072920 +356 328 4 891406241 +92 393 3 875660494 +146 688 1 891457749 +363 1485 4 891496102 +269 1071 2 891449801 +119 199 5 874781994 +18 169 5 880130252 +171 1022 3 891034889 +325 340 3 891477473 +76 288 2 878101114 +114 520 3 881260473 +387 566 3 886483194 +291 1215 1 874834184 +396 148 4 884646436 +148 116 5 877398648 +11 597 2 891904037 +373 58 4 877100161 +369 988 3 889428228 +292 56 5 881105373 +128 280 1 879968579 +197 750 5 891409199 +216 15 3 881428365 +144 591 3 888104122 +374 824 4 880394331 +294 411 3 889242589 +389 1530 2 880088753 +301 161 3 882076558 +141 476 3 884585498 +299 222 2 877878148 +170 881 3 886190419 +85 327 3 884820110 +41 518 3 890687412 +393 683 4 887742110 +351 538 4 879481495 +308 177 5 887738570 +144 471 4 888104213 +332 928 5 887938706 +101 109 2 877136360 +60 492 5 883326525 +244 1039 4 880607570 +251 12 4 886271700 +125 692 3 892836523 +11 733 4 891904413 +7 166 3 891351585 +328 1041 3 885048762 +234 265 3 892078837 +181 1049 1 878963122 +44 5 4 878347598 +94 684 4 891721615 +363 62 2 891497639 +256 846 4 882151167 +205 269 3 888284347 +385 304 3 879438949 +328 696 3 885049376 +73 89 5 888625685 +354 180 3 891217274 +393 252 3 887744766 +393 763 5 887745086 +94 1089 2 891724829 +159 220 5 880557782 +339 65 4 891033452 +130 729 4 876252042 +274 742 4 878945322 +301 154 4 882076425 +293 151 4 888904927 +128 494 4 879967016 +102 597 3 888801673 +339 25 4 891035116 +90 471 4 891385752 +105 333 3 889214268 +185 28 5 883524428 +339 181 4 891033898 +222 288 4 883815252 +198 175 3 884207239 +63 300 4 875748326 +154 640 5 879138713 +256 370 3 882153321 +14 475 3 876964936 +90 1109 3 891385652 +21 834 1 874951293 +393 890 1 887742991 +38 118 5 892431151 +378 1037 2 880334476 +25 8 4 885852150 +178 739 4 882827737 +6 483 5 883601500 +276 168 5 874791623 +393 651 4 889728238 +1 219 1 878542327 +62 318 5 879373659 +224 1163 2 888104154 +85 340 3 893109920 +292 423 5 881105625 +304 310 3 884966697 +327 410 2 887819462 +373 506 4 877099211 +399 219 3 882345454 +261 988 3 890455190 +18 170 5 880130515 +158 403 4 880134650 +244 196 5 880605416 +72 121 3 880036048 +303 792 5 879484644 +37 22 5 880915810 +398 481 3 875659441 +327 200 4 887747338 +25 969 3 885852059 +222 9 5 877563227 +28 678 2 882826550 +387 144 3 886479649 +69 100 5 882072892 +342 1160 3 874984751 +141 1013 1 884585470 +268 474 5 875309718 +308 693 3 887738104 +293 92 4 888906071 +82 657 4 878769261 +82 458 1 884714145 +142 288 3 888639837 +264 844 1 886124097 +117 98 4 881012430 +233 276 5 877665324 +159 471 4 880485861 +227 1010 3 879035637 +244 1074 4 880607904 +234 77 3 892333890 +25 169 5 885852301 +296 56 5 884197287 +107 269 5 891264267 +13 501 5 882398724 +95 683 4 879193353 +216 108 4 880232917 +279 1032 3 880666757 +15 307 1 879455233 +380 1168 3 885479833 +181 825 1 878963304 +115 443 4 881171622 +363 569 2 891498259 +354 285 5 891216526 +95 366 4 880572628 +1 232 3 878543196 +145 406 3 875270692 +347 82 5 881654269 +312 275 5 891698553 +373 729 4 877099263 +245 473 2 888513344 +61 331 2 891206126 +397 1019 3 885349715 +7 185 5 892135346 +116 347 2 886309481 +122 470 3 879270901 +361 97 4 879440740 +379 402 3 880524943 +244 181 4 880604302 +318 162 5 884496123 +290 474 3 880474204 +200 560 4 884130655 +45 237 4 881008636 +225 418 5 879540650 +60 613 4 883326497 +55 685 1 878176134 +271 141 4 885849114 +387 564 1 886481800 +259 200 4 874725081 +119 1202 4 874775680 +279 1052 4 890451408 +312 8 5 891699263 +92 663 4 875653914 +158 803 3 880134848 +92 102 2 875813376 +327 517 2 887818991 +128 14 5 879967341 +67 7 5 875379794 +16 603 5 877719206 +87 97 5 879877825 +389 550 3 880088923 +393 62 4 889728895 +58 64 5 884305295 +308 160 4 887738717 +255 406 1 883216358 +121 249 1 891388708 +200 391 4 884130484 +13 219 1 882396955 +214 307 3 891542735 +399 591 3 882340599 +271 744 4 885847693 +266 124 4 892258004 +354 702 3 891307114 +336 276 4 877760310 +316 283 5 880853599 +87 521 3 879877772 +15 458 5 879456288 +246 470 4 884922964 +92 278 3 876175640 +379 443 4 880524640 +301 710 3 882078008 +229 748 3 891632402 +43 951 3 883955969 +351 1105 4 883356833 +203 24 4 880434359 +145 327 5 875269822 +268 735 3 876518557 +6 526 3 883602596 +294 105 3 889242660 +282 338 3 879949468 +379 192 4 880524972 +14 202 3 890881521 +94 624 2 891723459 +24 258 4 875245985 +391 188 3 877399658 +251 172 5 886271641 +267 475 5 878970368 +46 151 4 883616218 +292 285 4 881103896 +276 209 4 874791667 +222 142 2 878183984 +27 121 4 891543191 +402 257 4 876266701 +301 756 4 882074932 +167 1310 3 892738384 +7 562 5 891354053 +370 657 3 879434636 +320 159 4 884751190 +206 294 2 888179694 +326 67 2 879877284 +373 210 5 877098177 +201 57 4 884111958 +387 844 5 886480484 +59 490 4 888205614 +249 479 5 879641035 +314 1085 1 877892017 +280 1313 5 891700184 +354 1101 3 891218003 +12 28 5 879958969 +378 222 3 882712421 +60 180 4 883326028 +267 943 4 878972903 +354 61 5 891218091 +72 480 5 880037768 +256 77 3 882164955 +378 233 2 880333540 +7 191 5 891351201 +244 886 5 880601905 +303 300 1 879466166 +57 151 3 883697585 +334 216 3 891546348 +293 443 4 888906781 +388 816 4 886441248 +42 409 3 881106270 +18 393 3 880130930 +216 93 4 880232637 +250 948 3 878089182 +181 878 1 878961709 +210 257 5 887730789 +269 475 5 891457067 +399 284 2 882512342 +167 73 2 892738452 +336 49 4 877758001 +378 465 3 881582268 +263 215 4 891298273 +332 204 4 888098088 +271 411 1 885848062 +366 185 5 888857750 +268 169 5 875309829 +223 22 5 891550649 +156 180 5 888185777 +239 8 5 889179290 +7 683 4 891350703 +63 952 3 875747896 +345 443 5 884993464 +2 257 4 888551062 +164 619 4 889402160 +72 100 5 880035680 +301 273 1 882074800 +267 204 4 878971629 +276 315 4 892436298 +314 763 5 877886706 +56 195 5 892676429 +177 336 2 880130500 +311 183 5 884365519 +267 479 4 878971405 +117 143 1 881012472 +46 181 4 883616254 +43 705 4 883954970 +64 367 4 889739678 +399 1314 3 882349198 +354 276 3 891216760 +164 181 5 889401906 +296 274 4 884196741 +44 717 3 878346470 +301 849 4 882078883 +95 90 2 880572166 +1 236 4 875071898 +197 127 5 891409839 +232 234 3 888549595 +336 399 3 877757063 +305 190 3 886322966 +62 213 4 879375323 +389 507 5 879991196 +387 501 4 886483620 +81 412 1 876534408 +207 8 3 878103820 +338 663 5 879438627 +222 665 1 878184719 +299 916 3 892249868 +24 318 5 875323474 +7 399 4 891354357 +92 712 3 875656392 +29 98 4 882821942 +303 1222 3 879468513 +380 229 3 885481179 +264 745 5 886123656 +335 269 4 891566808 +244 475 4 880603582 +348 276 3 886523456 +217 363 1 889070011 +7 139 3 891354729 +343 306 4 876402516 +384 272 5 891273509 +378 396 4 880332879 +137 249 4 881433387 +92 46 4 875653867 +116 322 2 876452186 +101 24 4 877136391 +321 736 4 879439537 +77 52 5 884753203 +262 318 5 879793022 +312 615 4 891698893 +393 275 4 887744053 +268 246 5 875742316 +363 1099 2 891495402 +200 2 4 884130046 +62 845 3 879372383 +234 300 3 891033627 +393 1095 2 887745174 +77 144 3 884752853 +277 628 4 879543697 +240 289 4 885775745 +48 170 4 879434886 +197 578 3 891410039 +338 133 4 879438143 +113 277 3 875076416 +347 12 3 881653584 +315 180 4 879799526 +393 142 4 889730460 +379 1032 2 880568109 +136 42 3 882848866 +33 333 4 891964259 +82 479 4 878769703 +187 275 5 879465937 +111 896 2 891680243 +387 1012 4 886481073 +327 514 4 887747338 +373 487 4 877098177 +295 241 5 879518800 +379 401 3 880962187 +94 410 4 891721494 +378 1220 3 880055779 +343 458 5 876402894 +346 76 4 874950135 +10 160 4 877888944 +375 684 4 886622066 +158 244 4 880132772 +235 190 4 889656007 +21 859 2 874951859 +389 38 2 880089076 +345 333 3 884900543 +26 292 3 891347400 +213 200 5 878956100 +5 417 3 875636830 +58 950 1 892242020 +399 8 3 882510165 +395 151 3 883765297 +293 977 2 888908088 +188 732 3 875073828 +222 268 4 877562748 +3 330 2 889237297 +25 13 4 885852381 +308 309 1 887736408 +214 22 3 891544200 +42 79 5 881108040 +262 432 3 879794267 +255 405 4 883216902 +254 573 2 886475476 +94 96 3 885872942 +42 428 3 881108040 +299 1119 4 889502727 +109 68 3 880582469 +301 423 1 882076239 +57 1011 3 883697761 +263 177 4 891297988 +228 204 3 889388662 +342 204 4 874984261 +290 450 2 880473557 +311 485 1 884364538 +47 302 5 879439040 +378 284 3 880044835 +301 164 3 882076966 +72 581 4 880036996 +213 475 4 878870648 +192 1405 5 881367456 +339 23 5 891033481 +144 32 4 888105287 +42 234 4 881108093 +255 413 2 883216358 +224 662 5 888103671 +332 717 3 887938760 +315 732 3 879821158 +236 66 2 890118507 +301 1091 3 882079353 +374 159 4 880937920 +125 383 2 892839412 +21 665 3 874951858 +262 491 3 879793188 +328 332 3 885044782 +379 90 2 880740215 +7 227 3 892132317 +339 126 4 891032121 +197 286 1 891409255 +334 514 4 891545926 +379 164 4 880524582 +109 196 4 880578358 +320 742 4 884748800 +348 473 3 886523560 +152 51 4 882476486 +328 228 3 885046976 +6 459 2 883599228 +18 509 4 880129940 +374 761 3 880938370 +312 170 5 891698553 +308 161 3 887740788 +2 316 5 888979693 +4 294 5 892004409 +60 495 3 883327639 +368 96 3 889783678 +212 286 4 879303468 +48 427 4 879434653 +90 614 4 891384020 +271 311 3 885844547 +92 720 3 875813022 +269 183 3 891448823 +254 186 3 886472023 +92 109 3 886443351 +29 259 4 882821044 +279 384 4 875312946 +365 13 3 891303950 +308 199 4 887737760 +95 674 2 880572104 +25 197 3 885852059 +269 171 5 891447169 +269 527 5 891447841 +254 98 4 886472201 +253 95 4 891628416 +320 1081 4 884748997 +13 716 4 882141393 +102 167 2 892993927 +110 28 4 886987979 +399 1228 3 882345500 +64 71 3 879365670 +91 64 4 891439243 +122 423 4 879270805 +163 97 4 891220019 +301 88 4 882077142 +184 22 3 889908985 +1 252 2 875240677 +361 111 3 879440974 +293 64 5 888905519 +280 1015 3 891701631 +378 451 4 880055597 +393 1469 3 889729749 +331 305 5 877196819 +268 325 3 876513675 +206 260 3 888179772 +301 180 3 882076782 +63 412 3 875748109 +49 657 5 888068032 +18 629 3 880130515 +151 660 4 879524199 +109 183 5 880572528 +77 778 2 884753203 +320 90 4 884751034 +96 525 2 884402860 +160 123 4 876768949 +21 717 1 874951483 +354 70 3 891218208 +313 423 4 891013939 +197 258 4 891409255 +271 739 4 885849706 +227 150 3 879035347 +126 243 5 887855342 +250 477 3 878089716 +101 756 3 877136424 +15 476 4 879456404 +334 7 5 891544788 +6 238 5 883601713 +174 1032 3 886515591 +378 972 4 880056491 +256 9 4 882150644 +387 381 4 886482969 +7 589 5 891352451 +254 103 2 886476123 +63 979 3 875748068 +37 597 5 880915607 +95 142 4 880572249 +393 12 5 887745883 +63 106 2 875748139 +201 156 4 884111830 +146 302 4 891457538 +92 201 3 875654159 +13 317 5 882140552 +370 705 3 879434666 +314 64 5 877888346 +85 425 4 879454905 +160 926 2 876769148 +381 652 5 892696252 +199 276 4 883782879 +279 80 4 875313750 +144 1284 3 888104446 +381 724 3 892696616 +180 694 5 877128388 +299 115 3 877880474 +373 28 3 877103935 +40 243 2 889041694 +6 81 4 883602283 +7 501 5 891353411 +399 459 4 882340807 +95 185 3 879197886 +393 953 4 889555334 +378 1134 4 880044278 +156 346 3 888185561 +295 53 1 879519528 +328 736 3 885047737 +21 985 2 874951349 +366 860 2 888858078 +149 689 2 883512950 +213 628 5 878870648 +353 286 5 891402757 +373 386 3 877107403 +144 216 4 888105691 +215 70 3 891436232 +61 243 2 892331237 +181 1387 1 878962119 +363 959 1 891497523 +331 811 4 877196384 +62 176 5 879373768 +378 302 5 889664996 +95 699 2 882804187 +396 751 3 884645648 +234 76 2 892335564 +87 515 4 879876194 +128 136 5 879967080 +385 673 2 879445779 +327 382 3 887819316 +308 747 3 887740033 +279 1239 1 884982882 +320 869 4 884751068 +403 111 4 879785974 +405 56 4 885544911 +307 511 5 879282952 +354 155 2 891307206 +101 284 4 877136564 +141 117 4 884584929 +389 785 3 880613841 +194 588 4 879524393 +280 1459 4 891701747 +379 391 4 880525698 +303 1226 4 879544713 +198 654 5 884207733 +201 563 1 884114813 +70 542 2 884065248 +342 1048 1 875318536 +389 496 4 879991218 +147 690 4 885593965 +239 558 5 889178986 +342 4 4 874984395 +380 709 4 885478603 +331 933 3 877196235 +184 91 3 889909988 +62 815 3 879375391 +88 690 4 891037708 +362 336 2 885019468 +251 249 5 886272118 +325 492 4 891478557 +315 269 5 879799301 +303 1021 4 879484643 +343 919 5 876403348 +22 648 4 878886647 +310 251 5 879436035 +213 281 4 878871038 +327 239 3 887819316 +222 869 3 878182337 +269 5 2 891450780 +214 238 4 891544472 +303 55 4 879467328 +13 617 3 881515112 +385 1536 5 879441339 +168 1047 2 884288080 +20 597 3 879668190 +297 269 4 875774037 +393 456 3 887745501 +46 1024 5 883614766 +367 665 5 876689738 +328 546 3 885048861 +308 498 5 887736584 +116 260 2 887605412 +144 93 1 888104032 +363 347 3 891493723 +7 207 4 891352526 +221 118 1 875244940 +264 210 5 886123415 +267 88 4 878972873 +329 272 5 891655191 +85 1137 4 879452609 +326 443 5 879877349 +222 202 4 878181906 +367 436 4 876689962 +224 620 3 888104085 +378 304 4 880043929 +334 227 1 891547083 +345 1048 2 884991436 +381 694 4 892696929 +332 342 4 892484976 +399 73 3 882343731 +396 260 3 884645754 +256 226 5 882164644 +216 433 3 880233957 +357 819 4 878951653 +117 772 4 881012728 +345 93 4 884991191 +18 953 3 880131901 +141 328 4 886447679 +158 731 2 880135118 +328 1263 3 885048730 +344 12 5 884901024 +169 604 4 891359317 +389 792 4 880088115 +77 89 5 884733839 +10 176 4 877889130 +303 844 3 879468179 +313 228 3 891016986 +224 655 4 888103646 +218 789 3 881288574 +244 117 2 880604698 +13 546 3 882397741 +365 275 4 891304019 +214 12 5 892668153 +299 752 3 887136060 +230 186 4 880484937 +100 342 3 891375454 +354 382 5 891217897 +326 445 4 879877413 +315 48 4 879799457 +155 324 2 879370963 +259 98 4 874809091 +244 217 5 880606698 +119 105 2 874775849 +175 483 5 877107339 +373 117 4 877098599 +274 277 4 878945818 +312 180 4 891698174 +401 117 3 891032563 +394 568 5 880888167 +95 622 4 880571678 +345 1016 3 884994619 +405 592 1 885548670 +291 715 5 874868327 +144 191 4 888105081 +234 499 4 892334141 +352 181 4 884289693 +330 80 2 876547737 +393 1047 3 887745293 +16 693 4 877721905 +368 567 3 889783617 +311 43 4 884366227 +48 195 5 879434954 +244 723 3 880607154 +44 474 4 878347532 +145 685 4 875271229 +314 288 5 877885887 +268 382 3 875309282 +308 1211 3 887739669 +305 134 5 886322560 +387 578 2 886483252 +344 433 4 884901517 +321 497 5 879439860 +97 429 4 884238860 +290 685 3 880732365 +64 663 3 889737505 +299 285 5 877877847 +39 900 3 891400159 +130 322 4 874953525 +397 108 4 885350045 +346 685 3 874950383 +15 471 4 879456084 +70 89 4 884150202 +64 156 4 889737506 +102 50 4 888801315 +342 584 4 874984430 +269 642 3 891449464 +234 168 3 892079434 +131 302 5 883681723 +344 9 5 884814480 +152 1014 2 880149224 +393 596 4 887743611 +14 275 4 876964725 +112 300 4 884992508 +280 538 5 891700185 +57 476 3 883697990 +49 508 3 888068841 +363 144 4 891494865 +400 328 3 885676490 +405 1582 1 885548670 +339 380 3 891035584 +49 737 1 888066828 +327 281 3 887820341 +303 43 3 879485507 +83 663 5 887665423 +303 139 3 879543209 +70 169 4 884149688 +81 1028 1 876534277 +392 258 2 891037531 +383 474 5 891193072 +201 589 3 884113082 +53 250 2 879442920 +382 183 3 875946672 +313 501 5 891013742 +308 79 4 887737593 +48 433 3 879434791 +6 208 4 883602422 +249 634 5 879572314 +405 171 1 885549544 +253 448 2 891628883 +168 323 3 884286990 +13 436 2 882396869 +308 589 4 887737760 +214 195 4 891544200 +59 118 5 888203234 +270 217 5 876956360 +1 200 3 876893098 +354 962 4 891217274 +92 559 3 875660304 +405 580 1 885547447 +227 7 5 879035251 +234 493 3 892078567 +323 328 3 878739029 +99 926 3 885679437 +207 144 3 875509434 +294 350 4 889241426 +200 1060 3 876042340 +260 538 1 890618403 +174 14 5 886433771 +298 71 5 884183016 +279 654 5 875306552 +405 1409 1 885549045 +292 234 5 881105245 +13 290 4 882141814 +297 267 3 875409139 +392 1143 4 891038158 +381 216 5 892695996 +207 59 4 877846793 +237 199 4 879376606 +274 83 5 878946612 +239 1203 5 889180040 +387 82 4 886483098 +234 289 4 891033851 +405 953 3 885546487 +273 319 4 891292846 +201 176 4 884112281 +299 95 3 889501654 +338 486 3 879438392 +286 289 5 875806672 +174 423 2 886514276 +145 217 3 877343156 +66 15 3 883601456 +345 356 3 884993686 +181 1343 1 878962199 +387 333 3 886479484 +175 9 4 877108146 +296 475 4 884196555 +62 180 4 879373984 +343 8 5 876404836 +13 281 3 882397974 +262 191 4 879793022 +234 1457 3 892079538 +309 303 2 877370319 +210 211 5 887730297 +230 443 4 880485090 +303 531 4 879466457 +320 123 4 884748750 +307 1140 2 879114143 +210 679 3 887808619 +303 705 5 879467105 +151 160 4 879542670 +239 152 3 889179808 +385 337 4 879439469 +229 258 2 891632040 +297 195 1 875240053 +1 180 3 875072573 +373 102 5 877100096 +151 64 5 879524536 +313 199 4 891013938 +208 523 4 883108360 +194 98 4 879521329 +292 207 5 881105561 +231 121 4 879966609 +373 451 5 877107430 +378 288 3 880043804 +328 515 5 885045678 +125 120 1 892839312 +37 363 3 880915711 +285 276 4 890595726 +280 195 3 891700303 +378 527 4 880054954 +271 419 3 885848996 +176 240 4 886048230 +339 607 5 891032189 +365 321 5 891303536 +42 280 4 881106270 +56 38 2 892683533 +178 134 3 882826983 +101 975 2 877136659 +269 809 1 891451451 +102 184 2 888801465 +59 431 4 888205534 +344 248 4 889814539 +299 702 4 889502159 +399 486 3 882510290 +391 264 1 877398704 +230 432 4 880485110 +23 13 4 874784497 +267 824 4 878970953 +286 577 2 877535500 +393 431 2 887746965 +389 490 3 879991081 +49 514 4 888068686 +286 554 4 877535014 +313 565 1 891030027 +126 319 2 887938081 +264 443 5 886122447 +326 944 2 879877326 +59 527 5 888204553 +157 1283 2 886891173 +345 283 4 884991105 +195 304 4 876617344 +26 476 3 891384414 +43 91 3 883956260 +151 287 4 879528754 +222 944 3 878715192 +321 199 4 879439787 +398 12 3 875658898 +381 403 3 892696045 +276 743 1 874792634 +308 1404 4 887739257 +367 100 5 876689878 +13 447 2 882396869 +96 1232 5 884404017 +312 604 5 891698613 +387 168 5 886479610 +41 174 4 890687264 +164 323 4 889401318 +311 425 2 884365140 +174 293 5 890168505 +159 872 1 880485262 +95 445 4 888956272 +145 683 3 879161674 +396 1025 4 884645839 +11 260 1 891902426 +76 1007 4 875312109 +392 492 4 891038979 +290 227 2 880473557 +64 212 3 889740011 +213 193 4 878955442 +311 232 3 884364812 +308 806 4 887737594 +393 812 3 889555021 +282 307 3 881702875 +43 153 5 883955135 +48 132 5 879434886 +256 51 4 882165135 +363 588 2 891495339 +363 156 3 891494962 +345 284 4 884991348 +308 463 4 887738057 +290 739 3 880475757 +184 137 5 889907685 +405 994 1 885549746 +144 410 3 888104521 +11 752 4 891902157 +405 387 1 885546680 +38 82 5 892429903 +393 349 3 887742939 +9 507 4 886959343 +200 768 4 884130592 +368 17 5 889783562 +195 771 2 874825826 +209 50 5 883417589 +337 135 5 875236512 +342 32 5 874984207 +387 448 3 886481686 +383 321 5 891192376 +303 245 3 879466249 +256 974 3 882164059 +345 1011 3 884991127 +130 358 4 874953526 +346 569 3 875266064 +89 739 2 879460376 +75 1151 2 884050829 +316 9 4 880853774 +251 15 4 886272086 +250 129 4 878089677 +286 404 5 889651799 +339 228 4 891033960 +135 325 4 879857575 +293 554 1 888907794 +315 709 4 879821158 +194 12 5 879520916 +49 1076 2 888067187 +361 14 4 879440651 +320 54 4 884751209 +144 300 3 888103370 +204 45 5 892513906 +132 275 3 891278915 +312 157 1 891698516 +233 313 5 891920842 +234 70 3 892335587 +193 1258 3 889123806 +244 135 4 880606442 +231 748 4 888605273 +344 228 4 884901047 +399 924 5 882340678 +109 172 5 880572528 +18 423 5 880132437 +49 462 2 888066486 +249 202 4 879572167 +399 1543 3 882509891 +177 100 5 880130600 +59 640 5 888206445 +327 494 4 887822400 +230 291 4 880484825 +394 174 5 881057914 +59 95 2 888204758 +16 564 1 877726790 +208 435 5 883108430 +387 697 1 886483906 +188 209 2 875073246 +399 372 3 882511047 +303 778 4 879467815 +246 402 3 884922917 +303 364 2 879544153 +384 355 4 891274055 +293 435 4 888906464 +153 321 3 881370900 +379 176 5 886317511 +92 94 3 875812876 +263 153 3 891298727 +368 320 5 889783364 +348 406 4 886523521 +94 234 5 885882685 +83 1028 4 880307207 +41 289 2 890686673 +145 727 2 875272652 +83 106 4 887665549 +270 275 5 876954248 +281 938 2 881200789 +378 276 4 880044198 +393 278 4 887744473 +85 213 4 879454751 +68 282 1 876974315 +62 249 2 879372479 +57 1095 2 883698062 +364 289 3 875931432 +299 423 3 878192238 +406 48 5 879792811 +200 840 4 876042525 +343 88 4 876405130 +303 558 4 879467105 +95 422 2 888956665 +125 194 5 879454986 +361 185 5 879441215 +374 363 3 880394088 +334 153 4 891547306 +296 124 5 884196555 +292 222 3 881105195 +115 543 2 881172303 +290 22 5 880473942 +194 195 3 879521657 +334 515 4 891545898 +392 165 5 891038433 +160 463 4 876859777 +42 1045 2 881108873 +150 628 4 878747018 +325 152 4 891477905 +106 22 4 881449830 +30 294 4 875140648 +257 1462 5 879547695 +249 235 4 879640261 +232 202 4 888549515 +216 1161 4 881432609 +232 272 4 885939511 +405 1432 1 885549942 +234 205 3 892079288 +401 638 4 891033158 +378 66 3 880056632 +334 285 4 891544707 +320 892 3 884748299 +323 508 4 878739643 +296 963 5 884197352 +303 729 3 879483568 +60 216 4 883327827 +379 735 4 880525133 +305 305 3 886307860 +279 1035 3 875309935 +405 190 2 885546201 +374 952 2 883627906 +373 127 2 877099968 +360 242 4 880353616 +115 82 4 881172117 +178 259 1 882823437 +402 111 4 876267041 +342 1128 5 875318536 +222 931 1 881061396 +234 242 4 891033261 +312 151 2 891698832 +297 245 3 874954060 +279 1271 4 875659999 +59 846 4 888203415 +160 161 3 876861185 +8 7 3 879362287 +91 161 3 891439353 +222 12 5 878181387 +380 59 4 885478447 +234 502 4 892336077 +324 283 3 880575531 +354 904 5 891180419 +13 694 4 890704999 +92 820 1 875644796 +371 55 4 877487364 +379 230 4 880525540 +276 317 4 874791257 +70 121 3 884148728 +138 116 2 879022956 +393 778 3 887746301 +145 1054 1 888398563 +128 209 4 879968332 +405 521 4 885544698 +59 506 5 888205787 +94 102 3 891721462 +103 50 5 880416864 +13 624 5 882398691 +6 423 3 883602501 +234 1198 3 892335187 +276 831 3 874792634 +405 1177 1 885547766 +148 507 5 877398587 +207 241 3 877995673 +144 19 4 888103929 +380 732 4 885478646 +406 479 4 879445771 +75 290 4 884050451 +71 276 4 877319375 +392 23 5 891038466 +43 95 4 875975687 +18 485 5 880132437 +135 475 4 879857592 +117 411 3 880126232 +12 381 4 879958902 +250 748 2 878089033 +43 956 1 883956259 +18 64 5 880132501 +280 586 4 891701871 +318 485 5 884495921 +405 1503 1 885548932 +115 475 5 881170252 +84 222 4 883450020 +171 302 4 891034606 +201 1227 1 884140787 +394 88 3 880889400 +176 1012 4 886048145 +122 570 3 879270849 +392 293 4 891038137 +59 708 4 888206410 +99 12 5 885680458 +347 222 4 881652377 +58 1019 4 884305088 +85 502 4 879454633 +18 99 5 880130829 +207 194 4 875504118 +305 81 3 886323335 +16 51 4 877726390 +13 885 1 886302334 +334 684 4 891545768 +313 194 4 891014499 +290 832 3 880732491 +295 570 3 879518590 +121 294 4 891389522 +304 343 3 884967896 +287 248 5 875333965 +224 1053 3 888104281 +117 628 5 881012174 +359 295 3 886453325 +405 524 1 885547124 +389 378 5 880087695 +327 806 4 887747617 +225 492 4 879539767 +160 1223 4 876861799 +233 1194 5 880190371 +299 135 4 878191889 +346 518 4 874948889 +312 205 5 891699372 +348 472 4 886523758 +405 570 1 885546487 +326 508 3 879875432 +200 929 4 876042979 +399 196 5 882349678 +7 393 4 891352058 +393 1092 3 889731139 +13 270 4 881514876 +214 216 4 891544290 +238 121 4 883576443 +178 510 4 882826394 +23 209 5 874785843 +244 290 3 880604616 +201 467 2 884139983 +17 125 1 885272538 +201 302 4 884110637 +200 802 4 884130485 +385 249 2 879440892 +389 836 4 879991045 +391 56 5 877399745 +399 402 3 882344434 +151 87 4 879524420 +248 294 3 884534379 +313 64 4 891016193 +5 79 3 875635895 +269 756 1 891451947 +331 702 3 877196443 +393 265 4 887746301 +109 294 4 880562908 +145 3 3 875271562 +262 122 2 879791537 +279 208 5 875310631 +276 427 5 883822485 +20 931 1 879668829 +399 1232 3 882350831 +144 956 4 888105636 +103 471 4 880416921 +11 395 2 891905349 +366 436 5 888857932 +276 14 4 890979947 +393 136 5 889555050 +298 197 4 884183236 +135 744 4 879857612 +275 28 4 880314529 +236 532 2 890116915 +119 1086 4 874775136 +49 423 2 888067727 +216 368 2 880233298 +250 357 4 878091915 +254 176 3 886472768 +250 23 4 878090499 +346 210 4 874947700 +311 329 4 884363904 +130 363 3 876250781 +389 504 4 880087832 +157 1302 5 874813703 +255 748 1 883215630 +147 345 4 885594040 +115 89 5 881172049 +232 461 5 888549563 +323 713 4 878739299 +92 748 3 892655791 +328 245 4 885044703 +276 145 3 874792692 +347 318 3 881653563 +117 56 5 881011807 +249 748 3 879571586 +7 542 4 892131849 +125 1 4 879454699 +405 721 1 885547360 +37 195 5 880915874 +7 599 1 891353860 +326 679 3 879876941 +234 523 4 892334141 +187 196 4 879465507 +313 473 3 891030228 +308 611 4 887738971 +246 369 3 884924710 +100 990 3 891375428 +263 99 3 891298977 +287 268 4 888177170 +401 199 3 891032896 +354 47 4 891217110 +354 149 5 891216498 +378 54 4 880056976 +336 738 1 877757343 +279 1120 3 891209189 +314 578 4 877887763 +361 655 3 879440346 +192 302 5 881366489 +379 480 5 885063301 +353 271 2 891402567 +225 1443 4 879540778 +379 98 5 880524541 +55 405 1 878176134 +186 939 5 879023529 +171 344 3 891034889 +294 1007 4 877819761 +402 255 4 876266948 +92 463 4 875656623 +235 197 5 889655266 +85 94 3 882995966 +38 252 5 892429567 +174 276 5 886433862 +95 588 3 879198800 +91 484 4 891438977 +374 195 3 880938870 +321 191 3 879440365 +354 213 5 891217160 +94 88 3 891721942 +299 950 2 877878148 +130 33 5 876252087 +375 761 3 886622131 +308 181 4 887739095 +293 414 4 888906576 +345 660 5 884993418 +48 172 5 879434791 +19 692 3 885412840 +23 71 3 874789299 +109 441 2 880582633 +1 250 4 874965706 +92 977 2 886443494 +215 258 3 891434563 +174 949 5 886513729 +148 163 4 877021402 +20 95 3 879669181 +379 135 4 880524886 +344 678 2 884813365 +81 124 3 876534594 +370 209 5 879435461 +244 72 4 880607365 +389 583 2 880088039 +397 194 3 885349348 +234 196 3 892079910 +214 32 4 892668249 +85 157 3 879454400 +95 768 1 888956272 +325 458 3 891478877 +383 641 4 891192778 +42 834 1 881110763 +60 659 4 883326862 +95 161 3 879196298 +188 392 5 875073408 +100 333 3 891374528 +244 209 4 880605485 +307 515 4 875680871 +249 24 4 879640306 +109 409 2 880571920 +46 327 4 883611456 +308 466 5 887738387 +284 286 4 885328727 +237 513 5 879376328 +276 1180 2 877935306 +348 245 4 886522765 +148 1039 2 877015784 +104 546 1 888465491 +392 179 5 891038946 +49 542 2 888067096 +378 301 3 892382841 +141 880 1 886447847 +363 746 4 891495630 +283 407 3 879297867 +286 77 3 877533001 +40 333 4 889041402 +279 250 3 875249259 +104 1226 3 888465347 +65 48 5 879217689 +314 122 1 877887065 +7 514 2 891351121 +6 486 4 883601427 +56 201 4 892910604 +239 701 5 889179544 +58 546 2 892242190 +139 246 4 879538218 +342 483 4 875319745 +7 404 5 891352947 +313 69 5 891016193 +299 181 3 877877479 +293 16 2 888907499 +215 185 4 891436566 +343 654 5 876407006 +399 531 3 882342964 +347 291 5 881652746 +138 519 5 879024043 +249 271 4 879571521 +174 197 5 886434547 +227 19 4 879035431 +286 1 4 876521699 +406 664 2 884630973 +192 257 4 881367592 +374 216 5 880394997 +7 630 5 891352341 +23 191 3 877817113 +83 1 4 880306903 +393 31 4 887745912 +361 12 4 879441214 +13 866 3 882141814 +104 751 4 888442337 +309 1393 2 877370383 +334 322 3 891544584 +10 435 5 877889261 +256 864 4 882151623 +1 85 3 875073180 +334 340 3 891544264 +130 286 5 874953239 +381 634 3 892696872 +235 188 4 889655619 +295 318 5 879517010 +10 706 4 877888677 +279 121 4 875297708 +344 845 3 884899791 +370 12 4 879435369 +193 553 4 889126272 +276 571 2 874792118 +347 841 3 881652769 +117 886 5 880124413 +405 210 5 885547124 +90 17 4 891384721 +267 685 3 878970978 +268 258 2 876513675 +325 107 2 891479102 +266 313 4 892256705 +95 568 4 879196594 +64 215 5 889737914 +373 485 4 877098751 +274 319 5 878944379 +303 998 3 879544435 +298 213 3 884183130 +354 736 5 891218568 +59 140 1 888206445 +289 685 4 876789373 +354 79 2 891217274 +344 274 2 884899768 +308 742 4 887739172 +145 38 3 888398747 +290 523 3 880473735 +188 632 5 875071581 +326 205 4 879875507 +378 942 3 880056798 +360 663 4 880355888 +373 20 2 877098751 +313 665 4 891028323 +220 286 5 881197663 +286 636 3 877533185 +207 2 3 877822770 +227 106 3 879035775 +239 1056 5 889180041 +87 183 4 879875734 +286 57 5 877533419 +25 427 4 885852059 +244 554 3 880608733 +92 173 3 875656535 +292 300 4 877628139 +332 879 4 887916385 +334 182 3 891545793 +295 1028 5 879519556 +342 100 5 874984207 +58 61 5 884305271 +387 288 3 886484385 +346 684 4 874948929 +381 914 1 892697768 +393 374 3 889731702 +405 465 1 885548836 +269 1065 5 891447891 +236 614 5 890116335 +389 98 4 879991264 +355 336 4 879486529 +354 318 3 891217365 +280 692 3 891700983 +392 276 4 891039049 +234 929 1 891228099 +255 455 2 883216845 +315 508 4 879799457 +336 154 5 877757637 +327 921 4 887748028 +43 175 2 875981304 +347 286 3 881652054 +292 194 4 881105442 +210 182 5 887736232 +320 97 5 884750946 +339 770 4 891034895 +13 196 4 882140552 +286 195 4 877534618 +165 332 4 879525672 +244 631 4 880606760 +5 418 3 875721216 +87 1089 3 879876225 +56 216 4 892676885 +87 73 3 879877083 +395 172 5 883763041 +346 673 3 874951782 +221 231 4 875246359 +280 210 2 891700385 +164 333 5 889401383 +373 1230 3 877111313 +354 953 3 891218208 +276 471 4 874786657 +151 684 3 879524849 +387 672 2 886481687 +354 705 4 891217547 +380 22 4 885478334 +383 425 4 891193181 +303 201 5 879467573 +194 198 3 879522021 +152 151 4 880148735 +342 523 4 875319854 +188 216 5 875075300 +102 164 3 888803002 +393 686 4 889729185 +139 508 4 879538255 +91 326 3 891438245 +308 238 5 887736843 +234 21 3 892335042 +268 183 4 875309583 +343 130 3 876403883 +226 28 4 883889322 +184 1195 3 889909934 +406 823 3 879540147 +151 584 3 879525035 +174 1230 1 886515210 +109 318 4 880572680 +57 264 2 883696672 +301 597 3 882075202 +398 199 4 875721548 +234 739 3 892335990 +276 1471 2 877934947 +374 815 4 880393668 +318 237 5 884494712 +163 286 3 891219977 +206 882 1 888180049 +401 135 1 891032919 +363 1019 5 891496414 +279 117 5 875297199 +336 692 3 877757637 +303 578 2 879484846 +92 1207 3 875907179 +62 664 4 879376079 +1 91 5 876892636 +232 747 3 888549957 +198 197 4 884208200 +405 692 5 885547177 +301 96 5 882076239 +216 72 2 881721890 +296 204 5 884199625 +288 64 5 886374365 +90 964 5 891385843 +276 806 4 874787467 +363 370 3 891500269 +195 1417 3 877246560 +85 568 3 879455238 +345 246 4 884994156 +387 461 5 886483753 +22 118 4 878887983 +94 546 3 891723296 +49 111 2 888068686 +363 346 4 891493746 +221 1012 4 875244475 +72 96 5 880037203 +92 53 3 875656392 +258 873 5 885701062 +125 577 2 892839312 +379 522 5 880524753 +148 7 5 877017054 +221 265 3 875246247 +312 593 5 891698987 +49 95 2 888067031 +181 1357 1 878962240 +230 526 3 880485159 +16 318 5 877718107 +234 85 2 892334852 +184 642 4 889909446 +124 550 4 890287645 +81 282 5 876533619 +330 1028 4 876544953 +370 238 4 879435369 +85 443 4 879454582 +248 324 4 884534506 +402 480 5 876267206 +265 410 4 875320633 +177 270 1 880130452 +392 1014 3 891038205 +62 1131 3 879375247 +399 742 4 882340844 +256 188 5 882164559 +274 713 5 878945437 +389 492 5 880086944 +336 67 4 877756966 +405 583 1 885546112 +65 582 3 879216702 +70 197 4 884149469 +87 409 3 879877127 +392 319 5 891037385 +231 405 4 879966609 +363 145 1 891498589 +62 1074 4 879376299 +313 134 5 891013712 +389 100 5 879915701 +383 475 2 891193137 +160 24 5 876769689 +58 228 5 884305271 +174 571 1 886515295 +301 153 3 882075743 +222 1267 3 878183173 +94 674 3 891723748 +158 636 4 880134532 +378 88 4 880046408 +332 934 2 887938886 +95 3 1 879193881 +83 117 5 880307000 +199 285 4 883782879 +381 13 4 892696445 +81 595 4 876534437 +407 433 4 875117053 +56 294 4 892676056 +393 836 4 889728895 +160 693 5 876770193 +334 845 2 891544867 +85 528 4 879454859 +188 1213 2 875074847 +311 15 5 884963136 +118 528 4 875384514 +18 19 3 880130582 +405 186 5 885547176 +360 251 5 880354315 +243 511 5 879989217 +118 218 5 875385386 +409 65 4 881108777 +291 1273 2 875087634 +97 79 5 884238817 +330 692 5 876547032 +201 670 4 884112673 +52 845 5 882922485 +322 12 4 887313946 +203 7 3 880434438 +314 237 5 877886221 +128 965 3 879968279 +379 417 5 880525794 +64 476 1 889740286 +299 182 3 878192039 +82 527 3 878769479 +328 423 4 885046305 +12 402 5 879960826 +312 705 5 891698553 +250 1161 4 883263375 +249 55 5 879572331 +145 763 4 875271047 +402 764 3 876266985 +181 1376 1 878963167 +49 123 1 888068195 +399 33 3 882344942 +321 198 4 879439926 +5 429 3 875637429 +269 120 1 891446926 +28 568 4 881957147 +315 238 5 879821003 +195 651 5 875436683 +85 1074 3 882996039 +119 182 4 874781303 +5 385 4 875636185 +92 551 2 875906882 +79 740 4 891271870 +274 294 3 878944379 +226 24 4 883889479 +91 174 5 891439090 +222 92 3 878182632 +405 78 2 885549045 +345 724 5 884993139 +158 82 5 880134398 +404 687 3 883790465 +181 103 1 878962586 +407 205 4 875045371 +60 197 4 883326620 +372 441 4 876869512 +18 966 2 880132399 +380 652 3 885478241 +86 327 4 879570218 +16 161 5 877726390 +121 631 4 891387992 +234 1020 4 892078890 +214 483 4 891543972 +276 809 2 874977245 +296 117 3 884196741 +398 423 5 875659319 +297 209 4 875239535 +279 224 4 882369761 +352 234 4 884290549 +372 874 4 876869238 +359 273 4 886453325 +263 186 4 891299815 +389 395 2 880089133 +70 139 3 884150656 +308 455 4 887738226 +269 44 3 891449691 +279 952 3 875296676 +130 176 5 881536127 +389 479 4 879991535 +345 471 3 884991127 +389 194 4 879991147 +15 7 1 879455506 +130 28 4 875217172 +354 929 4 891216896 +238 458 4 883576622 +313 521 4 891013887 +308 616 2 887739800 +388 5 4 886441083 +116 895 2 886309812 +232 98 4 888549838 +276 210 4 874792094 +280 237 3 891700624 +92 135 4 875652981 +189 268 4 893265071 +330 200 5 876546668 +92 67 3 875907436 +335 678 3 891567251 +194 281 2 879540567 +328 289 4 885044566 +294 260 4 877819126 +406 962 4 879445810 +175 215 5 877107500 +405 11 4 885545263 +200 183 5 884128554 +200 8 4 884128904 +299 778 4 889502688 +282 294 4 879949525 +85 160 3 879454075 +405 1578 1 885549543 +178 363 3 882824467 +82 220 2 878768840 +332 1244 4 887938798 +269 238 5 891448850 +38 79 3 892430309 +372 547 5 876869481 +401 609 3 891033625 +119 550 4 887038665 +130 174 5 875216249 +399 154 3 882343327 +292 144 5 881105280 +374 127 4 880392936 +102 568 2 888801232 +328 480 3 885046244 +184 410 3 889908181 +246 289 2 884922658 +43 402 4 883956283 +269 1101 4 891448120 +65 211 4 879217852 +115 310 3 881169559 +130 1207 1 880396861 +130 443 5 876251446 +7 396 4 891354288 +194 289 1 879535548 +37 11 4 880915838 +308 1021 4 887736459 +222 204 5 878182370 +87 33 3 879876488 +334 69 1 891548032 +185 86 5 883524428 +217 398 1 889070050 +13 271 1 881514876 +215 432 5 891435574 +345 49 3 884993505 +8 689 4 879361873 +223 742 3 891549570 +40 345 4 889041670 +314 1028 3 877886816 +234 193 4 892334713 +354 699 3 891218474 +327 1012 2 887745891 +6 59 5 883601713 +130 226 5 876252420 +393 527 3 889727614 +345 100 5 884902317 +256 406 3 882152605 +374 279 4 880394233 +385 1071 4 879448426 +184 1396 4 889913490 +380 923 3 885478603 +291 218 4 874834799 +7 205 5 891351585 +301 1 4 882074345 +35 259 4 875459017 +363 196 4 891494658 +271 1133 3 885849536 +84 291 3 883452363 +213 180 5 878956047 +230 276 5 880485573 +276 68 4 874792483 +301 566 3 882076463 +27 370 4 891543245 +268 73 3 875743563 +112 312 5 884992872 +85 658 3 879829861 +212 179 1 879304010 +90 149 3 891384754 +301 173 4 882076403 +291 1376 3 874834323 +315 12 5 879821194 +389 414 4 879991485 +197 190 3 891410082 +183 159 4 892323452 +299 73 2 889503265 +279 940 5 889151559 +194 526 4 879521087 +99 255 3 888469419 +308 1073 3 887736798 +295 1170 5 879966498 +181 1052 2 878963441 +102 101 4 883748488 +184 1398 5 889911749 +11 300 3 891902092 +16 300 5 877717078 +269 55 4 891449214 +393 1032 3 889729296 +2 315 1 888550774 +313 674 2 891029918 +385 290 3 879440674 +405 787 3 885545672 +323 15 3 878739393 +291 188 3 874835198 +395 315 5 886480875 +204 259 2 892389195 +345 289 3 884901497 +223 282 4 891549627 +173 292 5 877557369 +42 432 3 881108147 +326 655 5 879875432 +342 581 3 875320037 +377 100 3 891298589 +184 286 4 889906905 +130 393 5 876252472 +7 79 4 891352261 +378 866 2 880044726 +83 181 4 880306786 +311 234 4 884364873 +130 99 5 875216786 +387 693 5 886484336 +117 195 5 881012255 +276 127 5 874786568 +345 33 4 884993069 +405 414 1 885547268 +398 50 5 875652927 +193 684 4 889125788 +18 659 4 880129489 +311 921 4 884364695 +95 265 3 879196513 +336 1074 5 877757516 +297 272 5 884039431 +341 292 5 890757659 +290 105 2 880732753 +295 946 2 879517994 +379 50 4 880525400 +178 273 3 882823858 +409 1295 1 881105367 +119 83 4 886176922 +345 302 5 884902317 +409 1242 2 881106087 +328 1136 4 885047018 +28 145 3 881961904 +303 1011 2 879484282 +308 664 5 887736999 +10 275 4 877888677 +181 881 1 878961781 +405 172 5 885545111 +222 840 3 878184392 +343 250 5 876403078 +405 430 1 885547177 +192 276 2 881367505 +387 393 2 886483009 +54 871 5 880938547 +409 50 5 881107281 +224 135 1 888103671 +99 3 3 885679237 +291 794 4 875087334 +269 886 3 891446133 +106 88 3 881453097 +328 556 3 885048930 +59 428 5 888205188 +315 792 5 879821120 +346 831 3 875003274 +178 181 5 882823832 +180 1131 5 877441985 +344 471 3 884899719 +268 477 3 875742407 +383 663 5 891192778 +265 257 4 875320462 +308 44 4 887740451 +16 76 5 877719863 +230 183 3 880484370 +10 371 4 877886912 +214 23 5 892668130 +201 531 2 884113949 +90 512 4 891383241 +239 650 5 889180530 +406 239 3 880131608 +87 411 4 879876946 +352 657 4 884290428 +236 1102 4 890117488 +345 732 4 884993418 +339 347 4 891034953 +104 744 1 888465413 +409 223 4 881107539 +377 751 3 891296044 +144 1142 5 888103968 +210 662 2 887730221 +334 663 5 891545852 +57 100 5 883698581 +370 175 3 879434804 +312 435 4 891699702 +310 1022 5 879435764 +210 692 4 887736796 +339 1139 3 891036557 +19 382 3 885412840 +340 402 4 884990922 +387 46 3 886484011 +269 1133 1 891451374 +1 10 3 875693118 +361 1074 3 879441179 +254 75 1 886475004 +318 63 3 884496932 +279 391 5 875313859 +67 122 3 875379566 +405 773 1 885548330 +178 55 4 882826394 +392 285 3 891039050 +151 121 5 879525054 +22 692 4 878886480 +354 732 2 891307157 +350 324 4 882345384 +391 26 5 877399745 +385 663 4 879446431 +185 285 5 883524507 +222 1179 1 881060550 +246 403 4 884922697 +121 57 5 891390014 +213 603 5 878955599 +151 654 4 879524514 +141 295 5 884585039 +373 488 3 877098343 +326 436 3 879877387 +386 50 4 877654961 +68 471 3 876974023 +139 286 4 879537844 +334 1051 4 891545347 +413 222 4 879969709 +72 357 4 880036550 +207 174 4 877750843 +286 881 5 884583549 +293 843 3 888907836 +1 254 1 878541392 +392 534 4 891038205 +49 401 2 888067975 +409 48 2 881108455 +194 739 3 879527263 +201 774 1 884114713 +174 124 5 886514168 +256 7 4 882151017 +64 566 3 889738085 +378 29 3 880332949 +56 1036 2 892910544 +56 202 4 892676933 +234 1458 4 892336165 +407 196 4 876340318 +198 95 3 884207612 +5 372 3 875636230 +184 64 4 889909045 +6 124 5 883599228 +393 715 1 889731592 +406 156 5 879446062 +291 395 3 875086534 +66 475 2 883601156 +268 1095 2 876513927 +267 3 4 878970901 +253 83 4 891628159 +361 88 4 879440974 +378 411 3 880045006 +7 131 5 891352383 +276 693 4 874790903 +347 257 4 881652610 +305 129 3 886323006 +224 1039 5 888082552 +387 488 3 886480163 +276 547 4 874786605 +352 183 5 884289693 +254 97 5 887346963 +334 427 4 891545821 +222 240 2 877563716 +246 260 5 884924991 +62 227 1 879375843 +85 70 4 879828328 +11 710 2 891905221 +380 69 4 885479301 +80 199 2 887401353 +109 672 2 880582045 +280 322 4 891700185 +405 178 3 885544947 +44 434 4 878348885 +162 628 4 877635897 +363 473 4 891498558 +399 655 3 882344372 +399 959 3 882343523 +354 58 3 891218356 +227 1008 4 879036009 +374 124 3 880392873 +298 28 4 884182725 +95 48 4 879197500 +293 255 3 888905146 +94 246 4 891724064 +243 435 4 879988913 +44 118 3 878341197 +222 395 1 878184924 +407 50 4 875045268 +1 129 5 887431908 +389 216 2 879991387 +253 87 5 891628278 +290 204 4 880473696 +399 527 3 882511093 +251 298 5 886272146 +7 673 3 891353744 +244 69 4 880603645 +91 1050 3 891439414 +215 216 4 891435782 +99 871 2 885679411 +318 435 5 884496069 +403 121 5 879786221 +13 405 2 882397742 +268 67 3 875743588 +405 647 1 885546069 +224 720 4 888103906 +397 988 1 875063722 +311 778 4 884365251 +158 273 3 880132356 +373 699 4 877105781 +175 496 5 877108098 +113 286 4 875325377 +187 522 3 879465125 +201 221 3 884111397 +286 1047 1 876522026 +18 275 5 880129421 +234 558 4 892079585 +21 977 2 874951416 +308 578 2 887738847 +181 1379 1 878962168 +250 678 2 878089182 +378 175 4 880055706 +10 234 4 877888877 +127 450 5 884364950 +18 131 4 880131004 +102 675 3 888802940 +181 225 3 878963038 +336 232 3 877757023 +393 1446 5 887746346 +236 705 4 890116402 +16 182 5 877719863 +295 183 1 879517348 +405 789 1 885547268 +14 242 4 876964570 +146 300 3 891457943 +303 591 4 879468082 +407 249 2 884614788 +401 519 4 891033158 +296 815 3 884196806 +200 215 4 884129346 +379 284 4 880568407 +291 89 3 874835116 +236 58 2 890118462 +134 892 2 891732532 +384 689 4 891274232 +130 356 4 880396792 +224 1212 2 888104457 +378 576 3 880333027 +158 593 4 880134261 +243 813 4 879987239 +44 91 2 878348573 +85 708 4 879828349 +115 12 5 881171982 +251 596 3 886272118 +391 180 5 877399066 +164 823 4 889402225 +286 53 2 877533506 +244 367 1 880603442 +26 255 3 891377609 +244 724 4 880605638 +65 736 4 879216949 +286 88 4 877533640 +7 121 5 891352904 +135 79 3 879857843 +389 53 2 880089337 +406 318 5 879792811 +54 411 5 880936296 +293 215 4 888906244 +200 112 3 884127370 +308 127 4 887737243 +376 269 5 879454598 +101 50 4 877135944 +334 525 5 891545876 +367 334 4 876689364 +373 378 5 877100232 +308 64 4 887737383 +380 753 4 885479082 +385 82 1 879446786 +316 1039 5 880854500 +291 755 2 875086958 +399 588 5 882342938 +58 684 4 884305271 +332 409 3 887938601 +268 206 3 875309232 +196 286 5 881250949 +389 153 3 880088510 +357 1095 3 878952190 +369 181 5 889428642 +303 651 5 879468021 +94 405 3 891721615 +210 419 4 887737678 +200 1033 2 891825441 +409 288 1 881104647 +221 70 3 875245870 +405 1118 1 885547268 +256 4 5 882164525 +253 705 5 891628598 +121 192 4 891388250 +75 291 1 884050502 +286 1286 5 877532683 +152 313 4 890322242 +406 496 4 879445378 +388 147 4 886436871 +357 334 4 878951101 +391 134 4 877399171 +303 42 5 879467223 +326 88 2 879877235 +115 470 2 881171694 +241 292 4 887250084 +399 1279 3 882341625 +230 11 4 880484911 +203 151 4 880434384 +218 5 3 881288574 +347 230 4 881654101 +406 605 5 882480749 +71 289 2 877319117 +320 552 4 884751336 +409 200 2 881109175 +13 472 5 882398327 +49 588 4 888067031 +332 22 5 887938934 +374 237 5 880392717 +306 116 5 876504026 +213 1215 1 878871089 +393 294 4 887742145 +181 1330 1 878962052 +303 1178 2 879544130 +141 872 1 886447698 +178 96 4 882826782 +59 1110 4 888206363 +184 116 4 889910481 +271 518 4 885849357 +276 214 5 874787353 +256 120 1 882163754 +372 327 5 876869183 +255 288 4 883216185 +295 380 4 879518455 +66 21 1 883601939 +49 343 2 888065786 +59 419 2 888205228 +363 351 2 891493864 +327 652 4 887819860 +405 426 1 885549192 +151 227 5 879542670 +194 232 2 879553731 +373 842 3 877098343 +343 199 5 876404464 +293 603 5 888905898 +151 792 4 879524268 +320 77 3 884751246 +348 411 4 886523790 +271 530 4 885848770 +385 285 5 879439637 +339 98 4 891032150 +194 226 3 879525761 +152 286 5 875562268 +223 756 3 891550295 +160 604 4 876859778 +5 421 1 875721019 +331 59 5 877196383 +354 124 5 891216632 +406 85 2 880131875 +392 873 3 891037851 +137 15 4 881432965 +294 300 4 877818861 +279 52 3 890780576 +381 1439 3 892696831 +380 433 3 885479186 +56 769 4 892679389 +279 235 3 891209153 +269 423 4 891448048 +92 184 3 877383934 +48 656 4 879434689 +59 1028 1 888203900 +308 175 5 887736999 +13 610 2 882140690 +346 732 3 874948955 +109 552 2 880582414 +82 276 4 876311344 +58 490 4 884304896 +59 729 4 888205265 +233 381 4 877665125 +244 1047 2 880605264 +295 655 5 879517010 +405 1338 1 885549790 +328 76 3 885046580 +409 99 3 881107750 +102 588 4 883748450 +311 528 4 884364724 +91 482 3 891439208 +102 445 2 888803148 +100 752 4 891375146 +367 551 3 876690048 +49 774 2 888067528 +22 386 3 878887347 +67 871 3 875379594 +374 540 3 880939304 +276 41 3 874792277 +90 328 3 891382490 +180 204 3 877127159 +334 160 4 891547190 +153 56 5 881371140 +59 528 4 888205300 +268 453 1 875744611 +87 403 3 879875996 +10 168 4 877888812 +181 1354 1 878962496 +70 189 4 884150202 +385 172 2 879442109 +189 510 5 893266326 +206 314 1 888179948 +116 65 2 876454052 +7 659 5 891351161 +376 289 3 879433599 +265 258 4 875320024 +136 100 5 882693338 +332 546 4 888098432 +393 546 2 887744578 +322 653 4 887314310 +201 50 4 884114471 +382 475 3 875946103 +64 746 5 889739138 +7 448 3 891353828 +385 503 3 879443217 +38 226 1 892431513 +347 685 3 881652684 +374 770 5 880938100 +290 54 3 880475218 +212 197 5 879303795 +405 1554 4 885546445 +324 332 3 880574766 +5 144 3 875636141 +329 147 3 891656072 +416 125 5 893213796 +305 268 3 886307860 +401 499 3 891033319 +175 660 3 877107836 +16 31 5 877717956 +313 649 3 891016325 +276 470 3 874790855 +216 28 4 880244902 +301 229 3 882078228 +194 188 4 879522158 +234 431 3 892078424 +4 288 4 892001445 +329 81 2 891656300 +270 471 5 876954223 +44 191 4 878347234 +312 52 5 891699399 +303 697 3 879484948 +249 216 4 879641305 +250 328 3 883262792 +232 318 5 888549757 +198 176 4 884207136 +280 663 4 891700783 +378 734 3 880334269 +408 689 3 889680045 +406 1126 3 879446588 +374 7 1 880393268 +242 361 5 879741340 +399 418 3 882343605 +193 815 3 889126332 +90 1193 4 891384789 +249 86 4 879572124 +402 16 3 876267096 +405 656 1 885548275 +201 89 3 884112245 +183 265 2 891466350 +166 894 4 886397905 +267 474 5 878974783 +49 172 1 888067691 +399 229 2 882349143 +94 76 4 891720827 +95 371 2 888955909 +59 476 2 888203814 +293 419 3 888906699 +241 350 2 887249889 +332 5 5 888360370 +405 1561 1 885546529 +410 300 3 888626538 +178 216 4 882826868 +358 896 4 891269077 +378 420 4 880056701 +405 440 1 885548330 +280 1478 4 891701090 +303 172 5 879467413 +189 381 3 893277551 +343 778 5 876406391 +22 226 4 878888145 +347 246 4 881652417 +10 497 4 877889261 +334 191 4 891545793 +18 497 4 880131358 +83 110 4 880309185 +407 211 4 875044400 +151 659 5 879524974 +370 511 4 879434804 +301 1028 5 882074801 +345 1 3 884990938 +244 950 1 880606274 +416 724 4 886316409 +393 227 4 889728385 +6 56 4 883601277 +59 447 5 888206095 +373 15 4 877098568 +398 520 5 875717106 +311 200 4 884365718 +279 201 5 890451408 +5 243 1 878844164 +199 405 2 883783005 +332 410 4 887938486 +283 288 2 879297867 +276 288 4 874786392 +328 636 3 885047556 +92 640 5 875653579 +234 322 2 891034007 +251 866 2 886272514 +399 148 4 882341362 +387 1069 2 886480288 +42 732 5 881108346 +94 583 3 891722174 +167 381 5 892738212 +279 1047 4 892864663 +398 493 5 875723337 +387 674 2 886481686 +269 636 3 891450453 +99 288 4 885678247 +27 246 4 891542897 +23 98 5 874786016 +250 813 5 878089581 +56 588 4 892683248 +77 483 4 884752665 +28 479 4 881961157 +13 847 4 882139937 +406 429 4 879446062 +77 357 3 884752970 +330 845 5 876544432 +378 739 4 880333239 +126 288 4 887853469 +350 616 4 882346383 +193 29 3 889126055 +405 722 1 885547735 +253 487 4 891628323 +230 176 4 880485445 +330 153 5 876545970 +243 173 3 879988913 +271 528 3 885848448 +64 633 5 889739243 +97 430 5 884238693 +160 447 4 876859413 +297 748 2 874954060 +314 1057 2 877887035 +254 448 3 886473775 +387 81 3 886483906 +125 174 5 879454309 +406 488 4 879445642 +223 252 1 891550326 +145 680 3 875269871 +158 137 5 880132443 +216 153 4 880244802 +379 294 3 880524363 +391 197 5 877399380 +405 540 1 885548163 +339 286 5 891032349 +56 849 2 892910913 +372 561 5 876869534 +387 651 2 886479689 +399 175 3 882342669 +49 1082 3 888066214 +367 56 5 876689932 +346 291 5 875002643 +119 829 5 874775406 +251 418 4 886271856 +90 501 5 891384885 +347 462 2 881654359 +10 475 4 877888545 +1 241 4 878543133 +343 708 4 876407006 +145 230 5 885557660 +294 125 3 877820272 +337 235 3 875184717 +216 1010 3 880232685 +7 564 3 891354471 +378 10 3 880044454 +99 827 3 885679504 +13 652 5 882141458 +308 486 4 887737432 +303 1048 4 879484871 +222 849 4 881060281 +295 86 5 879966498 +195 921 3 883934716 +130 597 4 874953866 +389 942 3 880165881 +137 51 1 881433605 +345 26 3 884993555 +222 276 5 877563550 +94 616 4 891720498 +334 22 4 891545821 +95 101 1 879198800 +357 864 5 878951653 +95 791 3 880572449 +339 522 5 891033165 +308 921 4 887738268 +56 70 4 892676996 +400 300 4 885676230 +379 523 4 880525108 +385 458 3 879440828 +222 82 4 878182453 +291 1157 3 874834944 +404 333 2 883790286 +303 44 4 879484480 +6 521 4 883601277 +363 307 5 891493795 +188 202 2 875073712 +334 505 4 891546405 +63 408 4 875747242 +291 106 4 874805958 +290 43 3 880475783 +13 294 2 881514683 +181 1151 1 878963304 +363 93 4 891495339 +57 281 4 883697404 +130 800 4 875802237 +416 250 4 876697074 +221 496 3 875246146 +264 683 2 886121811 +345 676 4 884991384 +95 657 5 879198697 +299 150 5 877877535 +409 197 3 881109215 +1 130 3 875072002 +228 427 4 889388547 +34 245 4 888602923 +115 471 2 881170791 +53 258 4 879442654 +413 271 4 879969027 +152 80 5 882477572 +393 742 4 887744517 +330 172 5 876546619 +19 201 3 885412839 +279 804 4 875744416 +399 732 2 882348089 +345 64 5 884902317 +92 475 5 875640148 +363 665 2 891498964 +411 172 5 892845604 +128 210 4 879968125 +401 273 2 891032334 +416 874 1 876696853 +144 393 4 888105743 +255 825 1 883216958 +360 222 2 880355094 +193 750 4 889122950 +7 260 1 892130982 +21 668 1 874951761 +23 518 5 874785194 +284 346 4 885329065 +99 402 4 885680617 +294 1013 2 889242788 +98 938 3 880498624 +41 153 4 890687087 +184 950 4 889907896 +59 547 3 888203482 +327 1075 4 887822832 +92 291 4 886443277 +125 648 4 879454793 +44 588 4 878347742 +286 1118 1 889652989 +184 237 4 889907945 +179 346 3 892151489 +14 845 3 880929564 +375 443 4 886622024 +177 334 3 880130467 +54 1088 3 880937311 +401 322 2 891031784 +263 526 5 891298854 +12 200 1 879959610 +279 184 5 890779991 +327 895 3 887743670 +257 130 2 882050236 +405 997 1 885547644 +29 270 4 882820803 +194 946 3 879527514 +276 156 5 874795704 +405 232 4 885547314 +160 228 2 876862243 +360 496 3 880356092 +94 949 5 885873160 +401 111 4 891032296 +374 385 4 880396048 +201 92 3 884112245 +85 1021 3 882995490 +345 387 4 884992823 +130 128 4 876251728 +85 632 3 879454304 +95 550 4 879196748 +405 1100 1 885546681 +30 538 4 885941798 +327 418 3 887820761 +223 143 4 891550845 +406 651 3 882480595 +311 775 3 884365579 +7 675 5 891352947 +207 1197 4 881681663 +347 182 5 881653736 +49 11 3 888069458 +92 728 3 875907574 +343 38 3 876406257 +293 751 3 888904180 +320 252 2 884749532 +331 503 4 877196504 +344 172 4 884814697 +203 50 5 880434810 +76 121 2 882607017 +256 566 5 882164559 +324 127 4 880575658 +130 184 4 875801695 +238 546 3 883576574 +406 645 5 880131905 +393 386 4 889731390 +389 1203 5 880087544 +5 185 3 875720692 +295 1188 3 879519354 +339 496 5 891032320 +43 191 5 875981247 +406 14 4 879539855 +378 230 3 880055984 +76 603 3 882606147 +119 568 4 874781915 +316 530 2 880853599 +99 107 3 885679138 +13 588 4 882398763 +339 1039 4 891033932 +406 463 5 879793261 +186 546 4 891719775 +271 185 3 885848448 +74 301 3 888333372 +374 87 5 880395320 +56 392 4 892678893 +277 181 3 879543653 +307 239 3 877122138 +194 443 3 879523104 +405 442 1 885548384 +268 385 3 875310206 +291 356 4 874834875 +222 399 4 878182686 +407 231 3 876342031 +344 191 5 889814194 +185 939 3 883524249 +270 569 4 876956419 +253 243 2 891628883 +407 785 3 876341444 +266 283 3 892257897 +303 1239 1 879544020 +378 500 4 880055891 +166 323 5 886397722 +181 980 1 878962496 +387 182 5 886483048 +216 421 5 880235229 +200 148 4 876042340 +221 161 3 875246183 +308 91 4 887737536 +270 509 3 876954965 +58 381 4 890321652 +379 1219 2 883156704 +243 531 4 879988157 +406 58 4 879446718 +363 87 3 891496306 +298 507 4 884182657 +62 125 4 879372347 +144 105 2 888104767 +286 161 2 877533419 +227 93 5 879035431 +174 1312 4 886434484 +158 373 2 880134781 +376 275 5 879455143 +269 512 5 891447216 +145 751 4 883840666 +339 772 4 891032413 +342 724 1 875320297 +279 238 4 891208908 +32 1016 1 883718121 +249 357 4 879572142 +385 1010 3 879440127 +249 42 5 879572630 +276 125 4 874786876 +159 1190 5 881680199 +417 3 4 879646344 +268 699 3 875744712 +417 781 3 880951559 +63 328 2 875746985 +7 273 3 891351547 +194 203 3 879522158 +82 140 3 878769668 +280 723 5 891701853 +294 475 5 877819310 +195 213 4 883934680 +194 222 1 879538960 +16 156 4 877719863 +393 342 5 887742179 +288 237 4 886892195 +283 455 4 879297707 +323 210 4 878739878 +294 895 4 889241309 +73 288 3 888792294 +405 72 3 885547268 +312 528 5 891698695 +371 746 4 880435397 +256 827 3 882163857 +87 732 4 879876703 +5 393 2 875636265 +72 161 5 880037703 +102 554 2 888801577 +398 172 5 875725927 +290 162 3 880474107 +6 470 3 883602690 +94 70 4 891722511 +137 250 5 881433015 +343 642 4 876404343 +112 754 4 884992508 +204 302 5 892389137 +92 576 2 875813171 +377 154 5 891298627 +334 443 3 891547128 +360 166 5 880355527 +92 148 2 877383934 +374 116 1 880393307 +197 289 4 891409422 +7 212 1 891353051 +299 511 4 878192311 +412 318 5 879716918 +301 673 4 882076751 +125 98 5 879454345 +130 195 5 875801470 +404 269 4 883790750 +406 469 4 879446588 +406 419 1 882480443 +349 455 2 879465712 +7 126 3 891353254 +235 7 4 889655723 +314 959 3 877888892 +381 1533 4 892696106 +151 1044 2 879524900 +43 751 2 883954803 +300 872 5 875650068 +263 432 2 891299448 +110 327 3 886987442 +405 135 5 885545333 +75 190 5 884051948 +344 245 3 884813365 +405 700 1 885547645 +296 845 5 884196689 +314 24 1 877886221 +303 208 5 879467706 +293 627 2 888906338 +102 99 2 883748488 +92 43 3 875813314 +410 312 2 888626881 +321 193 3 879441178 +27 978 2 891543222 +280 4 3 891700733 +110 367 3 886989340 +14 204 5 879119651 +342 274 2 874984895 +391 357 5 877399486 +416 348 3 886314660 +375 1073 2 886621950 +405 1434 1 885549942 +178 28 5 882826806 +409 497 3 881168631 +66 742 5 883601388 +286 25 3 875807003 +239 855 5 889179478 +75 151 5 884050502 +398 144 5 875658715 +10 269 4 877886162 +83 685 4 880306951 +80 234 3 887401533 +394 218 4 880889187 +27 475 2 891542942 +347 132 5 881654064 +332 831 3 887938760 +276 640 4 889174904 +80 215 5 887401353 +145 216 5 875272694 +397 1018 4 882839517 +393 169 3 887745912 +338 294 1 879437576 +81 151 2 876533946 +49 175 5 888068715 +325 432 5 891479263 +13 276 5 882140104 +95 627 4 880572288 +224 323 3 888082216 +59 186 5 888205660 +321 56 4 879438651 +7 619 3 891352831 +318 186 5 884498292 +109 237 4 880571770 +254 892 3 886470904 +106 1115 4 883876833 +307 408 5 875645579 +378 596 5 889665232 +343 156 4 876405857 +263 64 5 891298453 +76 23 5 875027355 +280 282 3 891700426 +214 268 2 891542445 +303 1118 3 879484004 +138 614 4 879024184 +49 185 5 888067307 +214 13 3 891543271 +305 258 4 886308064 +44 164 4 878348035 +289 405 2 876790576 +217 231 5 889069974 +199 286 5 883782485 +271 951 2 885849606 +18 1 5 880130802 +417 597 3 879646413 +397 178 5 885349759 +128 86 5 879966919 +200 559 4 884129920 +261 342 3 890454974 +154 462 3 879138831 +406 436 4 879792863 +24 56 4 875323240 +62 742 2 879372965 +264 433 5 886123530 +275 208 3 880314772 +405 96 3 885544881 +328 614 4 885046276 +3 327 4 889237455 +401 204 5 891033684 +72 172 1 880037119 +85 1149 3 886283002 +311 211 3 884364538 +311 86 5 884365252 +230 96 2 880484683 +201 56 5 884111269 +13 520 4 886302261 +280 40 5 891701614 +77 100 3 884732716 +130 567 2 876252225 +171 313 4 891034835 +222 1054 1 883816441 +409 659 5 881107410 +315 168 4 879821037 +189 474 5 893265238 +14 15 4 879119390 +385 629 2 879446643 +276 171 4 874795928 +322 1 2 887314119 +268 761 1 875744136 +189 79 3 893265478 +417 1095 3 879649322 +23 143 3 874786066 +405 1565 1 885549463 +216 1101 4 880235473 +339 642 5 891032953 +49 55 4 888068057 +91 504 3 891439471 +416 356 5 893213019 +99 66 3 886519047 +60 638 5 883326057 +405 734 2 885547506 +36 268 2 882157418 +216 282 5 880232597 +18 97 4 880131525 +21 671 5 874951657 +305 272 3 886307917 +233 257 4 883356847 +181 950 1 878963440 +307 449 4 879538922 +210 187 5 887736017 +200 1228 4 884130721 +1 255 2 885345822 +144 180 4 888105873 +280 54 2 891701747 +325 475 4 891478079 +256 742 5 882150552 +378 252 4 880045288 +125 1052 2 892839457 +269 152 4 891450623 +405 1469 1 885548932 +397 221 4 885349348 +14 42 4 879119579 +102 163 2 892993190 +130 534 5 874953728 +303 141 3 879483900 +292 320 5 881105373 +271 317 3 885848863 +412 218 3 879717147 +102 578 2 888801876 +213 132 5 878956263 +416 578 4 886318546 +325 175 5 891478079 +406 186 3 880131741 +249 919 5 879572668 +62 660 4 879375537 +409 1176 4 881104838 +60 499 3 883326682 +201 9 3 884113343 +301 241 3 882077222 +208 56 2 883108360 +200 717 4 876042493 +406 608 4 884630583 +382 98 3 875946563 +399 383 2 882350431 +269 1028 2 891446838 +405 964 1 885546154 +198 79 3 884208518 +307 655 4 877117166 +130 69 5 875216718 +311 89 5 884364845 +118 22 5 875385136 +48 28 2 879434653 +194 636 2 879553731 +59 1108 3 888204877 +374 1150 1 880937253 +14 176 1 890881484 +313 628 4 891016280 +180 732 3 877128137 +399 71 3 882351580 +186 100 4 879023115 +49 1068 3 888066187 +291 143 3 875086921 +342 255 4 874984574 +23 133 4 874786220 +373 269 5 877098075 +405 1250 1 885547997 +268 569 3 875744582 +405 214 4 885545235 +339 135 5 891033256 +293 866 3 888905322 +359 117 4 886453305 +234 135 4 892079769 +374 758 1 882158481 +243 655 4 879988104 +385 489 5 884631784 +346 1090 2 875265071 +405 450 1 885548093 +16 233 5 877727054 +354 414 4 891218492 +399 744 3 882510147 +326 403 3 879876976 +305 778 4 886325023 +387 169 5 886484336 +345 879 2 884901497 +303 226 4 879467295 +351 359 4 879481589 +60 13 4 883327539 +308 425 4 887737997 +271 1139 3 885849707 +242 291 3 879740593 +310 275 5 879436137 +248 179 3 884534649 +94 443 4 891721439 +234 451 3 892334578 +378 731 3 880056582 +299 724 3 889502687 +6 204 3 883601277 +305 1456 4 886324962 +361 340 3 879441805 +344 286 3 884813183 +248 484 2 884535013 +40 347 2 889041283 +143 347 5 888407741 +168 282 5 884287394 +296 121 5 884196689 +296 482 5 884197330 +316 234 1 880854473 +82 185 3 878769334 +405 127 5 885545167 +268 181 4 875309486 +344 79 4 884900993 +387 380 2 886484098 +389 1298 5 887868071 +293 467 4 888906263 +267 367 4 878971939 +308 264 2 887736408 +44 385 3 878348725 +303 26 4 879468307 +234 844 2 892078521 +112 303 4 884992535 +336 1012 5 877760082 +86 879 2 879570149 +399 986 3 882341586 +416 69 4 876699027 +83 684 4 880307898 +332 866 2 887938631 +286 268 4 884069298 +167 1307 2 892738277 +130 270 5 877984734 +94 566 2 891721815 +234 481 5 892079076 +44 214 5 878348036 +104 235 2 888465675 +387 1118 3 886482695 +363 767 2 891500179 +90 1206 2 891383912 +363 66 4 891496849 +409 199 4 881107117 +365 25 4 891303950 +343 980 5 876403239 +21 326 5 874950889 +280 722 3 891702122 +45 952 4 881014247 +201 331 4 884110967 +5 413 3 875635807 +276 732 4 874790903 +272 357 5 879454726 +334 888 2 891550464 +83 255 5 887665422 +234 202 3 892079585 +125 411 3 892839091 +406 588 4 879793081 +145 770 1 875272245 +399 62 3 882348876 +338 462 4 879438715 +64 1 4 879366214 +363 265 3 891495339 +99 762 2 885679411 +298 274 3 884183640 +102 94 2 892993545 +290 196 4 880474293 +354 57 5 891217575 +373 402 4 877105730 +15 937 4 879455128 +393 355 3 889554171 +115 187 5 881171203 +94 217 4 891722646 +299 151 4 877878227 +308 509 4 887738717 +11 194 4 891904920 +59 172 5 888204552 +278 269 5 891294959 +60 200 4 883326710 +378 133 5 889665232 +81 318 5 876534817 +26 979 3 891383899 +398 659 3 875738391 +286 329 4 886475961 +13 659 3 882141335 +261 410 5 890456142 +374 1407 2 880939304 +280 1168 5 891702544 +21 696 2 874951382 +130 298 5 874953769 +85 127 5 879829301 +239 603 5 889178616 +390 100 5 879694123 +345 132 5 884901371 +326 665 1 879876975 +297 423 3 875240237 +70 482 4 884068704 +343 196 4 876406257 +196 94 3 881252172 +313 56 2 891014313 +296 284 4 884196805 +220 682 4 881198014 +7 563 2 892131978 +361 1119 3 879440740 +385 447 3 879443150 +272 483 5 879454875 +144 65 4 888106182 +338 194 3 879438597 +417 551 3 879649224 +269 655 4 891448019 +301 105 3 882075202 +308 477 4 887739257 +312 543 5 891698424 +401 173 3 891032937 +183 203 3 891466266 +385 199 3 879442559 +291 401 4 875086766 +334 558 4 891546231 +363 561 2 891498884 +184 58 4 889908984 +104 288 2 888442140 +303 1258 2 879544756 +84 1040 3 883452630 +201 27 3 884140891 +327 64 2 887745699 +391 15 4 877399805 +189 31 3 893266027 +163 318 4 891220161 +406 501 5 879793081 +374 932 1 883628159 +363 1016 4 891499568 +401 527 4 891032919 +361 684 4 879441215 +373 404 4 877111422 +409 6 4 881109306 +295 504 4 879517299 +85 268 4 881705073 +276 268 4 877584085 +142 55 2 888640489 +206 990 1 888179913 +279 411 3 875296005 +291 1206 3 874871551 +193 301 4 889123257 +255 218 3 883216544 +268 211 4 875309583 +328 205 4 885045768 +3 307 3 889237224 +394 227 4 881132877 +228 655 4 889388489 +5 89 5 875636033 +102 393 3 892993302 +406 640 3 879793328 +280 468 4 891702028 +145 304 2 885557505 +323 172 5 878739988 +234 198 3 892078837 +279 1219 3 875744358 +70 185 4 884149753 +122 736 4 879270606 +276 742 4 874786756 +336 1059 3 877756890 +244 365 2 880608599 +413 306 4 879968793 +13 173 2 882139863 +57 225 3 883698039 +336 824 3 877756890 +256 722 3 882165269 +385 56 5 879441728 +163 216 3 891220196 +160 328 3 878078096 +385 48 5 879441777 +276 930 2 874787172 +151 164 5 879542984 +117 117 5 880126461 +412 28 4 879716962 +264 42 5 886123358 +373 105 3 877107173 +29 269 4 882820897 +385 216 2 879446868 +420 331 3 891357271 +110 658 3 886988065 +178 491 4 882827247 +392 538 2 891037851 +226 98 5 883889147 +145 69 5 882181632 +254 234 4 886472713 +130 217 3 875801940 +275 636 3 880314383 +383 603 5 891193242 +92 220 1 875644796 +8 183 5 879362233 +320 100 4 884748579 +298 202 3 884182867 +10 493 4 877886661 +110 759 3 886988850 +130 975 5 876251357 +300 257 4 875650267 +193 845 4 889124803 +405 719 1 885547447 +95 498 3 879197445 +416 272 5 893214332 +182 283 2 885613153 +374 1046 5 880938044 +222 160 1 878182154 +110 212 1 886988100 +378 655 4 880045553 +401 26 3 891033395 +71 151 1 877319446 +288 230 2 886629664 +350 176 4 882347653 +312 503 5 891699010 +339 469 5 891032633 +235 747 2 889655550 +323 248 3 878739519 +299 919 3 889501551 +381 97 4 892696960 +422 109 2 875130204 +109 849 2 880582384 +405 90 4 885547447 +289 471 4 876789373 +346 879 5 886273570 +314 377 3 877890982 +7 548 5 891352692 +145 79 5 875271838 +399 127 2 882346585 +58 257 5 884304430 +409 516 4 881109347 +405 1230 1 885547644 +99 628 4 885678813 +217 665 4 889070087 +411 651 4 891035278 +209 1137 4 883417491 +406 317 4 882480772 +346 158 2 875264945 +198 82 3 884209451 +313 98 4 891014444 +119 117 5 874775535 +162 254 3 877636476 +373 211 4 877099178 +181 150 1 878962465 +339 661 5 891033830 +292 535 3 881105031 +197 233 4 891409935 +303 430 4 879467260 +312 382 4 891699568 +371 663 5 880435238 +380 180 2 885478374 +95 432 3 879197886 +319 267 4 875707690 +363 546 3 891497440 +302 258 3 879436739 +283 50 5 879297134 +201 289 2 884111064 +312 474 5 891698454 +130 147 4 876250746 +117 214 5 881012193 +109 158 1 880579916 +268 568 3 875542174 +268 732 3 876514107 +141 1059 1 884584886 +276 169 5 874977555 +387 1008 4 886481183 +330 88 5 876546948 +67 833 4 875379794 +200 228 5 884128372 +279 489 2 888430298 +334 326 1 891544286 +301 864 4 882075110 +246 1222 3 884923372 +42 196 5 881107718 +279 25 5 875295736 +234 874 1 891227463 +305 655 4 886323937 +382 1534 4 875946830 +378 283 4 880044532 +230 181 4 880485066 +95 357 4 879198317 +399 22 3 882342834 +416 1188 3 886318953 +248 96 4 884534968 +97 174 4 884238817 +393 690 4 887742110 +320 33 4 884749385 +6 187 4 883600914 +1 103 1 878542845 +391 97 4 877399301 +246 151 5 884921727 +321 216 4 879441308 +393 1139 3 889729561 +269 614 3 891450471 +303 449 4 879485685 +264 345 4 886121516 +328 879 3 885044566 +59 866 3 888203865 +195 636 2 884504132 +280 942 5 891701431 +314 780 4 877890675 +85 154 4 879828777 +101 122 1 877136928 +122 464 5 879270541 +194 83 3 879521254 +405 206 1 885549589 +308 505 3 887737647 +315 340 4 881017170 +373 474 3 877098919 +126 682 1 887855034 +250 293 4 878089921 +314 772 1 877888212 +13 735 3 882140690 +201 597 2 884310149 +90 191 5 891384424 +393 789 1 887746015 +290 520 3 880473734 +385 168 3 879442109 +201 825 1 884112427 +323 215 5 878739988 +49 931 2 888068336 +293 1046 1 888907061 +195 823 4 881485704 +293 421 3 888906576 +413 124 5 879969734 +291 1210 4 875087656 +83 722 4 880308959 +417 147 4 879646225 +234 872 2 891033627 +125 87 5 892836464 +307 403 3 877122035 +188 127 4 875072799 +405 1531 1 885549094 +348 834 4 886523913 +344 1172 4 884901311 +373 704 2 877107100 +151 699 4 879525035 +16 28 5 877727122 +412 202 3 879717016 +248 290 3 884535582 +398 15 5 875651828 +410 882 3 888626612 +389 493 5 879991147 +290 1091 2 880475735 +312 656 5 891699156 +320 4 3 884749306 +274 117 4 878945264 +188 930 4 875074720 +83 692 4 880307979 +416 210 5 893213918 +327 258 1 887737355 +75 273 5 884050018 +347 871 4 881653300 +239 305 4 889178513 +129 258 2 883245452 +94 12 4 886008625 +342 220 1 874984455 +214 288 3 891542464 +321 484 5 879440244 +87 68 3 879876074 +200 1411 3 884130289 +416 43 1 886318186 +416 1035 3 892441480 +337 229 3 875185319 +5 400 1 878844630 +174 40 4 886514985 +189 513 4 893265865 +330 747 3 876546498 +366 218 3 888857866 +69 129 3 882072778 +268 715 1 875310603 +67 123 4 875379322 +178 15 5 882823858 +393 419 4 887746523 +193 689 2 890834966 +378 432 4 880331938 +405 695 1 885546287 +109 1028 4 880571831 +381 512 4 892696045 +388 184 4 886441083 +308 1421 4 887739212 +151 451 5 879542707 +409 59 5 881108455 +372 77 5 876869794 +276 408 5 874786467 +417 83 5 879648132 +328 79 4 885047194 +327 753 4 887745744 +189 639 4 893265893 +296 24 2 884196605 +117 313 5 886018980 +59 71 3 888205574 +285 455 4 890595726 +92 124 4 886440530 +296 179 4 884197419 +92 223 5 875653723 +11 573 3 891906327 +394 773 4 881060053 +298 185 3 884182774 +72 484 4 880037853 +44 378 3 878348290 +92 518 5 875653579 +94 969 4 891721026 +321 614 3 879440393 +144 197 4 888106106 +338 134 5 879438536 +79 13 3 891271676 +345 301 4 884900543 +374 147 3 880392747 +271 64 5 885848863 +11 277 5 891903226 +298 503 4 884183237 +279 541 3 882146458 +417 423 4 879647118 +44 96 4 878347633 +313 164 3 891014870 +224 294 4 888081976 +6 518 3 883603042 +334 421 4 891547307 +347 7 4 881652590 +150 147 4 878746442 +316 521 5 880854395 +321 89 3 879440716 +168 100 4 884287362 +290 436 2 880475469 +346 174 5 874948547 +1 118 3 875071927 +308 107 4 887741150 +92 678 2 875641428 +279 1110 3 875307379 +417 120 2 880949763 +412 175 4 879717286 +264 12 5 886122508 +113 246 5 875076872 +91 616 4 891439439 +321 647 3 879438699 +89 257 5 879461219 +249 222 4 879640306 +398 357 4 875657926 +263 162 5 891299630 +200 210 5 884128933 +417 578 3 879649610 +99 328 4 885678696 +181 1369 1 878962199 +385 408 5 879443065 +90 517 3 891384789 +197 161 4 891410039 +234 549 3 892335850 +318 414 4 884496008 +213 234 4 878955373 +177 22 4 880130847 +264 606 5 886122099 +393 500 4 887746523 +49 518 4 888069437 +102 144 3 888801360 +83 423 4 880308329 +363 217 2 891498286 +255 976 1 883217030 +89 283 4 879441557 +397 334 3 885349348 +416 1098 3 886316271 +222 71 4 878183173 +202 484 4 879727153 +13 483 5 882139774 +401 210 4 891032976 +288 178 5 886374342 +158 127 5 880132356 +85 523 4 879453965 +385 253 3 879439923 +151 482 4 879524345 +60 138 2 883327287 +405 92 1 885546287 +204 245 3 892391980 +21 245 1 874951006 +307 423 5 879283587 +222 15 3 877563437 +64 662 4 889739319 +327 197 4 887744023 +213 692 4 878955848 +91 234 5 891439503 +187 191 5 879465566 +257 949 3 880496958 +405 1176 3 885549942 +393 576 3 889729938 +405 639 1 885549635 +417 1044 3 879648939 +290 625 4 880475782 +270 872 5 876953827 +49 204 1 888068686 +308 133 3 887738225 +346 83 4 874949923 +145 470 5 875272299 +115 969 1 881172183 +214 461 4 892668249 +184 584 3 889909889 +312 588 5 891699490 +393 568 4 889554563 +328 211 4 885046276 +382 508 3 875946029 +223 111 4 891549792 +343 164 3 876404757 +146 346 4 891457591 +62 286 3 879372813 +29 343 3 882821673 +223 409 3 891549876 +342 558 5 874984341 +394 161 4 880888850 +181 1040 1 878962997 +349 823 4 879466156 +189 596 3 893264407 +145 574 2 888398833 +393 365 3 889729460 +311 125 4 884963179 +66 288 4 883601607 +268 928 1 875745536 +244 955 4 880606593 +189 135 4 893265535 +297 596 3 874955107 +330 427 5 876546920 +94 241 4 891721716 +314 395 2 877889770 +129 268 1 883245452 +314 68 4 877891637 +395 632 5 883764845 +271 95 4 885848916 +314 71 5 877888527 +251 427 4 886271675 +405 366 3 885545552 +7 626 5 892132773 +102 866 2 892993545 +145 100 5 875270458 +374 29 3 880939127 +282 305 4 879949347 +89 277 4 879441271 +393 363 3 887745086 +82 70 4 878769888 +405 470 1 885546247 +194 144 4 879547671 +257 301 3 879029620 +294 751 4 889241309 +214 132 5 892668153 +197 79 5 891409839 +82 1033 1 884714560 +276 94 2 882659602 +425 271 5 890346597 +183 227 4 891463592 +269 1168 2 891448386 +58 69 1 884663351 +56 993 3 892683353 +239 134 5 889179033 +308 168 4 887737593 +393 362 3 887741960 +254 140 4 887347350 +294 926 3 877819713 +276 74 3 884286759 +194 227 1 879535548 +276 566 4 874792601 +419 1451 4 879435722 +377 323 2 891297001 +284 324 3 885329468 +396 678 3 884645838 +305 83 3 886323464 +200 674 4 884130348 +125 781 3 892838463 +57 271 3 883696672 +23 222 4 876785704 +22 238 5 878886423 +279 236 5 875296813 +184 568 2 889909474 +44 433 4 878348752 +372 574 4 876869957 +379 655 5 888044628 +210 523 4 887730472 +293 632 3 888906464 +64 69 4 889739091 +409 201 1 881109019 +49 385 1 888069536 +283 125 5 879297347 +415 1524 5 879439791 +327 81 4 887818904 +65 435 4 879218025 +90 182 3 891383599 +397 325 3 882838853 +222 452 1 878184514 +361 466 4 879441285 +164 748 5 889401410 +151 433 3 879542510 +107 302 4 891264296 +325 835 5 891478099 +13 423 5 882398814 +158 222 3 880132771 +187 582 1 879465683 +42 172 5 881107220 +373 649 4 877098979 +344 660 3 884901235 +234 1455 2 892318158 +116 1257 1 876452651 +210 276 5 887731147 +328 356 3 885047763 +239 210 4 889179032 +372 325 4 876869330 +393 705 4 887746456 +183 273 4 892323452 +171 268 4 891034684 +297 24 4 874954260 +223 597 4 891549604 +49 878 2 888065825 +312 513 5 891698300 +184 805 3 889912232 +83 105 2 891182288 +199 948 1 883782655 +295 174 4 879517062 +314 819 4 877886971 +393 1314 3 889731561 +387 845 4 886484336 +101 237 5 877137015 +125 996 3 892838424 +422 671 4 879744143 +248 168 4 884534945 +311 523 5 884364694 +217 118 4 889070087 +405 1555 1 885549045 +406 213 2 879793179 +425 424 2 878738956 +137 117 5 881433015 +334 709 4 891548368 +379 211 5 880740437 +336 722 3 877757134 +311 208 4 884365104 +279 534 1 878971577 +145 298 1 885557579 +364 288 4 875931432 +227 475 4 879035252 +313 234 4 891013803 +185 223 4 883524249 +372 322 3 876869330 +326 265 4 879876489 +387 984 1 886484460 +387 436 4 886481737 +269 627 1 891451063 +399 128 3 882343293 +45 1 5 881013176 +125 864 3 892838591 +178 540 3 886678484 +18 224 5 880130739 +334 658 3 891547148 +181 277 1 878963441 +416 761 4 886318708 +316 180 4 880853654 +276 91 5 882659577 +168 222 5 884287759 +401 866 3 891032697 +425 748 3 890346567 +264 451 4 886123531 +406 523 3 879446062 +250 628 4 878090114 +110 195 2 886988480 +312 730 3 891699568 +400 259 3 885676490 +222 1059 1 883816150 +186 338 3 889818331 +92 288 3 878679005 +409 520 2 881107943 +344 213 4 884901351 +141 678 4 884584480 +216 234 4 880244870 +320 413 3 884749046 +201 319 2 884110967 +380 118 2 885480301 +27 515 4 891543009 +292 659 5 881105340 +306 269 5 876503792 +62 423 3 879373692 +49 108 2 888068957 +417 710 4 879647826 +112 316 5 892439693 +91 289 4 891438553 +342 952 3 874984619 +349 475 4 879466479 +423 744 4 891395655 +411 182 3 891035278 +194 25 2 879540807 +174 162 5 886514108 +181 948 1 878961474 +35 877 2 875459099 +312 1116 3 891698334 +399 436 2 882348478 +234 1454 3 892336257 +422 559 3 879744085 +87 491 5 879877930 +21 930 1 874951482 +322 313 5 887314417 +239 508 5 889178798 +269 414 3 891449624 +390 740 4 879694123 +425 191 3 878738186 +82 1028 2 876311577 +160 475 5 876767822 +270 684 4 876955938 +413 297 5 879969484 +422 922 4 875130173 +214 134 4 891544070 +401 284 3 891032453 +279 853 1 890451433 +313 1210 4 891032028 +125 275 5 879454532 +291 49 4 875086090 +365 1048 3 891304152 +409 214 4 881109216 +244 151 5 880604326 +276 379 3 874792745 +273 321 4 891293048 +411 209 4 891035550 +405 699 2 885546247 +47 292 4 879438984 +205 243 2 888284758 +268 825 3 875742893 +405 575 5 885547557 +87 186 5 879876734 +222 385 4 878183924 +393 781 4 889729159 +45 21 3 881014193 +18 126 5 880130680 +21 100 5 874951292 +92 164 4 875656201 +363 350 1 891493864 +393 783 3 889729561 +335 347 5 891567004 +43 684 4 883955702 +233 191 4 877665191 +94 61 5 891720761 +84 879 4 883449530 +387 432 4 886480353 +307 24 4 876176161 +13 482 5 882140355 +275 746 4 880314478 +405 422 1 885548836 +342 517 5 875320297 +184 72 3 889909988 +119 1197 4 886176922 +141 252 4 884585195 +198 509 4 884208710 +90 150 3 891385250 +8 687 1 879361825 +194 7 3 879538898 +268 189 4 875744966 +381 501 4 892697133 +378 1061 2 880044454 +222 252 2 877563934 +112 984 3 884992651 +303 763 4 879485319 +327 603 4 887745661 +332 1028 4 887938403 +399 946 3 882343172 +405 1353 1 885549745 +406 12 4 879445897 +26 410 2 891373086 +201 25 3 884114015 +247 1 4 893097024 +376 762 4 879459207 +338 483 4 879438092 +385 174 2 879924297 +317 271 3 891446575 +393 1441 3 889728554 +350 211 2 882347466 +422 184 4 879744085 +1 54 3 878543308 +407 217 4 875044400 +327 234 5 887745840 +400 895 4 885676452 +130 588 4 875216867 +278 173 5 891295360 +391 203 4 877399423 +250 240 4 878092171 +299 553 3 889502865 +91 313 4 891437978 +27 100 5 891543129 +393 366 4 889729345 +417 42 4 879647498 +234 732 2 892334713 +416 277 5 893212572 +406 701 5 879446269 +239 690 1 889178513 +90 131 5 891384066 +49 294 1 888065702 +318 15 5 884470944 +328 294 3 885044733 +253 64 5 891628252 +1 267 4 875692955 +232 515 2 880062413 +402 7 4 876267068 +311 1232 4 884366439 +7 482 3 891351083 +102 748 3 888800994 +286 574 4 877534137 +1 24 3 875071713 +100 323 3 891375359 +348 15 4 886523330 +234 693 2 892333980 +342 297 3 875318267 +295 88 4 879517964 +172 178 3 875538027 +201 642 4 884111485 +328 282 3 885047865 +415 154 4 879439865 +198 196 3 884208098 +99 413 3 885679299 +315 186 4 879821065 +64 72 4 889740056 +344 284 3 884899768 +222 895 4 883815361 +11 109 3 891903836 +173 880 4 877557168 +406 414 2 880131704 +56 122 2 892911494 +184 252 2 889907528 +405 1227 3 885546635 +398 417 3 875719399 +144 176 4 888105338 +287 28 5 875335018 +222 810 2 878184446 +109 949 3 880582384 +407 428 3 875553154 +239 100 3 889179131 +132 124 4 891278996 +94 1223 4 891721494 +83 468 4 880308390 +293 56 4 888905550 +363 1010 4 891496979 +230 182 2 880484370 +56 432 5 892737154 +249 186 4 879572516 +21 319 2 874950889 +334 742 2 891544972 +42 194 5 881107329 +42 496 5 881107718 +187 433 4 879465242 +24 216 4 875323745 +7 645 4 891353614 +125 732 4 879455019 +194 623 1 879551637 +417 159 4 879648656 +63 268 3 875746809 +301 99 4 882078419 +90 1048 4 891385132 +354 152 3 891306974 +277 25 4 879543902 +18 451 3 880131297 +276 386 3 877935306 +223 294 4 891548859 +264 1103 5 886123656 +172 1172 3 875538864 +308 729 3 887740254 +135 653 4 879857765 +10 495 4 877892160 +92 655 4 875654533 +417 12 4 879647275 +299 198 4 889501288 +373 318 5 877098222 +326 670 3 879877387 +234 234 4 892079475 +276 1129 4 874786876 +24 100 5 875323637 +306 150 5 876504286 +387 317 4 886483906 +102 827 2 888802722 +94 1226 4 891724081 +297 204 3 875239422 +193 127 5 890860351 +62 448 2 879375883 +125 493 4 879454448 +174 575 1 886515239 +313 161 4 891015319 +336 1054 1 877754876 +276 665 3 874792520 +378 419 4 880332643 +339 402 3 891034867 +268 1477 2 875742680 +92 276 5 875640251 +42 215 5 881107413 +379 496 5 892879481 +398 284 2 875654781 +372 581 5 876869794 +16 284 1 877719863 +407 616 3 875553018 +151 318 5 879524088 +325 188 2 891478944 +181 1367 2 878962086 +246 83 4 884921086 +294 246 4 889241864 +39 345 3 891400159 +25 239 4 885853415 +303 367 4 879468082 +273 303 4 891293048 +382 1229 5 875947240 +248 854 5 884534735 +425 227 4 878738597 +85 1169 4 879454952 +23 219 1 874788187 +347 324 1 881652230 +312 190 5 891698865 +343 435 4 876404343 +22 554 1 878888066 +268 433 4 876514107 +82 671 1 878769478 +62 181 4 879372418 +150 273 4 878746764 +385 480 5 879441313 +354 607 3 891218208 +7 190 5 891351728 +201 385 2 884112427 +383 86 5 891193210 +345 481 3 884916260 +429 73 3 882387505 +303 38 1 879484981 +297 1007 4 874954763 +90 312 4 891383319 +363 5 1 891497047 +178 326 4 888513095 +226 150 4 883889063 +16 174 5 877719504 +295 747 4 879518590 +28 646 4 881961003 +249 686 5 879641251 +301 333 4 882075454 +363 184 3 891494725 +271 384 3 885849582 +22 407 3 878886845 +329 181 4 891655741 +206 895 5 888179788 +30 531 5 885941156 +308 89 5 887738057 +358 132 5 891270652 +405 451 5 885547360 +5 80 2 875636511 +383 137 5 891192986 +15 929 1 879456168 +92 1033 2 890251592 +422 919 5 875130027 +379 651 4 880568511 +201 241 2 884112487 +399 1274 1 882350870 +64 95 4 889737691 +328 322 3 885044782 +393 1183 3 889731040 +72 180 4 880036579 +349 237 2 879466062 +347 568 4 881654339 +268 105 2 876513927 +416 226 4 886317030 +6 471 2 883599558 +3 272 2 889237055 +235 520 4 889655204 +316 22 4 880853849 +331 182 4 877196567 +120 245 3 889490633 +407 194 4 875115452 +279 59 4 875308843 +294 1016 4 877820189 +239 432 5 889180041 +327 408 2 887745910 +360 157 4 880355994 +13 268 4 881514810 +234 433 2 892079910 +23 238 5 874785526 +399 323 1 882340517 +378 699 4 880055564 +334 396 4 891549103 +417 67 4 880952837 +250 1137 5 878090066 +276 5 3 874792692 +145 42 5 882181785 +428 307 4 885944110 +314 220 4 877886279 +327 264 2 887743725 +69 321 4 882027133 +237 502 4 879376487 +280 465 3 891701148 +301 419 3 882076072 +215 443 4 891436566 +26 322 3 891349122 +92 101 2 875656624 +374 28 5 880395698 +145 51 3 875272786 +168 15 5 884287362 +87 382 3 879876488 +24 475 4 875246216 +221 940 4 875246482 +224 318 5 888082584 +311 62 3 884365929 +412 427 4 879717016 +345 51 5 884993744 +176 948 4 886047595 +94 193 5 891720498 +328 85 1 886038183 +351 292 4 879481550 +412 92 3 879717449 +156 197 5 888185777 +399 94 5 882349022 +206 315 5 888180018 +334 577 2 891550372 +417 658 2 879647947 +200 580 2 884130114 +294 322 1 889243393 +177 172 5 880130990 +332 144 5 887939092 +248 194 4 884534672 +197 1228 4 891410124 +94 1004 3 891723593 +210 751 4 890059441 +416 1147 4 888702100 +318 796 3 884496500 +110 233 4 886988535 +130 255 4 874953794 +339 509 4 891033140 +379 855 4 880961506 +378 194 4 880046100 +313 29 2 891028472 +94 334 3 891725440 +115 496 1 881171203 +295 389 4 879518298 +374 450 4 880938370 +192 1137 4 881367705 +178 1300 3 886678518 +53 748 2 879443329 +345 739 4 884993016 +187 1119 3 879465683 +56 715 1 892911247 +201 321 3 884111029 +201 551 1 884114770 +374 692 5 882158641 +357 405 5 878951784 +62 20 4 879372696 +299 13 4 877877965 +345 269 5 884900466 +10 195 4 877889130 +130 168 3 875216786 +387 854 5 886481686 +290 133 3 880473735 +150 235 4 878746792 +149 321 2 883512856 +87 192 3 879877741 +200 276 5 876041895 +217 38 3 889070266 +393 2 4 887746206 +10 521 4 877892110 +379 216 4 880525926 +393 215 4 887745912 +328 504 3 885046420 +378 696 3 880045044 +212 427 4 879303795 +318 815 3 884494938 +311 315 5 884364108 +429 64 4 882384744 +345 405 4 884991285 +57 222 5 883698581 +6 248 3 883598981 +120 286 5 889489943 +311 1046 3 884366307 +293 366 2 888907981 +276 686 3 874792547 +268 484 4 876513831 +222 471 3 881060992 +393 792 1 889729346 +416 234 5 893213644 +389 662 3 880613750 +46 7 4 883616155 +280 387 4 891701974 +43 181 4 875975211 +230 144 3 880484850 +95 232 4 879196513 +308 197 3 887736743 +183 222 4 892323453 +13 402 4 886303934 +39 306 3 891400342 +393 110 2 889730117 +336 1017 5 877757063 +42 742 4 881105581 +201 1163 1 884140382 +76 385 2 882607017 +394 450 3 881132958 +116 344 5 892683820 +59 82 5 888205660 +128 949 4 879968896 +59 1118 2 888206048 +299 1073 4 879123070 +416 56 5 893212929 +427 938 5 879701253 +239 195 5 889180747 +38 916 5 892428188 +302 299 2 879436932 +18 162 4 880131326 +303 436 4 879484644 +193 155 4 889126376 +279 841 4 879572893 +193 443 4 889126610 +59 18 4 888203313 +401 137 3 891032316 +393 1165 3 889730514 +224 549 3 888103971 +402 127 5 876267014 +92 66 3 875812279 +84 385 4 883453797 +7 264 4 891350703 +347 96 4 881653775 +263 495 5 891298977 +356 300 3 891405978 +128 50 4 879967268 +317 331 4 891446190 +416 134 4 878879619 +123 487 3 879872192 +393 779 3 889729673 +177 338 3 882142221 +398 70 4 875717315 +257 224 4 879029717 +7 681 1 891350594 +32 245 2 883710047 +389 217 3 880088774 +318 1521 3 884497824 +16 606 4 877721071 +385 156 4 881308434 +95 747 5 880573288 +291 1219 4 875087221 +339 845 4 891034718 +203 248 5 880434496 +110 68 2 886988631 +56 451 3 892676970 +64 58 3 889739625 +70 432 3 884067175 +76 772 3 875498117 +58 923 5 884305062 +363 685 4 891496979 +390 181 4 879694198 +354 428 4 891217298 +1 86 5 878543541 +49 39 2 888068194 +380 527 4 885479212 +261 892 5 890455190 +102 181 2 888801406 +130 173 3 875216593 +181 1174 1 878962200 +363 152 5 891494906 +387 943 4 886483357 +198 182 4 884207946 +409 518 1 881109347 +204 1 2 892513979 +21 328 3 874951005 +339 1248 3 891034538 +186 717 3 879023242 +429 86 5 882384579 +365 150 5 891303950 +406 195 5 882480710 +60 161 4 883327265 +379 300 3 890464279 +380 64 3 885481179 +417 552 2 880952066 +72 479 4 880037881 +412 436 4 879717649 +269 763 1 891450555 +381 473 5 892697150 +391 474 5 877399171 +49 998 2 888069194 +348 313 5 886522495 +5 433 5 875636655 +329 655 4 891656237 +357 287 4 878952265 +427 682 5 879701325 +200 50 5 884128400 +338 174 4 879438392 +87 254 4 879876256 +194 616 3 879523243 +109 1157 4 880583646 +94 425 5 885870665 +308 72 4 887740451 +295 133 4 879517432 +334 168 5 891546914 +115 93 3 881170332 +158 183 3 880134332 +256 227 4 882164603 +23 546 3 874784668 +276 588 4 874792907 +13 420 4 882398691 +43 568 4 883955363 +397 1298 3 885350543 +418 362 1 891282765 +279 233 5 875312745 +427 341 5 879701253 +379 54 2 880526100 +399 168 3 882342776 +58 50 4 884304328 +399 114 4 882341974 +398 661 3 875719399 +193 259 2 889123351 +70 109 3 884066514 +381 83 4 892695996 +184 174 3 889908693 +269 665 1 891451810 +363 505 3 891495238 +44 216 1 883613297 +7 622 4 891352984 +106 313 4 888706075 +366 164 5 888857932 +18 70 4 880129668 +254 699 3 886473120 +201 123 2 884114233 +7 161 3 891352489 +423 237 4 891395448 +44 357 4 878347569 +423 315 4 891395141 +14 116 5 876965165 +7 428 5 892133036 +247 151 4 893081396 +309 242 4 877370319 +255 98 5 883216449 +354 659 4 891217221 +7 288 4 891350703 +85 209 4 879454500 +314 1136 5 877890463 +104 827 2 888466086 +116 264 3 876452186 +373 566 4 877105809 +92 93 4 886444049 +374 121 4 880393095 +92 963 5 875652981 +344 176 5 884814507 +387 1538 3 886481151 +83 94 4 880308831 +286 778 5 877534025 +383 513 5 891193016 +316 463 5 880854267 +73 1073 4 888625753 +54 50 5 880931687 +417 196 5 879647090 +299 294 2 877618584 +327 381 4 887819354 +181 1336 1 878963241 +10 13 3 877892050 +28 423 2 881956564 +347 699 1 881654480 +157 93 3 886890692 +116 582 3 876453626 +184 447 3 889910653 +287 276 4 875334126 +311 50 5 884365075 +361 203 5 879441285 +177 198 4 880131161 +18 479 4 880129769 +363 188 4 891495711 +271 237 4 885847763 +381 498 5 892696252 +287 117 5 875334405 +368 218 2 889783453 +346 143 3 874948332 +178 431 4 882827400 +21 688 1 874950972 +35 680 4 875459099 +85 1009 2 879453093 +385 114 5 879441942 +49 70 2 888066614 +309 306 2 877370356 +1 196 5 874965677 +276 196 4 889174849 +246 195 3 884921138 +119 254 2 874781037 +197 174 5 891409798 +393 420 3 889728074 +385 1129 5 879440236 +314 764 3 877886816 +399 578 2 882348722 +92 89 5 875652981 +289 926 3 876790611 +94 448 5 891722939 +295 42 3 879517467 +249 1103 5 879572256 +297 742 3 875774155 +305 289 4 886308064 +128 1063 2 879967047 +393 554 4 889729486 +326 564 3 879877470 +314 948 3 877886029 +246 585 1 884923811 +287 291 5 888177402 +59 109 4 888203175 +365 289 3 891303694 +401 462 4 891033684 +280 1401 5 891700881 +270 402 5 876955770 +363 940 2 891498920 +200 652 2 884127370 +13 805 4 882141458 +331 242 4 877196089 +222 200 3 878181647 +362 268 2 885019435 +338 792 4 879438196 +345 15 4 884991220 +164 276 3 889401771 +286 710 4 889651672 +95 7 5 879197329 +22 878 1 878887598 +387 152 1 886479690 +201 1169 4 884141053 +145 212 2 875272786 +290 144 3 880473802 +373 31 3 877100199 +417 135 3 879647826 +416 304 5 893214225 +290 699 3 880473735 +38 140 5 892430309 +295 159 4 879518107 +275 930 3 876197904 +64 451 2 889739490 +367 201 5 876689991 +330 277 4 876544690 +328 223 4 885045645 +16 134 4 877719158 +145 265 5 875272131 +233 31 3 880610814 +244 559 4 880607154 +320 739 4 884750992 +178 294 2 882823301 +347 294 1 881652142 +250 474 5 878089964 +181 1344 1 878962240 +363 387 1 891497639 +283 95 5 879297965 +56 168 2 892679209 +416 417 3 886317568 +98 116 5 880499053 +246 230 3 884922070 +21 473 3 874951245 +199 475 5 883782918 +293 1217 1 888907913 +376 14 4 879454914 +361 100 5 879440386 +293 1011 3 888905146 +130 798 1 878537631 +43 11 5 875981365 +262 709 5 879795122 +289 147 3 876789581 +95 69 5 879198210 +407 755 3 875553509 +328 531 4 885046455 +330 393 4 876547004 +293 347 2 888904353 +409 680 1 881105677 +286 290 3 876522072 +417 208 3 879648026 +394 232 4 880889374 +144 273 4 888104213 +393 728 3 889730209 +76 286 5 875027206 +305 207 5 886323839 +56 44 4 892679356 +22 455 5 878886479 +417 1023 4 880949479 +18 13 5 880131497 +234 276 3 891228196 +264 602 4 886122194 +379 133 4 881000300 +181 1392 1 878961749 +252 740 3 891456738 +296 240 1 884196765 +141 1142 1 884584688 +334 300 3 891544209 +60 558 4 883326784 +110 751 3 886987183 +346 1018 3 874950536 +272 521 5 879454977 +399 230 3 882344512 +275 118 3 876197678 +320 692 4 884750968 +209 766 4 883460644 +244 926 2 880609193 +417 631 3 879647826 +345 1014 3 884994643 +417 747 3 879648325 +407 466 3 876339101 +344 304 3 884814359 +222 409 3 881061213 +11 241 4 891906389 +318 140 4 884496738 +358 357 4 891270405 +385 1135 1 879448181 +40 294 4 889041671 +417 235 2 879646413 +7 72 5 891353977 +64 96 4 889737748 +378 258 4 882712421 +318 211 5 884496432 +102 840 2 888802508 +276 816 2 874792793 +42 977 2 881106541 +23 70 2 874786513 +20 121 3 879668227 +345 77 3 884993555 +21 242 3 874951617 +389 478 5 879991264 +250 135 5 878091915 +393 83 4 887746523 +254 419 4 886472231 +75 824 1 884051056 +429 1222 3 882387074 +420 19 3 891356927 +276 206 5 874795988 +234 7 2 891227813 +79 262 5 891271203 +308 385 4 887740099 +104 1011 3 888465201 +308 124 4 887737647 +200 147 5 876042451 +256 925 5 882151017 +222 1419 1 878184947 +429 495 3 882385358 +385 194 3 879441538 +207 322 3 879001724 +63 508 4 875747752 +344 303 4 884814359 +49 386 4 888069222 +151 605 4 879528909 +416 738 2 886319825 +321 663 2 879439537 +32 235 3 883718121 +128 265 5 879968663 +330 193 5 876547004 +269 346 2 891445757 +153 216 2 881371032 +316 318 5 880853516 +325 357 4 891477957 +1 39 4 875072173 +20 252 4 879669697 +95 651 5 879196594 +272 201 3 879455113 +349 412 1 879466366 +407 642 2 875045627 +335 271 4 891567029 +125 357 3 879454100 +256 125 5 882150552 +184 11 3 889908694 +307 474 5 879283787 +76 200 5 882606216 +405 1188 3 885547506 +262 755 3 879794446 +30 301 4 875988577 +94 961 4 891721317 +106 48 3 881453290 +13 414 5 882141458 +343 97 4 876405893 +313 498 5 891015144 +10 183 5 877893020 +234 421 1 892334852 +33 751 4 891964188 +7 389 4 891354090 +189 479 5 893265123 +305 921 5 886324410 +405 1207 1 885548686 +59 98 5 888204349 +354 603 5 891217082 +70 338 2 884065248 +3 354 3 889237004 +363 1228 2 891498720 +311 387 4 884365654 +268 665 2 875310745 +405 230 2 885547953 +57 597 3 883697378 +343 475 5 876402668 +354 664 5 891217717 +94 723 3 891721851 +297 95 3 875238814 +59 200 5 888205370 +244 1048 4 880606567 +57 199 5 883698646 +11 524 4 891904949 +104 150 5 888465225 +58 1102 1 892242891 +92 403 4 875654189 +406 662 3 882480481 +13 772 1 882140070 +417 64 5 879647326 +123 707 5 879809943 +387 227 4 886483195 +422 854 4 879744014 +405 62 1 885547996 +98 745 3 880498935 +206 1313 1 888179981 +332 326 5 892484951 +253 496 5 891628278 +309 300 3 877370288 +285 682 4 890595524 +401 654 3 891033184 +385 462 2 881135090 +383 14 5 891192836 +234 15 3 892079538 +346 785 3 875263077 +320 129 4 884748661 +123 704 3 879873120 +106 194 5 881450758 +213 121 5 878870940 +378 939 4 880332307 +405 771 1 885548162 +417 403 4 879649224 +248 678 3 884534419 +280 1060 3 891701278 +404 327 2 883790366 +405 1247 1 885546681 +59 39 4 888205033 +13 812 2 882398933 +272 469 5 879455143 +169 705 5 891359354 +378 723 3 880055396 +314 1089 1 877887356 +44 193 3 878348521 +15 889 3 879455473 +404 748 4 883790430 +160 564 3 876861799 +416 532 3 888700659 +104 312 3 888442485 +303 384 3 879485165 +331 81 5 877196702 +108 10 5 879879834 +416 220 4 878879168 +314 1517 4 877891937 +2 301 4 888550631 +271 1 3 886106038 +75 410 5 884050661 +405 188 1 885547996 +344 511 4 884901311 +64 12 5 889738085 +297 128 4 875239346 +314 7 4 877886375 +135 12 4 879857764 +94 223 5 891721286 +23 512 5 874785843 +354 344 5 891180445 +316 14 4 880853881 +276 333 4 877584220 +398 991 2 875651527 +326 554 3 879877005 +156 22 3 888186093 +262 332 3 879961438 +360 181 4 880355353 +408 683 3 889679982 +295 414 4 879517157 +151 1101 4 879524586 +401 198 4 891033370 +234 186 3 892078567 +402 126 4 876266741 +338 606 3 879438275 +312 136 5 891698613 +343 214 4 876406604 +1 164 3 876893171 +405 578 1 885548093 +330 71 5 876546236 +343 132 5 876404880 +82 482 4 878769668 +249 218 3 879641322 +318 326 4 884470149 +424 1346 4 880859519 +323 764 3 878739415 +343 498 5 876408138 +331 180 5 877196567 +297 108 4 874955085 +311 134 5 884364502 +141 120 4 884585547 +393 222 4 887744239 +275 144 4 880314137 +221 154 3 875245907 +249 591 5 879572890 +249 9 5 879572402 +181 1377 1 878962496 +429 511 5 882385542 +338 306 4 879437548 +58 483 5 884305220 +274 88 4 878946677 +16 602 5 877719333 +102 635 2 888803148 +162 597 4 877636370 +87 8 5 879876447 +280 69 4 891700242 +393 378 4 887746824 +346 94 3 875263845 +399 817 4 882509927 +274 111 4 878945541 +94 715 4 891722278 +101 123 2 877136186 +92 722 3 875907596 +211 455 3 879461498 +194 99 3 879524643 +28 89 4 881961104 +290 826 2 880732271 +327 421 2 887745840 +360 13 3 880354315 +339 525 5 891032737 +354 529 4 891217610 +251 476 2 886272407 +385 293 3 879439728 +56 747 4 892677162 +13 564 1 882396913 +432 222 4 889416012 +256 1061 4 882153321 +177 168 4 880130807 +92 144 4 875810741 +161 1266 2 891170745 +22 358 5 878887443 +111 333 4 891680028 +18 775 3 880131878 +421 474 4 892241389 +435 780 2 884133284 +286 1202 3 876522185 +8 210 4 879362287 +200 576 4 884130415 +58 150 4 884304570 +14 517 4 890881485 +307 197 4 877122115 +249 212 4 879572890 +7 334 5 892130784 +424 25 4 880859723 +429 628 3 882385808 +59 367 4 888204597 +267 227 3 878973088 +230 357 5 880484391 +73 81 5 888626415 +277 872 3 879543768 +151 1017 2 879542939 +8 258 5 879361482 +269 505 3 891449551 +91 318 5 891439090 +296 45 5 884197419 +401 603 4 891033497 +244 161 4 880607990 +126 752 3 887855342 +339 194 4 891037070 +222 302 3 877562748 +176 750 4 886047176 +228 327 1 889387216 +308 100 5 887736797 +119 616 2 886177206 +90 518 2 891385787 +401 385 3 891033603 +387 431 3 886483150 +328 157 5 885046344 +194 127 5 879520813 +246 117 3 884921767 +22 208 5 878886607 +257 1008 5 882050187 +375 566 4 886621985 +94 496 3 885873159 +190 1313 2 891033445 +354 199 4 891217130 +210 953 3 887737488 +6 511 5 883601393 +281 258 2 881200457 +174 415 3 886515591 +5 219 3 875720744 +405 1563 1 885549635 +145 266 3 877343000 +416 49 4 893142283 +327 89 4 887744167 +115 1008 5 881171982 +398 216 5 875723337 +378 418 3 880331938 +385 485 4 879446591 +178 228 5 882826556 +168 819 4 884288270 +109 762 3 880571831 +354 87 3 891217482 +416 866 4 878879130 +425 39 4 878738335 +374 265 5 880937779 +339 1113 4 891033829 +339 76 3 891034254 +41 1 4 890692860 +13 519 5 882140355 +305 550 3 886325023 +399 774 3 882345053 +418 313 3 891282680 +406 745 4 880131550 +299 143 3 877880612 +92 1014 3 890251484 +26 333 3 891348192 +344 237 3 884900353 +334 792 4 891546257 +287 201 5 875334962 +378 48 5 880056701 +91 134 4 891439353 +416 32 2 888702297 +303 551 2 879544021 +138 185 4 879023853 +363 128 5 891495371 +429 45 3 882385118 +393 196 4 887746015 +387 1014 3 886480789 +256 779 4 882164644 +104 147 3 888466002 +303 218 4 879484695 +2 313 5 888552084 +85 530 3 879456350 +264 238 5 886122031 +241 313 4 887249795 +343 269 4 876402390 +395 174 5 883763561 +200 660 3 884129209 +260 362 5 890618729 +52 427 5 882922833 +235 65 2 889655723 +159 756 4 880557464 +389 518 4 880087073 +320 7 4 884748708 +392 286 2 891037385 +18 318 5 880132437 +318 312 4 884470193 +315 187 4 879799423 +85 417 3 882995859 +125 69 4 879454628 +308 129 5 887736925 +391 924 2 877400116 +284 300 3 885329395 +286 640 5 877531830 +393 1091 2 889731840 +239 492 3 889180411 +297 183 4 875238984 +223 846 2 891550193 +180 423 4 877355568 +189 134 5 893265239 +58 198 3 884305123 +130 288 5 874953291 +95 402 3 880571389 +2 279 4 888551745 +345 25 3 884991384 +425 185 2 878738853 +38 419 5 892429347 +28 450 1 881961394 +397 894 1 882838796 +145 270 5 879161577 +216 405 3 880232970 +429 1016 4 882386217 +297 231 3 875239913 +162 710 4 877636860 +58 955 4 884305062 +151 1264 4 879542389 +38 1034 1 892433062 +276 559 4 874792663 +79 150 3 891271652 +361 517 5 879440386 +293 54 3 888907210 +398 204 4 875716013 +6 284 2 883599590 +416 404 3 886316190 +159 411 3 880557677 +328 432 1 885047511 +421 443 5 892241459 +197 226 4 891410038 +109 157 4 880577961 +204 336 1 892391854 +23 269 5 877817151 +284 332 3 885329593 +391 1101 4 877399423 +350 589 5 882346986 +429 735 4 882387757 +398 31 3 875658967 +311 493 4 884364465 +6 304 4 883268322 +416 721 3 886317540 +262 581 3 879794667 +406 612 5 879446718 +181 9 4 878962675 +416 895 4 885114446 +267 273 4 878970503 +346 121 4 874948703 +96 50 5 884402977 +94 1028 2 891723395 +226 1117 3 883890262 +286 155 4 877533640 +398 228 5 875657926 +374 280 3 880393811 +16 9 5 877722736 +177 433 4 880131123 +263 423 5 891299630 +411 1470 3 892845746 +58 318 3 884305087 +432 295 3 889416352 +94 175 4 885870613 +234 747 3 892334578 +59 218 5 888206409 +402 234 4 876266826 +417 588 3 879647540 +13 875 1 881515613 +299 522 3 877880522 +213 174 5 878955848 +421 156 5 892241458 +268 98 4 875309583 +263 269 4 891296842 +267 240 4 878970503 +194 94 3 879528000 +88 904 5 891037276 +406 1047 3 879540358 +366 443 5 888857866 +213 568 4 878955941 +345 535 3 884994136 +409 202 3 881109347 +311 168 4 884365406 +243 196 4 879988298 +4 50 5 892003526 +82 222 3 876311365 +424 261 3 880859115 +8 127 5 879362123 +327 588 4 887820761 +416 770 4 878880154 +87 238 3 879876734 +297 471 3 874954611 +405 350 1 885549903 +1 230 4 878542420 +392 98 5 891038979 +240 336 3 885775745 +269 254 1 891456565 +283 1487 2 879297867 +393 233 3 889730460 +433 302 5 880585028 +405 1046 2 885548633 +428 690 5 885943651 +363 402 2 891498365 +200 597 4 876042824 +391 195 2 877399618 +43 692 5 883955884 +330 133 5 876545625 +405 432 3 885548785 +327 735 2 887818540 +198 65 2 884208241 +130 111 5 874953825 +343 48 3 876405697 +371 174 4 877487751 +393 328 5 887742798 +373 97 3 877099178 +280 735 2 891700475 +102 385 3 888801577 +104 245 2 888442404 +338 582 5 879438419 +83 977 3 880307382 +15 591 2 879455821 +171 306 3 891034606 +276 135 5 874787441 +234 287 3 891228196 +243 317 5 879989217 +398 501 3 875658898 +145 983 1 879161805 +301 357 5 882075994 +8 188 5 879362356 +393 71 3 889554977 +58 123 4 884650140 +397 56 5 882839517 +18 609 4 880130713 +315 746 3 879821120 +344 208 5 884901290 +426 480 5 879444473 +435 240 3 884133818 +393 94 4 889731465 +79 251 5 891271545 +83 568 4 880307724 +153 323 2 881370900 +343 62 2 876406707 +321 515 5 879440109 +349 9 4 879465477 +398 276 4 875652760 +59 521 5 888204877 +72 87 4 880036638 +417 436 3 879648478 +13 377 1 882399219 +432 620 4 889416352 +399 550 3 882345120 +339 153 4 891033932 +303 1188 4 879485204 +405 775 1 885547735 +298 178 5 884127369 +359 24 3 886453354 +286 766 3 877533724 +250 321 5 878089099 +200 542 3 884130592 +189 194 5 893265428 +336 216 5 877757858 +325 493 4 891477905 +354 174 4 891218068 +262 588 4 879793075 +232 14 4 880062574 +145 631 4 885557626 +139 307 4 879537876 +94 550 1 891723033 +159 117 5 880486047 +274 1 4 878945466 +325 313 2 891477489 +436 238 3 887769693 +21 448 4 874951727 +262 140 2 879794635 +435 299 4 884130671 +194 504 2 879523785 +11 22 4 891904241 +417 742 2 879646531 +138 357 4 879024327 +95 178 5 879197652 +244 1054 3 880609089 +36 310 4 882157327 +340 423 4 884990583 +251 295 4 886272249 +249 300 4 879571489 +234 782 3 892335372 +326 172 4 879875431 +244 255 2 880604077 +343 382 3 876406978 +200 123 4 884127568 +154 89 5 879138910 +104 354 3 888442202 +425 318 2 878737841 +393 49 4 889729674 +95 181 4 879193353 +274 150 5 878944679 +347 1059 3 881652813 +271 310 3 885844430 +234 236 3 892079336 +347 298 5 881652590 +89 14 4 879441357 +195 1418 4 891762646 +406 482 5 879446588 +430 10 4 877225726 +336 1218 3 877757790 +359 270 4 886453467 +184 382 5 889909691 +291 619 3 874805927 +396 274 4 884646263 +10 132 5 877893020 +276 551 3 874792767 +222 662 3 878182813 +308 147 3 887739831 +373 206 4 877104284 +74 129 3 888333458 +64 199 4 889737654 +62 541 3 879376535 +217 827 2 889070232 +342 92 4 875320227 +87 576 3 879876163 +215 186 4 891435731 +322 489 3 887313892 +416 294 4 876696739 +401 294 1 891031621 +290 172 5 880474141 +234 1048 3 892335501 +115 181 4 881172049 +243 69 3 879988298 +363 155 2 891497712 +82 357 4 878769888 +189 174 5 893265160 +94 1153 4 891721777 +417 684 3 879647380 +426 603 5 879444472 +1 36 2 875073180 +183 485 5 892323452 +23 189 5 874785985 +320 849 4 884749360 +13 340 2 881514684 +422 325 2 875129692 +405 650 1 885546336 +184 250 4 889907482 +254 621 3 886474807 +264 230 4 886122644 +92 154 4 875657681 +255 444 3 883216599 +21 294 3 874951616 +347 1028 2 881653087 +168 281 2 884288033 +276 186 5 874792018 +344 1050 3 884901290 +406 675 4 879792897 +402 151 5 876266984 +387 116 3 886480206 +345 332 1 884901497 +334 631 4 891547467 +76 1156 3 879576233 +398 654 4 875726730 +157 293 5 874813703 +18 523 4 880130393 +280 780 4 891701897 +123 480 3 879872540 +387 418 3 886483669 +181 1165 1 878962496 +401 50 1 891034050 +11 455 3 891903862 +174 204 4 886452552 +193 1406 4 889123926 +393 1221 3 889554834 +137 257 5 881433048 +276 118 3 874786964 +361 739 4 879441075 +269 1438 3 891448522 +429 1119 3 882387653 +342 129 5 874984684 +378 321 3 880317293 +203 250 4 880434495 +250 89 4 878092144 +347 55 5 881653603 +399 173 3 882349928 +269 447 3 891451303 +405 1316 1 885549942 +370 659 4 879435033 +381 304 5 892697982 +333 276 4 891045031 +152 22 5 882828490 +402 479 5 876267206 +400 689 3 885676316 +116 903 2 890632956 +270 1210 5 876956264 +177 475 4 880130898 +13 185 3 881515011 +323 56 5 878739771 +393 737 2 889730261 +308 461 4 887737535 +128 98 4 879967047 +223 826 1 891550404 +432 742 4 889415983 +151 633 5 879528801 +221 1134 4 875244289 +189 638 5 893265380 +128 1039 4 879967079 +118 164 5 875385386 +284 340 4 885328991 +324 258 4 880575107 +18 135 3 880130065 +383 313 2 891192158 +398 191 4 875721348 +256 402 4 882165269 +221 685 3 875244766 +417 1036 3 879649484 +301 269 5 882075432 +207 433 3 878104569 +117 222 5 886020290 +184 57 5 889908539 +35 322 3 875459017 +158 216 3 880134948 +434 1060 3 886724733 +7 495 5 891351328 +216 1035 1 880245238 +85 509 4 879454189 +354 435 4 891218024 +393 672 3 889729614 +14 23 5 890881216 +181 1360 1 878962119 +325 435 3 891478239 +54 475 5 880937251 +299 546 3 877879980 +301 300 4 882075500 +118 32 5 875384979 +263 483 5 891298336 +338 100 4 879438196 +409 995 4 881105366 +435 380 3 884133026 +125 722 3 892838687 +294 245 3 877818982 +90 287 4 891384611 +345 550 3 884993784 +189 9 3 893263994 +18 241 3 880131525 +256 1086 5 882150943 +94 581 4 891722249 +398 64 4 875660439 +92 203 4 875653699 +100 348 3 891375630 +347 392 2 881654592 +409 270 2 881104916 +344 559 3 884901351 +369 114 5 889428642 +200 363 3 876042753 +417 1135 4 880951717 +389 404 5 880087200 +101 1093 1 877136360 +95 1219 1 888956489 +380 428 3 885480320 +10 420 4 877892438 +283 676 3 879297867 +63 924 3 875748164 +252 100 5 891456797 +330 763 5 876544337 +130 756 4 874953866 +34 332 5 888602742 +219 935 3 889387237 +437 165 4 881002324 +386 546 2 877655195 +7 520 5 892133466 +314 682 5 877885836 +436 161 4 887771897 +183 331 3 892322382 +1 23 4 875072895 +432 111 4 889416456 +162 943 4 877636604 +211 303 3 879437184 +301 276 1 882074384 +426 493 4 879444473 +2 299 4 888550774 +286 732 5 877531899 +298 203 3 884182966 +362 288 4 885019304 +372 448 4 876869445 +418 301 2 891282738 +254 612 3 886471959 +426 504 4 879442083 +393 403 3 889727503 +268 168 4 875310384 +344 183 5 884814507 +405 1275 1 885548632 +90 705 5 891384147 +92 226 3 875813412 +318 657 5 884495696 +64 509 3 889737478 +405 361 2 885549942 +92 328 3 888469687 +201 184 3 884112245 +188 66 3 875075118 +186 118 2 879023242 +428 340 4 885943749 +339 961 3 891034778 +334 268 4 891544102 +429 371 2 882387715 +405 551 1 885548475 +361 179 4 879440545 +62 328 3 879371909 +405 1113 1 885546680 +370 493 5 879434886 +342 287 3 874984619 +307 114 5 879283169 +303 167 3 879468307 +92 62 3 875660468 +334 313 4 891544077 +409 1021 4 881168603 +14 168 4 879119497 +416 475 2 876697074 +303 685 1 879485089 +125 496 5 879454419 +419 705 5 879435663 +13 217 1 882396955 +128 99 4 879967840 +258 243 3 885701024 +337 450 2 875185319 +267 780 4 878973250 +313 849 3 891028360 +194 210 3 879521396 +331 215 3 877196383 +59 699 4 888205370 +342 975 2 875318509 +52 235 2 882922806 +374 475 1 880393191 +324 300 5 880574827 +286 792 3 877532230 +30 231 2 875061066 +158 116 5 880132383 +367 326 4 876689502 +197 316 4 891409535 +94 135 4 885870231 +327 179 2 887820493 +374 576 3 880939186 +269 427 5 891447960 +237 603 5 879376773 +428 316 4 892572382 +222 1 4 877563227 +334 132 3 891546231 +198 631 3 884208624 +299 655 3 889502979 +361 762 2 879440774 +360 127 5 880354149 +256 834 3 882163956 +93 235 4 888705939 +405 1109 1 885548632 +313 441 3 891029964 +14 596 3 879119311 +234 1298 3 892079373 +1 224 5 875071484 +263 265 4 891299815 +199 687 1 883782655 +119 995 4 891287008 +421 124 4 892241344 +48 286 3 879434181 +52 93 4 882922357 +251 1028 3 886272585 +320 369 4 884749097 +280 715 2 891700945 +297 129 4 874954353 +229 302 5 891633028 +380 630 2 885478780 +385 500 4 879443352 +399 768 3 882350401 +52 275 4 882922328 +8 651 5 879362123 +387 1143 5 886480623 +56 258 4 892675999 +10 712 4 877892438 +125 926 3 892839066 +275 101 4 875154535 +416 427 5 893213019 +43 272 5 883953545 +221 173 4 875245406 +404 892 2 883790550 +84 194 5 883453617 +181 424 1 878962240 +299 710 4 877881508 +85 192 4 879454951 +417 979 3 879646437 +49 346 4 888065527 +417 1209 3 879649368 +206 891 2 888180049 +71 65 5 885016961 +103 96 4 880422009 +385 128 5 879442235 +374 234 4 880396256 +354 629 3 891217659 +438 476 5 879868664 +373 732 3 877104048 +437 1121 5 880140466 +305 7 4 886323937 +385 965 4 879445779 +70 762 3 884066399 +291 769 1 875087673 +188 161 3 875073048 +299 662 4 878192429 +194 259 2 879520306 +279 465 5 875310157 +271 549 4 885849231 +262 358 3 879961513 +13 651 5 882140070 +222 719 1 881060578 +222 658 3 881059678 +174 67 1 886515130 +180 173 5 877128388 +405 785 1 885547407 +416 178 5 893213918 +13 24 1 882397741 +280 234 3 891700803 +334 1006 3 891549860 +167 290 3 892737936 +28 223 5 882826496 +200 432 5 884128458 +267 393 3 878973483 +90 148 2 891385787 +141 410 4 884585195 +10 186 4 877886722 +189 16 3 893264335 +416 768 3 893210187 +139 222 3 879538199 +375 39 3 886622024 +345 291 3 884991476 +389 736 5 880088229 +299 173 5 889501163 +389 778 4 880088995 +72 550 4 880037334 +378 100 4 880044198 +178 495 4 882827870 +125 83 4 879454345 +255 323 2 883215723 +244 456 3 880605333 +437 708 4 881002026 +292 168 5 881105318 +416 327 4 876696853 +154 143 3 879139003 +312 114 5 891698793 +405 581 3 885546530 +119 455 4 874774719 +201 1220 2 884140975 +7 579 4 892133361 +215 449 4 891436469 +60 507 4 883326301 +343 147 4 876402814 +15 1 1 879455635 +162 1012 4 877635965 +185 279 4 883525255 +286 546 1 876521835 +370 22 4 879434832 +71 50 3 885016784 +95 239 3 879198262 +378 1439 3 880333144 +429 709 4 882385267 +197 210 5 891409838 +10 199 4 877892050 +177 689 3 882141885 +354 153 3 891218418 +393 189 4 887745717 +269 433 3 891449900 +429 491 3 882384950 +112 307 4 884992585 +59 50 5 888205087 +373 1006 2 877100129 +288 357 5 886373591 +119 268 5 886175117 +216 357 4 880233635 +423 272 5 891394503 +159 121 3 880486071 +90 602 5 891385466 +109 121 5 880571741 +399 1135 2 882349170 +243 632 5 879988487 +13 673 3 882140691 +94 652 4 891721167 +361 234 4 879441285 +363 229 3 891497393 +213 229 4 878955973 +293 739 2 888906804 +118 193 5 875384793 +111 242 4 891679901 +195 235 3 883191566 +292 265 4 881105587 +13 287 1 882141459 +224 723 2 888104313 +200 692 3 884128400 +14 477 4 879119311 +299 136 4 878192078 +279 73 4 875310041 +345 716 3 884993686 +207 580 3 879665232 +235 515 4 889655086 +405 30 1 885549544 +312 173 3 891699345 +415 243 1 879439386 +422 258 4 875129523 +318 865 2 884496099 +233 193 4 877663646 +378 979 3 880333851 +437 1404 2 881002263 +2 298 3 888551441 +120 252 3 889490633 +437 190 3 880140154 +301 239 2 882076682 +269 843 3 891451374 +318 285 4 884470944 +181 1028 2 878962997 +44 204 4 878348725 +390 713 4 879694259 +346 1222 4 875263877 +292 223 5 881105516 +196 692 5 881252017 +399 1179 2 882352324 +363 9 3 891494628 +197 880 3 891409387 +291 540 3 874835141 +44 470 3 878348499 +263 648 5 891297988 +427 680 5 879701326 +234 1263 3 892335142 +102 286 3 883277645 +10 710 4 877892160 +27 508 3 891542987 +174 762 5 886434136 +346 53 1 875263501 +224 581 1 888104219 +312 265 1 891698696 +60 64 4 883325994 +184 606 5 889913687 +405 759 1 885548162 +174 1041 5 886513788 +95 393 5 880571678 +370 608 4 879434860 +380 185 4 885479057 +344 222 4 884899372 +236 298 4 890116793 +431 286 4 877844062 +272 288 4 879454663 +407 174 5 875042675 +113 1252 4 875935610 +363 474 5 891494929 +140 325 3 879013719 +331 514 3 877196173 +351 990 5 879481461 +265 151 2 875320661 +409 22 2 881108077 +22 172 4 878887680 +179 331 2 892151331 +254 655 4 886472313 +184 1397 3 889910233 +360 963 5 880355448 +234 484 5 892078936 +11 175 3 891904551 +221 824 3 875244694 +56 90 2 892677147 +71 135 4 885016536 +102 629 3 888803488 +417 99 4 879647498 +201 260 4 884110967 +244 584 5 880606634 +174 13 3 891551777 +413 255 3 879969791 +255 860 2 883216748 +347 215 4 881654211 +360 191 4 880355958 +345 748 2 884901497 +437 419 5 880141961 +398 479 4 875717020 +295 642 4 879517943 +429 941 3 882387506 +82 1126 4 878770169 +94 202 2 885873423 +14 655 5 879119739 +239 175 5 889180616 +58 558 5 884305165 +42 566 5 881107821 +271 289 4 885844666 +367 448 4 876690098 +354 321 2 891216128 +293 298 4 888904795 +285 514 3 890595859 +200 135 4 884128400 +223 975 1 891550094 +126 327 3 887855087 +271 642 5 885849231 +345 13 4 884991220 +224 51 4 888104457 +207 161 4 875509507 +291 1505 4 874868647 +361 531 5 879440545 +213 274 5 878955188 +75 1047 3 884050979 +287 98 4 875334759 +378 9 5 880044419 +121 515 4 891388391 +109 7 4 880563080 +334 652 5 891546992 +347 56 5 881653736 +399 1401 3 882342219 +1 73 3 876892774 +304 742 3 884968078 +345 98 5 884916235 +434 815 4 886724972 +158 433 3 880135044 +321 462 4 879440294 +49 738 3 888069138 +151 153 3 879524326 +7 223 5 891351328 +387 71 2 886483620 +409 664 4 881108648 +347 125 5 881652568 +118 17 3 875385257 +442 401 2 883388960 +286 127 4 877530570 +200 1049 3 876042922 +399 679 3 882344596 +42 63 4 881108873 +172 514 3 875537964 +389 517 4 880087977 +269 161 1 891451036 +267 545 2 878974723 +330 418 5 876546298 +406 396 3 879792974 +437 14 5 880140369 +407 969 4 884201736 +104 325 1 888442552 +390 304 5 879693561 +314 873 4 877886099 +406 503 3 884631010 +398 648 5 875733496 +159 289 2 880485415 +312 516 3 891699626 +312 195 5 891698254 +271 605 4 885849164 +95 496 4 879198746 +325 517 4 891478219 +314 418 5 877888346 +10 558 4 877886722 +405 1058 1 885546635 +178 323 3 882823530 +148 78 1 877399018 +422 126 4 875129911 +130 1136 4 876252373 +370 631 4 879435369 +336 124 1 877760244 +193 100 5 889124127 +176 50 5 886047879 +405 1317 1 885549746 +301 201 4 882076619 +126 313 5 887854726 +11 713 5 891903024 +279 719 4 875308222 +429 633 3 882385829 +428 875 4 885944136 +311 941 4 884365929 +363 169 5 891494563 +185 15 3 883525255 +417 132 4 879647850 +243 194 4 879988913 +399 295 4 882341264 +181 620 2 878963204 +7 259 3 891350464 +281 322 4 881200789 +416 1517 2 886320054 +316 132 4 880853599 +63 116 5 875747319 +222 161 4 878182279 +293 430 3 888905716 +59 142 1 888206561 +96 23 5 884403123 +328 503 3 885047696 +393 50 5 887743611 +244 738 4 880607489 +181 146 1 878962955 +239 836 5 889180888 +404 294 4 883790430 +380 496 4 885479537 +312 1039 5 891698951 +135 258 4 879857575 +401 435 5 891033250 +324 877 1 880575163 +62 1012 3 879372633 +432 237 5 889415983 +130 619 4 876251409 +82 151 2 876311547 +62 164 5 879374946 +435 431 3 884131950 +343 124 4 876402738 +222 2 3 878183837 +354 162 3 891217659 +367 288 5 876689418 +363 679 4 891497277 +58 195 4 884305123 +427 300 4 879700908 +405 1519 2 885546577 +145 549 5 875272786 +210 152 5 887730676 +405 1045 3 885546112 +361 524 4 879440386 +234 634 4 892079910 +291 294 5 874834481 +234 483 5 892078424 +200 258 4 876041644 +423 310 3 891394558 +398 1119 4 875812011 +194 193 4 879524790 +409 165 4 881107410 +256 1231 3 882164603 +1 67 3 876893054 +276 204 5 874791667 +60 505 4 883326710 +156 318 4 888185947 +436 73 4 887769444 +393 1169 5 887746015 +194 71 4 879524291 +405 959 1 885547222 +339 163 4 891035324 +160 137 4 876767299 +222 1029 1 881060608 +385 325 4 882175397 +210 864 3 887730842 +436 411 4 887771022 +224 300 4 888081843 +230 385 1 880485235 +54 118 4 880937813 +91 748 2 891438314 +297 197 3 875239691 +409 8 3 881108777 +301 385 3 882077055 +230 484 5 880484800 +8 176 5 879362233 +301 204 5 882076264 +407 655 4 875044037 +56 735 2 892678913 +22 230 4 878888026 +286 66 4 877533586 +202 173 2 879726914 +123 962 3 879872405 +311 195 4 884364538 +378 121 4 880044763 +276 101 4 874977555 +279 472 3 876609690 +95 226 4 879196513 +178 478 5 882826514 +56 25 4 892911166 +357 866 5 878951864 +201 693 4 884113949 +297 293 3 874954844 +92 508 5 886443416 +130 271 5 879352077 +354 511 4 891217340 +188 181 3 875072148 +301 231 2 882078580 +405 1217 3 885548633 +401 520 3 891033442 +389 402 3 880613797 +227 121 2 879035934 +391 530 5 877399337 +173 678 3 877556988 +342 1166 1 875319745 +94 603 4 891721414 +276 223 5 874790773 +72 135 4 880037054 +244 77 4 880603512 +269 499 4 891449099 +94 421 4 891721414 +135 939 4 879857797 +5 428 5 875636588 +130 689 2 880396150 +267 647 5 878971629 +32 259 2 883709986 +38 28 4 892429399 +279 248 4 875249259 +329 250 3 891656639 +109 388 5 880583308 +330 473 4 876544632 +276 1035 3 874793035 +164 121 5 889402203 +359 455 4 886453305 +196 8 5 881251753 +221 4 3 875245462 +14 50 5 890881557 +197 362 4 891409199 +94 288 3 885869993 +18 794 3 880131878 +435 1034 2 884134754 +13 27 3 882397833 +318 157 5 884496398 +385 385 1 879443352 +13 912 2 892014861 +374 204 4 880395604 +94 52 5 891721026 +183 450 3 891463592 +405 449 1 885548093 +92 582 5 875641516 +435 462 5 884131328 +230 97 5 880484544 +158 172 4 880134398 +201 1065 3 884113490 +23 1 5 874784615 +294 823 3 877820190 +406 642 3 884631033 +38 22 5 892429347 +119 511 5 874781407 +198 203 3 884207733 +268 134 5 875310083 +271 742 3 886106209 +99 694 1 885680616 +436 174 3 887769335 +208 402 4 883108873 +394 1079 3 881059148 +311 723 4 884366187 +22 997 1 878887377 +440 690 4 891546698 +372 649 3 876869977 +336 410 3 877758001 +117 1012 4 881008815 +392 321 5 891037685 +325 542 2 891479962 +409 480 5 881107056 +66 281 4 883602044 +344 246 4 889814518 +437 655 4 881001945 +239 705 4 889178652 +334 173 4 891628228 +442 385 3 883390416 +31 124 4 881548110 +357 984 3 878950923 +215 182 3 891435266 +115 1073 5 881171488 +90 1200 4 891384066 +102 5 3 888803002 +178 762 3 882824592 +70 96 4 884066910 +391 47 4 877399301 +325 554 1 891479912 +128 505 4 879967136 +426 1116 4 879444251 +60 416 4 883327639 +188 240 1 875072799 +13 201 1 882396869 +218 154 4 877488546 +393 380 2 887746482 +416 546 3 876697807 +393 1179 4 889731437 +325 127 5 891478480 +389 502 4 881384464 +339 302 4 891034592 +314 94 4 877891386 +303 462 3 879468082 +393 25 2 887744294 +389 1451 5 880087544 +44 274 4 878348036 +378 1046 3 880332857 +299 433 5 889501365 +49 583 4 888068143 +327 455 2 887819316 +360 207 4 880355888 +353 300 3 891402310 +385 705 3 879441538 +411 405 4 891035152 +383 19 4 891192911 +119 100 5 874774575 +130 881 4 875801239 +59 625 3 888206295 +435 443 3 884132777 +144 815 1 888104659 +340 174 4 884989913 +102 530 3 888801577 +251 181 4 886271733 +340 504 1 884991742 +442 31 3 883391249 +181 258 3 878961709 +169 234 4 891359418 +37 176 4 880915942 +167 1305 1 892738418 +190 333 4 891033606 +199 259 1 883782583 +160 23 5 876859778 +244 42 5 880602058 +99 409 2 885679411 +399 2 3 882512708 +94 824 4 891722882 +342 813 5 874984480 +409 339 2 881105677 +158 472 3 880132659 +303 1199 3 879468123 +23 527 4 874785926 +200 771 4 884130721 +332 295 3 887916529 +144 785 4 888106016 +24 109 3 875322848 +268 546 4 875743110 +328 1139 1 885049756 +406 199 5 879445810 +249 1016 3 879571752 +188 185 4 875071710 +1 65 4 875072125 +213 778 5 878955680 +385 42 1 879443252 +234 1400 3 892334400 +200 88 4 884128760 +405 169 1 885549192 +442 182 4 883390284 +79 290 3 891271741 +405 527 5 885545200 +117 1095 3 881010938 +387 744 3 886480818 +285 237 4 890595636 +353 316 5 891402757 +268 472 1 875743335 +232 474 5 888550036 +13 385 3 882397502 +308 660 3 887740410 +72 117 4 880035588 +60 234 4 883326463 +130 243 2 874953526 +262 815 2 879791216 +144 190 5 888105714 +393 1053 3 889730011 +406 527 4 879445599 +210 197 5 887736393 +210 300 4 887730066 +213 591 4 878955295 +239 89 4 889179253 +197 530 3 891410082 +236 549 4 890116628 +381 660 2 892696426 +389 498 5 880086918 +426 608 4 879444081 +18 151 3 880131804 +329 245 3 891656640 +416 107 5 893212929 +334 306 4 891544103 +198 527 4 884208061 +423 323 3 891395047 +181 459 1 878962349 +13 852 1 882396869 +246 628 1 884922554 +435 693 3 884131118 +239 488 5 889179033 +342 928 3 875318509 +278 306 5 891295043 +256 550 5 882164525 +393 591 5 887744372 +381 1400 3 892697394 +333 873 3 891045496 +13 238 3 881515411 +445 597 1 891200320 +429 431 5 882384870 +429 97 4 882386171 +178 619 3 888514710 +12 50 4 879959044 +283 209 4 879298271 +373 514 4 877098751 +79 1008 4 891271982 +348 1028 4 886523560 +15 933 1 879456447 +425 183 3 878738486 +63 306 3 875746948 +248 235 3 884536150 +394 181 4 880886796 +26 240 3 891377468 +151 484 4 879524563 +7 555 4 892134811 +222 81 1 878183565 +22 1001 1 878886647 +347 385 4 881654101 +198 228 3 884207206 +343 499 5 876405129 +10 483 5 877889333 +112 286 4 884992484 +44 21 2 878346789 +130 122 3 876251090 +1 190 5 875072125 +58 216 3 884305338 +141 1 3 884584753 +344 1165 1 886381986 +328 511 4 885045678 +406 181 5 879445859 +317 245 4 891446575 +393 303 4 891364609 +294 902 4 891404417 +445 195 2 890987655 +60 56 4 883326919 +226 209 3 883889146 +334 870 3 891545513 +401 196 5 891033497 +379 451 4 880525968 +182 222 3 885613180 +207 997 1 875508693 +397 324 2 882838749 +6 189 3 883601365 +241 887 4 887249685 +216 150 5 880232812 +126 1175 5 887856958 +222 300 5 877562795 +268 926 2 875743012 +256 368 1 882163778 +436 132 1 887769824 +343 69 5 876405735 +293 280 2 888905198 +378 471 3 880057018 +244 866 5 880605131 +378 1232 3 880333121 +435 756 3 884134134 +426 633 4 879444816 +338 603 5 879438690 +427 302 4 879700759 +407 157 2 875046752 +214 20 4 892668197 +416 1503 4 888702629 +74 121 4 888333428 +308 520 4 887738508 +121 508 4 891388333 +14 492 4 890881485 +81 544 2 876546272 +25 114 5 885852218 +308 58 3 887736459 +343 237 4 876402738 +346 455 3 874948889 +178 71 4 882826577 +320 403 4 884749281 +379 504 5 880526141 +342 1073 1 875320199 +250 69 5 878092059 +225 245 2 879539315 +244 52 4 880606476 +5 259 1 878844208 +133 304 3 890588639 +374 257 3 880393223 +372 12 4 876869730 +436 454 4 887768982 +194 941 2 879552569 +385 526 3 879445098 +396 106 4 884646537 +394 121 4 880888452 +195 271 4 879488450 +48 181 5 879434954 +63 225 2 875747439 +429 1113 3 882386711 +429 944 3 882387474 +329 12 4 891656178 +422 1017 4 875130063 +125 384 3 892838591 +412 4 3 879717253 +326 479 5 879875432 +242 1357 5 879741196 +312 156 3 891698224 +276 576 3 874792547 +293 206 4 888907552 +244 685 2 880604642 +351 750 5 883356810 +330 1044 5 876547575 +418 304 4 891282738 +392 1142 5 891038184 +257 405 3 882050397 +89 212 3 879459909 +387 444 4 886481800 +22 153 5 878886423 +416 819 3 888700844 +361 197 5 879440739 +242 237 4 879740594 +76 98 5 875028391 +193 210 4 889125755 +137 266 5 881432735 +10 56 5 877886598 +406 79 3 882480481 +7 604 3 891351547 +429 635 3 882387202 +417 725 4 880952970 +64 175 5 889739415 +430 527 4 877226209 +184 67 3 889912569 +342 179 5 874984175 +95 1018 3 879198946 +386 7 3 877655028 +221 24 5 875244352 +268 101 2 875542174 +109 215 3 880578598 +15 459 5 879455562 +425 825 2 878738643 +387 189 5 886483619 +268 1002 1 875743216 +224 1045 2 888082766 +125 94 5 892839065 +393 396 1 889730514 +330 588 5 876546033 +432 50 5 889416012 +230 140 3 880484320 +399 763 2 882340900 +417 195 5 879647380 +280 629 4 891701852 +233 923 4 877664010 +115 952 5 881170998 +282 879 2 879949504 +279 1312 3 890780962 +263 661 5 891298728 +442 54 3 883391274 +276 1220 4 874791048 +119 310 5 886175117 +73 318 4 888625934 +2 19 3 888550871 +97 192 1 884238778 +447 1034 2 878854918 +445 410 1 891200164 +268 238 3 875310352 +270 282 3 876954093 +227 25 4 879035535 +69 147 3 882072920 +411 196 4 892845804 +64 403 4 889739953 +421 915 4 892241252 +102 502 3 888803738 +153 510 3 881371198 +188 164 4 875072674 +87 161 5 879875893 +243 16 3 879987630 +320 895 4 884748346 +363 37 2 891498510 +197 550 3 891409981 +406 435 5 880131642 +110 11 4 886987922 +396 930 3 884646467 +438 1028 2 879868529 +13 783 3 886304188 +314 1032 4 877891603 +373 196 5 877098487 +43 271 3 880317103 +158 435 5 880134407 +357 713 5 878951576 +334 70 3 891546299 +151 702 3 879524849 +422 273 5 875129791 +313 604 4 891014552 +5 457 1 879198898 +373 651 4 877105075 +311 642 4 884365823 +429 693 4 882386628 +85 622 3 882995833 +277 93 4 879543972 +363 761 3 891498183 +313 155 2 891031577 +294 343 4 889241511 +20 568 4 879669291 +378 286 5 880043650 +216 200 5 880244802 +207 875 2 875718889 +328 690 3 885044418 +10 603 5 877886783 +281 682 3 881200519 +90 180 4 891384065 +311 41 3 884366439 +393 659 4 887746378 +11 726 3 891905515 +385 171 3 879750777 +387 48 4 886483753 +429 318 5 882387731 +339 159 3 891034681 +274 118 4 878945711 +334 708 4 891628833 +409 479 5 881106947 +268 122 2 875743310 +326 386 5 879877284 +178 16 4 882823905 +306 25 3 876504354 +395 365 5 883766403 +348 476 4 886523735 +269 194 5 891448951 +405 1029 1 885547735 +18 152 3 880130515 +279 434 4 892864609 +269 143 3 891450385 +271 430 5 885849419 +213 841 4 878871010 +294 1161 3 877819673 +276 423 5 874790926 +151 51 4 879543055 +343 194 5 876405200 +56 1092 3 892911573 +90 483 5 891384570 +406 209 1 880131608 +158 530 4 880134332 +181 1375 1 878962586 +381 100 4 892697442 +346 241 4 874948929 +275 627 3 875154718 +144 165 4 888105993 +380 181 3 885478391 +387 136 3 886480288 +256 685 5 882151576 +393 123 4 887744328 +92 248 4 886442565 +256 775 5 882165269 +422 926 2 875130100 +326 671 3 879876327 +271 265 5 885849275 +378 50 4 880045145 +308 966 3 887740500 +437 1262 3 881002091 +328 569 4 885049199 +207 100 2 875503786 +301 2 2 882076587 +435 746 4 884132184 +222 568 5 878183481 +56 169 4 892683248 +320 685 4 884748839 +334 1404 4 891549068 +442 98 4 883389983 +21 816 1 874951898 +7 496 5 891351083 +218 4 3 877488546 +393 394 5 889728627 +207 205 4 875991160 +279 638 4 875312441 +254 443 3 886473547 +178 696 4 882824869 +399 568 2 882345842 +25 432 2 885852443 +374 552 4 880938255 +200 1139 3 884130484 +160 7 3 876767822 +233 499 3 877664010 +387 441 1 886481800 +64 539 1 889737126 +186 226 5 879023664 +189 234 5 893265401 +296 309 1 884196209 +64 62 2 889740654 +435 115 4 884131771 +405 1248 1 885548633 +391 204 3 877399658 +425 38 3 878738757 +189 176 4 893265214 +379 196 4 880525062 +421 194 4 892241554 +86 288 3 879570218 +106 196 5 881450578 +297 201 4 875238984 +194 427 4 879521088 +449 971 4 880410701 +435 652 4 884131741 +74 324 3 888333280 +377 219 3 891299078 +57 456 3 883698083 +26 150 3 891350750 +90 83 5 891383687 +393 67 3 889730088 +393 756 4 887745258 +26 127 5 891386368 +354 483 4 891217298 +405 371 1 885549309 +447 121 5 878855107 +385 218 2 879447361 +435 141 2 884132898 +393 241 4 889554930 +301 194 4 882075827 +359 313 5 886453450 +296 268 4 884196238 +299 86 4 889502050 +328 579 3 885049836 +366 573 5 888858078 +59 274 1 888203449 +313 471 4 891015196 +292 408 4 881104068 +94 55 4 885873653 +429 1039 5 882386071 +250 688 2 878089182 +70 206 3 884067026 +203 304 3 880433445 +270 1471 4 876956264 +405 593 1 885549790 +346 265 4 874950794 +334 566 3 891548866 +363 809 4 891497712 +166 748 2 886397751 +249 28 4 879572106 +181 13 2 878962465 +292 125 2 881104401 +133 294 3 890588852 +329 483 4 891656347 +296 134 5 884197264 +328 199 4 885045528 +263 237 2 891300103 +135 265 3 879857797 +391 497 3 877399133 +42 118 4 881105505 +299 1132 1 877880196 +435 1028 2 884133284 +102 96 3 888801316 +22 154 4 878886423 +279 1501 1 889231898 +176 236 4 886048145 +109 295 4 880564707 +11 40 3 891905279 +325 197 4 891478199 +320 405 4 884748774 +348 100 4 886523207 +234 403 1 892335674 +21 291 3 874951446 +62 3 3 879372325 +381 77 2 892696367 +313 1050 4 891016826 +449 381 4 880410777 +389 1052 2 881384711 +328 164 3 885047484 +201 62 1 884310149 +158 516 5 880135044 +160 230 2 876860808 +92 845 3 886442565 +303 541 3 879543988 +321 607 4 879440109 +234 654 5 892333573 +81 98 5 876534854 +320 22 5 884749452 +246 55 4 884921948 +207 153 5 877750617 +202 286 1 879726342 +104 346 3 888442172 +233 423 4 877665239 +407 117 3 875550223 +408 748 5 889680073 +397 261 1 875063722 +28 665 3 881961782 +395 121 3 883765731 +136 515 5 882694387 +201 174 3 884112201 +82 405 3 876311423 +144 297 4 888104150 +305 175 4 886322893 +405 1435 1 885547735 +89 517 5 879459859 +394 508 4 880886978 +450 470 5 887139517 +256 1210 5 882164999 +99 748 4 885678436 +405 795 2 885547605 +346 967 2 874948426 +20 144 2 879669401 +38 550 2 892432786 +383 9 5 891192801 +262 393 2 879794140 +343 405 4 876403776 +308 618 4 887737955 +210 88 4 887737603 +264 175 5 886123472 +64 70 5 889739158 +293 53 3 888907891 +123 132 3 879872672 +1 100 5 878543541 +216 364 2 881721863 +312 611 5 891698764 +300 100 3 875650267 +417 32 2 879647924 +215 434 5 891435394 +13 349 1 892387807 +327 425 3 887822681 +450 783 3 882399818 +16 482 5 877718872 +25 633 4 885852301 +40 750 3 889041523 +254 258 4 887347560 +130 627 5 875801496 +338 516 5 879438366 +429 427 5 882385569 +437 173 4 881001023 +327 96 2 887822530 +279 721 5 875312719 +421 200 3 892241687 +177 470 5 880130951 +271 471 3 885847926 +91 515 5 891439090 +194 479 3 879521167 +265 300 5 875320024 +191 272 4 891560631 +21 258 4 874950889 +47 268 4 879439040 +85 451 4 882995934 +292 127 5 881104268 +435 217 4 884133161 +406 443 4 879792897 +354 1241 4 891216875 +115 9 5 881171982 +405 673 5 885545235 +312 183 5 891699182 +379 686 4 880525502 +267 67 3 878973088 +59 203 4 888204260 +194 660 3 879527421 +447 218 4 878856052 +378 896 4 889665232 +151 707 4 879528537 +416 479 5 893213917 +143 325 5 888407741 +429 109 3 882385034 +445 823 1 891200624 +69 508 4 882072920 +429 197 4 882384772 +276 977 2 874787090 +293 328 2 888904285 +347 73 2 881654773 +342 950 2 875318423 +303 755 2 879485016 +43 173 5 875981190 +389 29 2 880088659 +144 221 3 888104087 +85 479 4 879454951 +92 22 3 875653121 +158 117 3 880132719 +181 1395 1 878961847 +320 771 3 884751316 +125 208 3 879454244 +380 135 3 885479436 +321 100 4 879438882 +347 410 5 881653059 +357 237 5 878951217 +313 659 4 891013773 +114 482 4 881259839 +387 133 2 886480483 +327 423 3 887822752 +230 485 5 880484370 +42 72 3 881108229 +301 871 4 882075148 +181 952 1 878962720 +144 597 4 888104191 +406 99 5 879793081 +437 755 3 880143450 +420 283 5 891357162 +85 286 4 879452259 +90 652 4 891384611 +267 54 3 878973922 +342 122 4 875318783 +263 614 3 891298792 +49 1070 3 888068739 +198 33 3 884209291 +385 181 1 879439923 +276 774 2 877934722 +385 286 3 879438600 +47 323 2 879440360 +305 405 3 886324580 +141 322 4 884584426 +450 1147 4 882374497 +246 790 3 884923405 +50 325 1 877052400 +172 483 3 875538028 +412 135 4 879717621 +158 502 4 880135069 +72 230 1 880037277 +21 979 2 874951416 +341 288 4 890757686 +160 544 4 876768106 +157 147 5 886890342 +401 342 1 891031723 +181 879 2 878961542 +390 331 2 879693723 +373 494 4 877099178 +398 234 4 875659265 +145 477 2 888398069 +343 121 2 876407072 +64 214 3 889737478 +299 70 3 877881320 +234 208 4 892318002 +435 234 4 884132619 +405 1167 1 885547268 +336 153 5 877757669 +382 1142 3 875945451 +142 358 2 888640178 +363 218 2 891497174 +235 211 5 889655162 +405 396 1 885547408 +363 81 4 891496616 +60 606 4 883327201 +43 471 3 883955319 +437 86 4 881001715 +297 1014 3 874954845 +399 772 4 882343358 +311 576 3 884366269 +330 286 5 876543768 +305 201 3 886323998 +57 932 3 883697585 +208 208 4 883108360 +42 479 4 881108147 +320 276 2 884748579 +234 428 4 892334079 +214 187 4 891544070 +416 399 4 878879497 +85 237 3 879452769 +313 526 4 891028197 +387 561 3 886481800 +201 1008 3 884140891 +189 1117 5 893264678 +50 508 5 877052438 +303 1303 3 879543831 +59 564 2 888206605 +42 216 5 881108147 +423 258 5 891394747 +202 604 5 879727058 +42 1049 3 881105882 +178 196 4 882827834 +437 665 2 880143695 +437 239 4 880141529 +342 143 5 875318936 +245 50 4 888513664 +234 963 3 892078983 +407 200 4 875045685 +56 554 4 892679356 +6 506 4 883602174 +196 428 4 881251702 +263 163 5 891299697 +354 134 4 891217298 +95 591 5 880573287 +311 322 4 884364047 +326 98 5 879875112 +292 705 4 881105374 +318 138 4 884498115 +429 1136 4 882386532 +140 880 4 879013832 +134 751 5 891732335 +311 71 4 884364845 +342 13 3 874984480 +231 476 3 879966018 +326 969 4 879875151 +376 98 5 879454598 +346 405 3 886274098 +78 298 3 879633702 +311 420 1 884366334 +221 476 2 875244673 +356 892 1 891406241 +385 180 4 879442706 +26 294 3 891348192 +373 658 4 877105781 +417 226 3 879648096 +293 804 1 888907816 +417 636 3 879648435 +13 333 3 881514810 +435 386 4 884133584 +130 143 5 876251922 +374 405 4 880392992 +132 154 4 891278996 +332 95 5 888360060 +1 226 3 878543176 +70 191 3 884149340 +151 163 4 879542723 +345 325 1 884901497 +348 1120 3 886523387 +181 288 4 878961173 +276 409 3 874792310 +325 180 4 891478910 +239 954 5 889179253 +200 56 4 884128858 +325 525 5 891478579 +234 427 4 892078386 +151 356 2 879528852 +435 1217 3 884133819 +29 874 4 882821020 +393 1215 3 889731729 +416 1407 2 886320112 +94 17 2 891721494 +432 411 3 889416044 +405 1421 1 885546835 +56 728 3 892911420 +90 421 4 891383718 +95 229 3 879196408 +250 56 4 878090004 +42 95 5 881107220 +398 162 5 875811851 +193 56 1 889125572 +38 133 2 892429873 +331 11 2 877196702 +293 226 1 888906906 +29 302 4 882820663 +95 79 4 879196231 +194 568 2 879522819 +293 1042 3 888907575 +102 636 3 888801577 +405 1178 1 885547690 +174 768 1 886515569 +58 1103 5 884305150 +222 218 5 878182370 +426 614 4 879444604 +327 411 3 887818957 +186 300 5 879022858 +339 182 5 891033310 +21 148 1 874951482 +271 221 3 885847927 +445 628 1 891200137 +332 265 4 888360370 +72 51 4 880036946 +363 96 5 891494835 +6 269 4 883268222 +262 365 4 879793939 +22 194 5 878886607 +359 1 4 886453214 +446 332 3 879787149 +327 634 5 887820493 +59 209 5 888204965 +269 716 4 891451111 +58 311 4 890770101 +5 410 1 879198183 +213 238 5 878955635 +345 311 5 884900609 +303 765 3 879485608 +6 87 4 883602174 +405 1557 1 885547222 +103 69 3 880420585 +263 195 5 891299949 +118 421 4 875384946 +279 1247 2 875659924 +201 71 3 884111270 +174 216 5 886439516 +327 219 4 887746219 +145 195 5 882181728 +356 333 5 891405978 +31 79 2 881548082 +217 391 4 889070287 +234 1126 4 892079722 +314 1178 2 877892244 +85 418 3 879455197 +308 191 4 887736797 +130 385 5 875802080 +256 237 4 882150644 +417 563 2 879649560 +126 751 4 887853568 +301 631 1 882078882 +425 323 2 878737684 +81 756 1 876534097 +445 919 1 891200233 +151 1113 4 879542891 +342 1300 1 875318556 +399 389 3 882345078 +375 300 4 886621795 +181 284 2 878962996 +201 559 2 884112627 +128 284 3 879968663 +379 530 5 880525502 +435 252 2 884134677 +405 579 1 885547557 +437 197 5 880141962 +417 47 3 879648004 +276 8 4 874791623 +450 100 4 882374059 +114 100 5 881259927 +308 484 3 887736998 +45 1060 3 881012184 +193 147 2 890860290 +235 652 4 889655403 +293 710 3 888907145 +388 117 5 886436756 +10 127 5 877886661 +260 313 5 890618198 +198 154 4 884208098 +5 369 1 875635372 +449 291 2 879959246 +183 54 2 891467546 +268 55 4 875309998 +262 200 3 879794918 +293 1017 3 888904862 +95 1090 1 888956869 +161 187 3 891170998 +405 386 3 885547605 +18 432 4 880131559 +232 493 4 888549622 +246 3 2 884923390 +342 1009 1 874984596 +181 984 1 878961781 +1 243 1 875241390 +429 967 4 882386378 +106 684 4 881452763 +161 508 2 891171657 +374 150 4 882156767 +280 476 5 891702544 +102 930 2 888802677 +181 1333 1 878962120 +256 473 5 882151088 +224 962 2 888082584 +157 1258 5 886891132 +47 306 4 879439113 +144 531 5 888105473 +22 195 4 878887810 +222 127 5 881059039 +396 328 4 884645813 +59 101 5 888206605 +327 265 2 887818511 +156 11 2 888185906 +65 7 1 879217290 +320 161 4 884749360 +13 874 5 881514876 +59 33 3 888205265 +194 482 3 879521088 +263 528 4 891298854 +114 640 2 881260303 +130 717 3 874953928 +144 707 3 888106322 +119 40 4 886176993 +342 762 2 874984914 +436 133 3 887768982 +290 210 5 880474716 +417 29 2 880952218 +234 1078 2 892336322 +217 121 1 889069944 +439 125 3 882893688 +404 313 5 883790181 +94 541 3 891723525 +62 514 3 879374813 +44 412 1 883613298 +178 214 1 882827985 +62 216 4 879375414 +13 821 3 882141393 +223 300 3 891548712 +417 544 3 879646661 +181 873 1 878961542 +270 176 4 876955976 +425 475 5 878737945 +221 3 4 875244901 +59 427 5 888204309 +109 162 2 880578358 +82 8 4 878769292 +224 162 4 888103611 +150 410 4 878747090 +178 258 4 882823353 +109 546 3 880571979 +291 384 4 875086562 +291 24 5 874834481 +222 373 3 881060659 +10 133 5 877891904 +269 998 5 891451548 +108 14 5 879879720 +378 449 3 880333195 +405 510 1 885545975 +90 904 3 891382121 +89 268 5 879461219 +159 310 5 880989865 +450 58 3 882373464 +429 744 4 882386485 +315 31 3 879821300 +100 313 5 891374706 +393 55 4 889727862 +197 313 4 891409160 +314 795 4 877889834 +387 202 3 886482695 +85 420 4 880838337 +13 682 1 883670742 +290 588 4 880474652 +244 1209 3 880608315 +18 923 5 880132501 +130 44 4 875801662 +405 467 4 885545200 +330 22 5 876545532 +450 142 5 887835352 +315 194 4 879820961 +6 318 4 883600985 +178 597 4 882824869 +407 493 3 875552496 +325 286 4 891477597 +41 209 4 890687642 +181 308 1 878961847 +214 346 3 891542735 +342 134 4 875318936 +339 258 3 891033200 +405 765 1 885547735 +431 748 4 877844377 +379 2 3 880525540 +430 656 4 877226365 +63 126 3 875747556 +271 70 5 885849164 +406 40 3 880131875 +329 288 2 891655191 +425 172 5 878738385 +276 697 2 874791316 +295 1039 4 879517742 +57 321 4 883696629 +350 286 5 882345337 +413 628 4 879969791 +95 43 2 880572356 +24 9 5 875323745 +395 892 3 883762681 +150 278 2 878746889 +428 332 4 885943749 +393 27 4 889555050 +450 801 4 882469863 +115 431 4 881171558 +326 530 5 879875778 +270 237 1 876954484 +391 286 4 877398517 +442 554 2 883390641 +326 1231 3 879877039 +161 191 2 891171734 +19 258 4 885411840 +64 385 4 879365558 +15 411 2 879456351 +326 527 5 879874989 +249 168 4 879572370 +13 449 4 882398385 +445 204 3 890988205 +445 1591 4 891199360 +165 91 4 879525756 +367 452 4 876690120 +342 772 1 875319597 +328 639 2 885048730 +115 50 5 881172049 +299 276 4 877877691 +450 216 5 882373657 +326 197 1 879875723 +158 186 3 880134913 +354 651 3 891217693 +271 882 3 885844547 +327 13 2 887746665 +450 785 3 882395537 +401 100 4 891032170 +158 239 3 880135093 +426 211 4 879444320 +450 162 5 882395913 +405 1562 1 885549506 +293 649 4 888906726 +268 194 4 875310352 +334 476 3 891545540 +239 663 5 889180617 +418 269 5 891282765 +226 258 5 883888671 +384 343 3 891273716 +447 70 3 878856483 +405 768 3 885548932 +103 234 3 880420353 +389 136 4 880087671 +395 255 3 883765731 +450 144 5 882373865 +193 307 4 889123316 +313 586 2 891028426 +216 168 4 880234680 +303 248 2 879544680 +268 40 3 875743708 +308 154 4 887738152 +269 741 5 891457067 +181 337 1 878961709 +406 410 4 879540026 +145 301 4 877342952 +392 166 5 891038466 +416 975 2 878879391 +56 7 5 892679439 +365 742 3 891304039 +34 329 5 888602808 +311 1035 4 884365954 +21 396 2 874951798 +18 514 5 880129990 +389 756 2 880088942 +82 294 4 878768327 +363 741 3 891495338 +293 426 1 888907291 +122 382 3 879270711 +407 222 4 884197027 +145 258 4 875269755 +206 690 2 888179694 +151 461 4 879524738 +87 1184 3 879876074 +450 462 4 882396928 +60 417 4 883327175 +425 83 2 891986445 +87 702 3 879876917 +82 289 1 884713642 +117 25 4 881009470 +342 508 3 874984810 +144 750 4 888103444 +276 562 3 889174870 +382 137 2 875946029 +349 1117 3 879466366 +62 462 2 879373737 +363 792 4 891495918 +43 285 4 875975468 +299 954 3 889503503 +431 538 4 881127620 +339 1244 4 891036423 +367 219 4 876690098 +268 198 4 875309232 +183 257 2 891464558 +425 250 4 878739054 +198 218 3 884209412 +299 52 4 877880962 +243 83 4 879988184 +192 277 3 881367932 +64 230 5 889739994 +278 294 4 891295230 +291 729 4 874871442 +387 294 2 886484413 +445 408 3 891199749 +13 828 1 882399218 +379 199 4 880524860 +425 313 1 890346317 +163 347 4 891219976 +297 326 2 874953892 +186 299 3 879720962 +425 56 5 878737945 +363 215 3 891496306 +6 276 2 883599134 +85 216 3 879454500 +15 744 4 879455789 +429 1296 2 882387392 +407 238 5 875042378 +385 29 1 879447845 +354 197 4 891217512 +249 83 5 879640977 +405 1175 1 885549904 +280 431 4 891701531 +409 965 2 881108777 +402 235 3 876267014 +373 82 1 877099317 +204 304 3 892389328 +363 461 3 891495711 +184 9 5 889907685 +13 787 3 882141582 +174 56 5 886452583 +119 741 4 874774815 +18 487 4 880129454 +432 274 3 889416229 +207 628 3 876018608 +307 195 3 879205470 +280 153 5 891700681 +294 825 3 877820272 +114 210 3 881309511 +59 582 4 888205300 +416 405 5 893213645 +303 158 3 879543959 +167 568 3 892738341 +449 137 5 879958866 +245 240 1 888513860 +286 824 1 876522200 +286 421 1 889651848 +155 292 3 879371061 +450 384 3 882471524 +416 842 4 886317350 +86 289 3 879570366 +13 450 3 882398494 +135 943 3 879857931 +301 222 4 882074345 +234 588 3 892335541 +102 79 2 888801316 +416 568 4 878879861 +280 977 3 891701723 +294 358 2 877818861 +59 764 4 888203709 +201 413 3 884114505 +374 1 4 880392992 +43 409 3 884029493 +450 739 4 887660650 +10 98 4 877889261 +200 125 5 876041895 +152 483 5 882474435 +11 94 3 891905324 +318 708 4 884497994 +18 234 3 880131106 +267 168 4 878971716 +158 410 3 880132794 +297 435 3 875238726 +13 839 1 882396984 +105 752 3 889214406 +330 174 5 876546172 +280 274 5 891701188 +185 515 4 883525255 +64 154 4 889737943 +267 172 5 878974783 +395 924 4 883765156 +263 168 5 891299949 +256 476 4 882152914 +311 1479 3 884365824 +60 77 4 883327040 +345 71 3 884992922 +128 282 3 879967550 +286 275 4 875807074 +344 472 3 884899837 +184 515 5 889907599 +7 480 4 891352093 +151 432 5 879524610 +42 230 5 881109148 +429 423 4 882387757 +123 482 4 879872406 +422 276 5 875129791 +305 246 3 886322122 +451 289 1 879012510 +21 741 3 874951382 +109 58 4 880572950 +92 28 3 875653050 +6 534 4 883599354 +1 154 5 878543541 +352 568 5 884290328 +138 318 5 879024183 +393 38 4 889731010 +7 307 5 891350703 +214 246 2 891542968 +230 228 2 880485216 +450 1269 4 882812635 +262 111 4 879962292 +1 214 4 875072520 +43 628 3 875975580 +204 1281 2 892513979 +5 435 4 875636033 +11 730 3 891904335 +194 692 2 879524215 +437 640 1 881002300 +184 143 3 889908903 +409 187 3 881108126 +385 922 4 881569749 +223 1197 3 891549570 +181 261 1 878961814 +322 272 4 887313698 +419 173 5 879435628 +224 196 4 888103532 +44 229 3 883613334 +291 244 2 874805927 +95 328 5 888953921 +378 241 4 880057137 +70 511 5 884067855 +271 516 4 885849447 +221 258 1 875247297 +299 543 5 889501890 +417 207 4 879647580 +379 1206 2 880961672 +351 754 5 883356614 +42 410 3 881110483 +312 4 3 891698832 +303 358 2 879466291 +244 301 2 880601905 +311 751 3 884363758 +252 7 4 891455743 +242 306 5 879741340 +442 14 1 883389776 +214 269 3 891542735 +343 961 4 876404688 +83 471 3 891182000 +295 435 5 879519556 +219 568 1 889452455 +95 241 3 879196408 +325 47 3 891478712 +435 4 4 884132146 +22 411 1 878887277 +46 909 5 883614766 +323 1050 5 878739988 +59 204 5 888205615 +406 1010 4 879539929 +224 727 4 888082682 +106 699 4 881451421 +200 755 5 884129729 +376 274 3 879459115 +380 1 4 885478218 +74 124 3 888333542 +74 333 4 888333238 +452 25 2 875559910 +313 946 3 891030228 +339 192 5 891032438 +382 9 4 875946830 +234 284 3 892335460 +222 591 4 878181869 +387 210 4 886482928 +313 550 4 891028323 +229 312 3 891632551 +113 678 2 875076044 +305 423 4 886322670 +442 39 3 883390466 +90 143 5 891383204 +234 194 5 892333653 +256 724 4 882165103 +94 768 3 891722609 +144 1285 3 888105922 +236 195 2 890118507 +3 264 2 889237297 +417 11 5 879646938 +93 477 5 888705053 +411 168 5 892845604 +405 1180 1 885547605 +425 429 4 878737908 +375 218 3 886622024 +429 133 3 882385663 +405 511 2 885546112 +214 509 4 892668197 +207 265 3 877846793 +389 1074 2 880613841 +271 117 3 886106003 +215 357 4 891435573 +18 705 3 880130640 +344 896 4 884814359 +433 173 4 880585730 +450 179 5 882394364 +27 295 3 891543164 +437 584 3 880141243 +327 589 3 887743936 +314 327 4 877886099 +119 977 3 874780969 +231 924 5 888605273 +450 38 4 882474001 +429 321 3 882384438 +95 191 5 879198161 +258 748 5 885701004 +279 1007 4 879572694 +338 212 4 879438597 +406 188 4 882480772 +177 294 4 880130481 +235 1119 3 889655550 +114 96 3 881259955 +181 268 1 878961749 +399 1220 2 882343389 +222 833 2 877563913 +269 216 1 891449691 +301 252 3 882075148 +370 257 5 879434468 +417 541 2 879649389 +442 229 3 883391275 +116 137 2 876454308 +42 413 1 881106072 +311 785 3 884366010 +46 538 3 883611513 +361 156 4 879441252 +59 513 4 888205144 +276 569 4 874791169 +148 713 3 877021535 +28 70 4 881961311 +325 234 3 891478796 +62 229 3 879375977 +178 241 5 882827375 +409 684 4 881109420 +280 73 3 891700715 +38 424 3 892432624 +339 603 5 891032542 +319 880 4 889816332 +359 405 3 886453354 +406 50 5 879445897 +405 1004 1 885546577 +23 710 4 874785889 +184 423 4 889909409 +114 186 3 881260352 +62 270 2 879371909 +416 92 3 878880244 +416 833 3 888700719 +90 318 5 891383350 +437 418 3 880141084 +406 826 3 879540275 +379 448 4 880741811 +340 71 5 884990891 +417 98 5 879647040 +174 272 5 886432770 +62 228 3 879374607 +447 69 4 878856209 +13 596 3 882398691 +85 163 3 882813312 +158 184 3 880134407 +59 183 5 888204802 +317 268 3 891446371 +399 42 2 882510250 +207 986 3 877878384 +279 1011 3 875298314 +442 452 3 883390169 +115 178 5 881172246 +236 443 4 890116709 +90 202 3 891385298 +347 827 1 881653266 +305 98 4 886322560 +449 286 4 879958444 +141 300 5 887424721 +97 32 5 884239791 +407 1028 3 876348832 +90 879 3 891382542 +102 444 1 888803245 +174 1139 2 886514651 +198 183 5 884207654 +126 260 1 887855173 +230 926 3 880485489 +141 106 5 884585195 +416 941 3 876699946 +342 23 5 874984154 +207 154 2 878088217 +194 192 5 879521253 +371 98 5 877487213 +303 820 3 879544184 +423 1134 4 891395684 +389 159 2 880088330 +332 127 5 887916653 +38 88 5 892430695 +297 137 5 874954425 +409 491 2 881109019 +328 470 4 885046537 +122 46 5 879270567 +201 39 1 884112427 +387 52 5 886483497 +60 529 4 883326862 +10 1 4 877888877 +254 211 3 886472089 +381 30 4 892697174 +217 1228 2 889070050 +322 591 3 887313984 +221 461 4 875245574 +367 258 4 876689364 +429 710 4 882387731 +28 436 5 881961601 +388 310 5 886438540 +110 748 3 886987478 +331 947 5 877196308 +87 118 4 879876162 +435 675 3 884132873 +297 687 2 875409099 +85 215 4 879829438 +207 1147 4 879665042 +280 135 4 891700552 +330 66 5 876547533 +93 815 4 888705761 +429 273 4 882385489 +108 137 5 879879941 +416 41 3 886319177 +280 132 4 891701090 +7 176 3 891350782 +301 199 4 882076239 +361 934 3 879440974 +119 845 4 886176922 +393 747 4 889727969 +392 1160 2 891038137 +407 478 4 875042642 +308 74 4 887740184 +375 77 4 886622024 +452 523 2 887889774 +58 408 5 884304377 +394 217 5 880888972 +13 604 5 882139966 +379 239 4 880961874 +318 229 1 884497318 +62 168 5 879373711 +410 286 4 888627138 +291 181 5 874805804 +330 419 5 876546298 +254 132 4 886472022 +387 2 4 886483195 +429 1425 3 882387633 +413 260 1 879969148 +425 759 2 878738290 +234 927 4 892334267 +234 673 4 892334189 +333 315 5 891044095 +82 199 4 878769888 +416 51 5 893212895 +13 589 3 881515239 +244 145 3 880608842 +345 846 4 884991348 +379 83 4 880525002 +454 493 2 888267617 +5 214 3 875637485 +325 526 3 891478239 +194 1093 3 879540807 +366 7 2 888857598 +13 481 3 882140038 +409 381 2 881108364 +290 449 1 880473557 +161 276 5 891170881 +338 132 2 879438143 +291 92 4 874835091 +416 506 5 893214041 +305 856 5 886323839 +416 284 4 893142144 +270 740 5 876954062 +453 1032 1 877561911 +130 268 4 875801210 +451 269 2 879012647 +167 204 4 892738384 +389 275 5 879915860 +311 44 3 884365168 +168 619 3 884287536 +253 89 4 891628451 +16 357 5 877720297 +264 654 5 886122508 +10 652 3 877889130 +454 1063 4 881960029 +414 100 5 884999439 +225 22 5 879540678 +389 71 4 880088091 +158 148 4 880132613 +95 286 5 879193353 +435 628 5 884132990 +7 418 4 892131824 +125 283 5 879454986 +100 292 2 891375146 +85 984 2 884906441 +413 301 3 879968794 +246 232 3 884923073 +347 475 4 881652417 +409 937 2 881104966 +323 243 1 878738997 +6 524 3 883600632 +414 264 3 884998993 +207 866 3 876079054 +207 978 3 877878883 +13 477 4 882398934 +453 421 4 888203015 +429 144 4 882387773 +429 499 4 882384896 +134 15 5 891732726 +239 207 5 889180578 +118 134 5 875384916 +216 9 4 880232637 +385 794 2 879448181 +128 763 4 879968718 +208 367 2 883108324 +295 115 5 879517135 +276 578 4 888873675 +249 249 4 879571752 +299 59 5 877880394 +59 732 3 888205370 +151 189 5 879528495 +378 405 3 880044489 +398 1450 5 875717717 +97 661 5 884238817 +323 875 3 878739029 +450 659 5 882374217 +380 474 4 885478558 +189 127 4 893263994 +117 257 5 880125911 +198 381 3 884208273 +435 273 5 884131298 +409 654 3 881107697 +128 614 3 879967879 +14 716 5 879119651 +95 716 3 879198109 +409 154 5 881108648 +450 252 3 887834953 +338 170 5 879438301 +201 655 4 884112800 +382 481 5 875947078 +174 138 1 891551778 +85 317 3 882995577 +82 481 5 878769262 +295 290 4 879518630 +407 161 2 876338279 +222 159 3 878181457 +194 780 2 879527865 +271 423 4 885848802 +3 349 3 889237269 +417 425 4 879648132 +75 742 1 884050590 +94 696 4 891724381 +320 1 3 884748604 +14 283 4 882839936 +450 1160 5 886612330 +314 1165 2 877892566 +268 800 1 875744501 +229 340 4 891632142 +197 259 1 891409422 +268 38 1 875744228 +42 77 5 881108684 +130 41 3 875801662 +412 173 5 879717649 +222 281 3 878184596 +248 405 4 884536165 +264 179 5 886122031 +435 760 1 884133330 +307 214 5 879283091 +118 217 3 875385257 +355 307 4 879486422 +445 123 1 891200137 +394 559 4 880888746 +83 35 1 886534501 +406 942 4 882480890 +373 1079 4 877100061 +429 455 3 882386628 +200 420 5 884129837 +405 530 1 885547953 +20 98 3 879669547 +24 358 3 875246012 +301 737 2 882078906 +366 56 5 888857750 +198 559 3 884208739 +16 629 4 877720437 +268 233 3 875310412 +432 546 3 889416657 +407 68 4 875045269 +41 181 4 890687175 +269 396 4 891451856 +246 930 2 884924764 +429 162 4 882386378 +405 652 1 885547360 +1 161 4 875072303 +56 164 4 892910604 +392 129 4 891038945 +181 472 1 878963380 +7 541 2 891354662 +214 324 5 892668173 +154 708 4 879139003 +327 313 4 887744167 +293 1226 3 888905198 +45 108 4 881014620 +178 458 3 882824467 +303 452 2 879544276 +119 717 3 874775945 +361 513 5 879441215 +298 596 3 884126288 +70 69 4 884065733 +151 420 5 879524760 +292 135 4 881105701 +416 71 4 876699994 +451 323 4 879012510 +393 725 2 889731501 +450 566 4 882373928 +197 665 4 891410124 +181 985 1 878962465 +378 921 4 880056667 +185 447 4 883526268 +130 230 3 876251895 +374 1042 5 880937920 +347 959 5 881654545 +237 185 4 879376773 +82 240 1 884714385 +387 69 3 886480413 +22 168 5 878886517 +145 933 1 875270276 +104 713 3 888465491 +267 294 3 878970155 +222 261 1 878181251 +262 923 4 879962542 +43 215 5 883955467 +275 451 3 880315170 +303 152 4 879468274 +144 160 2 888106181 +391 238 5 877399659 +452 1109 2 875273609 +330 77 4 876547220 +197 323 3 891409422 +409 181 4 881109019 +442 559 2 883390048 +210 179 3 887736429 +453 125 3 877561349 +184 517 4 889909409 +381 135 5 892697150 +447 823 3 878855165 +454 182 3 888266685 +16 195 5 877720298 +447 544 4 878854997 +233 56 5 877661776 +345 312 3 884900709 +405 1550 3 885547691 +301 831 4 882075338 +451 882 1 879012812 +5 364 1 875636571 +325 100 4 891478504 +345 972 4 884993464 +454 418 3 888267128 +328 474 4 885046455 +234 472 2 891228099 +450 496 5 882373532 +407 82 3 876341409 +374 230 5 880396622 +158 204 4 880135001 +286 949 4 877534859 +243 778 4 879988663 +305 527 5 886323189 +38 234 5 892431607 +393 100 1 887744053 +82 1164 2 878768790 +13 516 5 882141485 +325 507 3 891478455 +387 83 4 886480244 +286 423 4 877532385 +276 803 2 874791487 +312 968 5 891698987 +417 1039 3 879647196 +145 1002 1 888398400 +87 201 2 879876673 +332 120 4 887938818 +161 135 2 891170656 +450 679 1 882374422 +341 887 5 890757745 +56 77 3 892679333 +343 921 4 876406640 +365 948 1 891303809 +325 99 5 891479244 +168 742 5 884287362 +64 232 2 889740154 +185 275 4 883524320 +293 653 5 888906119 +216 652 4 880235546 +293 637 3 888907186 +269 176 2 891448980 +1 62 3 878542282 +275 946 3 875154535 +393 840 4 887744658 +337 1016 4 875184825 +253 79 5 891628518 +198 174 5 884208326 +450 387 5 882376446 +234 848 3 892334577 +174 347 4 886432844 +96 1154 5 884403993 +279 616 3 890451408 +156 48 4 888185777 +437 1113 4 881002161 +394 552 3 881060176 +295 395 4 879519501 +327 226 3 887820341 +318 517 3 884496069 +393 148 4 887744419 +332 53 3 888360438 +393 41 4 889728736 +44 147 4 878341343 +405 522 1 885545975 +154 527 4 879139040 +312 179 5 891698793 +26 13 3 891373086 +85 511 4 879454112 +234 1459 3 892335261 +436 658 5 887769673 +125 568 5 879454277 +429 219 4 882386848 +389 4 4 879991352 +453 98 4 877554396 +271 272 3 885844583 +234 751 2 891033394 +238 258 3 883575728 +371 79 5 880435519 +303 759 1 879544385 +263 188 5 891299031 +416 117 5 893212930 +354 52 5 891217547 +22 204 5 878886607 +198 1094 1 884206807 +452 152 2 875264826 +344 251 5 889814518 +435 160 5 884133194 +455 135 5 879111248 +195 55 4 888737417 +233 515 5 875508080 +174 597 3 886434261 +450 908 1 885945114 +65 429 4 879216605 +198 501 4 884209264 +417 628 3 879646413 +360 269 4 880353525 +261 1237 3 890454045 +416 1092 3 886320054 +347 25 2 881652684 +196 1118 4 881252128 +39 300 3 891400280 +405 1424 1 885546725 +438 15 4 879868242 +444 50 5 890247287 +49 100 4 888067307 +277 274 4 879543902 +125 88 5 879455184 +344 486 4 884901156 +334 628 4 891544867 +90 45 3 891385039 +280 655 3 891700400 +89 952 2 879441400 +346 186 3 874948303 +195 132 5 875771441 +399 274 3 882512167 +160 218 4 876861878 +193 260 1 889123777 +344 255 4 889814555 +17 744 3 885272606 +311 265 5 884364812 +160 603 4 876861754 +175 132 3 877107712 +413 7 3 879969614 +43 56 5 875975687 +396 986 4 884646537 +120 148 3 889490499 +379 4 5 880525598 +190 895 3 891033327 +99 978 3 885679382 +429 467 4 882385210 +193 352 1 889123777 +269 498 4 891448926 +435 188 4 884131901 +174 122 1 886434421 +13 109 4 882141306 +13 431 1 882397271 +116 730 4 876453519 +445 12 2 890987617 +314 781 3 877891937 +318 697 5 884496008 +58 13 3 884304503 +354 136 5 891217717 +158 235 1 880132794 +87 628 4 879877709 +294 749 3 877818915 +26 742 3 891352492 +378 12 5 880046132 +334 135 4 891545793 +279 40 4 875306910 +366 184 4 888857866 +406 1267 3 882480710 +255 441 2 883216544 +450 265 5 882371526 +232 919 3 888550036 +246 176 4 884921613 +361 435 5 879440345 +412 634 5 879716918 +449 1009 4 879959190 +450 1226 4 887660820 +64 311 2 889737269 +216 928 3 880233026 +265 591 5 875320424 +30 7 4 875140648 +429 410 4 882387451 +64 4 3 889739138 +403 258 4 879785703 +445 763 2 891200233 +269 597 1 891450978 +417 614 3 879648156 +301 179 3 882076494 +234 651 4 892078485 +104 331 3 888442140 +406 732 4 880131666 +206 309 2 888179647 +167 235 3 892737972 +70 625 3 884151316 +4 354 5 892002353 +330 161 4 876545999 +95 443 3 879198747 +181 841 1 878963204 +417 127 4 879646144 +454 633 2 881959745 +389 699 5 880088038 +158 154 4 880135069 +405 217 1 885548385 +157 268 5 886889729 +102 363 2 888801622 +327 1131 4 887822736 +379 23 4 880524783 +276 876 3 885537717 +200 140 4 884129962 +454 181 3 881959187 +308 226 3 887740833 +79 1017 3 891271697 +99 406 3 885679353 +292 190 5 881105625 +160 1 4 876768025 +296 652 4 884197068 +89 815 4 879441637 +299 175 5 879123190 +92 1012 4 886443231 +361 654 4 879441253 +303 1187 4 879467895 +416 959 5 893213404 +227 1017 4 879035464 +64 52 3 889739625 +435 554 3 884133194 +296 89 5 884197352 +303 229 3 879468581 +228 272 5 889388440 +319 333 4 875707746 +94 161 3 891721439 +321 14 3 879438825 +448 1294 1 891887161 +452 495 4 875560508 +267 80 4 878973597 +92 802 2 875907134 +337 121 5 875185664 +102 720 2 888801812 +279 273 2 880869018 +450 183 4 882394180 +310 222 3 879436062 +154 479 4 879138831 +83 405 5 887665423 +43 732 4 883955498 +268 97 4 875310031 +92 410 3 875640583 +43 77 3 883955650 +407 476 2 884203501 +234 1456 4 892335142 +164 237 2 889401816 +330 527 3 876546071 +373 709 5 877105451 +271 644 3 885848916 +130 295 3 874953698 +193 928 2 889126609 +160 50 4 876767572 +439 14 5 882893245 +307 186 5 879283625 +432 1047 5 889416118 +416 332 4 876696823 +145 739 2 875272927 +429 1224 2 882387114 +75 411 5 884050760 +405 88 3 885547360 +445 1245 1 891200390 +363 91 4 891495238 +436 433 5 887770428 +393 831 1 887745454 +173 879 5 877557076 +382 639 3 875946881 +336 1098 3 877757790 +416 64 5 893212929 +26 1008 3 891377609 +380 483 4 885478668 +436 1206 3 887769868 +303 809 2 879543524 +246 743 1 884924780 +73 518 5 888625835 +389 1518 2 880165787 +48 71 3 879434850 +334 319 3 891544233 +406 164 5 882480748 +267 228 5 878972434 +18 527 4 880130109 +314 739 5 877889861 +385 942 2 879446208 +246 265 4 884921411 +130 1273 2 880396792 +330 95 5 876546105 +5 209 5 875636571 +297 70 5 875239619 +87 120 2 879877173 +178 895 3 884836516 +332 684 5 888360370 +321 730 3 879439179 +437 451 5 880143115 +320 62 4 884749306 +447 148 4 878854729 +401 70 4 891033625 +251 288 4 886271541 +110 1188 4 886988818 +314 409 4 877889480 +94 1147 4 886008354 +436 503 4 887769802 +347 241 3 881654386 +452 134 3 875265446 +396 1 4 884646346 +130 202 5 875216507 +423 269 3 891394558 +276 581 4 886483710 +222 222 4 877563462 +280 288 5 891700184 +244 566 4 880607489 +295 371 4 879518257 +423 15 4 891395573 +168 259 2 884287073 +205 328 3 888284454 +183 294 3 891467280 +167 949 1 892738341 +452 736 3 887890174 +193 327 1 889123777 +349 288 3 879466118 +391 748 3 877398619 +398 58 4 875717106 +140 872 3 879013651 +440 886 5 891550404 +374 369 1 880393864 +320 38 4 884751288 +244 40 2 880608016 +308 686 4 887739831 +224 686 4 888104030 +397 327 2 875063649 +271 312 2 885847280 +11 51 4 891906439 +344 535 3 889814539 +109 1023 2 880572350 +199 989 1 883782509 +43 950 3 883956417 +181 147 1 878963168 +258 690 4 885700811 +450 1037 2 882473760 +60 478 3 883326463 +85 1131 4 879454111 +62 763 1 879372851 +362 294 3 885019357 +326 525 5 879874989 +176 270 4 886047069 +81 222 2 876533619 +95 560 1 880572166 +21 327 3 874950932 +416 174 5 893213917 +397 183 4 885349348 +129 288 1 883245452 +354 211 2 891306946 +409 203 5 881107539 +119 282 5 874775136 +224 1441 3 888104522 +301 743 2 882075356 +350 604 5 882346086 +325 133 3 891478333 +121 275 4 891390233 +396 977 3 884646468 +211 228 3 879460096 +52 742 4 882922540 +313 66 1 891015049 +448 360 4 891887338 +269 568 2 891450719 +326 603 4 879875203 +13 878 1 883670785 +286 91 4 877532470 +254 561 3 886475446 +392 8 5 891039049 +92 412 2 875640609 +392 511 5 891038945 +417 545 1 880953033 +401 65 4 891033250 +385 403 3 879447181 +214 185 5 892668173 +416 301 5 893213796 +87 4 5 879876524 +311 604 3 884364570 +210 127 5 887731230 +303 1210 1 879543773 +387 458 1 886481183 +354 740 4 891216692 +90 33 4 891383600 +144 942 4 888106044 +422 379 2 879744218 +26 926 2 891385692 +425 281 2 878738486 +130 68 5 875216283 +71 154 3 877319610 +407 746 4 875046268 +423 348 3 891394910 +374 717 3 880938255 +119 1261 4 874781198 +345 476 3 884991505 +43 879 4 876159838 +239 736 5 889179291 +145 431 5 875272132 +276 124 5 880913800 +68 125 1 876974096 +109 214 1 880577604 +347 127 5 881652434 +387 39 3 886483049 +125 1060 4 879454699 +393 54 4 889555050 +377 164 4 891299009 +265 934 3 875320574 +222 70 3 878181804 +258 289 2 885701004 +115 77 2 881171623 +405 318 5 885545167 +299 56 4 877880350 +405 670 1 885548384 +221 403 4 875245374 +211 69 3 879460213 +313 403 3 891028285 +398 65 3 875743739 +385 523 4 879441454 +299 170 5 889501190 +232 270 3 880062259 +130 721 3 880396278 +92 455 2 876769302 +326 48 3 879875533 +437 696 3 880142991 +395 64 5 883763958 +224 11 3 888082468 +200 393 4 884129410 +56 372 3 892911290 +354 584 5 891217782 +453 248 4 887942143 +27 325 2 891543191 +287 340 5 888177097 +115 269 3 881169559 +379 157 4 880961600 +334 449 3 891549539 +363 554 1 891498012 +106 956 3 881453290 +194 180 3 879521657 +72 38 3 880037307 +194 951 3 879525761 +181 278 2 878963440 +49 413 1 888067460 +357 977 5 878952287 +408 258 3 889679857 +92 209 5 875652934 +348 1061 5 886523790 +442 41 4 883388609 +194 64 5 879521936 +61 347 5 892302120 +48 228 3 879434792 +399 475 5 882340827 +58 89 3 884305220 +43 155 4 883956518 +455 629 3 879111371 +374 310 5 880392237 +115 22 3 881171273 +18 961 3 880131830 +409 87 3 881108777 +389 142 3 880088878 +11 191 4 891904270 +26 1009 2 891384478 +387 203 4 886483330 +236 69 5 890116426 +130 564 4 875802137 +244 739 3 880604004 +416 266 3 876696853 +193 194 4 889125006 +119 1160 5 887038711 +290 742 2 880475310 +307 82 4 875645340 +189 820 1 893264782 +391 127 5 877399236 +318 792 2 884496218 +342 815 4 875318629 +373 100 3 877100199 +326 86 2 879875644 +312 204 4 891698254 +314 88 5 877888007 +308 284 4 887741554 +269 1154 3 891449608 +374 168 1 880434231 +167 719 1 892738341 +81 147 4 876533389 +94 92 4 891721142 +82 513 4 878769334 +422 200 5 879744015 +303 268 5 879466166 +322 514 4 887314352 +213 100 5 878870749 +148 588 4 877399018 +270 181 4 876954036 +230 70 4 880484637 +85 95 4 879455114 +253 333 2 891628883 +251 252 3 886272456 +16 496 5 877721905 +373 559 3 877106305 +442 578 2 883390466 +5 391 4 875636167 +301 176 4 882075774 +344 295 3 889814571 +49 268 3 888065620 +255 234 5 883216448 +151 729 4 879542492 +23 50 4 874784440 +160 1073 4 876859778 +273 305 4 891292905 +7 653 4 891351161 +374 544 1 880937070 +58 120 2 892242765 +405 28 4 885544947 +271 485 4 885848827 +301 443 4 882078008 +394 228 5 881132876 +313 516 4 891028829 +262 1048 2 879791335 +326 615 4 879875724 +338 435 4 879438597 +160 1016 4 876767440 +299 607 4 877881229 +256 1090 2 882164999 +145 620 3 875271660 +391 507 4 877399512 +60 199 5 883326339 +328 7 4 885046079 +51 485 1 883498790 +62 14 4 879372851 +301 552 3 882078267 +91 97 5 891438947 +392 298 1 891038205 +184 742 3 889908026 +380 114 3 885478539 +222 120 2 881061304 +405 437 1 885548435 +389 151 4 879916135 +222 763 3 881061165 +14 285 5 879119118 +363 154 4 891496306 +298 99 3 884127249 +93 125 1 888705416 +380 465 4 885478845 +287 208 4 875334896 +301 120 2 882079423 +141 290 1 884584817 +335 288 4 891566952 +374 233 3 880937876 +222 403 3 878183481 +435 173 5 884131085 +274 471 4 878945505 +433 50 5 880585885 +297 118 3 875239495 +450 194 5 882373786 +377 1105 3 891296275 +293 924 2 888904814 +436 742 5 887769050 +22 871 3 878886750 +222 808 3 881060130 +37 948 4 880915407 +62 162 4 879375843 +389 1286 5 880087873 +448 262 4 891888042 +457 182 4 882396659 +235 79 4 889655468 +447 234 4 878855782 +454 161 4 888267198 +456 175 3 881372946 +6 100 5 883599176 +342 160 3 874984365 +397 117 3 885349610 +181 690 3 878961511 +334 408 4 891547912 +339 1 5 891032349 +425 259 1 890346825 +206 313 5 888179565 +379 82 4 880525540 +450 902 4 889569016 +417 762 3 879646712 +405 192 5 885545401 +96 96 4 884403531 +387 55 3 886479649 +62 921 2 879375287 +145 796 3 875272833 +258 272 5 885700811 +324 9 5 880575449 +339 196 4 891033416 +358 59 4 891269617 +125 50 5 892836362 +417 1047 4 879646388 +426 429 5 879444081 +287 748 4 875333873 +405 1586 1 885549464 +303 185 5 879467465 +25 275 4 885853335 +24 117 4 875246216 +60 1123 4 883327997 +416 734 3 886319434 +192 258 5 881366456 +406 647 5 879792811 +286 214 1 889651605 +283 194 4 879298295 +12 318 5 879960826 +414 294 2 884999128 +154 135 5 879139003 +91 357 5 891439271 +440 1038 5 891550404 +343 100 5 876402668 +267 727 4 878972289 +328 623 3 885048801 +433 325 2 880585554 +428 343 2 885944093 +60 443 4 883327847 +354 498 4 891217610 +343 188 4 876407749 +320 156 5 884750574 +410 748 2 888626857 +303 825 3 879485016 +64 125 2 889739678 +263 22 5 891298107 +174 476 4 886434136 +453 246 5 877552590 +125 801 3 892838424 +301 22 4 882075859 +416 246 4 876697205 +88 886 5 891038103 +451 294 5 879012470 +435 185 4 884131741 +287 250 3 875334060 +393 313 4 887742040 +184 164 3 889911434 +405 1318 1 885549789 +276 549 3 874791194 +420 302 4 891356790 +444 751 4 890247172 +417 23 3 879647118 +234 218 2 892335541 +394 117 5 880887462 +426 486 3 879444604 +34 286 5 888602513 +366 854 5 888857750 +114 179 5 881260611 +233 249 5 883356871 +354 479 4 891217249 +378 110 3 880333027 +92 925 3 875640214 +401 13 2 891033204 +148 993 4 877400154 +73 173 5 888625292 +55 257 3 878176084 +217 176 4 889069842 +94 810 3 891723076 +207 191 4 877124663 +123 143 5 879872406 +442 129 4 883391146 +99 472 3 885679210 +429 127 4 882384603 +76 327 3 875027271 +201 100 4 884111485 +436 226 4 887770640 +287 298 4 875333965 +157 508 5 886890712 +343 52 5 876404793 +437 652 4 881001983 +393 36 3 889731618 +206 340 3 888180082 +98 173 1 880498935 +425 210 3 890346998 +130 433 3 875216718 +450 1263 4 882396799 +85 250 3 882592687 +366 219 5 888857932 +379 270 3 888646058 +380 449 3 885480902 +397 657 5 885349759 +361 173 5 879440774 +347 721 5 881654715 +305 237 2 886322796 +181 986 2 878963038 +447 100 5 878854552 +398 152 4 875721702 +160 969 1 876861185 +214 340 3 891542735 +327 344 4 887744167 +293 747 2 888905819 +394 97 4 880888223 +449 282 3 879958953 +42 866 4 881105972 +264 671 4 886122261 +439 13 3 882893171 +222 215 4 878183481 +248 114 5 884534901 +82 1162 1 884714361 +388 326 5 886438122 +62 55 5 879373692 +390 328 4 879693677 +307 145 4 879283672 +55 273 5 878176047 +224 15 4 888103611 +15 815 1 879456108 +89 213 4 879459859 +250 96 2 878090254 +130 890 4 880396249 +374 651 4 880395320 +254 1133 3 886475682 +318 142 4 884496219 +186 596 4 879024459 +96 79 4 884403500 +311 451 3 884366397 +450 64 4 882373656 +452 435 3 885476560 +99 273 5 886780105 +308 492 3 887737535 +90 514 3 891384423 +65 216 4 879217912 +393 805 2 889555410 +450 1036 2 882468686 +367 379 4 876690048 +385 257 3 879440236 +150 458 4 878746720 +254 679 2 886472434 +330 73 5 876546782 +380 631 4 885478668 +274 164 5 878946644 +409 325 4 881105077 +238 298 5 883576398 +268 1065 4 875310824 +97 357 5 884239493 +221 76 4 875246662 +313 218 2 891029847 +10 144 4 877892110 +450 942 5 882812558 +109 380 5 880578093 +268 527 4 875309430 +354 131 3 891217811 +312 520 5 891698254 +145 238 4 882181859 +253 98 5 891628295 +354 692 2 891307114 +458 1101 4 886397931 +270 258 3 876953744 +429 1028 3 882386601 +381 133 5 892697413 +12 282 5 879960679 +13 678 3 882140792 +392 872 4 891037790 +52 475 4 882922357 +198 660 4 884208624 +262 736 3 879794829 +342 1163 3 875318266 +442 572 3 883391344 +314 111 4 877886641 +279 831 5 875744257 +288 318 4 886374316 +256 121 5 882151123 +401 473 1 891034050 +303 948 2 879466249 +280 1181 2 891700496 +99 338 4 885678539 +194 95 3 879521719 +347 98 5 881654359 +96 198 5 884403465 +405 941 1 885546577 +164 1025 4 889401510 +92 727 4 875653242 +381 485 4 892696347 +41 286 4 890685449 +303 286 5 879465986 +293 22 3 888905819 +311 318 5 884364569 +58 194 3 884304747 +338 480 5 879438114 +117 298 5 886020525 +407 163 3 876338691 +16 812 2 877723882 +92 725 3 875907727 +274 181 5 878945365 +129 327 3 883244060 +416 230 4 886316797 +308 675 4 887740367 +450 467 4 882374332 +447 68 5 878855819 +390 289 3 879693677 +239 340 5 889178513 +220 268 4 881197771 +339 411 2 891035420 +409 168 5 881107410 +276 154 4 874791747 +267 222 4 878970681 +13 210 3 882140455 +451 300 4 879012550 +430 129 5 877225547 +437 1153 5 880141962 +256 748 4 882150192 +303 507 5 879466604 +401 162 5 891033395 +437 118 2 880142991 +416 54 5 893212929 +295 191 5 879517033 +125 1249 3 892838322 +181 329 1 878961781 +219 215 5 889403843 +313 226 4 891028241 +383 483 5 891192986 +406 238 2 879445475 +222 248 4 877563506 +182 123 4 885612994 +184 254 2 889907569 +295 94 4 879518339 +256 831 4 882152943 +325 345 3 891477660 +160 864 1 876770673 +128 54 2 879968415 +437 499 5 880141962 +327 419 4 887822832 +116 993 2 876453376 +267 480 4 878971438 +378 665 2 880333261 +13 524 4 886302261 +48 425 3 879434850 +405 565 2 885548474 +307 462 4 879284095 +258 332 5 885701024 +181 763 1 878962955 +5 379 3 875720814 +416 287 4 878879237 +130 684 5 875802236 +184 942 3 889909768 +46 294 2 883611307 +378 328 3 892382903 +378 433 4 880045652 +407 418 4 876338910 +43 237 4 875975579 +246 1232 1 884923425 +398 393 5 875732738 +450 1212 4 882396799 +355 872 4 879486529 +397 322 1 875063613 +399 273 3 882340657 +343 729 3 876407291 +458 144 4 886396390 +456 715 3 881373697 +108 471 2 879880076 +405 228 1 885547910 +94 23 5 885870284 +296 269 5 884196258 +151 546 2 879543400 +102 1239 2 888802319 +314 246 5 877886375 +295 142 4 879518590 +345 235 3 884991285 +70 193 4 884149646 +63 1137 5 875747556 +325 483 5 891478079 +44 245 4 878340887 +268 554 3 875744388 +144 195 5 888105081 +308 692 3 887738469 +363 825 4 891497881 +334 840 4 891545674 +423 898 4 891394952 +436 845 5 887771269 +28 800 4 881961904 +82 519 4 878770028 +21 452 4 874951727 +451 872 2 879012857 +406 591 3 879446062 +406 713 4 879539855 +13 11 1 882397146 +346 176 4 874947747 +151 1109 4 879542414 +406 490 3 879446228 +311 480 4 884364593 +76 89 4 875027507 +97 202 5 884239449 +1 188 3 875073128 +70 186 4 884065703 +412 480 4 879717147 +312 713 5 891698334 +399 1459 3 882345473 +92 2 3 875653699 +321 20 3 879440160 +296 435 5 884197108 +363 1074 2 891497679 +268 1079 3 875742916 +328 203 5 885045931 +43 71 4 883955675 +290 205 3 880473777 +417 769 1 880953071 +267 1471 2 878974509 +345 1047 4 884991457 +57 298 3 883697293 +393 21 3 887744765 +457 704 4 882397240 +305 183 4 886324028 +37 265 4 880930072 +210 210 5 887730532 +455 293 4 879109110 +49 179 5 888066446 +85 208 5 879828941 +193 722 3 889126402 +221 109 2 875244369 +59 566 4 888206485 +7 553 3 892134010 +435 696 3 884132342 +184 497 4 889909409 +215 179 4 891435107 +154 414 4 879138910 +426 430 3 879445005 +364 269 4 875931309 +250 117 3 878089628 +457 636 4 882548466 +393 70 3 889555251 +243 1281 5 879989217 +345 272 5 884900426 +429 26 3 882386333 +222 111 3 877563820 +44 176 5 883613372 +224 403 4 888104522 +344 301 4 889813946 +450 97 4 882396351 +401 661 3 891033158 +301 719 4 882079542 +442 38 3 883390674 +394 979 5 881060177 +13 842 2 882399156 +42 276 1 881105405 +454 487 4 888266565 +422 477 4 875130027 +450 762 3 882469627 +379 52 4 880741002 +454 484 3 881960445 +379 177 4 886835699 +18 921 5 880132437 +347 151 3 881652480 +312 609 3 891698634 +407 949 3 875045685 +148 204 3 877016912 +327 9 5 887819860 +220 319 4 881197771 +317 323 2 891446819 +405 541 1 885548162 +35 332 4 875459237 +49 219 1 888067405 +101 1047 2 877136424 +159 412 3 880557824 +381 175 5 892696268 +303 1047 2 879485277 +385 87 3 879441942 +56 402 5 892677186 +334 1137 4 891544764 +267 450 2 878974128 +228 690 5 889387173 +198 280 3 884206401 +286 1504 4 877534903 +58 32 5 884304812 +345 582 5 884992807 +208 186 4 883108518 +6 480 4 883601089 +424 9 5 880859623 +246 101 2 884922740 +401 225 1 891032474 +299 278 3 877879980 +226 250 4 883890491 +1 102 2 889751736 +347 223 4 881653669 +426 182 2 879442702 +144 655 5 888105116 +370 604 4 879434804 +396 322 4 884645790 +457 443 4 882396989 +59 511 5 888204965 +82 265 4 878770169 +198 455 3 884206191 +128 402 1 879969136 +399 400 3 882349170 +405 514 1 885547221 +372 286 5 876868994 +450 143 5 882394364 +330 70 4 876546470 +336 158 3 877756618 +299 393 2 889503503 +183 270 3 891462811 +447 879 3 878854056 +407 62 3 876348318 +7 515 3 891350757 +83 391 2 880308783 +1 69 3 875072262 +322 182 5 887314417 +320 50 4 884749227 +385 189 5 881530739 +444 906 4 891979402 +351 286 5 879481386 +360 423 4 880355623 +343 546 1 876403348 +21 931 2 874951446 +130 554 4 876252288 +261 304 3 890454941 +89 150 5 879441452 +94 8 5 885873653 +450 583 4 882473914 +348 924 4 886523361 +367 200 4 876689962 +381 49 2 892696328 +405 623 1 885549004 +401 501 2 891033184 +218 100 4 877488692 +378 172 4 880045886 +234 288 3 891033738 +402 48 5 876267173 +332 54 4 888360396 +345 126 5 884991105 +158 124 4 880134261 +429 464 3 882386171 +393 1043 3 889728324 +442 636 5 883390416 +387 268 3 886479430 +379 152 5 880740518 +416 254 2 878879391 +125 479 4 879454386 +82 174 5 878769478 +379 603 5 880526074 +286 472 3 876522340 +294 406 2 877819941 +450 480 4 882372178 +119 982 4 874775406 +405 216 2 885547124 +64 157 4 879365491 +313 414 3 891016425 +359 246 3 886453214 +363 403 3 891496414 +62 47 4 879375537 +310 181 4 879436104 +92 367 3 875654533 +276 628 4 874786538 +406 511 5 879792811 +90 155 5 891385040 +270 253 5 876954733 +181 925 2 878963418 +177 59 4 880130825 +121 181 5 891390014 +215 354 4 891434619 +294 1132 4 889242788 +426 526 4 879444734 +176 303 3 886047118 +405 87 1 885546112 +393 223 4 887746119 +407 182 4 887833034 +328 222 3 885046655 +462 682 5 886365231 +269 100 5 891446246 +450 846 3 882471524 +327 1100 4 888251464 +383 197 5 891192888 +339 265 3 891034779 +391 300 2 877398619 +90 547 3 891385899 +213 318 5 878955533 +320 184 5 884749360 +354 605 3 891218271 +152 157 5 882476486 +442 29 3 883390641 +378 636 3 880055186 +110 790 4 886989399 +407 147 4 887833034 +327 195 4 887744277 +363 101 1 891496953 +130 331 3 875801345 +457 775 3 882551021 +286 393 4 877534481 +416 607 5 893212622 +29 294 4 882820730 +188 864 2 875072148 +387 1199 5 886480970 +271 38 2 885849648 +382 717 3 875946347 +30 1013 3 875060334 +334 512 4 891547148 +222 270 2 878181181 +387 24 5 886484522 +459 934 3 879563639 +92 955 4 875658312 +276 262 4 892436298 +96 176 4 884403758 +7 491 5 891351432 +276 652 4 889174849 +14 18 3 879119260 +254 136 4 886471695 +452 191 5 876299004 +210 420 4 887737487 +407 265 3 876344062 +228 98 3 889388607 +82 202 4 878769777 +450 561 4 887660762 +235 494 4 889655112 +267 216 4 878972586 +453 697 4 877561235 +409 133 4 881108455 +102 102 3 883748488 +259 317 5 874809057 +435 576 3 884133447 +63 1009 4 875747731 +305 1104 4 886323779 +377 313 5 891295989 +299 1214 2 889502528 +7 118 2 891353411 +423 300 3 891394874 +271 31 4 885849325 +173 268 4 877556626 +279 1108 1 892174273 +398 176 4 875725256 +63 255 4 875747556 +38 526 1 892430636 +59 227 3 888206015 +317 351 3 891446819 +92 73 3 875656474 +392 632 5 891039015 +425 1314 3 878738813 +388 690 5 886438540 +39 347 4 891400704 +367 567 4 876690077 +417 200 4 879647708 +436 1522 2 887771123 +409 604 4 881108364 +457 192 5 882395018 +7 537 3 891352749 +92 476 2 886443602 +43 302 4 887731794 +417 131 4 879647254 +94 431 4 891721716 +374 210 4 880395202 +247 28 5 893097024 +301 1012 4 882074613 +299 475 4 877877600 +73 271 2 888792294 +10 698 4 877888877 +427 319 3 879700486 +449 1194 4 880410624 +392 847 4 891039015 +393 323 2 887742916 +194 235 2 879541343 +434 406 3 886725027 +221 33 4 875246632 +16 7 5 877724066 +416 936 5 893214127 +454 87 4 881960296 +243 137 3 879987084 +277 285 4 879543486 +363 1052 3 891500134 +384 347 4 891273509 +295 648 4 879517324 +207 181 3 877878828 +268 302 5 876513584 +116 914 2 892683732 +381 459 4 892696738 +450 487 4 887660504 +244 628 4 880604346 +436 157 5 887768982 +184 995 3 889907044 +416 22 5 893212623 +326 234 3 879875797 +455 755 3 879112189 +457 708 4 882398002 +303 483 5 879466795 +100 1238 2 891375068 +397 479 4 885349865 +268 582 5 875309344 +303 940 2 879485659 +130 218 5 875801388 +7 53 5 891354689 +11 12 2 891904194 +297 222 4 874954845 +59 707 3 888205336 +458 648 4 886395899 +102 350 3 892990700 +324 307 5 880574766 +275 226 3 880314914 +85 179 4 879454272 +56 64 5 892678482 +194 70 3 879522324 +350 193 4 882347653 +119 322 4 874774449 +223 332 4 891548802 +456 943 4 881372946 +454 1299 2 888266991 +234 589 3 892078567 +429 229 2 882385613 +378 1107 3 880056351 +460 10 3 882912371 +215 227 5 891436469 +129 245 2 883245452 +425 322 3 890346597 +32 257 4 883717537 +83 1165 2 883868300 +145 122 1 888398307 +60 842 4 883327175 +397 705 5 885350045 +23 357 3 874785233 +116 299 3 876452133 +455 282 3 879109664 +207 79 4 875509888 +318 69 5 884496572 +297 47 2 875240090 +13 258 4 882139327 +15 300 4 879455166 +438 50 5 879868005 +377 56 4 891298407 +412 193 4 879717549 +336 1230 2 877757516 +401 485 4 891033092 +336 926 1 877758935 +102 577 3 892993895 +117 1014 3 886021192 +291 284 4 874833687 +10 474 4 877886783 +110 550 3 886988664 +270 77 2 876956038 +389 705 5 879991196 +90 1020 5 891384997 +87 90 2 879877127 +13 379 1 882396984 +290 515 3 880473918 +286 167 5 877533419 +91 526 4 891439471 +384 748 4 891274028 +313 542 3 891017585 +425 273 4 878738435 +393 202 3 887746015 +75 118 3 884050760 +43 51 1 883956562 +208 70 3 883108430 +120 125 4 889490447 +295 496 5 879517682 +332 174 5 888359866 +186 95 3 879024535 +200 739 4 884130046 +370 153 2 879434832 +380 300 3 885481179 +20 87 5 879669746 +394 423 5 881057839 +452 641 3 875266415 +137 597 5 881432987 +241 302 3 887249576 +178 39 2 882827645 +204 874 3 892388976 +131 285 5 883681723 +59 173 5 888205144 +160 412 3 876768990 +44 161 4 878347634 +28 258 5 881955018 +436 546 3 887771826 +276 198 5 874795949 +275 435 3 880313886 +110 423 4 886987952 +456 294 1 881375667 +457 366 4 882549287 +406 24 3 879540026 +450 2 4 882474001 +234 434 3 892079288 +23 109 3 874784466 +21 320 3 874951658 +1 170 5 876892856 +436 66 5 887770457 +385 1021 5 879441572 +222 825 3 878184675 +391 222 2 877399864 +462 895 4 886365297 +268 288 4 875306477 +21 706 2 874951695 +207 527 4 877879172 +291 288 5 874805453 +60 524 4 883325994 +438 9 4 879868005 +297 69 3 875240171 +461 50 3 885356089 +447 252 3 878854975 +92 82 2 875654846 +28 443 4 881961671 +417 1550 3 879648707 +204 303 5 892389020 +201 658 3 884111677 +103 252 2 880420020 +321 190 4 879439562 +22 651 4 878887810 +279 407 4 875297479 +13 547 1 882397011 +198 198 4 884207654 +437 423 5 880141196 +404 328 4 883790749 +452 61 1 887718917 +409 527 4 881109175 +5 381 1 875636540 +450 237 5 887660650 +244 856 5 880602002 +308 482 5 887738152 +365 272 4 891303357 +72 7 1 880036347 +178 260 1 886678700 +222 1218 1 878183218 +313 391 3 891028360 +128 196 5 879967550 +322 188 3 887314244 +405 1066 1 885549111 +312 372 3 891699568 +421 238 5 892241576 +313 23 4 891013742 +168 9 1 884287394 +215 176 5 891435804 +168 930 3 884288243 +59 756 2 888203658 +374 466 5 880394929 +244 959 4 880607684 +385 486 2 879442189 +425 448 2 878738887 +200 419 4 884129232 +18 663 4 880129454 +59 64 5 888204309 +288 346 5 886372155 +177 23 5 880130758 +7 99 5 891352557 +145 688 4 875269822 +401 154 1 891033184 +189 89 5 893265624 +367 234 4 876690098 +119 755 1 886176678 +279 156 4 875306580 +324 322 4 880575163 +450 39 4 882376282 +246 831 1 884924025 +79 1022 5 891271792 +174 723 5 886514448 +255 322 2 883215723 +109 67 5 880580719 +199 508 4 883782899 +209 333 2 883589568 +314 1473 4 877891089 +190 539 2 891033370 +151 209 4 879524443 +109 173 5 880572786 +92 500 4 883433734 +435 343 5 884130744 +263 496 5 891298218 +90 609 5 891384357 +457 500 5 882553112 +234 1064 4 892333683 +329 282 3 891656300 +145 732 4 875272833 +4 271 4 892001690 +90 151 2 891385190 +194 939 3 879550615 +264 240 4 886124352 +231 289 4 888605273 +316 507 3 880853704 +416 1012 4 876697205 +83 597 2 891182270 +378 959 3 880046408 +94 7 4 885873089 +298 511 4 884127690 +92 56 5 875653271 +170 288 3 884706012 +435 434 2 884131542 +346 571 3 875264262 +189 198 4 893265657 +311 584 3 884365485 +276 734 1 877935262 +222 318 5 878181934 +417 250 4 879646463 +335 333 4 891566952 +459 596 3 879562939 +95 190 4 888954513 +13 757 3 882398934 +117 179 5 881012776 +409 173 3 881108246 +245 21 3 888513502 +247 269 4 893097024 +437 727 3 881001576 +230 141 4 880485489 +213 199 5 878956000 +116 872 3 876452228 +407 179 3 875046427 +299 606 4 889501393 +13 234 5 882140252 +331 475 3 877196173 +460 327 4 882912418 +18 404 4 880132055 +431 879 3 877844489 +346 147 4 874950172 +393 470 4 889554730 +95 597 3 879194663 +59 670 4 888206485 +389 510 3 880165367 +161 309 2 891170018 +435 410 5 884133733 +416 213 5 893213443 +313 662 3 891031576 +22 665 1 878888145 +276 325 3 874786419 +405 423 5 885545306 +70 175 3 884150422 +321 45 4 879439763 +363 44 3 891496927 +210 926 2 887730909 +459 194 3 879566291 +48 647 4 879434819 +251 1012 4 886272175 +385 1097 5 879440158 +224 366 3 888104457 +90 515 5 891385165 +335 258 1 891566808 +327 1019 3 887746665 +268 1476 2 876513897 +125 474 3 892836422 +398 663 2 875735255 +194 100 4 879539305 +64 300 3 879365314 +297 53 3 875239942 +450 778 3 887834953 +417 77 3 879649304 +1 38 3 878543075 +199 1 1 883782854 +249 250 4 879571678 +308 213 4 887739382 +316 191 5 880854539 +303 2 3 879467191 +347 273 5 881652456 +15 926 1 879456424 +134 316 4 891732418 +269 1017 5 892567767 +124 98 4 890287822 +379 179 5 880525132 +399 969 3 882346728 +139 1176 4 879538080 +457 243 2 882393104 +222 233 2 881060205 +316 276 2 880853849 +96 185 5 884403866 +334 945 4 891545973 +137 121 5 881432881 +334 531 5 891545949 +339 56 5 891032221 +1 9 5 878543541 +215 23 3 891436048 +405 1110 1 885547644 +336 41 3 877757477 +454 479 4 881959991 +159 918 4 893255798 +451 360 3 879012858 +7 565 4 892132019 +405 463 1 885548836 +144 173 5 888105902 +269 502 3 891449842 +255 245 1 883215723 +346 132 4 875261235 +387 184 3 886481634 +194 1045 2 879524644 +399 93 3 882512192 +50 288 4 877052008 +238 125 3 883576230 +322 150 4 887314027 +354 792 4 891217340 +385 455 4 879440701 +405 227 1 885548049 +207 1333 3 877995615 +312 512 3 891698951 +90 216 5 891383626 +59 1005 5 888206363 +250 50 5 878089393 +249 298 4 879571715 +214 527 4 891544089 +429 1545 2 882385518 +37 68 5 880915902 +180 729 5 877355598 +405 197 4 885545167 +250 687 1 883263007 +374 120 3 882158147 +43 211 4 883955785 +392 268 5 891037385 +457 527 5 882553113 +364 875 3 875931585 +405 393 4 885547314 +450 815 3 882396153 +144 213 4 888105387 +246 758 1 884924813 +346 550 4 886273914 +73 59 5 888625980 +344 73 3 884901371 +387 1537 4 886480681 +363 333 1 891493634 +268 284 3 875742407 +467 1017 2 879532403 +271 107 1 885848179 +233 509 4 877663646 +149 262 1 883512623 +43 278 3 884029259 +130 343 4 881536273 +304 294 4 884968415 +438 321 5 879867960 +9 276 4 886959423 +397 302 5 889760703 +73 135 5 888626371 +330 118 5 876544582 +457 1030 2 882551134 +256 98 5 882164696 +449 224 4 879958758 +426 527 3 879444550 +105 324 4 889214245 +468 926 2 875280331 +13 89 4 882139717 +84 245 4 883449530 +18 762 3 880132103 +328 448 3 885046744 +279 474 5 892173363 +181 137 2 878962465 +145 259 3 875269871 +102 667 3 888803002 +213 214 5 878955816 +106 1028 3 883876085 +450 708 4 882397049 +416 966 5 893212483 +308 23 5 887737293 +90 965 5 891383561 +207 15 4 876198392 +82 97 4 878769777 +347 597 3 881652788 +62 710 3 879375453 +91 211 2 891439208 +119 52 3 890627339 +222 183 4 878181535 +355 358 4 879485523 +99 815 2 885679237 +380 573 1 885480737 +160 405 3 876770441 +273 315 4 891292846 +116 193 4 876453681 +299 289 3 877877323 +130 305 4 886023938 +437 166 4 880140398 +422 1 3 875130063 +452 27 5 885816916 +64 405 3 889739288 +328 595 3 885048500 +94 525 5 891721439 +70 405 3 884149117 +457 164 4 882547645 +380 529 3 885479235 +423 355 3 891395020 +431 323 3 877844559 +62 9 4 879372182 +90 617 4 891383835 +339 269 5 891032379 +121 792 3 891388250 +458 191 5 886396192 +267 566 3 878973047 +181 294 2 878961173 +145 771 2 888398867 +179 893 2 892151565 +90 493 5 891383600 +223 620 2 891550253 +315 461 4 879799457 +363 258 3 891493603 +11 750 5 891901629 +293 549 3 888907166 +77 133 2 884752997 +450 400 3 882468790 +10 82 4 877886912 +109 1060 4 880571661 +466 308 1 890282957 +339 89 5 891033416 +280 77 3 891702086 +12 170 4 879959374 +92 208 4 875656288 +344 357 5 884814432 +426 199 5 879442702 +233 501 3 877663383 +393 316 5 889554297 +416 1478 2 886319906 +102 327 2 884870872 +426 651 4 879442702 +90 52 5 891385522 +439 242 5 882892424 +328 177 3 885047099 +393 99 3 889727536 +405 1391 1 885549789 +405 1168 1 885546725 +256 583 5 882164603 +90 127 4 891383561 +17 117 3 885272724 +360 10 5 880354624 +435 729 2 884133757 +272 79 5 879455015 +95 532 4 881011974 +74 354 3 888333194 +323 238 4 878740017 +437 5 2 880143663 +363 557 1 891496103 +389 526 3 880087200 +437 214 4 880141041 +10 510 5 877892209 +327 672 2 887746328 +249 114 5 879572314 +312 1167 4 891699295 +7 465 4 891353154 +437 50 5 881000958 +422 100 4 875129791 +159 273 5 880485935 +157 476 1 886891173 +64 168 5 889739243 +233 603 4 880190566 +28 11 4 881956144 +445 291 2 891200233 +447 300 4 878854011 +224 286 3 888081843 +401 248 3 891032367 +174 158 2 886514921 +83 64 5 887665422 +345 381 4 884993505 +59 845 5 888203579 +355 242 4 879486529 +393 161 4 887746883 +378 768 4 880333598 +276 98 5 874792663 +404 342 3 883790750 +259 179 4 877924028 +169 211 5 891359200 +301 607 4 882077176 +32 508 4 883717581 +405 949 5 885545702 +381 89 5 892696426 +174 433 5 886514757 +367 769 3 876690077 +322 64 5 887314148 +79 582 5 891271806 +435 216 3 884131118 +312 71 4 891699599 +186 243 2 879024099 +375 525 4 886621917 +430 253 1 877225484 +412 508 4 879716962 +399 228 2 882347783 +373 1113 1 877099968 +94 1118 4 891722482 +2 277 4 888551174 +378 724 3 880055520 +6 536 4 883599400 +268 391 3 876513897 +468 461 4 875291570 +158 20 4 880134261 +379 203 4 880526100 +4 300 5 892001445 +207 841 3 876018501 +432 250 1 889415895 +186 1016 5 879023643 +194 491 3 879520916 +81 1 4 876534949 +148 432 5 877019698 +416 202 4 876699334 +38 112 5 892432751 +195 47 5 876632643 +343 463 4 876404793 +378 231 3 880333327 +399 364 4 882350813 +426 848 4 879444117 +456 448 3 881374586 +299 204 4 889503112 +200 58 4 884129301 +257 324 5 879029543 +399 67 3 882350899 +75 413 2 884050979 +49 1066 2 888067187 +314 1229 2 877891681 +437 658 4 880141335 +389 965 5 880087599 +13 23 5 882139937 +11 168 3 891904949 +115 237 2 881171075 +345 196 5 884902317 +37 89 4 880930072 +332 106 4 887938687 +276 258 5 874786337 +422 358 2 875129640 +294 1079 2 889242624 +82 238 3 878769373 +430 237 5 877225965 +297 447 4 875239691 +18 403 3 880132103 +87 405 4 879875893 +201 223 4 884113343 +347 172 5 881653933 +55 597 2 878176134 +308 31 3 887739472 +373 215 4 877099211 +320 95 3 884751418 +437 283 1 880141716 +326 89 4 879875398 +312 653 5 891698365 +328 333 3 885044418 +330 67 4 876547500 +145 12 5 882182917 +95 815 3 879193708 +323 204 3 878739771 +158 430 5 880135093 +89 269 5 879461219 +176 347 4 886047442 +13 435 5 882141392 +144 68 2 888105665 +139 296 4 879538218 +182 257 3 885613117 +7 584 4 891352093 +82 588 5 878769917 +94 318 5 891721191 +65 378 5 879217032 +301 474 4 882075803 +313 768 3 891030367 +345 1221 3 884993703 +308 495 3 887740131 +292 20 2 881104760 +293 26 3 888907015 +460 257 2 882912342 +49 218 2 888068651 +437 485 4 880140854 +246 250 4 884924327 +402 245 1 876266860 +343 358 1 876402493 +416 168 5 893212929 +442 591 3 883391221 +349 20 5 879465642 +334 111 3 891547445 +243 14 3 879987239 +267 29 3 878973426 +458 318 4 886397771 +109 1222 4 880579758 +102 230 2 888801232 +416 85 3 893210246 +194 485 3 879546498 +269 928 1 891451754 +1 246 5 874965905 +406 22 3 882480671 +181 471 2 878962919 +269 425 5 891448345 +201 773 4 884112627 +411 451 4 892845634 +328 383 3 885049880 +333 300 4 891044389 +442 22 2 883390813 +197 188 3 891409982 +43 88 5 883955702 +457 720 3 882550925 +54 829 2 880937311 +37 550 4 880915902 +210 411 3 887730931 +11 370 3 891902880 +151 627 2 879542796 +212 382 5 879303929 +347 233 5 881654653 +380 183 4 885478192 +330 370 4 876545058 +284 301 5 885329593 +468 642 3 875291403 +292 214 3 881105701 +268 10 4 875306691 +299 473 3 877878561 +374 844 4 880394000 +59 83 4 888204802 +253 273 3 891628060 +117 743 1 881010401 +215 270 3 891434683 +223 929 3 891549975 +452 506 3 875276081 +91 520 4 891439414 +367 53 4 876690076 +301 42 4 882075743 +406 127 4 879445430 +246 38 2 884923175 +381 607 4 892696130 +268 710 3 875309719 +383 302 4 891192216 +413 326 3 879969027 +347 68 5 881654825 +459 1060 1 879563668 +339 45 5 891033200 +437 65 4 880140787 +339 179 5 891032793 +18 845 3 880131236 +356 326 4 891406193 +174 1074 4 886514529 +286 768 3 889652968 +264 204 5 886123472 +255 829 1 883216903 +234 419 4 892334644 +299 288 3 877618584 +184 657 4 889908497 +239 527 5 889178833 +459 216 3 879566321 +268 47 1 875310645 +373 195 4 877098487 +257 1472 2 880496943 +327 147 2 887820417 +17 150 5 885272654 +26 413 2 891386049 +2 282 4 888551922 +141 756 3 884585363 +271 495 5 885849052 +417 431 4 879647431 +204 242 5 892388935 +265 237 5 875320462 +144 24 4 888104541 +363 444 4 891500406 +22 187 5 878887680 +246 444 4 884923715 +13 550 4 882397741 +380 614 3 885478845 +194 642 2 879527514 +94 154 5 886008791 +42 1 5 881105633 +38 200 5 892432180 +277 237 4 879544145 +297 271 2 881707810 +343 175 5 876405045 +262 974 3 879791447 +330 1084 5 876544432 +224 1058 3 888104219 +430 547 2 877226365 +215 380 3 891436470 +13 538 1 884538448 +38 69 5 892430486 +334 174 4 891546992 +450 495 4 882395052 +299 345 4 884023998 +233 71 5 876812281 +262 1035 3 879794530 +222 450 3 881060824 +57 111 4 883697679 +406 187 2 879445897 +385 111 2 879440267 +373 949 4 877100016 +312 186 3 891699491 +324 872 5 880575045 +65 956 4 879216797 +250 501 5 878090199 +435 465 2 884132515 +308 648 4 887738509 +472 401 4 875982727 +216 122 5 881432488 +417 139 3 879648707 +435 929 2 884133635 +347 271 1 881652191 +373 414 3 877104259 +239 318 1 889178798 +406 1008 4 879539909 +160 844 3 876767822 +339 637 4 891035647 +145 554 3 875272245 +328 273 3 885046134 +348 831 4 886523913 +416 501 5 893213918 +334 1016 3 891545185 +280 158 2 891701764 +374 254 3 880394000 +387 403 3 886483099 +269 707 2 891449304 +405 1580 1 885549543 +258 333 2 885700811 +456 662 4 881374710 +87 132 5 879877930 +113 268 4 875935609 +453 356 2 888205866 +343 11 5 876405172 +151 136 4 879524293 +5 99 3 875721216 +151 1286 5 879524173 +150 151 4 878746824 +89 875 3 879441160 +299 185 3 878192039 +221 568 4 875246398 +219 269 5 889386655 +407 432 4 875552685 +222 636 4 878184055 +189 131 4 893265710 +239 91 4 889180487 +465 202 4 883531487 +43 283 2 883955415 +326 613 5 879874860 +458 387 4 886398246 +378 295 3 886614274 +160 640 3 876860808 +11 70 4 891904573 +472 11 5 892790676 +252 14 4 891456876 +125 364 3 892839191 +425 324 3 878737657 +200 99 5 884128858 +73 650 3 888626152 +450 382 3 882377479 +349 120 3 879466334 +145 150 5 875270655 +13 669 1 882397067 +405 1268 1 885546636 +116 1013 3 876453222 +277 844 4 879543528 +174 722 4 886513896 +363 568 2 891495070 +106 210 4 881450810 +13 475 3 881515113 +407 144 3 876338453 +420 137 4 891357104 +307 210 2 877123746 +70 181 4 884064416 +276 451 3 874792216 +405 999 1 885547557 +346 92 4 886274124 +13 889 3 892015236 +6 21 3 883600152 +459 134 3 879564941 +343 169 5 876405172 +87 791 2 879877280 +130 249 5 876250746 +18 6 5 880130764 +234 745 4 892333573 +181 931 1 878963205 +456 210 3 881374849 +76 769 1 882607018 +379 127 5 880524811 +379 517 4 888044628 +406 69 4 879446748 +346 302 3 877231140 +432 118 4 889416608 +376 197 4 879454598 +151 462 4 879524088 +450 518 4 882374134 +219 382 5 889451412 +280 1066 4 891701928 +406 825 4 879540275 +117 977 3 881009738 +437 501 4 880143315 +461 302 3 885355646 +387 114 5 886484336 +144 524 5 888105081 +249 1039 5 879572725 +405 308 1 885549942 +15 409 3 879456324 +289 151 2 876790499 +64 847 3 879365558 +158 797 3 880134701 +334 271 3 891544340 +298 471 4 884125847 +463 1132 1 889937778 +113 323 4 875325377 +383 237 4 891192836 +94 11 5 885870231 +339 461 5 891033226 +256 89 5 882164525 +399 413 2 882340900 +379 528 5 881996665 +402 511 5 876266775 +223 295 3 891549410 +90 889 3 891382731 +89 13 2 879441672 +42 387 3 881108760 +272 211 5 879454845 +346 394 4 874949116 +176 111 4 886048040 +450 110 4 882469250 +450 1203 3 882373723 +159 595 5 880486009 +174 846 5 886433996 +87 216 5 879876448 +270 183 5 876955938 +85 190 4 879453845 +282 689 2 881703044 +374 291 3 885107905 +342 111 3 875318267 +286 381 5 877532965 +339 447 4 891034923 +314 946 5 877888527 +472 193 5 875981789 +244 471 1 880606874 +224 28 4 888082468 +358 918 1 892731254 +234 23 4 892334368 +269 148 1 891446443 +60 593 5 883326185 +37 27 4 880915942 +393 317 4 889554707 +117 33 4 881011697 +200 188 4 884129160 +232 209 3 888549563 +130 1046 4 880396831 +110 315 4 886987726 +110 173 1 886988909 +399 746 5 882342158 +321 1331 4 879439017 +181 1363 1 878962279 +357 1 5 878951216 +406 183 5 882480567 +322 234 4 887313893 +290 1079 2 880732771 +430 234 4 877226323 +159 24 5 880989865 +428 750 5 885943651 +286 1280 5 884069544 +194 403 2 879527725 +145 242 5 875269755 +457 58 4 882397177 +369 168 3 889428494 +454 144 4 888266643 +417 1028 3 879646785 +94 739 2 891723156 +42 371 4 881108760 +390 515 4 879694259 +11 274 3 891906510 +286 125 4 876521650 +200 679 4 884129920 +398 167 3 875735638 +222 407 2 883816411 +435 597 3 884133284 +326 170 2 879874897 +119 591 4 886177235 +410 313 5 888627137 +221 64 5 875245350 +442 834 2 883389337 +115 596 1 881170663 +435 204 3 884132366 +18 378 3 880131804 +449 212 5 880410624 +193 246 3 890859402 +389 47 4 880086971 +429 208 4 882384772 +311 202 4 884364694 +472 877 3 892789947 +378 401 4 880332347 +130 1039 4 875216420 +99 28 3 885680578 +145 820 2 885557732 +272 746 3 879454797 +62 250 5 879372455 +452 276 1 885490917 +381 631 4 892696654 +373 421 4 877105563 +96 187 5 884402791 +350 204 4 882346161 +425 177 3 878738290 +26 1 3 891350625 +452 201 1 875875685 +399 41 2 882348876 +90 162 5 891385190 +30 242 5 885941156 +422 270 3 878058917 +286 186 5 877534903 +380 31 1 885479730 +64 81 4 889739460 +181 991 1 878961814 +41 474 5 890687066 +365 762 4 891304300 +233 584 4 877663548 +280 118 2 891701027 +92 456 2 888469668 +42 1047 4 881106419 +452 89 5 875263413 +154 474 5 879138783 +42 427 4 881107773 +121 124 5 891388063 +291 1073 5 874834701 +393 842 4 889729212 +144 1138 4 888104684 +102 778 3 892991448 +223 476 3 891550349 +286 47 4 877532419 +348 412 2 886523560 +188 568 4 875072583 +346 22 5 874948059 +98 629 5 880499111 +162 1011 4 877636370 +85 385 3 879455021 +459 358 2 879561783 +92 167 3 875656557 +108 304 3 879879662 +327 132 5 887820828 +309 331 5 877370356 +23 95 4 874786220 +43 742 5 883955650 +450 710 3 882468931 +234 1203 4 892079910 +108 718 4 879879985 +343 66 3 876406421 +305 963 4 886322635 +314 762 4 877886443 +319 340 3 879975481 +345 1053 3 884993903 +437 710 4 880140822 +225 1203 5 879540778 +401 71 2 891033549 +472 258 5 892790953 +312 633 5 891698951 +194 31 3 879549793 +450 660 4 887660762 +64 209 5 889737654 +65 65 3 879216672 +59 963 5 888204757 +447 9 2 878854195 +11 423 5 891904174 +256 38 4 882164927 +85 195 3 882995132 +471 95 4 889827822 +407 1118 4 876340043 +383 427 5 891192748 +214 752 2 891542578 +145 209 4 882181659 +389 475 5 879915780 +463 455 3 877385457 +405 1384 1 885549746 +177 154 4 880130600 +456 274 3 881371977 +174 388 1 886515335 +224 280 4 888104353 +244 410 4 880606593 +223 1291 3 891550431 +234 22 4 892334644 +393 497 4 889555021 +315 382 4 879821089 +450 152 5 882395052 +406 7 4 879445684 +414 678 1 884999066 +334 213 4 891546373 +158 173 5 880134913 +397 288 4 882839517 +457 385 4 882392950 +178 123 4 882824325 +474 8 5 887925497 +472 168 5 892791062 +417 422 3 879648212 +416 549 4 886316922 +137 181 5 881433015 +230 71 5 880484911 +295 720 4 879518801 +216 475 5 880232768 +433 682 2 880585431 +216 188 5 880245075 +280 699 4 891700341 +234 1200 3 892333865 +24 127 5 875323879 +281 288 4 881200264 +45 823 4 881014785 +13 51 3 882399419 +334 500 3 891547334 +471 140 5 889827918 +271 193 5 885848475 +432 871 2 889416456 +303 156 5 879466771 +436 787 5 887770640 +327 1 4 887745622 +307 286 3 881965984 +290 139 2 880475420 +94 274 4 891722511 +236 659 3 890116599 +405 53 2 885548137 +295 386 4 879519308 +149 326 3 883512856 +450 304 4 882216108 +351 751 4 883356614 +411 770 4 892845634 +335 313 3 891566808 +416 10 3 876698364 +324 288 5 880575002 +151 483 5 879524244 +334 347 3 891547445 +269 469 4 891448072 +95 415 3 888956582 +336 790 2 877758187 +95 1231 1 880572787 +131 124 5 883681313 +175 100 2 877107712 +472 449 5 875982967 +336 401 1 877757133 +109 179 4 880577961 +407 382 3 876342706 +309 1025 5 877370356 +466 354 2 890282795 +136 286 5 882693234 +294 122 3 889242661 +378 174 4 880045651 +342 727 3 875320082 +450 520 5 887136083 +410 289 1 888626819 +7 499 4 891351472 +169 213 5 891359354 +138 13 4 879023345 +405 753 1 885549464 +450 604 4 882373231 +398 993 3 875653043 +327 506 3 887744513 +222 623 2 878183985 +405 693 2 885546154 +303 872 3 879466018 +447 206 4 878856209 +66 24 3 883601582 +436 215 4 887770457 +334 429 4 891546299 +293 582 4 888906536 +119 597 4 874775465 +271 130 1 885848218 +105 288 4 889214335 +405 1530 1 885546835 +42 290 3 881106072 +429 636 3 882386027 +345 568 4 884993047 +331 223 4 877196173 +207 660 4 877847100 +255 200 3 883216544 +87 321 2 879876813 +174 742 4 886434087 +194 154 3 879546305 +13 329 2 886952246 +145 407 2 888398400 +201 53 3 884114713 +337 222 5 875185319 +334 239 3 891546914 +465 114 4 883530190 +1 22 4 875072404 +363 290 3 891496753 +435 1039 4 884132755 +223 1009 1 891549475 +119 50 5 874774718 +367 406 4 876689878 +10 216 4 877889333 +308 597 3 887738933 +189 423 5 893265796 +276 153 4 874791667 +303 321 3 879466065 +152 1054 1 880149643 +455 738 3 879112238 +308 712 4 887740833 +456 187 4 881372911 +98 523 5 880498967 +416 106 3 876697913 +5 21 3 875635327 +1 21 1 878542772 +407 510 4 875046752 +453 1157 2 888206576 +314 278 5 877886888 +403 546 3 879786221 +227 322 3 881518461 +110 1231 2 886988664 +44 946 3 878347847 +391 678 2 877398704 +291 685 5 874834254 +125 748 3 892835778 +394 383 2 881059704 +297 17 3 875240201 +150 324 4 878746225 +63 929 3 875747955 +13 804 2 882141997 +450 642 4 882397939 +474 602 3 887926436 +215 229 3 891436469 +75 301 4 884051510 +370 294 1 879434229 +167 1308 1 892738307 +178 2 4 882827375 +177 421 3 880130881 +288 22 5 886374286 +145 1288 4 888398197 +269 1148 4 891447062 +459 357 4 879564308 +274 71 4 878946612 +177 343 3 882141885 +374 135 4 882159077 +456 1248 3 881374767 +269 1479 2 891451111 +159 832 3 880557864 +460 744 3 882912261 +83 2 4 881971771 +373 527 4 877103846 +442 184 2 883390083 +194 456 1 879544303 +13 4 5 882141306 +87 230 5 879875818 +436 98 4 887769280 +412 526 4 879717572 +7 617 5 891354588 +138 435 5 879024232 +145 1047 3 875270764 +405 462 2 885549506 +327 88 2 887819194 +407 56 5 875042569 +42 15 4 881105633 +85 654 4 879454272 +417 449 3 880952674 +21 551 3 874951898 +7 219 1 892131924 +168 125 4 884287731 +90 303 4 891382193 +110 96 4 886988449 +276 380 3 874791383 +406 515 2 879445378 +429 1285 3 882386485 +437 663 5 880141084 +264 192 4 886122099 +144 20 4 888104559 +295 238 4 879517136 +145 673 4 875272299 +334 131 4 891547744 +386 1016 4 877654961 +346 572 5 875266600 +389 568 3 880087782 +280 1133 3 891700242 +455 724 3 879111500 +222 540 3 878184087 +24 249 4 875246216 +279 594 1 891209021 +444 916 3 891979403 +215 523 4 891435060 +193 187 4 890860351 +318 1120 3 884495206 +200 1 5 876042340 +447 760 4 878854838 +244 451 4 880608112 +144 470 2 888105993 +59 51 5 888206095 +295 420 4 879518233 +23 408 5 874784538 +374 71 5 880396292 +317 313 4 891446208 +367 561 4 876690048 +198 187 4 884207239 +188 1263 3 875071891 +267 33 5 878972650 +201 448 3 884112581 +198 979 5 884206748 +151 98 4 879524088 +342 663 4 875320297 +407 416 3 876348957 +99 64 5 885680578 +405 1119 3 885545306 +407 371 2 875116964 +128 622 4 879968332 +178 197 2 882826720 +405 77 1 885546248 +472 826 3 883904224 +299 264 2 877877290 +457 156 5 882397095 +108 222 2 879879720 +394 561 4 881060177 +95 520 4 879197970 +291 825 4 874833983 +303 953 3 879485016 +450 494 3 882373385 +222 89 5 878181739 +363 428 5 891495742 +397 95 4 885349999 +21 123 4 874951382 +184 736 3 889911633 +324 255 4 880575449 +75 225 2 884050940 +389 604 4 879991387 +130 132 5 875802006 +276 197 5 874787549 +64 313 4 889736971 +27 50 3 891542897 +456 979 3 881371694 +340 588 5 884991369 +135 173 4 879857723 +125 211 3 879455184 +403 925 4 879790468 +290 15 4 880474494 +166 751 4 886397665 +417 692 4 879648132 +423 333 3 891394747 +21 767 1 874951314 +59 919 4 888203018 +352 273 2 884290328 +363 137 5 891495742 +288 180 5 886373474 +405 946 2 885548836 +406 633 5 882461684 +235 194 5 889655232 +340 486 4 884991083 +145 558 2 877343121 +109 231 3 880582976 +181 1339 1 878962086 +417 1014 4 879646785 +11 433 4 891905003 +426 428 2 879444081 +117 748 3 880124378 +312 89 5 891698832 +416 258 5 893213549 +410 538 3 888626710 +305 96 3 886324172 +95 127 4 879195062 +383 639 4 891193181 +452 121 5 885816916 +295 965 4 879517271 +383 135 5 891193042 +236 504 3 890118075 +373 155 4 877107235 +85 150 3 890255432 +406 692 3 880131792 +225 566 4 879540678 +465 216 3 883531284 +305 628 4 886324661 +265 1197 2 875320542 +160 169 4 876862077 +308 235 3 887739800 +106 274 3 883876146 +469 513 5 879523891 +246 210 3 884921319 +305 12 5 886322930 +342 123 5 874984832 +233 506 5 877663337 +300 456 4 875650267 +26 300 4 891347537 +200 515 5 884129381 +311 185 2 884366617 +11 749 5 891901797 +5 427 3 875721167 +329 197 4 891656429 +105 270 5 889214245 +329 705 3 891656347 +1 179 3 875072370 +298 183 3 884182600 +460 275 3 882912261 +403 148 5 879786351 +425 678 1 878737593 +21 453 2 874951797 +360 1197 3 880355177 +464 289 4 878354626 +56 151 4 892910207 +460 20 4 882912469 +378 49 3 880332480 +324 123 4 880575714 +110 69 4 886987860 +320 92 5 884749306 +334 430 4 891546206 +366 559 5 888858078 +331 1141 3 877196504 +239 484 5 889179095 +59 435 5 888204553 +197 232 4 891410082 +330 252 4 876544734 +405 175 1 885546069 +334 582 5 891547235 +442 230 3 883390466 +312 863 5 891698695 +230 621 2 880485380 +435 587 3 884132403 +90 632 5 891384113 +59 612 3 888206161 +416 928 3 878879391 +450 211 5 882373865 +313 624 4 891030261 +10 211 5 877889130 +342 248 3 874984455 +223 95 5 891550649 +249 1012 3 879571998 +383 272 3 891192158 +469 855 4 879524302 +90 474 5 891383599 +466 181 4 890284857 +128 193 3 879967249 +288 223 3 886374497 +198 173 4 884207492 +347 403 5 881654386 +280 546 4 891702252 +385 616 4 884119121 +125 728 3 892838425 +203 475 3 880434318 +49 91 5 888066979 +347 820 2 881653340 +319 307 4 879975504 +10 531 5 877886911 +422 448 4 879744085 +311 306 4 884363791 +406 30 4 879793235 +380 161 2 885480046 +244 32 2 880605514 +379 9 4 880524886 +406 735 3 884630554 +416 288 5 893213796 +327 959 5 887819161 +201 188 4 884112201 +472 1011 4 875979187 +255 831 4 883216902 +275 294 4 876197443 +437 479 5 880141335 +213 502 5 878956263 +271 239 3 885849419 +326 136 4 879874933 +339 675 4 891034810 +63 258 3 875746809 +222 772 2 878181906 +92 122 3 875907535 +243 7 3 879987362 +145 452 3 882182762 +345 117 4 884991220 +303 222 3 879468414 +474 410 2 887915645 +275 50 4 876198296 +21 263 1 874951040 +37 127 4 880930071 +299 19 1 877877434 +450 847 4 882376188 +38 681 5 892429065 +425 690 1 890346866 +104 1012 4 888465708 +303 678 1 879544946 +354 7 4 891216607 +99 342 1 885678348 +454 705 3 881959818 +126 272 3 887853469 +379 187 5 880525031 +311 216 5 884364502 +385 603 5 880869422 +405 669 1 885548435 +295 729 4 879518018 +59 404 3 888205463 +269 517 4 891449189 +224 556 1 888103942 +457 285 5 882393648 +476 715 4 883364745 +425 53 4 878738596 +222 769 2 881060608 +91 568 2 891439018 +327 508 2 887744064 +62 188 3 879373638 +398 4 2 875723337 +141 282 5 884585642 +389 64 4 880087151 +419 488 5 879435722 +343 427 5 876405820 +125 56 1 879454345 +181 235 1 878963168 +380 134 3 885478583 +312 276 4 891699010 +343 174 5 876404464 +385 1524 5 879445662 +457 758 2 882551135 +13 96 4 882140104 +399 684 3 882344269 +389 712 3 881384338 +344 7 4 884814668 +407 313 4 893076947 +395 338 4 883762733 +429 747 3 882386071 +418 344 1 891282521 +373 660 4 877105075 +378 1523 2 880334067 +307 83 5 877120874 +234 285 4 891227771 +389 50 5 879915780 +458 530 4 886396005 +435 171 5 884131967 +60 618 3 883327113 +87 789 3 879876610 +328 620 3 885048861 +402 222 4 876266948 +391 510 5 877399066 +267 944 3 878973179 +408 300 3 889679857 +472 233 4 875981759 +403 181 4 879785916 +271 756 2 885848218 +7 216 4 891350900 +246 25 3 884922383 +139 740 2 879538254 +389 558 4 879991242 +190 354 4 891033606 +257 269 3 879029516 +409 429 5 881107817 +402 32 3 876267235 +201 435 4 884112201 +452 186 1 875875499 +407 173 5 875043948 +412 117 4 879717177 +92 153 4 875653605 +339 403 3 891034510 +416 652 4 876699526 +326 208 3 879875534 +202 258 4 879726342 +13 838 1 882397742 +474 480 5 887925186 +246 420 3 884922272 +122 673 3 879270511 +276 591 3 874786632 +221 385 4 875245948 +75 235 4 884050502 +69 123 4 882126125 +218 173 3 877488316 +186 79 5 879023460 +445 121 1 891200233 +299 692 4 877880915 +180 778 2 877128388 +42 469 4 881109324 +13 559 1 882396913 +233 483 5 876021170 +79 306 5 891271792 +445 246 1 891199682 +94 381 4 886008764 +380 414 2 885480046 +450 559 3 882376446 +417 550 3 879649178 +138 187 5 879024043 +141 335 1 886447735 +184 221 5 889907838 +88 308 4 891037396 +474 68 3 887926804 +405 142 1 885549004 +405 559 5 885548330 +69 235 3 882126048 +385 81 3 879442028 +233 828 4 875508169 +131 276 5 883681723 +294 1088 1 889243393 +116 346 4 886310197 +476 792 4 883365019 +478 143 5 889396797 +429 282 3 882386983 +268 195 4 875309719 +373 778 5 877105529 +328 748 3 885045245 +411 186 5 892845605 +407 69 4 875042569 +303 720 2 879468375 +358 382 2 891269913 +286 411 2 876522133 +378 778 3 880056073 +216 221 4 881432501 +474 736 3 887927509 +328 326 4 885044607 +402 96 5 876267234 +265 323 3 875320112 +279 1485 4 878262195 +201 76 4 884140709 +399 546 2 882341383 +22 53 3 878888107 +327 874 3 887737629 +473 273 5 878157329 +159 588 2 884027316 +176 246 5 886047994 +176 343 2 886047595 +291 9 5 874805804 +18 654 4 880130110 +244 92 4 880602478 +421 657 4 892241422 +178 202 5 882826782 +339 91 5 891034282 +268 241 3 875310603 +454 286 3 881958782 +118 180 5 875385136 +278 882 3 891295007 +42 679 2 881108548 +313 684 4 891017088 +40 269 1 889041283 +202 423 3 879727116 +458 178 4 886398187 +474 1014 3 887916567 +450 1446 4 882812558 +119 813 4 874774956 +463 250 4 889935953 +279 229 4 889326161 +423 1011 3 891395547 +466 188 3 890284766 +474 528 5 887923924 +259 185 4 874724781 +49 1080 4 888066734 +200 495 3 884129092 +26 316 3 891349122 +321 61 5 879441128 +463 950 3 877385590 +157 255 3 886889876 +5 451 1 875636571 +249 283 5 879572600 +262 7 4 879790603 +453 73 4 888206132 +49 561 2 888067460 +291 420 4 875086991 +322 513 4 887314185 +442 873 2 883388120 +10 357 5 877889186 +303 198 4 879467413 +56 781 4 892677147 +293 290 2 888905198 +291 412 3 875086669 +151 939 4 879524514 +463 225 3 877385489 +303 324 3 879466065 +450 204 4 882377590 +216 25 3 881428365 +405 654 2 885548579 +24 300 4 875245985 +22 515 5 878887869 +363 431 2 891495301 +23 629 4 874786098 +466 265 3 890285159 +104 1115 4 888465263 +313 8 3 891014551 +447 180 5 878855989 +115 7 5 881171982 +62 866 2 879373195 +394 288 4 880886919 +130 658 5 875802173 +91 495 4 891439171 +368 89 4 889783678 +145 313 4 883840638 +376 663 3 879434750 +184 210 4 889911069 +6 200 3 883602422 +101 111 2 877136686 +91 614 4 891439018 +464 678 3 878354722 +347 118 4 881652710 +305 904 4 886307860 +455 56 5 879110844 +7 556 3 891352659 +378 559 4 880056735 +279 367 3 875309861 +244 86 4 880605896 +391 89 3 877399380 +342 209 5 875319554 +391 200 5 877399269 +266 268 4 892256828 +458 319 4 889323714 +276 86 3 874791101 +472 931 2 883904681 +320 164 4 884751246 +311 323 3 884364139 +10 162 4 877892210 +324 879 4 880575234 +286 597 3 876522360 +276 396 4 874792118 +396 595 3 884646467 +267 128 5 878972170 +318 405 2 884494797 +454 51 2 888267158 +461 259 2 885355679 +43 385 5 883955387 +399 140 4 882343731 +70 496 4 884064545 +450 904 5 889568507 +26 129 4 891350566 +25 141 4 885852720 +316 199 3 880853598 +321 87 3 879439763 +416 1521 3 892440206 +406 25 1 879540106 +474 176 5 887923972 +428 313 5 885943749 +450 1092 3 882469627 +10 161 4 877892050 +308 209 4 887737686 +389 484 5 880087073 +198 959 3 884209264 +436 1061 3 887771997 +457 825 5 882553112 +435 381 4 884133585 +13 237 5 882140285 +226 405 4 883889507 +424 294 5 880858979 +456 708 4 881373756 +327 405 2 887745589 +186 306 4 891717690 +326 174 4 879874825 +334 877 3 891544264 +454 315 4 888015651 +455 20 3 879109594 +158 659 5 880134947 +239 443 5 889181015 +386 281 3 877655145 +435 382 3 884131949 +377 358 3 891297023 +308 408 5 887738268 +361 781 2 879441179 +267 189 4 878971874 +417 176 5 879646891 +133 308 4 890588639 +268 654 5 875309718 +373 286 3 877098042 +60 366 4 883327368 +397 896 4 889760725 +389 410 3 879916238 +175 64 5 877107552 +269 393 1 891451036 +446 269 4 879787730 +472 689 4 883903273 +454 310 4 881958464 +11 659 5 891904920 +116 879 2 876452094 +474 518 4 887926633 +149 338 2 883512904 +189 44 4 893266376 +342 1014 1 874984531 +13 770 4 882397581 +44 143 4 878347392 +293 491 4 888905923 +332 182 5 888098088 +303 223 4 879466742 +323 475 3 878739393 +291 448 5 874867741 +118 288 5 875385386 +429 415 3 882386785 +407 1188 2 876345492 +438 269 4 879867960 +37 92 4 880930072 +374 1014 1 880394138 +45 225 4 881014070 +405 793 1 885547313 +291 761 3 874834914 +195 558 3 890589408 +178 300 5 882823301 +227 124 4 879035158 +92 117 4 875640214 +454 174 4 888266643 +315 178 4 879799486 +416 723 4 886318827 +177 161 3 880130915 +212 527 5 879303892 +411 88 3 891035761 +398 163 3 875738333 +418 331 3 891282521 +114 89 5 881260024 +175 661 4 877107432 +5 430 5 875636631 +363 631 1 891497440 +397 338 4 882839517 +450 281 4 882399664 +81 100 3 876533545 +364 988 2 875931561 +457 546 2 882393860 +119 294 1 892564313 +361 66 4 879441075 +56 483 4 892682889 +44 1 4 878341315 +99 92 4 885680837 +269 488 4 891448926 +405 1479 1 885547735 +425 222 5 878738486 +445 50 2 891199715 +406 42 5 879445936 +333 294 3 891045496 +359 408 5 886453239 +345 148 3 884991303 +416 560 3 886319079 +468 39 3 875296309 +59 56 5 888204465 +345 1096 3 884994682 +435 184 5 884131771 +346 110 2 875266064 +11 707 5 891906389 +102 201 2 888803051 +407 2 4 875553509 +58 496 2 891611593 +42 729 3 881108345 +270 584 5 876955067 +246 41 2 884923811 +16 948 3 877717397 +449 293 4 879958803 +351 288 3 879481550 +450 526 4 882396245 +201 379 3 884114813 +174 238 5 890168700 +398 435 5 875717106 +262 385 2 879795030 +447 91 4 878856549 +393 540 3 889731753 +371 234 5 877487691 +90 721 3 891385215 +436 537 4 887769471 +388 678 4 886442062 +363 1512 1 891494754 +308 186 4 887738152 +307 380 3 879538922 +280 1297 4 891702230 +196 70 3 881251842 +90 193 4 891383752 +18 65 5 880130333 +435 313 5 884268770 +83 580 4 883869630 +222 229 3 878184315 +454 164 3 881960265 +451 243 4 879012510 +256 225 4 882152605 +363 443 4 891500334 +87 38 5 879875940 +99 751 4 885678397 +254 1470 2 886474650 +295 181 4 879517860 +393 571 3 889731793 +463 24 3 877385731 +354 958 4 891218271 +314 595 3 877886375 +194 376 2 879528752 +478 122 2 889397778 +73 269 4 888792172 +1 187 4 874965678 +455 334 3 892230883 +60 1121 3 883326215 +395 237 4 883764974 +427 263 5 879701253 +2 111 4 888551853 +416 480 5 893213918 +72 318 5 880037702 +189 499 4 893265596 +222 63 3 878183713 +276 825 3 874787006 +32 222 3 883717600 +82 111 4 876311423 +347 70 2 881654428 +112 301 3 884992566 +130 450 2 878537602 +452 69 5 875275699 +308 48 4 887736880 +201 288 4 884110887 +273 316 4 891293201 +463 347 1 889936589 +101 181 4 877137015 +387 463 4 886483526 +435 616 2 884133284 +271 196 4 885848886 +455 531 3 879111291 +394 72 4 880889629 +65 393 4 879217881 +456 22 4 881373573 +271 87 3 885848802 +392 99 5 891038433 +102 338 2 887051723 +378 91 3 880331510 +269 537 5 891455816 +474 735 4 887924619 +463 242 2 889935629 +421 89 5 892241362 +418 302 2 891282551 +159 260 2 893255969 +259 147 4 888630664 +301 824 3 882075055 +270 50 5 876954004 +378 176 4 880046362 +43 290 4 884029192 +351 326 5 879481589 +374 100 5 880392873 +374 24 3 880393553 +346 273 4 874948783 +235 191 4 889654971 +18 79 4 880131450 +260 748 4 890618198 +249 175 4 879572106 +279 532 1 875298597 +95 98 4 879197385 +466 128 2 890284819 +354 419 4 891217755 +279 274 3 875296792 +256 1 5 882150980 +357 1047 4 878951691 +147 313 4 885593965 +354 638 4 891217547 +424 14 4 880859552 +198 693 3 884207734 +391 12 5 877399745 +208 97 4 883108797 +447 288 4 878855082 +470 475 4 879178568 +437 162 4 880141129 +246 393 3 884922627 +15 308 5 879455334 +393 1407 3 889731010 +160 182 5 876770311 +128 172 3 879967248 +253 328 4 891627790 +162 508 5 877635662 +370 322 3 879434308 +13 563 1 882397039 +457 45 5 882397133 +397 174 5 885349999 +222 475 4 877563252 +232 76 3 888550060 +421 466 4 892241459 +387 473 4 886481033 +476 1037 1 883365384 +250 331 3 878089033 +305 582 4 886323506 +463 593 1 877386923 +72 147 5 880037702 +85 529 3 879827935 +435 82 5 884132100 +412 487 3 879717118 +152 234 4 882474970 +59 205 3 888204260 +354 513 5 891217782 +311 23 3 884364570 +301 73 4 882075962 +123 9 5 879873726 +454 875 1 888266433 +296 191 5 884197193 +272 514 5 879455254 +395 313 3 883762135 +13 478 4 884538571 +437 683 2 881001121 +179 321 1 892151331 +254 94 3 887347350 +215 15 3 891435761 +435 52 5 884132403 +70 150 3 884065247 +460 297 3 882912342 +474 661 4 887925620 +354 707 4 891217633 +276 951 3 874792969 +99 829 4 885679382 +178 219 4 882828350 +480 190 5 891208265 +165 500 3 879525832 +434 369 4 886724972 +267 108 4 878971224 +360 23 5 880356240 +405 189 1 885549192 +119 710 4 886177162 +13 872 3 882139327 +38 742 5 892430001 +21 17 4 874951695 +151 52 5 879524586 +441 25 3 891036306 +453 566 3 877561593 +377 268 3 891295937 +327 559 2 887746328 +181 681 1 878961474 +393 845 4 887744202 +56 403 4 892678942 +6 494 4 883601713 +474 52 4 887925751 +178 176 4 882826782 +445 886 3 891035539 +11 228 3 891905824 +183 229 3 891463591 +347 831 1 881653340 +171 262 4 891034641 +284 306 4 885329146 +84 98 4 883453755 +255 100 3 883216358 +7 97 5 891351201 +65 365 3 879216672 +417 484 4 879647380 +70 403 4 884064862 +472 977 3 875979317 +250 271 4 883263374 +219 616 5 889403435 +450 139 5 882812558 +417 1119 3 879648382 +158 798 4 880134815 +92 704 3 875812121 +399 597 3 882341330 +249 53 4 879572760 +263 300 3 891297330 +116 1226 2 876454090 +384 989 4 891273905 +99 275 1 888469419 +267 65 4 878972071 +95 892 3 882803890 +370 514 4 879434969 +232 150 3 891565095 +152 783 4 884018961 +305 200 3 886324661 +15 303 3 879455080 +373 715 2 877105075 +42 1042 3 881109325 +342 133 4 874984207 +23 175 5 874785526 +226 25 4 883890235 +385 136 3 879442402 +75 1028 4 884050590 +379 100 5 880524541 +216 1218 3 881428365 +429 153 4 882385090 +44 591 4 878341315 +148 69 5 877019101 +64 32 1 889739346 +31 340 3 881547788 +343 137 4 876402941 +158 570 3 880134445 +458 496 3 886398289 +94 629 4 891721286 +479 680 3 887064404 +327 55 4 887820293 +221 470 3 875245374 +403 7 5 879785867 +151 69 4 879524368 +426 606 5 879442044 +230 418 5 880484937 +303 90 4 879485111 +181 813 2 878962279 +269 821 1 891450427 +450 200 3 882376188 +276 1079 2 874787300 +95 447 2 880572166 +49 1028 2 888069304 +145 635 4 875272349 +332 1315 2 887916623 +151 476 3 879543423 +7 135 5 891351547 +452 502 2 885817844 +417 765 3 879649632 +270 26 5 876954995 +327 10 4 887744432 +264 367 4 886123656 +437 191 4 880140726 +95 140 3 879199014 +419 306 5 879435242 +232 289 4 880062259 +313 474 5 891016193 +200 841 3 876042556 +354 516 5 891217851 +373 1078 3 877105451 +92 826 2 886443534 +157 1051 4 886890835 +357 744 5 878951653 +429 32 4 882386309 +352 89 5 884289693 +100 879 4 891374946 +474 1028 1 887916438 +425 288 5 878737512 +445 150 2 890987617 +97 189 4 884238887 +49 928 2 888068651 +429 569 2 882387506 +293 578 2 888907913 +406 589 5 879445474 +429 1014 3 882386333 +405 574 1 885546724 +416 929 4 876698255 +102 993 2 883748352 +118 1079 4 875385442 +454 1454 2 888266907 +422 50 4 875129911 +110 55 3 886988449 +276 1083 3 877934891 +380 736 4 885478780 +458 174 3 886397109 +463 21 1 890453075 +130 555 4 888211930 +432 405 4 889416490 +254 498 4 886472115 +409 276 4 881108455 +43 1054 3 884029658 +457 79 5 882396869 +437 98 5 880141962 +394 39 4 880888501 +436 715 4 887770668 +22 85 5 878886989 +329 892 2 891655614 +453 231 2 877562293 +450 367 3 882376282 +326 183 5 879875851 +193 366 4 890860428 +472 940 4 875982560 +398 182 4 875657802 +64 143 4 889739051 +381 656 4 892696471 +59 201 4 888204260 +365 315 4 891303384 +385 185 5 880870205 +457 679 4 882547723 +145 1287 2 888398563 +381 79 3 892695996 +201 234 5 884112537 +168 121 4 884287731 +392 199 5 891038466 +416 217 4 886317880 +417 169 3 879647498 +328 1112 4 885049459 +380 416 2 885480239 +391 64 5 877399746 +42 443 3 881108093 +2 258 3 888549961 +417 358 2 879649763 +342 15 3 875318154 +102 671 3 888803002 +343 559 3 876406822 +292 153 4 881105587 +440 1073 4 891577814 +200 280 4 884127798 +412 288 4 879716566 +389 401 3 880088578 +334 969 4 891628832 +299 813 4 878192192 +344 764 1 886381986 +215 134 4 891435266 +366 98 5 888857750 +124 209 3 890399902 +56 423 5 892737191 +454 945 3 881960083 +178 1315 4 882824291 +429 806 2 882384950 +115 121 3 881170065 +264 774 2 886122446 +344 815 2 884900409 +87 167 4 879876703 +275 210 4 880314320 +54 272 5 890608175 +280 31 4 891701344 +478 318 5 889389232 +392 200 3 891038433 +464 269 5 878354626 +173 331 4 877557028 +450 553 2 882373928 +380 1404 2 885478646 +457 949 3 882549287 +351 327 5 883356684 +465 50 4 883530778 +222 24 3 877563622 +193 73 3 889127237 +430 744 3 877225965 +279 809 3 891208945 +292 7 3 881104068 +429 794 3 882385593 +452 609 4 875562374 +401 280 2 891032607 +283 435 5 879298206 +1 135 4 875072404 +479 228 4 879461060 +457 53 4 882548645 +201 962 4 884113082 +249 273 4 879640284 +205 300 3 888284245 +385 1286 3 879446952 +381 673 3 892696209 +286 394 5 877534771 +180 658 5 877355598 +299 728 2 889503159 +256 620 3 882151743 +307 230 5 879538921 +429 568 3 882385859 +84 15 4 883449993 +452 467 3 885491030 +425 491 2 890347047 +118 675 5 875385386 +204 300 3 892388900 +456 568 2 881374246 +321 529 4 879440342 +43 496 5 883955605 +301 237 4 882074291 +344 972 4 884901503 +395 210 5 883763136 +403 123 3 879786112 +320 566 3 884749384 +141 1244 3 884585364 +363 699 2 891495850 +378 280 2 880044489 +405 400 1 885549044 +380 58 2 885479355 +234 630 2 892334141 +416 496 5 893212572 +416 1089 2 876697695 +406 787 3 880132047 +484 235 2 881450160 +295 1473 4 879519473 +290 230 4 880473557 +330 357 4 876546439 +343 117 2 876403121 +144 847 4 888104063 +254 102 3 886473929 +127 750 1 884363851 +454 507 3 881960265 +239 162 5 889179131 +246 138 1 884923715 +326 705 3 879875399 +94 510 5 885873089 +484 550 4 891195390 +440 1504 4 891578226 +409 489 5 881107817 +201 950 3 884140610 +240 272 5 885775536 +416 930 3 878878814 +268 227 4 875310824 +21 563 2 874951898 +274 846 2 878946204 +60 97 3 883326215 +59 9 4 888203053 +246 652 5 884921033 +268 480 5 875309430 +301 94 4 882079172 +172 612 3 875537964 +486 846 2 879875154 +13 216 3 881515193 +405 302 4 885544635 +456 963 4 881374047 +187 735 4 879465532 +378 195 3 880046516 +405 778 1 885546248 +189 196 5 893266204 +268 407 1 876514002 +468 1008 4 875283843 +318 205 3 884496334 +48 483 5 879434607 +299 346 3 886101436 +401 144 5 891033523 +442 546 3 883390574 +140 294 3 879013651 +290 683 2 880473415 +236 1401 3 890116335 +87 100 5 879876488 +357 280 5 878951831 +422 181 4 875129839 +193 412 3 889127787 +416 1007 5 893213918 +198 403 4 884209353 +484 70 5 891195036 +389 630 3 880087389 +468 209 5 875296309 +94 419 3 891721615 +407 399 3 876342618 +41 196 3 890687593 +292 24 4 881104481 +125 210 5 879454243 +387 4 3 886482969 +461 682 1 885355705 +230 501 3 880485352 +250 844 4 878090414 +398 1126 4 875722533 +83 66 4 880307898 +451 262 1 879012647 +387 357 5 886479690 +138 518 4 879024327 +60 661 4 883326808 +445 1187 3 891200137 +236 523 2 890116221 +450 523 5 882371904 +391 205 5 877399337 +332 1011 3 887938631 +274 762 5 878945610 +332 298 4 887916575 +290 434 4 880474422 +455 343 4 882141285 +276 1006 3 874787353 +389 497 4 879991461 +279 824 4 875297456 +385 659 4 879441942 +174 1 3 886433898 +334 1313 4 891544407 +280 215 3 891701723 +406 1021 5 879446718 +15 251 2 879455541 +457 237 4 882393712 +323 121 3 878739618 +276 653 5 874795729 +465 198 2 883532119 +297 508 4 874955210 +341 358 1 890758050 +293 416 4 888907575 +320 763 4 884748683 +52 864 3 882922661 +200 546 3 884127745 +171 340 3 891034756 +262 99 3 879792262 +177 806 4 880131216 +387 603 4 886480548 +151 448 2 879528779 +15 936 5 879455889 +13 800 1 882397067 +246 211 4 884922605 +326 608 4 879875930 +417 928 3 879646821 +313 185 5 891013773 +308 208 4 887736798 +177 654 4 880131106 +254 1263 1 886474426 +405 625 3 885548836 +368 56 4 889783407 +78 301 5 879633467 +411 709 5 892845604 +447 133 4 878856052 +407 1230 2 876342822 +484 195 5 891195349 +360 744 4 880355066 +24 55 5 875323308 +327 746 3 887818992 +200 826 4 876042556 +6 165 5 883600747 +474 180 5 887924028 +60 181 4 883326754 +11 259 3 891902270 +330 699 5 876547032 +244 581 4 880607903 +467 50 4 879532385 +267 364 2 878974460 +49 145 1 888067460 +194 628 3 879540171 +184 117 2 889907995 +444 1483 2 891978807 +346 431 5 874950616 +374 151 3 880393811 +102 56 3 888801360 +269 357 5 891447773 +123 504 5 879872948 +425 241 2 878738548 +448 269 5 891887338 +406 93 4 879445562 +89 7 5 879441422 +405 671 2 885548330 +417 421 4 879647561 +7 192 4 891352010 +295 229 4 879519010 +359 7 5 886453325 +413 181 5 879969591 +46 125 4 883616284 +406 430 4 879445430 +183 216 4 891479033 +465 109 3 883532119 +425 204 4 890347138 +125 294 4 892835778 +299 167 3 889503159 +128 191 4 879967080 +373 162 3 877098568 +183 212 4 891467870 +408 319 5 889679947 +11 414 3 891905393 +92 234 4 875654297 +474 134 4 887923972 +274 1063 4 878946502 +234 182 3 892078567 +346 616 1 874948890 +23 597 3 874785024 +453 7 5 877562135 +262 423 4 879793854 +455 214 3 879112122 +253 156 3 891628614 +54 340 4 890608225 +102 650 3 888801063 +345 170 5 884902317 +159 1278 3 880557782 +334 230 4 891548808 +110 402 4 886988293 +453 456 3 877552540 +417 392 3 880950280 +141 235 1 884585437 +362 323 2 885019651 +387 233 3 886483151 +210 154 4 887730341 +102 182 3 889362833 +399 407 3 882341644 +465 474 3 883531246 +60 121 4 883327664 +326 38 3 879877005 +405 31 1 885548579 +356 315 4 891405619 +367 218 4 876689962 +435 1109 3 884132643 +287 200 4 875335237 +442 79 3 883390366 +77 201 4 884752785 +164 258 5 889401221 +452 805 4 875562441 +184 402 3 889910013 +256 234 5 882164696 +193 274 3 889126272 +268 402 1 875745231 +417 101 3 879649001 +479 931 2 879460681 +16 467 5 877720733 +416 385 5 893213103 +95 183 5 879197329 +54 7 4 880935294 +429 193 4 882385267 +264 222 5 886122577 +480 175 3 891208356 +7 447 5 891350900 +450 685 4 882374134 +253 732 4 891628651 +267 176 5 878971874 +458 48 4 886396192 +399 187 3 882346401 +370 435 3 879434999 +58 176 4 884304936 +258 258 2 885700811 +253 523 4 891628501 +374 202 3 880394716 +276 1245 3 874787091 +279 712 5 875312339 +416 176 4 876699652 +268 100 3 875742316 +188 483 5 875072009 +249 742 3 879640241 +294 472 3 889242370 +200 451 4 884129006 +339 233 1 891036503 +411 304 3 891034982 +69 763 3 882126156 +156 357 4 888185677 +186 106 2 879023242 +18 60 4 880132055 +451 322 4 879012510 +405 664 1 885546724 +279 990 1 875249134 +296 521 4 884197091 +417 748 4 879646785 +339 257 4 891033710 +249 583 4 879640918 +326 177 3 879876881 +85 319 4 879452334 +5 135 4 875637536 +330 238 5 876546323 +336 33 3 877756242 +254 400 3 886475790 +405 653 1 885548579 +480 183 4 891208651 +206 361 1 888180082 +405 452 5 885548434 +30 258 5 885941156 +442 44 2 883391146 +410 898 3 888627138 +94 1091 3 891722306 +378 423 4 880056287 +184 166 3 889910684 +295 217 4 879517705 +253 182 3 891628374 +385 479 5 879441538 +474 317 4 887925187 +254 133 5 886473158 +467 150 4 879532385 +312 488 5 891698334 +185 690 4 883526267 +82 514 4 878769442 +22 996 1 878887158 +130 746 5 876252012 +409 321 2 881104837 +372 23 5 876869701 +77 511 2 884753152 +62 230 2 879375738 +354 1017 3 891216896 +308 123 3 887738619 +437 213 4 881000931 +237 705 3 879376487 +342 28 2 875319383 +409 97 5 881109216 +157 50 4 886890541 +352 100 4 884290428 +99 619 4 885679091 +446 748 2 879787149 +92 29 3 875656624 +200 1419 5 884130679 +197 399 2 891410082 +95 175 5 879197603 +196 66 3 881251911 +387 273 4 886481151 +117 122 2 886022187 +143 272 4 888407586 +372 185 5 876869445 +94 386 4 891722382 +276 50 5 880913800 +312 428 3 891698424 +259 1135 5 877926006 +151 466 5 879528496 +184 631 4 889910612 +484 300 4 887519214 +387 215 2 886483906 +125 79 5 879454100 +316 170 4 880853810 +23 202 3 874785165 +469 499 5 879524485 +214 708 4 891544152 +145 559 2 877343156 +20 498 3 879669001 +296 257 5 884196921 +178 274 4 882824253 +354 173 3 891217394 +405 1240 1 885549192 +487 1044 3 884051761 +363 653 3 891495682 +459 978 2 879563435 +357 270 5 878951101 +280 232 3 891701649 +130 472 4 876251072 +254 313 5 886470465 +429 24 3 882386309 +348 225 3 886523645 +60 144 4 883325944 +412 724 4 879717095 +286 285 1 879781450 +194 197 4 879522021 +259 475 5 877925049 +361 525 4 879441253 +279 660 4 875313473 +428 301 4 885943782 +458 925 3 886395166 +354 387 4 891307180 +405 622 1 885548877 +450 478 5 887835272 +304 313 5 884968415 +417 655 4 879647900 +458 517 4 886398289 +385 1128 3 879441662 +234 48 2 892334107 +263 100 5 891298453 +387 223 5 886479771 +95 451 3 880572249 +463 410 1 890530286 +92 356 3 875813171 +417 638 4 879648078 +145 800 2 875272349 +198 1142 5 884205114 +447 174 5 878856052 +213 685 3 878870987 +422 15 3 875129882 +298 864 3 884183912 +487 56 4 883528441 +391 31 2 877399659 +269 51 2 891451111 +403 866 4 879786294 +194 135 3 879521474 +385 151 2 879440127 +303 12 4 879466937 +262 660 4 879794419 +222 80 2 881060155 +143 333 5 888407708 +286 251 5 876521678 +280 388 2 891702486 +407 684 3 875045268 +345 11 4 884992337 +416 338 3 880159023 +158 120 1 880134014 +459 322 4 879561679 +429 611 4 882385593 +416 204 5 893213404 +301 588 5 882077055 +65 50 5 879217689 +378 326 3 892382865 +110 1218 3 886989473 +75 220 1 884050705 +344 509 4 889814195 +429 56 4 882384683 +486 471 5 879874969 +159 294 4 884026788 +334 346 5 891544209 +387 1240 5 886483620 +401 202 4 891033319 +305 748 3 886308147 +373 161 4 877105005 +227 288 2 879035072 +194 633 3 879521254 +457 727 4 882396832 +276 426 3 874793092 +393 48 2 889728177 +13 523 4 882141306 +303 216 5 879466604 +291 285 4 874833746 +393 172 5 887745883 +405 40 2 885547735 +145 380 3 885557699 +7 612 5 891351121 +287 845 5 875334587 +437 89 2 880140101 +185 181 4 883524475 +279 234 2 875654542 +335 305 4 891566861 +448 292 4 891888178 +417 81 5 879647196 +363 566 3 891496439 +334 277 3 891544904 +26 151 3 891372429 +373 132 3 877106940 +399 809 3 882352357 +75 756 2 884050309 +62 273 4 879371980 +102 185 3 888802940 +10 697 3 877888677 +184 127 5 889907396 +42 229 4 881108684 +236 210 2 890118153 +85 393 4 879828967 +21 567 2 874951858 +427 1296 5 879701225 +249 1047 3 879640603 +85 10 4 879452898 +125 659 4 879454628 +55 117 3 878176047 +314 378 5 877888168 +69 282 3 882126048 +468 69 4 875291570 +158 168 5 880134948 +195 127 5 875771441 +7 91 3 891353860 +152 215 5 880149882 +286 658 5 877533543 +381 493 4 892697111 +72 443 3 880037418 +464 482 5 878355258 +339 484 5 891032495 +474 484 5 887925751 +54 25 4 880936500 +455 255 2 884027240 +392 180 5 891038371 +385 152 3 879445856 +222 679 2 881059678 +378 226 3 880332831 +361 813 4 879440475 +286 552 3 877535072 +416 997 3 876699526 +289 254 1 876790734 +336 122 5 877757134 +59 276 5 888203095 +234 980 2 891227851 +277 276 4 879543454 +457 370 3 882396133 +85 416 3 882994912 +387 735 2 886484012 +373 1087 1 877104086 +327 2 2 887820385 +394 132 4 880887000 +373 48 5 877098223 +279 1195 1 875312339 +152 410 4 882478038 +291 581 5 874834827 +207 993 3 877879206 +466 349 2 890283636 +393 1178 3 889729460 +456 710 3 881374649 +7 588 4 891352261 +429 128 3 882386424 +45 762 4 881013563 +393 81 2 889728324 +234 530 4 892333573 +398 154 2 875718614 +400 321 4 885676452 +151 525 4 879528570 +5 449 2 875636099 +332 8 5 888360108 +429 134 5 882385728 +416 328 5 893213644 +268 27 4 875744136 +38 84 5 892430937 +417 7 3 879646260 +94 225 3 891722646 +120 15 4 889490244 +5 226 3 875635962 +424 989 2 880859084 +482 321 3 887644023 +411 258 4 892845634 +435 63 2 884133757 +379 684 4 880525469 +95 180 3 880570852 +343 1067 3 876403078 +323 479 4 878739801 +451 683 1 879012470 +187 663 3 879465242 +76 216 4 875028624 +92 1040 3 876175658 +222 209 4 878181457 +377 7 4 891299010 +13 824 3 886302261 +236 1039 2 890115996 +437 131 5 880140787 +97 1 4 884238911 +455 508 4 882141385 +144 242 4 888103444 +381 1407 3 892697314 +454 378 3 888267128 +471 596 1 889827881 +329 198 4 891656268 +87 780 4 879877173 +387 549 5 886484012 +354 287 3 891216854 +458 321 3 889323855 +303 517 5 879484480 +20 588 4 879669120 +426 505 4 879445005 +28 164 4 881960945 +113 328 5 875076044 +1 68 4 875072688 +332 293 4 887916624 +343 79 4 876406144 +456 447 3 881374332 +251 22 5 886271955 +58 692 2 884305123 +235 69 4 889655468 +345 1226 3 884994592 +299 259 3 877877323 +332 12 5 888098205 +305 690 4 886307828 +130 469 5 876251693 +406 275 3 879446061 +96 174 5 884403020 +213 156 5 878955474 +212 199 5 879303831 +354 154 4 891217897 +317 264 4 891446843 +177 12 5 880130825 +435 225 3 884134076 +417 1215 2 879646712 +416 53 2 876699946 +152 371 4 882477356 +95 91 5 880573288 +454 153 3 888267521 +314 761 4 877889073 +407 88 3 876340144 +430 436 4 877226365 +153 294 2 881370859 +416 1041 3 886319408 +169 498 3 891359170 +487 280 5 883444860 +179 302 4 892151173 +21 872 2 874950889 +269 197 5 891447961 +102 672 1 888803148 +94 401 4 891722678 +320 586 3 884749412 +250 235 2 878089786 +7 660 5 891353051 +409 709 4 881108496 +222 651 4 878184290 +487 455 2 883444252 +304 286 1 884967017 +276 108 3 874786924 +94 451 4 891723494 +238 926 3 883576543 +270 546 4 876954484 +65 660 5 879216880 +327 484 3 887745303 +279 396 3 875314231 +322 196 4 887314352 +416 123 4 876697205 +271 118 3 885848132 +222 367 2 878181563 +363 222 5 891496513 +462 358 1 886365638 +471 477 5 889827918 +426 478 4 879442785 +373 633 4 877098262 +5 401 5 875636308 +389 95 3 880165832 +188 226 3 875074266 +280 161 4 891701249 +332 257 4 887916575 +182 191 4 876435434 +327 22 4 887744167 +354 955 3 891307180 +106 12 4 881451234 +55 181 4 878176237 +464 358 3 878354680 +35 261 3 875459046 +13 463 5 882140318 +207 224 3 884386473 +303 95 5 879484480 +21 680 1 874950972 +200 1219 3 884130289 +481 318 1 885828807 +13 327 3 881515521 +422 293 3 875130027 +406 769 1 879793011 +429 436 4 882386171 +38 445 2 892429399 +458 847 5 889324370 +42 173 5 881107220 +222 208 3 881059014 +2 295 4 888551164 +87 62 5 879875996 +27 286 3 891543393 +328 198 3 885045844 +115 183 5 881171488 +339 433 4 891033542 +339 383 1 891036834 +354 275 4 891216526 +431 988 2 877844657 +447 591 4 878855139 +119 1052 4 886177162 +183 77 3 891466405 +431 322 4 877844559 +62 431 2 879374969 +326 485 5 879875483 +271 479 4 885848615 +346 157 3 874950966 +439 257 4 882893737 +399 98 4 882342894 +91 612 4 891439471 +450 177 4 887136369 +130 769 3 880396541 +234 470 2 892335797 +166 984 5 886397802 +83 717 4 880307339 +276 473 4 874786831 +389 1147 4 879991387 +13 672 1 882396914 +463 311 4 889936814 +391 508 2 877400037 +293 742 2 888904927 +391 60 5 877399746 +279 153 5 891209077 +333 255 3 891045624 +405 1139 1 885546859 +414 310 4 884998993 +324 248 5 880575493 +487 597 4 883444674 +79 19 5 891271792 +221 23 4 875245462 +451 264 3 879012604 +385 1012 3 879440211 +379 89 4 880525424 +293 367 2 888906288 +450 742 4 882396564 +280 746 4 891701148 +327 151 4 887745871 +334 762 3 891545044 +263 1126 5 891298391 +487 470 5 883530409 +405 947 1 885548048 +7 294 1 892130809 +220 300 5 881197663 +11 56 4 891904949 +62 252 3 879373272 +389 80 3 880614254 +487 474 4 883445752 +365 342 2 891303614 +164 845 3 889402071 +145 988 1 891510040 +23 294 1 876785901 +311 483 4 884364437 +270 928 4 876956137 +94 647 5 891720921 +361 59 4 879440652 +173 321 4 877556864 +276 410 4 874786686 +18 476 3 880132399 +61 304 4 891220884 +72 134 5 880037793 +429 367 3 882386485 +151 286 5 879523838 +450 1044 4 887139844 +291 5 5 874834799 +135 98 5 879857765 +394 655 5 880888313 +5 405 3 875635225 +264 702 4 886123531 +339 1017 5 891033567 +354 100 5 891216656 +103 1089 1 880420178 +280 162 3 891701431 +44 98 2 878347420 +465 477 4 883530742 +308 143 4 887739136 +14 12 5 890881216 +293 313 4 888904004 +1 146 4 875071561 +456 231 2 881375226 +279 16 4 875296792 +314 1210 4 877889861 +423 977 1 891395787 +417 1018 3 879649247 +334 333 4 891544233 +467 762 3 879532478 +173 269 4 877556626 +311 276 4 884963282 +405 655 5 885545401 +460 129 3 882912261 +90 709 5 891383752 +435 841 2 884134553 +471 99 2 889827918 +279 398 4 875310764 +18 735 4 880130582 +435 123 2 884133509 +373 1147 4 877104115 +379 12 5 880524943 +346 29 4 875264137 +450 509 4 882398567 +115 4 4 881172117 +401 157 3 891033582 +472 118 4 875979082 +303 800 3 879485352 +399 265 3 882342776 +230 515 5 880484567 +416 366 4 886318128 +325 174 2 891478006 +69 475 3 882072869 +268 780 3 875743929 +343 23 5 876404499 +313 192 3 891015011 +87 575 3 879877208 +474 100 5 887915413 +339 451 3 891034151 +486 15 3 879875278 +469 484 5 879524062 +178 318 5 882826982 +83 846 3 891181639 +92 1073 5 875653271 +215 480 5 891436543 +130 54 5 876251895 +13 99 4 882398654 +112 879 4 884992566 +11 716 3 891905058 +454 607 2 888267315 +205 286 2 888284245 +295 660 5 879518143 +130 1151 3 877984840 +416 443 5 893213549 +311 622 3 884364437 +58 124 5 884304483 +378 845 3 880044419 +463 100 4 877385237 +401 528 5 891033442 +461 321 3 885355757 +418 315 2 891282521 +451 319 2 879012510 +75 123 3 884050164 +92 294 3 875640679 +432 123 3 889416312 +343 238 4 876404647 +38 70 5 892432424 +224 1221 3 888082742 +472 756 4 875978922 +381 526 4 892696831 +141 815 4 884585070 +307 215 4 879283036 +334 95 3 891548069 +454 746 2 881959778 +149 323 2 883512928 +474 474 5 887923789 +42 83 4 881108093 +229 245 3 891632385 +128 487 5 879968029 +392 297 4 891038137 +85 258 4 882812472 +458 591 3 886394730 +75 323 2 884049789 +10 50 5 877888545 +13 785 3 882141924 +325 211 3 891478627 +174 953 5 886514377 +463 10 1 890453075 +21 201 5 874951658 +151 137 5 879528754 +473 813 3 878157427 +409 162 4 881109264 +457 12 5 882397666 +412 70 4 879717449 +393 1074 3 889730296 +457 4 4 882397829 +269 154 3 891449189 +97 919 5 884239616 +130 1267 4 875217265 +321 633 5 879440109 +269 528 4 891447593 +280 56 5 891702544 +405 1566 1 885546248 +112 269 3 884992651 +58 11 5 884305019 +226 174 4 883889186 +196 257 2 881251577 +293 809 2 888908117 +352 195 4 884289693 +272 193 4 879455254 +340 946 5 884991647 +450 89 5 882371311 +256 1109 4 882164867 +487 76 4 883530484 +451 1392 1 879012812 +243 1 4 879987239 +393 391 3 889731703 +244 66 4 880607683 +402 25 4 876266926 +468 544 3 875280417 +276 1031 2 874793035 +349 10 5 879465569 +7 231 3 892132885 +328 553 3 885048235 +389 8 4 880086755 +468 405 2 875280462 +171 887 4 891034835 +65 185 4 879218449 +178 756 3 882824983 +178 846 3 882824467 +492 1021 3 879969415 +452 185 5 875264355 +416 1139 3 886318768 +458 410 1 886394778 +435 245 2 884130810 +415 328 5 879439135 +408 286 3 889679683 +398 158 3 875738202 +85 506 4 886282959 +463 3 2 877386083 +21 547 2 874951292 +334 61 3 891550409 +405 49 1 885547407 +461 1006 5 885355890 +178 764 3 888514648 +381 657 4 892696831 +484 554 4 891195565 +425 447 3 878738854 +28 670 4 881961600 +346 173 3 874948475 +20 866 1 879668583 +244 200 5 880606698 +286 1105 5 884583549 +181 1085 1 878962623 +459 181 4 879562939 +269 1135 2 891448456 +362 302 5 885019260 +401 237 3 891032367 +101 845 3 877136302 +177 693 4 880130653 +72 229 1 880037307 +406 526 5 882480511 +464 300 4 878354626 +152 1041 5 882477572 +198 871 1 884205277 +15 455 1 879455914 +84 111 4 883453108 +346 259 2 886273426 +128 328 2 879966406 +401 553 5 891033523 +268 399 3 875743656 +458 330 3 889324461 +222 282 4 877563227 +222 121 3 877564031 +293 111 2 888905062 +11 211 3 891905003 +405 648 1 885547124 +450 238 5 882396928 +1 176 5 876892468 +423 327 2 891394673 +478 151 5 889388038 +210 1012 4 887730789 +96 42 1 884403214 +144 257 4 888104258 +268 120 2 875743282 +65 294 4 879217320 +449 122 1 879959573 +373 366 4 877105857 +312 70 5 891699398 +89 187 5 879461246 +479 28 4 879461800 +429 826 3 882387139 +78 1047 1 879634199 +456 200 4 881374390 +334 89 4 891545898 +393 418 3 887746207 +311 768 2 884365889 +18 416 5 880131144 +429 170 5 882384526 +398 126 4 875652700 +463 103 1 890530703 +18 4 3 880132150 +435 300 2 884130647 +96 7 5 884403811 +446 883 3 879786837 +145 595 3 885557505 +445 504 3 890988206 +296 357 5 884197068 +42 385 5 881108147 +109 211 5 880578230 +358 584 4 891269913 +455 597 3 879110123 +141 121 4 884585071 +442 26 3 883388576 +405 772 1 885546379 +422 217 3 879744143 +276 942 4 889174904 +398 134 3 875658898 +197 333 2 891409111 +92 679 4 875660468 +451 331 5 879012431 +387 209 5 886480206 +151 382 4 879528754 +58 645 5 884304838 +486 823 4 879875347 +109 944 3 880579107 +318 238 3 884497359 +212 423 4 879304010 +270 60 5 876955066 +179 917 3 892151231 +299 1006 4 878192804 +348 409 4 886523710 +235 655 4 889655550 +84 1028 3 883452155 +18 45 5 880130739 +426 191 4 879442128 +328 380 3 885047737 +253 56 3 891628229 +122 193 4 879270605 +194 178 3 879521253 +404 243 3 883790465 +416 1495 3 886318707 +391 328 3 877398552 +23 14 4 874784440 +90 875 1 891382612 +59 232 3 888206485 +16 216 5 877722736 +110 849 3 886988664 +145 89 4 882181605 +227 294 3 879035431 +433 690 2 880585028 +130 501 5 875801716 +493 222 3 884130416 +301 143 4 882077330 +379 200 4 880524582 +222 546 3 877563462 +429 89 4 882385168 +450 29 3 887661438 +468 742 3 875280310 +308 473 3 887739951 +486 1014 3 879874784 +213 252 3 878870456 +380 1045 3 885479799 +291 1059 4 874834345 +274 924 3 878945918 +95 436 5 879198547 +7 201 2 891351471 +435 50 5 884132515 +281 333 3 881200457 +405 1210 1 885548670 +308 82 4 887738470 +407 660 3 876338986 +298 483 5 884125441 +301 550 3 882078040 +313 25 2 891016757 +195 59 3 888737346 +188 629 4 875073246 +456 3 4 881371660 +444 300 4 891979402 +24 238 5 875323274 +216 182 4 883981859 +437 433 3 880140369 +54 24 1 880937311 +128 942 5 879968742 +425 379 2 878738887 +125 323 3 892836124 +403 127 4 879786221 +288 544 5 886892241 +484 25 3 881449561 +65 168 4 879217851 +399 174 3 882342187 +407 4 4 876340144 +235 1021 5 889656090 +470 1097 3 879178487 +151 86 5 879524345 +60 195 4 883326086 +43 189 5 875981220 +389 152 4 880087647 +350 133 5 882346900 +336 168 5 877757700 +296 55 5 884197287 +299 191 4 878192039 +451 260 5 879012580 +14 920 4 880929745 +1 166 5 874965677 +320 627 4 884751418 +452 597 5 885816916 +405 1589 1 885549745 +128 838 5 879968164 +303 482 5 879467361 +158 546 3 880132719 +379 405 3 883156925 +387 64 3 886480206 +279 10 4 875295838 +343 77 3 876405004 +152 120 2 880149686 +189 1400 3 893265684 +189 172 5 893265683 +298 705 4 884182148 +387 1128 4 886481033 +60 385 4 883327799 +60 665 4 883326893 +336 1037 1 877757550 +311 465 4 884365406 +348 107 4 886523813 +437 466 2 881001121 +280 925 4 891701723 +249 1073 4 879640918 +234 183 4 892079585 +487 939 3 883446757 +459 846 4 879563435 +468 507 5 875295412 +407 869 3 875548522 +293 3 2 888905399 +435 226 4 884133161 +453 412 2 877553302 +416 259 2 885114559 +429 820 3 882387233 +419 286 4 879435190 +59 781 4 888206605 +468 294 3 875279153 +393 409 4 887745258 +330 864 4 876544278 +354 20 5 891216498 +403 240 1 879786084 +43 25 5 875975656 +437 969 4 881001888 +85 705 5 882994912 +378 117 3 880044419 +69 1142 4 882072956 +318 213 4 884497031 +254 1443 4 887347382 +332 815 4 887938224 +68 258 5 876973692 +346 89 4 874948513 +123 197 5 879872066 +406 453 2 880132319 +492 318 5 879969878 +451 875 2 879012721 +343 144 4 876405004 +101 1 3 877136039 +1 138 1 878543006 +102 175 4 892991117 +490 1 3 875427148 +436 102 4 887770588 +277 473 2 879543879 +262 169 3 879791844 +213 31 4 878956338 +343 155 1 876407379 +490 333 3 875427021 +458 939 4 886398187 +352 692 3 884290361 +407 859 3 876348639 +214 319 3 891542735 +416 423 4 878880195 +478 684 4 889396531 +264 269 5 886121456 +489 1293 5 891446623 +160 13 4 876768990 +37 665 3 880916046 +249 210 3 879641305 +424 683 3 880859084 +98 168 2 880498834 +213 286 3 878870598 +56 720 3 892910860 +313 837 4 891014898 +92 231 3 875654732 +384 878 4 891274962 +266 285 4 892257940 +328 241 5 885047252 +268 384 3 875743868 +15 306 5 879455165 +213 175 4 878955599 +394 154 3 880887152 +52 471 4 882922562 +445 475 5 891200869 +193 269 4 889123086 +465 481 4 883529984 +115 357 5 881171982 +435 257 4 884134363 +241 343 2 887250085 +74 313 5 888333219 +374 56 5 880394885 +434 546 5 886725076 +402 591 4 876267041 +200 282 4 884127745 +64 97 3 889738085 +244 111 4 880604550 +409 135 5 881107860 +187 97 3 879465717 +119 96 5 874781257 +403 410 2 879790445 +95 391 2 879196566 +457 228 5 882392853 +126 333 2 887853919 +276 1221 3 890979470 +486 221 4 879875040 +429 1443 2 882386601 +483 237 3 878953019 +130 888 3 881076146 +226 508 4 883889984 +271 1411 2 885849895 +293 240 2 888905086 +406 481 3 879446168 +472 250 5 875978059 +336 121 4 877760441 +308 432 4 887737036 +62 56 5 879373711 +1 247 1 875241619 +54 471 4 880937399 +406 715 4 880131821 +18 287 4 880131144 +453 568 3 888207161 +327 8 4 887819860 +299 895 2 884993860 +92 200 3 875811717 +452 1534 1 876298233 +308 254 2 887742454 +181 15 3 878962816 +433 748 4 880585491 +471 588 1 889827881 +221 335 4 876502948 +308 318 4 887736743 +100 300 4 891375112 +195 264 3 890721304 +94 642 4 891720590 +151 118 3 879542588 +151 631 3 879524849 +190 125 3 891033863 +393 808 4 889554882 +60 128 3 883326566 +94 190 5 885870231 +113 303 5 875935244 +373 480 3 877098643 +322 608 3 887314027 +394 550 4 881058101 +398 485 5 875657857 +332 11 5 888359882 +330 148 4 876544781 +117 237 4 880126232 +387 96 4 886480447 +1 89 5 875072484 +269 88 1 891450427 +9 615 4 886959344 +474 161 4 887926633 +145 1073 5 875272009 +490 9 4 875428765 +472 1210 3 875983484 +345 43 3 884993890 +128 873 1 879966524 +455 647 4 879111092 +110 33 4 886988631 +426 418 3 879444871 +472 625 4 875981968 +422 235 2 875130173 +92 198 5 875653016 +158 96 4 880134332 +450 15 3 882812350 +463 930 1 889936180 +458 152 5 886397275 +450 837 4 887835478 +327 4 4 887819161 +199 892 1 883782485 +293 258 3 888904092 +236 132 4 890115897 +279 129 1 884986081 +358 863 5 891269666 +226 527 4 883889430 +132 56 5 891278996 +271 392 3 885848343 +478 673 3 889395696 +119 831 2 874775980 +328 11 3 885047450 +404 259 5 883790491 +268 71 3 875309486 +11 577 3 891905555 +452 14 3 888568076 +428 289 4 885943981 +493 284 4 884130619 +194 90 3 879552841 +411 265 5 892845604 +313 328 4 891012907 +453 42 5 877554301 +94 943 3 891722338 +1 2 3 876893171 +336 94 3 877756890 +125 258 5 892835624 +175 193 4 877108098 +337 515 5 875184280 +393 997 1 889731703 +159 1095 5 880557824 +230 134 4 880484755 +487 1188 3 884045361 +301 144 4 882076021 +210 629 3 891035928 +246 412 1 884923305 +298 527 5 884182725 +437 1134 4 880141008 +344 272 5 885769962 +194 194 4 879523575 +76 324 4 875027206 +453 154 3 877554587 +196 108 4 881252110 +224 1401 1 888104554 +221 1090 3 875246783 +325 2 1 891478772 +445 87 3 890988205 +436 90 3 887770266 +429 640 3 882386533 +130 1034 2 876250833 +458 50 2 886396521 +380 770 3 885480222 +484 141 4 891195886 +270 713 5 876954122 +242 1 4 879740362 +253 588 5 891628416 +311 300 4 884363831 +482 988 4 887643499 +343 87 4 876404613 +13 739 4 886303745 +275 826 2 876197904 +305 163 3 886325627 +189 241 3 893265947 +301 76 4 882078250 +406 634 4 879446361 +293 89 5 888905582 +276 1047 3 889174658 +417 178 3 879646965 +288 427 5 886374342 +343 660 3 876405004 +468 31 3 875287615 +394 1033 3 880889475 +234 216 3 892078605 +389 174 4 879991115 +145 1132 3 875271522 +405 212 1 885546445 +313 525 5 891013525 +181 1349 1 878962278 +303 1270 1 879485770 +276 720 2 874791464 +155 990 3 879371194 +459 825 3 879563474 +397 513 5 885349715 +160 100 5 876767023 +403 471 5 879785822 +122 429 3 879270165 +146 258 4 891457714 +314 501 4 877888610 +244 537 5 880602593 +458 333 1 889323582 +286 417 3 877533993 +43 291 3 883955995 +395 342 4 883762414 +457 474 5 882398178 +400 304 4 885676490 +484 96 5 891195323 +376 514 4 879434613 +458 423 2 886396314 +286 475 4 875807074 +385 160 4 879441572 +450 65 3 882376885 +210 172 5 887736261 +222 79 5 878181906 +354 863 3 891306919 +416 708 4 889907392 +254 64 4 886472051 +267 231 4 878973153 +293 62 1 888907624 +210 23 5 887730102 +406 737 3 879793376 +312 1 5 891698832 +367 919 5 876689790 +43 82 4 883955498 +406 756 3 879540387 +373 392 4 877100061 +489 342 3 891445199 +313 480 5 891013742 +301 1074 2 882078580 +271 660 5 885848971 +14 127 2 879644647 +325 1 2 891478665 +308 30 4 887738933 +338 654 5 879438143 +450 49 5 882469728 +450 176 4 882373088 +162 11 4 877636772 +487 293 5 883441813 +407 269 3 893081121 +407 202 4 876338150 +405 552 1 885548686 +152 71 5 882900320 +305 88 2 886323966 +85 481 4 879454582 +446 294 1 879786984 +222 378 1 881059993 +389 172 5 879991175 +246 475 4 884921637 +174 221 4 886433771 +478 50 3 889396509 +474 921 3 887926271 +12 392 4 879959025 +438 237 5 879868278 +6 22 3 883602048 +213 181 4 878870552 +34 1024 5 888602618 +242 475 3 879740223 +207 137 3 877821612 +44 200 4 878347633 +71 64 4 885016536 +354 507 3 891306892 +435 550 3 884133253 +264 1074 4 886123727 +144 533 4 888104258 +479 168 5 889126007 +141 244 5 884585247 +325 272 3 891477537 +201 171 3 884111678 +263 316 5 891297416 +496 142 2 876067686 +344 955 4 889814195 +468 51 3 875293386 +394 554 4 881058101 +455 196 4 879111737 +250 288 4 878088970 +393 87 4 889554706 +398 95 5 875659266 +76 42 3 882606243 +440 283 5 891577894 +374 148 4 880392992 +380 71 4 885479082 +218 203 4 881288620 +25 479 5 885852569 +332 982 3 887938601 +13 83 2 886303585 +176 151 4 886048305 +194 503 4 879522916 +467 264 2 879532296 +455 161 4 879112098 +406 476 4 879540147 +494 64 5 879541207 +286 883 5 884069544 +100 328 4 891375212 +13 313 4 882774047 +64 265 4 879365491 +330 91 4 876547426 +326 491 4 879876235 +279 421 3 892864867 +335 902 5 891566808 +158 275 5 880132313 +452 173 4 875261350 +193 38 3 889126055 +151 528 5 879524849 +201 1422 2 884114194 +387 319 1 886484384 +360 45 4 880355747 +374 845 2 883627072 +71 257 5 877319414 +394 576 2 881058371 +417 727 5 879648325 +472 232 4 875983321 +268 369 1 875744021 +393 1120 3 887745409 +361 90 2 879441179 +271 218 3 885849087 +256 118 5 882151123 +457 471 4 882393421 +279 413 4 889151529 +396 288 3 884645648 +318 381 1 884497516 +50 319 5 877051687 +18 319 4 880129305 +385 865 4 879924267 +471 94 5 889828081 +378 87 4 889665232 +178 237 4 882824291 +314 794 4 877888952 +450 434 3 882372027 +433 657 5 880585802 +464 328 3 878354722 +77 97 2 884753292 +195 797 3 877835268 +455 300 4 878585250 +452 792 5 887890364 +422 410 5 875130230 +128 132 3 879966785 +181 1389 1 878962119 +373 648 4 877099048 +456 80 2 881374967 +326 720 2 879876975 +456 161 3 881374967 +59 216 4 888205228 +420 319 4 891357188 +178 472 4 882824194 +339 117 3 891034152 +435 136 4 884132434 +457 48 5 882397293 +184 528 5 889908462 +124 172 3 890287645 +483 144 2 878954228 +192 284 5 881367987 +73 255 2 888792938 +90 117 3 891385389 +168 126 5 884287962 +457 980 4 882395283 +145 510 4 882181859 +95 82 3 879196408 +19 319 4 885411465 +58 433 5 884305165 +21 322 3 874951005 +271 476 1 885848062 +195 753 3 874824313 +257 676 4 882050006 +430 9 3 877225726 +303 808 2 879484480 +271 12 4 885848314 +267 789 5 878972119 +5 443 4 875720744 +37 82 1 880915942 +313 823 3 891028555 +405 780 3 885547691 +385 24 3 879440726 +10 157 5 877889004 +15 928 1 879456404 +495 174 5 888632319 +454 82 4 881960446 +305 168 4 886323115 +328 739 3 885048611 +326 397 3 879876975 +432 246 4 889415895 +450 729 4 887139517 +301 527 4 882076238 +6 419 4 883602284 +198 690 3 884204427 +198 25 2 884205114 +452 488 4 885546945 +417 441 3 879648611 +207 291 3 876018608 +328 665 2 885048801 +379 461 4 880525031 +318 24 4 884495132 +90 175 3 891383912 +178 340 1 882823353 +449 1318 2 879959573 +323 741 3 878739543 +450 1184 1 882397049 +158 118 5 880132638 +495 167 4 888636958 +251 111 3 886272319 +145 1290 1 875272732 +224 276 3 888104116 +384 328 4 891274091 +486 689 2 879874064 +324 538 4 880574901 +234 174 3 892078605 +437 404 5 880141374 +13 462 5 882140487 +434 121 4 886724666 +293 503 4 888907145 +477 815 5 875941763 +333 435 4 891045245 +395 98 5 883764061 +454 245 3 881958782 +493 762 4 884130439 +481 210 4 885828165 +455 173 4 879111937 +374 819 3 882157793 +293 297 4 888905034 +58 501 2 884305220 +109 763 2 880571715 +6 50 4 883600842 +345 1117 4 884900810 +192 50 4 881367505 +454 172 2 888266906 +490 284 3 875427993 +56 183 5 892676314 +38 97 5 892430369 +280 98 5 891700208 +447 7 5 878854383 +313 496 5 891014753 +343 324 5 876402468 +479 174 5 889125837 +454 173 2 888267028 +311 729 4 884365451 +110 905 3 886987236 +23 414 3 874785526 +328 270 2 885044641 +416 105 2 876698430 +198 215 4 884208098 +94 25 3 891724142 +486 147 2 879875249 +6 520 4 883600985 +222 216 4 878182632 +15 14 4 879455659 +340 215 5 884990620 +460 286 4 882910838 +401 588 2 891033549 +457 631 4 882547620 +43 313 5 887076865 +353 328 2 891402259 +432 151 4 889415895 +445 845 2 891200320 +294 347 5 889241377 +429 1035 3 882386260 +457 699 4 882548615 +303 575 4 879544219 +493 69 5 884130995 +10 302 4 877886162 +387 50 5 886480108 +7 596 5 891351728 +312 434 3 891699263 +23 124 5 874784440 +256 232 3 882164525 +405 469 1 885546288 +284 262 4 885328836 +467 109 5 879532550 +426 754 1 879441707 +62 605 3 879375364 +486 476 3 879875371 +59 123 3 888203343 +361 475 4 879440475 +476 204 4 883364325 +493 751 5 884129793 +7 611 3 891351161 +106 211 4 881452532 +151 496 4 879524974 +339 650 4 891032438 +387 969 3 886480163 +345 696 3 884991267 +319 269 3 875707746 +131 251 5 883681723 +405 624 4 885548836 +487 658 4 883530434 +58 514 5 884305321 +280 94 2 891702028 +151 152 3 879525075 +363 752 5 891493885 +62 744 3 879372304 +460 289 4 882910838 +280 90 4 891701530 +497 234 2 879361847 +234 1447 3 892336119 +464 709 5 878355258 +456 443 4 881373019 +405 431 3 885547996 +326 501 3 879876688 +11 386 3 891905279 +269 723 1 891448643 +416 126 5 893213103 +20 423 2 879669313 +102 319 4 875886434 +295 91 5 879519556 +339 209 5 891032600 +200 1034 3 891825521 +60 210 4 883326241 +57 245 4 883696709 +473 1129 4 878157507 +473 257 4 878157456 +486 620 2 879875441 +363 469 2 891496077 +393 780 4 889731390 +487 121 4 883444832 +479 325 1 879459791 +291 8 4 874871766 +423 304 4 891394632 +406 28 3 882461684 +433 60 5 880585700 +13 768 4 882398724 +291 238 5 874871736 +274 274 4 878945963 +15 269 5 879455165 +468 71 5 875295148 +429 1203 4 882386357 +84 294 3 883449317 +435 254 3 884134910 +495 71 5 888634111 +42 228 4 881107538 +110 64 4 886987894 +80 303 4 883605055 +484 755 4 891195825 +94 260 2 891725049 +405 1111 1 885547360 +362 328 2 885019504 +457 871 1 882393765 +268 1074 3 875744051 +224 97 5 888082552 +312 69 4 891699182 +456 1 2 881371548 +396 329 2 884645615 +416 276 3 876697243 +232 133 4 888549988 +474 316 5 887914979 +48 480 4 879434653 +256 769 5 882164955 +332 159 5 887939071 +436 127 5 887769930 +62 241 1 879375562 +104 126 4 888465513 +256 568 5 882164603 +117 172 5 881012623 +378 1135 2 880333069 +399 91 4 882345023 +174 239 4 886439537 +406 831 2 879540249 +303 13 4 879484918 +357 10 5 878951831 +339 86 4 891032221 +318 605 4 884497425 +201 387 2 884140825 +315 56 5 879821037 +59 284 2 888203449 +457 597 3 882393908 +357 595 4 878951537 +468 283 4 875280331 +189 105 2 893264865 +472 181 5 875978034 +256 56 3 882164406 +373 1188 3 877106597 +181 845 3 878962816 +40 337 4 889041523 +484 53 1 891195663 +305 1513 2 886322212 +293 955 2 888906464 +244 281 3 880605010 +440 512 3 891578059 +368 181 4 889783678 +218 294 2 881288574 +100 1235 4 891375454 +6 169 4 883600943 +371 42 3 880435397 +301 405 4 882074727 +22 451 4 878887062 +158 745 4 880135044 +297 603 5 875239942 +497 840 3 879310679 +244 833 3 880607878 +331 694 4 877196702 +472 1091 4 875982804 +347 1 4 881652518 +488 480 3 891376110 +378 62 4 880333851 +331 482 2 877196235 +236 203 4 890116132 +396 591 3 884646114 +388 845 4 886437163 +498 475 3 881954617 +311 321 3 884363948 +493 61 4 884131263 +454 1003 2 881960446 +470 294 3 879178237 +297 265 3 875239454 +194 1412 2 879551921 +80 100 5 887401453 +214 427 5 892668172 +95 199 5 880570964 +422 590 2 879743948 +56 158 3 892911539 +177 121 2 880131123 +416 155 5 893212895 +456 479 5 881373900 +394 79 5 880887206 +401 318 4 891032737 +442 159 4 883391299 +256 1228 1 882164643 +207 12 3 878104200 +6 246 3 883599509 +268 158 2 875743678 +450 70 4 882374497 +370 98 4 879434937 +235 327 3 889654594 +207 562 2 875509507 +436 447 1 887769444 +256 1114 4 882153699 +165 15 5 879525799 +476 232 3 883364250 +101 924 4 877136535 +442 342 2 883388147 +178 1016 4 882824253 +255 672 2 883216544 +222 176 4 878181804 +495 139 2 888636810 +429 550 3 882387350 +416 197 5 893213103 +435 1419 2 884133785 +32 288 4 883709915 +478 282 3 889398216 +344 385 2 884901503 +104 10 2 888465413 +94 356 4 891722646 +255 118 1 883216958 +387 219 2 886481686 +379 158 1 885063748 +278 245 3 891295230 +294 332 3 877818915 +184 357 5 889913687 +440 515 4 891578301 +435 73 3 884132403 +316 173 1 880853654 +237 357 4 879376327 +236 211 3 890116539 +57 125 3 883697223 +391 460 4 877400091 +361 737 4 879441179 +377 316 4 891297001 +237 190 4 879376515 +125 1246 2 892838687 +87 48 4 879875649 +314 280 3 877887034 +487 501 4 883531122 +407 99 4 876338883 +495 674 3 888635995 +487 252 1 883445079 +474 649 4 887927588 +144 187 4 888105312 +315 25 5 879821120 +435 403 4 884132756 +308 708 4 887739863 +97 135 5 884238652 +249 203 5 879572167 +145 879 5 877343000 +110 94 4 886989473 +470 824 4 879178731 +346 7 2 874947923 +409 474 5 881107351 +450 728 3 887834953 +268 33 3 875310645 +44 135 5 878347259 +100 1237 3 891375630 +457 436 4 882547619 +402 1048 2 876266985 +429 403 4 882385902 +43 756 3 884029519 +194 357 4 879520916 +296 287 4 884196765 +463 864 3 890530351 +136 647 5 882848783 +395 328 4 883762528 +271 507 2 885848707 +43 939 3 883955547 +116 333 2 876452054 +104 845 3 888465634 +484 651 5 891194910 +394 455 4 880889066 +332 763 5 887938421 +18 520 4 880129595 +244 553 5 880606215 +385 674 3 879447250 +267 515 5 878970710 +26 276 4 891386369 +269 204 2 891449842 +60 510 5 883327174 +268 579 1 875744021 +415 56 5 879439865 +405 50 5 885544947 +397 504 5 885349865 +429 481 3 882386237 +201 1428 4 884114099 +72 525 4 880037436 +44 132 4 878347315 +416 1091 3 892441516 +91 988 2 891438583 +405 969 3 885545015 +313 486 3 891015219 +130 299 3 874953526 +336 63 2 877757268 +447 183 5 878856394 +59 59 5 888204928 +496 64 3 876066064 +434 275 3 886724633 +104 840 1 888466086 +497 1185 1 879363205 +488 568 3 891294707 +417 382 2 880949941 +347 187 5 881653652 +63 475 4 875747319 +452 420 3 875562510 +479 248 4 879460192 +246 853 5 884922383 +213 222 3 878870790 +437 393 3 880382747 +58 300 4 884388247 +405 185 4 885544769 +87 232 3 879876037 +488 510 4 891294854 +378 235 4 880045006 +21 878 2 874951039 +270 145 3 876956419 +198 168 4 884207654 +286 176 4 878142001 +383 81 4 891193072 +207 826 2 877751143 +472 400 5 892791062 +412 206 2 879717649 +7 682 2 891350383 +293 856 3 888905686 +75 845 3 884050194 +343 83 4 876404957 +436 392 4 887769079 +133 272 5 890588672 +338 301 4 879437655 +455 1174 3 879109663 +437 1211 4 881001208 +435 190 4 884132146 +290 403 2 880475542 +308 248 4 887741437 +436 895 4 887768717 +497 227 2 879310883 +287 50 5 875334271 +444 100 5 890247385 +406 596 3 879540078 +363 1035 2 891497925 +314 1152 4 877887469 +452 971 4 875560019 +92 742 3 886443192 +237 179 4 879376641 +52 22 5 882922833 +384 271 4 891283502 +456 818 3 881372114 +64 50 5 889737914 +16 143 5 877727192 +311 177 5 884364764 +94 77 3 891721462 +479 528 4 879461060 +328 823 3 885049024 +286 181 3 875807043 +487 672 4 884024462 +421 517 2 892241491 +453 188 4 877554466 +303 1157 2 879543711 +405 179 1 885546201 +230 570 4 880485689 +130 262 3 877926419 +186 829 4 891719775 +94 369 1 891723459 +497 363 2 879310649 +489 289 2 891366748 +432 763 5 889416570 +393 417 3 887746523 +454 88 4 888267560 +22 840 4 878888184 +251 64 5 886271640 +425 363 1 878739095 +429 705 4 882384896 +354 137 3 891216575 +230 609 3 880485311 +279 372 4 875310117 +268 124 4 875742499 +118 919 5 875385386 +417 508 3 879646123 +452 269 5 888568251 +406 222 3 879445735 +296 198 5 884197264 +92 91 3 875660164 +416 55 2 876699102 +181 989 1 878961780 +295 188 3 879518042 +181 1337 1 878963121 +22 932 1 878887277 +462 289 5 886365837 +59 606 4 888204802 +201 227 4 884310149 +264 194 5 886123358 +152 237 5 880148734 +7 529 2 891352626 +419 223 4 879435785 +234 47 2 892334543 +487 276 3 883444252 +363 760 1 891499993 +236 432 5 890118251 +239 675 5 889180617 +145 300 3 875269755 +13 606 4 882140130 +487 932 3 883444941 +391 288 3 877398679 +442 286 2 883388031 +64 162 3 889739262 +83 732 4 880308390 +90 302 5 891383319 +190 281 3 891042916 +404 289 1 883790492 +133 346 3 890588577 +423 1265 4 891394788 +62 554 1 879375562 +23 132 4 874785756 +194 229 1 879535548 +40 305 4 889041430 +312 206 5 891699399 +340 199 5 884990988 +469 610 4 879523947 +357 245 4 878951101 +334 345 2 891544177 +90 606 5 891383173 +5 257 5 875635239 +420 753 5 891356864 +236 483 5 890116221 +330 132 5 876546498 +328 399 2 885049405 +13 773 1 882396869 +416 554 3 886318394 +299 311 4 880198334 +128 340 4 879966355 +465 300 3 883529601 +18 168 3 880130431 +435 90 4 884132756 +455 511 5 879110971 +95 1091 3 880572658 +416 747 5 893212929 +342 606 5 875318882 +413 257 4 879969592 +417 715 2 879648656 +466 321 2 890282986 +450 174 5 882374422 +286 111 5 876521858 +436 746 5 887770015 +152 1301 5 884018462 +499 511 5 885599227 +499 210 3 885599201 +405 1592 1 885549903 +276 84 2 877934232 +437 483 5 880141962 +417 242 3 879645999 +82 168 5 878769748 +417 871 2 886187012 +416 402 5 893212623 +178 82 5 882826242 +126 315 4 887853469 +301 156 4 882076098 +311 549 2 884366111 +87 202 5 879876403 +200 69 5 884128788 +491 475 4 891185170 +267 455 3 878970578 +62 70 3 879373960 +84 274 4 883452462 +130 27 4 875802105 +276 264 3 892436418 +491 45 5 891189631 +276 750 4 882659186 +311 127 4 884364538 +370 856 3 879435033 +474 705 3 887924619 +301 91 3 882078906 +26 750 4 891347478 +334 310 3 891544049 +23 275 5 874785474 +450 1047 4 882469941 +272 98 4 879454797 +354 421 2 891306852 +194 546 3 879541806 +7 143 3 892132627 +13 200 3 882140552 +493 252 4 884130619 +75 926 3 884050393 +481 1089 3 885828072 +244 946 4 880607545 +311 63 3 884365686 +130 423 5 875216978 +268 222 4 875742275 +435 542 1 884133691 +346 141 4 874950692 +498 176 2 881956498 +435 186 4 884132367 +117 678 4 880124435 +292 250 3 881104679 +472 120 5 883904649 +393 727 3 889729614 +442 168 4 883388325 +7 678 3 891350356 +378 744 3 880044609 +87 199 5 879875649 +267 64 5 878972193 +18 153 4 880130551 +95 31 4 888954513 +453 33 4 877561522 +432 315 5 889415763 +437 737 1 880142614 +487 117 5 883443504 +307 227 5 879538922 +129 286 5 883243934 +407 879 3 878597296 +388 111 3 886437163 +85 432 4 880838305 +16 282 5 877718755 +109 735 5 880577989 +347 157 5 881654567 +215 496 5 891435183 +280 176 3 891700426 +130 252 5 876250932 +456 737 3 881375254 +94 703 3 891721562 +21 300 3 874950889 +207 23 4 875509888 +64 22 4 889737376 +387 61 3 886483565 +416 11 4 876699238 +90 703 3 891384997 +207 179 4 877822224 +151 1039 4 879524471 +43 1047 3 883956387 +42 582 3 881108928 +164 293 4 889402121 +286 1375 5 889651445 +200 169 5 884128822 +404 343 1 883790656 +477 280 4 875941022 +379 701 4 892879481 +301 240 4 882074494 +11 258 5 891901696 +61 258 4 891206125 +85 527 4 879455114 +16 502 4 877723670 +456 460 3 881371942 +145 929 2 888398069 +27 244 3 891543222 +445 829 1 891200624 +407 244 3 884614753 +427 874 5 879701326 +39 313 4 891400159 +429 140 1 882386260 +456 933 3 881371595 +367 176 5 876689738 +319 268 4 889816026 +334 1014 2 891545293 +15 13 1 879455940 +486 874 3 879874297 +45 934 2 881015860 +2 242 5 888552084 +427 245 5 879701326 +325 137 5 891477980 +362 264 1 885019695 +297 114 5 875239569 +59 161 3 888205855 +416 297 4 876697448 +328 28 5 885045931 +472 151 3 875978867 +85 284 3 879452866 +426 132 4 879442083 +360 1 3 880354315 +296 293 5 884196765 +455 323 3 878585277 +406 63 3 880131821 +59 22 4 888204260 +21 674 2 874951897 +117 789 4 881011413 +196 202 3 881251728 +279 70 1 875309141 +85 57 5 879828107 +59 1021 4 888204996 +374 763 3 880393754 +75 477 4 884050102 +119 1034 3 874775980 +374 144 5 880394716 +493 431 5 884132037 +28 859 3 881961842 +312 463 5 891698696 +493 121 5 884131690 +276 240 4 874786713 +321 211 4 879440109 +371 210 4 880435313 +83 71 3 880328167 +467 268 5 879532164 +376 246 3 879459054 +271 526 5 885849188 +360 582 4 880355594 +394 679 3 881058062 +201 1011 3 884140853 +393 1244 3 887745380 +272 210 5 879455220 +176 475 5 886047918 +463 285 4 877385125 +311 100 1 884963136 +392 169 4 891038978 +281 308 1 881200297 +325 604 4 891478504 +495 153 5 888633165 +244 721 5 880602031 +313 322 3 891014313 +472 195 5 875982005 +456 218 4 881374522 +169 483 3 891359200 +460 532 3 882912370 +291 706 3 874867785 +312 187 5 891699345 +127 222 5 884364866 +234 430 4 892333683 +380 28 4 885479436 +450 723 3 882399818 +474 488 3 887925977 +343 744 4 876402941 +173 874 4 877556926 +16 95 5 877728417 +59 99 4 888205033 +432 410 4 889415895 +451 457 2 879012890 +388 769 3 886441306 +181 455 1 878962623 +376 198 5 879454598 +442 780 3 883388986 +435 674 2 884132643 +334 678 3 891544446 +387 790 1 886482969 +211 9 3 879460172 +184 378 4 889909551 +298 194 5 884127249 +64 768 2 889739954 +402 864 3 876266926 +393 3 3 887745293 +328 699 4 885046718 +364 294 5 875931432 +53 121 4 879443329 +184 183 4 889908630 +102 665 1 888802319 +474 191 5 887923789 +11 745 5 891905324 +234 153 3 892333830 +165 176 4 879526007 +417 428 3 879647966 +16 404 5 877728417 +462 332 5 886365706 +184 44 4 889909746 +30 259 4 875058280 +95 170 5 880573288 +20 181 4 879667904 +416 289 3 876696788 +456 68 4 881374437 +474 136 4 887925187 +425 298 4 878738992 +92 755 3 875656055 +373 265 4 877105901 +407 185 5 875044597 +379 736 4 880525945 +434 220 5 886724873 +342 282 1 875318366 +366 413 4 888857598 +308 510 3 887736925 +339 69 4 891032633 +495 89 3 888632888 +130 269 4 881075976 +121 479 5 891388113 +318 289 3 884470682 +284 347 5 885328727 +446 880 2 879786943 +125 195 5 892836465 +380 213 2 885479319 +408 288 4 889679791 +486 321 3 879874153 +455 582 2 879111982 +313 770 4 891028285 +144 196 4 888105743 +312 174 5 891698224 +210 94 4 891036181 +348 988 3 886522799 +276 402 3 874791407 +386 515 5 877654961 +395 596 2 886481149 +435 800 4 884133819 +385 896 5 883869456 +189 99 5 893265684 +230 79 5 880484778 +256 403 4 882164603 +396 1399 3 884645942 +345 56 5 884902317 +423 276 5 891395602 +343 152 4 876404612 +85 447 3 882994767 +399 84 2 882345842 +375 939 3 886622024 +393 237 4 887744328 +405 996 1 885547268 +395 257 5 883765386 +296 100 5 884196489 +346 748 4 874947380 +479 135 4 879461255 +280 29 3 891701852 +339 99 4 891035180 +436 1119 4 887769368 +291 31 4 874834768 +199 116 5 883782807 +60 174 4 883326497 +405 66 5 885547268 +128 121 4 879968278 +206 269 4 888180018 +380 95 4 885479274 +500 111 4 888538350 +451 984 4 879012647 +492 492 4 879969512 +123 435 5 879809943 +206 308 2 888180049 +424 275 5 880859410 +496 526 3 876067597 +426 490 4 879444853 +135 288 3 879857575 +38 402 5 892430539 +331 32 4 877196633 +472 763 4 875978922 +484 265 5 891195476 +154 919 4 879138712 +144 215 4 888105714 +369 50 5 889428642 +89 111 4 879441452 +493 82 5 884132058 +457 241 3 882398086 +299 88 3 889502902 +497 566 3 879310941 +232 531 4 888549647 +425 257 3 878738992 +412 408 4 879717016 +165 222 5 879525987 +339 88 4 891035454 +399 405 3 882340599 +94 728 2 891723748 +13 663 5 882140252 +276 931 2 874836682 +174 269 5 886432811 +272 50 4 879454900 +276 79 4 874792436 +83 508 2 887665655 +409 676 2 881108777 +420 275 5 891357071 +180 186 4 877127189 +407 629 3 876339975 +359 286 5 886453161 +474 48 4 887923923 +312 850 5 891698764 +43 111 4 883955745 +339 436 4 891035147 +320 226 4 884749306 +181 363 1 878963342 +397 332 2 882838773 +383 268 5 891192338 +476 72 4 883364433 +12 133 4 879959670 +385 451 1 879447205 +95 1101 2 879197970 +301 265 4 882075672 +387 226 3 886483252 +391 8 3 877399030 +472 747 5 875982051 +450 477 4 887660762 +457 722 4 882550154 +314 393 4 877889133 +346 215 3 874948303 +262 433 4 879791790 +451 682 4 879012580 +114 56 3 881260545 +184 176 4 889908740 +83 527 4 880307807 +13 350 2 886302293 +348 934 4 886523839 +193 310 4 890834947 +405 1099 1 885549588 +379 285 5 880524753 +291 290 4 874834001 +430 273 4 877225894 +349 596 2 879465814 +459 79 3 879566291 +90 607 5 891384673 +82 1163 2 884714204 +502 892 2 883702867 +373 136 4 877099091 +432 258 4 889416657 +236 476 3 890117308 +417 217 4 879648594 +195 982 2 877835350 +488 748 4 891293606 +450 419 5 887660504 +192 121 2 881368127 +15 252 2 879456351 +109 323 3 880562908 +97 204 5 884238966 +334 655 4 891546257 +109 265 5 880578185 +450 689 3 882216026 +172 606 3 875537964 +37 273 3 880915528 +284 307 4 885329322 +423 326 4 891394874 +11 654 3 891905856 +222 735 5 878184087 +118 559 4 875385306 +85 188 2 879454782 +379 62 2 888646058 +437 517 4 880140927 +396 829 3 884646648 +376 111 4 879459115 +181 974 4 878963417 +391 604 4 877399380 +363 159 1 891496667 +214 181 3 891543036 +178 322 3 882823460 +85 222 2 879452831 +13 342 4 885744650 +84 276 4 883449944 +452 554 3 875562245 +214 650 5 892668173 +398 732 4 875719199 +182 203 3 876436556 +22 167 3 878887023 +48 1065 2 879434792 +249 89 5 879572229 +428 908 4 885944024 +457 456 2 882395851 +301 203 4 882077176 +497 465 3 879363610 +452 171 4 875277472 +253 22 5 891628435 +373 403 3 877106741 +464 333 4 878354761 +97 431 3 884239616 +421 182 5 892241624 +181 1038 1 878962005 +480 203 4 891208520 +328 1483 4 893195825 +336 105 4 877755098 +91 498 3 891439271 +434 125 5 886724708 +336 732 3 877756356 +429 15 5 882386941 +424 689 1 880858887 +370 285 3 879435193 +420 251 5 891357070 +500 781 3 883874776 +407 448 4 875553460 +446 326 2 879786943 +487 739 2 884046879 +367 179 5 876689765 +223 866 4 891549945 +389 514 5 879991329 +16 79 5 877727122 +145 202 4 875272694 +33 245 3 891964326 +454 605 2 888267487 +405 1018 1 885549589 +450 582 4 882394097 +339 234 4 891032255 +346 117 4 874950054 +60 8 3 883326370 +289 21 1 876790499 +241 335 3 887250085 +275 515 3 876197552 +43 1023 3 875975323 +297 8 5 875239795 +466 331 5 890284231 +396 619 3 884646191 +264 676 3 886123172 +64 568 4 889737506 +474 257 3 887915511 +198 210 4 884207612 +503 181 5 879438319 +416 1037 2 892440156 +381 150 4 892697542 +275 154 2 875154878 +343 786 4 876406181 +90 837 5 891384476 +85 423 4 879454046 +18 211 5 880131358 +11 57 2 891904552 +474 77 5 887926106 +459 282 3 879562995 +279 146 1 875297281 +94 176 4 891720570 +450 270 4 882216108 +502 301 1 883702370 +393 69 4 887745883 +89 1074 5 879459909 +406 431 3 882480710 +283 175 4 879298270 +222 41 3 881060659 +189 283 5 893264300 +347 77 5 881654386 +406 3 3 879540228 +80 213 3 887401407 +64 603 3 889737506 +474 76 4 887926573 +378 619 3 880044879 +418 258 5 891282551 +95 596 2 879193651 +198 101 5 884209569 +194 498 3 879521595 +472 682 4 887297923 +64 11 4 889737376 +493 100 5 884130308 +472 318 5 892791017 +332 273 5 887938277 +392 1012 4 891038184 +284 748 3 885329671 +294 340 4 889241280 +142 408 4 888640379 +450 7 4 882376885 +303 29 2 879485134 +440 323 1 891577504 +411 720 3 891035761 +427 989 5 879701253 +458 717 1 886395230 +325 1003 3 891480133 +396 1028 3 884646191 +213 432 4 878956047 +303 1273 2 879485278 +488 434 4 891294785 +188 498 5 875073828 +310 1386 1 879436177 +250 1199 3 878089467 +141 259 1 886447904 +13 829 3 882398385 +406 427 4 879445897 +503 1316 1 892667252 +253 331 3 891627664 +92 240 2 875640189 +151 171 5 879524921 +399 722 2 882348153 +429 201 3 882385399 +175 234 5 877108015 +391 69 4 877399618 +472 609 5 875981551 +467 288 4 879532804 +292 58 5 881105442 +499 664 3 885599334 +496 132 3 876065881 +286 90 4 877533224 +419 514 4 879435785 +254 548 2 886475319 +435 367 3 884131741 +496 1074 2 876068100 +346 12 5 874950232 +354 1194 4 891217429 +173 305 5 877556626 +3 321 5 889237455 +387 135 5 886480288 +305 479 3 886323275 +354 189 3 891217249 +378 924 3 880331938 +339 317 4 891032542 +122 661 4 879270327 +188 28 3 875072972 +57 833 4 883697705 +251 685 4 886272585 +345 288 3 884901497 +203 288 5 880433368 +43 269 5 888177393 +313 178 5 891013773 +51 83 5 883498937 +158 209 5 880135001 +487 172 4 883530409 +405 1267 1 885546379 +135 56 4 879857765 +489 292 4 891366693 +450 155 4 882396564 +161 265 2 891171597 +342 732 3 875319786 +222 729 4 878184315 +340 88 5 884991584 +360 405 3 880354347 +344 137 5 884814668 +450 12 4 882373231 +416 82 5 893213444 +360 174 3 880356240 +407 316 4 887833034 +248 196 2 884535013 +450 774 4 882399818 +363 742 2 891497076 +493 879 4 884129823 +314 411 4 877892461 +433 194 5 880585759 +404 258 4 883790181 +327 1170 4 887819860 +430 288 4 877225239 +77 56 4 884752900 +294 476 3 877819792 +15 927 4 879456381 +438 121 5 879868328 +200 177 4 884129656 +479 55 4 879461207 +167 225 3 892737995 +295 230 4 879517271 +43 408 5 875975492 +450 383 2 882468790 +180 380 5 877127796 +415 180 5 879439791 +295 158 4 879518932 +66 741 4 883601664 +383 504 4 891193108 +346 951 2 874950463 +495 478 4 888632443 +392 170 5 891039015 +446 311 2 879787858 +214 318 4 892668249 +334 28 3 891546373 +416 531 5 893212572 +424 243 4 880859115 +366 445 5 888857932 +226 408 5 883888853 +425 7 3 878738290 +170 326 5 886623057 +469 136 4 879524062 +449 171 4 880410599 +487 218 2 883531507 +26 304 4 891348011 +11 317 4 891904174 +324 275 4 880575531 +92 71 5 875654888 +92 12 5 875652934 +244 660 4 880603881 +280 1035 4 891701785 +305 1015 1 886323068 +458 13 4 886394916 +453 233 2 888206003 +437 133 5 880140122 +1 30 3 878542515 +429 291 4 882386309 +426 510 4 879441978 +450 488 4 882371415 +345 28 3 884916441 +7 628 3 891352831 +494 183 5 879541158 +394 50 5 881132876 +18 486 3 880131559 +343 528 3 876405004 +334 50 5 891544867 +423 690 4 891394832 +465 496 3 883531246 +474 265 5 887924425 +489 321 3 891447845 +495 658 3 888635380 +500 1012 4 883865021 +305 153 3 886323153 +15 255 5 879455764 +504 163 4 887840517 +177 55 3 880131143 +288 345 5 886372155 +184 443 3 889911552 +193 402 3 889126375 +21 675 5 874951897 +493 423 2 884131020 +4 328 3 892001537 +222 73 4 878181976 +500 159 2 883876251 +174 1035 4 886515532 +94 569 1 891722980 +368 201 5 889783407 +484 343 2 883402932 +272 23 5 879454725 +453 97 3 877554743 +123 100 4 879872792 +293 933 2 888905399 +416 339 5 893214225 +85 170 4 879453748 +429 1079 2 882387164 +5 25 3 875635318 +261 301 4 890454246 +270 722 4 876955689 +398 63 2 875732862 +399 157 3 882342019 +378 792 4 880046475 +85 100 3 879452693 +336 762 5 877756890 +329 284 3 891656072 +456 431 4 881374437 +275 196 3 880314969 +495 413 5 888636032 +268 541 3 875744357 +378 380 3 880333695 +1 63 2 878543196 +301 29 4 882078492 +462 678 3 886365335 +481 66 3 885828203 +431 754 3 881127436 +435 943 3 884131712 +406 514 1 879445562 +347 235 2 881653224 +323 186 4 878739988 +95 449 3 879196665 +500 665 3 883876714 +130 248 3 874953769 +450 145 3 887661438 +426 525 4 879442227 +221 218 4 875246308 +503 69 4 880383679 +143 313 5 888407586 +125 216 3 879454419 +435 40 3 884133544 +472 685 3 875978740 +5 442 1 879198898 +8 233 4 879362423 +18 61 4 880130803 +440 751 3 891549397 +215 191 4 891435460 +16 941 1 877720437 +48 1064 4 879434688 +294 363 1 889243393 +231 255 3 879965760 +355 264 4 879485760 +64 310 4 889737047 +498 191 4 881957054 +311 215 4 884364999 +151 185 4 879528801 +125 369 3 892838777 +280 217 3 891701832 +40 286 2 889041430 +454 519 2 888267455 +399 318 5 882342589 +222 228 5 878181869 +194 625 3 879527145 +119 689 4 886175431 +331 124 4 877196174 +339 100 5 891032286 +102 168 3 888803537 +405 1547 2 885546288 +174 451 5 886513752 +396 300 3 884645550 +416 21 3 876697415 +251 472 3 886272585 +417 201 4 879648478 +405 207 1 885549543 +498 192 5 881957546 +167 726 1 892738385 +336 796 3 877758035 +478 276 5 889388862 +436 739 4 887771853 +450 401 3 882397224 +70 214 3 884067842 +361 333 2 879441490 +435 11 5 884131542 +372 1273 4 876869957 +405 1400 1 885545975 +207 298 3 875509150 +178 790 3 882827870 +7 98 4 891351002 +346 50 5 874947609 +119 762 4 874775465 +474 553 2 887927339 +5 186 5 875636375 +268 738 2 875744021 +234 1121 5 892334481 +299 190 5 877881356 +10 694 5 877892437 +94 722 2 891723494 +201 82 4 884114471 +85 28 4 879829301 +478 866 1 889388273 +268 164 2 875744556 +82 9 4 876311146 +339 702 4 891035850 +409 749 3 881105367 +347 164 3 881654752 +179 690 1 892151489 +479 286 1 879533972 +435 215 2 884131576 +456 498 4 881373473 +128 499 5 879967767 +94 475 5 885870362 +483 181 4 878950971 +405 557 1 885549650 +130 892 3 884623832 +425 252 2 878739054 +314 697 3 877888996 +483 900 3 885170586 +393 685 3 887744517 +268 229 2 875310784 +227 137 5 879035289 +282 262 4 879949417 +369 243 3 889428228 +303 53 3 879485608 +429 195 4 882385519 +269 239 2 891448386 +463 306 4 877384836 +450 301 4 882216475 +499 312 4 882995923 +505 193 3 889334477 +350 172 5 882345823 +437 484 4 880140051 +345 702 4 884993418 +387 98 4 886480244 +470 544 3 879178830 +246 238 5 884921429 +466 172 4 890284706 +409 9 4 881107992 +489 1238 4 891445352 +371 265 5 880435544 +283 202 5 879298206 +417 184 4 879647749 +62 655 3 879375453 +233 261 5 883356913 +141 7 5 884584981 +426 605 4 879442083 +463 274 3 877385664 +497 31 3 879361802 +102 409 2 892993855 +256 31 5 882164867 +437 216 5 880141041 +263 174 5 891299697 +315 428 4 879821120 +13 686 5 882397146 +234 5 3 892334338 +279 283 3 875296652 +177 358 2 882141918 +14 319 1 884482684 +110 401 3 886989399 +144 435 4 888105387 +405 76 3 885545606 +284 900 4 885328991 +500 836 5 883874290 +177 223 4 880130758 +13 417 2 882398934 +105 748 2 889214406 +399 1035 3 882352065 +487 43 3 884042206 +416 83 5 893213444 +354 509 5 891218249 +145 939 4 875272050 +450 468 4 882376803 +454 482 3 881960230 +446 288 2 879786838 +234 1168 2 892335108 +234 855 3 892079803 +421 516 5 892241554 +193 562 3 889126055 +416 633 4 876699757 +210 56 5 887730264 +307 401 1 879114143 +457 455 4 882393384 +160 1012 5 876769689 +417 764 3 879646677 +48 519 3 879434689 +466 566 3 890284819 +497 540 2 879311007 +426 318 5 879442044 +65 255 3 879217406 +301 118 4 882074903 +126 346 3 887853735 +166 294 3 886397596 +3 260 4 889237455 +313 77 3 891031950 +145 276 1 882182634 +399 1137 4 882340556 +387 293 4 886481002 +352 172 5 884289759 +417 792 4 879648079 +499 347 4 885597932 +463 988 2 877384836 +294 752 3 889241377 +453 578 3 888205764 +264 184 5 886122447 +506 470 4 874873423 +170 984 5 884103918 +322 156 4 887313850 +144 326 4 888103530 +450 157 3 882394180 +379 704 3 880524835 +456 12 3 881373655 +157 290 4 886890787 +493 886 2 884129868 +210 180 4 887735872 +32 240 2 883717967 +422 222 4 875130137 +459 295 3 879563367 +417 475 4 879646437 +279 181 3 875298494 +4 258 5 892001374 +65 651 4 879216371 +416 142 4 886319340 +436 96 4 887769535 +92 92 4 875654846 +495 797 4 888635524 +303 458 3 879467936 +303 381 4 879467574 +394 229 3 881132958 +493 11 3 884130852 +59 3 4 888203814 +49 82 1 888067765 +85 641 4 879454952 +482 289 3 887644023 +405 649 1 885546445 +87 22 4 879875817 +128 71 4 879967576 +14 921 5 890881384 +6 293 3 883599327 +221 386 3 875246662 +495 127 4 888634955 +294 307 3 889241466 +450 771 3 887835478 +456 1478 4 881374993 +342 223 4 875318907 +386 222 4 877654961 +373 156 2 877098374 +405 239 3 885546112 +181 983 2 878963038 +365 1420 2 891303454 +399 1246 1 882511876 +244 780 4 880602843 +216 412 2 880233197 +416 739 5 893212896 +331 214 3 877196702 +279 470 3 878262194 +437 229 3 880142942 +110 226 3 886988536 +90 1097 4 891384885 +496 183 2 876065259 +474 79 5 887924027 +110 56 1 886988449 +178 281 3 882824028 +409 264 1 881105366 +405 1346 1 885549790 +267 1090 3 878973854 +235 303 4 889654483 +399 651 3 882509971 +405 812 1 885548877 +455 2 4 879111786 +70 483 5 884064444 +500 1047 3 883865985 +452 498 4 875264976 +472 380 5 875982511 +488 33 2 891294976 +414 300 4 884999066 +11 405 3 891904016 +327 85 2 887819507 +327 1103 4 887819614 +354 1065 3 891217512 +405 791 1 885547605 +292 1142 4 881104481 +459 3 2 879563288 +270 531 4 876954945 +210 195 4 887736429 +453 11 5 877554174 +118 7 5 875385198 +301 665 2 882079334 +90 485 5 891383687 +457 640 4 882548467 +83 204 5 880307922 +394 208 5 880888746 +5 432 4 875636793 +500 294 3 883864578 +295 43 4 879518107 +145 486 3 882181659 +506 1046 4 874874396 +30 2 3 875061066 +103 204 3 880423118 +308 499 3 887738619 +455 465 3 879112678 +495 140 5 888635419 +317 322 3 891446783 +387 217 3 886481687 +128 222 3 879967249 +405 761 1 885548049 +16 4 5 877726390 +452 96 2 875275699 +216 313 5 883981737 +472 27 4 875980283 +497 242 1 878759351 +282 890 4 879949468 +233 640 2 875508639 +303 847 4 879466830 +62 875 4 879371909 +452 483 5 875263244 +128 197 4 879966729 +381 517 4 892696557 +319 306 4 879975504 +387 222 4 886481073 +474 610 3 887924571 +174 12 5 886439091 +463 1383 2 890530703 +448 303 4 891887161 +214 479 4 891544052 +185 1020 4 883524172 +416 77 4 893142480 +488 198 4 891375822 +200 226 4 884130085 +504 546 4 887831947 +456 1019 4 881372849 +227 324 4 879035963 +417 419 4 879646986 +158 89 5 880133189 +328 1313 4 888641949 +390 277 2 879694123 +457 742 4 882393306 +458 209 4 886397155 +444 678 3 891979403 +293 1208 3 888906990 +269 157 3 891448092 +488 405 3 891294014 +175 147 3 877108146 +4 210 3 892003374 +198 300 2 884204427 +416 317 5 893213444 +7 199 5 892135346 +355 360 4 879486422 +49 627 2 888067096 +505 140 4 889334129 +409 12 4 881107056 +387 547 4 886484561 +435 659 4 884131515 +291 469 5 874867912 +430 1347 5 877226047 +429 570 4 882387434 +18 951 3 880129595 +409 60 5 881108715 +22 862 1 878886845 +448 884 4 891889281 +443 271 4 883504682 +454 196 2 881959778 +357 105 4 878952342 +308 88 4 887740568 +474 646 4 887925395 +271 137 4 885847636 +11 692 4 891905003 +493 96 4 884130793 +429 280 2 882387392 +435 174 5 884131627 +448 896 5 891887216 +291 1478 2 874871585 +399 1231 3 882350487 +1 249 4 874965970 +487 232 4 883530764 +361 1103 4 879440386 +365 995 4 891303694 +7 229 3 891352384 +168 275 3 884287822 +37 174 5 880915810 +328 688 1 886036585 +409 210 4 881109175 +339 483 5 891032121 +404 331 3 883790249 +381 995 4 892698031 +128 652 3 879966603 +44 380 4 883613334 +94 1014 4 891724256 +337 471 5 875235809 +346 944 3 874951714 +90 661 5 891385522 +290 483 5 880473845 +181 924 3 878963168 +437 473 5 881001888 +407 218 4 876338946 +469 641 4 879524241 +92 54 3 875656624 +474 506 5 887924084 +94 179 5 885870577 +224 470 4 888082742 +497 575 3 879362985 +297 302 4 875408934 +59 615 4 888204553 +152 69 5 882474000 +85 1173 4 884820209 +429 1010 3 882386216 +264 288 5 886121631 +407 227 2 875045190 +419 257 4 879435503 +63 108 2 875748164 +397 483 5 885349715 +159 243 4 880485529 +499 181 3 885598827 +113 7 3 875076827 +100 678 3 891375428 +197 586 3 891410170 +308 237 3 887737383 +313 420 5 891014782 +499 514 5 885599334 +453 117 4 877552540 +474 508 3 887915437 +451 303 2 879012648 +381 1018 4 892697031 +318 1044 4 884496985 +505 989 1 888631438 +159 333 5 893255761 +151 70 4 879524947 +470 268 2 879178216 +354 660 3 891218155 +448 268 3 891888367 +363 11 5 891494587 +352 50 5 884289693 +345 111 4 884991244 +454 707 3 881959576 +468 498 5 875291571 +81 726 4 876534505 +495 230 5 888632969 +270 356 3 876956064 +378 684 3 880332643 +468 4 5 875296868 +456 660 5 881374522 +59 55 5 888204553 +385 145 1 879449745 +381 20 5 892696426 +474 322 4 888627937 +305 631 3 886324028 +66 127 4 883601156 +381 318 5 892696654 +397 615 5 885349562 +234 746 2 892335213 +186 934 3 879023968 +405 191 4 885545235 +405 67 5 885547360 +7 23 3 891351383 +339 150 4 891033282 +138 182 4 879023948 +357 147 5 878951457 +476 765 4 883365442 +58 185 2 884304896 +233 192 5 875508485 +398 953 3 875658968 +424 289 5 880858924 +429 549 4 882385749 +181 1002 1 878963122 +374 70 4 880396622 +487 237 4 883441813 +56 200 4 892679088 +457 118 4 882395400 +6 503 3 883602133 +151 181 5 879524394 +452 216 3 888568700 +320 2 4 884749281 +230 240 1 880484320 +379 93 3 885063369 +25 655 4 885852248 +93 866 2 888705780 +26 1014 3 891384414 +145 1291 3 888398563 +42 54 4 881108982 +177 50 5 880131216 +253 1016 3 891628094 +271 443 3 885848943 +311 121 4 884366852 +383 357 5 891193137 +425 302 5 878737511 +442 569 2 883390140 +262 235 2 879790783 +447 135 5 878855989 +234 1269 3 892078297 +218 168 4 877488316 +411 22 4 891035239 +431 307 3 879038461 +239 181 3 889180411 +457 127 5 882396902 +454 323 2 881958783 +456 177 4 881373900 +249 12 5 879572472 +7 583 2 892132380 +478 354 3 889397221 +407 405 3 876348318 +378 223 4 880045651 +464 194 5 878355259 +181 477 1 878962465 +286 924 4 876521773 +118 223 5 875385386 +144 281 3 888104191 +114 156 4 881309662 +498 127 4 881954219 +416 14 4 876697017 +484 228 5 891195349 +422 324 5 875129523 +497 627 3 879310021 +379 568 5 880525566 +479 88 4 879462041 +373 401 4 877106711 +505 591 4 889333676 +342 301 5 874984045 +268 597 2 875743310 +158 684 3 880134332 +250 333 4 883263374 +429 504 3 882385065 +130 246 4 874953698 +189 204 5 893265657 +404 1238 3 883790181 +458 792 4 886398025 +393 321 3 887742179 +466 232 4 890284903 +504 66 4 887839165 +117 763 5 881009890 +387 746 1 886479737 +283 168 5 879298206 +16 770 3 877724979 +406 921 4 879793235 +303 117 3 879468581 +296 125 5 884196985 +378 157 3 880056104 +194 481 3 879524291 +299 300 4 877618619 +301 403 4 882076292 +463 1164 1 877385797 +450 650 4 882376446 +235 512 5 889656044 +486 690 2 879873973 +399 496 3 882349868 +18 430 4 880130155 +488 58 3 891376081 +212 268 5 879303468 +21 669 1 874951761 +506 479 4 874873571 +341 1025 5 890757961 +405 726 1 885547690 +401 483 4 891033121 +457 664 4 882549601 +344 696 3 884900567 +500 244 3 886358931 +487 140 3 883531085 +90 70 5 891383866 +385 604 4 879442189 +450 288 3 884097913 +365 269 4 891303357 +417 1139 3 879649448 +130 765 4 876252420 +484 463 4 882807416 +339 357 5 891032189 +7 175 5 892133057 +392 346 4 891037437 +102 652 2 892992129 +149 286 5 883512591 +52 121 4 882922382 +470 919 3 879178370 +43 1035 4 883955745 +497 780 2 879363181 +437 276 5 880141618 +459 1047 3 879563668 +234 156 2 892078936 +291 367 4 874871800 +13 855 4 882140130 +379 1022 3 892879380 +177 153 4 880130972 +269 778 3 891448547 +497 260 4 878759529 +415 641 3 879439960 +405 2 1 885547953 +325 271 3 891477759 +360 124 5 880354215 +268 4 4 875309829 +201 1193 4 884111873 +239 185 4 889178688 +345 143 5 884992940 +145 236 1 888397981 +141 974 4 884585300 +497 943 4 879362019 +253 494 5 891628341 +262 421 4 879792331 +374 289 1 880392482 +22 105 1 878887347 +506 410 2 882100955 +338 607 4 879438225 +125 451 4 892838288 +311 176 4 884365104 +435 135 3 884131771 +458 346 4 889323539 +465 525 3 883531111 +59 357 5 888204349 +480 172 3 891208492 +123 462 4 879872540 +468 116 4 875280180 +214 223 3 891544200 +437 88 3 880143140 +425 515 3 890347138 +174 364 1 886515240 +505 99 4 889333313 +451 749 3 879012773 +507 343 5 889964074 +98 514 5 880498898 +1 269 5 877482427 +416 1336 1 878879350 +385 429 4 879442028 +271 179 4 885848616 +271 393 4 885849648 +390 275 5 879694123 +406 461 3 879446269 +327 154 4 887747337 +293 7 3 888905062 +468 469 4 875296309 +417 483 5 879647355 +358 511 2 891271035 +416 1400 4 886317029 +313 94 3 891030490 +343 521 5 876408138 +49 382 2 888066705 +450 95 3 882395167 +254 542 3 886475034 +402 124 4 876266926 +151 230 3 879528647 +499 238 2 885599498 +254 196 4 886472400 +417 728 3 879648881 +463 282 3 877385664 +450 1 4 887835272 +87 871 4 879876734 +316 923 5 880854022 +336 4 4 877757790 +60 357 4 883326273 +279 128 5 875296461 +18 402 3 880132225 +378 806 4 880045760 +417 778 4 879648742 +239 474 5 889179095 +417 1000 4 879648403 +94 192 4 891721142 +417 1207 3 880952970 +308 157 5 887738268 +279 1435 3 892174339 +267 385 3 878972873 +429 625 3 882387474 +497 252 3 879310650 +477 781 4 875941191 +423 347 3 891394632 +85 1010 2 879452971 +221 298 4 875244331 +203 100 1 880434411 +455 504 4 879110573 +276 354 4 888873388 +250 527 4 878091735 +236 591 4 890117029 +104 257 4 888465582 +44 100 5 878341196 +183 55 4 891466266 +8 518 4 879362422 +32 475 5 883717766 +291 823 3 874833936 +128 268 3 879966355 +447 258 5 878853977 +5 194 4 878845197 +399 452 3 882350762 +405 554 1 885548049 +372 262 4 876869066 +381 566 2 892696512 +334 1170 4 891548729 +250 313 5 883262672 +230 98 5 880484391 +318 161 3 884496738 +313 118 4 891028197 +279 99 3 890451347 +18 165 4 880129527 +468 411 3 875284879 +308 641 4 887736459 +326 8 4 879875457 +256 106 4 882153724 +385 1159 4 885245956 +389 519 4 879991461 +450 154 3 882377590 +2 283 5 888552084 +497 508 3 878759705 +298 294 3 884184024 +389 132 5 880087544 +504 179 1 887839165 +391 318 4 877399030 +504 807 4 887839081 +417 561 3 879648707 +130 235 4 874953728 +463 127 5 890530105 +268 128 3 875744199 +299 1506 4 878192680 +6 465 1 883683508 +378 7 4 880044697 +130 411 5 876251217 +276 1301 4 885871474 +488 154 3 891293974 +88 311 5 891037336 +207 276 2 875504835 +92 674 4 875906853 +490 993 1 875427739 +5 229 2 875635947 +486 287 4 879875279 +456 484 4 881373983 +327 70 4 887819316 +497 657 3 879361847 +330 63 3 876547165 +80 154 3 887401307 +64 475 5 889738993 +389 467 3 879991512 +399 1184 3 882344638 +120 258 5 889490124 +181 105 1 878963304 +95 168 4 879197970 +262 210 3 879792962 +95 28 4 879197603 +217 29 2 889070011 +421 7 3 892241646 +334 591 4 891544810 +1 32 5 888732909 +452 207 4 875261261 +298 58 4 884182725 +388 301 4 886438602 +191 300 4 891560842 +514 96 5 875311192 +399 188 4 882344310 +378 210 4 880057137 +56 550 4 892910860 +280 220 5 891700426 +184 381 4 889909962 +99 315 4 885678479 +505 713 3 889334217 +221 7 4 875244204 +377 338 3 891297293 +287 237 5 875334151 +297 430 1 875238778 +426 613 3 879444146 +330 98 5 876546033 +392 813 3 891039015 +276 415 3 874793062 +94 111 4 891721414 +425 751 2 890346264 +394 101 4 880886670 +94 528 5 885870323 +251 33 3 886271675 +234 180 3 892079910 +383 100 4 891193016 +83 832 3 883868300 +41 202 2 890687326 +334 428 4 891547955 +378 385 4 880056761 +142 333 5 888639968 +95 491 4 879197783 +169 495 3 891359276 +416 93 4 876697105 +457 219 4 882550304 +336 1041 2 877757837 +363 68 2 891495809 +271 523 4 885848770 +425 877 3 890346198 +312 632 3 891698764 +330 99 4 876546172 +493 925 3 884130668 +493 156 1 884130995 +472 71 2 875981281 +314 423 4 877888060 +490 257 3 875428570 +276 823 3 874786807 +429 211 5 882385090 +468 23 4 875287535 +23 961 5 874785165 +66 405 3 883601990 +61 327 2 891206407 +49 159 2 888068245 +503 659 5 880472148 +417 1232 2 879649369 +234 1051 2 892336322 +503 900 5 892667389 +393 1468 4 887746091 +74 351 3 888333352 +105 690 3 889214306 +232 117 3 891565128 +286 703 2 889651672 +145 156 5 875271896 +503 194 4 880472591 +303 11 4 879467260 +355 271 3 879486422 +292 523 4 881105561 +236 496 3 890116499 +264 1355 4 886124417 +59 483 5 888204309 +474 293 4 887915269 +452 588 3 885804123 +22 431 4 878888026 +416 257 3 876697205 +63 333 4 875746917 +271 98 5 885848559 +508 238 4 883767343 +2 276 4 888551552 +102 245 3 883748222 +435 376 2 884134019 +301 181 5 882074291 +76 1157 1 882607018 +436 504 4 887769151 +503 164 3 880472507 +511 346 4 890004686 +450 1020 4 882376365 +90 89 5 891385039 +338 513 5 879438225 +504 72 4 887840134 +514 15 4 875309350 +6 461 4 883601393 +498 54 2 881961745 +246 441 3 884922538 +371 423 5 880435071 +157 100 5 886890650 +216 280 2 880233043 +315 173 4 879821003 +457 57 4 882397177 +498 187 4 881955960 +207 483 5 875774491 +77 268 5 884733857 +90 300 3 891382163 +104 258 3 888442249 +23 588 4 884550021 +455 70 3 879111194 +60 494 4 883326399 +401 404 2 891033395 +224 284 3 888104117 +493 411 1 884132934 +399 97 4 882343204 +222 186 5 878184195 +153 50 1 881371140 +489 310 4 891449022 +504 678 4 887831115 +486 994 3 879874811 +233 47 5 877661881 +450 712 3 882470642 +96 194 2 884403392 +488 474 2 891294439 +417 774 4 879648707 +413 302 2 879968794 +244 215 4 880603242 +337 127 3 875184682 +497 274 3 879309760 +483 462 3 884047754 +70 24 4 884064743 +417 1041 3 879648478 +253 12 5 891628159 +87 866 4 879877208 +450 227 3 882398313 +404 739 4 883790851 +506 281 3 880198144 +504 1263 4 887909532 +191 891 3 891560481 +477 709 5 875941763 +459 827 3 879563758 +267 732 4 878973650 +396 100 2 884646092 +201 751 3 884110766 +416 196 5 893214128 +425 156 5 878737873 +450 923 5 886612198 +312 493 5 891698365 +316 185 2 880853548 +201 455 3 884112487 +405 732 5 885545456 +200 984 3 884125996 +405 1439 1 885546724 +42 756 5 881106420 +85 205 4 879454004 +165 270 4 879525672 +484 560 4 891195886 +372 129 4 876869667 +360 328 3 880354094 +109 425 2 880582317 +347 432 4 881653973 +445 209 4 891200869 +167 318 5 892738307 +437 69 2 880140501 +254 435 3 886472089 +467 257 4 879532512 +307 56 4 878856967 +83 69 4 887665549 +279 132 3 875308670 +262 451 4 879794446 +480 615 4 891208185 +330 94 4 876547426 +325 434 5 891478376 +457 66 4 882547694 +330 28 5 876546526 +251 1016 3 886272197 +385 186 1 879445260 +311 562 3 884365746 +234 887 3 891034078 +266 25 3 892257940 +411 227 3 891035362 +472 758 1 875979359 +416 515 5 893214041 +425 32 3 890347138 +393 929 3 887745230 +83 233 4 887665549 +38 588 5 892429225 +92 409 3 890251791 +256 785 4 882165296 +435 86 4 884131844 +504 581 4 887910623 +83 15 4 880307000 +321 48 4 879439706 +11 508 4 891903005 +435 5 2 884133046 +472 568 5 892790676 +263 202 4 891299031 +214 64 5 892668130 +269 48 5 891455816 +438 181 4 879868005 +7 187 4 891350757 +281 304 5 881200745 +303 603 5 879466457 +506 229 4 874874895 +276 526 4 874791123 +486 882 2 879874018 +416 692 5 893212484 +402 182 5 876266775 +222 1016 3 877563530 +223 974 2 891550504 +62 50 5 879372216 +76 318 3 882606166 +413 236 4 879969557 +342 26 2 875320037 +385 1103 3 887269178 +194 562 2 879524007 +53 64 5 879442384 +415 754 4 879439311 +361 514 5 879440345 +237 408 5 879376434 +293 684 3 888905481 +404 348 3 883790400 +58 1101 5 890421373 +301 132 4 882076619 +208 194 5 883108360 +324 294 5 880575002 +11 79 4 891905783 +363 79 2 891494835 +109 79 5 880572721 +488 180 2 891294439 +276 192 5 874787353 +489 881 2 891447586 +210 517 4 887730342 +499 482 2 885599182 +177 92 4 882142295 +119 332 4 886175313 +428 331 4 885943847 +13 796 3 886304188 +311 783 3 884366439 +399 431 2 882344906 +469 153 4 879523891 +234 735 3 892079803 +436 642 4 887769079 +230 25 3 880485282 +438 118 4 879868529 +468 249 3 875280310 +383 654 5 891193016 +320 71 3 884751439 +76 7 4 875312133 +385 1160 2 879440211 +500 971 5 883876093 +270 90 5 876955770 +307 185 3 877118565 +121 165 4 891388210 +346 1135 4 874950993 +354 202 3 891307157 +425 68 4 878738386 +321 64 3 879438607 +384 316 5 891274055 +503 127 5 879438161 +13 827 3 882398327 +264 19 5 886122952 +249 588 3 879572256 +314 588 5 877888007 +406 923 3 879446108 +174 715 3 886514397 +193 82 2 889125880 +308 276 4 887736998 +479 1013 1 879460453 +191 900 4 891560481 +455 279 3 882141582 +506 494 5 878044851 +280 769 3 891702441 +210 568 4 887735960 +474 744 3 887916260 +94 187 4 885870362 +405 395 3 885547506 +213 143 5 878955766 +497 382 4 878759745 +500 469 4 883874813 +346 300 5 874947380 +214 127 4 891542986 +375 288 4 886621795 +381 961 3 892696616 +332 931 2 888360532 +64 82 3 889740199 +38 127 2 892429460 +389 127 5 879915701 +423 751 3 891394832 +391 774 2 877399541 +110 895 2 886987354 +215 271 4 891434733 +336 575 3 877757373 +454 404 3 888267590 +11 222 3 891902718 +18 91 3 880130393 +379 631 5 880961600 +343 614 5 876404689 +271 371 5 885849188 +91 132 3 891439503 +406 172 5 879792811 +506 465 4 874874630 +505 245 4 888631349 +190 471 5 891033632 +149 302 4 883512623 +446 888 1 879787859 +363 651 3 891495682 +442 42 4 883388401 +194 423 3 879548121 +405 560 1 885549045 +184 945 4 889909721 +113 424 1 875076357 +215 313 5 891436543 +468 13 4 875280104 +60 735 5 883327711 +437 747 4 880143167 +271 77 4 885849231 +60 435 4 883326122 +378 732 4 880056034 +417 1446 3 879648824 +274 866 4 878946107 +393 154 2 887746302 +450 1222 3 887834953 +331 1194 3 877196444 +461 269 3 885355705 +178 38 3 882827574 +169 684 5 891359354 +336 1437 2 877756890 +70 8 4 884064986 +34 324 5 888602808 +506 560 3 874874458 +151 1203 5 879542670 +194 736 2 879548122 +145 363 4 875271607 +352 129 5 884290428 +515 344 2 887660131 +275 71 3 875154535 +454 234 3 888267087 +31 268 3 881547746 +450 1152 5 882812558 +361 639 4 879440652 +487 255 2 883441890 +31 32 5 881548030 +409 153 4 881168603 +396 25 3 884646191 +447 748 1 878854056 +478 188 4 889396582 +293 588 3 888906748 +297 154 5 875239658 +469 605 4 879524302 +378 68 2 880333446 +395 231 4 883764456 +343 42 4 876404647 +301 739 2 882076966 +301 521 3 882076987 +406 175 5 879792811 +470 950 3 879178645 +326 435 3 879874897 +363 293 4 891499329 +130 692 5 875801422 +493 210 5 884131620 +59 770 4 888205534 +445 479 3 890988206 +496 318 4 876065693 +182 111 4 885613238 +64 511 4 889739779 +425 675 3 890347047 +276 343 4 881563147 +244 732 1 880604148 +227 1028 2 879035803 +305 971 4 886324608 +337 520 5 875236281 +466 546 4 890285159 +321 153 4 879440746 +387 277 4 886481033 +236 225 3 890117465 +10 606 5 877888876 +268 226 4 875310784 +416 750 5 893214128 +303 28 3 879466717 +429 673 3 882386485 +59 210 4 888204309 +186 1399 2 891718530 +393 717 3 887745086 +474 1009 4 887915722 +416 682 3 877902163 +308 1411 4 887741150 +451 1393 2 879012812 +470 546 4 879178950 +406 632 4 879446168 +145 767 2 879161882 +417 293 4 879646123 +486 257 3 879875315 +162 144 3 877636746 +450 101 5 882399359 +417 679 2 879649044 +179 307 3 892151565 +116 304 2 876453376 +342 423 4 875319436 +385 175 4 879441572 +43 97 5 883955293 +422 682 2 879743787 +314 996 4 877891354 +5 183 4 875636014 +487 710 4 883445721 +474 117 4 887915306 +102 210 3 888801522 +370 607 5 879435168 +346 746 3 874949116 +450 395 3 882470642 +145 1028 5 875271607 +58 310 4 884459024 +478 658 3 889395977 +437 124 5 880140101 +66 248 4 883601426 +389 167 3 880089170 +13 679 4 882397650 +113 948 3 875935312 +23 530 4 874789279 +450 1050 4 882812349 +136 137 5 882693339 +450 94 4 882468239 +468 258 4 875279126 +392 249 1 891038224 +387 161 1 886483252 +459 411 2 879563796 +489 457 3 891449254 +361 170 5 879440605 +498 474 4 881957905 +479 640 4 879462168 +512 265 4 888580143 +382 150 2 875946055 +235 83 4 889656068 +405 98 4 885544798 +206 748 4 888179833 +488 468 5 891295023 +347 240 5 881653300 +406 135 5 879445684 +330 451 5 876547813 +388 682 4 886439808 +276 62 2 874792574 +209 286 2 883417458 +59 675 5 888205534 +210 327 4 887735288 +293 25 3 888904696 +20 94 2 879669954 +66 508 4 883601387 +269 582 4 891447234 +62 512 4 879374894 +401 535 2 891032518 +290 496 4 880474156 +416 790 4 886318270 +45 820 4 881015860 +90 639 5 891385039 +239 512 5 889180921 +347 158 3 881654773 +450 272 5 886449009 +296 259 1 884196374 +230 951 5 880485181 +356 347 4 891405619 +389 90 3 880088659 +279 401 5 875310730 +275 62 3 876198328 +474 707 5 887925751 +5 440 1 878844423 +82 284 4 876311387 +451 270 4 879012684 +515 362 4 887658844 +327 328 2 887743600 +1 141 3 878542608 +18 519 4 880129991 +500 116 4 883865232 +293 250 3 888904862 +407 502 2 876338883 +196 340 3 881251045 +69 42 5 882145548 +296 663 5 884198772 +249 546 3 879640436 +339 410 2 891034953 +298 430 5 884182657 +223 930 2 891550326 +295 161 4 879518430 +170 323 3 884293671 +398 88 4 875733660 +360 483 5 880355527 +513 117 5 885062519 +385 425 3 879445724 +291 655 4 874868629 +233 14 4 876021262 +84 1 2 883452108 +374 252 3 880394179 +497 570 3 879362511 +178 24 3 882824221 +198 222 3 884204993 +119 56 4 874781198 +109 568 5 880578186 +244 521 4 880606385 +435 792 4 884131404 +487 12 5 883445580 +475 286 2 891451276 +256 79 5 882164406 +203 815 4 880434882 +406 148 3 879540276 +200 28 5 884128458 +308 19 3 887737383 +413 284 4 879969709 +224 313 5 888081843 +391 61 5 877399746 +249 423 4 879572167 +160 273 5 876767660 +327 475 4 887744405 +416 81 5 893213405 +504 370 3 887832268 +456 1267 4 881373756 +5 29 4 875637023 +450 629 4 882397940 +176 952 2 886048230 +350 185 5 882347531 +454 258 4 881958402 +73 32 4 888626220 +456 57 4 881374521 +177 268 3 880130452 +506 385 4 874873944 +344 291 3 884899791 +500 58 3 883873720 +24 180 5 875322847 +95 708 2 880571951 +497 188 3 879310762 +13 529 4 882140206 +271 127 5 885848863 +458 12 5 886395758 +456 423 3 881374586 +360 515 4 880354315 +339 678 2 891036781 +109 181 5 880563471 +18 284 3 880131804 +400 749 4 885676452 +478 48 4 889388587 +311 444 2 884365746 +262 1095 2 879791537 +313 428 3 891014649 +417 70 4 879647749 +94 763 3 891722006 +442 350 2 883387916 +346 636 3 874950794 +43 231 4 883955995 +45 756 2 881015244 +234 591 3 892335142 +43 196 4 875981190 +327 190 4 887832180 +78 257 4 879633721 +436 168 3 887769050 +105 264 2 889214491 +416 241 5 893213796 +463 249 2 889936035 +42 43 2 881109325 +523 114 5 883701800 +156 651 4 888185906 +378 501 4 880055454 +194 356 2 879524892 +157 934 2 886890878 +403 274 3 879786661 +267 164 3 878972342 +154 288 3 879138235 +429 124 4 882384821 +97 132 5 884238693 +500 237 3 883865483 +57 11 3 883698454 +308 231 3 887740410 +291 33 4 874834850 +417 708 2 879648798 +246 567 5 884923348 +447 151 3 878854520 +488 292 3 891292651 +295 60 5 879517492 +339 127 5 891032349 +415 479 4 879439610 +250 988 4 878089182 +417 56 5 879647519 +198 1 4 884205081 +430 293 3 877225865 +505 748 1 888631208 +512 23 4 888580248 +90 136 5 891383241 +144 1065 4 888105714 +48 294 3 879434212 +312 521 5 891698987 +276 691 4 888873488 +293 462 4 888905819 +435 153 3 884131243 +435 62 3 884133657 +280 507 3 891700682 +321 480 4 879440109 +445 844 2 891200138 +379 649 4 880525084 +387 1134 1 886481183 +222 521 5 878184866 +95 70 4 880571951 +457 229 4 882392853 +447 231 2 878856394 +493 652 5 884131287 +151 716 2 879528778 +398 94 2 875732304 +7 547 3 891353710 +474 172 5 887923789 +114 655 3 881260506 +253 202 5 891628392 +504 1437 2 887911545 +515 313 4 887658604 +518 124 3 876823071 +102 548 2 885126313 +497 258 4 878759351 +325 186 4 891478578 +158 39 5 880134398 +68 458 1 876974048 +309 319 4 877370419 +504 414 5 887838450 +425 583 3 878738245 +495 379 5 888636870 +405 374 1 885549094 +380 665 2 885480870 +387 147 2 886481073 +207 458 3 875991160 +110 215 3 886987894 +343 530 5 876405633 +116 511 4 876453519 +415 195 5 879439685 +85 194 4 879454189 +508 195 3 883767565 +477 15 4 875941863 +360 326 3 880354094 +268 324 4 876513708 +280 725 3 891702387 +407 519 4 875042466 +475 100 5 891452276 +102 231 2 888802319 +339 161 3 891034626 +95 463 5 880573287 +438 286 2 879867960 +417 20 2 880949408 +94 268 4 891724925 +23 100 5 874784557 +313 258 3 891012852 +406 276 4 879539824 +92 218 4 875654846 +495 56 5 888632574 +313 663 5 891013652 +113 124 3 875076307 +86 270 5 879570974 +416 331 4 890021365 +13 884 2 882140814 +392 134 5 891038371 +363 117 5 891495742 +249 741 4 879572402 +498 522 3 881956499 +303 258 4 879465986 +437 211 4 880140100 +118 79 5 875384885 +234 16 2 891227771 +334 642 5 891548436 +346 38 3 874950993 +280 1466 5 891700836 +194 121 2 879539794 +416 845 4 876697361 +495 451 4 888635524 +301 81 3 882077351 +505 498 5 889334274 +437 518 2 880143809 +186 754 2 891717690 +261 687 5 890455020 +308 118 3 887739670 +64 227 3 889740880 +455 321 2 892230438 +213 504 5 878955885 +499 661 3 885599474 +301 447 4 882078955 +26 246 4 891351590 +504 194 3 887832668 +387 470 3 886483970 +279 932 3 892174381 +103 405 3 880416424 +296 79 4 884197068 +7 449 3 891354785 +451 332 4 879012342 +167 96 5 892738307 +21 413 2 874951293 +393 802 3 889729420 +455 204 4 879111249 +31 175 5 881548053 +385 1066 4 879446591 +286 147 5 876522114 +59 642 5 888206254 +259 121 3 881379128 +428 896 4 885943685 +405 1221 1 885546155 +468 285 4 875280104 +328 62 3 885049275 +354 889 5 891217966 +446 303 2 879787859 +448 316 1 891887337 +56 399 4 892910247 +371 627 4 877487656 +96 195 5 884403159 +393 376 4 889730011 +201 772 5 884113343 +374 1215 1 880936522 +308 558 4 887737594 +383 1063 5 891192888 +116 268 5 886310197 +328 226 3 885048235 +178 685 4 882824253 +224 333 3 888081976 +270 5 5 876956064 +57 64 5 883698431 +374 1049 1 883628021 +167 478 5 892738452 +224 326 4 888082071 +193 781 3 889124469 +89 240 4 879441571 +409 483 4 881107602 +327 327 3 887737402 +347 756 2 881653266 +416 1074 5 893213103 +509 319 2 883590913 +326 657 5 879875431 +92 364 3 875907702 +495 391 3 888637440 +6 410 4 883599707 +472 739 5 875982967 +461 313 4 885355646 +122 180 5 879270327 +454 642 2 888267419 +518 1047 4 876823266 +494 237 4 879541375 +499 215 4 885599475 +472 255 5 892791017 +378 496 3 880045935 +387 91 4 886483669 +416 225 1 876697330 +361 430 5 879440475 +429 166 5 882384796 +373 423 2 877103846 +96 318 5 884403057 +307 181 5 879283232 +13 880 3 882140966 +387 151 3 886481228 +48 269 1 879434094 +275 99 3 875154718 +234 185 3 892078936 +68 286 5 876973692 +500 30 4 883875275 +473 547 3 878157600 +473 10 3 878157527 +177 11 4 880131161 +326 64 4 879875024 +366 561 5 888858078 +148 50 5 877016805 +49 1018 2 888066755 +90 972 4 891384476 +486 818 3 879874784 +479 422 3 879461207 +17 137 4 885272606 +64 436 5 889739625 +79 906 5 891271792 +516 199 3 891290649 +450 225 4 887662002 +407 635 3 876345934 +381 847 4 892697542 +479 161 3 879461399 +145 687 2 882181335 +321 510 5 879440317 +505 187 1 889333676 +201 956 4 884140522 +436 125 4 887770037 +256 684 5 882164480 +91 135 4 891439302 +358 558 4 891269511 +279 94 3 892865054 +312 176 4 891699295 +326 511 4 879875593 +301 502 4 882076558 +451 1296 3 879012685 +18 949 3 880131559 +94 90 3 891721889 +331 735 4 877196444 +72 212 5 880036946 +472 365 4 875983129 +421 11 2 892241624 +269 96 1 891450755 +406 641 5 884630523 +314 125 5 877886412 +303 137 4 879468414 +363 531 4 891495879 +518 291 3 876823926 +447 117 4 878854630 +145 23 4 875271896 +374 186 5 880395604 +333 513 4 891045496 +445 295 1 891199843 +383 340 5 891192276 +103 301 4 880416704 +346 180 5 874947958 +409 191 5 881107817 +75 678 3 884049758 +494 1 3 879541374 +326 651 4 879875663 +167 435 5 892738453 +271 286 4 885844610 +315 176 4 879821193 +416 283 5 893213796 +320 550 5 884749384 +307 204 3 879205470 +327 1007 4 887745272 +167 1304 4 892738277 +235 603 3 889655044 +279 624 4 875734996 +425 22 3 878738290 +221 358 3 875244232 +393 1258 3 887744688 +457 282 4 882392785 +145 877 2 885557506 +465 179 3 883531325 +472 88 2 875982607 +510 289 2 887667751 +325 50 5 891478140 +181 1359 1 878962200 +305 327 3 886307948 +361 502 4 879440475 +18 200 3 880131775 +214 154 3 891544000 +13 316 5 888073653 +387 47 4 886480384 +457 258 5 882392853 +487 136 5 883445606 +59 111 4 888203095 +145 789 4 875272132 +378 15 4 880044312 +305 64 5 886323406 +44 249 4 878346630 +348 126 5 886523560 +457 240 3 882395638 +359 298 5 886453354 +393 90 2 889729938 +294 619 3 877820328 +466 1313 3 890283690 +321 9 4 879440472 +174 1282 5 886433862 +132 175 3 891278807 +405 729 4 885545487 +5 378 1 875721167 +159 274 3 880557387 +279 444 3 875659746 +479 71 1 879461143 +435 154 4 884131434 +25 474 4 885852008 +374 161 5 880938965 +234 1133 3 892336358 +449 546 2 879959573 +430 302 4 877225173 +361 60 4 879440605 +328 70 4 885047252 +303 239 3 879484871 +479 748 3 879459710 +450 402 4 882395662 +434 756 2 886725027 +380 463 4 885479372 +476 781 4 883365135 +428 879 4 885943818 +474 234 5 887923788 +330 568 5 876546752 +269 77 1 891451374 +92 591 4 875640294 +351 300 5 879481425 +505 468 4 889334096 +379 233 3 880525638 +201 1268 4 884112077 +425 529 4 890346998 +22 231 2 878887983 +435 284 2 884132898 +406 71 3 879793081 +375 5 4 886622066 +327 12 3 887744205 +437 581 1 880143010 +466 350 4 890284651 +409 484 4 881107310 +202 204 3 879727058 +405 1253 1 885548671 +363 70 2 891496373 +394 84 4 880889583 +494 199 4 879541158 +486 6 4 879874902 +339 530 5 891032413 +383 531 3 891192888 +360 748 2 880354094 +232 246 4 885939945 +277 147 4 879543822 +416 347 4 893214333 +470 93 4 879178518 +22 367 1 878886571 +392 880 4 891037720 +271 505 4 885848475 +246 12 5 884921948 +389 997 3 881384536 +514 429 4 875311225 +280 239 3 891701344 +306 321 3 876503793 +524 151 1 884627327 +472 1469 4 875982337 +501 25 3 883347773 +15 50 5 879455606 +118 132 4 875384793 +495 1444 2 888637018 +125 790 4 892838462 +314 815 5 877886375 +13 155 2 882399615 +203 993 3 880434919 +405 1290 2 885546379 +376 427 4 879454598 +291 140 4 875086887 +244 941 4 880603618 +278 286 5 891295044 +210 435 4 887730407 +495 200 5 888637768 +325 28 3 891478796 +450 736 5 882395167 +43 479 4 875981365 +286 224 5 889651549 +481 313 4 885827861 +227 321 3 881518363 +525 1 4 881085964 +470 221 4 879178370 +250 676 5 878089547 +2 1 4 888550871 +221 156 5 875245533 +63 15 3 875747439 +128 133 5 879967248 +426 1204 4 879444321 +64 679 3 889740033 +389 474 5 879991535 +443 323 2 883504866 +521 81 1 885253861 +178 1101 4 882827019 +471 418 3 889827757 +52 117 4 882922629 +5 392 2 875637330 +181 877 2 878961668 +65 258 3 879216131 +379 191 5 880524886 +271 257 4 886106038 +170 348 3 887646014 +178 1157 3 882827375 +524 205 5 884634707 +56 234 4 892679067 +224 736 3 888082742 +193 94 3 889127592 +216 58 4 880244972 +271 1046 4 885849357 +524 89 5 884634533 +514 746 5 875309276 +158 293 4 880132513 +122 69 2 879270511 +128 655 3 879969064 +479 164 4 879461781 +454 11 1 888266433 +416 1426 5 893212572 +7 419 3 891350900 +486 123 3 879875278 +229 311 5 891633028 +416 268 4 876696643 +292 482 5 881103606 +470 293 4 879178455 +488 655 3 891294246 +71 175 4 885016882 +109 29 3 880582783 +445 480 3 890988206 +160 531 5 876942699 +178 95 5 882826514 +524 660 5 884636152 +447 642 4 878855819 +383 223 3 891193137 +181 336 2 878961709 +195 1416 2 884504132 +458 742 4 886394730 +308 15 3 887739426 +292 156 5 881105516 +130 982 1 880396831 +376 223 4 879454598 +483 250 3 878952837 +178 591 5 882827288 +213 655 4 878956300 +435 85 4 884132840 +405 1588 1 885549789 +40 245 3 889041671 +436 200 3 887769515 +393 257 4 887744294 +347 226 4 881653890 +178 238 4 882826577 +232 302 5 885939473 +524 285 3 884322168 +130 532 5 876250955 +184 512 4 889908716 +59 713 5 888203579 +13 646 4 882140037 +184 527 4 889908462 +479 385 2 879461567 +454 257 4 881959276 +230 265 5 880484544 +101 280 3 877136039 +428 988 1 885943955 +26 628 3 891372429 +454 197 4 881959961 +16 240 4 877724603 +405 573 3 885548435 +262 181 3 879961819 +13 689 2 881515735 +123 98 4 879872672 +62 1 2 879372813 +463 284 3 877385531 +151 781 3 879543181 +178 235 1 882824467 +405 1166 1 885546025 +13 347 5 885185824 +251 1098 3 886271920 +334 83 4 891628832 +325 768 3 891479564 +271 663 4 885849052 +416 329 3 886314592 +503 173 5 880383357 +64 431 4 889737376 +193 72 2 889127301 +22 449 1 878888145 +104 302 5 888441877 +336 388 1 877757418 +46 245 3 883614625 +429 485 3 882385210 +339 80 3 891035707 +378 693 4 880046022 +31 490 4 881548030 +271 614 4 885848373 +265 298 5 875320633 +381 283 5 892697655 +337 15 5 875185596 +467 240 3 879532773 +348 111 5 886523330 +64 748 1 879365314 +303 387 5 879485401 +497 385 3 879310792 +163 433 1 891220137 +470 246 2 879189432 +92 145 2 875654929 +475 347 4 891451341 +405 1590 1 885549789 +117 144 4 881011807 +354 753 5 891217482 +365 288 5 891303357 +10 221 4 877888677 +181 591 4 878962996 +457 1012 4 882393765 +373 655 5 877098374 +329 169 4 891656178 +276 797 3 877934643 +167 240 1 892737972 +102 566 2 888801876 +374 620 3 880394088 +417 123 2 879646500 +437 657 5 881001888 +195 1407 2 874825826 +387 97 2 886483859 +102 91 3 883748488 +506 1608 2 885135497 +327 211 3 887818682 +398 480 5 875658794 +57 763 5 883698581 +457 769 2 882551740 +486 3 2 879875347 +504 755 4 887841177 +217 33 4 889069878 +59 443 5 888205370 +417 273 3 879646286 +59 647 5 888205336 +484 778 5 891195246 +354 255 2 891216788 +441 9 4 891035528 +455 304 3 878585409 +104 313 4 888441878 +293 38 1 888907981 +10 432 4 877892160 +385 482 3 879441728 +374 974 4 880394331 +450 707 5 882373786 +246 208 4 884921394 +91 176 5 891439130 +518 25 5 876823197 +262 959 2 879794739 +492 483 2 879969210 +514 328 3 885180947 +393 876 3 889554316 +125 435 4 892836550 +440 971 5 891577871 +432 150 5 889415853 +270 335 3 876953900 +399 12 3 882509891 +378 248 3 883835834 +303 540 1 879543679 +474 285 5 888628044 +405 1148 1 885546680 +357 597 4 878952080 +479 436 4 879461856 +173 690 5 877557076 +181 475 2 878962720 +458 1261 4 886397413 +152 504 4 882476261 +374 924 5 880393095 +445 117 1 891199821 +298 134 5 884182966 +44 81 4 878348499 +346 366 2 874947609 +365 294 1 891303614 +262 40 4 879795405 +13 554 2 882397833 +343 89 3 876406006 +524 615 2 884637409 +394 128 3 880888896 +11 69 3 891904270 +116 306 3 876751342 +90 1195 5 891384789 +449 1006 4 880410701 +436 288 4 887768445 +84 225 4 883452307 +500 553 2 883876370 +327 1017 2 887819316 +285 302 5 890595313 +5 390 5 875636340 +456 50 4 881373473 +354 652 4 891217194 +142 124 4 888640379 +520 315 4 885169083 +508 69 3 883776748 +337 449 4 875185319 +95 193 3 879198482 +413 9 4 879969591 +303 3 3 879485184 +480 174 5 891208356 +60 1050 3 883327923 +67 25 4 875379420 +327 464 4 887822785 +122 582 5 879270644 +259 288 3 874724905 +519 1617 5 883250102 +496 156 3 876065933 +293 165 3 888905991 +222 31 5 878182453 +90 430 3 891383835 +267 229 4 878972558 +435 423 2 884131157 +495 235 5 888636603 +276 73 3 874791805 +116 116 3 876453733 +504 118 3 887831838 +514 189 5 875318291 +292 607 4 881105625 +450 60 3 882472089 +412 7 5 879717505 +508 144 3 883767728 +374 89 2 880395896 +437 218 2 880142830 +493 180 4 884130793 +26 126 4 891371676 +161 435 2 891171104 +405 525 1 885548632 +279 436 4 891209332 +148 89 5 877398587 +354 1197 3 891219490 +10 116 4 877888944 +321 175 3 879439706 +437 746 4 880141335 +435 751 4 884130725 +360 308 4 880353584 +495 216 4 888632443 +67 546 3 875379288 +354 515 3 891216526 +279 597 5 875297456 +463 1012 2 889935860 +234 602 4 892334368 +346 802 4 875265236 +398 735 4 875659266 +23 652 4 874785926 +435 1401 4 884131868 +456 369 3 881371942 +446 328 3 879786984 +43 140 4 883955110 +449 117 3 879958624 +299 484 4 877881169 +495 68 5 888634987 +267 926 2 878970785 +430 264 2 877225328 +94 809 2 891723155 +201 11 4 884112201 +453 172 5 877554587 +405 776 1 885549094 +393 1228 3 889728074 +222 388 2 878184765 +388 742 5 886437163 +495 44 3 888636032 +429 165 5 882384821 +316 168 3 880853599 +60 608 5 883326028 +363 72 1 891496850 +378 387 4 880056452 +453 384 2 888205711 +386 833 3 877655195 +468 251 4 875280180 +328 317 4 885046976 +6 504 3 883601155 +344 405 2 884900353 +72 582 4 880036783 +419 181 4 879435807 +453 427 3 877554174 +504 402 4 887839835 +483 249 2 878952866 +450 613 4 887660650 +206 262 1 888180049 +293 746 3 888906748 +94 66 2 891721889 +379 79 5 880525368 +455 778 4 879112582 +217 679 5 889069878 +435 161 3 884133710 +394 210 4 880888689 +280 1221 5 891701944 +450 465 4 887834823 +286 209 4 877531691 +459 274 4 879563226 +438 866 5 879868529 +504 215 4 887908861 +488 485 3 891294298 +442 82 3 883390497 +523 382 5 883701018 +417 206 2 879648778 +257 70 4 880496892 +479 230 4 879461898 +348 121 5 886523521 +72 15 5 880035708 +508 735 4 883775341 +246 95 3 884920949 +115 33 4 881171693 +139 460 3 879538199 +456 673 3 881374849 +450 747 4 882395166 +297 514 3 875239383 +442 943 4 883391221 +472 141 4 875982200 +327 321 3 887743761 +525 123 3 881086051 +472 501 3 875982868 +379 559 3 880524669 +523 153 4 883702054 +276 692 4 874791960 +466 2 1 890284819 +174 696 4 886434087 +94 586 1 891723707 +468 321 3 875279126 +230 28 5 880484444 +23 283 4 874784575 +487 143 3 883530841 +303 525 5 879466604 +314 1041 4 877888445 +181 934 3 878963086 +511 292 5 890004686 +382 56 5 875946830 +181 1162 1 878962392 +327 218 3 887746328 +255 685 3 883216845 +416 367 5 893212572 +248 7 2 884534968 +528 485 2 886101872 +378 651 4 880045681 +480 483 3 891208293 +504 199 4 887912236 +393 480 4 889554756 +38 1033 5 892432531 +393 559 3 889729614 +299 461 3 878192601 +284 272 5 885328727 +515 690 2 887660131 +234 4 4 892334610 +268 397 2 875744321 +327 285 4 887744459 +49 1072 1 888069194 +450 493 4 887660722 +14 96 4 890881433 +493 546 5 884131738 +417 265 3 879648026 +492 127 5 879969879 +484 926 4 881450136 +181 1026 1 878961781 +19 288 3 885411840 +85 197 5 879455197 +417 154 4 879647561 +193 300 4 889123039 +254 8 5 887347000 +194 405 2 879539305 +453 100 5 877552612 +497 100 4 878759828 +426 494 3 879442702 +305 121 3 886324898 +378 11 3 880046516 +298 23 4 884183236 +311 1042 3 884366187 +314 367 4 877889770 +205 315 4 888284245 +291 417 4 875086958 +429 216 4 882385090 +276 21 3 874787195 +233 378 4 877663429 +97 526 3 884239687 +406 215 3 884630523 +94 56 5 891725331 +56 210 5 892676377 +18 474 4 880129731 +308 591 3 887739608 +320 421 4 884750968 +32 248 4 883717816 +197 678 2 891409593 +245 133 2 888513058 +401 1016 3 891032607 +201 238 3 884113343 +254 78 3 886475476 +295 118 3 879518840 +498 197 5 881958414 +495 172 5 888632378 +528 239 5 886101632 +270 279 5 876954093 +399 559 3 882344096 +311 750 5 884363706 +416 219 4 876699946 +486 286 2 879873973 +296 523 4 884197235 +280 235 5 891701649 +429 31 3 882386966 +207 60 3 877845845 +16 469 3 877720916 +367 559 4 876690048 +433 59 5 880585730 +371 50 4 877486953 +83 322 3 889681216 +399 710 2 882342537 +493 298 3 884130668 +298 318 5 884182657 +263 690 5 891297209 +178 90 3 882827985 +112 321 3 884992484 +363 537 1 891495402 +6 321 3 883268353 +429 258 4 882386096 +286 144 3 877531434 +92 100 5 875640294 +499 742 4 885599334 +429 392 3 882386051 +497 82 4 879310792 +504 197 4 887832531 +123 483 4 879873020 +318 94 4 884498210 +313 404 4 891030189 +472 411 4 875979113 +126 328 5 887853735 +504 417 3 887841177 +130 82 5 875802080 +345 1008 3 884991267 +94 508 5 891720712 +469 530 5 879524376 +504 719 3 887841248 +504 281 4 887831447 +393 1185 3 889728606 +435 175 4 884132588 +518 919 5 876822967 +474 498 4 887924683 +504 934 4 887832170 +504 75 4 887912568 +497 864 3 879309734 +480 234 4 891208769 +286 216 4 877532013 +494 191 4 879541158 +311 724 4 884365406 +206 1434 1 888180082 +508 172 5 883767157 +314 11 5 877887837 +435 200 5 884131661 +422 53 4 879744183 +504 143 4 887838008 +347 982 1 881652709 +524 650 2 884637528 +474 196 5 887924469 +442 685 2 883390703 +197 684 4 891409981 +472 1095 4 883904614 +483 449 3 878953593 +425 841 1 878738597 +222 238 5 878181673 +450 123 2 882373464 +472 135 4 875982051 +263 87 4 891298977 +479 1244 3 887064647 +241 288 5 887249745 +445 248 1 891199774 +339 186 4 891032255 +456 1008 4 881371427 +18 9 5 880130550 +246 746 4 884922070 +265 245 4 875320112 +486 717 2 879875440 +95 971 3 879198262 +301 195 5 882076098 +532 58 4 888636374 +10 334 4 877886281 +13 613 4 881515411 +48 496 5 879434791 +26 181 4 891386369 +244 1079 2 880605333 +330 554 3 876547500 +458 288 3 886394667 +189 132 5 893265865 +160 671 5 876859778 +489 271 4 891448706 +180 258 5 877125493 +458 956 5 886397377 +354 66 2 891307180 +253 300 4 891627724 +429 137 5 882387731 +291 546 3 874805958 +257 245 4 884151807 +342 8 4 875319597 +436 325 3 887768756 +507 338 5 889964348 +472 578 5 892790952 +1 211 3 878541970 +530 527 4 883784654 +504 1442 3 887911444 +194 69 4 879521595 +416 746 5 893213444 +64 569 3 889740602 +287 9 5 875334089 +311 196 5 884365325 +396 742 4 884646346 +450 10 4 882398567 +276 558 4 874787526 +81 275 4 876533657 +406 204 5 879446718 +452 203 3 875275561 +280 765 4 891701816 +44 159 3 878347633 +531 990 5 887048789 +264 514 5 886123359 +524 1268 3 884637032 +7 574 5 892132402 +463 149 2 877385341 +279 71 3 890780576 +63 1012 3 875747854 +506 72 3 874874802 +503 137 5 879438072 +62 1009 4 879372869 +389 602 4 879991081 +86 328 2 879569555 +370 135 4 879434746 +232 603 4 888549376 +472 217 5 875982867 +478 496 5 889388862 +387 768 1 886483620 +7 616 4 891351002 +59 416 3 888205660 +399 554 3 882348592 +101 257 4 877137015 +321 83 4 879439926 +506 1219 2 874874760 +114 855 3 881260473 +145 117 5 875270655 +92 1011 3 886443471 +85 30 3 882995290 +425 17 4 878738290 +39 937 5 891400704 +42 720 4 881109149 +349 544 4 879465933 +102 501 2 883748418 +276 462 4 874795868 +270 727 5 876955563 +207 88 2 878104627 +151 782 4 879542566 +116 324 2 876452133 +456 273 3 881372328 +488 491 4 891294209 +81 1047 3 876533988 +176 25 3 886048188 +123 319 4 879809220 +213 511 4 878955442 +203 150 5 880434278 +230 237 5 880484800 +500 223 4 883873839 +92 143 3 875653960 +186 595 3 879023390 +374 106 3 880394088 +21 240 4 874951245 +417 118 4 879646548 +65 514 4 879217998 +459 336 2 879561708 +83 739 5 880308141 +266 286 4 892256662 +156 178 5 888185777 +256 185 5 882164696 +347 692 4 881654679 +236 216 5 890116163 +250 340 4 883263374 +353 272 5 891402757 +476 1188 2 883364780 +524 605 1 884637566 +496 633 3 876065822 +435 1074 2 884133415 +95 423 5 880571479 +118 53 5 875385280 +524 182 5 884635031 +401 430 2 891033582 +344 70 3 884901561 +200 107 3 884128022 +399 226 3 882344406 +459 121 5 879563474 +398 125 3 875719764 +73 171 5 888626199 +505 54 3 889334067 +518 284 4 876823324 +37 825 2 880915565 +130 261 4 874953525 +479 122 1 879460648 +190 898 2 891033349 +137 174 5 881433654 +351 245 3 879481550 +227 273 3 879035206 +382 332 3 876803039 +229 272 3 891632073 +109 216 3 880572891 +437 781 4 880143263 +452 1427 5 885816768 +479 655 4 879460959 +514 47 4 875462645 +450 514 5 882468931 +210 290 4 887730813 +409 478 4 881107155 +437 168 3 881002161 +409 1065 2 881109264 +343 1 5 876402668 +416 346 4 886314592 +342 131 5 875319786 +397 588 4 885349528 +458 284 4 886394527 +327 182 4 887744205 +268 729 3 875310673 +301 228 3 882076966 +502 683 3 883702867 +239 65 5 889180041 +467 100 5 879532420 +425 286 1 878737511 +361 129 4 879441285 +460 1115 3 882912235 +532 603 5 893119491 +363 1214 1 891497712 +373 432 5 877098949 +94 786 3 891723593 +314 1311 5 877889994 +234 69 4 892078567 +450 1041 4 882469432 +128 159 4 879968390 +5 101 5 878844510 +524 603 3 884637376 +338 443 5 879438570 +372 1109 4 876869818 +477 88 5 875941085 +456 985 3 881371492 +529 325 3 882535693 +464 705 5 878355258 +419 89 3 879435722 +251 429 4 886271955 +388 298 5 886436582 +198 763 3 884206482 +405 644 3 885545672 +354 193 3 891217782 +483 313 2 884046430 +456 86 2 881374332 +497 765 3 879363155 +160 248 5 876768828 +345 1023 2 884994658 +500 133 3 883875681 +425 445 3 878738887 +19 887 4 885411465 +236 673 4 890116132 +301 127 4 882074262 +294 410 4 877819897 +74 328 4 888333280 +378 404 4 880056034 +144 69 5 888105140 +161 181 2 891171848 +474 210 5 887928562 +105 271 2 889214245 +417 16 3 879646692 +445 831 1 891200447 +303 518 4 879468581 +10 692 4 877889261 +474 756 1 887915646 +454 100 4 881959917 +119 329 3 886433226 +303 420 4 879484563 +174 210 4 886514788 +327 69 2 887822711 +184 1014 2 889907468 +447 5 3 878856422 +94 932 2 891724691 +455 529 3 879111737 +501 307 4 883346651 +506 50 5 878044852 +454 143 4 881960230 +392 59 4 891039049 +394 156 4 880886855 +145 738 3 875272927 +5 208 4 875636675 +524 1044 4 884636931 +346 576 3 875264945 +484 879 4 891194665 +401 632 4 891033014 +401 282 3 891032584 +6 522 5 883601500 +416 94 2 886318546 +495 29 2 888636573 +483 271 3 881273325 +44 25 2 878346431 +303 25 4 879468047 +274 98 5 878946536 +436 276 4 887769824 +508 188 4 883767325 +184 1167 5 889913687 +15 333 1 879455128 +474 496 4 887923708 +171 258 4 891034801 +360 50 4 880354149 +157 1244 3 886891194 +373 143 3 877105005 +148 209 5 877398648 +437 132 5 880141962 +42 934 4 881106419 +416 915 5 893212483 +393 815 4 887744372 +474 676 3 887916369 +493 250 4 884130387 +497 802 2 879362118 +429 184 4 882386260 +234 137 3 891227730 +70 300 4 884063569 +480 319 3 891207539 +256 815 5 882151743 +371 64 4 877487052 +371 655 4 880435238 +457 54 4 882549322 +405 957 1 885549464 +94 93 4 891724282 +405 416 2 885548932 +58 652 5 884304728 +495 109 5 888633594 +496 97 1 876066848 +330 729 5 876545721 +347 356 5 881654134 +392 650 5 891038978 +406 219 3 879792897 +326 483 5 879874963 +271 235 3 885848062 +488 605 3 891294785 +13 357 3 881515411 +92 421 4 875654534 +87 228 5 879875893 +18 972 3 880130515 +3 268 3 889236961 +256 741 4 882151517 +436 794 4 887771123 +92 160 4 875654125 +495 222 5 888633277 +112 339 4 892439990 +315 327 4 879799583 +476 238 3 883364324 +417 198 4 879647924 +333 153 4 891045496 +296 180 5 884198772 +194 820 1 879541742 +222 506 2 878183264 +504 404 4 887910370 +422 327 3 875129603 +399 582 3 882343358 +87 21 3 879877173 +203 283 5 880434359 +299 1005 5 878192833 +311 648 4 884364694 +86 888 4 879570218 +298 1 5 884126061 +275 408 3 875154438 +379 447 4 880524582 +101 742 4 877136302 +496 380 2 876068433 +297 237 4 875239383 +279 291 3 878878420 +517 284 2 892659923 +143 323 3 888407656 +77 250 3 884732873 +500 739 2 883876573 +286 121 3 876522166 +293 939 2 888906516 +346 56 5 874949217 +60 173 4 883326498 +125 705 5 879454243 +455 47 2 879112172 +511 313 5 890004702 +245 1033 5 888513522 +506 779 2 885135954 +509 50 5 883591878 +23 856 4 874787288 +193 508 4 889125319 +104 289 4 888442112 +527 152 2 879456405 +339 276 4 891032495 +1 40 3 876893230 +450 13 3 882373297 +464 326 4 878354761 +527 956 4 879455847 +368 313 5 889783251 +454 509 2 881960230 +271 520 5 885848615 +339 157 4 891032379 +160 410 4 876769148 +524 198 4 884634707 +7 656 3 891351509 +474 61 3 887924619 +339 428 5 891032349 +468 137 4 875280126 +321 1126 3 879439860 +332 264 3 893027312 +387 972 2 886483859 +332 456 4 887938556 +437 208 5 880139997 +485 289 3 891041551 +37 566 4 880916010 +532 95 5 893118711 +7 558 4 892131924 +491 19 4 891185209 +13 191 3 881515193 +489 272 5 891448367 +500 164 4 883874469 +437 794 4 880143243 +436 159 4 887770192 +500 1163 1 883865290 +311 423 5 884365579 +342 1167 1 875319854 +52 204 4 882923012 +429 1217 2 882385489 +519 352 5 883250148 +178 127 5 882823978 +43 133 4 875981483 +532 70 4 888634801 +92 651 4 875653271 +42 58 5 881108040 +109 411 4 880572296 +435 49 4 884132072 +296 303 4 884196238 +406 1202 3 879445684 +85 712 3 882995754 +429 164 4 882385489 +425 55 4 878737945 +91 603 5 891439171 +13 909 5 890704721 +497 152 2 878759898 +177 176 4 880130951 +327 298 3 887744405 +276 222 4 880913800 +456 69 4 881373949 +507 826 5 889966127 +303 544 4 879483617 +200 392 5 884128858 +358 318 5 891271063 +128 387 2 879968774 +514 402 4 875463245 +489 263 2 891448268 +389 780 3 880614316 +495 642 4 888635050 +161 186 4 891171530 +345 223 5 884902317 +459 1 4 879562960 +417 367 2 879648898 +351 1024 4 879481495 +363 216 3 891495879 +26 831 2 891379753 +109 809 4 880582945 +280 324 5 891700185 +299 962 4 889501593 +339 709 5 891032982 +94 993 4 891724303 +450 451 4 882398220 +184 708 4 889909962 +197 895 3 891409199 +439 405 4 882893323 +406 474 5 884630554 +476 944 2 883364813 +42 125 4 881105462 +328 12 5 885045528 +398 494 3 875813142 +497 588 4 879309993 +199 1326 3 883782934 +430 221 5 877225547 +105 313 5 889214193 +210 69 4 887736482 +393 761 4 889728667 +476 734 4 883365274 +205 1025 1 888284495 +385 8 5 880870206 +295 631 5 879966498 +223 591 3 891549627 +268 179 4 875309258 +408 315 5 889679715 +466 334 3 890283690 +416 25 4 876697243 +107 268 4 891264387 +405 419 4 885548785 +360 248 4 880354484 +75 114 4 884051893 +393 421 2 889555000 +385 496 2 879441538 +533 949 4 879439519 +102 38 2 888801622 +18 94 3 880131676 +508 568 4 883777237 +497 230 2 879310762 +184 654 4 889908824 +110 231 1 886988664 +62 436 3 879375883 +507 1034 5 889966127 +521 1016 3 884476002 +223 749 4 891549049 +313 167 3 891029076 +380 566 3 885478519 +393 239 4 889728324 +102 332 3 883277920 +235 701 4 889655086 +350 265 2 882347466 +345 534 4 884994592 +454 651 4 881960083 +104 290 4 888465739 +52 588 4 882922927 +416 785 3 888703399 +447 678 3 878854056 +208 996 3 883108684 +389 208 5 880087415 +532 369 3 874792142 +138 133 4 879024043 +354 661 4 891306946 +312 514 3 891698516 +502 294 3 883702255 +405 1587 1 885546529 +373 189 5 877100416 +502 879 3 883701980 +496 154 2 876066424 +473 276 4 878157404 +452 684 4 888493923 +398 49 3 875736199 +35 881 2 875459127 +453 268 4 877552481 +119 276 2 874775262 +509 288 5 883590443 +189 647 4 893265826 +381 139 3 892697358 +294 413 3 889242166 +429 692 3 882385118 +303 54 3 879484695 +472 552 5 892790576 +291 231 3 874835024 +312 654 5 891698485 +339 640 5 891035035 +246 679 2 884922917 +500 386 3 883875610 +435 118 2 884132458 +493 175 4 884131933 +298 79 5 884182685 +125 780 2 892839270 +450 418 4 882395914 +95 205 3 888954412 +472 395 3 875982559 +506 1016 4 882100828 +318 282 4 884470775 +465 28 3 883531110 +244 105 2 880605333 +380 699 3 885479186 +129 302 4 883243934 +486 597 3 879875187 +425 1464 2 890346998 +26 24 3 891377540 +417 1182 3 879648798 +389 610 5 880086972 +109 403 5 880581719 +275 135 3 880314824 +387 195 4 886479528 +91 182 4 891439439 +195 326 3 887439400 +61 748 2 892302120 +327 708 4 887818596 +533 477 4 880402957 +500 640 4 883874776 +6 47 3 883600943 +346 181 5 874948332 +230 568 3 880484567 +256 88 5 882165296 +318 378 4 884497632 +18 707 3 880131450 +269 185 5 891448951 +425 679 3 878738548 +406 198 2 879793179 +389 612 4 879991218 +367 183 5 876689738 +373 64 4 877098643 +184 738 3 889910372 +330 293 3 876544311 +385 143 3 879446465 +336 1496 1 877757268 +387 650 2 886480163 +198 56 5 884207392 +314 284 3 877886706 +426 524 4 879442785 +293 660 2 888907433 +268 89 4 876513897 +262 735 4 879793854 +524 66 3 884636617 +497 101 4 879310070 +233 196 5 880610814 +254 1183 4 887347350 +497 87 3 879363565 +532 216 5 893119438 +374 928 1 880393892 +44 448 2 878348547 +43 86 4 883955020 +338 708 5 879438627 +313 493 3 891016193 +303 550 3 879467607 +222 806 4 878181534 +487 265 5 883530236 +422 250 5 875130100 +331 958 5 877196504 +474 529 5 887924571 +503 54 2 879454950 +476 585 1 883365336 +429 591 3 882385663 +286 14 4 875807003 +426 835 3 879444853 +460 301 3 882910579 +370 195 4 879434886 +257 1160 4 882049973 +496 727 5 876072633 +230 95 5 880484850 +303 382 3 879467815 +363 322 2 891493959 +279 649 3 875312719 +320 66 4 884751034 +456 1168 4 881375284 +486 276 4 879874969 +374 226 5 880937876 +327 428 4 887819021 +1 270 5 888732827 +446 754 3 879787858 +291 403 4 874835165 +478 604 3 889398289 +393 494 4 889727702 +304 895 3 884967017 +453 17 4 877553928 +35 678 3 875459017 +194 693 4 879524216 +466 333 4 890284652 +385 134 5 879441538 +455 692 3 879111249 +524 95 3 884636617 +239 421 5 889181048 +498 258 2 881955080 +501 324 4 883346694 +214 100 4 891542986 +345 70 5 884992248 +479 752 3 889125284 +1 133 4 876892818 +473 508 2 878157456 +106 216 5 881452998 +405 769 1 885548475 +456 640 4 881373697 +85 512 3 879456199 +90 26 4 891385842 +13 321 2 882140740 +453 276 5 877552564 +521 179 4 885253708 +503 402 3 880383467 +144 244 3 888104588 +484 94 4 891195856 +381 99 5 892696445 +416 710 4 893142441 +514 175 4 875462426 +472 475 5 892791017 +42 175 2 881107687 +291 215 4 874868382 +275 132 3 880314529 +314 78 4 877890463 +417 255 3 879646327 +234 950 2 892079538 +426 1064 4 879444117 +267 655 4 878971989 +145 761 4 882182850 +327 1069 4 887819136 +417 39 3 879648212 +533 1177 1 879192184 +532 333 4 875441189 +425 327 4 890346659 +504 403 3 887910409 +459 222 4 879562994 +416 144 5 893212730 +417 562 4 879648955 +144 144 4 888105254 +474 181 5 887915511 +159 72 3 884026946 +187 651 5 879465566 +64 191 4 889740740 +437 58 4 880141243 +328 559 3 885048986 +60 433 4 883327342 +334 125 3 891544925 +409 615 5 881107084 +450 611 5 887135833 +193 237 4 889124327 +405 211 1 885547177 +327 686 4 887820293 +405 1307 1 885546529 +523 662 4 883703070 +207 756 2 877878923 +435 27 1 884133911 +445 1277 2 891200736 +505 66 4 889333313 +532 399 3 888630360 +311 504 4 884364873 +121 1266 4 891388250 +365 151 4 891304106 +416 393 4 886316118 +378 1048 2 880333851 +429 93 4 882385136 +314 1267 3 877888117 +487 45 5 883446725 +291 563 3 874867824 +373 499 4 877098643 +495 217 5 888637768 +116 191 4 876453961 +305 180 4 886323806 +320 82 3 884749359 +338 83 2 879438064 +62 91 4 879375196 +279 1266 1 875308843 +416 158 3 886319235 +454 79 4 881960083 +453 288 4 877562071 +190 15 4 891033697 +151 549 4 879543324 +484 597 3 881450182 +487 87 5 883445606 +437 381 5 880142426 +405 788 1 885548275 +181 358 2 878961709 +478 17 2 889396180 +97 183 5 884238911 +83 249 2 887664680 +183 176 3 891466266 +18 480 4 880129595 +387 511 3 886483049 +94 741 4 891721352 +177 469 4 880131201 +496 1133 3 876070957 +429 762 4 882386814 +347 117 5 881652518 +13 401 1 882141841 +405 404 4 885548932 +385 483 4 879442028 +407 455 3 884201774 +390 126 5 879694123 +407 1012 3 875548480 +232 514 4 888549879 +87 722 4 879876946 +383 89 3 891193181 +524 143 3 884635085 +222 271 4 881057647 +194 1011 3 879539794 +374 69 5 880394840 +70 83 4 884065895 +313 168 3 891013589 +497 94 3 879363133 +354 272 3 891180399 +454 1269 3 881959698 +305 170 4 886322691 +197 56 1 891409799 +504 1508 3 887911686 +496 921 5 876072633 +268 981 1 875743283 +96 181 5 884403687 +145 977 3 879161931 +373 66 4 877099263 +453 68 4 877561411 +183 1159 3 891479702 +334 197 4 891546181 +521 156 4 884478171 +308 68 4 887740933 +505 705 3 889333758 +3 288 2 889237026 +501 151 4 883348543 +32 313 4 883709840 +308 241 4 887738509 +307 660 3 879205470 +303 357 5 879466717 +83 411 2 880307259 +116 203 5 876453915 +459 8 5 879563903 +73 272 4 888792247 +495 392 5 888635455 +450 258 4 882216108 +107 313 2 891264266 +510 330 2 887667808 +303 455 3 879484421 +189 1065 5 893265478 +23 433 5 874785233 +293 433 3 888907407 +372 559 4 876869481 +15 118 1 879456381 +269 715 4 891448092 +222 257 4 877563353 +160 455 4 876769689 +287 682 4 888177213 +416 468 5 893213549 +391 659 4 877399208 +518 934 3 876823143 +44 24 3 878346575 +533 526 2 879191265 +463 993 2 877387935 +429 531 5 882385729 +378 716 3 880056735 +457 395 2 882551605 +467 1142 5 879532478 +210 482 5 887736739 +13 553 2 882399419 +286 1239 3 877535344 +146 328 3 891458079 +77 215 2 884752757 +215 196 4 891435548 +497 1555 2 879363780 +473 293 4 878157507 +58 741 2 892242159 +525 281 3 881086562 +301 196 4 882077836 +417 485 3 880949880 +183 210 3 891465869 +236 462 4 890115933 +276 331 4 890979062 +60 405 4 883326958 +8 229 5 879362356 +120 121 4 889490290 +26 302 5 891386368 +428 877 5 885943685 +533 50 5 882902988 +464 116 4 878355167 +497 549 4 879310445 +263 543 5 891298727 +437 97 3 880141286 +487 188 4 883445900 +102 771 2 888802508 +463 124 5 877385381 +469 194 5 879524116 +293 160 4 888907036 +478 81 4 889395977 +276 128 4 874792436 +487 549 4 884046879 +407 208 4 887832999 +416 783 3 886318768 +435 54 4 884132403 +424 127 4 880859493 +503 281 3 879454576 +58 171 5 884663379 +276 120 2 874787172 +505 422 3 889333975 +312 1126 4 891699455 +43 735 4 875981275 +451 292 3 879012684 +58 172 5 884305241 +53 568 4 879442538 +118 56 5 875385198 +407 230 4 875045371 +483 277 3 878952636 +327 222 2 887744357 +216 790 3 881428365 +437 42 3 880141129 +486 1202 4 879874995 +199 93 4 883782825 +94 1218 4 891722511 +447 286 2 878855082 +102 53 2 888801577 +178 405 3 882823905 +497 77 3 879362093 +487 541 3 884050711 +85 412 3 879453288 +379 575 2 882044649 +290 1285 3 880475565 +373 828 3 877111951 +202 481 1 879726642 +24 69 5 875323051 +407 1 4 876338278 +18 639 4 880131407 +264 217 3 886122446 +60 835 4 883326893 +236 685 2 890117308 +257 181 5 882050131 +44 678 3 878340887 +504 529 4 887832391 +106 280 2 883876680 +7 140 5 891353124 +514 302 5 885180556 +151 657 5 879524760 +377 98 5 891299009 +334 746 3 891548622 +254 28 4 886472369 +64 218 1 889739517 +43 217 2 883955930 +479 133 2 879461970 +363 58 3 891494962 +287 181 3 875333964 +416 931 3 886315822 +436 381 4 887769209 +479 405 4 879460236 +506 77 3 874874850 +290 926 3 880732538 +351 322 5 879481589 +380 670 1 885480187 +24 486 3 875322908 +478 369 3 889388429 +448 900 3 891887393 +457 114 5 882396868 +399 1139 4 882348974 +53 118 4 879443253 +296 61 3 884197287 +486 886 3 879874388 +151 275 5 879524443 +241 682 2 887249745 +418 899 5 891282706 +16 11 5 877718755 +371 117 3 877487052 +417 665 2 880952400 +43 1048 3 883956260 +267 550 4 878973047 +303 616 4 879484948 +8 228 5 879362286 +435 354 3 889722012 +348 291 4 886523790 +244 746 3 880606180 +497 99 3 879310021 +379 168 4 891674489 +521 69 3 884477727 +499 11 3 885599372 +151 603 5 879524641 +262 55 3 879791790 +344 280 3 884899815 +496 38 2 876068615 +188 5 4 875074266 +299 508 4 877878451 +487 161 5 883530702 +194 1041 2 879553591 +8 195 5 879362287 +432 1016 3 889416397 +200 982 2 891825589 +396 333 4 884645528 +454 686 2 888267280 +495 629 3 888636032 +270 257 4 876954223 +315 271 3 879799546 +308 469 5 887738104 +454 50 4 881959144 +476 1074 4 883365274 +416 684 5 893213405 +85 27 4 879827488 +347 460 3 881652888 +295 705 4 879517682 +260 288 3 890618476 +279 219 2 875736276 +133 313 3 890588524 +374 983 2 880936289 +13 527 5 882140252 +69 886 4 882027284 +251 313 5 886271472 +230 204 4 880484616 +283 49 4 879298333 +405 667 1 885548275 +308 430 4 887738717 +201 735 3 884113975 +339 508 4 891032189 +60 59 5 883326155 +390 319 5 879693561 +456 222 2 881371766 +152 720 5 882477356 +334 657 4 891545898 +524 1560 4 884636444 +397 22 4 885349476 +64 182 4 889738030 +123 286 5 879809053 +222 473 1 877563622 +183 226 3 891466350 +393 630 4 889728150 +53 546 4 879443329 +398 28 5 875660302 +256 210 4 882164443 +312 214 3 891699121 +409 166 4 881107992 +129 311 3 883244059 +215 203 3 891435266 +43 347 3 888177393 +102 29 1 888802677 +330 135 3 876546172 +474 481 4 887927153 +253 8 4 891628323 +532 132 5 893118711 +450 905 5 885945656 +109 64 2 880572560 +314 627 4 877888996 +287 426 3 875336743 +124 28 3 890287068 +474 244 4 887915646 +456 111 3 881371942 +493 79 5 884131287 +308 715 5 887740700 +346 369 3 874948890 +426 492 5 879441931 +487 679 2 883530724 +340 50 4 884990546 +246 24 4 884921345 +380 81 3 885478908 +466 315 5 890284231 +314 1471 4 877892430 +256 15 5 882150644 +343 177 4 876407252 +304 300 5 884968415 +452 234 3 875264355 +269 1397 4 891450575 +417 270 2 879646036 +7 677 3 891354499 +487 735 4 884042206 +433 333 2 880585133 +524 1154 1 884637914 +500 287 3 883865268 +486 718 3 879874449 +115 922 3 881170252 +471 1 4 889827881 +450 1479 3 882377479 +13 843 5 882399156 +495 133 3 888632888 +158 194 5 880134913 +385 169 5 880870205 +249 467 4 879572795 +382 180 5 875946830 +122 724 4 879270677 +324 260 5 880575277 +382 197 4 875946830 +497 56 4 878759659 +239 50 5 889179131 +417 943 3 879648761 +269 212 4 891447002 +159 319 1 880485290 +337 636 4 875236281 +500 1014 2 884527433 +141 313 5 884584271 +380 340 3 885481179 +447 484 5 878856457 +535 1 3 879617663 +221 407 2 875245100 +419 134 5 879435722 +524 234 4 884634877 +453 234 3 877561411 +455 257 4 879109733 +207 524 4 878104569 +145 410 4 875270616 +244 173 4 880605458 +459 147 3 879563435 +174 323 1 886434241 +317 748 5 891446843 +533 288 2 882901971 +429 185 4 882386006 +279 764 3 888425981 +345 294 3 884901497 +305 195 3 886323006 +520 283 4 885170516 +91 98 5 891439130 +158 399 3 880134595 +405 1108 1 885546069 +536 174 5 882359065 +460 322 3 882910722 +267 405 3 878970953 +7 100 5 891351082 +251 813 3 886272086 +401 762 2 891032662 +23 82 3 874787449 +382 14 3 875946055 +97 197 3 884239655 +513 472 4 885062636 +487 820 3 883444884 +523 186 3 883703495 +234 381 3 892335739 +454 56 3 888267590 +219 1014 3 892039611 +303 270 4 879466088 +486 125 3 879874970 +269 783 1 891451889 +118 135 5 875384591 +59 432 4 888204802 +431 300 4 877844248 +221 50 4 875244125 +524 942 4 884636980 +256 22 5 882164259 +286 737 4 877532419 +119 1260 5 874781547 +253 100 4 891628122 +178 97 5 882827020 +478 739 4 889398528 +151 770 4 879542527 +387 113 4 886479575 +215 50 5 891436543 +282 340 3 879949394 +389 451 2 880165881 +405 714 1 885546379 +434 1051 3 886724453 +469 134 5 879524062 +527 588 4 879456289 +169 331 5 891268491 +417 461 3 879647140 +514 748 2 875463906 +528 58 5 886101994 +316 730 4 880853775 +194 762 3 879539305 +394 31 3 880887152 +334 286 4 891544049 +416 13 5 893212623 +325 1232 1 891479228 +405 1571 1 885549463 +2 305 3 888550065 +181 1277 2 878963085 +426 616 4 879444787 +181 920 1 878962496 +213 185 5 878955501 +430 286 4 877225174 +459 864 4 879563435 +476 748 2 883365634 +25 143 3 885852529 +189 501 4 893265893 +405 971 1 885549464 +434 1095 5 886724940 +43 3 2 884029543 +480 347 3 891207605 +314 801 3 877892017 +60 582 4 883327664 +152 275 4 880148664 +442 710 5 883388576 +405 1200 1 885548785 +22 202 5 878886480 +239 961 5 889181093 +293 29 1 888907499 +507 117 3 889965997 +492 124 4 879969345 +16 947 4 877719454 +268 234 4 875309430 +500 827 2 883876904 +465 588 4 883531380 +524 479 4 884637314 +446 688 2 879786985 +455 1137 3 879109881 +455 727 3 879112561 +7 557 4 892132145 +330 210 5 876546866 +495 1110 4 888637147 +15 15 4 879455939 +94 509 5 885873159 +272 96 5 879454845 +87 144 4 879875734 +151 238 5 879542286 +130 98 5 875216507 +535 286 2 879617123 +346 184 1 874950463 +251 151 5 886272118 +109 77 4 880578388 +454 736 3 888266991 +59 423 5 888204465 +416 67 4 886318740 +437 480 4 881002345 +435 294 4 884130584 +476 328 4 883365684 +497 71 4 879309993 +308 201 5 887737334 +535 519 3 879617931 +130 939 4 876252041 +393 410 4 887744419 +276 959 4 874791695 +385 487 4 887670073 +484 234 4 891195687 +533 103 3 887032538 +286 588 5 877532131 +119 22 4 874781698 +458 86 5 886397679 +463 1117 1 877385954 +344 129 4 884899346 +439 282 3 882893859 +450 502 5 882469061 +398 274 3 875655841 +535 515 3 879619224 +502 890 2 883702945 +430 12 4 877226164 +92 620 3 875813224 +389 105 3 880614316 +239 499 5 889179808 +235 181 3 889655360 +99 125 4 885678840 +429 12 5 882386424 +279 978 1 889231898 +504 288 5 887831273 +469 10 5 879525373 +413 245 2 879969027 +177 200 4 880130951 +363 7 3 891495510 +253 343 4 891627815 +198 276 3 884205317 +438 280 5 879868423 +527 28 3 879456289 +271 703 3 885848559 +381 1117 4 892697574 +16 498 5 877719333 +472 720 5 875982096 +455 31 4 879111937 +384 313 5 891273683 +201 631 2 884140750 +454 272 5 888007255 +389 384 2 880089211 +487 69 4 883445859 +456 168 4 881373794 +393 465 4 887746916 +123 657 4 879872066 +416 879 3 892439224 +339 197 5 891033653 +297 258 5 874953892 +457 157 5 882553112 +262 1013 2 879791471 +293 1229 1 888907210 +130 929 4 876251160 +340 520 5 884991544 +451 1025 3 879012773 +339 227 2 891035524 +474 696 3 887916330 +489 343 5 891447913 +134 328 4 891732335 +533 275 4 887721848 +526 7 4 885682400 +75 427 4 884051921 +308 523 4 887737084 +324 749 3 880575277 +394 541 3 880889741 +429 1017 3 882385399 +267 810 3 878973568 +340 173 5 884990703 +75 304 2 884051610 +116 888 2 886309958 +262 582 4 879962517 +89 724 4 879460027 +387 176 3 886480446 +41 318 4 890687353 +387 455 4 886481105 +527 615 4 879456312 +358 529 3 891269464 +145 54 5 888398669 +500 1 4 883865021 +158 652 4 880134966 +393 356 3 889731088 +479 211 4 879461447 +504 276 3 887831790 +485 347 2 891040688 +389 234 4 879991081 +313 483 5 891016193 +405 1549 1 885548671 +487 1217 3 884025080 +10 480 5 877888943 +276 17 4 874791894 +59 508 5 888203095 +184 411 3 889908207 +313 1091 2 891030261 +450 792 4 882396050 +110 230 3 886988750 +404 678 4 883790400 +472 1248 4 875983427 +56 232 4 892676339 +334 371 2 891547283 +141 118 5 884585274 +524 423 4 884635358 +16 200 5 877722736 +269 659 4 891449406 +269 462 3 891447216 +70 161 3 884067638 +381 898 5 892697869 +90 427 5 891384423 +213 405 3 878870904 +358 268 3 891269077 +100 286 3 891375629 +181 1280 1 878961668 +152 161 5 882476363 +487 81 3 883531507 +160 202 4 876862077 +57 24 3 883697459 +116 900 4 888311676 +473 1142 5 878157299 +130 159 4 875802211 +519 1280 5 883250102 +436 400 3 887771924 +506 475 1 874862229 +54 291 1 891898613 +532 746 5 893119438 +391 276 3 877399780 +234 143 3 892079288 +184 401 3 889910418 +274 591 4 878945466 +301 47 4 882076936 +301 235 2 882074408 +427 688 5 879701326 +291 391 1 874835242 +218 712 3 877488902 +497 1042 3 879362178 +456 581 3 881375155 +243 423 3 879988587 +456 578 2 881375127 +533 328 4 887032063 +249 64 5 879572210 +262 785 3 879794359 +524 187 5 884634646 +246 1052 1 884924710 +533 595 2 887032451 +119 916 1 892564442 +427 292 2 879701127 +426 673 4 879442227 +70 313 4 884063469 +517 300 5 892660728 +532 769 2 888630531 +256 54 5 882164955 +110 586 3 886988536 +94 404 4 891721615 +398 159 3 875717020 +114 318 3 881259495 +479 616 4 879462062 +100 908 1 891375068 +527 963 4 879456030 +303 658 5 879484327 +343 229 4 876407340 +18 166 4 880129595 +121 628 3 891389037 +299 1050 4 878192721 +407 29 3 876344410 +64 179 5 889739460 +468 1168 2 875302155 +128 1048 2 879968858 +279 189 5 878082781 +95 506 3 888954552 +457 959 4 882549180 +198 121 3 884206330 +411 527 4 892845926 +320 288 4 884748277 +478 403 2 889398645 +537 28 3 886031438 +312 524 5 891699345 +497 228 3 879310762 +405 226 2 885547953 +256 1041 4 882165328 +254 768 3 886475004 +514 269 4 885180864 +216 215 5 880235120 +63 741 3 875747854 +327 715 4 887819860 +535 789 2 879618613 +479 489 5 879460844 +325 655 4 891479312 +328 172 4 885045528 +499 463 5 885599498 +6 482 4 883601203 +6 529 4 883601459 +215 300 3 891434733 +279 109 5 880869018 +21 436 4 874951858 +450 131 4 882377861 +210 821 3 887730532 +90 651 5 891384997 +535 836 5 879617746 +13 883 3 882140848 +374 741 3 880392717 +201 588 4 884113490 +391 334 5 877399745 +1 239 4 878542845 +85 153 3 879453658 +279 1087 2 891209189 +533 245 3 890659336 +504 77 4 887840681 +339 423 3 891033602 +257 198 3 880496822 +320 79 4 884749255 +512 1 4 888589126 +104 748 2 888442461 +466 882 5 890284231 +482 298 4 887644085 +90 306 4 891382267 +416 452 3 886319106 +347 404 4 881654846 +246 216 3 884920949 +305 286 4 886307828 +490 123 2 875428570 +145 257 5 875270932 +336 56 4 877757601 +490 764 1 875427993 +378 1407 3 880334329 +323 678 2 878738910 +234 474 4 892317967 +311 479 5 884365519 +303 340 5 879466088 +3 355 3 889237247 +21 976 1 874951483 +500 143 3 883875092 +332 1090 5 888360508 +308 522 3 887737484 +92 554 2 875907180 +38 188 2 892431953 +342 367 5 875319967 +341 259 3 890758051 +27 148 3 891543129 +103 250 4 880415918 +416 248 5 893213103 +378 1211 3 880333516 +453 298 4 877552641 +97 96 5 884239712 +194 50 3 879521396 +13 95 5 882140104 +279 1402 1 888462243 +370 183 4 879434937 +303 952 3 879467706 +65 63 2 879217913 +82 99 4 878769949 +82 740 2 884714249 +102 194 3 888803537 +533 582 3 879192278 +334 905 1 891547612 +195 413 3 885110849 +214 180 5 892668130 +360 306 4 880353584 +305 792 4 886323406 +311 357 5 884365104 +406 772 4 882480836 +250 179 4 883263374 +58 1105 2 884794758 +222 710 4 881059714 +537 526 3 886031720 +109 70 4 880578038 +505 195 3 889334096 +189 855 3 893265657 +497 161 5 879310730 +535 165 4 879617613 +504 693 4 887832741 +478 1521 3 889397343 +346 172 5 874947609 +303 508 4 879467260 +497 54 3 879362071 +7 27 4 891352692 +420 288 3 891357271 +21 301 4 874951054 +435 157 4 884132146 +497 501 2 879309993 +456 462 3 881373506 +269 518 4 891447815 +500 815 3 883865374 +373 385 3 877099016 +389 483 5 879991535 +407 291 4 876348681 +533 252 4 880402784 +181 982 1 878963205 +90 170 5 891383561 +118 513 5 875384751 +533 651 4 888845036 +447 111 3 878854954 +527 127 5 879456132 +435 338 2 887509306 +406 508 4 879539883 +472 288 5 875977682 +536 274 4 882318394 +514 609 4 875462826 +489 331 5 891366606 +405 627 1 885548877 +123 479 4 879872066 +276 158 3 874791932 +178 751 4 882823353 +145 566 5 875272010 +454 531 2 888266785 +36 358 5 882157581 +15 302 4 879455049 +109 1074 4 880583308 +216 82 4 880244446 +5 399 3 875635947 +437 217 3 880143695 +71 197 5 885016990 +327 502 3 887747134 +38 105 3 892434217 +534 1047 4 877808361 +295 125 5 879518528 +421 914 3 892241236 +508 223 4 883767361 +285 198 5 890595900 +427 1265 5 879701253 +435 128 3 884132184 +388 895 4 886438540 +435 38 2 884133509 +7 609 3 891352749 +385 871 1 879440986 +79 690 4 891271308 +405 702 1 885547407 +416 448 3 886316797 +405 643 1 885546336 +427 303 5 879701253 +518 14 3 876822923 +458 282 2 886396958 +342 124 4 875318267 +524 483 4 884634533 +200 179 4 884129029 +59 52 4 888205615 +532 348 4 886364825 +184 82 3 889909934 +504 419 3 887832643 +504 1135 4 887911854 +537 46 3 886031678 +313 430 5 891013620 +144 823 3 888104659 +272 42 4 879454939 +239 190 1 889178616 +145 450 3 885557660 +278 258 3 891295099 +87 502 5 879876524 +313 409 2 891030334 +459 252 4 879563506 +342 410 3 874984661 +408 347 3 889679761 +422 515 4 875129882 +506 88 4 874873944 +454 326 4 881958362 +497 217 4 879362382 +398 700 2 875736199 +279 1305 4 875313406 +260 882 5 890618729 +327 582 4 887822711 +511 271 5 890004879 +119 300 5 874774286 +293 302 4 888904092 +329 274 3 891656639 +449 276 5 879958705 +417 89 5 879647604 +291 1303 3 874835279 +299 529 4 877880852 +28 323 3 882826593 +484 255 3 882079980 +535 1093 4 879617931 +450 673 3 882396928 +416 917 4 893214332 +405 399 1 885547408 +468 132 5 875292134 +433 1598 1 880585865 +305 16 3 886324058 +425 98 4 878738186 +399 587 3 882351626 +452 517 2 875562846 +83 191 4 880308038 +491 657 5 891189306 +486 1514 4 879874663 +387 250 4 886480970 +18 781 3 880132188 +342 174 2 875319681 +406 206 1 879445735 +83 121 4 880306951 +144 87 5 888105548 +92 64 4 875653519 +408 539 1 889680018 +466 176 4 890284766 +379 527 3 880524860 +454 631 2 888267643 +507 323 5 889964809 +201 423 4 884112901 +442 1067 3 883388576 +184 20 4 889907771 +327 1073 2 887744241 +308 1126 3 887738268 +188 764 4 875072087 +233 527 5 877665324 +141 127 2 884584735 +469 1558 5 879524177 +274 282 5 878945788 +254 1469 3 886473929 +498 1426 3 881959103 +439 93 4 882893737 +291 763 4 874833841 +18 425 3 880130713 +51 603 3 883498728 +7 77 5 891353325 +130 31 4 875801801 +293 824 3 888905252 +262 473 2 879791216 +346 288 2 886273342 +223 924 1 891549975 +490 126 2 875427812 +194 9 4 879535704 +392 325 4 891037634 +454 427 4 881960173 +454 735 2 888267387 +26 1012 4 891386369 +275 1 4 875154310 +34 294 1 888602808 +407 1044 3 876348639 +469 173 4 879524178 +222 723 3 878184812 +450 56 4 882371645 +493 528 5 884132246 +200 89 5 884128788 +503 182 3 880472321 +332 597 5 887938486 +385 1428 4 879447181 +213 24 5 878870846 +214 172 3 891544390 +50 324 5 877052008 +271 602 3 885848886 +370 425 3 879434860 +450 940 2 882471737 +506 230 4 874873847 +533 450 5 879191713 +217 546 2 889070196 +445 147 2 891199974 +334 510 4 891628832 +378 182 4 880055239 +276 763 3 874787214 +92 800 3 875906802 +88 300 3 891037466 +373 4 4 877100232 +342 196 3 874984128 +151 378 4 879528520 +92 449 3 875812511 +18 132 5 880132437 +5 456 1 875636375 +474 72 3 887927457 +214 522 4 891544052 +180 153 1 877126182 +455 126 5 879172791 +201 582 5 884111873 +437 421 4 881001983 +153 265 4 881371032 +489 681 3 891366805 +428 300 5 885943713 +313 418 3 891014838 +313 840 2 891028360 +488 228 4 891294854 +318 869 3 884498461 +504 1415 3 887912335 +484 122 2 889974407 +347 252 2 881653176 +183 181 2 891463937 +373 208 4 877106773 +520 1051 3 885170585 +59 1050 2 888205188 +224 744 1 888103646 +443 258 5 883504617 +49 80 1 888069117 +14 750 3 891014196 +252 1 5 891456989 +220 305 4 881197771 +42 161 4 881108229 +103 255 5 880416423 +450 1192 5 887137066 +256 233 4 882164479 +357 820 4 878952288 +429 47 4 882384950 +406 179 5 879446718 +168 871 3 884287711 +466 748 2 890283592 +72 118 3 880036346 +457 380 4 882392854 +527 204 5 879455847 +453 156 5 877554908 +25 195 4 885852008 +393 89 3 887745973 +385 192 5 884586327 +435 1133 2 884133224 +254 265 3 886471695 +435 672 1 884133253 +363 859 4 891500462 +58 463 3 884305241 +537 602 3 886031634 +207 210 3 878191574 +180 733 5 877128388 +22 216 4 878886682 +373 110 3 877104086 +256 174 4 882164406 +504 28 4 887839810 +459 22 5 879563903 +495 53 1 888637440 +486 146 2 879875188 +437 748 4 880139631 +450 158 3 882471524 +485 307 3 891040967 +201 789 3 884112840 +16 510 4 877727280 +455 584 4 879111528 +43 317 2 883955319 +454 568 4 888266906 +44 429 4 878347791 +177 628 2 882143736 +457 428 5 882553113 +503 313 5 884637568 +387 769 1 886481851 +110 325 3 886987561 +450 203 4 882396799 +23 780 1 874788388 +127 62 5 884364950 +128 218 3 879969244 +497 562 2 879310941 +133 749 4 890588720 +13 92 3 882397271 +343 508 5 876403514 +500 172 2 883873640 +7 405 3 891353290 +464 258 5 878354626 +348 323 5 886522579 +268 328 1 876513643 +391 462 4 877399588 +59 194 3 888204841 +311 651 4 884364623 +94 97 4 891721317 +230 427 5 880484501 +497 168 5 878760023 +297 117 4 874954497 +345 588 3 884992100 +332 322 4 887916365 +450 193 5 882372027 +534 455 5 877807816 +498 489 3 881956140 +208 739 4 883108873 +374 143 2 882159114 +275 416 3 880314991 +405 569 1 885546680 +110 802 3 886988793 +11 24 3 891904016 +389 131 3 880087739 +399 633 3 882347019 +104 508 2 888465201 +504 972 3 887910552 +409 514 5 881107310 +416 972 4 891476265 +474 11 5 887924571 +314 993 5 877886279 +328 589 4 885046244 +269 1006 3 891447409 +246 77 2 884921839 +497 655 4 878759862 +234 131 3 892334680 +328 649 3 885047417 +109 452 2 880583753 +425 474 4 890347138 +405 41 1 885547735 +405 70 3 885545912 +430 98 5 877226365 +533 724 4 888347691 +456 100 3 881372366 +95 94 5 880573288 +73 289 2 888792410 +405 1182 1 885547557 +497 105 2 879309836 +234 842 4 892334045 +49 692 1 888069040 +326 230 3 879876861 +344 459 4 884899741 +487 215 4 883446027 +489 302 5 891448109 +447 281 3 878854857 +56 1035 4 892910268 +64 183 5 889737914 +500 529 4 883874558 +85 1170 3 879456350 +11 580 5 891905222 +401 328 4 891031723 +2 14 4 888551853 +305 223 4 886322758 +354 423 4 891217575 +346 959 2 875260577 +99 845 3 885679183 +537 682 1 886029083 +181 760 1 878963418 +514 179 4 875463468 +450 612 4 882396564 +445 64 2 890987771 +13 292 5 882140867 +152 15 5 880148843 +348 546 3 886523256 +505 623 3 889333365 +374 872 5 880392268 +508 150 5 883767325 +246 413 4 884923922 +506 510 5 874873067 +321 530 4 879440109 +234 163 3 892335951 +363 895 3 891493840 +168 294 4 884286862 +5 168 3 875636691 +347 468 2 881654825 +62 715 2 879375912 +394 56 5 880887406 +488 662 4 891294896 +489 908 5 891446623 +406 211 5 879445936 +20 763 1 879668476 +476 33 4 883364475 +216 402 2 881432430 +442 482 3 883389747 +527 646 5 879455792 +230 1 5 880484370 +523 154 4 883702125 +96 216 4 884403095 +222 227 3 878184171 +486 270 2 879874064 +500 522 4 883875041 +537 557 3 886032245 +121 595 2 891390521 +252 410 5 891456989 +201 124 3 884112991 +271 864 3 886106165 +406 529 2 879446108 +393 870 3 887745454 +64 203 4 889737851 +269 53 1 891451111 +137 243 4 881432790 +527 64 3 879456030 +451 937 4 879012684 +291 232 4 874835198 +291 128 4 874835062 +233 223 4 875508225 +369 172 5 889428642 +514 83 5 875462568 +406 652 2 879793179 +172 772 1 875537099 +12 195 4 879959670 +451 299 1 879012721 +417 72 4 879649107 +254 423 5 886472799 +271 89 3 885848518 +487 73 3 884050038 +298 257 4 884126240 +82 211 4 878769815 +506 1014 3 880908472 +363 448 5 891497953 +102 235 3 892993605 +87 1041 4 879877007 +363 29 1 891498365 +488 333 4 891293606 +440 271 5 891550404 +541 756 4 883866028 +405 85 4 885547407 +537 504 3 886030652 +466 682 1 890282957 +528 358 2 888520491 +524 410 2 884832742 +497 79 4 879310730 +100 690 4 891375629 +249 1 4 879572210 +504 1004 4 887910023 +486 331 2 879874112 +286 707 5 877531975 +442 1183 3 883390674 +293 482 4 888906096 +82 462 4 878769992 +1 194 4 876892743 +7 391 3 892132943 +109 239 4 880578632 +407 345 4 884614729 +459 993 3 879563146 +393 404 3 889728713 +222 214 4 878182453 +163 272 4 891219977 +121 427 4 891388286 +254 678 3 886470859 +481 42 3 885828426 +291 236 4 874834128 +454 490 2 888266754 +363 603 4 891495109 +343 943 4 876406552 +160 474 4 876857977 +533 673 3 879439143 +382 7 2 875945837 +538 164 3 877108631 +374 550 5 880938965 +90 19 3 891384020 +381 682 2 892697982 +511 299 2 890004827 +450 1054 2 882812495 +293 732 3 888906516 +486 336 2 879874218 +405 548 1 885549095 +301 501 3 882078040 +537 1065 1 886030738 +59 176 5 888205574 +327 651 4 887745744 +343 180 5 876404613 +453 59 2 888202258 +429 264 3 882387551 +447 483 5 878855818 +60 95 4 883327799 +422 1199 3 875129975 +512 198 5 888579920 +279 395 4 875659329 +533 322 4 879193106 +421 174 5 892241362 +221 240 4 875244352 +387 1091 1 886483670 +488 200 2 891294606 +515 288 4 887658604 +360 170 5 880355485 +372 447 5 876869445 +200 195 5 884128822 +15 280 3 879456167 +504 443 3 887910511 +280 1041 5 891702544 +394 222 4 881132876 +325 191 3 891478408 +262 69 4 879793479 +417 286 5 879646286 +492 97 3 879969210 +450 134 3 882373597 +109 739 4 880579107 +64 269 5 879365313 +268 1091 2 875744895 +497 257 4 879309648 +305 215 2 886323464 +207 566 4 875509434 +532 655 5 892861435 +423 328 1 891394874 +303 151 5 879484534 +299 197 3 878192039 +373 163 4 877098891 +509 680 1 883591252 +236 151 2 890116964 +82 81 3 878770059 +409 496 5 881107817 +326 44 1 879875852 +392 344 4 891037490 +486 121 3 879875188 +508 13 4 883777366 +394 385 5 880889010 +524 702 4 884636262 +535 171 3 879618414 +10 527 4 877886597 +455 222 3 878585775 +361 53 2 879441351 +334 1041 3 891549667 +421 302 4 892241236 +94 183 5 891720921 +93 1 5 888705321 +506 520 5 878044852 +394 144 5 880886978 +267 408 5 878974783 +481 596 4 885828773 +181 360 1 878962005 +130 665 3 876252175 +205 875 2 888284532 +339 134 5 891033044 +474 199 5 887927456 +435 1044 4 884132515 +357 471 5 878951498 +94 41 3 891723355 +524 193 4 884636498 +535 506 5 879617819 +389 411 4 880088659 +246 572 3 884923127 +465 190 4 883530054 +240 245 4 885775831 +457 20 5 882393967 +373 144 3 877098949 +145 825 4 875271477 +64 195 5 889737914 +458 234 4 886397808 +393 1014 3 887745086 +327 172 4 887743986 +401 707 2 891032868 +84 866 4 883452174 +473 268 5 878156932 +435 710 4 884131267 +504 96 4 887840098 +200 54 4 884129920 +200 98 5 884128933 +256 117 5 882150313 +293 182 5 888905481 +277 742 4 879543845 +477 255 5 875941763 +276 1407 1 874977513 +28 200 2 881961671 +478 288 5 889388862 +537 150 3 886029974 +180 790 1 877127572 +537 203 4 886031437 +537 177 3 886031506 +95 179 3 880570909 +455 277 4 879109565 +59 489 4 888205300 +514 344 3 891900164 +12 202 4 879959514 +363 707 3 891494906 +219 855 5 889452619 +523 516 5 883702863 +429 179 3 882385012 +537 507 4 886030966 +126 311 4 887855173 +293 15 3 888904777 +499 213 3 885598989 +524 179 5 884635204 +458 952 2 886395119 +457 529 4 882397763 +45 50 5 881007272 +345 365 2 884993760 +370 114 3 879434587 +391 71 3 877399236 +236 275 3 890116499 +495 162 3 888633351 +145 379 3 875272299 +466 27 3 890285113 +458 182 4 886397771 +53 96 4 879442514 +351 880 2 879481460 +406 235 4 879540330 +42 219 1 881109324 +513 546 4 885062601 +298 133 3 884125093 +89 137 1 879441335 +455 1265 3 879108997 +125 41 2 892838510 +98 322 3 880498586 +90 18 3 891383687 +426 657 5 879442160 +535 662 3 879618414 +234 546 1 891227851 +246 1411 2 884924026 +457 64 5 882396868 +521 153 4 884478086 +503 153 2 880472250 +220 294 4 881197663 +442 403 4 883390466 +445 1528 2 891200355 +425 562 1 878738385 +435 255 3 884134290 +56 376 3 892911420 +425 597 1 878739095 +499 427 5 885599474 +393 56 2 887746015 +189 24 4 893264248 +532 412 2 874795951 +269 274 1 891450901 +354 604 4 891217755 +75 408 4 884050046 +194 414 3 879522240 +117 546 3 881009758 +406 411 4 879540199 +445 881 1 891199510 +154 482 4 879138831 +142 463 3 888640489 +450 99 4 882376803 +467 248 3 879532651 +185 276 4 883524475 +8 684 4 879362356 +380 512 3 885479355 +469 923 5 879523891 +299 275 4 877877535 +301 28 4 882076264 +542 206 2 886532602 +358 213 5 891269827 +500 319 4 883864793 +94 392 3 891722646 +291 79 5 874834799 +530 535 4 886198575 +185 111 4 883524529 +101 255 4 877137015 +99 358 2 885678520 +376 181 4 879454598 +255 281 1 883216902 +296 199 5 884197193 +320 568 4 884749327 +498 11 3 881956576 +450 607 5 887135753 +416 473 2 876697387 +521 100 3 884475872 +532 692 5 893119336 +21 261 1 874951006 +130 79 5 875217392 +217 79 5 889069741 +496 1401 3 876065499 +535 285 4 879619144 +67 24 4 875379729 +141 1283 3 884585168 +125 109 3 892838288 +59 149 4 888203313 +355 286 5 879485423 +454 215 4 881959917 +537 312 3 886029211 +501 127 5 883347773 +308 512 5 887736584 +9 690 1 886959344 +194 230 1 879535548 +87 781 5 879876524 +496 1444 1 876066465 +249 228 4 879572496 +144 476 2 888104625 +524 928 4 884323551 +466 550 3 890284903 +250 475 4 878089436 +436 1178 3 887771825 +164 370 5 889402443 +407 229 3 876338691 +178 298 2 882823905 +144 258 4 888103371 +416 12 5 893212572 +268 249 4 875742437 +399 747 5 882345053 +203 276 4 880434810 +487 194 5 883446322 +514 150 3 886189467 +339 203 4 891032466 +269 81 3 891448323 +279 139 3 890780864 +339 208 4 891032827 +195 152 3 890589490 +389 435 4 880087073 +363 849 2 891498365 +268 1037 2 875745255 +94 125 1 891721851 +360 205 5 880356240 +13 419 3 882398814 +95 649 4 880571678 +7 56 5 891351432 +58 732 3 884305321 +398 715 2 875736732 +472 374 2 875982922 +405 1558 1 885549506 +401 724 4 891033319 +312 671 5 891699182 +178 92 3 882827803 +234 610 4 892079769 +343 302 4 876402390 +308 71 4 887739257 +433 294 3 880585271 +339 735 4 891034717 +405 73 5 885547313 +495 163 5 888633277 +346 293 3 875000499 +393 274 4 887744549 +65 778 4 879216949 +537 206 1 886031720 +60 736 5 883327923 +392 488 4 891038978 +390 742 4 879694198 +497 174 4 879310705 +406 4 2 880131792 +332 370 2 887938849 +21 748 1 874950889 +83 1047 2 891182319 +498 302 3 881953659 +380 61 4 885478193 +130 407 2 876251388 +254 210 5 886472172 +429 1033 1 882387350 +255 447 3 883216599 +526 269 5 885681886 +62 729 3 879375414 +158 129 5 880132383 +293 252 2 888905086 +525 829 2 881086393 +57 249 5 883697704 +405 39 1 885546155 +234 140 2 892334766 +514 558 4 875318114 +512 318 5 888579569 +95 282 4 880573506 +458 293 5 886396767 +455 25 3 879109110 +58 512 3 890770101 +541 654 3 883875215 +194 182 3 879521475 +458 317 5 886397155 +445 959 5 891200869 +276 99 4 874792907 +215 288 2 891434563 +441 15 3 891035699 +207 237 4 877878342 +495 616 4 888635050 +250 270 4 883263374 +512 11 5 888579520 +5 50 4 875635758 +405 517 3 885547177 +115 96 3 881172117 +279 455 5 877236424 +236 56 5 890116254 +252 276 5 891456877 +322 23 5 887314417 +478 350 1 889387418 +24 176 5 875323595 +36 289 2 882157356 +242 331 5 879741340 +344 487 5 884900791 +523 242 5 883699464 +95 356 4 880571117 +489 682 4 891366606 +311 12 4 884364436 +135 234 4 879857797 +373 186 5 877099178 +318 376 3 884498314 +82 28 3 878769815 +339 29 3 891035759 +442 156 4 883391221 +417 1210 2 879649044 +295 738 4 879518546 +452 204 3 875275815 +524 127 5 884634533 +459 597 3 879563270 +537 570 2 886031831 +521 230 3 885254250 +354 14 4 891216575 +195 500 4 876617344 +49 13 3 888068816 +222 845 3 877563530 +255 982 2 883217030 +399 214 4 882344722 +325 961 4 891479312 +386 117 5 877655028 +474 1123 4 887923924 +178 249 3 884836855 +457 96 5 882553113 +95 63 3 880572218 +378 277 4 880044609 +412 56 5 879717071 +436 172 3 887768945 +222 132 2 878181829 +505 271 4 888631208 +351 343 3 883356591 +472 97 3 875981281 +318 628 4 884494757 +542 396 4 886533112 +60 153 3 883326733 +387 156 5 886484336 +405 1575 1 885549407 +399 975 2 882344974 +518 763 1 876823994 +393 423 3 887746849 +92 504 3 875653050 +487 294 4 883440572 +297 298 5 874954814 +164 866 5 889402121 +363 298 5 891499411 +184 25 4 889908068 +30 304 4 875988548 +112 323 3 884992651 +537 475 4 886029727 +187 214 4 879465632 +447 85 4 878856526 +311 8 4 884364465 +378 631 4 880045652 +537 134 5 886030862 +36 333 4 882157227 +527 1109 3 879455792 +141 279 1 884584817 +430 117 3 877225484 +197 39 2 891409982 +442 628 4 883391221 +532 1119 5 893119415 +494 107 4 879541405 +498 228 2 881961627 +154 191 4 879138832 +269 1011 4 891446246 +325 23 5 891478276 +532 345 4 884594358 +276 603 5 874795613 +271 570 3 885849742 +295 527 4 879517964 +545 554 3 879899497 +308 357 4 887738151 +399 432 3 882348283 +181 1132 1 878963342 +363 571 1 891498964 +309 334 4 877370356 +119 11 5 874781198 +506 463 3 874873157 +128 245 2 879966524 +463 221 5 877385180 +537 1085 4 886030416 +382 504 3 875946907 +497 1016 4 879310604 +253 685 2 891628884 +233 197 5 877663303 +402 529 4 876266775 +479 144 4 879461741 +459 1040 2 879563701 +532 96 5 892867296 +361 150 2 879440345 +405 1159 1 885549407 +44 71 3 878347633 +455 245 3 878585344 +391 294 2 877398619 +535 8 4 879618288 +429 602 5 882386628 +450 127 5 882373155 +416 588 5 893213644 +312 684 5 891698664 +223 682 4 891548828 +463 14 1 890453075 +361 504 4 879441215 +109 71 4 880578066 +174 111 5 886433898 +299 432 3 877880612 +447 447 3 878855724 +293 1248 2 888907527 +41 175 5 890687526 +62 238 5 879373568 +506 176 5 874873892 +52 237 4 882922227 +59 1119 4 888206094 +207 5 3 880839802 +521 288 3 884475470 +72 664 3 880037020 +237 9 4 879376730 +292 298 4 881103977 +379 398 1 880525638 +151 31 3 879524713 +276 100 5 874786605 +393 473 3 887745135 +514 4 4 875463440 +293 546 1 888904927 +94 83 4 885873653 +254 449 5 886475446 +58 175 5 884663324 +436 821 4 887769733 +486 220 3 879875441 +62 174 4 879374916 +206 691 1 888180081 +301 373 4 882079334 +494 194 4 879541298 +308 198 3 887739172 +193 541 1 889125976 +545 132 4 884134519 +44 231 2 878347915 +474 618 4 887927457 +356 316 4 891406372 +457 232 4 882397666 +144 333 3 888103371 +429 223 4 882385034 +506 97 4 874873374 +399 1090 2 882345212 +537 143 1 886031438 +233 8 3 877663612 +389 173 3 880087003 +506 402 4 877539905 +516 191 4 891290685 +504 234 3 887838740 +303 1510 3 879485659 +289 222 2 876789463 +450 428 4 887660722 +500 216 4 883873556 +405 1274 1 885548137 +344 202 4 884901180 +152 785 5 886535773 +479 54 3 879462121 +326 72 2 879877264 +353 326 2 891402444 +359 472 4 886453402 +151 561 3 879543342 +234 1044 2 892336194 +308 448 3 887740866 +532 338 3 879931705 +504 133 5 887832593 +344 647 4 884814401 +259 15 3 881378653 +482 257 4 887644063 +405 720 1 885546487 +453 416 2 888206132 +495 566 4 888635144 +201 438 1 884114813 +527 207 4 879455873 +454 837 2 888267315 +60 229 4 883327472 +95 779 3 880572288 +368 217 5 889783562 +15 930 2 879456381 +393 138 3 889731793 +389 69 5 880087345 +244 458 3 880604405 +279 190 3 875307407 +274 100 5 878945404 +505 651 3 889333598 +339 151 4 891033676 +254 227 4 886474806 +279 150 3 886019867 +474 42 4 887923923 +345 382 4 884992725 +539 382 5 879787825 +531 905 4 887049166 +380 435 3 885479124 +378 469 5 880046069 +151 517 2 879542588 +435 21 4 884134134 +290 484 3 880474174 +534 926 4 877807780 +128 82 5 879968185 +347 470 5 881654301 +536 2 4 882360227 +186 121 2 879023074 +43 778 5 883955363 +493 527 5 884132037 +410 886 2 888627018 +399 384 2 882345698 +399 234 3 882343294 +311 191 4 884364764 +545 222 4 879899157 +207 696 3 877751310 +18 588 4 880131201 +399 195 2 882342669 +293 460 3 888905005 +481 524 5 885829045 +401 1011 3 891032367 +450 378 5 882373995 +474 1172 4 887924469 +533 274 4 885305541 +45 596 3 881014015 +454 96 4 888266600 +300 876 5 875650105 +197 435 5 891409935 +456 523 4 881373353 +521 72 3 885254323 +249 789 5 879572911 +130 237 5 874953621 +532 301 4 874999563 +493 1278 5 884130215 +465 64 5 883530088 +84 543 5 883453713 +416 354 4 893214333 +287 4 4 875336652 +90 285 5 891383687 +295 421 4 879517802 +276 916 4 892436298 +151 1070 4 879524174 +246 993 3 884920770 +6 510 4 883600785 +466 269 2 890282759 +347 17 4 881654635 +59 673 5 888204802 +399 412 2 882352468 +187 65 5 879465507 +336 90 5 877757062 +458 307 4 889323481 +284 539 2 885329821 +458 1048 4 886395119 +132 523 4 891278996 +301 133 4 882077142 +198 208 3 884208571 +314 161 5 877888168 +233 91 3 876812281 +435 351 2 887509368 +190 823 2 891626040 +151 566 3 879528890 +152 354 3 890322242 +18 435 4 880130890 +271 135 4 885848373 +407 290 3 875042865 +291 1077 4 874834963 +363 271 4 891493840 +479 255 2 879460192 +240 873 2 885775857 +5 408 5 878844495 +514 1 5 875309276 +532 235 3 887041328 +498 1103 4 881957847 +13 79 3 882139746 +437 1075 4 881002374 +38 1035 5 892431907 +69 245 1 882027284 +442 12 4 883390912 +371 197 4 877487364 +211 457 4 879437184 +13 674 3 882396955 +104 316 4 888442461 +290 167 2 880475807 +270 7 4 876954004 +534 117 5 877807973 +221 402 2 875393426 +457 134 5 882396832 +404 300 4 883790749 +474 591 3 887915366 +44 69 4 878347711 +201 1224 2 884140891 +514 11 4 875318082 +542 648 4 886532950 +486 1589 3 879874515 +405 588 2 885548785 +293 133 3 888906045 +81 150 3 876533619 +193 1 4 890859954 +244 1132 4 880605132 +187 197 4 879465597 +94 750 4 891725501 +312 486 5 891699655 +206 1022 1 888179980 +533 475 1 879192500 +299 514 5 877881229 +308 1456 4 887739056 +547 328 4 891282757 +201 129 4 884114471 +392 270 4 891037437 +219 71 1 889452455 +496 746 3 876066633 +321 499 3 879440393 +337 125 4 875185574 +543 210 3 875721967 +303 328 3 879466166 +416 326 5 893214041 +367 145 3 876690077 +239 427 5 889180888 +6 493 5 883601713 +178 729 4 882827020 +201 1070 5 884111677 +269 1188 1 891451857 +82 283 2 884714164 +313 655 4 891014474 +533 122 1 879366118 +500 421 4 883875303 +497 268 4 878759399 +178 876 2 886678484 +406 168 3 879445642 +374 963 5 883629108 +108 127 4 879879720 +293 651 3 888905865 +10 274 4 877889333 +228 938 1 889387173 +393 95 4 889555295 +32 1023 3 883717913 +198 298 1 884204993 +406 468 1 879446361 +72 9 5 880035636 +15 866 4 879456288 +429 428 4 882386942 +437 674 3 880143714 +246 254 1 884924710 +398 85 4 875718731 +7 62 3 891354499 +256 794 4 882165135 +458 237 4 886394623 +290 629 3 880474716 +378 217 3 880332683 +12 242 5 879960826 +279 529 3 875308843 +339 195 3 891032576 +334 425 4 891548835 +59 135 5 888204758 +487 227 3 883531279 +527 99 3 879456186 +430 164 3 877226323 +254 71 3 886472737 +55 118 5 878176134 +409 855 4 881108246 +476 63 3 883365274 +271 441 3 885849648 +37 147 3 880915749 +207 319 3 879664891 +399 1393 3 882340421 +456 449 3 881375226 +58 189 3 884304790 +217 56 5 889069709 +425 325 3 878737684 +416 156 5 893212895 +423 696 3 891395759 +271 651 4 885848584 +455 97 5 879112436 +73 64 5 888625042 +266 275 5 892257831 +421 176 5 892241422 +435 111 3 884132777 +371 22 5 877487134 +243 1148 3 879988723 +21 406 1 874951293 +520 269 5 885168591 +213 942 4 878955533 +346 156 4 874948139 +416 916 3 893141069 +402 696 4 876267014 +246 81 5 884921638 +184 483 5 889908630 +537 844 4 886029692 +244 162 4 880606993 +416 627 5 893213918 +405 51 1 885546577 +533 303 4 893160944 +405 1425 1 885547557 +62 472 2 879373152 +474 183 5 887924619 +454 133 4 881959652 +508 239 2 883777257 +460 146 4 882912370 +533 847 3 880402996 +24 729 5 875323475 +81 121 4 876533586 +263 58 4 891299264 +541 28 4 883864739 +98 88 3 880499087 +533 218 2 879191652 +347 31 5 881654321 +416 87 5 893212484 +324 150 4 880575412 +233 204 5 880923202 +542 318 4 886532602 +227 1007 4 879035158 +399 143 5 882344638 +130 313 5 884623736 +234 195 2 892078936 +280 771 3 891702122 +253 15 4 891628019 +457 717 3 882395894 +401 316 5 891031756 +393 622 4 889555074 +479 523 4 879460894 +184 285 5 889907771 +311 31 4 884364570 +136 318 5 882848820 +488 243 3 891293400 +59 741 4 888203175 +334 423 5 891545821 +426 435 3 879444604 +479 50 4 879460160 +178 654 3 882827506 +18 213 5 880131201 +495 581 5 888635655 +222 396 1 878183381 +416 720 4 886318128 +428 323 3 885943869 +234 133 3 892334680 +221 732 4 875246330 +527 210 4 879455924 +401 197 4 891033417 +442 1098 4 883388237 +330 660 5 876546752 +504 25 4 887831419 +57 318 5 883698580 +151 154 4 879524642 +409 318 4 881107943 +176 325 3 886047375 +449 127 5 879958572 +455 428 4 879111268 +264 123 4 886122952 +456 286 3 887165765 +23 418 4 874786037 +416 985 3 876697165 +416 812 4 893212623 +548 273 5 891044411 +535 182 3 879617574 +307 419 4 877122115 +435 470 2 884131661 +268 1054 1 875744051 +354 32 3 891217929 +245 756 3 888513425 +13 849 1 882397833 +459 278 4 879563270 +405 1074 3 885546636 +217 373 2 889070307 +480 510 4 891208460 +474 237 4 887915366 +548 690 3 891042475 +178 280 4 882824592 +537 318 4 886030707 +416 98 5 893213644 +347 763 5 881652837 +532 938 3 892519553 +486 1093 4 879874692 +374 465 5 882158849 +457 15 4 882393688 +326 433 2 879875644 +104 181 5 888465972 +537 874 3 886029083 +486 1079 2 879875347 +201 546 2 884140891 +305 317 4 886323713 +268 72 3 875743831 +454 685 3 888267198 +320 1215 1 884749097 +325 654 4 891478276 +279 124 3 878261977 +318 763 3 884494897 +230 82 5 880485311 +145 356 4 875272299 +297 160 1 875238853 +268 1231 2 875744228 +121 313 5 891390013 +342 286 4 874984002 +507 682 5 889964620 +117 173 5 881011697 +450 294 4 882370316 +233 129 3 876374463 +263 222 4 891299573 +532 690 4 876696258 +435 1204 3 884132100 +292 209 5 881103874 +178 265 5 882826394 +307 135 4 877122208 +69 273 3 882072803 +334 488 5 891546231 +546 413 4 885140808 +269 931 1 891451754 +398 491 5 875718954 +508 502 4 883776778 +468 182 5 875292320 +263 498 5 891298046 +472 743 4 883904504 +13 339 3 882140718 +381 102 2 892696130 +361 673 4 879441286 +358 127 1 891269117 +375 185 5 886621950 +465 395 1 883532120 +7 29 3 891353828 +50 276 2 877052400 +130 974 4 876250932 +62 1134 2 879372936 +214 475 5 892668153 +32 271 3 883709953 +70 393 4 884068497 +533 161 4 879439465 +144 288 2 888103509 +36 875 3 882157470 +151 131 5 879525075 +401 272 3 891031508 +238 845 3 883576424 +429 448 3 882386006 +137 476 1 881433524 +180 684 5 877442058 +487 95 4 883446872 +466 357 4 890285706 +8 435 5 879362233 +486 285 5 879874482 +524 527 5 884634785 +201 505 3 884113772 +425 1597 3 878738596 +373 142 3 877111362 +548 636 4 891044538 +465 584 3 883531325 +338 175 4 879438762 +45 411 3 881015657 +26 14 3 891371505 +42 202 5 881107687 +158 985 4 880134261 +328 540 3 885048730 +452 161 5 885816915 +262 131 5 879961282 +274 69 5 878946644 +523 393 5 883702411 +409 89 5 881107539 +416 70 5 893213019 +59 462 5 888205787 +445 748 1 891199458 +352 385 4 884289760 +504 420 3 887840560 +59 403 5 888206605 +435 402 3 884131996 +492 511 5 879969879 +393 443 3 887745624 +537 687 1 886029526 +399 95 3 882343068 +450 469 4 882396153 +463 150 2 889943683 +327 919 5 887820828 +264 873 3 886121517 +495 501 3 888634536 +374 1134 4 880392846 +157 289 4 886889876 +103 257 3 880415892 +223 926 4 891549792 +524 467 4 884635287 +406 174 4 879445809 +468 98 5 875288196 +478 23 2 889388562 +188 157 3 875072674 +393 364 2 889731139 +399 38 2 882345164 +109 373 5 880583241 +380 306 4 885477802 +45 13 5 881012356 +454 228 3 881959960 +417 579 2 879649467 +339 180 5 891032793 +459 123 3 879563312 +222 941 3 881059736 +307 529 4 877381142 +292 180 5 881103652 +432 844 4 889415947 +474 171 4 887926804 +532 763 5 892866230 +264 185 5 886122261 +141 298 5 884584790 +435 80 2 884133610 +404 332 4 883790749 +533 82 4 879439204 +405 796 3 885547447 +532 532 3 887040858 +408 358 4 889680045 +385 144 3 879443102 +56 117 5 892679439 +299 474 5 877880474 +476 42 4 883364295 +301 746 3 882075774 +467 124 5 879532534 +537 663 3 886031540 +181 1097 1 878962720 +437 654 5 880141041 +327 865 5 887745774 +398 497 3 875717407 +110 41 4 886989399 +210 181 5 887731082 +249 237 5 879640361 +512 1459 4 888579569 +399 760 1 882341554 +535 181 4 879617818 +548 276 3 891415512 +147 937 3 885593997 +389 23 4 879991147 +545 399 4 879900794 +222 549 4 878184055 +503 88 4 880383468 +522 100 5 876960824 +330 197 5 876546071 +458 694 4 886396140 +201 95 3 884114015 +409 609 3 881108829 +378 403 4 880046408 +327 676 3 887746686 +176 741 3 886048145 +527 285 5 879456363 +391 544 4 877400092 +312 510 5 891699490 +254 588 3 886473701 +25 265 4 885853415 +7 552 4 891354531 +296 528 5 884197068 +393 117 4 887745575 +410 328 3 888626786 +433 12 5 880585803 +339 1110 4 891034657 +405 1579 1 885549408 +287 121 4 875334494 +496 42 5 876066676 +222 655 4 878182210 +393 479 4 889555295 +312 414 3 891699626 +184 97 2 889908539 +135 230 3 879857843 +542 214 3 886533452 +532 492 4 888637105 +456 133 3 881373084 +13 585 4 882141814 +26 546 2 891371676 +470 952 3 879178884 +508 73 3 883777329 +399 566 4 882344871 +521 241 4 885254006 +406 519 4 879445378 +129 678 1 883245452 +268 381 3 875309344 +417 685 1 879646570 +522 96 3 876961076 +7 600 4 891354090 +411 195 3 891035239 +213 257 4 878870846 +276 800 3 874792745 +174 739 5 886513729 +500 175 5 883874341 +497 1407 3 879362609 +456 61 4 881373228 +535 39 4 879617574 +487 196 5 883446830 +243 215 3 879988046 +484 422 3 891195825 +387 806 1 886483824 +450 208 5 882377358 +100 874 1 891374868 +394 433 4 880886919 +181 291 3 878962997 +311 732 4 884365617 +385 658 2 879445454 +506 603 5 874873198 +227 934 2 879035874 +288 234 4 886374473 +498 32 4 881956363 +184 215 4 889909812 +505 566 3 889334503 +217 541 3 889069974 +194 529 4 879523575 +443 327 4 883504593 +345 278 3 884991505 +499 750 5 885597747 +13 712 4 882141872 +221 79 4 875245715 +479 118 3 887064767 +450 290 4 882399509 +160 770 4 876861878 +533 405 3 879192793 +518 547 3 876823645 +10 333 4 877886359 +454 250 4 881959238 +454 566 4 888267087 +97 205 2 884238817 +490 15 1 875427739 +435 196 4 884131597 +85 134 5 879454004 +279 1499 4 890451408 +458 9 5 886394373 +429 77 3 882385705 +65 28 4 879216734 +504 295 4 887831567 +343 1073 4 876405771 +70 168 4 884065423 +521 202 3 884478530 +405 1112 2 885546530 +498 538 1 881962988 +487 260 2 883441026 +510 325 1 887667575 +413 275 5 879969557 +329 137 5 891655812 +303 50 5 879466866 +417 325 2 880949231 +327 772 3 887822646 +200 325 5 876041719 +517 1016 1 892607194 +535 212 4 879618613 +339 5 3 891034953 +389 954 4 880614031 +399 420 3 882347783 +137 260 3 881432735 +498 12 4 881957195 +378 632 5 880055564 +384 289 5 891283502 +525 411 3 881086612 +132 12 4 891278867 +534 237 4 877808002 +551 684 5 892783212 +538 963 4 877363775 +521 161 2 885254116 +181 413 2 878963241 +174 100 5 886433788 +338 216 4 879438196 +49 420 4 888067031 +498 515 4 881956953 +373 409 2 877107235 +95 275 3 879192819 +524 168 3 884634995 +293 810 1 888907674 +275 162 3 880315276 +295 417 5 879518474 +494 126 4 879541476 +417 386 3 879648382 +311 218 4 884366363 +277 925 4 879543592 +116 310 4 886309549 +328 232 3 885047670 +59 11 5 888205744 +437 91 3 880143315 +551 578 5 892784672 +378 720 2 880056798 +417 68 3 879647275 +452 458 1 875266197 +311 228 5 884365325 +527 634 5 879456363 +321 463 3 879440393 +13 110 3 882141130 +472 3 5 892790676 +435 637 4 884132691 +303 250 4 879544712 +429 366 3 882387181 +84 25 3 883452462 +24 421 5 875323712 +189 136 4 893265535 +194 837 4 879546671 +466 651 3 890284819 +488 520 4 891293660 +494 50 5 879541246 +339 649 5 891034007 +468 435 4 875292027 +360 165 4 880356059 +130 477 4 875216593 +492 185 3 879969512 +18 504 5 880129940 +438 845 4 879868042 +497 89 4 879310850 +487 586 2 884051840 +484 258 5 883402900 +521 232 3 886063553 +459 220 3 879563367 +297 283 4 874954387 +112 1106 4 892439835 +495 404 4 888635380 +9 294 4 886959453 +497 197 3 879310419 +7 446 2 892132020 +426 174 3 879442044 +69 246 5 882072827 +70 183 4 884149894 +21 281 2 874951416 +521 248 3 884476110 +515 292 3 887659805 +253 591 3 891628358 +472 368 3 875979685 +332 333 5 889069499 +395 378 5 883764421 +308 1154 2 887740367 +119 25 5 886177013 +84 317 3 883453587 +7 380 4 891354053 +340 417 5 884991544 +56 191 4 892678526 +291 946 4 875086887 +290 465 3 880474799 +551 756 1 892784437 +543 135 5 875667109 +387 593 3 886480483 +506 367 3 874873068 +479 1016 3 879460254 +3 320 5 889237482 +518 1017 3 876823071 +20 934 4 879668783 +544 326 3 884795580 +344 926 2 886381985 +488 186 4 891294108 +267 144 5 878971463 +276 271 4 880913800 +361 165 5 879440573 +487 202 5 883445943 +303 650 5 879483941 +537 529 3 886031375 +397 177 5 882843746 +450 1030 1 882468789 +473 7 2 878157329 +542 746 4 886532838 +435 474 3 884131085 +525 300 4 881085217 +303 1073 4 879467191 +90 174 5 891383866 +308 842 3 887740099 +60 418 3 883327342 +313 485 3 891016425 +458 521 4 886397377 +345 241 4 884992142 +467 340 3 879532198 +393 1040 3 887745410 +151 638 5 879528819 +471 969 2 889828154 +426 610 4 879444550 +347 276 3 881652657 +43 172 4 883955135 +506 678 3 879074774 +532 312 2 884594422 +160 201 5 876858346 +307 200 3 877117875 +450 632 5 882395914 +295 513 4 879517492 +535 489 4 879619000 +495 62 3 888635937 +22 988 1 878887116 +141 261 1 886447904 +524 742 3 884627446 +519 335 5 883248595 +291 12 5 874834701 +33 294 3 891964166 +90 317 4 891383626 +504 71 5 887909321 +363 121 2 891497393 +90 896 3 891382163 +346 2 5 875263473 +497 386 2 879363111 +234 1205 1 892335501 +339 474 4 891032286 +546 928 4 885141132 +445 313 2 890988206 +301 111 1 882074708 +332 1047 3 887938652 +504 716 4 887909532 +543 982 3 877452676 +496 1473 3 876072548 +416 264 3 876696938 +399 393 4 882343455 +119 226 3 887038665 +481 507 4 885828773 +543 83 4 877547441 +524 506 4 884634938 +299 811 4 877880794 +194 118 3 879539229 +293 942 4 888907210 +283 625 3 879298007 +450 663 4 882373019 +387 102 3 886483669 +498 218 3 881961877 +313 144 4 891015144 +474 346 5 887914688 +315 1065 4 879799526 +393 1224 3 889555176 +500 83 4 888538350 +452 259 2 888494119 +323 763 4 878739459 +206 359 1 888179980 +458 753 4 886397110 +101 841 2 877136763 +291 475 5 874805699 +429 805 3 882385963 +331 198 4 877196634 +222 391 3 881060635 +262 485 4 879793363 +405 519 2 885546025 +426 98 4 879442737 +363 88 2 891498087 +43 559 1 883956468 +393 843 3 889731861 +96 238 4 884403250 +548 322 4 891043509 +543 95 3 874865728 +336 1011 2 877754536 +263 204 4 891298854 +405 710 4 885547268 +64 237 4 889740310 +530 156 4 883790381 +450 878 2 884098534 +506 295 4 879074845 +454 210 4 881960361 +452 97 4 885476560 +109 122 2 880583493 +489 355 5 891447872 +215 636 2 891436690 +459 255 4 879563613 +226 507 2 883889146 +312 855 5 891699538 +416 316 3 888700030 +195 508 3 886782519 +523 83 5 883700870 +447 845 3 878854678 +551 405 3 892783612 +495 831 1 888637325 +450 132 5 882374422 +354 9 3 891216607 +315 276 4 879799526 +484 1 5 881450058 +535 923 4 879617531 +327 644 3 887747410 +336 125 3 877760032 +303 1142 4 879544659 +363 200 3 891495918 +393 1239 3 889729508 +286 763 2 876521809 +290 69 4 880473696 +399 48 3 882349868 +542 508 3 886532762 +480 298 2 891207665 +439 288 3 882892424 +435 834 5 884134910 +189 97 4 893277579 +503 385 1 880472298 +211 1127 1 879461395 +407 172 4 875044037 +339 737 3 891035180 +2 287 3 888551235 +535 454 3 879617894 +92 1157 2 875812435 +249 309 3 879571456 +521 238 3 884478101 +416 249 3 876697558 +339 22 5 891033735 +332 824 3 887938818 +44 313 4 883612268 +48 528 5 879434954 +201 591 3 884140307 +178 578 4 882828021 +301 559 4 882078955 +407 28 4 875042826 +327 209 4 887747939 +92 7 4 876175754 +96 190 4 884402978 +301 1135 3 882078906 +405 707 1 885549309 +270 447 4 876956360 +14 238 5 879119579 +314 806 4 877887802 +308 195 5 887738619 +38 356 2 892430309 +421 117 5 892241624 +224 689 3 888082246 +90 762 3 891385250 +10 33 4 877893020 +184 747 3 889909672 +435 1231 2 884134019 +263 646 5 891299877 +161 22 2 891171282 +271 234 5 885848640 +10 245 4 877886281 +504 204 3 887838908 +270 794 4 876955689 +279 1361 3 878261977 +453 239 3 877554927 +16 509 2 877720118 +363 77 2 891496587 +276 298 5 874786467 +459 323 3 879561708 +364 262 3 875931432 +460 302 4 882910837 +48 183 5 879434608 +141 333 5 887424639 +186 568 4 879024014 +210 483 5 887736482 +451 995 1 879012721 +453 651 4 877554743 +379 153 4 880525284 +239 1204 4 889178986 +334 1198 3 891544735 +345 709 4 884993033 +535 953 5 879618019 +380 168 4 885479436 +474 517 4 887925916 +68 475 5 876973917 +217 720 3 889070011 +527 190 4 879456362 +437 179 4 881002345 +293 291 2 888905377 +276 974 2 874786945 +548 264 4 891043547 +157 269 4 886889876 +458 8 4 886395899 +553 505 5 879949107 +181 290 2 878963168 +526 315 5 885682102 +106 1242 4 881516731 +102 204 4 888803487 +399 153 2 882351347 +499 414 3 885599533 +295 105 4 879519473 +545 210 5 879899158 +433 322 2 880585466 +406 1220 3 882480802 +286 212 1 877531830 +378 200 3 880045681 +516 523 3 891290649 +543 79 4 877545356 +511 294 4 890005011 +216 943 5 881721799 +178 469 3 882827870 +508 218 2 883777237 +94 49 4 891722174 +138 487 3 879023853 +88 1191 5 891038103 +220 264 3 881198524 +370 176 4 879435217 +87 111 4 879876611 +313 449 3 891028323 +370 64 4 879434745 +374 176 4 880937692 +494 748 1 879540720 +430 100 5 877225570 +303 928 3 879485589 +194 28 5 879522324 +12 168 4 879959513 +16 109 4 877719333 +544 312 2 884796086 +347 333 5 881652077 +279 172 2 878082751 +311 209 2 884364502 +239 268 2 889178512 +99 345 3 885678696 +234 160 2 892336119 +506 222 4 884517178 +330 151 4 876544734 +286 217 3 877533447 +532 682 4 877898976 +429 457 1 882384438 +293 14 3 888904985 +389 81 3 880086972 +552 13 3 879222238 +537 1111 3 886031506 +387 737 3 886484098 +314 942 3 877888346 +508 436 4 883777109 +385 811 4 879443315 +329 185 3 891656347 +109 1035 2 880579787 +541 210 5 883865575 +504 50 3 887831293 +64 588 4 889739091 +237 485 4 879376553 +405 1184 1 885547996 +20 210 4 879669065 +487 4 4 883531003 +456 54 3 881375416 +85 193 3 879454189 +506 70 4 874874055 +508 209 5 883767325 +102 211 3 892993190 +268 11 4 875309507 +484 202 5 891195179 +151 845 4 879525035 +422 558 4 879744085 +314 685 4 877886788 +498 652 5 881961182 +417 222 3 879646388 +389 693 4 880088038 +269 632 4 891447931 +551 552 3 892784259 +343 231 5 876407032 +458 663 4 886398289 +551 13 1 892783411 +463 689 2 889936731 +109 449 5 880581987 +453 174 4 877554564 +280 200 5 891702544 +10 404 4 877886911 +506 1279 4 880198144 +545 101 4 879901538 +113 116 3 875076246 +15 243 1 879455362 +389 1444 3 880088445 +454 203 2 888267487 +178 1048 2 884837073 +439 475 3 882893220 +447 963 5 878855963 +197 22 5 891409839 +201 381 3 884111986 +380 423 3 885478218 +407 732 4 876341443 +429 755 3 882387685 +363 193 3 891494962 +498 171 3 881955866 +203 222 4 880434318 +465 1078 2 883532119 +7 258 4 892135277 +75 294 3 884049758 +267 182 5 878971773 +450 751 5 885945114 +537 1068 3 886029974 +454 654 2 888267419 +182 126 5 885613153 +532 373 3 888630658 +320 1522 3 884751316 +416 865 3 886316477 +472 559 5 875981708 +490 1128 4 875428765 +343 63 4 876406062 +450 1039 5 887137271 +474 493 4 887925837 +450 967 5 882373994 +99 201 3 885680348 +356 310 3 891405721 +399 1192 3 882344638 +478 219 2 889398289 +540 7 4 882157011 +314 699 5 877888527 +407 91 4 875044337 +72 628 4 880035857 +128 815 3 879968827 +442 800 3 883390139 +210 208 5 887730443 +85 99 5 880838306 +453 721 4 888205696 +455 318 3 879111528 +303 1013 1 879544860 +454 1107 4 888267617 +535 607 5 879618700 +234 1445 4 892336286 +425 230 4 878738644 +435 473 3 884133544 +175 419 5 877108098 +308 655 4 887738664 +325 502 4 891479058 +533 525 3 879191770 +538 202 4 877108250 +450 1603 3 887139728 +437 512 4 880140978 +280 1207 4 891701998 +298 118 4 884183016 +447 435 4 878855756 +293 831 3 888905286 +60 506 5 883327441 +541 399 3 883866093 +407 118 3 876338309 +482 301 4 887643315 +506 655 4 874873892 +85 14 4 879452638 +454 248 3 881959238 +269 66 1 891451063 +387 117 3 886480788 +507 892 5 889964809 +5 416 1 875721196 +342 68 3 875319992 +56 88 1 892683895 +222 468 2 881060412 +456 216 4 881374193 +207 248 3 877878409 +201 191 4 884114471 +22 184 5 878887869 +497 298 3 879310580 +328 186 4 886037065 +328 344 4 893195665 +343 931 3 876403938 +489 334 4 891448453 +486 299 1 879874113 +373 90 4 877103846 +138 194 5 879024184 +146 301 2 891457905 +407 400 1 876348583 +497 722 3 879362985 +213 478 5 878956129 +363 179 4 891496373 +405 1265 2 885549942 +347 50 5 881652456 +92 204 4 875653913 +7 593 5 891351851 +534 1028 5 877807816 +128 1035 3 879968921 +421 56 5 892241421 +326 96 3 879875057 +472 633 4 875981428 +503 514 3 880472102 +299 47 4 877881508 +449 170 4 880410652 +459 832 3 879563758 +545 73 4 879900121 +456 92 4 881374048 +327 550 2 887820448 +532 515 5 889327324 +497 155 3 879310522 +504 1136 5 887840560 +506 608 4 874874055 +381 259 2 892698054 +59 181 5 888204877 +372 452 4 876869534 +321 186 4 879440245 +392 114 4 891038401 +8 174 5 879362183 +244 655 5 880605766 +535 174 4 879617747 +129 882 2 883244662 +338 514 5 879438114 +389 393 2 880088717 +554 28 4 876232758 +409 1537 4 881106605 +144 117 4 888103969 +528 751 4 888520371 +250 237 2 878089753 +440 319 2 891549397 +457 168 5 882395018 +217 550 1 889069842 +227 460 2 879035963 +492 86 3 879969454 +125 399 3 892838509 +372 100 3 876869388 +230 650 4 880484778 +437 684 3 880382747 +244 246 5 880604302 +399 382 3 882344134 +405 1239 1 885548163 +521 291 1 885254166 +478 79 4 889388743 +24 8 5 875323002 +305 1073 1 886323591 +497 692 3 879310379 +382 258 2 875945173 +59 174 5 888204553 +450 472 4 882397813 +184 956 3 889908693 +346 358 4 886273570 +313 479 5 891013652 +533 357 3 879191085 +90 480 5 891383835 +357 117 5 878951217 +521 427 3 884477630 +553 511 5 879948869 +298 97 4 884183063 +128 497 3 879967102 +294 240 3 877820294 +128 26 4 879969032 +280 219 2 891702199 +70 95 4 884065501 +125 914 1 892835594 +132 127 4 891278937 +348 7 4 886523302 +412 114 4 879716874 +506 646 4 874874947 +330 470 5 876546267 +32 405 4 883718008 +125 585 4 892838463 +416 388 2 886320177 +495 1419 1 888635995 +464 181 3 878354998 +536 143 5 882360425 +269 644 5 891447593 +442 210 3 883388609 +365 1137 5 891303950 +547 316 5 891282797 +380 286 5 885477802 +437 672 1 881002300 +318 566 4 884496472 +90 1199 5 891385652 +10 174 4 877886661 +85 659 4 879453844 +385 273 2 879440557 +497 748 4 878759432 +347 1016 3 881652730 +425 853 4 878738853 +456 1220 3 881375051 +550 259 2 883426119 +421 213 3 892241491 +83 871 2 891182319 +453 471 4 888205557 +398 82 5 875721348 +380 217 2 885480093 +455 694 4 879110870 +556 327 5 882135508 +101 597 3 877136928 +249 125 3 879640210 +387 246 3 886480623 +57 126 3 883697293 +104 333 2 888442305 +426 607 4 879444734 +181 1114 1 878963342 +343 277 4 876402978 +425 943 4 890347172 +499 207 5 885599533 +293 177 4 888906193 +276 151 5 874786568 +374 743 1 880394000 +200 411 3 876042824 +234 463 4 892333865 +532 331 4 890021268 +120 117 3 889490979 +69 181 5 882072778 +13 68 3 882397741 +533 931 2 879366160 +500 1111 4 883874529 +85 182 4 893110061 +518 717 5 876823963 +421 175 2 892241576 +161 50 2 891170972 +442 281 3 883391299 +495 69 3 888632070 +500 1616 4 883875501 +346 77 4 874950937 +203 257 3 880434298 +299 538 3 881605700 +398 385 3 875723253 +48 523 5 879434689 +311 520 5 884365251 +95 210 5 879196566 +426 601 3 879444321 +347 28 4 881654612 +301 426 4 882076967 +184 66 4 889910013 +537 1073 3 886031149 +405 1522 1 885548670 +394 7 5 880888390 +10 129 4 877891966 +336 237 5 877759598 +124 154 5 890287645 +492 64 4 879969539 +189 238 5 893265683 +197 230 4 891409893 +100 880 1 891375260 +87 172 5 879875737 +505 79 3 889333274 +7 178 4 891350932 +429 581 2 882385684 +535 185 4 879617931 +269 182 4 891447961 +389 531 4 880086918 +96 98 5 884403214 +111 344 2 891680243 +391 132 4 877398951 +311 194 4 884364724 +276 802 3 874792634 +515 329 2 887660131 +484 318 5 891194932 +429 55 4 882384847 +305 735 4 886324128 +532 210 5 888637085 +445 871 2 891200592 +351 289 5 879481613 +368 569 3 889783586 +90 568 5 891385165 +264 286 2 886121691 +506 209 4 874873529 +360 936 4 880354181 +372 332 4 876869330 +269 69 1 891448048 +465 855 4 883531444 +476 435 3 883364218 +416 576 5 893213103 +503 607 5 880472272 +387 265 4 886483049 +467 108 4 879532744 +249 483 5 879572314 +234 211 3 892079475 +446 270 4 879786892 +409 175 4 881107251 +524 284 3 884323525 +425 229 3 878738548 +435 357 4 884131771 +511 333 4 890004778 +246 118 1 884923175 +519 349 5 883250148 +453 475 5 877552514 +460 311 5 882912418 +28 449 2 881961394 +426 836 3 879444117 +559 524 3 891035917 +294 331 4 877818580 +13 709 4 882139863 +454 131 3 881960330 +394 1371 2 880886546 +385 127 4 879439667 +459 111 3 879563201 +537 1139 2 886032000 +445 405 4 891200869 +378 111 3 880044562 +417 181 3 879646286 +354 709 5 891217928 +186 303 3 891717938 +435 961 1 884133635 +456 919 4 881371548 +550 405 4 883426027 +54 1 4 880931595 +501 1278 3 883348372 +251 117 4 886272009 +234 393 2 892335108 +375 183 5 886621917 +370 323 2 879434333 +79 268 5 891271792 +331 414 4 877196504 +151 582 5 879524563 +334 312 2 891544286 +495 679 3 888634784 +535 203 3 879619035 +457 218 4 882547554 +87 1177 1 879877280 +186 332 4 891719775 +85 191 4 879455021 +551 690 5 892775584 +472 755 4 875981829 +445 544 2 891200417 +237 178 4 879376671 +523 549 4 883703144 +474 195 5 887923789 +130 181 5 874953621 +405 956 2 885546069 +405 555 1 885546835 +454 434 3 888267387 +95 1133 3 880572416 +373 191 4 877102549 +16 237 5 877719504 +478 392 2 889398571 +313 50 5 891013859 +201 1073 2 884111899 +515 893 1 887660131 +541 420 4 883874749 +399 826 2 882349353 +389 605 5 879991512 +504 567 2 887839196 +533 546 3 879192769 +184 399 3 889910159 +328 561 3 885049431 +250 100 5 878089786 +201 729 2 884140975 +405 1104 1 885549408 +482 295 3 887644063 +416 357 5 893213645 +429 81 3 882385243 +269 241 1 891450405 +381 1401 4 892697013 +75 1 4 884050018 +262 100 3 879962366 +452 614 3 875562198 +452 494 5 885805554 +445 325 1 891199533 +532 205 5 887788806 +357 1034 2 878952222 +551 365 5 892784524 +336 383 1 877758935 +553 182 3 879949290 +293 636 4 888906576 +6 495 4 883601366 +486 748 2 879874218 +270 250 2 876954223 +433 754 3 880585162 +62 1091 3 879376709 +448 750 5 891888099 +326 790 1 879877198 +63 405 4 875748109 +496 420 3 876069927 +8 82 5 879362356 +393 415 4 889730117 +313 629 3 891028873 +234 102 2 892335616 +405 183 1 885547909 +271 699 4 885849025 +447 405 2 878854704 +553 523 4 879948508 +435 786 4 884133657 +222 338 1 881058145 +116 258 4 876451911 +487 540 2 884050192 +128 732 4 879967047 +524 490 3 884634679 +186 540 4 879024014 +125 513 4 879454385 +460 149 4 882912174 +450 474 5 882812558 +276 88 3 874791960 +160 508 5 876768025 +249 568 4 879572256 +504 186 3 887840637 +373 382 4 877100458 +94 808 2 891723931 +338 1 3 879438143 +551 864 5 892785091 +437 1090 1 880143092 +518 458 3 876823266 +113 50 5 875076416 +339 663 5 891032952 +494 507 4 879541207 +527 513 4 879456030 +264 211 5 886123472 +38 395 3 892434164 +370 484 4 879434937 +262 559 3 879792792 +130 894 4 884624087 +90 528 5 891384065 +188 462 4 875073246 +495 1183 4 888637228 +144 729 4 888105665 +94 204 4 891721317 +234 516 3 892079140 +299 251 5 877877434 +79 319 4 891271278 +535 70 4 879618849 +553 22 5 879949324 +94 716 3 885873006 +15 310 4 879455049 +506 732 4 874874109 +21 989 3 874951039 +334 405 3 891547040 +474 198 3 887925621 +271 269 4 885844430 +489 878 2 891448565 +332 328 5 887916217 +188 553 4 875071775 +450 765 3 882471362 +115 56 5 881171409 +293 497 4 888906217 +243 1465 3 879988215 +70 1146 3 884151576 +385 506 2 879445291 +417 324 1 879646463 +263 250 2 891300103 +251 118 3 886272514 +455 898 3 883768822 +455 174 4 879111763 +299 746 4 889502979 +457 845 4 882393801 +221 59 2 875245514 +13 170 5 882139774 +75 196 4 884051948 +472 658 5 875983231 +92 425 4 875812898 +82 424 1 878768811 +339 614 3 891034867 +504 616 4 887910267 +416 58 5 893212929 +435 72 4 884132809 +290 1047 4 880475757 +472 1119 5 875983023 +524 199 4 884634646 +529 331 4 882535220 +313 393 4 891015268 +416 795 2 892440060 +487 732 5 884025080 +437 144 2 880141196 +232 132 5 888549721 +453 50 5 877562313 +58 1089 1 892242818 +24 582 4 875323368 +94 143 4 891722609 +234 515 5 892078424 +269 428 5 891448980 +295 134 5 879519556 +293 204 3 888906012 +500 275 1 883873439 +560 7 3 879975718 +181 118 2 878962955 +456 101 3 881375284 +202 242 3 879726342 +181 749 1 878961586 +506 148 3 877539905 +458 357 3 886397275 +334 1312 4 891628832 +503 241 5 880383425 +57 748 4 883696629 +495 470 5 888637768 +465 283 3 883530560 +540 100 5 882156948 +444 912 4 891978663 +299 498 4 878192237 +452 162 3 875277319 +70 132 4 884067281 +122 269 5 879269963 +23 7 4 874784385 +526 283 3 885682400 +381 228 4 892697373 +320 1091 4 884751462 +276 144 5 874792401 +21 760 1 874951293 +343 930 1 876403587 +424 323 5 880859084 +417 65 4 879647011 +42 471 4 881105505 +87 449 3 879876110 +58 70 4 890321652 +118 551 5 875385306 +416 462 5 893212895 +92 78 3 876175191 +385 961 4 879446868 +452 60 1 887718917 +38 247 5 892429460 +128 692 4 879967197 +464 1598 3 878355088 +178 11 5 882826162 +486 872 5 879874153 +454 485 4 888267386 +99 121 3 885679261 +449 105 1 879959573 +371 180 4 877487656 +125 1185 3 892838509 +216 318 5 880233564 +116 297 3 890633075 +339 511 5 891032885 +79 116 5 891271676 +204 262 4 892389137 +26 405 2 891376986 +269 42 5 891449646 +548 248 4 891043852 +60 160 4 883326525 +561 51 3 885810834 +215 202 4 891435295 +537 70 4 886031786 +234 528 4 892079689 +211 520 4 879460096 +497 720 2 879310941 +5 162 1 875721572 +332 746 5 888360129 +500 120 3 883865826 +551 286 4 892775466 +33 682 4 891964274 +62 283 4 879372598 +24 11 5 875323100 +429 578 3 882386942 +554 8 4 876550526 +354 1063 3 891218230 +393 552 2 889729638 +423 9 5 891395395 +406 202 3 880131704 +269 315 4 891446132 +82 409 1 884714421 +102 450 1 888802768 +497 13 2 878759927 +259 781 3 888630664 +279 843 4 875314313 +244 64 5 880605638 +327 164 3 887746219 +466 902 5 890283497 +551 458 2 892784166 +178 763 4 882824253 +279 1121 4 875310101 +38 313 5 892428216 +394 746 2 880888313 +378 285 4 880044312 +450 482 5 882371904 +503 747 3 880383424 +551 31 4 892783451 +560 123 2 879976542 +303 619 3 879467574 +511 355 2 890004827 +425 244 1 878739015 +43 280 3 883955806 +536 230 5 882359779 +303 168 5 879467223 +447 1132 3 878855164 +519 327 4 883248134 +266 14 4 892258004 +56 862 3 892910292 +500 276 5 883865290 +530 476 4 886198206 +560 108 1 879976988 +269 218 2 891450509 +267 380 2 878973426 +431 245 4 877844489 +322 656 5 887314027 +178 354 4 892239771 +505 1285 3 889333711 +508 88 3 883777299 +326 33 2 879876975 +508 109 3 883768886 +60 212 5 883327087 +11 238 3 891905032 +458 57 1 886395758 +15 257 4 879455821 +533 345 3 888347628 +361 190 5 879440573 +537 588 1 886031473 +541 781 5 883866093 +526 301 2 885682031 +511 358 1 890004916 +378 153 4 880055779 +18 582 5 880131450 +1 256 4 889751712 +268 1046 3 875745501 +7 416 5 891353051 +405 141 2 885548877 +435 151 3 884132898 +327 72 2 887819582 +114 176 5 881260203 +537 697 2 886031966 +552 151 3 879222238 +397 127 5 885349427 +489 991 3 891445439 +267 124 5 878970473 +361 274 3 879441034 +201 31 1 884114232 +374 97 5 880394571 +5 95 4 875721168 +68 409 3 876974677 +334 231 2 891549024 +152 274 5 880149166 +416 143 5 893213918 +157 117 5 886890296 +450 1261 4 882472964 +373 165 5 877100354 +327 340 4 887744167 +450 614 4 882377479 +532 468 5 893119491 +373 497 3 877099317 +456 202 3 881374586 +109 413 3 880572382 +58 209 5 884305019 +429 168 5 882387773 +360 284 3 880354991 +536 204 4 882359938 +230 216 4 880484444 +286 805 3 878141931 +454 194 3 881959698 +504 132 5 887838815 +374 64 5 880396256 +501 1534 4 883348743 +380 654 4 885478953 +311 521 4 884366686 +533 118 4 879192792 +24 727 3 875322727 +463 597 2 890531227 +483 405 3 878952966 +379 195 3 880525368 +454 655 3 881959746 +110 340 3 886987183 +401 321 2 891031554 +501 298 4 883347950 +405 528 1 885546248 +277 619 4 879543801 +374 5 4 880937875 +512 313 3 888578289 +130 227 3 875801868 +500 56 5 883873976 +487 288 4 883440572 +308 699 4 887737193 +101 117 4 877136067 +527 653 4 879456077 +499 183 4 885599718 +82 826 3 876311646 +476 175 4 883364143 +294 298 5 877819265 +338 490 5 879438275 +263 879 2 891297416 +445 595 2 891200624 +201 121 2 884114275 +505 258 1 888630999 +535 508 5 879617931 +62 222 5 879372480 +200 549 4 884129567 +393 194 4 887746239 +68 111 3 876974276 +116 1254 2 876453377 +57 1096 3 883697940 +343 257 3 876402941 +500 3 4 883865786 +249 183 4 879572540 +537 291 2 886030235 +561 164 2 885809626 +235 196 3 889655162 +434 833 4 886724914 +251 281 4 886272456 +360 845 3 880354942 +114 180 3 881309718 +321 7 4 879438793 +293 941 2 888907407 +452 969 2 875276006 +545 710 3 879900227 +387 76 3 886484215 +416 140 4 886317030 +369 166 4 889428418 +534 591 5 877807845 +126 344 4 887853735 +450 700 1 882469863 +318 174 4 884495590 +297 83 4 875774306 +545 228 5 879899266 +244 174 3 880605896 +22 1003 1 878887277 +351 678 4 879481675 +189 656 4 893265568 +481 435 5 885828510 +349 15 4 879465785 +90 356 4 891385752 +429 151 5 882386870 +542 8 3 886532908 +308 96 4 887737432 +532 685 5 892521554 +504 416 4 887910294 +151 198 4 879524472 +479 840 1 879460547 +514 45 4 876061444 +532 586 4 888636373 +397 156 5 885350381 +401 168 1 891033442 +385 461 4 879441942 +540 50 5 882156948 +145 17 3 875272132 +454 97 4 881960029 +532 591 5 893119335 +131 242 5 883681723 +387 123 3 886480970 +497 250 3 879310581 +189 516 1 893265568 +456 282 3 881371694 +15 323 1 879455311 +345 655 4 884991851 +553 1451 4 879949212 +25 968 4 885852218 +455 228 4 879111153 +541 660 5 883865039 +82 456 1 884714618 +496 11 4 876067022 +521 659 4 885253376 +158 250 4 880132356 +405 556 1 885546636 +429 382 3 882386601 +533 69 4 879438849 +342 382 3 875320623 +400 307 3 885676526 +181 456 1 878962586 +344 8 5 889814194 +472 49 5 875982607 +374 1277 3 880394331 +405 1539 1 885546724 +500 316 3 891916809 +480 517 4 891208460 +463 741 1 889937778 +85 291 3 882994658 +23 386 4 874789001 +243 509 4 879988369 +249 317 5 879572106 +7 571 3 891353950 +370 661 5 879435217 +264 14 4 886122771 +59 762 4 888203708 +53 628 5 879443253 +75 111 4 884050502 +332 70 2 888360179 +387 20 4 886480789 +94 732 3 891721216 +186 1046 3 879023751 +545 25 2 880348933 +561 23 5 885807888 +474 194 5 887924571 +504 372 4 887839195 +416 775 4 893142245 +25 186 4 885852569 +320 679 4 884749306 +295 22 4 879517372 +328 601 4 885048004 +548 1051 4 891415677 +339 160 5 891033512 +503 97 4 880383424 +224 349 4 888082246 +327 960 5 887745774 +308 97 1 887738469 +394 4 4 880888037 +479 117 3 889125627 +363 625 4 891498038 +77 209 4 884752562 +316 183 1 880853654 +323 292 4 878738997 +391 504 5 877398856 +435 290 3 884132484 +85 310 3 880838201 +92 1028 2 876769174 +303 586 2 879485659 +60 168 5 883326837 +280 197 2 891700836 +468 8 4 875288196 +198 6 2 884206270 +434 844 3 886724505 +501 844 4 883347023 +249 117 4 879640414 +446 690 2 879786892 +483 286 3 878950353 +385 631 3 879461422 +94 864 2 891723397 +325 208 3 891478771 +537 3 2 886030317 +554 582 3 876232758 +262 294 2 879962366 +489 872 2 891448530 +380 38 2 885479537 +54 930 1 880937813 +246 1139 2 884923811 +541 699 4 883864985 +63 224 4 875747635 +506 662 5 878044851 +11 290 3 891903877 +554 229 3 876369907 +514 307 4 880210104 +299 1103 4 889503013 +533 180 3 879439379 +479 288 3 879459836 +267 1185 2 878973995 +416 526 5 893214226 +417 157 4 879647966 +379 427 5 881996665 +295 403 4 879517762 +76 77 2 882607017 +269 445 3 891450385 +22 211 3 878886518 +504 117 4 887831694 +279 60 4 875310263 +312 211 4 891698254 +221 222 3 875244232 +425 590 3 878737945 +207 281 3 876018471 +422 370 2 879744287 +410 269 5 888627137 +13 578 3 882397974 +454 692 5 888267158 +434 763 5 886724873 +500 662 2 883876005 +509 751 3 883590443 +305 480 5 886322758 +244 318 5 880603082 +198 411 1 884206659 +10 178 5 877888677 +474 1050 4 887926106 +541 423 3 883864985 +95 448 3 879197783 +386 685 4 877655085 +249 471 4 879640241 +380 139 1 885480414 +114 679 2 881259741 +256 151 5 882151623 +354 89 4 891217547 +339 130 4 891034040 +527 56 4 879456611 +246 173 5 884921227 +393 85 3 889729375 +508 115 3 883767383 +479 463 4 879460984 +506 1110 1 885135955 +200 866 4 891825324 +472 1053 4 875982397 +327 11 4 887745303 +318 56 3 884495561 +223 993 4 891549876 +474 633 4 887926436 +417 323 3 879646820 +472 455 4 883903686 +556 496 5 882136252 +181 1255 1 878962086 +41 216 3 890687571 +405 1444 2 885549005 +450 92 4 887660650 +363 54 3 891497440 +479 182 4 879460984 +226 224 4 883889690 +28 195 4 881957250 +343 1211 4 876406677 +433 1005 5 880585730 +10 11 4 877888677 +494 100 5 879541475 +234 1204 3 892078297 +486 109 3 879874902 +536 441 2 882361018 +13 404 5 882399014 +92 182 4 875653836 +346 496 5 875260242 +318 480 4 884495795 +185 514 5 883524428 +398 476 3 875652760 +265 240 3 875320633 +293 403 3 888906869 +40 879 2 889041595 +543 199 4 875663056 +274 1152 4 878945939 +530 1300 2 890627207 +551 950 2 892783861 +177 568 3 880130915 +497 240 4 879309734 +194 225 3 879543589 +343 739 3 876406939 +130 412 4 874953866 +328 645 4 885046344 +351 341 4 879481425 +504 384 2 887912447 +343 86 5 876404836 +551 260 5 892775869 +479 1039 4 879461015 +95 72 2 880571389 +374 318 2 880394886 +457 403 4 882397177 +526 875 3 885682264 +535 137 4 879618502 +505 56 1 889333560 +417 474 4 879647118 +551 576 2 892784743 +436 347 4 887768398 +552 252 2 879222002 +211 423 5 879459846 +377 508 4 891298549 +286 818 2 877531281 +194 86 3 879520991 +533 26 3 879192035 +320 588 3 884750766 +542 399 2 886533172 +144 654 4 888105823 +152 794 5 886535773 +94 53 4 891721378 +465 286 4 883529338 +301 39 3 882076292 +158 123 3 880132488 +447 204 4 878856458 +411 568 4 892845634 +538 191 5 877106665 +246 92 1 884921661 +463 596 3 877385731 +498 919 4 881954451 +545 524 4 879900185 +456 60 4 881373838 +537 459 3 886030381 +468 582 3 875287535 +479 421 4 879460762 +92 411 4 875640189 +7 507 5 891352383 +429 1110 2 882387234 +532 284 5 893119438 +528 748 3 888520471 +318 132 4 884495868 +402 50 4 876266741 +183 1090 2 891467546 +360 357 5 880355958 +551 223 4 892776650 +536 70 2 882359906 +125 372 1 879454892 +249 290 2 879640521 +429 505 4 882384821 +551 292 3 892775612 +525 121 4 881085893 +451 242 1 879012857 +84 1047 2 883452694 +487 195 4 883446907 +116 519 5 886310197 +213 479 4 878955534 +539 661 5 879788045 +533 411 2 879365998 +551 581 5 892783972 +365 271 4 891303408 +168 678 1 884287109 +274 211 5 878946612 +92 1214 2 876174925 +157 685 3 886890372 +548 118 5 891415855 +520 289 4 885169052 +7 646 5 891351383 +551 181 2 892778074 +479 249 2 879460236 +416 416 4 886319038 +10 182 5 877888876 +87 181 5 879876194 +85 610 3 879454582 +345 1012 3 884994606 +426 332 4 879441781 +213 118 4 878870871 +426 194 4 879444919 +527 124 4 879455680 +291 565 2 874867852 +343 1194 4 876405129 +551 22 5 892776650 +470 19 4 879178813 +489 330 4 891445277 +553 434 3 879948771 +253 689 5 891627775 +481 514 4 885829045 +409 207 3 881108715 +524 185 4 884635204 +499 176 4 885599447 +429 520 3 882384603 +293 463 4 888906619 +412 96 5 879717286 +501 249 3 883348411 +521 423 3 884478792 +537 58 4 886031719 +33 678 4 891964306 +13 1 3 882140487 +303 1232 3 879484948 +435 413 2 884134104 +480 191 4 891208265 +242 111 4 879741196 +234 970 4 892335437 +400 323 4 885676582 +94 923 5 885882685 +226 176 4 883888978 +435 42 3 884131267 +538 237 4 877109986 +78 327 1 879633495 +497 783 3 879362908 +506 53 4 874874985 +83 546 4 887665549 +92 642 3 875654929 +435 109 4 884132297 +429 702 5 882387757 +40 896 4 889041402 +249 478 4 879572911 +75 685 4 884050134 +456 238 4 881373756 +288 175 1 886629664 +561 143 1 885810000 +472 1 5 892790627 +144 271 2 888103632 +193 354 3 889123158 +537 661 4 886031149 +9 483 5 886960056 +82 418 4 878769848 +538 496 5 877107491 +563 1035 4 880507204 +18 478 5 880129691 +474 495 4 887927728 +554 696 3 876232023 +60 515 5 883326784 +326 780 2 879877326 +256 739 5 882165135 +409 156 2 881108715 +469 705 5 879524302 +504 94 4 887841158 +542 265 4 886532238 +286 819 3 876521835 +122 660 3 879270644 +519 909 5 883250148 +194 1207 1 879555410 +234 608 3 892078741 +497 1157 2 879362178 +385 384 1 884118861 +537 1050 2 886031575 +201 180 3 884140078 +527 201 3 879456490 +144 280 1 888104625 +566 177 4 881650654 +563 692 5 880506842 +194 22 5 879521474 +556 192 5 882136440 +488 210 4 891294896 +126 690 3 887853735 +452 648 4 875273292 +320 24 3 884748641 +35 358 1 875459073 +374 521 4 880395530 +24 41 5 875323594 +550 892 2 883426119 +343 357 5 876408139 +478 381 5 889397221 +474 996 3 887927153 +145 823 3 875271397 +446 334 3 879787149 +164 411 2 889402407 +455 515 4 878585775 +194 732 3 879522021 +533 659 4 879439379 +160 1197 4 876768609 +472 99 3 875981595 +342 357 3 874984234 +58 116 5 884304409 +533 845 4 882902989 +406 133 5 882461684 +276 461 4 874787526 +342 1103 3 874984395 +533 4 3 888845066 +234 319 3 892334883 +159 96 4 884360539 +496 141 3 876067493 +115 273 4 881169984 +548 887 4 891043442 +524 42 3 884636453 +121 127 5 891388333 +481 650 3 885828650 +378 144 4 880046100 +308 605 4 887740603 +305 70 4 886324221 +334 338 1 891544524 +246 1028 3 884923653 +115 177 5 881172117 +543 694 4 874862966 +256 288 5 882150122 +497 3 4 879309715 +515 243 3 887659667 +195 809 3 877835548 +378 21 3 880044944 +527 203 4 879456662 +532 242 4 888817735 +534 1034 3 877808120 +339 1526 4 891035116 +537 654 3 886031506 +466 95 2 890285788 +407 712 2 876340043 +354 281 1 891216915 +130 1089 2 876250718 +121 250 2 891388676 +491 273 5 891188230 +295 137 4 879517271 +382 177 4 875947005 +6 203 3 883602864 +184 529 4 889909445 +308 517 4 887737483 +484 69 5 891194743 +387 663 4 886482883 +7 665 4 891354471 +532 241 5 892859148 +407 403 4 875045658 +399 118 3 882341383 +378 1230 2 880334305 +71 357 5 885016495 +389 454 2 880086868 +520 300 4 885168906 +342 7 4 875318266 +467 1016 4 879532671 +109 177 4 880578358 +58 1048 1 892242190 +516 628 4 891290649 +60 491 4 883326301 +109 12 4 880577542 +492 187 5 879969878 +394 802 1 881058201 +518 685 5 876823597 +193 763 3 889127457 +401 83 4 891033122 +447 248 5 878854383 +409 1393 1 881105367 +385 650 5 880870205 +464 1226 4 878355033 +530 214 2 886202320 +92 230 3 875656055 +450 928 3 882397813 +338 208 3 879438225 +279 684 3 880825843 +216 156 5 880233608 +201 408 4 884111436 +389 527 3 880086868 +347 1039 5 881653830 +405 1179 1 885547690 +345 416 4 884992142 +561 7 5 885808738 +363 164 2 891496722 +28 56 5 881957479 +557 262 2 882458820 +380 751 3 885481179 +377 271 4 891295957 +15 282 3 879456204 +326 434 5 879875203 +305 941 2 886324792 +380 163 2 885478539 +496 87 5 876073616 +328 323 3 885044940 +457 1140 2 882551344 +503 561 5 879454977 +463 1014 2 889936324 +557 166 4 881179397 +542 496 4 886532534 +62 44 3 879374142 +402 1060 3 876267041 +244 754 4 880603960 +360 304 4 880353660 +521 228 4 884478007 +391 282 4 877399894 +18 461 4 880130713 +545 89 3 879899125 +222 11 5 878181534 +456 693 3 881373949 +389 631 5 880087493 +451 308 1 879012890 +141 823 3 884585437 +110 196 4 886987978 +417 380 3 879648860 +552 225 3 879221876 +503 382 4 880383174 +52 13 5 882922485 +147 270 3 885594204 +457 105 3 882396001 +149 337 2 883512968 +405 1231 1 885548136 +450 589 3 882813241 +219 258 5 889386635 +49 946 2 888067096 +474 603 5 887923788 +253 485 5 891628435 +342 298 3 874984619 +417 245 4 879649779 +481 216 5 885828339 +34 292 5 888602742 +66 50 5 883601236 +373 71 5 877098891 +48 185 4 879434819 +276 1194 3 874790875 +498 182 4 881955596 +541 763 3 883866068 +232 750 3 885939690 +454 496 4 881959991 +416 245 2 876696788 +453 214 3 877553928 +545 229 3 879899380 +168 597 3 884288112 +13 654 5 881515295 +435 713 5 884131385 +359 546 3 886453373 +533 427 4 879191373 +532 721 4 874791671 +345 298 5 884902339 +152 49 5 882477402 +374 183 4 880434204 +406 173 2 879446684 +312 608 5 891699372 +537 488 4 886030622 +346 375 1 875266176 +417 385 5 879648184 +276 915 4 892436368 +542 866 2 886533046 +75 405 4 884050164 +539 242 5 879787770 +524 161 4 884637095 +455 57 4 879112460 +31 875 4 881547938 +295 202 5 879517943 +429 83 4 882385168 +399 301 4 882340242 +49 42 4 888068791 +378 736 4 889665232 +381 705 5 892696209 +413 250 3 879969674 +479 175 4 879461102 +561 805 3 885810240 +124 144 4 890287645 +214 705 4 891544414 +385 507 3 879445631 +546 17 4 885141411 +417 340 3 880949136 +503 488 5 880472216 +484 56 5 891195057 +440 937 5 891548567 +223 125 3 891549294 +236 127 5 890116032 +308 214 2 887738104 +354 166 4 891218379 +145 762 3 875272926 +160 282 4 876768025 +536 727 3 882359697 +523 935 5 883700186 +548 458 3 891415512 +87 657 4 879877740 +437 1007 5 881002374 +41 195 4 890687042 +72 220 3 880035786 +454 70 4 888267419 +385 900 4 885168653 +382 100 4 875945812 +541 1 4 883874645 +457 651 5 882396799 +99 475 5 885678785 +497 550 4 879310913 +187 216 5 879465394 +101 1132 3 877136954 +543 179 4 874862879 +542 69 4 886532552 +18 42 3 880130713 +145 412 4 888398492 +318 1012 4 884471076 +474 216 4 887924683 +22 94 3 878887277 +263 315 4 891296896 +201 425 3 884140246 +74 258 4 888333194 +406 421 4 882480628 +293 211 4 888906338 +456 721 4 881373756 +393 569 4 889728736 +291 566 4 874834799 +280 697 5 891701506 +15 676 4 879455871 +398 239 3 875747539 +472 38 4 875981358 +393 240 2 887745380 +189 246 4 893264048 +56 794 3 892683960 +496 39 5 876072633 +425 198 4 890347247 +277 1129 3 879543421 +530 692 4 883784258 +558 116 5 879436396 +563 233 4 880507165 +523 3 4 883702474 +542 56 5 886532706 +201 282 2 884140428 +556 170 4 882136162 +10 134 5 877889131 +56 11 4 892676376 +239 753 5 889179478 +452 79 4 875269386 +339 79 4 891032701 +174 1221 5 886514398 +130 420 5 876252472 +280 284 3 891701090 +457 483 5 882396705 +425 176 3 878738386 +361 269 4 879441490 +456 174 4 881373019 +226 713 5 883889884 +112 887 5 884992444 +483 199 3 882165665 +520 1028 1 885170476 +423 148 3 891395417 +207 111 3 880839802 +497 38 3 879310965 +532 1470 5 888630402 +545 472 5 879899266 +185 423 5 883524428 +532 562 5 892859148 +234 124 4 891227689 +551 132 5 892777583 +526 270 3 885681860 +463 15 4 877385287 +500 721 1 883875561 +451 690 4 879012382 +396 871 2 884646289 +193 476 2 889127698 +201 464 1 884140522 +274 685 5 878945542 +524 184 1 884636416 +138 15 4 879023389 +110 765 3 886989028 +339 4 4 891033653 +537 226 2 886032000 +332 369 4 887938556 +561 1101 3 885808887 +559 902 4 891035111 +343 168 4 876404612 +564 1399 2 888718470 +200 358 5 884127221 +474 521 5 887925977 +52 151 5 882922249 +57 820 3 883698039 +407 197 4 875553731 +504 258 5 887831273 +417 1247 3 880953033 +276 715 3 874791194 +30 172 4 875060742 +463 244 4 877387935 +286 930 2 876522240 +234 1169 4 892334543 +1 220 3 875241390 +524 554 4 884636746 +532 421 5 888637085 +405 1042 1 885548671 +405 265 2 885547910 +426 655 4 879444952 +269 58 2 891447842 +429 546 3 882387140 +560 1160 3 879976215 +450 591 4 887660762 +435 1103 4 884131627 +400 288 4 885676365 +405 1585 1 885546487 +544 1280 3 884795542 +122 956 4 879270850 +236 176 2 890115933 +16 642 5 877719075 +360 286 5 880353526 +447 926 3 878854438 +381 214 2 892697338 +535 433 5 879618160 +566 395 1 881651672 +528 423 1 888522642 +325 498 4 891478333 +548 311 3 891042194 +530 328 4 886198454 +313 633 5 891014597 +356 292 3 891405978 +494 289 1 879540630 +363 578 4 891497925 +99 22 5 885679596 +188 651 4 875073408 +474 170 4 887925620 +378 1181 2 880332537 +508 214 3 883775341 +334 305 2 891544135 +189 313 2 893263960 +264 856 3 886123472 +537 956 4 886031751 +497 127 5 879310580 +565 52 5 891037524 +209 1 5 883460644 +321 863 3 879440746 +425 187 3 878738386 +83 584 4 880308453 +10 137 4 877889186 +354 151 3 891218356 +454 318 5 881959576 +281 326 1 881200491 +104 628 4 888465347 +59 168 5 888204641 +128 690 3 879966274 +394 38 4 881058146 +479 58 4 879461432 +458 461 4 886397377 +552 336 3 879221267 +76 137 5 875498777 +334 640 4 891548129 +563 401 4 880507108 +551 561 5 892785363 +561 151 2 885808843 +536 265 5 882360300 +417 391 2 879649519 +406 117 4 879539824 +239 300 1 889178513 +118 320 5 875385386 +551 318 5 892776824 +7 286 4 891350703 +429 763 4 882387053 +251 978 2 886272585 +394 313 5 883304657 +573 194 4 885844431 +99 300 4 885678397 +506 663 4 874874947 +497 407 2 879309852 +450 385 4 882396489 +450 282 5 882377653 +69 236 4 882072827 +507 147 5 889965997 +275 257 3 876197645 +121 100 4 891388035 +308 56 5 887736924 +308 646 5 887738508 +523 50 5 883700186 +552 322 3 879220760 +499 136 4 885599447 +328 44 3 885047864 +541 560 3 883874872 +508 82 3 883777145 +537 242 3 886028498 +195 198 3 884420000 +453 424 1 888206768 +406 240 4 879540078 +549 866 4 881672573 +567 1019 5 882425874 +54 295 3 880936905 +485 538 3 891040560 +496 181 5 876064168 +532 155 4 888630086 +456 743 2 881372256 +363 831 1 891498469 +406 357 4 879446108 +243 1197 4 879988337 +144 319 3 888103509 +456 170 5 881373353 +332 237 5 887916529 +311 468 4 884365140 +352 12 4 884290428 +62 83 5 879375000 +194 8 3 879521719 +209 285 5 883417613 +500 28 3 883874078 +49 640 1 888066685 +444 515 4 891979402 +390 302 5 879693461 +118 55 5 875385099 +533 127 5 879192278 +201 803 2 884112282 +269 56 5 891455815 +561 204 3 885808716 +510 286 3 887667439 +567 636 4 882427155 +455 380 3 879112654 +7 613 4 891352010 +176 328 4 886047375 +569 111 3 879793948 +562 443 5 879196604 +291 998 1 875086728 +29 300 3 882820897 +416 237 3 876697330 +428 243 4 885943713 +144 1 4 888104063 +425 1596 2 878738695 +1 93 5 875071484 +489 687 3 891445439 +89 702 5 879459999 +416 1300 3 886315494 +92 120 2 875642089 +538 211 4 877109986 +425 566 2 878738695 +435 327 3 884130765 +56 173 4 892737191 +393 147 5 887744549 +459 250 5 879563270 +478 427 4 889388633 +303 1089 1 879544978 +488 419 3 891294976 +450 305 4 885944806 +417 1 4 879646413 +536 603 4 882359653 +84 95 4 883453642 +322 603 5 887314417 +276 755 3 874792870 +200 401 2 884130085 +236 9 5 890116792 +451 336 4 879012811 +502 338 4 883702370 +536 69 5 882359938 +435 584 3 884132297 +308 371 3 887738469 +416 934 2 876698178 +343 297 5 876403283 +337 380 4 875185319 +479 500 4 879461255 +184 508 4 889907738 +189 527 5 893265327 +321 60 4 879440954 +13 222 3 882140285 +87 281 4 879876074 +479 632 5 879460785 +437 12 5 880382685 +545 226 3 879899438 +195 1413 2 877835268 +397 345 4 889760663 +435 715 3 884133635 +70 208 4 884149431 +436 761 4 887770693 +104 13 3 888465634 +225 427 5 879539615 +419 617 4 879435628 +346 470 3 874948513 +543 513 4 874863035 +56 111 2 892683877 +187 428 4 879465308 +557 294 3 880484929 +138 513 5 879024043 +454 474 4 881959917 +561 343 4 885807035 +357 123 4 878951864 +457 172 5 882553113 +267 169 5 878972614 +406 212 2 879793210 +95 25 3 879192597 +450 275 4 882372178 +416 242 4 888819254 +299 129 4 877877733 +64 425 4 889739051 +339 235 3 891036387 +473 116 5 878157544 +221 108 3 875244866 +476 194 5 883364143 +452 99 3 875562410 +448 321 4 891888509 +428 272 5 885943651 +276 1042 1 874795823 +393 999 4 889730187 +416 1051 3 886319079 +496 136 1 876066424 +263 527 5 891299148 +479 127 5 879460192 +537 736 3 886031634 +537 470 2 886032029 +454 1 3 881959818 +378 257 4 880045207 +7 47 5 891352692 +43 660 4 883955859 +123 523 3 879872406 +151 761 3 879542813 +496 135 2 876066038 +406 434 5 879446269 +11 742 3 891902815 +424 172 3 880859385 +537 258 4 886029286 +42 924 3 881105677 +329 174 4 891656639 +567 252 1 882427384 +255 682 5 883215759 +441 288 2 891035056 +463 362 1 889943741 +498 512 5 881957757 +514 423 5 875462568 +311 501 5 884365954 +527 143 2 879456289 +94 22 4 885872758 +118 396 5 875385335 +484 293 5 881254899 +542 693 4 886533395 +308 24 4 887738057 +536 50 5 882318139 +89 321 4 879441049 +480 166 5 891208185 +463 1605 2 877387935 +456 505 4 881373473 +276 289 2 890979634 +239 132 5 889178986 +312 185 5 891699121 +313 95 3 891014313 +554 286 4 876231521 +6 501 5 883602730 +374 665 4 880939228 +474 203 5 887926059 +339 528 5 891033044 +184 651 3 889908462 +552 301 4 879220720 +109 1228 3 880582758 +457 31 4 882397543 +486 300 4 879874388 +435 825 3 884133372 +362 748 1 885019592 +234 1453 2 892335415 +501 282 4 883348185 +450 873 3 882216475 +487 68 5 883530949 +344 121 3 884899792 +535 1149 4 879618288 +505 151 3 889334162 +533 19 3 879365781 +6 259 1 883268375 +339 415 3 891035553 +576 9 3 887168978 +90 509 5 891383866 +264 202 5 886123596 +186 98 5 891719859 +291 569 3 874868580 +385 1007 3 879439949 +181 1331 1 878962052 +567 482 5 882425966 +417 174 3 879647498 +543 1262 2 876382812 +207 55 3 875509395 +399 69 3 882342019 +567 615 4 882425932 +532 500 5 889235367 +533 98 4 879438543 +354 116 5 891216692 +474 135 5 887924424 +206 1024 1 888180049 +130 1095 3 876251192 +399 186 4 882342669 +303 1110 1 879543939 +479 121 4 879460236 +533 435 4 879438455 +512 97 5 888579520 +434 1152 5 886724633 +18 177 3 880131297 +474 708 4 887927339 +119 168 5 874781351 +323 933 3 878739393 +305 793 5 886324712 +342 197 4 875318988 +60 12 4 883326463 +308 945 4 887739136 +44 450 2 883613335 +354 531 4 891217897 +529 873 4 882535091 +295 95 4 879518080 +387 194 3 886480206 +314 22 4 877889724 +429 48 3 882384896 +173 302 5 877556626 +308 494 5 887738570 +550 255 3 883425388 +537 681 1 886029488 +456 42 4 881373655 +313 1 4 891013436 +459 300 4 879561574 +523 1022 4 883699629 +453 79 3 888207161 +533 47 1 879191998 +5 452 1 878844397 +60 166 4 883326593 +561 584 3 885809781 +245 1047 3 888513393 +274 276 4 878945437 +194 1066 3 879554383 +471 8 5 889827881 +533 54 4 888844601 +379 385 2 882563616 +466 183 3 890284766 +251 282 4 886272223 +397 340 2 882838664 +491 190 4 891189631 +18 198 3 880130613 +343 703 4 876404426 +256 66 4 882165103 +306 756 3 876504472 +405 68 1 885547996 +202 1 3 879727059 +125 105 3 892839021 +504 82 4 887837918 +499 651 4 885598895 +401 194 4 891033395 +499 87 4 885599598 +495 507 4 888633316 +222 1139 3 878185137 +26 458 3 891352941 +140 302 4 879013617 +325 183 3 891477980 +286 390 1 889652378 +524 291 4 884627777 +535 735 5 879619067 +280 748 2 891700080 +405 1209 3 885547645 +460 14 5 882912418 +493 327 5 884129868 +510 294 3 887667681 +328 912 3 893195852 +174 764 4 886434343 +49 90 1 888069194 +506 227 4 874875062 +546 672 3 885141438 +90 543 3 891383173 +352 82 3 884290328 +192 108 4 881368339 +234 1450 3 892335213 +244 156 4 880602517 +63 676 3 875747470 +416 827 4 878879350 +208 310 4 883108105 +346 712 3 875264985 +268 1222 2 875744174 +417 218 3 879648184 +498 591 4 881961877 +429 161 3 882385934 +357 151 5 878951728 +406 559 3 879792974 +472 561 5 875982050 +334 297 5 891544680 +417 248 4 879646286 +392 255 3 891038224 +465 97 2 883532120 +495 1135 5 888634475 +474 173 5 887924027 +536 133 4 882359477 +405 427 5 885545306 +577 471 3 880471640 +246 559 3 884922898 +474 463 5 887927457 +406 234 4 879792863 +573 143 2 885844339 +456 720 3 881375515 +540 109 4 882157194 +261 125 5 890456142 +318 58 4 884496243 +347 1012 4 881652590 +336 111 3 877756999 +573 192 4 885844535 +554 546 3 876231886 +190 989 3 891033327 +532 538 4 881048155 +340 143 5 884990669 +130 100 3 874953558 +470 295 3 879178455 +416 298 4 876697387 +190 313 5 891033606 +92 265 4 875657620 +415 480 5 879439960 +1 8 1 875072484 +217 183 3 889069741 +271 357 5 885848408 +573 127 4 885843596 +542 367 4 886532881 +498 1083 3 881961932 +536 584 5 882360530 +49 698 2 888066776 +253 679 3 891628578 +533 240 1 879192474 +75 825 1 884050393 +198 98 4 884207611 +128 419 3 879967268 +466 117 5 890285034 +416 585 1 886318085 +553 478 4 879948964 +124 474 3 890287221 +73 382 4 888626496 +525 237 4 881085893 +56 78 3 892910544 +328 301 2 885044607 +90 954 4 891385522 +286 461 2 877532930 +449 273 4 879959003 +38 259 3 892428754 +276 391 2 874977442 +90 650 5 891384516 +110 1249 3 886989612 +29 286 5 882820663 +407 289 3 875115339 +496 222 3 876064290 +269 302 3 891446132 +174 417 4 886515490 +235 192 4 889655298 +72 194 4 880037793 +334 163 4 891548602 +506 550 4 885135881 +406 705 4 879445935 +2 291 3 888551647 +535 479 4 879617977 +262 288 3 879961374 +313 443 5 891013971 +178 819 2 882824670 +311 356 4 884365653 +539 19 5 879788007 +434 147 3 886724822 +474 461 5 887924683 +567 613 4 882426927 +463 235 2 877385457 +543 231 3 877545230 +513 265 5 885062919 +563 367 4 880507083 +326 654 1 879875151 +59 514 5 888204641 +290 125 3 880475245 +467 7 5 879532385 +496 1063 3 876066485 +457 144 5 882397494 +472 431 5 875982607 +214 166 4 891544512 +535 502 5 879618502 +454 12 3 881960114 +506 654 4 874876486 +299 58 3 878192601 +453 586 2 892447163 +244 268 5 880601904 +542 1218 3 886532762 +84 300 4 883449419 +422 127 4 875129839 +43 79 4 875981335 +235 431 2 889655490 +188 100 4 875074127 +62 195 5 879373960 +553 482 4 879948831 +478 161 3 889396645 +269 134 4 891448849 +257 129 4 880008245 +536 217 3 882360601 +518 370 4 876823963 +527 50 4 879455706 +449 702 5 880410778 +504 63 3 887912504 +339 942 4 891034484 +500 89 4 883873505 +189 13 4 893264220 +183 356 3 891466447 +99 471 4 885679091 +44 121 4 878346946 +497 625 3 879310021 +279 403 1 879573060 +354 216 3 891217782 +279 890 3 882146458 +1 205 3 878542909 +410 347 1 888626538 +409 1379 3 881106451 +293 591 3 888904712 +429 768 3 882387551 +579 1 4 880951740 +322 302 5 887314417 +514 318 4 875318331 +299 483 5 877880961 +363 264 3 891494049 +43 785 3 883956538 +109 164 5 880578066 +419 14 5 879435828 +574 300 4 891279012 +533 258 4 884007368 +49 96 1 888069512 +201 207 3 884111360 +465 12 4 883530088 +166 286 1 886397562 +417 73 3 879648343 +472 393 3 875983129 +188 97 5 875071891 +521 176 4 884477820 +498 23 4 881955596 +409 526 3 881107117 +474 653 4 887926999 +519 336 5 883248595 +393 173 5 887745759 +500 70 4 883875388 +312 208 5 891698334 +490 124 4 875427629 +308 568 5 887740649 +506 56 4 874873374 +151 204 4 879524641 +487 38 2 884052069 +402 273 4 876267014 +425 670 3 878738914 +401 153 2 891033466 +551 274 2 892783488 +393 825 4 887745230 +450 195 4 882371826 +311 639 4 884365686 +189 603 5 893265239 +290 435 3 880473802 +22 175 4 878886682 +385 444 1 879448994 +393 588 4 887746824 +407 100 5 875042905 +447 147 4 878854678 +171 315 4 891034835 +487 298 5 883442431 +474 684 4 887925977 +181 100 3 878962816 +454 58 4 881960029 +399 471 3 882340719 +385 739 1 879448665 +459 120 2 879563392 +70 576 2 884065248 +450 299 2 889568793 +405 1422 1 885548632 +561 582 4 885808796 +542 721 2 886533003 +452 491 4 875261100 +485 341 4 891042027 +342 194 3 875318858 +342 144 5 875319912 +523 792 4 883702263 +543 175 3 874864182 +59 61 4 888204597 +442 665 2 883390139 +21 854 5 874951657 +472 177 4 875981358 +136 204 4 882848866 +484 578 3 891195444 +334 937 3 891544367 +335 323 4 891567125 +417 855 2 879647450 +456 608 4 881373168 +409 382 4 881108170 +479 304 4 879459692 +296 294 1 884196374 +117 210 4 881012293 +551 237 4 892777825 +318 842 2 884495742 +454 603 4 881959876 +403 845 4 879786052 +344 322 2 889814470 +336 100 3 877756934 +194 73 3 879527145 +311 519 3 884365548 +421 87 4 892241736 +373 173 5 877098751 +426 488 5 879442785 +23 203 4 874786746 +560 203 4 879975613 +152 364 4 884019146 +60 609 3 883327923 +378 572 3 880333995 +164 100 5 889401998 +542 28 4 886533452 +537 516 3 886030966 +577 229 4 880475094 +328 755 3 885048801 +457 744 3 882393457 +234 873 3 891034007 +367 672 4 876689991 +521 474 3 884477677 +95 200 2 888954552 +399 58 3 882344942 +237 238 4 879376435 +130 215 5 875802035 +277 50 3 879543652 +483 612 3 878953751 +158 92 4 880134407 +1 234 4 876892355 +92 450 2 875907134 +417 214 5 879647254 +116 358 2 876452094 +16 234 5 877720185 +392 328 3 891037634 +340 662 2 884991584 +450 153 5 882374422 +426 204 3 879442128 +500 252 2 883865889 +29 480 4 882821989 +181 767 1 878963381 +479 101 4 879462185 +57 109 4 883697293 +401 9 3 891032218 +87 1049 3 879876812 +454 28 4 888267560 +131 293 3 883681442 +379 659 5 880568307 +528 193 4 886101873 +452 1089 1 876215899 +286 211 4 879781579 +517 283 4 892660728 +533 295 4 888844601 +511 895 4 890004863 +399 180 3 882345001 +50 1008 5 877052805 +533 879 3 892469600 +224 469 1 888104219 +567 302 4 882426300 +547 301 3 891282680 +234 178 5 892078890 +347 508 3 881652629 +85 229 3 882813248 +64 969 3 889737889 +267 235 3 878970578 +244 3 5 880602451 +378 1400 3 880057088 +342 699 4 875319808 +538 195 4 877108919 +297 13 3 874955210 +450 381 2 882374497 +286 179 5 889651822 +455 402 4 879112356 +141 292 1 884584906 +496 99 3 876066598 +531 323 5 887049081 +181 282 4 878962816 +519 1592 5 883250148 +504 428 3 887910511 +507 245 5 889964809 +285 100 4 890595636 +545 447 3 879899978 +496 509 3 876067272 +497 67 3 879362858 +503 405 3 879438685 +406 20 3 879446529 +13 13 5 882141617 +290 228 4 880473556 +116 252 2 876453376 +531 289 3 887048862 +363 317 5 891495596 +514 204 5 875318331 +442 318 4 883391046 +174 553 5 886513674 +472 229 5 875982560 +401 451 2 891033343 +532 1496 2 874795634 +161 132 1 891171458 +487 1035 4 884044329 +256 36 3 882165269 +109 125 5 880564534 +551 582 5 892783749 +207 514 4 877878343 +87 783 4 879877279 +425 307 4 890346411 +95 89 3 879196353 +299 255 2 877878036 +405 421 1 885549309 +538 956 3 877107914 +569 222 3 879794265 +3 258 2 889237026 +514 243 2 885181043 +327 1101 4 887746665 +555 168 4 879975419 +405 1518 2 885546577 +576 280 5 886985003 +244 1057 4 880608992 +347 258 4 881652077 +280 731 3 891702049 +534 930 4 877808002 +339 498 4 891033044 +425 144 4 878738335 +562 56 1 879195156 +327 273 2 887745911 +180 660 5 877372188 +215 99 4 891435731 +194 624 2 879525695 +84 203 3 883453587 +59 234 5 888204928 +497 1052 2 879309869 +84 597 3 883452200 +506 554 3 885135912 +276 323 3 874786392 +406 274 3 879539987 +561 469 4 885809099 +540 245 3 882157172 +156 187 5 888185778 +406 746 3 880131741 +94 80 2 891723525 +314 1014 3 877886317 +573 661 4 885844431 +222 284 3 877563462 +405 397 4 885548094 +293 550 1 888906781 +284 345 4 885328728 +187 660 5 879465744 +481 238 4 885828245 +299 732 4 889502688 +553 427 5 879948508 +548 255 4 891043852 +474 419 4 887925916 +279 81 4 875732652 +429 132 3 882385636 +545 810 4 879899523 +157 313 5 886889616 +291 975 2 874834146 +527 181 4 879456464 +458 180 4 886397679 +291 164 4 874834875 +459 225 3 879563777 +429 535 2 882386941 +562 636 2 879195007 +500 1324 2 883865985 +534 24 5 877807780 +1 105 2 875240739 +229 300 2 891632142 +299 652 3 877880522 +374 458 5 880393710 +211 491 3 879459876 +251 742 5 886272486 +524 707 4 884634995 +379 174 5 880525368 +222 569 2 878184866 +486 1017 3 879874970 +201 521 2 884111637 +545 54 4 884134519 +84 117 4 883450553 +151 609 4 879525075 +357 1277 5 878951918 +521 90 2 885254006 +338 474 4 879438627 +139 297 5 879538275 +455 191 5 879111422 +337 250 3 875185219 +194 997 3 879553988 +243 514 4 879989006 +313 88 2 891028956 +277 1283 2 879543592 +1 147 3 875240993 +424 427 4 880859346 +13 790 2 882141841 +508 443 4 883777071 +326 423 3 879876159 +441 751 4 891035247 +453 143 2 888206053 +62 98 4 879373543 +57 871 3 883697536 +366 217 5 888857990 +459 687 3 879561782 +354 98 3 891218312 +361 56 4 879440516 +115 23 5 881171348 +197 245 4 891409352 +577 284 4 880470732 +469 127 4 879525373 +251 275 4 886271675 +472 655 5 875982397 +484 924 5 880937157 +125 181 5 879454139 +95 77 4 880571746 +558 936 5 879436396 +239 498 4 889179623 +294 1081 3 889242328 +13 621 4 882398934 +307 395 3 877121789 +436 179 3 887770015 +532 1046 4 874790629 +200 68 5 884129729 +151 215 3 879524420 +71 248 3 877319446 +557 8 5 881179653 +332 123 4 887916653 +566 33 2 881650907 +276 358 3 874786419 +109 986 2 880572382 +530 322 4 886203949 +216 11 5 880234346 +493 746 4 884131143 +276 395 2 877935377 +567 7 4 882426622 +14 428 4 879119497 +478 98 5 889388862 +52 815 4 882922357 +58 640 5 884304767 +486 258 5 879874064 +450 231 3 887662002 +299 634 2 877880852 +564 333 3 888718521 +83 25 2 883867729 +399 43 3 882348664 +130 250 3 876250833 +381 16 4 892697266 +95 1188 2 880572787 +500 498 4 883873911 +561 501 3 885808620 +95 705 5 880570964 +495 1119 4 888634784 +457 230 4 882392853 +334 13 3 891545089 +253 895 4 891627893 +342 1170 3 875319659 +234 25 3 892335797 +72 228 1 880037204 +342 326 1 874984002 +406 72 3 880131954 +506 1073 4 874873247 +486 127 5 879874448 +556 520 5 882136441 +421 333 4 892241236 +509 310 1 883590443 +24 173 5 875323474 +534 595 4 877807747 +378 756 3 880057088 +447 1 3 878854273 +467 276 5 879532460 +137 1 3 881433048 +537 327 2 886028730 +543 85 2 877547580 +537 447 3 886031752 +334 127 4 891544840 +551 91 1 892783025 +354 169 3 891217511 +226 182 1 883889322 +505 402 5 889333937 +424 333 5 880859228 +151 26 3 879542252 +21 559 1 874951761 +498 1422 3 881961877 +401 172 3 891032896 +291 55 4 874834735 +398 229 3 875744031 +291 1217 3 874834850 +137 892 3 882809210 +343 58 4 876406283 +405 1442 1 885546835 +87 127 4 879876194 +523 1009 5 883701154 +280 729 2 891700963 +188 468 4 875073329 +472 473 4 875978867 +517 873 3 892660034 +370 107 4 879435244 +452 513 4 875561734 +466 302 5 890284651 +479 181 5 879460028 +86 683 5 879570974 +560 118 3 879976892 +294 269 5 877818457 +334 483 5 891628266 +385 508 2 879439728 +442 177 4 883390366 +158 544 2 880132638 +368 672 2 889783453 +416 689 4 885114578 +488 259 1 891293051 +13 871 2 882141924 +546 118 5 885141260 +521 173 4 884477896 +519 243 1 883250021 +85 143 4 879456247 +417 183 4 879647298 +276 634 4 874795888 +83 111 3 884647519 +472 748 5 875977682 +488 845 3 891294853 +200 760 4 876042753 +142 176 5 888640455 +533 283 3 879365733 +369 919 5 889428642 +280 174 3 891700588 +548 147 5 891415540 +286 969 5 878142001 +168 325 1 884287073 +405 504 2 885548579 +1 99 3 875072547 +28 227 4 881961393 +77 127 2 884732927 +572 300 4 879449243 +264 26 4 886123727 +181 977 1 878962997 +392 172 5 891038401 +454 661 4 881959991 +390 283 4 879694316 +474 132 4 887924683 +94 686 4 891720540 +195 143 5 875771441 +559 188 5 891034609 +393 64 4 887745973 +504 1439 4 887840517 +575 215 3 878148229 +49 433 5 888068739 +401 365 4 891033497 +222 1011 4 881061049 +536 271 3 882317149 +501 406 3 883348656 +301 109 5 882074236 +243 736 4 879988520 +537 151 2 886030177 +72 241 4 880037242 +503 233 5 879454811 +5 395 2 879198898 +483 538 2 886470912 +435 385 5 884131771 +493 235 2 884130593 +584 114 4 885778238 +189 630 4 893266376 +407 181 3 875045027 +560 319 4 879975173 +498 98 4 881957681 +280 315 5 891700184 +543 15 3 888209697 +535 22 3 879619107 +108 748 3 879879662 +113 237 3 875076246 +554 87 4 876550654 +430 1240 3 877226470 +504 237 3 887831753 +551 316 5 892696165 +385 256 4 879439728 +546 286 2 885139580 +493 343 3 884130074 +218 8 3 881288574 +379 205 5 880524973 +311 621 4 884365579 +102 436 2 888803051 +394 98 5 880887088 +564 750 3 888718771 +332 679 5 887939021 +455 24 3 879111662 +576 825 4 886986304 +87 1181 3 879875940 +457 143 5 882548099 +497 139 3 879363696 +16 531 5 877722736 +398 525 3 875908134 +378 203 4 880055239 +349 121 2 879465712 +278 315 4 891294932 +262 486 5 879794296 +311 416 4 884365853 +247 300 2 893081411 +72 655 5 880037702 +104 111 1 888465675 +288 880 1 886373007 +61 300 5 891206407 +398 502 3 875717717 +334 221 5 891544904 +301 568 4 882076538 +299 249 3 877878414 +236 692 4 890116670 +416 403 5 893212730 +64 196 4 889737992 +508 1 5 883777430 +6 530 4 883601203 +381 479 5 892696929 +200 758 3 884127370 +276 433 4 874791960 +201 1135 5 884140750 +346 100 3 874948426 +1 1 5 874965758 +320 241 4 884750968 +405 651 5 885545167 +543 1194 4 875659174 +318 26 5 884497471 +87 435 5 879875818 +41 414 4 890687550 +405 904 1 885549904 +533 234 2 879191373 +378 126 4 880057018 +18 98 5 880129527 +42 237 4 881105882 +92 5 4 875654432 +320 808 4 884749359 +407 565 3 876348702 +406 1065 2 882480567 +15 546 2 879456324 +394 265 4 880888390 +514 682 4 875463891 +526 346 3 885681860 +489 260 3 891366693 +148 151 4 877400124 +276 241 4 874792402 +454 118 4 888267128 +357 273 5 878951457 +387 127 4 886479575 +59 651 5 888204997 +425 340 4 890346264 +450 865 4 887136139 +435 211 4 884131627 +437 134 5 880139951 +416 194 5 893214041 +557 257 2 880485764 +222 175 3 878181739 +452 294 2 886148704 +16 385 5 877727192 +184 694 5 889908824 +405 606 3 885545070 +210 657 4 887736429 +181 307 1 878962006 +532 568 5 892521554 +498 1007 3 881954219 +246 198 4 884922196 +416 251 5 893213405 +343 57 5 876404426 +429 3 2 882386785 +551 566 5 892783212 +243 458 4 879987397 +361 83 3 879440345 +524 237 3 884322169 +588 31 3 890015722 +565 179 5 891037778 +538 405 3 877109564 +151 132 5 879524669 +497 792 3 879362954 +450 484 3 887662002 +500 584 1 883874528 +587 995 3 892871503 +506 490 3 874873529 +361 23 5 879441215 +145 515 5 875270394 +485 294 1 891041103 +469 654 4 879524177 +269 1040 1 891456425 +77 641 5 884733621 +569 1 4 879793399 +408 312 3 889680073 +429 157 4 882384920 +474 71 5 887926872 +488 70 3 891294854 +387 229 2 886483195 +506 28 4 874874308 +13 801 3 886303172 +249 135 5 879572668 +393 1063 4 889554540 +496 625 4 876067306 +323 873 3 878738949 +269 523 5 891447593 +373 214 4 877100326 +450 1033 3 882468401 +498 164 3 881961689 +488 28 4 891293805 +336 998 1 877757062 +94 797 2 891723848 +94 391 3 891723644 +438 100 4 879868024 +453 385 3 888207161 +14 210 5 879119739 +378 1042 3 880056287 +546 98 5 885141332 +553 131 5 879948655 +302 301 4 879436820 +380 182 3 885478391 +569 3 1 879795551 +479 190 4 879461354 +314 1519 4 877892181 +246 235 3 884921965 +446 302 4 879787730 +177 135 5 880130712 +458 469 4 886397377 +93 283 4 888705146 +363 650 2 891495197 +493 265 5 884131048 +100 349 3 891375629 +286 82 3 889651605 +85 955 4 879454400 +160 933 3 876767621 +20 174 4 879669087 +347 181 5 881652377 +567 1131 4 882426601 +59 410 3 888203270 +535 283 4 879618160 +503 654 5 879454753 +553 604 5 879949107 +524 866 2 884626810 +557 508 4 880485956 +305 135 3 886323189 +354 88 2 891307206 +457 549 4 882398178 +380 956 4 885478271 +567 1204 5 882427023 +272 205 5 879454726 +568 606 5 877907720 +387 8 4 886480108 +276 24 4 874792366 +504 51 4 887839260 +13 551 1 882397084 +405 1470 2 885549045 +393 1000 3 889731139 +449 410 3 879959134 +328 97 3 885046174 +184 639 3 889909590 +399 117 2 882347620 +568 835 4 877907157 +478 218 3 889396731 +574 315 3 891278860 +199 100 3 883782807 +569 283 4 879793847 +450 199 5 882371732 +193 23 4 889126609 +577 996 3 880475094 +529 323 4 882535091 +305 251 5 886321764 +290 176 4 880473971 +468 475 4 875280041 +504 396 2 887911369 +268 184 4 875310524 +346 183 4 874948382 +24 289 3 875245985 +12 591 5 879959212 +514 408 5 875311225 +474 7 5 887915414 +502 358 4 883702518 +363 380 4 891496481 +91 127 5 891439018 +536 21 3 882320267 +193 403 3 889125945 +64 144 3 889737771 +586 628 3 884064631 +492 186 3 879969539 +214 171 4 891544323 +556 479 5 882136162 +73 179 5 888626041 +308 275 4 887737891 +280 409 3 891702441 +271 546 2 885848102 +49 557 3 888066394 +514 1014 2 885180645 +311 133 3 884364652 +118 641 5 875385386 +497 810 3 879310941 +436 1468 5 887770668 +60 637 4 883327975 +405 1478 1 885546636 +468 612 4 875294549 +301 197 5 882075774 +184 203 3 889908571 +527 324 3 879455415 +157 286 5 874813268 +493 763 4 884130593 +560 756 2 879977032 +497 229 2 879310850 +90 990 3 891382522 +303 215 5 879467413 +378 686 4 880056350 +417 555 1 879649389 +164 515 4 889401906 +402 286 5 876266650 +467 298 4 879532385 +484 588 5 891195773 +201 231 2 884310104 +276 388 2 874792094 +363 423 3 891495711 +576 435 4 886986400 +181 117 2 878962918 +585 1488 4 891283921 +447 65 3 878856422 +119 412 4 874775136 +91 210 5 891439208 +541 465 4 883874716 +222 732 4 878183425 +455 1034 2 879110767 +429 356 3 882386942 +201 466 4 884113453 +464 301 4 878354829 +288 190 1 886374286 +435 752 3 887509539 +47 683 3 879439143 +587 748 1 892871438 +320 800 4 884751190 +378 729 4 880046069 +562 462 5 879196074 +59 610 4 888205615 +559 73 4 891035812 +416 1516 5 893213549 +291 941 4 874868284 +536 511 5 882359603 +13 795 2 882399219 +313 632 4 891013620 +489 873 3 891447008 +64 423 4 889739569 +532 1415 2 892520390 +216 569 3 880245291 +533 430 5 879191972 +145 294 4 875269871 +181 876 1 878961781 +405 184 1 885547952 +416 591 5 893212895 +524 541 1 884702593 +560 864 3 879976970 +399 1244 3 882341607 +393 243 4 887742916 +385 18 5 884915008 +508 216 5 883768886 +527 193 3 879455680 +494 322 2 879540819 +151 474 5 879524222 +416 9 5 893212572 +57 284 3 883697158 +44 737 1 883613298 +519 263 5 883250102 +522 523 5 876961133 +464 294 4 878354721 +416 469 4 893141989 +468 293 5 875280395 +28 609 3 881956220 +495 742 5 888632888 +588 721 5 890023722 +250 258 4 878088969 +334 68 3 891548387 +201 230 3 884112487 +506 82 5 874873745 +546 288 4 885141260 +234 432 4 892079722 +354 258 4 891180399 +138 12 5 879024232 +416 286 5 893212929 +551 121 5 892783411 +472 362 5 892790627 +13 603 4 884538571 +283 21 3 879297867 +369 890 3 889428268 +550 323 5 883425465 +536 582 2 882360100 +488 9 4 891294063 +486 936 3 879874629 +357 476 3 878951616 +402 515 5 876266860 +387 428 4 886482969 +299 915 4 892250102 +326 181 4 879875592 +503 714 4 880383126 +321 174 3 879441111 +478 145 1 889398599 +232 269 3 891565001 +521 182 3 884477993 +394 233 3 881058062 +545 22 3 879899158 +518 7 3 876823197 +532 734 3 874791786 +378 99 4 880045791 +416 918 4 893214332 +399 754 3 882340242 +206 749 2 888179980 +458 32 4 886395963 +402 10 2 876266985 +211 230 3 879460294 +207 462 3 877845656 +416 1 5 893212483 +294 237 4 889242035 +200 63 4 884130415 +342 125 2 875318585 +536 31 3 882360685 +392 515 5 891038110 +445 235 1 891200272 +489 689 5 891447913 +102 1240 2 883748450 +456 410 4 881372160 +109 722 3 880583493 +425 232 3 878738548 +417 518 5 879647604 +389 739 2 880088229 +500 535 3 890010025 +577 204 4 880474338 +517 111 3 892659922 +473 25 4 878157427 +493 98 4 884131460 +264 645 4 886123358 +201 1421 3 884141015 +318 70 5 884496368 +429 238 5 882384526 +428 312 4 885944005 +405 1193 1 885549506 +549 50 5 881672199 +269 191 5 891457067 +391 58 4 877398898 +357 220 5 878951954 +535 42 3 879618849 +561 53 3 885810538 +347 371 1 881654715 +536 387 3 882363919 +291 1 5 874834481 +215 1063 5 891436543 +201 1006 2 884112136 +343 950 3 876403121 +374 978 2 880936233 +320 570 4 884749384 +504 167 3 887909556 +520 274 3 885170516 +331 234 4 877196633 +38 1036 4 892433704 +345 226 3 884993418 +523 727 4 883703167 +389 642 4 880087804 +452 111 3 886061565 +551 161 5 892782936 +460 713 4 882912469 +325 82 3 891479263 +126 340 5 887854982 +334 151 4 891544925 +518 100 4 876822967 +283 294 4 879297013 +72 77 4 880036945 +189 207 5 893266161 +30 892 4 884310496 +278 313 5 891294932 +479 879 4 879459657 +336 1051 2 877757094 +462 271 1 886365928 +373 226 3 877107024 +440 921 5 891578264 +500 208 4 883873745 +110 258 4 886987183 +194 76 2 879549503 +454 121 4 888267128 +560 260 1 879977973 +311 539 4 884364268 +551 50 2 892776336 +263 699 4 891299207 +72 591 5 880035708 +561 109 1 885810271 +226 109 4 883889063 +401 1 2 891032170 +500 255 3 883865374 +401 276 4 891032433 +15 248 1 879455871 +565 212 5 891037453 +385 443 3 879445098 +560 423 4 879975586 +472 355 3 892790003 +339 566 3 891034717 +527 213 4 879456186 +227 14 4 879035463 +332 252 5 888098524 +556 48 5 882136252 +439 1048 4 882893602 +450 311 4 885945425 +504 655 4 887840713 +566 1232 2 881651126 +399 282 3 882340775 +567 221 5 882426927 +497 381 3 878759898 +289 125 2 876789373 +6 485 5 883602664 +533 378 4 879439290 +425 127 4 878738290 +141 831 2 884585470 +526 147 4 885682503 +514 732 5 875462901 +6 137 5 883599327 +561 489 4 885807743 +569 25 4 879793785 +198 191 4 884208682 +363 231 1 891497679 +586 665 3 884061256 +445 908 1 891199331 +405 1560 1 885549635 +41 188 4 890687571 +379 64 5 882563520 +251 147 3 886272319 +537 137 4 886029841 +399 77 2 882349094 +10 462 3 877891747 +533 65 4 879439465 +64 121 2 889739678 +429 404 4 882386121 +344 1142 5 889814518 +178 423 4 882826556 +371 393 2 880435397 +508 101 5 883777430 +561 1009 4 885810706 +276 1011 3 874836682 +455 223 4 879111554 +379 172 4 880525400 +450 433 3 882469061 +538 98 5 877107012 +254 181 5 886471151 +18 283 5 880130551 +529 292 4 882535180 +314 866 4 877892461 +561 15 3 885809291 +95 188 3 879196354 +504 1421 4 887841073 +295 121 4 879518455 +564 827 3 888731038 +507 827 5 889966088 +312 625 3 891699538 +587 327 3 892871252 +229 269 4 891633029 +283 409 4 879297442 +537 82 2 886031752 +235 496 4 889655662 +132 484 4 891278807 +197 228 4 891409894 +496 17 3 876065645 +59 975 4 888203610 +3 339 3 889237141 +137 680 5 881432735 +49 1083 2 888068651 +466 385 4 890284819 +453 963 4 888202307 +7 64 5 891350756 +130 565 3 880396541 +497 98 4 879361802 +282 300 3 879949438 +497 408 4 879309955 +485 245 3 891041782 +145 134 4 882181695 +88 319 3 891037708 +551 135 5 892778129 +280 389 5 891701913 +385 211 3 879446183 +372 333 5 876869109 +532 66 5 893118712 +409 1097 2 881108829 +194 13 4 879539410 +294 121 5 877819714 +537 417 2 886031831 +506 182 5 888848342 +479 1 5 879459939 +535 1124 4 879617613 +363 657 5 891494587 +311 399 4 884366269 +417 144 3 879647232 +453 69 4 877554647 +144 8 4 888105612 +582 948 1 882960718 +389 210 2 879990996 +298 514 4 884182989 +540 741 3 882157797 +362 322 3 885019651 +530 50 4 883781669 +480 642 4 891208822 +57 181 5 883697352 +476 209 4 883364218 +566 8 4 881650690 +345 464 3 884992084 +293 544 3 888905062 +379 144 5 880525367 +219 879 4 892039556 +253 220 4 891628060 +234 1461 2 892078297 +92 370 1 875644796 +380 506 3 885481179 +267 174 5 878971405 +196 287 3 881251884 +454 316 4 888015879 +391 511 5 877398855 +178 56 4 882825767 +533 479 4 879191184 +561 211 4 885808824 +39 270 4 891400609 +536 183 3 882359455 +399 941 3 882347577 +313 523 5 891014401 +551 616 5 892777052 +95 153 5 879197022 +503 246 5 884638548 +498 628 4 881961627 +77 246 5 884732808 +567 480 4 882426508 +301 455 5 882074437 +394 282 3 880888096 +507 300 5 889964239 +177 217 3 880131230 +327 301 3 887743725 +543 117 3 874861792 +206 683 1 888179980 +552 1277 3 879222763 +553 646 4 879949251 +210 301 4 887731435 +302 680 2 879437035 +435 122 3 884134677 +180 201 2 877127189 +480 165 5 891208390 +532 300 5 888635239 +216 257 3 880232830 +405 1206 1 885546530 +542 1059 4 886533193 +254 22 4 887347350 +405 802 1 885548049 +141 926 4 884585300 +509 300 3 883590800 +254 225 3 886475952 +420 475 4 891357162 +269 410 4 891446662 +343 471 4 876402941 +416 559 3 886317272 +584 258 4 885774483 +339 50 4 891032576 +194 549 3 879527263 +187 168 5 879465273 +303 721 4 879484194 +393 751 2 887741960 +12 708 3 879959394 +359 121 4 886453373 +342 547 5 875318347 +591 787 3 891031500 +524 497 2 884637467 +547 354 4 891282640 +438 255 4 879868242 +116 1214 3 876453422 +537 237 3 886030011 +460 676 4 882912285 +49 50 1 888067691 +137 210 5 881433654 +494 174 5 879541112 +69 98 5 882145375 +210 4 4 887730443 +406 699 4 884630617 +551 15 5 892782936 +53 1087 4 879443329 +472 117 3 875978740 +437 607 5 880140892 +566 1193 5 881649548 +504 563 3 887911314 +585 1347 2 891285658 +95 650 4 880572132 +455 42 2 879110767 +389 503 3 880087739 +500 179 4 883873782 +561 19 3 885808673 +579 845 4 880952549 +410 754 3 888626710 +271 509 4 885848559 +566 423 2 881649709 +305 1512 3 886322796 +62 1132 2 879373404 +178 9 2 882823758 +13 637 2 882396913 +533 190 2 879439379 +378 181 4 880045167 +415 269 4 879439108 +539 50 3 879788136 +386 24 4 877655028 +504 151 4 887831678 +194 467 5 879521253 +416 127 5 893213796 +504 210 4 887832643 +417 27 3 879648594 +437 660 4 880141441 +587 881 2 892871641 +363 518 4 891494835 +437 155 3 880143189 +314 379 3 877890463 +465 191 4 883530133 +465 199 3 883531026 +92 195 5 875652981 +588 365 5 890028385 +548 1405 3 891415572 +434 237 5 886724754 +420 408 4 891356927 +537 460 2 886030442 +197 265 5 891409893 +26 118 3 891385691 +486 250 1 879874753 +263 271 1 891297276 +255 564 1 883216600 +398 230 3 875908666 +416 432 2 878879861 +537 615 3 886031074 +228 750 3 889388440 +537 269 3 886028446 +527 156 3 879456334 +385 236 2 879439637 +561 1524 4 885809897 +313 333 4 891012877 +455 317 3 879111616 +543 207 5 875665787 +436 39 3 887769887 +488 199 4 891293911 +267 665 4 878973825 +31 319 4 881547788 +532 829 3 892520073 +248 176 5 884534808 +263 136 4 891298337 +561 518 4 885808620 +22 636 3 878888106 +7 603 4 891350757 +238 471 4 883576359 +20 820 2 879668626 +299 488 4 877881508 +314 845 5 877886483 +398 796 3 875732862 +177 963 4 880130736 +409 322 2 881105077 +276 1141 3 874790773 +552 14 4 879221649 +332 282 5 887916692 +314 196 3 877888212 +59 484 4 888204502 +479 358 1 879459732 +13 484 5 882139804 +561 1139 1 885810744 +90 20 4 891384357 +271 88 4 885849087 +588 204 5 890015323 +95 542 2 888954039 +246 981 1 884924765 +405 1471 1 885548670 +416 1217 4 886319366 +13 138 1 882399218 +296 237 5 884196785 +475 316 5 891627927 +30 174 5 885941156 +405 939 5 885545200 +533 9 4 879192414 +452 143 3 885805093 +405 1063 5 885548785 +561 678 2 885807080 +409 1524 4 881107666 +92 237 4 875640318 +501 181 4 883347857 +164 717 3 889402265 +401 64 3 891032757 +234 307 2 891033427 +15 235 1 879456424 +157 340 5 886889616 +553 98 5 879948996 +537 207 4 886030682 +533 1282 3 879773572 +435 148 3 884133284 +425 1089 2 878739095 +374 1513 2 883961242 +430 628 3 877225832 +561 468 1 885809291 +532 1210 4 888636373 +519 324 1 883248191 +473 137 4 878157357 +294 291 2 889242469 +591 1017 3 891039616 +311 77 5 884365718 +507 689 5 889964844 +404 270 4 883790749 +71 181 3 877319414 +524 525 3 884634615 +170 259 3 886623680 +581 50 4 879641698 +327 269 3 887737629 +144 61 3 888106182 +334 265 3 891545876 +22 24 5 878888026 +349 471 3 879465535 +411 566 4 892845634 +486 766 4 879874417 +303 1411 2 879483941 +442 53 3 883390048 +392 289 5 891037769 +23 224 5 874784638 +587 875 1 892871462 +535 238 4 879618809 +189 500 5 893266351 +379 576 4 880525678 +459 328 3 879561574 +308 216 3 887737789 +546 346 5 885139634 +208 517 3 883108398 +254 415 3 886475523 +539 131 4 879788159 +459 230 4 879564941 +11 357 5 891904241 +532 485 5 893119491 +405 537 1 885546445 +587 349 3 892871400 +399 735 3 882344512 +405 520 2 885546025 +484 50 5 881254239 +181 1059 1 878963440 +498 1142 4 881955432 +524 931 3 884627932 +457 132 5 882547619 +373 550 3 877105588 +62 651 4 879373848 +228 137 1 889388662 +13 117 3 882398138 +292 235 3 881104797 +429 627 2 882387114 +62 403 4 879375588 +456 1324 4 881371720 +150 288 4 878746174 +417 616 2 879648048 +561 124 3 885807842 +161 257 3 891172174 +214 462 4 892668197 +440 1191 5 891550404 +574 321 1 891279285 +336 290 3 877756934 +545 648 3 879899719 +83 406 2 891182431 +552 717 3 879222368 +343 153 5 876404539 +406 428 5 879446684 +363 678 1 891494012 +131 127 4 883681418 +104 294 3 888442404 +399 231 3 882350375 +18 973 3 880129595 +207 849 3 877822704 +397 878 1 875063722 +270 581 5 876955938 +244 401 3 880607424 +537 457 1 886029444 +500 660 2 883874835 +484 510 4 889974386 +378 620 3 880056582 +503 20 5 879438285 +268 544 3 875743090 +560 13 3 879976602 +523 629 5 883702125 +177 173 4 880130667 +455 462 3 879110436 +94 665 3 891723328 +528 310 3 888520371 +561 222 3 885807843 +451 881 4 879012721 +575 322 3 878146541 +555 87 4 879975505 +592 418 4 882956551 +145 282 5 875270570 +69 307 2 882027204 +393 797 3 889731138 +270 860 5 876956464 +553 307 4 879948235 +458 193 4 886396460 +54 546 3 880937583 +425 831 3 878739095 +487 1244 2 883444859 +516 310 4 891290565 +257 582 5 879547608 +374 483 3 880394716 +268 203 5 876513855 +422 1187 4 875130137 +580 825 4 884125339 +77 15 2 884732873 +551 959 5 892784166 +303 741 4 879466604 +264 1118 4 886123656 +271 285 4 885847876 +308 176 4 887736696 +334 955 1 891547563 +276 399 2 874792634 +316 83 4 880853992 +435 762 4 884132840 +532 153 4 888629670 +13 311 3 881514726 +128 924 3 879967341 +521 721 4 885253337 +60 404 3 883327287 +592 124 5 882607986 +88 313 3 891037201 +463 13 3 877385664 +75 13 5 884050102 +500 284 3 883865632 +401 1289 2 891032495 +537 7 4 886029727 +500 845 4 883865566 +303 780 5 879483900 +412 154 3 879717071 +456 13 4 881372604 +294 50 5 877819353 +495 214 5 888632219 +405 1553 1 885548632 +87 570 3 879876163 +592 50 5 882607872 +70 230 4 884064269 +586 148 3 884065745 +299 237 2 877877649 +92 737 4 875654125 +550 993 4 883425426 +543 176 4 874865635 +459 742 4 879562834 +11 727 3 891904335 +222 168 4 878181616 +405 1517 1 885547735 +57 405 4 883697459 +303 64 5 879466457 +566 83 4 881650148 +316 678 1 880853310 +487 794 5 883530503 +96 445 4 884403095 +450 1140 2 882471362 +338 135 5 879438570 +479 298 3 879459909 +537 241 3 886031540 +84 685 3 883452274 +13 12 5 881515011 +336 275 4 877759730 +294 928 3 889242468 +255 665 3 883216748 +92 271 2 880149111 +456 1218 3 881374921 +54 181 5 880931358 +592 204 5 882956158 +276 159 3 874795637 +8 273 3 879362287 +457 44 4 882548214 +460 591 2 882911603 +13 518 4 882140252 +474 503 4 887925838 +201 679 3 884310104 +582 246 4 882961082 +403 288 4 879785822 +314 121 4 877886221 +373 96 4 877098262 +271 277 4 885847714 +503 176 5 879454754 +551 307 4 892775516 +450 315 4 884098435 +154 874 3 879138368 +429 441 3 882386848 +102 187 3 888801232 +144 4 4 888105873 +85 1103 3 882995489 +389 423 5 880087461 +481 648 5 885828165 +22 684 3 878887983 +370 433 3 879434860 +286 396 4 877534414 +405 199 1 885546025 +405 1559 1 885546577 +351 888 4 879481589 +246 401 1 884923750 +329 331 3 891656639 +561 530 4 885807547 +439 300 4 882892424 +218 56 3 881288574 +449 558 4 880410599 +293 678 2 888904439 +288 121 2 886893063 +399 806 3 882344096 +49 71 3 888067096 +189 487 5 893265568 +178 87 4 885784558 +472 930 5 875979317 +425 147 3 878738643 +297 11 4 875240015 +497 145 4 879362382 +551 742 5 892782838 +374 48 5 880395426 +405 1032 1 885549044 +363 774 4 891498835 +465 318 4 883531487 +52 111 4 882922357 +456 182 3 881373228 +330 105 4 876545150 +145 603 5 875272009 +545 636 3 879899472 +48 209 5 879434954 +429 186 4 882385294 +387 582 3 886483497 +500 1326 4 883865020 +10 205 5 877888812 +181 1197 1 878962774 +551 238 5 892777638 +445 293 3 891199945 +328 195 3 885045899 +586 39 4 884061623 +447 981 2 878855139 +417 396 2 879649560 +178 200 3 882826983 +425 207 2 891986445 +405 415 2 885549005 +186 56 3 879023460 +342 866 1 875318585 +23 151 3 874784668 +435 318 5 884131385 +491 340 4 891189716 +189 7 3 893264300 +555 480 4 879975474 +197 373 1 891410124 +344 151 5 884899719 +328 1439 3 885048827 +178 226 4 882826187 +579 83 5 880952360 +476 710 5 883364324 +474 483 5 887924424 +503 204 3 880383703 +567 483 5 882425843 +10 663 3 877886598 +479 739 1 879461932 +267 53 4 878972842 +326 154 2 879875271 +255 5 2 883216599 +411 655 4 891035639 +291 829 2 874834308 +246 1044 1 884922869 +188 64 5 875071891 +449 753 5 880410700 +542 187 4 886533395 +394 172 4 880886919 +532 168 5 892519934 +42 627 2 881109271 +378 969 4 880056195 +206 1431 1 888180018 +81 283 4 876533504 +15 181 5 879455710 +299 965 4 889501260 +329 117 3 891655868 +36 288 4 882157227 +345 772 4 884993121 +10 467 4 877891904 +493 318 5 884132315 +435 260 3 884130810 +33 260 4 891964306 +101 147 4 877136506 +411 161 2 891035761 +270 79 4 876955938 +409 433 4 881108170 +323 144 4 878739988 +118 171 5 875384825 +549 252 3 881672538 +92 1018 4 875653769 +6 367 2 883602690 +154 174 5 879138657 +90 443 4 891385250 +406 960 2 879793376 +561 506 3 885809146 +399 727 4 882344722 +429 686 2 882385519 +25 116 4 885853335 +405 645 1 885546635 +268 174 5 875309882 +497 39 3 879310913 +561 497 4 885809064 +545 474 3 884134205 +16 12 5 877718168 +430 124 5 877225726 +577 662 4 880474933 +409 170 4 881107084 +567 1 3 882426899 +394 195 5 880886919 +405 461 3 885545639 +407 357 4 875042569 +592 297 5 882607844 +13 851 5 882139966 +435 95 3 884131868 +254 1028 2 886474619 +236 435 4 890115966 +405 807 1 885546680 +456 432 4 881374390 +561 1220 2 885810538 +7 157 5 891352059 +28 286 3 881955018 +590 285 5 879438735 +405 82 4 885547952 +387 238 5 886482928 +6 64 4 883600597 +416 1048 3 876698255 +416 824 2 876697592 +530 178 5 883787080 +463 50 4 890530818 +503 778 5 892667730 +164 1016 3 889402091 +506 747 2 874874629 +233 275 5 885147637 +280 140 4 891701223 +527 868 4 879456663 +396 405 3 884646314 +497 771 4 879362638 +515 315 4 887658604 +574 258 5 891278916 +543 591 4 876896210 +506 661 5 874874308 +397 457 1 875063722 +307 257 5 875645340 +421 164 4 892241687 +474 298 3 887915645 +532 818 2 888631077 +269 160 2 891448220 +503 45 5 880383064 +585 582 3 891282894 +566 480 4 881649471 +407 972 3 876340120 +59 498 5 888204927 +361 770 3 879441352 +243 162 4 879988459 +406 498 5 879445378 +409 204 5 881108496 +454 76 1 888266433 +38 418 5 892431026 +404 302 4 883790218 +447 17 3 878856110 +542 475 3 886532359 +298 588 4 884125022 +456 185 4 881372849 +435 317 2 884132483 +448 338 1 891888712 +290 141 4 880474740 +497 403 3 879310883 +435 436 4 884133691 +537 187 4 886030767 +374 463 1 880396511 +509 260 2 883591195 +326 317 3 879875243 +49 1071 3 888069138 +24 237 4 875323002 +92 949 3 875653664 +577 117 4 880471359 +579 528 4 880951708 +303 227 3 879542884 +85 495 3 882994860 +105 340 3 889214245 +537 313 4 886028446 +405 779 1 885548137 +111 303 3 891680028 +268 59 5 875309282 +416 864 3 888700529 +539 483 5 879788101 +551 185 5 892777885 +546 436 5 885141438 +405 1146 2 885546724 +435 435 3 884132230 +190 245 4 891033487 +401 121 3 891032662 +435 520 4 884132027 +267 159 4 878974659 +97 175 5 884239616 +94 484 5 891720996 +224 365 3 888104188 +551 355 4 892776041 +227 748 1 879035387 +428 334 4 885943847 +592 79 4 882955583 +543 238 3 874866319 +373 553 4 877100267 +324 323 4 880575163 +414 272 5 884998953 +253 190 5 891628278 +271 161 2 885849470 +399 1074 4 882345842 +506 54 4 874876651 +508 181 3 883767047 +288 268 4 886372812 +405 403 5 885546445 +494 924 4 879541475 +158 53 1 880134781 +455 65 3 879111396 +586 756 1 884067105 +269 318 4 891447791 +48 191 5 879434954 +480 265 3 891208390 +416 628 4 876697283 +60 73 4 883326995 +348 926 3 886523683 +488 299 3 891293051 +593 633 5 875671081 +486 305 3 879874218 +271 529 4 885848475 +13 233 4 882397650 +269 679 1 891449962 +453 401 3 888206038 +488 87 5 891294297 +194 159 3 879552401 +124 168 5 890287645 +364 319 3 875931309 +533 96 4 879438767 +158 221 2 880132421 +500 42 5 883874139 +434 148 3 886724797 +458 408 5 886396637 +109 156 5 880573084 +76 547 2 882607017 +7 595 2 891353801 +457 476 2 882392810 +561 1 2 885807713 +156 83 3 888185677 +474 258 4 887914688 +94 209 5 886008301 +440 243 1 891577504 +308 171 4 887738346 +158 111 4 880134261 +217 50 1 889069684 +98 25 5 880499111 +326 565 3 879877470 +94 200 4 891721414 +363 979 1 891497748 +76 1048 2 882607017 +87 50 5 879876194 +455 313 4 884649784 +354 1137 4 891219376 +592 969 4 882956718 +456 91 2 881373948 +586 559 5 884060807 +472 196 4 875982005 +95 198 5 880570823 +540 742 4 882157584 +449 1367 4 879958976 +524 31 4 884636205 +276 721 3 874791871 +85 1121 3 879454820 +406 813 4 879539824 +537 472 2 886030415 +239 589 3 889180978 +82 3 2 878768765 +408 302 5 889679683 +511 880 5 890004778 +52 19 5 882922407 +465 180 3 883530015 +391 191 3 877399336 +363 250 1 891499468 +194 134 2 879521719 +416 307 1 889907392 +270 559 5 876956442 +170 988 3 884706063 +451 687 2 879012510 +364 948 4 875931561 +282 343 4 881702939 +343 241 3 876407291 +391 11 3 877398951 +542 246 3 886532359 +396 282 4 884646052 +339 204 3 891033542 +405 509 1 885546112 +268 260 3 876513643 +583 83 4 879384338 +243 468 3 879988298 +429 154 3 882384683 +206 1395 1 888180081 +569 126 5 879793909 +328 161 4 885047670 +21 244 4 874951349 +174 278 5 886433833 +60 30 5 883325944 +568 269 4 877906547 +521 271 3 884475524 +234 417 3 892336119 +450 790 2 882374332 +548 1073 4 891044411 +106 25 4 881451016 +91 429 4 891439324 +517 369 5 892660727 +263 480 3 891298453 +537 467 3 886031634 +214 135 3 891544175 +393 905 3 887742851 +473 327 3 878156857 +523 166 4 883701018 +303 673 4 879468250 +457 934 3 882396092 +479 692 3 879461700 +279 158 3 875313351 +497 455 4 878759777 +318 191 5 884496069 +522 173 4 876961020 +26 748 1 891348192 +387 197 2 886483824 +541 274 4 883866093 +569 924 3 879793784 +94 506 5 891721642 +313 538 2 891014313 +262 420 3 879793854 +472 417 4 875982337 +506 530 5 874874110 +311 449 3 884365823 +450 371 3 887661961 +459 866 5 879563312 +183 375 2 891467545 +540 150 3 882157036 +301 3 2 882075082 +59 211 5 888206048 +576 181 4 887081041 +373 225 4 877106676 +118 564 1 875385335 +218 47 4 877488492 +524 607 3 884637314 +43 9 4 875975656 +124 174 3 890287317 +184 175 3 889908985 +435 229 2 884133544 +378 702 4 880056453 +537 922 3 886030442 +167 521 5 892738307 +59 226 4 888206362 +487 768 3 884025080 +524 290 2 884323525 +160 293 5 876767572 +119 879 5 875720232 +243 318 4 879988071 +308 202 4 887737084 +596 678 3 883538965 +457 373 2 882551189 +11 728 3 891905366 +119 459 4 887038711 +294 682 3 889241486 +472 123 4 875979317 +437 287 2 881000931 +405 22 5 885545167 +457 38 3 882549651 +435 797 3 884133872 +570 303 5 881262256 +401 493 4 891033370 +200 501 4 884129504 +460 7 3 882912205 +83 196 5 880307996 +525 412 2 881086757 +59 747 4 888205410 +592 20 4 882608315 +328 272 5 888641556 +545 144 3 879899125 +445 23 3 890987465 +599 682 4 880951079 +474 92 4 887927509 +234 477 1 892335108 +80 260 1 883605215 +115 174 5 881171137 +236 174 3 890116539 +468 181 3 875280041 +156 772 3 888185947 +385 122 3 883791694 +458 1070 4 886395963 +568 194 3 877907671 +233 143 4 877663383 +541 810 3 883871719 +587 879 1 892871536 +115 673 3 881171558 +593 392 3 886193788 +474 966 4 887925837 +466 324 1 890283690 +363 805 4 891497205 +524 724 3 884636444 +336 186 4 877757730 +262 72 3 879962366 +105 327 4 889214406 +478 518 4 889395638 +432 181 5 889416118 +448 304 3 891888137 +541 255 3 884046321 +119 301 4 886176779 +92 222 4 886440557 +213 187 5 878956022 +358 666 3 891269992 +201 334 4 884110927 +417 58 3 879647140 +437 497 5 880140192 +497 412 1 878759926 +56 408 4 892683248 +451 688 1 879012811 +244 716 3 880607641 +445 221 1 891200203 +495 504 4 888632546 +401 147 2 891032662 +472 4 3 875980418 +95 141 4 888954631 +550 300 4 883425652 +429 85 4 882387234 +357 274 4 878951784 +465 194 4 883531072 +234 188 2 892079288 +365 222 4 891303950 +535 168 5 879618385 +18 805 4 880131358 +13 661 5 881515411 +234 692 3 892335990 +525 332 4 881085178 +302 988 2 879436875 +181 19 1 878962392 +536 570 3 882361162 +276 356 3 874791101 +507 271 5 889964312 +249 148 3 879640361 +196 116 3 881251753 +472 80 3 875981230 +214 92 4 892668249 +114 646 4 881260473 +197 679 1 891409935 +577 684 4 880474394 +378 450 3 880334476 +452 485 2 875276589 +130 11 5 875216545 +503 134 5 880383588 +434 9 1 886724563 +291 38 3 874834914 +450 357 5 882373531 +548 657 5 891044411 +81 42 4 876534704 +576 70 5 886986361 +318 284 3 884470775 +19 211 4 885412840 +432 508 5 889415853 +303 979 4 879484213 +437 301 3 881002067 +423 689 4 891395020 +381 1532 2 892696831 +546 458 1 885140689 +291 22 5 874835062 +279 204 3 878082751 +537 90 1 886032029 +474 98 5 887924027 +471 102 5 889828081 +174 139 3 886515591 +553 496 3 879948460 +43 1056 3 883955498 +293 283 2 888904884 +18 709 5 880131028 +361 213 5 879440605 +181 129 2 878962279 +525 1011 3 881086274 +37 118 2 880915633 +463 813 4 877385125 +551 203 5 892782975 +433 95 3 880585802 +545 254 4 879898995 +136 237 4 882693597 +453 393 3 888207162 +479 216 3 879461399 +295 431 5 879518233 +495 650 5 888634956 +138 662 4 879024128 +193 742 4 889126673 +159 126 5 880557038 +308 566 4 887739014 +243 461 3 879988132 +201 644 3 884113924 +148 496 3 877015066 +533 708 2 879439167 +593 79 4 875671674 +350 210 4 882345918 +107 323 1 891264566 +177 64 4 880130736 +308 162 4 887739095 +437 1039 2 880140101 +303 709 5 879468021 +361 204 4 879440516 +94 549 5 891721528 +97 191 5 884239472 +305 181 4 886321799 +246 288 5 884922235 +589 313 5 883352434 +435 1228 2 884133972 +521 73 3 885253827 +195 93 3 891762536 +488 100 2 891293910 +301 1016 4 882074684 +373 393 4 877104284 +145 692 2 885557505 +497 384 2 879362985 +370 210 3 879434745 +329 194 3 891656429 +551 746 5 892777013 +489 539 4 891448834 +535 480 4 879618207 +503 430 5 880383653 +405 1404 1 885547360 +401 14 3 891032271 +270 1009 5 876954522 +495 389 5 888637643 +326 837 4 879875507 +535 521 5 879618809 +558 124 4 879435855 +535 629 4 879618776 +182 479 5 876436556 +548 235 3 891415746 +545 265 4 883115423 +523 575 4 883702800 +594 237 3 874784095 +348 756 4 886523735 +184 739 3 889910257 +474 641 4 887926436 +328 708 2 885048101 +207 127 5 875506634 +449 459 4 879958803 +326 228 4 879876861 +505 88 4 889334334 +256 203 4 882164867 +394 419 5 880887250 +561 62 3 885810144 +222 1336 2 877563998 +541 239 4 883865211 +435 451 4 884133487 +406 1118 3 880132091 +59 436 5 888206094 +347 544 4 881652862 +417 1157 4 880952616 +541 419 5 883874682 +566 71 2 881650958 +514 336 1 885180842 +568 923 3 877906995 +58 1012 4 884304627 +401 655 3 891033417 +498 144 1 881958471 +254 1033 3 886475034 +92 171 4 875652981 +257 475 5 879029716 +299 228 3 878191823 +538 692 3 877107765 +10 511 4 877888877 +52 1011 4 882922588 +577 95 5 880474747 +597 328 4 875339132 +293 70 3 888907101 +474 848 4 887926998 +453 591 3 877552969 +458 596 4 886395350 +533 380 4 879438510 +373 734 3 877111313 +543 810 3 877547004 +278 752 5 891295164 +577 188 3 880474715 +54 288 4 880928957 +344 298 4 889814571 +417 746 5 879648048 +472 951 1 875983426 +56 820 3 892683303 +95 208 4 879198353 +531 457 1 887049341 +283 208 5 879298239 +6 174 4 883600985 +130 118 4 874953895 +578 294 3 888957453 +425 1434 4 890346317 +271 276 3 885847800 +59 529 4 888205145 +85 79 3 879453845 +488 521 3 891294942 +551 340 4 892775584 +497 25 4 879309780 +379 124 5 883156810 +533 496 5 879439061 +586 203 3 884059027 +506 581 2 874874850 +393 255 4 887744328 +420 116 4 891357162 +543 385 3 877545717 +554 98 5 876550491 +180 367 1 877127486 +536 679 4 882360495 +545 219 2 880348933 +83 274 4 880306810 +589 268 1 883352463 +152 549 4 882476261 +72 174 5 880037702 +390 1 5 879694066 +504 183 3 887832531 +534 240 5 877807873 +498 1131 3 881955866 +173 306 5 877556626 +222 102 2 878183043 +504 54 4 887909936 +96 182 4 884402791 +95 121 4 879194114 +368 774 4 889783562 +378 319 3 884530934 +48 98 5 879434954 +293 196 4 888906012 +467 455 3 879532744 +91 50 5 891439386 +393 1210 3 889731593 +601 324 4 876346383 +213 985 3 878955164 +162 208 3 877636746 +363 710 5 891495596 +504 68 5 887912665 +63 546 2 875747789 +548 477 1 891415786 +5 172 5 875636130 +535 423 5 879618613 +602 678 4 888638193 +391 963 5 877399746 +499 202 4 885598961 +497 808 2 879310941 +528 479 4 886101505 +158 694 5 880133209 +405 5 4 885545070 +472 746 5 875983023 +532 679 5 888629565 +311 754 3 884363758 +298 530 5 884182600 +575 506 2 878148087 +237 197 4 879376515 +237 489 4 879376381 +472 370 4 875979317 +504 585 2 887909864 +347 471 4 881652518 +394 597 2 881058201 +537 1008 2 886030078 +480 8 5 891208576 +380 7 3 885478334 +314 562 4 877890960 +548 760 3 891416049 +552 829 3 879222738 +378 727 4 880055454 +488 176 4 891293734 +38 590 1 892434373 +184 523 4 889909618 +416 433 4 886316226 +483 365 2 878953277 +70 231 3 884064862 +429 150 5 882385569 +232 186 4 888549790 +500 39 4 883875092 +175 12 4 877108146 +167 8 5 892738237 +543 216 4 874864666 +181 18 1 878962623 +201 47 4 884140610 +268 180 3 875309719 +521 826 2 884476920 +600 92 3 888451665 +590 221 4 879439645 +181 224 1 878962623 +169 243 3 891268851 +162 1 4 877635819 +18 236 3 880131077 +256 405 4 882151088 +592 433 5 882956761 +189 124 5 893264048 +261 243 5 890454351 +353 340 4 891401942 +470 288 4 879178216 +561 239 3 885809336 +538 69 5 877107340 +303 106 2 879543796 +327 232 4 887819538 +342 818 4 875318488 +405 1484 1 885547690 +224 423 4 888103581 +457 673 4 882397829 +389 79 4 879991461 +383 480 5 891193242 +452 874 2 887718965 +293 199 5 888905582 +577 15 3 880470350 +288 289 3 886372937 +385 1143 4 880828451 +416 980 4 886314987 +566 89 4 881650423 +22 229 2 878887925 +223 864 3 891550094 +432 1049 2 889415983 +524 213 4 884635136 +184 393 4 889909788 +450 1172 5 882373231 +76 1006 3 875027907 +294 546 4 877819761 +8 241 4 879362423 +452 243 5 886148336 +92 405 2 875644795 +409 427 5 881107251 +605 127 5 879366240 +566 242 5 881649273 +603 21 3 891956715 +76 60 4 875028007 +59 79 5 888204260 +514 659 3 875463245 +537 102 1 886032123 +125 176 5 879454448 +95 274 4 879193881 +15 879 3 879455311 +263 732 5 891299265 +92 284 2 876175733 +221 29 3 875245739 +152 117 4 880148782 +253 96 5 891628651 +264 1070 4 886123415 +214 174 4 892668249 +579 179 3 880952038 +548 619 3 891415786 +47 327 4 879440360 +523 211 4 883702292 +518 1028 3 876824266 +429 248 5 882386870 +92 577 3 875907649 +164 291 5 889401963 +370 174 3 879434587 +592 323 1 882607690 +400 286 4 885676230 +389 179 4 879991461 +495 201 2 888633594 +181 111 3 878962774 +92 80 2 875907504 +109 332 3 880562908 +537 205 5 886031297 +603 230 4 891955922 +468 603 5 875296309 +533 87 4 879191184 +577 186 4 880472153 +576 381 3 886986445 +525 1012 3 881086078 +286 339 5 884583549 +40 270 3 889041477 +89 66 3 879459980 +62 1018 3 879375606 +533 1028 2 879192769 +580 7 3 884124844 +197 354 2 891409199 +592 336 1 882607476 +476 211 5 883365019 +293 48 5 888905819 +561 513 3 885807345 +130 1244 4 876251192 +385 511 4 879441881 +545 520 4 884133794 +318 864 2 884495032 +510 358 1 887667780 +348 368 3 886523876 +468 19 4 875280126 +291 82 4 874835116 +62 97 2 879373795 +119 23 3 874782100 +332 1 4 887938245 +399 53 4 882345271 +387 532 3 886480970 +406 125 3 879539987 +561 64 3 885809605 +299 1507 3 877881170 +443 644 3 883505465 +163 301 3 891219977 +334 235 3 891545293 +453 3 4 877552717 +442 56 5 883388237 +174 843 2 886515551 +537 461 3 886031105 +221 230 3 875246506 +200 890 4 884127082 +265 293 4 875320661 +500 125 3 883865632 +279 41 2 875313646 +378 476 3 880044642 +314 721 5 877891465 +568 59 1 877906995 +416 678 2 876696788 +276 189 4 874977555 +449 179 4 880410674 +485 288 3 891041171 +57 710 3 883698324 +530 70 4 886198864 +416 1014 3 876697847 +561 616 3 885808929 +371 523 4 880435210 +81 405 3 876533764 +87 427 4 879877824 +190 272 5 891033606 +538 216 4 877364204 +1 197 5 875072956 +433 435 4 880585700 +151 147 2 879524947 +334 498 4 891545898 +297 919 1 874954260 +450 1401 4 882372103 +37 231 2 880916046 +437 116 3 880139997 +323 11 5 878739953 +496 480 3 876065289 +378 629 5 880056318 +5 414 3 875636691 +474 418 3 887928562 +94 1222 3 891723848 +528 393 2 886101695 +484 15 5 881449527 +90 462 5 891383752 +236 423 5 890116304 +425 576 3 878738813 +432 322 3 889416657 +268 1314 2 875744289 +342 535 3 874984727 +595 1264 2 887588203 +308 732 4 887738847 +222 375 1 878182880 +416 1540 4 893142245 +213 393 3 878955973 +588 207 2 890025076 +556 325 2 882135684 +363 32 2 891496667 +436 21 3 887772028 +561 1119 3 885810144 +29 879 3 882821161 +518 123 2 876823143 +322 48 4 887313946 +215 127 4 891435183 +286 40 4 877534824 +29 661 5 882821942 +59 477 3 888203415 +207 38 3 875509507 +301 121 4 882075148 +539 185 4 879788101 +303 1426 2 879484804 +449 15 4 879958866 +161 133 2 891171023 +244 1168 4 880608788 +552 118 3 879222520 +405 1031 1 885549045 +398 519 4 875723337 +210 956 3 887736900 +561 1024 3 885806883 +409 1593 4 881108971 +193 739 4 889126427 +489 1243 4 891445231 +198 356 3 884208455 +535 59 3 879618338 +95 78 3 888956901 +416 1160 4 876697760 +6 505 4 883602422 +334 485 3 891548224 +586 281 3 884062405 +92 474 4 875653519 +551 62 5 892784524 +320 458 4 884748868 +451 1394 1 879012858 +136 116 5 882693723 +468 692 4 875292027 +479 226 3 879461280 +287 313 4 888177170 +533 196 4 888844941 +346 578 2 874950463 +429 732 4 882385882 +3 342 4 889237174 +181 831 1 878963241 +429 62 3 882387350 +263 515 5 891298592 +82 432 4 878769373 +6 507 4 883601310 +393 553 3 887747108 +381 934 2 892697495 +487 183 5 883446637 +446 292 5 879786838 +499 318 5 885599286 +500 304 2 883864749 +568 954 2 877907671 +496 229 2 876070655 +548 222 5 891044596 +552 760 3 879222306 +447 1028 3 878855139 +190 273 4 891033676 +279 12 2 875306515 +83 1016 4 883868345 +49 419 4 888067691 +392 491 5 891039049 +239 504 4 889179544 +417 50 3 879646123 +119 825 3 874780860 +152 402 5 882829501 +392 1258 1 891038247 +116 288 3 886309812 +533 221 3 888844601 +528 657 5 886101505 +569 50 5 879793717 +524 898 4 884701702 +456 696 3 881372078 +222 580 3 878715168 +234 642 3 892334766 +498 50 4 881954821 +516 181 4 891290566 +82 326 2 879788343 +561 163 3 885808963 +561 154 4 885807612 +275 431 3 880314969 +592 324 4 882607387 +221 544 4 875244512 +95 640 3 880571746 +2 293 4 888550939 +1 173 5 878541803 +94 399 4 891722802 +503 416 2 880472250 +181 270 4 878961270 +311 1119 4 884366703 +506 772 1 874873247 +441 117 4 891035489 +505 7 3 889334129 +606 123 3 878143605 +321 382 3 879440245 +592 202 5 882956803 +320 546 4 884748818 +437 732 4 880143167 +472 790 3 875981968 +562 114 1 879195156 +501 237 4 883348011 +597 824 3 875342875 +207 609 4 877879173 +330 216 5 876546470 +82 430 5 878769703 +49 262 5 888065620 +385 657 4 879442109 +405 94 5 885547408 +497 1419 2 879362638 +316 707 4 880853485 +214 608 4 891544114 +474 380 4 887927588 +207 239 3 876079016 +200 527 4 884129656 +321 132 5 879440342 +535 209 5 879617819 +195 1415 1 874825827 +351 323 5 883356710 +417 758 2 879649247 +561 671 3 885808673 +263 132 5 891298392 +267 62 3 878973597 +600 229 3 888451840 +543 86 4 876896210 +600 1110 3 888452564 +488 511 4 891294209 +523 707 5 883701093 +411 38 4 891035405 +201 923 3 884113592 +456 508 4 881371427 +339 527 4 891032793 +551 1267 4 892783906 +457 174 5 882397267 +414 346 5 884999037 +290 97 3 880475016 +533 202 4 879191938 +399 155 2 882348773 +406 573 3 880132319 +524 76 4 884636182 +399 395 3 882350733 +62 959 4 879375269 +13 433 4 881515239 +108 294 4 879879662 +303 715 4 879484441 +274 125 4 878945711 +421 674 5 892241687 +505 176 4 889333340 +517 269 3 892659922 +128 471 4 879967804 +452 660 4 875560068 +42 501 5 881108345 +524 642 4 884636182 +63 591 3 875747581 +537 770 3 886031913 +413 508 4 879969484 +509 879 1 883590913 +223 333 4 891548675 +454 968 2 888267198 +559 204 3 891035708 +600 127 5 888451492 +222 95 4 878182453 +490 237 1 875427993 +437 11 1 880139951 +500 1008 4 883865786 +381 529 5 892696060 +562 191 5 879196176 +13 7 2 882396790 +291 568 4 874835141 +222 365 4 878184765 +47 269 4 879438984 +122 11 1 879270424 +467 93 4 879532595 +47 258 4 879438984 +357 472 3 878952166 +524 178 3 884634968 +566 154 3 881651151 +151 847 5 879528459 +85 458 3 879452867 +309 304 3 877370319 +422 201 4 879744014 +493 172 5 884131597 +65 735 4 879216769 +7 215 4 891351624 +403 284 1 879790389 +577 393 4 880475363 +487 99 4 883530434 +523 652 2 883703495 +514 750 4 885180627 +107 286 2 891264266 +579 1074 3 880952579 +416 275 5 893212484 +561 458 4 885809197 +299 302 4 889501087 +194 659 4 879520743 +89 100 5 879441271 +575 181 2 878148295 +439 237 5 882893220 +429 225 2 882387599 +533 222 5 884007368 +573 427 4 885844091 +299 298 4 877878227 +474 923 4 887926632 +458 127 5 886396390 +269 200 4 891449984 +577 38 2 880475453 +256 808 4 882164559 +591 1099 5 891031203 +497 395 4 879363284 +7 572 3 891354331 +592 1623 4 882955794 +505 199 4 889333442 +251 405 3 886272547 +521 33 4 885254133 +485 313 4 891040423 +554 69 5 876232682 +405 1576 1 885549464 +318 892 3 884470391 +181 547 1 878962720 +331 238 4 877196383 +243 86 5 879989217 +435 697 4 884133372 +13 792 5 882139686 +537 11 3 886030937 +559 514 4 891035633 +1 75 4 878543238 +583 663 4 879384338 +568 185 4 877907834 +393 739 3 887746671 +544 332 3 884795437 +293 50 5 888905519 +495 550 3 888635235 +538 117 3 877107492 +405 1437 1 885547557 +63 282 1 875747657 +524 646 5 884637347 +141 293 2 884584735 +454 836 2 888266785 +407 525 4 875046427 +505 614 3 889334162 +543 190 5 875665787 +592 1315 2 882609056 +125 340 1 892835659 +514 367 5 875318164 +498 340 2 881954618 +537 95 1 886030891 +342 193 5 875320199 +503 1194 5 879438072 +392 288 4 891037531 +551 343 4 892775869 +487 779 2 884050879 +276 44 3 874795637 +57 826 2 883697990 +305 199 4 886323779 +389 763 1 879916203 +401 356 4 891033122 +449 244 4 879959152 +537 648 4 886031505 +389 40 3 880088825 +535 1396 4 879618058 +514 392 4 875463351 +264 1009 4 886124417 +16 427 5 877722001 +330 177 4 876546267 +354 956 4 891218271 +532 403 4 892865321 +264 656 4 886122099 +276 627 3 874792907 +68 25 4 876974176 +18 66 3 880131728 +582 250 3 882961000 +198 117 1 884205114 +309 1296 2 877370319 +250 325 4 883262927 +184 51 4 889909069 +158 744 4 880132462 +374 118 5 880393864 +216 408 3 880232547 +592 742 4 882608357 +518 236 3 876823597 +286 1288 4 876522114 +159 1049 4 880485972 +308 92 4 887737293 +536 199 3 882359499 +12 216 5 879960826 +174 662 5 886513752 +247 222 3 893081411 +493 191 4 884132225 +592 988 1 882607745 +518 222 5 876823597 +575 507 2 878148137 +351 301 3 879481424 +222 576 3 881060305 +198 143 3 884208951 +116 302 3 876451911 +151 492 3 879524738 +586 219 3 884060705 +495 465 5 888635180 +435 23 4 884132942 +523 514 4 883702172 +558 508 5 879436396 +525 685 4 881086295 +416 313 5 893214226 +397 273 4 889760803 +471 151 2 889828154 +21 243 2 874951039 +227 221 4 879035535 +529 269 3 882534996 +301 193 3 882075994 +85 510 4 879454400 +314 67 4 877891386 +13 791 5 882141686 +409 174 4 881108881 +405 739 2 885549309 +554 228 5 876550011 +476 288 4 883365734 +421 234 5 892241646 +197 172 5 891409839 +255 147 4 883216845 +190 591 4 891033863 +389 700 2 881384441 +268 658 3 875310524 +363 1 2 891494563 +109 597 2 880571715 +537 1105 1 886029153 +334 175 4 891546257 +508 173 4 883767140 +97 408 5 884238652 +593 211 4 875671198 +292 748 3 877718776 +42 402 5 881108982 +319 750 3 889816107 +603 174 3 891956927 +577 720 4 880475043 +559 294 1 891035519 +59 1101 5 888205265 +94 670 3 891722249 +608 1172 5 880404636 +46 50 4 883616254 +118 98 5 875384979 +423 628 4 891395602 +437 254 3 881002300 +592 288 5 882607528 +226 191 4 883889229 +102 127 2 888801316 +330 739 5 876545368 +318 255 4 884494693 +344 275 4 884899397 +451 1026 1 879012773 +280 156 4 891700643 +254 151 2 886474396 +537 13 4 886029806 +328 127 5 885045645 +204 170 5 892513865 +506 33 3 874873703 +552 471 3 879222306 +437 566 3 881002161 +456 179 5 881372779 +5 70 4 875636389 +480 237 2 891207836 +508 151 5 883768886 +400 306 3 885676230 +16 208 5 877727054 +579 168 4 880952142 +555 1054 3 879964335 +378 692 4 880045580 +450 354 4 892141784 +145 563 3 877343280 +542 238 4 886532706 +285 346 4 890595456 +523 208 5 883702209 +378 517 3 880056384 +405 586 4 885548136 +291 325 4 874805610 +474 283 3 887915437 +399 264 3 882340517 +514 1035 3 875463595 +523 269 5 883699464 +391 480 4 877398991 +276 572 3 874795823 +552 742 4 879222103 +7 237 5 891351772 +344 88 3 884901403 +92 1208 4 875812741 +519 908 5 883250148 +447 470 4 878856208 +523 285 5 883701962 +535 4 3 879618777 +378 1009 3 880318415 +200 568 5 884128372 +474 178 4 887926105 +394 449 3 881132958 +417 1183 4 879648676 +378 635 2 880333802 +409 877 2 881105366 +20 357 1 879669244 +161 473 1 891172358 +449 473 3 879958866 +407 483 4 875042642 +315 183 3 879821267 +201 181 2 884112245 +7 213 3 891351686 +354 1511 4 891216575 +472 567 4 875982922 +601 1073 2 876350230 +226 97 3 883889355 +293 248 3 888904985 +405 200 2 885548330 +316 187 2 880853548 +402 476 3 876266985 +457 234 5 882548426 +320 17 5 884751190 +472 477 5 875978387 +416 564 4 892440782 +429 218 3 882387350 +343 200 2 876404539 +237 180 4 879376730 +538 56 4 877107408 +577 218 3 880475269 +201 667 2 884114682 +33 348 4 891964404 +314 66 5 877887763 +554 542 3 876369995 +456 959 4 881375127 +244 468 1 880606947 +541 143 4 883874645 +555 546 3 879962551 +500 699 3 883875523 +379 622 5 880525839 +450 54 4 887138820 +13 441 1 882396984 +537 285 4 886029806 +256 147 4 882152540 +60 629 3 883327175 +215 228 5 891436543 +243 732 4 879988557 +21 874 2 874951005 +501 129 4 883348036 +292 98 5 881103758 +479 266 3 879459791 +601 181 5 876347039 +321 513 4 879440294 +385 851 5 880870205 +456 194 3 881373472 +83 477 2 887665798 +387 23 2 886479528 +425 178 3 878737841 +485 321 3 891041275 +607 487 4 883879213 +429 283 3 882385136 +29 79 4 882821989 +551 241 4 892783057 +432 100 3 889415895 +354 650 3 891217693 +384 333 4 891273509 +76 628 2 882606768 +569 151 5 879793948 +89 880 5 879461219 +214 156 5 892668172 +524 210 3 884635287 +407 993 4 884203128 +533 462 2 879190926 +560 478 4 879975752 +318 85 3 884497180 +484 143 4 891195746 +606 418 5 880923745 +449 1372 4 880410834 +588 432 4 890027113 +404 22 5 883790911 +397 171 5 882839540 +395 273 2 886481149 +580 148 4 884125773 +548 298 4 891043882 +123 289 1 879809220 +144 316 5 888103666 +13 914 2 892870589 +514 42 5 875318331 +99 405 4 885678813 +329 7 3 891655961 +586 187 4 884058566 +592 1134 5 882608234 +561 65 3 885808673 +495 88 4 888635380 +213 127 5 878870790 +498 59 4 881961312 +406 381 3 879793261 +160 185 5 876861185 +85 664 4 879829562 +524 172 3 884634849 +265 688 2 875320084 +495 84 3 888633011 +311 72 4 884365686 +487 367 3 883530674 +524 289 4 884321591 +201 665 2 884114770 +70 450 1 884064269 +130 449 4 878537516 +493 687 1 884130055 +479 195 4 879460939 +354 1119 4 891307114 +601 834 1 876348381 +136 275 4 882693723 +383 315 5 891192158 +494 9 2 879541404 +218 1073 5 881288265 +62 290 3 879373007 +303 470 4 879468375 +230 280 4 880485254 +248 69 1 884534695 +466 898 1 890283667 +404 754 3 883790218 +589 288 5 883352536 +272 183 4 879454726 +336 88 2 877757910 +233 194 4 877663913 +525 276 5 881086468 +455 265 4 879112152 +533 25 4 884096575 +6 516 4 883602664 +479 257 4 879459955 +453 509 4 877553850 +577 110 4 880475581 +470 813 3 879178370 +120 237 3 889490172 +428 329 3 892572335 +154 651 4 879138783 +437 70 3 881002161 +92 823 4 875654846 +506 792 2 874876598 +452 187 3 875265265 +299 209 3 889503013 +603 173 4 891956877 +151 211 5 879528588 +444 271 3 891979403 +221 763 4 875244232 +532 302 5 875441085 +352 17 2 884289728 +482 311 4 887643340 +313 820 2 891030228 +6 13 2 883599400 +392 248 4 891038205 +311 294 4 884364047 +155 332 2 879371121 +293 357 4 888905760 +568 1050 4 877907835 +392 173 4 891039050 +455 4 3 879111786 +293 483 5 888905481 +585 113 3 891283681 +436 287 4 887770169 +589 340 1 883352494 +276 239 4 874791194 +608 490 4 880405824 +338 650 5 879438275 +194 402 3 879524008 +327 100 4 887744513 +405 1078 1 885549004 +484 252 3 880270616 +453 367 2 888202813 +381 693 4 892697280 +577 1291 3 880471954 +605 527 4 879424429 +257 166 4 880496522 +399 928 2 882341586 +237 659 4 879376553 +283 820 4 879297904 +497 809 3 879362609 +551 991 2 892775935 +361 237 4 879440740 +147 319 4 885593812 +303 423 4 879483535 +130 5 4 876251650 +403 1047 2 879786381 +532 117 5 893119335 +293 356 3 888907955 +495 50 5 888632134 +474 615 4 887924619 +201 514 3 884112747 +486 696 3 879875041 +116 328 3 876452186 +119 823 3 874775406 +109 55 2 880572756 +472 924 2 875978994 +561 1074 3 885810813 +507 302 5 889963959 +326 609 3 879875930 +62 170 3 879373848 +592 1009 3 882608662 +104 273 3 888465972 +195 678 3 883295570 +479 535 3 887064690 +460 293 4 882911603 +526 754 2 885681886 +548 323 4 891043547 +518 1079 1 876824266 +216 403 3 880244446 +314 294 5 877885887 +528 82 4 886101632 +379 729 4 880961621 +194 183 3 879520916 +303 535 1 879544681 +312 165 5 891698726 +588 227 3 890028385 +603 11 5 891956927 +317 355 4 891446783 +13 494 4 881515295 +347 99 3 881654591 +303 413 2 879543524 +185 9 4 883524396 +405 364 1 885547766 +1 268 5 875692927 +168 685 3 884287759 +254 21 3 886474518 +537 60 3 886031297 +175 508 1 877107712 +370 923 4 879435074 +567 318 2 882425901 +422 742 2 875130204 +121 937 4 891389924 +579 89 3 880952102 +327 23 4 887745463 +207 684 3 875509307 +481 367 3 885829153 +116 655 4 886309958 +151 512 5 879524712 +373 181 5 877099178 +537 772 3 886031297 +214 249 3 891543256 +554 67 3 876369932 +361 258 3 879440286 +484 625 4 891195825 +360 100 5 880354379 +542 288 2 886532149 +470 137 3 879178406 +405 391 1 885548137 +199 7 4 883782854 +350 136 5 882347699 +279 554 1 875314231 +606 15 5 878143729 +553 199 4 879949153 +459 15 4 879563102 +7 590 2 891354730 +449 1404 5 880410801 +410 258 2 888626538 +585 463 5 891284816 +87 510 5 879875818 +589 289 3 883352679 +437 778 3 881002092 +280 313 3 891699839 +374 832 1 882157930 +35 328 3 875459046 +495 282 5 888637768 +13 833 2 882397974 +262 125 3 879961882 +304 278 4 884968415 +115 98 3 881171409 +128 25 3 879968185 +440 171 5 891577871 +478 41 3 889396330 +581 919 5 879643155 +437 95 4 880143315 +514 58 4 875462689 +547 311 2 891282699 +442 226 3 883390416 +95 1221 4 880572448 +378 300 4 889665232 +569 248 4 879793741 +442 810 2 883390674 +429 143 3 882385829 +588 71 4 890024195 +303 100 5 879466420 +514 170 3 875462764 +545 68 4 879899266 +561 1120 4 885807318 +74 7 4 888333458 +496 7 4 876064168 +350 258 3 882347465 +167 1225 3 892738277 +468 357 5 875294549 +554 82 4 876550257 +376 707 4 879434750 +519 299 5 884545961 +59 147 5 888203270 +600 1228 2 888452490 +592 408 5 882607955 +376 11 4 879454598 +484 135 4 891194820 +437 651 4 881002345 +457 507 4 882397059 +3 303 3 889236983 +269 151 5 891450489 +429 274 3 882386096 +43 686 3 883955884 +529 984 4 882535353 +535 603 4 879617613 +593 210 2 875673181 +59 650 5 888205534 +417 999 3 880952434 +539 367 3 879787801 +405 376 5 885547690 +325 114 5 891478307 +286 535 5 875806918 +1 34 2 878542869 +164 326 3 889401362 +455 447 4 879111153 +527 709 5 879455961 +537 937 3 886029488 +62 53 2 879376270 +313 739 3 891031747 +561 318 3 885807345 +27 118 3 891543222 +13 706 1 882396869 +270 583 5 876956038 +504 623 3 887910433 +406 452 2 879793011 +270 739 4 876955729 +193 1168 4 890860234 +94 132 4 891720862 +374 696 3 880394233 +204 318 5 892513819 +601 419 4 876351263 +292 528 5 881105657 +435 164 2 884132515 +606 241 3 880926246 +566 651 4 881650242 +235 175 4 889654971 +164 934 5 889402547 +121 582 2 891390034 +468 428 4 875291403 +437 1161 4 880141770 +493 115 4 884131665 +118 603 4 875384916 +280 126 3 891700643 +374 393 4 880395973 +524 474 4 884634578 +8 341 2 879361825 +587 347 3 892871223 +405 786 1 885547644 +68 275 5 876973969 +380 664 3 885479415 +297 55 4 875238922 +437 730 3 880141374 +509 687 1 883591489 +119 1166 5 887038711 +355 260 4 879485760 +249 1011 5 879640284 +553 265 5 879948508 +249 462 5 879572725 +537 352 1 886028544 +263 511 5 891299324 +536 163 5 882360080 +370 678 4 879435369 +372 79 5 876869667 +470 285 3 879178619 +28 760 3 882826399 +184 182 4 889908497 +158 181 3 880132383 +505 265 4 889333598 +152 1053 5 882475618 +382 507 4 875946809 +432 121 4 889416312 +345 747 3 884993139 +447 89 5 878855723 +454 195 4 888266810 +138 56 5 879024232 +363 590 3 891500527 +385 50 1 879440127 +522 79 3 876960824 +100 310 3 891375522 +383 517 5 891192748 +437 47 4 880140534 +109 628 2 880564640 +488 203 4 891295023 +593 5 4 875671525 +588 1047 3 890031141 +387 79 4 886483049 +58 269 4 884304267 +405 515 1 885546025 +181 1372 1 878962279 +606 186 5 880925290 +566 235 3 881650534 +416 1226 3 893013826 +69 50 5 882072748 +328 405 4 885047018 +222 642 3 878181421 +313 183 5 891013554 +608 1115 4 880406168 +119 537 5 886176618 +484 248 4 883973581 +434 347 1 886724329 +500 147 3 887720583 +551 1518 4 892785363 +358 324 4 891269077 +13 879 2 881515697 +548 649 4 891044538 +59 220 2 888203175 +198 55 3 884207525 +234 497 4 892334481 +497 452 2 879362202 +521 743 1 886061689 +136 303 4 882693234 +320 257 4 884749499 +595 1067 4 886922069 +385 208 3 879442360 +592 455 4 882608402 +361 98 5 879441215 +90 488 5 891384065 +453 318 4 877553761 +450 558 3 882396050 +334 1525 4 893074672 +21 925 2 874951447 +498 61 4 881957431 +312 166 5 891698391 +249 405 3 879640284 +568 475 4 877907782 +435 826 2 884134713 +96 486 3 884403392 +508 180 5 883767565 +588 144 3 890024564 +87 204 5 879876447 +566 7 4 881649747 +176 222 5 886048145 +18 95 4 880131297 +297 213 3 875240171 +181 104 1 878962866 +497 679 3 879310850 +523 289 4 883699869 +454 277 2 881959960 +561 42 3 885809025 +573 211 5 885843964 +514 210 5 876067462 +354 93 4 891216805 +395 343 5 883762614 +422 760 3 879744287 +533 286 4 879193088 +504 257 5 887831753 +607 529 4 883880027 +488 222 4 891376029 +381 1119 4 892696252 +462 321 5 886365734 +560 25 3 879976706 +77 175 4 884733655 +588 40 4 890026154 +429 365 2 882386237 +197 2 3 891409981 +608 661 3 880405927 +144 647 4 888105338 +454 419 4 881959917 +62 196 4 879374015 +201 483 3 884111546 +217 779 1 889070266 +221 273 5 875244183 +60 185 4 883326682 +543 194 3 874864870 +201 699 3 884140610 +498 525 4 881961547 +193 905 4 889123458 +498 1286 3 881956576 +184 1117 2 889907771 +507 405 5 889966127 +605 531 4 879424583 +321 654 4 879439927 +325 115 3 891478557 +194 655 5 879520813 +601 699 3 876350812 +503 156 1 880472250 +344 844 1 886381985 +72 476 4 880036048 +554 9 4 876231468 +552 864 3 879221876 +537 1009 2 886030254 +181 93 1 878962773 +445 174 4 891200869 +198 216 4 884208490 +393 186 3 887746734 +49 403 3 888069636 +269 111 1 891446703 +60 528 4 883326086 +248 50 5 884535013 +610 315 4 888702764 +327 117 3 887820385 +297 268 4 881707737 +293 294 2 888904410 +284 750 3 885328906 +393 821 3 889554756 +416 199 5 893214225 +75 1059 1 884050760 +399 50 3 882343040 +59 44 4 888206048 +21 984 1 874951040 +455 58 3 879111318 +230 447 1 880485513 +455 1136 3 879111705 +332 405 4 887938503 +144 1101 4 888105312 +450 241 4 882376658 +501 117 4 883347975 +276 1028 3 874787044 +488 523 3 891293699 +194 720 2 879553883 +566 755 2 881651561 +343 334 5 876402468 +399 1178 3 882350341 +417 815 4 879646741 +607 107 4 883879756 +488 8 3 891295067 +293 198 4 888906143 +321 657 4 879440660 +222 559 3 878184291 +611 300 5 891636244 +588 783 4 890027297 +270 244 3 876954004 +363 698 2 891495987 +545 231 4 879899472 +493 176 5 884132197 +7 80 4 891354381 +130 403 5 876251922 +364 261 2 875931432 +141 147 4 884584906 +405 132 5 885544698 +119 132 5 874782228 +222 1074 3 881060504 +528 50 5 886101695 +281 294 3 881200643 +218 183 5 881288265 +504 1110 2 887911583 +502 333 4 883701866 +253 125 3 891628033 +49 98 4 888067307 +543 53 3 877547190 +455 939 4 879111454 +594 744 3 874783298 +488 22 4 891294108 +7 51 2 891352984 +566 77 4 881651183 +416 203 3 886316596 +551 193 5 892777363 +421 96 4 892241343 +270 164 5 876956137 +23 161 2 874787017 +313 720 2 891028472 +556 132 5 882136396 +222 392 4 881059920 +342 478 3 875319967 +346 325 1 886273717 +243 694 4 879988262 +469 495 5 879525237 +506 250 2 880198224 +617 637 3 883789507 +388 569 5 886441248 +352 228 3 884289729 +440 582 3 891577919 +104 456 3 888465853 +6 310 2 883268353 +82 820 3 878768902 +445 310 1 891199331 +483 275 4 878951388 +483 12 2 878953999 +23 472 2 874784972 +293 1311 3 888907603 +297 288 3 874955131 +526 886 3 885682077 +417 472 2 879646369 +518 151 3 876823018 +553 89 5 879948386 +330 126 5 876544480 +521 1022 4 884475591 +58 474 4 884305087 +374 1051 4 880394138 +416 121 5 893213645 +506 611 5 874874525 +37 546 3 880915565 +532 404 5 893119336 +533 568 5 879438849 +13 193 5 882139937 +273 340 3 891292761 +484 451 4 891195127 +455 1 4 878585685 +144 135 5 888105364 +90 684 3 891385335 +330 866 5 876544998 +221 96 5 875245672 +500 517 4 883873839 +606 147 5 880922503 +238 286 5 883575683 +110 873 2 886987505 +18 157 3 880131849 +543 129 4 874862036 +332 470 5 887939157 +72 2 3 880037376 +234 321 2 891033393 +269 162 3 891448141 +503 248 4 884638469 +382 50 1 875945451 +405 1249 1 885547408 +476 186 5 883365019 +460 221 4 882912285 +269 660 1 891448220 +592 1187 4 882608358 +593 655 3 886193724 +559 435 2 891035781 +161 483 3 891171214 +506 193 4 874873944 +490 273 1 875427629 +188 281 3 875074772 +51 203 4 883498685 +592 201 5 882955794 +437 582 5 880140855 +293 233 2 888907266 +254 417 3 886473408 +567 606 4 882425630 +537 231 3 886032246 +393 951 3 889728531 +515 271 4 887658844 +222 28 5 878182370 +535 172 3 879617747 +504 38 4 887840134 +583 209 4 879384404 +542 63 3 886533090 +449 118 1 879959573 +518 595 3 876824266 +234 268 2 891033261 +557 343 4 881095995 +233 623 3 876374602 +545 680 2 879898486 +118 413 4 875385306 +565 640 4 891037837 +531 332 4 887048813 +582 750 5 882960418 +20 151 3 879668555 +299 1223 3 878191779 +405 562 1 885548137 +188 177 4 875073329 +417 669 2 880953014 +184 121 2 889908026 +608 150 3 880406299 +459 473 4 879563102 +376 268 3 879432976 +296 251 5 884196523 +527 22 5 879456132 +312 505 5 891698987 +551 755 4 892784008 +428 305 3 885944136 +36 873 3 882157386 +594 222 4 874783052 +437 736 5 881001888 +551 127 5 892776420 +405 215 5 885545263 +82 230 2 878769815 +507 310 4 889964162 +618 204 3 891307098 +207 712 4 877847025 +68 121 1 876974176 +353 332 5 891402757 +325 269 4 891477567 +532 266 4 875441640 +393 578 4 889728413 +521 250 3 884476020 +346 549 4 874950966 +11 719 3 891905279 +421 185 4 892241422 +586 1407 3 884063080 +537 201 3 886031831 +562 720 4 879196483 +394 1 4 880886855 +614 126 4 879464183 +52 762 3 882922806 +178 535 3 882824671 +381 95 4 892696534 +331 286 4 877196089 +429 679 4 882387653 +276 1170 4 877934392 +151 50 5 879525034 +493 150 5 884130495 +327 527 4 887745319 +151 499 5 879524585 +213 284 5 878955164 +63 828 1 875747936 +313 153 3 891015268 +504 499 4 887909595 +349 325 3 879465326 +577 380 3 880474991 +499 177 3 885599660 +416 50 5 893212730 +595 1134 5 886921392 +85 485 5 879454400 +586 174 4 884058898 +609 538 1 886895795 +378 161 4 880056034 +274 877 3 878944543 +263 1020 3 891298337 +389 181 4 879915806 +90 464 5 891385039 +497 1092 3 879363233 +264 88 3 886123728 +455 170 3 879111616 +110 2 3 886988536 +600 227 4 888451977 +618 100 4 891308063 +164 342 2 889401691 +532 750 5 884594358 +493 1126 2 884131517 +336 288 3 877760521 +334 324 4 891628832 +615 735 3 879448823 +193 199 5 889125535 +606 473 4 878149415 +550 254 1 883426119 +181 126 2 878962585 +328 180 4 885046134 +344 14 5 884814532 +457 186 5 882397575 +399 63 3 882348615 +610 11 4 888703432 +618 781 3 891309382 +239 489 5 889178833 +373 756 3 877106900 +592 184 5 882956419 +597 300 5 875338983 +587 261 3 892871438 +468 257 4 875280417 +508 211 3 883777047 +615 517 5 879449068 +303 56 5 879466547 +436 553 3 887769777 +339 521 4 891032737 +533 229 4 879191621 +250 153 2 878090066 +405 63 3 885547408 +95 71 5 880573288 +454 270 4 881958606 +411 732 4 892845634 +524 978 3 884628212 +26 222 3 891371369 +361 657 5 879441253 +437 151 5 881002374 +527 1333 3 879456104 +551 43 2 892784976 +600 554 4 888451977 +334 98 4 891545793 +283 393 4 879298295 +151 81 5 879524293 +566 727 4 881650850 +77 455 3 884732873 +403 748 5 879786406 +535 338 3 879617098 +518 546 4 876823447 +425 272 4 890346317 +577 443 4 880475269 +316 651 5 880854227 +158 252 3 880132893 +409 98 5 881107817 +618 185 5 891308260 +537 179 4 886031105 +246 219 5 884922801 +496 228 1 876065588 +599 282 5 880951657 +381 217 2 892696757 +455 288 2 879110767 +99 456 3 885679504 +314 202 5 877888610 +573 478 4 885844674 +59 393 2 888205714 +617 7 3 883789425 +568 525 3 877907720 +616 269 4 891224517 +608 65 5 880406469 +468 826 3 875284096 +399 338 1 882509709 +537 405 2 886030381 +95 539 4 884266022 +452 455 1 876297413 +95 586 2 881599672 +551 423 1 892782975 +44 871 3 883613005 +92 980 3 883433686 +198 161 3 884208454 +264 182 5 886122098 +603 172 5 891956139 +409 172 5 881107750 +227 1047 2 879035834 +618 367 3 891309319 +535 505 4 879618569 +489 264 4 891445721 +128 202 2 879968579 +615 170 4 879447895 +218 39 2 881288265 +470 847 3 879178568 +237 525 4 879376487 +593 172 4 886193379 +189 492 3 893265535 +437 1148 4 881001983 +178 1033 2 882824869 +374 642 1 880937920 +608 1153 3 880406623 +151 488 4 879524900 +23 185 4 874785756 +560 288 4 879975116 +566 196 4 881650405 +273 272 4 891292811 +416 498 4 876699287 +318 527 5 884496596 +374 1094 4 882158020 +566 485 3 881650242 +200 552 4 884130540 +454 191 4 888266724 +207 742 4 876018580 +200 756 3 876042493 +554 845 3 876231993 +254 204 4 886472434 +422 124 3 875129839 +163 269 3 891219977 +498 548 2 881957267 +57 546 4 883697482 +363 185 5 891495338 +524 712 4 884637147 +271 194 5 885848770 +536 49 3 882360753 +599 873 5 880951174 +589 995 1 883352562 +13 900 5 888279677 +164 742 5 889401981 +378 22 5 880045520 +583 265 4 879384522 +256 5 5 882164727 +145 816 5 877343156 +382 511 4 875946730 +551 692 4 892777092 +573 69 4 885844091 +277 111 4 879543487 +346 1025 3 886273570 +387 228 5 886484336 +280 751 3 891699925 +234 488 4 892078386 +365 100 5 891303901 +620 71 5 889988005 +280 1473 3 891700904 +591 191 5 891031116 +368 11 4 889783678 +524 192 4 884634877 +372 628 4 876869915 +506 86 3 874876551 +224 221 2 888103812 +13 565 1 882397040 +339 185 4 891032885 +334 288 3 891544209 +554 411 3 876231886 +221 566 3 875246308 +120 1 4 889490412 +593 1035 3 875671464 +618 93 3 891307019 +486 1134 3 879875040 +535 97 4 879618880 +614 287 3 879464456 +566 82 4 881650709 +3 329 4 889237455 +537 239 2 886031933 +196 382 4 881251843 +335 307 5 891566952 +589 327 3 883352535 +157 410 4 886890855 +21 443 4 874951761 +577 40 4 880475435 +586 928 3 884065665 +474 192 4 887924571 +487 462 2 883445859 +497 431 4 879310825 +537 606 3 886030938 +610 751 4 888702795 +487 402 4 883531507 +114 197 4 881260506 +508 506 5 883777430 +569 287 4 879795551 +197 11 1 891409893 +479 261 1 879533993 +456 325 3 881372687 +542 382 3 886532726 +506 342 3 888848304 +25 568 4 885852529 +399 64 3 882342313 +514 715 4 876067592 +499 1302 5 885598378 +330 31 5 876546812 +464 260 2 878354859 +393 926 4 887745200 +158 450 3 880134815 +484 665 4 891195602 +383 285 5 891193210 +292 492 4 881105318 +445 603 3 890988205 +323 619 3 878739519 +585 1512 5 891283000 +280 1112 4 891702324 +450 1402 2 882473230 +293 506 5 888906428 +253 81 4 891628614 +535 1166 4 879617779 +450 207 4 882374497 +523 794 4 883703144 +193 313 4 889122950 +385 492 2 879445531 +568 491 2 877907126 +94 160 4 891721942 +479 153 4 879462140 +145 934 1 875270394 +592 806 4 882956586 +611 350 4 891636399 +558 19 5 879436396 +347 97 4 881654101 +416 161 4 886316739 +178 313 5 884836422 +488 187 3 891293863 +435 831 2 884134677 +430 514 4 877226568 +551 944 2 892784320 +281 331 3 881200491 +115 847 4 881170844 +362 350 5 885019537 +373 175 3 877099352 +452 624 2 875560067 +201 458 4 884140428 +128 651 5 879966983 +399 977 3 882341607 +450 550 4 882473915 +3 317 2 889237482 +94 597 2 891723078 +600 2 3 888451908 +178 1314 3 882827134 +283 56 5 879298206 +363 559 3 891496927 +566 88 3 881650090 +87 80 4 879877241 +488 880 3 891293606 +588 260 2 890014930 +334 272 4 891544103 +60 602 4 883326958 +332 227 5 888360371 +416 375 1 886319930 +288 688 1 886373007 +72 405 3 880036346 +437 183 3 880140892 +35 258 2 875458941 +592 255 4 882608915 +200 1091 4 884129814 +385 1131 3 879445587 +145 1087 1 875271357 +497 1210 4 879362178 +444 313 4 890246940 +532 592 3 874791850 +504 97 4 887832760 +13 177 5 882397271 +363 226 1 891497015 +583 12 5 879384522 +190 685 3 891033725 +503 121 3 879438707 +114 485 3 881260409 +571 496 3 883354886 +559 4 4 891035876 +43 250 2 875975383 +472 218 4 875980120 +406 693 3 884630583 +486 284 2 879874784 +252 475 5 891456876 +195 877 3 887567629 +7 679 5 891353124 +325 190 4 891478432 +450 637 4 882395662 +291 123 4 874806006 +618 182 4 891307289 +286 336 5 884069544 +567 517 5 882426673 +385 238 5 879442085 +452 531 4 875263244 +4 329 5 892002352 +551 955 3 892783411 +64 190 4 889737851 +527 474 3 879455792 +530 483 3 883785248 +121 546 1 891390521 +301 82 5 882077078 +536 234 4 882360405 +553 485 3 879948695 +568 474 5 877907834 +425 357 5 878737981 +318 301 4 884470034 +357 24 4 878951457 +514 380 4 875462965 +463 112 1 890530721 +190 276 4 891033632 +618 28 4 891309887 +406 13 2 879539987 +537 558 4 886030584 +332 841 4 887938669 +388 266 5 886439918 +550 846 2 883426119 +503 498 5 880383588 +379 204 5 880525236 +2 294 1 888551648 +562 480 4 879195126 +608 9 4 880403765 +261 288 4 890454087 +580 358 4 884124472 +541 625 4 883874717 +619 245 4 885953743 +371 527 5 877487309 +425 1419 3 878738757 +130 452 4 880396495 +186 880 3 891718700 +429 833 3 882386895 +330 651 5 876547311 +498 649 3 881961745 +351 689 4 879481386 +328 155 4 885048198 +432 678 4 889416570 +452 654 2 875273543 +328 149 2 885048730 +484 151 4 881450017 +227 250 2 879035637 +278 288 5 891295230 +579 98 4 880951804 +272 604 4 879455113 +500 196 4 883874835 +417 674 2 879649560 +130 1079 3 876251217 +453 655 3 877553999 +520 678 2 885170330 +617 860 1 883789635 +206 300 1 888179565 +303 334 3 879466184 +125 191 5 879454385 +435 132 3 884131156 +509 258 4 883590526 +429 58 4 882385090 +239 150 5 889179131 +435 168 5 884131515 +457 411 3 882395894 +472 204 5 875980823 +393 476 3 887744688 +59 58 4 888204389 +500 235 5 883865567 +407 559 3 875553424 +537 210 3 886031912 +506 404 5 878044851 +554 742 3 876231546 +465 134 4 883530133 +56 323 3 892676028 +557 254 4 880485908 +210 423 5 887737338 +527 514 5 879455961 +1 144 4 875073180 +561 640 5 885809005 +461 121 2 885355890 +452 8 4 875266060 +474 221 4 888628044 +532 895 3 884594450 +536 724 4 882359988 +284 268 5 885329065 +268 506 4 875310625 +614 25 1 879464376 +13 442 1 890705056 +416 937 2 876696823 +592 847 5 882607986 +232 419 4 888550013 +13 845 3 882141503 +505 332 4 888631126 +580 300 3 884124103 +363 575 1 891498681 +217 210 4 889069709 +97 153 5 884239686 +1 271 2 887431672 +429 508 4 882385569 +451 337 2 879012857 +150 319 4 878746174 +116 20 3 892683858 +62 129 3 879372276 +452 168 4 888568251 +486 282 2 879875278 +378 575 3 880334409 +487 978 1 883445251 +326 232 2 879876941 +120 827 2 889490979 +210 99 4 887736937 +533 692 4 879191902 +486 762 4 879874939 +451 883 1 879012858 +403 685 4 879786662 +450 414 3 882396564 +613 258 5 891227365 +293 222 3 888904861 +537 136 4 886030583 +500 714 2 883874469 +327 546 2 887820448 +478 93 4 889387871 +339 427 5 891034778 +500 258 4 883864578 +543 770 4 874863803 +537 188 4 886030891 +268 1273 2 875745476 +538 97 5 877107086 +399 738 4 882350583 +373 748 4 877098042 +559 315 5 891033635 +622 2 4 882671363 +15 292 5 879455128 +621 404 3 874965496 +577 365 5 880475504 +435 455 3 884132208 +498 558 4 882205321 +276 739 2 874795538 +235 522 5 889655086 +174 147 4 886433936 +383 203 5 891193242 +303 170 5 879467574 +405 1569 1 885549505 +543 403 4 875663543 +222 326 4 877562819 +450 340 4 882216178 +151 504 4 879528868 +37 50 5 880915838 +601 623 1 876349897 +488 260 2 891293304 +263 194 5 891298107 +201 179 5 884114471 +423 313 4 891394595 +399 110 2 882343523 +535 357 2 879617531 +479 176 4 889125562 +216 423 4 881432467 +588 99 5 890023646 +534 456 5 877808300 +510 687 2 887667752 +23 155 3 874787059 +512 191 4 888579747 +222 620 3 877563873 +542 89 4 886532294 +538 196 4 877107408 +482 876 3 887644023 +515 322 3 887659073 +181 407 2 878963038 +24 919 3 875246185 +81 111 3 876534174 +22 546 3 878888107 +537 191 4 886030862 +6 186 4 883602730 +44 405 3 878346512 +315 175 5 879799423 +94 230 2 891723124 +189 166 4 893265657 +561 141 2 885809781 +241 346 3 887249482 +557 271 4 881179557 +575 173 5 878148258 +601 176 2 876348820 +85 378 4 879829642 +297 1 3 874954425 +621 567 3 874964991 +303 1511 3 879544843 +359 748 3 886453271 +85 496 4 879453781 +328 1478 3 885049275 +58 127 4 884304503 +448 340 4 891888137 +268 466 3 875310571 +457 122 2 882396158 +496 659 3 876065822 +274 280 1 878946162 +521 1059 1 884476821 +506 274 4 874862229 +345 50 5 884992367 +586 926 4 884067199 +13 688 1 883670819 +222 66 4 878183837 +619 117 5 885953778 +24 357 5 875323100 +48 479 4 879434723 +524 518 3 884635031 +393 722 2 889728736 +144 318 5 888105419 +343 631 4 876407175 +426 1079 3 879442892 +267 179 5 878972314 +474 121 4 887916260 +423 302 5 891394595 +476 890 1 883365989 +486 460 4 879875316 +486 7 5 879874753 +99 238 4 885680616 +442 684 3 883391221 +484 227 5 891195506 +276 31 4 874795704 +426 185 5 879445005 +416 763 5 893212623 +187 213 4 879465858 +428 344 3 892572308 +317 299 4 891446371 +119 348 3 886433226 +268 727 2 875310116 +137 385 5 881433719 +116 47 3 876454238 +297 474 4 875239125 +385 959 3 879446741 +345 736 3 884992897 +109 174 5 880572721 +514 239 5 876067462 +403 117 4 879786112 +59 595 3 888203658 +70 99 4 884067222 +551 25 1 892783366 +220 995 3 881197948 +244 772 4 880601937 +545 568 3 879899299 +498 151 4 881956140 +432 108 3 889416608 +5 437 1 878844423 +622 845 3 882590291 +431 358 2 877844489 +488 230 3 891375900 +380 382 3 885478759 +518 924 3 876822873 +6 512 4 883601155 +91 389 2 891439130 +425 338 1 890346781 +407 97 4 875116167 +457 56 4 882396868 +218 55 4 881288265 +465 175 5 883530054 +188 54 4 875074589 +94 142 3 891721749 +551 471 5 892783365 +276 771 2 874795795 +92 157 4 875653988 +429 265 4 882386096 +422 257 4 875129839 +378 227 3 880332857 +474 87 4 887925916 +181 1245 1 878962550 +532 329 4 886364769 +459 1016 4 879563506 +13 183 4 882397271 +303 78 2 879544238 +405 1568 1 885547222 +348 118 4 886523588 +524 191 4 884634707 +466 873 2 890283056 +445 28 4 890987772 +532 38 3 874789332 +130 427 5 875217033 +417 326 4 879649669 +540 125 3 882157011 +114 483 4 881260246 +334 328 3 891544311 +295 96 1 879517299 +450 506 5 882373088 +506 951 3 874875062 +592 157 5 882955918 +75 25 5 884049875 +308 419 4 887737194 +385 346 3 883791602 +497 578 4 879310965 +535 58 5 879618502 +109 451 5 880583192 +536 229 4 882361142 +130 470 2 875217096 +295 109 4 879517911 +181 1054 2 878963418 +221 695 4 875245776 +401 481 3 891033014 +606 1110 2 880927358 +602 304 4 888638022 +35 879 4 875459073 +346 54 4 874949217 +453 157 4 877561172 +450 313 5 882811655 +435 895 3 884130647 +393 271 3 887742179 +540 1 3 882157126 +487 781 3 884030528 +314 796 2 877891518 +615 1021 5 879448119 +205 268 2 888284618 +496 528 4 876065933 +615 886 2 879447692 +197 526 5 891409935 +442 17 4 883388535 +274 9 5 878945404 +82 866 3 878768840 +313 461 3 891014925 +608 69 4 880405702 +342 238 4 875319012 +343 581 4 876405820 +620 444 3 889987682 +35 937 4 875459237 +117 423 4 881012472 +551 273 4 892782865 +11 180 2 891904335 +271 79 4 885848672 +379 251 5 885063301 +476 790 4 883365274 +315 513 5 879821299 +378 485 4 880055921 +224 239 4 888104554 +70 554 3 884068277 +393 283 3 887744239 +534 290 4 877807845 +527 631 4 879456030 +497 405 3 879310621 +405 716 1 885547408 +201 672 2 884112673 +50 1010 5 877052329 +422 307 4 879743925 +318 404 3 884496639 +479 97 3 879461651 +423 754 4 891394832 +436 708 3 887770457 +566 207 5 881650502 +429 159 3 882386051 +472 946 2 875981122 +582 258 4 882960396 +585 863 5 891283000 +472 418 3 875980120 +299 647 4 878192804 +160 15 2 876768609 +291 121 2 874805984 +574 272 4 891278860 +76 358 2 878101114 +504 84 3 887840589 +541 222 4 883864848 +297 191 3 875238923 +401 357 4 891032896 +447 31 4 878856526 +56 386 3 892911494 +537 762 3 886030051 +334 237 4 891545067 +586 28 3 884066087 +573 480 4 885844481 +351 311 4 879481589 +450 1221 5 887660722 +17 286 3 885165619 +116 253 3 876452492 +312 1516 4 891698334 +208 371 5 883108842 +308 294 3 887736408 +399 80 3 882349068 +535 178 4 879618925 +308 1252 3 887741604 +110 288 4 886987145 +132 151 3 891278774 +537 402 1 886031752 +523 181 5 883700186 +6 191 4 883601088 +144 15 4 888104150 +318 269 5 884469970 +358 582 5 891269723 +524 215 2 884636735 +109 940 3 880583133 +551 719 1 892784898 +280 13 5 891700257 +339 1153 4 891035035 +435 732 4 884132341 +488 1025 2 891293263 +293 1298 3 888906045 +435 433 5 884131243 +450 283 3 887661961 +62 568 3 879375080 +185 205 3 883524320 +450 692 4 882373724 +417 963 4 879647431 +59 137 5 888203234 +537 421 2 886030863 +121 742 5 891390013 +551 1067 2 892785091 +401 69 3 891033417 +504 699 4 887838573 +487 411 3 883444793 +506 300 3 888178161 +597 1152 4 875339876 +336 70 5 877757910 +94 432 4 885873089 +312 519 5 891698726 +606 620 4 887059014 +622 797 2 882670862 +312 432 5 891699491 +200 472 4 884127890 +283 151 4 879297318 +499 1101 5 885599182 +297 1073 3 875238695 +619 39 2 885954083 +422 288 3 875129640 +399 825 2 882341586 +128 1221 3 879968279 +561 218 3 885810000 +604 444 2 883668175 +193 25 4 889127301 +59 288 5 888202787 +622 106 2 882591172 +269 602 4 891449346 +480 114 4 891208547 +524 24 3 884626906 +136 283 4 882693529 +26 109 3 891376987 +102 82 2 888801360 +374 1033 4 883628021 +446 286 3 879787730 +5 151 3 875635723 +151 1098 1 879528890 +617 396 1 883789590 +579 328 3 880951444 +178 153 4 882826347 +329 323 2 891655594 +490 298 3 875427532 +474 175 4 887925497 +450 80 3 882471737 +621 542 2 874965093 +215 218 3 891436607 +334 287 3 891545162 +615 87 4 879448780 +459 19 3 879563064 +500 43 3 883876859 +561 205 3 885807393 +380 425 4 885479163 +174 747 5 886513729 +52 126 5 882922589 +548 281 4 891044538 +286 761 4 877533640 +279 1059 4 891209332 +479 147 3 889125665 +64 520 5 889737851 +543 371 5 875665787 +592 125 2 882608795 +438 220 4 879868328 +379 511 4 880524811 +606 96 5 880925074 +95 144 5 879197329 +378 70 4 882642831 +561 346 5 885806862 +201 1045 2 884140788 +487 79 5 883446543 +231 1 3 879965704 +476 216 4 883364250 +518 696 5 876823266 +617 565 4 883789635 +304 328 3 884967167 +417 167 3 880952355 +255 834 4 883216358 +452 1403 1 875875272 +601 174 4 876348572 +130 328 4 874953525 +23 230 4 874785809 +110 294 3 886987540 +429 209 4 882384950 +593 234 2 875660850 +622 756 3 882591321 +152 632 4 882474734 +284 938 3 885329821 +593 196 5 875670939 +474 276 5 887915221 +255 559 4 883216748 +293 230 2 888907384 +540 249 3 882157687 +417 173 5 879647519 +349 458 4 879465933 +181 1150 1 878963305 +226 69 4 883889430 +591 382 4 891031500 +346 1231 3 875265106 +586 568 3 884061623 +90 531 4 891383204 +592 354 4 888553156 +385 1121 4 879443315 +97 663 5 884239791 +417 91 2 879647800 +607 86 4 883880079 +534 1199 5 877807780 +94 98 4 891721192 +512 527 5 888579645 +557 127 4 880485718 +259 154 5 876365003 +404 879 3 883790465 +255 121 2 883216902 +427 937 5 879701326 +498 933 3 881959018 +246 132 4 884921319 +521 206 5 884476637 +499 8 5 885599682 +336 859 2 877758103 +100 347 4 891375212 +561 661 4 885808715 +82 181 4 876311241 +417 15 5 879646166 +429 502 3 882385543 +618 96 3 891307749 +624 471 4 879792493 +389 185 5 879991434 +457 111 3 882393384 +72 98 5 880037417 +476 712 3 883364475 +385 305 4 879740222 +327 92 4 887748006 +447 150 4 878854438 +532 11 5 893119491 +568 165 4 877906935 +327 65 2 887747617 +567 257 3 882427250 +234 404 4 892333830 +85 476 3 879453018 +13 740 1 882140355 +234 111 3 892318060 +378 143 4 880046022 +72 25 5 880035588 +591 322 2 891031013 +596 123 2 883539767 +234 609 3 892335186 +121 357 5 891388063 +159 1013 4 880557170 +356 331 3 891405619 +334 906 5 891544177 +324 875 3 880575163 +128 168 4 879966685 +189 317 4 893265826 +608 276 2 880404975 +590 754 3 879438686 +303 195 4 879466937 +551 1087 1 892784437 +475 313 2 891451083 +496 77 2 876066531 +222 1087 1 878185102 +174 140 4 886515514 +387 320 4 886480325 +151 497 5 879524325 +442 67 3 883389028 +458 304 4 889323982 +209 14 3 883417547 +496 774 5 876066424 +455 197 5 879111057 +257 1129 5 879585415 +592 1008 4 882608357 +188 877 2 875071361 +612 926 2 875324789 +15 690 4 879455128 +532 195 5 892521554 +603 931 2 891956715 +268 941 2 875310463 +439 895 3 882892424 +57 1073 3 883698525 +184 644 4 889908947 +90 811 4 891384516 +476 343 4 883365634 +387 93 5 886480703 +592 347 4 885280098 +87 824 3 879877043 +439 147 4 882893737 +84 546 3 883452462 +417 384 4 879649284 +526 676 5 885682370 +442 672 3 883390048 +600 583 3 888451977 +566 117 4 881650886 +495 357 5 888633277 +234 64 4 892078983 +535 813 5 879618777 +485 326 2 891041705 +130 62 4 876252175 +367 324 5 876689418 +222 1178 2 878184392 +518 13 4 876823266 +498 484 4 881957546 +416 712 4 886318795 +567 919 4 882426105 +585 730 3 891285188 +399 1219 3 882348448 +327 856 4 887744167 +455 627 3 879111705 +486 181 4 879874482 +537 215 3 886031342 +32 9 3 883717747 +272 423 4 879454939 +437 387 2 880140726 +214 175 5 892668153 +603 157 1 891957031 +398 197 5 875660226 +128 729 2 879968447 +504 56 3 887832643 +380 1065 4 885478519 +542 411 4 886533275 +624 278 4 879793545 +561 393 2 885810309 +95 968 5 880571117 +82 523 5 878769373 +515 307 4 887659123 +234 646 3 892335500 +569 302 4 879792991 +506 183 5 874874308 +276 655 4 874791297 +314 216 3 877888722 +189 209 1 893265826 +457 357 5 882396735 +465 656 3 883531410 +60 327 4 883325508 +426 208 4 879442161 +597 242 4 875338983 +452 419 4 887719030 +544 286 4 884795135 +54 255 3 882153415 +456 955 4 881374162 +592 251 5 882607955 +605 601 5 879426339 +151 741 2 879524394 +303 443 4 879468459 +13 733 5 882399528 +178 744 3 882824028 +489 270 4 891448731 +433 268 3 880585162 +344 210 4 884814401 +336 763 3 877756890 +594 286 3 875917841 +537 330 2 886029488 +593 609 3 886194241 +588 143 5 890015684 +620 1043 4 889988340 +130 1231 4 878537778 +90 310 3 891382240 +11 237 4 891903005 +504 728 3 887908974 +210 72 3 891036310 +481 659 5 885829153 +17 294 4 885166209 +615 1192 4 879448715 +127 271 5 884364866 +543 516 4 876896210 +470 50 5 879178487 +136 475 4 882693339 +49 1067 3 888068842 +533 484 3 879190724 +325 548 3 891480086 +606 210 3 880924557 +586 176 3 884061623 +42 419 5 881107178 +416 762 3 876697524 +551 748 4 892775612 +429 188 4 882386566 +606 763 5 887060488 +2 310 4 888979061 +417 264 2 879649763 +595 289 4 886920602 +435 717 3 884134104 +468 662 4 875291570 +368 145 2 889783586 +373 209 4 877098437 +295 427 4 879517412 +87 323 3 879876256 +481 780 1 885829240 +483 20 2 878952993 +410 315 4 888627138 +405 383 1 885547605 +387 659 4 886480325 +489 266 5 891446232 +500 988 3 883864840 +471 501 3 889828027 +279 1215 2 884556545 +279 1025 2 880825843 +425 305 3 890346411 +606 124 3 878143246 +224 1152 3 888104313 +457 372 4 882548382 +558 847 4 879436396 +562 418 5 879195738 +560 1 4 879976449 +601 257 2 876347224 +401 684 4 891033651 +60 650 4 883327201 +593 245 3 888872154 +561 537 4 885808866 +480 127 3 891207715 +579 655 3 880952201 +456 1328 4 881372328 +394 665 2 881130009 +554 951 3 876369840 +411 50 5 892845604 +394 780 2 881059180 +592 318 5 882955863 +429 117 4 882387757 +546 860 4 885141439 +236 318 5 890116539 +405 388 4 885547558 +537 721 2 886031752 +200 43 3 884129814 +481 505 5 885828574 +476 1118 3 883364392 +593 402 4 875672970 +493 127 3 884130416 +456 95 4 881373756 +91 483 4 891439208 +279 802 4 875313600 +311 173 5 884364569 +430 222 4 877225682 +620 930 2 889987875 +488 172 3 891293863 +569 676 4 879793847 +534 150 3 877807873 +616 300 4 891224644 +70 204 3 884066399 +592 1377 3 882607872 +363 1073 4 891496337 +298 603 5 884125093 +344 216 4 884901156 +293 49 3 888907312 +537 1019 1 886031606 +164 298 3 889401835 +104 3 3 888465739 +217 568 4 889069782 +504 723 4 887910896 +279 869 1 892176473 +290 318 4 880473776 +452 636 5 885816916 +188 121 4 875073647 +551 2 2 892784780 +280 66 5 891701148 +207 1225 3 875508817 +542 319 3 886532950 +42 283 3 881110483 +437 288 2 880139533 +201 42 4 884113713 +619 809 1 885954238 +489 883 2 891448811 +365 340 5 891303536 +200 423 5 884129275 +450 66 4 882398770 +489 1025 5 891366652 +493 275 1 884131357 +169 480 4 891359137 +592 187 5 882956157 +437 83 4 880140325 +430 56 4 877226323 +303 264 3 879466214 +590 150 5 879438878 +627 26 3 879530824 +235 692 4 889655595 +17 323 1 885166256 +293 1016 2 888905086 +399 622 4 882343605 +334 58 4 891546914 +518 118 5 876823804 +536 189 5 882360143 +483 107 3 878951717 +472 378 4 875981759 +202 318 1 879727116 +275 420 2 875154535 +496 378 1 876066794 +346 642 3 874949952 +60 205 4 883326426 +558 14 4 879436097 +13 732 5 882141617 +577 845 4 880471578 +436 581 4 887772060 +278 538 4 891295164 +197 322 3 891409475 +200 141 4 884129346 +524 1456 3 884635031 +621 833 3 880738462 +554 432 4 876550491 +83 4 2 880336655 +384 751 4 891274091 +244 50 5 880604379 +286 312 4 884069415 +163 879 2 891219643 +13 427 5 882398814 +537 194 3 886030891 +498 203 5 881961547 +588 258 4 890014591 +577 932 3 880471287 +350 50 5 882345502 +220 289 4 881198113 +585 1266 3 891286059 +559 191 5 891034139 +582 826 3 882962652 +216 789 5 880233957 +540 591 3 882157036 +441 259 3 891035211 +279 1206 5 884986688 +405 1399 1 885549942 +592 147 4 882608357 +194 1411 1 879554331 +508 176 4 883767565 +483 432 3 884047278 +533 528 4 879438999 +234 524 3 892079910 +527 87 3 879456132 +271 527 5 885848736 +399 423 3 882344052 +19 210 3 885412840 +417 96 3 879646915 +533 276 1 889451077 +393 826 3 889731729 +82 121 4 876311387 +144 1197 4 888104322 +536 561 3 882364065 +301 51 4 882078928 +221 282 4 875244558 +373 1133 3 877112076 +475 259 5 891628024 +56 67 2 892677114 +21 988 1 874951005 +623 50 5 891035112 +453 357 5 877554174 +628 270 5 880776981 +92 4 4 875654222 +421 4 3 892241624 +497 724 5 879310445 +523 9 4 883700564 +239 634 4 889180487 +561 92 3 885809897 +288 515 4 886373591 +567 1020 3 882425820 +577 727 5 880474747 +398 124 5 875717717 +551 550 5 892784130 +381 176 4 892696698 +321 432 5 879439812 +405 798 1 885546724 +465 603 4 883531284 +51 479 3 883498655 +288 216 4 886629592 +554 274 3 876232317 +623 275 5 891035112 +95 509 4 879197728 +621 263 1 883800011 +420 100 5 891357104 +617 294 1 883788511 +144 588 4 888105549 +601 276 4 876346890 +198 923 3 884207946 +391 646 4 877399066 +43 276 4 883954876 +435 228 4 884131157 +536 214 2 882360450 +580 329 3 884124191 +622 284 1 882590670 +537 172 3 886030707 +66 294 4 883601089 +354 1085 3 891219432 +435 12 5 884131434 +541 596 4 884645816 +291 369 3 874834388 +625 748 3 891262561 +145 312 3 885622510 +276 1056 4 874796201 +450 222 3 882395778 +532 545 2 874791976 +354 25 2 891216854 +489 301 3 891366805 +11 286 5 891901606 +431 327 3 877844559 +533 151 3 879192474 +465 22 3 883531246 +509 603 4 883591826 +315 523 4 879799390 +500 1226 4 883865715 +501 293 4 883347823 +130 436 3 875801573 +8 259 1 879361604 +347 176 3 881653866 +450 647 4 887136622 +347 655 5 881653973 +505 203 4 889334162 +207 284 3 877746137 +474 382 3 887927339 +450 192 4 882467868 +268 53 3 875744173 +499 539 1 885598827 +87 477 3 879876610 +447 157 4 878856290 +440 86 5 891577919 +508 219 1 883767628 +104 276 4 888465290 +579 111 4 880952142 +504 58 3 887837740 +291 416 4 875087100 +565 730 5 891037837 +62 387 2 879376115 +378 132 4 880046256 +178 783 4 886678484 +536 862 3 882360834 +18 125 3 880131004 +65 238 3 879218449 +533 193 4 879439379 +436 721 3 887770092 +374 95 4 882158577 +398 737 2 875811449 +486 13 4 879874811 +622 993 4 882590809 +500 325 3 883864862 +479 210 4 889125866 +23 79 4 874785957 +125 1115 3 879454345 +429 301 3 882387252 +463 288 1 889943851 +524 613 4 884637347 +535 591 4 879617977 +507 316 5 889964844 +346 333 4 886273342 +615 259 1 879447642 +532 1337 3 874790930 +463 257 4 889935910 +536 227 5 882361066 +342 1315 1 875318742 +497 1000 2 878759777 +425 1016 3 878739054 +433 340 3 880585162 +497 645 3 878759659 +280 367 5 891701002 +92 396 3 875654733 +87 728 4 879876768 +456 603 5 881373019 +449 9 4 879958624 +85 435 4 879828911 +59 581 5 888206015 +194 991 2 879520306 +589 678 4 883352735 +450 549 3 882377358 +474 1518 3 887927338 +152 487 5 882474587 +425 346 5 890346198 +460 303 3 882910553 +560 258 5 879975116 +614 117 3 879464352 +437 51 1 880382644 +516 902 5 891290565 +627 699 1 879530263 +344 124 5 884899346 +472 715 4 875982607 +449 1195 5 880410754 +311 794 4 884366270 +279 294 2 875249117 +409 213 4 881107750 +585 1524 3 891283124 +561 597 3 885810428 +541 181 5 884046910 +608 162 3 880406862 +343 90 4 876406677 +403 1012 1 879786190 +429 671 3 882385065 +196 285 5 881251753 +12 159 4 879959306 +592 425 5 882956467 +417 800 2 879649467 +575 483 3 878148137 +574 690 3 891279174 +532 831 2 874790629 +151 430 4 879528418 +417 825 4 879646463 +533 195 4 879439082 +553 151 5 879949181 +148 521 1 877398836 +445 1252 1 891199749 +332 234 5 888360342 +180 1046 2 877442125 +304 111 3 884968264 +425 201 3 878738104 +57 295 5 883698581 +608 419 4 880405702 +194 944 2 879551999 +548 258 4 891042474 +24 200 5 875323440 +487 226 3 883531085 +588 73 3 890026262 +532 121 4 888636374 +524 29 3 884637173 +56 523 4 892676970 +551 698 4 892782734 +479 179 1 879461142 +7 324 1 892135078 +297 249 3 874955210 +295 204 4 879517655 +395 181 5 883764336 +457 531 5 882392906 +305 686 3 886324330 +438 471 4 879868184 +232 166 4 888549815 +312 663 5 891699599 +233 432 3 877663383 +347 163 4 881654801 +600 1407 2 888453083 +259 97 4 874809292 +524 286 5 884287379 +344 89 5 884814479 +387 732 1 886484215 +402 455 3 876266886 +536 402 4 882361042 +394 364 3 881059544 +430 1007 3 877225599 +435 1128 2 884132027 +538 238 5 877110174 +249 257 3 879571715 +537 509 4 886031540 +2 309 1 888980029 +621 147 3 880738282 +501 475 5 883348080 +477 25 5 875940755 +195 740 3 890985743 +115 657 3 881171488 +553 492 3 879949042 +268 630 4 875542174 +234 517 3 892333919 +40 316 3 889041643 +194 87 4 879523104 +566 707 4 881650442 +233 234 4 877664010 +179 333 5 892151459 +229 288 4 891633028 +457 100 5 882393244 +459 100 1 879562859 +385 498 3 879441942 +393 79 4 887745973 +517 597 4 892660034 +566 772 4 881650467 +298 127 5 884125847 +153 258 5 881371336 +13 328 3 881514811 +487 748 4 883440540 +567 298 4 882426279 +254 554 3 886475952 +417 145 3 879648979 +308 928 4 887742103 +276 421 4 874795500 +215 195 5 891435655 +621 107 4 880737311 +451 288 5 879012470 +514 658 4 875463028 +428 347 4 885943782 +207 1028 3 877847025 +106 161 3 881452816 +629 284 4 880117719 +102 892 2 883278138 +524 277 3 884322379 +7 429 5 891351002 +472 234 4 875980081 +523 66 4 883702292 +280 1182 3 891702214 +437 770 3 881001208 +313 484 5 891016193 +583 268 5 879384094 +559 687 3 891035551 +286 476 4 876521993 +141 284 5 884585071 +331 682 5 877196820 +456 99 3 881374767 +184 79 3 889909551 +567 191 3 882427124 +60 265 5 883327591 +305 184 3 886323937 +405 1408 1 885549094 +569 117 3 879793847 +551 317 5 892777092 +608 489 5 880403765 +379 1 4 883156176 +497 187 5 879310825 +407 521 3 884201716 +429 250 2 882386357 +94 29 2 891723883 +385 191 2 879444597 +389 168 5 879991434 +193 895 1 889123777 +601 196 3 876349810 +455 1028 2 879110767 +328 117 4 885046420 +497 153 4 878759659 +537 875 1 886028544 +244 357 5 880605553 +486 879 3 879874297 +401 509 4 891033582 +495 496 5 888632888 +297 185 5 875239870 +56 946 4 892737210 +6 274 4 883602501 +493 95 5 884131287 +595 1059 4 886921344 +151 9 4 879524199 +177 1218 4 880131231 +69 265 4 882145400 +299 283 3 889417370 +82 834 1 884714618 +621 748 4 880226710 +59 1 2 888203053 +393 29 4 889729398 +521 144 3 884478171 +537 653 4 886030738 +379 271 3 886835602 +452 924 5 885816916 +350 479 5 882345789 +57 105 3 883698009 +506 175 5 874873327 +104 255 1 888465604 +52 285 5 882922227 +421 448 3 892241687 +457 8 5 882397734 +271 521 5 885848373 +54 328 4 880928957 +327 631 3 887747133 +469 483 5 879524177 +528 238 3 886101782 +367 563 4 876690077 +381 931 4 892697628 +465 87 4 883530054 +499 657 5 885599413 +429 387 4 882386051 +268 455 3 875742499 +533 282 4 888844577 +50 268 4 877051656 +591 740 4 891039974 +608 609 5 880406950 +79 93 2 891271676 +621 135 5 885596819 +85 345 4 884820077 +479 483 4 879460844 +537 749 2 886028544 +224 329 3 888082187 +346 250 3 886274255 +25 837 4 885852611 +59 746 5 888204642 +537 698 3 886031178 +380 521 2 885479397 +276 53 4 883822485 +539 153 5 879788533 +387 952 5 886484561 +189 162 3 893266230 +570 245 1 881262497 +553 474 5 879948609 +601 184 3 876350230 +450 136 5 882812349 +402 258 4 876266650 +627 179 5 879530536 +286 172 4 889651549 +553 177 4 879949180 +526 408 5 885682562 +537 275 4 886029806 +56 778 4 892678669 +385 1154 5 880870205 +601 496 4 876349302 +388 333 5 886439561 +555 249 4 879963127 +429 761 2 882386711 +487 128 5 883531333 +191 750 4 891560253 +416 696 3 876697524 +448 1602 4 891888042 +151 463 5 879525002 +308 679 4 887739426 +417 642 5 879647947 +479 100 3 879460028 +181 1338 1 878962240 +109 531 4 880578066 +585 212 5 891282894 +545 88 3 879901941 +589 259 5 883352631 +551 651 4 892776750 +318 1063 3 884495973 +562 501 5 879196653 +457 265 5 882397699 +580 1028 3 884125829 +145 342 4 882181205 +533 14 3 879192582 +450 610 4 882371904 +99 1 4 886518459 +436 1135 4 887771022 +423 546 2 891395684 +334 185 4 891545950 +588 423 3 890015649 +6 178 4 883600785 +59 649 4 888205660 +394 184 3 880889010 +483 109 5 882165734 +468 273 2 875280499 +318 739 5 884496984 +389 480 5 879991175 +110 1210 3 886989191 +487 620 3 883445168 +392 304 4 891037720 +290 265 4 880475371 +453 1017 3 887942122 +288 435 4 889225633 +610 483 5 888702859 +308 288 4 887736408 +385 675 5 879446952 +25 131 4 885852611 +301 43 5 882078994 +621 541 4 874964605 +319 689 3 881355802 +633 28 4 877212366 +518 273 5 876823804 +605 137 5 879425432 +496 133 5 876066567 +145 652 5 882181571 +186 203 5 879023529 +437 244 3 881001270 +38 405 5 892432205 +365 895 4 891303515 +514 357 4 875462901 +370 497 3 879434636 +104 405 3 888466028 +19 268 2 885412034 +411 181 5 892845605 +290 732 4 880473777 +11 86 4 891904551 +152 692 5 880149963 +70 568 3 884149722 +592 195 4 882955863 +453 210 4 877554587 +297 4 1 875240201 +181 818 1 878963380 +291 798 4 874871655 +382 1381 3 875945757 +553 481 3 879948806 +406 190 5 879793210 +506 234 5 874873111 +541 376 3 883866210 +378 409 2 880044642 +344 316 4 889814343 +608 97 3 880405659 +6 473 2 883600111 +506 58 4 874874985 +301 142 3 882078420 +31 328 2 881547746 +605 180 4 879424315 +627 1004 4 879531504 +452 510 4 875562475 +537 235 1 886030317 +516 50 5 891290565 +483 270 3 891917351 +595 825 2 886921606 +125 367 4 892836551 +267 31 4 878972119 +452 430 3 885817719 +608 265 3 880406470 +455 1197 4 879109565 +320 453 3 884751610 +500 729 4 883875303 +601 411 2 876348107 +276 393 4 874792094 +430 50 4 877225516 +503 435 3 880472125 +622 730 4 882669509 +472 588 3 875979797 +307 209 5 879283798 +389 1114 2 880614050 +565 170 5 891037291 +420 508 3 891357162 +85 301 4 886283002 +338 427 4 879438419 +537 613 3 886031831 +542 191 5 886532338 +536 501 3 882360834 +6 408 4 883599075 +541 196 4 883864928 +145 1215 2 888398400 +532 250 3 891910110 +145 572 5 888398747 +343 527 5 876404757 +442 273 4 883390328 +409 283 4 881109264 +327 79 3 887745661 +328 29 3 885048930 +618 2 2 891309091 +393 566 3 887745717 +433 507 4 880585730 +64 1140 1 889740676 +293 492 5 888906096 +489 988 3 891446982 +128 181 4 879966954 +592 264 2 882607528 +64 188 4 889739586 +21 145 1 874951761 +555 236 5 879962769 +561 1529 3 885809064 +590 864 1 879439567 +621 451 1 874963028 +526 919 3 885682400 +345 378 4 884993436 +178 506 3 882827084 +277 124 3 879543421 +276 658 4 874791194 +119 210 5 874781407 +543 735 4 874863269 +174 9 5 886439492 +548 31 5 891044481 +130 354 5 888211701 +454 693 2 888267315 +555 489 5 879975455 +276 1244 3 874836608 +354 489 4 891217851 +508 317 4 883767246 +26 1011 3 891371597 +506 538 3 880908452 +566 15 3 881650030 +605 582 4 879424661 +405 52 1 885546379 +292 844 5 881104481 +275 96 3 880314914 +615 289 2 879447670 +91 136 4 891438909 +529 321 4 882535353 +582 222 4 882961804 +125 520 5 892836309 +109 82 5 880572680 +327 202 4 887822400 +354 558 4 891217082 +625 739 3 891263665 +608 789 3 880405971 +449 269 5 879958444 +504 1030 3 887911314 +608 695 5 880405565 +244 82 3 880606667 +94 173 4 885872758 +297 151 3 875239975 +497 741 4 879361707 +618 237 4 891307343 +334 115 5 891545768 +432 24 1 889416188 +533 10 2 879192414 +87 89 4 879875818 +532 879 3 892519328 +450 35 2 882468790 +116 390 4 876454090 +350 515 5 882346756 +478 763 5 889388375 +592 197 5 882955863 +380 1113 4 885479730 +526 678 1 885682214 +493 50 5 884131553 +184 93 4 889907771 +177 288 5 880130467 +618 131 4 891307343 +621 554 4 874964657 +6 538 2 883268483 +614 100 5 879464119 +308 428 5 887739426 +181 1302 1 878962086 +622 755 4 882670211 +498 1070 3 881959103 +308 825 4 887740700 +92 780 3 875660494 +201 1069 2 884111312 +498 603 4 881955960 +514 257 4 880209981 +107 902 5 891264501 +163 300 3 891219977 +407 25 3 876339975 +28 176 5 881956445 +426 99 4 879444081 +249 480 5 879572210 +18 613 5 880129769 +378 796 2 880333626 +592 271 4 882607647 +517 275 5 892660728 +539 956 5 879788405 +461 255 2 885355890 +504 180 4 887837918 +506 796 3 874875062 +320 231 2 884749411 +599 471 4 880953441 +541 257 5 884046320 +44 211 4 878347598 +619 403 5 885954159 +479 282 5 879460049 +592 1025 1 882607745 +591 204 4 891031500 +632 188 4 879457857 +312 835 5 891712535 +250 181 4 878089393 +452 245 2 876216206 +593 65 3 875671674 +521 1012 3 884476049 +472 1036 4 875983484 +541 215 4 885595771 +291 85 2 874877699 +389 525 4 880165277 +268 204 3 875310311 +280 67 4 891701785 +380 712 2 885480585 +442 695 5 883387935 +378 703 4 890572396 +268 12 4 875310116 +450 507 5 882373020 +601 164 4 876350875 +335 748 2 891567098 +7 597 3 891353744 +588 25 4 890024677 +76 513 5 882606305 +221 469 3 875245481 +197 38 3 891410039 +314 99 4 877888391 +406 89 4 879446361 +320 368 3 884748946 +535 658 4 879618569 +350 214 3 882347465 +113 273 4 875935609 +463 116 5 877385381 +486 1272 3 879875154 +450 490 5 882373786 +182 181 5 885612967 +566 512 4 881650148 +385 200 3 879446110 +308 135 5 887737243 +207 33 2 877125422 +495 227 5 888636899 +256 657 5 882164727 +239 228 2 889180651 +553 1021 2 879949153 +577 12 4 880474257 +346 98 2 874948173 +600 38 3 888452491 +298 186 4 884183256 +504 579 4 887911391 +591 286 4 891030956 +184 283 5 889913687 +350 489 4 882347465 +520 25 4 885170476 +545 217 5 879899934 +378 807 3 880334199 +371 357 5 877487751 +622 479 4 882669668 +312 613 5 891698454 +605 284 2 880762139 +378 28 4 880045989 +600 526 4 888451750 +270 121 4 876954093 +158 55 4 880134407 +524 281 2 884323464 +579 408 3 880951740 +454 740 2 888266433 +174 1262 5 886434566 +365 235 2 891304278 +624 864 3 879793198 +474 73 3 887928793 +286 428 5 877532303 +222 508 3 877563326 +416 658 5 893214226 +65 88 4 879217942 +64 135 4 889737889 +410 340 2 888626506 +521 392 3 886063254 +568 6 3 877907235 +491 900 5 891189761 +537 92 3 886031678 +457 52 4 882398055 +279 922 3 890451433 +195 1193 4 888737346 +207 414 2 876078916 +23 432 4 884550048 +181 1340 1 878962240 +479 79 4 879460894 +441 683 2 891035350 +204 321 1 892388900 +463 544 4 877385415 +601 250 4 876346930 +551 447 5 892783711 +425 568 3 878738643 +532 470 5 892859148 +322 528 5 887314418 +416 7 4 876697205 +126 300 4 887854943 +605 15 5 879427151 +92 125 4 876175004 +453 742 3 888207161 +254 1 3 887347350 +498 121 2 881962699 +407 40 1 876338799 +620 268 4 889986452 +405 233 1 885547952 +478 412 4 889388249 +385 250 3 879440701 +312 1020 5 891698553 +557 872 5 881095916 +583 239 2 879384522 +73 153 3 888626007 +537 349 1 886028845 +104 534 2 888465554 +546 56 5 885141332 +533 1 4 879192521 +35 876 2 875458970 +623 523 4 891034756 +454 451 4 888267455 +294 100 4 877819265 +577 385 5 880474530 +500 930 3 883865929 +303 475 4 879467155 +538 240 2 877109422 +472 72 5 892791017 +622 12 5 882669468 +590 244 3 879439431 +151 381 5 879528754 +15 291 3 879456084 +535 204 5 879617856 +308 423 5 887736999 +170 687 3 884706063 +620 565 4 889987682 +551 384 1 892785223 +104 237 3 888465263 +458 473 4 886395022 +562 197 4 879196105 +109 88 4 880581942 +354 251 5 891216691 +316 172 1 880854197 +53 7 3 879442991 +256 1051 4 882150552 +1 119 5 876893098 +478 237 5 889388863 +250 751 2 883262694 +399 1480 3 882350899 +406 543 4 884631010 +560 281 3 879976828 +474 99 4 887927339 +303 762 4 879468179 +89 237 4 879441381 +455 405 3 879109764 +522 318 4 876961248 +618 496 4 891307619 +527 59 5 879455792 +585 707 5 891282894 +484 250 4 891194646 +271 659 3 885848827 +405 1224 1 885546487 +435 944 2 884133911 +586 403 4 884061807 +592 876 1 882607690 +305 202 3 886323684 +458 709 4 886396192 +56 176 5 892676377 +416 195 5 893214128 +621 181 5 874965408 +250 367 4 878090330 +363 572 2 891498469 +293 895 3 888904410 +617 132 1 883789006 +478 216 5 889396029 +608 193 4 880405824 +152 133 5 882474845 +581 847 3 879641787 +279 666 2 890451373 +1 26 3 875072442 +602 125 4 888638674 +615 644 4 879448599 +554 576 4 876549377 +543 202 4 874863734 +608 1113 3 880406862 +406 203 4 882480891 +527 19 3 879456611 +486 864 3 879875041 +342 873 3 874984068 +109 118 3 880571801 +234 429 4 892079434 +22 163 1 878886845 +336 284 4 877759833 +479 209 4 879460863 +478 357 5 889388724 +526 243 1 885682295 +257 381 5 880496690 +318 215 2 884496218 +504 98 5 887832433 +592 263 1 882607779 +466 455 3 890285113 +343 515 4 876402626 +496 532 5 876072633 +181 322 1 878961814 +572 1010 2 879449683 +493 754 3 884129868 +195 373 3 875158215 +301 1283 4 882075386 +385 1158 5 879443150 +145 1025 4 877343020 +391 546 3 877400037 +115 13 5 881171983 +454 107 3 888267087 +44 90 2 878348784 +457 425 4 882397828 +31 299 4 881547814 +535 630 2 879619144 +487 1446 3 883530814 +458 287 4 886394822 +303 960 4 879467361 +545 69 4 884133906 +528 194 5 886101956 +13 754 4 882140718 +441 1 5 891035468 +352 194 3 884290361 +379 674 3 880524614 +551 1207 1 892785300 +402 1101 4 876267234 +286 527 4 877531407 +406 64 4 879445430 +560 235 2 879976867 +311 1221 4 884364502 +405 1359 1 885549790 +450 510 4 887660722 +405 584 1 885548785 +338 213 5 879438250 +465 529 3 883529984 +510 881 2 887667838 +592 42 5 882955918 +568 286 3 877906547 +179 362 1 892151231 +60 641 5 883326086 +60 411 3 883327827 +406 945 3 884631010 +620 465 4 889988232 +460 253 3 882912316 +458 427 4 886396460 +416 88 3 886316140 +313 152 3 891016878 +416 29 2 886318228 +484 97 5 891194957 +141 286 4 884584247 +267 826 3 878971266 +592 411 2 882608457 +108 252 3 879879961 +478 469 3 889395879 +468 275 4 875280143 +396 1215 2 884646709 +478 28 3 889395655 +303 1215 1 879544435 +406 607 4 882480511 +495 147 5 888637768 +355 681 4 879485523 +221 186 4 875245641 +173 984 4 877556988 +573 205 3 885844674 +64 340 4 879365313 +600 435 5 888451750 +537 193 4 886031375 +328 729 4 885047737 +534 628 5 877807747 +399 26 2 882510126 +586 235 3 884066859 +380 750 4 885477859 +393 1055 4 889728895 +271 126 3 885848034 +506 81 1 874874000 +244 197 4 880605838 +414 258 5 884998953 +507 328 5 889964162 +291 1229 2 874868027 +267 206 5 878974783 +620 768 5 889988069 +456 228 3 881374548 +139 150 4 879538327 +551 808 3 892783791 +498 271 2 881962988 +508 528 5 883777430 +312 537 5 891698516 +500 381 4 883875585 +207 175 1 877845982 +459 333 3 879561574 +292 264 3 877628138 +393 1440 3 889731359 +42 66 4 881108280 +414 260 3 884999193 +332 895 5 887916385 +525 255 1 881086078 +399 156 3 882342537 +532 865 2 888630531 +534 471 5 877807935 +561 13 3 885810060 +6 427 4 883600707 +441 405 3 891035507 +561 436 4 885807843 +447 176 4 878856148 +85 1172 4 879453781 +342 789 3 875319412 +555 7 4 879962172 +632 288 3 879458977 +85 462 4 879454189 +633 1132 2 875325691 +538 215 5 877107536 +361 212 5 879440941 +148 222 4 877398901 +566 95 2 881649913 +465 257 4 883530818 +495 671 2 888634956 +18 708 3 880129595 +567 273 5 882427068 +62 159 3 879375762 +601 109 4 876346930 +631 272 4 888464916 +560 480 3 879975613 +78 813 2 879633745 +634 458 4 875729148 +299 23 4 878192154 +2 306 4 888550774 +181 409 2 878963276 +363 506 2 891496077 +429 780 3 882387685 +291 735 4 874868027 +522 133 3 876961314 +334 315 4 891550535 +303 552 2 879485048 +604 183 3 883668021 +249 806 5 879572167 +592 460 3 882608873 +537 357 4 886030707 +320 760 3 884748946 +565 855 5 891037628 +188 470 5 875073647 +140 286 5 879013617 +561 1069 4 885808053 +417 797 3 880952656 +299 25 3 877878227 +537 133 4 886030707 +532 259 3 884594498 +601 39 1 876350443 +537 610 4 886031912 +553 648 4 879948552 +378 365 2 880318158 +141 330 1 886447735 +445 276 3 891199869 +145 274 3 875270800 +233 203 3 880923202 +554 118 4 876550257 +322 157 5 887314244 +535 151 4 879618338 +494 15 5 879541475 +407 484 4 875042378 +606 95 4 880924188 +186 1336 3 879024346 +324 827 4 880575715 +618 273 4 891309293 +176 874 4 886047118 +64 194 5 889737710 +417 404 3 879647947 +412 172 5 879717449 +535 282 3 879618091 +634 476 3 875729668 +463 7 4 877385180 +99 595 4 885679504 +488 208 4 891294298 +381 432 5 892696587 +11 544 4 891903226 +308 148 3 887740788 +308 8 5 887736696 +617 53 1 883789537 +497 1047 3 879309836 +622 283 4 882590534 +585 166 4 891283338 +83 1060 3 880306926 +274 15 5 878945505 +551 1314 2 892783750 +230 693 2 880485594 +130 1028 4 876250805 +455 281 3 879110281 +536 385 4 882359085 +553 490 4 879949073 +585 190 4 891282808 +555 285 5 879963127 +474 489 4 887923972 +537 85 2 886032123 +181 242 1 878961814 +552 455 3 879221764 +624 50 5 879792581 +311 498 4 884364931 +618 778 3 891308515 +324 14 5 880575531 +486 887 5 879874218 +33 879 3 891964230 +454 357 3 881959844 +238 301 3 883575855 +81 591 5 876534124 +10 32 4 877886661 +621 364 3 874963446 +437 181 4 880140466 +627 281 3 879531504 +600 550 4 888452071 +48 527 4 879434654 +458 124 4 886394822 +336 765 4 877757516 +567 496 5 882426184 +617 98 2 883789080 +387 13 4 886480788 +422 334 4 877162682 +546 569 4 885141502 +615 179 4 879447968 +399 508 3 882509971 +518 866 5 876823540 +511 872 5 890004728 +351 328 4 879481550 +151 516 5 879542707 +422 93 4 875129882 +561 304 3 891710572 +39 269 4 891400188 +119 931 1 886178294 +216 42 5 880234469 +496 432 4 876066652 +464 748 4 878354681 +560 813 4 879976478 +625 172 4 891263057 +279 502 5 875310263 +596 258 3 883539011 +495 168 5 888632738 +290 1060 3 880732271 +552 249 3 879222368 +329 313 4 891655191 +184 596 4 889907812 +59 491 4 888206689 +524 180 4 884634579 +227 1011 4 879035834 +548 270 5 891044304 +214 603 4 891544089 +536 176 3 882359726 +595 1094 3 886921820 +586 186 2 884059287 +593 216 5 875671277 +566 705 4 881649871 +621 33 4 874962824 +249 294 3 879571557 +569 252 3 879795551 +450 164 4 882396050 +455 301 2 879110767 +141 248 3 884585039 +552 620 3 879222738 +201 750 3 884110598 +559 265 4 891033696 +606 197 3 880926862 +458 425 3 886398246 +474 1045 4 887927728 +592 303 5 882607325 +561 32 4 885807455 +288 1358 5 886892241 +545 388 3 880347984 +276 647 4 874790903 +597 988 1 875339237 +5 415 1 875636842 +385 719 2 879447136 +559 127 4 891033956 +407 123 3 876342671 +588 347 5 890014648 +437 463 5 880141008 +94 281 3 891722576 +439 285 5 882893220 +413 300 4 879968959 +577 623 5 880475149 +634 237 5 877018125 +496 246 4 876064198 +66 121 3 883601834 +455 39 2 879111345 +365 125 3 891304152 +422 458 3 875130173 +6 435 4 883601529 +271 198 4 885848616 +639 88 3 891239638 +624 346 3 885215462 +85 1006 3 882995833 +3 181 4 889237482 +416 36 2 878879809 +314 628 5 877886606 +109 233 4 880578502 +128 705 3 879968096 +618 697 3 891308063 +325 319 3 891477638 +224 925 3 888104281 +634 273 3 875729069 +64 210 3 889737654 +538 127 5 877107231 +23 91 4 884550049 +542 1098 4 886532818 +551 79 5 892776824 +585 45 5 891282808 +456 490 4 881373084 +13 91 2 882398724 +437 234 4 880142851 +297 174 5 875410071 +524 530 4 884634785 +535 11 4 879618849 +627 210 3 879531248 +110 313 5 886987183 +399 386 3 882349353 +246 1228 1 884923971 +479 732 4 879461120 +603 100 4 891956776 +151 523 5 879524173 +588 1039 4 890024611 +279 1132 1 892864828 +123 276 4 879873830 +606 11 5 880923579 +292 1 4 881104147 +318 318 5 884496218 +95 515 5 879197329 +56 154 2 892911144 +542 58 4 886532571 +305 751 3 886307971 +181 275 3 878962720 +515 310 3 887658975 +385 945 5 879441313 +492 923 5 879969878 +394 763 3 881058929 +246 633 3 884920997 +315 154 5 879821158 +567 611 4 882425998 +588 15 5 890015608 +430 515 4 877225660 +514 69 4 875309276 +590 276 4 879439645 +114 357 4 881259525 +177 292 3 880130415 +352 302 4 884289619 +106 712 3 881452599 +537 22 2 886030767 +90 273 3 891385040 +301 465 4 882077811 +553 99 5 879948508 +457 155 4 882550065 +52 258 5 882922065 +128 1192 2 879967576 +528 174 5 886101821 +23 145 3 874786244 +534 1059 4 877807692 +577 561 4 880474955 +276 252 3 874787006 +417 1228 2 879649304 +133 300 3 890588577 +478 255 4 889398363 +176 321 4 886047176 +543 664 4 874863336 +298 435 5 884182573 +536 699 3 882360209 +230 239 4 880484320 +588 623 3 890026939 +98 428 5 880498834 +72 97 4 880036638 +85 516 4 879454272 +478 137 4 889398260 +87 235 3 879877208 +307 631 3 879283544 +532 1426 3 874791506 +405 195 5 885544881 +313 186 3 891017011 +585 116 3 891284393 +533 603 4 879190670 +312 491 5 891699702 +361 421 3 879440974 +406 624 5 879793112 +536 648 3 882359678 +561 382 4 885807842 +490 258 2 875427021 +497 746 5 878759777 +624 271 3 879791884 +595 928 3 886921820 +442 161 3 883390497 +554 86 4 876369678 +541 769 1 884046888 +537 171 3 886030967 +59 87 4 888205228 +102 260 2 883277645 +548 991 1 891044050 +599 1152 4 880951623 +630 294 4 885666018 +586 226 4 884061806 +303 502 4 879484421 +545 444 3 879899978 +452 482 5 885544110 +269 647 4 891447815 +412 276 5 879717572 +345 955 4 884993932 +416 660 5 893213404 +639 242 4 891238514 +174 15 5 886434065 +298 951 4 884183130 +499 326 3 892501059 +405 234 5 885548275 +95 186 5 880573288 +442 550 2 883390466 +279 186 5 875309482 +407 436 3 875045814 +484 144 4 891195298 +393 28 4 889554674 +246 97 3 884922272 +345 239 4 884993485 +537 498 3 886031105 +537 965 2 886031540 +71 14 5 877319375 +577 795 3 880476630 +621 876 2 883799203 +363 523 3 891494659 +169 300 5 891268491 +544 689 2 884795706 +184 1148 3 889910098 +248 64 5 884534735 +634 405 4 877017872 +466 89 3 890284819 +210 167 4 891036054 +342 47 5 874984430 +224 748 3 888082099 +239 434 5 889180041 +163 258 4 891219977 +484 239 4 891195036 +307 28 3 877119480 +287 546 4 875334271 +299 1056 4 889502292 +553 205 4 879948869 +627 144 2 879531158 +296 515 5 884196555 +544 325 1 884796016 +389 25 3 879916170 +405 219 5 885548384 +470 125 4 879178969 +561 193 3 885808673 +435 199 5 884132072 +630 934 3 885667624 +489 340 4 891448367 +325 236 3 891478695 +543 443 4 874864857 +137 405 5 881433336 +417 69 3 879647471 +551 42 5 892783212 +162 105 2 877636458 +346 204 4 874948730 +632 622 4 879459418 +429 276 5 882385542 +535 478 5 879617931 +495 191 3 888632219 +402 42 4 876267173 +591 56 4 891031344 +537 306 3 886028604 +239 221 5 889180447 +622 11 4 882669740 +620 294 5 889986557 +269 956 3 891448475 +361 694 4 879440774 +407 159 3 876338453 +593 70 5 875658983 +495 575 3 888637477 +530 319 3 891568424 +314 257 5 877886413 +489 294 3 891366748 +608 886 1 880402564 +405 661 3 885546025 +450 135 3 882373231 +23 250 4 874784338 +486 295 3 879874630 +221 1185 3 875246710 +457 509 4 882398086 +221 1017 4 875244268 +237 169 5 879376381 +44 655 3 878347455 +18 285 5 880130333 +271 461 5 885849582 +344 174 5 884900993 +545 161 4 879899472 +587 303 4 892871068 +474 15 5 887915600 +589 895 5 883352562 +342 1008 3 875318669 +453 168 4 877553708 +201 216 4 884111360 +7 134 4 892134959 +547 347 4 891282680 +472 550 5 875983066 +449 983 2 879959331 +308 663 5 887738469 +296 144 4 884197131 +381 151 5 892697526 +458 430 5 886398543 +158 187 5 880134332 +268 13 3 875742647 +398 710 2 875716830 +425 79 4 878738335 +125 455 5 879454987 +356 286 3 891405721 +312 191 5 891698334 +496 561 5 876068582 +448 333 2 891887161 +291 210 5 875086491 +2 25 4 888551648 +7 585 4 892133180 +561 410 1 885810117 +592 1060 2 882609057 +444 251 5 890247385 +627 1194 4 879529855 +630 845 3 885666918 +533 181 5 879191085 +417 13 2 879646591 +499 69 5 885599718 +561 735 3 885809712 +374 77 5 880937779 +51 173 5 883498844 +614 411 3 879465452 +559 1101 4 891035111 +642 70 2 886132189 +475 381 4 891627606 +294 235 3 877819532 +393 26 3 887746767 +484 9 1 881449910 +545 665 3 879899299 +120 742 4 889490549 +380 315 4 885477975 +472 584 1 875980377 +399 781 2 882350617 +301 64 5 882075672 +381 15 2 892697358 +7 194 5 891351851 +590 1017 4 879439196 +606 228 5 880924663 +178 143 4 882827574 +577 1032 3 880475561 +514 709 3 876067380 +609 287 5 886894940 +621 423 4 880739654 +162 358 3 877635375 +405 549 1 885546336 +373 1110 4 877107379 +504 1133 3 887910871 +306 111 4 876504442 +468 159 3 875292320 +387 99 5 886483620 +64 652 2 879365590 +586 276 3 884057692 +149 325 2 883512834 +620 101 2 889988069 +326 481 1 879874964 +552 123 3 879222033 +213 258 4 878870226 +254 1091 3 886475586 +521 132 3 885253186 +397 135 5 885349825 +620 121 5 889987825 +510 678 4 887667780 +3 338 2 889237297 +482 127 4 887644063 +637 100 4 882902924 +190 544 4 891033806 +619 328 1 885953684 +416 312 3 885114480 +624 262 4 891961078 +425 636 4 878738596 +308 404 3 887736998 +18 649 3 880131591 +501 508 4 883347920 +543 831 2 876718718 +487 845 4 883442260 +198 70 3 884207691 +627 403 2 879530694 +421 672 3 892241687 +560 1163 3 879976988 +59 237 3 888203371 +560 250 4 879976126 +500 129 4 886359266 +505 378 5 889333466 +330 501 5 876546719 +640 11 4 874777440 +512 302 4 888578289 +374 568 5 880396622 +548 603 5 891044356 +487 3 5 883444583 +214 196 4 891544493 +200 117 5 876042268 +323 258 4 878738826 +262 1 3 879962366 +637 690 5 882900888 +198 132 4 884208137 +546 895 3 885139608 +117 406 3 881010556 +620 379 4 889987656 +148 175 4 877016259 +417 395 4 879649199 +335 355 3 891567053 +195 433 3 878019342 +578 380 3 888957833 +418 288 5 891282836 +198 655 4 884209188 +577 595 4 880471170 +497 186 4 878759806 +87 414 3 879876673 +474 1020 3 887926573 +295 208 5 879517157 +343 461 2 876404957 +343 265 2 876406878 +566 1044 3 881651583 +387 121 2 886481228 +543 647 3 874864182 +116 285 4 876454023 +130 589 4 875216717 +622 30 4 882670190 +333 186 4 891045335 +548 307 4 891042474 +600 1231 2 888452152 +588 1041 2 890027063 +481 692 4 885828339 +632 164 4 879458692 +634 302 5 877974667 +416 821 4 886317146 +416 364 2 886319855 +311 197 4 884365686 +141 323 4 884584480 +194 238 5 879521396 +344 198 5 884814507 +409 28 2 881107943 +533 597 3 879192939 +579 100 4 880952201 +487 181 4 883441956 +532 1502 1 874796400 +263 622 4 891299949 +453 223 4 888203147 +642 1039 5 885602630 +385 502 3 879446235 +194 91 3 879524892 +27 9 4 891542942 +327 482 4 887745661 +458 1011 3 886394471 +435 67 4 884132919 +62 62 3 879375781 +28 429 5 881960794 +295 629 5 879518780 +116 325 3 876452186 +256 1047 4 882151743 +13 241 3 882397502 +85 813 4 879452664 +90 1137 2 891384516 +158 202 5 880135001 +585 639 4 891283921 +268 1228 1 875744357 +374 247 1 880936522 +553 86 3 879948771 +612 878 2 875324400 +524 100 5 884322047 +336 1188 3 877757418 +407 70 4 884197052 +456 658 3 881375351 +630 717 3 885667661 +276 765 3 877935335 +472 751 5 892790628 +435 392 3 884131404 +288 520 5 886374497 +519 288 4 883248089 +510 259 2 887667708 +69 742 3 882072956 +389 1041 3 880088269 +209 181 4 883417491 +483 99 3 884047323 +389 58 4 880087695 +445 346 5 891200869 +206 1062 3 888180018 +572 1137 3 879449708 +560 136 3 879975661 +409 58 4 881108170 +82 228 3 878769629 +610 216 4 888703291 +32 742 3 883717628 +468 15 4 875280518 +254 389 3 886473852 +566 392 4 881650519 +77 833 1 884733284 +142 346 5 888639815 +13 639 3 882139804 +346 318 5 874948105 +416 778 3 886316835 +72 170 3 880037793 +601 179 5 876351073 +506 226 4 885135844 +391 59 5 877399745 +554 227 3 876369198 +15 285 4 879455635 +447 1046 3 878856602 +546 930 5 885141260 +600 176 5 888451665 +540 240 3 882157662 +440 1591 5 891548567 +536 470 5 882360530 +405 523 2 885545975 +588 333 5 890014710 +312 154 4 891699372 +457 755 4 882549356 +542 346 3 886532149 +234 649 3 892335870 +509 332 2 883590800 +214 1073 5 892668130 +503 479 4 880383653 +457 462 5 882396283 +331 491 3 877196383 +533 319 3 879193132 +130 816 5 880396518 +592 457 1 882607779 +387 230 3 886483194 +552 866 3 879222002 +13 394 2 882399615 +374 123 2 880393511 +642 951 3 886568618 +587 272 5 892870956 +617 606 3 883788929 +286 433 5 877531537 +373 217 3 877098821 +160 763 4 876768025 +518 120 3 876824218 +83 371 3 880308408 +387 192 5 886484336 +533 412 1 879366159 +599 120 3 880953441 +450 735 4 882377590 +298 22 4 884182965 +23 156 3 877817091 +442 100 2 883388325 +207 735 4 877878688 +288 511 4 886373509 +72 461 3 880036824 +201 172 5 884111269 +506 417 4 874874396 +628 330 5 880777096 +642 38 4 885843141 +623 815 2 891034053 +618 1071 1 891308542 +85 210 3 879454981 +508 121 2 883767047 +82 288 3 876311518 +624 748 3 879792109 +102 228 4 888801465 +374 174 5 880395530 +334 936 3 891544764 +490 596 1 875427225 +626 288 3 878771243 +488 483 3 891293660 +325 443 4 891478817 +293 658 1 888907499 +144 475 1 888104032 +460 273 4 882912371 +313 133 5 891014956 +306 286 4 876503793 +559 238 1 891035674 +502 539 3 883701980 +23 174 4 874785652 +618 724 3 891309091 +464 298 4 878355061 +517 50 5 892660727 +194 449 1 879554897 +286 95 5 877531407 +468 423 4 875296868 +312 487 5 891699655 +181 820 1 878963342 +577 281 3 880470447 +416 1016 5 893213444 +214 24 3 891543176 +525 25 5 881085917 +417 388 3 879649178 +576 259 2 887168978 +562 427 4 879195244 +498 985 1 881961877 +435 404 2 884132266 +514 135 4 875311193 +378 742 4 880044697 +73 154 5 888625343 +492 523 4 879969583 +484 399 4 891195565 +305 91 2 886323303 +551 715 1 892785128 +85 465 4 879454437 +447 742 3 878854658 +618 12 4 891307263 +83 174 5 880307699 +160 240 4 876768990 +330 432 4 876546753 +442 508 3 883388283 +308 856 4 887738387 +294 249 5 877819941 +613 303 4 891227111 +334 74 2 891549246 +327 357 4 887747338 +217 147 3 889070174 +349 1128 3 879466062 +500 61 4 883875431 +345 245 2 884901497 +617 488 4 883789386 +612 1063 5 875325049 +371 186 5 880435288 +30 873 1 875061066 +373 603 4 877098262 +597 936 3 875343067 +429 662 3 882386309 +543 96 4 875665787 +126 326 2 887853919 +535 121 4 879618123 +193 280 4 889124016 +552 15 3 879222484 +535 421 4 879617701 +530 172 4 883790882 +454 612 3 881960145 +378 281 3 880044609 +504 452 2 887911974 +573 492 4 885843964 +466 87 3 890285706 +76 343 3 882129361 +435 183 5 884132619 +417 944 4 880952141 +448 305 4 891888509 +446 887 4 879786943 +270 694 5 876954927 +85 69 4 879454582 +429 69 5 882386309 +574 331 1 891279013 +458 169 5 886396390 +389 481 5 879991147 +3 302 2 889236939 +338 196 2 879438505 +57 8 4 883698292 +634 977 3 877018033 +541 82 3 883871562 +489 259 2 891445743 +495 2 2 888635595 +556 507 5 882136205 +587 688 3 892871536 +276 458 4 874786854 +279 659 5 877756699 +429 1418 3 882385267 +298 866 3 884183930 +469 656 5 879524116 +334 606 5 891545793 +536 195 4 882359431 +577 225 4 880470827 +592 291 3 882609008 +497 940 2 879362954 +314 410 5 877886706 +207 197 4 875774463 +534 151 4 877807692 +643 419 4 891448002 +600 27 3 888451977 +464 879 4 878354791 +21 262 4 874950931 +476 202 4 883364295 +389 407 1 880614292 +210 153 5 887730297 +592 56 5 882955948 +104 130 1 888465554 +429 275 4 882384603 +387 508 4 886479690 +627 467 5 879530042 +484 823 4 891195506 +468 214 5 875288771 +293 81 4 888906576 +234 863 5 892079689 +530 357 5 883784456 +290 271 3 880473557 +446 301 3 879786838 +270 443 3 876955976 +454 356 1 888267279 +246 741 5 884921533 +598 323 4 886711452 +606 966 5 880923745 +290 229 3 880473557 +174 151 3 886434013 +561 80 2 885810372 +239 659 3 889179808 +14 427 5 890881433 +500 246 5 883865128 +416 1220 3 886318155 +145 328 5 875270006 +54 338 3 880929490 +539 155 4 879788480 +616 355 4 891224881 +466 24 4 890285159 +295 559 4 879518674 +207 1049 3 877878860 +561 708 3 885809447 +141 250 4 884585128 +87 297 3 879877404 +436 218 4 887771123 +642 921 5 885603849 +262 95 3 879793503 +623 642 3 891034472 +102 188 2 888801812 +463 151 4 877385341 +621 197 4 885596884 +378 591 4 880044385 +397 475 4 885350045 +312 837 4 891699426 +618 944 2 891309266 +214 168 3 891544222 +486 237 4 879874629 +1 158 3 878542699 +407 705 4 875116117 +7 440 1 892131978 +211 462 4 879460096 +500 97 4 883874715 +244 527 5 880606155 +532 472 5 893119335 +506 356 3 874874630 +267 720 3 878973946 +532 177 4 888636501 +1 37 2 878543030 +484 568 3 891195417 +478 42 5 889388763 +542 179 4 886532571 +561 645 3 885808767 +573 176 3 885844481 +491 285 5 891185919 +375 302 5 886621795 +642 746 3 885602483 +455 125 3 879109133 +551 780 5 892785431 +615 660 4 879448882 +373 70 4 877099968 +638 194 3 876695774 +60 429 5 883326733 +194 15 4 879539127 +323 293 4 878739299 +110 451 4 886988909 +328 286 5 885044452 +537 491 4 886030584 +64 546 3 889739883 +554 79 5 876550491 +510 288 3 887667545 +450 245 4 892141986 +109 790 2 880580662 +145 354 4 891509877 +635 873 3 878878752 +468 856 4 875302155 +280 80 3 891701998 +279 380 4 889326161 +459 291 4 879563312 +538 168 3 877107408 +234 675 4 892078342 +433 174 5 880585730 +468 160 3 875295148 +569 340 4 879793075 +21 993 4 874951245 +621 72 2 874962900 +23 134 4 874786098 +640 53 4 874778274 +280 1048 4 891701002 +169 258 5 891268552 +606 287 4 880921656 +455 176 3 879111960 +625 96 5 892000372 +397 23 5 885350132 +342 656 5 875319151 +644 100 4 889076775 +237 127 5 879376671 +320 300 4 884748229 +618 196 4 891307889 +474 83 3 887925977 +532 357 5 892519935 +630 476 5 885667108 +353 258 5 891402757 +560 1171 3 879976807 +308 403 4 887738571 +606 1277 3 878148493 +14 32 5 890881485 +195 384 2 874825826 +207 180 3 879665352 +621 4 4 874962988 +435 246 5 884134345 +595 742 2 886921521 +523 189 5 883701800 +312 531 5 891698254 +487 419 3 883530644 +374 1248 3 880938044 +286 1038 5 884583549 +644 748 4 889076222 +11 549 4 891904617 +392 246 5 891038110 +429 1011 4 882387731 +91 31 5 891438875 +446 359 3 879787226 +635 294 3 878878588 +551 334 4 892775970 +406 404 5 884630554 +277 137 3 879543336 +627 956 2 879530463 +13 760 1 882396914 +130 864 2 874953595 +291 427 4 874868304 +297 455 4 874954611 +207 282 4 879577372 +76 56 5 875027739 +628 168 4 880777167 +451 263 2 879012811 +561 202 3 885808867 +177 527 4 880130898 +592 266 1 882607744 +504 385 4 887832571 +261 321 3 890455521 +631 286 3 888465033 +371 452 2 880435634 +457 173 5 882395049 +334 12 5 891547016 +144 423 5 888105714 +592 258 5 882607476 +67 105 4 875379683 +110 1222 2 886989191 +453 158 2 888205937 +497 173 5 878759659 +630 117 5 885666804 +230 91 3 880485043 +538 317 4 877107765 +513 181 5 885062332 +314 36 2 877889103 +627 97 2 879529958 +436 219 5 887770064 +198 200 4 884207239 +457 86 3 882397455 +138 603 4 879024184 +44 423 4 878348111 +567 132 3 882426021 +334 886 4 891544233 +490 515 3 875427224 +608 729 4 880407079 +622 240 3 882590420 +615 294 3 879447613 +529 340 1 882535181 +276 123 4 874786657 +210 732 4 887730676 +21 289 3 874950972 +83 755 5 887665423 +472 541 5 892791017 +579 288 4 880951346 +328 215 3 885046773 +488 385 4 891294014 +151 111 4 879542775 +378 273 4 880044221 +406 87 3 879445809 +450 842 4 882376446 +297 109 4 874954814 +551 354 3 892775752 +417 298 3 879646327 +301 693 5 882076806 +256 323 5 882150193 +481 4 3 885829196 +543 110 2 874865635 +144 251 4 888103929 +499 879 3 885598827 +109 386 1 880579916 +102 373 2 888802508 +506 892 1 888848224 +633 176 3 875325577 +405 585 1 885547447 +497 114 4 879309992 +361 86 4 879440941 +198 433 2 884208326 +215 237 4 891435761 +481 98 4 885828574 +406 52 5 879793235 +599 1095 4 880952316 +566 479 4 881649428 +564 121 4 888730534 +457 554 4 882549682 +303 1218 4 879484350 +543 1619 3 874865635 +286 1075 5 877532385 +328 684 5 885046537 +577 230 3 880474357 +442 276 4 883391027 +430 294 2 877225239 +624 742 4 879793093 +625 258 4 891262561 +454 520 4 881959607 +534 370 4 877808260 +542 204 3 886532762 +428 538 4 885944005 +452 188 4 875560300 +629 58 4 880117215 +232 32 4 888549467 +96 56 5 884403336 +506 140 3 874873327 +452 174 4 875263413 +538 568 3 877107491 +439 273 2 882892675 +417 709 3 879647355 +489 680 5 891445439 +510 1025 3 887667780 +10 513 4 877886598 +303 379 4 879485546 +173 937 4 877557077 +325 628 3 891478772 +200 235 2 884128065 +320 769 3 884751288 +551 56 5 892776450 +83 781 4 883868890 +537 101 2 886031860 +618 77 3 891309720 +506 38 3 885135912 +636 222 5 891449148 +481 1039 4 885828732 +13 850 4 882140318 +369 752 4 889428011 +526 312 2 885682295 +253 222 4 891628548 +193 1074 3 889126453 +405 482 3 885544739 +606 258 4 887058788 +452 286 4 876298932 +385 1462 4 879447555 +409 30 4 881108881 +495 705 4 888634111 +573 632 4 885844007 +385 89 4 879441853 +363 98 3 891495402 +44 89 5 878347315 +293 286 3 888904265 +14 222 4 876965061 +370 50 4 879434707 +483 1 4 878950971 +411 28 4 892845986 +460 258 3 882910637 +589 307 1 883352402 +137 89 5 881433719 +645 748 1 892052039 +521 117 4 884475913 +32 307 2 883709915 +317 288 4 891446190 +607 528 4 883879556 +267 391 3 878973675 +552 1315 3 879222452 +13 747 4 882140624 +551 846 3 892783942 +268 50 5 875309719 +425 358 4 890346630 +250 558 4 878091965 +94 589 5 891720786 +28 117 4 881957002 +522 128 4 876961133 +442 203 3 883391146 +435 89 4 884131489 +642 720 5 885606787 +599 934 3 880953441 +373 180 3 877098678 +387 496 3 886480515 +85 168 4 879454304 +504 5 4 887912462 +387 684 3 886483099 +315 770 3 879821348 +249 191 4 879572167 +497 2 1 879310883 +405 347 4 885544635 +342 1528 3 875318585 +540 126 3 882157105 +638 183 4 876694704 +419 478 5 879435785 +487 174 5 883446404 +466 568 3 890285034 +299 94 1 889503564 +233 95 5 877661496 +344 372 4 884901469 +465 638 3 883531380 +551 1035 2 892778244 +43 312 4 883953502 +642 728 4 886131674 +326 182 2 879876861 +640 941 5 874778095 +435 588 4 884131996 +234 181 3 892079373 +640 173 5 886354270 +401 815 3 891032662 +643 671 4 891446652 +166 243 3 886397827 +283 1079 4 879297526 +58 1006 2 884304865 +344 1014 4 889814600 +407 385 4 875045658 +201 402 2 884140975 +262 52 3 879792331 +363 451 2 891497130 +536 542 1 882364876 +586 578 3 884062621 +22 109 4 878886710 +478 111 3 889397582 +527 543 4 879455740 +293 272 4 888904180 +648 96 5 884368538 +213 521 4 878955474 +184 118 2 889908344 +548 504 5 891044482 +543 381 4 877547580 +13 194 5 882141458 +642 1469 4 886568725 +610 527 4 888703801 +459 264 4 879561755 +445 895 2 891035897 +54 151 2 880936670 +194 640 1 879535548 +385 32 5 879442988 +550 538 5 883425812 +397 197 5 885349825 +379 383 2 881000374 +580 294 4 884124337 +14 288 4 876964936 +553 479 5 879948386 +325 1230 3 891479737 +478 72 1 889397841 +82 511 3 878769948 +151 134 4 879524131 +548 345 1 891042194 +393 108 2 887744658 +542 479 4 886532265 +625 151 3 891999874 +425 219 2 878738956 +458 405 4 886395022 +19 325 4 885412251 +550 310 5 883425627 +595 763 3 886921551 +345 433 4 884992142 +527 317 4 879456405 +622 519 3 882591938 +456 71 3 881374710 +174 31 4 886434566 +534 322 4 877807461 +457 584 4 882548615 +562 727 5 879196267 +111 258 4 891679692 +235 338 1 889654821 +145 650 4 875273120 +632 71 4 879458649 +598 349 4 886711452 +393 109 3 887744419 +427 681 5 879701326 +60 546 4 883326837 +633 526 4 877212250 +197 29 3 891410170 +379 88 4 880525968 +416 748 4 876696687 +468 222 4 875279269 +90 497 5 891384996 +541 452 3 883874518 +642 132 3 885603636 +246 11 4 884922512 +253 1468 3 891628142 +592 1319 1 882608234 +399 288 3 882340200 +95 203 3 879198888 +324 50 5 880575618 +551 291 4 892778337 +472 1228 4 875983270 +127 343 5 884364151 +542 790 3 886533090 +351 748 4 879481613 +633 143 4 877211134 +606 756 3 878146986 +31 1021 3 881548082 +620 678 3 889986642 +62 483 4 879373768 +194 864 2 879539305 +640 38 4 874778612 +457 448 4 882548537 +230 99 3 880485066 +456 172 5 881373019 +145 405 3 875270970 +13 846 2 882141997 +470 284 4 879178884 +542 73 3 886533227 +334 228 5 891547894 +308 678 3 887736408 +630 278 4 885667508 +533 742 4 879192681 +195 1030 2 877835451 +392 324 1 891037720 +445 324 1 891199297 +580 123 4 884125199 +429 290 3 882386333 +497 781 3 879310445 +533 21 3 888239930 +401 235 1 891032474 +635 300 3 878879107 +1 181 5 874965739 +491 1281 3 891186806 +447 158 3 878856262 +630 1040 4 885667660 +194 241 2 879527725 +178 316 4 888513290 +622 196 3 882669695 +72 521 4 880036718 +435 24 4 884133084 +538 213 3 877364067 +298 205 5 884181969 +493 258 5 884129725 +385 653 4 881948265 +60 275 4 883326682 +385 276 3 879440098 +108 319 5 879879662 +533 194 4 879191061 +21 200 5 874951695 +551 658 5 892783559 +246 228 3 884921558 +592 952 4 882608699 +413 270 4 879969027 +585 638 4 891284016 +146 271 3 891457749 +489 286 4 891366571 +421 12 5 892241458 +532 151 5 892519935 +514 405 2 875463386 +503 168 5 880383624 +91 187 5 891438908 +524 679 2 884636746 +620 1035 4 889988232 +497 80 3 879363181 +195 313 5 883688297 +586 470 4 884064631 +462 313 5 886365231 +511 908 4 890004938 +532 914 5 893118711 +627 175 1 879530110 +437 99 4 881001946 +451 989 1 879012857 +500 298 4 890009939 +455 87 3 879110905 +497 288 2 878759351 +6 272 4 883717304 +645 69 4 892053644 +325 16 1 891478981 +74 294 4 888333311 +320 410 4 884748839 +49 217 3 888067405 +429 652 4 882385118 +527 507 5 879455654 +393 72 4 889730045 +426 134 4 879444787 +130 289 5 874953291 +171 906 3 891034684 +474 209 5 887927670 +85 631 4 886282927 +541 1035 3 883874749 +244 393 3 880607365 +561 170 4 885808738 +268 743 1 875743335 +85 180 4 879454820 +207 509 4 877878688 +642 105 5 885606482 +281 310 4 881200264 +361 659 5 879441324 +648 473 3 882211965 +449 748 2 879959273 +59 654 4 888204309 +561 302 4 885806797 +335 300 5 891567029 +535 131 4 879618532 +497 109 4 878759659 +330 168 3 876546439 +526 936 5 885682448 +445 1601 1 891199533 +357 546 5 878951729 +102 218 3 888803002 +308 239 3 887740033 +595 129 3 886921088 +298 393 4 884183099 +123 242 5 879809053 +442 186 4 883388429 +639 488 4 891240160 +286 315 5 889651138 +417 288 3 879647749 +561 1153 3 885808986 +236 866 3 890117223 +292 462 3 881105657 +504 537 3 887910811 +622 120 1 882592643 +429 183 4 882385489 +398 1020 3 875659843 +456 232 2 881374389 +356 1294 4 891405721 +13 430 5 882139495 +346 1228 4 875265825 +401 478 2 891033497 +392 127 5 891038110 +606 64 5 880923579 +49 1021 5 888066647 +450 714 4 882472144 +624 272 5 885215463 +128 70 3 879967341 +474 227 4 887926872 +573 183 3 885844091 +385 473 3 879440584 +189 191 5 893265402 +312 478 5 891698664 +500 742 3 883865290 +634 1008 2 877017951 +536 63 4 882360802 +577 808 3 880475094 +7 234 5 891351041 +429 95 3 882385012 +506 258 4 884517178 +57 42 5 883698324 +479 82 4 879461898 +524 670 4 884637203 +632 25 1 879459418 +648 288 4 882211654 +490 277 3 875428531 +506 878 3 874872812 +330 993 4 876544632 +630 127 2 885666536 +633 288 2 875324233 +473 275 5 878157527 +194 155 3 879550737 +488 83 4 891294530 +234 525 4 892078984 +232 127 3 888550101 +514 651 4 875462901 +456 806 3 881373617 +566 25 2 881651077 +551 825 5 892784049 +175 172 5 877107339 +393 228 3 889728385 +500 44 1 883875862 +244 169 5 880606274 +6 405 1 883600066 +229 344 5 891633028 +588 289 2 890015063 +184 1160 5 889907363 +481 427 4 885828807 +624 952 3 879793129 +592 238 5 882956321 +381 14 5 892696512 +543 185 4 875662979 +638 472 3 876695307 +303 109 4 879467131 +494 427 5 879541112 +642 1033 3 886569278 +525 118 3 881086393 +212 528 5 879303950 +271 494 4 885848770 +634 919 2 877979309 +387 325 2 886484460 +404 901 2 883790585 +83 161 4 887665549 +591 275 4 891039974 +44 260 4 878340905 +603 181 5 891956154 +609 878 1 886895827 +6 166 4 883601426 +62 405 3 879373118 +107 288 3 891264432 +535 44 4 879619035 +198 1244 2 884206659 +36 1026 5 882157581 +437 447 4 880143663 +267 218 4 878972650 +588 699 4 890024385 +254 1050 3 886472609 +405 58 1 885546247 +436 568 5 887769416 +484 257 5 882079956 +427 359 5 879701253 +13 763 1 882141458 +337 831 1 875236281 +276 47 4 874787407 +454 649 2 888267279 +160 192 5 876861185 +639 306 4 891238550 +18 134 5 880129877 +457 89 5 882397058 +234 531 3 892078984 +21 561 1 874951761 +7 403 4 891351234 +542 209 4 886532762 +300 288 4 875649995 +459 546 1 879563367 +600 228 3 888451840 +90 1134 3 891385752 +534 325 4 877807461 +385 131 4 879445754 +144 1226 4 888104737 +18 969 3 880131106 +531 312 5 887048899 +130 24 5 874953866 +642 1415 4 886569783 +595 597 2 886921634 +311 1041 3 884366334 +634 286 5 877018125 +603 748 5 891956302 +592 273 5 882607986 +324 289 5 880575163 +551 268 4 892775516 +550 304 3 883425743 +249 56 5 879572189 +389 191 5 880087493 +10 529 3 877892438 +577 655 4 880474394 +393 721 2 889727930 +56 97 3 892677186 +532 526 5 893119415 +556 64 5 882136162 +506 47 4 874876486 +600 226 4 888451977 +145 979 3 879161882 +621 559 5 874964915 +385 525 4 879444685 +412 64 4 879717505 +320 235 3 884748929 +585 224 2 891283681 +489 989 3 891446201 +634 124 3 875728913 +405 149 1 885549746 +280 79 4 891700453 +545 689 4 879898362 +534 742 5 877807653 +13 355 3 888688733 +269 365 2 891448738 +431 689 3 881127786 +450 4 3 882373865 +532 419 5 888635366 +16 1 5 877717833 +93 151 1 888705360 +621 293 3 880227385 +617 134 3 883788900 +146 319 4 891457538 +405 75 2 885546069 +297 230 2 875238814 +443 286 5 883504521 +588 316 5 890015021 +387 715 5 886484157 +99 117 5 885678784 +221 178 4 875245989 +374 1210 4 880938100 +221 181 4 875244087 +82 21 1 884714456 +634 221 1 875729105 +391 491 3 877398898 +226 652 3 883889012 +647 554 4 876533810 +479 189 2 879461298 +644 300 5 889075967 +206 343 1 888179788 +595 368 1 886921977 +207 70 3 875506737 +606 760 3 880923349 +588 652 2 890026339 +507 1089 5 889966088 +470 100 4 879178370 +187 69 4 879465566 +466 127 3 890284766 +585 1018 2 891286059 +26 121 3 891377540 +542 684 4 886532238 +151 965 5 879524849 +422 98 5 879744014 +494 1197 3 879541405 +399 551 1 882349022 +605 174 3 879424743 +327 204 4 887818658 +621 231 4 874964375 +246 576 1 884923864 +542 818 4 886533112 +536 139 4 882361317 +563 254 3 880506963 +223 284 2 891549683 +313 495 2 891016280 +498 483 3 881957625 +642 768 4 885606609 +380 152 2 885478312 +499 516 4 885599572 +271 648 4 885848770 +334 318 4 891545926 +493 273 4 884131717 +621 67 4 880739654 +374 554 2 880938370 +403 597 2 879786747 +416 662 4 876699994 +621 208 4 874962824 +335 342 2 891566976 +109 98 4 880572755 +151 632 4 879528779 +617 217 1 883789507 +346 276 1 874950029 +280 678 2 891700124 +650 630 5 891371061 +393 270 5 887742040 +592 689 2 882607690 +514 14 3 875318331 +537 182 4 886030862 +296 1160 4 884196964 +251 45 5 886271855 +184 845 3 889907971 +189 83 4 893265624 +308 367 4 887738571 +625 428 5 891953755 +553 641 4 879948386 +448 1176 2 891887393 +85 751 3 884820157 +590 126 5 879439316 +422 551 2 879744218 +450 302 5 882215617 +588 278 5 890027600 +644 823 4 889076997 +478 743 1 889388534 +262 443 3 879792027 +622 521 5 882670009 +626 324 4 878771281 +21 981 2 874951382 +378 528 5 880056034 +201 222 3 884112201 +435 176 5 884131627 +277 508 4 879543487 +612 9 3 875324876 +160 168 4 876858091 +487 300 5 883441026 +618 282 3 891307289 +587 873 3 892871284 +303 801 1 879543679 +593 66 5 875671807 +176 927 3 886048305 +642 210 5 885842610 +537 259 1 886029116 +458 192 4 886396240 +342 482 5 875318936 +319 259 2 889816172 +328 752 2 888641528 +144 70 4 888105587 +151 952 3 879528729 +642 135 3 886131953 +498 275 3 881955348 +198 265 3 884207206 +198 1245 4 884205317 +330 257 5 876544609 +311 530 3 884365201 +552 1620 3 879222071 +604 234 5 883668097 +276 274 3 874791960 +566 157 5 881649985 +63 302 3 875746809 +452 432 2 875264432 +296 282 4 884196712 +606 746 5 880925394 +459 148 5 879563367 +276 201 5 889174849 +194 483 4 879520916 +106 275 4 883877219 +495 288 4 888633165 +500 1018 3 883875756 +76 1019 3 879576256 +493 56 4 884130911 +525 595 2 881086803 +624 886 4 879792251 +429 91 3 882386260 +576 237 4 886985003 +508 1135 3 883777382 +2 273 4 888551647 +154 945 3 879138713 +363 682 1 891493634 +618 392 3 891308979 +231 471 5 888605273 +104 311 1 888442112 +639 58 3 891239296 +94 54 4 891722432 +239 428 5 889180978 +264 478 5 886122194 +650 517 3 891382033 +479 324 1 879459611 +118 210 5 875384825 +455 89 3 879111616 +457 470 5 882398204 +566 186 3 881649893 +13 286 3 881514683 +648 298 2 884884466 +436 216 4 887770064 +368 561 2 889783617 +592 1 4 882608021 +519 878 5 884545961 +284 690 3 885329468 +487 684 5 883446543 +622 105 3 882591726 +13 867 5 882399615 +521 11 4 884477993 +532 689 4 880484527 +151 14 5 879524325 +561 45 3 885808716 +417 24 3 879646531 +454 454 3 881959745 +405 356 5 885545912 +599 928 4 880953441 +301 702 4 882077784 +308 32 5 887737432 +387 515 5 886480755 +501 456 3 883348610 +271 845 1 885847800 +543 737 3 874866535 +556 288 4 882135646 +18 238 5 880132437 +643 154 4 891447286 +406 639 4 879793295 +450 121 3 882395537 +216 201 3 880235734 +561 14 3 885808929 +445 742 1 891200078 +601 290 3 876350501 +625 692 3 892000518 +637 829 2 882905070 +201 118 1 884310148 +406 712 3 880132091 +189 485 4 893265710 +561 1110 2 885809524 +577 1531 4 880475408 +474 963 5 887926105 +256 1046 4 882164927 +72 792 3 880036718 +334 902 4 891550520 +591 934 3 891039769 +421 100 4 892241422 +648 674 3 884883476 +135 260 3 879857575 +413 877 3 879969100 +394 391 4 881058330 +286 139 3 889653012 +305 315 5 886308168 +222 826 2 883816093 +271 190 4 885848707 +375 770 3 886622131 +13 413 1 882396984 +514 729 4 886189841 +561 715 3 885809606 +44 196 4 878348885 +313 892 4 891013059 +393 40 1 889729185 +543 28 4 875663543 +535 469 3 879618464 +559 210 4 891034957 +280 527 5 891700768 +638 50 4 876694704 +405 810 1 885548094 +344 708 4 884901561 +158 742 4 880134261 +633 778 2 877211886 +11 98 2 891905783 +57 472 1 883697253 +318 403 2 884496759 +487 111 3 883444558 +363 172 5 891495711 +94 518 5 891720950 +632 202 4 879457712 +532 601 3 888629518 +601 140 1 876351298 +378 787 3 880332480 +537 399 2 886032246 +497 651 4 879310762 +615 640 3 879448182 +142 514 5 888640317 +144 262 3 888103444 +552 7 3 879221580 +563 50 5 880507404 +198 185 3 884209264 +358 1021 5 891269464 +314 405 4 877886522 +3 322 3 889237269 +214 169 4 891544175 +551 527 5 892777123 +532 658 5 893119335 +647 748 4 876532501 +314 56 1 877887568 +59 1115 3 888203128 +450 430 4 882377590 +230 628 3 880485421 +437 212 3 880141402 +396 222 5 884646152 +643 229 3 891449640 +539 197 5 879787985 +551 98 5 892776524 +592 262 5 882607356 +622 194 4 882669762 +179 340 4 892151064 +618 79 5 891307494 +568 1203 5 877907281 +481 197 3 885828773 +535 514 5 879617531 +488 11 1 891294158 +650 514 3 891371020 +474 789 4 887927152 +651 292 2 879348881 +589 271 3 883352654 +554 252 4 876232528 +1 136 3 876893206 +481 153 5 885828165 +604 185 2 883668175 +592 272 5 882955387 +545 215 3 884133881 +487 956 4 883530702 +521 380 3 884478483 +648 304 5 884363798 +144 466 2 888105823 +497 526 3 879362478 +548 315 3 891415258 +308 11 5 887737837 +5 371 1 875720967 +178 50 5 882823857 +588 496 3 890023879 +378 234 4 880045652 +592 61 4 882956586 +627 300 4 879529486 +264 1474 2 886123728 +346 597 3 875003052 +181 844 1 878962816 +345 79 4 884992291 +81 237 4 876533764 +587 312 2 892871563 +422 665 5 879744143 +210 514 5 887730532 +543 71 4 874864870 +472 66 5 875981158 +543 748 3 876110379 +551 1079 1 892785431 +537 553 2 886032123 +592 32 5 882956067 +579 1047 3 880952579 +394 226 2 880888850 +92 1211 3 876175395 +501 313 3 883346623 +618 210 3 891308703 +561 98 4 885807393 +7 578 3 891354090 +363 1101 3 891495004 +210 15 4 887737710 +94 191 5 885870175 +136 744 5 882693569 +13 769 3 882397040 +405 603 3 885548578 +457 747 4 882397787 +399 237 3 882510490 +254 622 4 887347350 +62 357 4 879374706 +501 257 4 883348114 +393 824 3 889731793 +397 435 4 885349376 +243 708 3 879988520 +551 912 3 892775723 +1 257 4 874965954 +70 411 3 884066399 +311 509 3 884366590 +334 553 1 891548866 +457 655 5 882397879 +642 443 2 885603870 +210 392 3 887736017 +308 21 3 887740729 +634 150 3 875728834 +498 202 3 881958897 +18 627 3 880131931 +534 687 5 877807486 +393 273 3 889727768 +308 117 3 887738620 +503 640 1 880383201 +334 303 4 891544077 +567 181 1 882426246 +394 540 4 881058330 +188 22 5 875072459 +253 482 5 891628451 +128 770 3 879968008 +592 330 3 882607606 +618 50 5 891307175 +406 520 4 879445735 +568 1005 1 877907877 +628 302 5 880776981 +543 165 4 874863436 +639 170 4 891239790 +207 748 3 877750478 +523 8 5 883702125 +413 15 4 879969709 +398 87 4 875716709 +178 319 1 884836946 +234 290 3 892333980 +572 1171 3 879449734 +532 929 3 874791786 +354 59 5 891218208 +406 517 2 880131550 +373 275 5 877098437 +599 988 4 880951211 +73 213 4 888625753 +416 538 4 885114408 +180 12 2 877355568 +595 291 3 886921656 +560 1008 3 879976731 +479 241 3 879461800 +457 453 2 882551854 +417 402 4 879648656 +324 282 5 880575619 +612 924 5 875324710 +443 678 2 883504818 +279 760 3 875297522 +312 1451 4 891699156 +235 318 5 889654971 +305 664 2 886324462 +354 190 4 891217221 +99 367 4 886519075 +291 940 3 875086608 +549 288 4 881672605 +470 118 4 879178645 +449 61 5 880410700 +472 771 4 875983427 +472 384 3 875982051 +303 692 4 879468123 +317 879 3 891446575 +256 356 3 882164927 +194 174 4 879520916 +632 28 3 879458649 +466 344 5 890284231 +506 930 1 877984514 +474 513 5 887924571 +608 58 2 880406800 +472 228 5 875979910 +491 236 4 891185919 +606 33 4 880928180 +496 554 2 876070997 +566 856 5 881650690 +437 137 5 880140221 +479 197 4 879461102 +235 86 4 889656113 +496 89 5 876072633 +639 487 5 891240566 +496 418 3 876066848 +109 584 2 880581127 +297 243 1 878771163 +532 1226 4 893015131 +144 48 5 888105197 +234 613 4 892079434 +503 205 4 880472344 +43 588 4 883955745 +489 315 5 891448389 +264 603 5 886122508 +637 831 1 882904961 +213 463 5 878956000 +569 475 3 879793717 +472 90 5 892791063 +591 88 3 891031525 +303 98 5 879466572 +577 168 5 880472124 +606 288 4 877641931 +416 1132 2 876697913 +276 281 3 874787065 +222 929 1 881061213 +551 234 4 892777092 +570 302 4 881262145 +16 946 5 877724727 +452 781 3 888568714 +76 514 4 882129456 +295 69 5 879517911 +456 452 2 881375515 +256 451 4 882165135 +416 24 5 893212730 +629 9 4 880117485 +110 684 4 886988480 +514 510 3 886190480 +385 135 3 879444991 +594 14 4 874781173 +207 631 2 877847187 +621 576 2 874964605 +234 389 3 892335309 +630 871 2 885666918 +500 708 5 883873999 +542 655 4 886532908 +627 162 3 879530568 +395 97 5 883763800 +405 1222 1 885548049 +417 186 5 879647118 +435 167 3 884133224 +401 651 4 891032919 +300 300 4 875649995 +608 1119 5 880406552 +123 514 5 879872193 +505 553 4 889333937 +567 478 5 882426079 +523 72 4 883702351 +621 301 4 880226534 +295 228 4 879518414 +373 1228 2 877107379 +533 23 3 879191770 +503 318 5 880383679 +627 581 3 879530662 +593 501 2 886193661 +264 746 3 886123358 +110 421 4 886988873 +134 326 5 891732296 +326 219 2 879877349 +26 50 4 891386368 +455 71 3 879112098 +271 168 2 885848343 +279 558 4 875307210 +296 1284 4 884196765 +481 190 5 885828732 +619 62 1 885954185 +639 462 5 891239838 +545 208 3 879899619 +462 310 5 886365197 +541 15 3 883864806 +449 59 5 880410599 +435 924 3 884132072 +472 73 4 875981317 +269 173 1 891449429 +286 210 5 877535208 +463 270 3 889936535 +397 423 5 885349999 +194 380 1 879535549 +639 659 3 891240111 +548 327 3 891042794 +447 597 3 878855021 +642 97 4 885602418 +500 88 4 883875926 +363 174 4 891495109 +454 497 3 881959876 +479 70 4 879461630 +332 105 2 887938631 +479 185 4 879461604 +524 97 5 884636583 +622 693 4 882592383 +279 166 4 879572893 +526 1 5 885682562 +559 527 4 891034172 +137 748 4 881432626 +464 286 3 878354626 +342 208 4 874984430 +551 222 5 892783411 +234 88 3 892335920 +645 179 5 892054600 +97 82 4 884239552 +246 178 5 884920918 +334 484 5 891545793 +214 8 4 892668196 +534 825 4 877808281 +345 44 3 884992770 +554 174 5 876550257 +6 194 4 883601365 +601 740 4 876347196 +346 363 3 874951062 +433 474 3 880585759 +643 1101 3 891448002 +436 762 4 887771722 +295 213 5 879517324 +479 398 1 889125474 +110 689 3 886987584 +327 271 3 887743644 +543 186 3 877550660 +425 289 1 878737635 +597 298 5 875339723 +69 294 2 882027233 +409 461 3 881108364 +462 315 4 886365837 +450 1425 4 882471737 +185 25 4 883525206 +548 7 5 891044304 +234 313 4 891033261 +534 986 5 877808319 +519 748 2 883248307 +13 32 4 882140286 +642 1023 3 885842351 +207 185 4 875509832 +274 300 5 878944464 +210 393 3 891035904 +303 1145 2 879544219 +561 135 4 885809336 +452 479 5 885544109 +545 404 4 884133839 +642 133 5 886206274 +374 218 4 880396444 +442 635 4 883389380 +429 2 3 882387599 +642 50 5 885604280 +226 813 4 883890235 +644 294 4 889076095 +95 290 3 879193973 +144 327 3 888103444 +160 151 4 876769097 +318 193 3 884496367 +396 455 2 884646582 +295 196 5 879966498 +417 513 5 879647580 +13 204 5 882140318 +586 229 3 884062742 +381 121 2 892696793 +130 895 5 884623799 +194 81 2 879523576 +592 334 3 882607476 +618 378 4 891309514 +174 69 5 886514201 +341 682 3 890757961 +373 417 3 877099092 +654 4 4 887864830 +52 527 5 882922927 +595 1009 4 886921584 +76 1155 2 882607017 +414 301 3 884999128 +500 639 4 883875195 +622 168 4 882592041 +170 322 5 884103801 +537 301 2 886028647 +514 631 4 875463386 +643 546 3 891445660 +455 40 3 879111662 +527 517 5 879456186 +160 153 3 876860808 +504 318 5 887832593 +601 482 4 876350142 +394 416 5 880889350 +632 419 4 879457903 +102 72 3 888803602 +112 937 4 884992801 +321 212 3 879440342 +551 174 4 892776650 +545 55 3 879899233 +543 88 4 877550535 +161 100 4 891171127 +393 347 4 887742040 +76 172 5 882606080 +520 242 5 885168819 +315 645 4 879821065 +643 1149 3 891447835 +395 240 1 886481149 +605 754 3 879425457 +487 823 1 883445302 +470 508 5 879178932 +488 64 5 891294529 +476 367 3 883364475 +368 184 5 889783453 +536 1118 2 882360776 +328 315 4 885044782 +90 905 4 891383319 +81 619 3 876534009 +184 1061 3 889908264 +331 221 4 877196308 +493 59 5 884132315 +458 245 2 889324066 +244 763 4 880604830 +437 753 4 880140927 +21 7 5 874951292 +495 479 4 888632574 +178 155 4 882828021 +537 744 3 886030380 +360 64 5 880355485 +63 286 4 875746809 +634 596 3 875729105 +394 739 4 880889766 +551 240 3 892784673 +265 327 3 875320052 +639 709 3 891239581 +94 800 3 891723296 +279 1242 1 888797284 +118 800 4 875385280 +621 117 5 880227268 +363 206 2 891496587 +653 164 3 878854633 +529 1038 4 882535304 +541 225 4 885595846 +618 705 3 891307825 +13 5 1 882396869 +527 479 4 879455707 +277 293 4 879544145 +588 288 4 890014818 +286 132 5 877531791 +535 269 4 879617063 +316 69 3 880853881 +213 182 4 878955766 +267 180 5 878971690 +363 597 4 891498286 +293 159 3 888907674 +592 168 5 882955825 +308 49 3 887740833 +500 62 3 883876690 +514 109 3 876067235 +548 12 5 891044356 +290 252 3 880732575 +64 434 4 889739052 +146 331 5 891458193 +299 1226 2 877878602 +348 1060 3 886523621 +474 1016 3 887915567 +639 553 3 891240868 +368 292 4 889783251 +642 151 3 886568791 +620 625 3 889988005 +21 5 2 874951761 +191 339 3 891562090 +497 510 3 879362496 +543 187 4 874866535 +488 133 4 891294606 +66 237 4 883601355 +348 123 5 886523361 +276 9 5 889174849 +280 755 2 891701278 +565 10 5 891037453 +217 562 3 889070211 +65 15 5 879217138 +122 1044 5 879270923 +644 257 5 889077278 +521 258 4 884475503 +566 98 4 881649445 +604 413 3 883668175 +648 586 3 884883149 +653 573 1 880152843 +504 1522 3 887840942 +43 781 3 883956494 +580 281 2 884126077 +305 42 4 886324172 +401 97 4 891033582 +6 514 5 883600657 +588 1508 3 890029795 +71 282 3 885016990 +542 230 4 886533774 +606 22 5 880927357 +630 25 2 885666779 +456 922 4 881371595 +545 71 5 879901459 +559 528 4 891034209 +326 393 4 879876327 +637 595 3 882904537 +380 12 5 885478218 +497 95 4 879309993 +539 481 4 879788572 +561 241 2 885809119 +591 72 3 891040366 +406 665 3 879792928 +535 971 2 879618569 +619 241 5 885954083 +178 184 5 882827947 +650 843 2 891388266 +130 342 3 881076199 +94 219 4 891721528 +125 427 4 879454277 +493 7 3 884130372 +378 926 1 880318158 +293 65 3 888906945 +653 402 1 880151488 +465 478 4 883531246 +405 567 2 885548474 +567 617 4 882425843 +606 7 4 878143509 +385 745 4 879443352 +144 500 4 888105419 +592 319 4 882607434 +87 546 3 879876074 +90 863 4 891384114 +320 385 4 884749327 +125 300 5 892835836 +374 98 5 880394929 +585 1158 4 891282573 +378 294 2 880043804 +118 960 5 875385136 +422 436 3 879744085 +533 97 2 879438666 +532 353 2 886364951 +539 527 4 879788136 +561 93 4 885809224 +495 184 5 888633086 +533 313 5 884007337 +636 596 5 891449212 +388 259 3 886440334 +559 427 4 891034095 +474 435 5 887926573 +592 179 5 882956761 +555 326 4 879962096 +634 823 3 877017923 +159 195 3 884360539 +320 121 5 884748733 +119 986 3 874781068 +542 100 4 886532432 +363 171 5 891495849 +444 275 4 891979402 +110 376 2 886989340 +623 204 5 891035112 +553 603 5 879948695 +637 280 2 882904679 +104 345 4 888442171 +59 618 4 888205956 +389 616 4 879991329 +246 798 2 884924001 +561 959 3 885810060 +622 367 4 882670712 +653 444 1 880153329 +551 183 4 892776824 +592 345 4 888553233 +328 8 3 885047018 +458 1338 3 886395393 +437 281 1 881001148 +36 878 5 882157581 +407 423 4 876340001 +409 633 4 881108126 +555 271 3 879961963 +591 921 4 891031257 +13 332 3 881515457 +487 133 4 883530865 +415 323 2 879439205 +497 108 3 879309760 +391 421 2 877399269 +569 237 4 879793717 +465 319 3 883529372 +448 887 2 891888042 +450 686 4 882473826 +422 1007 4 875129839 +601 584 4 876350142 +587 343 4 892871337 +601 418 2 876350766 +181 326 1 878961709 +201 567 3 884112673 +592 28 4 882956586 +94 585 3 891723494 +13 737 4 882399615 +279 751 4 882593314 +151 1299 4 879543423 +230 420 5 880485726 +533 210 5 879191401 +465 475 3 883530313 +463 117 3 877385731 +533 1033 4 879192702 +618 549 2 891308342 +523 204 5 883702171 +500 181 3 883865462 +478 168 4 889388697 +187 736 4 879465632 +537 549 2 886031965 +413 269 4 879968793 +144 343 2 888103725 +560 975 3 879977081 +630 222 4 885666779 +14 628 5 880929697 +588 451 5 890026059 +532 197 5 889235367 +650 747 3 891384202 +514 735 4 875462764 +600 265 3 888451582 +551 12 4 892776419 +544 258 3 884795135 +286 749 3 889651060 +638 410 4 876695774 +334 176 3 891547040 +507 352 1 889964274 +622 72 3 882671142 +493 264 3 884129923 +193 343 1 889123777 +629 528 5 880117395 +405 536 1 885549746 +468 1014 3 875280539 +474 642 4 887927152 +343 3 4 876406256 +592 169 5 882955663 +450 775 4 882469432 +573 1012 2 885844339 +285 205 4 890595900 +255 264 2 883215829 +23 204 3 874786122 +588 428 4 890024730 +235 1193 4 889655232 +313 121 4 891015114 +363 56 5 891495301 +653 50 5 878854100 +92 1046 3 875812841 +346 168 4 874948252 +90 286 5 891382267 +625 602 3 891263057 +412 340 4 879716637 +627 157 4 879530110 +7 436 5 891351471 +654 423 4 887864432 +428 350 4 885944005 +343 283 4 876403212 +642 375 1 886131744 +399 926 2 882348850 +593 597 2 875660347 +151 661 4 879524419 +180 98 5 877544444 +10 664 4 877886911 +416 185 4 876699101 +488 111 4 891294785 +567 176 5 882425874 +417 97 4 879647326 +314 783 3 877888855 +332 210 5 887938981 +301 150 4 882074345 +279 425 4 875306430 +22 523 5 878886845 +409 631 3 881108077 +629 1109 4 880117813 +492 83 4 879969644 +334 855 3 891547513 +642 258 3 885601865 +1 237 2 875071749 +634 979 3 875729710 +405 57 1 885546577 +361 178 5 879441462 +269 192 4 891447979 +507 879 5 889964706 +549 225 3 881672804 +416 396 2 886318587 +653 1044 1 880153304 +535 435 5 879618246 +642 72 4 885843087 +609 901 1 886895886 +277 7 2 879543377 +354 50 4 891216498 +532 926 3 888630146 +409 618 4 881107011 +642 468 3 886568479 +466 62 3 890285159 +439 246 4 882892755 +405 379 1 885548475 +627 649 4 879530071 +405 1474 1 885547645 +222 225 1 877563353 +102 386 2 892993735 +618 143 4 891308515 +109 72 5 880577892 +312 515 5 891699677 +303 871 1 879485685 +181 919 1 878962550 +15 935 3 879455710 +213 483 5 878955848 +452 170 4 875261261 +393 4 4 889555384 +48 136 4 879434689 +130 65 4 875216786 +560 1333 3 879976071 +608 478 3 880403606 +353 245 4 891402405 +137 1117 2 881433435 +500 405 4 883865567 +327 26 3 887747299 +648 188 5 884882664 +210 235 3 887730842 +307 1 5 878066938 +435 684 4 884131356 +325 650 3 891478079 +130 763 5 874953728 +536 318 5 882359431 +524 469 4 884636416 +311 700 3 884365852 +450 312 4 882812205 +655 274 3 888474872 +333 168 4 891045496 +561 258 2 885806823 +104 307 2 888442249 +592 652 4 882956467 +326 216 2 879876235 +631 346 4 888465004 +555 147 4 879962172 +592 533 4 882608827 +531 358 1 887049187 +267 156 5 878971599 +293 203 3 888906781 +546 717 5 885141162 +611 303 3 891636073 +301 763 4 882074665 +450 205 4 882373531 +436 595 5 887770731 +108 255 2 879880094 +214 89 4 892668249 +344 1 3 884899372 +632 58 3 879459210 +592 137 5 882608145 +60 50 5 883326566 +327 403 3 887820384 +366 234 1 888857750 +334 634 4 891547513 +60 799 4 883326995 +269 403 1 891448522 +620 563 5 889987682 +567 504 4 882425874 +30 315 4 885941412 +493 181 5 884130308 +436 723 3 887771853 +456 672 1 881374849 +582 288 3 882960396 +141 126 5 884585642 +621 1012 5 880227233 +367 333 4 876689501 +537 1197 3 886029889 +145 123 4 879161848 +394 63 4 881059464 +271 580 2 885849386 +537 1069 2 886030938 +157 515 5 874813477 +557 1070 2 884357600 +461 347 4 885355679 +363 511 4 891495850 +596 288 4 883538847 +255 343 2 883215867 +271 282 2 885847666 +22 21 4 878886750 +455 678 3 878585344 +18 736 4 880131028 +136 525 5 882848925 +417 923 3 879647065 +276 1118 4 874791830 +66 295 3 883601456 +6 177 4 883600818 +532 1221 5 874788957 +99 763 5 885679138 +417 62 3 879648939 +385 664 3 879445335 +114 659 4 881259495 +622 66 3 882670480 +327 201 5 887820828 +247 259 3 893081411 +299 171 4 877880961 +406 919 2 879446684 +648 105 3 882212560 +384 300 4 891273809 +234 224 4 892334107 +62 199 4 879373692 +622 364 1 882672922 +601 21 3 876347113 +622 373 1 882672922 +454 1190 3 881959437 +447 153 4 878855756 +239 511 5 889178798 +256 282 3 882151017 +551 1376 1 892784524 +405 712 1 885547506 +488 496 4 891294246 +592 833 4 882608662 +647 326 3 876532517 +561 273 5 885808824 +332 651 5 888098060 +234 505 4 892333798 +181 883 1 878961847 +323 319 2 878738827 +416 209 5 893214332 +579 49 3 880952360 +178 809 4 882827084 +357 111 5 878951784 +496 33 4 876067108 +305 171 5 886323237 +525 111 4 881086051 +545 993 2 879898802 +470 248 3 879189434 +271 62 2 885849386 +617 89 4 883789294 +456 475 5 881372366 +600 403 3 888451908 +276 523 4 874787496 +200 496 5 884128904 +618 150 2 891308175 +400 294 3 885676411 +653 272 4 893275949 +561 228 3 885807930 +490 286 2 875427021 +69 237 3 882072920 +592 59 4 882956718 +385 187 4 879441728 +505 423 4 889333711 +449 100 5 879958664 +405 1225 1 885547176 +551 827 5 892784710 +592 64 5 882956039 +495 770 3 888635339 +194 580 4 879525876 +586 82 2 884062010 +587 300 4 892871171 +552 222 4 879221764 +130 527 5 875801447 +535 639 4 879618019 +234 175 2 892079076 +200 48 2 884129029 +9 402 4 886959343 +556 1065 4 882136162 +468 173 5 875295093 +561 461 3 885807369 +435 121 3 884133284 +600 210 4 888451665 +311 702 3 884365284 +225 604 5 879540778 +271 4 5 885849357 +503 38 3 879454977 +488 183 4 891293698 +435 546 4 884132942 +505 237 3 889333711 +430 165 4 877226130 +429 118 3 882386145 +650 552 4 891370031 +606 421 4 880923989 +655 126 2 887426732 +627 549 3 879530625 +314 1016 4 877886483 +378 1531 4 880056423 +651 306 5 880126473 +89 202 3 879459859 +503 558 5 880383098 +554 223 3 876232996 +536 54 2 882364876 +99 25 3 885679025 +193 294 1 889123777 +547 258 4 891282596 +642 501 2 885603740 +595 15 4 886921423 +221 346 5 885081300 +585 1535 4 891284816 +244 222 2 880604379 +642 966 5 886569140 +154 642 3 879138910 +495 195 5 888633396 +154 61 4 879138657 +648 154 5 884881621 +592 432 1 882956321 +128 478 5 879966840 +168 291 4 884287668 +347 245 5 881652230 +44 99 4 878348812 +493 117 5 884130416 +533 91 2 879190991 +601 1615 4 876348107 +627 720 2 879531397 +585 207 5 891284016 +488 211 4 891294158 +159 255 3 885501660 +574 245 5 891279362 +330 195 3 876546694 +539 58 3 879788195 +527 531 3 879456077 +638 127 2 876694861 +483 197 3 878953815 +174 340 5 886432749 +650 1474 3 891385288 +365 473 4 891304106 +437 154 4 880141129 +630 12 4 885667854 +621 151 5 880737929 +524 1204 3 884635225 +653 566 5 878854190 +234 1039 3 892078741 +321 604 5 879438651 +380 502 1 885480530 +505 133 5 889334189 +518 117 5 876823804 +105 302 5 889214193 +591 235 3 891039676 +503 186 5 880472061 +244 317 5 880602083 +125 201 3 879455019 +119 685 4 886177048 +387 619 1 886481073 +610 1558 3 888703475 +345 234 4 884991831 +286 174 4 877531537 +11 731 4 891904789 +497 72 3 879362835 +222 578 3 881060281 +475 315 4 891452177 +405 1583 1 885549543 +380 663 4 885478799 +504 323 4 887831274 +207 471 3 875509715 +621 300 3 890517589 +2 10 2 888551853 +342 135 3 874984395 +511 322 3 890005102 +607 847 4 883879638 +608 1124 4 880404846 +396 717 3 884646467 +575 194 4 878148087 +458 14 5 886394576 +41 516 5 890687242 +406 131 2 884630617 +640 385 5 874778569 +449 310 3 880410951 +190 310 4 891033607 +389 1098 4 880087096 +655 693 3 888984506 +436 186 3 887769801 +81 289 3 876533229 +655 1403 3 888813372 +181 1355 1 878963086 +643 189 4 891447093 +161 496 3 891171734 +455 100 4 878585826 +502 893 2 883702867 +601 127 4 876346810 +298 143 5 884182966 +638 161 4 876695307 +378 282 4 880044454 +13 403 2 882397271 +654 258 4 887863436 +593 100 5 875658824 +454 73 3 888267521 +378 1063 4 880046100 +553 111 4 879948869 +536 83 5 882359307 +379 563 2 880962106 +518 471 3 876822873 +7 527 5 891351772 +486 595 2 879875408 +592 823 1 882609009 +60 211 4 883327493 +450 81 4 882376188 +239 174 4 889179131 +545 739 4 884134780 +303 1153 3 879484899 +379 842 4 880525794 +108 284 3 879879911 +445 1010 1 891200506 +405 577 3 885547557 +542 588 4 886533562 +654 318 5 887864230 +480 603 4 891208239 +155 288 3 879370860 +339 199 5 891032576 +399 1086 3 882340827 +22 1002 1 878887186 +293 1048 3 888905034 +654 250 1 887863557 +429 475 4 882384579 +346 11 4 874948174 +49 270 2 888065432 +552 274 3 879222162 +217 300 4 889069555 +428 338 4 885943818 +627 704 4 879530967 +592 782 2 882956510 +483 230 5 878953592 +79 333 2 891271086 +297 347 3 885922424 +425 452 2 878738956 +621 249 5 880738282 +640 204 5 874777974 +43 1052 1 892350297 +14 124 5 876964936 +109 928 3 880572134 +369 268 5 889428642 +474 275 3 887915269 +548 117 4 891415384 +561 219 1 885809583 +637 363 2 882904148 +655 198 4 887428871 +620 148 3 889987299 +495 843 3 888637385 +524 181 3 884634731 +536 132 4 882359962 +545 135 4 884134060 +429 484 5 882384920 +416 419 4 892441448 +311 101 4 884366397 +311 684 4 884365075 +527 176 2 879455740 +58 12 5 884304895 +483 450 4 878953593 +639 166 3 891239838 +566 405 5 881650943 +125 751 5 892835624 +121 83 4 891388210 +592 820 3 882609057 +648 194 5 882213535 +409 482 4 881168712 +497 185 3 879361802 +555 269 5 879962096 +474 499 5 887924683 +312 207 5 891699121 +583 198 4 879384404 +462 288 5 886365260 +128 483 5 879966785 +456 346 5 887165765 +291 235 2 874805860 +455 518 4 879111318 +457 137 5 882393278 +403 370 3 879790344 +495 1118 5 888632888 +487 206 4 883531003 +246 204 3 884921638 +405 1053 5 885545456 +468 56 5 875286450 +234 177 3 892079040 +455 628 4 879109692 +501 288 4 883346694 +566 213 5 881649670 +308 531 4 887738057 +632 96 5 879457902 +495 145 4 888637147 +489 308 4 891447653 +620 281 5 889987852 +454 873 2 881958782 +551 479 3 892776380 +83 70 4 880308256 +548 532 4 891043910 +629 187 5 880117031 +448 902 4 891888779 +655 670 3 887430142 +308 65 3 887738301 +251 248 4 886272223 +213 192 5 878955474 +362 689 5 885019504 +486 111 4 879874693 +530 56 3 886202320 +632 159 3 879459460 +130 465 5 875801596 +264 1475 2 886123596 +268 151 3 875742470 +532 148 5 888817717 +407 648 3 875552647 +644 50 4 889077247 +16 58 4 877720118 +119 917 4 892564349 +95 207 5 880571164 +73 152 3 888626496 +354 135 3 891218230 +472 185 5 875980081 +402 475 3 876266741 +200 161 4 884128979 +579 183 4 880952038 +491 258 4 891189815 +642 596 5 885604113 +407 447 3 876338249 +343 449 5 876407138 +216 237 5 880232752 +496 50 5 876072633 +466 306 5 890284231 +534 820 3 877808340 +293 715 3 888907674 +433 303 4 880585068 +52 463 5 882922927 +592 236 3 882608061 +218 659 4 877488366 +501 124 4 883347919 +446 327 2 879787858 +530 163 3 886202320 +487 1019 5 883447117 +643 56 5 891446791 +312 526 5 891698334 +561 890 1 885807080 +328 449 3 885049607 +59 657 4 888204597 +560 597 2 879976914 +567 506 5 882425701 +319 751 3 889816136 +586 210 4 884059027 +481 678 3 885828016 +488 258 4 891293606 +307 739 2 877122317 +374 449 4 880938044 +99 591 4 885678840 +450 1286 3 882377479 +218 269 4 877487931 +279 663 3 875310394 +90 153 5 891384754 +505 161 3 889333711 +269 3 3 891446722 +429 22 5 882384744 +624 137 4 879792623 +385 254 1 879453094 +357 831 3 878952080 +450 525 3 882467271 +592 619 1 882608234 +270 226 4 876956038 +102 1228 1 888802508 +593 71 4 875661567 +567 497 5 882425901 +221 215 4 875245514 +542 23 5 886532602 +452 443 5 885544109 +487 28 4 883446352 +614 9 4 879464063 +528 181 5 886812857 +181 1152 2 878962496 +116 349 2 886977905 +622 252 1 882591582 +506 403 4 874874458 +130 531 5 875216628 +94 1073 5 891720540 +416 685 3 876697955 +315 209 5 879821003 +552 1152 3 879222002 +425 218 3 878738887 +460 294 2 882910637 +655 523 3 887427268 +537 649 3 886031720 +374 197 5 882158940 +533 133 5 879191085 +7 620 4 891353892 +366 671 5 888857990 +655 736 3 888685734 +592 682 4 882607573 +593 724 3 875670796 +504 1041 3 887910694 +606 530 4 880925074 +138 117 4 879023245 +595 369 3 886921977 +555 117 4 879962152 +260 891 5 890618729 +23 19 4 874784466 +587 682 3 892871372 +251 250 3 886272378 +216 100 5 880232597 +201 127 5 884111708 +268 235 3 875742556 +504 543 4 887908861 +559 199 5 891034040 +346 91 1 874950029 +101 7 3 877135944 +47 288 2 879439078 +214 516 5 892668173 +361 707 4 879440974 +500 1009 4 883865532 +151 88 5 879542645 +324 293 4 880575714 +437 56 4 880140325 +42 203 4 881107413 +338 52 5 879438690 +417 940 2 879649337 +616 689 4 891224748 +650 309 3 891369071 +11 39 3 891905824 +525 252 3 881086780 +639 1020 4 891240136 +495 622 2 888635886 +511 948 3 890004916 +234 785 3 892336119 +59 199 4 888205410 +425 333 3 890346411 +601 588 3 876350719 +152 527 4 882477356 +618 161 4 891308946 +610 568 4 888703648 +621 1118 3 874962824 +593 182 2 886193627 +58 511 5 884304979 +638 554 3 876695059 +204 1296 5 892392078 +316 673 2 880854083 +620 682 2 889986985 +639 1194 5 891239271 +493 742 3 884130253 +457 739 4 882549483 +380 60 4 885478292 +576 56 3 886986444 +608 673 4 880405484 +506 1244 2 884517295 +655 53 2 887429812 +110 1247 2 886988413 +181 756 2 878962866 +280 155 5 891702544 +567 491 3 882426135 +603 429 5 891956981 +437 642 1 880141441 +497 721 3 879362740 +178 62 4 882827083 +497 19 4 879310245 +479 945 5 879460785 +535 129 5 879619000 +440 328 3 891546895 +213 56 5 878955635 +510 876 2 887667574 +587 1624 2 892871752 +416 73 3 876699994 +357 275 5 878951784 +536 52 3 882360187 +624 327 4 879791819 +283 204 4 879298239 +617 100 4 883789425 +1 131 1 878542552 +436 649 5 887771269 +358 639 4 891269584 +13 17 1 882396954 +387 190 5 886483150 +312 175 3 891699321 +342 756 3 874984895 +178 230 4 882826889 +405 55 1 885547909 +463 1033 2 890530703 +14 820 3 882839856 +279 151 4 875249259 +477 724 4 875941086 +625 166 3 891960843 +621 769 3 874964991 +535 116 3 879618246 +453 238 4 877554396 +217 222 5 889069944 +276 453 1 880913767 +417 625 4 879649064 +521 625 3 885253937 +640 732 4 886354499 +6 12 4 883601053 +429 319 3 882387685 +409 1194 5 881107750 +363 778 4 891495510 +99 332 3 885678348 +270 742 2 876954248 +381 344 3 892697905 +468 200 4 875292319 +655 66 2 890887261 +276 367 3 874791667 +44 631 1 883613297 +639 527 4 891239323 +201 226 3 884114232 +561 317 3 885808824 +655 281 2 887426732 +184 50 4 889907396 +608 332 4 880402982 +442 975 3 883391377 +648 69 1 884628564 +519 1062 5 883250148 +504 195 4 887838510 +593 125 4 875659708 +313 193 4 891013887 +615 69 4 879448632 +639 517 2 891239492 +125 412 3 892839191 +474 238 4 887924083 +234 40 2 892335894 +632 237 3 879458570 +16 204 5 877722736 +320 233 4 884749281 +536 449 4 882361262 +655 52 3 891585279 +654 558 3 887864471 +610 402 5 888704000 +41 430 5 890692860 +236 196 1 890115966 +570 326 1 881262437 +617 242 3 883788511 +360 271 2 880354839 +625 209 3 891262633 +568 988 1 877906737 +407 180 4 875044597 +588 220 5 890025023 +645 675 4 892053747 +234 606 5 892318060 +532 51 5 888635365 +533 83 2 879191902 +529 294 4 882535466 +655 224 3 887425845 +576 275 3 886985695 +551 975 5 892784130 +429 629 3 882387163 +612 322 3 875324294 +95 182 2 879198210 +655 918 2 892436609 +547 312 4 891282824 +450 77 4 887139143 +634 460 3 875729710 +616 750 5 891224590 +601 1079 3 876347148 +381 487 5 892697083 +593 584 3 875671579 +56 1057 3 892683978 +160 195 4 876859413 +650 197 4 891372233 +59 523 4 888204389 +394 402 4 880888775 +622 780 4 882671574 +130 315 4 884623887 +313 177 4 891015566 +116 748 2 876452186 +374 185 5 880395665 +151 953 5 879524948 +347 930 2 881653340 +89 275 5 879441307 +138 222 4 879023345 +643 143 4 891447868 +543 578 3 877546305 +100 1234 1 891375068 +308 602 4 887737536 +425 145 3 878738956 +640 239 5 874778274 +450 921 4 882372178 +327 1070 4 887744513 +484 230 5 891195417 +301 418 3 882076751 +590 100 5 879438825 +655 344 4 888204230 +627 740 1 879530501 +655 14 3 891585450 +527 208 4 879456289 +551 156 5 892777723 +295 97 5 879517761 +457 553 5 882396314 +502 678 3 883702448 +405 1468 1 885546287 +614 281 3 879464308 +596 294 4 883539079 +603 380 4 891955972 +381 1098 4 892696045 +503 526 3 880472188 +649 1 5 891440235 +409 481 3 881107602 +452 64 4 875266518 +60 705 4 883326710 +94 81 4 885870577 +658 276 4 875145572 +549 678 3 881671982 +316 482 3 880854337 +339 64 5 891033629 +380 100 4 885478193 +272 175 5 879455043 +435 9 4 884131055 +553 174 4 879949073 +377 682 3 891296448 +7 503 4 891353950 +535 727 4 879618502 +551 875 4 892775970 +315 203 3 879821194 +621 17 4 880739965 +566 218 4 881650242 +7 444 5 891354288 +223 257 4 891550005 +417 364 3 880953014 +533 756 4 879193004 +401 659 3 891033061 +655 935 3 887425498 +502 342 4 883702088 +351 332 5 879481495 +296 688 1 884196374 +180 196 5 877355617 +429 845 4 882386401 +207 202 3 875506771 +236 429 1 890118632 +456 196 4 881374649 +607 382 3 883880110 +533 58 4 888845150 +406 845 3 879540051 +555 302 3 879962096 +334 143 2 891548647 +181 1022 1 878962006 +592 306 5 882607528 +437 238 5 880140369 +445 100 2 890987569 +504 212 4 887909911 +399 542 3 882344021 +336 42 5 877757669 +648 411 2 882212288 +374 986 3 880936113 +323 288 3 878738827 +244 629 4 880606442 +448 286 2 891887393 +567 646 5 882427046 +373 472 3 877111951 +524 480 4 884634911 +554 43 3 876369968 +222 712 3 881060735 +416 651 4 886316439 +141 25 5 884585105 +450 1048 3 882397813 +615 199 5 879448599 +416 181 5 893213019 +614 288 2 879463630 +437 185 5 880140192 +585 971 3 891282894 +438 245 5 879867960 +585 1323 3 891284588 +530 60 5 883790997 +477 36 4 875941224 +371 435 3 877487751 +255 895 2 883216185 +639 210 3 891240136 +548 23 5 891044410 +85 328 3 884906441 +280 393 4 891702323 +416 676 5 893213549 +553 218 4 879948996 +399 1541 3 882510107 +554 14 4 876550182 +567 641 5 882426158 +307 1028 4 875746067 +653 257 3 890181185 +92 174 5 875654189 +141 985 4 884585363 +655 179 4 888813272 +303 824 3 879483901 +342 408 5 875318266 +656 689 2 892319276 +656 327 2 892318738 +374 566 3 880394571 +579 216 5 880952299 +621 63 1 874963445 +189 150 4 893277702 +387 558 4 886480384 +399 215 2 882510226 +10 530 4 877892210 +498 288 3 881953815 +405 433 4 885545070 +643 484 5 891448756 +616 315 4 891224447 +303 1023 2 879544898 +91 192 4 891439302 +620 501 4 889988036 +551 80 1 892785300 +109 111 4 880564570 +244 697 4 880607335 +63 1010 3 875747829 +592 215 5 882956467 +16 227 5 877727193 +92 116 3 875640251 +295 65 5 879517655 +440 750 5 891546784 +650 50 5 891372232 +592 1609 1 882608698 +626 682 3 878771447 +554 318 5 876369730 +606 265 4 880924663 +393 1539 2 889730460 +92 383 1 876175191 +533 72 2 879192157 +499 692 4 885599119 +298 168 5 884182933 +401 735 5 891033158 +503 482 5 880383588 +450 965 4 882394364 +450 26 5 882396489 +510 333 3 887667465 +121 118 2 891390501 +582 93 5 882960844 +562 477 4 879195688 +639 198 2 891239885 +621 100 5 880227104 +271 405 2 885848179 +542 210 3 886532706 +181 758 1 878963418 +561 732 3 885809958 +592 250 4 882608145 +524 781 1 884636583 +504 218 4 887910267 +653 226 3 878867346 +276 679 3 874792520 +553 1200 3 879948964 +479 173 5 879460984 +647 604 4 876537591 +56 226 4 892679277 +280 294 2 891700021 +245 597 4 888513326 +85 606 4 886282959 +587 259 4 892871223 +637 332 4 882900888 +612 15 4 875324455 +526 250 2 885682477 +620 240 5 889987954 +348 25 4 886523521 +13 128 1 882397502 +595 282 4 886921344 +279 169 5 875306910 +653 576 1 880152955 +300 409 4 875650329 +462 22 5 886365498 +26 313 5 891386368 +303 474 5 879466457 +201 318 5 884111269 +378 930 2 880044906 +468 1051 2 875284635 +450 651 5 882376658 +109 227 5 880579417 +622 132 4 882669851 +536 215 4 882360530 +247 1022 4 893097024 +618 168 5 891308342 +43 482 4 875981421 +505 77 3 889334248 +435 227 4 884133372 +537 735 3 886031576 +515 682 4 887659192 +29 182 4 882821989 +328 637 3 885047865 +660 82 2 891200491 +492 69 3 879969385 +521 268 5 884475470 +447 559 3 878856172 +200 193 4 884129209 +532 482 5 888629254 +642 1011 3 885842351 +343 68 1 876406878 +559 523 4 891035812 +201 218 4 884114471 +327 150 4 887744356 +625 169 5 891263665 +452 404 4 875561978 +566 96 3 881650171 +90 647 5 891383204 +524 684 4 884636236 +292 1073 5 881105318 +618 9 3 891308141 +561 8 3 885807455 +279 679 4 884556545 +618 241 4 891309887 +534 147 5 877808031 +462 300 5 886365260 +151 469 1 879528852 +241 689 3 887250085 +109 395 3 880583672 +160 922 5 876767621 +346 144 4 886273914 +504 106 3 887831879 +537 458 3 886030176 +463 107 3 889936181 +655 98 4 887472744 +164 252 4 889402265 +303 70 4 879467739 +179 288 5 892151489 +474 282 4 887916411 +610 489 4 888703343 +635 269 5 878878587 +445 1598 1 891200592 +504 386 3 887912431 +595 994 4 886921897 +115 240 5 881171982 +658 8 5 875147873 +582 124 4 882961082 +477 289 5 875941793 +619 332 4 885953742 +268 576 1 875744289 +392 58 4 891038433 +378 694 3 880055101 +622 722 3 882670862 +100 270 3 891375016 +125 430 4 879454309 +528 523 4 886101846 +659 66 4 891385306 +86 242 4 879569486 +447 96 5 878855847 +466 210 4 890284706 +655 726 2 887475055 +551 717 3 892785164 +495 54 5 888637768 +487 921 5 884042629 +417 433 4 879648403 +394 238 5 880887348 +655 945 2 887476008 +451 301 4 879012431 +496 173 5 876065349 +623 692 3 891034951 +152 1300 4 886535827 +336 1048 4 877757134 +339 174 4 891032320 +18 386 2 880131986 +555 357 4 879975455 +610 97 3 888703453 +354 186 4 891217811 +532 450 2 874796421 +305 179 1 886323966 +390 329 3 879693608 +69 7 5 882126086 +586 249 2 884058005 +561 229 3 885810271 +638 172 4 876694787 +585 1121 4 891283339 +484 562 3 891195565 +321 519 4 879441336 +436 47 4 887769930 +290 211 3 880474235 +341 1280 2 890757782 +363 201 2 891495371 +648 133 4 882212651 +624 242 4 891961040 +118 201 5 875385198 +276 411 4 874786807 +60 69 4 883326215 +307 588 4 877118284 +58 255 4 890321652 +543 226 4 875663372 +269 417 2 891451303 +523 476 3 883702441 +653 153 2 878867228 +488 238 1 891375965 +577 241 5 880474766 +176 237 3 886048145 +653 1210 2 880153705 +493 48 4 884130995 +477 778 4 875941191 +56 42 4 892676933 +330 69 5 876546890 +276 768 3 874793118 +308 665 4 887741003 +524 1454 3 884637128 +72 647 1 880036550 +639 962 1 891243532 +588 215 5 890024564 +437 90 3 880143289 +56 53 3 892679163 +393 144 3 887746174 +606 410 3 880921656 +629 162 5 880117361 +452 427 4 875264976 +241 270 3 887250026 +551 118 5 892784008 +495 924 3 888634441 +378 298 3 883835761 +234 480 4 892078485 +529 245 3 882535639 +239 745 5 889180338 +561 231 2 885810744 +90 234 4 891383835 +58 25 4 884304570 +7 591 3 891352179 +282 268 4 879949438 +621 383 2 874963166 +606 423 5 880925200 +146 340 4 891457714 +375 573 4 886622131 +293 77 2 888907210 +554 209 4 876232997 +655 185 4 887430102 +363 640 2 891496927 +627 724 2 879530305 +215 517 5 891436543 +559 318 5 891033835 +634 597 4 877017923 +336 785 1 877758935 +227 1067 4 879035572 +445 268 1 890987410 +334 79 4 891546992 +454 478 2 888267487 +226 236 3 883889844 +487 92 4 883446600 +261 245 4 890454190 +413 690 4 879968793 +643 820 3 891446381 +59 755 4 888206254 +279 1012 5 875298447 +634 129 4 875729105 +440 313 4 891546631 +622 432 5 882670009 +342 433 5 874984395 +640 1073 5 874778299 +478 1101 4 889396005 +638 181 5 876694787 +277 472 1 879544058 +623 483 5 891035112 +592 484 4 882956551 +648 1050 4 884797033 +650 521 3 891387616 +222 44 3 881059877 +336 1446 1 877757790 +218 642 3 881288351 +593 1028 3 875659896 +506 73 4 874873703 +133 902 3 890588672 +548 302 4 891042194 +604 201 3 883668352 +532 164 5 892519934 +264 116 4 886122892 +586 161 5 884062671 +551 591 5 892783612 +588 751 3 890014887 +629 269 3 880115840 +94 164 3 891721528 +385 521 3 879446208 +315 286 5 879799301 +497 183 4 879310825 +648 1244 3 882212373 +389 923 5 880087151 +276 193 4 874790952 +254 323 3 886470765 +420 478 3 891356864 +58 213 5 884663379 +599 237 5 880951595 +655 347 3 887424948 +188 118 3 875072972 +429 500 1 882384772 +615 707 3 879447990 +650 217 3 891389162 +239 1332 3 889180888 +650 7 4 891369656 +151 408 5 879524222 +104 750 5 888442171 +159 7 5 880485861 +330 205 3 876546105 +452 465 5 886148336 +506 147 3 888848342 +426 1451 4 879444734 +276 183 5 874792402 +577 11 2 880474293 +26 591 3 891351590 +297 752 4 888643376 +505 96 4 889333442 +538 183 4 877106768 +160 514 4 876858091 +660 392 2 891200072 +222 328 5 877562772 +629 332 4 880116722 +543 586 3 877547190 +393 771 3 889731793 +392 257 5 891038184 +226 89 5 883889229 +658 257 4 875145667 +471 422 5 889827982 +650 737 2 891383832 +654 821 3 887864907 +201 186 3 884114069 +537 53 2 886032029 +276 725 2 877935392 +648 554 4 884883323 +538 31 3 877109422 +85 582 4 879828014 +354 81 3 891217249 +614 546 1 879463965 +499 127 4 885598312 +492 286 4 879969099 +629 204 5 880117285 +363 284 2 891495987 +537 111 3 886030077 +582 181 4 882961301 +263 443 5 891298914 +585 70 5 891286256 +646 690 3 888528417 +201 273 2 884112352 +577 423 4 880472124 +381 887 3 892697941 +218 591 3 881288574 +361 79 4 879441286 +6 302 4 883268222 +437 482 5 880140051 +347 550 5 881654734 +65 179 3 879216605 +592 508 5 882608021 +551 172 2 892778164 +95 485 5 888954129 +183 230 5 892323452 +403 129 4 879785822 +480 504 4 891208822 +155 327 2 879371061 +324 259 5 880575107 +541 477 4 883865654 +221 286 4 885081264 +189 1402 4 893266051 +328 328 4 885044566 +334 134 5 891545973 +181 263 1 878961709 +599 111 5 880951885 +543 519 4 875662979 +642 1181 2 885607143 +434 819 3 886724873 +244 71 4 880606874 +324 475 5 880575449 +655 1158 3 888984255 +608 238 5 880403810 +566 327 3 881649273 +541 8 5 883874645 +644 243 4 889076364 +90 194 5 891383424 +523 167 4 883702233 +625 188 4 891262724 +378 180 3 880045822 +299 730 4 889501926 +119 255 3 874775914 +399 210 3 882342805 +197 307 3 891409323 +458 529 3 886398120 +52 473 4 882922661 +254 393 3 886473489 +214 298 3 891543191 +518 591 3 876823447 +490 151 1 875428185 +604 670 5 883668352 +6 309 2 883268430 +499 272 5 885597680 +30 50 3 875061066 +514 275 5 875463028 +648 797 3 884883031 +521 227 3 885253808 +133 243 3 890589035 +185 116 4 883526268 +472 56 5 875979853 +358 8 5 891269179 +262 1014 5 879961954 +645 1018 3 892053518 +593 692 3 886193724 +85 152 5 879454751 +524 494 4 884637409 +13 471 1 882140455 +643 117 3 891445823 +11 603 4 891905783 +299 1 3 877877535 +524 831 3 884628212 +577 203 3 880474455 +62 582 4 879374753 +296 111 3 884196712 +624 475 4 879793223 +532 252 4 888636478 +95 209 4 879197021 +7 384 3 891353710 +280 2 3 891701278 +452 211 2 875266197 +21 992 2 874951349 +334 42 4 891545741 +94 930 2 891724747 +234 317 2 892334189 +18 414 4 880131054 +403 864 4 879786747 +655 205 3 887650538 +474 211 5 887925751 +72 187 4 880036638 +629 463 4 880117852 +488 500 4 891294568 +7 487 3 891352178 +270 421 5 876955633 +660 167 2 891201565 +327 111 4 887819462 +54 307 4 891813846 +58 497 2 884305123 +61 333 3 891206232 +327 682 3 887737629 +592 705 5 882955978 +423 1238 3 891394874 +318 77 3 884497078 +397 641 5 885349999 +312 490 5 891699655 +489 327 5 891448409 +663 588 4 889493628 +605 1040 2 879425689 +653 436 1 880151673 +639 1121 2 891239885 +458 278 2 886395469 +374 1010 5 880393921 +524 451 3 884637202 +634 1199 1 875728913 +312 607 5 891698424 +1 109 5 874965739 +294 1134 3 877819761 +90 126 2 891384611 +145 316 5 888396966 +648 1072 2 884882527 +551 505 5 892777397 +562 66 1 879195927 +653 622 3 880152377 +324 1 5 880575412 +40 272 2 889041283 +601 671 4 876348572 +563 412 2 880507108 +615 127 5 879448399 +537 176 2 886031606 +328 182 2 885045678 +518 126 4 876823018 +532 501 5 889235367 +586 651 3 884059287 +565 1018 5 891037862 +201 233 4 884310104 +497 273 4 879310604 +415 322 4 879439205 +598 350 4 886711452 +532 292 4 884594621 +397 100 5 882839517 +498 186 4 881960591 +249 4 4 879572142 +642 1178 3 885606067 +588 723 2 890026459 +645 197 5 892055244 +295 740 4 879517225 +84 258 4 883449347 +169 204 3 891359317 +90 519 5 891384423 +354 286 4 891180445 +527 202 3 879456691 +18 753 4 880129816 +417 51 3 879648526 +13 299 3 881515698 +460 250 2 882912261 +484 849 3 891195506 +630 258 3 885666143 +389 416 4 880087996 +472 665 4 875983023 +653 1014 2 884405682 +130 578 5 878537681 +465 511 4 883530991 +472 7 5 892790953 +16 321 3 877717116 +70 429 3 884150369 +642 552 4 886569347 +648 98 4 884368313 +321 170 4 879438651 +646 304 3 888529014 +643 203 4 891446956 +191 331 4 891560631 +189 378 4 893266137 +457 191 5 882396659 +655 550 2 887611677 +82 678 1 884714726 +388 628 4 886436661 +336 15 4 877754621 +371 431 5 880435601 +421 82 4 892241294 +250 993 5 878089881 +493 455 5 884131690 +627 172 3 879531196 +541 118 4 883871670 +401 11 2 891033227 +152 66 5 886535773 +555 169 5 879975419 +486 1369 3 879874582 +650 399 3 891381784 +303 22 5 879467413 +339 74 4 891033382 +385 433 4 879442673 +332 756 2 887938687 +537 582 3 886030966 +271 487 4 885848770 +577 338 3 880469983 +625 213 4 891999608 +1 182 4 875072520 +655 303 4 888474107 +534 274 3 877807846 +47 874 3 879439078 +514 531 3 875308734 +493 483 5 884131534 +43 969 5 875981159 +640 720 3 874778612 +650 708 3 891383356 +660 96 3 891200430 +588 282 5 890015894 +227 129 5 879035387 +458 98 3 886396240 +267 141 4 878972147 +464 293 5 878355033 +301 163 3 882076264 +655 805 2 888474327 +13 667 1 882397040 +341 330 5 890758113 +567 306 3 882426327 +561 81 2 885808000 +606 549 4 880926862 +653 83 5 878853936 +372 176 3 876869667 +504 527 4 887838624 +655 58 3 887427600 +534 619 4 877807653 +360 172 4 880356240 +108 124 4 879879757 +363 747 5 891495918 +394 496 5 880887206 +219 936 4 889387284 +291 924 4 874833962 +650 480 5 891371090 +653 1140 1 880153841 +286 888 5 884583549 +617 590 1 883789747 +466 56 4 890284706 +234 845 3 892335825 +291 90 5 874871800 +623 629 3 891034973 +298 946 3 884182868 +363 550 4 891497205 +592 1039 4 882955582 +479 213 4 879461039 +425 24 2 878738386 +96 89 5 884402896 +498 136 3 881958174 +635 748 2 878878838 +608 337 4 880402982 +94 735 5 891721528 +514 483 4 875462795 +429 298 5 882386145 +474 697 4 887928498 +406 487 3 884630973 +487 412 1 883445220 +643 597 2 891446301 +593 83 5 886194064 +198 237 2 884206191 +311 64 5 884364502 +145 88 5 875272833 +524 1129 2 884832580 +293 402 2 888907702 +659 507 5 891383561 +655 162 3 888474165 +542 195 3 886532294 +505 510 3 889334477 +642 53 2 885604940 +449 936 5 879958721 +655 100 3 888474138 +472 68 5 892791017 +271 173 4 885848672 +643 928 4 891445660 +505 660 3 889334477 +373 746 4 877098714 +457 209 5 882553113 +526 343 3 885682264 +588 832 1 890027865 +527 652 4 879456248 +18 747 3 880132225 +497 24 4 879310260 +290 199 3 880474799 +373 1119 5 877105708 +161 640 2 891171558 +435 163 3 884131489 +489 261 2 891449155 +597 293 5 875340939 +504 660 4 887839195 +417 257 3 879646244 +458 651 3 886397988 +655 1651 4 891913500 +393 354 4 889554151 +535 210 5 879618160 +655 51 2 887611677 +457 568 4 882547590 +543 410 3 877453103 +442 367 2 883388887 +592 174 5 882955918 +601 186 4 876349542 +103 211 3 880420565 +416 319 5 893213444 +630 243 2 885666301 +500 996 1 883875241 +279 301 4 878082781 +39 748 5 891400704 +315 121 2 879821300 +437 265 3 880142942 +629 886 3 880116278 +370 480 4 879434886 +407 710 4 875046460 +515 323 3 887659192 +464 176 4 878355211 +419 615 5 879435785 +506 198 2 874873703 +592 919 5 882608061 +398 430 4 875659265 +326 616 5 879875724 +438 21 2 879868683 +379 131 5 882563797 +660 845 3 891198385 +385 183 3 879442706 +647 588 4 876531955 +514 988 2 885180989 +64 531 3 889740718 +605 133 5 879424661 +523 163 5 883702411 +545 1 5 879901359 +479 183 5 889125563 +646 682 3 888529153 +630 71 3 885667854 +363 709 4 891495003 +23 211 4 874786512 +94 654 5 885872684 +151 195 3 879524642 +398 2 3 875718614 +429 566 3 882386357 +373 166 5 877098262 +495 151 5 888635236 +72 471 4 880035588 +640 663 5 874778240 +659 646 4 891332122 +642 65 4 886132172 +616 272 5 891224517 +156 806 3 888185777 +593 158 3 875671891 +458 301 1 889323539 +236 750 5 890117676 +655 727 2 888685914 +592 1265 1 882607690 +200 483 5 884128426 +517 1 3 892659892 +194 371 3 879527584 +373 239 3 877105708 +504 223 5 887832364 +486 322 2 879874262 +224 582 4 888104030 +1 71 3 876892425 +653 157 5 878855483 +90 56 5 891384516 +500 464 4 883875274 +564 345 4 888718521 +13 492 5 882140552 +198 195 3 884207267 +457 22 5 882396705 +592 521 5 882955703 +650 751 2 891369001 +401 630 4 891033370 +10 319 3 877886223 +504 1444 3 887911133 +99 240 4 885679279 +618 477 2 891308791 +536 662 5 882360100 +660 510 3 891199056 +592 546 4 882608500 +524 516 4 884634578 +545 633 3 884133963 +213 455 4 878870749 +451 680 1 879012811 +49 57 4 888066571 +290 930 3 880732131 +171 305 2 891034606 +423 471 3 891395626 +291 974 1 874833962 +1 223 5 876892918 +114 615 2 881260441 +239 172 4 889178833 +493 65 4 884132146 +472 1090 5 875983321 +537 919 4 886030012 +401 25 4 891032412 +532 354 4 887672256 +401 1009 4 891032626 +141 676 5 884585001 +227 1143 4 879035803 +454 660 3 888267128 +450 934 3 882471362 +23 102 3 874785957 +399 660 3 882510250 +642 259 5 885605095 +525 125 3 881085709 +597 15 5 875341758 +173 687 1 877557132 +291 219 4 874867785 +591 1111 4 891031603 +85 23 4 879454272 +633 79 5 875325128 +268 574 2 875745579 +44 64 5 878347915 +437 946 3 881002092 +514 713 3 875309415 +585 1009 5 891285491 +514 70 5 875462826 +536 596 3 882317312 +560 246 5 879976109 +92 72 3 875658159 +387 193 5 886484065 +43 28 4 875981452 +11 15 5 891903067 +458 582 1 886398488 +493 12 3 884132225 +312 640 2 891698951 +461 285 4 885356112 +345 66 3 884993069 +548 654 5 891044411 +655 744 2 887427636 +18 549 4 880131173 +588 97 2 890023587 +586 496 3 884059426 +608 4 3 880406168 +538 381 3 877110175 +450 1444 4 882468239 +236 181 4 890115933 +250 116 4 878089921 +572 476 4 879449573 +267 209 5 878971745 +569 458 2 879794498 +453 1230 2 888202271 +582 7 5 882961082 +293 531 4 888905642 +119 340 4 886176485 +294 148 3 877820155 +664 179 4 876523654 +311 796 3 884365889 +645 175 5 892054537 +568 435 2 877907721 +542 127 5 886532294 +472 485 3 875980377 +606 455 2 880923349 +522 430 5 876961314 +526 748 1 885682214 +373 627 4 877105901 +536 135 5 882359370 +174 546 3 886514323 +457 1168 5 882548761 +406 451 2 880131954 +518 864 3 876823324 +406 5 4 880132276 +215 28 4 891435416 +633 234 4 877212594 +531 327 3 887048718 +495 452 2 888637070 +618 173 3 891307404 +537 573 2 886031886 +43 301 5 875975135 +399 399 3 882342354 +72 380 1 880036854 +72 685 4 880035588 +95 67 2 879198109 +561 642 3 885809356 +99 1079 3 885679504 +645 512 5 892055072 +363 1012 4 891499355 +627 685 3 879531351 +236 934 4 890117570 +23 131 4 884550021 +405 842 5 885548932 +541 651 5 883864782 +394 164 4 880886612 +664 89 5 878092649 +222 934 2 877563758 +523 194 5 883702210 +537 44 3 886031886 +540 323 3 882156851 +158 583 3 880134477 +343 4 5 876408139 +389 65 4 880088171 +663 181 4 889493732 +267 679 4 878974509 +625 546 2 891273897 +653 211 1 880149947 +21 438 1 874951858 +106 495 4 881451016 +387 92 4 886483098 +488 185 4 891376137 +347 290 3 881653132 +537 873 2 886029211 +551 1169 4 892778297 +649 1016 4 891440511 +231 597 3 879966146 +3 352 2 889237055 +592 1047 1 882608736 +213 756 2 878955319 +429 1048 2 882386966 +293 1041 2 888907674 +538 710 3 877107726 +645 523 5 892053686 +409 286 5 881104697 +85 732 3 879455238 +591 580 2 891031526 +244 1109 4 880607116 +429 96 4 882387053 +399 575 1 882350762 +536 1039 5 882360029 +528 615 4 886101715 +457 50 5 882393620 +577 58 4 880474414 +495 447 4 888635420 +622 1303 2 882672060 +577 545 3 880476578 +18 434 3 880131297 +659 601 3 891386241 +235 483 5 889655204 +490 150 5 875428765 +401 161 2 891033603 +13 638 3 881515239 +507 898 5 889964202 +501 1007 4 883995203 +601 71 1 876349937 +618 762 3 891309636 +142 186 4 888640430 +109 542 3 880582045 +638 144 5 876694861 +457 223 5 882396734 +313 215 4 891015011 +577 866 5 880470570 +330 100 4 876544277 +655 1097 3 887426008 +524 436 4 884636864 +538 735 3 877108785 +374 248 1 880393191 +207 196 4 880911845 +476 386 2 883365135 +523 934 4 883702602 +254 82 4 886472767 +639 1163 1 891239349 +525 250 3 881085917 +368 183 5 889783678 +656 245 1 892319084 +90 154 5 891384516 +469 215 4 879523802 +517 222 4 892660033 +62 380 5 879375626 +545 413 4 879899977 +472 21 3 875978686 +479 295 1 879460424 +161 204 2 891170947 +589 294 5 883352600 +492 212 3 879969367 +297 419 3 875240016 +643 443 4 891446919 +61 271 1 892302231 +655 509 3 887427441 +650 665 2 891381819 +49 358 1 888065805 +663 1047 4 889492679 +419 604 5 879435590 +345 762 5 884991285 +401 515 4 891032367 +90 387 5 891385215 +629 880 4 880116722 +16 583 4 877720186 +657 690 4 884238002 +629 195 4 880116847 +312 596 5 891699626 +642 1079 5 885605987 +157 597 3 886890406 +615 527 4 879448399 +328 204 3 885045993 +201 258 2 884110667 +629 207 4 880117000 +405 1091 1 885549004 +324 328 4 880575002 +405 83 1 885545974 +280 496 5 891700321 +409 523 4 881106682 +655 959 3 887427958 +276 82 4 874792402 +430 328 4 877225327 +524 301 4 884321179 +659 607 5 891331825 +463 477 2 877385489 +496 164 3 876066153 +116 11 5 886310197 +51 210 4 883498844 +477 553 5 875941155 +353 905 4 891402674 +655 685 2 887426666 +665 762 4 884290480 +506 261 3 885135514 +665 287 4 884290575 +311 660 4 884365252 +387 206 4 886483429 +49 324 4 888065702 +554 692 4 876549579 +334 865 2 891549631 +605 827 3 879429729 +343 50 5 876402814 +387 1018 3 886483526 +663 245 4 889491891 +450 71 3 882377358 +56 655 4 892676996 +303 251 4 879544533 +450 98 4 882371732 +320 204 5 884750717 +552 50 4 879221876 +529 326 4 882535304 +399 204 3 882342061 +13 895 1 883670515 +593 77 4 875671619 +595 930 2 886921870 +551 421 4 892778202 +416 137 3 876697165 +291 411 4 874834220 +268 622 3 875310145 +207 435 4 875506807 +493 171 5 884130825 +664 73 2 878090764 +275 432 4 875154535 +425 117 3 878738435 +181 300 3 878961227 +253 153 3 891628278 +593 451 3 875672999 +579 603 5 880952006 +97 434 4 884239791 +397 1001 1 885350326 +582 760 3 882962886 +77 31 3 884753292 +468 144 5 875287826 +618 959 4 891309756 +633 410 2 875325865 +445 55 1 890987712 +497 222 3 879310580 +303 85 3 879484588 +295 357 4 879517136 +637 1374 1 882903447 +514 680 1 885180893 +588 272 5 890014748 +435 845 3 884132100 +291 1012 4 874805892 +174 246 5 886433833 +500 45 4 883874170 +588 110 3 890027247 +104 591 4 888465263 +500 531 3 883873911 +506 55 4 874873287 +429 114 5 882385663 +598 313 5 886711452 +489 243 4 891445389 +102 612 4 879082395 +139 100 5 879538199 +237 134 5 879376327 +382 122 3 875946440 +514 470 3 875462901 +276 1098 4 880913684 +594 126 3 874781173 +158 576 4 880134607 +201 682 3 884110887 +125 172 5 879454448 +167 530 5 892738453 +643 712 3 891449249 +540 310 4 882156710 +332 845 3 887938421 +291 282 4 874833788 +297 529 3 875238778 +648 252 4 882212374 +241 310 4 887249576 +653 310 4 884405406 +614 1009 3 879464119 +255 56 5 883216448 +387 196 2 886484012 +518 1011 4 876823645 +429 233 3 882385593 +474 215 5 887926804 +89 235 5 879441657 +379 137 5 890464307 +555 120 4 879964334 +379 436 3 885063346 +623 88 4 891034973 +201 469 4 884113453 +514 65 3 886190207 +170 304 4 887646133 +308 614 3 887739757 +398 194 5 875717638 +116 479 4 876454191 +524 77 3 884637095 +429 631 4 882385243 +373 568 4 877100199 +550 125 4 883425958 +239 45 5 889180578 +567 156 5 882426055 +440 1105 5 891548567 +620 99 3 889988005 +345 639 4 884993139 +469 611 5 879525237 +317 354 4 891446251 +640 566 4 874778569 +466 96 5 890284819 +95 65 4 879197918 +437 1036 5 880143562 +484 431 4 891194692 +486 1375 3 879874449 +409 708 4 881109019 +425 689 2 890346517 +363 22 3 891494962 +201 303 2 884110667 +653 732 2 878866724 +573 185 3 885844605 +344 367 5 884901560 +584 172 4 885778080 +574 302 4 891278860 +13 657 4 882139829 +493 22 5 884131114 +12 161 5 879959553 +493 238 3 884131985 +443 687 3 883504889 +11 430 3 891905032 +500 475 5 883865232 +197 403 3 891410038 +608 961 4 880405431 +326 173 5 879874989 +642 240 3 885606137 +657 300 2 884237751 +541 432 4 883874716 +648 203 1 884796571 +660 252 2 891198459 +591 514 4 891031383 +177 322 2 880130534 +65 423 5 879216702 +500 135 5 883875041 +122 469 5 879270644 +343 176 5 876405553 +264 100 5 886122261 +299 792 4 889503112 +639 51 2 891239613 +363 691 3 891493663 +326 229 3 879876941 +295 561 5 879518696 +5 396 5 875636265 +532 305 3 878372701 +493 209 5 884130933 +410 316 4 888627138 +600 50 4 888451492 +467 117 2 879532437 +615 988 1 879447735 +334 856 4 891545926 +592 313 5 882955258 +621 881 2 883798770 +201 1128 4 884140825 +194 432 4 879524007 +393 291 4 887744202 +375 233 4 886621985 +541 62 4 883871644 +295 265 4 879518042 +454 435 2 881960145 +452 521 3 885545770 +59 184 4 888206094 +536 97 3 882360662 +619 226 5 885954133 +618 1468 3 891308665 +603 923 4 891957139 +561 285 4 885808715 +72 56 5 880037702 +457 59 5 882397575 +660 926 2 891201587 +96 127 5 884403214 +176 298 4 886047918 +342 846 2 875318688 +653 527 2 878855510 +118 175 5 875384885 +373 679 2 877107355 +541 121 3 883871695 +10 273 4 877888613 +331 1296 5 877196820 +197 241 3 891409893 +468 1012 4 875280462 +387 258 4 886480818 +148 132 4 877020715 +665 527 3 884294880 +458 289 2 889323582 +551 402 4 892784049 +542 150 2 886532908 +650 429 4 891383523 +352 156 4 884290428 +595 926 1 886921897 +40 310 3 889041283 +175 133 4 877107390 +425 823 3 878738757 +503 840 1 879454292 +655 1370 3 890887261 +378 1145 3 880334409 +622 15 4 882590670 +13 179 2 882140206 +457 819 2 882396001 +407 201 4 875045240 +58 651 4 884305185 +492 291 4 879969692 +234 28 4 892079538 +601 133 4 876350812 +639 212 4 891239550 +416 369 2 888701033 +452 490 4 875261350 +650 1119 3 891383303 +358 512 5 891269511 +532 9 5 893119438 +546 347 5 885139580 +577 1209 4 880476578 +666 56 4 880139090 +490 7 3 875427739 +655 476 2 887428671 +121 644 4 891388035 +60 230 4 883327441 +239 165 5 889180411 +592 342 2 882607745 +37 841 3 880915711 +577 4 4 880474635 +58 135 4 884305150 +501 118 3 883348474 +56 395 3 892911625 +646 346 2 888528392 +159 1023 2 880557741 +605 237 3 879424661 +501 410 4 883348207 +59 479 5 888205370 +555 288 3 879962096 +608 301 1 880402633 +498 210 2 881957054 +131 269 5 883681723 +450 233 3 882474001 +644 121 5 889077344 +666 173 4 880139253 +515 258 4 887658676 +593 9 3 875659306 +642 623 4 886570010 +56 265 4 892676314 +648 33 1 884881722 +374 423 3 880394484 +392 209 5 891038978 +653 180 5 878854593 +380 265 3 885481179 +405 561 1 885548475 +409 1073 4 881107750 +609 314 1 886895941 +405 48 1 885546154 +234 197 5 892333616 +561 1230 3 885810813 +405 694 1 885546336 +405 1072 1 885547222 +660 184 3 891200741 +73 748 2 888792247 +498 56 3 881957353 +585 1344 3 891282573 +605 9 4 879365773 +429 742 4 882386711 +69 879 1 882027284 +244 949 4 880606874 +548 121 5 891415939 +55 79 5 878176398 +486 93 4 879874629 +666 1047 3 880313858 +552 117 3 879222412 +569 121 3 879794699 +655 273 4 887426373 +632 172 5 879457157 +357 304 5 878951101 +305 770 3 886324521 +592 253 1 882608279 +606 31 4 880925199 +524 435 4 884635053 +661 183 4 876035466 +389 661 4 880165168 +479 274 4 879460370 +195 1414 2 874825826 +70 173 4 884149452 +286 483 5 877531661 +401 174 4 891032803 +650 445 4 891388210 +379 238 5 880525236 +605 98 5 879425432 +534 823 4 877807973 +617 436 3 883789464 +125 122 1 892839312 +579 238 3 880952201 +566 461 4 881649853 +269 1444 1 891451947 +645 658 4 892054632 +405 1037 3 885547506 +655 1232 3 887472606 +524 44 4 884636416 +313 195 5 891013620 +655 1605 3 888685850 +455 275 4 878585826 +661 132 5 886841714 +648 178 4 884368273 +65 215 5 879217689 +484 168 4 891195036 +477 732 4 875941111 +587 326 3 892871284 +411 1197 4 892846971 +398 117 4 875653091 +280 402 4 891701249 +442 288 4 883390048 +498 222 3 881961877 +460 248 4 882912342 +388 508 3 886436930 +663 411 3 889492877 +622 165 5 882591938 +263 50 5 891300029 +205 322 3 888284577 +638 514 2 876695714 +301 797 4 882078558 +582 237 3 882960941 +387 321 3 886484384 +595 591 4 886921344 +158 238 5 880134913 +525 596 4 881086195 +116 1255 2 876453377 +653 181 4 878854145 +450 141 3 882377726 +663 658 4 889493467 +538 11 4 877109516 +662 515 4 880571006 +322 303 3 887313611 +487 471 3 883441956 +398 496 5 875721111 +248 22 2 884534752 +202 516 4 879726778 +650 95 3 891371186 +591 367 3 891031403 +135 1217 2 879857956 +70 28 4 884065757 +488 429 4 891375991 +82 412 1 884714513 +151 216 4 879524713 +567 133 4 882425790 +450 956 4 882394097 +246 431 3 884921661 +405 944 3 885547447 +627 399 3 879531557 +344 203 4 884901328 +664 433 3 876525998 +624 347 4 891961140 +222 1060 2 878184055 +276 759 1 874796412 +181 236 1 878962350 +279 210 4 878261893 +293 393 3 888906906 +601 476 1 876347765 +551 38 1 892784553 +639 971 4 891239913 +282 333 3 879949394 +524 845 5 884323426 +648 675 2 884883424 +353 331 4 891401992 +557 892 3 884357648 +363 408 5 891494865 +405 204 5 885544769 +486 236 3 879874629 +152 21 3 880149253 +457 623 3 882550065 +389 732 4 880087850 +545 181 5 879898644 +99 1132 4 885679319 +109 15 4 880577868 +634 275 3 875728834 +263 588 3 891298273 +454 431 3 888266991 +624 815 3 879793174 +574 1313 4 891278916 +463 147 3 877386047 +537 485 3 886031576 +661 131 3 886841714 +406 8 4 879445562 +655 508 3 887426030 +126 337 5 887938392 +240 353 1 885775959 +279 1486 1 875314076 +606 660 5 880926470 +536 496 5 882359455 +526 293 5 885682477 +560 134 5 879975406 +601 949 2 876351214 +90 10 5 891383987 +637 111 3 882903645 +91 143 4 891439386 +338 1124 4 879438301 +587 887 2 892871310 +621 755 3 874965299 +537 644 5 886031438 +614 410 3 879464437 +13 636 2 882397502 +331 269 5 877196819 +532 510 5 888635197 +355 324 4 879486422 +207 160 2 878191632 +75 56 5 884051921 +299 28 4 877880474 +659 272 4 891044849 +201 511 3 884112201 +634 1048 3 875729668 +130 934 4 876251341 +630 412 1 885667508 +405 201 1 885547176 +514 792 4 875462611 +496 1459 4 876067376 +586 156 4 884064459 +527 96 4 879456611 +374 222 4 880392778 +287 108 4 875334519 +405 1438 1 885546835 +248 283 1 884535157 +606 483 5 880924921 +483 1152 4 893098572 +262 402 4 879795059 +660 473 2 891198996 +224 676 3 888103942 +610 143 5 888703290 +85 230 3 882813248 +339 156 5 891032495 +454 414 2 888267226 +458 121 1 886395022 +602 871 3 888638589 +425 180 4 878738077 +242 1011 3 879740800 +283 433 4 879298333 +416 44 4 886316596 +608 506 4 880406728 +535 205 3 879618464 +579 303 3 880951494 +373 281 3 877103935 +542 501 4 886533562 +493 196 4 884130933 +210 315 5 887731417 +600 233 2 888452071 +396 546 4 884646647 +82 1 4 876311241 +660 97 3 891200406 +343 1140 3 876405943 +660 362 2 891197585 +11 662 3 891904300 +505 164 4 889334189 +6 71 4 883601053 +234 498 5 892078699 +378 245 3 880906161 +365 285 4 891303999 +644 326 5 889076148 +587 288 4 892870992 +648 507 1 884796598 +133 245 3 890588878 +660 1181 1 891200594 +667 234 2 891034730 +666 122 2 880313723 +7 631 4 891352984 +392 310 4 891037490 +58 151 3 884304553 +642 22 4 885602285 +26 111 3 891371437 +458 179 4 886397808 +334 736 3 891548979 +530 191 5 883785574 +536 169 5 882359047 +45 288 3 880996629 +655 533 2 887651114 +634 471 4 875729478 +524 380 2 884637202 +298 604 5 884127720 +565 70 5 891037629 +614 476 3 879464507 +388 773 3 886441083 +553 484 5 879949324 +540 596 4 882157126 +658 1 4 875145614 +667 285 5 891034810 +577 25 4 880470504 +9 371 5 886960055 +207 233 3 877124847 +37 96 4 880915810 +527 429 5 879456611 +427 990 5 879701326 +52 741 4 882922302 +346 520 5 874948105 +334 712 3 891549594 +268 1303 1 875744228 +74 690 4 888333352 +579 428 4 880952335 +624 258 4 879791792 +207 286 2 875504669 +640 952 4 886474538 +104 270 4 888442337 +486 273 3 879874871 +497 118 4 879310621 +479 588 1 879461378 +545 196 4 884133859 +178 1038 2 882823566 +99 975 3 885679472 +549 1047 3 881672700 +439 240 3 882893859 +191 340 4 891560842 +601 472 1 876348177 +459 472 5 879563226 +466 995 5 890284231 +159 326 3 880485345 +619 1314 3 885954341 +303 82 4 879467465 +518 300 3 876822581 +477 282 4 875941948 +592 631 3 882956624 +394 250 4 881130076 +641 59 4 879370259 +664 229 3 876526631 +60 482 4 883326958 +378 977 3 880334305 +650 243 2 891369215 +110 43 3 886988100 +459 174 4 879566291 +234 636 3 892336358 +592 283 4 882956241 +599 595 5 880952144 +666 223 3 880314144 +627 215 1 879529767 +62 463 4 879374916 +214 93 4 892668249 +561 172 2 885807743 +385 320 3 885367060 +487 17 3 883531279 +13 86 1 881515348 +639 70 3 891239862 +290 720 3 880475695 +466 294 3 890282986 +655 27 3 888984478 +196 1241 3 881251642 +527 467 3 879455999 +375 603 4 886621917 +200 118 4 876042299 +393 775 4 889731390 +521 229 2 884478314 +286 739 3 877532683 +286 137 4 884203281 +290 650 2 880475625 +109 508 4 880571629 +411 4 4 892845634 +380 462 4 885478374 +514 178 4 875308925 +661 480 5 876016491 +267 143 4 878973329 +254 465 3 886473078 +144 478 4 888105337 +615 194 5 879449164 +629 117 5 880116963 +659 569 2 891386910 +618 433 2 891309410 +224 356 4 888103840 +202 191 2 879727294 +655 517 4 891585450 +654 546 4 887863885 +399 549 4 882347190 +642 294 5 885601998 +393 755 3 889729831 +22 201 4 878886449 +474 971 4 887924469 +246 411 3 884923715 +193 69 5 889125287 +349 125 4 879466541 +542 47 5 886532855 +343 473 3 876403212 +450 491 3 882373297 +645 200 5 892054906 +667 223 5 891034767 +328 260 2 885044940 +474 12 5 887924683 +500 476 2 883865851 +158 367 4 880134913 +573 162 4 885844007 +429 804 3 882387599 +557 299 4 881095916 +458 183 4 886396460 +260 1243 5 890618729 +484 655 5 891194820 +194 209 3 879521936 +491 7 3 891185298 +535 527 3 879617574 +385 207 4 881530739 +413 471 4 879969642 +668 345 2 890349041 +664 187 5 876524699 +566 127 5 881650219 +621 417 3 874965299 +654 222 5 887863534 +86 338 1 879570277 +637 985 2 882905284 +561 179 4 885807261 +500 514 5 883873941 +90 141 5 891385899 +23 55 4 874785624 +398 432 3 875718670 +495 228 5 888632738 +661 97 4 888299980 +329 11 3 891656237 +664 659 5 876526518 +556 603 5 882136440 +655 628 3 890887261 +650 66 3 891384285 +590 1129 3 879438735 +404 310 4 883790750 +497 1303 2 879311007 +416 471 5 893213645 +368 98 3 889783407 +370 603 5 879435244 +385 430 5 880870206 +33 323 4 891964373 +490 473 2 875428417 +495 64 5 888632496 +353 346 4 891402757 +673 294 4 888787376 +90 134 5 891383204 +474 252 4 887916567 +55 22 5 878176397 +363 660 4 891496588 +514 228 5 875463202 +293 186 2 888906045 +450 185 5 882376365 +500 568 1 883874715 +363 195 4 891495238 +409 343 3 881105677 +620 288 4 889986452 +655 283 3 887425936 +435 214 4 884131741 +567 648 4 882426021 +416 239 5 893212730 +425 310 3 890346411 +264 156 2 886122577 +454 255 4 881959276 +343 657 5 876404464 +650 204 4 891369707 +472 768 5 875982771 +450 448 4 882371526 +579 269 3 880951346 +200 132 5 884130792 +250 222 4 878089547 +648 497 4 884796769 +450 169 5 882371732 +360 654 5 880355715 +417 582 3 879647749 +620 683 3 889986984 +643 87 5 891447663 +496 172 5 876065558 +459 7 5 879563245 +184 40 4 889910326 +653 87 4 878854332 +384 329 3 891273761 +609 304 5 886895436 +154 197 5 879139003 +256 1424 3 882165066 +643 794 3 891450376 +595 1259 3 886921819 +136 124 5 882693489 +519 1591 5 883250102 +271 347 3 885844634 +648 748 3 882211886 +567 60 5 882425966 +184 664 3 889911712 +666 1170 4 880568352 +662 291 2 880570487 +667 301 1 891034513 +90 610 5 891383753 +308 739 4 887739639 +655 36 2 888685955 +222 181 4 877563168 +399 454 3 882510989 +567 135 3 882426837 +654 66 4 887864727 +457 11 4 882397020 +664 118 3 876526604 +18 197 4 880130109 +493 271 1 884129823 +447 367 3 878856232 +453 1016 4 877552991 +459 1190 4 879563169 +631 289 4 888465216 +256 283 3 882150313 +11 646 3 891904389 +574 910 1 891279362 +671 947 3 884035775 +537 23 4 886030738 +405 553 1 885546379 +380 419 3 885479124 +619 288 3 885953931 +648 191 5 884368002 +116 1142 4 876452492 +569 125 3 879794348 +347 595 2 881653244 +62 128 2 879374866 +110 566 4 886988574 +250 95 5 878090499 +553 435 4 879948869 +662 50 3 880570142 +85 513 4 879454350 +500 25 3 883865755 +313 735 3 891014649 +605 318 5 879426144 +535 170 4 879618160 +270 324 2 876954733 +70 404 4 884149622 +669 505 3 891517159 +503 125 3 880390153 +484 313 5 885237934 +648 107 4 882212200 +201 269 3 886013700 +78 288 4 879633467 +409 285 4 881168712 +343 236 5 876402668 +171 346 4 891034835 +593 117 4 875659497 +479 356 3 879461951 +406 638 4 879446684 +379 188 4 892879481 +645 81 4 892055039 +537 268 4 886028647 +286 1502 2 877535499 +632 79 5 879457317 +548 14 1 891043182 +332 122 5 887938886 +661 118 4 876037058 +655 505 3 891735725 +537 427 4 886030831 +648 564 1 884883724 +405 1030 1 885547605 +582 1215 4 882963027 +99 173 4 885680062 +668 231 2 881605433 +217 181 1 889069878 +526 1084 5 885682590 +503 387 4 880383358 +99 210 5 885679705 +204 301 4 892389328 +537 170 3 886031211 +663 956 4 889493732 +429 53 1 882386814 +632 97 4 879458856 +624 285 5 879792557 +457 27 4 882549483 +618 597 4 891309041 +543 936 4 888209568 +401 507 4 891033014 +676 265 5 892686703 +533 12 4 879438543 +585 1485 3 891283124 +643 152 4 891446956 +407 479 4 875045240 +450 1441 3 882397940 +125 401 4 892838656 +217 472 3 889070011 +186 1083 1 879023599 +299 478 4 877880612 +653 1228 2 880153378 +510 258 4 887667465 +472 548 1 875982867 +643 216 4 891448136 +363 1009 2 891497205 +647 631 4 876532425 +268 1073 4 875309304 +663 7 4 889492841 +640 474 4 874777623 +62 723 2 879375738 +42 135 4 881109148 +641 514 4 879370062 +562 89 1 879195819 +660 462 2 891199293 +521 829 2 884476168 +648 685 5 882211924 +416 717 2 876697283 +659 602 4 891385986 +624 108 3 879793198 +586 239 3 884067058 +363 1157 2 891498558 +654 69 4 887864641 +485 319 3 891041485 +339 488 5 891032379 +648 118 4 882212200 +445 203 3 890988205 +291 1220 5 874868382 +328 118 3 885048396 +632 68 1 879459394 +419 100 5 879435722 +595 255 3 886921392 +499 182 2 885599551 +239 46 4 889180487 +487 273 5 883443504 +416 1054 3 876698083 +239 419 3 889178689 +663 117 4 889492390 +145 1023 1 885557545 +658 137 3 875145572 +455 471 4 879109692 +600 586 2 888453083 +425 171 3 890347138 +521 151 3 884476240 +599 815 3 880953441 +267 774 3 878973701 +429 123 4 882386448 +674 127 5 887762799 +450 1153 5 882397223 +450 328 4 886449488 +233 735 5 880610635 +509 302 5 883590443 +601 191 4 876350016 +666 203 4 880139180 +296 304 3 884196149 +44 67 3 878348111 +59 97 5 888205921 +494 222 5 879541375 +393 841 3 887745199 +561 100 4 885807484 +595 762 4 886922069 +77 252 1 884733379 +593 807 4 875672999 +380 708 3 885478759 +393 24 3 889729674 +514 73 4 876067258 +176 117 4 886048305 +233 100 4 877661294 +548 443 4 891044446 +374 322 4 880392482 +504 162 4 887832741 +479 283 4 879460140 +303 1092 1 879544435 +18 482 5 880130582 +637 471 2 882903822 +222 693 4 878184514 +457 181 4 882393384 +574 345 2 891278860 +551 476 5 892784259 +90 447 5 891385389 +1 46 4 876893230 +454 939 2 888267386 +629 317 4 880117430 +559 216 5 891035876 +450 421 4 887834823 +296 289 3 884196351 +94 944 1 891723619 +460 1 2 882911203 +397 192 5 885349610 +557 288 1 884357600 +200 385 5 884129696 +7 417 3 892132652 +595 237 3 886921315 +271 477 3 885847955 +589 538 5 883352494 +389 471 4 879916077 +393 628 4 887744626 +130 67 4 876252064 +606 144 4 880924664 +570 288 2 881262307 +393 477 3 889727833 +327 87 3 887818620 +470 458 4 879178542 +468 178 5 875296401 +535 604 4 879617663 +592 963 5 882955663 +314 106 2 877886584 +551 230 5 892782901 +90 64 4 891383912 +303 402 4 879485250 +606 28 4 880924921 +537 848 3 886030552 +203 258 3 880433368 +634 341 2 890779883 +653 502 2 878866995 +655 707 3 887472671 +44 163 4 878348627 +495 98 5 888632943 +279 591 2 875297381 +637 515 4 882902540 +409 1360 2 881106087 +313 744 3 891016986 +212 246 5 879303571 +503 297 5 879438346 +629 197 5 880117031 +269 661 4 891447773 +448 344 4 891888244 +416 31 5 893212730 +425 573 3 878738914 +592 339 3 882607572 +200 748 3 884125953 +380 258 4 885477742 +178 476 3 882824713 +592 11 5 882955978 +551 431 4 892777583 +344 1082 2 889814622 +417 559 4 879648979 +360 531 4 880355678 +585 1193 5 891282894 +270 213 5 876955067 +323 876 2 878738949 +464 603 5 878355259 +471 50 3 889827757 +305 282 3 886323806 +109 17 4 880582132 +221 1217 4 875247421 +183 380 4 891463592 +194 294 4 879520305 +3 271 3 889237224 +666 182 4 880139526 +501 7 4 883348236 +372 637 4 876869512 +524 504 5 884634877 +495 684 5 888634956 +583 276 4 879384338 +293 273 4 888904901 +615 22 4 879448797 +458 704 2 886397857 +332 450 5 888360508 +405 558 1 885546069 +405 1394 1 885549903 +504 141 3 887909578 +430 181 4 877225484 +188 566 5 875074200 +606 1518 4 880926760 +589 892 4 883352762 +59 106 4 888203959 +116 221 4 876453560 +115 124 5 881170332 +268 173 4 875310031 +666 638 3 880139563 +592 216 4 882955978 +316 515 4 880853654 +81 25 5 876533946 +472 254 4 875978191 +587 749 2 892871223 +350 183 3 882347465 +65 73 4 879217998 +397 199 5 885349790 +349 118 2 879466283 +53 257 4 879443188 +650 182 3 891385775 +308 962 4 887738104 +622 1 3 882590344 +519 330 5 884545961 +553 423 3 879948655 +271 603 4 885848802 +638 515 4 876694704 +628 938 5 880777095 +387 318 3 886479610 +552 412 2 879222583 +535 483 5 879618742 +506 66 4 874874676 +546 222 4 885141260 +488 98 4 891293698 +437 176 2 880143809 +531 288 1 887048686 +457 83 5 882396487 +601 287 1 876348215 +91 204 4 891438909 +447 27 3 878856601 +399 161 3 882344434 +162 403 3 877636713 +144 124 4 888104063 +630 250 1 885666650 +45 597 3 881014070 +664 478 5 878090415 +620 354 5 889986477 +18 411 3 880131986 +435 1215 3 884134810 +608 215 3 880406299 +70 264 4 884063668 +451 333 5 879012550 +655 280 2 888474490 +350 179 5 882347653 +453 975 2 887942451 +269 1073 3 891447169 +620 795 4 889988340 +297 582 4 875238814 +638 230 5 876695259 +576 514 5 886986400 +332 172 5 888098088 +630 191 3 885668090 +399 444 1 882350733 +650 140 2 891389132 +647 117 3 876776321 +488 265 4 891294473 +395 15 3 883765928 +69 298 4 882072998 +268 95 4 875309945 +627 182 4 879529916 +652 323 3 882567100 +437 603 5 880140051 +660 797 2 891201753 +642 826 5 888963032 +437 955 4 881002404 +436 313 5 887768521 +504 310 4 887831273 +537 265 3 886031473 +650 485 3 891385422 +153 325 2 881370935 +474 1113 3 887926059 +194 521 4 879524504 +514 28 5 875311192 +95 1228 3 880572689 +642 996 2 885605932 +393 118 4 887744578 +432 3 3 889416260 +284 754 3 885329065 +436 26 3 887771146 +328 685 4 885047450 +542 410 4 886532971 +526 282 3 885682370 +328 65 4 885046912 +460 127 4 882912150 +85 782 2 879829757 +660 546 2 891198588 +551 693 5 892777943 +504 208 4 887838450 +52 318 5 882922974 +577 560 3 880475363 +60 434 5 883327368 +603 183 4 891957110 +660 17 1 891265453 +405 516 1 885547314 +275 121 3 876197678 +645 434 4 892055389 +646 683 3 888529014 +301 210 4 882076211 +405 849 1 885548049 +625 265 3 892054198 +621 944 5 874963126 +46 100 4 883616134 +23 8 4 874785474 +660 63 2 891201823 +450 182 5 882376585 +113 255 5 875935609 +557 150 3 881179621 +666 183 5 880139180 +331 1017 2 877196235 +234 215 3 892079722 +622 1552 2 882670793 +234 166 5 892079237 +417 849 1 879649632 +677 286 1 889399113 +334 433 5 891628158 +271 177 3 885848373 +334 1426 4 891548647 +425 550 4 878738813 +593 815 3 875659826 +132 1154 3 891278896 +637 410 2 882904148 +293 234 5 888906726 +650 498 4 891369587 +59 503 4 888205855 +429 658 3 882386448 +268 56 4 875309998 +154 324 2 879138287 +106 739 3 881453290 +391 237 4 877399864 +321 32 3 879440716 +189 663 3 893265773 +99 105 2 885679353 +416 187 5 893214128 +455 475 4 879109069 +392 482 5 891038945 +477 1041 5 875941225 +457 197 5 882396705 +373 1066 4 877106233 +450 163 4 882377358 +435 117 3 884131356 +600 11 5 888451665 +619 651 5 885954053 +252 286 5 891455263 +643 282 3 891445230 +668 307 4 881523762 +435 358 4 884130864 +303 583 1 879483901 +457 77 4 882398345 +650 202 3 891372258 +219 4 4 889452481 +600 651 4 888451492 +484 679 2 891195476 +291 933 4 874833936 +608 199 1 880403606 +537 181 2 886031437 +190 121 3 891033773 +535 921 4 879617489 +422 287 3 878199757 +450 83 4 882372027 +500 250 4 883865195 +614 255 5 879464119 +15 925 2 879455764 +606 1039 4 880923690 +601 157 3 876349716 +496 1614 3 876070690 +638 89 4 876694704 +541 235 1 883866049 +524 1166 5 884635031 +577 1271 3 880475581 +387 625 2 886483669 +637 833 1 882905070 +597 225 4 875342875 +417 1011 3 880949438 +617 647 3 883789006 +682 924 5 888517627 +328 77 4 885046977 +628 874 5 880776981 +609 908 1 886895699 +521 475 3 884475889 +655 950 3 887611566 +623 234 4 891034343 +435 394 4 884132873 +606 214 4 880926018 +474 69 5 887924618 +358 1524 5 891269418 +592 100 5 882608182 +567 170 3 882426184 +291 423 4 874868210 +606 432 5 880926339 +200 91 4 884129814 +234 489 3 892079237 +593 220 3 875660274 +535 173 5 879617747 +234 504 4 892078485 +21 185 5 874951658 +613 471 3 891227410 +665 343 3 884292654 +204 146 3 892513979 +456 211 4 881374162 +245 894 1 888513860 +618 190 4 891307404 +235 195 4 889655162 +148 474 5 877019882 +607 180 4 883879556 +293 1286 4 888906844 +92 684 3 875656502 +292 665 3 881103478 +472 834 3 875979685 +622 568 4 882592449 +587 325 5 892871252 +158 231 2 880134532 +70 501 4 884067201 +405 774 1 885548475 +663 11 5 889493628 +343 193 4 876405857 +545 17 3 879899472 +432 117 4 889415853 +379 357 5 881000269 +332 121 5 887916692 +286 569 4 877534313 +276 735 4 874791214 +379 219 3 890464337 +650 435 4 891372286 +577 99 3 880474674 +354 248 4 891216956 +586 155 3 884067874 +414 302 5 884998953 +405 97 2 885545638 +659 258 4 891331825 +606 928 4 880928180 +422 260 3 875129668 +614 279 3 879464287 +478 238 3 889388818 +548 333 4 891042624 +602 50 5 888638460 +102 596 2 883748352 +549 515 5 881672276 +194 276 3 879539127 +500 274 3 883865807 +363 50 5 891495168 +38 452 5 892434523 +336 710 4 877757700 +406 504 4 879445859 +622 542 2 882671346 +92 274 4 876175626 +608 568 5 880406032 +58 249 4 892242272 +666 4 5 880314477 +249 96 4 879572600 +655 611 3 887475345 +423 340 4 891394504 +667 435 3 891035104 +653 1620 2 886052291 +407 183 4 875046799 +479 479 4 879461378 +503 210 5 880383703 +591 94 3 891031603 +496 1139 2 876073882 +606 709 5 880927417 +496 825 3 876065015 +380 1039 3 885481179 +664 1090 1 876526739 +618 132 4 891307057 +543 471 3 875657863 +527 93 4 879456078 +654 278 3 887863757 +94 501 4 891721642 +437 28 3 880140534 +246 1089 1 884924710 +506 539 4 884517135 +181 412 2 878963122 +344 96 4 889814195 +385 235 5 879440940 +81 596 3 876533824 +13 736 4 882399528 +268 802 3 875744388 +664 7 3 878091393 +106 14 4 881449486 +629 11 2 880116789 +393 1181 3 889731064 +655 210 3 888474646 +207 521 4 878191679 +474 1421 4 887928562 +535 133 5 879618019 +357 685 3 878951616 +43 174 4 875975687 +457 402 4 882548583 +659 96 4 891384552 +585 923 5 891282808 +543 44 3 874865728 +130 398 3 878537516 +587 892 3 892871462 +291 393 3 875086235 +230 223 5 880484415 +467 742 2 879532671 +533 685 4 887032380 +577 44 3 880474934 +469 64 5 879523802 +13 865 5 882141425 +151 265 5 879542566 +519 266 5 883248595 +393 105 3 887745544 +579 173 5 880951765 +405 853 1 885547124 +640 195 4 874778515 +334 155 2 891549927 +135 321 4 879857575 +587 342 1 892871503 +453 364 3 888206676 +246 748 1 884924441 +125 393 4 879455241 +97 603 4 884238817 +629 991 1 880115923 +663 603 4 889493540 +515 750 2 887658782 +430 462 3 877226164 +504 69 4 887837918 +67 1052 3 875379419 +660 313 4 891197481 +342 412 3 875318648 +655 576 2 888893313 +650 127 2 891369520 +303 150 5 879467190 +59 474 5 888204430 +639 692 3 891239550 +606 132 5 880923925 +544 749 4 884795471 +381 303 3 892697999 +551 979 4 892784479 +468 157 4 875294741 +447 1048 2 878854579 +293 129 3 888904814 +552 411 3 879222002 +437 180 4 880139868 +479 328 4 879459611 +296 186 3 884199624 +486 255 3 879874692 +592 331 3 882607528 +577 87 5 880474216 +417 399 3 879648898 +345 125 3 884991191 +459 969 3 879564882 +59 672 5 888206015 +43 12 5 883955048 +650 674 4 891386778 +502 680 3 883702255 +287 476 1 875334340 +28 322 2 881955343 +542 70 4 886532788 +85 419 5 882819427 +334 494 4 891547235 +13 656 5 882139746 +533 186 3 879438850 +513 405 3 885062559 +551 3 5 892784093 +655 1319 3 887426373 +417 63 3 879649021 +682 735 4 888517627 +660 432 4 891199104 +411 73 4 892845634 +503 216 5 880383357 +624 924 4 879792493 +669 537 3 891517159 +649 275 2 891440412 +608 658 3 880408150 +666 492 4 880139252 +616 299 3 891224801 +429 1 3 882385785 +621 41 4 874963273 +610 294 1 888702795 +614 122 3 879465320 +637 544 3 882903914 +457 540 3 882551740 +669 462 5 892550137 +627 586 3 879531557 +653 409 2 880153406 +497 248 4 879309673 +86 269 4 879569486 +178 124 4 882823758 +574 289 4 891279285 +599 535 4 880952267 +13 411 2 882141924 +479 188 2 879461545 +18 427 5 880129421 +403 477 4 879786165 +682 623 3 888523288 +144 405 4 888104419 +624 534 3 879792358 +288 173 3 886373474 +435 1225 3 884131597 +184 165 4 889911178 +319 332 4 876280289 +569 276 4 879793493 +407 255 4 884197052 +73 1 2 888626065 +514 19 4 875463128 +561 520 4 885807318 +267 186 5 878972071 +411 58 3 892845804 +494 479 3 879541207 +303 23 5 879467936 +474 699 4 887927457 +605 483 5 879425432 +664 732 3 876525315 +295 497 5 879519556 +472 343 5 892790628 +610 427 5 888703730 +633 183 4 875325577 +405 23 5 885545372 +546 349 4 885141260 +463 952 1 890453075 +374 619 3 880393553 +537 65 3 886030767 +116 355 2 887605347 +90 654 5 891384357 +528 178 4 886101695 +478 340 5 889398260 +145 284 4 888398104 +305 1485 3 886323902 +56 153 4 892911144 +642 80 5 885606557 +551 455 1 892783525 +153 181 1 881371140 +350 195 5 882347832 +287 710 4 875334807 +407 449 2 876344772 +298 153 3 884127369 +194 1091 3 879528568 +640 578 3 874778612 +588 172 5 890026459 +265 117 5 875320332 +577 651 5 880475043 +442 240 2 883388833 +625 248 4 891629673 +407 657 4 875553625 +655 252 2 888474490 +528 484 3 886101695 +308 321 3 887736408 +664 514 5 876526179 +165 260 3 879525673 +627 458 3 879530824 +659 419 5 891331916 +496 158 2 876069951 +537 317 3 886031786 +49 501 3 888066979 +653 1012 4 878854852 +537 525 3 886030891 +620 895 3 889986984 +548 1025 4 891043278 +313 503 5 891014697 +184 235 2 889907862 +196 1007 4 881251601 +537 512 3 886031438 +277 471 3 879543377 +422 452 3 879744183 +391 772 2 877399030 +617 185 5 883789042 +59 313 5 888202532 +332 77 4 888360343 +640 357 5 874778274 +618 71 4 891309041 +489 875 2 891449465 +552 291 2 879222661 +457 304 4 882392853 +566 483 4 881649357 +661 527 4 876035679 +232 170 5 888549929 +486 277 3 879874418 +682 215 4 888517197 +189 214 1 893266326 +641 83 4 879370119 +537 959 3 886032154 +664 466 4 876526519 +110 385 3 886988574 +23 479 5 874785728 +621 393 3 874962705 +314 151 4 877886522 +303 72 3 879485111 +378 715 4 889665232 +70 225 3 884148916 +466 326 3 890282925 +49 1079 1 888069165 +587 938 2 892871141 +682 265 3 888520922 +506 380 4 874874585 +655 1208 3 887430746 +13 568 3 882140552 +109 186 3 880572786 +326 180 1 879875457 +648 429 4 884368130 +682 325 4 888521174 +605 462 5 881016176 +587 902 2 892871584 +83 298 4 891181511 +436 785 2 887770731 +373 431 5 877098643 +591 238 5 891031228 +92 227 1 875654846 +522 179 5 876961190 +311 192 3 884366528 +541 50 5 884046910 +656 750 2 892318648 +144 55 4 888105254 +82 539 3 884713704 +188 294 2 875071249 +474 70 4 887928498 +588 318 4 890015435 +174 401 1 886515063 +442 449 2 883390739 +278 923 5 891295330 +666 206 4 880139669 +295 382 5 879519556 +495 1046 5 888636837 +476 83 3 883364143 +376 321 3 879433164 +188 742 5 875073909 +234 923 4 892078741 +199 323 3 883782655 +564 312 3 888718443 +595 678 1 886920819 +346 739 3 874950316 +385 428 3 879442706 +380 744 3 885480144 +1 169 5 878543541 +591 86 5 891031171 +514 214 5 875318163 +303 501 4 879484981 +159 364 1 884026964 +661 313 4 886829961 +627 732 3 879530568 +679 520 4 884487031 +291 456 3 874834165 +299 81 4 889504036 +298 484 4 884182627 +303 597 1 879485204 +97 195 5 884238966 +521 746 4 884478152 +655 1007 3 891585504 +308 153 5 887737484 +10 693 4 877886783 +311 1050 3 884365485 +474 60 3 887925620 +297 746 3 875239569 +346 55 5 874948639 +405 1570 1 885549544 +481 50 4 885827974 +373 169 5 877099016 +127 901 5 884363990 +212 645 3 879303795 +234 277 3 892334680 +351 310 5 879481386 +489 326 4 891362773 +290 174 5 880473891 +125 186 3 879454448 +342 378 4 875319617 +344 127 5 889814518 +608 98 5 880403855 +487 191 4 883446027 +300 264 1 875650132 +493 693 4 884132129 +451 880 1 879012773 +514 258 4 875308674 +630 477 4 885667200 +465 258 5 883529482 +122 135 4 879270327 +121 282 1 891389037 +411 229 3 891035362 +640 1016 3 886474538 +452 780 1 885476356 +373 95 5 877099263 +135 324 3 879857575 +586 200 4 884060941 +543 566 4 877545605 +130 1210 2 880396831 +523 25 4 883702054 +663 274 3 889493182 +381 640 5 892696168 +660 826 3 891198762 +474 604 4 887926059 +660 98 4 891199348 +87 1188 2 879876110 +489 752 5 891448109 +657 1009 4 884240629 +654 257 4 887863802 +136 9 5 882693429 +567 268 4 882426327 +308 603 5 887736743 +583 175 5 879384471 +559 187 3 891033911 +301 735 2 882077871 +533 333 4 886425803 +239 1098 5 889180487 +653 737 1 880151839 +601 58 1 876350400 +665 177 3 884294374 +301 742 4 882074437 +663 471 3 889492841 +532 26 3 888629359 +432 257 5 889416118 +478 231 1 889398598 +429 385 3 882386915 +252 290 3 891456877 +393 1168 3 889729346 +625 195 4 891262983 +43 491 4 883954997 +536 56 3 882360405 +405 697 1 885545883 +581 100 5 879641603 +627 117 3 879531248 +668 258 2 881523929 +537 307 3 886028791 +257 1022 2 879547764 +660 249 2 891198109 +545 729 3 884134114 +582 410 3 882961481 +290 121 4 880475266 +387 187 4 886483049 +587 338 4 892871462 +295 790 3 879519265 +257 313 5 884151683 +666 179 5 880139323 +521 235 3 884476221 +38 202 2 892431665 +145 352 4 885556043 +293 17 2 888907335 +94 250 4 891724257 +244 235 1 880604910 +263 180 4 891297921 +435 890 1 884130883 +597 713 2 875340010 +354 308 4 891180569 +158 455 4 880132772 +18 23 4 880130065 +659 855 2 891386576 +457 200 5 882396799 +605 191 5 879426212 +380 629 2 885478497 +271 381 3 885849536 +255 930 1 883216958 +388 288 5 886439506 +58 655 5 884304865 +642 1029 3 885606271 +598 750 5 886711452 +659 161 3 891386492 +421 50 5 892241294 +648 122 1 882212609 +264 525 5 886122508 +62 521 5 879374706 +389 66 3 880088401 +498 160 5 881958174 +559 163 4 891035840 +268 636 3 875744174 +447 1142 5 878854481 +161 428 3 891171023 +255 222 3 883216845 +537 468 2 886032029 +620 300 3 889986411 +389 300 3 879990863 +63 325 2 875747047 +537 202 3 886031540 +660 101 3 891201243 +567 604 4 882426508 +660 1178 1 891265453 +625 222 4 891273543 +671 250 5 875389187 +682 68 5 888522575 +524 81 1 884636262 +650 484 5 891372365 +618 192 5 891307367 +541 476 5 883866007 +632 470 4 879459677 +660 7 3 891198203 +421 219 3 892241687 +148 181 5 877399135 +534 756 4 877808175 +387 1129 4 886480623 +334 20 4 891544867 +450 187 5 882373597 +221 27 4 875247754 +256 679 3 882164525 +11 717 2 891902815 +505 496 5 889333534 +288 134 2 886374129 +613 64 5 891227204 +305 196 4 886324097 +592 81 4 882956201 +207 357 5 878191679 +452 603 4 887718667 +327 658 2 887747668 +605 340 4 879365132 +476 999 2 883365385 +559 519 5 891034004 +94 196 4 891721462 +457 756 2 882395742 +445 273 2 891199869 +640 12 5 874777491 +673 288 4 888787423 +539 22 3 879788195 +276 1267 4 874791102 +632 746 3 879459481 +406 524 4 879446361 +472 183 5 875980376 +343 65 5 876405172 +206 346 5 888179981 +160 461 5 876857977 +684 64 4 878759907 +163 357 4 891220097 +669 169 3 891517159 +606 68 5 880927127 +588 934 4 890030736 +627 86 3 879530263 +301 97 4 882076121 +63 480 3 875748245 +640 201 4 874778240 +588 531 3 890015722 +385 919 4 879440158 +347 100 3 881652417 +344 1137 3 884899339 +77 25 2 884733055 +634 293 3 877018347 +493 404 4 884132351 +305 165 4 886323153 +466 79 3 890284706 +161 272 5 891170514 +454 211 2 888267158 +546 185 4 885141360 +436 660 4 887771825 +350 173 4 882347465 +479 258 5 879459552 +5 398 2 875636167 +492 657 3 879969345 +301 340 4 882075432 +682 352 1 888518424 +485 303 4 891040688 +542 531 4 886533452 +634 100 4 875728834 +262 411 2 879791130 +488 776 4 891294298 +488 890 1 891293478 +666 831 2 880313841 +554 939 4 876550342 +326 1 3 879876159 +518 1335 3 876823018 +437 588 3 881002092 +542 192 5 886533421 +407 177 4 887833034 +416 86 1 886316439 +503 729 3 880472454 +216 216 4 883981877 +643 89 3 891448630 +406 143 1 879445935 +169 321 3 891268777 +130 538 5 884623983 +286 184 3 877534506 +380 170 4 885478192 +597 50 5 875339876 +95 102 4 880572474 +267 47 5 878972369 +577 132 4 880472153 +591 516 3 891031469 +537 489 3 886030738 +655 1351 3 888984539 +326 441 2 879877433 +156 510 4 888186093 +229 896 4 891633029 +600 761 4 888451977 +566 384 3 881651360 +537 727 2 886032245 +311 735 4 884366637 +637 1344 4 882901356 +313 748 3 891012934 +417 122 2 879646838 +665 684 3 884294286 +528 588 2 886101736 +198 581 3 884209504 +360 25 4 880355209 +568 504 3 877907596 +450 661 3 882373231 +459 164 4 879564941 +279 176 3 875310606 +620 993 5 889987954 +492 531 4 879969539 +115 137 5 881169776 +178 679 4 882826944 +151 97 5 879528801 +466 273 4 890284857 +276 1109 3 882659656 +385 417 2 879447671 +178 144 4 882825768 +643 70 3 892502414 +685 269 3 879451401 +665 1040 4 884291550 +166 347 5 886397562 +579 56 3 880952360 +401 477 1 891034050 +6 168 4 883602865 +405 808 1 885546487 +109 202 5 880578632 +532 915 4 891909850 +600 62 4 888452151 +94 302 4 891928684 +342 531 3 874984175 +568 659 3 877907050 +665 346 2 884289897 +70 135 4 884065387 +107 259 2 891264630 +506 972 3 874874760 +341 872 4 890757841 +21 573 2 874951898 +606 172 5 880924322 +436 655 5 887769233 +642 142 4 886569380 +500 15 2 883865129 +374 558 1 882158738 +552 926 2 879222698 +94 1012 4 891724100 +505 526 5 889333823 +662 591 4 880570112 +653 388 2 880153705 +541 234 5 883874433 +495 157 5 888635294 +538 258 3 877095640 +435 68 4 884131901 +334 887 5 891544491 +608 144 4 880405659 +662 286 3 880569465 +538 187 5 877107840 +222 158 3 878184171 +50 544 4 877052937 +7 634 5 891351287 +673 269 4 888786942 +503 485 4 880472383 +551 5 4 892783314 +450 471 4 882396153 +542 175 3 886532762 +184 185 4 889908843 +349 1028 2 879466200 +506 731 4 874873374 +600 89 5 888451492 +682 92 5 888519059 +347 689 4 881652250 +532 364 3 874791976 +655 1046 3 887430779 +411 117 2 891035761 +332 406 3 887938601 +655 1169 3 887427210 +112 272 5 886398204 +181 1173 1 878962052 +515 328 2 887660131 +500 393 3 883875793 +600 540 3 888453083 +418 895 4 891282595 +395 196 4 883764378 +504 479 4 887832571 +630 257 3 885667037 +200 509 4 884129602 +462 11 5 886365498 +487 160 4 884041685 +214 508 4 891543157 +606 225 1 880923349 +543 855 4 875663543 +551 332 4 892775547 +474 601 5 887927509 +529 886 4 882535353 +380 9 3 885479301 +405 783 2 885547645 +474 289 3 887914906 +49 1074 2 888069165 +536 283 3 882318369 +591 48 4 891031286 +629 509 5 880116818 +533 100 5 882902988 +174 871 1 886434166 +676 520 4 892686758 +207 655 4 877878342 +610 331 3 888702764 +64 101 2 889740225 +380 194 4 885478799 +374 66 3 880394571 +94 1211 5 891722458 +284 310 3 885328991 +588 597 4 890026543 +639 512 2 891239759 +489 325 5 891445439 +592 461 4 882955765 +460 458 2 882911603 +354 533 5 891216805 +546 100 3 885140706 +621 172 5 874965407 +417 827 2 879646860 +125 376 3 892838510 +200 462 4 884128858 +314 470 3 877889770 +683 1483 3 893286346 +193 177 4 890860290 +510 300 5 887667439 +269 762 1 891446662 +577 1033 4 880471170 +220 258 3 881197771 +56 473 2 892683323 +617 767 3 883789747 +429 68 3 882385963 +276 455 4 874786713 +380 270 3 885481179 +524 52 4 884636453 +682 351 4 888518468 +16 98 5 877718107 +621 222 4 880736904 +653 395 1 880153674 +443 340 5 883504748 +334 181 4 891544904 +429 82 4 882386121 +691 603 5 875543191 +342 692 1 875319090 +94 418 3 891721317 +684 147 2 878232961 +595 508 5 886921199 +654 746 3 887864204 +561 724 3 885808867 +432 864 2 889416657 +334 675 4 891547148 +634 14 3 875728783 +524 55 2 884634911 +659 77 4 891386680 +543 4 4 875658853 +503 50 5 879438161 +436 628 5 887770457 +537 299 2 886028791 +363 95 3 891496694 +338 197 5 879438473 +682 1303 2 888522699 +626 294 3 878771243 +585 1021 3 891283681 +561 684 3 885808867 +653 1206 3 880152377 +665 476 4 884291133 +460 307 4 882912418 +655 1395 3 887768594 +660 402 3 891201380 +299 531 3 877880350 +458 589 4 886396140 +577 829 3 880470884 +684 38 3 878759635 +460 1251 3 882912285 +82 7 3 876311217 +269 1110 2 891450385 +550 50 5 883425283 +654 1035 4 887864697 +163 28 3 891220019 +668 554 3 881702723 +11 125 4 891903108 +519 325 1 883248535 +487 955 5 884024462 +372 288 5 876869066 +561 216 3 885807173 +299 274 3 877878339 +621 257 5 880738699 +52 25 5 882922562 +483 195 3 878954753 +610 288 3 888702795 +539 285 4 879788623 +294 151 5 877819761 +648 28 5 884628437 +85 121 2 879453167 +650 581 2 891370155 +624 1047 3 879793436 +552 988 3 879220650 +49 25 2 888068791 +566 673 4 881649775 +537 718 4 886029771 +499 357 5 885599372 +430 276 1 877225753 +634 235 3 875729825 +499 271 3 882995586 +541 142 5 883874778 +624 237 4 879793174 +18 614 4 880130861 +139 302 3 879537844 +331 304 5 877196820 +198 153 4 884207858 +378 479 4 880055564 +437 702 1 880141335 +661 178 4 876013492 +647 490 4 876532145 +629 7 2 880117635 +360 523 3 880356240 +352 653 3 884290428 +276 328 4 874786366 +352 144 5 884290328 +643 223 4 891447696 +622 144 5 882592103 +605 879 3 879365417 +271 205 5 885848343 +487 686 4 884044329 +345 287 4 884991670 +639 98 4 891240643 +618 655 4 891309887 +314 1469 4 877889103 +327 845 3 887818957 +625 183 3 892000438 +531 302 5 887048686 +369 316 5 889428641 +524 65 4 884636646 +586 233 4 884062405 +345 69 4 884992755 +632 480 5 879459739 +7 641 5 892135346 +433 919 5 880585923 +472 577 3 875982680 +386 982 3 877655195 +541 88 3 883865738 +459 678 4 879561783 +577 56 3 880474934 +459 301 2 879561574 +115 654 5 881171409 +498 448 4 882205321 +617 519 3 883789105 +521 121 2 884475889 +296 221 5 884196524 +60 675 4 883326995 +626 328 1 878771505 +502 895 4 883702370 +622 82 3 882670767 +655 1418 4 888474646 +83 409 4 880307417 +595 1312 3 886921787 +2 311 5 888552084 +536 172 5 882359539 +13 224 4 882140166 +666 202 5 880139493 +561 240 1 885810726 +463 126 4 877385531 +451 286 1 879012343 +5 204 4 875636675 +618 1058 3 891309114 +363 227 4 891498135 +375 1217 4 886622131 +407 132 4 875043800 +644 307 4 889076031 +100 1233 3 891375112 +683 248 4 893286603 +580 471 3 884125018 +391 100 4 877399805 +607 121 2 883879811 +271 69 4 885848559 +654 1285 4 887864998 +601 842 1 876351171 +682 1118 3 888521711 +617 184 1 883789464 +458 126 4 886394730 +515 302 3 887658604 +624 881 3 879792132 +631 313 4 888464915 +458 750 5 889323771 +11 738 3 891905324 +314 742 4 877886221 +496 143 3 876067146 +526 342 2 885682295 +592 257 4 882608107 +291 67 4 875086308 +358 1149 3 891270043 +41 97 3 890687665 +445 333 2 890987410 +650 637 3 891387353 +42 462 2 881108093 +641 124 4 879370299 +674 405 4 887762861 +618 318 5 891307825 +655 134 4 887431976 +533 211 4 879191972 +200 924 5 876042368 +174 623 3 886515532 +632 131 4 879458941 +551 157 4 892782765 +567 168 5 882425736 +138 602 4 879024382 +406 505 4 879540515 +548 460 4 891416122 +493 876 1 884129923 +407 143 4 875117053 +234 418 3 892079373 +85 504 4 879453748 +18 178 3 880129628 +537 990 2 886029153 +279 763 3 875297522 +256 319 2 882150053 +614 405 2 879464525 +327 98 4 887746196 +360 933 3 880354408 +200 443 5 884129468 +353 315 4 891402757 +456 763 4 881372015 +299 213 5 878192555 +629 1119 5 880116756 +259 298 4 874724754 +350 271 3 882347466 +73 175 5 888625785 +623 66 4 891034993 +661 443 4 876035933 +624 1017 3 879792322 +659 144 4 891384499 +209 271 2 883589607 +280 609 4 891701278 +92 436 4 875654534 +533 1041 2 879192069 +591 116 4 891039616 +479 172 4 879461084 +84 87 5 883453587 +308 613 4 887738620 +672 127 4 879787729 +524 568 4 884636152 +692 56 3 876953204 +573 275 4 885843596 +459 1051 3 879563667 +504 942 4 887841136 +625 584 3 891636000 +588 217 4 890030473 +601 12 3 876348947 +473 256 4 878157648 +279 625 3 878261977 +577 939 5 880474933 +580 405 2 884126077 +314 496 4 877888060 +275 625 2 875154655 +474 617 3 887925620 +437 161 2 880140288 +592 320 5 882955735 +313 683 3 891030792 +269 629 2 891451396 +535 52 4 879618091 +542 237 4 886532238 +13 367 3 882141458 +13 33 5 882397581 +561 243 1 885807010 +624 249 3 879793380 +650 507 4 891371153 +378 5 3 880332609 +551 313 4 892775389 +171 354 3 891034606 +435 577 3 884133973 +426 511 4 879441978 +546 7 5 885140689 +660 710 3 891199942 +590 744 4 879438769 +458 980 5 886394667 +342 965 4 875319195 +453 93 2 887941962 +426 654 5 879442785 +134 315 3 891732122 +570 324 2 881262437 +145 173 5 875272604 +650 77 3 891370093 +370 181 4 879434832 +330 1 5 876544432 +160 825 2 876767299 +346 127 5 874947747 +553 617 4 879949042 +679 174 3 884486837 +503 280 1 892667653 +128 465 4 879968008 +599 756 5 880952037 +184 451 4 889909914 +654 313 5 887862952 +6 303 3 883268321 +57 496 4 883698362 +236 191 4 890116335 +294 111 4 877819999 +115 479 5 881171825 +457 1037 2 882551818 +311 623 2 884366112 +661 436 4 876036043 +421 144 5 892241624 +532 1207 2 874790439 +666 792 4 880568694 +121 300 3 891387810 +378 86 4 880045935 +508 23 4 883767361 +666 301 4 880138999 +585 510 5 891284016 +148 56 5 877398212 +21 978 1 874951483 +545 257 5 879898678 +424 310 3 880858829 +234 496 4 892079190 +640 336 3 886353894 +207 92 2 875509346 +682 780 3 888522217 +671 385 5 884035892 +639 664 2 891239324 +350 168 5 882346847 +488 692 4 891294707 +354 582 4 891217897 +663 544 4 889492841 +314 747 1 877889698 +690 384 3 881177804 +13 684 5 882397271 +630 1047 4 885667200 +506 203 4 874874152 +194 474 4 879521396 +587 687 1 892871683 +537 955 4 886031149 +622 56 5 882592103 +442 174 4 883389776 +552 147 3 879222412 +690 364 3 881178026 +537 530 4 886030768 +521 50 4 884475799 +263 482 4 891298976 +236 207 3 890116221 +550 748 4 883425365 +390 845 2 879694232 +62 597 2 879373254 +673 344 5 888787376 +178 724 4 882827433 +328 1217 3 885049790 +161 1117 3 891172402 +70 597 3 884148999 +181 323 2 878961304 +567 299 4 882426350 +655 1045 3 887427473 +474 605 3 887927670 +554 678 3 876231229 +664 168 4 878090705 +148 549 3 877398385 +268 159 2 875745350 +387 446 2 886481800 +246 404 3 884922434 +48 194 4 879434819 +256 1208 3 882164927 +429 23 4 882385243 +234 436 3 892334765 +405 1232 1 885546681 +405 679 1 885547997 +588 118 3 890026210 +660 24 3 891198277 +505 172 3 889334129 +268 479 4 875310463 +643 208 5 891448136 +392 312 4 891037561 +666 174 3 880139586 +573 713 4 885843817 +689 273 3 876676165 +690 218 5 881179906 +665 65 4 884293523 +466 231 1 890285159 +639 387 3 891239380 +184 707 4 889908873 +87 195 5 879875736 +406 610 1 879446228 +461 319 3 885355778 +592 367 4 882956510 +60 227 4 883326784 +364 990 4 875931478 +314 655 4 877887605 +7 540 3 892132972 +416 431 4 886316164 +527 238 5 879456405 +663 47 4 889493576 +518 1040 3 876823541 +271 498 5 885848672 +497 418 3 879310021 +345 4 4 884993619 +363 90 5 891498183 +201 556 4 884111397 +268 559 2 875744556 +586 742 3 884057578 +686 28 4 879546147 +624 628 4 879793198 +450 239 5 882373865 +453 871 1 888206233 +281 301 3 881200643 +653 98 2 878854633 +11 332 5 891901769 +665 328 4 884290055 +527 60 4 879456132 +634 258 4 884980585 +627 273 4 879531196 +452 423 5 885544110 +615 529 5 879448036 +472 12 5 892791017 +537 923 3 886031342 +655 32 4 887426900 +558 253 5 879436396 +514 186 4 875463028 +606 150 4 878143246 +92 51 4 875812305 +296 480 5 884197068 +527 962 3 879456312 +592 702 4 882956510 +274 628 4 878945505 +532 508 4 888636373 +340 428 1 884991618 +399 506 3 882344406 +507 298 5 889965997 +439 7 4 882893245 +315 642 5 879821267 +435 152 4 884132072 +178 1258 4 882823930 +171 303 4 891034801 +665 588 4 884294772 +396 9 4 884646401 +178 625 3 884837073 +264 637 4 886122446 +452 48 5 885816769 +153 357 5 881371059 +302 748 1 879436739 +618 216 3 891308791 +496 53 3 876070655 +590 475 4 879439645 +655 525 2 892333973 +455 127 5 879111586 +40 876 3 889041694 +299 202 4 889501325 +554 11 4 876233069 +682 655 5 888519725 +616 678 2 891224718 +527 655 3 879456464 +348 243 3 886522740 +457 412 2 882396217 +451 259 4 879012721 +458 588 5 886396460 +480 96 4 891208623 +385 93 3 880682080 +541 877 1 884046888 +537 147 2 886030012 +210 763 2 887730750 +655 962 5 887473674 +667 651 5 891034767 +592 751 3 882955258 +295 216 5 879517580 +1 41 2 876892818 +508 474 5 883777430 +393 636 3 889729508 +674 294 4 887762296 +213 106 4 878870904 +478 1270 1 889396212 +22 568 4 878887810 +645 55 3 892053748 +128 684 4 879969390 +586 144 4 884059287 +329 879 2 891655515 +454 614 3 888267590 +441 294 4 891035211 +361 207 4 879440545 +532 330 4 888636373 +66 763 4 883602094 +378 53 3 880333695 +1 162 4 878542420 +389 238 5 879991387 +181 1326 1 878963342 +450 497 5 882374422 +693 181 3 875483881 +70 174 5 884065782 +201 286 2 884110702 +106 244 4 883877094 +546 457 1 885139608 +668 294 3 890349076 +551 176 4 892776876 +648 184 5 884368643 +660 846 2 891198174 +11 715 3 891904764 +31 136 5 881548030 +363 173 5 891494658 +311 282 5 884963228 +276 51 3 874791025 +668 403 4 881605433 +552 125 3 879222484 +184 213 5 889909045 +551 180 5 892777052 +586 358 4 884069523 +625 528 3 891961633 +639 168 1 891240678 +346 120 3 875264287 +621 722 4 881444887 +151 507 5 879524394 +500 619 3 883865341 +686 98 5 879546651 +563 237 5 880506666 +653 685 3 878854769 +334 81 4 891546299 +592 144 5 882956668 +682 509 2 888517235 +334 462 4 891628832 +65 98 4 879218418 +49 240 3 888067031 +193 218 4 889126705 +653 7 2 878866951 +535 56 3 879617613 +425 231 3 878738435 +686 474 5 879545413 +614 472 3 879464416 +371 181 3 877486953 +409 493 4 881108364 +279 203 2 875310676 +101 926 3 877136628 +642 44 3 885603870 +669 898 1 891182812 +222 619 4 877563953 +429 527 5 882387757 +516 250 4 891290565 +436 95 4 887770037 +624 919 4 879792581 +654 128 5 887865053 +119 405 4 874775815 +454 69 4 881959818 +643 262 3 892502480 +481 430 4 885829196 +110 272 4 886987145 +397 611 5 885349562 +608 76 4 880408115 +321 286 4 879438932 +406 237 1 879540078 +188 162 4 875072972 +429 921 2 882385962 +618 559 3 891309382 +38 155 5 892432090 +682 1045 3 888517792 +254 69 5 886471959 +463 224 3 877385181 +46 305 5 883614766 +650 629 3 891387398 +426 427 5 879442737 +629 566 5 880117395 +474 14 5 887915306 +685 286 1 879447443 +666 1098 4 880314384 +472 121 5 875978600 +650 196 4 891370998 +591 466 3 891031116 +590 255 1 879439374 +406 220 3 879540388 +173 299 4 877556926 +627 214 3 879530408 +89 50 5 879461219 +152 8 5 882829050 +559 1141 2 891034316 +80 531 4 887401430 +652 259 2 882567058 +158 226 3 880134675 +671 204 5 884204510 +211 1025 3 879461394 +537 209 4 886030966 +655 782 3 887650483 +473 321 2 878156950 +566 529 4 881649358 +411 318 4 892845712 +647 222 4 876534274 +307 62 3 881966033 +495 444 3 888636958 +586 33 5 884061807 +279 976 3 877756631 +530 183 4 883790882 +586 849 3 884062742 +666 258 4 880138999 +643 249 3 891446323 +455 9 4 878585685 +222 219 4 878184675 +566 97 3 881650090 +102 328 2 883277645 +561 234 3 885808824 +436 974 5 887771997 +665 7 4 884290635 +445 9 2 891199655 +665 1283 3 884292654 +489 1612 5 891446623 +606 83 5 880925289 +457 417 4 882549575 +605 255 2 879510904 +381 514 5 892697394 +221 576 3 875246824 +181 6 1 878962866 +169 499 3 891359354 +367 302 5 876689364 +565 30 5 891037499 +533 107 3 879773606 +639 202 2 891239581 +18 489 4 880129769 +6 472 1 883600003 +293 200 4 888906655 +389 99 5 880087832 +303 171 4 879467105 +487 333 3 883440491 +339 449 3 891036316 +291 124 5 874834481 +682 164 3 888521005 +181 1084 2 878962550 +472 41 4 875982511 +538 173 3 877107914 +619 825 2 885953850 +312 172 4 891699677 +45 257 5 881008781 +608 607 5 880405395 +673 303 5 888787376 +297 750 5 888643345 +688 288 5 884153712 +21 637 4 874951695 +378 42 4 880046256 +435 258 4 884130647 +224 193 4 888082552 +586 720 4 884062742 +95 960 2 888954129 +429 708 3 882386895 +634 7 4 875729069 +385 58 4 879441881 +25 404 3 885852920 +1 110 1 878542845 +13 650 2 882140425 +344 864 3 884900454 +342 93 4 874984684 +416 333 4 876696788 +524 197 4 884637347 +405 642 1 885548579 +661 727 4 888300194 +457 452 3 882551228 +2 269 4 888550774 +29 264 3 882820897 +403 106 2 879786084 +618 720 3 891309293 +160 285 4 876767660 +450 264 3 882370581 +600 562 3 888452564 +648 216 4 882213596 +334 116 4 891545044 +405 37 1 885548384 +44 298 2 883612726 +11 367 3 891905058 +268 70 3 875309282 +666 199 5 880314253 +325 58 3 891478333 +429 237 3 882384526 +406 747 2 879446108 +606 89 5 880927358 +619 313 5 885953601 +400 301 4 885676411 +663 286 3 889491515 +346 240 1 874948929 +648 523 3 884628644 +450 966 4 882377861 +604 5 2 883668261 +629 50 5 880117395 +14 302 5 890880970 +537 455 1 886030317 +279 137 4 886014686 +629 709 3 880117062 +207 411 3 877750701 +569 9 5 879793493 +661 425 4 886841714 +398 211 4 875717407 +684 553 4 878760305 +243 22 3 879988104 +21 817 3 874951695 +95 95 3 879198109 +690 25 3 881177430 +276 160 4 874787441 +584 82 3 885778458 +581 813 5 879641603 +537 1101 3 886031720 +551 76 4 892778202 +373 727 4 877098784 +554 58 4 876549808 +207 317 4 875506634 +305 845 3 886323335 +7 73 3 892133154 +299 48 4 877880612 +407 96 3 875042569 +178 77 4 882827947 +655 159 3 887477216 +617 607 4 883789212 +194 542 3 879551849 +102 273 3 888801465 +650 227 2 891369836 +232 655 4 888549721 +159 876 2 893255905 +503 1317 4 879438874 +697 294 4 882621569 +439 591 4 882892818 +280 486 5 891700751 +432 471 3 889416229 +618 66 4 891309697 +262 427 4 879791999 +608 693 3 880405927 +608 132 2 880403899 +524 520 3 884637314 +551 917 3 892775466 +532 1 5 893119335 +116 1020 3 887605454 +608 702 1 880406862 +643 228 4 891447260 +387 107 3 886481002 +548 39 5 891044481 +595 268 4 886920576 +430 318 5 877226130 +244 1188 4 880608864 +407 729 4 876348660 +495 1182 3 888636871 +500 1441 2 885237683 +455 423 5 879111862 +542 109 4 886532416 +360 275 4 880354149 +208 86 2 883108895 +527 209 4 879456405 +514 132 4 875463469 +660 2 2 891201151 +189 50 5 893263994 +677 237 4 889399402 +378 1058 3 880333695 +276 794 2 874793198 +341 895 4 890757961 +82 274 3 876311492 +286 316 5 889651121 +311 88 4 884365450 +486 628 3 879875278 +406 92 4 882480836 +566 80 3 881651531 +642 1028 4 885605735 +667 124 5 891035164 +522 654 4 876960824 +256 975 3 882151017 +593 275 3 875658862 +234 259 2 891033686 +102 655 3 888803802 +198 369 1 884206806 +533 371 3 879439488 +497 358 4 878759378 +532 559 5 892859148 +495 435 5 888632969 +606 203 5 880926084 +601 98 3 876348526 +693 499 4 875484539 +562 5 4 879196576 +683 895 2 893284138 +313 499 3 891016452 +343 536 4 876403310 +643 53 4 891449719 +94 328 3 891724990 +269 631 4 891447891 +689 879 2 876674692 +658 433 4 875147994 +201 228 3 884112427 +486 508 4 879874753 +582 121 3 882961133 +667 316 4 891034584 +648 240 2 882211857 +637 294 3 882900888 +580 546 1 884126077 +601 185 4 876349577 +568 162 2 877906935 +56 969 3 892683303 +271 924 3 885847974 +592 14 5 882607986 +561 895 1 885807035 +437 207 4 880142365 +40 259 2 889041643 +615 160 3 879448599 +13 22 4 882140487 +360 1134 3 880355261 +648 878 3 884367366 +677 405 4 889399328 +374 192 5 880395665 +508 153 3 883777329 +648 174 5 884882664 +198 73 3 884208419 +655 1016 3 887425601 +526 323 2 885682214 +476 168 5 883364143 +610 12 5 888703157 +650 219 3 891386671 +64 384 2 889740367 +531 895 2 887049214 +557 58 4 880555684 +533 236 4 890659276 +346 67 3 875264985 +577 447 3 880475226 +682 1107 2 888517896 +347 386 1 881654846 +615 632 5 879448759 +669 23 4 891260474 +90 208 3 891384065 +660 431 4 891200658 +561 811 3 885808963 +527 651 5 879455654 +370 172 4 879435369 +586 1047 3 884067058 +207 722 3 878191750 +299 487 5 889501230 +685 302 3 879451401 +80 514 3 887401533 +535 166 4 879618385 +339 657 4 891032221 +280 416 5 891701666 +409 367 3 881109264 +697 713 5 882622505 +368 670 3 889783562 +174 763 1 886434260 +2 255 4 888551341 +43 747 4 883956169 +293 404 4 888907122 +698 1063 2 886367406 +218 175 3 877488492 +620 246 4 889987276 +523 944 4 883702324 +670 482 5 877975285 +592 4 4 882956418 +153 182 5 881371198 +59 465 2 888206363 +101 370 2 877136711 +308 230 4 887739014 +359 268 4 886453490 +135 55 4 879857797 +192 235 3 881368090 +313 432 5 891016583 +664 79 4 876526519 +610 56 3 888703213 +654 1009 3 887863885 +151 748 2 879523925 +643 288 4 891445255 +222 424 1 881061049 +690 210 3 881177581 +303 269 5 879466018 +533 20 5 882902988 +10 197 5 877888944 +626 243 1 878771505 +474 614 4 887926999 +684 48 4 875812176 +484 204 5 891195057 +664 197 4 876523654 +305 48 5 886323591 +508 185 5 883777430 +626 286 5 878771242 +682 333 4 888518279 +648 79 5 884796689 +542 772 4 886533694 +617 569 1 883789537 +379 516 4 880525306 +365 277 4 891304078 +328 549 4 885047556 +186 291 4 879023073 +453 53 3 877561894 +64 91 4 889739733 +445 245 2 891035830 +629 135 5 880117586 +511 288 4 890004795 +356 307 4 891406040 +409 186 5 881109420 +643 150 5 891445823 +503 321 2 879438024 +374 172 3 880434204 +669 257 3 892549514 +496 191 5 876072632 +605 252 4 879510953 +406 53 4 879792928 +493 195 3 884131314 +320 1059 4 884748868 +429 52 4 882387074 +268 1098 3 875743534 +437 1599 5 880142614 +474 218 4 887927588 +618 385 4 891309163 +95 1126 4 879197445 +474 416 4 887926271 +374 979 3 880936113 +92 243 1 875644795 +294 313 5 889241339 +94 317 5 885873653 +685 991 1 879451282 +256 363 3 882163834 +405 843 2 885549005 +533 382 1 879191998 +425 895 4 890346198 +28 28 4 881956853 +626 988 1 878771281 +490 455 4 875428152 +189 863 4 893266161 +524 322 4 884320358 +487 97 5 883446600 +659 127 5 891331825 +618 423 5 891309886 +428 326 3 892572448 +270 535 5 876954123 +686 425 5 879546651 +291 780 5 875086636 +58 98 4 884304747 +406 123 4 879540173 +227 274 4 879035963 +85 822 3 880581629 +268 561 3 876513897 +58 199 4 891611501 +586 240 3 884066799 +90 1205 3 891383687 +592 854 5 882955948 +592 173 5 882956276 +622 1207 2 882671958 +619 720 4 885954238 +59 679 4 888205714 +568 615 5 877907235 +497 1228 2 879362569 +600 810 3 888451977 +506 215 5 878044852 +185 160 1 883524281 +405 447 4 885548331 +305 143 3 886323275 +323 23 5 878739925 +488 328 4 891293606 +198 727 4 884208876 +466 885 2 890283667 +312 945 5 891699068 +463 473 4 877385731 +655 1029 1 887475032 +130 64 5 875801549 +537 425 3 886031297 +391 498 4 877399513 +623 504 3 891034343 +692 1023 2 876954083 +693 273 3 875481549 +660 996 1 891265453 +244 80 3 880607489 +225 286 4 879539027 +177 186 4 880130990 +279 61 4 875306552 +295 809 4 879519438 +268 728 2 875744051 +347 183 3 881654232 +536 435 3 882359755 +426 197 4 879444816 +484 405 4 881450182 +269 530 3 891448926 +608 166 3 880403388 +409 209 5 881107117 +234 154 3 892078605 +627 1134 1 879530305 +629 660 5 880117772 +561 679 3 885807235 +450 527 5 882374059 +6 185 5 883601393 +374 1013 2 880936476 +344 281 3 884900374 +644 597 4 889077513 +504 4 4 887839260 +20 148 5 879668713 +189 118 1 893264735 +354 473 3 891216498 +539 170 5 879788533 +638 430 5 876695714 +485 330 3 891042162 +415 748 5 879439349 +465 423 3 883531533 +543 480 4 876896210 +354 311 5 891180445 +586 31 4 884064631 +354 303 5 891180548 +326 484 5 879874933 +584 40 4 885778385 +648 676 2 882211384 +665 24 3 884291300 +577 63 4 880476606 +543 529 4 874866208 +586 27 3 884062405 +343 134 5 876404568 +370 199 4 879434999 +505 191 3 889333792 +655 1585 4 887523403 +125 508 1 892838351 +181 1391 1 878962168 +469 306 4 879450473 +391 182 4 877399696 +635 13 2 878879164 +470 1067 4 879178568 +698 568 2 886367955 +587 339 3 892871284 +94 780 3 891723558 +590 15 3 879438936 +682 1089 2 888518871 +424 538 5 880858861 +560 411 3 879976828 +346 391 2 875266600 +690 790 3 881177970 +467 249 3 879532671 +642 570 1 886131332 +559 197 4 891035111 +250 248 2 883263390 +619 515 1 885953778 +474 291 4 887916567 +568 638 3 877907877 +479 318 5 879461039 +672 50 3 879787753 +234 66 3 892334765 +389 491 5 879991352 +642 63 3 885606090 +484 73 4 891195199 +174 126 5 886433166 +441 342 4 891035267 +262 1135 3 879794599 +559 511 2 891034347 +254 231 3 886474712 +610 7 2 888703137 +694 1050 3 875726759 +267 153 5 878974783 +543 163 4 874864870 +655 527 3 887427568 +330 102 4 876546586 +361 611 4 879441462 +588 174 3 890015323 +645 286 4 892051844 +606 125 4 878148493 +624 687 2 891961362 +94 679 4 891722006 +396 245 3 884645720 +182 50 5 885613018 +361 49 3 879441179 +492 772 1 879969512 +318 385 4 884496398 +538 42 1 877108077 +586 591 3 884058249 +450 731 3 882398084 +470 1 3 879178428 +303 143 4 879483680 +690 80 3 881177778 +174 178 5 886513947 +72 1147 5 880036783 +517 127 4 892660033 +500 268 5 883864840 +7 666 4 892132192 +318 618 3 884496984 +327 152 3 887819194 +468 111 4 875280518 +435 162 1 884132755 +1 66 4 878543030 +345 255 4 884994156 +239 462 5 889179623 +13 39 3 882397581 +311 66 4 884365325 +658 96 4 875147873 +552 1014 4 879222520 +682 597 1 888522699 +622 855 3 882592103 +654 678 4 888687055 +262 153 3 879793346 +664 663 4 876525998 +481 283 5 885828389 +545 549 4 879901920 +593 183 4 875670915 +606 161 4 880926994 +426 135 3 879444604 +269 255 1 891446703 +536 708 3 882361179 +680 20 4 877075273 +76 93 4 882606572 +561 52 4 885809583 +207 475 2 875503932 +295 381 5 879518528 +346 541 3 874951104 +234 765 3 892336322 +276 769 1 874977334 +21 259 2 874951005 +677 148 4 889399265 +427 258 4 879700792 +606 993 5 887059716 +401 511 2 891033092 +138 509 4 879024232 +234 650 3 892078837 +478 1048 4 889388357 +388 9 3 886437226 +232 100 5 880062447 +483 180 2 878954086 +683 268 4 893286261 +90 496 4 891385787 +634 508 4 880067125 +542 357 5 886532534 +198 431 3 884208137 +496 356 2 876070764 +408 313 4 889679761 +417 1416 2 880952534 +379 434 3 880961672 +554 173 3 876369527 +622 50 5 882592815 +291 117 5 874834481 +642 462 4 886455357 +295 465 4 879518630 +486 935 4 879874516 +222 1188 3 881060281 +345 485 4 884992141 +434 7 1 886724505 +642 527 4 886207132 +176 286 2 886046979 +151 93 5 879525002 +223 1016 5 891549657 +705 1043 5 883427857 +682 357 3 888516979 +85 710 2 879828912 +85 82 3 879454633 +655 698 4 887473727 +543 518 3 874864736 +524 416 4 884636152 +363 204 2 891495402 +537 281 1 886030281 +693 132 4 875484562 +230 121 4 880484998 +256 538 5 882150122 +653 474 4 880150019 +551 943 5 892783451 +592 12 5 882955825 +26 116 2 891352941 +398 602 4 875660302 +680 1012 3 877075214 +110 1090 2 886989191 +597 264 4 875339156 +705 578 3 883428276 +524 705 3 884634818 +84 628 3 883450434 +378 94 3 880332752 +567 209 4 882426812 +129 903 2 883245311 +502 687 4 883702867 +514 293 3 880209950 +524 950 4 884323351 +115 176 5 881171203 +416 1262 5 893213019 +244 433 5 880603683 +299 91 4 889501654 +690 276 3 881178293 +655 1379 3 888685879 +149 346 4 883512658 +268 191 4 875310784 +387 429 3 886484065 +541 174 4 883871524 +59 180 4 888204597 +650 238 4 891382032 +276 475 5 874786756 +437 275 5 881001888 +655 208 3 888813272 +527 7 5 879456162 +532 251 4 888636374 +650 449 3 891370031 +111 315 5 891679692 +197 183 5 891409839 +513 127 4 885062286 +91 601 4 891439171 +605 475 3 879424369 +521 22 4 884477677 +500 98 4 883873811 +334 629 4 891548460 +145 1051 2 888398087 +528 298 4 888520849 +535 61 3 879619107 +279 1037 1 888806543 +405 666 1 885549635 +499 157 3 885599447 +543 704 3 875662979 +562 416 5 879195613 +659 179 1 891384077 +611 896 3 891636152 +72 5 4 880037418 +478 65 4 889395879 +660 197 3 891199965 +141 1014 3 884585572 +442 1218 2 883388960 +655 1134 3 887611594 +323 50 5 878739137 +203 323 3 880433558 +640 750 5 886353742 +487 239 5 883531507 +9 242 4 886958715 +624 342 3 891961267 +236 328 5 890117711 +670 651 4 877975070 +701 285 5 891447139 +223 1051 3 891549945 +429 418 3 882386096 +624 333 4 879791884 +299 502 4 878192756 +257 286 5 879029516 +299 402 3 889502865 +218 648 4 877488233 +693 131 3 875484953 +565 638 4 891037837 +406 405 3 879540296 +671 233 4 883547351 +620 35 3 889988340 +538 566 3 877107765 +443 12 5 883505379 +592 305 4 885280098 +92 363 3 886443455 +671 581 2 884035173 +584 313 5 885773921 +653 196 2 880151539 +642 1076 2 885606648 +693 480 4 875484454 +492 285 4 879969345 +435 195 5 884131118 +160 483 5 876859413 +493 60 2 884131263 +694 432 4 875727513 +91 328 4 891438245 +699 748 2 879382698 +507 690 4 889964074 +639 197 3 891239492 +337 879 3 875429233 +623 435 5 891035112 +214 582 3 891544236 +653 230 3 890181186 +699 100 4 878882667 +694 191 5 875727749 +240 269 5 885775536 +144 514 5 888105197 +698 512 4 886367644 +279 480 3 875309189 +632 184 5 879458277 +458 143 4 886396005 +456 143 3 881373983 +336 204 5 877757601 +495 1469 5 888636810 +532 1188 4 874790998 +495 229 3 888634918 +298 211 5 884125093 +560 654 5 879975613 +658 458 3 875145926 +518 147 4 876823324 +545 419 3 884134177 +655 909 3 890611503 +619 350 3 885953641 +279 342 4 881375917 +521 431 4 884478601 +416 754 5 893214128 +301 12 4 882076239 +59 789 4 888205087 +62 569 1 879376158 +632 282 4 879458806 +102 68 2 888801673 +621 398 2 874964605 +653 448 4 878867249 +692 285 3 876953204 +349 100 4 879466479 +606 174 5 880924663 +519 259 1 883248278 +371 183 5 880435519 +545 182 3 883115423 +388 307 4 886439506 +486 124 5 879874545 +655 1008 3 887426300 +343 98 5 876404836 +457 1039 5 882397934 +1 77 4 876893205 +111 354 4 891679692 +704 205 5 891397819 +417 258 4 879645999 +524 584 1 884635205 +606 153 3 880926700 +200 62 5 884130146 +659 654 4 891384526 +595 1061 3 886921945 +507 750 5 889964274 +671 23 4 883547351 +405 193 4 885544698 +669 326 1 891182678 +487 685 3 883444252 +546 164 4 885141360 +149 874 3 883512752 +618 576 4 891309608 +608 133 4 880405165 +125 687 3 892836268 +472 28 5 892791063 +679 288 4 884312660 +582 3 3 882961723 +555 410 4 879962769 +417 357 5 879647118 +301 250 4 882074236 +347 202 4 881654211 +553 515 5 879948386 +393 68 4 889729537 +72 466 4 880037461 +650 55 4 891369889 +301 393 3 882078735 +270 582 3 876955087 +279 1185 1 888805868 +436 92 3 887770115 +184 715 4 889909590 +373 435 4 877098979 +404 690 5 876889178 +338 215 3 879438092 +347 203 5 881654232 +647 328 3 876531582 +621 561 4 874964945 +650 692 3 891384226 +465 32 3 883531026 +322 258 4 887313698 +457 117 4 882393457 +59 185 5 888205228 +457 203 4 882397133 +435 15 3 884132146 +707 14 3 880060118 +609 258 3 886894677 +692 692 3 876953130 +499 275 3 885599447 +429 210 4 882387731 +160 589 3 876857977 +461 158 2 885355930 +234 1100 2 892335500 +623 659 5 891035112 +409 1093 2 881106087 +643 111 4 891446301 +589 286 3 883352372 +345 620 2 884991614 +195 386 2 874825826 +463 1163 4 877385982 +514 181 4 875463494 +498 212 3 881958238 +417 946 4 880950324 +389 283 5 879916099 +12 416 3 879959025 +476 1036 2 883364780 +653 1023 3 878855109 +487 550 3 883530841 +250 458 5 878092104 +210 443 4 887737487 +666 1266 5 880139493 +648 5 4 884883476 +543 111 4 874861699 +537 88 2 886032204 +268 831 3 875744357 +44 496 4 878348885 +435 31 5 884131157 +501 125 3 883348435 +224 687 2 888082135 +700 181 5 884493523 +194 88 3 879549394 +405 8 4 885545015 +682 94 3 888522021 +481 100 4 885828426 +145 447 5 877343185 +563 210 4 880507483 +200 410 3 876042204 +595 151 5 886921475 +704 209 3 891397667 +429 405 3 882387202 +618 97 5 891308913 +592 534 5 882608531 +457 70 4 882396935 +630 172 3 885667918 +23 214 3 874785701 +466 328 4 890284652 +643 24 4 891449614 +49 997 1 888069117 +64 273 2 889739381 +671 188 2 884035992 +685 319 2 879451401 +568 509 4 877906935 +411 1475 3 891035617 +178 7 4 882823805 +655 1607 3 887768472 +463 1377 4 889935837 +610 591 3 888703316 +518 820 2 876824218 +620 1 5 889987954 +697 331 3 882621431 +655 77 3 887430746 +655 500 2 887651149 +588 164 5 890026262 +94 951 3 891722214 +450 823 3 887139729 +141 619 4 884585039 +291 597 3 874833857 +450 274 4 882469627 +450 380 5 882398939 +474 664 4 887925620 +315 204 5 879821158 +664 469 3 876524474 +291 202 4 874871736 +85 132 5 879453965 +293 174 5 888905923 +269 792 4 891448436 +72 69 4 880036579 +592 307 4 882607528 +16 684 5 877719863 +627 939 3 879530264 +388 559 5 886441133 +548 234 4 891044356 +353 358 1 891402617 +249 421 5 879572516 +222 716 2 878183481 +490 926 2 875428185 +533 1016 3 887721769 +242 283 4 879740362 +244 68 5 880602170 +551 728 2 892785331 +504 448 5 887840134 +378 237 4 880044697 +686 187 5 879545481 +659 89 4 891384637 +500 611 5 883873940 +547 333 4 891282555 +222 816 1 881060412 +222 191 2 878181906 +5 216 1 875720967 +685 340 2 879451401 +704 354 4 891397015 +299 970 4 877880350 +479 281 3 879460285 +430 248 3 877225832 +405 1103 2 885546025 +110 88 4 886988967 +457 195 5 882395049 +405 1070 1 885547123 +113 9 3 875076307 +655 1538 3 887425498 +642 88 5 886131546 +692 287 3 876953130 +496 204 3 876066531 +666 529 5 880568129 +655 792 3 891585380 +642 139 1 886569417 +452 62 2 875563098 +102 49 2 892992129 +529 319 4 882535220 +655 284 2 887426732 +655 619 3 887430746 +235 1176 5 889655820 +187 179 5 879465782 +682 443 3 888520977 +405 684 3 885547996 +406 663 5 879446269 +648 471 4 882211685 +605 325 2 879365219 +397 855 4 885349476 +109 95 4 880572721 +455 64 4 879111500 +472 78 1 875982967 +158 1016 3 880132701 +687 245 3 884652276 +301 758 3 882075242 +263 1 5 891299207 +429 202 4 882385829 +531 688 1 887048998 +18 528 4 880129489 +682 940 2 888521907 +472 928 4 875979562 +627 1136 4 879530762 +299 77 3 878192638 +695 300 1 888805767 +657 151 4 884239886 +399 233 3 882347061 +182 150 3 885613294 +246 181 5 884920978 +693 289 3 889167919 +373 571 1 877111864 +457 231 4 882549998 +437 843 4 880143520 +593 193 4 886193361 +40 321 4 889041523 +85 136 4 879454349 +219 38 1 889452455 +543 239 2 877550660 +393 204 4 887746301 +60 684 4 883328033 +550 288 5 883425979 +234 443 3 892334079 +28 288 5 882826398 +388 596 4 886436661 +545 384 3 879900863 +542 273 3 886532466 +654 825 3 887863826 +582 50 5 882961082 +5 420 3 875721168 +655 733 3 888474138 +167 83 5 892738384 +653 967 2 880153123 +497 399 4 879310883 +328 692 4 885046976 +675 306 5 889488487 +405 1219 1 885549094 +533 22 4 879438961 +562 402 5 879196074 +650 650 2 891372203 +405 784 1 885548275 +524 403 4 884636182 +496 227 1 876066794 +658 772 3 875147591 +320 274 4 884748683 +661 676 4 886841222 +405 1044 4 885545552 +180 961 5 877544384 +90 454 2 891383423 +697 298 4 882621940 +291 100 5 874834481 +291 69 5 874868146 +378 125 2 880044609 +215 174 4 891435995 +543 170 4 874863269 +12 215 4 879959553 +666 699 3 880568297 +406 39 4 884630523 +645 59 5 892053429 +128 393 4 879969136 +632 150 2 879457525 +483 229 3 878953485 +151 628 5 879528674 +12 4 5 879960826 +479 727 5 879461818 +627 83 3 879530071 +457 792 4 882548312 +606 42 3 880926245 +59 616 5 888206049 +586 397 3 884063080 +361 168 4 879440386 +666 132 4 880139669 +72 222 1 880036346 +474 274 3 887916330 +633 172 3 877212250 +336 780 3 877756934 +141 871 3 884585148 +683 511 5 893286207 +568 478 4 877907235 +90 221 4 891383987 +621 250 4 880738568 +365 268 5 891303474 +589 749 3 883352631 +368 234 3 889783365 +523 509 4 883700870 +63 25 4 875747292 +181 1345 1 878962168 +255 325 1 883215723 +705 58 2 883518834 +373 510 3 877100379 +433 326 2 880585386 +639 305 1 891238668 +445 7 1 891200078 +116 323 3 876452186 +630 832 2 885667528 +480 89 4 891208651 +490 1386 4 875428416 +303 425 4 879466795 +587 350 3 892871372 +416 463 4 886316703 +13 818 3 882141814 +250 754 4 883263374 +650 1065 4 891383547 +634 748 3 875729217 +313 505 5 891014524 +269 496 5 891455816 +436 559 4 887770640 +682 1074 4 888517792 +43 294 5 875975061 +99 313 5 885678348 +201 196 4 884111677 +608 185 5 880405484 +405 480 4 885544739 +393 696 4 887745258 +435 105 3 884133872 +643 367 4 891447518 +194 507 4 879520916 +405 12 5 885545306 +440 350 5 891550404 +385 1069 4 879442235 +35 333 4 875459017 +697 301 5 882621523 +345 1281 4 884991105 +708 322 3 892719062 +534 273 5 877807747 +655 936 3 887425625 +301 462 2 882076587 +663 332 4 889491768 +569 473 4 879794699 +405 790 1 885547360 +537 168 4 886030552 +650 671 3 891386878 +621 180 4 885596944 +665 156 5 884294772 +444 9 5 890247287 +457 94 3 882549544 +671 748 3 875386402 +507 315 5 889964593 +64 288 4 879365313 +288 136 5 886374316 +56 443 4 892679144 +184 65 4 889909516 +551 685 1 892782901 +682 293 4 888523581 +217 403 5 889069944 +527 4 2 879456162 +398 174 5 875660535 +437 699 4 880143419 +534 294 5 877807461 +389 154 3 880087200 +416 472 4 876698204 +494 294 4 879540593 +622 472 3 882591687 +666 245 3 880138865 +561 702 3 885809873 +406 1194 4 879446588 +600 510 5 888451665 +184 1 4 889907652 +654 50 5 887863323 +655 1085 2 888813416 +284 751 3 885329322 +397 346 4 890172230 +246 172 5 884922042 +294 1011 2 889242370 +142 425 4 888640489 +601 225 1 876347462 +293 518 5 888906489 +487 96 5 883446801 +398 73 3 875723337 +445 118 2 891200506 +336 1183 1 877757972 +642 364 5 885843025 +56 373 4 892910950 +447 284 4 878854552 +619 405 3 885953826 +524 1152 3 884626906 +583 7 5 879384471 +207 69 4 877878342 +124 173 2 890287687 +655 481 2 888474390 +168 225 5 884288304 +307 70 4 877121347 +181 289 4 878961332 +655 1649 3 892333993 +325 200 2 891478120 +423 125 2 891395547 +707 663 4 886286979 +634 21 2 875729668 +20 378 3 879669630 +524 836 2 884637409 +661 95 5 876036190 +465 705 4 883531444 +569 508 3 879793785 +610 79 3 888702859 +629 340 2 880115971 +303 255 4 879544516 +313 211 5 891013859 +82 474 3 878769597 +548 1014 4 891043932 +474 208 3 887925497 +607 45 4 883880079 +592 1514 5 882608625 +623 648 5 891035112 +308 210 4 887737130 +383 345 2 891192251 +698 83 5 886366731 +618 596 4 891309065 +95 465 3 882803918 +567 484 4 882426508 +450 316 4 889568753 +450 166 5 887660440 +684 161 3 878760137 +627 69 3 879529855 +287 100 5 888177364 +409 192 4 881107666 +99 147 5 885678997 +537 64 3 886030707 +621 241 4 874964604 +202 269 4 879726420 +642 148 5 885604163 +495 143 1 888634315 +41 168 5 890687304 +602 988 4 888638248 +505 588 5 889333823 +655 672 2 891585573 +295 237 4 879517994 +450 125 4 882376803 +579 286 4 880951444 +617 175 4 883789386 +617 573 4 883789590 +686 180 5 879546147 +566 192 5 881649747 +609 288 2 886894677 +405 101 1 885549192 +90 218 5 891385899 +71 174 2 877319610 +642 68 3 885606765 +109 229 5 880578632 +599 1315 4 880951743 +346 423 4 874949057 +452 154 5 888568251 +618 239 3 891309293 +533 696 3 887032538 +450 535 3 882812636 +650 286 3 891369022 +533 204 4 879192157 +330 969 5 876546409 +346 842 1 874948513 +637 408 5 882901355 +682 50 5 888518639 +130 29 3 878537558 +94 228 4 891720996 +543 8 4 875658853 +476 80 3 883364392 +198 434 3 884208061 +637 255 3 882903645 +498 514 4 881958093 +457 405 5 882553113 +222 377 1 881060205 +624 741 4 879792557 +582 268 4 882960396 +393 1435 3 889731821 +87 153 5 879876703 +670 945 4 877975285 +56 501 3 892737210 +506 92 3 874876551 +435 566 4 884132643 +498 887 3 881953907 +655 213 4 888474934 +682 541 3 888522612 +648 399 4 884882104 +116 678 3 876452228 +111 302 5 891679971 +14 265 3 890881216 +457 732 4 882548426 +308 496 3 887736532 +472 569 4 892790676 +643 181 3 891445476 +595 929 2 886921722 +59 371 4 888206095 +506 224 1 885136005 +650 175 4 891372233 +505 204 3 889334162 +622 298 4 882590559 +682 122 3 888522260 +387 295 3 886480818 +14 923 5 890881294 +145 343 5 882181082 +709 219 4 879848120 +145 898 1 885555980 +621 268 4 890517367 +632 186 5 879459738 +704 381 3 891397713 +116 515 4 876452443 +659 659 3 891332006 +328 1107 3 885048532 +707 256 4 880061024 +664 81 5 876524474 +686 172 4 879545181 +233 633 5 877663185 +181 460 1 878963418 +707 716 2 886287051 +159 476 5 880557564 +660 625 3 891200513 +694 196 5 875727226 +262 283 3 879962366 +474 107 3 887915722 +650 143 5 891369656 +492 479 3 879969583 +409 661 5 881107817 +452 631 4 888568464 +38 401 3 892434585 +266 321 3 892256892 +535 153 4 879617663 +393 810 4 889731138 +525 15 4 881085964 +478 69 3 889388612 +435 239 4 884132968 +663 273 4 889492679 +92 258 4 886440479 +533 291 3 882902727 +90 133 5 891384147 +524 930 3 884832772 +628 305 5 880776981 +618 4 2 891308459 +553 135 4 879948996 +399 544 2 882340556 +524 72 4 884636958 +23 144 3 874785926 +551 595 2 892784744 +435 3 3 884133911 +148 227 4 877399083 +506 391 2 885135912 +334 879 3 891544264 +352 56 5 884289760 +609 125 4 886895193 +550 121 5 883426027 +276 184 4 874792547 +54 100 5 880931595 +204 316 4 892388935 +573 479 4 885844051 +504 651 4 887832531 +474 212 4 887927670 +167 288 3 892737972 +18 704 3 880131986 +693 1522 3 875483670 +401 566 5 891033684 +407 248 4 884197006 +592 405 4 882608531 +13 573 3 882396955 +530 582 4 883783631 +585 61 4 891283338 +234 416 4 892335616 +83 225 3 880307208 +541 1185 2 883866028 +361 794 3 879441033 +372 443 4 876869481 +456 226 2 881375482 +665 298 3 884292654 +426 50 4 879442226 +568 855 1 877906935 +506 241 2 874874850 +325 647 5 891478529 +257 275 4 879029716 +694 229 4 875728801 +552 286 4 879220564 +416 1441 3 886318546 +128 367 4 879968858 +569 826 3 879794660 +634 411 4 877018059 +8 227 4 879362423 +43 168 4 875981159 +705 827 4 883427297 +521 56 4 884478530 +346 385 5 886274124 +648 175 3 882213597 +201 317 3 884113634 +313 300 4 891012907 +588 94 2 890027865 +392 705 5 891038433 +325 32 3 891478665 +121 156 4 891388145 +588 419 5 890023646 +495 790 3 888636635 +705 400 4 883427817 +74 276 4 888333458 +622 47 3 882670406 +267 155 3 878973088 +577 407 4 880471271 +693 604 3 875484480 +474 168 3 887927670 +619 50 4 885953778 +590 14 5 879438852 +194 783 2 879527865 +420 603 4 891356864 +665 15 4 884290676 +276 546 3 874786568 +634 126 3 875729106 +432 815 3 889416260 +577 1 5 880470282 +532 636 5 892859149 +569 979 3 879793948 +269 508 4 891446265 +666 429 5 880139409 +389 506 4 879991330 +207 182 3 891759050 +653 509 4 878854441 +250 1426 5 878091771 +615 303 5 879447530 +385 46 5 880870206 +671 628 3 883950232 +276 313 5 885159577 +454 89 1 888266433 +297 984 1 881707865 +92 583 3 875907134 +426 705 5 879441931 +601 47 3 876349542 +378 1035 3 880332911 +210 234 4 887737108 +671 53 3 884034800 +487 742 5 883442053 +92 636 3 875812064 +478 160 2 889395921 +407 715 4 876340239 +709 564 1 879848318 +618 123 2 891308063 +300 881 5 875650105 +624 876 3 879792251 +362 245 4 885019504 +60 7 5 883326241 +682 1220 4 888518130 +665 172 4 884293523 +479 108 4 879460424 +642 769 5 885842903 +130 1279 4 876251217 +514 136 4 875462867 +352 39 5 884289728 +235 462 3 889656168 +378 410 3 882022445 +545 820 3 879901359 +59 198 5 888204389 +42 64 5 881106711 +645 87 4 892055444 +392 271 1 891037490 +457 65 5 882547967 +16 476 3 877720437 +537 243 1 886029239 +619 1016 4 885953826 +533 191 4 879192315 +711 421 4 879993674 +618 673 3 891309139 +632 483 5 879459738 +535 221 3 879618700 +44 102 2 878348499 +650 968 4 891372258 +417 106 2 879646741 +148 418 3 877019251 +416 737 3 886318613 +661 52 4 876017029 +603 229 4 891955972 +159 276 5 880485824 +497 731 3 879310474 +379 654 5 880526123 +666 474 5 880139323 +429 700 3 882386485 +660 527 3 891200073 +320 232 4 884749281 +561 578 3 885810575 +44 7 5 878341246 +664 450 3 876526604 +123 23 4 879873020 +638 238 4 876695819 +655 1017 3 887611566 +665 508 2 884290751 +293 638 4 888906168 +406 151 2 879540051 +378 318 5 880045823 +398 47 3 875738523 +639 724 3 891239581 +454 1035 3 888266601 +125 117 3 879454699 +474 511 5 887925620 +405 448 4 885548331 +109 81 2 880580030 +158 1067 4 880134261 +707 526 1 886287405 +655 728 2 887431019 +409 606 4 881108829 +454 237 4 881960361 +525 151 5 881086562 +308 203 5 887737997 +514 473 3 875462520 +454 879 4 881958402 +468 655 5 875294464 +405 1271 2 885547506 +633 322 3 875325888 +632 655 3 879457641 +506 68 4 874873944 +401 143 4 891033034 +663 1073 3 889493691 +117 596 3 880126392 +204 322 3 892391947 +636 740 4 891449263 +588 208 3 890023879 +635 301 3 878878587 +239 69 1 889179544 +449 1142 4 879958803 +183 202 4 891463320 +654 294 3 887863127 +233 498 5 877663465 +650 4 3 891386695 +655 97 3 887426931 +709 64 5 879846293 +537 135 5 886031149 +561 212 3 885809025 +709 769 3 879848239 +707 153 3 886286844 +200 582 4 884129782 +174 721 2 886514889 +503 275 5 879438411 +684 218 1 878232961 +621 746 4 874963028 +655 867 4 887427307 +313 142 3 891030261 +499 295 2 885598827 +501 1067 5 883348011 +235 50 5 889655403 +655 117 2 887426030 +682 97 4 888517587 +655 149 4 887425936 +667 318 5 891034976 +562 1039 4 879196105 +463 1197 4 877385180 +389 1036 2 880087170 +630 70 2 885667994 +442 27 2 883390416 +601 172 4 876348736 +621 174 3 874965407 +345 131 4 884992998 +87 926 4 879877043 +306 283 3 876503995 +72 402 4 880036824 +593 69 5 875660419 +248 250 3 884535532 +28 185 5 881957002 +581 181 3 879641787 +58 462 4 884304865 +658 98 4 875147800 +588 125 3 890026154 +91 750 5 891438209 +648 68 1 884882916 +622 46 4 882670610 +627 1074 3 879530694 +627 258 4 879529339 +710 627 4 882064377 +626 948 1 878771281 +480 213 5 891208492 +183 228 4 891463591 +642 195 3 885602718 +625 191 3 891636079 +361 451 3 879440740 +608 423 4 880406727 +524 578 5 884637031 +586 379 4 884060941 +417 393 4 879648096 +632 81 5 879458834 +498 183 4 881957905 +576 257 4 887168556 +13 761 4 882398076 +592 118 3 882609056 +337 181 2 875184353 +429 338 3 882387599 +602 127 5 888638491 +608 753 5 880405395 +509 754 1 883590676 +592 1097 4 882608021 +130 294 5 874953337 +338 525 4 879438449 +708 471 4 877325455 +416 27 4 886318270 +39 294 4 891400609 +59 1048 4 888203270 +279 31 3 875309667 +693 472 3 875484089 +598 292 4 886710735 +488 196 3 891293974 +665 111 4 884290608 +493 357 5 884130891 +334 744 3 891545108 +325 1149 4 891479228 +230 491 3 880484975 +458 696 3 886395512 +167 237 4 892737972 +393 290 3 887745322 +454 483 3 881960145 +605 300 2 879365101 +116 181 4 876452523 +466 258 4 890284652 +232 250 4 880062618 +528 402 4 888520911 +643 235 4 891445698 +45 1059 2 881014417 +707 676 4 880060180 +458 526 5 886396241 +634 313 5 884980565 +532 335 3 888636389 +478 300 3 889387471 +318 179 4 884497546 +499 605 1 885599533 +495 423 5 888633522 +442 117 3 883390366 +435 69 4 884131243 +707 866 2 880060974 +49 171 4 888066551 +694 419 4 875729907 +442 33 3 883388508 +60 204 4 883326086 +249 173 5 879572229 +705 298 5 883426892 +639 137 3 891239271 +490 93 4 875427993 +359 118 3 886453402 +452 947 5 885816915 +189 178 5 893265191 +265 756 4 875320574 +253 433 3 891628670 +694 300 4 875726453 +70 142 3 884150884 +429 181 5 882384870 +85 1136 3 879455402 +653 216 3 878866900 +506 173 4 874874308 +645 403 3 892055603 +537 1451 3 886030552 +104 871 2 888465853 +661 357 4 876014469 +618 356 2 891309608 +116 1039 4 876453915 +344 928 2 884900409 +540 1048 4 882157635 +693 427 4 875484908 +206 337 2 888180049 +82 367 4 878769848 +399 576 3 882350563 +178 735 5 882827083 +496 433 4 876066904 +561 1449 5 885808620 +592 121 4 882608573 +472 373 4 875983129 +399 451 3 882344684 +100 326 3 891375630 +201 346 4 884110766 +618 371 3 891308980 +588 781 2 890028509 +168 1012 5 884287509 +318 321 4 884470149 +268 525 4 875309913 +615 518 4 879448632 +248 1 3 884535744 +354 241 3 891307069 +70 408 4 884152129 +561 47 4 885809557 +569 16 3 879794348 +254 403 3 887347350 +301 576 4 882079199 +682 273 4 888520864 +614 717 4 879465414 +615 462 4 879447990 +705 622 4 883427778 +332 742 5 887938224 +141 1047 4 884585220 +479 177 4 889125665 +666 1045 4 880567974 +606 1280 2 889137292 +268 240 2 875742341 +570 690 3 881262307 +301 451 4 882078061 +435 159 5 884132898 +561 174 4 885808053 +684 88 4 878761788 +472 576 5 892790952 +378 79 4 880045722 +590 130 1 879439567 +373 380 4 877112017 +508 168 4 883767172 +450 1208 3 882399359 +618 215 4 891307494 +592 1281 3 882608795 +435 29 3 884133691 +221 1267 3 875246459 +493 71 5 884131020 +519 332 3 883248159 +456 135 4 881373169 +542 99 5 886533587 +648 195 5 884368313 +60 215 4 883327566 +56 227 3 892676430 +592 922 3 882608736 +699 1 3 878882272 +417 895 3 886186520 +393 168 4 887746482 +463 268 4 877384940 +474 45 5 887924618 +495 402 3 888635050 +405 143 5 885548785 +686 504 5 879545662 +618 1032 2 891309192 +13 670 3 882396955 +529 271 4 882535536 +463 472 3 877385922 +579 433 3 880952237 +643 100 5 891445140 +234 13 3 892335342 +59 212 4 888205463 +201 145 3 884114813 +318 722 4 884497546 +264 7 5 886122261 +230 266 4 880484286 +413 332 3 879968890 +686 357 5 879545549 +490 224 2 875428702 +622 705 3 882592217 +234 301 3 892826947 +586 254 4 884064246 +521 755 3 885254872 +655 271 3 887425103 +600 1188 3 888452152 +234 223 3 892079336 +704 316 4 891397015 +487 230 5 884036466 +504 631 4 887837701 +436 1048 2 887770379 +450 393 4 882812349 +381 132 5 892696426 +380 570 3 885479706 +373 83 5 877098599 +712 747 3 874730552 +488 612 4 891294210 +488 515 4 891293699 +663 924 3 889492351 +450 845 4 882373385 +612 237 3 875324455 +19 202 4 885412723 +194 419 2 879521088 +642 790 4 885605932 +683 264 2 893283997 +561 614 3 885809336 +617 429 3 883789212 +194 1044 2 879524579 +561 405 2 885809313 +474 497 5 887926106 +190 326 4 891033305 +398 495 4 875660439 +659 202 4 891385306 +343 179 5 876405633 +704 604 5 891397366 +198 69 4 884207560 +655 1067 2 887650593 +527 498 4 879455961 +655 572 2 887651149 +566 959 4 881651406 +577 208 4 880474556 +422 286 5 875129523 +608 318 4 880404916 +642 699 5 886568959 +189 934 2 893264678 +621 96 5 874963797 +559 502 4 891035946 +506 239 3 874874152 +569 15 4 879794265 +656 347 4 892318488 +514 215 4 875462689 +433 273 3 880585923 +399 564 3 882350899 +653 239 5 878854475 +226 203 5 883888978 +601 410 4 876347113 +456 421 3 881374086 +537 434 3 886031211 +459 332 3 879561630 +22 181 5 878887765 +320 89 4 884749327 +429 281 3 882386027 +487 403 4 884050247 +101 288 4 877137015 +633 385 4 875325497 +673 347 4 888787290 +534 1 5 877807718 +217 172 1 889069684 +297 168 5 875049192 +548 1278 4 891416371 +524 492 3 884634679 +648 385 5 884368130 +427 332 5 879701253 +648 290 3 882211707 +466 313 5 890284651 +330 15 5 876544366 +564 257 4 888731011 +102 95 4 883748488 +694 684 4 875730313 +552 248 4 879221795 +91 1126 1 891439301 +648 827 3 882211924 +152 173 5 882474378 +393 655 3 887746346 +694 193 4 875728435 +638 241 3 876695217 +394 257 4 881130047 +588 131 5 890024918 +665 307 3 884292654 +669 521 4 892550196 +456 845 3 881371839 +561 188 4 885807261 +38 409 5 892433135 +500 559 4 883875523 +655 1197 3 887474289 +158 866 2 880132701 +582 472 4 882962561 +189 165 5 893265535 +648 722 3 884882104 +344 285 5 889814068 +405 1036 1 885547506 +505 1 3 889333414 +680 276 5 877075135 +336 1079 1 877757094 +506 195 4 874873374 +661 1045 3 886841865 +429 90 4 882387731 +210 755 3 887737631 +650 313 4 891381546 +642 15 5 885602314 +186 356 5 879023663 +601 91 5 876349251 +600 530 4 888451664 +327 896 5 887820828 +537 321 3 886028791 +393 84 3 889731009 +347 159 4 881654635 +465 136 4 883530133 +303 746 4 879467514 +533 687 2 879193517 +541 1036 2 883866280 +514 313 5 891900147 +468 70 3 875287535 +626 289 1 878771281 +592 192 5 882955460 +700 144 4 884494252 +465 172 3 883531026 +417 1040 2 879649428 +585 1319 2 891285820 +343 1008 4 876403418 +327 86 4 887822433 +524 443 4 884636542 +407 315 4 891873158 +567 293 5 882427250 +201 185 5 884111217 +532 554 4 874790813 +389 285 5 879916076 +453 77 3 888207161 +18 189 5 880129816 +666 656 4 880139120 +248 180 3 884534735 +189 151 5 893264378 +548 717 4 891416050 +650 367 2 891387490 +653 748 5 878853734 +693 143 4 875484613 +664 210 4 878090054 +85 1174 3 879454633 +354 733 3 891217693 +505 294 3 888631311 +646 319 3 888529054 +653 405 3 878854810 +577 673 3 880474851 +193 153 4 889125629 +178 157 5 882827400 +13 453 2 882397067 +314 775 3 877888645 +683 286 2 893282977 +486 333 2 879873973 +479 270 4 879459641 +676 751 4 892685695 +405 1415 1 885549045 +505 210 4 889333508 +328 849 3 885048333 +344 71 3 884901371 +642 249 5 885604805 +385 173 4 879441386 +389 520 3 879991175 +549 472 3 881672408 +484 173 5 891195036 +246 672 4 884923047 +655 1252 3 887425601 +244 70 4 880604077 +643 77 3 891449557 +128 220 1 879968352 +18 631 5 880129691 +577 210 3 880474715 +276 42 4 874791623 +57 288 4 883696347 +533 294 4 879193088 +695 307 4 888806120 +506 425 4 874874585 +666 518 4 880567742 +393 132 2 887746207 +608 196 5 880405395 +190 148 4 891033742 +561 130 4 885810429 +387 774 3 886481737 +316 633 4 880854472 +94 710 3 891721117 +715 228 3 875963486 +181 109 1 878962955 +286 781 4 877532777 +701 316 5 891446857 +378 482 4 880046229 +588 85 5 890026882 +550 301 2 883426119 +625 179 4 891961170 +426 23 4 879444734 +60 9 5 883326399 +65 476 3 879217290 +100 269 4 891374641 +627 184 4 879531248 +499 902 5 892501173 +371 69 5 877486953 +311 404 3 884365406 +92 382 4 875656317 +587 269 3 892870956 +571 124 4 883354760 +177 258 3 880130379 +13 815 4 886303934 +492 131 3 879969720 +642 625 3 885603932 +561 12 5 885809356 +666 186 2 880139587 +254 1060 3 886472466 +456 1010 5 881371766 +622 166 5 882669695 +602 748 3 888638160 +577 949 2 880475408 +713 310 4 888882133 +311 755 4 884366035 +561 665 3 885810309 +537 479 4 886030938 +234 511 5 892078567 +668 286 4 881523612 +629 265 4 880116887 +195 276 4 880710086 +288 174 4 886374286 +474 182 5 887923924 +112 751 4 884992754 +667 1101 3 891035015 +149 1295 3 883512813 +664 169 5 878092569 +608 969 5 880407079 +713 539 3 888882085 +151 199 3 879524563 +271 131 4 885849419 +715 202 5 875962931 +586 672 2 884061084 +500 396 3 883876224 +429 496 4 882384603 +573 178 4 885844395 +698 497 3 886367473 +429 1218 3 882387653 +477 756 4 875940755 +387 434 5 886483970 +163 305 2 891219977 +592 294 3 882607434 +639 707 5 891239492 +392 250 3 891038158 +497 122 1 879309802 +181 1335 1 878963241 +533 504 4 888845229 +507 748 5 889964844 +399 628 3 882340719 +588 72 4 890026939 +437 1227 3 880142630 +64 650 3 889740225 +387 231 3 886483194 +450 609 5 882398312 +334 1132 2 891545616 +504 411 4 887831447 +181 683 1 878962006 +399 824 2 882341445 +497 28 3 879363586 +135 203 4 879857797 +619 258 5 885953622 +551 70 4 892783057 +653 22 5 878854284 +682 658 4 888517390 +484 51 4 891194910 +534 763 4 877808361 +192 25 4 881367618 +436 585 3 887771722 +329 295 4 891656012 +354 60 5 891217160 +412 651 4 879717548 +648 4 1 884881646 +640 4 4 874778065 +71 429 4 877319610 +690 85 1 881177430 +456 97 4 881373838 +661 531 4 876013552 +16 125 3 877726944 +654 969 5 887864204 +437 286 2 880139482 +707 640 2 886287471 +707 302 4 886285168 +561 132 2 885809269 +23 217 2 874787144 +327 447 4 887746196 +445 762 1 891200355 +716 318 5 879794962 +613 28 3 891227262 +363 69 3 891494865 +379 310 4 888646088 +569 748 2 879793228 +230 284 1 880485634 +622 737 5 882592678 +527 100 5 879455905 +538 275 4 877107050 +643 508 4 891445287 +144 282 4 888104123 +383 435 4 891192836 +506 715 2 874876486 +659 317 4 891331874 +506 802 4 885135954 +627 434 4 879529855 +236 100 3 890116402 +94 813 5 891720786 +659 181 3 891384107 +640 186 5 888026047 +190 508 3 891033905 +648 687 1 882212527 +569 225 3 879794408 +361 218 3 879441324 +713 1656 2 888882085 +606 56 5 880924483 +634 340 4 881952599 +682 1428 3 888518131 +149 1296 3 883512752 +24 79 4 875322796 +112 294 3 884992566 +406 136 4 879445522 +503 19 5 879438319 +425 1 2 878737873 +450 1091 4 882468047 +655 166 3 891585530 +167 512 5 892738341 +347 405 4 881652610 +293 192 5 888905582 +608 50 1 880403765 +14 191 4 890881557 +561 319 2 885809005 +154 211 4 879139002 +595 324 3 886920632 +200 622 3 884129782 +13 410 1 882141997 +536 746 5 882359838 +699 321 3 879383009 +158 408 5 880132313 +429 4 4 882385684 +407 561 4 887832999 +57 240 2 883697512 +405 1405 1 885549745 +668 354 4 890349060 +385 1252 5 879578355 +716 483 5 879795790 +566 1005 5 881650090 +416 425 4 886316647 +707 478 4 886285762 +11 29 3 891904805 +509 289 2 883590972 +13 775 4 886304188 +484 392 4 891194932 +622 558 2 882592523 +594 988 2 874780945 +497 545 3 879363233 +437 739 3 880143243 +586 436 2 884060807 +682 69 4 888519206 +478 196 3 889395921 +21 564 3 874951797 +519 1293 5 883250148 +499 300 4 882995625 +532 307 4 880831630 +524 604 4 884637501 +601 443 4 876350766 +593 470 2 875671062 +682 191 3 888517197 +679 181 5 884487279 +551 544 4 892784093 +665 427 5 884293309 +324 276 5 880575531 +655 1475 3 887477386 +697 273 5 882622481 +38 411 3 892433290 +659 735 3 891385079 +327 568 2 887820417 +711 64 4 876278860 +314 332 5 877886029 +586 237 4 884057783 +43 248 4 875975237 +102 88 3 892991311 +543 97 3 874864346 +25 495 4 885852862 +660 21 3 891198671 +588 399 3 890027379 +447 815 3 878854658 +89 49 4 879460347 +379 393 4 892879325 +711 684 3 879993758 +637 717 3 882905572 +263 98 4 891297988 +11 724 3 891904551 +145 66 4 875272786 +666 25 3 880313559 +661 408 5 876015530 +408 324 5 889680018 +656 286 1 892318343 +472 1110 5 875981429 +305 433 2 886324792 +347 943 4 881654545 +10 69 4 877889131 +561 447 3 885808767 +670 615 3 877974605 +603 1240 5 891956058 +495 90 4 888635637 +565 713 5 891037693 +640 168 5 886354114 +524 751 4 884701677 +342 251 5 875318267 +167 655 4 892738237 +659 402 3 891387400 +131 9 5 883681723 +616 1313 4 891224840 +224 660 4 888103703 +661 216 5 876017933 +672 281 3 879788819 +404 307 4 883790749 +6 79 3 883600747 +561 191 3 885807484 +681 898 4 885409515 +288 651 4 886374342 +660 202 2 891199683 +664 735 4 878092802 +64 559 3 889740310 +95 22 4 888953953 +545 79 4 879899233 +524 129 5 884322047 +178 460 2 882824869 +389 202 5 880087599 +416 395 2 886319620 +98 502 2 880499053 +453 552 2 877561713 +595 922 4 886921036 +437 1098 3 880141243 +291 1079 2 875086608 +633 276 3 875326698 +571 64 4 883355063 +152 153 4 880149924 +527 177 5 879456405 +449 742 3 879958839 +303 283 3 879467936 +633 317 3 875324598 +545 378 3 884134177 +526 50 5 885682426 +26 456 1 891386174 +5 438 1 878844423 +507 334 5 889964748 +694 195 4 875726708 +715 739 2 875964681 +588 154 4 890024529 +87 802 4 879875940 +87 47 3 879876637 +587 1483 4 892871337 +380 204 2 885479274 +523 116 5 883700766 +625 433 3 891636427 +29 268 5 882820686 +301 959 4 882078778 +708 268 3 892718876 +458 896 5 889323481 +472 69 5 892790628 +276 27 3 874787407 +373 24 4 877100016 +418 346 2 891282595 +663 985 3 889493210 +592 248 4 882608279 +642 235 2 885606047 +450 1220 5 882398084 +684 238 3 878759545 +622 577 2 882672143 +102 522 3 888803487 +523 866 5 883700618 +561 223 4 885807235 +90 836 5 891385190 +330 283 5 876544432 +633 651 3 877212283 +246 550 3 884922740 +477 1051 5 875941763 +267 230 4 878972493 +661 237 4 876037519 +591 100 5 891039565 +606 208 3 880925074 +651 242 5 880126430 +648 443 2 884883424 +269 196 1 891448283 +678 111 4 879544397 +514 200 2 875462867 +109 545 2 880583493 +370 423 4 879435369 +180 318 5 877355315 +585 970 3 891284915 +593 162 5 875671807 +343 747 4 876407174 +1 199 4 875072262 +139 676 4 879538275 +506 660 3 874873157 +640 64 5 874777701 +77 132 3 884753028 +293 1018 3 888907552 +658 724 3 875148059 +560 1014 4 879976215 +474 692 4 887927588 +663 741 4 889493351 +399 1540 3 882350282 +712 731 5 874729750 +660 1078 2 891201521 +370 613 2 879434587 +244 241 4 880602893 +393 258 4 887741960 +432 7 2 889415983 +543 24 3 874861639 +660 161 1 891201223 +628 300 5 880776981 +445 340 5 891035571 +524 79 4 884634818 +399 56 3 882346649 +181 1095 1 878962955 +243 724 3 879988459 +524 319 4 884638062 +653 378 3 890181185 +497 194 3 878759705 +546 322 4 885139921 +63 713 3 875747556 +561 1103 4 885807291 +396 237 4 884646092 +647 705 4 876530628 +487 651 5 883445606 +716 91 5 879796438 +655 393 2 887428334 +308 77 3 887740788 +374 229 5 880937780 +560 358 3 879975358 +588 559 5 890025951 +346 211 4 874948475 +655 958 3 887428993 +658 511 4 875147935 +276 375 1 874791339 +409 195 4 881109306 +610 699 2 888703507 +514 259 4 885180989 +367 670 4 876690021 +525 288 4 881085217 +673 311 4 888787396 +326 161 3 879875873 +417 498 4 879647540 +660 71 2 891200430 +94 201 4 891721378 +305 144 2 886323068 +168 280 4 884287580 +383 484 4 891192949 +650 223 3 891369656 +393 1182 3 889731413 +671 1222 3 884036365 +66 286 1 883601089 +346 743 2 875265295 +716 275 5 879793501 +648 862 1 884882441 +249 275 4 879572451 +454 259 4 881958606 +181 24 1 878962866 +239 921 5 889181092 +600 450 4 888453144 +580 181 5 884125042 +671 1239 3 884036683 +189 654 3 893265291 +410 311 3 888626913 +698 50 5 886366101 +412 81 2 879717829 +292 199 5 881105481 +343 385 3 876406939 +156 515 3 888185735 +648 636 4 884882916 +465 169 4 883531072 +372 446 4 876869512 +686 204 4 879546553 +591 47 3 891031426 +655 321 3 887425103 +601 378 2 876351041 +711 652 4 879993824 +201 86 4 884111637 +653 2 1 880151839 +276 233 3 874792436 +575 427 4 878148329 +290 1035 4 880475782 +249 258 5 879571438 +417 831 2 879646820 +648 226 4 884882916 +660 50 4 891197980 +16 945 4 877719158 +171 690 3 891034756 +17 471 2 885272779 +276 552 3 874795795 +660 930 2 891198762 +313 419 3 891014313 +601 1135 2 876351141 +493 597 4 884131738 +130 38 4 876252263 +627 177 5 879531158 +593 159 4 875671302 +653 101 3 880151817 +545 183 4 879899125 +648 103 1 884367274 +474 514 4 887926632 +495 660 3 888635144 +699 1060 3 879147367 +699 324 4 879147497 +648 434 5 884628437 +49 1081 3 888069246 +627 546 3 879531429 +548 292 4 891042530 +639 638 4 891239790 +683 748 3 893286347 +386 323 4 877655085 +642 412 2 885606271 +551 696 2 892785194 +584 229 3 885774172 +201 137 4 884112901 +301 186 4 882076121 +622 552 2 882671863 +650 269 4 891368885 +12 174 5 879958969 +393 561 3 889728438 +379 56 5 880524541 +617 644 4 883789386 +313 661 4 891015082 +535 686 5 879617489 +313 102 3 891030189 +442 7 4 883389983 +560 89 5 879975752 +276 195 5 874792483 +715 410 4 875962227 +144 963 4 888105254 +294 879 4 877818580 +104 15 5 888465413 +456 559 3 881373574 +601 1047 1 876347557 +308 22 4 887737647 +334 899 4 891547348 +524 71 3 884634755 +385 557 2 879446786 +664 673 3 876526718 +548 928 3 891415890 +421 603 4 892241422 +446 306 3 879786691 +521 28 3 885253323 +230 132 5 880484475 +378 2 2 880333851 +619 300 5 885953684 +13 655 5 886261387 +312 479 5 891698365 +486 1129 4 879874726 +524 649 4 884636205 +479 1007 4 879460140 +535 657 5 879618338 +456 9 3 881372328 +109 238 2 880580637 +503 603 3 880383653 +661 168 5 876017294 +270 869 1 876955633 +381 59 3 892697266 +492 242 5 879969878 +495 219 4 888636992 +667 186 4 891035033 +682 399 4 888522612 +385 177 4 879442673 +618 676 2 891307977 +660 569 2 891201499 +461 304 4 885355805 +532 29 3 888636521 +608 275 5 880403810 +532 97 5 893119415 +276 709 4 874792018 +671 258 5 875386402 +198 652 3 884209569 +670 228 5 877975344 +331 1101 4 877196633 +552 257 3 879221795 +417 202 4 879647140 +334 124 5 891544680 +406 575 1 880132188 +639 66 3 891240868 +402 135 4 876266775 +693 655 3 875482604 +429 249 4 882386662 +588 810 4 890029445 +389 178 4 880086755 +13 891 1 892015288 +313 502 3 891017395 +486 475 4 879874583 +69 289 4 882027133 +661 428 4 876016726 +498 594 2 881956498 +660 603 4 891199182 +295 70 5 879517779 +655 1103 3 887428417 +719 673 3 879360965 +74 13 4 888333542 +94 72 3 891723220 +621 273 4 880739654 +506 749 4 888178129 +405 81 3 885546025 +299 727 4 878192379 +458 195 4 886397318 +43 8 4 875975717 +666 467 4 880568094 +593 659 5 875671464 +505 228 2 889333894 +391 258 3 877398517 +344 694 5 884901093 +535 655 4 879618385 +589 300 5 883352600 +533 792 3 879190771 +471 768 3 889827982 +561 430 3 885809336 +223 619 2 891549570 +330 708 3 876545598 +562 684 4 879196517 +145 1273 5 875272196 +130 392 4 876252243 +654 756 4 887864071 +479 511 5 879461280 +451 877 4 879012471 +537 4 2 886031634 +560 183 5 879975586 +276 67 3 874791993 +711 720 3 879995077 +83 319 1 886532955 +472 51 5 875981708 +624 288 4 879791922 +214 69 2 891544445 +379 178 5 880741811 +297 200 3 875239092 +450 1271 2 882468686 +663 925 3 889493069 +655 291 3 887523177 +577 531 4 890089749 +308 196 3 887739951 +503 10 5 879438257 +683 313 2 893282664 +344 709 5 886382364 +101 125 4 877137015 +526 332 2 885682006 +1 57 5 878542459 +682 51 5 888517740 +658 182 5 875147448 +478 959 4 889396049 +712 392 5 874729996 +145 454 1 885557699 +454 289 3 881958783 +598 898 4 886711452 +450 79 4 882376446 +214 191 4 891544472 +429 537 4 882387773 +648 924 1 884795447 +82 946 2 878769748 +642 71 5 886131547 +416 834 3 878879314 +705 196 4 883518903 +638 100 3 876695560 +661 423 4 876016726 +702 346 1 885767306 +590 282 2 879439374 +416 281 5 893213103 +694 9 5 875726618 +7 551 1 892131978 +622 380 4 882592850 +207 242 4 890793823 +686 185 5 879545603 +514 301 4 880209797 +524 573 4 884636827 +184 476 2 889908207 +642 1413 3 886569809 +693 39 3 875482396 +234 510 4 892079840 +501 1010 4 883348308 +664 678 2 876523288 +65 402 4 879216949 +450 1116 3 887661961 +342 319 4 874984002 +176 1008 4 886048040 +561 431 2 885808738 +622 685 2 882590862 +64 419 2 889740310 +436 367 4 887770217 +721 87 3 877140859 +709 227 2 879848551 +445 1097 1 891199682 +268 77 2 875745453 +562 806 1 879195289 +343 429 4 876407138 +524 709 5 884635171 +526 879 3 885682102 +60 393 4 883327754 +481 163 4 885828389 +38 1031 5 892433801 +455 69 4 879111937 +621 420 4 874965298 +63 813 5 875747265 +339 1267 3 891033766 +323 544 4 878739459 +40 328 3 889041595 +497 568 3 879310792 +107 264 3 891264598 +270 574 3 876956038 +450 278 5 882473476 +659 566 3 891383889 +1 50 5 874965954 +429 393 3 882385749 +659 670 2 891385689 +276 355 3 887601451 +269 448 2 891450623 +707 487 2 886286360 +605 521 5 879424743 +624 286 5 879791792 +493 260 1 884129979 +655 286 3 887424831 +640 382 4 874777528 +659 492 3 891332189 +662 6 5 880571006 +311 56 5 884364437 +551 144 5 892778035 +619 331 4 885953574 +393 871 3 887745174 +674 118 3 887763150 +269 133 3 891449280 +160 211 4 876862171 +308 50 5 887737431 +639 199 3 891239155 +198 382 4 884207525 +627 92 4 879529702 +159 301 2 880485344 +539 45 4 879788345 +405 859 1 885547506 +638 118 3 876695385 +409 1449 5 881107817 +145 181 5 875270507 +669 340 4 891182948 +608 16 2 880406950 +714 282 4 892777903 +378 918 3 892383162 +454 657 3 881959876 +372 696 4 876869667 +552 243 3 879220651 +539 357 4 879787917 +537 414 4 886030938 +208 66 4 883108477 +223 185 2 891550684 +561 121 3 885810372 +545 743 3 879901322 +561 568 3 885807962 +699 456 1 880696679 +669 523 4 891260638 +648 1047 2 882212288 +174 371 5 886513674 +496 1286 2 876065382 +235 1451 4 889655112 +308 1135 4 887740099 +510 243 3 887667780 +498 443 3 881958237 +448 271 4 891888509 +440 1194 5 891577843 +107 312 4 891264535 +503 427 5 880472216 +498 607 3 881958093 +686 205 5 879545181 +11 123 3 891902745 +379 566 4 880525540 +637 148 3 882905070 +699 760 3 879147239 +652 699 5 882567383 +354 429 3 891218439 +429 432 4 882385443 +543 214 3 874864421 +328 181 4 885046244 +158 227 2 880134499 +452 318 5 885544110 +699 983 3 886568097 +453 122 3 877553532 +234 619 2 891227851 +697 150 5 882622127 +690 67 4 881177836 +503 451 4 880383425 +267 1336 1 878974659 +642 959 5 885605794 +450 969 4 882376584 +495 91 2 888634859 +577 265 5 880474851 +709 195 5 879848432 +593 866 5 875660236 +174 244 4 886433881 +676 181 5 892686164 +644 258 4 889075928 +399 147 5 882340620 +559 322 4 891034987 +398 474 4 875657926 +577 582 4 880475540 +326 239 3 879875612 +83 393 5 887665423 +488 1039 4 891294654 +697 333 3 882621431 +339 81 5 891033566 +526 750 4 885681886 +626 332 3 878771355 +242 268 5 879741340 +682 182 4 888523619 +552 240 2 879222133 +334 508 3 891544867 +279 1321 4 888806671 +717 287 5 884642558 +373 1039 4 877098437 +65 69 3 879216479 +719 659 4 879373935 +26 274 3 891385634 +11 42 3 891905058 +712 1178 4 874957086 +612 118 3 875324947 +532 506 5 889235367 +682 80 1 888521803 +684 520 4 875812065 +273 347 4 891293008 +425 100 4 878738853 +537 288 2 886028706 +454 1203 2 888267521 +660 1035 2 891201116 +22 17 4 878886682 +664 223 4 876523654 +712 385 5 874729778 +305 172 4 886323757 +429 726 2 882386751 +592 421 5 882956158 +561 744 3 885809781 +128 490 5 879966785 +382 135 3 875947078 +487 42 3 883446685 +715 231 3 875963273 +678 181 3 879544450 +411 435 3 891035478 +279 517 4 879572893 +267 100 5 878970427 +450 277 3 882397223 +284 333 3 885329146 +463 258 5 877387935 +328 984 3 885044940 +435 1411 1 884133104 +648 393 4 884881679 +664 805 5 878090381 +496 98 4 876073160 +374 820 4 882158327 +407 203 4 876341467 +162 237 4 877635980 +593 781 3 875671334 +233 12 2 880610333 +230 294 5 880484286 +709 561 3 879848209 +536 71 5 882360467 +533 284 1 879192641 +217 233 4 889069878 +625 214 4 891961632 +716 235 2 879794154 +474 527 5 887923923 +718 756 5 883349384 +450 1248 4 882399664 +70 143 5 884149431 +474 230 3 887927728 +712 366 5 874956713 +188 288 4 875071195 +457 632 5 882397543 +682 1305 3 888522021 +696 1176 4 886403631 +699 16 3 879148259 +684 186 4 878762087 +577 100 4 880470350 +176 129 3 886048391 +367 7 5 876689878 +655 183 4 887429999 +690 174 4 881179505 +671 685 5 884035992 +99 931 2 886780147 +659 675 4 891386936 +217 636 2 889069878 +361 276 4 879441417 +684 121 3 875810574 +637 411 1 882904678 +537 782 3 886031831 +498 172 3 881956362 +407 223 4 891868745 +345 81 4 884992998 +538 144 4 877107558 +539 127 3 879788046 +721 879 4 877136175 +503 132 5 880472148 +92 268 4 890251912 +635 875 2 878878838 +159 628 3 880486071 +655 1226 3 891585529 +560 111 3 879976731 +422 129 4 875129839 +655 1108 3 887427083 +13 886 5 881515613 +707 166 3 880061579 +198 122 1 884206807 +405 960 1 885545975 +417 44 2 880951252 +537 655 3 886030831 +343 10 4 876403009 +369 900 4 889428642 +557 269 3 881179139 +344 4 4 884901235 +715 181 4 875961816 +285 222 4 890595636 +483 116 3 878951532 +453 258 4 876191239 +716 143 5 879796171 +144 751 4 888103725 +716 118 2 879793763 +334 203 4 891546181 +472 271 5 892790628 +436 748 3 887768738 +712 97 5 874729816 +318 210 4 884496069 +13 231 3 882397582 +2 284 4 888552017 +581 283 2 879642274 +275 472 3 876197944 +265 628 4 875320516 +553 615 5 879949073 +58 603 5 884304812 +637 50 4 882901146 +405 1407 1 885548137 +705 427 2 883518783 +605 293 3 879366256 +291 129 5 874805699 +642 1473 4 886568874 +102 226 2 888801673 +660 404 2 891200621 +251 210 4 886271675 +59 584 4 888205145 +52 107 4 882922540 +686 79 4 879546443 +456 53 4 881375284 +373 232 3 877105075 +116 1134 4 886310197 +588 133 5 890015894 +722 546 3 891280866 +246 67 2 884923893 +271 182 3 885848408 +665 71 4 884293933 +711 95 4 879993758 +455 17 3 879111862 +698 168 3 886366731 +655 1194 5 887474605 +634 819 2 876171049 +173 324 5 877556864 +190 597 2 891626023 +707 154 3 886286742 +466 144 5 890284707 +244 126 4 880604302 +658 510 3 875147800 +659 837 3 891386307 +7 625 3 892131824 +688 682 5 884153712 +249 248 5 879571695 +654 111 4 887863635 +483 380 3 878953592 +308 1045 4 887740033 +654 317 4 887864757 +487 216 4 883530484 +457 559 4 882398054 +201 1131 5 884111359 +7 204 5 891351121 +51 184 3 883498685 +642 541 5 885607028 +635 262 5 878878654 +332 628 4 887938556 +716 196 5 879796596 +716 159 4 879797475 +311 186 3 884364464 +406 194 5 880131550 +551 554 5 892783906 +551 217 1 892784093 +505 988 3 888631371 +458 685 3 886394373 +642 250 5 886131457 +717 748 3 884641884 +650 663 4 891370971 +659 520 3 891332006 +537 199 4 886030682 +716 194 5 879795576 +655 923 3 888685734 +416 713 4 876697448 +421 653 3 892241422 +145 164 4 875271948 +698 529 5 886366731 +627 284 2 879530306 +634 282 4 875729749 +682 763 4 888521783 +503 615 5 880472061 +455 934 3 879110260 +596 313 5 883538815 +694 610 4 875729983 +666 5 2 880568465 +59 430 5 888205228 +402 471 4 876267041 +222 451 3 878185014 +394 230 3 881132958 +504 393 3 887909456 +666 661 4 880139765 +56 233 1 892679308 +363 435 3 891495850 +532 125 5 893119415 +660 125 3 891198421 +656 316 3 892318450 +539 289 4 879787770 +13 157 3 882140552 +450 191 5 887660440 +655 25 3 887611511 +655 1128 3 887472791 +290 109 3 880475564 +654 168 4 887864369 +435 673 3 884132341 +51 655 3 883498728 +586 273 5 884057692 +186 684 4 879023599 +712 72 4 874730261 +655 402 2 887431019 +87 578 3 879875940 +239 171 5 889178986 +321 1050 3 879441336 +637 475 1 882903191 +13 896 5 891036745 +487 404 4 883446725 +682 1016 2 888518747 +715 216 4 875963452 +197 879 4 891409535 +698 95 3 886367406 +417 142 3 879648184 +617 136 3 883789079 +707 283 4 880059957 +659 385 5 891331825 +425 62 4 878738548 +617 497 3 883788782 +354 381 5 891217851 +538 423 4 877108919 +487 578 3 884036466 +615 949 3 879448149 +405 736 5 885546336 +308 942 3 887737432 +486 14 5 879874725 +41 58 3 890687353 +378 95 4 880055296 +407 188 3 875043801 +601 763 5 876348035 +676 271 3 892685621 +426 648 3 879441931 +721 984 3 877137527 +457 783 3 882549936 +109 234 4 880578286 +486 137 4 879874871 +102 269 2 891427996 +421 183 5 892241459 +458 467 4 886396240 +618 969 3 891307889 +697 302 5 882621460 +184 340 5 889906905 +682 742 3 888519738 +399 755 2 882344757 +535 71 4 879618502 +707 1281 4 880060820 +487 49 4 884036466 +491 696 3 891188296 +634 274 3 876170992 +295 84 2 879518107 +361 166 4 879440605 +393 153 3 887746671 +638 228 3 876694917 +405 464 1 885546379 +291 364 3 875086699 +504 65 4 887838717 +634 924 4 877017810 +334 23 4 891545821 +501 147 3 883348080 +256 988 4 882150193 +514 647 3 875463079 +721 687 3 877137358 +178 1047 2 882824326 +201 59 4 884111546 +524 304 4 884321179 +460 1380 3 882912469 +482 315 3 887643146 +693 53 4 875483597 +488 135 4 891294785 +21 379 3 874951820 +437 812 3 881002092 +655 20 3 887611537 +354 528 5 891218155 +303 491 4 879466631 +393 924 4 887744688 +344 11 3 884901270 +97 23 5 884239553 +326 367 3 879877264 +711 204 3 879992994 +588 728 3 890027707 +592 322 1 882607647 +447 260 2 878854120 +712 734 4 874957027 +480 209 4 891208599 +622 157 4 882670389 +665 234 3 884293610 +7 402 5 891352904 +567 603 5 882425631 +378 775 3 880333305 +712 1119 4 874957269 +254 386 2 886475616 +552 282 3 879222133 +593 241 5 875672874 +717 25 5 884642710 +399 68 3 882347577 +565 970 4 891037757 +690 98 5 881179196 +699 544 4 879147109 +666 79 3 880567919 +62 402 3 879375883 +178 484 4 882826187 +152 1136 5 882477202 +388 300 4 886438122 +622 809 2 882671081 +686 64 5 879547224 +345 300 3 884900427 +570 301 3 881262404 +401 275 4 891032271 +267 127 5 878970529 +648 218 3 884883424 +567 430 4 882426927 +41 357 4 890687175 +648 56 1 884881592 +314 158 3 877892099 +525 127 3 881085647 +670 650 2 877975200 +437 496 4 880140662 +533 15 4 879192641 +494 357 5 879541245 +378 597 3 880044763 +293 180 5 888906428 +622 1039 5 882669575 +44 222 4 883613334 +307 163 3 879283384 +622 142 3 882670826 +630 411 4 885667108 +591 127 4 891031203 +448 307 2 891888042 +525 475 3 881086108 +82 71 4 878770169 +303 298 4 879544607 +307 736 3 877118152 +426 483 5 879442226 +407 226 3 876345024 +151 133 5 879524797 +583 258 4 879384094 +398 203 4 875908134 +344 297 4 889814555 +305 269 4 886307948 +64 235 4 889740567 +537 292 2 886029116 +693 23 4 875482168 +386 840 5 877655145 +497 597 3 879310649 +622 408 5 882590223 +540 820 3 882157545 +236 64 5 890116163 +222 747 2 878181976 +545 491 3 884134035 +429 21 2 882386508 +217 586 2 889070050 +637 1226 2 882903191 +661 501 4 876036190 +70 88 4 884067394 +318 866 4 884494976 +64 185 4 889739517 +682 379 4 888519260 +595 330 4 886920819 +566 240 3 881651225 +664 513 4 876524053 +717 324 3 884641842 +187 423 4 879465745 +416 686 5 893213444 +194 674 2 879553988 +194 157 4 879547184 +365 476 4 891304278 +373 577 1 877111423 +655 172 4 887477167 +303 127 5 879466523 +698 478 4 886366814 +567 675 4 882426812 +650 194 4 891369588 +94 544 3 891721562 +591 662 3 891031145 +724 305 3 883757259 +152 871 3 884018842 +239 652 5 889178762 +324 331 4 880574827 +727 123 3 883709402 +215 56 5 891436543 +416 476 5 893213796 +676 354 4 892685437 +425 750 2 890346317 +374 403 2 880939126 +109 755 5 880578814 +521 1244 3 884476887 +565 166 4 891037252 +650 210 3 891381585 +178 64 5 882826242 +379 116 4 880525194 +147 304 5 885593942 +633 252 3 875325273 +721 289 3 877137597 +280 8 5 891700303 +532 228 5 893118712 +405 238 5 885545070 +705 560 2 883427951 +709 29 3 879848695 +638 449 2 876694995 +656 875 2 892318842 +498 806 3 881957905 +301 802 2 882078883 +478 655 3 889395541 +69 182 4 882145400 +43 566 3 883955969 +495 416 5 888636899 +666 302 5 880138999 +198 164 3 884208571 +684 934 3 875811158 +655 875 3 888685850 +715 33 3 875964751 +606 562 4 880928181 +617 667 2 883789590 +60 136 4 883326057 +472 313 5 892790628 +622 496 4 882592314 +357 473 3 878951831 +694 671 3 875728989 +650 969 3 891371186 +453 186 4 877554466 +537 741 2 886030199 +13 306 3 881514876 +642 29 5 886454812 +676 748 4 892685538 +711 269 5 879991028 +95 665 2 879196666 +665 216 4 884293690 +648 1092 1 884882502 +191 316 5 891561456 +198 108 3 884206270 +595 844 4 886922069 +102 258 4 875886337 +715 284 4 875962109 +577 85 3 880475170 +429 482 3 882384683 +674 282 5 887763231 +709 22 5 879847946 +143 1038 3 888407656 +391 168 4 877399455 +188 144 3 875071520 +487 727 3 884029774 +493 410 4 884132883 +557 327 3 882458785 +454 392 2 888266991 +7 545 2 891354882 +60 745 5 883327442 +624 328 4 879792131 +466 518 4 890284903 +348 974 4 886523683 +621 624 5 874965093 +388 258 5 886439506 +537 519 3 886030584 +721 333 3 877137358 +365 137 3 891303999 +280 229 3 891702171 +564 344 4 888718521 +617 774 1 883789635 +725 1197 3 876106243 +394 109 4 880889159 +684 371 2 878576866 +60 70 4 883326838 +593 280 3 875660194 +701 297 4 891447197 +506 761 2 874873327 +508 222 3 883777281 +514 486 3 886189869 +538 143 3 877364003 +38 78 5 892433062 +7 652 3 891352659 +96 83 3 884403758 +488 318 4 891293734 +601 64 4 876349503 +305 708 3 886324963 +535 98 2 879617977 +707 531 5 886286214 +601 125 1 876347320 +87 72 3 879876848 +181 476 4 878962996 +503 443 5 879454811 +346 64 4 874948214 +239 180 5 889178833 +164 405 5 889402160 +633 566 3 877212173 +151 82 3 879524819 +16 273 5 877722736 +497 577 2 879363284 +524 513 4 884634938 +416 840 4 886315536 +398 756 3 875654592 +488 96 3 891294014 +13 789 5 882140389 +718 841 4 883349557 +640 126 4 886474802 +682 546 3 888517740 +76 192 5 875027442 +314 318 5 877888796 +682 157 4 888517484 +250 322 3 878089182 +660 132 3 891199683 +357 455 5 878951498 +665 369 4 884291747 +533 150 3 886425704 +608 328 4 880402983 +460 276 5 882912418 +533 239 3 879192157 +280 1217 5 891702544 +573 144 4 885844638 +716 153 4 879796311 +334 740 3 891548678 +395 154 5 883764878 +569 236 4 879793717 +629 182 5 880116818 +291 985 3 874805984 +479 272 4 889125255 +279 1491 5 890451408 +706 245 3 880996945 +291 94 2 875086354 +94 1011 4 891722214 +407 193 3 875046799 +642 597 4 885607065 +109 405 5 880564640 +233 588 5 877661553 +545 393 4 879900891 +279 546 3 875296924 +216 169 3 880233635 +666 515 5 880313230 +680 408 5 876816268 +560 137 4 879976427 +456 427 4 881372779 +719 291 3 884900301 +577 69 4 880474829 +617 631 2 883789212 +708 1051 4 892719193 +658 31 3 875148108 +178 172 4 882826555 +643 69 3 891447430 +592 1085 3 882608625 +276 174 5 874792366 +588 739 4 890025704 +655 129 3 887426008 +693 25 4 883975697 +589 258 2 883352463 +454 528 4 881959818 +207 470 3 879665381 +363 816 1 891498787 +516 169 5 891290685 +501 922 4 883347857 +87 423 3 879877710 +707 83 3 886286926 +709 823 3 879849573 +579 65 3 880951944 +458 597 3 886395022 +711 343 3 882457816 +567 582 3 882426899 +276 346 4 885159545 +639 269 3 891238599 +424 288 1 880858924 +553 186 3 879948552 +24 12 5 875323711 +454 300 4 881958326 +435 720 2 884133818 +707 1176 2 879438910 +727 678 3 883708229 +295 186 5 879517512 +682 70 4 888517416 +643 173 4 891447663 +303 124 4 879466491 +108 405 3 879880157 +449 337 4 880411035 +691 1 5 875543346 +223 243 3 891549079 +474 486 4 887924425 +445 144 3 890987569 +561 425 4 885808000 +3 333 2 889236939 +497 66 3 879362720 +551 1217 1 892784524 +497 225 3 879363510 +655 960 3 887427210 +568 462 4 877907236 +637 273 3 882903250 +674 929 3 887763150 +393 245 3 887742145 +715 756 2 875962280 +566 12 4 881649802 +622 449 2 882592850 +707 427 4 886285907 +622 212 3 882669740 +417 234 4 879646965 +18 223 5 880129731 +347 192 4 881653798 +452 156 4 875261819 +620 674 3 889987586 +141 597 4 884585071 +406 1 4 879446107 +6 173 5 883602462 +660 434 3 891200430 +648 373 3 884883149 +705 265 5 883428154 +181 718 1 878962675 +62 1077 3 879374607 +727 441 2 883711924 +653 765 1 880153207 +417 95 5 879646965 +13 279 5 882139804 +682 188 4 888522417 +499 483 5 885598854 +663 284 4 889492841 +545 746 4 879900321 +269 649 2 891448220 +379 746 3 880961839 +711 1074 3 879995754 +676 313 4 892685224 +727 117 3 883708660 +654 181 3 887863381 +650 648 3 891384201 +697 683 1 882621813 +727 181 3 883708750 +344 516 5 884901311 +472 29 5 875982867 +655 1255 3 887425732 +192 813 4 881367456 +83 864 4 883954588 +85 657 4 879454189 +472 63 4 875982511 +663 405 3 889492877 +148 168 5 877015900 +271 847 4 885847926 +625 945 3 891262724 +639 191 3 891239109 +90 482 5 891383204 +140 873 2 879013719 +545 97 3 879901865 +324 411 5 880575589 +489 313 4 891362740 +6 268 3 883268406 +655 1344 3 887474020 +554 864 4 876231993 +682 651 4 888517168 +720 872 3 891262780 +564 472 4 888730658 +568 301 1 877906737 +432 1 2 889415983 +429 141 3 882386966 +416 28 5 893212730 +698 210 5 886366690 +450 455 4 882376188 +521 25 2 884476002 +162 79 4 877636713 +632 357 4 879456844 +575 50 2 878148258 +718 975 2 883349301 +141 346 1 886447613 +560 100 5 879975752 +213 164 5 878956300 +588 395 4 890030781 +478 26 5 889396212 +712 213 3 876251366 +645 956 4 892053310 +407 250 4 890687564 +436 265 3 887769106 +680 248 4 877075312 +729 328 3 893286638 +334 9 4 891544707 +537 47 4 886030768 +716 707 4 879795121 +694 199 5 875728435 +623 183 3 891034294 +693 333 3 875481397 +49 428 5 888068791 +694 50 5 875730386 +727 105 1 883709884 +299 513 4 877881228 +682 222 4 888519725 +532 771 3 874791172 +435 977 2 884134829 +296 127 5 884196489 +199 313 4 883782557 +7 230 3 891353326 +619 118 5 885953827 +328 1518 3 885049503 +659 699 3 891384499 +551 328 5 892775584 +466 346 3 890283056 +387 742 2 886481105 +174 905 3 890168415 +675 531 5 889489108 +399 179 3 882344406 +298 423 5 884183063 +650 659 3 891369798 +718 222 4 883348712 +476 85 2 883364433 +524 640 1 884636541 +650 233 2 891370243 +642 391 4 885607143 +380 1116 4 885479397 +136 127 5 882693404 +693 432 4 875484908 +648 24 3 882211532 +727 720 2 883712037 +145 894 1 883840965 +601 151 3 876346930 +586 238 2 884059027 +393 377 3 889728200 +554 220 3 876232109 +234 1369 3 892333765 +292 499 5 881105245 +659 762 3 891387227 +663 280 3 889492841 +727 1119 3 883711923 +521 191 4 884477868 +30 683 3 885941798 +650 195 4 891369442 +142 7 4 888640489 +499 132 4 885599040 +637 150 1 882903447 +592 181 3 882608182 +523 533 4 883700395 +716 836 4 879795425 +613 127 4 891227204 +655 656 3 887430072 +711 483 5 879992739 +52 919 5 882922140 +141 930 4 884585247 +606 748 3 880921753 +502 300 2 883701980 +609 319 1 886895516 +643 155 2 891449345 +540 294 4 882156617 +478 451 5 889396282 +405 1107 1 885546635 +600 241 5 888451582 +618 955 2 891307540 +557 887 3 881179118 +567 357 2 882425901 +727 68 4 883710347 +339 1135 2 891033898 +711 229 3 879995461 +416 707 4 876699179 +615 275 4 879447872 +501 840 4 883348655 +726 355 3 889829235 +56 229 3 892676340 +486 1086 3 879874482 +303 956 4 879466421 +590 9 3 879438972 +159 405 5 880557564 +704 304 2 891396595 +682 581 2 888517948 +716 602 5 879795691 +450 197 5 882374059 +561 180 4 885807261 +537 581 3 886031886 +416 815 4 876697243 +622 403 4 882592735 +639 274 1 891240495 +595 411 3 886921448 +655 175 3 887426931 +443 343 5 883504771 +639 796 1 891240805 +715 175 3 875962964 +81 186 5 876534783 +498 425 2 881957431 +164 282 5 889401927 +479 187 4 879460785 +542 625 3 886533588 +699 678 3 879147032 +694 200 4 875726968 +707 140 2 886287191 +655 330 2 887425295 +59 191 4 888204841 +284 687 3 885329902 +114 474 5 881260170 +115 317 5 881171137 +666 410 2 880313447 +655 516 2 887523581 +480 462 4 891208520 +567 811 4 882426210 +647 250 3 876532975 +676 688 1 892685695 +642 559 5 885604874 +643 420 4 891449803 +338 488 5 879438449 +622 143 4 882670228 +646 258 3 888528417 +568 603 5 877907157 +83 235 1 883867920 +315 23 5 879821193 +659 805 5 891383561 +654 56 4 887864414 +724 342 3 883757874 +256 678 5 882150192 +279 130 1 892864707 +579 676 3 880951784 +283 866 3 879297867 +464 984 2 878354681 +453 12 5 877553813 +327 99 4 887820761 +500 569 4 883876370 +566 393 2 881651434 +684 625 3 878760041 +727 125 4 883710598 +600 188 4 888451750 +174 70 5 886453169 +669 508 3 892549292 +234 173 3 892334577 +644 1610 3 889077115 +345 9 4 884900976 +634 287 3 877018059 +392 615 5 891038371 +301 678 2 882075386 +450 86 4 887660440 +243 151 3 879987397 +102 200 3 888803051 +557 322 3 880485052 +648 479 4 884368538 +502 751 3 883702120 +588 142 5 890024117 +593 846 2 875660295 +429 79 4 882385243 +21 853 5 874951658 +472 392 4 875981503 +600 541 1 888451977 +328 723 3 885047223 +655 1642 4 888474934 +339 939 4 891034115 +437 204 5 880141528 +524 111 5 884323426 +608 213 4 880404693 +450 432 4 882377861 +92 428 4 875653519 +291 93 4 874805927 +675 509 5 889489465 +638 265 5 876695216 +579 1446 2 880952165 +87 577 4 879877127 +274 258 5 878944379 +409 179 5 881107817 +504 485 4 887839745 +54 252 3 880937630 +437 318 4 880140466 +593 476 2 875659943 +679 327 4 884312731 +699 749 3 893140897 +561 277 3 885809223 +429 419 4 882385293 +665 97 2 884294329 +557 334 4 881179362 +722 124 4 891280842 +15 931 1 879456507 +331 302 5 877196819 +181 305 2 878961542 +555 762 4 879964159 +527 425 4 879455792 +645 203 4 892053456 +693 69 3 875482336 +686 234 4 879546715 +110 161 5 886988631 +513 250 3 885062332 +130 475 3 874953595 +630 255 5 885666740 +729 689 4 893286638 +303 281 3 879543375 +658 70 3 875148196 +655 38 2 887429875 +712 465 4 874957113 +247 64 5 893097024 +13 444 4 882396984 +391 213 4 877398856 +591 487 4 891031203 +611 333 4 891636073 +621 333 4 890517503 +728 508 4 879443265 +212 269 3 879303468 +457 629 4 882397177 +256 460 4 882153987 +313 452 3 891029993 +57 678 3 883696547 +542 13 4 886533002 +650 679 3 891381709 +653 282 3 884405616 +116 896 2 890632896 +397 688 1 875063649 +627 121 3 879531397 +590 515 3 879438972 +708 535 2 877325838 +618 966 4 891307931 +416 990 2 876696739 +614 1134 2 879464556 +397 989 1 875063722 +648 367 3 884881837 +419 405 3 879435503 +426 133 5 879441978 +43 473 3 884029309 +563 118 4 880506863 +450 287 4 887660504 +657 1 3 884239123 +588 602 3 890015580 +561 710 4 885809897 +693 1232 2 875483114 +608 655 5 880405395 +660 153 4 891200388 +453 24 4 877553108 +13 797 5 882398327 +487 747 4 883531466 +653 476 2 878855211 +458 208 4 886395963 +682 124 2 888517097 +683 350 2 893284184 +405 377 1 885547690 +406 228 3 884630974 +545 258 3 879898617 +201 637 3 884112627 +97 100 2 884238778 +468 195 5 875291902 +405 1572 1 885549635 +181 292 1 878961781 +664 172 5 878090054 +429 178 4 882384772 +688 339 5 884153712 +551 272 5 892775389 +679 121 2 884488260 +13 561 1 882396914 +269 122 1 891446873 +92 735 3 875656121 +653 458 2 878866475 +293 265 3 888906193 +567 493 4 882426719 +152 284 5 880149045 +268 257 4 875742866 +581 9 5 879641787 +716 160 2 879797303 +300 833 4 875650329 +486 275 4 879874582 +660 357 2 891200014 +256 243 4 882150193 +286 70 5 877531975 +562 98 4 879195081 +397 134 5 885350132 +533 31 3 879191265 +246 1188 3 884924001 +658 718 3 875145667 +716 499 4 879796942 +615 306 4 879447556 +707 467 4 886286057 +702 294 1 885767555 +193 580 4 889127270 +567 174 1 882426869 +263 602 4 891298592 +524 133 5 884634968 +455 747 4 879111422 +230 451 4 880485402 +436 441 3 887772060 +286 946 3 889652221 +405 1218 5 885547360 +272 654 5 879454977 +425 316 4 890346705 +682 1437 2 888521942 +727 367 3 883712430 +294 252 4 877820240 +655 187 5 888474357 +588 1428 5 890032056 +592 338 2 882607647 +581 221 2 879642274 +456 79 3 881373228 +691 294 4 875542868 +234 473 5 892334976 +455 12 3 879111123 +479 215 3 879461651 +333 269 2 891044134 +637 1102 3 882904537 +472 240 4 875979187 +108 740 3 879880055 +727 217 3 883712913 +643 94 4 891450240 +327 311 3 887737629 +546 690 2 885139693 +257 60 5 879547440 +23 194 4 874786016 +704 211 5 891398726 +389 396 3 880089037 +109 636 5 880581817 +603 385 4 891957012 +627 461 3 879530042 +351 312 5 883356784 +682 29 2 888522699 +35 748 4 875458970 +727 933 1 883709009 +637 744 4 882903044 +457 931 2 882395916 +303 845 4 879485221 +703 293 4 875242990 +314 53 1 877891426 +684 111 4 878760164 +271 73 2 885848707 +658 943 3 875148196 +437 614 5 880139951 +429 232 4 882385859 +101 979 2 877136711 +354 518 3 891217340 +411 208 4 891035617 +548 313 5 891044304 +674 25 4 887763035 +548 591 3 891415465 +711 1466 4 883589693 +637 405 1 882903250 +567 475 4 882426508 +716 416 3 879796354 +543 38 3 877545717 +694 121 5 875726886 +128 742 3 879967197 +417 1086 4 879646369 +216 79 4 880235381 +220 332 3 881198246 +352 92 3 884289728 +478 222 2 889387931 +121 135 5 891388090 +561 356 1 885809752 +634 50 4 877018347 +661 310 2 889500835 +87 1179 3 879877127 +610 271 1 888702795 +313 331 3 891013013 +506 578 3 885135881 +145 331 3 879161554 +49 77 1 888068289 +514 283 4 875309231 +299 1036 2 889503856 +308 506 4 887738191 +537 198 2 886030652 +343 1039 5 876404689 +629 64 5 880117513 +721 403 4 877139638 +345 293 4 884994592 +714 252 3 892777619 +709 28 5 879847946 +606 191 5 880923988 +430 258 4 877225570 +716 470 4 879797152 +616 260 3 891224864 +159 250 3 881679988 +113 289 2 875075887 +632 404 5 879459544 +184 492 4 889908947 +689 151 3 876676501 +391 661 5 877398898 +588 417 5 890026009 +658 515 5 875145493 +280 575 2 891702422 +711 699 5 879993728 +279 410 5 890780547 +665 133 3 884294771 +269 1428 5 891447409 +587 905 3 892871503 +592 483 5 882955613 +307 168 5 879283798 +623 298 2 891032433 +479 602 4 879461492 +187 23 4 879465631 +665 194 3 884294671 +474 50 5 887915221 +332 294 5 887916324 +629 147 5 880117534 +647 134 4 876534275 +305 1 5 886323153 +429 468 3 882384896 +650 780 2 891389237 +717 293 5 884715103 +716 503 3 879795071 +579 709 5 880952142 +8 177 4 879362233 +664 481 5 878091912 +560 429 3 879975485 +343 127 5 876404464 +468 22 5 875287686 +269 509 4 891447280 +483 274 4 878953129 +585 171 3 891285491 +648 578 4 884882987 +707 186 3 886286133 +619 257 3 885953805 +648 265 4 884796886 +655 60 3 887564614 +73 268 3 888625754 +571 174 4 883354940 +394 411 4 881058969 +89 181 4 879441491 +529 310 4 882534996 +570 243 1 881262557 +490 475 4 875427629 +684 237 5 875811158 +684 94 3 878762183 +514 342 1 885180909 +144 651 4 888105197 +712 399 5 874956872 +535 447 5 879617574 +712 542 4 874956543 +483 480 3 878953862 +711 137 5 886030557 +567 836 3 882426998 +243 280 1 879987148 +727 585 2 883713257 +353 333 4 891402757 +738 188 3 875350456 +551 90 1 892784199 +648 117 2 882211301 +618 91 4 891309756 +695 882 4 888805836 +519 339 3 883248222 +468 25 5 875280214 +601 820 1 876348316 +488 659 3 891293771 +537 83 4 886030891 +56 144 5 892910796 +694 275 4 875727640 +41 276 2 890687304 +457 190 5 882396602 +659 661 5 891331916 +408 270 5 889679683 +314 65 4 877888855 +374 282 5 880392936 +493 188 5 884131314 +650 739 2 891384328 +170 258 3 884104016 +389 1197 3 880165664 +643 49 3 891449848 +719 126 2 884900234 +699 112 3 884152976 +41 1039 3 890687642 +689 471 4 876676433 +472 101 5 875981624 +21 983 2 874951416 +699 235 3 878882272 +11 25 3 891903836 +473 319 3 878156824 +78 237 5 879634264 +643 1074 2 891448630 +587 340 5 892871141 +665 127 4 884292654 +453 94 4 877561956 +618 44 4 891308791 +606 239 4 880926339 +234 56 3 892078837 +577 217 5 880475363 +383 514 5 891192949 +738 651 4 892957752 +169 683 3 891268976 +567 521 3 882425701 +311 581 3 884366137 +541 1074 1 884046888 +676 344 5 892685657 +466 22 5 890284706 +671 578 3 884036411 +339 144 3 891033794 +648 615 4 884796652 +619 55 1 885954053 +81 269 3 876533229 +588 315 4 890014591 +727 208 4 883711240 +559 69 5 891034003 +450 807 4 887834823 +101 278 2 877136737 +463 744 3 877385457 +721 317 4 877147872 +48 289 1 879434252 +386 273 3 877655028 +621 71 3 874965208 +679 357 5 884486812 +487 1 5 883443504 +504 70 3 887838869 +561 10 3 885808766 +640 249 4 886474493 +474 685 3 887915784 +379 186 5 880740495 +690 204 3 881177430 +599 975 5 880952357 +707 496 3 886286433 +671 576 5 884035939 +235 971 4 889656113 +655 228 3 887429594 +169 134 5 891359250 +479 472 1 879460354 +456 1057 3 881372191 +618 117 5 891307494 +498 156 5 881957054 +542 80 3 886533142 +270 200 5 876956360 +468 150 5 875280309 +655 610 4 887432283 +456 268 5 887165395 +642 1285 4 886132043 +586 250 3 884057661 +14 762 3 876964936 +76 6 5 875028165 +333 174 5 891045082 +648 568 5 882212651 +546 250 4 885141260 +379 63 2 880962215 +660 80 1 891201796 +719 66 3 888454637 +305 300 3 886307828 +342 98 3 874984261 +354 143 4 891217547 +343 67 3 876407663 +416 1058 5 893213019 +235 153 4 889655662 +222 678 3 877562973 +514 527 4 875462466 +479 198 5 879460939 +659 1119 4 891383674 +339 205 5 891033629 +543 474 5 875665787 +594 181 3 874781076 +467 273 4 879532565 +664 64 4 876524474 +468 191 4 875287686 +504 961 4 887839081 +410 873 4 888627138 +422 396 4 879744143 +90 660 4 891385652 +686 588 4 879546497 +480 705 4 891208520 +23 96 4 874785551 +77 1 5 884732808 +713 1431 3 888881939 +592 221 5 882608357 +632 423 4 879459003 +655 1629 3 887427083 +489 358 5 891445439 +666 864 3 880313523 +48 56 3 879434723 +736 181 2 878708646 +486 1171 3 879874417 +720 258 4 891262762 +262 278 3 879790741 +551 331 5 892775584 +504 88 3 887909839 +569 1014 3 879795581 +207 226 2 877125390 +181 885 1 878962006 +734 82 4 891022704 +276 382 4 874791236 +176 289 3 886047292 +144 357 4 888105254 +588 846 4 890025621 +270 665 4 876956419 +728 282 4 879443291 +654 284 4 887863914 +547 332 3 891282681 +339 1404 5 891034592 +640 684 4 874778568 +311 655 4 884365406 +147 750 5 885593812 +688 678 5 884153750 +84 744 4 883449965 +87 845 4 879876564 +425 686 3 878738757 +505 177 3 889334477 +514 156 4 875311225 +229 937 2 891632347 +195 358 2 883463275 +543 313 3 887912223 +524 118 4 884627463 +708 280 4 877325316 +405 770 1 885548048 +452 73 3 875277472 +607 485 3 883879442 +82 473 2 878768765 +637 546 1 882905182 +650 1126 4 891369620 +671 182 4 884035685 +374 412 4 883627129 +435 448 3 884132230 +370 136 4 879434999 +42 38 3 881109148 +437 402 2 880143263 +537 6 2 886029806 +550 328 5 883425652 +499 887 5 882995826 +524 382 3 884636596 +416 211 5 893214041 +201 65 4 884113806 +374 235 3 880394301 +707 1397 1 886289521 +712 728 4 874956384 +178 435 4 882827043 +235 1 4 889655571 +655 629 3 887428559 +536 472 3 882319003 +533 1047 3 887032276 +721 681 3 877137214 +701 304 4 891446679 +659 143 5 891384973 +470 150 5 879178406 +425 209 2 890347085 +658 318 4 875148196 +682 748 3 888516814 +653 416 1 880152426 +184 655 3 889908630 +526 328 2 885682006 +308 588 5 887738893 +661 709 4 886841685 +281 690 5 881200264 +543 302 4 887912238 +561 371 1 885809426 +606 628 4 878143729 +450 51 4 882377358 +327 663 4 887819582 +99 651 5 885679833 +393 949 3 889731465 +109 161 3 880572756 +346 1232 1 875264262 +141 100 4 884584688 +543 531 4 874864347 +705 50 4 883427012 +559 153 3 891035708 +705 172 3 883427663 +705 627 3 883427932 +276 1481 2 877934446 +532 346 5 885761690 +655 717 1 887430830 +639 155 3 891239638 +223 535 3 891549876 +618 692 4 891309091 +618 276 3 891309266 +239 632 5 889181015 +695 338 2 888806270 +650 222 4 891369924 +406 611 3 879446268 +184 591 3 889907711 +126 681 5 887938392 +442 217 3 883390083 +447 469 4 878856394 +392 345 4 891037385 +373 202 3 877099352 +194 29 2 879528342 +588 483 4 890015500 +345 303 4 884900448 +466 182 4 890284706 +210 684 3 887737171 +635 886 4 878878901 +79 258 5 891271308 +457 588 5 882397411 +51 136 4 883498756 +233 318 5 877665324 +313 28 3 891016193 +190 696 3 891042883 +574 310 4 891279012 +642 729 3 885603566 +43 418 4 883955387 +590 287 4 879439645 +655 150 3 888893279 +727 692 4 883711240 +730 298 4 880310426 +236 97 5 890118228 +688 332 5 884153712 +548 1089 2 891044049 +505 202 3 889333508 +486 880 5 879874112 +172 425 1 875536591 +743 321 2 881277690 +488 181 4 891376029 +74 340 5 888333194 +291 1209 1 875086308 +279 926 4 875296696 +399 79 3 882512214 +533 356 4 879191652 +78 880 5 879633600 +376 328 3 879433164 +698 177 1 886367366 +100 258 4 891374675 +539 303 5 879787770 +125 8 4 879454419 +622 597 5 882591687 +244 26 5 880606274 +41 238 5 890687472 +693 183 2 875483301 +110 326 4 886987417 +577 228 3 880474338 +222 571 2 881060823 +30 252 3 875140740 +100 900 4 891374832 +625 647 4 891263822 +686 170 5 879547043 +456 121 2 881372052 +682 356 3 888517986 +94 286 4 891724122 +707 170 5 886285824 +201 160 5 884113368 +472 1047 4 875979082 +682 573 4 888521116 +425 195 4 878738245 +717 268 5 884642133 +454 526 4 881959698 +173 334 4 877556926 +207 293 2 878104486 +650 198 4 891381546 +274 597 3 878946133 +716 163 4 879795949 +452 863 5 885816769 +393 203 4 887746091 +693 162 3 875482912 +653 77 3 880152843 +383 134 5 891192778 +553 136 4 879948655 +561 175 4 885807429 +650 234 4 891369890 +405 851 1 885549407 +577 140 4 880475043 +653 64 4 878867272 +615 211 5 879449164 +634 325 1 877974690 +630 595 5 885667660 +589 272 5 883352535 +588 386 2 890029445 +642 1219 4 885603932 +606 157 4 880926018 +301 68 4 882076558 +541 1053 3 883865317 +13 762 5 882141336 +318 1048 4 884495001 +151 1 5 879524151 +716 157 3 879796914 +378 755 3 880056073 +445 237 2 891199906 +577 8 4 880474257 +566 54 3 881651013 +271 747 3 885849087 +528 210 5 886101976 +286 198 4 877533887 +521 1014 3 884476320 +578 323 3 888957735 +611 344 5 891636073 +416 794 5 893213019 +64 31 4 889739318 +110 692 4 886988937 +705 233 3 883428154 +514 435 3 875463551 +554 222 4 876231802 +642 218 3 886130929 +151 642 3 879524713 +660 559 2 891201069 +703 294 2 875242281 +293 187 3 888905865 +604 200 1 883668261 +604 164 4 883668175 +639 313 1 891238514 +537 87 3 886030622 +698 485 4 886367473 +409 608 4 881107155 +593 4 4 877728878 +593 140 4 875671226 +721 305 3 877137285 +697 1059 2 882622208 +83 828 3 883868208 +675 305 4 889488548 +528 185 4 886101652 +586 761 3 884062742 +622 89 5 882669740 +533 197 5 882902988 +655 778 2 890497653 +276 29 3 874796373 +42 468 4 881108346 +537 32 3 886031178 +527 169 4 879455961 +671 405 3 884035939 +541 1078 4 883874834 +666 31 3 880314500 +508 154 5 883767704 +409 23 4 881109175 +711 25 4 876185920 +716 628 3 879793376 +721 632 4 877147675 +672 864 3 879789278 +234 44 3 892335707 +642 1 5 885603565 +677 150 3 889399402 +536 98 4 882360029 +7 668 4 891352778 +478 410 3 889388357 +655 739 4 891585450 +214 1017 4 891543156 +454 1105 3 888015988 +653 449 3 880153740 +308 151 4 887741795 +491 129 4 891185170 +697 123 5 882622016 +666 191 4 880139090 +742 258 5 881005590 +405 1441 1 885546835 +7 635 3 891352864 +454 742 3 888267315 +290 191 3 880474235 +181 932 1 878963121 +707 1628 5 886287353 +271 956 4 885848997 +328 229 3 885046977 +416 955 4 876699839 +498 53 4 881961689 +540 1014 4 882157224 +334 257 4 891544764 +145 678 2 879161675 +737 428 4 884315066 +708 1 5 877325375 +453 1170 3 877562135 +655 42 3 887428184 +679 169 3 884486904 +293 121 3 888905198 +334 710 3 891548295 +389 591 3 879915726 +708 938 3 892718896 +129 748 2 883245452 +478 568 5 889396615 +415 432 4 879439610 +537 404 3 886031720 +682 291 1 888517364 +313 696 3 891032028 +601 22 4 876348820 +579 82 3 880951783 +234 172 3 892078837 +533 237 2 879193048 +456 789 3 881374522 +551 24 5 892783142 +59 736 5 888205145 +655 1462 3 887429077 +439 293 3 882892818 +683 321 5 893286207 +651 268 2 880126473 +531 748 4 887049081 +276 219 4 874792692 +687 336 2 884652144 +280 71 4 891700818 +254 416 4 886472713 +297 211 4 875240090 +90 490 5 891383753 +527 466 2 879455765 +119 1244 3 874781037 +502 350 3 883701792 +514 431 4 875463595 +529 876 3 882535466 +642 56 4 885602656 +422 294 3 875129692 +343 7 5 876402941 +138 137 5 879023131 +541 941 4 883865394 +644 289 1 889076364 +630 295 4 885666875 +457 410 4 882393937 +142 259 3 888640104 +569 268 3 880559356 +497 204 3 879362683 +564 831 3 888730658 +459 258 3 879561574 +237 474 5 879376327 +711 488 4 879992407 +395 458 3 883765731 +467 327 4 879532164 +405 438 1 885548384 +484 746 4 891195179 +276 122 3 874787150 +426 168 3 879444081 +712 181 5 874729901 +279 710 4 890451408 +500 479 5 883873811 +655 1532 2 887476999 +213 69 3 878955534 +716 663 5 879795467 +303 111 3 879467639 +715 425 4 875964655 +342 3 2 875318606 +347 742 5 881652610 +588 873 3 890014887 +666 209 4 880139205 +567 192 4 882426021 +31 262 5 881547766 +661 222 3 876013121 +671 298 4 875389187 +659 393 3 891387054 +409 607 5 881107697 +69 1144 5 882126156 +716 471 2 879795375 +426 631 3 879442006 +354 855 4 891306852 +707 486 3 886287662 +354 246 4 891216607 +290 117 3 880474799 +403 472 4 879790319 +158 325 4 880133920 +705 385 4 883428084 +521 168 4 884477585 +605 282 4 879424743 +535 631 5 879619176 +536 82 4 882360929 +313 202 5 891014697 +338 286 4 879437522 +495 11 5 888634536 +733 10 3 879535559 +245 300 4 888513026 +734 204 4 891022938 +184 632 5 889913687 +500 775 1 883877001 +284 303 5 885328991 +303 395 2 879544080 +745 492 5 880123572 +42 926 3 881105766 +297 535 3 874954814 +435 182 4 884131356 +159 948 2 880485344 +435 206 5 884133223 +1 192 4 875072547 +268 208 4 875309430 +268 223 3 875745728 +637 535 2 882905573 +543 582 3 874863550 +265 748 5 875320112 +736 296 4 878709365 +552 1048 3 879221683 +235 923 4 889656132 +655 1131 5 887428772 +58 1084 4 884304896 +84 411 2 883452516 +664 127 5 876525044 +734 99 4 891023086 +26 148 3 891377540 +654 468 4 887864757 +291 1305 3 875086766 +521 7 3 884475973 +1 178 5 878543541 +478 843 5 889397582 +713 1434 3 888882133 +130 1088 2 876250805 +402 12 4 876266826 +360 1149 4 880356025 +354 109 3 891216692 +487 347 2 884806595 +653 517 1 880150330 +90 59 5 891383173 +62 1129 5 879372060 +604 48 5 883667946 +711 1152 1 879991762 +721 690 3 877136967 +379 514 3 880961718 +204 288 3 892389137 +394 28 4 880886821 +718 926 2 883348912 +405 659 4 885544739 +494 65 5 879541207 +676 948 1 892685803 +363 210 4 891494905 +638 234 4 876695627 +650 98 4 891369798 +708 326 4 892719007 +655 522 3 887426900 +690 239 2 881177532 +708 871 1 892719101 +456 234 3 881373473 +586 160 4 884066360 +405 1147 2 885546069 +169 50 5 891359250 +43 69 4 875981421 +537 942 3 886031913 +659 636 3 891387400 +268 860 1 875744501 +586 181 4 884057344 +405 745 1 885547506 +623 283 4 891032275 +62 949 4 879376210 +145 246 4 888397946 +745 190 5 880123905 +463 248 3 889935953 +645 91 3 892054990 +380 443 4 885480283 +615 526 4 879448735 +533 747 5 879438767 +664 268 3 876523093 +504 490 4 887909816 +200 202 5 884129275 +738 367 3 875351346 +694 48 4 875726759 +618 763 2 891309319 +130 1275 5 876252288 +207 1435 2 877821612 +389 1204 4 880165411 +320 122 3 884749097 +250 12 5 878090499 +655 806 3 887523224 +523 634 5 883700743 +442 144 4 883390328 +548 340 1 891042794 +601 673 1 876351264 +539 124 4 879788480 +270 1073 5 876955202 +422 151 4 875130173 +121 717 5 891390688 +123 64 3 879872791 +387 410 3 886480789 +685 334 1 879451168 +638 550 5 876695059 +683 900 1 893282740 +293 789 2 888906071 +592 150 5 882607955 +21 656 5 874951797 +328 427 3 885045740 +416 172 5 893213796 +506 1136 3 877539905 +92 193 4 875654222 +705 151 3 883427134 +504 53 4 887911730 +374 323 3 880392482 +566 163 5 881649622 +460 242 4 882910838 +620 975 3 889987852 +224 1381 3 888104589 +655 880 2 887523271 +450 606 5 882371904 +645 518 5 892055285 +565 652 5 891037563 +291 722 4 875086460 +650 183 4 891369924 +491 124 5 891185170 +533 1173 4 885820219 +655 1490 2 887489792 +321 357 4 879439832 +659 942 3 891386347 +188 678 3 875071361 +587 690 3 892871252 +1 5 3 889751712 +645 168 4 892054797 +606 1190 3 889137308 +537 882 4 886028791 +244 1 4 880604405 +686 134 5 879545340 +716 97 4 879794996 +660 164 2 891200307 +429 961 3 882385518 +343 288 2 876402428 +597 1534 1 875341758 +311 630 5 884365929 +712 790 4 874956931 +343 56 5 876404880 +637 1233 5 882900888 +625 255 2 891629673 +106 28 4 881451144 +486 248 4 879874663 +618 195 3 891308431 +716 484 4 879795867 +710 116 4 882063852 +313 63 4 891030490 +740 319 3 879522781 +59 458 4 888203128 +735 1 4 876698796 +83 56 1 886534501 +314 1074 3 877890857 +529 270 4 882535304 +351 989 4 883356684 +393 22 4 887745973 +253 1404 3 891628651 +684 722 2 878762302 +7 575 3 892133271 +653 214 3 880151311 +95 58 3 879197834 +385 1110 2 879446566 +232 1149 5 888549674 +693 11 4 875482197 +271 462 4 885848448 +235 179 5 889656028 +412 182 4 879716983 +588 433 5 890024246 +454 77 4 888266955 +538 385 3 877108345 +715 73 4 875964410 +551 1419 1 892785332 +543 56 5 874866535 +561 362 2 893105375 +705 8 3 883427904 +698 751 3 886365557 +437 707 3 880141374 +292 48 5 881105318 +7 672 1 892131925 +502 258 2 883701927 +645 627 2 892055244 +280 764 4 891701685 +560 489 3 879975662 +562 218 4 879196576 +429 1071 2 882385729 +590 125 3 879439509 +65 1044 3 879217002 +463 1244 1 890530329 +490 293 2 875427993 +619 568 5 885954083 +641 192 4 879370150 +648 177 5 884882702 +533 423 5 888844906 +520 286 5 885168591 +524 1113 3 884636236 +472 404 3 875982922 +298 208 5 884182867 +507 333 4 889964121 +222 180 3 878181804 +270 1074 5 876955770 +707 1171 3 880059687 +663 272 5 889491515 +716 381 4 879795644 +435 1268 5 884131950 +294 827 1 889243393 +43 699 4 883956040 +606 71 5 880923745 +458 134 5 886395963 +661 238 4 876016491 +13 87 5 882398814 +624 147 4 879792557 +610 275 4 888703453 +255 300 3 883215358 +455 276 4 879109594 +393 977 4 887745501 +697 1245 1 882622526 +620 740 5 889987349 +503 70 4 880383174 +453 9 3 888207161 +697 754 3 882621431 +67 235 3 875379643 +13 631 3 882140624 +665 748 4 884290076 +493 684 4 884132267 +472 1058 4 875980081 +167 735 4 892738277 +279 33 4 875308510 +536 188 3 882359755 +666 502 3 880567883 +478 616 4 889398260 +689 597 4 876676165 +515 900 4 887658975 +92 9 4 875640148 +634 756 3 875729749 +712 785 5 874730206 +712 82 5 874730031 +658 129 3 875145750 +305 684 3 886323591 +551 11 5 892777052 +342 327 4 874984025 +83 259 2 883869199 +459 1115 3 879563506 +664 92 4 876525002 +132 521 4 891278996 +586 468 3 884066087 +590 127 4 879439645 +234 1285 3 892335764 +457 473 4 882395360 +115 980 4 881169984 +222 294 3 877562795 +634 762 3 879787667 +43 550 3 883956040 +500 709 4 883873640 +60 378 4 883327566 +541 1442 1 884046888 +238 294 3 883575813 +363 208 4 891496190 +613 126 5 891227338 +734 419 4 891023066 +92 575 2 875907763 +695 301 3 888806120 +589 243 3 883352735 +82 1078 3 878769748 +624 1028 3 879793485 +94 928 3 891723774 +130 2 4 876252327 +683 306 3 893286347 +504 1084 4 887837958 +710 300 3 882063407 +644 293 4 889076851 +497 11 3 879310825 +480 661 4 891208327 +648 407 4 884367248 +151 290 1 879543400 +490 181 4 875427873 +184 223 4 889911195 +663 243 3 889492076 +527 182 5 879456132 +496 96 4 876065881 +469 582 5 879524266 +310 50 5 879436177 +144 98 4 888105587 +747 228 4 888639736 +699 495 3 878883113 +160 276 5 876768106 +7 434 4 891352384 +439 1328 4 882893891 +197 332 2 891409290 +59 321 4 888206764 +473 9 5 878157357 +655 753 3 887860615 +5 387 3 875637419 +189 175 5 893265506 +393 1051 3 887745544 +621 763 4 880738462 +103 181 4 880415875 +544 323 2 884796016 +655 1535 3 887429023 +59 774 2 888206562 +723 28 3 880498970 +497 373 4 879311007 +608 1183 1 880405484 +398 168 3 875658967 +607 498 4 883879556 +658 45 5 875147800 +606 25 5 878149689 +85 707 4 879454350 +739 359 5 886825529 +606 925 4 880922566 +474 86 4 887927456 +710 200 4 882063793 +243 477 4 879987736 +592 898 2 887257199 +536 62 4 882360873 +175 195 3 877107790 +655 1600 3 888474286 +188 928 3 875074847 +632 215 4 879458834 +653 506 2 880606619 +605 1226 4 879510864 +526 544 1 885682477 +711 707 5 879993579 +694 699 4 875728639 +178 229 4 885784558 +155 331 3 879370860 +316 531 5 880853704 +10 60 3 877892110 +506 423 5 874874850 +429 70 4 882386401 +740 748 3 879522872 +230 588 5 880484683 +503 753 1 880383064 +201 473 3 884141470 +145 111 3 875270322 +503 504 4 880472298 +655 1560 2 887429136 +669 82 4 892550310 +699 258 5 883278844 +374 1001 1 882158327 +179 300 4 892151231 +503 702 2 880383236 +749 2 4 878849375 +654 22 5 887864292 +332 230 5 888360342 +144 307 1 888103407 +10 708 4 877892438 +377 194 5 891298549 +617 145 1 883789716 +1 87 5 878543541 +748 154 3 879454602 +709 816 2 879848318 +487 1016 5 883444515 +459 117 5 879563146 +567 469 4 882426837 +675 1653 5 889489913 +632 181 5 879457016 +321 182 3 879439679 +603 1483 5 891956283 +537 1045 3 886032154 +676 169 5 892686524 +697 277 5 882622581 +661 200 3 876035896 +521 8 3 884477914 +276 72 4 874791960 +378 31 4 880045652 +630 895 4 885666143 +546 977 5 885140939 +648 238 3 882213535 +512 56 5 888579996 +548 344 1 891042530 +619 252 3 885953878 +301 546 4 882078228 +745 215 3 880123751 +405 45 1 885549506 +718 300 5 883348269 +490 1067 2 875428309 +457 235 3 882395894 +724 311 1 883757597 +618 11 4 891307263 +646 347 2 888528392 +707 995 4 879439418 +23 162 3 874786950 +378 674 3 880056735 +691 56 4 875543025 +234 1452 4 892335342 +321 283 3 879438987 +416 781 4 893142283 +121 411 1 891390544 +435 625 2 884132588 +655 700 3 887523200 +486 1082 2 879875221 +374 2 4 880939035 +493 183 5 884132225 +417 219 3 879648979 +716 969 4 879794815 +577 191 4 880472055 +694 22 5 875726759 +536 443 3 882360833 +222 56 5 878182058 +616 348 3 891224801 +735 258 4 876697561 +385 652 5 881530738 +63 596 2 875747470 +488 514 2 891294063 +577 194 4 880474216 +301 412 4 882075110 +405 351 1 885549942 +416 1469 3 878880195 +734 98 4 891025247 +747 25 3 888639318 +682 697 4 888517816 +715 217 2 875963452 +650 546 1 891382877 +488 724 3 891375751 +718 111 4 883348634 +621 109 4 880737607 +749 56 2 878847404 +373 946 5 877104048 +447 629 3 878855907 +748 528 3 879454880 +389 56 5 880086868 +608 136 3 880403280 +648 70 2 884881592 +680 274 3 877075312 +621 53 4 874964496 +326 419 3 879875203 +660 228 3 891200193 +462 259 3 886365773 +717 322 5 884642133 +587 691 4 892871031 +214 173 4 892668249 +280 528 3 891700553 +95 216 5 880573287 +13 668 1 882397068 +499 50 3 882996761 +311 499 4 884365519 +534 286 3 877807602 +266 319 2 892256765 +601 154 5 876350017 +399 31 3 882345649 +704 461 3 891397712 +69 234 5 882145505 +24 92 5 875323241 +654 13 1 887863780 +92 95 3 875653664 +644 291 4 889076949 +450 1435 4 882471362 +666 1011 4 880313723 +707 799 4 886287876 +716 187 3 879795189 +479 1608 2 889125499 +201 436 3 884112627 +339 131 5 891033382 +665 117 4 884290575 +328 597 3 885048465 +435 156 4 884131822 +646 1237 3 888529127 +749 125 5 878848764 +294 1012 4 877819792 +727 746 4 883710514 +655 1644 1 888474327 +486 298 3 879874871 +682 737 3 888518104 +453 496 4 888203066 +295 222 4 879517136 +585 1623 4 891283921 +350 435 5 882346900 +600 22 5 888451491 +682 327 3 888518299 +648 997 1 884882636 +653 234 3 878854633 +113 288 3 875075887 +279 1490 4 875312947 +440 70 4 891577950 +435 631 2 884132540 +479 24 3 879460236 +524 405 2 884627065 +405 794 5 885549309 +499 194 4 885599372 +653 451 2 880152351 +746 96 4 885075267 +654 963 4 887864414 +215 180 3 891435060 +537 42 3 886030622 +655 433 2 887428030 +378 213 5 880045935 +413 328 3 879968933 +532 451 4 874789474 +246 96 3 884920900 +654 268 1 887863017 +490 137 3 875427739 +506 67 3 874874894 +746 117 4 885075304 +718 591 4 883349191 +738 196 4 875350086 +85 65 3 879455021 +344 476 3 884900499 +89 731 3 879460347 +151 443 5 879524947 +666 636 4 880568322 +694 216 4 875729830 +286 301 5 879780879 +653 790 2 880152523 +393 1028 3 887745174 +357 760 3 878952080 +269 208 2 891449304 +573 10 4 885843818 +731 197 5 886185743 +417 232 3 879648510 +709 633 3 879846561 +515 1399 4 887659718 +699 224 3 878883249 +657 922 4 884239123 +586 202 4 884066689 +508 229 2 883777346 +716 1039 5 879796808 +546 234 4 885141332 +642 1480 1 886569922 +233 293 4 877660832 +708 751 4 892718687 +696 523 5 886404542 +611 751 4 891636098 +504 632 3 887837701 +455 270 4 878585321 +429 928 2 882386849 +577 71 5 880474433 +514 385 3 886189965 +233 371 5 880190399 +28 332 2 881954915 +692 1040 2 876954021 +690 64 5 881179682 +279 1488 4 875659924 +325 1523 4 891478504 +606 135 5 880926245 +332 96 5 887939051 +82 175 4 878769598 +495 944 5 888637768 +376 301 3 879433102 +276 235 4 874786734 +504 90 3 887910552 +488 168 4 891293910 +85 246 4 881704999 +577 147 4 880470604 +325 205 4 891478307 +701 100 5 891447139 +440 904 5 891546654 +716 191 5 879796046 +405 317 4 885544911 +734 166 3 891022849 +553 191 4 879949153 +629 984 3 880116278 +682 412 1 888521907 +549 100 4 881672333 +544 271 3 884795986 +561 1512 5 885807455 +733 253 3 879535407 +719 50 2 879358671 +164 222 4 889401927 +693 568 4 875483947 +641 303 3 879369827 +451 1265 4 879012772 +171 304 3 891034756 +439 121 2 882893768 +429 654 4 882385542 +207 546 3 876018553 +386 405 4 877655145 +1 238 4 875072235 +735 741 2 876698796 +653 520 3 880151488 +663 928 3 889492679 +606 326 4 889137188 +749 663 4 878847988 +450 761 4 882398939 +406 11 4 879446529 +606 194 4 880925199 +347 76 5 881654679 +490 246 2 875427812 +717 328 4 884641842 +737 186 5 884314944 +417 80 4 879649247 +627 4 2 879531248 +650 742 3 891369889 +514 582 4 875318224 +552 934 3 879222336 +643 501 4 891448062 +711 196 5 879993918 +315 324 3 879799302 +339 485 5 891032413 +405 563 1 885548475 +106 647 3 881450440 +450 67 3 882469941 +705 121 5 883427479 +551 216 5 892777609 +663 23 4 889493818 +595 294 2 886920748 +244 1136 3 880608162 +664 212 4 878090180 +586 29 5 884062405 +423 299 3 891394788 +561 980 3 885809146 +234 942 3 892334610 +393 930 3 889731593 +389 72 3 880614164 +378 254 1 880318158 +234 956 3 892826643 +514 393 3 876067592 +657 286 4 884238002 +548 284 3 891415619 +134 301 2 891732296 +616 333 2 891224448 +642 585 5 885606178 +749 366 4 878849903 +545 742 4 880347813 +699 300 3 893140897 +697 596 4 882622372 +299 152 4 877880474 +546 294 1 885139779 +608 25 4 880406506 +655 498 3 887523453 +280 1051 4 891700904 +557 325 3 880485074 +655 70 2 887474727 +721 259 3 877137527 +198 131 3 884208952 +712 812 4 874729996 +716 673 4 879797535 +2 274 3 888551497 +750 330 2 879446215 +457 472 4 882395768 +664 328 3 876523314 +663 268 3 889491617 +655 903 3 887425070 +320 145 4 884751552 +665 845 4 884292654 +552 25 3 879221833 +743 288 2 881277690 +564 300 4 888718470 +639 513 4 891239030 +653 696 1 880152989 +656 344 4 892318520 +525 1014 3 881086468 +49 181 1 888067765 +286 742 5 877530860 +483 318 3 884046480 +343 81 5 876408139 +409 430 4 881168604 +563 153 4 880507625 +32 111 3 883717986 +632 402 3 879458725 +682 317 4 888517390 +425 1595 2 878738757 +436 38 3 887771924 +694 504 3 875728912 +691 170 5 875543395 +694 197 5 875727926 +522 12 5 876960894 +721 191 3 877140490 +699 479 3 878883038 +66 825 3 883602268 +184 170 5 889913687 +633 110 3 877211817 +642 233 4 885606964 +532 1039 4 888629863 +689 125 3 876675152 +686 327 5 879543445 +327 7 3 887744023 +94 210 4 886008459 +707 286 5 879438988 +394 186 5 880887322 +739 69 5 886959069 +624 273 4 879793129 +721 82 4 877139015 +13 692 4 882141659 +514 403 3 875463202 +716 86 5 879796072 +682 205 3 888518164 +697 242 5 882621486 +56 578 3 892910860 +669 517 3 892550282 +627 226 1 879531397 +207 82 3 877125249 +694 1263 3 875729146 +682 75 4 888518185 +523 1 5 883701763 +194 871 2 879554603 +451 328 5 879012470 +384 302 5 891273509 +538 294 3 877095702 +251 300 4 886271472 +299 248 5 877877933 +747 108 4 888733415 +480 1007 4 891207715 +632 144 4 879457812 +738 318 5 892844112 +201 607 4 884111485 +691 8 2 875543346 +683 299 3 893283997 +361 742 1 879441351 +653 88 3 880152399 +577 549 5 880475539 +655 64 4 887426931 +721 749 3 877137359 +1 156 4 874965556 +743 273 3 881278061 +620 225 3 889988281 +294 743 2 889242905 +664 479 5 878090087 +535 962 4 879617747 +13 576 3 882398076 +682 554 3 888521116 +727 628 3 883709774 +648 173 5 882213502 +650 179 2 891383786 +654 288 3 887863064 +629 15 5 880117719 +503 739 1 880383490 +676 117 4 892686244 +532 796 5 888635445 +407 496 5 875042425 +655 906 2 888813416 +588 1053 3 890027780 +479 265 4 879460918 +634 932 3 877018004 +617 1019 4 883788782 +456 474 5 881373353 +655 740 3 888474713 +293 568 4 888906489 +738 151 4 875352737 +393 78 2 889731521 +222 1066 1 881060435 +186 38 5 879023723 +624 1048 4 879793223 +454 22 4 881959844 +38 717 1 892433945 +489 887 2 891447845 +747 208 5 888640862 +496 56 5 876066009 +85 87 4 879829327 +738 205 5 892844079 +715 70 3 875964105 +13 510 5 882139717 +537 392 2 886032245 +581 224 4 879641698 +503 285 4 884637911 +379 306 3 892879325 +533 663 5 879191022 +738 180 5 892844112 +749 49 4 878848137 +565 639 5 891037291 +699 325 5 879148050 +474 507 4 887924424 +334 91 4 891547306 +445 1012 1 891199843 +488 357 4 891293699 +727 259 4 883708265 +585 213 5 891284393 +661 603 3 876016726 +551 849 5 892785128 +561 559 1 885809336 +586 1042 4 884065773 +502 681 1 883702631 +479 96 4 879460959 +597 295 3 875340117 +642 89 2 886455538 +543 157 3 874863549 +548 1016 4 891043882 +605 260 4 879365417 +472 890 4 883903272 +450 479 4 882371526 +564 597 4 888730699 +256 387 4 882165328 +274 220 4 878946107 +7 202 3 891352947 +741 95 2 891018400 +588 230 1 890023692 +308 792 3 887737594 +393 944 4 889728712 +579 211 3 880952476 +268 1188 3 875743735 +479 380 3 879462007 +701 255 3 891447164 +487 790 3 884045135 +709 125 4 879847730 +748 748 4 879454208 +455 7 4 879111213 +522 192 5 876960894 +554 423 4 876550182 +545 199 4 880347770 +117 7 3 880125780 +693 403 2 875483049 +530 64 5 883790942 +704 152 2 891397819 +574 269 5 891279173 +250 1073 5 878090114 +121 472 3 891390599 +632 735 4 879458649 +472 391 2 875983129 +62 144 3 879374785 +269 818 3 891446873 +673 750 5 888786969 +389 615 4 879991115 +579 326 3 880951494 +215 168 5 891436024 +513 118 4 885062559 +479 111 4 879460323 +441 121 4 891035489 +590 13 4 879438972 +550 1620 4 883425448 +416 97 5 893213549 +655 239 2 887428507 +727 831 3 883709839 +251 60 4 886271641 +692 756 2 876953681 +345 461 3 884992175 +667 168 3 891035206 +561 432 5 885807776 +484 692 5 891194998 +721 135 3 877140490 +422 326 3 875129523 +6 502 4 883602664 +182 596 5 885613152 +405 441 1 885548435 +137 866 3 881433090 +405 61 1 885549589 +719 281 3 888897264 +453 49 3 877561172 +608 321 2 880402633 +458 255 2 886396521 +603 271 2 891955922 +655 92 3 891585477 +574 1062 5 891279122 +60 225 3 883327976 +500 72 4 883876155 +406 1203 2 884630860 +194 1410 2 879553404 +506 96 4 874873423 +648 143 4 884368002 +543 98 4 874863336 +370 269 5 879434206 +747 23 5 888639735 +135 452 2 879857843 +8 96 3 879362183 +198 820 1 884206773 +660 216 2 891199804 +738 183 5 892844079 +303 41 5 879485686 +363 854 1 891497047 +537 426 1 886032154 +452 659 4 875266415 +110 397 3 886988688 +145 597 4 875271477 +104 330 1 888442530 +680 845 4 877075241 +640 56 5 874777528 +489 874 2 891448774 +450 705 4 882373656 +584 449 2 885778571 +13 572 2 882398255 +716 496 5 879795467 +393 65 2 887746346 +593 661 2 886193103 +660 316 4 891197728 +331 178 3 877196173 +452 418 4 875275700 +457 948 1 882393156 +536 153 4 882359540 +517 538 4 892607155 +393 86 2 889729674 +450 821 2 882812495 +73 660 4 888625754 +714 181 5 892777876 +749 1 4 881602577 +699 276 3 885775479 +458 644 4 886397275 +5 447 3 875720744 +588 69 2 890023556 +207 216 5 877878688 +280 103 3 891702122 +597 763 4 875340191 +325 132 3 891478665 +659 157 4 891383636 +102 546 3 888801876 +537 469 3 886030652 +655 86 4 887650978 +664 778 3 876525192 +535 609 4 879618019 +429 207 4 882385729 +474 836 3 887926804 +537 445 3 886030767 +37 385 4 880915902 +727 33 3 883711150 +745 7 4 880123019 +659 172 3 891384526 +738 199 4 892938594 +654 116 4 887863436 +666 187 5 880139439 +291 756 3 874833878 +559 182 4 891035111 +690 649 4 881179906 +269 8 2 891449985 +381 778 4 892697066 +716 96 2 879795122 +642 565 4 886569870 +643 410 4 891445597 +642 579 4 885606537 +642 444 1 886569417 +286 724 3 877532013 +577 728 3 880475226 +185 321 5 883524428 +303 829 2 879485814 +342 1070 3 875319412 +7 523 4 891350845 +537 1335 3 886030347 +660 67 1 891201859 +663 25 4 889492917 +58 181 3 884304447 +508 423 5 883777430 +534 121 4 877808002 +543 272 3 888300821 +617 288 1 883788566 +726 845 3 889832358 +648 67 4 884882192 +738 96 5 892844112 +218 42 4 877488546 +601 201 5 876349503 +85 174 4 879454139 +429 66 2 882386357 +141 257 3 884584773 +669 117 1 891260577 +43 186 3 875981335 +305 382 5 886323617 +653 55 3 878854051 +724 937 3 883757670 +413 936 4 879969484 +480 479 4 891208215 +3 344 4 889236939 +717 150 4 884642339 +465 181 3 883530521 +728 117 4 879443321 +533 566 4 879191652 +654 28 5 887864610 +592 1014 4 882609009 +722 118 4 891281349 +339 719 3 891036753 +537 705 3 886031074 +606 313 5 887841727 +657 628 3 884241192 +749 142 4 878850456 +345 1074 3 884993890 +244 158 3 880608904 +648 406 3 882212373 +270 319 5 876955633 +657 475 4 884239057 +692 100 4 876953482 +503 133 5 880472272 +683 302 5 893286207 +440 988 1 891577504 +653 136 1 880149965 +624 323 2 879792155 +628 845 5 880777167 +239 514 1 889178562 +515 748 2 887660131 +733 147 1 879535938 +580 289 5 884124382 +572 289 3 879449277 +398 127 4 875651657 +524 204 3 884635358 +234 222 3 892079803 +676 1527 1 892685657 +528 505 4 886101956 +690 163 3 881177459 +279 239 4 875310418 +187 8 5 879465273 +474 519 4 887926872 +624 1095 2 879793408 +405 1548 1 885547952 +537 1134 3 886030176 +650 281 2 891382877 +650 554 2 891382877 +450 622 5 882468239 +699 989 4 883279196 +618 124 1 891308542 +303 174 5 879466523 +733 676 4 879535603 +625 483 5 891262983 +201 1192 3 884113772 +385 1037 1 879449950 +593 322 2 875644752 +432 294 4 889416229 +593 568 4 886193361 +345 258 4 884916532 +541 732 3 883865173 +682 1091 3 888523288 +537 141 3 886032183 +5 228 5 875636070 +130 290 3 876250955 +268 294 3 876513675 +624 678 3 879792155 +378 1047 2 880044726 +554 238 3 876232682 +655 354 2 891667570 +718 240 1 883349467 +751 568 3 889133334 +104 124 2 888465226 +332 323 5 888098276 +387 678 3 886484460 +717 294 3 884641842 +537 93 3 886030077 +113 1251 5 875325377 +630 1023 4 885667581 +747 223 5 888638913 +454 694 2 888266874 +247 750 4 893081381 +707 124 4 880059876 +74 539 3 888333255 +712 783 3 874956981 +618 625 4 891309192 +312 137 3 891698224 +168 313 5 884286862 +309 258 5 877370288 +749 399 3 878849433 +452 180 4 875560300 +234 1221 4 892334852 +506 461 2 874873944 +730 332 3 880309870 +684 239 4 878762118 +640 318 5 874777948 +388 237 5 886436813 +707 45 4 886286926 +666 591 2 880313604 +405 439 1 885548330 +727 24 3 883709711 +26 815 2 891371597 +301 503 3 882078228 +223 117 5 891549529 +707 705 4 886285851 +94 121 2 891721815 +7 141 5 891353444 +707 1109 5 886286283 +78 871 3 879634199 +749 252 3 878847057 +654 216 4 887864432 +716 340 3 879792665 +505 435 3 889333676 +538 100 4 877109748 +212 735 4 879304010 +392 303 4 891037437 +478 7 1 889387871 +716 23 4 879795643 +543 1441 3 874863436 +238 538 4 883575749 +528 168 4 888522642 +489 316 5 891447872 +697 125 3 882622559 +711 1119 4 879994632 +528 203 4 888522613 +747 432 5 888640567 +714 255 2 892777140 +416 42 3 876699578 +572 277 1 879449799 +452 518 5 885816768 +561 751 3 885806779 +467 246 5 879532534 +625 480 4 891263589 +599 508 3 880953441 +129 242 4 883243972 +727 73 4 883713048 +705 64 5 883518709 +702 228 5 885767774 +617 563 1 883789747 +750 286 4 879445755 +17 919 4 885272696 +417 804 3 879649153 +398 604 5 875658794 +669 902 2 891182948 +429 559 3 882386662 +59 900 4 888202814 +554 820 2 876232176 +711 739 3 879995215 +178 180 3 882826395 +216 98 5 881432467 +373 184 4 877104086 +712 498 3 874729935 +586 541 3 884063080 +639 414 3 891240719 +643 550 3 891450273 +532 227 4 874788566 +648 181 5 882211066 +523 70 5 883700743 +653 572 2 880153522 +593 619 3 877727927 +40 300 3 889041523 +328 135 3 885046853 +378 509 4 880055672 +298 523 4 884182774 +506 503 4 874874396 +296 628 5 884196640 +404 683 4 883790366 +24 288 3 875245985 +756 63 3 874830908 +738 178 4 875349628 +561 971 3 885809269 +426 491 4 879442702 +632 705 5 879459738 +627 239 3 879530662 +710 22 3 882063852 +174 381 5 886513706 +334 506 3 891547763 +497 325 2 878759505 +399 203 4 882344434 +33 271 4 891964166 +666 523 4 880314194 +303 734 1 879543711 +654 79 5 887864256 +665 393 3 884295080 +293 780 3 888907816 +749 31 5 878847209 +429 584 4 882385749 +269 68 3 891449751 +615 178 5 879448547 +606 729 4 880927247 +485 328 2 891040560 +262 955 2 879792604 +649 1244 3 891440676 +536 213 5 882360704 +727 433 5 883710994 +545 551 4 879900053 +676 144 4 892686459 +373 496 5 877098643 +671 720 3 884036050 +389 824 3 881384649 +373 150 4 877098821 +645 183 4 892053340 +244 871 3 880605010 +254 616 1 886473736 +586 11 3 884059693 +655 44 2 887564639 +700 96 4 884494310 +537 24 1 886030176 +757 399 3 888466782 +682 723 1 888518063 +271 474 3 885848518 +703 7 4 875242599 +705 1 5 883427101 +629 423 5 880117333 +711 463 5 879993959 +747 48 5 888639890 +450 90 4 887660650 +621 401 1 874963210 +615 175 5 879448439 +344 742 3 884900248 +525 124 3 881086108 +601 153 4 876350060 +469 511 5 879524062 +52 100 4 882922204 +455 709 3 879111471 +260 258 3 890618198 +707 735 4 886286792 +407 209 5 875042378 +267 198 5 878971745 +479 510 4 879461337 +648 679 3 884882802 +756 367 4 874827614 +500 118 3 883865610 +669 127 5 891260596 +549 127 5 881672441 +594 50 3 874783018 +513 222 5 885062519 +480 258 3 891207859 +403 291 4 879790319 +178 79 4 882826306 +751 301 5 887134816 +388 100 3 886437039 +635 276 3 878879257 +487 423 4 883446685 +672 1028 4 879789030 +293 1421 2 888907794 +373 99 5 877099091 +417 451 4 879649266 +141 291 5 884585220 +627 191 4 879529957 +274 200 4 878946612 +682 862 1 888522021 +532 135 3 888629938 +531 245 4 887049049 +268 1118 3 875310673 +560 240 3 879976970 +437 428 5 881001983 +627 729 1 879530600 +618 191 4 891307175 +660 810 3 891265495 +42 239 5 881108187 +566 575 1 881651652 +234 9 3 891227689 +436 65 4 887771753 +62 245 2 879373232 +660 755 2 891201026 +499 690 4 882995558 +399 289 4 882340311 +568 132 2 877907236 +399 1217 4 882350282 +470 283 5 879178370 +551 117 5 892782807 +483 582 3 887677797 +591 172 3 891031116 +498 89 5 881957353 +567 659 4 882426508 +286 451 5 877533993 +585 1005 4 891283339 +658 151 5 875148319 +611 286 5 891636244 +181 833 1 878963205 +711 658 4 879994581 +545 230 5 879899327 +399 227 2 882344794 +466 268 2 890282759 +482 269 4 887643096 +692 321 3 876946833 +370 31 3 879434766 +577 65 5 880475539 +579 209 4 880951944 +337 228 5 875185319 +392 272 5 891037437 +639 471 2 891239349 +699 825 3 879147917 +488 732 4 891294606 +454 199 3 881960413 +622 118 1 882591663 +664 70 3 878092758 +11 690 4 891901716 +718 689 4 883348355 +621 128 4 880740034 +232 48 5 888549879 +130 455 4 874953728 +504 447 4 887909816 +536 474 5 882359678 +733 294 2 879536001 +639 1195 2 891239838 +7 670 5 891353254 +655 647 3 888813306 +313 615 4 891013652 +603 12 5 891955991 +757 196 4 888445604 +207 1272 3 879132830 +734 607 5 891023066 +476 1271 2 883364433 +456 357 4 881373084 +241 268 4 887249576 +256 628 5 882150848 +347 660 2 881654186 +655 234 3 888474713 +60 755 4 883327639 +455 382 3 879112239 +561 214 3 885809670 +83 993 2 883868978 +95 197 4 888954243 +588 132 5 890015476 +669 527 3 891517185 +487 378 5 883530973 +699 307 3 893140697 +380 357 4 885478425 +606 176 5 880923925 +452 212 2 885490812 +527 628 3 879456289 +566 161 4 881651097 +682 673 3 888517049 +472 1074 5 892790676 +717 100 4 884642268 +682 1222 3 888523657 +64 153 3 889739243 +636 1 3 891448229 +498 447 3 882205321 +495 186 5 888633277 +666 604 3 880139669 +92 758 1 875644796 +650 180 3 891383164 +326 663 1 879877159 +417 546 3 879646712 +346 234 2 874950291 +618 197 3 891307825 +499 521 4 885599119 +741 783 3 891457633 +556 12 5 882136440 +711 476 4 876185832 +588 83 5 890015435 +576 319 3 886985695 +503 740 5 879438411 +567 124 4 882426812 +690 194 4 881177349 +631 301 4 888465107 +517 258 5 892660728 +94 436 5 891721815 +24 98 5 875323401 +697 989 2 882621813 +217 62 2 889070050 +543 161 4 877545356 +481 86 5 885828650 +551 710 5 892777753 +177 60 4 880130634 +682 9 3 888517168 +442 231 3 883390609 +757 71 4 888445838 +640 919 5 886474436 +60 286 5 883325421 +342 487 5 874984315 +453 164 3 877554771 +756 603 5 874831383 +381 94 3 892697337 +99 120 2 885679472 +432 249 5 889416352 +618 82 4 891308704 +655 537 3 887489086 +280 728 3 891701614 +629 292 4 880116722 +4 11 4 892004520 +669 300 4 892549238 +593 174 4 875660546 +416 200 5 893213103 +198 64 4 884207206 +671 1073 3 883949781 +385 1499 5 881047168 +246 841 1 884923829 +524 965 4 884635288 +586 452 3 884060941 +62 699 4 879375022 +526 690 3 885681910 +57 473 3 883697916 +639 584 2 891239790 +500 211 3 883875241 +298 88 5 884183236 +307 164 4 879283514 +624 124 4 879792358 +401 508 3 891032433 +707 163 2 886285939 +677 323 4 885191280 +693 1145 2 875483049 +716 105 2 879794450 +751 178 5 889132896 +548 466 5 891044446 +587 266 1 892871536 +495 231 3 888635294 +654 204 4 887864610 +435 862 1 884133972 +353 327 2 891402443 +504 102 3 887910409 +495 768 3 888636216 +334 248 4 891544997 +200 455 3 876042340 +647 291 3 876534275 +589 323 2 883352631 +141 717 4 884585470 +655 529 4 887428965 +451 268 2 879012684 +62 127 4 879372216 +468 238 3 875286036 +327 302 3 887737355 +551 235 1 892784629 +664 462 4 878091912 +551 188 5 892783672 +435 748 4 884130765 +727 132 2 883710271 +698 491 2 886367644 +399 164 2 882344553 +585 736 4 891284184 +738 916 3 892938181 +64 98 4 889737654 +679 416 3 884488226 +747 1050 3 888640099 +505 50 3 889334067 +707 371 3 886287497 +727 419 2 883710236 +653 1188 1 880153568 +180 739 3 877128156 +627 949 2 879530824 +537 625 3 886032184 +510 681 1 887667808 +326 176 2 879876184 +556 513 4 882136396 +158 284 5 880132638 +682 1655 2 888517922 +484 111 4 881450111 +567 9 4 882426696 +374 934 3 882158146 +724 877 1 883757834 +286 934 3 889653107 +737 89 4 884314664 +634 13 4 878916178 +514 890 1 885180929 +672 931 1 879789164 +406 480 4 882480802 +619 307 2 885953601 +276 1 5 874786568 +650 1247 1 891384110 +314 25 3 877886753 +727 177 4 883710687 +7 605 4 891353290 +457 176 5 882397542 +693 631 3 875482826 +294 535 4 877820240 +490 50 5 875428765 +459 260 2 879561782 +716 405 4 879793844 +168 405 4 884287927 +318 196 3 884495973 +715 204 4 875964025 +405 674 1 885548275 +618 419 4 891309887 +660 120 1 891198996 +144 632 4 888105472 +682 447 2 888522857 +622 250 4 882590252 +284 289 3 885329671 +756 527 3 874828242 +718 273 3 883348712 +537 664 3 886031634 +90 340 4 891382121 +410 690 4 888627138 +501 741 5 883347857 +632 98 4 879457217 +276 1046 3 874795772 +197 1222 3 891410082 +307 483 5 875680937 +591 393 4 891031644 +514 652 4 886189466 +16 180 5 877726790 +501 342 4 883346823 +551 55 5 892777753 +459 1039 3 879564915 +610 477 2 888703475 +717 331 3 884641681 +627 554 2 879531557 +684 204 4 875812299 +527 14 2 879456663 +472 895 4 892790628 +648 505 4 884796652 +460 515 5 882912418 +629 202 4 880117635 +271 1120 2 885847800 +200 405 3 884127370 +152 121 5 880149166 +23 541 4 876785720 +655 294 3 887425103 +710 264 2 882063564 +474 659 5 887925187 +682 761 4 888521090 +326 127 1 879875507 +536 151 3 882318442 +445 818 1 891200656 +457 185 5 882397375 +369 358 3 889428228 +727 1217 3 883711965 +219 631 5 889403559 +653 550 3 890181186 +622 233 4 882670423 +531 286 5 887048741 +595 824 3 886921748 +557 180 5 881179653 +291 11 4 874835024 +712 746 4 874730085 +314 731 4 877892099 +707 151 4 880059810 +624 260 2 879792251 +496 1060 1 876071243 +474 26 4 887927509 +747 486 5 888732609 +588 588 4 890023692 +181 864 2 878962774 +643 519 4 891447663 +363 161 4 891496753 +22 1000 3 878886333 +648 403 4 884882802 +708 1047 2 877325726 +280 203 4 891701530 +22 566 3 878888145 +620 404 4 889988232 +653 742 3 886052040 +747 1375 4 888732571 +745 425 4 880123540 +344 118 3 884900353 +648 1376 2 884367180 +656 303 4 892318553 +203 742 3 880434882 +195 451 5 875771441 +94 433 4 891721078 +551 282 5 892777092 +537 310 3 886028647 +639 275 4 891239492 +606 428 3 880927247 +411 56 4 891035278 +655 1221 3 891585477 +499 251 5 882996735 +699 319 3 883279146 +58 773 4 884304790 +508 230 2 883768706 +507 257 5 889966054 +378 663 3 880046437 +301 271 4 882075473 +393 501 3 889729614 +639 300 3 891238790 +227 240 1 879035934 +672 476 5 879789462 +711 340 5 886030557 +668 29 3 881605433 +99 282 3 885678753 +553 661 5 879949324 +741 399 2 891457456 +458 474 4 886397109 +546 145 4 885141502 +630 930 3 885667551 +504 1277 4 887832012 +678 7 4 879544952 +316 89 1 880854197 +699 977 2 879147550 +532 44 5 888637085 +561 589 3 885807510 +665 249 5 884290608 +374 975 4 880936113 +452 615 3 875261350 +597 235 4 875340062 +664 234 3 876526554 +634 864 3 877368475 +311 944 4 884366439 +128 404 3 879968308 +533 205 5 882902988 +650 163 3 891386878 +627 597 3 879531557 +698 603 4 886366770 +727 1231 3 883713082 +447 11 4 878856208 +181 1319 1 878962120 +690 1207 3 881180138 +664 47 4 876525076 +605 176 4 879426339 +521 655 4 885253904 +146 1293 5 891458080 +568 213 4 877907835 +703 117 4 875242814 +500 412 1 883876370 +668 333 3 881524020 +486 150 3 879874838 +620 118 4 889987825 +562 230 1 879195954 +187 462 5 879466062 +7 452 5 891353860 +618 427 5 891308431 +622 217 4 882671185 +458 203 5 886396460 +385 1008 4 879440628 +650 154 3 891381993 +417 168 4 879647355 +602 181 5 888638547 +433 246 4 880585885 +600 269 4 888451388 +682 83 3 888517011 +747 783 1 888732921 +537 81 3 886031106 +711 692 3 879993150 +640 751 4 886353742 +563 181 4 880507374 +611 299 1 891636223 +660 1183 1 891201049 +666 684 4 880568063 +374 637 4 882159237 +5 250 3 875635265 +59 402 4 888206296 +635 1 4 878879283 +63 473 2 875747635 +537 337 3 886029526 +660 1074 1 891201399 +416 216 5 893213444 +715 174 4 875963306 +618 176 4 891307426 +332 56 5 888098256 +305 713 4 886323115 +11 504 3 891905856 +521 135 4 885254226 +97 133 1 884239655 +305 198 4 886322838 +745 520 3 880123696 +316 44 4 880853881 +658 56 5 875148108 +714 121 4 892777903 +650 82 3 891381585 +345 498 4 884992117 +740 289 4 879523187 +561 657 4 885807235 +736 532 4 878709365 +496 186 4 876065558 +493 405 2 884130619 +665 195 3 884294819 +393 393 3 889731064 +526 475 5 885682635 +102 73 3 892992297 +532 925 4 892520642 +751 248 5 889132413 +588 638 4 890024289 +474 44 3 887926998 +33 339 3 891964111 +401 315 4 891031464 +587 271 4 892871310 +752 286 1 891207940 +749 188 3 878848302 +659 269 4 891331825 +653 204 4 878867093 +387 22 5 886483049 +645 228 3 892053748 +291 246 5 874834481 +651 286 4 879348880 +615 631 4 879448843 +525 928 3 881086586 +632 234 3 879457641 +541 588 4 883874682 +249 403 4 879640998 +139 288 4 879537918 +561 183 5 885807215 +715 150 4 875961898 +710 751 3 882860806 +271 815 3 885848153 +10 170 4 877889333 +698 659 3 886367013 +690 794 3 881180543 +648 125 2 882211654 +256 182 4 882164479 +758 347 3 885257453 +374 1218 2 881291426 +59 179 5 888204996 +7 606 3 891352904 +457 180 5 882396989 +632 510 5 879459738 +666 1132 3 880313992 +13 163 3 882141582 +405 91 2 885548932 +654 246 1 887863471 +573 174 4 885844431 +607 475 4 883879811 +22 144 5 878887680 +391 490 4 877399658 +49 85 3 888068934 +292 491 4 881105318 +659 177 5 891384850 +486 1120 3 879875465 +749 1337 3 882804605 +658 527 5 875147800 +363 248 5 891499595 +655 293 4 887650683 +671 241 5 884035686 +666 530 3 880139323 +655 1140 3 887474699 +599 319 2 880951046 +610 117 4 888704000 +436 111 4 887771773 +655 167 4 888474713 +604 448 5 883668261 +568 494 4 877907835 +749 735 5 878847716 +378 780 2 880334241 +655 1602 3 891817435 +450 709 3 882371826 +7 386 4 892133310 +440 198 4 891577843 +592 479 4 882956668 +507 222 5 889965997 +142 294 3 888640054 +554 66 3 876369615 +145 826 2 875271312 +399 455 4 882340924 +334 537 4 891547995 +407 257 4 884202243 +504 40 4 887910409 +399 332 3 882340242 +634 1142 3 877018347 +716 133 5 879795239 +344 86 4 884901129 +655 346 4 888474713 +417 5 4 879648593 +132 251 4 891278996 +575 304 2 878146638 +207 125 4 877878688 +194 1408 1 879555267 +468 121 4 875280628 +537 670 2 886031342 +627 405 3 879531458 +58 367 5 892243053 +436 790 3 887770428 +741 69 4 891018550 +416 843 3 886317748 +88 880 3 891037466 +221 384 3 875246919 +537 1113 3 886031606 +749 154 5 878847988 +389 383 2 881384649 +716 144 2 879795467 +557 96 5 881179653 +312 427 5 891698224 +373 22 5 877098919 +747 116 4 888639318 +457 257 3 882393036 +350 89 4 882347465 +727 569 2 883713286 +84 273 4 883452086 +430 42 3 877226568 +399 385 3 882344597 +715 1011 4 875962524 +344 13 3 884899768 +655 654 3 887474077 +676 1654 1 892685960 +595 181 5 886921199 +524 558 4 884634533 +405 1297 1 885546577 +749 406 4 881072892 +223 1088 4 891550326 +60 513 5 883325994 +279 1027 4 891208908 +675 1101 4 889490029 +78 93 4 879633766 +119 826 4 874775580 +527 283 4 879456405 +633 121 3 875325168 +405 173 5 885544798 +43 367 4 883956494 +82 546 3 876311423 +590 286 5 879439645 +742 109 1 881335960 +733 1009 2 879536723 +654 173 5 887864181 +272 238 5 879455143 +748 22 4 879455126 +314 1012 4 877886584 +457 658 4 882398308 +130 321 5 874953291 +682 204 3 888521413 +594 319 3 874780864 +682 1232 2 888517896 +737 222 3 884315127 +474 648 4 887926804 +727 432 2 883711298 +230 498 5 880484755 +393 369 3 887745174 +515 687 3 887659718 +363 325 1 891494012 +332 38 2 888360488 +359 323 3 886453431 +650 63 2 891388294 +181 1117 2 878962585 +554 100 3 876231441 +749 151 5 878846783 +586 1273 4 884065825 +716 443 4 879796381 +92 49 3 875907416 +707 525 3 886286999 +267 56 5 878972493 +478 1 4 889387931 +676 962 4 892686525 +393 135 1 887747108 +718 1048 2 883349363 +741 435 4 891455353 +159 25 5 880557112 +311 1217 3 884365686 +561 956 4 885809336 +407 393 2 876344736 +393 5 3 887746849 +595 880 3 886920819 +374 240 1 880394301 +678 924 2 879544397 +328 230 3 885048101 +148 234 3 877020297 +758 135 5 881974742 +311 393 4 884366066 +630 322 3 885666211 +732 300 4 882589552 +627 76 3 879530173 +588 959 5 890026459 +344 494 4 884901210 +307 178 3 877118976 +476 648 4 883364295 +291 783 2 875087432 +630 96 4 885668277 +731 378 1 886187652 +403 222 5 879786190 +666 427 4 880139382 +642 575 3 886454901 +646 300 3 888528418 +423 329 3 891394952 +532 267 3 875441348 +724 266 1 883758119 +379 161 2 880525502 +595 820 2 886921870 +535 1136 4 879618465 +514 26 3 875463595 +627 11 4 879529702 +104 1028 2 888465818 +160 1142 5 876768609 +637 289 2 882900047 +451 1022 4 879012858 +608 487 4 880406032 +737 47 3 884314970 +752 272 4 891207898 +63 284 3 875747581 +102 219 2 888803149 +559 393 2 891035917 +592 193 5 882955948 +436 182 5 887769150 +435 1061 3 884134754 +151 33 5 879543181 +523 306 5 883699583 +624 1016 3 879793582 +751 305 2 887134730 +6 308 3 883600445 +738 175 4 875349968 +427 304 4 879700850 +198 480 4 884207239 +7 238 5 891351814 +670 15 4 877975200 +698 307 4 886365629 +486 129 4 879874939 +549 118 4 881672479 +721 302 3 877137358 +694 654 4 875727099 +504 245 4 887831274 +69 197 5 882145548 +701 315 5 891446559 +555 121 3 879962551 +535 1045 4 879617663 +634 106 3 877017923 +683 187 5 893286501 +608 660 5 880406800 +617 648 3 883789080 +504 465 3 887909936 +621 391 3 874964657 +435 569 3 884134019 +286 386 3 877534975 +58 405 2 892242047 +458 117 4 886394623 +449 248 4 879958888 +661 48 4 876016726 +49 396 4 888067482 +276 1482 4 874791383 +643 732 3 891447868 +194 737 4 879553003 +472 226 5 875982867 +731 168 1 886185744 +167 513 4 892738385 +660 201 3 891200513 +416 66 5 893213019 +353 270 2 891402358 +588 475 2 890015684 +658 844 3 875145667 +707 269 4 882200810 +5 145 1 875720830 +161 486 1 891171657 +592 844 4 882608021 +712 431 3 874730552 +524 47 2 884635136 +623 181 5 891032291 +524 209 4 884634755 +642 8 5 885603662 +537 495 2 886031678 +537 510 3 886031575 +545 575 3 879900985 +110 184 1 886988631 +405 420 5 885548785 +453 1273 2 877561258 +159 1258 1 884026823 +608 61 5 880404693 +655 475 3 887693376 +92 202 3 875653805 +537 1245 3 886030051 +505 125 3 889334373 +505 385 4 889334477 +632 17 3 879459573 +234 712 2 892336077 +640 85 5 874778065 +296 313 5 884196114 +567 653 5 882425843 +500 204 3 883874265 +561 443 4 885809197 +655 1288 3 887523427 +466 292 4 890284651 +294 1254 3 889242661 +517 105 1 892654653 +125 144 5 879454197 +435 172 5 884132619 +643 195 5 891447063 +682 942 2 888517324 +619 1231 2 885954215 +89 1119 3 879459884 +551 747 3 892783025 +694 98 5 875726886 +28 447 3 881961532 +13 164 3 882396790 +758 298 4 880672727 +554 265 4 876232956 +714 597 3 892777533 +538 28 3 877107491 +59 197 5 888205462 +629 301 3 880115922 +715 58 4 875964131 +429 493 4 882385663 +487 88 4 884024901 +625 134 4 891263665 +140 245 3 879013720 +13 635 1 882396984 +608 300 1 880402327 +95 237 2 879192708 +468 372 2 875301098 +667 313 3 891034404 +511 682 4 890004844 +719 223 5 879360442 +757 161 3 888468909 +599 888 5 880951249 +459 108 1 879563796 +352 86 4 884290505 +94 194 4 885870284 +659 192 4 891384372 +83 356 4 880308755 +642 82 5 885602285 +532 268 4 875441085 +458 58 5 886396140 +431 302 3 877844062 +397 172 5 885350381 +211 64 3 879460213 +37 405 4 880915565 +303 93 5 879467223 +682 3 3 888519113 +381 1 5 892697394 +207 9 4 880911845 +532 898 4 884594575 +738 265 4 892957967 +543 761 2 876105554 +399 307 3 882340264 +104 926 1 888465936 +90 530 3 891385522 +644 1620 4 889077247 +448 301 1 891888099 +463 926 1 890453075 +488 50 4 891293974 +588 658 5 890025751 +495 161 4 888634746 +520 302 3 885170330 +720 304 4 891262697 +437 143 5 880141528 +712 584 4 874730342 +682 802 2 888521047 +698 275 4 886366558 +234 99 5 892333573 +538 82 4 877107558 +757 100 3 888444056 +692 412 4 876954196 +727 949 3 883711616 +533 43 4 879439341 +503 662 3 880383467 +407 258 4 884197027 +128 955 5 879969064 +696 689 1 886404208 +566 230 2 881650123 +64 141 4 889739517 +468 462 4 875288196 +758 517 3 881976377 +244 1119 5 880606993 +705 300 5 883426780 +405 1499 1 885549407 +416 500 5 893212573 +262 90 4 879795270 +587 316 4 892870992 +711 283 4 876185788 +660 483 4 891199804 +346 403 3 874950383 +618 22 4 891308390 +708 328 3 892718964 +264 93 5 886123993 +654 124 4 887863412 +301 145 3 882078040 +664 636 3 876526631 +385 37 4 880013483 +479 688 1 887064434 +181 1102 1 878963381 +606 216 5 880925579 +207 461 3 878104017 +671 327 1 875387273 +506 210 5 885135737 +557 50 4 881095916 +655 1061 2 887428623 +279 845 1 888426577 +592 825 1 882608795 +758 127 5 880672637 +514 169 5 875308734 +462 272 5 886365142 +303 246 5 879544515 +707 165 3 886285939 +536 210 5 882359477 +722 300 3 891279945 +663 287 5 889492720 +586 586 2 884063080 +232 423 4 888549595 +750 301 4 879445911 +749 1089 3 882804586 +562 118 3 879196483 +696 312 4 886404322 +298 196 4 884182891 +550 688 3 883425762 +703 458 3 875242935 +617 444 4 883789590 +716 588 4 879795606 +716 181 4 879793221 +758 258 4 880672230 +666 257 3 880313682 +279 1170 1 891209102 +244 1095 2 880605333 +551 44 4 892777825 +128 1053 3 879968494 +347 24 3 881652657 +611 268 5 891636192 +643 255 4 892502414 +354 520 3 891217811 +747 303 5 888638091 +756 99 3 874829258 +690 523 4 881177430 +92 1 4 875810511 +297 32 4 875239267 +619 879 4 885953743 +51 144 5 883498894 +237 187 3 879376553 +660 542 2 891201887 +201 202 3 884112747 +655 319 3 888685879 +749 73 4 878849586 +618 684 3 891306991 +303 653 4 879466937 +603 294 4 891956330 +72 50 2 880037119 +411 228 3 891035309 +620 423 5 889988168 +521 385 3 885254837 +284 903 4 885329238 +495 431 5 888632546 +608 174 3 880406506 +614 294 4 879464507 +224 54 3 888104313 +694 517 4 875727926 +693 300 2 875481397 +206 1176 1 888180049 +665 357 4 884293979 +323 1012 4 878739594 +705 932 5 883427339 +256 82 5 882164559 +607 222 3 883879613 +648 71 3 884368165 +560 270 4 879975173 +579 381 3 880952360 +293 179 4 888905898 +642 627 3 885606581 +593 423 4 875671505 +619 127 4 885953778 +655 772 3 887426972 +587 270 4 892871171 +158 29 3 880134607 +90 699 4 891385298 +498 631 3 881957905 +655 19 2 887472719 +524 432 1 884636151 +329 333 4 891655322 +308 615 3 887739213 +73 433 4 888626437 +459 879 4 879561630 +201 97 2 884140115 +13 346 4 883670552 +757 7 4 888444826 +234 550 2 892334883 +627 631 3 879529885 +741 94 3 891457483 +217 1034 3 889070266 +342 421 3 875319435 +663 321 5 889491739 +640 342 5 886353780 +592 752 4 888553156 +715 156 4 875964438 +296 1007 4 884196921 +641 484 5 879370299 +479 89 4 879460959 +712 49 3 874956872 +478 975 4 889388229 +592 223 5 882955863 +484 181 5 881254239 +58 210 4 884305042 +741 1029 1 891457506 +676 315 4 892685224 +398 13 3 875652318 +709 265 4 879846489 +653 423 2 880152039 +503 26 2 880383200 +398 399 4 875721702 +642 417 3 886568791 +606 749 4 888333338 +758 272 4 884413293 +733 1129 4 879535338 +293 47 3 888907061 +82 304 3 884713664 +480 511 4 891208599 +592 900 4 887257094 +320 833 1 884748904 +450 500 4 882376188 +566 202 4 881650551 +591 300 3 891030956 +699 234 3 878883172 +741 1090 1 891455880 +642 1140 4 886569732 +405 955 1 885549308 +762 302 5 878718810 +610 313 4 888702841 +489 288 4 891366693 +650 608 4 891369520 +569 281 3 879793466 +271 202 4 885849025 +374 467 4 880395735 +56 89 4 892676314 +478 134 2 889397467 +100 886 3 891375522 +455 241 4 879111808 +157 120 1 886891243 +650 501 3 891385980 +329 286 4 891655291 +493 239 5 884131952 +498 137 3 881954357 +372 56 4 876869445 +543 252 3 889308778 +731 510 1 886186091 +629 87 5 880117635 +642 974 3 886569765 +487 82 5 883446252 +708 847 3 892719246 +450 396 2 882469941 +648 447 5 884883578 +592 853 5 882956201 +455 217 4 879112320 +121 744 3 891388936 +479 751 4 889125759 +758 597 2 881978805 +291 204 4 874871736 +751 316 4 888871453 +479 651 5 889125921 +466 1176 5 890284651 +355 328 4 879486422 +744 127 5 881171481 +92 55 3 875654245 +65 87 5 879217689 +312 177 3 891698832 +626 264 1 878771476 +345 237 4 884991077 +593 15 4 875659636 +405 1195 1 885549590 +314 790 4 877889698 +738 22 3 875349713 +699 271 3 880695324 +473 14 4 878157242 +712 796 4 874957268 +178 168 4 882826347 +622 385 5 882592421 +385 727 1 879443102 +95 196 4 879198354 +463 1017 2 877385731 +303 132 5 879466966 +394 73 3 881058929 +13 199 5 882140001 +472 1002 4 883904649 +533 300 4 888844557 +374 468 4 880396359 +417 465 4 879648079 +721 258 3 877135269 +280 76 2 891700699 +524 472 3 884323500 +754 676 3 879451517 +711 1221 4 879994777 +400 332 2 885676526 +664 708 4 876525077 +474 207 4 887925751 +450 202 4 882397223 +249 1069 5 879572890 +537 50 4 886030805 +749 554 3 878849612 +398 132 5 875716829 +103 487 4 880421001 +13 67 1 882141686 +222 145 2 878181804 +627 39 4 879530408 +182 178 5 876435434 +731 192 5 886182457 +376 154 4 879434558 +708 538 2 892718762 +416 99 4 876700137 +650 673 3 891369924 +586 228 3 884061459 +704 180 4 891397491 +121 1194 4 891388210 +305 287 3 886324097 +758 235 5 881978274 +65 655 4 879216769 +398 403 4 875657734 +534 3 4 877808031 +435 81 3 884131661 +268 655 4 875309486 +437 87 3 880140891 +654 172 4 887864532 +735 9 4 876698755 +504 238 3 887912416 +747 650 4 888639014 +339 7 4 891032952 +736 255 1 878709025 +683 308 3 893284420 +514 173 5 875462826 +476 692 3 883364143 +536 1140 1 882364876 +478 1221 2 889398645 +253 659 5 891628358 +753 673 1 891402379 +116 539 2 886309573 +24 71 5 875323833 +539 236 3 879788345 +518 412 1 876824266 +296 50 5 884196469 +286 17 4 877531537 +705 275 5 883427048 +506 432 4 874873112 +757 569 3 888467400 +524 837 2 884637467 +676 172 5 892686490 +618 497 2 891307019 +682 410 3 888521740 +553 1124 4 879948695 +167 238 4 892738341 +468 58 4 875288771 +248 89 5 884535046 +260 333 4 890618198 +393 73 4 887746206 +655 310 3 887473937 +708 934 4 892719172 +22 2 2 878887925 +303 282 3 879467895 +693 523 4 875482448 +561 58 3 885809654 +409 498 4 881108715 +537 236 3 886029726 +524 1124 3 884637528 +548 100 5 891044304 +588 404 3 890026656 +763 28 3 878915765 +189 990 3 893264849 +442 294 2 883388120 +599 948 4 880951281 +311 487 4 884365519 +674 288 3 887762296 +498 675 4 881958414 +617 475 1 883789294 +618 462 2 891307540 +409 275 4 881107351 +313 636 4 891028241 +279 797 4 875744512 +622 215 3 882592523 +711 345 4 884485683 +529 682 4 882535256 +495 385 3 888633042 +495 505 5 888633473 +540 250 4 882157172 +536 419 3 882360993 +425 188 3 878738386 +51 172 5 883498936 +346 216 3 874949011 +666 238 4 880139615 +362 1025 2 885019746 +566 511 4 881649445 +343 582 3 876404836 +12 98 5 879959068 +666 742 3 880313723 +464 321 4 878354680 +342 294 3 874984067 +659 648 3 891332006 +393 620 4 887745199 +657 346 4 884238162 +175 11 5 877107339 +290 419 4 880474235 +489 678 4 891366693 +758 587 4 881978635 +690 79 4 881179809 +79 902 3 891271086 +734 591 4 891022977 +94 215 4 891722174 +666 339 4 880138999 +553 8 3 879949290 +655 326 2 888474742 +598 308 4 886710612 +3 326 2 889237224 +648 430 5 884881563 +455 292 3 879108751 +524 124 5 884322113 +764 86 3 876246358 +537 294 1 886029083 +674 117 5 887762861 +276 1074 3 877934446 +552 748 4 879220651 +390 1296 2 879693770 +638 636 3 876695108 +767 1068 4 891462829 +393 42 4 889554976 +545 82 4 879899266 +393 1337 3 887745380 +383 1005 3 891193072 +681 259 2 885409882 +738 127 4 892957753 +524 94 2 884637245 +276 582 3 874787407 +429 435 4 882385636 +500 448 3 883873745 +100 294 4 891375313 +551 627 3 892783906 +639 427 4 891239064 +148 135 5 877016514 +655 612 3 888474456 +676 245 4 892685592 +414 325 3 884999193 +567 607 4 882426762 +454 162 3 888267315 +548 282 4 891415384 +666 181 2 880139563 +737 175 5 884315246 +763 588 4 878918213 +62 13 4 879372634 +536 1115 5 882318369 +92 245 4 877966971 +500 964 4 883874557 +469 490 5 879524485 +365 326 2 891303614 +537 628 2 886030177 +705 174 5 883427640 +721 50 5 877138584 +47 289 4 879439040 +561 946 3 885810813 +587 353 2 892871706 +648 1003 4 884882375 +523 582 4 883701154 +620 8 3 889988121 +655 320 5 888474456 +537 975 3 886030281 +1 106 4 875241390 +712 568 5 874730491 +648 410 2 884882375 +741 54 3 891455610 +536 190 5 882359431 +498 293 4 881955189 +654 174 5 887864727 +504 731 3 887840014 +153 172 1 881371140 +8 187 4 879362123 +743 15 3 881277855 +60 1125 4 883326497 +538 12 4 877107633 +313 568 4 891015114 +618 1066 3 891309756 +246 185 5 884921428 +757 651 4 888445279 +532 824 4 888634802 +634 742 4 875729794 +374 846 2 883627509 +543 180 4 874866208 +717 980 4 884642268 +332 833 5 887938556 +682 809 2 888522755 +320 195 5 884749255 +541 585 2 883866114 +527 91 2 879455873 +608 172 1 880405927 +221 762 4 875244598 +484 222 5 883402900 +668 97 2 881702632 +622 31 3 882669594 +262 172 2 879791875 +376 288 3 879454598 +568 772 1 877906995 +561 608 3 885809119 +715 426 5 875964104 +457 14 4 882393457 +518 476 4 876823324 +293 510 3 888905716 +754 937 4 879451061 +592 8 5 882955582 +13 448 1 882396869 +524 612 3 884635204 +128 66 3 879969329 +527 528 3 879456104 +727 1657 3 883711991 +457 458 3 882393765 +732 873 5 882589845 +503 319 3 879438024 +767 486 4 891462560 +181 628 3 878962392 +480 1388 4 891207665 +16 302 5 877716993 +620 91 2 889988069 +234 836 4 892317967 +628 361 5 880776981 +645 209 5 892053483 +655 1436 2 888474679 +500 509 4 883874216 +458 286 4 886396637 +497 70 4 879362798 +551 195 5 892777052 +483 290 3 878953199 +727 1047 2 883709750 +395 89 5 883764264 +397 223 4 885350132 +728 871 2 879443321 +769 269 5 885422510 +648 225 1 882212527 +87 709 3 879876812 +21 437 1 874951858 +634 121 5 877018125 +566 215 3 881650739 +188 591 5 875072674 +425 200 4 878738854 +417 640 5 879648742 +553 238 5 879948655 +684 402 3 878759310 +230 504 3 880485136 +577 566 4 880474216 +720 995 4 891262762 +628 173 3 880777167 +448 327 2 891888367 +472 672 4 875982771 +699 1129 3 878882319 +320 946 5 884751462 +450 530 3 887661843 +416 807 4 886319649 +237 498 4 879376698 +665 1225 2 884294286 +528 56 3 886101428 +311 494 4 884364593 +486 1197 4 879874582 +94 1110 4 891722801 +275 169 3 875154535 +547 340 4 891282757 +606 91 5 880926610 +23 655 3 874787330 +244 609 3 880607154 +551 572 1 892784672 +691 98 4 875543281 +421 129 5 892241459 +271 511 5 885848736 +650 755 3 891386187 +455 98 4 879110436 +577 28 5 880472077 +315 520 4 879799526 +639 660 2 891239271 +75 831 3 884051056 +622 64 5 882669391 +437 514 4 880140369 +514 7 5 875309415 +744 603 5 881170528 +323 762 4 878739488 +233 521 5 877663071 +536 403 3 882360496 +717 301 4 884641717 +621 298 4 883801703 +561 157 4 885808053 +750 331 4 879446114 +17 126 4 885272724 +354 487 3 891217298 +209 16 4 883417810 +230 622 3 880485380 +582 477 4 882961540 +91 735 4 891439503 +57 258 5 883698581 +704 429 4 891397366 +671 986 2 884035173 +429 288 3 882387685 +324 292 3 880575045 +584 109 4 885778204 +524 895 4 884320358 +561 95 2 885809605 +145 1046 4 888398702 +59 1111 5 888204758 +101 820 3 877136954 +648 662 3 884368485 +293 371 2 888906906 +407 8 5 875042425 +331 1199 1 877196634 +495 265 5 888633316 +173 995 5 877556988 +537 385 2 886032098 +431 690 3 877844183 +13 82 2 882397503 +587 310 3 892870992 +82 133 4 878769410 +454 169 4 888266955 +389 427 5 879991196 +709 200 4 879848053 +655 979 3 888893279 +276 1140 2 874791894 +610 153 5 888703766 +212 86 4 879303830 +715 252 1 875962049 +416 1053 4 886319434 +344 269 4 884814359 +474 462 4 887925497 +744 237 4 881171907 +548 748 3 891043910 +154 515 4 879138657 +88 898 4 891037859 +618 485 3 891307646 +727 153 4 883710856 +487 772 3 883530885 +416 849 3 886318676 +605 276 4 879365773 +551 315 5 892775389 +758 810 3 881980195 +606 200 5 880923862 +188 1041 3 875072328 +1 167 2 878542383 +496 485 3 876065477 +472 540 3 875982239 +450 427 5 882371415 +344 95 4 884901180 +119 1016 5 874775262 +662 93 5 880571006 +715 732 3 875964179 +150 276 5 878746982 +94 435 4 885870418 +640 790 4 874777260 +463 319 1 889936589 +462 323 2 886365837 +731 183 1 886185744 +756 550 2 874829152 +719 660 5 879360493 +650 510 3 891371090 +417 216 3 879647298 +702 313 5 885767336 +659 23 5 891332006 +501 845 3 883348036 +318 732 5 884496267 +301 1013 3 882075286 +699 151 3 878882002 +545 96 5 879899233 +543 479 4 874866208 +709 187 5 879847945 +749 23 3 878849176 +682 127 5 888517011 +701 333 3 891446788 +490 302 4 875428765 +26 840 2 891386049 +642 1063 3 885603740 +339 549 4 891034040 +661 514 3 876013398 +452 88 2 875559842 +457 239 5 882397267 +618 125 3 891308704 +640 14 4 886474436 +597 283 5 875340010 +664 649 4 876525044 +266 245 1 892257446 +680 121 3 876816268 +16 158 4 877727280 +620 15 5 889987210 +227 127 4 879035387 +693 428 3 875484763 +280 1099 5 891701114 +521 184 4 884478358 +349 126 2 879465598 +704 50 5 891397262 +605 831 1 879429729 +629 172 5 880117333 +504 196 4 887838935 +464 302 5 878354626 +18 517 2 880129388 +554 125 3 876550913 +755 319 3 882569801 +279 1028 4 875296104 +408 1296 4 889679901 +498 435 3 881956363 +653 313 4 890180685 +267 411 3 878974325 +627 58 5 879529958 +758 431 3 881977309 +405 367 1 885547222 +224 92 1 888103812 +385 520 3 879441599 +252 149 5 891456876 +753 79 4 891401665 +731 357 5 886187538 +771 762 2 880659970 +644 328 4 889076222 +83 300 3 889050543 +450 481 5 882373231 +711 1014 4 886030873 +386 825 4 877655146 +318 540 4 884498141 +435 250 4 884134290 +119 252 3 874780832 +643 177 4 891448002 +294 1089 2 877820132 +653 197 3 878854332 +457 450 4 882392853 +514 430 4 875462901 +49 1036 2 888069304 +659 196 4 891384888 +659 153 4 891045891 +650 515 4 891369678 +312 506 4 891699121 +200 95 5 884128979 +738 210 5 892844112 +659 794 3 891386910 +477 369 4 875940836 +527 462 3 879455707 +276 890 3 880913460 +6 153 4 883603013 +669 174 3 891260369 +454 15 2 881960029 +101 1009 2 877136598 +450 936 5 889569270 +145 892 2 885557505 +618 1185 2 891309471 +416 322 3 876696788 +373 705 4 877099934 +768 173 5 883835053 +715 12 4 875963657 +298 284 4 884126240 +381 276 3 892696587 +619 281 4 885954133 +175 50 5 877107138 +758 892 2 883190434 +399 72 4 882350323 +682 808 4 888517762 +230 405 4 880485634 +566 288 3 881650627 +328 956 4 885046912 +503 452 1 879454950 +666 288 3 880138999 +716 82 5 879796138 +695 319 5 888806056 +196 411 4 881252090 +89 709 3 879459980 +482 748 4 887643365 +669 427 4 892550137 +717 290 3 884642738 +119 137 5 886176486 +222 393 4 878184028 +416 792 4 876699526 +601 840 2 876347599 +1 115 5 878541637 +773 169 5 888539232 +627 510 4 879529730 +236 427 5 890118153 +108 931 2 879880190 +606 183 5 880926162 +724 690 1 883757468 +554 151 4 876550100 +577 118 3 880471658 +627 582 3 879529916 +189 661 4 893265569 +13 881 2 881514876 +624 181 4 879792378 +64 228 4 889739438 +129 906 5 883245310 +749 879 4 878846449 +655 904 5 887473639 +758 7 5 881975243 +734 198 1 891022734 +551 95 5 892783791 +762 116 1 878719186 +42 523 5 881107375 +286 741 4 876521887 +436 1058 4 887770547 +514 48 4 875318114 +621 584 5 874965094 +525 762 4 881085917 +654 169 5 887864275 +184 396 3 889910326 +524 484 4 884634646 +749 144 5 878847835 +508 132 5 883767279 +487 1440 4 884045494 +387 27 1 886483252 +346 3 3 875265392 +308 134 5 887737686 +714 477 2 892777408 +234 770 4 892335920 +578 1264 3 890939815 +624 591 3 879792557 +655 124 3 887426087 +763 88 4 878918486 +425 2 2 878738757 +495 523 5 888632155 +757 226 3 888467038 +666 177 3 880567612 +716 491 4 879794934 +90 1005 2 891383912 +621 123 4 880738080 +340 584 3 884991369 +686 99 5 879546553 +506 294 4 877861414 +585 584 3 891286256 +523 477 3 883703495 +477 731 4 875941275 +288 632 4 886373591 +467 1 4 879532459 +545 379 4 879900010 +666 506 5 880139252 +561 790 1 885810538 +608 427 4 880403765 +135 327 4 879857575 +291 245 2 874805577 +455 96 4 879111616 +497 716 4 878759745 +453 254 2 877562293 +619 188 4 885954158 +409 733 4 881109264 +329 199 4 891656347 +158 283 5 880132421 +665 315 4 884697720 +487 566 4 883529540 +497 559 4 879362359 +339 568 3 891035061 +374 11 4 880395202 +708 864 3 892719172 +413 303 5 879968793 +270 251 5 876954752 +656 346 3 892318488 +59 622 4 888206015 +648 929 4 882211066 +747 173 3 888640862 +664 77 3 876526631 +234 357 4 892333573 +551 227 5 892783488 +435 219 5 884133691 +577 739 3 880474871 +734 174 4 891025247 +738 191 4 875350086 +466 327 3 890282956 +765 285 5 880346694 +452 66 4 885816884 +234 607 4 892079140 +134 302 2 891732150 +660 496 3 891199082 +643 423 4 891447370 +655 50 4 887425458 +660 825 2 891198549 +519 264 2 883248251 +7 68 4 891351547 +56 385 4 892676429 +543 742 3 874861699 +440 300 3 891546785 +426 178 4 879444080 +13 223 5 882139901 +667 527 4 891035121 +360 661 5 880356131 +450 73 3 887661438 +749 403 4 878849903 +551 1047 4 892785264 +541 527 3 883864638 +547 345 5 891282555 +405 564 1 885547606 +716 1 5 879793192 +233 504 5 877663128 +318 14 4 884471030 +211 205 5 879459952 +712 110 5 874956956 +727 155 3 883712068 +490 117 1 875427948 +558 20 5 879436396 +648 520 4 884367538 +561 515 3 885807215 +363 946 4 891498510 +275 434 3 880315396 +176 508 3 886047879 +664 484 5 878090705 +302 294 1 879436911 +249 31 4 879572688 +328 343 3 885044452 +682 15 4 888523581 +772 312 4 889028941 +495 101 5 888632943 +492 137 4 879969670 +378 220 2 880044944 +124 195 4 890399864 +286 340 4 879780905 +715 239 4 875963867 +582 455 1 882961481 +710 265 4 883705484 +70 289 3 884066399 +113 245 3 875325377 +749 11 5 878848189 +84 286 5 883449271 +416 619 4 886315423 +766 451 2 891310824 +669 310 4 892549126 +489 304 3 891362812 +640 210 5 876067710 +554 218 4 876550654 +756 117 4 874828826 +476 655 4 883365019 +756 178 5 874831383 +102 541 2 888801673 +704 178 5 891397535 +531 751 4 887048836 +487 31 5 883446685 +200 323 3 884125973 +758 177 5 881974823 +707 903 3 886285216 +665 185 4 884294200 +706 628 4 880997412 +720 906 4 891262697 +340 274 4 884991618 +588 645 5 890024488 +576 15 4 886985104 +435 7 4 884131597 +606 298 4 880920725 +525 289 3 881085256 +731 487 4 886184682 +198 27 2 884208595 +600 172 4 888451665 +63 287 3 875747829 +471 932 5 889828027 +621 385 5 874963797 +748 48 4 879455083 +506 208 4 874873423 +586 467 4 884066230 +586 790 3 884067151 +573 685 3 885843779 +393 51 4 887746456 +244 710 3 880607034 +378 393 3 880057018 +30 321 4 875988547 +669 118 2 892549838 +98 435 5 880498967 +293 686 3 888906869 +279 977 4 875297281 +268 652 4 875309232 +758 1142 5 880672766 +452 136 4 875266060 +699 1143 3 879146941 +429 642 4 882386600 +600 515 5 888451492 +725 264 1 876103811 +464 16 4 878355211 +764 223 3 876244625 +320 176 4 884749255 +290 31 4 880475032 +715 250 2 875962806 +561 607 5 885807173 +295 794 4 879518978 +385 529 4 879445949 +532 570 4 888629804 +655 547 4 887523176 +450 1028 4 882469250 +313 231 2 891028323 +435 561 2 884133064 +698 656 1 886367133 +659 498 3 891383733 +606 69 4 880926339 +197 554 4 891410170 +730 50 4 880310285 +379 395 2 880741868 +672 756 2 879789244 +26 250 3 891350826 +165 169 5 879525832 +301 71 4 882077007 +308 17 4 887739056 +49 239 2 888068912 +255 335 4 883215630 +352 176 5 884289693 +405 402 3 885546445 +524 583 4 884635326 +747 180 5 888639735 +536 707 5 882359678 +619 273 4 885953778 +62 1135 2 879376159 +586 153 2 884058956 +712 776 4 874730155 +610 705 3 888703710 +369 346 4 889427890 +654 109 3 887863635 +59 96 5 888205659 +72 972 4 880036911 +636 258 5 891448155 +699 413 3 884152706 +638 121 4 876694995 +145 62 2 885557699 +401 257 2 891032563 +187 134 3 879465079 +608 310 1 880402450 +733 1142 4 879535694 +179 1127 1 892151270 +500 59 4 883873528 +622 949 3 882672941 +154 258 3 879138235 +146 272 5 891457538 +435 568 2 884131868 +707 12 3 886286004 +514 172 4 875462726 +717 117 4 884642339 +176 319 3 886046979 +744 508 5 881171907 +661 196 3 888300680 +721 358 1 877137214 +6 89 4 883600842 +676 482 4 892686702 +399 470 4 882344832 +487 2 3 883531122 +699 285 4 879148050 +716 293 4 879793258 +216 22 5 880234346 +385 12 3 879441425 +767 478 4 891463095 +664 152 3 878091463 +279 778 4 891209332 +733 288 2 879535694 +137 411 5 881433490 +227 13 5 879035205 +758 248 4 880672747 +665 538 4 884290143 +774 1091 1 888558041 +460 1142 4 882911203 +462 237 5 886365387 +275 542 3 880313680 +750 270 4 879445877 +389 649 4 880165344 +457 148 4 882395360 +699 991 3 879382830 +586 676 3 884066112 +64 127 5 879366214 +507 313 5 889964121 +541 102 4 883874778 +164 307 5 889401284 +771 690 4 880659235 +536 740 4 882318630 +724 909 1 883758208 +561 746 3 885809025 +640 302 5 888025971 +31 271 4 881547854 +749 622 3 878850675 +394 797 3 881058330 +397 751 3 885349348 +671 925 3 883949781 +707 715 3 886286954 +452 197 5 885816768 +541 500 4 883874682 +774 1419 1 888557409 +683 358 2 893283948 +521 393 3 884478667 +373 259 5 877098041 +751 250 3 889132397 +642 1036 4 885606234 +711 763 1 876185767 +713 1127 3 888882225 +760 65 2 875667131 +763 200 4 878915015 +722 122 3 891281655 +751 472 2 889299043 +572 121 2 879449610 +643 163 4 891448839 +693 196 2 875482548 +488 414 2 891293863 +325 1203 5 891478159 +463 310 3 889936490 +540 258 4 882156584 +429 466 2 882384847 +660 265 2 891199241 +482 50 4 887644063 +145 31 5 875271896 +60 1060 4 883326995 +454 134 3 881959991 +504 219 3 887911314 +761 278 4 876190370 +456 23 4 881373019 +406 134 5 879445430 +556 481 5 882136441 +450 112 2 882468307 +38 400 1 892434036 +711 778 4 884485635 +721 328 5 877136303 +757 771 2 888467160 +655 1466 3 890497592 +746 128 3 885075211 +405 566 1 885547953 +279 671 2 875296238 +655 694 3 887428772 +765 237 3 880346797 +717 235 4 884642762 +763 1 4 878915559 +638 186 5 876695859 +411 210 5 892845605 +518 9 3 876822811 +687 749 4 884651746 +276 218 4 874792663 +533 823 4 879192901 +698 255 3 886366213 +705 554 2 883428201 +498 79 3 881959104 +59 369 2 888203959 +466 405 3 890284903 +693 423 3 875482136 +640 1244 3 886474849 +514 1160 4 886189748 +718 284 4 883349191 +682 41 3 888522073 +488 207 3 891294942 +548 237 4 891415540 +660 139 2 891202060 +574 900 4 891278860 +21 50 3 874951131 +751 418 5 889135211 +758 269 4 880672230 +747 531 4 888732609 +299 55 2 877881061 +693 673 4 875483050 +712 732 5 874730370 +694 641 4 875726618 +664 603 5 876526518 +761 289 2 876189871 +537 59 3 886031178 +586 76 5 884059196 +453 22 5 877553870 +18 702 3 880131407 +755 294 3 882569574 +719 392 4 879360846 +321 531 4 879440294 +79 676 3 891271957 +535 60 5 879618613 +611 313 3 891636125 +682 1440 2 888517538 +591 451 3 891040366 +684 181 4 875810999 +633 117 3 875326491 +345 191 5 884902317 +87 496 5 879877709 +707 712 3 886288624 +40 242 4 889041330 +648 230 5 884796822 +777 286 2 875979137 +537 1070 3 886031678 +655 288 3 887472814 +757 678 2 888443531 +495 188 4 888632250 +747 279 4 888732571 +738 95 4 875350122 +508 70 4 883776748 +567 511 2 882425701 +219 664 5 889403761 +26 249 2 891377609 +212 127 2 879303571 +527 855 2 879455814 +10 602 5 877889057 +435 983 2 884134830 +429 50 5 882384553 +715 399 2 875963418 +305 191 3 886322966 +259 181 4 874809057 +276 28 4 874787441 +561 644 3 885807743 +601 87 4 876349503 +402 19 4 876267096 +655 1639 4 887650483 +630 272 5 885756030 +398 589 3 875657734 +116 303 3 890633075 +666 496 4 880139149 +405 1229 1 885546835 +311 39 4 884364999 +680 1089 2 877075214 +271 504 3 885849025 +440 736 5 891578036 +560 12 5 879975661 +573 283 4 885843817 +474 288 3 887914615 +712 420 3 874957140 +654 431 4 887864414 +713 1176 3 888882224 +269 59 4 891447141 +653 578 1 880153009 +622 433 4 882669886 +542 864 3 886533112 +745 519 5 880123751 +660 386 2 891200904 +327 131 4 887818783 +389 499 4 880087873 +660 56 1 891265453 +313 157 3 891017372 +391 482 4 877399380 +666 430 4 880139614 +503 14 3 879438161 +332 222 4 887916529 +551 735 5 892783110 +13 160 4 882140070 +532 946 5 888635366 +757 2 3 888466490 +445 208 2 890987712 +682 304 1 888523810 +452 22 5 885544110 +554 294 3 876231229 +759 1016 5 881476922 +514 10 4 875462867 +730 748 4 880310082 +473 303 4 878156932 +655 831 2 887564549 +739 79 4 886958938 +215 692 3 891436277 +666 11 4 880314453 +518 10 3 876822744 +747 661 5 888639642 +222 51 3 881059816 +144 1010 3 888104834 +696 883 4 886404208 +642 624 3 885606608 +85 923 4 879455403 +605 121 1 879429706 +647 427 4 876534275 +551 68 2 892783972 +690 88 4 881177689 +543 1555 3 874863155 +456 46 3 881374613 +764 245 4 876244181 +650 232 3 891381634 +435 640 4 884132873 +776 422 2 892210688 +405 218 5 885548330 +389 94 2 880089115 +167 673 4 892738341 +605 118 3 879429729 +271 81 3 885849113 +435 424 1 884134536 +666 168 4 880314272 +620 416 4 889988196 +524 511 5 884634707 +543 1099 4 874863878 +731 393 5 886183978 +606 477 4 878143247 +465 1 4 883530054 +536 180 4 882359431 +303 1230 1 879485447 +704 486 4 891397764 +618 746 2 891308946 +666 924 2 880313582 +480 64 3 891208293 +374 156 2 880395896 +771 203 1 880659482 +669 347 3 891182948 +347 928 3 881653176 +545 541 4 879899548 +658 168 3 875148108 +537 638 3 886030682 +381 525 5 892696982 +625 588 4 891263057 +104 825 1 888466028 +551 182 5 892776824 +724 299 1 883758119 +641 434 4 879370259 +6 7 2 883599102 +437 412 3 880142147 +642 403 4 886454812 +551 186 5 892783142 +503 286 3 879438191 +602 148 4 888638517 +642 485 5 885602612 +145 859 3 882182763 +609 294 2 886895346 +622 67 1 882671463 +777 168 5 875980492 +709 164 3 879848120 +647 742 4 876534275 +554 21 1 876232212 +629 191 3 880116887 +399 1170 3 882510250 +405 1065 1 885546069 +545 151 4 880348074 +728 25 4 879443155 +469 520 4 879523947 +760 183 2 875667366 +429 190 5 882387773 +661 506 3 886841865 +168 252 1 884288304 +653 177 3 880150702 +80 237 4 887401732 +575 98 4 878146853 +554 132 4 876550453 +675 1255 1 889490151 +111 305 2 891680243 +92 432 3 876175031 +576 323 3 886960604 +749 121 3 878847645 +533 109 2 879192986 +555 748 4 879962096 +450 503 4 882371311 +455 1160 4 879108892 +22 161 4 878887925 +600 399 4 888452491 +94 553 3 891722511 +733 847 3 879535471 +758 288 4 882056007 +627 196 5 879530172 +102 13 3 892991118 +756 404 3 874830908 +780 70 2 891363969 +587 937 4 892871031 +717 291 4 884642479 +409 266 1 881105677 +773 72 3 888539531 +532 402 5 893118712 +416 401 2 886318651 +676 682 1 892685716 +757 260 3 888443511 +766 487 3 891309090 +712 4 4 874730179 +444 748 1 890247172 +694 448 3 875729489 +70 507 4 884066886 +538 79 4 877107050 +455 148 3 879110346 +572 13 4 879449763 +716 507 5 879796072 +716 1047 3 879794200 +606 248 5 887058736 +745 177 3 880123572 +560 847 4 879976449 +332 313 5 887916125 +699 109 3 879147109 +429 7 2 882385569 +133 750 4 890588720 +222 1440 3 878184697 +1 11 2 875072262 +727 343 3 883708149 +646 313 5 888528457 +361 727 3 879440740 +492 134 3 879969644 +299 60 5 878192680 +437 705 4 880141335 +470 471 5 879178593 +704 1296 4 891397015 +145 728 2 875272988 +774 195 3 888557236 +90 57 5 891385389 +510 313 5 887667439 +250 191 5 878091869 +571 964 4 883355063 +650 99 4 891372365 +699 277 3 878882319 +535 87 5 879618965 +719 742 4 879358893 +709 92 4 879848397 +658 1079 2 875145572 +604 56 2 883668097 +175 186 4 877107790 +391 603 5 877398991 +716 47 3 879795606 +276 943 4 883822485 +363 283 2 891495987 +751 487 5 889134705 +521 763 4 884476152 +437 219 3 880143663 +542 775 2 886533253 +340 66 5 884990798 +450 716 4 882469166 +586 427 3 884066016 +504 506 4 887910552 +761 147 4 876190370 +286 372 4 877532683 +709 229 2 879848645 +554 111 4 876550526 +693 572 2 875484148 +727 541 4 883712751 +664 52 5 876525736 +660 211 4 891199104 +334 169 4 891546348 +468 377 2 875288503 +726 819 3 889832688 +648 323 5 882212526 +429 603 4 882384847 +652 301 1 882566948 +592 261 1 882607744 +537 10 4 886030109 +728 322 4 879442761 +721 1392 3 877137598 +7 510 5 891352134 +554 216 3 876369162 +580 252 5 884125829 +1 245 2 875071713 +7 594 3 891354114 +677 307 5 885191227 +472 1035 4 875981759 +738 226 3 875351299 +109 732 3 880572588 +379 372 4 880961807 +406 727 3 882480749 +184 1008 4 889907896 +330 559 3 876547500 +542 15 2 886533483 +592 243 1 882607780 +537 739 1 886032154 +233 216 5 877665357 +357 411 3 878952041 +615 319 4 879447585 +669 114 5 892550196 +629 333 4 880116722 +766 1444 2 891310508 +655 216 4 887428086 +653 202 3 880151794 +645 640 4 892055285 +664 770 4 876526659 +347 15 2 881652535 +606 427 4 880924106 +664 425 3 876524937 +744 963 5 881170576 +68 1089 1 876974484 +605 288 5 879365158 +94 736 5 891721077 +7 640 3 891353614 +336 546 3 877760310 +621 122 2 880738838 +561 131 4 885808929 +389 420 3 880088229 +130 932 3 876251389 +761 294 3 876189664 +42 227 4 881109060 +72 233 4 880037242 +158 161 2 880134477 +128 274 4 879969084 +207 367 3 875508873 +295 385 4 879518864 +151 487 5 879524669 +314 401 3 877890769 +437 435 3 881001945 +660 663 2 891199833 +452 202 3 885547846 +450 82 3 887834953 +233 187 4 876021170 +293 527 4 888906598 +727 890 1 883708478 +279 170 3 875312643 +30 313 5 885941156 +116 289 4 876452094 +201 200 5 884112537 +81 284 3 876533894 +280 742 4 891701249 +642 120 3 886206256 +666 331 4 880138999 +505 154 1 889334555 +640 79 5 874778515 +497 164 4 879361872 +501 369 4 883348703 +537 123 2 886030109 +744 428 4 881170528 +645 188 4 892054906 +424 681 3 880859115 +561 91 4 885807455 +13 439 1 882397040 +110 808 2 886988250 +773 27 1 888540218 +7 387 3 892133670 +180 372 5 877127237 +407 235 4 875044531 +71 177 2 885016961 +294 323 3 877818729 +527 657 4 879455999 +629 81 3 880117689 +141 15 5 884584981 +714 871 3 892777903 +30 257 4 885941257 +650 444 2 891388341 +269 402 2 891448697 +765 15 2 880346491 +192 515 4 881367889 +474 945 4 887923923 +95 133 3 888954341 +774 739 2 888558187 +232 165 4 888550036 +399 340 2 882340517 +60 708 4 883326784 +152 278 4 880149166 +279 288 3 875249102 +761 924 4 876190723 +585 340 2 891281651 +387 474 5 886480163 +249 156 5 879572402 +655 474 3 888813306 +708 358 2 892719007 +711 1518 3 879993997 +614 458 4 879464287 +586 51 4 884066336 +378 762 3 880044879 +717 222 4 884642215 +613 1 4 891227410 +587 286 4 892870992 +779 284 3 875994401 +763 960 4 878915958 +655 24 3 887473831 +684 70 4 878761788 +409 1558 5 881107281 +495 155 3 888635455 +665 475 3 884290349 +474 478 4 887926804 +377 272 5 891295989 +319 346 3 889816026 +579 66 4 880952516 +752 748 4 891208392 +16 423 5 877721142 +460 847 3 882912205 +174 286 5 890168158 +766 53 4 891310281 +712 622 4 874730293 +220 269 5 881197597 +387 580 5 886483565 +603 449 4 891955972 +592 301 1 882607573 +727 826 2 883713738 +694 82 5 875728345 +406 96 5 879446529 +125 209 4 879455241 +360 187 4 880355527 +649 15 4 891440373 +407 72 4 876344772 +665 282 4 884291094 +677 126 1 889399265 +758 224 4 881975922 +472 122 3 875979153 +327 129 4 887744384 +276 202 4 874791871 +752 300 3 891208126 +676 50 5 892686083 +588 1 4 890015684 +301 1052 1 882075386 +587 878 2 892871641 +537 971 4 886031375 +576 137 3 886985695 +588 393 4 890026939 +737 180 4 884314644 +654 71 3 887864610 +405 816 1 885548435 +774 920 2 888559297 +764 118 3 876243046 +562 231 1 879196446 +37 172 4 880930072 +766 229 3 891310210 +661 117 4 886841250 +760 181 3 875666268 +115 229 3 881171693 +6 192 4 883600914 +399 132 3 882343327 +453 959 4 877561676 +428 268 4 885943818 +756 398 3 874831050 +776 769 3 892920446 +456 419 4 881374124 +303 813 4 879467985 +715 193 5 875965127 +223 309 4 891548750 +707 238 4 886286764 +764 140 3 876245940 +172 124 4 875537151 +560 496 3 879975752 +406 289 3 879445250 +711 230 3 879995053 +303 1135 2 879485589 +734 662 3 891022704 +682 556 2 888517840 +477 90 4 875941275 +303 670 2 879544062 +187 209 4 879465370 +655 1650 4 892871225 +497 96 4 879310705 +450 126 5 882396051 +219 223 5 892039530 +580 100 3 884124872 +665 833 3 884291210 +676 1 5 892686188 +328 153 2 886037257 +385 347 3 885844578 +470 235 3 879178486 +747 132 4 888732640 +201 515 5 884111546 +524 482 5 884634938 +59 510 4 888204502 +619 302 4 885953600 +533 596 2 880402996 +224 157 4 888103971 +643 1 5 891445287 +454 678 2 881958782 +326 515 5 879874897 +574 319 5 891279236 +327 31 2 887820531 +474 525 4 887925837 +372 5 4 876869445 +7 502 5 891352261 +722 7 4 891280842 +524 478 3 884637376 +95 405 3 879194159 +711 1285 3 879995238 +536 405 2 882318246 +711 588 4 879993173 +618 729 3 891308945 +745 285 1 880123905 +450 373 3 887834953 +665 191 3 884293475 +639 778 5 891239613 +727 809 4 883713082 +774 511 3 888556483 +615 523 5 879448735 +234 1170 1 892336077 +731 216 5 886184682 +778 94 2 891233603 +110 333 4 886987288 +763 367 3 878918871 +472 239 5 875982398 +627 318 5 879529701 +757 28 3 888467794 +406 368 2 880132115 +92 984 2 888469687 +671 591 3 883546333 +564 289 4 888718546 +343 26 3 876404689 +345 566 3 884992194 +624 123 3 879793223 +59 705 4 888205087 +49 182 3 888069416 +463 20 5 877385590 +707 492 2 886286818 +393 281 4 887745343 +299 820 3 889501620 +758 108 5 881978148 +679 64 4 884487052 +719 9 4 883354106 +416 252 4 876698115 +663 316 4 889491974 +435 125 3 884132483 +655 895 3 887472767 +58 169 4 884304936 +601 928 1 876348140 +417 290 4 879646661 +234 478 3 892079538 +272 204 4 879454939 +267 498 5 878971902 +559 55 4 891035111 +712 177 2 874730155 +92 743 2 890251826 +573 513 4 885844395 +385 318 2 879441572 +68 596 2 876974023 +761 1197 3 876190025 +73 187 5 888625934 +99 290 4 886518628 +382 134 3 875947149 +624 1120 4 879793269 +562 1 2 879194894 +409 945 3 881108971 +716 357 5 879795762 +655 289 3 887425070 +506 435 5 874873744 +407 656 4 875042865 +256 123 2 882150508 +616 873 3 891224767 +606 419 4 880924188 +683 1280 3 893284032 +116 902 2 890632896 +664 209 4 876525998 +743 224 5 881277931 +599 1277 4 880952496 +722 237 4 891280988 +110 393 3 886989363 +782 1216 2 891500150 +224 321 2 888082134 +655 521 3 887426900 +628 340 5 880777095 +664 180 4 876524641 +643 23 5 891447835 +665 31 3 884294880 +520 898 5 885168939 +468 246 5 875280352 +736 50 3 878708579 +758 619 4 881977205 +154 238 5 879139040 +586 318 3 884065986 +117 156 4 881011376 +314 717 3 877890769 +764 742 3 876243410 +517 761 5 892660727 +405 1228 1 885548137 +484 98 4 891195687 +588 731 2 890026705 +79 257 3 891271545 +758 58 4 881977169 +643 66 3 891448786 +463 121 3 877385797 +704 289 3 891396881 +102 856 2 892993927 +487 55 5 883446685 +738 63 3 875351905 +221 391 3 875247754 +312 657 5 891698485 +567 175 5 882425630 +625 202 3 891262633 +492 205 4 879969692 +286 4 5 877531899 +297 546 3 874954763 +786 276 1 882841875 +537 707 4 886031576 +416 412 2 892440119 +405 782 1 885546636 +195 60 3 888737240 +747 44 2 888639437 +477 237 4 875940451 +377 168 5 891298407 +711 741 4 886030774 +705 282 5 883427216 +618 68 3 891309608 +682 66 3 888521740 +198 186 5 884207733 +747 835 3 888640180 +704 154 3 891398702 +417 190 5 879647065 +754 284 3 879451775 +523 301 4 883700064 +328 778 3 885047822 +308 485 3 887737719 +430 674 4 877226405 +495 732 4 888634070 +715 82 4 875964025 +690 746 2 881177532 +764 820 3 876243953 +500 281 3 883865463 +716 661 3 879794870 +655 161 2 887429758 +588 578 5 890029212 +638 504 2 876695560 +180 747 4 877128156 +646 892 2 888529180 +399 673 3 882343789 +747 183 5 888732899 +663 258 3 889491560 +295 100 5 879518080 +244 144 1 880602264 +389 835 5 879991242 +97 83 1 884238817 +640 550 4 874778722 +213 458 4 878870679 +633 665 3 875325577 +682 87 5 888517235 +473 124 4 878157357 +680 9 4 876816106 +466 174 5 890284706 +395 472 3 883765965 +506 62 3 874874894 +601 123 1 876347148 +493 550 4 884132181 +506 69 5 874873327 +632 56 3 879458277 +758 1085 5 881975503 +18 957 3 880132188 +621 176 3 874963797 +608 699 5 880406507 +774 576 1 888557520 +275 1219 2 880313679 +457 216 5 882396765 +291 1067 4 874805892 +630 126 4 885667305 +758 56 5 881976031 +393 338 2 887742964 +92 186 4 875653960 +405 139 3 885549005 +773 64 4 888540507 +715 789 4 875963353 +291 636 4 874834799 +293 468 2 888906869 +395 215 5 883763768 +151 470 3 879528674 +517 335 3 875492066 +13 873 1 881515565 +286 884 5 884069544 +62 676 3 879372633 +548 185 5 891044356 +371 443 4 880435576 +312 194 4 891699207 +59 187 5 888204349 +76 223 2 882606623 +693 508 2 875482447 +92 1074 3 875907535 +747 292 4 888638293 +408 328 2 889679791 +325 210 2 891478796 +243 25 3 879987875 +474 116 5 887915366 +542 734 3 886533303 +551 356 4 892783829 +708 764 4 877325934 +465 143 4 883531380 +716 25 4 879793737 +233 50 3 876021213 +721 157 3 877140137 +4 327 5 892002352 +458 273 4 886394730 +472 43 4 875982560 +602 895 3 888637925 +553 513 4 879948806 +671 177 4 884035775 +121 276 3 891388453 +195 134 5 875771441 +92 789 5 875653242 +771 88 4 880659970 +642 99 2 885602446 +445 1008 1 891200320 +94 1225 3 891723262 +176 7 5 886048188 +311 238 4 884365357 +546 769 4 885141465 +650 91 4 891371061 +778 78 1 890803860 +267 742 3 878970621 +417 78 2 879649632 +459 748 4 879561754 +13 485 1 882140624 +327 792 4 887819021 +506 699 4 888848303 +709 82 4 879848645 +758 50 4 884999132 +704 191 3 891397262 +754 9 4 879451626 +435 187 4 884131489 +627 808 2 879531557 +250 943 4 878091870 +734 143 5 891022958 +256 218 3 882164727 +682 572 4 888521116 +723 174 4 880498996 +715 926 4 875962201 +450 280 4 882397940 +579 258 5 880951444 +642 815 4 892241051 +499 97 4 885599227 +671 356 3 883949781 +399 693 3 882510165 +5 409 2 878844651 +592 1023 1 882608873 +747 443 5 888640136 +181 116 1 878962550 +554 732 4 876550833 +401 151 1 891032584 +249 7 5 879572760 +721 357 5 877140221 +786 405 4 882842311 +328 357 4 885046244 +409 1099 4 881168712 +405 208 5 885547124 +588 485 5 890015835 +405 434 3 885546201 +639 648 3 891239491 +698 705 4 886366611 +566 582 5 881650186 +447 123 3 878854459 +624 111 3 879792671 +178 1 4 882823805 +716 502 3 879795867 +152 411 4 880149350 +95 389 4 880572388 +305 709 5 886324221 +592 265 4 882956039 +748 71 3 879454546 +401 748 3 891031784 +503 166 5 880472188 +698 190 5 886366515 +158 121 4 880132701 +543 919 2 874863549 +682 323 2 888516865 +221 42 5 875245813 +540 1226 4 882157732 +327 48 4 887745662 +347 188 5 881654480 +773 959 4 888539608 +201 1136 1 884140637 +711 509 4 879993674 +626 748 2 878771281 +15 328 3 879455192 +734 210 3 891022937 +587 304 4 892871141 +52 302 4 882922065 +92 771 1 875907180 +584 165 1 885778780 +747 654 5 888639939 +766 357 4 891309558 +640 1054 1 886474010 +286 1074 4 889652912 +1 35 1 878542420 +267 82 4 878973675 +173 319 4 877556926 +596 13 2 883539402 +663 125 3 889492720 +453 80 2 888205783 +699 24 3 879147239 +472 64 5 875981829 +612 604 4 875325256 +749 64 4 878847171 +333 100 4 891045666 +554 121 4 876232267 +664 222 3 876524641 +11 527 4 891904335 +650 164 4 891369798 +654 265 5 887864330 +618 501 4 891308884 +687 678 4 884652482 +682 834 3 888522971 +466 908 4 890284651 +725 245 4 876103793 +493 647 4 884131287 +405 180 3 885546069 +534 978 4 877808175 +704 514 4 891397112 +592 845 4 882608573 +25 463 4 885852529 +717 302 5 884641599 +727 566 3 883711449 +559 233 3 891034688 +487 257 4 883442260 +681 539 4 885409810 +295 743 4 879518674 +655 1281 3 891585477 +686 1184 1 879547337 +456 188 4 881373573 +740 242 4 879523187 +643 168 5 891447157 +459 523 4 879564915 +497 475 4 878759705 +527 200 3 879455999 +436 83 5 887770115 +87 514 4 879876672 +671 554 4 884036411 +671 29 3 884036050 +784 269 5 891387155 +748 496 4 879454455 +532 795 2 874789538 +415 185 4 879439960 +758 865 4 881975005 +768 282 4 880135987 +521 97 3 884478049 +505 22 5 889333274 +582 763 2 882961804 +264 137 3 886122892 +409 647 5 881107817 +354 606 5 891217633 +541 553 4 883865289 +326 187 1 879875243 +642 1531 3 886569226 +184 692 4 889909672 +222 418 2 878182959 +334 569 2 891548920 +327 108 3 887819614 +291 550 4 874835218 +405 80 1 885547557 +409 528 4 881107281 +677 1 4 889399229 +588 121 5 890026154 +504 409 4 889550757 +719 7 2 877311269 +435 218 3 884133194 +664 203 4 876526685 +709 4 3 879848551 +627 568 2 879531301 +347 1047 1 881653224 +727 562 2 883713548 +276 790 3 877935306 +721 699 3 877147080 +243 125 3 879988298 +757 195 4 888445802 +682 328 3 888518363 +720 306 4 891262635 +650 72 2 891386755 +239 242 5 889178512 +447 144 5 878856078 +389 205 4 880165939 +653 82 4 880150393 +711 694 5 879993318 +495 204 4 888632155 +533 866 2 887032297 +676 508 1 892686134 +771 83 5 880659369 +724 300 3 883757468 +328 194 3 885046976 +344 751 4 886381635 +331 175 4 877196235 +522 510 5 876961190 +711 432 4 879992870 +770 477 4 875972259 +393 644 3 889555074 +257 121 3 882050360 +92 783 3 875907574 +682 181 5 888518639 +495 176 5 888632496 +715 298 4 875962076 +716 417 3 879797257 +408 294 5 889680045 +504 1210 3 887840637 +377 173 5 891298589 +161 284 3 891172246 +777 153 1 875980541 +42 467 3 881108425 +724 1176 1 883757397 +561 631 3 885808000 +653 223 3 878866636 +313 402 3 891031747 +416 65 5 893212930 +495 226 4 888633011 +480 257 4 891208037 +345 742 4 884991191 +184 485 4 889908947 +710 50 4 882063766 +533 367 2 879191972 +176 881 3 886047531 +445 127 2 890987687 +704 496 5 891397712 +551 411 1 892784437 +626 330 3 878771447 +780 433 1 891363826 +707 378 3 886287628 +497 1240 5 879310070 +562 73 4 879195881 +561 48 4 885807547 +788 568 3 880869862 +514 174 5 875310992 +398 588 4 875659517 +615 187 5 879448598 +674 50 4 887762584 +642 392 4 886132237 +561 217 3 885810858 +722 412 2 891281679 +630 298 5 885666686 +472 186 5 888183325 +279 781 3 875314001 +230 435 4 880484444 +588 275 3 890024246 +655 221 3 891585242 +788 723 3 880870207 +708 271 1 892718796 +76 129 3 878101114 +640 347 3 886353742 +80 205 5 887401533 +222 386 2 881060205 +566 203 4 881650148 +437 523 3 881002191 +211 705 4 879459952 +291 262 4 874833603 +176 150 4 886047879 +115 279 3 881170725 +766 483 3 891309250 +173 303 5 877556864 +56 204 5 892676908 +655 1062 3 887650979 +417 109 2 879646369 +59 190 5 888205033 +532 842 4 888635407 +201 431 1 884112352 +766 82 3 891309558 +709 739 3 879849049 +543 169 4 875663267 +618 203 3 891308176 +152 143 5 882474378 +456 414 3 881374331 +650 188 3 891381610 +452 194 4 885816440 +758 153 5 881976377 +770 301 4 875971703 +671 1217 4 883547351 +209 127 5 883417589 +614 756 4 879465398 +738 969 4 892957860 +434 471 2 886724797 +608 499 4 880403484 +749 625 3 878848430 +472 780 4 875982922 +470 7 3 879178518 +627 183 5 879531196 +655 732 3 887428445 +776 672 3 892920381 +318 188 3 884497031 +650 229 2 891370031 +712 949 4 874730370 +498 754 2 881962988 +462 292 5 886365260 +707 1257 2 880061190 +788 23 3 880868277 +757 157 3 888467855 +698 1149 3 886367013 +328 572 3 885049658 +145 690 4 877342952 +751 735 4 889134332 +417 1091 3 879648435 +457 729 4 882547857 +758 287 5 881975182 +452 462 4 875264825 +756 122 1 874831227 +498 381 3 881961312 +702 259 3 885767604 +615 23 5 879448547 +694 1205 3 875727550 +468 95 4 875287826 +517 1047 2 892659923 +535 14 3 879618743 +655 604 4 888984325 +682 272 5 888523619 +632 204 4 879458277 +353 750 4 891402757 +680 98 4 876816224 +499 307 4 885597747 +586 405 5 884061807 +771 237 5 880659482 +416 133 2 876699903 +379 183 4 886317511 +583 357 5 879384575 +413 50 5 879969674 +586 800 3 884061189 +731 205 1 886187652 +655 1196 3 888984325 +332 452 4 888360508 +308 61 3 887739336 +532 72 3 888636538 +532 619 5 889235367 +387 528 4 886483906 +262 546 2 879791049 +97 169 5 884238887 +648 152 5 884368485 +622 550 4 882670929 +773 239 4 888539512 +766 77 2 891310313 +468 172 4 875293386 +567 188 5 882426055 +773 229 3 888540112 +234 412 2 892336322 +49 287 4 888068842 +149 328 2 883512689 +343 318 5 876406707 +435 393 2 884133610 +458 654 5 886397771 +403 515 4 879785867 +207 1331 3 877995673 +782 250 4 891499440 +91 22 5 891439208 +539 286 4 879787771 +746 184 4 885075267 +628 288 5 880777096 +503 423 5 880472321 +676 13 1 892686319 +479 604 3 879461084 +492 654 4 879969323 +290 49 3 880475542 +453 410 4 877552951 +478 40 1 889398198 +31 811 4 881548053 +13 205 2 881515193 +592 589 5 882955825 +254 172 5 886472051 +297 42 3 875238853 +679 73 4 884488036 +653 105 3 890181185 +650 403 3 891381709 +747 87 5 888640222 +264 23 5 886122577 +593 26 4 875660886 +268 200 4 875309459 +357 126 5 878951537 +720 345 2 891262762 +479 264 3 879459791 +145 329 4 888397542 +509 301 2 883591043 +250 418 5 878090199 +39 307 2 891400342 +682 1028 3 888523657 +747 467 4 888639222 +561 719 1 885810785 +234 226 2 892335673 +536 96 4 882359988 +474 89 5 887924425 +648 1176 1 884628278 +697 628 4 882622016 +682 806 3 888523658 +726 274 4 889831222 +739 100 5 886825383 +500 1385 4 883865290 +621 125 4 880739654 +660 515 2 891199391 +139 1233 5 879537844 +549 411 3 881672667 +715 447 3 875963452 +486 20 3 879875069 +749 521 4 878847765 +789 1012 4 880332169 +334 255 3 891544840 +625 190 3 892000576 +743 100 5 881277962 +671 510 3 884035892 +405 384 3 885547605 +717 286 3 884641644 +201 581 3 884140788 +727 1411 2 883713419 +710 197 4 882064200 +279 230 4 892865054 +786 177 4 882843646 +388 323 4 886442062 +465 154 2 883532119 +666 96 3 880568270 +708 690 4 892718919 +299 194 3 877881229 +393 111 3 887745293 +749 222 3 878847716 +186 477 4 891719775 +1 137 5 875071541 +715 83 4 875963792 +211 199 5 879459952 +706 333 1 880996945 +85 478 4 879454951 +234 605 3 892333798 +621 539 1 883799884 +409 1369 4 881106287 +782 1600 3 891500066 +545 563 3 879900011 +716 238 4 879797286 +406 158 2 880132115 +741 5 3 891455671 +707 1107 3 886288239 +757 248 4 888444209 +435 541 4 884134187 +579 514 3 880952165 +498 449 3 881961932 +320 572 3 884751316 +399 239 3 882344553 +642 395 5 885604187 +710 99 4 882064434 +646 310 3 888528483 +606 117 4 878143605 +109 679 3 880578093 +548 882 4 891043442 +514 31 4 886190665 +559 385 4 891035111 +409 303 4 881104727 +334 164 3 891548104 +539 239 3 879788572 +758 303 4 880672321 +643 233 4 891449249 +672 1061 4 879789566 +561 523 4 885809269 +393 405 4 887744626 +504 1050 4 887832433 +178 156 2 882826395 +307 99 4 879283449 +122 1119 3 879270769 +669 276 2 892550259 +772 898 3 889028941 +749 944 4 878849482 +786 633 4 882843237 +11 526 3 891904859 +682 520 4 888519725 +640 151 4 886474515 +500 50 3 883864992 +790 380 4 885157419 +715 159 3 875964330 +456 180 4 881373084 +790 1074 3 885158235 +528 109 4 886812980 +466 11 3 890284707 +618 404 5 891309192 +697 124 5 882622505 +504 399 4 887840882 +659 647 3 891384823 +311 967 3 884364764 +164 751 4 889401263 +435 83 4 884131434 +323 222 3 878739251 +787 310 5 888979007 +542 208 4 886532881 +539 640 2 879788101 +31 1020 3 881548030 +128 88 4 879969390 +581 1375 5 879641787 +693 684 3 875483435 +712 1091 3 874956543 +298 504 3 884127249 +630 288 4 885666102 +771 258 5 880659323 +420 750 4 891356790 +643 482 4 891447063 +495 95 3 888634315 +561 97 3 885809312 +244 9 5 880604179 +234 806 2 892334766 +747 1194 5 888639102 +207 56 4 875503973 +6 527 4 883600877 +747 211 5 888639014 +532 24 5 892867296 +128 433 4 879967225 +690 90 1 881179469 +23 694 4 884550049 +222 226 3 878185044 +352 98 5 884290428 +782 1023 3 891499611 +407 286 4 890687500 +766 90 1 891310313 +695 313 2 888805836 +527 671 5 879455873 +327 732 1 887819316 +537 262 5 886028446 +622 184 5 882592103 +417 809 3 880951251 +670 174 4 877975344 +786 230 4 882844295 +499 301 4 882995808 +650 452 2 891370155 +303 5 2 879484534 +606 507 4 880923689 +171 269 4 891034835 +655 1192 4 887650851 +188 153 5 875075062 +716 95 4 879794775 +770 875 4 875971612 +6 519 5 883601365 +782 322 4 891498381 +122 1168 4 879270902 +749 837 5 878848587 +751 1011 4 889132599 +694 491 3 875731050 +773 91 4 888539232 +398 205 5 875660535 +577 665 4 880475644 +546 447 3 885141360 +701 750 5 891446588 +639 371 1 891240495 +94 1058 4 891722609 +655 1211 4 887427681 +783 288 3 884326274 +6 491 4 883602174 +766 98 3 891309522 +654 117 4 887864350 +733 293 4 879535559 +455 95 4 879111057 +540 281 3 882157011 +406 499 5 884630973 +454 659 2 888267028 +314 546 4 877886788 +393 544 3 887745135 +659 313 5 891331825 +551 198 5 892778035 +450 292 5 882215922 +524 211 5 884635136 +455 307 4 892230486 +391 22 4 877398951 +773 639 4 888538931 +680 169 5 876816162 +145 135 5 885557731 +268 627 3 875310603 +92 58 4 875653836 +297 27 1 875239535 +660 890 1 891198996 +537 1267 3 886032123 +92 282 4 876769303 +749 159 4 878849956 +378 468 5 880055396 +286 1119 3 877534054 +90 1196 4 891383599 +655 202 2 887651114 +593 173 5 877728878 +508 96 2 883768886 +314 15 5 877886483 +748 8 4 879455126 +420 513 5 891356864 +474 179 5 887924424 +705 2 3 883428058 +682 465 3 888523054 +648 502 5 884881679 +741 31 3 891455516 +145 1009 2 875270764 +777 357 5 875980235 +332 118 5 887938330 +648 49 2 884881679 +580 455 4 884125492 +495 433 4 888634315 +603 62 2 891955972 +708 873 5 892718965 +500 8 4 883874621 +493 201 5 884131089 +5 386 2 875636230 +682 1048 3 888521564 +600 177 5 888451583 +768 278 2 883835210 +661 498 5 876017801 +755 875 1 882570023 +409 504 2 881106682 +313 385 4 891015296 +574 333 3 891279285 +783 334 3 884326461 +198 4 3 884209536 +476 738 3 883364812 +385 654 5 879442085 +146 245 5 891458080 +690 226 3 881179969 +785 195 4 879438984 +474 436 3 887926873 +484 275 3 891195973 +610 735 3 888703360 +548 581 4 891044596 +561 198 3 885808986 +645 70 4 892055325 +665 866 3 884290676 +256 1042 5 882164927 +621 24 4 880737433 +715 627 3 875964614 +541 168 4 883865555 +694 1203 4 875729489 +363 1014 1 891499760 +454 293 4 881959238 +467 919 2 879532535 +541 259 1 884046888 +484 24 1 881449826 +535 628 4 879618246 +523 663 5 883701962 +151 473 4 879524974 +697 222 4 882622016 +504 392 5 887908645 +642 125 4 885603586 +653 492 4 880149999 +442 11 4 883390284 +655 518 2 888813186 +345 204 4 884991925 +90 676 2 891384066 +622 214 4 882670228 +658 429 4 875147800 +757 50 4 888444056 +625 250 4 891273750 +716 414 4 879797152 +422 475 4 875129881 +472 173 5 875982641 +234 11 2 892079140 +551 150 3 892782807 +74 302 4 888333219 +535 558 5 879618385 +305 408 5 886323189 +53 151 4 879443011 +655 684 3 887473965 +634 985 4 877017790 +543 550 2 877547005 +343 9 5 876402738 +724 346 1 883757703 +727 203 5 883710236 +502 259 3 883702448 +265 111 2 875320371 +305 1074 2 886324330 +537 724 3 886031886 +328 433 2 885047670 +751 736 5 889134533 +778 7 4 890725886 +399 697 2 882345454 +542 789 3 886532909 +642 731 5 885605909 +747 500 4 888640222 +703 147 3 875243049 +707 778 3 886287160 +782 938 3 891498030 +661 69 4 876013492 +747 1660 2 888640731 +109 317 2 880573085 +374 68 1 880396622 +663 96 5 889493628 +751 480 4 889133129 +630 620 4 885667661 +601 107 4 876347113 +654 81 2 887864831 +116 272 3 886309505 +514 294 3 885180929 +184 428 4 889909551 +714 237 3 892776261 +776 234 5 892920290 +749 145 4 878849433 +372 436 5 876869445 +217 96 4 889069741 +616 347 4 891224677 +347 686 5 881654101 +133 316 4 890588928 +152 739 5 882475924 +653 480 4 880150239 +650 523 3 891382066 +467 475 4 879532460 +715 92 3 875963899 +711 65 4 879992968 +440 310 3 891546631 +313 519 5 891013436 +621 825 3 880738142 +653 523 4 878854284 +316 286 5 880853038 +417 1288 1 879646741 +81 288 3 876533229 +592 122 4 882608960 +671 54 3 884035173 +384 327 4 891273761 +789 127 5 880332039 +650 172 4 891369442 +264 789 4 886122644 +660 243 2 891197757 +763 286 4 878914901 +128 161 5 879968896 +770 508 5 875972322 +637 1051 2 882905388 +291 820 4 875087125 +94 32 5 891721851 +328 744 4 885046878 +731 507 3 886184771 +407 214 4 875042466 +67 412 1 875379540 +609 890 1 886895914 +508 191 5 883767383 +751 419 4 889134533 +600 449 4 888452564 +69 1016 3 882072956 +244 109 4 880604798 +703 257 5 875242990 +711 404 3 879993579 +17 7 4 885272487 +279 728 4 875314287 +303 241 4 879483301 +498 554 3 881962385 +749 550 4 878850212 +642 722 3 885606113 +417 574 2 879649428 +428 1024 4 885943651 +646 315 4 888528483 +305 89 3 886322719 +398 510 4 875658715 +788 480 3 880868473 +553 100 5 879948869 +727 801 2 883713194 +707 694 4 886286246 +399 291 3 882510126 +561 550 1 885810117 +379 414 5 880740415 +659 448 4 891385438 +668 210 5 881605849 +95 692 4 879198482 +152 423 5 882899511 +752 313 3 891207791 +21 800 1 874951727 +429 480 4 882386071 +18 737 3 880132055 +270 815 4 876954522 +400 690 3 885676365 +299 7 3 877877847 +760 723 2 875669011 +630 118 4 885666875 +397 853 4 885350045 +378 135 2 880046362 +655 800 2 887430197 +634 840 2 875729794 +222 585 3 881060062 +116 50 3 876452443 +454 55 2 888267617 +749 105 1 878849508 +234 1330 3 892078343 +592 1017 4 882608279 +3 319 2 889237026 +595 9 4 886922069 +25 183 4 885852008 +720 315 4 891262608 +445 752 1 891199167 +488 493 3 891294297 +774 527 1 888556698 +622 294 3 882589830 +87 472 4 879875996 +254 126 3 887347350 +23 526 3 874787116 +574 347 3 891278860 +711 1117 4 883589726 +165 318 5 879525961 +660 195 4 891406212 +608 319 4 880402983 +548 642 4 891044538 +648 816 1 884883724 +62 81 4 879375323 +567 479 5 882425997 +201 685 3 884112352 +13 50 5 882140001 +684 401 3 878762302 +451 329 4 879012721 +258 286 5 885700778 +794 242 5 891034156 +758 192 4 882053053 +420 14 5 891356927 +561 380 2 885809524 +280 226 3 891701998 +433 323 1 880585530 +181 875 3 878961623 +416 592 3 892441347 +750 294 4 879445961 +528 77 3 886101428 +648 66 5 882213535 +363 38 3 891498407 +629 22 5 880116818 +22 688 1 878886307 +149 268 4 883512715 +437 692 4 880143115 +507 269 2 889964121 +442 234 4 883389983 +733 1173 2 879535814 +241 300 4 887249685 +505 307 4 889332705 +593 50 4 875660009 +784 307 4 891387623 +504 291 4 887832043 +450 422 3 882467991 +574 332 3 891279410 +695 260 4 888806150 +276 225 3 874786854 +58 1063 1 884304728 +664 286 4 876523092 +497 603 3 879361802 +543 118 3 874862036 +776 485 2 891628656 +635 255 4 878879213 +448 345 5 891887440 +774 89 2 888557198 +297 111 3 874955085 +69 302 4 882027109 +439 301 3 882892424 +711 215 3 879994555 +749 238 3 878847863 +721 393 5 877138200 +43 121 4 883955907 +663 762 4 889492473 +279 1480 3 875314370 +407 1090 2 876348799 +329 651 4 891656639 +592 657 4 882956011 +303 1509 1 879544435 +627 797 4 879531504 +593 357 5 875661486 +664 504 4 876526518 +530 487 4 883784557 +109 367 3 880578121 +474 1134 3 887915306 +758 95 3 881977057 +747 496 5 888640136 +693 419 2 875484501 +393 472 3 887745199 +22 712 4 878887186 +389 731 3 880089152 +498 693 3 881957625 +497 849 2 879310913 +727 312 3 883708435 +664 427 4 876524053 +71 744 4 877319294 +145 394 1 888398833 +758 197 3 881975687 +711 744 4 876185896 +499 520 3 885599572 +537 99 2 886031375 +402 204 5 876267206 +559 194 3 891035781 +90 1039 5 891383599 +666 662 3 880568094 +463 1067 2 877385531 +749 86 4 878848369 +607 511 5 883879556 +707 1007 4 880060180 +669 324 3 891517159 +695 1024 5 888805913 +342 844 3 874984789 +542 1061 2 886533275 +650 216 4 891381546 +174 386 1 886515130 +145 731 3 875272833 +474 475 4 887915479 +497 423 3 879363586 +68 763 1 876973917 +767 207 5 891462759 +698 194 4 886366454 +627 562 2 879531504 +323 294 3 878738827 +601 427 4 876348736 +652 395 3 882567383 +499 484 4 885599013 +611 269 4 891636072 +567 1451 3 882426952 +738 405 2 875349968 +420 86 5 891357021 +49 320 5 888067334 +136 15 4 882693723 +13 406 1 882397011 +720 1062 5 891262812 +533 230 4 879191563 +401 127 1 891032170 +613 509 4 891227236 +565 83 5 891037628 +768 340 2 879523820 +697 268 5 882621548 +456 1059 4 881372052 +239 42 5 889180578 +488 164 3 891293911 +521 96 4 884477853 +395 252 3 883765897 +445 591 2 891200020 +748 174 5 879454405 +570 305 5 881262256 +442 746 3 883388354 +758 81 5 881975815 +463 93 4 877385457 +629 199 5 880117772 +676 300 4 892685403 +551 708 1 892783830 +503 732 3 880383467 +239 482 3 889180978 +166 313 5 886397478 +372 875 4 876869183 +13 473 4 882398724 +536 566 5 882360264 +500 202 4 883874239 +253 1 5 891628467 +405 64 5 885544739 +624 270 3 891961120 +453 181 5 877552612 +794 887 4 891034284 +437 82 3 880140192 +159 829 4 880557741 +452 135 3 875560790 +280 471 3 891700553 +95 1047 3 879193881 +413 258 4 879968794 +620 928 5 889987825 +729 333 4 893286638 +297 90 4 875239942 +655 417 2 888771346 +380 582 4 885478583 +690 716 1 881179469 +551 204 4 892777673 +711 1118 4 879994633 +758 427 4 881974742 +56 22 5 892676376 +532 77 5 892519935 +532 676 5 892521554 +62 71 4 879374661 +305 528 4 886323378 +608 333 4 880402983 +569 19 5 879794127 +747 316 4 888638552 +439 100 3 882892705 +538 181 3 877107700 +780 662 5 891363756 +456 864 4 881371660 +147 301 5 885594204 +13 348 2 886952246 +379 163 4 880740495 +756 642 2 874829924 +738 357 4 875353869 +758 155 1 882054226 +501 591 4 883348138 +157 118 2 886890439 +682 252 3 888518773 +648 550 4 884882802 +676 257 5 892686220 +676 288 1 892685437 +542 427 5 886532294 +615 237 4 879448843 +588 566 2 890023557 +181 1047 2 878962866 +630 100 3 885666592 +697 1 5 882622481 +724 245 2 883757874 +514 64 4 875462645 +343 159 2 876405893 +721 655 2 877140490 +344 562 2 886381985 +649 291 5 891440330 +697 818 4 882622228 +459 568 3 879564941 +514 425 5 875318291 +246 809 2 884923767 +327 186 2 887744064 +606 195 5 880926162 +578 355 1 888957758 +437 842 4 880143451 +521 732 3 884478135 +787 899 3 888979074 +764 143 5 876245331 +444 245 4 891979402 +451 305 3 879012647 +6 317 3 883602174 +778 1273 3 890726925 +354 737 4 891307206 +472 82 5 892791017 +735 744 3 876698714 +541 755 5 883874716 +461 242 3 885355735 +207 204 3 875506737 +704 131 5 891398726 +345 274 3 884991267 +781 483 5 879633942 +737 12 4 884314922 +225 606 5 879540649 +654 54 3 887864941 +524 1553 3 884635136 +533 297 4 893160944 +653 819 3 880149751 +234 1446 3 892335739 +758 172 4 881974880 +660 22 4 891199262 +533 134 4 879439379 +534 15 4 877807873 +548 1244 4 891043953 +542 418 4 886533562 +456 506 4 881374332 +655 190 3 887427338 +94 42 4 885870577 +731 95 3 886183978 +666 13 4 880313542 +445 181 2 891199945 +195 234 5 875771441 +771 28 5 880659392 +711 716 5 879995215 +687 340 4 884651894 +450 869 4 882470064 +786 471 4 882842311 +741 70 4 891456573 +85 231 2 882995615 +457 9 5 882393485 +458 23 4 886397931 +707 211 3 886287051 +541 1084 4 883864569 +774 294 1 888555792 +591 357 5 891031228 +699 933 3 878882226 +788 754 4 880867477 +472 1034 3 875979359 +538 234 3 877108077 +627 810 3 879531459 +747 648 5 888734012 +339 124 4 891032885 +42 294 4 881105296 +402 13 3 876266701 +416 1020 5 893212483 +705 241 4 883428128 +779 257 4 875993201 +796 1074 1 893047691 +462 100 4 886365387 +774 229 2 888557329 +644 261 4 889076502 +690 663 4 881177376 +311 54 4 884366439 +595 109 2 886921365 +59 277 4 888203234 +543 720 2 877546306 +597 250 4 875340939 +543 656 4 875665787 +10 582 4 877892276 +767 98 5 891462560 +452 181 4 886151027 +727 204 3 883710395 +437 77 4 880143040 +407 228 4 875046799 +470 257 4 879178568 +727 195 4 883710375 +452 124 5 885816768 +773 559 2 888540314 +632 275 3 879457582 +256 471 5 882150644 +210 105 3 891036331 +648 559 2 884883578 +761 214 1 876190510 +484 136 5 891194766 +721 70 3 877145403 +602 257 4 888638618 +416 873 5 893213645 +414 343 2 884999193 +291 200 4 874867740 +406 561 3 879792974 +13 897 1 886952422 +755 689 3 882570077 +648 519 4 884628482 +60 615 5 883326215 +693 488 4 875484539 +756 1119 4 874828349 +655 345 3 887473803 +533 176 1 879191332 +85 845 3 879828456 +774 403 2 888556814 +763 238 4 878915559 +795 172 3 880570209 +130 808 5 878537631 +237 656 4 879376730 +794 118 2 891035413 +642 845 5 891318088 +619 174 4 885953992 +660 215 3 891199082 +417 447 3 879649064 +555 150 4 879963127 +622 679 3 882671483 +53 25 4 879442538 +788 185 4 880868316 +756 234 3 874829924 +313 47 3 891015268 +569 286 5 879792991 +178 1197 4 882824055 +224 70 2 888103812 +592 259 2 882607573 +790 154 4 885156290 +224 715 1 888104487 +604 637 4 883668261 +679 132 4 884487374 +496 109 3 876064357 +332 79 5 888098088 +128 392 3 879967102 +157 276 4 886889876 +144 474 4 888105311 +694 174 5 875727061 +153 79 5 881371198 +393 7 4 887744419 +640 134 5 874777623 +795 117 4 880558122 +648 510 5 884796728 +130 236 5 876251160 +756 753 2 874832788 +667 137 3 891035206 +567 194 3 882425874 +622 86 4 882670587 +547 315 4 891282555 +587 886 2 892871171 +517 823 2 892659923 +759 332 4 881476516 +537 221 3 886029841 +754 619 4 879451517 +672 225 2 879789437 +619 183 5 885953992 +371 194 3 877486953 +588 421 5 890023830 +600 684 4 888451582 +417 223 5 879646986 +641 865 5 879370149 +758 889 3 889038958 +232 582 5 888549595 +694 131 5 875727715 +271 302 5 885844430 +450 476 4 882469306 +363 187 2 891494725 +545 373 3 879899523 +721 294 3 877137447 +780 491 4 891363651 +222 1045 3 881060412 +694 226 3 875729271 +793 276 3 875103971 +721 215 4 877141373 +709 636 3 879848645 +622 28 3 882592314 +648 231 2 884882987 +518 544 3 876823324 +771 242 4 880659235 +506 746 5 874875062 +638 227 2 876695259 +434 975 5 886724873 +592 763 5 882608531 +405 715 1 885546445 +758 324 5 880672230 +709 174 5 879848396 +532 295 5 884594761 +561 693 3 885808620 +708 50 5 877325186 +782 683 1 891498213 +577 151 4 880470604 +681 288 1 885409810 +727 401 2 883713521 +736 246 4 878708929 +417 1539 2 879649539 +121 197 4 891388286 +417 100 3 879646166 +660 177 2 891200014 +623 79 5 891035112 +782 249 2 891499399 +276 590 2 874977334 +574 270 3 891279121 +718 1165 3 883349598 +711 713 3 879991283 +409 404 2 881109019 +428 1313 4 892572362 +308 382 4 887739521 +664 132 4 878092569 +453 693 5 877561172 +741 651 4 891018507 +637 926 2 882904898 +727 201 4 883710717 +774 673 2 888556545 +201 64 3 884111436 +614 1 5 879464093 +660 898 4 891197561 +746 196 4 885075612 +758 826 3 882054854 +773 37 3 888540352 +293 427 4 888906288 +101 412 2 877136842 +76 270 3 879117602 +486 591 4 879874662 +521 163 3 884478483 +346 669 1 875265690 +697 751 5 882622481 +506 181 5 874874676 +533 13 3 879192475 +774 54 1 888556814 +781 100 5 879634175 +435 562 5 884133819 +690 94 4 881177836 +642 1509 2 885606270 +316 435 2 880854337 +474 792 4 887926573 +495 386 3 888636837 +15 111 4 879455914 +589 682 4 883352494 +158 471 4 880132513 +570 748 3 881262497 +423 924 4 891395602 +380 121 3 885479896 +621 472 3 880738462 +793 1067 4 875103875 +780 202 4 891363783 +721 300 5 877135806 +152 781 5 882476486 +642 1503 2 885602446 +276 1208 3 882659656 +7 4 5 891351772 +364 286 5 875931309 +665 597 3 884290853 +669 749 3 891517159 +731 462 5 886186568 +501 546 4 883348283 +318 4 2 884497516 +741 77 3 891455671 +249 409 4 879640452 +399 5 3 882345001 +711 949 4 879994719 +782 984 2 891498821 +795 367 3 883252202 +218 176 5 881288299 +645 474 5 892053398 +422 275 5 875130026 +542 451 3 886532971 +782 329 3 891498213 +194 89 3 879521328 +506 94 3 874876599 +796 401 3 893219427 +796 184 1 892761544 +521 99 3 885253937 +222 422 2 878183657 +13 832 4 882399156 +533 71 4 889450972 +599 255 5 880951479 +738 195 4 875349628 +747 844 4 888640136 +774 172 3 888557198 +487 356 4 884024462 +637 325 1 882899928 +417 294 4 879646463 +748 228 3 879454687 +432 300 4 889415763 +629 684 5 880117430 +761 546 5 876190468 +705 38 5 883428258 +790 157 2 885156193 +497 163 2 879363181 +749 293 4 878846783 +491 100 5 891186806 +761 148 5 876189829 +721 715 2 877147726 +447 209 4 878856148 +450 443 4 882377861 +403 235 5 879786165 +295 168 5 879517467 +119 410 1 890627339 +676 132 5 892686703 +374 1217 2 880938100 +781 474 5 879633976 +784 678 4 891387895 +655 385 3 887429669 +599 1014 4 880951885 +607 483 4 883879379 +665 143 4 884293475 +546 590 4 885141538 +494 98 4 879541158 +693 118 2 875483597 +747 705 5 888639939 +545 121 5 879899299 +735 333 4 876697647 +642 1014 5 886131547 +705 28 4 883427640 +364 302 4 875931309 +389 186 2 880087435 +321 86 4 879440294 +758 64 5 881974931 +672 25 5 879789056 +746 231 2 885075476 +507 678 5 889966088 +634 1284 3 875729794 +500 234 3 883875638 +698 230 3 886367337 +379 710 4 880961839 +15 934 4 879456507 +7 544 3 891353254 +318 712 4 884496368 +790 1063 5 885156478 +537 433 4 886031634 +595 475 5 886921166 +536 136 4 882359780 +716 131 5 879796311 +655 536 3 887650512 +539 238 3 879788045 +425 385 2 878738813 +749 1047 3 878849740 +345 323 3 884916551 +43 625 4 883956146 +437 709 5 881000931 +87 944 5 879876848 +434 477 5 886724940 +344 169 5 884814457 +246 69 3 884921202 +614 871 2 879465376 +504 628 4 887831678 +622 90 4 882671574 +679 8 2 884486856 +621 810 3 874964657 +493 323 4 884129979 +551 762 5 892784130 +102 431 3 888801407 +372 201 2 876869387 +774 644 4 888556777 +487 282 4 883442105 +642 367 5 885605866 +789 475 5 880332063 +407 427 4 876338966 +749 199 5 878847171 +393 794 4 889730117 +505 174 4 889333340 +13 37 1 882397011 +625 173 3 891953681 +524 238 4 884634755 +660 117 3 891197934 +537 290 2 886030254 +666 855 4 880568270 +749 254 2 881602674 +703 275 4 875242663 +18 221 5 880129816 +404 689 2 883790585 +506 1089 1 889979761 +399 121 3 882341403 +608 480 3 880405165 +606 816 2 880927358 +782 1538 3 891500109 +709 385 4 879848397 +543 1524 4 874866319 +406 218 3 879792863 +604 184 3 883668352 +643 468 4 891449900 +727 549 3 883712219 +653 127 5 878853780 +575 127 2 878148137 +43 539 3 883953716 +625 357 3 891262784 +416 318 5 893213549 +747 474 5 888639526 +766 521 4 891309261 +696 305 4 886403578 +777 100 1 875979380 +325 182 3 891478835 +747 152 3 888640222 +655 81 3 887427371 +560 277 3 879976731 +296 256 5 884196741 +551 1139 4 892785263 +129 304 3 883244707 +476 67 4 883365218 +373 389 3 877099352 +684 1283 3 875811708 +563 862 1 880507672 +474 356 5 887928793 +653 756 1 878854996 +6 489 5 883601011 +742 321 3 881005611 +698 513 2 886366558 +495 158 3 888637477 +551 1443 5 892784942 +533 514 3 879190670 +406 478 4 879445378 +696 344 5 886403672 +307 228 5 879538921 +312 23 4 891698613 +373 50 5 877098678 +758 607 5 881976032 +735 276 4 876698796 +167 99 4 892738385 +734 751 4 891021937 +592 522 5 882955662 +764 71 5 876429672 +660 186 3 891199781 +766 202 3 891310281 +181 1350 1 878962120 +85 531 4 879454112 +303 569 3 879484159 +60 445 5 883326273 +747 939 3 888639362 +87 410 4 879876565 +643 209 5 891446652 +548 283 3 891415572 +586 841 3 884063854 +450 832 2 882468307 +655 306 3 887424883 +308 122 4 887742165 +559 257 3 891035466 +456 1222 2 881375019 +716 1203 2 879795239 +724 680 1 883758119 +474 23 4 887925620 +542 186 4 886532909 +54 346 4 890608303 +25 604 4 885852008 +650 495 3 891372316 +423 245 4 891394952 +693 1311 1 875482939 +796 418 4 893218933 +592 234 5 882955863 +654 473 2 887863933 +751 88 4 889298660 +374 742 5 880393331 +506 161 4 885135881 +200 596 4 876042584 +707 293 4 880059810 +361 705 5 879441416 +301 420 3 882077285 +537 466 4 886031149 +495 181 5 888632180 +557 300 4 881095916 +654 660 5 887864532 +650 496 4 891369707 +664 149 3 876525315 +741 1074 2 891457395 +425 538 2 890346866 +508 511 4 883767246 +540 111 4 882157148 +557 198 5 881179513 +608 44 4 880406469 +451 359 2 879012721 +655 1069 1 887473535 +758 684 4 881977872 +774 1028 2 888558829 +206 1432 1 888180082 +562 181 3 879195125 +363 282 2 891495596 +535 196 4 879617894 +407 215 3 875045658 +554 819 3 876231688 +470 13 4 879178518 +23 713 4 874784337 +429 191 5 882385065 +192 125 3 881367849 +642 451 5 885605794 +342 212 5 875319992 +425 121 4 878738813 +758 24 4 881979891 +391 174 5 877399301 +606 48 4 880924483 +417 260 3 879649779 +742 117 2 881335528 +714 472 2 892777730 +379 636 3 880525502 +42 284 3 881105581 +655 708 3 887427307 +704 654 5 891397667 +171 310 4 891034835 +330 385 5 876546378 +721 881 3 877137359 +181 981 1 878962279 +535 482 4 879619107 +703 258 4 875242076 +20 274 4 879668248 +178 333 3 884836479 +686 651 5 879545413 +798 94 3 875914939 +417 413 3 879646327 +683 303 3 893283104 +216 735 5 880244758 +479 1444 1 879462121 +442 219 3 883390009 +405 675 1 885548275 +476 26 4 883364475 +592 925 3 882608915 +798 1 4 875295695 +172 463 4 875537502 +518 280 4 876824218 +645 28 4 892053310 +733 279 2 879535968 +222 742 5 877563597 +749 578 3 878850429 +609 1012 1 886896237 +367 800 4 876690049 +643 200 3 891448265 +525 1047 2 881086274 +796 229 3 893048471 +398 186 4 875733496 +660 208 4 891199201 +405 921 1 885549634 +535 9 5 879617779 +527 647 5 879455654 +616 322 4 891224840 +358 1266 4 891269944 +704 662 3 891397819 +786 404 4 882843500 +788 229 3 880870299 +788 51 4 880870018 +750 306 4 879445877 +664 175 4 876524699 +276 928 3 874836629 +346 97 4 874948929 +617 1073 3 883789105 +655 1368 5 888474285 +601 504 4 876350300 +279 28 2 875296461 +456 380 3 881375097 +196 153 5 881251820 +777 1 4 875979431 +614 841 2 879465398 +561 195 3 885808963 +328 133 5 885047018 +406 447 4 879792897 +749 172 5 878847239 +608 100 4 880403280 +143 294 3 888407708 +637 333 3 882900888 +230 371 4 880485330 +633 177 3 875325654 +682 1410 3 888517324 +707 730 3 886286742 +745 174 3 880123179 +536 713 4 882318741 +774 563 1 888557883 +536 498 5 882359906 +479 455 4 889125853 +94 4 4 891721168 +796 679 4 893048471 +276 185 4 874792663 +18 111 3 880131631 +394 386 3 881058897 +655 87 3 887476943 +610 95 2 888703316 +733 19 5 879535338 +350 132 5 882346929 +637 1 4 882902924 +542 122 3 886533253 +95 97 4 879198652 +758 689 1 881295176 +707 162 5 886285968 +715 475 4 875962049 +454 423 4 881959607 +177 216 4 880130653 +94 692 4 891722249 +798 998 3 875915317 +450 226 4 882474001 +326 194 4 879874825 +30 161 4 875060883 +222 402 4 878185044 +643 521 4 891448586 +10 701 4 877888812 +796 87 5 893218728 +764 321 1 876233034 +566 1437 2 881651434 +586 385 3 884058956 +758 752 3 887086705 +551 924 5 892783451 +708 21 1 877325316 +436 710 4 887769281 +757 743 2 888445172 +665 79 3 884293831 +110 366 3 886988341 +125 482 1 892836309 +731 194 3 886183681 +747 156 3 888639362 +645 433 4 892054906 +198 127 5 884204919 +288 1065 4 886373474 +181 1365 1 878963086 +402 237 4 876266948 +648 254 3 884367248 +405 42 1 885547313 +533 228 4 879191332 +683 316 4 893286208 +168 300 5 884287011 +671 1215 3 884036365 +234 279 3 892333980 +454 185 2 881960265 +458 514 5 886397504 +486 332 3 879874187 +29 326 2 882820869 +551 774 5 892783314 +640 1228 4 889235993 +645 963 4 892053241 +643 418 4 891447518 +671 559 4 884338399 +684 692 4 878576614 +625 154 3 891998289 +363 235 5 891497130 +48 357 5 879434653 +462 330 3 886365803 +716 392 2 879796895 +782 1390 3 891500028 +713 307 3 888882311 +543 1014 4 875655073 +184 7 3 889907738 +234 97 2 892334267 +655 324 3 890103072 +303 790 4 879485507 +314 433 3 877887642 +55 50 4 878176005 +747 1203 5 888639685 +682 259 3 888518424 +149 300 3 883512715 +724 1617 1 883757703 +791 289 4 879448087 +250 175 5 878090004 +760 216 2 875667366 +660 145 2 891202022 +788 235 3 880871328 +766 648 3 891309913 +160 237 3 876768609 +728 678 4 879442794 +655 249 3 887474630 +164 472 5 889402071 +588 724 2 890015648 +676 318 5 892686459 +802 135 4 875985347 +650 434 4 891382218 +650 627 2 891387520 +507 319 3 889964074 +629 258 4 880116722 +524 550 3 884636958 +733 7 3 879535603 +70 101 3 884150753 +665 319 4 884289897 +642 542 5 885606609 +308 285 5 887736622 +180 939 4 877355472 +642 143 5 885603018 +727 790 2 883711616 +468 42 4 875294549 +663 357 5 889493732 +342 276 3 874984531 +735 690 4 876697561 +593 631 3 886194296 +496 268 4 876063784 +195 582 4 883822804 +209 813 5 883417810 +563 781 4 880507582 +486 117 3 879874939 +630 276 1 885667108 +795 1036 2 883255578 +514 229 3 875463525 +25 98 5 885853415 +382 357 4 875947149 +49 432 5 888066979 +290 651 3 880474034 +758 391 3 881980386 +292 96 4 881103568 +709 96 5 879848397 +451 938 4 879012772 +93 121 3 888705053 +642 138 4 886570173 +551 448 4 892783242 +222 476 3 877563739 +608 448 5 880406593 +771 222 2 880659709 +503 432 5 880472102 +524 321 3 884321179 +148 8 4 877020297 +296 19 5 884196524 +758 163 5 881976089 +606 151 5 878148493 +389 671 5 880087516 +663 1324 3 889492473 +755 690 5 882569574 +798 988 3 875295469 +746 566 4 885075367 +560 318 4 879975406 +788 692 3 880869106 +647 255 4 876534131 +664 45 4 878090415 +733 121 3 879536723 +399 450 2 882350791 +343 197 4 876404836 +664 684 4 876526580 +435 331 5 884130671 +298 193 5 884182867 +714 289 3 892778092 +457 7 4 882393278 +504 357 4 887832705 +308 99 4 887738057 +787 361 3 888979075 +758 373 4 882055347 +275 470 3 880314772 +695 995 4 888806150 +696 315 5 886403578 +795 636 3 883253661 +223 820 4 891550371 +271 499 3 885848971 +785 209 3 879439043 +798 1119 3 875916421 +582 15 3 882961481 +506 676 1 874945513 +367 184 5 876689990 +236 133 5 890116059 +350 654 5 882345918 +279 948 3 891209078 +716 186 3 879795867 +292 631 5 881105778 +798 164 4 875303502 +623 227 4 891034528 +303 1052 2 879544365 +497 1177 1 879363111 +694 617 4 875728181 +679 69 4 884487688 +731 504 3 886183209 +622 94 2 882671694 +442 209 4 883388283 +450 939 4 882376803 +82 197 4 878769847 +800 742 4 887646477 +767 187 4 891462658 +664 480 5 878091393 +561 656 4 885807455 +499 12 5 885599040 +804 11 4 879442954 +411 230 3 891035362 +682 240 4 888521637 +22 384 3 878887413 +506 755 4 874876486 +751 1661 1 889299429 +650 1031 3 891369480 +595 1023 1 886921977 +76 70 4 875027981 +152 155 5 884018390 +424 50 3 880859519 +458 546 3 886394863 +538 210 3 877106665 +480 863 4 891208356 +705 373 3 883428237 +748 678 2 879454233 +294 181 5 877819532 +328 798 2 885048159 +13 758 1 882397084 +747 3 2 888733567 +688 326 5 884153606 +644 127 4 889076775 +731 153 3 886182555 +72 553 5 880036638 +125 269 1 879454002 +432 276 4 889415947 +675 650 5 889489971 +493 288 4 884129823 +2 237 4 888552017 +640 568 4 874778569 +435 100 3 884131711 +727 271 4 883708149 +705 568 5 883428058 +70 222 4 884064269 +354 865 3 891217109 +429 92 4 882385684 +501 685 3 883347774 +655 1099 3 887428965 +711 40 4 879994875 +253 192 1 891628884 +756 92 3 874828027 +84 466 4 883453148 +655 750 2 887472879 +668 311 4 881591023 +174 125 5 886514069 +693 650 3 875482364 +280 58 4 891700514 +798 274 5 875295772 +303 875 4 879466291 +548 3 1 891415967 +579 333 4 880951372 +727 765 2 883712780 +803 286 5 880054592 +92 47 4 875654732 +287 952 4 875334036 +682 687 2 888518871 +234 625 3 892336286 +189 61 3 893265826 +18 269 5 880129305 +665 181 4 884291936 +532 269 4 891288537 +487 258 5 883440613 +186 258 1 879720880 +796 1042 4 893194740 +802 294 4 875984637 +275 450 3 876198296 +697 689 4 882621714 +101 151 3 877136628 +395 50 5 883763009 +754 476 4 879451742 +345 220 3 884991457 +378 43 3 880056609 +416 159 1 886317412 +593 723 4 875671890 +648 172 5 884367538 +118 672 4 875385257 +119 354 5 890626231 +145 219 5 877343185 +201 1423 3 884140853 +180 785 4 877128388 +637 323 1 882899182 +721 989 3 877137527 +796 159 3 893194685 +6 257 2 883599478 +655 165 3 887650512 +654 276 1 887863866 +788 70 4 880869908 +593 761 2 875671951 +533 66 4 879439204 +670 232 3 877975448 +216 56 5 880233608 +536 480 5 882359370 +476 239 4 883364475 +336 26 5 877757877 +557 750 4 884357373 +405 231 3 885548094 +638 679 3 876695259 +467 10 4 879532496 +308 1515 4 887738346 +454 260 1 888000454 +551 739 4 892784710 +580 687 3 884124583 +194 488 3 879521475 +130 185 5 875217033 +437 30 4 880140855 +796 540 2 893048672 +633 405 4 875325654 +610 419 5 888703241 +501 24 3 883348519 +18 208 4 880131004 +675 347 4 889488431 +773 188 3 888540091 +92 974 2 886443626 +780 199 5 891363723 +757 4 5 888466461 +248 156 5 884534945 +505 31 4 889334067 +486 1302 3 879874515 +151 178 5 879524586 +537 678 1 886029181 +623 222 4 891034110 +472 2 5 892790676 +680 815 3 877075312 +475 902 5 891451402 +588 778 3 890027600 +551 72 5 892783972 +514 194 4 875463525 +582 411 1 882962652 +524 32 4 884634679 +628 333 5 880777096 +764 31 4 876246687 +536 493 4 882359333 +733 298 2 879535502 +278 515 5 891295330 +484 82 4 891195444 +780 98 1 891364027 +181 259 1 878961668 +712 842 3 874957160 +537 20 3 886029974 +233 511 5 876021120 +709 230 2 879848551 +294 324 4 877818729 +443 309 5 883504866 +122 1045 4 879270605 +780 467 3 891363904 +786 449 2 882844096 +83 31 5 880307751 +642 174 5 885842594 +381 742 4 892697677 +666 517 4 880139563 +740 322 3 879522839 +7 513 4 891351772 +719 778 3 883982002 +788 205 4 880868068 +643 205 5 891447222 +733 248 3 879535752 +387 919 5 886479575 +758 286 5 880672230 +360 321 3 880354094 +430 19 5 877225623 +405 728 4 885547690 +738 56 4 875350418 +301 249 3 882074801 +666 82 3 880314194 +592 312 2 882607780 +568 656 3 877907281 +519 313 5 883248134 +586 173 3 884059287 +727 747 2 883712519 +622 833 4 882590955 +629 467 5 880117565 +56 732 4 892677147 +615 855 4 879448088 +766 510 3 891310038 +759 300 5 875227686 +548 326 4 891043278 +296 297 4 884196665 +766 135 4 891309053 +796 527 3 892675654 +754 742 3 879451991 +327 44 3 887745840 +450 608 4 882373088 +796 154 3 892676155 +143 315 4 888407542 +374 228 5 880395973 +106 191 5 881451453 +608 28 4 880405484 +775 348 3 891032804 +495 472 5 888635144 +802 286 2 875984532 +655 257 3 887474020 +378 747 3 880055597 +689 7 5 876676334 +253 1039 4 891628199 +610 28 4 888703258 +244 1118 4 880608087 +804 546 3 879443884 +756 554 1 874829152 +638 403 3 876695059 +758 128 4 881977625 +751 652 4 889133951 +407 89 4 875043948 +804 31 4 879442792 +792 111 3 877910126 +537 1103 4 886031407 +425 669 3 878737908 +229 751 3 891632164 +735 813 4 876698570 +717 111 4 884642479 +694 178 4 875727099 +774 127 4 888557198 +504 725 3 887911973 +793 298 4 875103971 +642 1311 3 886569715 +405 29 4 885545639 +151 614 4 879528729 +592 678 2 882607690 +194 282 3 879539614 +251 471 3 886272319 +566 31 3 881650825 +637 338 4 882900888 +371 1 4 877487440 +730 109 4 880310390 +141 696 4 884585498 +385 283 2 879439984 +775 286 4 891032741 +618 70 3 891307495 +92 179 5 875653077 +562 161 3 879196445 +689 250 5 876676334 +663 1276 3 889492679 +295 79 4 879517600 +600 184 3 888451750 +751 85 3 889297767 +619 22 5 885953992 +593 660 5 875671372 +758 69 5 881976233 +684 742 4 875810830 +660 1411 2 891201294 +465 56 4 883531110 +398 498 5 875657734 +500 471 4 883865391 +454 956 2 888266955 +749 15 5 878846841 +54 117 5 880935384 +763 210 3 878915015 +546 53 5 885141502 +642 376 3 885606194 +34 990 5 888602808 +496 421 3 876066229 +487 25 1 883445130 +650 404 3 891369443 +645 4 4 892055347 +614 147 5 879464332 +752 271 5 891208452 +344 98 4 884901180 +526 288 4 885681910 +535 152 4 879618385 +290 1 5 880474327 +303 187 5 879466631 +714 685 4 892777903 +524 447 5 884636182 +636 9 3 891448185 +731 419 4 886183039 +604 127 4 883667946 +535 692 4 879618880 +85 232 3 882995966 +642 216 3 885603083 +735 628 3 876698755 +159 456 3 880557848 +513 323 5 885062636 +560 255 4 879976109 +650 1149 4 891383856 +709 2 4 879848511 +378 582 5 889665232 +299 154 4 878191943 +782 878 3 891498918 +634 315 5 889464384 +600 96 5 888451664 +389 197 5 879991485 +455 393 3 879112152 +592 191 5 882955735 +255 827 2 883216958 +715 87 4 875963024 +798 151 3 875554819 +43 581 3 883956468 +250 123 3 878089837 +675 874 4 889488679 +770 1 5 875972219 +497 552 3 879362155 +777 216 4 875980597 +774 28 3 888556698 +313 143 3 891014925 +437 698 2 880142426 +86 304 3 879570149 +724 304 4 883757703 +487 286 2 883439831 +763 11 4 878918333 +104 847 2 888465263 +727 539 2 883708523 +194 651 3 879520991 +535 1474 4 879618207 +786 86 4 882843006 +434 111 5 886724540 +735 25 4 876698684 +474 88 4 887926106 +741 280 3 891458403 +453 628 3 887942025 +406 284 1 879539987 +712 79 4 874729850 +334 172 3 891548954 +132 286 3 891278680 +671 231 3 884035993 +454 99 3 881960296 +744 628 2 881172357 +682 570 2 888517948 +601 143 3 876351073 +140 304 4 879013747 +777 690 4 875979137 +766 134 5 891308968 +746 546 3 885075434 +774 185 2 888557683 +758 634 5 881975922 +705 191 1 883518871 +151 971 5 879528607 +608 1009 4 880406032 +457 1210 4 882549905 +796 270 4 892611799 +712 660 4 874730234 +745 8 4 880123627 +758 1501 3 881978258 +537 322 1 886029153 +474 193 4 887925497 +738 208 4 875350418 +682 423 5 888519206 +442 576 2 883390703 +374 50 3 880394367 +241 895 2 887250085 +792 595 3 877910305 +747 494 5 888639015 +776 442 2 892920480 +445 330 2 891199274 +466 68 3 890285159 +800 127 4 887646980 +500 217 4 883876053 +718 820 2 883349642 +716 611 5 879795496 +223 339 4 891549212 +180 222 5 877127815 +557 12 5 881179653 +399 1210 2 882348690 +492 528 5 879969878 +593 161 5 875671464 +768 65 4 887305100 +654 283 5 887863471 +709 447 2 879848167 +663 1048 4 889492562 +675 258 3 889488679 +758 656 5 881976032 +605 100 5 879425432 +318 1050 4 884496738 +272 200 5 879455043 +35 327 3 875459017 +305 478 3 886323275 +738 172 4 875349895 +581 269 3 879641348 +630 975 4 885667108 +647 993 4 876534131 +682 167 2 888522101 +651 327 4 880126473 +73 82 2 888625754 +620 946 4 889988036 +406 196 2 879446588 +621 87 5 874965408 +697 283 5 882622146 +452 86 4 875274683 +666 603 4 880567943 +621 894 1 883800011 +629 523 3 880116963 +634 717 4 875729794 +763 375 2 878923513 +766 366 3 891310875 +201 972 3 884140522 +291 212 4 874868027 +463 751 4 889943769 +497 202 4 878760023 +161 316 5 891170275 +676 114 5 892686606 +793 121 3 875104193 +639 111 2 891239613 +551 1135 5 892785331 +527 673 4 879456587 +795 100 5 880555946 +643 99 4 891447485 +716 1050 4 879797303 +699 221 4 878882667 +268 405 2 875742822 +648 17 2 884882078 +396 125 3 884646191 +487 77 3 883530814 +659 649 3 891386307 +782 1658 2 891500230 +515 269 2 887658844 +318 514 2 884496524 +608 357 5 880404916 +405 1021 1 885549543 +774 871 1 888558876 +354 485 4 891217659 +327 95 3 887818596 +661 272 4 893281023 +638 510 3 876694704 +752 310 1 891207791 +663 50 5 889493502 +804 204 4 879441450 +533 125 5 891263021 +532 147 4 888634802 +181 744 2 878962720 +62 210 4 879374640 +749 736 3 878847988 +715 735 4 875964224 +158 188 4 880134332 +497 797 3 879362586 +641 268 4 879369827 +416 755 4 893214333 +188 180 5 875073329 +608 8 2 880405484 +655 632 3 887523224 +720 269 3 891262608 +618 1 4 891308063 +617 313 1 883788511 +193 161 3 889125912 +705 255 5 883427152 +502 243 3 883702945 +59 504 5 888205921 +624 1089 2 879793408 +342 496 4 875319334 +648 169 5 882212651 +484 294 4 878060860 +617 669 1 883789635 +548 245 4 891042624 +753 898 4 891400364 +508 357 5 883767246 +303 665 4 879485475 +727 54 3 883711045 +677 845 3 889399327 +754 819 3 879452116 +772 879 4 877533731 +454 961 1 888267279 +181 1252 1 878962168 +299 239 3 878192601 +276 387 3 874787526 +781 288 2 879633862 +355 1392 4 879485760 +429 63 2 882387505 +600 161 4 888451908 +429 1209 3 882387350 +354 270 5 891216082 +747 327 4 888638425 +559 508 3 891034209 +488 190 5 891376046 +92 1023 2 892655775 +320 825 4 884749550 +234 199 5 892079040 +708 313 5 892718687 +606 939 4 880927247 +796 164 3 893194548 +707 208 5 886285939 +492 482 3 879969720 +339 327 4 891032150 +617 480 4 883789179 +567 47 4 882426696 +193 755 4 889126919 +343 523 5 876404647 +727 294 4 883708087 +584 423 4 885778263 +804 82 5 879442001 +276 254 2 874796373 +76 1153 2 882607017 +685 325 3 879451401 +752 340 4 891208077 +114 168 3 881259927 +416 735 5 893213549 +688 336 2 884153728 +671 597 4 884036365 +523 430 4 883702125 +650 612 4 891369656 +406 115 4 879446108 +500 282 4 883875092 +541 91 5 883874683 +783 346 5 884326424 +429 340 5 882384870 +655 387 3 888984538 +299 512 4 889501995 +573 50 4 885843738 +397 181 4 885349955 +6 127 5 883599134 +779 471 4 875993165 +328 89 5 885046344 +798 719 1 875743196 +621 419 4 874965093 +457 161 4 882397829 +7 655 5 891351384 +98 152 3 880498968 +276 678 3 874786419 +647 257 2 876776321 +521 240 3 884476067 +487 652 5 883530374 +721 877 3 877137285 +331 268 5 877196820 +618 202 2 891307714 +552 1051 3 879222238 +391 458 4 877399864 +672 124 3 879787922 +684 1 4 875810928 +177 302 4 880130379 +796 193 3 892662964 +606 647 3 880924663 +578 343 2 888957735 +710 1039 4 882063736 +406 47 4 880131741 +764 527 4 876339982 +712 692 5 874729995 +503 268 5 884637610 +774 52 3 888556659 +659 195 4 891384152 +425 234 3 878738853 +463 301 5 889936512 +236 117 3 890116818 +96 144 4 884403250 +495 559 4 888635180 +545 29 3 880347984 +702 288 1 885767306 +624 905 4 891961250 +698 421 2 886367366 +706 100 1 880997211 +685 327 2 879451234 +620 98 4 889987560 +693 514 4 875484431 +743 297 5 881277931 +474 660 5 887926999 +645 488 4 892053241 +587 332 4 892871171 +790 174 4 885155572 +379 208 4 880525214 +658 117 4 875145879 +561 155 2 885810785 +204 268 3 892388935 +324 678 3 880575277 +724 310 5 883757170 +694 181 5 875730386 +524 50 4 884634615 +706 50 5 880997142 +642 463 3 885602232 +504 99 3 887837739 +474 566 5 887926632 +429 684 4 882385882 +44 197 4 878347420 +592 1199 5 882608358 +799 479 5 879254026 +95 707 3 880572009 +592 1073 5 882956276 +782 346 2 891497854 +650 96 4 891369479 +347 977 5 881653224 +585 10 3 891286256 +643 32 4 891447459 +691 50 4 875543191 +619 82 5 885954053 +595 358 2 886920714 +679 419 3 884487514 +804 1076 3 879446162 +534 405 3 877807935 +562 286 4 879194616 +592 328 1 882607476 +599 274 5 880952144 +85 173 3 879454045 +301 162 3 882078287 +534 546 4 877808120 +588 42 5 890024529 +707 631 4 886286844 +469 286 5 879450367 +90 1204 4 891384959 +430 137 3 877225433 +524 549 4 884636931 +327 709 4 887819411 +719 121 1 879372253 +588 184 4 890025951 +588 165 2 890015649 +796 431 4 892676231 +716 729 2 879795375 +505 71 4 889333937 +449 285 5 879958572 +546 751 3 885139871 +613 194 5 891227299 +745 527 3 880123486 +131 813 3 883681466 +115 282 4 881171009 +805 319 2 881696876 +773 92 4 888540041 +747 591 2 888640776 +506 42 3 874873247 +528 173 5 886101610 +776 168 5 891628656 +295 155 4 879518715 +543 70 4 874863155 +176 262 4 886047292 +721 527 5 877140046 +452 163 4 886151027 +544 343 2 884796062 +574 327 3 891279122 +592 1226 4 882608873 +392 244 3 891038247 +790 38 2 885157929 +690 281 3 881180005 +225 705 5 879540707 +339 238 5 891032827 +1 127 5 874965706 +409 300 3 881104697 +267 81 4 878972434 +383 193 4 891193072 +303 385 4 879467669 +608 305 3 880402633 +623 194 5 891035112 +625 403 3 891961882 +543 684 4 874864737 +621 1028 4 880737861 +805 715 4 881698828 +465 174 3 883531409 +250 933 3 878089467 +354 464 4 891217512 +724 880 3 883757834 +407 514 4 875042675 +670 480 5 877975017 +312 1192 3 891699491 +763 213 4 878917468 +171 286 3 891034801 +194 629 3 879552401 +767 495 4 891463095 +708 763 4 877326158 +751 778 3 889297178 +255 117 2 883216845 +358 1006 5 891269913 +350 23 5 882345823 +660 774 3 891200594 +56 596 4 892683275 +798 138 3 876176160 +539 69 5 879787801 +215 77 3 891436690 +774 105 1 888558946 +774 520 3 888556398 +690 12 4 881179631 +486 319 3 879874388 +92 8 5 875654159 +749 195 5 878848639 +591 517 4 891040366 +795 502 3 883251421 +757 693 4 888467498 +707 529 4 886287376 +804 318 5 879441450 +194 540 1 879554950 +201 183 4 884112245 +346 219 2 875263664 +145 1289 1 875271660 +325 480 4 891478455 +504 142 3 887841158 +682 38 3 888521116 +522 134 5 876961020 +15 220 4 879456262 +387 679 5 886483194 +564 323 3 888730838 +588 684 4 890024246 +758 316 5 888020827 +796 399 4 893048471 +378 568 4 880055779 +268 92 4 875310745 +465 404 2 883532120 +13 398 2 882398410 +268 578 2 875744388 +790 284 4 884461888 +655 594 3 887430778 +216 64 5 881432544 +122 1267 4 879270769 +10 185 5 877888876 +508 52 4 883777047 +497 208 3 878759806 +746 56 3 885075211 +119 181 4 874775406 +743 268 4 881277551 +747 502 5 888733182 +747 1028 1 888733480 +416 2 4 886317115 +782 246 3 891499321 +788 639 3 880870710 +354 171 4 891306892 +607 30 4 883880180 +538 153 4 877106976 +804 588 4 879442687 +424 435 3 880859346 +802 323 5 875984722 +751 856 2 889134393 +758 387 2 881978495 +698 222 4 886366611 +429 174 4 882387773 +407 135 3 875119886 +342 192 4 875320082 +437 111 3 881002067 +308 152 5 887739292 +647 72 4 876534083 +551 77 3 892784130 +447 298 4 878854195 +711 132 5 879993150 +125 70 3 892838287 +16 661 4 877726789 +690 376 3 881177910 +532 315 3 888636423 +492 192 3 879969583 +503 12 3 879454675 +236 255 3 890116747 +710 310 3 882063224 +796 1119 4 892675528 +145 930 2 888398833 +76 1071 3 882606017 +753 515 5 891401712 +750 271 4 879445911 +143 326 5 888407708 +447 498 4 878856321 +343 561 3 876405172 +508 1153 4 883768797 +766 228 3 891309811 +804 399 4 879445111 +435 743 3 884134910 +727 424 1 883713454 +764 77 4 876246687 +593 286 5 875660009 +345 715 4 884993069 +806 324 2 882384513 +671 431 2 883546677 +763 258 3 878914901 +553 520 5 879949153 +796 491 4 892662964 +790 412 4 885158495 +57 471 4 883697134 +666 300 3 880138702 +254 118 4 886475406 +715 53 1 875963946 +104 332 2 888442305 +786 429 4 882843237 +657 109 1 884239886 +658 603 4 875147994 +608 461 4 880406507 +391 173 4 877399030 +291 670 5 874867785 +463 845 3 877385830 +802 452 4 875985976 +387 62 2 886483252 +388 315 3 886438122 +659 76 4 891383917 +648 498 3 884368130 +510 457 2 887667969 +135 470 4 879857931 +450 631 4 882394251 +716 211 5 879796171 +493 890 3 884130074 +484 699 4 891195773 +763 461 4 878915015 +437 174 5 880140122 +417 55 5 879647900 +346 657 4 875260577 +548 331 4 891042530 +436 23 4 887770064 +222 156 4 878183777 +790 1183 2 885157956 +804 198 5 879441391 +707 191 5 880061699 +59 32 4 888205228 +514 747 4 875463245 +455 1171 3 882141702 +495 395 1 888637147 +363 552 4 891497853 +486 975 3 879874783 +58 153 5 884304896 +363 919 5 891494659 +655 466 3 887474630 +624 125 3 879793093 +281 289 3 881200704 +608 475 3 880405971 +796 517 2 893047208 +796 795 3 893219254 +425 168 5 890347172 +301 562 3 882077256 +452 729 1 885981574 +497 652 5 878759777 +605 873 3 879365219 +654 252 2 887864031 +675 311 3 889488647 +542 41 4 886533068 +524 186 3 884634995 +682 549 3 888517415 +554 595 3 876232109 +157 111 3 886889876 +689 222 5 876674954 +485 748 2 891041551 +42 369 4 881105931 +764 100 4 876242649 +435 45 5 884131681 +56 300 4 892675935 +159 67 1 884026964 +207 526 4 875509507 +501 13 4 883348011 +534 1327 2 877808281 +525 322 2 881085256 +591 1028 3 891039658 +381 418 3 892696471 +654 100 1 887863436 +221 151 1 875246008 +523 384 3 883703495 +698 434 4 886366515 +599 763 5 880952316 +611 262 4 891636223 +805 17 4 881695346 +562 143 5 879196074 +13 70 3 882140691 +804 433 4 879444714 +416 8 5 893212484 +5 450 1 875635962 +619 385 5 885954053 +601 163 4 876350400 +667 131 5 891034810 +733 242 4 879535011 +663 619 4 889493182 +585 1449 5 891283338 +712 699 5 874956586 +660 1020 4 891199833 +654 739 4 887864886 +458 147 2 886395065 +724 908 1 883758208 +91 657 4 891439130 +130 179 4 875217265 +269 163 2 891449751 +506 418 4 874874055 +687 264 3 884652197 +662 813 3 880570194 +768 1016 2 883834814 +497 233 2 879310883 +805 387 3 881696905 +60 479 5 883326301 +712 416 3 874957113 +769 15 3 885423824 +532 411 3 874792031 +699 929 3 879147366 +109 210 5 880573084 +256 284 4 882151576 +537 178 4 886030767 +751 659 5 889133012 +776 496 3 891628708 +130 827 4 876251312 +59 591 4 888203270 +125 746 3 879455018 +387 10 4 886481228 +378 269 4 890513693 +642 862 4 892241015 +660 68 4 891199391 +455 14 3 883768822 +711 732 4 879994495 +798 1224 2 875638842 +593 580 1 876507120 +804 231 4 879445334 +321 275 4 879440109 +521 402 3 885253501 +744 482 3 881171420 +606 175 4 880927127 +551 324 3 892775824 +658 952 2 875145926 +406 277 3 879540106 +724 288 4 883757597 +7 638 4 892132122 +504 1118 3 887911035 +244 118 2 880604981 +459 16 2 879562939 +379 210 4 883156880 +279 456 3 875296924 +798 196 3 875743006 +687 319 4 884652276 +340 179 1 884989963 +749 187 3 881073104 +475 70 4 891627606 +645 430 5 892054797 +428 1280 3 885944069 +458 181 2 886396824 +715 89 3 875963538 +89 1 5 879461219 +758 827 3 882055257 +25 23 4 885852529 +682 150 4 888517197 +592 744 3 882608500 +734 172 4 891022212 +796 742 3 892660505 +487 176 5 883445540 +716 866 3 879794200 +343 28 5 876404793 +498 464 4 881958471 +757 207 2 888468632 +733 1171 3 879535780 +265 100 5 875320601 +532 535 5 888637085 +394 578 2 880888927 +755 304 4 882569881 +747 497 5 888639890 +254 343 2 886470904 +59 684 3 888204553 +661 28 5 876013975 +537 614 3 886031473 +655 1171 3 887426200 +699 268 4 884152267 +738 69 5 892844079 +602 9 4 888638490 +727 187 5 883710104 +676 352 1 892685875 +267 579 3 878973126 +748 144 4 879454707 +486 10 4 879874871 +624 150 4 879792493 +592 344 4 888553156 +514 197 4 875310992 +758 1098 5 881976746 +243 116 4 879987526 +398 66 4 875736732 +24 402 4 875323308 +790 139 2 885157748 +796 871 1 893219001 +627 651 4 879530109 +308 274 3 887738760 +699 252 4 879148050 +793 824 3 875104000 +309 989 3 877370383 +787 269 3 888979547 +299 99 3 889501790 +690 712 4 881177880 +293 232 2 888907384 +758 765 2 881980315 +90 732 5 891383241 +92 658 3 875654353 +721 382 4 877147675 +786 187 4 882843112 +539 487 3 879788101 +533 1147 3 879439204 +216 396 3 880245260 +788 71 3 880868144 +121 237 5 891388708 +806 405 3 882385762 +727 284 3 883709607 +222 1035 2 881060015 +568 486 4 877907720 +741 228 2 891455610 +420 301 3 891357188 +630 1055 3 885667898 +374 225 3 882158071 +774 179 5 888556634 +380 549 3 885479926 +151 151 5 879524760 +416 154 4 876699839 +595 952 5 886921424 +357 1028 5 878951729 +763 151 4 878923488 +535 1039 4 879618058 +486 245 3 879875441 +601 156 4 876348782 +794 475 5 891035822 +775 258 4 891032837 +394 68 5 881058419 +655 48 4 887472744 +587 895 4 892871113 +221 174 4 875245514 +82 79 3 878769334 +807 399 4 893080801 +774 238 5 888555928 +711 401 3 879995405 +276 173 5 874791993 +327 523 4 887818800 +745 203 3 880123696 +194 516 3 879522021 +704 655 3 891397190 +489 748 4 891366838 +123 432 5 879873120 +659 182 4 891332044 +421 127 4 892241624 +654 385 4 887864308 +347 156 5 881653652 +671 33 5 883949781 +771 993 4 880660199 +807 419 5 892528813 +198 707 2 884207009 +323 179 4 878739904 +593 278 3 875659686 +222 363 2 877563852 +254 665 2 886475234 +650 849 2 891381745 +455 252 3 879110818 +290 527 4 880474590 +221 94 3 875246857 +735 147 1 876698643 +711 50 4 876185648 +303 386 4 879485352 +739 969 1 886959039 +280 384 4 891702137 +561 345 4 885806823 +758 412 5 882054797 +788 504 4 880867970 +806 629 3 882389862 +798 116 3 875554781 +470 360 2 879189269 +450 167 5 882469863 +748 196 3 879454958 +706 1 4 880997324 +3 325 1 889237297 +639 510 3 891239862 +145 1210 1 888398766 +279 198 3 882456211 +378 186 3 880055186 +707 382 3 886287191 +581 285 5 879641533 +655 1009 2 887523271 +561 46 4 885808796 +561 1015 2 885810060 +777 56 5 875980670 +766 588 3 891309484 +161 210 2 891171698 +342 499 5 875319912 +592 98 5 882955918 +695 346 5 888806011 +174 50 4 886433166 +751 1007 4 889132222 +782 288 4 891498079 +655 215 2 887472943 +693 357 5 875482169 +181 595 2 878962918 +591 381 4 891040366 +532 52 4 888629446 +569 405 3 879794498 +177 129 3 880130653 +276 624 2 874792969 +327 160 4 887822209 +499 198 5 885599682 +8 181 4 879362183 +773 56 2 888539328 +568 612 3 877907720 +807 117 4 892528813 +518 475 4 876822811 +717 274 4 884642581 +600 29 2 888452490 +627 673 2 879530110 +738 496 4 875351346 +727 356 3 883712365 +699 244 3 878882319 +268 156 3 875745398 +792 124 4 877909865 +109 834 3 880583308 +456 181 3 881373120 +611 873 3 891636399 +407 232 3 876344993 +488 269 3 891293606 +755 269 5 882569604 +177 340 4 880130415 +727 69 4 883710186 +704 302 4 891397015 +641 496 2 879370337 +287 1067 2 875334036 +648 215 2 884796689 +768 756 3 883835053 +291 1277 4 874834019 +757 89 4 888445279 +739 286 2 886825020 +682 977 3 888521090 +724 872 1 883757537 +22 290 5 878886607 +401 302 3 891031464 +557 298 5 881095916 +380 98 4 885478698 +83 862 4 883868805 +798 480 3 875303765 +643 790 4 891449249 +537 523 3 886030682 +218 186 3 877488366 +406 182 4 879445734 +417 452 2 880952970 +467 269 4 879532145 +682 100 3 888517011 +611 887 2 891636125 +561 168 4 885807261 +591 792 4 891031383 +741 785 3 891457371 +548 925 2 891415709 +16 172 5 877724726 +214 496 4 891544545 +543 134 5 874862967 +543 16 3 875655073 +746 232 3 885075304 +707 723 3 886286954 +577 77 3 880475561 +727 1088 2 883709884 +797 307 2 879439190 +372 299 4 876869147 +146 315 5 891458193 +109 748 3 880562908 +801 890 2 890333150 +459 249 2 879562860 +425 520 3 890347085 +385 53 1 879446110 +790 123 3 884461413 +551 66 2 892783281 +432 628 5 889416398 +704 735 4 891397305 +805 321 3 881705292 +313 465 3 891030096 +506 582 3 874873423 +748 258 5 879454081 +709 27 3 879848590 +459 815 4 879563102 +663 31 4 889493628 +749 69 5 878847576 +405 43 1 885546680 +145 176 5 875271838 +561 955 3 885808738 +37 827 3 880915607 +435 399 3 884133253 +305 285 5 886322930 +780 208 3 891364125 +640 231 5 874778424 +450 693 3 887139232 +416 295 5 893213405 +496 1229 1 876071097 +782 294 3 891498381 +45 282 4 881008636 +474 302 5 887914615 +326 385 3 879876882 +712 73 5 874730293 +796 932 4 893219254 +210 792 3 887730532 +655 265 3 887477314 +435 573 1 884132515 +653 722 1 880152800 +472 210 5 875981664 +748 135 4 879454998 +372 595 4 876869878 +698 489 3 886367849 +579 748 3 880951569 +776 127 5 891628731 +642 864 3 885605987 +796 496 5 892662223 +367 413 4 876689879 +499 313 5 885597821 +198 531 5 884207525 +578 1098 2 890939753 +325 529 4 891478528 +736 248 4 878709365 +207 302 4 891759118 +747 952 2 888733630 +393 385 4 887746207 +749 477 3 878848405 +782 310 4 891497963 +475 50 5 891627857 +809 678 2 891037172 +522 23 5 876961248 +608 549 4 880405824 +806 705 4 882387595 +489 892 3 891449532 +659 739 4 891387022 +535 654 5 879617856 +668 323 4 881591198 +543 102 4 874863155 +452 1383 1 886149828 +804 85 4 879445190 +59 792 4 888206362 +749 194 5 878847541 +681 304 3 885409742 +537 435 3 886031933 +561 367 3 885809583 +605 597 3 879427755 +125 72 4 892838322 +514 462 4 875310992 +234 30 4 892335951 +805 595 3 881695951 +711 111 2 876185574 +608 1039 5 880406552 +396 471 4 884646263 +697 336 3 882621523 +301 431 4 882078008 +399 15 5 882340828 +405 71 1 885548836 +743 311 5 881277551 +658 178 5 875148195 +796 765 3 893047691 +756 100 5 874831383 +711 735 5 886030557 +569 1284 2 879795512 +569 756 3 879794660 +189 4 5 893265741 +656 269 3 892318343 +92 1090 3 875907079 +342 381 5 875320312 +536 408 5 882318561 +690 159 3 881180005 +232 69 3 888549376 +82 286 4 876311004 +760 604 4 875668219 +807 385 4 892530349 +609 475 2 886896281 +782 308 4 891498030 +707 582 5 886286433 +290 323 3 880473346 +540 508 4 882156983 +489 1280 3 891447653 +707 1530 3 886288356 +327 338 1 887743815 +440 1265 5 891548567 +133 343 2 890589188 +312 10 5 891699455 +254 29 2 886474847 +184 496 5 889908539 +579 245 2 880951595 +754 255 3 879451585 +809 289 1 891037020 +138 45 5 879024232 +133 269 4 890588766 +363 449 3 891498863 +804 49 2 879447476 +561 276 4 885807713 +561 203 4 885807261 +479 180 4 879460819 +378 106 2 880334241 +718 274 3 883349363 +778 265 4 890726003 +524 496 2 884637314 +711 10 5 876185943 +650 654 3 891369890 +124 7 4 890287645 +644 237 4 889076775 +745 286 1 880123905 +330 185 4 876546236 +586 127 4 884057313 +355 288 5 879485523 +201 396 3 884114682 +152 778 3 882476683 +100 272 4 891375629 +551 732 4 892783711 +788 708 2 880869908 +325 105 3 891480175 +7 145 1 891354530 +479 1142 5 879459939 +104 50 5 888465972 +365 846 3 891304152 +632 588 2 879457217 +748 514 4 879454749 +523 210 5 883702209 +291 21 2 874834389 +525 1315 4 881086393 +551 73 2 892784130 +533 871 2 879192730 +276 881 3 885537717 +661 173 4 876014469 +558 1068 2 879435896 +463 870 2 877385615 +727 282 4 883709157 +516 660 5 891290593 +525 405 4 881086693 +447 98 4 878855873 +604 558 4 883668175 +556 187 5 882136396 +804 192 4 879441752 +795 4 4 881253238 +622 156 5 882592143 +206 360 1 888180081 +733 1658 3 879535780 +484 7 4 881449706 +677 1240 5 889399671 +532 318 5 893119439 +95 177 3 879196408 +389 674 2 880088900 +671 5 2 883949781 +711 286 4 876185488 +627 96 3 879531196 +379 173 5 880525259 +535 721 3 879618464 +815 196 4 878694526 +159 988 3 880485529 +666 197 4 880568129 +785 22 4 879438957 +709 939 4 879847082 +360 210 4 880356166 +671 4 5 884035939 +468 100 5 875279269 +493 300 4 884129725 +321 611 4 879439832 +144 54 2 888105473 +307 172 5 879283786 +727 1218 4 883712068 +276 479 5 874836703 +659 664 4 891386380 +272 651 4 879454797 +804 550 4 879445739 +650 416 3 891387312 +634 1009 2 875729794 +711 248 5 886030732 +537 346 3 886028544 +593 966 5 886193788 +650 715 3 891383206 +527 70 4 879455873 +496 10 5 876064845 +7 601 5 891353744 +763 22 4 878921853 +51 134 2 883498844 +653 381 2 880606620 +354 238 4 891217394 +655 207 3 888893279 +617 219 4 883789536 +763 275 5 878915958 +712 402 4 874729935 +509 345 1 883590115 +293 589 4 888906677 +87 1185 4 879876885 +295 89 5 879519555 +606 99 4 880923799 +90 8 5 891383424 +508 98 3 883767140 +450 431 5 882473914 +642 90 4 885606024 +617 201 1 883789465 +648 202 5 884881524 +298 265 4 884127720 +621 1013 2 880738282 +501 405 4 883347857 +339 191 5 891033676 +524 402 2 884636617 +739 132 4 886959039 +802 447 2 875985686 +387 241 1 886483194 +679 291 4 884487960 +18 204 3 880131407 +606 531 5 880924188 +670 98 2 877975731 +807 465 4 892529448 +497 420 3 879309993 +389 1050 4 879991242 +220 340 4 881197663 +592 875 4 882607434 +804 1222 3 879446276 +642 313 5 886454784 +650 571 3 891387915 +675 312 2 889488624 +716 527 5 879795813 +727 72 3 883712476 +766 423 3 891309844 +655 1501 3 887523200 +625 257 4 891273543 +654 591 5 887863412 +748 319 3 879454107 +721 324 3 877137447 +807 471 4 892775416 +796 49 3 893047287 +545 31 4 884133988 +313 520 5 891013939 +817 748 4 874815649 +6 425 3 883602865 +82 822 2 878769262 +653 563 1 880153406 +677 457 1 889399113 +417 783 3 879649064 +641 89 4 879370364 +664 12 5 876524699 +782 678 3 891498767 +786 200 5 882844010 +532 4 5 893119415 +715 976 1 875962339 +553 638 3 879948732 +708 255 5 877325601 +404 245 3 883790401 +639 750 2 891238514 +749 951 4 878848533 +521 31 3 884478135 +506 478 4 874873067 +694 1455 3 875727061 +773 234 2 888540279 +387 856 5 886484124 +390 286 4 879693461 +804 213 3 879441651 +454 842 2 881960266 +553 190 5 879949251 +251 24 3 886272283 +89 475 5 879441307 +752 288 5 891208452 +807 250 4 893084375 +749 472 4 878849149 +756 161 3 874831194 +624 7 4 879792623 +662 319 3 880569520 +749 78 3 878850632 +328 192 4 885045805 +499 497 2 885599498 +276 3 3 874786924 +88 354 5 891037708 +450 1521 3 882812350 +600 181 4 888451491 +307 1065 3 879205470 +677 471 4 889399171 +440 329 5 891548567 +805 755 3 881705810 +721 1296 3 877137285 +805 747 3 881696729 +267 483 5 878971463 +84 486 5 883453664 +806 177 3 882388254 +436 763 4 887771042 +102 288 2 887051621 +569 685 4 879794075 +537 180 4 886031342 +399 779 4 882350850 +60 89 5 883326463 +633 128 3 875325225 +627 578 3 879531351 +109 391 2 880581127 +181 1328 1 878962240 +710 603 4 882063921 +476 88 4 883364717 +561 2 3 885809752 +771 154 2 880659426 +708 748 4 892719033 +751 50 5 889132162 +693 660 3 875483020 +5 235 4 875635384 +655 152 3 890887261 +666 270 3 880138720 +575 294 1 878146447 +716 837 4 879796475 +234 867 4 892826174 +805 176 4 881684185 +648 414 1 884797033 +712 739 4 874729935 +268 562 4 875744357 +698 205 4 886367013 +234 130 1 892336194 +13 586 3 882398326 +763 1268 5 878918933 +705 231 3 883428201 +382 23 5 875946978 +374 12 4 880395202 +287 652 4 875335018 +420 484 5 891356864 +821 742 4 874793130 +634 125 4 875729710 +197 82 5 891409893 +406 15 4 879540051 +770 255 4 875972099 +307 580 4 879283514 +708 304 4 892718876 +671 96 5 884035686 +409 205 3 881107992 +474 64 5 887924027 +130 944 4 876252042 +539 962 4 879788195 +738 380 3 875351530 +518 1114 2 876824079 +758 1111 4 881977375 +533 94 4 879192184 +368 100 4 889783407 +213 597 5 878871062 +104 271 1 888442370 +652 245 4 882567058 +795 235 3 880560263 +501 111 3 883348474 +773 384 2 888539766 +576 248 4 887169019 +642 755 3 885603495 +210 451 3 891036054 +708 148 4 892719246 +762 237 3 878719294 +358 855 3 891269464 +188 76 4 875073048 +711 731 4 879994656 +530 815 4 886202404 +655 302 4 887424720 +774 208 2 888555897 +263 133 5 891298977 +543 576 4 877546306 +325 482 4 891478333 +320 183 4 884749255 +539 133 4 879788136 +758 997 4 881979969 +591 210 3 891031469 +552 250 3 879222336 +763 742 4 878921584 +758 302 5 882848498 +758 480 5 881975213 +815 944 3 878696318 +213 582 4 878955442 +561 1035 3 885810390 +467 24 4 879532496 +452 496 5 875261666 +537 543 5 886031074 +422 561 3 879744143 +666 489 4 880314194 +680 15 3 877075048 +768 845 2 880135875 +796 576 3 893048562 +688 754 5 884153606 +43 131 3 883954997 +557 529 5 881179455 +492 100 4 879969292 +268 268 5 876513491 +221 227 3 875247522 +790 232 4 885156773 +28 573 4 881961842 +625 517 3 891636079 +818 302 5 891870264 +381 509 5 892696872 +712 1043 3 874956788 +587 355 3 892871610 +655 919 2 888474490 +805 475 5 881704016 +774 672 1 888557772 +627 55 4 879531301 +543 204 4 874864737 +788 601 4 880868876 +456 186 4 881374048 +514 97 5 875462764 +795 407 3 880560679 +673 328 4 888787355 +75 322 1 884049789 +459 989 5 879561708 +648 825 4 882212039 +7 506 5 891353614 +793 294 5 875103584 +747 91 5 888640820 +538 22 5 877107232 +814 565 3 885411347 +588 747 4 890025797 +255 443 1 883216544 +741 38 2 891455832 +805 576 4 881695040 +747 135 5 888640437 +761 678 2 876189689 +806 182 5 882387925 +773 1021 5 888539011 +495 417 3 888636741 +524 107 3 884628284 +655 275 4 887425845 +378 1101 3 880055983 +181 1161 1 878962119 +704 136 4 891397819 +650 526 4 891369554 +435 567 3 884133785 +290 28 5 880474235 +6 1 4 883599478 +50 15 2 877052438 +529 328 4 882535256 +495 132 4 888632916 +639 178 5 891240543 +798 932 4 875637927 +328 73 4 885048062 +693 509 3 883975500 +5 169 5 878844495 +517 333 3 892659922 +595 748 2 886920655 +184 301 3 889907045 +618 507 4 891309239 +606 747 4 880927468 +110 468 3 886988202 +716 425 5 879796279 +236 274 1 890117073 +812 288 4 877625294 +16 71 5 877721071 +682 79 4 888520705 +91 56 1 891439057 +792 1132 3 877910160 +391 483 3 877399423 +561 196 4 885808620 +320 732 3 884751013 +189 517 4 893265535 +90 322 4 891382658 +336 151 1 877759473 +424 740 5 880859674 +400 258 5 885676316 +815 386 2 878696563 +786 231 2 882844127 +709 293 4 879847879 +798 21 5 875554953 +734 482 2 891025591 +159 1092 2 880989744 +605 22 4 879424548 +742 181 3 881335281 +627 636 4 879531302 +244 1041 4 880608788 +335 322 4 891567125 +130 1245 3 876251312 +552 826 2 879222002 +721 755 4 877139773 +796 716 3 893047167 +633 5 3 877212085 +298 215 5 884182685 +753 96 1 891401366 +526 508 4 885682590 +699 1615 3 883884998 +221 809 3 875247775 +279 515 3 875295943 +805 527 3 881698798 +500 100 4 883865104 +292 2 4 881105778 +474 22 4 887924571 +305 431 4 886323806 +751 100 4 889132252 +378 709 4 880055921 +622 795 2 882672079 +658 32 3 875147800 +548 678 4 891043547 +633 1019 4 875324766 +566 204 3 881649828 +399 268 3 882340284 +688 259 5 884153750 +748 173 4 879454831 +383 238 5 891192836 +216 466 4 880234347 +776 436 4 892920350 +303 144 5 879467035 +655 1223 3 891585242 +121 347 3 891389304 +749 468 3 878848333 +545 569 3 879900011 +457 82 5 882397494 +627 27 3 879530762 +623 291 3 891034129 +655 89 4 887650683 +738 298 3 875348670 +615 428 5 879449111 +57 1001 1 883698039 +798 586 2 875303765 +342 262 2 874984025 +216 238 5 880244446 +230 496 5 880484501 +59 240 2 888203579 +730 300 3 880309964 +618 1048 3 891308980 +500 1160 5 883865483 +823 94 2 878439497 +545 99 4 880347957 +551 88 4 892783314 +806 407 3 882386125 +671 684 3 883546890 +568 242 4 877906547 +709 860 3 879848318 +659 356 3 891385012 +367 637 3 876690021 +664 196 4 878090054 +671 144 4 884035686 +622 395 2 882672143 +768 117 4 883834981 +655 770 2 892011201 +567 205 3 882425736 +676 845 5 892686398 +555 181 5 879962172 +715 318 5 875963867 +474 709 5 887928755 +489 333 4 891362740 +566 318 4 881649471 +417 82 4 879647326 +805 222 4 881694823 +630 174 3 885668131 +622 169 5 882669374 +354 478 5 891217365 +332 125 5 887938224 +796 488 2 892662400 +303 228 4 879467574 +751 56 4 889132775 +517 405 4 892659893 +748 710 3 879455410 +385 133 1 879441728 +682 294 3 888516841 +416 183 5 893214127 +766 99 3 891309810 +788 570 3 880869862 +576 50 4 887081005 +757 1090 2 888467187 +543 89 4 877545605 +59 644 4 888205033 +746 550 4 885075367 +268 88 2 875743760 +570 258 3 881262189 +158 233 3 880134477 +548 1013 3 891043910 +642 418 5 885606581 +305 749 2 886308111 +532 708 4 877634392 +521 109 5 884475845 +702 300 3 885767461 +710 142 3 882064377 +788 403 3 880870516 +101 411 2 877136891 +704 1454 3 891397441 +306 1514 4 876504614 +768 257 4 880136012 +1 16 5 878543541 +805 473 4 881695591 +626 313 5 887772871 +222 109 3 878184136 +234 492 3 892078936 +642 234 1 885603662 +747 205 5 888639102 +655 1421 3 887523477 +788 54 4 880869174 +790 449 2 885157594 +178 658 5 882827162 +7 433 5 892135347 +529 288 4 882535353 +222 185 4 881059419 +592 327 4 882607387 +83 38 5 887665422 +805 96 4 881694713 +226 509 4 883889322 +508 196 3 883776704 +787 292 3 888979236 +804 365 4 879446194 +322 654 5 887314118 +535 284 4 879619144 +665 214 4 884294935 +63 1 3 875747368 +378 59 4 880046475 +11 434 4 891904270 +404 66 4 883790883 +663 127 5 889493540 +620 820 4 889987954 +320 751 4 884748470 +724 344 1 883757468 +676 259 4 892685621 +303 1220 2 879484899 +710 313 4 882860832 +276 392 3 874790996 +488 1050 4 891294568 +659 629 4 891386680 +44 553 3 878347847 +665 815 4 884290608 +561 22 3 885809223 +684 386 3 878759184 +798 197 2 875303502 +655 921 3 887474656 +530 660 3 883785464 +671 742 5 884035173 +788 188 4 880870083 +42 151 4 881110578 +806 3 2 882385916 +694 423 5 875727018 +536 121 4 882318820 +749 732 4 878848452 +650 631 3 891383424 +720 749 3 891262812 +806 192 4 882387798 +122 190 4 879270424 +798 1089 3 875295616 +7 649 5 891353254 +682 282 4 888519918 +452 509 4 875560790 +200 71 4 884129409 +535 942 4 879619035 +660 33 2 891200193 +620 125 2 889987255 +772 326 4 877533625 +674 1 4 887762799 +790 376 2 885157533 +429 172 5 882385118 +747 153 4 888639989 +456 582 5 881374162 +794 50 5 891035307 +510 323 4 887667752 +299 153 3 877881320 +618 942 2 891309293 +795 186 3 883249522 +653 385 4 878854190 +435 821 2 884132840 +554 405 4 876550654 +313 588 4 891016354 +682 476 1 888522100 +671 161 5 884035892 +712 215 3 874730031 +660 680 2 891405088 +116 607 2 876453961 +450 602 4 882373532 +280 22 5 891700552 +178 720 3 882827645 +776 164 3 892920290 +727 542 2 883712993 +804 654 3 879441651 +234 520 4 892078890 +686 176 3 879545413 +254 432 2 886473158 +342 461 3 874984315 +42 318 5 881107718 +435 222 3 884132027 +780 133 5 891364086 +617 183 4 883789386 +809 272 5 891036743 +768 70 4 888798611 +764 1152 3 876242755 +224 699 4 888103703 +738 42 2 875350012 +769 546 4 885424242 +804 81 4 879441913 +660 106 2 891903867 +334 82 4 891547083 +803 271 2 880054833 +176 93 5 886047963 +425 118 1 878738596 +2 300 4 888979197 +550 877 4 883425723 +398 523 4 875717779 +531 338 1 887048938 +174 780 1 886515030 +608 939 4 880405896 +708 756 2 877326062 +788 194 4 880870052 +786 180 4 882843112 +97 186 3 884239574 +698 220 3 886367874 +158 10 4 880132513 +530 88 4 890627443 +499 474 4 885599227 +405 1261 1 885546529 +301 218 4 882076643 +606 250 4 878143047 +700 50 5 884493899 +796 168 5 892662871 +766 654 4 891309090 +655 955 3 887860615 +804 609 3 879444583 +354 42 2 891217512 +796 202 4 893047167 +454 98 1 888266433 +92 627 3 875654159 +20 496 5 879669244 +243 191 5 879989217 +151 652 5 879524472 +210 708 5 887731391 +181 285 2 878962816 +716 490 4 879794870 +236 50 3 890116059 +532 498 4 888629124 +757 217 3 888467381 +262 56 4 879792027 +422 672 3 879744086 +423 823 3 891395759 +556 294 2 882135855 +87 13 3 879876734 +611 355 1 891636399 +559 226 5 891034688 +756 176 4 874828826 +688 329 5 884153606 +825 111 3 892947930 +715 172 4 875963452 +629 381 4 880117852 +804 151 3 879442412 +519 351 5 883250102 +243 737 3 879988557 +552 932 3 879222194 +807 239 4 892529805 +216 655 5 880233726 +817 124 4 874815885 +543 715 3 877550534 +543 709 3 874866535 +627 423 3 879530145 +601 389 2 876350537 +764 597 4 876243440 +619 346 3 885953622 +294 117 4 877819634 +554 596 3 876232758 +571 462 4 883354992 +508 200 4 883768842 +345 268 4 884900448 +292 64 5 881105373 +773 433 3 888539471 +367 564 2 876690077 +773 238 4 888539347 +726 257 3 889831166 +655 297 4 888474107 +347 195 4 881653603 +292 248 4 881103999 +88 286 5 891037111 +207 143 4 878191679 +489 258 5 891366570 +711 1046 3 879994367 +360 1039 5 880356131 +709 470 3 879847026 +690 739 3 881180564 +796 26 2 893047208 +178 1011 3 882824431 +823 211 5 878438585 +608 64 4 880405165 +535 193 4 879618700 +776 21 3 892313317 +449 1011 4 879958685 +466 98 3 890285762 +567 183 4 882425701 +771 91 4 880659815 +760 278 4 875666242 +727 42 5 883710375 +350 483 5 882347734 +650 155 2 891384249 +164 471 5 889402245 +738 79 3 875351019 +487 272 5 885322350 +804 175 4 879444583 +130 329 4 874953337 +763 196 4 878919206 +596 181 4 883539431 +694 203 4 875728801 +716 521 3 879796846 +671 864 3 884204727 +807 636 4 892530752 +389 118 2 880088900 +521 967 3 885254071 +749 216 4 878848137 +712 722 3 874957086 +770 118 4 875973080 +625 516 3 892000518 +721 732 4 877147079 +805 447 4 881695293 +608 56 5 880403690 +610 50 4 888702961 +216 67 3 881721843 +513 50 5 885062365 +771 949 5 880659941 +425 398 1 878738597 +639 97 1 891240495 +286 462 5 877531537 +339 546 4 891036423 +25 929 4 885852178 +746 157 4 885075590 +25 430 4 885852920 +293 213 3 888906905 +749 781 4 878849979 +62 474 4 879373613 +653 128 3 880606620 +802 327 2 875984861 +472 132 5 875979853 +769 934 4 885424462 +534 149 2 877808237 +535 194 5 879617663 +62 652 4 879375364 +305 1018 5 886324580 +733 14 5 879535368 +727 131 2 883711699 +591 615 4 891031116 +815 173 5 878695241 +434 743 1 886725027 +429 1089 2 882387053 +343 276 5 876403078 +747 739 3 888734072 +682 11 4 888517049 +345 305 4 884900483 +653 930 4 880148885 +420 270 3 891356790 +541 418 5 883874646 +655 188 3 888474807 +268 39 3 875309914 +732 882 5 882589819 +711 724 5 879995461 +500 9 4 883865042 +184 1297 2 889910257 +758 527 5 881977169 +709 637 3 879848168 +593 143 4 886193303 +795 675 3 883251659 +264 201 5 886122261 +566 182 4 881649428 +642 254 4 886454812 +752 896 3 891207846 +464 248 5 878354998 +699 250 4 879148050 +661 647 4 876013356 +684 208 3 878761120 +70 538 2 884066399 +827 329 3 882807787 +270 123 5 876954223 +790 29 2 885158082 +537 234 3 886031211 +113 258 5 875075887 +748 86 4 879455126 +37 930 3 880915711 +634 763 3 875729825 +642 723 4 886132088 +655 1378 3 887523176 +393 357 2 887745815 +284 302 4 885328906 +708 597 2 877326345 +774 1182 1 888556278 +715 1045 2 875965171 +654 300 5 887863017 +671 12 5 883546120 +451 884 1 879012890 +416 378 5 893212896 +749 148 3 878850212 +727 95 4 883710948 +354 494 4 891217194 +178 233 4 882827375 +500 285 3 883865020 +823 81 4 878437836 +716 481 4 879795025 +416 191 5 893213019 +536 736 5 882360264 +796 174 5 892662069 +637 274 5 882904065 +825 423 5 881101641 +802 444 4 875985840 +184 220 3 889908264 +561 67 1 885810240 +751 272 4 887134672 +677 1245 4 889399199 +524 517 4 884635136 +806 654 5 882387837 +645 73 3 892055445 +642 153 3 885602572 +595 246 4 886921068 +774 31 1 888558284 +628 292 5 880776981 +644 323 4 889076433 +648 1 5 882211109 +254 629 2 886472337 +593 155 5 875671579 +65 1 3 879217290 +782 264 4 891498381 +473 302 4 878156824 +224 328 4 888081947 +435 1151 1 884134019 +586 23 2 884058674 +95 257 5 879197329 +554 275 4 876231634 +795 514 4 883250472 +416 729 5 893212896 +429 1228 3 882387163 +721 318 4 877140047 +625 208 3 891968164 +734 699 4 891022752 +749 389 3 878849375 +655 1053 1 887489159 +15 237 3 879455871 +712 136 1 874730443 +56 87 4 892678508 +479 31 4 889125905 +497 1 4 879309955 +653 195 5 878854100 +211 275 2 879460096 +629 729 4 880117852 +466 187 3 890284857 +477 846 4 875942042 +806 238 4 882388082 +144 1012 4 888104521 +268 230 3 875310824 +567 234 3 882426762 +796 636 2 893048505 +194 133 3 879523575 +378 218 3 880056491 +745 646 4 880123416 +751 131 5 889132966 +675 937 1 889490151 +60 617 4 883326273 +13 264 4 882140848 +793 1142 5 875104068 +804 254 4 879441195 +660 64 3 891199035 +554 71 4 876550257 +1 79 4 875072865 +43 258 5 875975028 +82 1063 3 878769815 +401 892 1 891031867 +781 322 2 879633862 +710 23 5 882064200 +201 315 3 884111029 +663 330 4 889491739 +23 62 3 874786880 +551 1621 1 892785194 +780 357 5 891363723 +611 334 5 891636223 +270 943 5 876956038 +766 494 3 891309177 +344 713 3 884899742 +655 1167 3 887428384 +686 521 5 879546786 +189 10 5 893264335 +796 5 4 893194607 +279 211 4 875309616 +565 1396 5 891037333 +807 1444 3 893082702 +522 543 4 876961076 +711 232 3 879993799 +616 331 4 891224677 +648 500 5 884368002 +82 1128 1 884714361 +656 322 1 892319238 +801 895 5 890332929 +128 73 3 879969032 +804 1488 3 879445579 +457 841 4 882395516 +805 42 2 881704193 +655 405 2 887429900 +805 90 2 881705412 +778 239 4 890726303 +234 552 2 892336322 +635 1025 2 878878901 +221 184 4 875245574 +334 1504 3 891549718 +736 515 5 878709365 +650 525 3 891369954 +514 116 4 875462426 +650 530 4 891372233 +435 264 3 884130671 +795 797 3 883254750 +280 88 3 891701556 +660 191 4 891406212 +85 924 1 879453114 +371 504 4 880435576 +791 299 2 879448035 +829 278 1 881712488 +639 727 2 891239613 +782 1279 3 891499660 +707 86 4 886286283 +585 59 4 891283124 +569 13 3 879793847 +194 143 3 879524643 +721 22 5 877139147 +749 134 4 878847286 +723 137 3 880498970 +759 678 2 875227742 +343 606 5 876404836 +373 390 3 877098890 +655 631 4 887473570 +602 121 4 888638434 +731 1 2 886184421 +406 191 5 882480443 +364 325 4 875931432 +266 237 3 892257940 +747 634 5 888639222 +7 474 5 891351002 +727 1273 3 883713286 +682 53 2 888519519 +222 237 4 877563437 +621 1029 2 874963210 +788 739 2 880870149 +588 678 2 890015063 +276 871 2 874836608 +501 952 4 883348114 +804 385 4 879445904 +745 183 3 880123205 +600 779 2 888452564 +773 191 4 888540448 +189 1401 4 893266137 +338 189 4 879438449 +14 81 5 890881384 +642 83 5 885603636 +468 724 4 875287615 +807 1050 5 892529311 +692 127 3 876948910 +715 265 5 875964105 +790 790 2 885157928 +592 466 5 882955766 +201 192 4 884111637 +70 15 3 884148728 +580 250 5 884125072 +498 1161 3 881960777 +783 876 4 884326424 +742 508 4 881335461 +469 474 5 879524117 +804 664 3 879446090 +665 105 2 884291810 +417 1016 4 886186827 +496 607 3 876065822 +596 682 4 883539173 +678 50 4 879544450 +581 127 5 879643079 +100 881 1 891375186 +541 402 3 883864946 +432 284 4 889416521 +804 663 5 879442793 +76 517 5 882129432 +592 188 5 882956387 +537 238 4 886030966 +650 373 1 891382877 +403 276 4 879785941 +545 173 5 879900185 +752 347 4 891207846 +486 151 2 879875041 +490 847 3 875427873 +442 64 5 883389682 +472 323 4 892790117 +782 248 4 891499321 +370 321 2 879434265 +655 887 3 887650979 +774 1305 3 888555829 +699 118 4 879148051 +643 12 5 891446720 +829 189 4 891992008 +521 172 3 884478049 +405 662 1 885546155 +753 359 4 891399477 +804 674 4 879445699 +666 151 2 880313582 +53 50 4 879442978 +807 99 5 892529401 +642 168 5 885842943 +758 428 4 881976745 +528 69 3 886101761 +7 356 4 891351728 +380 959 2 885479455 +712 662 5 874730320 +380 684 3 885478886 +782 687 2 891498865 +398 25 4 875655011 +18 492 4 880131054 +537 709 4 886031342 +630 300 4 885665975 +602 457 3 888638305 +387 789 4 886482928 +16 448 5 877722736 +648 94 5 884882234 +807 842 4 892979600 +811 301 5 886377530 +682 21 4 888522194 +681 286 5 885409370 +757 58 3 888467592 +804 405 4 879443776 +487 941 3 884045297 +527 183 5 879456691 +679 56 4 884487418 +739 96 5 886959039 +709 451 1 879848969 +543 147 4 877543316 +456 1547 4 881373948 +752 326 1 891208299 +435 64 5 884131036 +710 335 1 882063564 +722 151 5 891281020 +393 550 3 887746482 +666 729 4 880314225 +450 1053 3 882396352 +560 321 3 879975151 +807 271 3 892527385 +682 419 3 888523054 +178 293 4 882823954 +625 393 4 891263665 +747 1142 4 888732952 +186 298 3 879023073 +308 434 4 887736584 +270 93 5 876954522 +762 1662 1 878719324 +577 226 4 880475094 +655 974 2 887477025 +430 152 4 877226569 +523 722 3 883703495 +796 1049 4 893219151 +515 286 2 887660131 +804 194 4 879442490 +342 875 1 874984045 +366 201 5 888857866 +325 199 5 891478199 +429 655 3 882385399 +741 88 4 891457456 +377 234 5 891299078 +613 607 4 891227236 +682 238 3 888521540 +259 65 3 883371001 +664 192 4 876524096 +458 96 4 886398543 +758 742 4 881976168 +815 483 5 878696284 +830 385 4 891561805 +263 258 3 891296969 +119 9 4 890627252 +798 993 3 875554639 +586 69 4 884059426 +825 20 2 889021180 +685 873 2 879451401 +619 665 5 885954261 +346 708 3 874951714 +221 210 5 875245760 +805 761 3 881695040 +606 841 3 880922625 +742 1012 4 881335528 +380 222 3 885478519 +615 732 4 879449211 +255 273 2 883216845 +661 427 4 876016491 +790 109 3 884461775 +304 763 4 884968415 +764 9 4 876242649 +704 491 5 891397535 +201 1170 4 884141053 +145 1283 1 875270903 +694 97 5 875727399 +375 176 4 886621917 +497 181 5 879310580 +178 792 5 882827834 +13 835 3 882139901 +795 80 3 883254212 +271 625 3 885849606 +624 305 4 891961140 +326 226 5 879876975 +385 732 3 879442189 +703 1047 3 875243028 +663 876 3 889491739 +537 988 1 886029488 +545 550 3 879899327 +524 546 4 884627594 +826 336 4 885690064 +234 286 3 891033314 +731 1269 3 886187652 +642 577 4 886569870 +804 1079 4 879444133 +655 1322 2 887523641 +630 280 2 885667148 +751 70 4 889297870 +405 518 1 885546287 +666 333 3 880138999 +817 118 3 874815947 +454 724 3 888267158 +622 1079 2 882591663 +758 790 4 881978115 +826 313 5 885689782 +612 300 4 875324266 +629 319 4 880116722 +314 542 4 877890300 +712 99 4 874729995 +559 398 3 891034904 +457 215 4 882398002 +537 746 3 886031149 +831 877 2 891354391 +757 549 5 888468540 +405 453 3 885548385 +729 683 2 893286511 +806 483 4 882387409 +38 144 5 892430369 +567 212 2 882427023 +92 566 4 875658112 +389 657 5 879991115 +365 276 2 891303901 +343 462 4 876404385 +778 193 4 890769241 +437 186 3 881001208 +598 258 5 886711452 +659 7 3 891331564 +311 97 4 884365357 +302 358 3 879436981 +345 280 3 884991457 +674 125 5 887762779 +85 483 5 879453933 +374 15 3 880393380 +318 100 5 884470896 +712 220 5 874729682 +741 722 3 891457528 +653 455 3 878854051 +452 7 5 885816915 +693 581 3 875482731 +322 127 4 887313801 +110 642 2 886989126 +393 459 4 887744517 +142 315 3 888639837 +44 144 4 878347532 +703 50 5 875242813 +268 1413 2 875744388 +236 98 5 890116253 +713 340 3 888882133 +766 646 4 891309053 +660 1419 1 891202022 +525 597 3 881086413 +379 227 4 880525638 +782 1241 2 891500150 +521 95 3 885253266 +393 1035 3 889731329 +45 1001 3 881014785 +561 28 2 885808053 +819 1537 5 884012662 +711 909 4 889911007 +378 722 3 880334017 +580 1014 3 884125135 +312 499 4 891699296 +753 182 3 891401851 +786 238 4 882843646 +683 56 5 893286364 +577 55 3 880474694 +748 474 4 879454475 +473 129 4 878157329 +487 50 4 883442018 +130 156 3 875801447 +773 60 5 888538931 +695 270 4 888805952 +215 98 5 891436543 +539 610 4 879788533 +650 735 3 891369588 +747 28 4 888640915 +778 1035 1 890804607 +710 134 5 882063648 +655 651 4 887564613 +682 7 4 888522455 +627 227 3 879531352 +717 271 2 884641842 +372 98 5 876869388 +790 229 3 885156686 +587 750 3 892871113 +43 729 4 883956387 +678 282 3 879544952 +452 183 4 888492759 +707 1113 2 886287990 +749 295 3 881602635 +474 414 4 887927153 +667 504 3 891035015 +653 228 4 878854190 +617 238 3 883789249 +650 212 3 891383713 +474 520 5 887925837 +69 124 4 882072869 +132 285 4 891278996 +454 385 3 888266810 +303 8 5 879467223 +682 31 3 888520705 +655 425 3 887477409 +565 382 5 891037586 +524 7 2 884627065 +416 693 3 878879976 +733 237 3 879535338 +521 13 2 884476240 +668 283 5 881605324 +778 616 4 890726086 +407 274 3 876344287 +5 431 3 875636099 +8 688 1 879361732 +712 625 3 874956516 +586 77 3 884065719 +457 1028 3 882393828 +450 648 5 887660503 +573 657 4 885843928 +745 515 4 880122863 +804 451 2 879446063 +567 185 5 882426899 +828 1646 4 893186124 +655 1632 3 888685759 +735 332 3 876698022 +654 144 5 887864907 +808 333 4 883949519 +537 657 3 886030966 +327 286 2 887737328 +450 715 3 887137066 +788 98 5 880868919 +250 98 5 878090365 +626 923 5 887772922 +94 469 4 891721048 +85 735 3 879454905 +632 432 3 879456910 +271 697 4 885848863 +815 182 3 878693424 +545 732 4 879899619 +451 879 4 879012580 +752 690 4 891208170 +430 101 2 877226501 +521 159 3 885253904 +543 651 3 877546306 +416 215 5 893213644 +663 363 2 889492990 +597 127 4 875340062 +543 211 4 877547441 +509 326 4 883591043 +756 55 5 875129318 +707 116 5 880059974 +694 132 5 875727640 +487 432 3 883447015 +520 240 1 885170476 +561 705 3 885808000 +276 1016 3 874786713 +92 68 3 875653699 +537 116 3 886029841 +721 196 5 877139147 +545 176 4 879899125 +648 820 2 882212131 +450 215 5 882396051 +387 33 3 886483098 +593 98 5 875661596 +296 301 5 884196284 +301 685 3 882074867 +285 357 5 890595777 +747 79 4 888640392 +330 1035 4 876547470 +588 362 3 890014710 +85 596 3 880838337 +394 96 5 880886919 +344 276 4 889814194 +655 449 3 887429732 +561 652 5 885809312 +487 144 5 883446725 +474 205 5 887924469 +551 346 4 892775547 +109 527 3 880577604 +450 900 5 885944864 +621 871 3 881445723 +602 343 2 888638022 +666 32 4 880139466 +796 367 5 893048150 +299 169 4 878192555 +629 307 5 880116722 +528 1618 1 888521905 +450 254 3 887662083 +59 425 4 888204928 +773 53 3 888540147 +233 478 5 877661437 +752 905 2 891207940 +732 690 5 882589626 +807 528 4 892530173 +606 237 4 878148365 +506 880 1 885135560 +151 606 5 879528496 +367 50 5 876689696 +806 89 5 882387756 +450 210 3 887835408 +827 347 3 892157356 +757 117 4 888444181 +694 692 4 875728729 +805 581 2 881695793 +554 215 5 876550833 +567 203 4 882426508 +543 11 3 874866116 +559 196 5 891033805 +776 486 4 892920189 +145 347 3 891509921 +532 218 5 889235367 +543 636 3 876718718 +416 1135 2 886319234 +798 384 2 875915279 +588 554 3 890032281 +537 688 1 886029153 +588 471 5 890024289 +721 264 1 877135806 +291 84 3 874868327 +823 684 4 878439391 +649 1283 2 891440528 +804 186 4 879442687 +94 368 2 891724846 +346 1039 2 874948303 +634 122 3 877017975 +336 475 4 877756934 +661 615 4 876013774 +308 1065 5 887739382 +799 45 4 879253969 +197 177 5 891409935 +101 826 3 877136686 +85 1171 3 879452638 +387 186 2 886480515 +726 1014 1 889832744 +37 1027 3 880930072 +555 195 4 879975438 +660 748 3 891197757 +95 139 4 880572250 +249 209 5 879572582 +119 277 4 874774993 +456 197 4 881373793 +639 153 3 891240752 +56 62 5 892910890 +751 62 4 889298660 +669 302 4 891182948 +778 230 2 890804025 +623 163 3 891034756 +777 205 4 875980306 +748 654 4 879454998 +456 655 3 881373838 +562 133 2 879195007 +770 919 5 875972024 +825 1047 3 880756934 +804 473 4 879443884 +684 710 5 875812109 +548 751 4 891042851 +823 1217 1 878438435 +643 399 3 891450376 +514 1047 3 876063961 +698 284 1 886368545 +399 616 1 882341881 +441 7 4 891035468 +199 539 1 883782509 +374 1101 4 880395634 +488 245 3 891292897 +64 89 3 889737376 +493 192 3 884132015 +771 241 1 880659791 +518 847 5 876823447 +814 656 3 885410957 +276 25 4 874786686 +7 214 5 891352384 +606 924 5 880921408 +437 697 4 880140978 +741 241 4 891019625 +474 248 4 887916438 +639 716 1 891240805 +682 64 5 888517011 +692 204 5 876953340 +561 31 2 885809146 +329 39 2 891656391 +506 29 2 874874894 +655 248 2 888685759 +417 767 1 879646860 +746 38 2 885075476 +378 1 4 880044251 +655 1 2 887650876 +795 219 3 883252104 +736 257 3 878708721 +655 26 3 887427338 +793 844 4 875103842 +823 502 5 878439008 +698 191 2 886367406 +656 272 3 892318343 +694 31 4 875728345 +592 289 4 882607606 +831 96 5 891354668 +794 238 5 891035135 +661 79 5 886841798 +798 839 4 875638649 +595 346 4 886920576 +63 321 3 875746917 +798 1282 3 875296234 +262 417 2 879795319 +92 934 2 875639642 +347 91 1 881654679 +488 69 4 891294209 +645 211 4 892054364 +804 121 4 879442377 +124 117 3 890287181 +804 185 4 879444890 +634 137 3 875728834 +770 25 5 875972582 +275 624 3 880313679 +429 87 3 882384821 +804 141 3 879445841 +391 234 4 877399455 +392 294 4 891037561 +397 498 4 885349955 +478 77 1 889395879 +183 431 2 891467545 +568 319 2 877906697 +696 234 4 886404617 +578 678 3 888957490 +90 527 5 891384959 +429 378 3 882386916 +790 378 3 885156934 +695 311 4 888805767 +552 591 3 879222412 +709 218 4 879848168 +601 222 4 876347039 +814 100 4 885410957 +60 96 4 883326122 +828 887 4 891033611 +577 111 4 880470604 +796 746 3 893048115 +796 855 3 893279958 +606 1199 3 878143246 +694 157 4 875729667 +181 1321 1 878962200 +151 724 4 879542270 +709 56 5 879848053 +658 181 3 875145614 +395 1 5 883765062 +213 213 5 878956300 +770 546 4 875972699 +7 671 5 891351728 +536 546 2 882318533 +618 790 3 891309471 +686 208 5 879547275 +345 738 3 884993636 +758 14 5 883287566 +588 28 5 890024051 +521 405 2 884476820 +707 133 2 886287268 +53 284 2 879442901 +637 936 4 882902487 +487 1011 3 883444768 +650 576 1 891382877 +495 234 5 888634144 +807 193 4 892529483 +459 172 5 879563902 +666 510 4 880139409 +756 423 3 874830675 +503 47 5 880472216 +829 1067 4 891990842 +246 432 3 884921511 +708 412 1 877326159 +749 826 3 878850038 +655 483 4 888685734 +745 222 2 880123126 +798 1249 4 875914785 +805 422 4 881695560 +599 845 5 880951974 +763 197 4 878918360 +378 1425 2 880056930 +521 748 3 884475618 +784 1038 3 891387704 +650 371 2 891387725 +720 302 5 891262608 +7 568 5 891352261 +815 183 5 878694381 +479 423 2 879461084 +805 470 5 881695872 +712 232 3 874956903 +823 739 4 878439582 +1 261 1 875692992 +682 699 3 888523658 +587 989 2 892871438 +586 185 2 884058860 +804 445 4 879445766 +35 326 3 875459017 +290 168 3 880474204 +761 181 5 876190072 +526 751 2 885681958 +682 281 3 888520864 +756 930 3 874830344 +653 152 2 878866951 +721 680 3 877137448 +758 271 4 884999132 +345 886 3 884900736 +666 28 3 880139381 +359 181 5 886453305 +653 674 3 880151983 +392 1007 5 891038137 +343 476 2 876403239 +373 418 5 877104235 +23 234 2 874785624 +457 318 5 882397337 +545 174 4 879899125 +581 275 3 879641787 +13 771 3 882398410 +655 1553 4 888474019 +279 21 3 875297456 +676 895 1 892685562 +13 58 4 882139966 +393 964 2 889555461 +644 322 5 889076364 +699 298 4 883278699 +790 56 4 885155150 +159 1014 4 884027206 +768 50 4 883834705 +825 369 3 880756862 +747 461 5 888639526 +665 405 3 884291300 +389 926 3 879916099 +682 779 3 888522754 +790 401 4 885157621 +741 82 3 891018400 +835 1 3 891033420 +625 181 4 891262633 +833 340 5 879818293 +833 544 1 875133458 +605 295 4 879366240 +689 111 3 876676501 +476 173 5 883364218 +679 204 3 884487191 +811 292 3 886377041 +237 58 4 879376434 +374 284 1 880393753 +344 235 3 884900423 +638 62 3 876695307 +601 131 4 876350766 +666 525 4 880139467 +146 336 5 891458193 +181 274 4 878962720 +727 202 4 883711354 +94 1046 2 891723262 +804 128 5 879441702 +725 258 4 876106729 +239 518 3 889180949 +715 826 2 875962652 +79 283 4 891271627 +144 116 4 888104258 +669 354 1 891182622 +523 1195 5 883700969 +416 315 3 889341306 +422 299 1 875129602 +183 177 5 892323452 +659 136 5 891331874 +727 38 1 883712993 +207 423 4 875774463 +782 243 3 891498381 +128 174 3 879966954 +758 282 3 881977488 +267 202 5 878972398 +222 68 4 881059876 +586 92 3 884061459 +373 12 5 877098343 +762 475 5 878719219 +556 134 5 882136252 +751 181 5 889132397 +609 408 5 886896185 +766 382 3 891310281 +770 300 5 875971612 +682 190 4 888519725 +768 1 5 883835025 +749 228 5 878848828 +749 501 4 878847209 +408 271 3 889679947 +548 295 5 891044304 +649 323 3 891440624 +537 480 4 886030622 +653 215 2 880606619 +551 28 4 892776982 +788 284 3 880869323 +354 811 5 891218091 +90 523 4 891383423 +10 499 4 877893021 +212 631 5 879303929 +452 384 2 875559398 +734 222 1 891022849 +823 31 5 878439038 +659 211 3 891384077 +804 210 5 879441372 +318 307 3 884470681 +85 221 2 879452693 +426 474 4 879442785 +695 288 4 888806120 +406 153 3 879445522 +495 79 5 888632546 +530 98 4 883784195 +747 492 4 888639060 +673 242 4 888787508 +89 736 3 879460027 +540 455 4 882157477 +234 1063 3 892079769 +279 636 5 875313387 +545 211 3 879900586 +749 250 3 878846978 +301 1230 1 882079221 +632 763 3 879459304 +468 126 3 875280214 +13 687 1 883670705 +244 708 4 880607231 +294 831 3 889242542 +790 1044 4 885158185 +666 234 3 880139323 +601 1028 2 876347557 +836 165 4 885754149 +774 537 2 888556893 +499 193 4 885599682 +233 23 5 877665324 +435 1047 3 884132315 +435 1185 1 884133371 +366 53 5 888857990 +429 430 4 882384553 +161 69 4 891171657 +707 221 4 880059749 +682 710 3 888521413 +18 175 4 880130431 +374 23 3 880395896 +101 717 3 877136928 +505 73 4 889334248 +593 118 4 875660009 +447 222 3 878854340 +659 173 4 891383412 +796 4 5 893048150 +653 300 4 889151716 +577 579 4 880475602 +2 100 5 888552084 +583 55 4 879384404 +714 50 5 892777876 +85 52 3 881705026 +766 174 3 891308968 +655 1074 3 891999461 +497 758 2 879362292 +774 293 1 888559123 +792 546 3 877910353 +699 13 4 879146941 +484 427 5 891195746 +697 295 3 882622733 +477 722 5 875941763 +765 127 5 880346722 +87 158 3 879877173 +619 144 5 885954083 +748 143 3 879454546 +645 11 4 892054278 +445 840 1 891200320 +823 210 4 878439498 +816 309 5 891711801 +753 484 5 891401757 +650 527 3 891383229 +667 880 3 891034568 +559 550 4 891035111 +207 1012 3 876109074 +694 645 4 875727143 +770 181 3 875972219 +682 619 3 888519226 +835 325 5 891032391 +698 153 2 886367586 +717 751 4 884642001 +550 252 1 883426119 +727 63 2 883713454 +13 602 4 884538634 +207 535 3 877750595 +624 358 3 891961210 +561 181 3 885807318 +450 657 4 887660504 +524 367 5 884636453 +405 1509 1 885547557 +629 322 3 880116240 +561 1149 4 885807713 +533 148 3 882902641 +605 496 5 879424600 +348 477 3 886523521 +428 271 2 892572448 +807 427 4 892528427 +385 405 2 879440961 +456 1009 5 881372160 +712 386 3 874956956 +82 235 1 876311517 +699 225 3 878882133 +320 172 4 884749227 +796 1090 4 893194992 +423 748 3 891394985 +125 388 2 892839270 +489 353 4 891449555 +693 942 2 875482396 +783 333 4 884326383 +468 96 5 875295148 +159 1048 3 880557584 +536 168 5 882359863 +694 393 3 875728952 +447 28 4 878856110 +201 715 4 884140382 +707 499 4 886287450 +435 191 4 884131200 +566 465 2 881650654 +94 181 4 885872942 +435 578 5 884132230 +752 1105 3 891207983 +275 22 3 880314528 +426 200 2 879442702 +249 242 5 879571438 +318 8 4 884495616 +496 393 1 876069951 +693 693 3 875482860 +222 78 1 878184899 +136 269 5 882693234 +711 144 2 879993871 +109 191 4 880577844 +535 381 3 879617818 +615 13 4 879449184 +733 146 3 879536001 +619 294 1 885953684 +486 1094 2 879874838 +591 732 3 891031500 +714 7 4 892777903 +487 100 5 883442105 +244 1053 2 880606993 +588 655 3 890025864 +409 486 3 881109175 +393 191 3 887745717 +766 230 3 891310444 +588 402 5 890026882 +790 52 4 885156934 +363 328 3 891493840 +684 728 2 878762243 +716 248 4 879793293 +389 59 5 880087151 +221 405 3 875244633 +494 528 3 879541245 +529 286 4 882534996 +370 494 3 879435033 +776 443 3 892920290 +770 295 4 875972290 +280 660 5 891701114 +543 303 4 875664365 +496 484 3 876065382 +461 9 5 885356112 +655 396 2 887428507 +381 443 5 892696616 +721 194 5 877138024 +751 734 1 889299637 +544 310 2 884795264 +77 154 5 884733922 +555 248 4 879963127 +521 154 2 884478119 +152 280 5 880148941 +74 307 4 888333329 +432 93 2 889415812 +658 654 4 875148059 +659 606 5 891331959 +826 1239 4 885690854 +686 182 5 879546217 +177 7 4 880130881 +593 385 4 886194041 +523 1041 4 883702411 +566 100 5 881649548 +90 211 5 891383424 +825 544 3 889021037 +782 690 4 891497793 +667 482 4 891035140 +378 58 4 880046408 +707 309 2 880684605 +796 117 5 892660283 +6 460 2 883600004 +640 369 3 886474977 +428 259 4 885943685 +648 111 5 882211886 +833 546 2 875036354 +561 451 2 885810117 +716 423 4 879795496 +738 136 4 892958170 +693 527 3 875482280 +747 997 3 888733480 +716 176 3 879795189 +445 744 2 891200272 +406 420 4 879793112 +823 191 5 878437623 +633 289 3 875324233 +407 588 4 875552964 +314 820 5 877892461 +630 983 3 885667699 +758 977 2 882055347 +225 215 5 879539789 +545 193 3 884133988 +618 421 3 891308615 +697 107 5 882622581 +537 979 2 886030317 +655 1647 3 891817435 +554 282 3 876232267 +772 321 5 877533625 +42 50 5 881107178 +483 151 2 878952582 +445 1011 1 891200320 +78 294 3 879633495 +716 111 4 879793443 +286 762 2 876522008 +188 519 4 875072972 +387 772 4 886483782 +201 81 1 884140488 +493 475 3 884130495 +524 748 2 884321592 +393 922 4 887744419 +815 357 5 878693906 +401 44 4 891032868 +644 1025 4 889076433 +437 521 4 880141164 +442 176 5 883390284 +500 257 3 883865321 +706 118 3 880997464 +387 129 5 886480583 +406 121 5 879540199 +830 413 1 891899475 +807 576 4 893081656 +458 285 4 886394423 +426 196 4 879444734 +221 485 2 875245265 +626 358 1 878771505 +347 293 5 881652709 +780 97 5 891363617 +567 847 4 882425791 +262 68 2 879794887 +805 443 5 881695196 +665 763 4 884291210 +450 88 5 882396799 +450 117 4 882397373 +593 164 4 875671861 +806 233 2 882390614 +749 1228 4 878850748 +766 127 5 891309011 +421 187 4 892241624 +721 875 3 877137527 +836 268 3 885753475 +659 50 3 891044882 +805 168 5 881704016 +264 47 5 886123472 +291 801 3 875086766 +654 1020 4 887864566 +682 654 4 888520799 +537 921 3 886031074 +838 298 3 887064476 +648 187 3 884882664 +459 25 2 879563201 +750 300 3 879446013 +601 1296 1 876346344 +537 14 4 886030108 +707 792 4 886287107 +471 404 2 889827757 +493 328 4 884129823 +796 176 5 892662523 +689 109 5 876675152 +477 49 5 875941155 +116 307 3 879864042 +506 642 4 874874000 +255 872 4 883215723 +402 1 5 876266860 +782 689 3 891498720 +234 653 3 892335108 +399 403 3 882350502 +710 318 4 882063710 +488 358 3 891293051 +206 272 5 888179565 +455 549 4 879112320 +737 127 5 884315175 +305 2 2 886324580 +839 237 3 875752317 +239 64 1 889178616 +790 771 4 885158436 +457 214 5 882548280 +716 445 3 879797221 +498 175 5 881956498 +823 7 5 878438298 +608 1101 4 880405863 +655 1005 4 887474605 +835 143 5 891033819 +659 316 4 891044849 +97 496 2 884238693 +585 529 3 891283124 +805 664 5 881697667 +363 67 1 891498038 +437 1091 3 880143392 +567 487 4 882427155 +790 566 3 885156618 +705 111 4 883427012 +128 869 3 879969064 +787 304 4 888980193 +761 1277 1 876190752 +724 361 1 883758241 +305 597 2 886324551 +308 657 4 887736696 +206 310 5 888179625 +64 271 3 889737047 +403 9 3 879786052 +840 479 4 891204385 +786 699 4 882844295 +82 475 1 884714181 +551 351 3 892775894 +759 258 4 875227686 +532 181 5 889235367 +194 393 2 879524007 +707 1018 3 886288455 +521 2 3 886063310 +551 147 4 892783525 +773 175 4 888539425 +1 45 5 875241687 +666 114 4 880567919 +210 230 3 887736323 +788 302 4 880867326 +452 52 3 888494119 +764 496 5 876244991 +712 787 3 876251366 +423 344 4 891394558 +625 380 3 891263589 +661 161 4 876013588 +707 952 3 880060724 +709 781 3 879849185 +660 250 4 891198174 +733 221 4 879535265 +271 238 4 885848408 +699 597 3 884152570 +119 286 5 874774286 +749 595 4 878850107 +529 258 4 882535091 +474 385 4 887927670 +479 629 3 879461161 +392 197 5 891038978 +230 205 3 880484476 +380 109 2 885480093 +432 845 4 889416260 +385 383 1 879449871 +387 68 4 886483099 +456 366 2 881374967 +472 172 5 892791063 +806 254 3 882387272 +747 967 3 888639318 +680 100 3 877075214 +428 286 3 885943980 +10 276 4 877891904 +453 369 2 877553051 +434 928 5 886724913 +332 983 2 887938886 +641 427 4 879370119 +595 298 4 886921166 +541 417 4 883874749 +370 134 4 879434859 +675 344 4 889488754 +674 763 5 887762799 +5 121 4 875635189 +798 563 2 875638323 +655 195 3 887473965 +774 834 1 888559013 +416 182 4 876698934 +697 129 5 882622016 +774 186 3 888556047 +796 728 3 893047691 +451 991 2 879012647 +796 1269 5 892662765 +760 819 1 875666064 +236 505 3 890116575 +16 15 5 877722001 +314 939 4 877888060 +771 707 4 880659507 +757 22 4 888466407 +775 264 4 891033071 +665 620 3 884291613 +484 829 2 891195663 +115 48 5 881171203 +840 152 4 891204160 +606 662 4 880926162 +630 409 3 885667037 +318 968 3 884496671 +654 736 5 887864757 +524 1065 1 884636646 +152 775 4 884018798 +545 391 2 883115552 +661 70 4 876017029 +536 486 4 882359652 +796 1001 2 893219180 +710 1101 4 883705436 +561 56 5 885807291 +199 9 5 883782853 +43 411 3 884029519 +763 879 3 878914901 +567 177 4 882426673 +416 1264 4 886316381 +629 327 3 880116201 +637 118 1 882904961 +406 655 3 880131704 +533 988 2 882821725 +7 470 3 891352489 +715 90 5 875964386 +526 742 3 885682562 +808 294 5 883949986 +297 215 2 875240133 +450 655 4 882377653 +749 173 5 878847740 +565 512 3 891037453 +542 433 3 886532838 +719 532 3 888449606 +450 269 5 882215617 +796 751 5 892611979 +383 182 5 891192836 +387 642 4 886483395 +655 174 3 888474456 +825 294 4 880755305 +768 1014 2 882816126 +632 276 2 879457856 +630 50 3 885666536 +727 91 4 883710396 +747 419 5 888640820 +38 410 3 892432750 +379 194 5 880525194 +343 223 5 876405735 +637 286 5 882900888 +757 588 3 888467286 +650 97 3 891383110 +627 553 3 879530967 +453 132 3 877554871 +840 845 5 891203553 +833 161 1 875224515 +763 164 4 878917850 +648 127 3 884365970 +437 378 4 880143451 +774 514 2 888555998 +790 172 4 885155540 +776 511 5 891628632 +823 1118 3 878437836 +833 156 4 875038775 +738 39 3 875350720 +541 843 4 884645883 +666 205 3 880139562 +816 258 3 891711378 +716 49 4 879797286 +83 566 4 880308099 +735 293 3 876698570 +690 431 2 881179856 +621 271 5 880226633 +43 354 4 891293957 +835 193 4 891033148 +218 466 4 881288234 +506 46 3 874874802 +299 98 4 877881229 +92 250 4 890251534 +183 62 2 891479217 +805 89 4 881694713 +358 179 4 891269666 +43 926 2 875975613 +426 432 3 879444192 +643 969 4 891446826 +826 431 5 885690636 +593 56 5 875658887 +7 566 4 891353411 +622 277 4 882590252 +653 11 2 878854145 +533 174 4 879191184 +781 127 5 879634017 +621 28 4 874965408 +767 100 5 891462560 +236 194 3 890116426 +770 253 5 875971949 +532 230 5 893118712 +782 1237 3 891497906 +738 393 3 875350944 +798 687 4 875295566 +699 1284 3 879147239 +385 219 1 879446952 +601 241 4 876350652 +605 528 5 879424273 +766 447 3 891309522 +115 284 2 881170902 +757 1210 2 888467187 +514 183 3 875462645 +301 50 5 882074647 +454 204 4 881960504 +524 618 3 884636416 +406 509 3 879540515 +740 288 4 879523187 +815 216 3 878693381 +799 50 4 879254077 +437 507 5 880140015 +745 1126 2 880123572 +741 98 5 891455516 +305 160 4 886323937 +840 423 5 891209449 +495 403 5 888634475 +756 1009 4 874827247 +788 1248 3 880871460 +643 715 5 891450210 +819 862 2 884012586 +684 734 3 878762302 +551 164 4 892776650 +366 200 5 888857990 +683 588 4 893286584 +683 887 4 893286261 +508 269 4 883766931 +638 98 3 876695560 +588 880 1 890014996 +186 820 2 879024345 +535 188 3 879618999 +722 147 3 891281158 +416 411 3 876698006 +363 234 3 891495197 +642 204 4 885602593 +650 134 5 891369520 +668 257 3 881605269 +758 512 5 881975416 +332 195 5 887939051 +354 313 3 891180399 +130 1019 4 875801530 +516 286 5 891290565 +746 523 3 885075497 +619 187 5 885953992 +480 272 4 891207539 +85 135 5 879453845 +392 189 4 891038433 +700 79 3 884494420 +650 476 2 891388080 +474 470 3 887926437 +447 56 5 878855782 +399 720 3 882348565 +743 300 4 881277267 +642 1049 3 885606271 +130 89 4 875216458 +782 1477 3 891499344 +447 156 5 878856625 +818 316 4 891870301 +117 96 5 881012530 +324 301 5 880575108 +764 11 4 876244652 +200 234 4 884129381 +711 315 4 886030353 +549 620 3 881672650 +561 921 3 885810769 +622 83 5 882592178 +324 327 4 880575002 +693 483 3 875484352 +815 524 4 878693381 +318 1204 2 884496156 +457 770 4 882547794 +507 894 5 889964162 +605 301 3 879365237 +807 405 4 892684722 +823 97 5 878439113 +580 249 5 884125243 +498 262 2 881954618 +660 62 2 891201243 +234 273 3 892336165 +455 53 1 879112415 +615 209 5 879449068 +1 48 5 875072520 +198 824 2 884206847 +42 273 3 881105817 +40 358 3 889041741 +49 93 5 888068912 +458 844 4 886394576 +833 673 4 875224039 +471 878 4 889827710 +740 938 1 879522906 +760 185 2 875667450 +716 192 3 879794870 +802 441 3 875985840 +816 343 4 891711423 +101 846 3 877135914 +748 183 4 879454584 +709 215 3 879846259 +621 410 4 880738623 +605 286 4 879365101 +555 21 4 879964265 +682 582 1 888517816 +518 276 5 876822923 +537 323 1 886029211 +747 99 5 888640524 +790 184 3 885156958 +814 185 3 885411030 +425 362 3 890346317 +280 928 5 891700850 +650 161 3 891381709 +326 498 5 879875083 +721 990 5 877137213 +13 630 2 886302261 +787 348 4 888979875 +637 149 2 882901356 +801 307 4 890332853 +256 1150 5 882152570 +463 508 4 877385125 +833 483 4 875122716 +504 298 4 887831717 +705 405 4 883427479 +779 411 3 875999002 +807 527 5 892528646 +531 690 5 887048789 +696 310 4 886403673 +805 200 5 881695244 +398 969 4 875659518 +711 99 3 879993534 +766 520 4 891309146 +451 325 3 879012721 +476 300 5 883365561 +417 444 4 880952691 +827 258 3 882201175 +667 461 4 891034913 +698 1299 2 886367775 +622 553 3 882670929 +269 831 2 891451611 +803 243 1 880055548 +733 284 2 879535129 +551 751 4 892775797 +438 864 3 879868547 +526 331 3 885681935 +643 663 4 891447747 +497 175 4 878759745 +495 1208 4 888636032 +802 300 4 875986155 +833 121 1 875133458 +487 572 1 884050940 +732 286 5 882589593 +618 785 3 891309351 +768 275 4 880135736 +22 430 4 878886607 +640 202 5 874778366 +450 180 4 882373020 +763 658 3 878915600 +474 628 4 887915414 +655 702 2 887477262 +757 685 3 888444684 +747 408 5 888639481 +788 301 2 880867855 +574 303 3 891278962 +599 260 1 880951113 +658 9 4 875145572 +830 739 4 892503093 +369 751 4 889428097 +326 391 4 879877005 +680 117 4 877075312 +545 578 4 884134936 +805 569 1 881695414 +666 945 4 880567883 +452 45 4 875265446 +711 966 5 879994390 +527 496 4 879456248 +294 597 3 889242306 +387 205 5 886480384 +476 4 4 883364143 +727 234 2 883711699 +149 678 2 883512928 +406 129 5 879539949 +378 1311 4 880332949 +746 226 4 885075434 +831 245 2 891354226 +823 33 3 878438332 +562 79 4 879196445 +654 926 4 887863981 +653 194 3 880150260 +755 259 3 882570140 +730 125 4 880310521 +776 648 3 893077100 +832 181 3 888260089 +650 288 3 891369889 +393 939 4 887745816 +642 49 4 885605909 +676 879 3 892685489 +404 323 3 883790430 +749 62 3 878849052 +694 210 4 875728293 +795 719 2 883254675 +807 1034 5 893082544 +708 846 2 892719269 +435 411 3 884132484 +835 708 5 891035078 +267 614 5 878972015 +6 242 4 883268170 +552 288 2 879221267 +609 243 1 886895886 +601 132 5 876350104 +398 235 2 875716709 +678 25 2 879544915 +751 483 5 889132849 +807 151 4 893081163 +435 1 5 884131712 +472 465 3 875982149 +591 508 4 891039616 +586 230 2 884061623 +524 393 3 884637032 +624 269 4 891961120 +734 111 3 891025993 +660 380 2 891201587 +830 69 5 891898262 +114 98 4 881259495 +707 630 3 886287608 +346 153 3 874948252 +271 47 3 885849386 +545 751 3 883115062 +810 301 5 890083124 +840 517 4 891204322 +339 168 4 891033710 +738 257 3 875348912 +632 156 3 879457437 +280 1114 4 891702199 +119 506 5 886176779 +225 194 5 879540678 +222 627 3 878183173 +534 21 4 877807905 +254 584 3 886473283 +786 318 5 882843190 +545 94 3 879900794 +255 760 1 883216185 +398 521 5 875717779 +145 642 3 875272010 +792 21 3 877910444 +659 604 4 891331916 +836 12 5 885754118 +256 526 3 882164443 +825 986 5 881185343 +87 179 4 879875649 +49 8 3 888067691 +378 417 3 880056034 +839 123 3 875752560 +805 248 4 881683074 +807 498 4 892529150 +771 275 5 880659392 +648 199 4 884368313 +490 741 4 875427629 +844 22 4 877386855 +758 385 4 881974742 +716 956 4 879796011 +406 32 5 879446639 +805 183 5 881684185 +399 380 3 882345164 +694 520 5 875726618 +650 1110 4 891388467 +201 568 3 884112245 +642 409 5 885605909 +693 282 4 875482626 +134 1 5 891732756 +749 843 3 878848998 +655 443 4 887430102 +697 748 5 882621569 +128 179 3 879967767 +788 237 4 880869584 +589 301 2 883352535 +74 245 3 888333280 +239 137 5 889178688 +742 250 3 881336006 +180 469 5 877372278 +587 351 2 892871683 +650 1118 3 891385746 +800 118 3 887646342 +403 928 3 879786008 +313 546 4 891028426 +401 582 4 891033523 +151 962 1 879524394 +608 462 4 880406552 +743 298 4 881278061 +162 147 4 877636147 +773 218 2 888540295 +843 186 2 879447170 +532 139 5 874792232 +659 481 5 891385866 +608 956 3 880405896 +634 628 4 876170992 +672 15 3 879787922 +562 141 4 879195334 +198 50 5 884204919 +387 385 3 886483150 +709 403 3 879848590 +532 316 4 888631773 +693 318 4 875482092 +429 756 2 882386711 +181 1394 1 878961847 +253 1025 3 891627878 +766 679 3 891310337 +713 689 3 888882225 +487 627 4 883531122 +840 647 5 891205004 +144 234 4 888105115 +563 403 4 880506963 +170 876 3 886190449 +711 89 5 879993997 +43 58 3 883955859 +398 591 3 875652876 +666 185 4 880139466 +178 66 4 882826868 +412 23 4 879717147 +520 100 4 885170394 +617 604 2 883788955 +708 147 4 892719246 +774 423 1 888556634 +527 153 5 879455847 +716 675 2 879796766 +655 116 2 887476999 +733 125 2 879535814 +331 506 2 877196504 +805 827 4 881695040 +496 417 1 876066465 +72 684 4 880037203 +699 181 3 878882082 +580 323 2 884124383 +753 483 5 891401712 +435 384 3 884134047 +309 690 3 877370319 +13 806 5 882140426 +254 871 2 886475682 +608 1204 2 880403606 +47 322 2 879439078 +733 1067 5 879535603 +640 68 4 874778479 +682 358 3 888518450 +711 277 5 879991476 +792 1011 3 877910730 +707 1381 3 880061346 +823 209 4 878438379 +664 160 3 876524731 +829 268 4 886631672 +579 877 1 880951594 +387 211 4 886480108 +458 189 4 886396460 +763 96 2 878918213 +669 348 1 891182572 +705 226 3 883428028 +747 29 1 888734152 +804 87 4 879442954 +454 322 2 881958782 +548 229 5 891044596 +769 824 2 885424511 +817 1 4 874815835 +535 612 4 879618385 +686 198 5 879546443 +611 346 5 891636152 +59 133 3 888204349 +487 125 5 883444736 +804 164 4 879442025 +607 474 4 883879473 +405 102 1 885548877 +363 675 3 891495849 +94 1188 3 891723525 +178 483 4 882826210 +13 675 5 882396955 +838 173 5 887065782 +807 622 3 892530656 +828 171 3 891036568 +449 763 2 879959190 +795 164 3 883253368 +802 559 2 875985840 +775 310 3 891032837 +752 270 4 891208077 +293 317 4 888906193 +577 425 2 880474808 +698 330 4 886365606 +92 466 4 875811549 +784 303 4 891387077 +551 232 5 892783365 +532 100 5 893119335 +639 59 3 891239658 +757 168 4 888468756 +724 271 2 883757834 +416 132 4 876699652 +655 65 2 887477511 +290 257 4 880731518 +636 313 5 891448155 +793 458 3 875104243 +834 269 5 890860566 +541 1315 1 884046202 +703 864 2 875242912 +738 153 4 875350223 +455 234 4 879110436 +196 13 2 881251955 +686 514 5 879545662 +798 748 5 875295521 +738 747 4 875351603 +301 157 2 882076021 +44 636 4 878348969 +286 728 3 889652740 +490 919 4 875428765 +666 471 4 880313423 +758 305 4 880672257 +601 183 4 876348674 +222 195 4 878182132 +280 167 4 891701631 +653 511 4 878854100 +286 204 3 877531941 +234 329 2 891033922 +181 1115 1 878962774 +764 756 3 876243595 +189 914 2 893265046 +487 692 5 883530434 +717 471 4 884642427 +301 363 4 882078326 +705 144 3 883427988 +836 896 3 885753506 +57 475 2 883697223 +561 503 4 885808887 +782 343 2 891498821 +744 28 3 881170416 +787 311 4 888979605 +699 455 3 878882178 +778 582 1 891232769 +271 208 4 885848916 +804 215 5 879441752 +804 33 4 879445975 +476 1180 3 883365336 +621 779 3 880740296 +846 1074 3 883950859 +797 50 5 879439314 +831 591 4 891355004 +314 70 1 877890531 +399 276 3 882510107 +761 1 1 876190094 +788 234 3 880868473 +766 419 3 891309913 +379 339 3 883031585 +698 507 4 886366611 +828 19 5 891035613 +780 508 3 891363826 +294 123 4 877819634 +188 151 3 875073909 +17 100 4 885272520 +564 50 4 888730974 +660 207 4 891199620 +807 420 3 892979368 +650 451 2 891384202 +655 133 4 888474106 +181 1323 1 878962119 +788 447 3 880870299 +619 29 1 885954238 +595 235 3 886921392 +671 568 5 884035686 +174 716 5 886513674 +805 108 3 881705082 +756 135 2 874827884 +843 452 2 879443442 +833 367 3 875123359 +109 54 3 880578286 +792 1335 4 877910353 +741 815 3 891458647 +764 323 3 876233088 +361 55 2 879441253 +694 632 4 875727399 +393 11 3 887745844 +642 1095 2 885606271 +763 237 3 878919153 +826 38 3 885690750 +344 122 1 886381985 +606 222 3 878147770 +687 748 3 884652276 +593 739 5 875672970 +465 615 3 883530991 +205 242 4 888284313 +592 293 5 882607986 +186 1033 3 879024212 +537 333 2 886028707 +763 176 4 878919116 +437 195 2 880141286 +703 259 1 875242336 +548 905 4 891044198 +663 678 2 889492140 +833 129 3 875035718 +751 380 3 889298548 +387 11 3 886480325 +567 173 4 882425630 +553 378 3 879948655 +186 887 4 891717761 +81 276 4 876533545 +825 283 2 880756224 +201 96 4 884112352 +181 1086 1 878962464 +279 514 4 875307210 +586 820 4 884057412 +246 223 5 884921033 +796 1228 4 893048713 +682 366 4 888517896 +682 568 3 888522575 +806 343 3 882384656 +599 748 4 880951144 +668 271 4 881523787 +533 257 4 882195275 +377 200 5 891299010 +804 202 4 879442079 +288 294 2 886372841 +835 393 5 891033718 +460 285 4 882912205 +814 200 4 885411204 +704 480 5 891397086 +838 596 5 887064275 +751 436 4 889135879 +697 682 2 882621523 +733 820 2 879536608 +751 405 3 889298528 +749 280 4 878847835 +179 691 3 892151331 +593 1119 5 875660823 +788 597 3 880870582 +788 73 3 880869174 +773 665 2 888540187 +363 151 4 891497076 +616 328 3 891224590 +709 89 3 879848397 +621 546 3 880738894 +336 628 3 877760374 +399 543 3 882509971 +293 163 4 888907290 +616 329 3 891224748 +846 94 4 883950711 +642 365 4 886569922 +7 186 4 891350900 +271 210 4 885848447 +298 276 2 884183833 +606 498 4 880923862 +487 318 3 883528237 +737 427 3 884314970 +712 421 4 874729935 +416 253 3 876697283 +686 528 5 879547336 +422 137 5 875129882 +571 604 3 883354886 +727 993 4 883709750 +450 1163 3 882396928 +308 507 3 887738893 +524 606 4 884634968 +642 946 2 885606581 +466 55 4 890284857 +830 82 3 891561673 +7 25 3 891352451 +378 207 4 880055002 +95 228 4 879196231 +256 796 5 882165328 +161 487 3 891171357 +833 187 5 875124348 +413 14 5 879969513 +439 307 3 882892424 +757 203 5 888445521 +750 269 4 879445755 +688 1234 5 884153712 +699 222 3 883884642 +379 712 3 880741832 +312 589 5 891698695 +605 124 3 879365748 +642 378 3 885603517 +761 261 1 876189871 +156 86 4 888185854 +704 170 3 891397086 +474 326 3 887914822 +715 455 3 875962109 +790 1132 2 885158329 +536 84 4 882363820 +328 662 3 885047593 +655 332 3 888984255 +405 943 1 885548633 +666 959 4 880139149 +846 627 4 883949594 +805 238 5 881704223 +756 418 3 874829333 +560 1405 4 879976215 +474 530 5 887926271 +567 1022 5 882426350 +674 300 3 887762296 +806 121 4 882385916 +739 216 4 886958831 +795 577 3 883254987 +506 248 2 880198305 +630 929 4 885667249 +804 205 4 879442434 +458 744 4 886394623 +774 240 1 888558787 +174 1086 5 886434047 +804 135 3 879444407 +690 742 3 881179878 +767 56 4 891462759 +664 227 3 876526718 +788 521 4 880869945 +666 423 3 880139381 +693 64 3 875482136 +778 262 4 891482843 +521 17 1 885254888 +568 493 3 877907281 +544 750 3 884795135 +730 15 4 880310264 +393 1249 4 889731329 +535 136 5 879619107 +151 1269 5 879528438 +116 340 3 879864008 +790 738 3 885158396 +158 823 2 880132941 +474 13 5 887915684 +606 100 5 878146986 +708 1117 4 892719269 +468 7 3 875280214 +729 879 3 893286299 +671 770 2 883547351 +684 781 3 878762183 +600 56 5 888451492 +399 55 2 882343171 +526 300 2 885682031 +780 887 4 891363073 +518 125 5 876823645 +389 428 3 880087461 +787 333 3 888979074 +846 57 2 883949121 +634 1 3 875728872 +653 763 1 878854906 +781 324 4 879633862 +766 188 4 891309484 +711 185 4 876278721 +682 4 3 888521599 +650 199 4 891369520 +716 205 5 879796438 +536 389 5 882360734 +215 234 4 891435655 +571 47 3 883354818 +803 748 1 880054885 +118 844 5 875385256 +130 42 4 875801422 +749 511 4 878847286 +632 161 3 879459053 +524 654 5 884634877 +67 125 4 875379643 +639 179 1 891239324 +128 715 4 879968512 +729 690 2 893286149 +1 25 4 875071805 +843 298 2 879444531 +449 1073 5 880410734 +346 1258 4 875002895 +807 143 4 892528062 +624 294 3 879792109 +738 186 4 875351773 +758 253 5 880672855 +676 916 5 892685849 +407 603 4 875044037 +440 312 5 891550404 +796 215 5 892676115 +319 261 3 889816267 +624 240 2 879793129 +230 214 4 880485573 +788 483 5 880867933 +757 265 3 888466614 +259 484 4 888720541 +690 216 4 881177302 +771 289 4 886640547 +840 732 3 891204947 +535 237 4 879617779 +160 497 4 876858346 +291 234 4 874834735 +472 1239 5 892790676 +405 626 1 885548877 +774 300 2 888555792 +579 186 3 880952237 +270 88 5 876955711 +181 828 1 878963086 +484 71 2 891194743 +648 123 4 884366184 +242 740 5 879741196 +606 652 3 880925200 +747 639 5 888732899 +263 357 5 891299573 +778 238 3 890725804 +626 268 4 878771355 +303 388 2 879544365 +658 518 4 875147873 +450 794 5 882473476 +87 273 3 879875857 +326 510 5 879876141 +720 333 4 891262669 +712 59 2 874730420 +443 358 1 883504748 +684 252 4 875812227 +531 890 1 887049341 +758 837 4 881976377 +423 591 5 891395547 +782 902 2 891497906 +655 96 3 887651060 +825 276 1 880756575 +450 951 4 882399508 +606 1047 2 880923349 +198 229 3 884209353 +308 365 3 887739915 +109 288 5 880562908 +807 584 4 892529031 +682 518 4 888517324 +235 207 4 889656132 +666 70 4 880139526 +637 124 3 882902835 +668 82 4 881702925 +639 237 1 891239296 +658 50 4 875145750 +516 212 4 891290649 +745 100 5 880122809 +615 792 4 879448632 +727 121 4 883709518 +656 338 3 892319359 +735 269 3 876698022 +64 186 4 889737691 +221 1011 4 875244792 +556 127 5 882136205 +539 963 4 879788533 +332 73 4 888360229 +201 144 4 884112245 +780 423 5 891363618 +670 657 5 877974857 +837 476 3 875722225 +566 403 3 881650654 +345 14 4 884991077 +60 131 4 883327441 +766 434 5 891309947 +778 780 3 890803133 +327 333 2 887737493 +85 526 4 879454500 +468 192 4 875291403 +670 479 5 877975594 +192 7 4 881367791 +23 235 1 874784712 +606 1010 3 878149278 +746 181 5 885075166 +813 294 1 883752051 +472 496 4 875980823 +334 238 4 891546231 +380 479 4 885478374 +566 763 4 881651045 +642 41 3 885605347 +371 77 5 880435601 +625 640 3 891999796 +727 248 5 883709207 +471 465 5 889827822 +606 1151 3 889137292 +90 65 4 891385298 +334 301 2 891544233 +621 735 4 880739654 +374 38 4 880937876 +501 1011 4 883348519 +640 778 4 886354499 +99 780 5 886780007 +712 575 3 874957053 +742 222 2 881336006 +95 495 4 888954760 +551 288 4 892775466 +406 170 3 879445599 +267 217 4 878973760 +834 744 4 890862527 +328 809 4 885048895 +276 405 3 874787044 +761 50 5 876189795 +450 568 4 882397939 +442 1188 3 883390609 +693 7 4 875483947 +256 546 4 882151088 +842 362 3 891217891 +532 496 5 893119491 +686 480 5 879547224 +442 62 2 883390641 +744 1134 3 881171482 +534 235 4 877807973 +334 19 4 891544925 +826 241 4 885690600 +474 150 5 887915188 +479 566 3 879461800 +727 210 3 883710123 +653 1028 2 880152902 +666 134 5 880567695 +389 584 4 879991512 +537 196 3 886030831 +577 29 3 880474903 +758 159 3 881977408 +417 179 4 879647749 +795 8 5 880569317 +682 339 2 888518364 +701 257 4 891447197 +293 1333 4 888905618 +772 307 4 889028773 +597 678 1 875339041 +344 273 4 884900677 +334 1048 4 891545480 +806 522 3 882388128 +226 275 3 883889764 +268 60 5 875309344 +567 1252 3 882427294 +739 1429 5 886825529 +606 121 4 878148425 +694 153 4 875728508 +758 380 4 884999133 +495 449 5 888637768 +750 688 1 879446013 +715 276 3 875962454 +661 166 5 888300194 +580 222 3 884125292 +318 133 4 884496432 +718 471 5 883348634 +647 22 5 876534131 +452 371 3 875562573 +790 941 3 885157061 +62 69 4 879374015 +194 219 2 879527865 +645 447 3 892053541 +682 420 3 888523115 +393 412 3 887745380 +293 4 4 888906489 +435 25 5 884132434 +719 23 3 888897264 +338 269 4 879437523 +543 509 3 874863734 +542 11 2 886533710 +542 97 4 886533754 +5 374 3 875636905 +307 196 3 879205470 +130 1013 4 876251287 +846 377 2 883950155 +706 25 4 880997385 +666 318 5 880139180 +405 951 1 885548877 +727 197 3 883710271 +773 1475 4 888539027 +308 141 3 887739891 +750 358 3 879446216 +457 692 4 882396989 +734 56 1 891022752 +514 234 3 876063765 +712 202 4 874730031 +588 354 5 890014930 +501 121 4 883347023 +792 844 4 877910822 +655 1506 3 887428871 +782 1389 3 891500028 +82 496 4 878769992 +307 72 3 877122721 +644 333 3 889075967 +462 866 5 886365387 +173 332 4 877557028 +648 193 4 884628607 +405 708 1 885546487 +796 203 3 892690173 +291 413 4 874834054 +11 208 4 891905032 +749 603 5 878847804 +664 154 5 876525963 +184 724 4 889909672 +295 451 4 879518864 +829 192 5 881712519 +837 845 4 875722392 +498 168 4 881958174 +588 62 2 890027865 +758 4 4 881977375 +679 710 4 884487374 +773 52 3 888538853 +499 7 4 882996793 +393 1049 4 887744688 +551 202 4 892783177 +543 12 5 875665787 +796 322 3 892611953 +700 180 3 884494278 +487 366 3 883530929 +650 141 4 891386210 +658 408 5 875145614 +537 127 5 886030622 +790 583 2 885157489 +749 633 4 878848764 +458 20 4 886394778 +535 461 3 879617663 +665 1009 4 884291936 +327 367 4 887819355 +535 778 2 879617819 +642 465 4 885603932 +847 290 4 878775523 +796 419 5 893219001 +785 423 2 879438957 +506 665 2 885135882 +299 753 5 877880852 +374 17 2 880937876 +673 268 1 888786997 +201 886 1 884110927 +26 283 3 891371437 +715 955 4 875963596 +578 258 1 888957735 +719 282 4 879358874 +683 332 3 893283997 +792 24 3 877910091 +567 134 5 882425873 +334 283 4 891544810 +774 468 2 888556968 +796 278 4 892660323 +790 265 4 885155770 +490 292 3 875428185 +161 15 2 891172284 +176 405 2 886048262 +234 219 2 892336287 +327 336 2 887737569 +487 270 5 883440572 +16 152 4 877728417 +739 526 5 886958895 +772 678 4 877533546 +655 1170 3 891585242 +521 1013 1 884476820 +472 546 4 875979041 +715 117 3 875961816 +199 14 4 883783005 +434 274 5 886724797 +293 1209 2 888908117 +782 1643 2 891499321 +836 180 5 885754200 +770 244 4 875973047 +716 504 5 879795189 +296 315 5 884196351 +633 939 4 877212045 +642 1126 1 885603495 +843 665 3 879443482 +630 31 2 885667968 +796 29 3 893048672 +613 514 4 891227236 +754 744 3 879452073 +484 315 3 883973609 +450 28 4 882377861 +610 276 4 888703766 +389 346 4 885681315 +59 228 4 888205714 +716 568 4 879796718 +844 403 3 877387825 +776 439 1 892920480 +788 781 3 880871205 +747 163 4 888733111 +128 405 4 879968859 +605 223 5 881015099 +339 173 5 891034254 +527 11 4 879456662 +399 172 3 882342537 +682 125 4 888523635 +683 690 4 893286260 +94 477 2 885870323 +624 276 5 879792446 +60 209 5 883326593 +405 501 3 885548837 +161 315 5 891169965 +370 443 5 879435369 +665 1132 2 884291662 +592 936 4 882608315 +422 5 3 879744085 +268 3 1 875743161 +760 202 3 875667834 +586 188 2 884058956 +270 475 5 876954122 +50 327 3 877052093 +835 660 4 891033986 +699 23 4 878883113 +326 378 4 879875724 +690 396 2 881177861 +132 50 3 891278774 +763 629 5 878918871 +840 135 5 891204356 +848 164 5 887043421 +503 25 4 879438685 +354 306 5 891180445 +620 969 4 889988037 +648 840 1 884367180 +610 272 4 888702815 +125 111 3 892838322 +286 202 4 877532204 +733 287 3 879535129 +833 441 1 875224352 +325 495 3 891478180 +805 33 5 881694885 +457 162 5 882548793 +249 252 2 879571998 +766 131 3 891309703 +715 27 3 875964051 +663 351 2 889491919 +125 395 3 892838687 +703 410 4 875243028 +506 393 3 874874802 +128 685 3 879968774 +676 902 4 892685740 +838 732 4 887066782 +332 9 4 887916653 +648 928 4 882212071 +642 377 3 886569809 +18 963 5 880132437 +721 175 5 877140282 +595 304 3 886920774 +550 294 3 883426119 +710 182 4 882063967 +474 141 4 887926059 +758 249 4 880672782 +648 756 2 884366939 +665 125 4 884291340 +130 426 4 875801897 +324 458 4 880575619 +694 468 4 875729270 +652 282 4 882567294 +295 71 5 879517822 +437 478 5 881002323 +823 48 5 878438642 +807 1 4 892528231 +360 199 5 880355678 +547 313 5 891282611 +308 659 3 887736532 +118 558 5 875385228 +516 194 4 891290593 +308 1169 5 887739136 +1 251 4 875071843 +396 121 5 884646235 +643 162 3 891448436 +833 160 5 875124535 +846 382 3 883948989 +694 480 4 875726759 +763 627 3 878923488 +591 202 3 891031469 +313 125 3 891017059 +605 132 5 879425432 +727 380 3 883712397 +267 92 4 878971514 +773 268 4 888538249 +694 659 4 875728181 +533 527 4 879191022 +770 289 5 875971655 +661 191 4 888300344 +670 168 3 877974549 +131 137 1 883681466 +567 12 4 882426508 +713 313 3 888882179 +394 179 5 880886919 +650 705 4 891371153 +622 222 5 882592815 +780 510 4 891363904 +554 1 3 876231938 +715 380 3 875965058 +22 210 3 878886479 +692 238 4 876953340 +790 609 2 885156773 +848 294 5 887037669 +383 657 5 891192858 +548 277 3 891415540 +622 1181 4 882670367 +698 144 2 886367586 +92 210 4 875653519 +674 685 3 887762861 +151 956 4 879542567 +798 257 4 875295842 +805 216 2 881696699 +540 300 3 882156618 +654 1016 4 887863841 +663 473 3 889492917 +719 357 4 879360583 +741 234 4 891455545 +843 238 3 879446359 +807 946 3 893081338 +454 124 4 881959960 +798 365 3 875639656 +795 381 2 883774317 +805 240 3 881705350 +719 289 2 877311150 +758 685 5 881979987 +561 403 3 885809690 +717 475 5 884642187 +840 478 3 891204627 +560 1265 3 879975194 +782 987 3 891499660 +374 39 4 880937876 +586 215 4 884066141 +843 98 3 879443668 +290 180 1 880474913 +514 154 4 875462689 +311 650 3 884364846 +722 291 4 891281228 +837 220 4 875722007 +608 694 3 880405085 +207 96 3 877847025 +332 31 4 888098205 +102 411 2 892993786 +828 57 3 891037640 +551 205 5 892776575 +10 629 4 877886722 +506 328 4 885135476 +764 176 4 876244856 +704 607 4 891397535 +524 638 2 884637914 +666 248 3 880313640 +734 604 4 891023086 +48 529 4 879434850 +716 4 2 879796046 +822 1091 1 891038627 +429 101 4 882386662 +577 436 4 880475339 +815 153 4 878695020 +144 1013 1 888104446 +125 756 4 892838424 +825 7 5 880755612 +792 476 1 877910206 +193 122 1 889127698 +85 521 3 879829471 +587 308 3 892871642 +223 984 3 891548987 +749 294 2 878846265 +474 584 5 887927728 +731 662 3 886183209 +488 304 4 891293606 +711 222 3 876185896 +601 258 5 876346344 +788 435 3 880869278 +184 488 5 889913687 +387 89 5 886483048 +815 528 5 887978255 +846 60 4 883948606 +119 89 4 874781352 +830 233 3 891561737 +533 471 4 882902330 +683 62 4 893286208 +487 249 1 884637200 +568 187 3 877907596 +541 71 5 883874716 +615 208 4 879449130 +551 809 5 892784629 +381 294 5 892698068 +796 273 2 892660856 +325 134 4 891478599 +786 70 4 882843534 +565 213 4 891037803 +763 195 4 878918360 +393 17 1 889728895 +774 521 2 888556483 +344 478 4 884901210 +90 97 5 891383987 +456 32 4 881372911 +796 781 4 893047241 +533 187 4 879438811 +666 1110 3 880314366 +711 402 4 879993674 +293 67 3 888907575 +682 12 5 888516953 +455 118 4 879109733 +711 8 5 879993707 +666 264 3 880138999 +713 347 4 888882337 +60 23 4 883326652 +640 66 4 874778345 +699 14 3 878881952 +363 89 4 891494688 +847 185 2 878939503 +468 1016 3 875280670 +648 222 5 882211258 +442 154 4 883389491 +632 183 4 879456909 +749 168 5 878847765 +838 748 3 887060972 +619 550 5 885954134 +830 100 5 891560934 +681 258 1 885409516 +806 172 3 882387373 +83 243 3 891181725 +405 529 1 885549543 +109 655 3 880577735 +385 940 3 879447089 +660 176 3 891199182 +823 144 5 878438535 +774 649 3 888556814 +405 861 1 885548275 +416 136 5 893212623 +465 651 3 883531155 +782 1315 3 891499440 +576 815 3 886985695 +763 111 2 878918871 +786 216 4 882843272 +551 761 1 892785164 +791 327 5 879447977 +354 496 3 891217109 +747 588 5 888639989 +1 195 5 876892855 +716 570 3 879797286 +810 879 5 890083124 +276 431 3 874977474 +699 308 4 879382955 +641 285 5 879370028 +807 265 5 892529076 +109 365 4 880581817 +668 358 3 881524153 +790 786 3 885157533 +766 318 5 891309522 +846 1518 2 883950186 +727 184 3 883710761 +500 238 4 883873839 +761 258 4 876189585 +724 882 1 883758267 +846 90 2 883950001 +18 81 3 880130890 +629 286 4 880115839 +567 640 4 882426927 +768 288 4 883834705 +537 652 3 886031074 +625 405 3 891273859 +200 243 3 876041719 +608 11 5 880405927 +830 511 5 891561673 +564 292 4 888718546 +727 154 3 883711567 +749 378 5 878847612 +526 307 2 885681958 +560 1073 3 879975586 +758 297 4 880672700 +416 285 2 876697165 +749 175 3 878847576 +231 50 4 888605273 +758 716 2 881978864 +745 188 3 880123540 +748 193 3 879454789 +731 97 5 886183681 +102 334 2 888295889 +780 22 4 891363969 +758 121 2 881978864 +561 427 4 885807484 +62 82 4 879375414 +450 633 5 887660440 +788 327 3 880867855 +676 173 5 892686665 +796 520 3 892662223 +828 971 4 891380167 +345 518 4 884916484 +747 580 5 888734112 +660 349 3 891197757 +560 653 4 879975529 +833 831 1 875297256 +634 240 3 877018033 +715 755 2 875964704 +588 79 4 890023722 +416 157 4 886317316 +234 479 5 892334107 +639 216 3 891239528 +564 181 4 888730974 +807 1091 3 893082703 +804 396 3 879445956 +556 493 5 882136441 +719 237 2 877917981 +498 922 5 881955432 +792 291 2 877910629 +682 234 3 888520705 +804 993 2 879441236 +553 23 5 879948806 +151 170 5 879524669 +682 578 3 888522575 +771 4 1 880659748 +823 475 5 878438297 +588 1058 2 890030656 +636 121 5 891449212 +611 336 5 891636399 +542 732 3 886533227 +727 275 3 883708927 +188 673 4 875074127 +666 176 4 880139120 +653 233 3 880151599 +328 606 3 885046244 +70 755 3 884150865 +746 399 3 885075211 +563 678 2 880506368 +362 332 5 885019537 +358 638 3 891269584 +805 660 3 881698881 +834 282 4 890863052 +663 1245 4 889492959 +506 10 2 874862734 +478 467 5 889395563 +774 741 1 888558762 +540 222 4 882157224 +588 1044 4 890025674 +648 1110 3 884881621 +221 259 4 875243990 +642 404 3 886569122 +807 177 4 892705191 +543 114 4 874864346 +585 19 3 891282808 +406 10 3 879445684 +831 181 5 891354866 +756 138 2 874830864 +766 211 4 891310009 +428 322 4 885943782 +240 751 3 885775683 +763 507 4 878918933 +655 662 2 888686011 +334 337 4 891544177 +848 1126 5 887043265 +44 480 4 878347315 +746 431 5 885075304 +716 127 5 879793293 +487 833 4 888262381 +109 431 3 880578186 +745 480 3 880123361 +535 16 4 879618532 +269 663 4 891449880 +693 215 4 875482860 +412 186 5 879717071 +638 204 5 876695917 +738 751 3 892938297 +639 87 3 891239218 +487 1410 5 883446637 +457 582 5 882548350 +751 591 1 889132375 +592 242 5 882607286 +298 419 5 884182774 +760 162 3 875668418 +301 219 4 882078955 +102 476 3 892993827 +452 461 4 875273609 +85 589 3 879453587 +834 293 3 890862974 +194 72 3 879554100 +833 205 4 875122814 +549 237 4 881672605 +178 748 4 882823460 +828 921 4 891037948 +798 403 4 875743140 +562 504 4 879196709 +435 71 3 884132208 +225 510 5 879539672 +821 180 5 874793517 +401 312 3 891031784 +758 191 5 881975853 +805 386 3 881704224 +518 829 3 876824156 +835 157 4 891033526 +731 8 2 886184681 +749 182 3 878848639 +699 121 3 878882366 +666 519 4 880139205 +619 576 4 885954261 +790 1 3 884461306 +313 147 4 891016583 +540 293 4 882157084 +795 200 3 883251581 +761 288 4 876189614 +561 494 4 885808824 +769 258 3 885422650 +795 433 4 880588141 +779 222 4 875503280 +773 1188 2 888539842 +174 155 4 886513767 +393 710 4 889554607 +405 1581 1 885548579 +216 302 5 881966913 +682 173 4 888521381 +694 614 4 875726886 +29 12 5 882821989 +445 1199 1 891200447 +472 109 4 875978686 +843 615 3 879446215 +805 40 3 881704553 +437 436 4 880143635 +648 728 2 884882078 +601 204 2 876348783 +821 97 5 874793848 +380 554 2 885479754 +89 88 4 879459980 +577 31 4 880474216 +216 50 4 880232637 +396 840 3 884646648 +848 481 3 887038527 +826 172 5 885690481 +10 478 5 877889004 +833 52 3 878078390 +148 663 5 877399018 +227 285 4 879035347 +699 211 1 878883113 +834 258 4 890860194 +504 211 4 887837739 +553 519 5 879949042 +216 184 4 880245056 +796 485 4 893279958 +593 747 4 877728878 +547 338 2 891282967 +788 183 5 880868743 +833 204 1 875039255 +346 203 4 874948139 +756 409 2 874830998 +484 216 4 891195105 +660 739 2 891201925 +352 79 4 884289693 +655 285 4 887425936 +616 323 4 891224801 +708 1061 3 892719143 +216 66 2 881428365 +91 501 2 891439130 +783 335 3 884326545 +407 239 4 875553509 +757 241 3 888466863 +647 403 4 876533657 +715 69 4 875963692 +757 202 4 888445730 +460 224 4 882911603 +834 100 4 890862311 +484 237 3 881450112 +778 195 4 890769370 +622 101 5 882592662 +585 713 4 891282808 +666 436 3 880568637 +94 658 3 891722533 +42 491 3 881106711 +92 235 3 875640338 +697 282 4 882622559 +147 898 5 885593965 +332 327 5 887916324 +724 538 2 883757537 +504 1046 4 887912298 +551 410 5 892784093 +504 294 2 887912722 +453 684 3 888205336 +500 762 4 883865532 +393 623 3 889731562 +788 69 4 880868144 +90 385 4 891385899 +852 685 3 891036435 +788 451 4 880871240 +729 354 5 893286637 +682 724 4 888517948 +588 231 4 890028987 +49 372 4 888069040 +815 623 3 878697043 +815 603 3 878694664 +751 42 5 889133429 +851 1009 2 874789084 +758 578 4 881977872 +782 991 2 891500230 +648 483 5 882212708 +201 855 4 884111873 +56 1028 4 892911227 +141 276 1 884584817 +152 740 4 880149197 +849 928 5 879695153 +527 170 3 879456637 +528 83 5 886101632 +828 269 4 891033574 +472 597 5 892791062 +787 329 4 888980193 +655 1375 3 887426008 +417 373 3 880952988 +484 29 3 891195532 +673 272 5 888786942 +342 1057 2 875318783 +798 690 4 877117972 +660 347 3 891197585 +500 780 3 883876904 +647 213 3 876534151 +367 98 5 876689932 +405 38 5 885548093 +257 57 5 879547717 +790 367 4 885156114 +660 771 2 891201984 +397 680 1 875063649 +721 688 3 877136967 +102 396 2 892993735 +835 628 3 891032930 +789 93 4 880332063 +655 125 2 887426200 +804 228 4 879441391 +796 98 5 892663090 +207 223 3 880388784 +653 121 4 878854769 +90 402 5 891385335 +567 32 5 882426644 +276 993 3 874787065 +385 484 4 879442559 +435 28 3 884131799 +788 798 2 880870827 +506 187 5 885135819 +468 367 4 875296868 +643 824 3 891449681 +23 216 4 874787204 +694 604 4 875727399 +493 91 3 884132287 +334 56 4 891546914 +637 873 1 882899608 +688 338 5 884153751 +669 490 5 892550283 +182 48 3 876436556 +830 288 1 891899475 +851 27 4 875806765 +680 285 5 877075079 +805 1232 3 881703472 +634 922 4 875728913 +649 147 4 891440214 +840 465 4 891204798 +425 124 2 878737945 +378 623 3 880333168 +524 195 2 884634849 +121 298 2 891388676 +671 147 1 884035992 +406 152 2 880131666 +313 504 5 891013859 +276 518 4 888873407 +339 404 4 891035147 +840 166 5 891204798 +763 283 4 878915600 +837 225 3 875722371 +26 252 3 891385569 +178 607 3 882826347 +168 744 5 884288058 +621 1047 3 880738080 +773 45 4 888538776 +301 4 4 882077033 +13 197 4 881515239 +805 147 5 881694286 +303 319 5 879466065 +342 216 5 875320104 +804 1178 3 879445990 +815 131 2 878698449 +119 70 3 874781829 +595 1165 1 886921748 +194 173 5 879521088 +425 976 1 878738992 +821 275 5 874792369 +291 3 3 874833936 +838 181 5 887063696 +43 222 4 883955547 +693 98 4 875483268 +450 87 5 882374059 +758 100 5 881975119 +96 183 4 884403123 +405 288 5 885544635 +837 274 4 875721989 +392 260 1 891037790 +699 820 2 880696597 +419 79 4 879435590 +472 94 5 892791063 +87 535 4 879876315 +77 96 3 884752562 +794 514 5 891035604 +60 656 4 883327018 +606 103 3 880923349 +442 204 3 883389028 +638 431 4 876695108 +418 333 5 891282520 +623 127 4 891032275 +788 699 3 880869323 +56 237 5 892679540 +694 1035 4 875728345 +659 496 5 891385258 +551 603 5 892776524 +782 872 2 891498513 +528 294 3 888520438 +639 57 3 891239862 +716 48 5 879795314 +535 45 3 879618655 +680 195 4 876816106 +222 154 3 878183747 +484 150 4 891195246 +847 826 3 878939266 +833 127 5 875035660 +566 70 4 881649563 +642 231 3 886454812 +770 282 5 875972927 +53 156 4 879442561 +560 127 5 879976071 +796 357 4 892662400 +758 221 3 881976335 +268 290 3 875742866 +618 815 4 891309552 +798 832 4 875637822 +755 343 3 882570077 +318 40 4 884497882 +727 684 4 883710948 +645 483 5 892053456 +305 166 4 886322719 +151 194 4 879524443 +323 295 3 878739519 +655 1406 3 888984325 +796 121 5 892661043 +805 148 2 881695911 +545 588 4 879901459 +782 352 1 891498513 +20 143 3 879669040 +407 127 3 875044597 +557 253 3 880485693 +605 294 4 879365219 +286 382 5 877531830 +661 751 4 886840577 +562 4 1 879196517 +588 742 4 890024002 +831 333 4 891353915 +730 117 3 880310300 +813 289 4 883752455 +699 717 1 878882511 +830 225 3 891560596 +402 276 5 876267014 +773 769 1 888540390 +351 882 5 879481589 +109 168 3 880577734 +839 260 2 875751560 +833 854 4 875038529 +639 958 4 891241052 +796 417 4 893218933 +735 126 3 876698570 +370 52 4 879434969 +707 97 4 886285876 +498 664 5 881955596 +671 117 3 875389187 +758 1159 5 881974639 +749 117 4 878846654 +751 291 3 889299155 +499 191 5 885599307 +343 53 5 876407421 +767 141 4 891462870 +682 17 3 888520923 +213 170 5 878955886 +733 16 3 879535969 +94 464 5 885873302 +643 1012 4 891445550 +424 151 2 880859722 +588 367 5 890024117 +489 319 3 891447218 +798 367 3 875743434 +844 195 3 877387825 +703 471 4 875242885 +654 275 5 887863394 +767 172 5 891462614 +497 1030 1 879363780 +738 233 3 875353678 +492 1147 1 879969670 +689 15 5 876676502 +839 257 3 875751930 +312 1298 5 891699426 +167 241 5 892738419 +191 345 4 891560753 +648 432 5 884368538 +854 186 3 882814298 +551 763 5 892784008 +246 570 1 884923592 +425 174 3 878738149 +756 399 2 874828967 +334 607 3 891546206 +637 291 4 882905183 +848 69 2 887043340 +600 231 3 888452152 +600 230 4 888451839 +656 301 3 892318648 +683 312 3 893284183 +18 529 5 880130515 +838 318 5 887067085 +758 26 4 881977108 +616 286 5 891224448 +627 62 4 879531397 +271 493 4 885848558 +486 1047 2 879875316 +586 204 3 884066723 +109 564 3 880582633 +455 298 4 882818787 +387 101 4 886479528 +194 465 3 879527513 +838 72 4 887067162 +87 808 3 879875996 +663 333 5 889491655 +253 427 5 891628229 +645 216 4 892054732 +791 328 4 879448087 +537 730 3 886031211 +506 576 4 885135954 +668 300 4 881523612 +826 50 5 885690525 +840 1065 5 891209285 +839 244 3 875751958 +694 176 5 875729146 +287 815 3 875334248 +660 272 4 891197481 +848 32 5 887042871 +805 137 5 881697713 +815 451 3 878696965 +788 540 3 880871394 +846 566 5 883948874 +537 1010 2 886030381 +69 117 4 882072748 +380 208 2 885480301 +650 1060 3 891387833 +850 204 5 883194859 +487 1425 4 884024462 +757 1188 3 888466651 +815 405 4 878692071 +806 197 4 882387728 +806 204 5 882388205 +573 182 4 885843892 +699 147 2 883279472 +392 493 4 891038945 +655 1273 2 888984386 +659 367 3 891385166 +650 1039 3 891383229 +458 190 4 886397771 +405 1584 1 885549407 +367 5 4 876689991 +451 1280 1 879012773 +502 270 2 883702043 +286 1051 4 876522261 +763 127 4 878920656 +484 79 5 891195322 +674 323 3 887762937 +655 258 2 887650944 +745 98 5 880123905 +648 40 4 884882234 +72 191 5 880036515 +704 259 2 891396904 +490 410 4 875428570 +500 387 2 883875388 +747 478 4 888639437 +666 504 4 880139120 +854 979 4 882813315 +790 1119 4 885156732 +125 21 3 892838424 +5 365 1 875637144 +836 880 4 885753506 +13 455 3 882141425 +452 856 4 885817937 +409 327 2 881104837 +65 511 4 879216567 +367 164 4 876690119 +308 519 4 887737997 +361 228 4 879441285 +397 286 4 882839517 +405 855 1 885549543 +749 132 4 878847926 +406 86 4 879793295 +843 444 2 879443442 +233 133 5 877661364 +470 181 4 879189434 +637 293 3 882902835 +606 491 4 880923799 +749 659 5 878847611 +37 833 4 880915565 +234 951 1 892334766 +715 655 4 875964203 +793 150 4 875103842 +378 275 5 880044312 +707 100 5 880059810 +746 79 5 885075165 +158 449 2 880134815 +55 121 3 878176084 +486 1011 4 879874939 +835 654 5 891033173 +545 234 3 879899905 +648 930 3 882212131 +818 912 3 891870301 +715 591 4 875962109 +782 1394 4 891498323 +222 140 1 881060062 +299 396 4 889503503 +606 138 3 880927923 +774 22 2 888556600 +627 161 2 879531302 +829 318 5 883149860 +648 413 2 882212609 +758 483 5 881975577 +459 289 4 879561679 +552 815 3 879222336 +851 1245 4 875730826 +323 93 4 878739177 +655 531 4 887473570 +405 747 1 885549309 +711 257 3 876185726 +291 772 4 874868169 +839 825 4 875752274 +459 245 3 879561731 +805 32 4 881697792 +207 117 3 875504809 +738 71 3 875350352 +682 201 4 888519365 +387 298 3 886480623 +620 409 4 889988196 +670 511 4 877975285 +230 211 5 880485181 +637 1011 1 882904961 +458 1067 5 886395311 +312 509 5 891699490 +13 307 2 881514684 +13 227 5 882397650 +653 139 2 880153123 +622 1074 2 882671185 +629 690 2 880116067 +784 328 3 891387502 +854 475 4 882812352 +497 291 3 879361707 +21 444 3 874951859 +293 245 3 888904265 +814 559 3 885411132 +569 321 4 879793103 +405 1194 1 885546201 +383 132 5 891193108 +804 203 4 879442122 +468 170 4 875301056 +782 1244 3 891499660 +601 69 3 876348987 +849 143 5 879695515 +286 955 5 877533914 +858 331 3 880932343 +847 288 4 878774722 +848 529 5 887042871 +456 546 4 881371942 +639 615 5 891240160 +749 434 4 878848369 +833 379 2 875224178 +751 381 1 889134419 +378 255 4 882642831 +573 507 5 885844638 +796 546 4 893048505 +503 1 5 879438233 +92 307 4 892655699 +851 987 1 875730601 +49 161 1 888069513 +399 102 3 882344236 +766 559 4 891310824 +749 616 3 878848612 +689 298 4 876676211 +393 122 1 889731465 +591 655 4 891031469 +786 82 4 882844096 +732 938 1 882590201 +807 450 4 893082931 +201 654 3 884113422 +837 535 1 875722246 +655 1213 2 887489282 +89 222 5 879441491 +794 221 4 891036222 +592 881 1 882607476 +543 730 3 874864346 +694 239 4 875729520 +542 585 2 886533068 +117 1165 3 881010727 +805 12 4 881695677 +654 218 2 887864330 +484 229 5 891195476 +760 125 4 875666242 +655 813 3 888474456 +504 139 3 887840589 +144 127 4 888105823 +130 1280 4 877984734 +203 1049 2 880434463 +190 546 3 891626000 +452 58 3 875261666 +747 501 5 888639362 +340 180 3 884991236 +660 222 2 891198063 +684 118 4 878760274 +854 499 4 882813537 +697 473 5 882622372 +593 371 3 875659076 +716 472 3 879794032 +432 248 4 889416352 +320 147 4 884748641 +751 755 4 889298116 +393 280 4 887744724 +405 444 3 885548385 +709 129 2 879846332 +806 144 5 882388658 +686 127 5 879545481 +197 4 3 891409981 +440 242 5 891546594 +786 520 4 882843311 +782 326 5 891498322 +813 335 2 883752417 +521 186 4 884478358 +717 106 4 884642932 +607 213 4 883880027 +826 92 4 885690636 +181 1199 1 878962675 +222 477 2 883815749 +506 211 4 874873198 +56 421 4 892677186 +606 685 3 880923349 +87 1028 4 879876946 +853 1025 4 879365360 +388 591 4 886437039 +435 679 3 884133372 +328 227 3 885047129 +621 121 3 880227385 +738 230 4 875351530 +788 712 3 880871804 +92 1042 3 875907079 +293 275 3 888904696 +698 505 2 886367750 +663 69 4 889493770 +245 596 4 888513361 +722 307 4 891280245 +618 69 4 891308176 +122 1113 5 879270677 +543 192 4 874863878 +582 369 1 882963114 +682 56 4 888519077 +454 279 4 881960330 +640 233 4 874778479 +710 187 5 882064096 +144 147 3 888104402 +378 392 3 880055636 +533 408 4 880402916 +851 693 5 875731816 +727 507 2 883710948 +768 111 3 880136139 +167 831 3 892738141 +752 289 1 891208299 +825 988 3 889020557 +846 258 3 883946284 +697 928 3 882622044 +200 94 4 884130046 +112 891 3 892439990 +782 1644 2 891500110 +642 366 4 886131707 +378 708 4 880055949 +734 83 4 891022733 +725 300 4 876106729 +801 259 3 890332986 +654 238 4 887864452 +804 662 4 879442413 +843 448 4 879443297 +708 866 5 892719143 +674 304 3 887762296 +758 482 5 881975922 +633 333 3 875567562 +766 482 3 891309117 +659 176 4 891045747 +109 576 3 880580663 +436 217 4 887771146 +301 232 4 882078287 +825 841 4 880756904 +560 845 3 879976602 +851 11 5 875731441 +31 153 4 881548110 +804 157 4 879442862 +802 445 3 875985686 +539 1211 3 879788371 +844 90 3 877387242 +690 223 4 881179069 +850 208 5 883194973 +748 179 4 879454728 +826 182 4 885690600 +224 380 4 888104188 +721 288 3 877137447 +751 168 5 888871900 +758 764 1 882054519 +695 305 3 888805797 +815 496 5 878694027 +855 283 3 879825383 +780 300 3 891362937 +294 254 3 889242937 +189 181 3 893264023 +840 1266 5 891204535 +422 219 4 879744086 +748 188 4 879455167 +752 322 1 891208261 +617 675 4 883789425 +640 22 4 874778479 +597 323 3 875339041 +782 750 4 891497793 +109 715 2 880583519 +830 194 4 891898720 +840 252 4 891203810 +805 175 5 881697229 +746 50 5 885075165 +533 77 4 879191713 +484 385 4 891195416 +807 705 4 892528918 +650 79 3 891369924 +592 281 4 882608573 +705 286 3 883426747 +146 345 4 891457538 +573 258 4 885843700 +423 286 4 891394632 +417 1090 3 879649577 +524 1093 4 884628136 +277 258 4 879544145 +465 7 5 883529916 +400 269 4 885676230 +592 1129 5 882608021 +31 303 3 881547719 +8 403 4 879362234 +303 477 3 879483827 +835 131 5 891033560 +817 358 4 874815679 +747 4 4 888733111 +833 653 4 875039558 +854 87 4 882814063 +424 115 1 880859385 +234 358 1 891034007 +824 678 3 877021121 +776 276 4 892313295 +700 168 3 884494420 +303 230 3 879483511 +786 161 4 882843534 +7 180 5 891350782 +655 371 3 887611537 +95 781 2 880572495 +381 178 4 892696291 +215 433 3 891435501 +747 302 5 888638091 +788 82 3 880870116 +846 205 5 883948141 +694 356 4 875729622 +796 282 4 892660364 +782 1609 1 891499439 +705 1228 2 883428258 +639 357 3 891239156 +470 276 5 879178619 +806 157 3 882387974 +615 736 5 879448149 +293 150 3 888904838 +531 259 1 887048789 +566 165 5 881649530 +790 748 1 884461073 +642 225 4 886569942 +632 91 3 879459187 +629 98 5 880117254 +785 1050 3 879439232 +620 951 3 889988258 +717 246 5 884715146 +665 293 4 884290728 +533 476 2 879365951 +828 325 2 891035438 +487 58 5 883446907 +591 211 4 891031469 +639 12 3 891239030 +606 845 4 878147770 +277 762 3 879543931 +653 746 5 878853936 +835 50 4 891035309 +378 951 3 880056547 +378 961 3 880055706 +787 307 4 888979074 +758 686 3 881974823 +184 813 4 889907711 +160 61 4 876861799 +635 327 5 878878752 +747 693 5 888732899 +158 562 4 880134607 +852 473 3 891036884 +706 331 5 880996945 +804 95 2 879447476 +738 603 5 892844079 +709 568 4 879848396 +615 423 5 879448672 +766 52 4 891309177 +852 408 5 891036843 +843 636 4 879443837 +624 250 4 879792623 +753 510 4 891401457 +627 697 5 879530042 +827 268 4 882201175 +293 316 3 888904392 +757 144 4 888466490 +666 632 4 880568028 +59 687 1 888206764 +796 731 3 893047320 +117 410 3 886021458 +715 288 4 875962201 +189 952 5 893264619 +677 222 4 889399171 +734 582 2 891022684 +711 193 4 879993092 +345 124 5 884900777 +707 65 4 886286004 +747 1204 4 888639102 +122 403 4 879270805 +833 154 5 875038775 +592 332 3 882607286 +230 100 4 880485856 +679 241 3 884488149 +827 313 3 892157221 +632 233 3 879459441 +798 356 3 875639236 +245 210 3 888513026 +642 383 5 886570062 +849 172 5 879695469 +710 223 4 882063766 +775 270 2 891032742 +493 124 3 884130253 +489 332 5 891447823 +840 428 4 891209547 +758 434 3 881976233 +580 258 5 884124103 +682 154 5 888521489 +399 57 4 882343260 +376 357 4 879434750 +704 172 2 891397058 +797 328 2 879439136 +682 254 2 888518871 +476 208 5 883364250 +606 435 4 880923862 +727 680 3 883708462 +641 242 5 879370299 +845 311 4 885409493 +788 125 3 880870335 +326 4 1 879876688 +689 748 5 876674637 +853 302 4 879364669 +13 507 1 882140070 +603 419 2 891957012 +463 243 1 877384970 +795 771 3 883255324 +788 744 4 880869621 +158 175 4 880135044 +774 203 2 888558447 +201 1401 2 884140670 +621 940 3 874963166 +443 313 4 883504564 +506 568 5 889979761 +578 250 2 888957735 +738 385 5 892844079 +472 810 5 875982922 +715 111 3 875962173 +308 420 4 887740216 +839 281 3 875752456 +851 272 5 891961663 +465 8 4 883530991 +648 455 3 882211685 +707 956 5 886287107 +500 301 2 888538350 +254 167 3 886474712 +841 892 3 889067182 +663 134 5 889493818 +796 1040 3 893047460 +506 770 3 874874110 +859 111 4 885776056 +807 495 4 892530792 +862 50 5 879304196 +791 50 5 879448338 +312 610 5 891698921 +757 1035 2 888469113 +846 36 2 883950665 +238 405 4 883576424 +360 56 4 880356131 +655 746 3 891999461 +197 182 3 891409935 +1 153 3 876893230 +684 596 3 875812351 +826 161 3 885690677 +436 43 2 887770300 +339 136 5 891033898 +586 295 3 884068393 +682 218 3 888520977 +856 879 3 891489450 +733 224 4 879535265 +546 181 5 885140754 +558 15 3 879436140 +530 204 4 883790833 +474 943 4 887925751 +727 109 2 883709266 +813 538 3 883752380 +773 1187 3 888540020 +724 326 4 883757671 +648 168 5 884797068 +486 1 4 879874870 +763 69 4 878915600 +738 174 5 875349968 +825 298 5 880756726 +391 471 2 877399864 +26 678 2 891349122 +820 538 3 887954906 +417 79 3 879647924 +292 50 4 881103977 +709 452 3 879848318 +863 754 3 889289067 +732 324 2 882590201 +749 245 4 878846423 +563 70 4 880506528 +784 292 4 891387315 +653 654 2 880606620 +280 228 3 891701405 +42 660 3 881108484 +706 7 3 880997412 +179 914 5 892151174 +332 356 3 888360396 +39 272 2 891400094 +815 102 3 878694028 +606 93 4 878142865 +308 182 5 887737194 +357 407 3 878952341 +642 726 2 886570131 +548 898 1 891043509 +327 507 4 887744205 +699 405 3 878882608 +532 781 5 877635505 +844 423 3 877382762 +418 750 2 891282626 +790 230 4 885155846 +536 404 4 882359838 +622 396 1 882671222 +772 332 4 877533731 +619 17 1 885954184 +852 323 3 891036039 +707 602 4 886287290 +658 488 4 875148196 +49 1075 2 888066424 +756 3 1 874829174 +666 255 4 880313423 +690 237 4 881178330 +653 597 4 878854810 +437 629 3 881002405 +766 95 3 891309421 +373 433 3 877098223 +793 109 4 875104119 +768 332 4 879523820 +201 212 4 884111899 +422 447 4 879744143 +715 232 4 875964905 +835 610 5 891034401 +272 208 4 879455176 +429 847 3 882385569 +543 663 4 874866208 +689 121 5 876676433 +661 194 5 876016667 +552 405 3 879222268 +690 234 4 881179878 +643 211 4 891447617 +776 569 3 892920403 +535 79 3 879618502 +571 194 3 883354818 +543 397 3 877547005 +633 1046 4 877212085 +786 240 1 882842762 +851 255 3 890343651 +412 211 4 879717177 +694 237 4 875728509 +846 136 3 883947861 +607 212 3 883880052 +653 193 4 878866951 +833 614 2 875131539 +381 462 4 892697442 +836 507 4 885754149 +851 544 4 874728396 +554 684 4 876550342 +722 678 3 891280443 +280 111 4 891700983 +823 233 4 878439365 +340 15 5 884991396 +391 148 3 877400062 +666 616 3 880139253 +499 153 4 885599269 +363 186 3 891494865 +405 60 1 885549589 +455 660 4 879111454 +650 69 2 891382877 +773 171 5 888538726 +582 475 5 882961000 +747 929 3 888733218 +5 189 5 878844495 +846 1411 4 883950364 +702 1127 2 885767414 +476 56 4 883365019 +690 233 3 881179968 +268 201 3 875309801 +393 184 4 889555251 +104 250 3 888465972 +632 1 3 879458692 +707 647 5 880061652 +494 86 3 879541298 +83 820 2 881971231 +639 651 4 891239349 +782 532 2 891499370 +389 588 5 879991298 +794 557 4 891036008 +436 1227 2 887772028 +587 323 4 892871284 +82 169 4 878769442 +280 385 5 891702544 +507 691 5 889964162 +452 127 5 885544109 +567 474 5 882426135 +405 727 1 885546247 +391 479 4 877399030 +802 1025 3 875984637 +355 329 3 879486421 +399 401 3 882350710 +643 1139 3 891449680 +118 258 5 875385386 +318 265 4 884495664 +102 265 3 888801622 +846 403 3 883948765 +244 1150 4 880604195 +804 675 3 879445355 +854 126 3 882812826 +390 13 2 879694409 +537 474 5 886030805 +795 742 2 880556833 +775 269 4 891032742 +158 810 4 880134759 +548 358 2 891043547 +798 465 4 876176115 +766 675 3 891308927 +368 777 2 889783586 +301 404 3 882076463 +498 83 3 881957846 +437 432 3 880140854 +830 22 5 891561673 +686 174 4 879545966 +59 633 3 888204641 +487 588 5 883446725 +445 644 3 890988205 +838 497 5 887067162 +12 228 4 879959465 +447 1326 4 878854838 +506 497 5 874873703 +14 173 4 879119579 +830 177 4 891561870 +508 234 4 883767465 +585 1558 5 891282893 +833 1214 4 875225193 +378 1053 3 880332831 +459 286 4 879561532 +643 404 4 891447959 +788 10 4 880869584 +582 293 5 882961082 +618 526 5 891308141 +308 567 4 887741329 +637 934 1 882905285 +433 293 3 880585843 +805 603 4 881696335 +676 64 5 892686563 +712 60 1 874730520 +573 347 4 885843476 +455 591 4 879109923 +714 15 3 892777197 +654 97 3 887864727 +606 12 2 880924384 +299 749 1 877618647 +398 429 4 875716829 +725 100 5 876106729 +691 478 4 875543281 +606 655 4 880926469 +417 810 3 879649178 +216 763 4 880232953 +788 53 1 880871717 +237 176 3 879376328 +749 841 3 878850768 +846 736 4 883948874 +804 1 5 879442661 +716 282 3 879793501 +850 490 5 883194859 +199 408 5 883782716 +389 945 4 880165070 +605 357 5 879426180 +397 210 4 885349825 +403 100 5 879785974 +665 109 4 884292654 +733 322 2 879536523 +230 168 4 880484616 +435 321 3 889722170 +345 65 4 884992158 +778 209 4 890769470 +391 628 4 877399864 +498 124 3 881955291 +790 572 3 885157956 +843 145 3 879443597 +479 148 2 879460354 +303 271 2 879466065 +766 674 3 891310772 +833 22 3 875122716 +450 1282 3 882394364 +489 268 2 891448453 +13 228 4 882140389 +177 642 4 880130972 +378 435 4 889665232 +216 673 4 880244779 +835 1153 4 891035309 +782 1379 3 891500028 +860 4 4 885991163 +561 673 3 885809313 +271 481 3 885848559 +623 121 4 891034129 +551 177 5 892777274 +756 1274 2 874828278 +407 756 2 876348232 +85 50 5 882813248 +435 926 3 884133972 +782 515 3 891500028 +553 1009 4 879949212 +412 150 4 879717621 +745 181 2 880122965 +743 879 4 881277656 +798 222 3 875295616 +116 315 3 886309605 +436 99 3 887770344 +825 864 3 880756725 +567 23 4 882426740 +749 231 4 878849660 +487 71 3 883530786 +472 386 5 892790953 +268 178 4 876518557 +716 526 5 879795269 +830 402 4 892503093 +360 297 4 880354484 +569 258 5 879792991 +848 152 5 887046166 +746 24 4 885075434 +642 292 2 887663326 +201 46 4 884140247 +379 141 4 880525839 +49 725 2 888069354 +712 26 2 874957053 +358 65 4 891270405 +744 238 4 881170416 +496 147 3 876064356 +508 91 4 883767246 +741 275 4 891019587 +776 22 5 891628752 +823 274 4 878439038 +694 378 3 875730313 +592 252 3 882608915 +566 684 4 881649802 +747 1067 2 888733348 +542 71 3 886533562 +22 89 5 878887680 +663 260 2 889491861 +806 24 3 882385394 +500 472 3 883865374 +642 66 5 885603740 +484 174 5 891195298 +787 259 4 888979721 +499 117 3 885599246 +627 70 4 879530408 +659 578 3 891387351 +774 258 1 888555792 +716 28 5 879794815 +667 192 5 891034947 +648 145 4 884883616 +78 25 3 879633785 +663 288 4 889491617 +328 318 5 885045740 +830 95 3 891561474 +625 168 3 891262837 +496 469 3 876065962 +585 18 2 891283124 +532 722 3 888629836 +524 498 5 884636453 +764 1221 4 876430033 +554 13 2 876232730 +826 684 3 885690600 +843 195 4 879444711 +766 951 3 891310540 +654 735 4 887864846 +845 903 4 885409493 +832 334 2 888259984 +59 662 3 888206125 +389 88 3 880613773 +854 409 2 882813421 +608 418 1 880405971 +599 276 2 880951439 +534 477 3 877807780 +683 133 5 893286208 +606 471 4 878146986 +61 269 3 891206125 +773 228 3 888539993 +472 174 5 875981595 +128 605 3 879967804 +293 469 4 888906378 +450 168 5 882376803 +407 158 2 876342927 +682 772 4 888517922 +640 180 5 874777528 +851 338 3 891961750 +707 900 4 890008041 +612 275 5 875324710 +488 707 2 891294707 +655 764 1 887431074 +682 121 4 888520799 +638 176 3 876694861 +727 265 4 883710326 +221 55 4 875245319 +595 546 4 886922069 +551 92 5 892783672 +608 742 4 880406299 +837 19 4 875721948 +529 322 4 882535383 +227 249 2 879035775 +665 9 4 884290608 +606 24 5 878143509 +795 240 2 883767338 +467 1226 4 879532744 +286 431 5 889651822 +682 47 1 888517870 +778 121 3 890803561 +588 161 4 890015580 +445 1081 1 891200447 +393 1016 5 887744688 +643 739 3 891449476 +627 802 2 879531557 +751 269 5 888871900 +373 213 4 877100061 +340 502 2 884991678 +405 545 1 885547766 +561 480 4 885807484 +774 135 3 888556600 +853 331 2 879364822 +788 218 4 880871328 +616 303 4 891224558 +727 50 4 883708951 +825 50 4 880755418 +593 106 2 875660347 +246 724 4 884922383 +853 245 3 879365091 +21 994 2 874951104 +856 678 3 891489666 +863 264 3 889289385 +436 327 5 887768694 +405 777 1 885548275 +392 50 5 891038110 +719 118 2 879360001 +846 1286 4 883948173 +642 871 3 885605835 +283 412 5 879297526 +828 753 4 891037047 +709 127 5 879847945 +592 939 3 882956510 +725 358 3 876103744 +766 493 4 891309261 +841 331 5 889066999 +843 183 5 879443800 +94 504 5 885870612 +553 56 4 879949042 +655 337 2 887433538 +660 99 2 891200704 +286 278 5 876521700 +297 228 2 875238984 +302 289 3 879436874 +561 215 3 885809872 +846 603 5 883947960 +666 856 5 880139765 +856 258 4 891489356 +755 302 4 882569771 +796 326 4 892612032 +659 131 4 891383412 +468 97 5 875288503 +757 193 4 888445521 +847 405 3 878938982 +782 1669 2 891500150 +807 612 5 892528690 +313 625 4 891030189 +696 313 3 886403672 +625 23 4 891263960 +524 414 4 884635136 +618 23 5 891306990 +774 849 1 888557482 +151 222 5 879525002 +759 298 4 875227858 +178 304 4 882823375 +798 142 3 876175427 +839 276 3 875751799 +486 327 3 879874112 +715 179 4 875963596 +826 1219 4 885690442 +606 129 3 878142865 +815 465 5 878694952 +425 343 3 890346517 +344 26 3 884901561 +308 671 4 887739014 +718 742 5 883348873 +514 13 3 876063880 +748 176 5 879454773 +381 134 5 892696347 +81 1059 3 876534366 +577 468 3 880474766 +472 742 5 883903715 +655 855 3 887428965 +807 22 5 892528470 +851 564 3 875806892 +621 578 5 874964604 +650 502 3 891387353 +766 272 4 891306880 +774 436 2 888557739 +841 748 4 889067253 +804 568 4 879442793 +380 651 3 885478292 +655 1147 3 887472767 +634 991 3 875729239 +727 378 3 883712603 +854 122 3 882813287 +857 294 3 883432251 +308 69 2 887738664 +711 420 5 879995302 +437 237 4 880140466 +727 386 2 883712805 +282 319 4 879949394 +434 151 5 886724453 +653 941 1 880153040 +850 202 4 883194737 +450 630 3 882376188 +846 674 4 883949046 +144 14 4 888104122 +864 71 3 888889389 +765 25 4 880346418 +682 566 3 888519260 +65 531 4 879218328 +249 327 4 879571489 +661 684 3 888299899 +625 498 4 891263703 +197 1420 1 891409683 +757 129 3 888444400 +545 1228 3 884134603 +346 1217 4 886274201 +804 522 3 879445190 +625 144 4 891962917 +823 659 4 878437589 +838 169 4 887067390 +85 238 2 879453965 +804 243 3 879440727 +710 192 5 882063921 +45 7 3 881008080 +863 301 4 889289240 +472 443 4 875982149 +718 546 4 883349158 +751 386 3 889299078 +655 311 3 887473702 +694 584 4 875727877 +447 1016 3 878854918 +311 645 5 884366111 +660 38 2 891201842 +167 615 5 892738277 +518 121 5 876823804 +760 50 3 875666268 +619 53 2 885954341 +798 662 3 875916187 +763 418 4 878921530 +722 458 4 891280955 +650 636 3 891370066 +763 98 4 878914968 +684 202 4 878759384 +796 393 4 893218933 +669 12 5 891517287 +690 120 1 881179469 +625 655 3 891999926 +601 210 4 876350060 +84 823 3 883452672 +653 575 1 880153406 +417 796 4 879648881 +788 76 3 880869323 +447 546 2 878854704 +806 150 4 882385563 +227 405 2 879035934 +298 820 4 884183897 +864 408 5 877214085 +682 384 2 888522073 +705 284 3 883427190 +751 748 2 887135437 +543 94 3 877550791 +183 94 3 891466863 +239 647 5 889180651 +711 143 5 879993236 +864 53 4 888891794 +865 1028 1 880144024 +648 368 2 884366748 +833 157 2 875132195 +753 499 3 891402323 +758 529 4 881979609 +551 779 4 892785399 +429 277 4 882386096 +778 738 1 891578101 +807 1483 4 892527385 +506 684 5 874873529 +297 156 4 875240090 +846 585 2 883949643 +606 307 4 888334083 +765 242 5 880345862 +841 288 3 889067046 +480 294 1 891208058 +343 154 5 876406552 +648 444 3 884883679 +544 331 3 884795516 +358 174 1 891270560 +847 238 2 878939975 +862 407 3 879303843 +672 815 4 879788819 +798 270 4 880483677 +712 623 4 874729778 +188 318 5 875072518 +683 682 1 893284032 +387 526 4 886483150 +357 687 3 878951101 +805 358 3 879971215 +16 87 4 877720916 +748 357 3 879454584 +786 234 3 882843753 +838 311 4 887060659 +403 118 5 879785974 +795 184 4 880588118 +279 550 4 880850073 +435 781 3 884133447 +693 606 4 875484584 +847 1172 1 878939803 +326 849 1 879876975 +788 1135 2 880871460 +811 304 5 886377311 +535 702 1 879619067 +848 584 3 887039531 +854 1014 3 882813315 +125 1270 3 892838977 +714 300 5 892778035 +757 423 3 888445279 +775 272 4 891032742 +864 642 3 888890432 +332 240 4 887938299 +826 188 4 885690636 +778 204 4 890726518 +807 1138 5 893084886 +825 832 3 881101246 +846 672 4 883949594 +537 338 1 886029239 +697 1160 1 882622824 +286 747 4 877533796 +798 1517 4 875743605 +703 237 5 875242787 +661 209 4 876013492 +743 222 4 881277962 +139 242 3 879537876 +567 1021 4 882425736 +752 311 3 891207983 +292 197 5 881105246 +648 15 1 884795447 +363 4 5 891494962 +475 127 4 891627857 +279 864 5 875296829 +663 742 4 889492720 +540 475 4 882156983 +370 193 4 879435168 +234 100 4 892079769 +829 250 3 882816754 +125 49 3 879455241 +598 343 2 886710795 +735 327 3 876698022 +669 258 2 891182622 +298 132 5 884182966 +417 501 3 879647540 +489 538 4 891448222 +716 412 2 879794727 +648 9 1 884795447 +524 419 1 884635031 +458 283 5 886394730 +790 191 3 885155209 +537 212 3 886032123 +727 232 3 883712780 +17 111 3 885272674 +294 268 4 889241426 +817 147 3 874815947 +268 423 2 875309859 +770 325 4 875971703 +767 176 3 891462759 +293 528 4 888906490 +254 142 3 886474489 +435 369 1 884134771 +535 511 3 879618655 +804 184 5 879441727 +255 546 3 883216902 +621 270 4 890517239 +419 50 5 879435541 +785 301 4 879438565 +515 1430 3 887658604 +618 98 5 891307494 +276 443 4 874792692 +773 100 4 888539347 +406 418 5 879793081 +834 762 4 890863072 +833 449 2 875223923 +645 427 5 892053483 +697 300 5 882621431 +337 50 5 875184413 +605 153 4 879424784 +58 313 5 884304267 +650 644 3 891371061 +645 134 5 892054364 +416 699 5 893212895 +775 331 4 891032923 +321 651 3 879441178 +757 24 4 888444616 +216 356 3 880245125 +535 213 5 879618849 +21 975 3 874951447 +288 528 4 886374286 +286 22 4 877532889 +474 131 4 887927509 +514 211 3 876067235 +851 760 4 875730418 +712 404 3 874730467 +234 125 3 892335739 +542 315 4 886532120 +334 931 1 891549513 +731 508 1 886186811 +786 183 4 882843150 +50 124 1 877052400 +758 1025 3 881295176 +741 25 3 891458428 +772 304 4 876250442 +727 775 4 883713147 +275 448 3 880314383 +308 194 5 887739257 +682 386 2 888521942 +795 1110 3 883251943 +868 204 2 877105882 +151 168 5 879528495 +103 118 3 880420002 +676 258 2 892685370 +717 282 5 884642817 +198 823 2 884206587 +42 1046 3 881108760 +786 143 4 882843039 +643 92 4 891447835 +293 663 3 888906516 +578 324 1 888957735 +437 450 3 880143040 +158 511 5 880134296 +802 56 3 875985601 +777 157 3 875980235 +718 879 2 883348355 +1 101 2 878542845 +854 273 4 882812852 +835 609 4 891034310 +784 286 3 891386988 +212 318 5 879303928 +94 417 3 891722799 +634 741 3 875728834 +830 633 4 891898661 +181 222 4 878962919 +345 1101 4 884993436 +458 250 1 886396637 +622 402 3 882670252 +122 83 5 879270327 +478 447 4 889396732 +427 328 4 879700908 +843 635 2 879443544 +733 459 4 879535440 +185 286 4 883523876 +711 1160 5 884485704 +301 318 5 882075962 +458 298 5 886396677 +832 326 4 888259121 +798 306 3 875637329 +436 340 5 887768445 +708 362 1 892718575 +434 283 3 886724505 +112 245 4 884992691 +668 752 4 890349005 +642 470 4 886206991 +851 527 5 891961663 +588 1469 3 890026705 +839 475 5 875751856 +741 202 3 891455316 +328 520 5 885045844 +312 673 5 891699426 +379 502 5 887437190 +308 653 5 887736999 +666 582 4 880139642 +532 833 4 888629804 +560 181 4 879975661 +573 22 4 885844394 +80 86 5 887401496 +867 660 4 880078723 +438 815 5 879868581 +776 661 5 893077159 +686 135 5 879547276 +585 740 4 891284588 +487 1074 1 884051840 +771 873 3 886635816 +796 427 4 892662355 +542 121 2 886532381 +851 172 5 875731567 +532 191 5 888635366 +852 118 4 891037262 +184 134 5 889909618 +579 194 5 880952271 +474 510 4 887925837 +838 480 4 887066078 +805 161 1 881694823 +655 582 2 887427131 +712 781 4 874956841 +658 1101 4 875147995 +782 1511 2 891500194 +828 1268 2 891038098 +85 357 4 879454045 +650 181 4 891371116 +313 489 4 891017372 +650 1 3 891369759 +409 530 4 881107602 +547 303 3 891282715 +796 56 5 892663009 +716 705 5 879794892 +435 108 1 884132540 +815 31 4 878695490 +314 72 2 877888996 +600 576 3 888451840 +717 358 2 884642001 +507 121 5 889965997 +756 325 3 874832132 +110 1182 2 886989566 +847 763 1 878775914 +619 295 4 885953804 +833 128 3 875123536 +548 13 1 891415677 +716 427 5 879795375 +268 588 3 875310745 +867 196 3 880079043 +201 173 3 884111360 +655 882 3 887473879 +665 215 2 884294880 +784 271 3 891387623 +457 709 5 882547856 +775 343 4 891033022 +627 51 5 879530866 +786 381 3 882843397 +758 441 3 882054797 +709 294 3 879847304 +682 659 1 888520638 +503 707 5 880382768 +334 217 2 891549805 +495 421 1 888634389 +682 991 2 888518871 +845 877 2 885409719 +70 63 3 884151168 +482 881 3 887644022 +553 197 5 879948831 +699 1068 3 879146547 +664 71 4 878090125 +682 720 4 888522699 +790 91 3 885157862 +196 762 3 881251955 +790 386 2 885158208 +864 50 5 877214085 +798 1049 3 875638150 +748 50 5 879454428 +512 273 5 888579645 +854 281 3 882813047 +627 12 4 879529819 +554 1042 3 876550610 +711 216 4 879993149 +593 1012 3 877727961 +846 519 4 883947694 +658 169 5 875147935 +786 132 5 882842946 +471 225 5 889828026 +655 512 3 887474050 +825 508 4 880756725 +417 668 2 880953014 +601 1540 2 876350017 +398 173 4 875719080 +825 1015 2 880756321 +867 480 5 880078401 +551 802 4 892784437 +703 222 4 875242704 +535 319 5 879617310 +650 228 4 891369954 +470 9 5 879178370 +727 658 5 883711720 +697 181 4 882621913 +780 172 5 891363723 +712 1469 4 874730206 +846 651 3 883948141 +859 25 4 885776056 +861 170 5 881274672 +334 154 4 891547235 +831 1 4 891354573 +805 223 5 881698139 +625 603 4 891636000 +632 684 5 879457903 +629 4 3 880117513 +694 228 4 875727306 +385 1022 3 883791570 +810 326 5 891873739 +94 69 3 885870057 +334 171 4 891546132 +44 447 4 878347598 +395 216 3 883764378 +221 121 2 875244813 +548 156 5 891044356 +867 23 5 880078723 +679 196 4 884487610 +830 227 3 891561737 +405 365 1 885545672 +391 48 4 877399171 +249 2 3 879641284 +798 29 4 875915913 +548 595 4 891416071 +865 928 1 880144368 +693 188 2 875483847 +653 97 3 878854383 +246 1039 4 884921227 +705 550 2 883428058 +454 114 3 881960330 +654 1 4 887863557 +782 1038 4 891498213 +202 195 4 879726914 +843 152 2 879446458 +405 202 4 885547221 +774 357 2 888556434 +846 601 5 883947500 +267 203 5 878972241 +319 682 3 879977089 +645 660 3 892055628 +289 742 4 876789463 +731 945 4 886183209 +179 902 1 892151064 +868 1031 1 877109535 +610 210 3 888703290 +300 1094 5 875650298 +572 124 5 879449610 +786 191 4 882843272 +434 628 1 886724873 +790 708 3 885158082 +711 568 3 879995238 +790 864 4 884462647 +276 1000 2 877935262 +225 603 5 879540649 +721 325 3 877137109 +363 120 1 891500218 +267 239 4 878972873 +334 1226 4 891545540 +276 783 1 874792143 +246 174 3 884921086 +588 51 4 890026395 +825 741 4 881343947 +119 259 4 886175571 +707 902 5 890008121 +598 312 5 886711452 +770 288 4 875971612 +434 287 5 886724359 +697 25 3 882622188 +843 159 2 879443951 +506 168 5 874874055 +765 286 5 880345862 +217 385 2 889069808 +151 208 4 879524443 +846 648 5 883948343 +610 183 4 888703749 +378 77 4 880056453 +497 195 4 879310730 +788 983 3 880871173 +530 195 3 883784105 +716 488 4 879796171 +767 506 5 891462829 +474 526 5 887927339 +221 1437 3 875245967 +659 524 4 891332158 +704 657 4 891397667 +10 59 4 877886722 +848 615 5 887037980 +455 289 3 892230574 +643 268 4 891450748 +805 154 5 881704063 +833 928 2 879818689 +523 1014 5 883700307 +330 202 5 876546948 +643 483 4 891446889 +373 941 4 877105563 +269 181 2 891448871 +418 327 1 891282836 +117 265 4 881012940 +500 69 4 883873839 +389 42 4 879991147 +854 925 2 882813179 +809 328 5 891036989 +355 306 4 879486422 +407 98 5 875044510 +788 121 4 880869469 +396 597 4 884646647 +796 615 4 892690263 +562 435 4 879195125 +804 403 3 879445739 +338 523 3 879438366 +701 50 5 891447197 +110 12 4 886987826 +545 546 3 879901281 +798 940 1 875914898 +276 820 3 874793062 +239 205 3 889181015 +639 83 4 891239790 +650 200 4 891386047 +343 234 1 876405633 +768 826 1 883835210 +588 443 3 890024876 +65 356 5 879216825 +786 15 3 882841855 +682 576 4 888522754 +648 931 2 882212609 +707 498 3 886286133 +127 228 5 884364866 +857 321 4 883432352 +690 168 3 881177376 +395 739 3 886481149 +832 471 4 888260089 +717 405 3 884642738 +773 14 5 888538620 +757 333 4 888443263 +750 881 2 879446114 +864 273 5 878179555 +591 428 4 891031500 +618 283 3 891309217 +18 956 5 880131525 +840 98 5 891204160 +796 381 3 893047208 +782 315 4 891497698 +561 71 2 885810039 +158 232 3 880134477 +624 295 3 879793511 +840 498 5 891204264 +686 181 4 879547337 +592 194 4 882955543 +537 464 4 886031506 +782 1258 2 891499440 +862 210 4 879304410 +504 773 3 887909936 +744 50 3 881172357 +532 1016 4 888636450 +575 321 3 878146540 +405 858 1 885548435 +679 70 4 884487325 +269 451 1 891450880 +557 532 5 881095916 +181 332 2 878961173 +786 465 4 882844010 +840 663 4 891204322 +265 107 1 875320398 +655 1198 3 888984538 +823 404 4 878438484 +320 240 3 884748818 +537 213 4 886031830 +795 831 2 880560971 +498 1073 3 881961496 +708 283 1 892719363 +846 193 5 883948417 +837 628 3 875722225 +843 403 2 879444934 +717 340 4 884641599 +841 270 4 889067045 +870 517 2 875680597 +805 1170 5 881700749 +804 209 3 879442538 +493 1 3 884130416 +766 431 3 891310067 +405 723 1 885546288 +535 64 5 879617531 +629 12 5 880117333 +305 486 5 886323563 +843 449 3 879444083 +48 524 3 879434723 +592 597 2 882609056 +293 97 4 888905898 +276 447 4 874792663 +571 657 4 883354992 +299 166 4 889501926 +181 1380 1 878962086 +828 1073 4 891036630 +815 96 5 878693871 +365 1 4 891303999 +505 604 5 889333598 +863 1294 4 889289618 +634 477 3 876171093 +820 289 2 887955020 +825 1291 2 889021258 +207 255 3 877845763 +843 227 3 879443908 +782 1386 3 891500066 +682 959 4 888521803 +843 205 4 879446888 +796 603 4 892662152 +472 33 5 875981829 +597 111 3 875342355 +738 511 4 875349584 +671 31 2 883546333 +655 845 2 887426446 +739 56 4 886958938 +774 254 1 888559144 +234 1021 4 892333765 +669 172 3 891517159 +722 13 2 891281876 +766 209 3 891309053 +236 655 3 890116670 +597 24 3 875341858 +757 179 4 888467855 +860 289 3 880829225 +715 1047 3 875962500 +772 313 5 889028363 +660 168 5 891199477 +527 211 4 879456289 +788 370 2 880870881 +839 1664 1 875752902 +372 44 4 876869837 +749 755 4 878848866 +577 307 3 890089564 +642 765 3 885606234 +659 204 4 891384152 +450 1303 4 887136016 +440 272 5 891546631 +843 151 2 879447007 +824 286 2 877020871 +686 12 5 879545758 +185 701 3 883524364 +308 131 4 887739383 +588 173 5 890024677 +324 270 5 880575045 +817 15 3 874815836 +233 121 4 880190627 +783 328 4 884326545 +256 554 4 882164644 +234 445 2 892334713 +541 676 3 883865063 +579 582 4 880952102 +586 121 5 884062010 +840 234 5 891204948 +109 222 4 880563471 +858 286 4 879458829 +489 751 5 891362773 +778 496 1 891234406 +707 224 4 880059876 +851 405 5 874767550 +828 301 2 893186210 +600 195 4 888451492 +823 229 3 878439211 +830 696 2 892502651 +262 418 3 879794223 +499 530 4 885599390 +268 259 3 876513675 +527 286 2 879455354 +87 27 4 879876037 +682 89 4 888522418 +549 181 4 881672241 +393 139 4 889729185 +634 1335 2 877017975 +45 151 2 881013885 +682 1090 2 888521047 +197 184 1 891409981 +495 144 4 888634070 +301 323 4 882075110 +868 398 1 877109082 +771 542 4 880659834 +271 40 1 885849558 +712 955 2 874957293 +489 1613 4 891449466 +38 501 5 892429801 +846 423 4 883949335 +299 165 4 889501890 +130 1276 4 876251312 +850 56 1 883195034 +104 127 3 888465201 +497 97 4 879310473 +749 183 5 878847286 +313 309 4 891031125 +698 283 2 886367849 +829 339 2 891992167 +64 751 2 889737047 +49 328 2 888068651 +818 1105 1 891883071 +462 136 4 886365498 +848 480 5 887040025 +145 890 2 885557505 +542 523 4 886532788 +761 222 4 876190025 +276 7 5 874786517 +115 741 3 881170065 +871 245 3 888192475 +416 509 5 893214041 +756 421 4 874829637 +796 974 3 893194740 +373 194 4 877098714 +437 292 5 880139631 +655 296 4 888474934 +532 310 4 888634802 +411 222 3 891035152 +761 1014 1 876190256 +757 205 4 888467498 +281 342 1 881200789 +22 228 4 878887810 +848 207 5 887043265 +766 504 3 891309484 +665 1061 4 884292654 +2 127 5 888552084 +825 472 5 880756442 +846 483 5 883948173 +6 298 3 883599558 +128 451 4 879967879 +394 216 3 880888063 +715 743 2 875962806 +11 54 3 891905936 +653 380 3 880151984 +749 176 4 878847954 +271 591 4 885847901 +495 202 4 888633042 +727 159 2 883712016 +293 285 5 888904632 +472 562 5 875983023 +453 48 4 877553761 +588 941 5 890026513 +607 311 4 883879971 +472 260 4 875977827 +854 79 4 882814298 +796 217 4 893218556 +62 708 3 879375912 +825 924 2 880756725 +862 505 4 879305016 +342 320 5 875318833 +805 423 1 881698175 +532 483 5 892867296 +303 773 4 879466891 +569 1197 4 879793465 +838 223 3 887065807 +357 322 3 878951101 +562 144 5 879196445 +830 651 4 891561737 +445 689 1 891199458 +846 796 1 883950524 +721 402 4 877147200 +290 596 4 880474141 +840 737 4 891205320 +830 183 4 891462467 +831 1063 4 891354668 +498 229 2 881961877 +807 679 4 892705307 +631 307 4 888465033 +279 44 1 875313514 +23 153 4 874786438 +783 345 4 884326461 +389 301 4 879916385 +59 290 3 888203750 +655 328 2 887425025 +468 180 5 875291902 +417 164 3 879648156 +862 127 5 879304196 +684 395 2 878762243 +708 274 4 877326086 +823 568 3 878439293 +786 199 4 882843006 +385 1017 3 883791666 +850 566 5 883195256 +674 315 3 887762296 +215 88 3 891436277 +460 279 2 882912316 +106 566 4 881452711 +811 294 4 886377483 +694 489 4 875727640 +683 911 3 893286346 +175 273 2 877107640 +851 240 4 875730629 +596 323 4 883538965 +269 464 3 891448283 +541 38 3 883871617 +710 1 4 882064377 +269 121 1 891451013 +709 181 4 879846375 +648 546 4 882211736 +587 313 5 892870956 +79 340 4 891271180 +378 13 3 880044609 +89 236 5 879441400 +766 1203 3 891309421 +608 207 5 880404975 +221 651 4 875245350 +870 952 3 880584584 +332 1042 4 888360396 +854 255 1 882812852 +854 291 2 882813074 +265 282 5 875320714 +554 378 4 876549808 +655 1071 2 888984293 +798 576 3 875639324 +405 1387 2 885549745 +773 204 3 888539559 +864 168 4 888888067 +773 47 4 888539512 +196 173 2 881251820 +846 1110 3 883950390 +847 434 3 878941520 +852 257 4 891036414 +764 588 5 876246409 +875 772 5 876465188 +783 260 4 884326690 +805 91 5 881695527 +867 211 3 880078484 +844 179 3 877387548 +500 300 4 883864749 +533 48 4 879191373 +18 603 3 880129388 +24 132 3 875323274 +592 730 4 882956011 +747 509 5 888639176 +503 744 2 879454442 +416 418 4 876699793 +560 1021 4 879975718 +567 647 5 882425998 +823 333 3 878439845 +664 717 1 876526555 +655 282 3 888685989 +660 100 3 891198063 +141 255 4 884585039 +707 1311 3 886287608 +775 307 4 891032989 +349 276 5 879465841 +137 1028 5 881433409 +605 143 1 879424345 +6 535 2 883600030 +32 298 5 883717581 +642 96 5 885842289 +661 189 4 876013850 +727 403 4 883712282 +343 189 4 876405697 +661 215 3 876015657 +821 181 4 874792521 +648 22 4 884628482 +727 156 4 883710326 +805 582 3 881698798 +254 62 3 886474009 +49 919 5 888066133 +605 126 5 880762240 +710 654 4 882064524 +303 833 2 879484327 +104 272 4 888441878 +497 167 2 879363111 +862 357 3 879305204 +492 193 4 879969415 +838 1115 4 887064476 +130 739 5 876252420 +699 111 3 878881875 +592 132 5 882955794 +553 153 5 879949107 +480 100 4 891207715 +789 1161 3 880332189 +415 531 5 879439684 +682 257 2 888518704 +731 56 2 886179161 +325 523 3 891478376 +463 137 2 877385237 +768 252 3 880136317 +694 528 3 875728842 +724 358 1 883757834 +664 588 3 878092569 +710 269 3 882063224 +650 187 2 891381585 +91 651 5 891439057 +846 1055 3 883949459 +694 230 4 875727143 +774 4 2 888556090 +794 24 5 891035957 +416 553 4 886317079 +565 462 4 891037692 +694 496 4 875727640 +797 781 5 879439594 +711 191 5 879993959 +21 260 2 874950972 +344 311 4 884814359 +683 915 2 893282977 +831 273 3 891354773 +709 145 3 879848319 +521 298 3 884476126 +807 127 3 892529647 +846 443 4 883948643 +606 196 4 880926759 +520 311 3 885168591 +539 372 2 879787985 +796 815 4 893047321 +160 1134 4 876768828 +876 294 4 879428145 +476 294 3 883365634 +334 896 5 891544049 +705 118 4 883427377 +429 483 5 882384821 +733 275 3 879535265 +453 196 4 877554174 +753 462 4 891401510 +601 288 1 876346515 +680 286 4 876815942 +655 403 2 891585574 +443 294 5 883504593 +716 478 4 879795735 +126 350 2 887854892 +758 202 5 881976821 +342 188 3 875318936 +582 151 4 882961133 +687 288 4 884651576 +323 993 4 878739488 +821 174 5 874793773 +727 866 3 883709710 +872 332 3 888480019 +160 150 4 876767440 +829 1018 2 881707829 +234 45 4 892079140 +472 215 4 875981968 +264 186 5 886123728 +627 205 5 879529767 +280 72 4 891702276 +680 515 4 876816268 +714 763 4 892777903 +200 742 4 876042133 +467 1012 3 879532534 +843 413 2 879443482 +32 268 5 883709797 +690 1042 4 881180035 +829 512 4 881698976 +576 475 1 887168978 +654 195 4 887864350 +757 684 4 888445864 +766 231 2 891310851 +758 554 3 882055007 +151 302 3 879523860 +579 204 3 880952201 +534 105 4 877808198 +276 148 3 874786924 +442 55 3 883390813 +831 340 4 891354000 +207 22 3 875509262 +844 71 3 877388040 +804 678 4 879440700 +788 204 3 880868644 +564 930 3 888730699 +643 50 4 891445140 +426 653 4 879442841 +303 1034 1 879544184 +846 555 2 883949508 +791 286 3 879447907 +246 1135 1 884922605 +566 219 1 881651286 +558 286 4 879435828 +864 708 3 888889863 +668 124 3 881605489 +843 416 2 879448352 +521 742 3 884477512 +347 369 4 881653300 +660 29 2 891357371 +659 58 4 891385012 +735 100 2 876698796 +450 332 4 882369964 +718 982 4 883348912 +574 262 5 891279122 +474 313 4 887914615 +620 769 4 889987706 +805 274 2 881705055 +385 217 2 879448208 +655 181 3 887425601 +875 169 5 876465025 +795 756 3 880559895 +747 282 2 888640475 +279 22 1 875296374 +845 750 3 885409719 +624 248 4 879793485 +536 164 4 882361018 +684 151 3 875810633 +279 1178 4 875744641 +804 259 4 879440700 +866 319 4 891221302 +835 216 4 891033560 +262 367 4 879792818 +834 275 3 890862648 +853 748 2 879364883 +407 508 4 876348660 +738 144 5 892844079 +679 184 4 884487491 +201 93 5 884113662 +694 449 4 875727271 +279 257 5 875295736 +608 283 4 880406623 +663 710 3 889493437 +452 132 2 875560255 +627 176 5 879531158 +6 132 5 883602422 +692 1054 3 876954197 +260 350 4 890618476 +527 197 4 879455740 +766 507 3 891309878 +682 255 3 888518722 +694 429 4 875726759 +497 1077 4 879361847 +645 673 3 892054600 +62 1130 4 879376686 +334 179 4 891546231 +854 318 5 882813825 +716 651 5 879796278 +868 738 2 877108624 +775 300 4 891032956 +234 116 2 892079434 +429 203 5 882385684 +727 783 3 883713737 +650 509 3 891372233 +429 729 2 882386684 +276 257 4 874786657 +285 194 4 890595777 +767 657 4 891462917 +2 285 5 888552084 +828 1196 2 891036492 +397 390 3 885349427 +812 1393 3 877625224 +643 470 4 891448352 +862 288 5 879302533 +298 479 5 884182685 +796 249 1 892661011 +833 208 3 875039326 +478 367 4 889396235 +868 562 2 877112440 +707 1251 4 880059647 +823 1107 3 878438332 +828 874 3 891380355 +506 90 2 874876599 +738 403 3 875351638 +777 117 5 875979380 +871 515 4 888193176 +666 432 3 880139439 +173 327 5 877557168 +543 29 2 877546306 +631 338 2 888465299 +630 7 4 885666571 +444 258 3 890246907 +470 286 4 879178216 +710 204 4 882063824 +709 161 5 879848511 +308 132 3 887737891 +393 496 5 887746119 +679 484 4 884486658 +864 208 4 888888994 +189 1315 3 893264220 +868 206 5 877108352 +560 132 3 879975485 +653 862 2 880153378 +652 538 4 882567012 +213 508 4 878870790 +387 1078 1 886483670 +104 895 2 888442507 +409 216 4 881107251 +864 1446 3 888889948 +297 92 3 875239346 +771 71 5 880659815 +860 283 4 885990998 +692 845 3 876948910 +545 202 4 879900388 +790 211 4 885156046 +457 91 4 882547302 +642 165 4 885604480 +805 83 4 881696671 +290 89 3 880473971 +393 206 3 889731329 +837 596 3 875721969 +794 847 5 891035822 +864 566 4 888889601 +653 222 3 884405596 +401 181 3 891032518 +102 117 3 888801232 +823 22 5 878438058 +854 287 3 882813143 +789 286 1 880332039 +825 742 4 880756224 +630 597 4 885667006 +5 446 4 875720845 +624 268 4 879791962 +833 191 4 875132134 +418 328 1 891282738 +397 195 3 885350381 +410 905 4 888627138 +781 64 4 879634387 +803 690 4 880055210 +782 1383 3 891499611 +798 52 3 876176979 +486 235 2 879875370 +741 48 4 891018550 +538 223 4 877107700 +798 71 3 875303589 +800 864 4 887646980 +650 430 4 891382138 +458 509 4 886397857 +608 606 5 880404693 +391 9 5 877399780 +804 105 3 879444077 +766 192 4 891309391 +757 38 3 888467038 +537 1475 2 886031786 +230 135 2 880485216 +6 462 5 883600914 +13 748 4 882140792 +402 628 3 876267067 +463 253 5 877387935 +711 173 3 879993890 +263 465 4 891299697 +707 419 3 886285968 +798 118 4 875295842 +655 605 3 887474241 +818 286 4 891870222 +474 58 4 887925977 +493 462 2 884132015 +234 378 4 892335213 +425 82 3 878738757 +823 91 3 878439365 +454 492 3 888266643 +680 25 4 876816310 +751 194 5 889297693 +748 250 5 879454383 +698 968 1 886368545 +701 272 5 891446559 +708 284 5 892719340 +618 471 3 891309041 +803 887 5 880054671 +148 190 2 877398586 +416 1428 3 886319204 +380 356 2 885480064 +758 732 4 881977057 +766 168 5 891309090 +343 568 1 876406640 +818 328 4 891870301 +92 257 2 875640273 +804 739 4 879444805 +642 554 4 885842962 +73 683 2 888792535 +821 118 3 874793218 +745 531 3 880123517 +264 98 5 886122098 +712 243 4 874956228 +654 210 5 887864350 +94 959 5 891725332 +280 584 4 891701223 +811 748 3 886377579 +255 294 2 883215406 +634 283 2 875728783 +213 218 4 878956074 +537 97 2 886031720 +699 1375 3 878882836 +429 163 4 882387599 +870 481 4 875680046 +862 215 4 879304624 +877 382 3 882677012 +23 171 5 874785809 +568 1286 4 877907327 +648 678 3 884366792 +753 50 4 891401902 +853 326 2 879364955 +843 265 3 879443865 +608 508 4 880406593 +453 184 4 877554846 +643 514 3 891446688 +868 1480 1 877111932 +1 168 5 874965478 +682 455 4 888521866 +707 8 5 886285762 +800 457 2 887646168 +612 1 4 875324876 +804 125 4 879443709 +648 179 4 884368442 +542 959 3 886532971 +320 27 3 884749384 +637 741 1 882903644 +709 727 2 879849049 +861 294 3 881274504 +381 855 3 892696291 +796 291 4 893188576 +523 508 3 883703495 +763 469 4 878915958 +488 498 3 891294707 +746 578 4 885075399 +763 162 4 878923433 +363 719 3 891498365 +747 109 5 888733274 +727 2 4 883711874 +87 692 5 879876565 +299 517 4 889502688 +786 283 4 882841906 +831 272 5 891353915 +711 217 4 879994454 +844 627 3 877388040 +799 499 4 879253969 +211 596 3 879460294 +741 288 4 891018070 +857 898 5 883432141 +774 234 2 888557683 +738 202 4 875351299 +59 15 5 888203449 +846 33 5 883948571 +495 173 5 888632180 +489 948 2 891447960 +500 768 2 883876596 +618 151 3 891309514 +692 249 3 876953681 +293 693 4 888906781 +472 358 5 892790676 +807 501 3 892529358 +13 371 3 882399385 +814 674 3 885411030 +666 200 5 880568465 +99 116 2 888469419 +450 3 4 882398220 +295 735 5 879519556 +843 217 4 879443341 +95 51 4 879198353 +577 399 4 880475269 +721 173 5 877138745 +840 496 5 891204089 +666 284 3 880313523 +796 313 4 892610692 +303 479 5 879466572 +747 596 5 888640437 +751 432 4 889134420 +405 1035 1 885548877 +606 735 5 880926610 +417 125 5 879646369 +493 168 5 884131143 +843 603 2 879446596 +96 265 5 884403758 +128 131 5 879967452 +642 13 4 886206806 +873 292 5 891392177 +327 257 2 887746728 +610 1 4 888703157 +747 301 1 888638335 +565 165 4 891037252 +851 68 3 875731722 +70 229 3 884064269 +731 478 4 886182555 +387 1110 2 886483009 +712 378 4 874730370 +792 1015 5 877910822 +496 743 2 876065190 +860 715 4 885991198 +586 809 3 884061459 +493 182 5 884130971 +387 569 2 886481737 +158 1047 4 880134261 +576 125 4 886985177 +378 173 5 880057088 +843 655 3 879447030 +468 1 5 875280395 +268 79 3 875309801 +786 588 5 882843039 +508 318 4 883767704 +782 1025 2 891498436 +326 449 3 879877039 +548 343 4 891043547 +123 182 4 879872671 +823 374 1 878438733 +779 243 4 875501402 +436 204 5 887769209 +794 751 3 891034523 +747 265 4 888639060 +821 64 5 874793649 +296 1 5 884196689 +593 276 1 875659150 +17 475 4 885272520 +827 331 3 892157376 +731 132 3 886182632 +592 1184 5 882956551 +661 300 3 876036477 +393 181 4 887743141 +496 288 2 876063810 +851 111 3 874767408 +862 193 4 879304326 +782 1663 2 891499700 +815 199 4 878694055 +497 393 4 879362858 +784 312 3 891387623 +628 242 5 880777096 +294 1014 2 889242306 +787 347 4 888979606 +817 281 4 874816007 +117 11 5 881011824 +843 208 3 879446716 +833 151 4 875036418 +342 654 4 875319745 +537 970 3 886032184 +383 180 5 891192778 +592 469 4 882955825 +843 288 4 879443544 +593 157 3 875671732 +864 693 4 888888168 +207 11 3 878104245 +662 285 5 880571005 +176 919 2 886048391 +840 169 5 891204215 +378 317 5 880056195 +506 430 4 874873703 +723 1 3 880499050 +753 199 5 891401510 +307 505 3 879205470 +655 860 3 887477386 +708 237 5 892719144 +168 1 5 884287509 +59 466 4 888204389 +659 4 3 891383917 +305 863 4 886324387 +389 477 4 880087939 +806 923 3 882389080 +840 628 4 891209285 +828 923 3 891037047 +291 631 5 874871479 +469 65 4 879524178 +234 647 3 892826411 +145 55 3 875272009 +731 480 4 886187652 +641 305 5 879369848 +561 952 3 885810192 +530 100 4 883784058 +716 492 3 879795425 +535 215 4 879619144 +126 353 5 887938392 +694 519 4 875728293 +168 763 2 884288033 +609 259 1 886895763 +727 178 4 883710123 +684 435 3 878761717 +608 1262 5 880406095 +532 226 4 892859148 +543 198 4 876896210 +392 181 5 891038137 +144 248 4 888104032 +798 155 3 875639581 +452 472 5 885816916 +758 508 4 881975962 +862 168 4 879304526 +757 128 3 888466490 +772 327 4 877533873 +393 58 3 887746734 +867 135 5 880079065 +862 1011 5 879303123 +537 26 3 886031913 +716 610 4 879795375 +826 184 3 885690677 +741 215 4 891456615 +791 269 4 879447940 +753 194 4 891401757 +804 925 4 879443946 +677 748 4 889399113 +795 265 3 881265483 +850 8 5 883195055 +629 331 3 880116067 +486 264 3 879874262 +653 510 2 880150040 +533 824 1 879366160 +118 172 5 875384751 +16 100 5 877720437 +749 465 4 878847716 +637 922 1 882902487 +710 720 3 882063649 +698 465 3 886367720 +748 699 3 879455454 +91 205 5 891438947 +864 227 4 888889510 +548 346 4 891042624 +262 65 4 879793897 +616 346 3 891224558 +43 122 2 884029709 +545 204 4 879899641 +450 717 4 887834953 +796 807 2 893047691 +677 245 5 885191403 +291 158 2 875086208 +776 135 4 891628656 +852 151 4 891036922 +299 1258 2 877878451 +587 678 2 892871438 +523 95 4 883701800 +758 605 3 881977057 +846 217 4 883950022 +880 386 3 880174995 +653 357 4 878854383 +622 100 5 882590252 +561 426 1 885810220 +823 71 3 878439008 +466 288 4 890284651 +13 323 3 882140848 +311 570 4 884365890 +196 1022 4 881251143 +325 530 4 891478376 +569 300 3 879793036 +796 315 5 892611769 +417 162 3 880951886 +851 680 3 886534717 +878 283 3 880868035 +130 188 4 876251895 +757 326 3 888443434 +650 661 3 891385206 +625 286 4 891262561 +740 300 4 879523187 +49 209 5 888068877 +92 50 5 875640148 +7 9 5 891351432 +851 363 4 875730629 +665 685 2 884290515 +796 218 3 893194607 +653 386 1 880152864 +569 284 4 879793886 +561 484 4 885807215 +254 441 3 886475831 +421 879 4 892241274 +828 347 1 891035438 +353 301 3 891401992 +515 289 1 887660131 +709 550 3 879848475 +815 250 1 878691779 +290 692 5 880474293 +684 365 4 878759820 +251 7 3 886272146 +707 488 4 886286491 +608 126 1 880405165 +195 748 2 876632518 +528 541 3 888520782 +833 50 2 875035718 +577 143 3 880474635 +130 1 5 874953595 +194 211 4 879524292 +184 56 3 889908657 +854 32 4 882813574 +730 815 3 880310490 +178 222 4 882823857 +385 512 5 880958750 +629 328 3 880116103 +840 191 4 891204160 +714 405 5 892777876 +622 866 2 882591484 +113 257 5 875935609 +606 537 2 880925074 +435 476 3 884133872 +790 1282 5 884462551 +379 257 4 880741811 +389 501 5 880087804 +792 7 4 877910822 +870 642 4 875680258 +782 297 3 891500067 +690 211 3 881177349 +232 4 4 888550130 +393 373 4 889731437 +880 824 4 880174879 +51 50 5 883498685 +661 144 5 876016580 +295 227 4 879517635 +473 242 3 878156824 +877 31 4 882678483 +833 203 5 875124299 +763 97 3 878919153 +532 107 5 893119415 +710 89 4 882063736 +207 158 3 878191798 +828 730 3 891036972 +648 563 5 884883679 +747 82 4 888639642 +173 259 3 877557239 +841 353 1 889067253 +450 557 5 882472306 +643 129 5 891445354 +112 346 5 891307980 +805 472 2 881695040 +437 1206 4 881002191 +13 382 1 882140624 +378 566 3 880045856 +711 58 4 879993028 +795 1052 3 883255477 +524 132 4 884634968 +18 382 3 880129595 +574 883 4 891279520 +498 656 3 881957999 +747 50 5 888639060 +869 412 5 884493279 +880 307 4 892958090 +702 229 4 885767775 +846 433 4 883948457 +655 256 3 887651060 +833 328 2 875035534 +271 313 4 885844583 +746 230 1 885075337 +848 204 5 887039078 +552 515 3 879221543 +642 423 3 885602506 +545 405 4 879899380 +236 88 2 890116709 +595 544 3 886921699 +83 240 1 883870084 +868 568 1 877107847 +29 312 4 882821705 +655 773 3 887430072 +815 215 5 878694820 +416 625 5 893212623 +627 521 2 879529767 +479 546 2 879460305 +707 473 4 880060820 +664 1101 3 876525002 +670 659 5 877974699 +807 358 3 892527606 +527 511 5 879456248 +648 379 1 884883724 +807 630 4 892529573 +478 327 3 889387577 +17 243 1 885166209 +851 742 5 874767519 +642 949 1 885605834 +848 318 5 887038231 +537 52 3 886030891 +871 346 3 888192859 +878 582 4 880866810 +804 584 4 879444964 +360 479 4 880356092 +792 282 3 877909931 +623 211 3 891034814 +840 66 3 891209509 +210 1028 3 887730931 +786 172 5 882843112 +336 3 1 877758935 +56 441 4 892679163 +815 125 5 878692242 +655 203 3 887476943 +737 156 5 884314693 +760 682 3 878530117 +362 313 4 885019304 +642 843 3 886569682 +450 218 4 882397224 +606 168 5 880924557 +314 997 1 877892214 +640 428 5 874778299 +424 1084 5 880859591 +846 1044 4 883950820 +749 627 2 878848951 +786 7 5 882841955 +648 1228 3 884883149 +532 1092 2 888630838 +831 266 3 891354338 +790 47 2 885156988 +844 553 4 877387242 +735 285 4 876698897 +435 665 3 884133973 +833 657 4 875123986 +664 319 4 876523133 +551 1011 5 892783177 +829 13 4 881086933 +595 293 4 886922069 +389 847 4 879915806 +839 321 1 875751470 +301 481 4 882075827 +870 566 2 882123618 +257 921 5 883982173 +312 612 5 891699263 +481 173 4 885828165 +813 342 1 883752417 +394 22 5 880886919 +682 1035 3 888523227 +642 94 2 885605909 +314 150 4 877886522 +447 293 4 878854459 +256 732 5 882165067 +551 518 4 892783212 +826 566 3 885690636 +791 319 2 879448086 +551 1059 3 892785128 +727 483 4 883710236 +450 223 3 882371732 +577 54 4 880474903 +292 117 4 881104606 +643 276 5 891445354 +399 501 2 882346851 +334 1074 2 891548979 +774 650 1 888556893 +830 613 4 891898603 +654 332 4 887863081 +585 634 4 891285491 +435 572 2 884133938 +630 988 2 885666301 +851 1132 3 875730757 +481 479 4 885828619 +823 273 3 878437890 +862 974 2 879304113 +846 231 2 883950711 +265 50 2 875320398 +823 732 5 878439183 +489 890 5 891447990 +686 467 5 879547336 +291 977 2 874834071 +653 94 2 880153494 +841 286 5 889066959 +880 299 4 892958517 +821 126 5 874792570 +622 206 1 882670899 +481 207 3 885828619 +535 83 4 879618091 +804 1188 2 879446245 +237 174 4 879376773 +367 443 4 876690119 +328 58 4 885046206 +450 499 5 882372178 +880 398 3 880167965 +834 313 5 890860566 +682 185 4 888520639 +665 926 3 884291376 +828 903 4 891380167 +401 133 4 891032847 +262 496 4 879792402 +151 4 5 879524922 +566 273 5 881650063 +334 707 4 891546153 +276 80 3 874792237 +279 29 2 879573041 +62 952 3 879372505 +703 235 1 875242885 +655 468 3 887427681 +200 245 3 884126687 +87 451 4 879876448 +815 132 5 878695278 +787 690 5 888979007 +843 578 3 879448604 +864 54 4 888891473 +830 126 5 892502421 +537 490 4 886031786 +684 225 3 875811341 +524 508 5 884322047 +477 20 4 875941888 +498 150 3 881954451 +236 370 3 890117353 +474 430 3 887925977 +345 737 3 884993418 +804 222 5 879442591 +698 433 4 886366848 +401 484 3 891032737 +871 174 5 888193176 +155 326 2 879371121 +407 45 4 875552352 +741 475 3 891018152 +880 232 4 880167806 +399 238 1 882342061 +271 51 4 885849386 +372 678 4 876869183 +37 230 4 880915942 +487 66 5 883530484 +800 304 3 887645987 +165 328 3 879525673 +622 41 3 882672060 +392 313 5 891037385 +694 127 5 875730386 +840 117 3 891209408 +506 200 4 874873112 +417 246 4 879646225 +757 566 3 888466490 +815 735 5 878695438 +825 1117 3 880756402 +782 1405 2 891499213 +822 333 4 891033747 +269 232 1 891450817 +632 174 5 879457856 +721 179 5 877141038 +450 173 5 882371526 +642 166 5 885604434 +796 717 3 893194862 +411 9 4 891035827 +252 224 4 891456738 +59 472 3 888203482 +476 73 4 883364475 +870 521 3 875679795 +223 259 3 891548920 +710 330 3 882063612 +752 294 3 891208261 +455 8 4 879111345 +707 216 3 886286092 +685 337 2 879451401 +445 79 4 890987742 +308 156 4 887738057 +474 315 5 887914615 +715 128 3 875964300 +837 283 5 875722069 +833 479 2 875039101 +542 172 4 886532265 +815 185 3 878693830 +804 771 3 879446108 +312 740 4 891699568 +457 393 3 882548583 +695 242 5 888805837 +551 26 4 892785056 +678 287 3 879544397 +749 934 3 878850333 +683 340 4 893286260 +589 873 5 883352600 +881 54 4 876539387 +690 51 3 881180543 +851 1314 1 890862741 +851 238 5 875731330 +782 990 3 891499611 +181 331 1 878961511 +448 319 5 891888099 +344 132 4 889814194 +655 212 3 887477409 +62 271 1 879371909 +486 262 1 879874017 +689 763 4 876676165 +305 197 2 886322758 +707 950 2 880061287 +588 68 5 890026705 +387 7 5 886479528 +738 209 4 875350485 +715 685 3 875962173 +635 323 3 878878714 +200 1073 3 884129542 +429 470 5 882386309 +833 512 4 875225257 +653 163 4 880151629 +844 154 3 877387052 +705 79 5 883428028 +501 221 3 883348011 +286 117 2 876521650 +648 200 2 884883476 +622 423 3 882670121 +861 1227 4 881274936 +601 56 3 876349577 +417 420 4 879648452 +832 25 2 888260157 +409 428 4 881109175 +706 288 3 880996945 +747 951 2 888640648 +363 143 2 891496667 +537 1129 1 886030051 +798 819 3 875295930 +821 1084 5 874792285 +447 55 4 878856573 +638 82 2 876694917 +846 610 4 883948221 +738 418 3 875353105 +488 1 3 891294896 +713 898 3 888882276 +212 863 2 879303863 +59 655 5 888204642 +63 79 3 875748245 +498 486 2 881957431 +643 65 4 891448786 +697 979 5 882622044 +721 330 3 877136967 +184 473 4 889908133 +638 174 5 876694861 +495 4 3 888633129 +747 1003 1 888733314 +863 270 3 889288943 +125 202 5 892836523 +197 538 3 891409535 +848 196 5 887044238 +586 655 4 884066294 +453 423 4 877554819 +567 179 5 882426135 +376 603 4 879434613 +474 286 5 887914646 +593 699 4 875671334 +450 161 5 882396245 +862 405 2 879303123 +881 133 4 876537718 +868 581 2 877109748 +521 77 3 885254338 +374 628 3 880392778 +456 4 3 881374849 +160 955 4 876862243 +535 492 4 879618742 +843 102 2 879449177 +162 7 3 877635869 +764 191 3 876244688 +380 561 2 885479519 +666 520 3 880139562 +619 363 2 885954215 +215 132 5 891435548 +826 294 4 885689918 +699 129 4 878882667 +405 1073 1 885548578 +854 117 3 882812755 +833 715 2 875133633 +200 79 5 884128499 +450 1119 4 882374332 +184 403 3 889909746 +618 234 4 891307714 +851 192 4 875731441 +880 301 4 880166557 +805 420 4 881695560 +765 248 2 880346392 +804 657 4 879445904 +291 291 5 874834054 +870 54 2 879714458 +846 622 4 883950220 +671 27 3 884036050 +457 97 5 882397699 +231 313 3 888604920 +232 690 4 880062259 +805 856 4 881698881 +664 153 4 876526152 +786 709 2 882843607 +151 663 4 879524268 +551 187 5 892776450 +650 209 3 891382032 +724 272 5 883756996 +489 1265 2 891449466 +244 153 4 880606069 +545 968 5 884134395 +691 524 5 875543153 +495 380 3 888635339 +567 198 5 882425631 +92 156 4 875656086 +881 423 4 876538726 +487 1276 2 885239896 +632 508 2 879458570 +836 429 4 885754200 +788 162 3 880869787 +41 56 4 890687472 +694 177 5 875726886 +95 99 4 888954699 +605 678 1 879366335 +92 304 4 888469716 +864 1531 3 888890690 +798 810 3 875915855 +852 546 4 891037245 +749 431 5 878848069 +865 7 5 880143425 +151 56 4 879524879 +119 125 5 874775262 +781 223 4 879634175 +655 1400 3 887427268 +694 23 3 875727926 +741 273 3 891458066 +804 363 4 879446245 +642 78 3 886570084 +640 170 5 874777583 +372 218 5 876869481 +42 97 3 881107502 +374 789 4 882158609 +852 127 4 891035544 +758 411 4 881978115 +872 258 4 888478698 +181 411 3 878963276 +416 274 4 893142100 +798 87 3 875639680 +621 540 3 874964657 +536 380 4 882360734 +879 300 3 887760802 +268 452 1 876514002 +847 1050 3 878940618 +711 451 5 879994749 +658 730 3 875147995 +514 202 4 875309414 +268 188 4 875309859 +501 1081 3 883348703 +774 402 2 888556938 +145 358 4 875273234 +210 832 3 887730264 +622 405 4 882590886 +738 470 4 875350551 +805 648 4 881696729 +830 187 2 891464054 +178 164 3 882827288 +757 288 4 888443307 +188 199 4 875071658 +405 32 1 885546025 +844 228 3 877387858 +184 272 4 889907301 +803 754 2 880054754 +13 111 5 882140588 +870 511 3 881001249 +871 27 2 888193275 +233 614 4 877661437 +255 597 4 883216958 +257 113 4 879547534 +686 48 5 879545180 +69 288 5 882027173 +693 193 4 875482092 +508 1067 4 883767665 +719 318 5 879360493 +617 447 4 883789386 +655 591 3 887426237 +782 323 3 891498512 +532 931 3 892520696 +189 418 3 893266204 +524 1126 1 884637409 +869 846 2 884492201 +767 163 4 891462560 +618 187 5 891307098 +414 690 4 884999347 +200 609 3 884129457 +758 484 5 881975814 +294 538 5 889241562 +773 588 1 888539232 +494 286 4 879540508 +83 591 4 880306745 +196 845 4 881251954 +567 100 1 882425791 +378 167 4 880333446 +286 257 3 875806837 +869 310 4 884493279 +416 657 5 893214225 +545 203 4 880347831 +593 366 4 875671255 +749 82 5 878848405 +82 338 1 884713704 +468 699 3 875287686 +486 845 4 879874995 +717 50 4 884715122 +271 707 4 885849140 +650 205 4 891370971 +564 313 4 888718415 +198 518 3 884208876 +145 546 3 875271047 +249 181 3 879571998 +851 826 4 875730719 +815 135 2 878694493 +864 70 4 888888168 +608 848 4 880403690 +256 44 4 882164893 +697 286 4 882621486 +693 199 3 883975558 +763 5 4 878920895 +624 14 5 879792623 +823 471 3 878438608 +721 457 3 877137214 +862 474 5 879304722 +758 29 3 882054935 +264 235 5 886122952 +724 989 1 883757874 +90 644 5 891384065 +303 588 5 879468459 +621 1 3 880227233 +698 294 4 886365733 +846 520 5 883947960 +435 96 5 884131822 +398 183 4 875659518 +749 480 5 878847328 +784 270 3 891387249 +707 155 3 886288598 +655 135 4 887427083 +843 79 2 879445658 +872 323 2 888480019 +90 1203 5 891385466 +360 1142 4 880354250 +665 699 4 884294374 +294 273 3 877819421 +264 742 2 886122578 +44 427 3 878348547 +747 430 4 888639437 +846 55 5 883948642 +604 100 5 883668097 +482 346 3 887644022 +580 871 4 884125135 +833 211 3 875124495 +721 69 4 877140282 +43 124 4 891294050 +837 15 3 875721869 +188 265 5 875071520 +627 1135 3 879530625 +537 273 3 886029727 +94 372 4 891723124 +659 49 3 891385438 +497 451 2 879310419 +11 718 5 891903836 +880 791 2 880174961 +591 923 4 891031116 +550 924 4 883426027 +279 1205 3 888461244 +267 98 5 878971989 +629 111 5 880117689 +624 597 3 879793129 +481 204 4 885829196 +836 875 1 885753752 +201 17 3 884112581 +716 215 5 879796046 +883 792 4 891694182 +709 210 4 879848432 +308 661 4 887736532 +867 79 4 880079142 +206 682 3 888179694 +206 332 3 888179602 +796 542 3 893219403 +200 1217 4 884130014 +773 509 4 888538995 +343 208 4 876404426 +862 187 4 879304672 +280 750 5 891700185 +483 121 2 878952692 +566 228 2 881650262 +619 323 3 885953878 +519 680 5 883248595 +299 72 3 889503305 +60 134 4 883326215 +747 558 4 888640046 +474 651 5 887927670 +855 198 4 879825613 +198 405 2 884206428 +766 378 4 891310540 +843 219 2 879443394 +814 590 2 885411749 +49 1077 4 888068057 +711 255 4 886030579 +747 427 5 888732899 +653 944 2 880152657 +239 208 3 889181015 +778 174 4 890725804 +519 340 5 883248251 +397 50 5 885349955 +774 654 2 888558284 +849 15 5 879695896 +239 238 5 889180747 +682 1011 4 888517986 +90 198 5 891383204 +795 181 4 880557060 +703 845 4 875243028 +653 291 4 878855275 +239 1115 2 889180651 +621 143 2 874965208 +788 579 3 880871804 +776 474 5 891628632 +843 588 2 879447579 +394 658 3 880889159 +878 642 3 880866971 +15 275 4 879455562 +21 635 4 874951727 +665 100 3 884290349 +753 215 5 891402272 +870 466 4 878737789 +158 174 5 880134332 +707 533 5 880060420 +6 497 4 883601088 +405 1305 1 885547644 +13 751 5 882774081 +774 1110 1 888557519 +581 253 5 879642333 +568 530 3 877907782 +757 474 3 888469045 +14 507 4 890881521 +533 203 4 879438743 +421 172 5 892241707 +774 373 2 888557557 +468 47 5 875301056 +417 182 4 879646938 +689 328 5 879211479 +796 219 4 893218453 +301 284 4 882074708 +844 690 3 877381230 +247 7 4 893081395 +851 50 5 891961663 +812 326 4 877625294 +761 688 2 876189913 +346 161 3 874950413 +841 272 4 889066780 +582 257 3 882961608 +864 526 4 888889784 +500 283 2 883865341 +535 195 4 879618288 +495 121 5 888633473 +653 328 4 884408848 +650 22 3 891369707 +834 7 4 890862974 +867 956 4 880079142 +880 651 5 880167695 +716 648 4 879796138 +815 675 2 878698831 +11 699 4 891904389 +771 313 3 886635643 +393 692 3 889554908 +823 124 4 878437925 +442 979 3 883391344 +806 286 3 882384513 +442 195 4 883390328 +832 245 3 888259984 +94 527 5 886008885 +661 568 4 888301266 +514 25 4 875463028 +648 185 5 884368485 +215 204 3 891436129 +454 117 3 888267343 +815 471 2 878692149 +832 681 2 888259984 +665 147 4 884291057 +504 969 4 887838677 +712 506 3 874730520 +843 515 3 879444801 +7 549 4 891353086 +312 152 2 891698485 +57 930 2 883698039 +593 11 4 875660482 +829 153 4 887584684 +648 357 2 884628534 +881 550 3 876539261 +846 464 2 883947778 +269 775 1 891451571 +537 132 3 886031074 +727 101 2 883711771 +588 162 5 890026339 +559 12 3 891034067 +189 133 5 893265773 +788 195 3 880868876 +862 214 3 879304834 +442 769 1 883391397 +878 427 5 880872394 +774 559 1 888557715 +271 124 4 886105886 +505 1039 4 889334004 +684 117 4 875810999 +697 121 4 882622066 +684 82 5 875812227 +665 183 4 884293933 +201 358 1 884111095 +582 300 3 882960446 +537 896 3 886028604 +711 168 4 879993318 +880 820 3 880167384 +1 123 4 875071541 +799 258 5 879253668 +655 724 3 887427600 +881 671 3 876537512 +452 195 4 875265114 +314 412 3 877892052 +430 300 3 877225239 +854 216 3 882814028 +674 151 2 887763274 +707 869 1 886289521 +522 492 4 876961190 +696 307 5 886404144 +164 407 2 889402443 +669 879 2 891182703 +629 651 5 880117163 +295 50 5 879517540 +880 295 5 892958887 +665 294 2 884289922 +655 268 3 887474077 +749 385 3 878848272 +543 521 4 874865636 +872 815 4 888479434 +875 334 4 876464800 +556 178 5 882136162 +193 79 4 889125755 +693 651 3 875482548 +846 1050 4 883949046 +796 186 3 892676114 +332 660 3 888098125 +500 210 3 883874290 +21 358 3 874951616 +711 162 5 879994875 +484 472 4 891195565 +295 83 5 879518257 +389 1007 4 879915832 +883 7 5 891754985 +660 144 3 891199856 +455 44 3 879112678 +574 213 4 891279712 +830 403 4 891561806 +184 216 4 889908539 +45 926 3 881015386 +291 172 5 874835062 +768 354 3 888798611 +554 237 3 876231570 +620 147 3 889987299 +334 521 4 891548835 +10 192 4 877891966 +870 171 4 875050698 +796 433 2 892675694 +186 330 4 891718038 +880 769 3 880241492 +671 201 3 884204509 +432 109 2 889416188 +585 83 3 891282808 +574 316 4 891279451 +524 273 3 884322113 +805 661 4 881697713 +393 1180 4 889731465 +624 831 3 879793545 +711 762 3 879991585 +750 749 3 879446271 +828 960 5 891036568 +474 97 5 887924028 +753 22 4 891401798 +453 550 3 888207161 +303 744 3 879467607 +495 86 5 888637768 +543 702 2 877550399 +784 321 3 891387249 +592 655 5 882955543 +578 272 2 888957735 +456 125 4 881372015 +561 116 4 885809146 +14 523 4 879119497 +757 173 4 888445604 +851 153 3 875806683 +804 56 3 879441371 +864 11 5 888887502 +845 1592 3 885409493 +883 144 4 892557605 +741 393 2 891040490 +880 833 4 880167288 +392 463 3 891038946 +846 524 3 883947819 +774 176 4 888557198 +677 268 5 889398907 +294 301 4 877818915 +378 606 5 880055478 +854 237 3 882812406 +790 774 4 885156904 +128 319 5 879966274 +854 15 3 882812451 +607 211 5 883879556 +739 327 5 886825529 +526 276 4 885682477 +463 1060 2 889936244 +451 874 4 879012684 +447 1315 4 878854838 +727 434 5 883710717 +660 640 1 891201223 +363 933 2 891498920 +593 591 4 877728878 +592 149 4 882607910 +810 294 5 879895233 +553 367 4 879949153 +13 239 4 882141752 +804 62 4 879445305 +92 993 4 890251516 +828 313 3 891033342 +782 533 2 891500151 +416 148 5 893212730 +299 207 3 877880394 +751 708 4 889298140 +42 559 2 881109271 +655 729 2 887476031 +682 467 3 888517364 +727 27 4 883711847 +680 273 3 877075214 +450 229 4 882474001 +863 882 4 889289570 +186 689 4 889817888 +833 550 2 887158946 +584 161 4 885778170 +868 1 4 877103320 +666 106 2 880313992 +880 80 2 880175050 +738 650 3 875351712 +877 237 4 882677827 +883 68 4 891696957 +59 480 5 888204802 +22 732 4 878886710 +678 147 4 879544882 +201 895 3 884110702 +548 257 5 891044304 +769 748 2 885422821 +588 181 5 890015608 +451 307 4 879012431 +835 673 4 891034117 +484 28 5 880937193 +682 72 3 888521540 +807 252 4 893084689 +821 100 2 874792285 +514 384 3 876067623 +58 111 4 884304638 +339 503 4 891035093 +327 718 4 887745494 +245 258 4 888513691 +105 269 4 889214193 +577 82 4 880474433 +666 269 5 880314564 +764 1012 4 876244181 +502 264 3 883702518 +326 505 3 879875271 +18 392 3 880130193 +882 193 5 879867263 +57 194 4 883698272 +435 885 3 887509396 +397 8 4 885349913 +653 81 1 880151651 +774 68 3 888557329 +804 68 3 879445975 +328 302 4 885044380 +506 542 3 874873794 +85 313 4 884820133 +660 290 4 891198549 +678 1 5 879544882 +796 210 3 892662441 +715 161 5 875964905 +758 257 5 880672700 +847 108 2 878939266 +487 596 5 883441956 +643 231 2 891450316 +757 1273 2 888467187 +533 318 5 879438849 +757 450 2 888467205 +463 283 5 877385287 +730 742 3 880310553 +716 64 5 879795314 +405 731 3 885546202 +752 258 3 891207898 +835 162 5 891033420 +126 266 5 887938392 +881 663 5 876538322 +457 62 3 882550925 +782 296 3 891500109 +880 204 5 880174652 +622 1078 3 882671160 +627 288 3 879529381 +68 9 4 876974073 +791 288 3 879447907 +216 91 4 880235546 +229 898 5 891633028 +465 132 4 883531325 +751 434 4 889297670 +846 417 4 883950129 +664 326 2 876523225 +643 639 4 891447790 +768 300 5 883835026 +815 202 4 878694341 +620 140 4 889988258 +833 663 3 875134317 +776 760 3 892920241 +807 1615 4 893084653 +873 258 3 891392818 +861 714 4 881274899 +119 121 4 874775311 +215 272 3 891434619 +347 204 4 881653830 +655 233 3 887611537 +804 196 4 879441752 +664 162 4 876525764 +392 323 3 891037769 +840 506 5 891204385 +877 270 4 882676054 +164 825 4 889402203 +201 157 4 884113453 +81 456 1 876533504 +446 268 2 879786892 +94 1209 2 891723459 +747 675 2 888640180 +747 526 5 888639642 +435 447 3 884132315 +592 292 1 882607434 +7 615 4 891351585 +606 3 5 880922084 +779 181 5 875501734 +606 385 4 880925200 +308 853 5 887736797 +663 844 2 889492841 +833 488 5 878078229 +234 207 2 892078605 +870 134 4 875050697 +90 1202 5 891385132 +416 240 1 886315446 +206 1429 1 888180018 +682 1231 2 888522612 +823 237 4 878439037 +102 841 2 888802319 +733 296 2 879535265 +457 194 5 882397058 +524 449 3 884637245 +82 100 5 876311299 +779 15 4 875501782 +174 709 4 890168554 +830 205 5 891462531 +782 680 1 891498865 +676 345 2 892685621 +127 258 5 884364017 +615 638 5 879447968 +643 28 4 891448002 +884 116 4 876858914 +798 493 3 875638514 +491 286 4 891184567 +479 294 3 879459578 +601 1084 5 876346849 +749 541 3 878850825 +882 616 4 879879807 +509 307 2 883590729 +7 488 4 891351041 +463 880 4 890452525 +754 595 2 879452073 +790 660 3 885156904 +424 15 4 880859722 +864 775 1 888891473 +782 1007 3 891500067 +164 678 4 889401432 +861 949 4 881274937 +782 1652 1 891500230 +561 475 3 885807393 +363 47 5 891496264 +706 756 4 880997412 +481 70 5 885828389 +880 841 3 880167411 +749 358 3 878846422 +256 1033 4 882152838 +629 504 4 880117719 +60 517 4 883327265 +775 345 5 891032895 +81 475 5 876533504 +206 242 3 888180049 +606 179 5 880927552 +537 48 4 886030805 +807 751 3 892527467 +393 731 3 889730227 +26 841 2 891380200 +176 268 5 886046979 +479 1028 1 879460192 +38 243 3 892429095 +825 174 5 881101782 +786 89 4 882842878 +495 796 4 888637070 +669 50 5 891517215 +747 15 4 888639780 +833 93 4 875036056 +336 959 3 877758138 +823 222 3 878438179 +709 282 5 879847945 +639 747 3 891239528 +770 151 5 875973080 +373 172 5 877098678 +552 410 3 879222070 +666 613 5 880139295 +821 405 4 874793022 +881 1118 3 876538131 +85 697 3 879829471 +145 925 4 875271047 +774 712 1 888556169 +731 204 4 886184682 +149 272 3 883512591 +810 333 5 886614819 +817 129 4 874815836 +805 197 5 881696671 +497 189 4 879309993 +95 420 4 888956001 +666 111 3 880313523 +642 1066 3 885606608 +258 328 3 885700877 +705 318 5 883518731 +476 579 2 883365385 +703 9 2 875242814 +405 860 1 885548435 +664 631 4 876525077 +751 257 4 889132542 +738 177 4 892958051 +326 135 3 879875852 +13 491 4 882140166 +59 451 5 888206049 +796 448 4 893218485 +823 240 3 878438119 +834 292 5 890860566 +883 129 5 891755088 +353 343 2 891402636 +776 706 3 892920480 +457 193 5 882397666 +435 307 5 884130744 +757 181 3 888444314 +644 988 4 889076475 +788 429 3 880868919 +537 98 3 886030583 +187 241 3 879465858 +201 134 4 884113772 +749 1274 2 878850212 +752 301 4 891208077 +745 124 5 880122775 +222 246 4 877563597 +405 543 1 885549407 +555 25 4 879963127 +707 719 3 886288189 +707 58 3 886285907 +815 89 4 878695092 +442 228 5 883390366 +642 1030 4 886570173 +826 1091 3 885690379 +551 1039 4 892777013 +393 996 3 889731139 +698 654 1 886367586 +881 180 5 876538063 +268 358 3 876513643 +686 56 5 879546147 +487 713 4 883444631 +865 825 1 880144123 +755 748 4 882570141 +209 9 3 883417547 +711 676 5 876185812 +714 1016 5 892777876 +655 270 4 887650943 +883 727 3 891696750 +846 8 4 883947861 +727 729 2 883711720 +838 24 4 887064231 +417 211 4 880949907 +748 69 4 879454849 +833 159 2 879818659 +447 233 4 878856526 +705 228 3 883428109 +330 225 4 876544507 +654 249 5 887863866 +883 83 3 891693200 +835 458 4 891032869 +596 276 3 883539431 +567 136 5 882426210 +537 387 4 886031860 +457 288 4 882392853 +537 566 2 886032183 +859 249 5 885775086 +748 692 3 879455410 +652 288 2 882566890 +828 246 2 893186163 +721 303 3 877137285 +660 366 1 891405958 +667 272 5 891034404 +763 510 4 878915559 +639 702 2 891240868 +878 692 4 880869191 +843 474 3 879445738 +472 416 3 875982867 +774 230 2 888557237 +343 408 5 876403121 +861 289 5 881274504 +805 537 5 881703643 +312 606 5 891698300 +770 678 2 875971655 +711 240 1 879991425 +811 690 5 886377248 +778 197 4 891232569 +643 204 3 891447901 +204 880 2 892388976 +863 1062 4 889289570 +64 111 4 889739975 +815 99 4 878694665 +770 7 5 875972185 +189 503 3 893266137 +648 477 3 882211585 +370 100 4 879435369 +141 1023 4 884585274 +815 94 3 878697705 +833 98 3 875123359 +399 66 3 882343171 +92 38 3 875657640 +654 336 3 887863227 +334 196 4 891547128 +830 790 1 891899476 +537 15 3 886030051 +628 326 5 880777095 +650 157 3 891382960 +500 94 2 883877023 +620 706 3 889987706 +838 276 4 887064825 +851 304 3 877831020 +847 658 3 878940855 +650 54 2 891385876 +848 419 5 887043421 +883 749 3 891695490 +861 52 5 881274718 +332 117 4 887916575 +184 487 4 889908571 +510 245 3 887667574 +865 929 2 880144539 +450 704 3 882372178 +721 471 5 877138200 +848 185 3 887037861 +456 127 5 881373019 +642 832 3 892240991 +620 145 5 889987682 +770 331 3 875971703 +474 66 4 887926437 +798 231 2 875638817 +738 926 3 875350456 +805 88 2 881696876 +70 473 3 884066399 +244 114 4 880603219 +350 480 5 882345918 +583 530 4 879384404 +830 99 3 891561474 +405 33 1 885547360 +406 528 4 879446361 +207 64 5 877846793 +833 111 2 875134110 +826 55 5 885690636 +753 211 4 891402240 +707 1008 3 880060460 +716 197 5 879794962 +425 540 2 878738486 +618 118 3 891309004 +741 401 3 891457483 +728 100 5 879443321 +58 1070 4 884304936 +877 949 3 882677440 +846 516 4 883948457 +825 595 3 889021134 +457 204 5 882397699 +757 31 4 888445570 +792 471 4 877910822 +848 423 4 887038197 +357 932 4 878952341 +492 56 5 879969878 +360 521 5 880355845 +811 258 5 886377311 +790 849 4 885157205 +264 447 5 886122352 +886 4 3 876031601 +562 127 5 879196401 +743 289 3 881277357 +715 546 4 875962076 +828 302 4 891380166 +608 865 4 880403537 +708 1280 1 892718819 +808 271 3 883949602 +881 49 5 876538986 +592 686 5 882956387 +250 28 4 878090153 +593 97 4 877728878 +659 215 4 891385258 +655 325 2 887425197 +674 252 2 887763151 +442 988 1 883388064 +589 689 4 883352787 +807 71 5 892530705 +215 226 4 891436633 +624 257 3 879793269 +708 126 4 892719340 +128 501 3 879968921 +771 197 1 880659919 +668 272 5 890349005 +537 117 2 886030011 +611 347 4 891636244 +116 640 3 876453560 +806 14 3 882385394 +843 402 2 879447599 +128 432 2 879968125 +254 168 1 886472400 +663 455 2 889492679 +864 716 2 888889744 +804 10 4 879442298 +733 137 5 879535406 +683 754 3 893284184 +862 198 5 879304484 +693 708 3 875483049 +880 54 3 880242503 +601 1063 3 876350340 +560 122 3 879977081 +747 97 5 888640437 +776 848 2 892210321 +64 625 3 889740286 +537 694 4 886031407 +617 615 3 883789294 +104 286 1 888442304 +837 289 5 875721539 +453 476 3 890939266 +881 53 2 876539448 +487 591 2 883444462 +804 932 3 879444077 +877 271 4 882676507 +790 282 4 884461590 +693 127 4 875482056 +727 1076 2 883712632 +599 872 2 880951046 +330 21 5 876544953 +605 14 5 879427619 +129 1176 4 883244059 +788 58 4 880868355 +868 91 3 877107817 +846 53 3 883950820 +144 9 5 888104191 +881 204 4 876538506 +256 591 5 882151017 +862 526 4 879304623 +470 258 4 879178216 +796 564 1 893194929 +846 216 4 883948571 +791 300 5 879447977 +541 526 4 883865088 +805 952 5 881704553 +756 566 4 874830168 +717 826 2 884642868 +663 1 4 889492679 +429 1118 4 882385902 +308 471 3 887739382 +694 523 4 875727877 +715 40 1 875964681 +878 511 4 880866810 +812 358 3 877625461 +535 30 4 879617531 +581 276 3 879641850 +862 216 5 879304410 +113 222 3 875076872 +659 1203 4 891385258 +474 939 4 887928562 +711 281 3 879995362 +881 559 2 876539220 +83 751 3 883869440 +770 358 3 875971655 +236 199 4 890118307 +458 28 3 886396005 +846 86 5 883949290 +168 473 2 884288178 +805 382 4 881698258 +290 825 3 880732508 +181 303 1 878961749 +833 640 3 875123986 +610 582 4 888703749 +178 31 4 882827083 +642 422 3 885606608 +627 47 2 879530346 +560 278 1 879976892 +851 1016 5 891961664 +807 384 4 893080838 +682 233 2 888520864 +299 313 3 887135516 +868 89 4 877107446 +832 328 3 888259020 +579 88 4 880952440 +663 1086 3 889492959 +222 470 3 878181869 +757 229 3 888466652 +828 10 3 891035970 +735 475 4 876698570 +562 132 4 879195721 +354 19 5 891216549 +531 300 4 887048862 +425 912 2 891986392 +810 313 5 885406451 +149 258 3 883512658 +274 318 5 878946577 +666 505 4 880139526 +299 244 2 877878001 +28 229 2 881961393 +454 610 3 881959576 +863 352 1 889289491 +405 854 1 885547222 +695 991 5 888806011 +662 1380 2 880570952 +820 748 1 887955223 +833 53 1 875224039 +727 1229 2 883713473 +606 508 4 878147350 +884 70 4 876859208 +472 24 5 892791017 +145 821 3 875272833 +880 50 5 880167175 +806 186 4 882387925 +520 690 5 885168677 +525 472 2 881086012 +878 659 4 880870854 +457 248 4 882393008 +807 1063 4 892529112 +92 546 2 875640512 +664 22 2 876524731 +795 554 3 883254802 +222 717 1 877563716 +804 414 4 879444890 +588 384 1 890032013 +22 4 5 878886571 +320 1047 4 884748733 +363 1215 1 891498920 +296 7 5 884196896 +824 991 3 877021121 +434 225 4 886724453 +844 1474 4 877387195 +6 474 5 883601277 +617 179 4 883789386 +712 102 4 874956543 +753 322 3 891401167 +137 289 3 881432671 +268 218 2 875744469 +389 82 4 880087977 +798 1270 3 875915190 +505 692 3 889334583 +534 331 4 877807429 +854 1077 3 882813907 +864 134 5 888887013 +749 88 4 878849534 +535 708 5 879618777 +354 209 3 891218155 +802 687 3 875984722 +862 181 5 879305143 +543 1199 2 877542776 +455 237 3 879109923 +495 232 5 888635202 +640 70 4 874778065 +821 15 5 874792835 +470 1134 4 879178486 +293 152 4 888905716 +883 311 4 891691505 +682 96 4 888523635 +593 200 5 875661567 +843 193 3 879446863 +711 1446 2 879994608 +761 127 3 876190025 +243 111 4 879987793 +200 378 5 884129301 +859 276 4 885776056 +458 187 5 886398543 +710 504 4 882063649 +567 195 3 882426782 +503 213 5 880383030 +711 219 2 879995792 +514 50 5 875462466 +692 328 4 876953340 +883 50 4 891696824 +716 102 2 879797256 +457 401 3 882550654 +594 483 3 874786695 +851 31 4 875807058 +740 286 5 879523187 +194 179 4 879521329 +423 322 3 891395020 +87 188 4 879875818 +249 144 4 879572567 +343 555 1 876407706 +308 200 5 887738933 +866 321 3 891221302 +490 127 5 875428765 +409 14 5 881107992 +788 200 4 880869075 +788 549 4 880869753 +782 268 3 891497854 +380 729 3 885479252 +424 1 1 880859493 +94 1045 4 891721815 +87 801 3 879876768 +316 192 1 880854267 +299 435 3 877881061 +851 772 3 875807019 +213 55 5 878955680 +747 481 5 888639525 +697 876 3 882621595 +587 880 3 892871536 +749 110 2 878850703 +537 713 3 886030177 +742 13 4 881335361 +864 219 4 888889129 +778 161 3 890727175 +637 275 3 882903191 +450 416 5 882395779 +664 276 5 876524053 +292 115 4 881104194 +747 923 5 888639939 +747 428 3 888640046 +343 510 5 876408139 +146 327 3 891457905 +846 659 5 883948908 +586 566 3 884062621 +805 550 3 881694854 +640 354 4 888262331 +847 225 1 878775647 +840 705 4 891204713 +796 233 4 893048471 +774 77 1 888556938 +405 1062 1 885549904 +735 124 5 876698643 +682 58 3 888517627 +514 587 4 880210105 +704 497 3 891397764 +717 846 4 884642339 +345 744 4 884991348 +796 2 5 893048377 +579 169 4 880951867 +486 995 4 879874388 +597 1 3 875339723 +838 249 4 887064315 +804 639 4 879442591 +445 302 1 891199195 +43 169 5 875981128 +769 831 1 885424534 +504 526 3 887838624 +561 50 3 885807429 +744 23 4 881171420 +425 355 3 890346705 +749 484 5 881073043 +666 709 4 880314144 +709 628 3 879847000 +435 790 4 884133818 +488 527 3 891294473 +807 505 3 892528110 +71 514 4 877319567 +291 773 3 874834827 +624 24 3 879793380 +733 129 2 879535299 +561 286 4 885806710 +836 216 4 885753979 +880 181 5 880166719 +50 547 4 877052297 +207 316 5 891759050 +659 13 4 891331361 +880 783 1 880175187 +347 137 2 881652568 +111 321 3 891680076 +42 86 3 881107880 +393 298 4 887743453 +717 1137 5 884642580 +216 747 4 880245260 +793 815 3 875103901 +850 173 5 883195008 +713 362 1 888882040 +886 175 4 876031550 +880 508 4 880166966 +385 47 4 879441982 +424 882 3 880858829 +880 721 1 880174749 +482 288 3 887644023 +634 127 5 877018347 +804 1285 2 879445766 +343 235 4 876403078 +749 1051 3 878846676 +655 1257 3 887433685 +854 289 2 882811962 +684 376 3 878762273 +56 280 4 892683913 +871 1197 3 888193136 +758 1052 5 882055497 +7 610 5 891353086 +805 343 5 881684185 +294 286 5 877818457 +640 338 5 886353852 +378 14 5 880044251 +486 924 3 879875069 +423 282 4 891395448 +580 748 2 884126077 +882 409 4 879863031 +668 538 5 881523787 +825 286 4 889912073 +757 210 4 888445570 +339 145 3 891036557 +398 56 4 875659843 +447 582 4 878855724 +222 455 3 877563437 +548 203 5 891044446 +433 358 2 880585554 +871 1119 3 888193384 +758 183 5 882055987 +883 135 4 891717319 +630 252 2 885667464 +280 619 4 891701913 +838 1005 4 887066678 +675 1007 4 889489522 +632 168 4 879457248 +736 1388 5 878709365 +207 692 3 877750738 +865 597 1 880144368 +751 3 3 889299391 +679 531 4 884487153 +601 238 2 876349897 +833 28 3 875135213 +591 25 4 891039658 +807 633 4 892529401 +523 412 3 883702351 +721 581 2 877141373 +392 663 4 891039049 +805 455 4 881694854 +332 840 4 887938781 +833 518 3 875039100 +201 58 4 884140488 +284 270 3 885328906 +243 283 3 879987362 +773 792 4 888539471 +640 304 4 876067605 +595 325 3 886920774 +509 343 3 883591319 +280 218 4 891701474 +222 356 4 878184571 +201 268 4 884110637 +516 431 3 891290649 +300 294 3 875649995 +655 730 2 890497653 +705 22 5 883427988 +502 261 2 883702945 +650 1035 2 891389132 +618 609 4 891309440 +540 220 3 882157820 +230 162 4 880484587 +486 1379 3 879874515 +863 902 5 889289456 +790 722 3 885157686 +763 961 5 878919083 +505 1409 3 889333974 +779 300 3 875501300 +525 257 4 881085739 +303 1407 1 879544063 +611 752 5 891636223 +26 475 3 891350826 +592 1048 3 882608625 +268 718 4 875306805 +758 122 4 881980408 +749 257 3 878846957 +303 73 3 879484918 +537 1084 3 886030050 +880 755 3 880242848 +529 749 4 882535466 +189 742 3 893264270 +837 237 3 875721793 +297 28 4 875239913 +758 489 5 881975687 +495 120 5 888637768 +864 892 3 887686497 +747 71 5 888639102 +880 1016 4 880167223 +167 493 4 892738307 +727 431 4 883711045 +338 498 4 879438250 +279 1072 4 890780735 +860 303 3 876074139 +790 111 3 884461849 +766 208 5 891309810 +749 523 4 878847285 +538 4 3 877107726 +846 132 5 883948840 +328 689 5 885044733 +207 871 5 880839802 +551 468 5 892783559 +514 648 3 886189869 +877 515 5 882677640 +866 306 4 891221165 +666 137 4 880313423 +670 949 2 877974465 +790 358 2 885154848 +325 1018 3 891479038 +796 873 3 892874827 +77 173 5 884752689 +512 258 3 888578768 +883 407 3 892557605 +291 774 3 874867852 +145 155 2 875272871 +44 109 3 878346431 +690 684 4 881179938 +716 965 2 879797504 +846 186 5 883948949 +851 109 4 875730379 +823 196 5 878439211 +414 748 3 884999147 +373 645 5 877098599 +711 1115 4 876185812 +868 448 2 877110401 +846 83 4 883947911 +429 214 3 882384526 +447 866 2 878855082 +18 143 4 880131474 +795 173 4 880567884 +884 275 4 876857845 +537 924 3 886030254 +846 92 4 883948495 +495 94 3 888636992 +877 274 4 882678105 +782 948 2 891499699 +823 140 3 878438332 +843 121 3 879444047 +642 202 3 885842351 +854 405 4 882812755 +883 867 5 891695588 +846 1168 4 883950569 +745 507 1 880123335 +796 810 3 893048622 +332 431 5 888360412 +405 47 5 885545429 +813 259 2 883752528 +764 14 4 876752116 +758 420 3 882053499 +738 229 3 875351906 +270 86 4 876955067 +648 423 4 884368442 +198 447 4 884209188 +450 417 4 882376365 +514 49 2 886189676 +666 222 3 880313423 +532 186 4 891910189 +870 48 4 875050603 +568 224 4 877907236 +621 80 4 874963126 +650 402 3 891383272 +620 623 4 889988232 +301 429 4 882076072 +380 228 3 885479235 +417 723 5 879648938 +716 946 2 879796718 +885 1311 2 885714582 +378 1438 3 880333098 +864 22 5 888888937 +743 338 1 881277800 +92 408 4 876175704 +398 692 4 875717020 +468 216 5 875288771 +828 61 5 891037466 +843 97 3 879447377 +286 821 4 877534550 +354 305 4 891180489 +624 15 4 879793330 +151 125 4 879542939 +708 596 4 877326158 +643 566 3 891449476 +840 462 3 891205287 +499 486 3 885599598 +587 243 3 892871401 +70 820 1 884152379 +741 290 3 891457956 +543 22 3 877545230 +655 789 3 887473879 +742 15 4 881335461 +748 517 3 879455083 +883 72 4 891694431 +665 432 4 884294025 +445 979 2 891200272 +557 268 5 881179653 +541 542 1 884046888 +645 268 4 892051811 +643 356 4 891448218 +648 831 1 882212131 +291 1248 4 875087634 +617 670 1 883789590 +854 1197 3 882812263 +653 258 3 886051833 +871 177 5 888193336 +82 87 3 878769598 +793 1187 2 875104167 +56 410 4 892911348 +59 151 5 888203053 +864 722 2 888892091 +833 675 4 875224252 +437 79 4 880143855 +472 161 5 875982149 +738 89 5 892844112 +747 736 5 888732899 +840 497 4 891209571 +699 880 3 893140941 +100 895 2 891375212 +130 196 5 875801695 +804 702 2 879447476 +849 288 5 879695056 +648 484 5 884368442 +637 866 3 882905285 +534 475 4 877807747 +860 211 3 885990998 +884 9 5 876858820 +75 460 5 884050829 +868 160 4 877104414 +435 230 3 884132809 +487 48 2 883445540 +704 347 4 891397015 +716 81 4 879796475 +665 423 4 884294611 +711 845 4 879991247 +870 663 3 879540005 +746 144 5 885075211 +383 479 4 891192985 +554 31 4 876369085 +655 1265 3 887425025 +778 234 3 890726231 +583 513 5 879384338 +848 209 5 887038397 +676 22 5 892686606 +854 268 3 882811865 +622 204 3 882592559 +655 55 2 887429302 +826 820 3 885690250 +428 886 4 885943651 +774 758 1 888559036 +879 237 4 887761309 +660 239 2 891200989 +618 582 4 891309217 +398 196 4 875746951 +796 197 3 892676231 +436 1028 4 887770693 +303 564 1 879485447 +643 505 4 891447260 +275 164 4 880313886 +840 945 3 891204509 +422 867 3 878059137 +200 951 5 884130014 +297 498 3 875239018 +666 133 3 880139439 +885 210 5 885713544 +699 978 4 886568066 +821 132 5 874793898 +846 708 3 883948685 +727 636 3 883711616 +535 496 5 879618246 +883 516 4 891694372 +682 67 4 888523581 +672 269 3 879787460 +884 269 5 876857704 +727 1042 2 883712068 +505 568 4 889333466 +673 315 5 888786942 +882 515 5 879865307 +788 271 3 880867855 +92 452 2 875906828 +399 9 3 882510018 +656 270 3 892318676 +429 411 3 882386848 +250 234 3 878091736 +881 601 5 876539186 +655 786 2 887472965 +727 928 3 883709802 +707 135 2 886286032 +872 106 3 888479624 +682 217 4 888523581 +327 184 3 887820341 +827 272 4 884213984 +95 1116 4 888956137 +450 483 3 882371826 +692 294 3 876946833 +690 496 4 881179222 +824 321 2 877021002 +788 56 3 880868235 +805 142 4 881705843 +84 477 4 883452307 +593 255 5 875659055 +764 696 3 876243465 +566 170 5 881650739 +885 405 4 885715691 +731 320 1 886186811 +798 62 4 875915855 +871 895 3 888192689 +130 95 5 875216867 +682 1084 2 888518164 +889 72 3 880181317 +566 419 2 881650907 +751 785 4 889298010 +721 111 4 877154765 +564 1034 3 888730838 +102 751 3 885100000 +830 50 5 891561606 +201 211 3 884112840 +852 597 3 891037562 +25 173 4 885852969 +243 285 5 879989217 +870 42 2 879270213 +138 209 4 879023948 +642 942 4 886207151 +788 432 1 880869323 +519 328 2 883248251 +747 216 2 888639060 +851 10 3 875730030 +592 885 2 887257199 +615 678 1 879447713 +465 100 3 883532119 +286 1101 5 877532715 +717 597 4 884642710 +889 659 4 880178367 +409 485 2 881107155 +862 230 3 879305273 +222 575 3 881060550 +298 210 5 884182891 +303 595 2 879484421 +399 241 4 882342866 +755 327 2 882569801 +591 196 4 891031116 +786 418 4 882843352 +488 182 3 891293734 +617 170 1 883788929 +843 1411 3 879449377 +397 318 4 885349610 +624 473 3 879793093 +710 268 4 882063276 +664 191 3 876523833 +782 258 4 891497906 +648 112 2 884367366 +577 173 5 880472055 +339 167 4 891036058 +672 275 5 879787955 +645 664 4 892054402 +838 385 4 887067127 +749 571 3 878850456 +1 191 5 875072956 +813 877 1 883752331 +279 364 4 891209077 +504 240 1 887832012 +669 1 5 892549412 +647 231 4 876533657 +833 444 3 875224352 +181 122 2 878963276 +126 678 3 887855283 +515 905 2 887660131 +676 1483 4 892685826 +600 385 3 888451582 +847 473 2 878938855 +391 76 3 877399618 +851 290 4 874728430 +698 511 2 886367693 +804 528 4 879443048 +536 141 4 882361042 +804 1074 1 879447476 +464 1025 2 878354829 +497 472 3 879310650 +385 1014 2 879450441 +230 22 5 880484850 +792 100 4 877910822 +774 2 1 888557383 +8 11 3 879362233 +590 237 3 879438911 +537 96 3 886031576 +102 294 2 883277645 +863 333 5 889289123 +48 215 4 879434751 +889 134 4 880179648 +647 88 4 876534041 +184 640 4 889909551 +886 819 4 876033897 +860 514 5 885991040 +109 282 3 880564678 +535 499 4 879617894 +601 508 4 876346964 +798 444 2 875639115 +622 674 2 882670929 +761 291 3 876190770 +838 179 5 887067340 +601 591 3 876347267 +865 245 3 880235263 +772 288 2 889028773 +386 127 5 877654961 +552 1047 3 879222521 +642 1047 3 885606327 +423 678 3 891395020 +889 160 4 880180945 +852 289 2 891035325 +307 64 4 879283371 +878 949 3 880871600 +334 73 3 891548695 +833 919 2 875124348 +378 707 3 880046475 +288 269 5 886373071 +592 48 5 882955735 +382 482 5 875946945 +201 1267 3 884141053 +59 89 5 888204965 +330 963 5 876547533 +766 212 5 891310125 +203 890 2 880433499 +771 709 5 880659894 +768 628 3 880136174 +845 313 4 885409374 +676 168 5 892686459 +863 315 5 889288910 +15 125 5 879456049 +699 1013 3 879147722 +854 382 4 882813761 +545 194 3 879899677 +881 790 3 876539549 +787 880 3 888979123 +435 928 3 884134187 +862 147 5 879304196 +561 428 4 885810084 +622 70 3 882670562 +774 515 2 888556398 +416 1189 5 893213917 +836 496 4 885754231 +698 625 3 886366731 +488 526 4 891294530 +125 153 2 879454419 +787 342 2 888979875 +659 69 3 891384916 +474 607 4 887926872 +889 654 3 880178512 +532 431 5 892521553 +747 347 5 888638091 +552 294 4 879220688 +505 190 4 889333598 +786 69 4 882844295 +459 676 3 879563288 +313 238 4 891013859 +604 443 3 883668352 +868 1035 1 877107817 +774 577 2 888556278 +409 879 1 881105366 +347 177 5 881654386 +747 409 1 888733595 +621 686 5 880739852 +409 714 3 881108170 +699 1011 4 880696196 +537 230 2 886031860 +749 133 4 878849052 +704 632 3 891397441 +425 879 2 878737593 +436 506 5 887770485 +59 69 5 888205087 +788 823 3 880871294 +244 214 5 880603219 +592 93 4 882608061 +551 71 4 892783281 +233 89 3 875508225 +566 191 4 881649853 +387 475 3 886480657 +782 1226 2 891499439 +452 530 3 875562062 +712 433 3 874956903 +581 515 4 879641533 +694 521 3 875730042 +22 127 5 878887869 +385 1495 3 879443186 +807 380 4 893080442 +363 65 4 891495682 +823 87 5 878438887 +609 877 5 886895649 +831 100 4 891354573 +782 1105 3 891498766 +610 283 3 888703316 +874 306 4 888632194 +886 781 4 876033340 +621 183 4 874963594 +532 520 5 892861434 +782 286 2 891497906 +749 496 5 878847673 +545 890 2 880347690 +782 989 3 891498267 +833 1016 1 875133458 +659 134 4 891332189 +474 657 5 887924028 +270 268 5 876953745 +889 65 4 880180817 +870 568 4 879714588 +879 282 4 887761865 +762 875 5 878718996 +450 505 5 882376658 +707 536 3 880059921 +862 1093 5 879304196 +638 685 4 876695307 +848 151 4 887043180 +429 88 3 882386895 +740 294 4 879523187 +868 265 3 877108302 +806 485 5 882388381 +731 588 3 886184682 +399 1396 4 882343455 +828 1153 3 891037948 +764 173 3 876245383 +666 319 4 880138999 +290 135 4 880474510 +214 960 2 891544152 +334 258 4 891544264 +577 64 5 880474394 +177 324 4 880130434 +402 9 4 876266741 +413 147 2 879969860 +684 274 2 878759884 +846 702 4 883949380 +679 143 2 884487135 +615 216 4 879449068 +632 50 5 879459738 +542 871 2 886533142 +694 1221 3 875728842 +751 95 5 889134419 +663 872 3 889491919 +561 474 5 885807318 +361 176 4 879441215 +720 1176 5 891262812 +489 750 5 891448080 +837 13 4 875721843 +257 61 5 879547534 +823 433 4 878438379 +296 181 5 884198772 +829 237 3 891204271 +592 178 5 882956241 +848 234 4 887037861 +862 491 3 879304799 +405 446 1 885548385 +885 428 4 885713461 +877 286 2 882675993 +486 1598 5 879874583 +867 318 5 880078424 +773 217 3 888540314 +436 1053 4 887771853 +889 58 3 880178130 +716 473 4 879794379 +477 294 4 875940693 +847 926 1 878938792 +774 56 2 888555928 +23 522 4 874785447 +345 118 3 884991520 +735 106 3 876698714 +884 322 3 876857745 +582 1033 2 882962030 +675 891 2 889488779 +435 22 4 884131156 +766 1126 4 891309767 +846 398 1 883950753 +215 552 3 891436730 +244 1467 5 880605553 +739 1431 5 886825529 +886 68 3 876032422 +378 381 4 882642831 +459 651 3 879564309 +748 222 4 879454707 +457 183 5 882397455 +802 672 3 875985767 +805 167 3 881705534 +650 420 3 891385826 +881 222 5 876536079 +179 1234 1 892151459 +883 239 3 891694401 +654 239 4 887864868 +878 172 4 880870854 +892 134 5 886608591 +44 133 4 878347569 +711 170 5 876279059 +848 1118 5 887048573 +328 720 3 885049535 +580 15 3 884125339 +234 238 3 892079040 +867 96 5 880078656 +298 333 5 884126600 +497 12 4 879362019 +119 82 2 874781352 +789 293 4 880332259 +709 405 3 879848590 +151 44 4 879542413 +380 515 4 885478218 +527 603 4 879456078 +758 546 3 882053613 +805 174 3 881694798 +789 9 5 880332114 +768 591 4 883834945 +857 300 3 883432251 +643 98 3 891446688 +694 492 4 875727581 +483 257 2 878952519 +712 1053 4 874730490 +606 969 5 880925074 +828 286 4 891033342 +872 597 4 888479370 +263 520 3 891298163 +577 7 2 880470447 +650 316 3 891369190 +843 23 2 879446696 +458 736 4 886398543 +271 48 4 885849087 +850 300 5 883194367 +758 547 5 881975472 +383 478 5 891193042 +397 109 4 889760803 +567 246 4 882426508 +763 209 4 878918213 +518 106 5 876823804 +661 433 5 876016545 +796 487 5 892676195 +393 463 4 889555225 +532 82 5 892521554 +313 514 4 891013887 +256 595 4 882164037 +653 425 2 880606619 +862 64 5 879304326 +630 310 3 885665975 +850 210 5 883195301 +804 679 4 879445393 +710 496 4 882063793 +413 286 5 879968793 +339 170 5 891032286 +450 528 5 882371526 +881 1124 4 876538627 +833 696 3 875036912 +566 122 2 881651583 +292 486 4 881105246 +880 228 3 880167843 +326 53 1 879877039 +119 288 4 886175150 +557 337 5 881179653 +663 1009 3 889493069 +489 339 3 891448428 +267 715 4 878972682 +743 303 5 881277357 +868 73 1 877108220 +886 147 5 876033228 +436 72 5 887770693 +524 216 5 884634849 +154 222 2 879138910 +251 535 3 886272283 +890 118 2 882915661 +787 245 3 888980193 +334 244 3 891545044 +600 679 2 888451839 +561 1018 3 885809806 +851 588 4 875731529 +892 273 4 886608681 +798 953 2 875639290 +833 628 4 875036102 +886 235 3 876032739 +491 237 3 891187226 +457 51 5 882397734 +178 246 4 884837324 +592 1143 5 882607872 +401 371 3 891033550 +676 9 2 892686134 +128 381 3 879969033 +699 1028 2 880696678 +870 255 2 889409590 +618 735 3 891308571 +234 663 4 892335707 +327 684 4 887820293 +889 168 4 880178449 +354 735 3 891218312 +534 243 3 877807461 +643 114 4 891446854 +80 483 5 887401328 +268 286 5 875306477 +435 1291 1 884134853 +224 980 1 888104353 +522 11 4 876961076 +889 762 3 880177154 +823 53 5 878439229 +739 661 2 886958831 +889 246 4 880176926 +669 194 3 891517159 +792 1197 4 877910822 +881 441 2 876539549 +773 531 5 888538853 +893 56 5 874829733 +843 625 2 879448542 +825 275 3 881100775 +692 763 3 876954381 +757 232 3 888466435 +825 122 1 889021209 +798 66 3 875639364 +452 237 2 875263068 +747 73 4 888640305 +703 628 4 875242762 +440 340 2 891549397 +290 405 2 880732365 +625 254 3 891273897 +885 1 5 885714990 +650 137 3 891385105 +838 96 4 887065781 +841 754 4 889067045 +783 264 4 884326726 +887 931 3 881379009 +592 544 4 882608107 +613 632 3 891227204 +886 233 3 876032126 +826 288 3 885689759 +863 1024 3 889289619 +653 366 2 880152901 +615 509 4 879448149 +727 174 4 883710186 +843 674 2 879443394 +489 324 3 891445320 +781 205 5 879634256 +756 1 4 874826629 +655 653 3 892011201 +854 505 4 882813600 +848 755 5 887046674 +314 132 4 877890644 +859 421 5 885776384 +882 204 5 879864697 +650 380 2 891383735 +526 277 2 885682657 +269 135 4 891447931 +881 13 4 876536364 +848 172 5 887038022 +537 76 3 886031934 +851 307 4 878574215 +664 528 5 876523833 +130 453 3 880396602 +663 123 3 889492562 +542 235 3 886533228 +648 619 3 882211301 +854 223 4 882814177 +798 163 3 875814110 +883 224 4 891692683 +891 546 3 883489282 +894 15 3 880416340 +303 554 2 879484500 +758 294 5 880672523 +321 197 5 879439812 +868 358 2 877103098 +347 174 4 881654248 +113 127 4 875935610 +867 174 5 880078991 +798 173 5 875656071 +886 160 1 876031550 +392 300 2 891037437 +399 99 3 882344269 +192 100 5 881367706 +634 331 4 875728702 +773 403 2 888540091 +771 1129 5 880660106 +821 213 5 874793806 +450 570 4 887139728 +87 94 4 879876703 +90 1045 2 891385843 +751 193 5 889133556 +174 1311 3 886514430 +741 673 4 891455671 +655 49 1 887428417 +593 471 3 875659826 +805 86 4 881696729 +758 123 1 881977872 +854 86 3 882814436 +747 1456 3 888732747 +608 269 3 880402272 +472 796 4 875981595 +437 170 5 880140787 +524 815 3 884627519 +314 722 1 877891089 +630 240 3 885667200 +868 109 3 877107627 +660 491 4 891199348 +783 269 4 884326274 +145 636 4 875272050 +748 237 4 879454880 +805 101 2 881695591 +412 24 3 879717177 +463 887 5 890452468 +617 646 4 883789386 +724 682 1 883757703 +653 70 2 880151340 +453 204 4 877554704 +555 340 4 879962096 +454 193 2 881959818 +893 147 3 874828569 +500 77 3 883875793 +805 212 3 881696729 +642 1146 1 886570084 +792 831 2 877910666 +810 331 4 891873686 +630 735 2 885668231 +749 87 4 878849558 +892 781 4 886610137 +889 819 2 880177738 +829 213 4 881698933 +766 639 3 891309622 +804 1028 3 879445556 +868 183 5 877104414 +286 931 4 876522340 +846 180 5 883947630 +846 317 3 883947778 +880 1291 3 880175468 +664 50 5 878090415 +666 286 5 880138999 +575 96 5 878148199 +7 573 5 891353828 +492 221 3 879969454 +22 926 1 878887062 +894 888 4 879896756 +354 83 4 891217851 +883 665 4 891695717 +880 396 2 880174995 +798 795 3 876176160 +435 571 2 884134047 +894 405 3 880416177 +860 294 2 880829225 +551 7 5 892777638 +805 771 5 881695999 +638 195 4 876694787 +578 222 4 888957788 +661 71 4 876015530 +215 87 5 891436543 +796 198 4 892662871 +754 359 3 879451299 +870 603 5 875050723 +69 172 5 882145548 +65 64 5 879216529 +405 198 2 885549506 +383 58 4 891193210 +716 265 5 879797414 +566 110 1 881651813 +854 1086 3 882812195 +881 89 4 876537577 +847 372 5 878940189 +752 306 5 891208451 +95 381 4 880571678 +561 209 4 885807369 +749 742 4 878849375 +601 405 1 876347765 +761 235 3 876190182 +625 238 4 891636000 +243 157 5 879989217 +224 553 4 888104393 +882 173 5 879867980 +716 632 4 879795691 +737 96 2 884314715 +881 1046 3 876539051 +840 48 3 891204418 +375 773 3 886621985 +425 522 3 878738077 +417 252 3 879646530 +854 603 4 882813600 +468 12 4 875291902 +880 72 3 880174996 +854 928 3 882813143 +648 227 3 884882803 +27 288 3 891543129 +778 98 4 890725951 +458 632 4 886398289 +174 724 5 886453169 +731 69 5 886179040 +579 732 4 880952335 +882 140 3 879879868 +11 372 4 891904968 +541 627 4 883874749 +846 755 3 883950311 +439 276 5 882892755 +854 22 2 882813691 +891 117 3 883488774 +790 98 5 885156375 +312 14 5 891698664 +788 693 2 880868705 +447 410 2 878854630 +802 443 4 875985686 +186 159 5 879023723 +200 449 5 884130540 +445 1143 4 891200870 +561 200 4 885807743 +781 204 4 879634256 +412 684 4 879717313 +864 966 4 888888994 +796 271 5 892874827 +877 60 5 882677183 +7 379 4 891353325 +102 55 3 888801465 +394 158 3 881059315 +645 513 5 892054481 +846 770 5 883948606 +847 1160 4 878939153 +686 451 4 879546847 +848 899 3 887037471 +881 294 3 876535642 +530 333 3 890627264 +815 596 5 878692043 +846 228 5 883947737 +867 258 3 880077751 +890 98 4 882403446 +780 526 5 891364125 +177 181 4 880130931 +543 233 4 877545716 +455 123 3 879111705 +627 713 2 879530306 +806 1071 4 882388965 +1 4 3 876893119 +405 526 1 885546154 +865 169 5 880235059 +715 376 2 875964545 +854 250 4 882812376 +313 82 3 891014838 +255 324 5 883215586 +692 168 2 876953204 +882 71 5 879867631 +629 655 5 880117333 +883 561 3 891695717 +561 539 1 885807035 +753 134 4 891402323 +60 501 3 883327472 +468 118 3 875280417 +537 646 2 886030552 +506 1407 2 885135954 +537 382 3 886030938 +1 263 1 875693007 +214 98 4 892668249 +671 257 5 875388720 +857 14 4 883432633 +892 151 4 886609330 +312 507 5 891698300 +796 9 3 892660251 +871 1385 3 888193136 +868 173 4 877107961 +804 188 4 879442096 +784 754 3 891387249 +90 270 4 891382310 +566 155 2 881651225 +42 71 4 881108229 +389 211 4 880087415 +393 1044 4 889731821 +456 403 2 881373900 +878 655 3 880866687 +145 227 4 885557660 +821 357 5 874793517 +741 496 5 891456718 +887 1012 1 881378153 +524 823 4 884628136 +863 303 1 889288911 +406 507 4 879445735 +551 461 3 892778074 +588 63 5 890028385 +870 386 4 880584752 +796 1101 5 892690382 +660 405 2 891198479 +840 529 4 891204891 +577 79 4 880474530 +655 209 3 887473831 +705 849 3 883428201 +484 449 4 891195602 +749 808 3 878849929 +474 490 5 887926059 +387 289 1 886484413 +559 515 4 891035111 +605 69 5 879425432 +559 144 5 891034551 +788 1 3 880867970 +468 471 3 875279269 +804 719 3 879445132 +402 117 3 876267173 +767 222 5 891462760 +751 849 2 889299133 +296 483 5 884197307 +545 426 3 879901483 +867 252 2 880078179 +696 1062 4 886403631 +666 544 4 880313682 +222 1220 4 878184290 +756 731 3 874827920 +481 322 4 885828016 +847 118 3 878775982 +506 873 4 889874717 +844 50 5 877388182 +814 448 3 885411030 +551 470 5 892783711 +411 449 3 891035405 +288 214 2 886374316 +455 1086 3 879109692 +687 988 3 884652429 +894 333 4 879896756 +679 268 4 884312834 +887 839 4 881379566 +894 246 4 882404137 +805 151 5 881705810 +871 747 3 888193541 +894 297 4 880416380 +622 209 5 882592421 +653 658 2 880151817 +543 391 3 877547190 +718 815 4 883348873 +435 1016 4 884134377 +334 950 3 891545162 +871 1345 3 888193136 +194 78 1 879535549 +648 13 3 882212071 +492 45 3 879969814 +852 820 4 891037754 +712 768 5 874956560 +586 85 3 884067003 +49 1017 3 888069040 +870 216 4 875680520 +327 1218 4 887822400 +642 1000 3 885602340 +727 1139 3 883713348 +637 24 2 882903511 +664 194 4 876525998 +655 269 3 888474807 +524 693 5 884636562 +825 120 3 889020852 +892 849 2 886610341 +758 213 5 881976377 +655 1623 4 887428735 +564 1016 2 888730699 +790 826 1 884462714 +785 12 4 879439137 +851 273 5 891961663 +763 157 4 878917467 +863 326 5 889289157 +846 239 4 883947694 +77 28 5 884753061 +763 70 5 878917468 +676 328 5 892685657 +536 1063 5 882359938 +859 1014 4 885775564 +727 820 2 883709539 +846 1018 4 883949421 +276 260 3 874786439 +536 179 2 882359625 +646 893 3 888529080 +655 46 4 887523403 +647 831 3 876776321 +268 25 3 875742556 +361 70 4 879440386 +756 435 3 874832788 +708 25 3 877325838 +886 1303 1 876033987 +466 1607 5 890284231 +642 1136 4 888123195 +655 1278 2 887433780 +483 743 1 893098548 +606 405 4 878148493 +145 901 1 885556116 +881 183 4 876537995 +592 547 4 882607910 +411 276 3 892845575 +655 520 3 887523427 +795 97 2 881529761 +835 526 3 891033927 +751 1078 3 889299290 +881 161 3 876538506 +79 1 4 891271870 +768 151 2 880135923 +450 1115 4 882395778 +45 111 4 881011550 +634 1047 3 875729668 +26 369 2 891379664 +181 1163 2 878963086 +405 417 2 885548836 +870 770 4 875679992 +881 514 4 876537457 +728 546 2 879443155 +353 260 1 891402617 +876 48 5 879428481 +417 17 4 879648183 +857 325 1 883432397 +698 258 3 886365527 +261 326 4 890454279 +524 499 4 884637598 +761 295 4 876190130 +696 245 4 886404208 +681 690 4 885409770 +293 455 2 888905229 +880 348 4 892958376 +663 322 4 889491739 +886 232 3 876032973 +453 515 4 876191626 +632 591 4 879459053 +290 809 4 880475664 +889 488 2 880180265 +820 315 3 887954828 +339 515 5 891033072 +768 121 4 883834705 +113 325 4 875935610 +176 876 3 886047375 +786 99 4 882843112 +301 294 4 882074408 +1 203 4 878542231 +450 196 5 882371526 +63 1138 2 875747789 +487 289 2 883441083 +862 478 4 879305016 +600 570 4 888452563 +896 1101 2 887159110 +177 96 3 880130898 +843 542 2 879448392 +896 403 1 887160554 +378 40 3 880333653 +313 172 4 891014335 +864 13 4 877214125 +682 946 4 888523155 +598 691 2 886710330 +699 831 2 884152570 +660 385 3 891199883 +385 419 2 879442606 +561 1131 4 885807173 +690 8 4 881177430 +389 509 4 880614449 +864 386 3 888891288 +721 216 5 877138498 +873 300 4 891392238 +363 315 3 891493603 +457 196 5 882397763 +642 67 4 885843025 +393 344 3 891364581 +68 713 2 876974073 +5 406 1 875635807 +451 327 4 879012580 +488 173 4 891294473 +293 956 3 888906726 +460 313 4 882910837 +457 151 5 882394010 +253 655 4 891628142 +486 1322 3 879875347 +880 566 3 880167880 +13 531 3 882140104 +864 163 4 888888680 +693 1135 3 875482689 +506 399 5 874874054 +824 294 3 877021002 +210 654 5 887737559 +880 931 3 880243564 +312 660 4 891699321 +401 604 4 891033370 +487 150 5 883442430 +788 645 3 880870626 +881 135 4 876537900 +796 196 5 892675693 +374 1048 3 880394179 +636 100 5 891448228 +858 292 3 879459087 +554 22 4 876232794 +63 748 4 875747010 +738 214 4 875350157 +601 99 3 876350536 +52 1085 4 882922454 +864 222 4 888887502 +655 655 3 888474285 +838 143 5 887067631 +848 162 2 887048541 +878 794 4 880869418 +33 329 4 891964326 +692 25 4 876953340 +812 294 5 877625367 +757 156 3 888445551 +361 216 5 879440740 +554 230 5 876369968 +422 670 2 879744143 +637 121 4 882904458 +867 524 5 880078604 +864 173 5 888889129 +455 455 3 879111862 +109 209 1 880572756 +713 345 3 888881939 +758 474 5 881976089 +870 549 2 879270213 +618 443 4 891308665 +782 266 1 891498919 +747 480 5 888639060 +807 485 5 892531977 +187 83 5 879465274 +753 195 1 891401851 +298 526 5 884182573 +336 367 3 877757910 +852 930 3 891037777 +290 235 3 880474451 +761 326 1 876189715 +711 82 3 879994632 +825 870 3 880931932 +465 428 3 883531246 +43 70 4 883955048 +887 1015 5 881377933 +590 116 5 879439196 +844 318 4 877382762 +328 939 4 885046655 +407 675 3 876349153 +877 59 5 882677012 +630 756 4 885667551 +329 302 5 891655191 +661 972 3 876016581 +447 227 2 878856233 +293 218 2 888906168 +248 172 4 884534992 +10 654 5 877886597 +639 1465 2 891239048 +883 69 2 891717356 +881 179 5 876538400 +731 648 4 886183515 +889 1589 5 880177219 +642 944 5 885605987 +833 427 3 878078390 +686 97 2 879546847 +846 46 4 883949199 +313 58 3 891015387 +655 287 3 890497592 +592 1010 5 882608357 +773 2 3 888540146 +838 302 4 887060659 +640 496 4 874777491 +356 312 3 891406317 +846 1133 2 883950711 +727 1 3 883708660 +639 116 3 891239739 +788 228 3 880870365 +854 487 4 882813990 +727 206 3 883711896 +893 426 4 874829733 +402 483 5 876267173 +286 116 5 875806888 +691 631 4 875543025 +311 210 5 884364652 +896 108 3 887159854 +601 259 1 876346515 +858 181 2 879460595 +702 687 1 885767629 +640 47 4 874777735 +279 862 5 875313646 +424 100 5 880859446 +661 230 4 888300344 +605 117 2 879365748 +845 272 3 885409374 +592 890 1 882607745 +852 678 3 891036414 +682 1188 3 888519408 +846 1101 3 883948685 +804 972 3 879445783 +365 309 1 891303566 +606 1055 4 880923690 +790 173 3 885156046 +882 186 5 879879731 +870 1006 2 881001249 +653 657 4 890181185 +882 215 5 879867816 +410 354 3 888626481 +591 79 4 891031171 +193 121 3 889125913 +57 117 4 883697512 +634 222 3 875728913 +308 73 3 887738972 +552 284 3 879222071 +844 69 5 877388182 +790 42 5 885156686 +878 286 4 880865183 +510 322 3 887667752 +595 948 3 886920919 +660 1110 2 891201823 +764 28 4 876245069 +755 311 4 882569771 +248 98 5 884534673 +799 654 5 879254027 +631 334 2 888464941 +846 504 5 883948221 +560 268 4 879975173 +782 1283 2 891499469 +650 568 3 891381709 +868 452 2 877111394 +382 334 5 876802971 +883 53 5 891696999 +449 60 5 880410652 +712 755 4 874957113 +842 268 5 891218059 +835 215 4 891033199 +862 22 5 879304571 +766 496 5 891309767 +592 89 4 882955543 +606 55 4 880926245 +437 415 4 880143591 +386 597 3 877655145 +805 7 5 881694693 +796 173 5 892662483 +764 866 4 876244181 +655 1634 2 888474019 +555 129 4 882385841 +543 367 4 876105366 +848 125 5 887040159 +463 475 3 877385341 +303 128 4 879467542 +466 184 4 890285113 +450 133 5 882373019 +889 196 5 880180612 +666 866 2 880313582 +894 134 4 879897198 +861 86 5 881274630 +91 511 5 891439243 +90 212 4 891384147 +892 87 5 886609263 +541 511 4 883864739 +159 1221 5 884027141 +879 1 4 887761865 +505 102 1 889334526 +666 89 4 880139149 +828 83 3 891036826 +703 596 3 875242912 +479 526 4 879461378 +454 1126 2 888266955 +645 239 3 892055445 +663 682 3 889491891 +734 423 4 891022734 +728 147 4 879443418 +95 195 5 879196231 +234 832 2 892335501 +698 482 2 886367406 +606 963 5 880923925 +768 966 4 883834814 +662 985 4 880571006 +682 249 3 888518722 +582 1014 4 882962247 +889 886 3 880176666 +618 127 5 891307619 +537 448 3 886032001 +479 95 4 879461818 +846 400 1 883950889 +450 620 4 882399818 +504 440 3 887910370 +710 334 2 882063327 +806 162 3 882388557 +802 484 3 875985239 +886 108 5 876033200 +889 73 3 880181663 +194 387 2 879527146 +882 105 3 879863735 +385 98 4 879442189 +450 310 4 887660650 +804 63 4 879445334 +297 210 4 875410100 +896 281 2 887161172 +660 230 3 891199856 +846 1182 2 883950488 +846 837 5 883948495 +429 28 3 882385636 +666 144 3 880314144 +372 674 5 876869512 +249 407 3 879640618 +758 231 3 881979012 +9 201 5 886960055 +804 826 3 879443776 +653 294 2 878853618 +682 274 4 888521740 +896 67 2 887160983 +727 29 3 883712603 +630 687 3 885666301 +717 975 2 884642843 +796 232 3 893048911 +886 273 2 876032274 +493 173 4 884131114 +603 216 4 891957139 +883 882 4 891691388 +886 419 3 876032353 +853 873 3 879365091 +18 22 5 880130640 +365 591 4 891303901 +698 199 2 886367065 +181 884 1 878961847 +244 249 4 880604930 +666 1021 5 880139669 +869 312 2 884490251 +533 120 1 879366160 +678 1115 3 879544815 +896 310 4 887157208 +51 181 5 883498655 +846 739 4 883949459 +506 323 3 875444631 +740 269 4 879523187 +665 12 4 884294286 +551 796 4 892785264 +481 484 4 885828686 +749 197 4 878848044 +878 126 3 880865940 +745 258 5 880122502 +727 435 3 883710687 +870 487 4 879270313 +500 821 2 883876837 +753 504 3 891401457 +388 680 5 886439808 +871 259 3 888192971 +798 283 5 875637963 +892 441 3 886610267 +450 618 4 882373995 +536 423 4 882360601 +332 307 5 888098170 +764 15 4 876242945 +814 443 3 885411132 +897 1 5 879994113 +642 1209 3 885606212 +554 756 3 876231938 +328 915 3 893195665 +594 357 4 874786664 +878 22 2 880866918 +279 373 4 875659844 +706 294 4 880996945 +682 948 2 888516865 +751 485 4 889134483 +399 181 3 882342689 +405 1311 1 885546859 +657 118 1 884240732 +777 521 5 875980235 +796 928 2 893194929 +779 71 4 875999285 +75 1152 1 884050502 +214 357 5 892668130 +848 195 3 887040097 +763 505 4 878919206 +848 99 3 887038397 +724 678 2 883757874 +642 122 2 885606463 +682 25 4 888521564 +405 161 1 885547997 +847 180 2 878939945 +847 183 4 878940332 +370 222 3 879434746 +851 313 4 883148627 +853 879 4 879364955 +419 275 5 879435520 +843 511 3 879447837 +606 173 5 880924859 +734 165 3 891025393 +458 603 4 886397155 +659 98 4 891045943 +825 1016 3 880756077 +663 1051 3 889493118 +711 241 4 879994536 +894 269 3 879896041 +560 476 2 879977124 +655 1296 3 891585242 +844 109 2 877381850 +314 508 3 877886789 +831 250 5 891354931 +293 420 4 888907356 +518 288 3 876822581 +363 429 5 891496077 +820 264 3 887955180 +399 378 3 882348284 +561 675 3 885808904 +383 205 4 891193210 +815 404 4 878695147 +504 939 4 887838869 +537 486 3 886031149 +862 433 4 879304445 +658 7 4 875145879 +271 690 4 885844430 +513 252 5 885063549 +839 220 3 875753029 +705 720 5 883428178 +469 199 4 879524006 +727 239 4 883711449 +393 597 3 887745293 +890 237 3 882575209 +293 571 2 888908041 +679 223 5 884487052 +450 300 4 882216475 +622 482 3 882592178 +788 492 3 880868235 +642 356 4 886132104 +758 273 4 881977714 +664 302 4 876523093 +347 200 4 881654452 +833 597 1 875133458 +826 627 4 885690342 +864 603 4 888888025 +131 744 4 883681384 +653 53 2 880153304 +829 640 3 881707829 +828 213 2 891037865 +717 678 3 884641842 +345 87 5 884991984 +7 546 4 891353444 +690 554 3 881180005 +291 1090 2 875087634 +423 307 3 891394673 +787 324 2 888979605 +328 657 4 885046134 +830 97 4 892502984 +540 628 3 882157148 +75 1048 4 884050705 +13 202 5 882141425 +807 678 3 892527569 +707 212 4 886286792 +862 429 5 879304526 +507 250 5 889966024 +890 181 4 882405808 +823 160 4 878438232 +620 123 3 889987190 +158 217 5 880133095 +693 378 2 883975537 +421 709 4 892241389 +694 511 5 875728048 +271 480 4 885848475 +890 89 4 882403446 +632 385 4 879458649 +547 289 3 891282775 +684 168 4 878761120 +618 109 2 891308615 +14 473 5 876964936 +398 72 3 875719399 +705 623 5 883427778 +823 164 3 878437658 +864 123 4 888890594 +588 82 5 890024829 +696 906 3 886403769 +222 537 4 881060735 +796 1 2 892660251 +846 172 4 883949834 +880 597 3 880167436 +727 926 3 883709438 +577 161 5 880475561 +698 588 4 886367558 +541 404 4 883874646 +853 292 4 879364669 +746 449 1 885075476 +705 89 2 883428083 +890 340 4 882402181 +750 683 1 879445911 +788 474 3 880868599 +790 288 4 884460942 +867 1608 2 880078110 +897 597 5 879993519 +451 330 3 879012721 +707 606 4 886285762 +887 993 5 881378251 +374 572 2 880938255 +839 129 4 875751893 +833 434 3 875038888 +881 141 3 876538889 +463 819 1 889937778 +818 322 2 891870389 +704 175 3 891397712 +626 258 4 878771243 +840 97 3 891205041 +796 183 5 892662441 +524 241 5 884635205 +18 210 5 880131054 +141 409 5 884585274 +621 676 3 880737607 +354 602 3 891217717 +535 699 4 879619000 +710 874 3 882063254 +379 193 4 880524783 +741 423 3 891018339 +758 33 4 881976335 +727 246 4 883708806 +790 231 4 885158057 +764 432 5 876245421 +565 381 2 891037628 +698 648 4 886367100 +249 179 5 879641140 +868 232 1 877109082 +56 50 5 892737154 +881 281 3 876536439 +675 318 5 889489273 +537 272 4 886028446 +889 655 4 880178224 +890 163 3 883010005 +683 22 4 893286550 +586 451 4 884067422 +892 226 3 886610201 +807 73 3 892532030 +606 260 3 887059561 +747 268 5 888638091 +846 238 5 883948377 +398 202 3 875725256 +795 386 3 883254649 +233 127 5 877661364 +641 50 3 879370150 +393 687 3 887742916 +814 675 3 885410957 +655 1214 2 891999461 +793 288 4 875103584 +825 258 4 880932625 +826 232 3 885690713 +535 425 5 879618338 +880 1284 4 880167355 +149 245 3 883512813 +658 86 4 875147873 +887 369 5 881378896 +770 93 5 875971989 +505 471 4 889333392 +831 150 3 891354815 +852 841 4 891037625 +880 879 3 880166529 +749 232 4 878848483 +322 346 3 887313611 +728 285 4 879443446 +554 1012 3 876231839 +684 49 4 878762243 +863 242 4 889289570 +496 150 2 876064230 +862 121 5 879304196 +864 215 4 888888994 +508 208 5 883776748 +747 508 5 888638876 +234 557 1 892335989 +639 582 3 891239739 +617 1021 4 883788730 +758 780 5 882054468 +450 114 5 887660504 +47 301 4 879440333 +880 451 2 880243230 +677 678 4 889399113 +883 709 5 891694431 +442 68 3 883390416 +889 1103 2 880180071 +845 1434 4 885409719 +334 225 3 891545645 +749 96 5 878847498 +731 196 5 886186811 +846 606 4 883948685 +387 430 3 886482882 +7 443 5 891353254 +766 175 3 891309118 +830 523 4 891898661 +701 311 5 891446679 +430 528 4 877226164 +299 93 2 877877775 +70 684 3 884149646 +456 1017 4 881372574 +271 792 4 885849536 +194 657 4 879521328 +537 1005 3 886031752 +805 541 3 882216971 +271 763 3 885847876 +897 472 5 879993620 +374 527 4 883628801 +789 50 5 880332114 +653 179 4 880149927 +731 427 5 886186940 +773 176 4 888539962 +561 70 4 885808673 +561 86 4 885809064 +863 361 5 889289618 +685 299 2 879451540 +887 1 5 881377972 +13 750 5 883670552 +379 644 5 880961648 +85 1070 4 879453809 +399 144 3 882342689 +697 288 2 882621431 +881 112 2 876536978 +632 82 4 879457903 +889 728 3 880181995 +554 204 5 876550610 +373 80 3 877107235 +198 462 3 884209535 +727 167 2 883713419 +676 471 3 892686273 +387 248 4 886481151 +833 1231 4 875132237 +878 212 3 880867987 +623 210 5 891035112 +781 174 5 879634256 +13 817 1 882396914 +171 288 2 891034606 +758 657 5 881975213 +458 129 4 886394667 +374 756 3 882157967 +165 174 4 879525961 +313 654 5 891013681 +648 275 5 882211016 +901 275 3 877130677 +780 187 5 891363904 +727 369 2 883709948 +655 375 2 888984293 +545 98 5 879899861 +823 642 4 878439089 +489 902 4 891448931 +181 847 1 878962550 +894 302 4 879896041 +379 96 5 880741811 +825 515 4 880756076 +846 673 4 883949422 +545 423 4 884134114 +495 665 1 888637169 +43 542 3 883956518 +572 319 4 879449209 +760 1037 5 875668781 +880 1001 2 880167435 +627 100 5 879529702 +751 226 3 889134237 +417 172 3 879647519 +505 127 1 889333711 +780 511 5 891364027 +271 2 1 885849386 +293 175 2 888906244 +629 475 4 880117121 +543 792 4 877550535 +494 121 4 879541429 +13 506 5 882140691 +488 289 1 891293263 +843 672 3 879443297 +886 118 1 876032673 +757 432 3 888467269 +209 1086 4 883417667 +586 83 2 884059196 +509 268 2 883590443 +815 1078 2 878695903 +803 688 1 880055043 +774 774 1 888557883 +369 179 4 889428442 +655 1256 3 887425655 +889 381 4 880180784 +308 185 4 887736925 +212 87 5 879304010 +634 544 3 875729478 +788 809 3 880870401 +545 78 2 884134578 +553 559 3 879949251 +577 1517 3 880475644 +168 458 1 884288058 +896 525 5 887158164 +7 651 5 891350932 +829 855 4 881698934 +23 367 4 874785957 +889 1267 3 880182629 +648 183 5 884368442 +840 495 3 891209322 +399 388 2 882350791 +493 369 2 884130271 +871 241 3 888193385 +682 881 3 888521291 +388 302 5 886438122 +379 331 4 880526281 +660 254 1 891357371 +417 596 3 879646244 +840 285 4 891203203 +896 212 2 887160582 +305 729 3 886324712 +765 522 5 880346951 +746 1 4 885075714 +592 358 1 882607690 +314 283 4 877886483 +65 25 4 879217406 +682 98 4 888520638 +503 277 4 879438580 +892 1219 2 886611079 +716 601 4 879794892 +707 311 4 879439624 +484 274 4 881450085 +385 855 5 882081995 +774 692 1 888556121 +272 234 4 879455143 +585 165 4 891284184 +666 163 3 880567742 +487 222 4 883442018 +892 661 5 886608473 +867 498 4 880078401 +617 859 3 883789590 +723 169 4 880498938 +750 288 4 879445808 +827 690 3 882807503 +429 433 3 882385858 +599 288 4 880950997 +573 180 4 885844091 +665 257 3 884292654 +598 347 3 886710330 +676 890 1 892685900 +416 38 3 886318228 +574 340 1 891279174 +749 746 5 878848764 +716 393 3 879796596 +561 87 3 885809197 +749 322 4 878846422 +405 229 1 885548048 +647 121 4 876534274 +654 215 4 887864587 +410 323 3 888626990 +805 5 4 881695293 +491 284 3 891185330 +371 449 3 880435733 +779 21 5 875996932 +627 471 3 879530463 +283 91 5 879297965 +343 410 3 876403212 +201 468 4 884140927 +773 1240 3 888539256 +713 342 3 888882179 +236 179 1 890118417 +749 237 3 878846782 +545 117 4 879899233 +21 769 1 874951916 +42 941 4 881109060 +13 69 4 884538766 +848 95 5 887041354 +718 1047 3 883349442 +892 432 4 886610996 +870 704 3 879714532 +629 193 5 880117565 +116 603 3 876454174 +746 222 3 885075267 +864 245 4 887686369 +896 136 5 887158768 +875 923 5 876465370 +709 508 4 879846590 +698 172 5 886367100 +813 988 3 883752528 +878 402 4 880869303 +721 77 5 877147200 +493 151 3 884130516 +853 301 1 879364744 +899 208 3 884121857 +901 509 4 877288977 +741 478 5 891456741 +727 79 4 883710806 +782 681 3 891498436 +826 11 4 885690526 +142 147 1 888640356 +221 1098 4 875245283 +833 385 3 875039204 +896 752 1 887161916 +311 1297 4 884365654 +505 742 4 889334162 +291 173 5 874871800 +450 511 5 882372178 +592 333 5 882607476 +316 174 1 880854539 +548 79 5 891044482 +385 59 2 879442490 +666 607 4 880139563 +747 1159 2 888639685 +779 195 5 875999211 +840 79 4 891204135 +622 1408 1 882672922 +715 1215 1 875962762 +365 316 4 891303638 +798 805 4 875743813 +749 510 4 878847404 +657 282 3 884239745 +825 281 3 880756678 +398 178 5 875718614 +503 1475 5 880382768 +764 743 1 876243100 +648 431 5 884882664 +878 71 4 880870130 +705 826 4 883428238 +457 226 3 882548825 +141 407 2 884585523 +846 1239 2 883950634 +774 528 4 888556698 +702 227 4 885767775 +671 226 3 883949693 +380 215 3 885479163 +642 141 4 886568744 +602 1 4 888638547 +798 280 2 875554523 +690 581 2 881180109 +409 435 3 881107310 +766 568 2 891310313 +833 558 4 875039204 +763 144 3 878915722 +286 988 3 875806722 +551 597 4 892784976 +677 14 1 889399265 +875 514 5 876465112 +125 709 3 879454891 +640 346 4 886353742 +13 902 3 891749765 +495 1245 5 888633129 +661 8 5 876016491 +457 378 4 882548312 +848 165 5 887038397 +627 230 4 879531397 +824 292 3 877020927 +833 185 5 875039416 +655 238 3 887473831 +727 127 4 883708830 +428 294 4 885943651 +561 511 4 885807510 +882 559 3 879876806 +719 293 3 883982002 +339 655 4 891033452 +368 127 4 889783678 +579 1110 1 880952516 +288 197 5 889225574 +881 630 4 876539187 +584 431 3 885774702 +777 1079 2 875979431 +886 173 5 876031932 +831 174 5 891354534 +634 288 3 875729178 +844 216 5 877388183 +682 151 5 888523115 +840 531 5 891204089 +18 72 3 880132252 +748 153 4 879454930 +771 1 5 880659449 +782 1251 3 891500028 +22 62 4 878887925 +363 735 3 891496077 +650 214 3 891369587 +90 1136 3 891385899 +889 402 3 880182496 +699 340 4 893140639 +731 705 5 886182632 +506 855 4 874874802 +840 507 4 891208667 +880 802 3 880167918 +533 934 3 879366118 +519 350 5 883250102 +276 501 4 874793035 +699 191 3 878883173 +705 99 3 883427691 +648 1028 2 882212288 +717 280 4 884642738 +711 496 5 879993073 +429 473 3 882387551 +504 517 4 887832782 +618 962 1 891307784 +655 899 2 887433492 +867 295 4 880078069 +753 180 2 891401712 +64 132 4 889737851 +804 511 4 879442792 +715 697 2 875963566 +882 15 5 879862141 +629 132 5 880117395 +727 5 3 883711680 +263 260 2 891297677 +894 845 3 881443365 +823 692 4 878439438 +831 258 2 891354020 +846 578 3 883949200 +287 235 4 875334248 +826 802 4 885690854 +897 214 5 879990923 +493 24 4 884130593 +730 410 1 880310440 +787 750 5 888979075 +44 194 5 878347504 +805 725 3 881705672 +712 729 5 874730491 +405 168 1 885547124 +385 427 4 879441386 +406 672 2 879792897 +506 518 4 874873198 +279 100 4 875249259 +852 515 5 891036414 +577 627 5 880475339 +664 56 4 876525962 +453 4 4 877554490 +843 450 2 879444083 +75 508 4 884050102 +188 194 3 875073329 +429 72 2 882387551 +248 121 2 884536206 +830 313 5 891462165 +62 704 2 879375477 +592 346 4 885280098 +821 106 2 874793196 +891 50 4 891638682 +619 566 4 885954105 +298 199 4 884127690 +788 1277 3 880870583 +391 215 4 877399100 +878 530 5 880872619 +416 614 5 893212572 +664 702 4 876526052 +881 151 2 876536241 +595 222 3 886921274 +881 118 4 876536332 +764 13 2 876242755 +625 1020 3 892000629 +896 686 3 887159146 +145 106 4 875270655 +623 216 4 891034756 +568 479 5 877906995 +899 694 5 884121009 +262 650 4 879792604 +189 433 5 893266326 +738 161 4 875350720 +746 202 5 885075518 +470 1084 3 879178406 +717 307 5 884642133 +903 1132 3 891031949 +533 182 3 879191265 +604 218 3 883668175 +637 1244 1 882904458 +13 690 3 881514811 +848 640 1 887037935 +721 181 5 877138951 +580 348 3 884124382 +670 611 5 877975129 +782 298 4 891499278 +826 228 3 885690600 +758 20 4 881976574 +595 864 4 886922069 +586 54 3 884068393 +493 154 4 884131952 +655 251 3 888984417 +880 1267 4 880242356 +145 222 5 885557660 +846 232 3 883949290 +835 197 5 891033889 +899 209 5 884121173 +804 24 5 879443776 +822 926 2 891040155 +886 208 3 876031764 +212 317 5 879303638 +894 752 3 888280083 +394 771 4 881060366 +277 221 4 879544146 +784 898 4 891387895 +543 423 3 874863035 +621 367 3 874962900 +854 147 3 882812492 +889 81 4 880180849 +808 245 4 883949822 +699 127 3 878881828 +174 1091 3 886515591 +552 280 3 879222002 +565 515 5 891037803 +868 101 4 877109996 +693 79 4 875483330 +806 133 5 882389908 +880 118 3 880167551 +597 118 3 875343067 +606 678 3 877642127 +606 206 4 880927552 +774 826 2 888558623 +230 161 5 880485468 +588 117 4 890027062 +697 833 3 882622228 +776 635 4 892920403 +389 77 2 880088922 +851 132 4 875731370 +896 849 2 887161563 +894 255 3 879896836 +539 275 4 879787917 +805 99 2 881695560 +13 558 1 882397011 +896 744 3 887160040 +110 54 4 886988202 +498 10 5 881960711 +880 1518 2 880242422 +648 1029 2 884882636 +177 1110 3 880131123 +796 222 5 892660364 +804 181 5 879440947 +761 471 3 876190336 +442 410 4 883388508 +805 259 1 879971049 +561 238 4 885807547 +472 1014 4 875978191 +880 4 4 880167843 +886 357 4 876031601 +492 527 5 879969879 +452 815 2 875277472 +882 1015 3 879863457 +402 510 5 876267235 +507 50 5 889965997 +821 763 3 874792491 +379 381 5 885063301 +904 9 4 879735316 +886 3 3 876032330 +303 1182 2 879543459 +397 268 4 889760703 +533 143 4 879438850 +18 59 4 880132501 +833 665 3 875224309 +264 675 4 886122352 +819 303 4 879952508 +795 217 1 883774317 +889 1074 3 880181515 +545 566 4 879899438 +235 82 2 889655403 +456 1198 4 881371595 +378 239 3 880055148 +887 111 5 881378370 +889 576 3 880182541 +520 310 4 885168862 +537 539 1 886029212 +758 109 3 881975687 +587 877 2 892871372 +786 732 4 882843353 +291 249 4 874805893 +546 313 2 885139580 +617 345 1 883788511 +619 808 3 885954053 +401 471 4 891032495 +533 126 4 879192414 +357 456 3 878952265 +815 501 3 878694028 +587 330 3 892871372 +760 172 3 875667294 +823 1135 3 878437836 +883 30 4 891693058 +334 753 4 891545741 +886 7 5 876031330 +514 216 5 875309350 +177 678 3 882142086 +707 194 4 886286246 +774 926 1 888558946 +454 317 4 888267343 +732 305 2 882590201 +837 20 4 875721919 +43 546 4 875975613 +706 471 4 880997172 +758 186 5 881974931 +390 258 5 879693461 +883 194 3 891694218 +112 310 4 884992444 +659 792 4 891384003 +667 216 4 891034894 +500 407 3 883877252 +622 111 4 882591014 +868 403 2 877111837 +907 1057 3 880159151 +846 229 3 883949771 +766 729 3 891310394 +463 1606 2 889936565 +864 124 5 877214158 +487 546 3 883444674 +655 1268 3 892914357 +796 403 4 893048410 +303 866 2 879485277 +731 1503 5 886184578 +577 735 5 880474338 +543 13 3 876896210 +711 829 2 879992018 +568 641 5 877907596 +704 603 5 891397262 +839 950 4 875752408 +840 638 3 891204239 +871 337 3 888192475 +880 578 3 880168411 +870 238 4 875050865 +666 26 3 880568505 +682 393 4 888521711 +653 638 1 878866636 +791 322 4 879448128 +905 333 3 884982806 +774 200 2 888557715 +868 1028 3 877103195 +780 496 4 891364027 +553 611 5 879948386 +764 289 5 876244991 +456 461 4 881373168 +588 1240 5 890025864 +433 276 5 880585843 +697 50 5 882621913 +380 238 3 885479057 +339 222 4 891033512 +487 259 2 883441083 +846 1540 3 883949121 +795 3 2 880561783 +6 170 4 883602574 +6 223 4 883600747 +874 321 3 888632275 +63 259 3 875747047 +907 763 5 880159081 +757 155 2 888469095 +757 101 4 888467309 +833 1071 3 875134150 +904 289 5 879735177 +524 1041 2 884636746 +499 663 5 885599718 +826 101 5 885690442 +454 66 4 888266685 +711 52 5 879993534 +812 748 5 877625368 +406 132 5 879445430 +567 297 3 882426246 +655 1267 2 887427840 +763 73 3 878919180 +435 820 1 884132367 +345 781 3 884993636 +474 434 4 887928562 +798 1283 4 875295695 +896 458 1 887235027 +749 24 2 878849508 +659 490 4 891384215 +570 289 1 881262497 +276 575 2 874792310 +530 196 5 883784601 +862 276 5 879303079 +896 48 4 887158635 +233 435 5 877665324 +197 947 2 891410083 +757 658 2 888467765 +543 174 4 874864666 +801 326 4 890332885 +561 1478 3 885809626 +887 279 5 881378478 +659 88 2 891385955 +897 478 3 879991105 +715 405 3 875962374 +234 204 2 892079617 +727 196 4 883710514 +650 662 3 891371153 +854 535 3 882813364 +881 88 3 876538595 +826 432 3 885690379 +567 109 2 882425673 +792 129 4 877909753 +387 181 4 886479610 +505 1063 3 889334334 +553 275 5 879948552 +854 333 3 882811742 +774 227 5 888557383 +479 66 3 879462103 +317 678 2 891446887 +887 200 1 881380883 +303 21 2 879484004 +234 243 1 891034107 +226 513 3 883889256 +864 1135 3 888890594 +642 560 4 886568978 +850 172 5 883195301 +726 1059 5 889832806 +689 295 1 876676334 +682 135 4 888517484 +846 723 2 883948949 +826 53 5 885690900 +798 862 3 875914534 +830 181 5 891561673 +758 1007 5 880672727 +592 172 5 882956011 +881 642 4 876538027 +761 476 2 876190468 +894 1016 3 879896920 +846 748 3 883946477 +833 403 1 875133458 +751 1101 1 889298379 +322 505 4 887314119 +868 651 5 877103249 +263 199 5 891298914 +537 149 3 886030078 +280 550 2 891701764 +795 153 3 880569085 +387 477 1 886480733 +437 145 1 880143663 +491 319 1 891184567 +611 301 4 891636152 +468 297 4 875280462 +729 288 2 893286261 +871 781 4 888193541 +409 505 5 881107943 +501 411 4 883348564 +188 174 5 875072741 +815 713 4 878692016 +378 89 4 880046363 +627 68 4 879531429 +244 234 3 880606593 +870 52 2 880584400 +406 606 3 879445642 +659 97 5 891384798 +608 603 5 880403537 +666 480 4 880568063 +798 79 4 875638627 +774 161 2 888557409 +459 873 4 879561731 +201 1056 2 884113592 +580 1 3 884125243 +892 73 3 886610523 +553 480 5 879948552 +864 349 4 887686388 +794 1 4 891035864 +468 153 5 875287720 +840 513 5 891204295 +551 570 4 892785264 +715 79 5 875964579 +896 684 4 887158959 +881 282 4 876536773 +506 186 4 874875062 +535 223 5 879618207 +907 619 2 880159038 +630 237 5 885666823 +758 864 4 882053726 +543 515 4 876896210 +655 644 3 887474288 +896 713 2 887159630 +804 143 3 879442490 +795 581 4 883253316 +823 286 5 878437499 +757 570 3 888466683 +759 1 5 875227798 +293 429 4 888906045 +706 742 2 880997324 +181 410 1 878962955 +596 149 3 883539402 +639 549 2 891239427 +561 780 1 885810769 +737 173 4 884314970 +238 1258 1 883576666 +836 659 5 885754096 +108 7 5 879879812 +174 132 2 886439516 +890 172 5 882402905 +468 318 5 875293386 +738 88 3 875351712 +405 755 2 885548877 +255 7 2 883216358 +796 474 2 892663009 +875 171 5 876465370 +648 219 4 884883578 +792 696 3 877910241 +902 258 3 879463109 +821 435 4 874793773 +672 280 2 879787729 +643 42 4 891446750 +735 286 5 876697561 +629 300 4 880115923 +848 1101 5 887046533 +281 271 5 881200457 +500 735 4 883873941 +896 318 4 887158294 +661 219 2 876035968 +699 98 4 878883038 +506 8 5 874873374 +82 125 3 877452380 +855 60 3 879825528 +896 384 2 887160860 +833 552 3 875223976 +559 180 4 891035111 +312 648 5 891699068 +268 186 3 875310311 +588 1074 5 890032056 +344 22 3 884901180 +763 56 5 878919116 +830 202 5 891464148 +648 780 1 884882501 +851 932 3 875730455 +634 322 3 875729217 +645 772 3 892055728 +222 255 3 883815804 +567 679 4 882426055 +533 132 5 879191220 +804 615 5 879442298 +639 528 4 891239239 +738 474 4 875349775 +427 286 4 879700792 +373 197 3 877099352 +537 380 2 886032154 +796 38 5 893048505 +741 403 5 891456083 +859 762 5 885775437 +851 258 4 883148669 +533 88 4 879191902 +628 338 5 880776981 +894 638 3 882404669 +201 733 3 884140522 +417 171 3 879647800 +532 79 5 889235367 +821 318 5 874793368 +637 225 3 882904829 +897 127 5 879990647 +661 538 3 886830056 +294 281 3 889242035 +625 514 3 891262724 +293 235 3 888905146 +880 243 2 892958608 +4 324 5 892002353 +766 662 3 891310281 +595 336 2 886920966 +334 275 4 891544707 +497 590 2 879362461 +750 879 4 879445961 +891 591 4 891639497 +293 100 4 888904734 +841 323 3 889066880 +486 678 1 879874297 +815 393 4 878696473 +414 340 4 884999066 +682 246 5 888518659 +621 395 4 880739654 +617 269 1 883788511 +514 191 5 875318224 +898 288 4 888294529 +187 186 4 879465308 +877 640 2 882677311 +903 100 5 891031203 +901 1049 3 877127021 +503 226 5 879454841 +584 25 3 885778571 +734 318 5 891022648 +788 1273 3 880871771 +388 871 2 886440608 +655 301 2 887424991 +872 932 4 888479498 +692 1012 1 876953553 +765 971 4 880346911 +18 52 5 880130680 +846 540 2 883950711 +895 597 2 879438101 +18 716 5 880131676 +758 185 4 881975182 +507 597 5 889966089 +109 11 4 880572786 +663 183 4 889493770 +397 748 2 889760845 +690 121 3 881179906 +751 538 4 887134672 +271 539 1 885847170 +402 116 3 876267067 +566 736 4 881650690 +270 603 5 876955868 +456 1081 4 881372191 +553 1126 4 879948508 +896 325 1 887157732 +635 237 3 878879257 +603 176 2 891956776 +601 8 3 876348736 +618 65 3 891309720 +85 64 5 879454046 +655 79 5 887429559 +782 338 2 891498676 +705 225 4 883427594 +473 1007 4 878157329 +515 347 3 887658604 +868 176 4 877103248 +524 228 3 884636152 +907 100 5 880158712 +906 100 4 879434846 +682 26 3 888517986 +540 20 4 882157509 +276 531 4 874790801 +645 65 4 892054824 +868 202 3 877104264 +741 281 2 891455792 +497 790 2 879362720 +826 174 5 885690481 +221 578 4 875247023 +601 230 4 876350583 +524 1101 4 884635053 +655 1100 3 887427371 +835 281 4 891032718 +417 732 4 879647825 +222 654 3 878184087 +11 748 1 891902270 +862 11 4 879305172 +889 1134 4 880177219 +500 245 2 883864862 +454 468 3 888267087 +588 1180 2 890032056 +669 133 4 891260779 +442 150 4 883388283 +880 182 5 880167670 +789 294 3 880332275 +896 789 2 887157978 +621 240 4 880738893 +871 275 3 888193384 +899 216 5 884121885 +807 374 3 893083109 +75 988 2 884049820 +697 455 4 882622170 +429 672 2 882387551 +312 143 4 891698893 +769 1028 3 885424186 +453 354 4 888201923 +890 443 4 882404541 +655 171 2 887523641 +642 473 1 886131585 +165 127 4 879525706 +853 323 3 879364883 +374 762 5 880393460 +716 520 4 879794935 +758 452 3 882054468 +314 710 3 877888796 +416 938 3 892439155 +430 148 2 877226047 +707 962 2 886285792 +44 756 3 878346904 +292 150 4 881105135 +49 455 1 888068791 +328 1021 3 885045740 +87 804 3 879877083 +559 195 3 891034647 +21 628 3 874951616 +370 525 4 879434666 +778 180 4 890725725 +193 286 4 889122906 +411 1 4 892845604 +752 327 5 891208451 +655 356 3 887430804 +726 310 4 889828404 +262 369 2 879791160 +864 98 5 888886946 +870 17 4 880584752 +246 227 4 884922475 +493 174 3 884131211 +752 1294 3 891207898 +568 512 1 877907596 +661 172 5 876036358 +747 482 5 888639526 +94 568 3 891721974 +416 1077 1 886317030 +790 17 2 885157399 +845 269 4 885409493 +906 121 4 879435598 +863 1038 1 889289327 +793 250 4 875104031 +882 815 2 879861678 +788 471 3 880869862 +98 988 1 880498668 +144 174 5 888105612 +805 93 5 881704016 +601 455 4 876347148 +409 100 5 881107992 +561 479 4 885807547 +435 655 2 884131799 +458 238 4 886397679 +879 151 3 887761425 +804 558 3 879441627 +872 1 3 888479151 +551 596 5 892784049 +774 431 4 888557329 +778 56 3 891232041 +397 991 1 875063678 +181 108 1 878963343 +782 1588 3 891500067 +104 268 3 888442172 +537 607 4 886030682 +889 382 2 880178248 +178 51 4 882828021 +753 23 2 891401665 +868 474 4 877105882 +634 116 3 875729069 +903 318 5 891032793 +643 679 3 891447747 +200 230 5 884128400 +704 344 4 891397015 +621 161 3 874964447 +640 313 5 888639815 +758 959 3 881978864 +639 381 2 891239581 +407 844 2 884196984 +181 1011 1 878963204 +814 219 4 885411030 +892 127 5 886607878 +437 559 3 880143695 +449 251 3 879958603 +642 679 2 885606986 +7 70 1 891352557 +805 180 3 881698139 +327 180 4 887745774 +586 1249 3 884067058 +263 28 3 891298219 +659 174 4 891384215 +393 333 4 889554171 +165 187 3 879526046 +807 140 3 892530004 +232 589 3 888549790 +896 159 2 887160880 +840 747 4 891209490 +755 881 1 882569732 +802 7 5 875986303 +711 393 4 879994778 +894 288 3 879896141 +251 845 4 886272378 +396 117 4 884646191 +611 324 3 891636399 +113 292 3 875076105 +653 56 5 878853975 +275 181 4 876197615 +548 525 5 891044446 +486 742 2 879874693 +843 831 4 879444977 +479 204 4 879461583 +870 51 2 879714500 +319 301 4 875707721 +748 56 4 879455083 +660 83 3 891199556 +897 227 3 879992190 +526 333 3 885681935 +885 866 3 885713102 +346 188 4 874948252 +733 302 4 879535011 +807 101 4 893080637 +862 184 2 879305097 +887 1136 5 881381071 +642 732 4 885605538 +758 567 4 881978016 +729 748 4 893286638 +840 884 5 891203087 +711 423 3 879993534 +798 825 3 875638178 +904 97 4 879735678 +684 178 4 878760250 +864 294 4 878179381 +521 12 5 884477853 +824 304 3 877020964 +524 1421 5 884637147 +372 164 4 876869446 +882 471 4 879861562 +836 288 1 885753475 +497 432 3 879309993 +751 945 3 889133852 +889 494 3 880181275 +665 472 3 884291242 +537 958 2 886030652 +803 311 5 880054754 +653 4 3 878866755 +661 749 2 889500304 +239 209 5 889179032 +835 179 5 891033819 +870 559 2 879714532 +781 180 4 879633895 +875 133 4 876464967 +668 252 2 881702925 +671 79 2 883546120 +774 233 2 888557383 +407 186 4 876348198 +887 473 4 881378896 +863 258 5 889289122 +608 86 5 880403484 +847 258 5 878774722 +875 268 4 876464755 +757 121 2 888444635 +456 1134 4 881372281 +840 210 3 891204592 +178 781 4 882827716 +854 591 2 882812451 +535 520 4 879618058 +835 237 4 891035310 +498 772 1 881957999 +648 104 1 884367274 +881 98 5 876537612 +742 50 4 881335248 +499 886 4 885598215 +646 332 3 888528870 +881 97 3 876537613 +804 624 2 879445536 +537 963 3 886030805 +60 484 5 883326370 +571 357 4 883355063 +537 640 3 886031211 +632 11 4 879458142 +634 595 4 877017923 +508 210 4 883777125 +336 781 3 877757373 +326 195 4 879875752 +896 186 4 887159069 +456 1240 3 881374332 +690 546 4 881178383 +774 98 4 888557682 +539 603 4 879787985 +469 507 5 879523803 +512 286 5 888578937 +303 432 3 879468274 +831 331 4 891353979 +849 298 5 879695086 +889 56 5 880177857 +654 137 4 887863596 +308 472 2 887739336 +849 588 5 879695680 +833 647 4 875123427 +758 1019 4 881975736 +716 99 5 879796214 +674 222 3 887762839 +880 252 2 880167551 +350 98 4 882347832 +815 188 3 878693906 +883 1045 5 891717462 +452 1013 1 876215773 +900 458 2 877833326 +805 95 3 881695527 +650 603 4 891369836 +694 88 4 875727018 +455 291 3 879109984 +577 405 3 880470282 +450 435 4 882374332 +200 9 4 884126833 +468 427 5 875291722 +666 482 4 880567997 +487 179 3 883528237 +559 587 4 891034095 +898 319 5 888294676 +188 510 3 875071775 +201 1174 5 884140670 +608 262 3 880402368 +334 689 3 891544340 +561 1170 3 885809407 +151 371 4 879542891 +31 306 3 881547814 +416 323 3 876696739 +820 301 2 887955046 +230 431 3 880485254 +406 582 4 879793295 +453 402 3 888207161 +527 1101 4 879456691 +81 928 4 876534214 +334 186 3 891547128 +250 55 5 878091915 +885 432 4 885714820 +882 8 5 879864789 +279 1244 3 875298652 +459 1038 4 879561654 +406 485 3 879445735 +327 174 4 887744513 +899 685 3 884119954 +387 583 4 886483098 +749 576 3 878850533 +756 111 4 874829670 +796 684 5 892676195 +727 411 3 883709905 +766 217 4 891310650 +618 164 3 891309041 +823 423 5 878438780 +701 689 3 891446822 +299 97 4 878192680 +521 89 3 885253266 +537 1445 3 886031576 +864 951 3 888891288 +535 198 4 879618850 +607 707 4 883880027 +262 86 3 879791948 +660 151 5 891198335 +826 588 4 885690342 +268 550 2 875310524 +268 940 2 875743888 +387 435 3 886480483 +900 137 3 877832803 +538 96 4 877109669 +758 421 4 881975814 +711 747 4 879993871 +259 39 4 888720644 +798 321 3 875286981 +592 1067 5 882608698 +840 153 3 891204627 +484 419 4 891195825 +703 25 3 875242683 +472 175 5 875979910 +332 827 4 887938503 +886 1324 2 876032308 +363 393 4 891497925 +379 428 4 880568452 +585 52 3 891284184 +782 260 2 891498079 +868 615 4 877109375 +773 393 2 888539711 +760 204 4 875668105 +659 185 4 891332223 +13 274 3 882399384 +823 159 3 878438484 +379 529 4 891674436 +557 197 5 881179653 +395 100 4 883765155 +664 531 2 876523833 +399 223 3 882343012 +849 27 5 879695469 +524 818 3 884628308 +892 604 5 886608296 +381 1115 4 892697600 +908 56 4 879722642 +831 328 3 891354000 +735 298 4 876698897 +534 748 4 877807429 +889 211 4 880180765 +361 186 3 879440516 +780 657 3 891363723 +345 137 4 884991077 +588 550 3 890026513 +311 726 3 884366035 +684 282 4 875811274 +774 79 2 888557236 +82 112 1 877452357 +828 52 3 891037639 +395 186 5 883764817 +886 17 4 876032596 +868 179 4 877107056 +826 403 4 885690750 +309 286 4 877370383 +811 323 5 886377579 +796 1037 2 893047967 +900 130 1 877833512 +442 436 3 883390048 +378 928 2 880044488 +653 200 4 878866952 +159 866 5 880557539 +758 414 4 881977487 +903 994 3 891031883 +437 253 1 880141796 +884 179 5 876859109 +702 538 4 885767461 +744 657 5 881170575 +454 136 3 881959745 +673 301 3 888787450 +95 419 4 879198547 +717 890 1 884642001 +645 616 3 892054508 +821 234 5 874793574 +613 1315 4 891227338 +644 181 4 889077189 +456 208 4 881374710 +577 663 5 880474612 +881 924 3 876536850 +774 795 1 888555864 +694 673 4 875726926 +655 1041 3 887611537 +464 264 4 878354886 +829 14 2 881712488 +256 322 4 882150152 +796 720 4 893048562 +354 168 5 891218507 +747 287 4 888733182 +682 631 3 888517922 +472 79 5 892790953 +334 529 5 891547445 +417 228 3 879646915 +569 294 2 879793149 +862 479 4 879305351 +850 969 5 883194908 +804 133 3 879445904 +826 56 5 885690525 +610 318 5 888703378 +840 213 4 891205199 +405 1076 2 885549044 +377 258 4 891296356 +663 655 4 889493869 +867 195 5 880078452 +13 511 5 882139863 +180 191 4 877372188 +804 559 3 879445334 +845 1463 1 885409374 +733 282 3 879535814 +558 283 3 879436097 +495 179 5 888632470 +719 79 4 877310859 +800 257 4 887646980 +686 527 3 879547177 +554 289 4 876549656 +727 1303 2 883713737 +429 8 3 882386237 +805 934 1 881705611 +538 318 5 877106768 +624 245 3 879792109 +621 455 4 880738462 +655 709 3 888475039 +876 178 4 879428378 +334 815 3 891545540 +39 339 3 891400609 +181 1171 1 878962773 +493 118 4 884132898 +626 323 1 878771505 +889 568 3 880179785 +311 942 5 884366112 +880 280 2 880243204 +233 168 5 877663302 +379 419 4 880525794 +783 887 5 884326620 +788 519 4 880868235 +916 467 3 880844420 +798 239 4 875814157 +782 539 3 891498865 +823 184 3 878439629 +804 419 3 879444624 +911 357 4 892838954 +663 180 4 889493691 +421 218 4 892241687 +838 111 4 887064357 +813 358 3 883752606 +486 1609 3 879875220 +332 255 4 887938330 +659 1297 2 891387306 +450 748 4 882370410 +617 174 1 883788820 +847 168 4 878939912 +650 427 4 891383424 +642 156 1 886454965 +711 114 5 879992870 +62 171 4 879373659 +634 475 5 877018125 +771 403 4 880659769 +896 82 3 887159068 +821 1 5 874792813 +912 238 4 875966320 +881 81 3 876538666 +505 495 3 889333823 +56 114 4 892683248 +456 433 4 881373120 +883 20 4 891693723 +460 117 3 882912342 +912 1041 4 875966616 +776 196 3 891628773 +870 1041 2 879270213 +566 387 4 881651512 +831 347 3 891354191 +806 433 4 882389523 +18 419 3 880131878 +506 271 4 880198184 +504 717 4 887911730 +887 210 5 881379649 +371 185 3 880435519 +705 215 2 883518871 +782 993 3 891499370 +539 269 5 879787770 +301 128 5 882078228 +716 546 1 879794094 +711 77 3 879994749 +357 150 4 878951615 +847 410 1 878938855 +885 596 4 885714990 +747 631 5 888638957 +908 414 3 879723022 +896 144 4 887158333 +300 687 2 875650042 +880 347 5 892958301 +390 9 5 879694232 +624 1 4 879792581 +479 8 5 879461415 +63 3 2 875748068 +407 216 4 875552401 +629 55 4 880117094 +800 1047 3 887646804 +875 582 5 876465408 +847 176 3 878941398 +312 419 3 891699182 +825 717 4 889021088 +863 294 4 889289327 +294 276 4 877819421 +699 21 3 884152916 +804 323 4 879440765 +890 324 4 882404093 +18 714 4 880130334 +749 160 3 878847461 +894 221 4 885428233 +868 122 3 877113586 +468 529 3 875287686 +398 1041 3 875733660 +412 357 4 879717548 +870 92 4 875679861 +605 405 3 879429706 +102 1052 2 892993983 +894 1142 4 882404137 +862 175 5 879305172 +880 1002 3 880175527 +798 1544 3 875638925 +548 628 2 891415890 +840 203 5 891204627 +825 14 3 880755942 +532 633 5 888635197 +636 813 5 891448297 +456 1020 4 881373506 +532 480 5 893119491 +655 8 3 887477336 +434 476 4 886725076 +434 288 5 886724797 +543 237 4 876896210 +759 121 5 881476858 +828 1597 3 891037813 +320 238 4 884751672 +882 117 4 879861492 +345 1009 2 884991546 +90 171 2 891384476 +839 285 5 875752138 +896 385 4 887160426 +707 517 3 886287079 +821 70 4 874793933 +389 820 3 880089211 +758 569 3 881978460 +664 156 4 876526784 +894 328 4 879896466 +788 38 3 880871359 +908 156 3 879722603 +663 919 3 889492562 +863 1607 2 889288973 +472 375 5 875982680 +682 471 3 888517537 +806 195 3 882388328 +502 288 5 883701866 +789 181 4 880332437 +323 268 4 878738865 +630 496 3 885667854 +472 760 5 892790953 +650 423 3 891372316 +903 182 5 891380461 +487 628 4 883444558 +808 302 5 883949986 +582 235 3 882962803 +280 670 2 891702485 +551 357 5 892777274 +201 48 3 884111485 +815 418 4 878695744 +392 340 5 891037437 +914 724 3 887123464 +466 82 3 890284819 +168 118 4 884288009 +833 183 5 875123026 +723 289 2 880498816 +325 195 2 891478276 +548 310 3 891042474 +741 15 4 891456573 +303 1046 3 879468375 +839 319 1 875751411 +882 86 5 879867568 +152 724 5 884035936 +823 55 4 878438484 +887 1540 5 881380739 +788 222 3 880869945 +514 176 4 875463128 +608 131 4 880406032 +409 357 5 881107410 +334 150 4 891628832 +453 508 4 877552612 +334 846 3 891545318 +741 566 4 891455671 +608 483 4 880404916 +630 640 1 885668276 +393 879 3 887742798 +452 70 5 888492838 +276 508 5 874786467 +72 526 4 880037164 +894 249 3 879896872 +684 100 4 875810574 +844 625 3 877388040 +738 238 4 875349895 +842 269 5 891217834 +345 5 3 884992922 +650 294 3 891369190 +648 89 4 884797033 +881 291 3 876537177 +862 111 5 879302844 +883 16 4 891692713 +177 183 4 880130972 +825 926 4 880756643 +23 195 4 874786993 +795 150 3 883766579 +503 234 5 879454675 +506 233 4 874874109 +823 155 3 878439211 +279 1088 4 877756804 +269 521 4 891448048 +875 474 5 876465188 +769 405 2 885424214 +606 806 5 880923579 +606 234 4 880927179 +416 90 4 876699102 +334 220 3 891545513 +757 62 3 888466758 +751 746 4 889133219 +795 182 4 881530041 +721 938 3 877137359 +725 15 4 876106206 +752 305 4 891207940 +851 123 4 875730379 +885 186 4 885713434 +234 622 2 892335415 +451 1395 1 879012858 +192 1171 2 881368358 +757 122 1 888445218 +295 470 3 879518257 +642 739 5 886568838 +565 1622 4 891037478 +718 118 4 883348912 +852 181 4 891036414 +405 746 1 885547176 +548 742 5 891044596 +693 729 4 875482912 +424 508 3 880859519 +870 789 4 879705466 +560 483 5 879975406 +846 1267 3 883949728 +454 627 2 888267643 +847 39 2 878940531 +897 186 5 879994113 +11 318 5 891904194 +878 275 4 880865469 +561 676 3 885810674 +871 302 5 888192970 +650 186 4 891370998 +666 210 2 880139493 +647 70 3 876776321 +914 111 1 887124121 +638 435 3 876694787 +277 278 1 879543879 +693 222 2 875482524 +59 265 4 888205410 +722 756 3 891281369 +592 1070 5 882956158 +911 588 4 892840837 +11 449 3 891906327 +388 1 5 886436813 +885 70 5 885713585 +864 1119 3 888890548 +648 566 4 884882702 +839 292 3 875751559 +99 1048 4 885679411 +551 281 5 892784320 +504 127 5 887831510 +671 68 3 884035892 +847 234 2 878939645 +184 506 4 889909569 +174 280 5 886433862 +846 22 4 883948222 +621 94 2 874963081 +718 717 4 883349214 +682 890 2 888518564 +46 300 3 883611307 +916 1428 3 880845415 +169 443 4 891359418 +256 229 3 882164644 +548 226 5 891044596 +705 399 5 883427778 +152 596 2 880148941 +148 191 1 877020715 +454 465 3 888267343 +802 760 3 875986303 +716 514 5 879796331 +788 518 3 880869754 +804 378 4 879445605 +869 118 1 884492338 +887 181 5 881378040 +705 195 2 883428083 +493 234 5 884132037 +890 843 3 882916650 +798 259 5 875295566 +876 238 4 879428406 +795 727 3 881530317 +864 176 5 888887289 +846 64 4 883948221 +659 1138 4 891045266 +577 298 4 884819086 +586 930 2 884063080 +525 291 2 881086644 +896 133 2 887159502 +137 118 5 881433179 +478 591 3 889387958 +561 733 3 885809099 +877 955 4 882677936 +877 216 4 882677827 +715 157 4 875963024 +181 598 1 878962623 +659 1172 4 891332122 +757 385 3 888468596 +297 465 3 875238984 +658 212 3 875148059 +897 393 4 879991493 +499 425 3 885599474 +846 482 5 883948173 +194 367 3 879525624 +514 152 4 875318163 +561 1070 4 885809043 +756 210 4 874828902 +441 313 4 891035056 +398 414 3 875721111 +175 88 4 877108146 +468 952 3 875280310 +90 242 4 891382267 +440 749 3 891547746 +587 294 3 892871197 +20 633 4 879668979 +677 687 4 889399113 +782 292 4 891498213 +698 176 4 886366814 +880 831 4 880167411 +847 448 4 878940013 +692 326 3 876948579 +826 946 3 885690342 +385 61 2 879441572 +780 275 4 891363685 +716 480 5 879795025 +365 352 1 891303728 +392 191 5 891039015 +788 133 5 880868473 +378 382 4 880055520 +870 1134 4 879376967 +749 802 3 878850789 +618 924 4 891309040 +498 204 2 881957267 +774 418 2 888558019 +764 99 4 876246687 +537 964 3 886031407 +758 203 5 881978016 +728 742 4 879443321 +889 217 4 880182582 +13 152 5 882141393 +489 349 4 891449155 +757 68 4 888466435 +617 440 4 883789635 +497 364 3 879363233 +808 325 1 883949873 +905 258 3 884982806 +870 504 5 880584497 +479 201 4 879461142 +328 64 4 885046276 +643 33 3 891449417 +906 321 4 879434436 +647 568 4 876533832 +643 516 4 891447037 +733 1023 1 879544411 +622 121 1 882590955 +606 88 4 880926533 +870 272 4 890920916 +457 628 4 882393688 +416 803 3 886319177 +833 186 1 875133458 +452 492 4 875263413 +593 546 3 875659849 +782 324 2 891498381 +26 298 3 891371505 +551 168 5 892777723 +198 291 2 884205219 +878 736 5 880868035 +627 123 3 879530305 +457 566 4 882548583 +892 76 4 886609977 +292 603 5 881105318 +796 1041 5 893047287 +738 181 4 875348856 +393 538 3 887742071 +884 1214 1 876860434 +694 965 4 875727672 +377 895 3 891296307 +804 1047 3 879443852 +101 819 1 877136424 +32 7 4 883717766 +682 380 4 888517510 +805 735 4 881698139 +172 23 3 875537717 +423 127 4 891395394 +659 469 4 891385136 +560 211 4 879975752 +13 662 5 882399420 +773 1367 5 888538643 +896 398 2 887161469 +520 294 3 885170330 +864 7 5 878179608 +840 238 5 891204239 +844 151 4 877381674 +862 199 5 879304761 +234 466 4 892334368 +889 479 4 880177994 +560 617 3 879975661 +892 71 3 886608348 +682 552 3 888520977 +896 222 4 887159109 +593 763 3 875660105 +458 25 1 886394576 +493 257 5 884130495 +798 391 3 875915855 +834 343 4 890860416 +729 901 1 893286491 +742 237 4 881335960 +324 250 4 880575531 +474 491 4 887925187 +663 289 1 889491861 +896 273 5 887157947 +437 583 1 880143040 +232 900 5 888364663 +528 31 5 886101761 +449 288 3 879959082 +803 245 4 880055378 +452 576 2 875563050 +537 100 4 886029692 +373 177 3 877100161 +639 135 4 891239239 +750 305 4 879445877 +234 164 3 892334644 +345 262 5 884901701 +653 89 5 878854100 +828 306 3 891033342 +892 578 4 886609469 +618 136 3 891307931 +339 823 3 891035850 +416 451 5 893212623 +429 972 4 882387757 +101 225 3 877136814 +38 288 5 892428188 +871 947 2 888193177 +144 12 4 888105419 +546 898 4 885141260 +705 148 5 883427134 +222 541 2 878184973 +705 29 5 883428237 +445 460 2 891200624 +480 12 5 891208433 +423 879 3 891394558 +642 1179 3 885606048 +823 180 4 878439008 +533 474 3 879190771 +892 708 4 886607879 +774 947 2 888557276 +795 238 3 881266197 +828 1005 3 891037813 +363 73 2 891497234 +787 271 1 888979721 +733 149 4 879535440 +864 720 3 888891238 +198 31 3 884207897 +746 89 4 885075243 +807 231 4 892530705 +504 451 1 887912584 +586 779 3 884062856 +664 151 4 878091912 +883 529 5 891693012 +846 731 3 883949594 +751 756 2 889299249 +902 318 5 879465522 +804 472 3 879443976 +758 125 2 881977205 +221 150 5 875244557 +556 604 5 882136205 +294 258 3 877818457 +825 491 4 881101782 +54 240 4 880936500 +193 24 2 889125880 +643 185 5 891447157 +850 228 5 883195394 +802 396 2 875985840 +847 479 3 878940405 +831 326 4 891354275 +881 655 4 876539448 +911 168 4 892838676 +736 1278 1 878709262 +561 232 3 885810428 +561 510 3 885808673 +804 406 3 879444133 +825 176 5 881101641 +727 755 2 883712828 +679 721 3 884487611 +395 423 5 883764742 +667 196 5 891034993 +763 16 5 878918332 +719 378 4 879360555 +875 176 4 876465112 +865 122 3 880144539 +907 290 4 880159259 +859 846 5 885775612 +850 15 5 883195256 +38 326 5 892428688 +158 686 5 880134499 +686 430 4 879546786 +860 159 3 889984855 +880 928 2 880167435 +847 367 3 878940189 +143 307 4 888407622 +879 763 5 887761425 +639 52 3 891239838 +28 230 4 881961393 +577 742 4 880470504 +748 89 5 879454831 +786 871 1 882842762 +524 173 4 884637436 +868 151 5 877104879 +682 276 3 888517097 +896 98 5 887158359 +712 969 4 874729850 +314 934 4 877887155 +435 1240 4 884132296 +534 333 5 877807486 +524 98 3 884634615 +527 172 5 879456490 +632 55 2 879457857 +916 271 3 880843185 +916 232 3 880844897 +908 192 2 879722489 +880 8 4 880174677 +798 1183 1 875915190 +399 845 3 882340719 +660 307 3 891197503 +901 287 3 877126935 +893 264 3 874828296 +835 354 3 891032224 +307 222 4 879538922 +660 1483 3 892520856 +744 1 4 881171926 +773 354 2 888538143 +867 210 5 880078547 +540 473 3 882157687 +864 217 4 888891524 +871 883 3 888192475 +727 257 2 883708806 +311 198 3 884364812 +659 62 4 891386380 +660 135 4 891199833 +844 431 4 877387825 +894 273 3 880416220 +840 194 3 891204264 +582 748 3 882960601 +543 944 3 877547863 +457 1119 4 882398308 +702 343 2 885767629 +815 7 4 878691975 +211 1330 3 879460096 +796 280 4 893047208 +423 750 5 891394704 +833 325 4 875035885 +798 405 5 875296148 +125 90 5 892838623 +881 50 3 876535927 +650 15 3 891383594 +828 224 3 891035614 +13 62 5 882397833 +724 336 1 883757784 +194 97 3 879524291 +75 79 5 884051893 +416 690 5 893214127 +576 276 3 887080905 +566 2 5 881650739 +451 681 1 879012773 +141 1028 4 884585168 +871 237 3 888193386 +459 685 3 879563613 +660 41 1 891265453 +717 281 4 884642958 +727 444 2 883712851 +810 304 4 885406558 +798 228 3 875915639 +877 275 4 882677183 +640 761 5 874778613 +702 683 1 885767576 +880 235 3 880166990 +405 568 4 885547910 +25 1 5 885853415 +824 268 4 877020871 +466 50 5 890284819 +899 275 4 884119877 +830 820 1 891899475 +70 451 4 884065678 +85 630 3 879453623 +869 181 3 884490825 +535 529 3 879618655 +727 1244 3 883709859 +768 405 4 883834883 +622 49 3 882671273 +489 303 4 891448109 +198 248 3 884205385 +712 738 4 874956841 +271 692 4 885849582 +181 1329 1 878962240 +615 937 2 879447530 +536 144 4 882359962 +862 413 4 879303952 +793 696 3 875104303 +514 111 5 875463165 +648 25 2 882211760 +808 750 5 883949986 +907 724 5 880159642 +380 190 5 885478668 +681 294 5 885409938 +92 451 3 875660083 +342 289 2 874984067 +796 597 5 892661043 +867 11 3 880078547 +916 100 5 880843288 +13 53 1 882396955 +875 501 4 876465335 +593 133 4 876507391 +840 99 5 891204509 +739 97 5 886959115 +214 482 4 891544114 +298 174 5 884125022 +723 191 3 880499019 +833 451 1 875134016 +654 742 4 887863339 +293 436 3 888906990 +918 488 3 891987846 +757 546 3 888444881 +886 472 3 876033755 +840 509 3 891204564 +663 148 4 889492989 +891 278 4 883489438 +64 87 4 889737851 +806 511 5 882387520 +253 234 4 891628252 +486 280 2 879875249 +698 480 2 886367100 +764 356 4 876430571 +815 436 3 878695241 +840 655 5 891205245 +823 92 5 878438357 +727 510 4 883710717 +563 476 3 880507311 +611 307 4 891636125 +533 489 4 879438961 +833 1597 5 875225193 +648 23 3 882212709 +537 673 3 886031505 +605 471 3 879365748 +269 657 4 891449550 +10 709 4 877888613 +804 1056 4 879442762 +776 192 5 891628836 +774 205 4 888556434 +907 685 5 880158960 +627 2 3 879531352 +312 222 3 891698764 +660 722 1 891265453 +823 216 5 878438584 +617 635 4 883789716 +707 449 2 886288688 +804 948 1 879447476 +537 1006 2 886032245 +429 514 3 882385243 +790 436 4 885156686 +464 322 3 878354680 +864 356 4 888889268 +882 294 4 879860936 +591 285 5 891039565 +892 177 4 886608507 +825 307 4 880755305 +452 526 4 875562645 +569 273 3 879793810 +416 238 4 876699179 +897 928 5 879993621 +435 291 4 884133446 +806 475 4 882385083 +636 275 3 891448229 +830 435 5 891561737 +429 665 2 882387474 +747 30 5 888638913 +222 117 5 877563227 +868 209 4 877103195 +796 181 5 892660177 +318 216 4 884495868 +834 151 4 890862974 +899 231 1 884122844 +342 11 5 874984315 +919 1101 5 875373470 +637 596 2 882903582 +606 187 4 880926861 +535 47 5 879618160 +845 1394 4 885409719 +886 161 5 876033478 +840 297 5 891203334 +846 675 2 883949379 +456 616 3 881373655 +457 469 4 882397208 +416 1221 5 893213103 +622 511 4 882592103 +411 485 4 892845986 +690 1028 4 881177836 +733 619 3 879536488 +919 787 3 875921283 +921 24 3 879380097 +916 366 3 880845658 +738 81 4 875351092 +392 347 4 891037600 +782 1605 2 891500194 +600 771 3 888452564 +453 717 2 888206467 +524 1050 2 884637501 +543 692 4 877547580 +586 550 4 884061459 +397 313 4 889760640 +70 596 3 884148728 +861 275 5 881274612 +846 289 4 883946548 +693 492 3 875484539 +769 284 3 885423927 +884 166 3 876859207 +755 264 2 882570077 +910 182 4 880821696 +447 290 4 878854838 +864 132 5 888887128 +503 736 4 880383174 +6 340 2 883268278 +896 672 2 887161218 +532 1189 5 892521554 +383 496 5 891192888 +886 318 5 876031308 +532 1168 4 888630436 +433 269 5 880585068 +606 294 2 880923349 +200 720 4 884130114 +847 474 4 878941562 +883 752 4 892872163 +908 173 3 879722901 +551 460 3 892784320 +596 895 3 883539049 +326 175 1 879874933 +532 272 5 884594422 +271 188 2 885849087 +758 676 2 881977428 +786 724 4 882844295 +339 121 3 891035454 +903 409 4 891031794 +716 50 5 879793192 +399 769 3 882350813 +197 326 3 891409199 +766 136 3 891310009 +891 280 3 883489646 +76 156 3 882606108 +896 526 4 887159211 +665 411 4 884291242 +567 481 5 882426899 +606 238 4 880927179 +639 923 4 891239702 +337 392 5 875236512 +846 269 5 883946315 +840 170 4 891204713 +296 11 5 884197131 +711 288 1 879991364 +773 547 4 888538643 +853 887 2 879365169 +860 1061 3 879169685 +305 176 4 886323839 +664 715 3 876525718 +913 99 4 881366878 +773 1097 4 888538590 +561 171 5 885807261 +910 1012 4 884229250 +899 154 5 884122420 +500 1166 4 883874139 +670 606 4 877975391 +826 229 4 885690713 +807 404 3 892528427 +72 493 5 880037768 +823 197 5 878437623 +889 498 4 880178748 +749 157 3 878847364 +854 127 4 882813933 +113 874 5 875935338 +734 132 3 891022212 +892 649 5 886608135 +896 356 3 887160427 +840 180 5 891205143 +527 180 5 879456334 +519 1612 5 883250148 +717 125 4 884642339 +749 448 2 878847645 +726 1028 2 889832592 +846 378 4 883948989 +850 663 2 883194768 +846 480 5 883947861 +605 949 5 879427164 +916 1046 2 880845722 +758 1022 5 885698979 +707 303 3 879438988 +542 180 3 886532602 +716 88 4 879796596 +545 627 3 879901504 +655 250 3 887425625 +696 347 1 886403578 +536 489 4 882360451 +603 747 3 891956897 +751 270 4 887134730 +751 89 3 889132966 +832 876 3 888259480 +798 463 3 876175467 +838 187 3 887067019 +6 9 4 883599205 +582 269 4 882960418 +56 161 4 892910890 +514 95 4 875309350 +603 751 4 891956242 +662 1381 5 880571005 +862 24 4 879302990 +634 118 4 875729106 +834 347 4 890860007 +378 458 4 880044697 +194 177 3 879523104 +871 50 5 888193275 +660 430 4 891199747 +106 162 5 881450758 +653 518 2 878866755 +882 476 3 879863735 +790 1446 4 885157230 +195 431 3 877835063 +788 258 4 880867855 +815 969 5 878694306 +90 223 4 891383912 +735 7 3 876698683 +882 692 4 879867631 +554 273 3 876231839 +650 472 3 891381784 +338 180 4 879438505 +332 682 4 889069561 +293 193 3 888905990 +454 202 3 881960201 +903 746 2 891033302 +870 381 3 889409590 +91 69 5 891439057 +875 173 5 876465111 +886 697 1 876033368 +809 286 4 891036809 +712 140 4 874957140 +839 866 2 875752687 +901 78 4 877131738 +817 328 4 874815679 +575 111 1 878148329 +916 470 3 880845476 +871 690 3 888192315 +881 434 2 876538889 +467 1011 2 879532630 +800 597 4 887646555 +562 458 2 879195982 +426 646 3 879444787 +790 559 3 885156773 +512 183 5 888579474 +18 216 4 880129527 +450 727 4 882812635 +705 685 5 883427190 +537 274 2 886030235 +805 25 4 881704193 +587 268 4 892871068 +426 1020 4 879442702 +648 204 5 884368002 +805 396 4 881695396 +692 300 4 876953340 +854 220 4 882813248 +551 159 4 892784743 +883 256 5 891692713 +642 386 5 885605932 +325 737 4 891479846 +766 526 2 891309558 +158 56 5 880134296 +868 167 1 877110191 +767 28 4 891462759 +782 344 3 891497854 +262 66 3 879794338 +787 350 1 888979721 +54 245 4 880929738 +299 384 3 889503774 +682 156 5 888519207 +450 926 4 882470125 +311 76 4 884365140 +16 199 5 877719645 +435 649 3 884133330 +709 217 5 879848168 +846 31 4 883948571 +896 768 2 887160653 +916 160 3 880844511 +553 132 4 879948610 +907 340 2 880158425 +694 660 3 875729270 +537 511 5 886030652 +506 742 5 878044851 +758 496 3 881976031 +782 535 3 891499469 +187 435 4 879465242 +890 153 3 882403345 +901 22 5 877131045 +11 176 3 891905783 +634 9 5 877018125 +299 603 3 877880474 +664 627 1 878090125 +463 304 3 877384881 +560 284 3 879976525 +897 151 5 879993519 +577 237 4 880470323 +854 191 4 882813825 +653 1444 3 880153077 +438 1 4 879868096 +454 222 3 888266785 +532 420 4 888636374 +677 980 2 889399470 +645 212 4 892054857 +655 781 1 887428384 +382 1017 4 875946830 +561 483 4 885807612 +293 161 2 888907081 +627 33 1 879531397 +848 428 5 887047809 +222 99 3 878182059 +764 174 5 876245475 +758 1046 4 881978767 +362 300 5 885019304 +831 749 2 891354225 +907 591 5 880158913 +887 1035 5 881381740 +479 300 2 879459641 +545 328 4 879898301 +201 656 4 884111775 +305 33 3 886325627 +688 304 5 884153606 +798 821 5 875916505 +541 403 3 883865110 +896 123 3 887159748 +916 451 3 880845227 +600 4 4 888451908 +280 380 2 891700226 +94 177 5 885870284 +804 4 4 879442192 +823 186 4 878438672 +826 231 3 885690713 +429 1020 4 882387757 +751 742 3 889132347 +796 809 4 893048471 +857 19 4 883432633 +445 1014 1 891200506 +314 1253 4 877892017 +694 161 4 875727018 +843 142 2 879448604 +747 949 5 888733182 +216 276 4 880232830 +183 144 3 891479783 +699 273 3 878882563 +738 662 4 875350418 +828 190 3 891036826 +834 117 4 890862386 +422 117 2 875129975 +250 151 4 878089677 +749 686 4 878850429 +709 363 3 879848695 +535 507 5 879617856 +618 925 2 891308854 +222 1439 3 878183951 +744 276 4 881171907 +847 202 4 878940255 +739 187 4 886959115 +787 331 3 888979235 +683 311 3 893283049 +807 62 3 892979256 +705 684 3 883428084 +293 217 3 888907955 +561 3 3 885810390 +537 750 3 886028498 +897 419 4 879990430 +823 68 3 878438930 +864 64 5 888887830 +607 275 4 883879756 +426 205 4 879444893 +64 326 3 879365313 +603 180 4 891956946 +616 313 5 891224590 +379 47 5 880740461 +244 845 3 880606634 +763 173 4 878914968 +717 237 5 884642400 +843 252 3 879445114 +854 270 4 882811810 +315 301 2 879799327 +378 118 4 880044879 +299 4 3 889503074 +532 7 5 893119415 +887 768 4 881381471 +766 179 4 891309484 +897 473 3 879993644 +790 496 3 885155172 +910 100 4 880821098 +805 117 3 881694798 +594 242 4 875997093 +417 156 3 879647380 +666 494 4 880314310 +711 16 5 886031006 +860 301 2 880829226 +455 193 4 879111586 +687 895 4 884652331 +919 257 4 875288848 +529 880 4 882535304 +730 276 3 880310390 +627 849 4 879531504 +650 272 4 891381546 +870 181 4 875680119 +756 226 3 874830103 +178 331 4 882823301 +880 237 4 880166798 +912 204 2 875966202 +74 268 3 888333195 +908 55 3 879722334 +629 294 3 880115922 +859 1095 2 885775513 +450 1284 3 887139594 +830 241 4 891464148 +493 338 4 884130032 +825 1028 3 889021037 +854 619 2 882812376 +683 344 3 893284138 +243 10 4 879987526 +314 846 3 877886971 +883 1121 3 891693702 +506 482 5 878044852 +889 273 4 880177016 +880 728 4 880243410 +916 252 2 880843864 +201 182 4 884111485 +542 763 4 886533253 +915 304 3 891030032 +222 258 5 877562748 +330 405 5 876544872 +783 271 5 884326506 +653 973 2 880150348 +816 259 2 891711423 +770 742 4 875972927 +845 1022 2 885409493 +184 317 3 889909426 +889 129 5 880177266 +671 222 1 883546333 +633 498 2 875324922 +758 542 2 881978495 +561 173 4 885807393 +207 763 3 877743609 +407 796 2 876338663 +747 672 4 888734152 +881 77 2 876538627 +637 151 5 882904064 +826 768 3 885690442 +126 990 4 887855231 +804 1041 3 879446037 +908 288 4 879722097 +642 102 5 885603849 +286 734 2 877534618 +590 6 5 879439145 +412 969 3 879716961 +751 2 4 889298116 +502 271 5 883702088 +398 484 4 875659319 +514 144 3 875462520 +908 694 4 879722603 +606 333 5 887059213 +450 749 4 892141807 +524 70 4 884636519 +887 633 5 881380584 +922 161 3 891450401 +890 516 2 882916537 +848 588 3 887043514 +312 178 5 891698553 +796 185 4 893194548 +676 270 4 892685489 +450 284 4 887139517 +864 422 3 888892968 +843 432 2 879447326 +894 244 4 879896985 +497 553 2 879310379 +886 1073 4 876031805 +638 229 1 876695108 +454 402 3 888267419 +773 260 2 888538348 +712 655 5 874730467 +749 404 5 878847673 +877 732 4 882677898 +894 281 3 880416102 +823 282 3 878439364 +905 245 3 884983273 +331 634 3 877196308 +648 926 3 882212400 +435 496 4 884131243 +854 7 4 882812352 +199 813 3 883782807 +258 294 4 885700898 +354 1466 5 891217547 +790 215 2 885157797 +606 108 1 880923349 +892 54 3 886609828 +882 473 3 879862936 +663 508 4 889492503 +342 169 5 875318907 +556 318 5 882136252 +901 8 3 877131307 +918 131 3 891987824 +870 470 3 879901727 +504 307 4 887831273 +201 506 4 884114471 +506 44 4 874874850 +923 410 3 880387908 +354 433 3 891217221 +503 293 4 879438411 +798 1034 2 875638547 +123 185 4 879873120 +653 403 2 880151461 +886 483 4 876031656 +745 151 2 880122948 +31 519 4 881548053 +896 191 4 887158604 +65 111 4 879217375 +724 349 2 883757537 +808 262 5 883949986 +453 226 3 877561214 +537 478 4 886030938 +620 859 4 889987657 +311 380 4 884366067 +405 942 1 885546336 +805 172 4 881694713 +543 2 3 877546306 +914 88 2 887124121 +665 186 4 884293569 +500 831 3 883866004 +427 289 5 879701326 +276 71 4 874792870 +911 435 5 892839993 +44 50 5 878341246 +7 71 5 891352692 +403 257 2 879786112 +378 160 2 880332998 +407 504 3 875043948 +828 958 5 891038262 +174 988 1 886515335 +829 275 4 892312770 +862 978 3 879303591 +425 265 3 878738643 +870 131 4 875050865 +790 1048 4 884462692 +705 94 4 883427857 +727 1034 2 883713692 +498 185 4 881955960 +758 76 3 881977265 +234 749 3 891033772 +407 930 2 876348901 +276 1145 2 874977115 +803 988 1 880055454 +840 8 5 891208958 +95 715 1 880572060 +810 321 5 879895290 +474 616 4 887924028 +246 133 3 884921705 +13 862 3 882399074 +643 1065 4 891448756 +313 481 4 891014000 +798 158 2 875914604 +378 543 4 880055840 +806 12 5 882388204 +901 988 4 877125716 +890 1065 3 882402949 +398 447 2 875658967 +712 585 4 874730234 +592 443 5 882956158 +577 172 4 880472124 +766 177 3 891309844 +315 303 4 879799302 +256 986 5 882164059 +913 58 5 880759221 +216 508 4 881432564 +94 172 4 885870175 +534 1054 5 877807973 +868 423 2 877107373 +861 736 4 881274672 +790 977 1 885158208 +880 363 4 880167200 +902 295 2 879465128 +751 490 4 889133429 +883 1 3 891914583 +727 157 3 883711965 +250 91 5 878091965 +833 384 3 875134724 +380 151 4 885478759 +198 230 3 884209073 +831 298 5 891355004 +881 385 4 876538666 +805 385 1 881694693 +922 143 4 891449021 +733 985 3 879535909 +263 662 4 891299324 +889 7 3 880177219 +18 48 4 880130515 +485 311 3 891040423 +928 8 5 880936905 +650 566 3 891369890 +840 405 4 891203585 +902 327 3 879463373 +682 22 5 888519725 +537 305 4 886028498 +326 521 2 879875399 +757 343 3 888443555 +624 300 4 879792132 +798 1539 2 876177839 +823 172 5 878437589 +333 520 4 891045117 +894 740 4 880416253 +653 28 4 878866814 +567 271 4 882426327 +892 230 4 886609793 +778 11 5 890725951 +374 203 3 880937735 +703 118 5 875242852 +864 511 4 888886846 +593 25 3 875659826 +764 274 3 876243410 +624 763 3 879792671 +620 164 5 889987586 +747 1098 4 888640437 +405 571 5 885547605 +450 318 5 882373531 +912 172 3 875966027 +187 300 4 879464783 +343 203 5 876406764 +450 968 4 882395537 +697 323 4 882621621 +851 974 2 875730979 +817 840 2 874816007 +782 1191 3 891498558 +308 410 4 887741329 +748 186 5 879454498 +861 1148 3 881274913 +857 475 5 883432663 +521 324 2 886059923 +557 292 4 880485019 +654 114 5 887864532 +746 127 2 885075243 +914 197 4 887122028 +291 96 4 874835062 +627 197 5 879529730 +311 417 3 884366035 +870 499 4 879713935 +447 294 4 878855082 +682 433 3 888521540 +749 211 5 878847887 +373 856 3 877105809 +913 357 5 880824372 +682 685 3 888522541 +620 63 5 889988232 +894 285 4 880416136 +465 281 2 883532120 +615 357 5 879448399 +839 286 4 875751411 +705 222 5 883427318 +892 89 5 886608714 +887 84 4 881381114 +313 222 3 891017708 +875 651 5 876466687 +795 826 3 880560736 +746 685 3 885075304 +883 1019 5 891695570 +863 305 4 889289122 +303 679 2 879484534 +886 98 4 876032352 +456 697 4 881374390 +650 578 3 891381661 +775 327 5 891032956 +787 938 3 888979605 +301 402 2 882076915 +592 60 4 882955460 +880 546 3 880167410 +840 474 5 891204089 +705 95 4 883427640 +864 1210 2 888892667 +903 203 4 891032911 +458 460 4 886394916 +272 133 1 879455143 +393 1039 3 887745973 +757 939 4 888467498 +805 45 4 881697128 +727 570 2 883713194 +456 395 2 881375542 +467 258 2 879532164 +125 243 2 892836123 +7 602 3 891352594 +775 312 3 891032866 +188 684 3 875073477 +519 903 5 883248595 +927 222 5 879177177 +561 455 3 885808766 +197 311 4 891409070 +280 142 4 891701747 +318 121 1 884495052 +671 234 4 883546890 +864 483 5 888886913 +189 498 5 893265773 +752 346 4 891207983 +922 210 3 891450368 +682 55 4 888520705 +303 1337 1 879485770 +343 215 5 876405943 +715 24 3 875962374 +659 175 5 891386829 +916 229 3 880845328 +437 425 4 880141374 +381 159 3 892696674 +778 268 2 890803859 +896 597 4 887159854 +859 1061 4 885776056 +449 14 3 879958603 +751 417 2 889297615 +394 405 3 880889010 +921 1060 2 879379942 +790 552 2 885157984 +867 68 4 880079020 +721 1039 5 877140780 +545 80 3 879900654 +561 268 3 885806710 +176 293 5 886048040 +487 392 4 883529363 +892 63 4 886610480 +882 526 4 879864642 +788 318 5 880868355 +889 462 5 880180707 +831 50 5 891354900 +843 429 4 879446503 +847 645 3 878940132 +514 1039 5 875318163 +334 29 2 891549751 +395 1028 2 886481149 +832 294 4 888259121 +655 193 3 887427307 +417 90 3 879649107 +782 1417 2 891500193 +790 188 4 885157399 +748 451 1 879455186 +844 258 4 877381147 +416 15 4 876697017 +843 800 4 879443482 +591 13 4 891039637 +568 135 4 877907782 +922 371 3 891448348 +867 650 5 880078818 +488 234 4 891293911 +733 127 3 879535265 +630 193 3 885667939 +285 258 2 890595408 +321 491 3 879440746 +167 554 1 892738237 +554 770 1 876369382 +620 760 3 889987073 +833 730 4 875038888 +653 117 4 878854810 +927 138 4 879198655 +450 501 4 882371416 +267 1028 3 878971143 +831 300 3 891354191 +805 412 3 881705592 +838 275 5 887064193 +454 48 4 881960114 +846 451 4 883949379 +881 38 3 876538763 +694 187 4 875727582 +537 789 2 886030805 +568 661 4 877907126 +311 699 4 884365075 +90 505 5 891383687 +693 313 5 885703726 +92 228 4 875653867 +757 751 3 888443398 +857 348 1 883432170 +210 222 4 887737603 +708 9 1 877325135 +487 156 4 883446027 +682 657 4 888520638 +724 301 4 883757670 +179 682 5 892151459 +450 307 5 882216475 +804 226 4 879445372 +686 317 5 879546553 +727 526 4 883711113 +712 173 5 874729901 +924 96 4 886760020 +875 4 3 876466687 +851 682 1 890804746 +588 570 4 890032281 +552 873 3 879220688 +3 347 5 889237455 +625 212 3 891968320 +699 322 3 879382698 +923 333 5 880386897 +655 766 3 891585450 +385 182 5 880870205 +796 826 2 893049362 +130 347 4 884623800 +279 1030 4 875659761 +249 603 5 879640935 +464 307 5 878354859 +265 676 2 875320487 +682 231 1 888522612 +699 116 4 887503290 +878 416 5 880870854 +593 744 3 886193049 +886 636 3 876032473 +721 306 3 877137285 +761 864 4 876190336 +855 1021 3 879825578 +705 143 3 883427663 +889 782 2 880182784 +892 173 5 886607778 +360 520 4 880355448 +806 95 5 882388658 +905 328 3 884983034 +721 260 3 877137109 +504 633 3 887912542 +866 300 1 891220881 +423 293 4 891395547 +537 647 4 886030891 +899 751 4 884120724 +655 1193 3 887477360 +655 28 3 887427210 +929 89 5 879640126 +896 546 2 887160938 +445 1051 1 891200390 +650 185 3 891369836 +805 55 5 881694693 +886 129 5 876033015 +823 95 4 878439257 +788 409 3 880871057 +747 56 5 888639526 +109 25 4 880571741 +846 135 4 883947694 +807 451 5 892530112 +924 117 2 887421305 +456 824 3 881372256 +6 261 3 883268522 +847 144 4 878940189 +508 179 4 883767465 +923 827 3 880387997 +919 243 3 875288418 +842 270 5 891218251 +896 562 2 887161448 +92 702 3 875656054 +497 629 2 878759862 +880 233 4 880167918 +848 490 5 887043514 +847 485 3 878941539 +537 277 2 886029973 +885 239 3 885713609 +900 589 5 877833631 +642 651 4 885602571 +205 748 4 888284710 +758 603 5 881976262 +828 340 5 891033756 +838 206 4 887067020 +442 222 3 883391221 +897 202 2 879990683 +409 1392 1 881105367 +676 193 5 892686606 +640 189 5 874778181 +860 153 4 885990965 +852 7 3 891036485 +796 1285 4 893188622 +790 776 3 885155119 +913 301 1 880753802 +521 226 4 884478721 +698 486 4 886366815 +928 98 5 880936884 +919 690 3 885059658 +91 418 2 891439503 +844 326 3 877381268 +246 616 5 884922475 +602 237 4 888638547 +169 538 4 891268653 +540 9 5 882156965 +922 215 3 891453653 +405 381 1 885547222 +743 292 3 881277267 +870 520 5 875050559 +731 434 1 886186811 +854 200 5 882814121 +862 603 5 879304445 +553 45 4 879948732 +658 100 4 875145493 +429 99 3 882386601 +575 963 1 878148199 +374 684 5 880937692 +534 1052 4 877808300 +896 685 3 887160465 +854 125 3 882813099 +885 65 2 885714336 +177 307 4 882141842 +798 1425 4 875915317 +804 200 3 879445493 +748 200 3 879454522 +286 1079 3 876522240 +833 504 4 875038671 +896 452 3 887161564 +712 560 3 874730261 +931 50 3 891036715 +916 781 3 880845451 +881 478 4 876537612 +823 153 4 878438856 +875 96 4 876465144 +391 50 4 877399588 +817 363 3 874816007 +751 1446 2 889298694 +886 62 3 876033265 +355 1175 5 879486421 +7 463 4 891353192 +867 228 5 880078958 +642 2 4 885606787 +822 408 5 891037291 +738 697 2 875353869 +839 696 2 875752479 +924 174 5 885458009 +864 276 5 878179411 +701 303 4 891446618 +874 340 3 888632194 +786 204 4 882843925 +488 751 3 891292771 +312 97 5 891698391 +292 169 5 881105625 +572 9 5 879449610 +507 538 4 889964239 +707 953 4 886288015 +642 801 3 885605794 +650 483 5 891372315 +903 708 4 891033808 +428 303 3 892572308 +887 692 5 881380654 +758 234 4 881974823 +846 528 5 883948417 +189 486 5 893266105 +758 533 4 882055948 +130 471 2 874953928 +803 338 2 880055454 +655 642 3 887430714 +682 153 3 888521465 +151 277 4 879524642 +840 165 5 891204239 +397 665 3 885349348 +543 700 2 874865923 +872 111 4 888479151 +330 318 5 876546377 +904 694 3 879735551 +87 49 5 879876564 +889 1419 2 880182924 +887 99 5 881380539 +99 310 3 885678348 +759 117 5 881476781 +98 211 4 880498797 +790 66 3 885156560 +645 243 1 892052232 +561 4 3 885809044 +746 684 4 885075337 +887 826 1 881379239 +618 699 3 891309410 +826 391 4 885690854 +861 547 4 881274857 +781 258 2 879633862 +883 64 4 891717988 +913 92 4 881725846 +917 25 4 882911390 +119 924 4 874775535 +927 501 4 879190422 +886 238 3 876031459 +190 328 3 891033305 +25 408 5 885852920 +924 1400 4 886327641 +790 96 3 885155648 +174 648 5 886513648 +22 250 5 878888251 +801 294 5 890332748 +826 343 5 885690046 +751 300 2 887134622 +621 501 3 874965299 +524 1074 2 884637128 +595 14 5 886921223 +733 546 1 879544466 +711 213 5 879994390 +711 69 3 879993194 +864 623 3 888889035 +858 289 3 879459337 +453 453 2 888206768 +870 554 2 879714800 +655 214 3 887650851 +374 288 4 885107876 +402 748 3 876266860 +854 537 3 882813797 +12 328 4 879958742 +747 651 5 888640862 +619 827 3 885953878 +497 4 3 879310825 +660 472 2 891198421 +244 1028 3 880604830 +899 660 4 884122564 +574 344 5 891278962 +727 88 5 883711394 +892 191 5 886607879 +889 302 4 880176518 +346 233 4 874948889 +295 52 5 879966498 +455 449 4 879112582 +267 293 4 878970785 +894 847 4 879897122 +790 781 4 885157107 +843 959 2 879447523 +838 271 4 887060972 +738 176 5 892844079 +844 778 4 877387195 +122 239 4 879270741 +882 237 5 879862327 +896 141 3 887159012 +864 56 5 888887097 +885 95 4 885714933 +285 300 4 890595584 +660 90 2 891201346 +707 174 2 886286133 +94 627 3 891722678 +916 1335 4 880843798 +679 28 5 884486732 +675 900 4 889488624 +637 7 1 882903044 +862 201 3 879304326 +893 117 4 874828772 +846 50 5 883948003 +25 419 4 885852218 +463 25 3 877385664 +655 939 3 887473905 +354 610 4 891217429 +582 597 3 882962267 +927 294 5 879199250 +845 900 3 885409719 +711 135 4 879992445 +900 280 2 877833364 +481 252 4 885828016 +711 1163 4 879991347 +721 107 4 877140780 +850 174 5 883195419 +782 1256 2 891500230 +657 9 4 884239123 +776 675 3 892920321 +650 215 2 891371152 +455 269 4 878585250 +701 690 4 891446520 +535 963 5 879617977 +556 172 5 882136441 +862 919 4 879303409 +840 56 5 891204239 +896 227 4 887161728 +903 204 3 891033335 +647 1047 4 876534275 +391 125 3 877399894 +417 1057 2 880949763 +679 154 4 884486658 +822 1240 3 891036703 +694 1028 3 875728581 +595 258 4 886920602 +889 186 5 880181563 +707 660 5 886287107 +637 25 4 882904537 +504 418 3 887832391 +820 343 4 887955241 +545 77 3 884134704 +230 117 5 880484320 +57 845 4 883697253 +486 741 3 879875221 +715 470 4 875963538 +293 1135 3 888907575 +618 54 3 891309319 +711 169 5 879992929 +915 288 2 891031450 +750 245 3 879446215 +694 648 5 875728639 +916 244 4 880843401 +683 906 4 893286261 +342 293 4 874984619 +648 14 2 882211223 +896 200 4 887158768 +818 887 4 891870590 +889 386 3 880182207 +652 294 2 882566890 +524 466 4 884636583 +919 259 4 875288362 +673 258 2 888786969 +891 934 3 883489806 +932 135 5 891249538 +738 455 4 875350551 +820 316 3 887955204 +437 721 2 880141335 +128 496 5 879967225 +425 546 3 878738548 +635 117 2 878879284 +23 56 4 874785233 +711 313 4 889910848 +651 294 1 879348880 +116 343 2 881246552 +639 792 2 891240752 +880 692 3 880174652 +47 307 4 879439112 +932 7 4 891250109 +751 737 4 889298945 +909 286 4 891919160 +932 435 4 891249821 +908 98 5 879722300 +493 1016 4 884130550 +796 211 3 893048115 +776 816 2 892920423 +694 498 5 875726618 +172 642 4 875538028 +800 125 3 887646608 +416 447 4 876699027 +843 96 3 879444711 +883 715 5 891694311 +807 657 4 892529573 +889 175 4 880180101 +805 546 2 881703473 +358 45 3 891269464 +932 285 4 891250392 +771 294 4 886640547 +886 172 5 876031527 +682 762 3 888521637 +836 419 2 885753979 +499 257 5 885598342 +889 678 3 880177352 +562 153 4 879195954 +608 70 4 880406552 +921 8 3 884673699 +610 8 4 888702902 +321 19 4 879438825 +682 5 3 888520799 +279 1494 1 889232401 +896 1672 2 887159554 +752 351 3 891207898 +759 742 5 875227798 +527 185 5 879455680 +862 737 4 879305386 +102 229 3 888801623 +620 1036 4 889988258 +709 203 4 879849372 +416 151 3 876697105 +880 1000 3 880175128 +659 167 3 891385438 +877 300 3 882676366 +774 405 1 888558539 +346 68 3 874951062 +592 467 5 882955582 +764 70 4 876244559 +566 386 1 881651375 +826 435 4 885690677 +786 708 4 882844171 +326 550 5 879876505 +660 134 4 891199153 +551 69 4 892776982 +630 325 3 885666301 +703 993 4 875242787 +913 260 1 881037229 +922 1035 3 891449552 +223 71 5 891550649 +916 523 3 880844511 +921 1 3 879379601 +506 95 5 874873198 +823 188 5 878438672 +709 173 4 879846169 +112 313 5 884992444 +896 367 4 887160227 +790 181 4 884461283 +896 549 2 887160209 +450 713 3 882395778 +455 121 4 878585685 +291 742 3 874805927 +435 265 3 884131996 +887 1278 2 881378087 +880 65 4 880241977 +629 23 5 880117001 +932 105 2 891252338 +922 89 5 891450368 +198 181 4 884205050 +527 492 3 879456405 +846 1148 3 883950220 +417 322 3 886186468 +541 405 3 883871695 +773 382 3 888538829 +916 170 4 880844612 +497 90 4 879310445 +835 1673 3 891034023 +393 785 3 889729749 +601 141 4 876350443 +846 507 3 883947861 +848 530 5 887043040 +629 174 5 880116847 +870 209 4 875680546 +679 153 2 884486904 +880 69 4 880175646 +868 121 2 877111542 +206 1175 1 888180049 +932 1204 5 891249821 +790 762 5 884462105 +487 783 4 884045361 +757 746 3 888468435 +64 79 4 889737943 +811 892 4 886377530 +643 219 5 891449614 +833 636 3 879818659 +338 497 3 879438165 +762 173 5 878719533 +29 1019 4 882821989 +566 443 4 881649505 +626 272 5 887772871 +442 859 3 883390169 +868 188 3 877103320 +806 28 3 882388286 +632 132 5 879459738 +116 249 2 876452705 +716 387 4 879797391 +587 918 3 892871113 +110 238 3 886989340 +13 38 3 882397974 +854 604 4 882813601 +833 72 2 875134724 +218 603 4 881288234 +421 197 3 892241491 +463 1284 4 877385381 +889 520 4 880179756 +316 275 5 880853810 +671 802 3 884036411 +795 1555 3 883249643 +311 231 4 884365746 +922 72 4 891452470 +661 1035 3 876017717 +802 657 4 875985239 +445 433 2 890987617 +757 809 4 888466758 +783 258 4 884326348 +201 441 1 884112537 +399 468 3 882344134 +508 232 3 883777109 +846 486 5 883948948 +610 9 3 888702961 +666 647 5 880139439 +595 3 4 886922069 +13 211 4 882140002 +788 614 4 880868803 +774 53 4 888557383 +716 180 3 879794815 +864 794 3 888889268 +256 409 4 882163654 +871 751 4 888192744 +43 208 5 883955547 +707 297 3 880060261 +804 981 3 879444077 +661 140 3 876013552 +128 702 3 879967879 +755 271 1 882570023 +380 272 4 885477742 +232 508 1 880062447 +913 1112 1 882044453 +868 96 2 877107056 +606 684 3 880925579 +445 1047 1 891200656 +522 521 5 876961190 +397 186 5 885349955 +833 1154 4 875039101 +804 984 4 879440727 +796 112 4 893219477 +881 196 3 876538185 +682 258 3 888516814 +747 887 5 888638335 +880 1276 3 880167384 +712 196 4 874730396 +863 349 1 889289457 +772 310 4 889028363 +589 879 4 883352654 +790 41 3 885158235 +774 684 1 888557329 +908 701 4 879722780 +752 345 1 891207898 +862 820 4 879303774 +795 576 2 883254780 +522 48 4 876961020 +301 409 4 882075242 +66 284 3 883601812 +846 1473 5 883949335 +782 900 3 891497963 +833 144 4 887158945 +648 637 2 884883424 +623 186 3 891034814 +896 76 3 887158359 +847 732 4 878940510 +846 71 4 883948141 +663 748 2 889492019 +719 240 1 879372631 +795 204 3 880570209 +455 213 4 879111453 +780 79 4 891363860 +416 232 5 893213549 +846 393 3 883949547 +144 223 4 888105197 +472 660 5 875982096 +887 710 5 881380709 +766 396 2 891310934 +664 159 3 876526739 +262 92 3 879794205 +894 332 3 879896233 +758 462 4 881975687 +653 1135 2 880152759 +158 518 4 880134398 +305 474 5 886322838 +870 781 3 881001249 +896 414 3 887159145 +881 103 1 876536745 +711 542 1 879995754 +918 1065 4 891988002 +881 127 4 876536079 +807 415 3 893082702 +703 1197 3 875242762 +903 254 2 891032101 +757 11 4 888466583 +916 1135 3 880845556 +321 493 4 879441110 +806 155 3 882390164 +880 1030 2 880243147 +397 652 3 885350326 +705 210 5 883427988 +444 306 5 890246907 +178 511 5 882827532 +846 552 4 883950634 +328 1401 2 885046537 +256 841 2 882163857 +468 50 5 875280352 +622 280 3 882590534 +234 629 4 892335042 +868 225 1 877111453 +642 783 4 885606024 +306 258 2 876503793 +870 591 2 879270212 +145 590 1 882182802 +725 181 4 876106206 +843 99 2 879448751 +496 961 2 876070655 +807 739 4 892684321 +886 813 4 876032029 +181 508 3 878962623 +216 1 4 880232615 +466 17 5 890284766 +643 481 4 891447127 +919 19 4 875288681 +749 185 4 878847740 +749 89 4 878848098 +839 326 4 875751519 +406 491 4 884631010 +782 335 2 891498918 +463 237 4 877385237 +707 220 2 880060549 +554 4 2 876369560 +554 531 4 876549731 +796 321 2 892611871 +521 87 3 884478314 +450 188 3 882395778 +932 504 4 891250236 +552 1278 3 879222452 +864 476 2 888892917 +497 62 4 879310913 +846 719 2 883949643 +328 159 3 885047194 +872 237 4 888479275 +761 426 1 876190510 +707 1174 5 880059749 +774 519 5 888556434 +201 366 2 884141015 +763 61 5 878915628 +889 515 5 880176807 +624 455 3 879793358 +226 286 4 883888600 +887 235 3 881378537 +733 405 2 879536659 +553 181 4 879948695 +551 636 5 892784130 +756 123 2 874830344 +616 289 4 891224840 +833 933 4 875035914 +144 126 4 888104150 +716 614 4 879795159 +881 943 4 876537404 +704 611 3 891397764 +919 253 3 875288748 +853 271 3 879364668 +896 423 3 887159172 +853 328 3 879364744 +474 188 5 887926437 +82 50 5 876311146 +786 66 4 882843607 +506 517 2 874874585 +846 72 4 883950129 +1 55 5 875072688 +716 792 4 879796010 +416 353 2 886314834 +928 187 5 880936884 +913 8 2 880825916 +345 628 3 884991105 +541 66 4 883865929 +145 310 4 883840666 +804 240 4 879443958 +605 269 4 879365101 +514 511 3 886189990 +828 895 2 891035437 +575 79 5 878148199 +71 286 4 877319080 +272 194 5 879455043 +908 204 4 879722427 +915 310 3 891029965 +746 172 5 885075165 +897 194 5 879991403 +877 402 3 882677997 +897 568 5 879992216 +491 127 3 891185129 +535 517 4 879617977 +896 436 3 887159692 +878 82 3 880870609 +537 129 3 886029889 +894 582 4 882404485 +328 69 4 885045844 +790 940 3 885157928 +916 866 3 880843798 +567 89 5 882425820 +749 628 4 878846903 +716 493 5 879795949 +837 276 1 875721843 +864 140 3 888892016 +724 876 1 883757784 +886 67 4 876033228 +745 205 2 880123205 +758 1016 4 880672855 +868 427 4 877103679 +625 408 4 891997054 +804 929 3 879444092 +181 1187 1 878962816 +834 150 5 890862564 +247 121 4 893081396 +693 1248 3 875483597 +924 6 4 886759441 +682 268 5 888518279 +708 926 3 877325523 +119 299 4 890626446 +11 121 3 891902745 +630 550 3 885667968 +505 313 5 889332743 +886 824 4 876033413 +798 722 3 875914534 +868 501 3 877103449 +361 28 3 879441417 +287 168 5 875335190 +667 86 5 891034894 +587 334 3 892871171 +716 622 3 879797152 +262 132 3 879792604 +447 13 5 878854630 +887 206 5 881381471 +739 301 5 886825529 +59 525 3 888204758 +655 9 3 891585450 +594 15 4 874783052 +896 132 3 887158579 +881 739 4 876539091 +334 307 3 891544135 +889 1079 2 880177647 +934 50 5 891189363 +756 473 3 874829296 +892 500 5 886609622 +881 401 1 876539260 +592 747 4 882956102 +870 462 4 875679860 +843 679 4 879444851 +899 230 4 884122472 +138 1 4 879023031 +934 423 3 891191660 +863 332 4 889288943 +228 286 5 889387172 +178 684 5 882827019 +649 254 4 891440695 +848 154 5 887038634 +846 746 3 883949254 +782 1382 3 891500109 +815 127 3 878691739 +889 399 3 880182359 +565 971 5 891037862 +10 482 4 877889262 +61 751 3 891206274 +792 13 4 877910822 +698 1021 1 886367615 +871 335 3 888192475 +655 204 3 887477192 +674 742 5 887762714 +68 276 5 876973884 +721 65 1 877140221 +788 227 3 880867890 +606 585 4 880927358 +806 1074 3 882390515 +334 129 4 891544735 +828 270 5 891034148 +864 216 4 888886882 +462 261 2 886365773 +933 1017 3 874854953 +880 579 3 880243882 +704 661 4 891397667 +913 12 4 881366897 +911 185 5 892841255 +918 1200 4 891988276 +655 1479 2 887475032 +889 771 2 880182961 +312 223 5 891698485 +788 85 1 880869984 +457 1029 3 882551135 +694 663 4 875727926 +804 212 3 879445933 +807 21 4 892823188 +830 230 3 891561806 +360 69 3 880355994 +919 322 3 875288253 +868 210 5 877103248 +886 27 2 876031829 +154 200 5 879138832 +825 413 3 889020940 +536 568 4 882360209 +854 3 1 882813047 +519 1295 5 883248595 +653 168 3 890181186 +707 1101 4 880061652 +72 188 4 880037203 +886 182 4 876031932 +458 499 4 886397450 +327 537 4 887744023 +458 1226 2 886396910 +759 257 4 881476824 +525 269 5 881087067 +587 264 4 892871400 +665 660 4 884294935 +903 181 4 891031309 +59 182 5 888204877 +663 192 4 889493628 +62 1028 1 879373215 +380 845 4 885479706 +7 586 3 891354639 +807 820 3 892532068 +892 102 3 886610078 +796 402 5 893047320 +796 132 4 892662222 +911 174 4 892838577 +437 221 5 880140154 +935 476 4 884472465 +602 538 4 888638048 +813 901 1 883752708 +643 673 4 891448095 +7 96 5 891351383 +363 549 4 891496225 +370 302 5 879434182 +664 215 4 876525293 +537 837 3 886031211 +854 176 3 882813877 +798 560 3 875638972 +693 855 2 883975636 +889 1072 3 880182444 +38 294 5 892428584 +194 518 4 879524291 +655 1514 2 887472879 +896 215 5 887158959 +711 318 5 879992968 +690 1041 3 881177804 +194 1107 3 879525624 +893 294 3 874827789 +130 257 4 874953665 +44 520 5 878347874 +416 1011 4 885114897 +539 132 5 879788284 +819 248 5 880382511 +830 432 3 891561474 +754 276 5 879451841 +59 1112 3 888206161 +727 845 3 883709325 +843 21 2 879448392 +584 230 4 885774171 +707 949 3 886287191 +666 169 4 880567883 +739 172 4 886958938 +709 728 4 879849185 +758 238 5 881975538 +889 747 4 880181515 +622 1203 3 882669645 +450 662 4 882395914 +843 176 4 879447837 +105 343 2 889214524 +130 355 4 888211731 +819 268 4 884012614 +730 258 5 880309940 +891 281 5 891639920 +643 153 4 891447196 +900 493 2 877833603 +682 1079 3 888523657 +497 237 3 879310314 +747 392 3 888734178 +585 919 2 891283681 +705 403 4 883428154 +478 12 5 889388862 +324 690 4 880574901 +897 1254 2 880253037 +885 418 4 885714933 +854 488 4 882813761 +842 886 4 891218459 +932 1065 5 891251538 +533 216 4 879191864 +460 298 2 882912440 +663 89 4 889493818 +889 183 3 880178019 +733 1115 3 879535338 +887 82 4 881381028 +846 102 2 883950286 +847 567 3 878940783 +938 864 4 891356827 +933 317 4 874853779 +899 2 3 884122563 +862 657 5 879304369 +291 184 4 874835198 +604 441 2 883668261 +896 462 3 887159069 +922 756 2 891455185 +343 403 4 876406878 +442 153 3 883388237 +812 261 1 877625461 +772 300 4 877533731 +602 358 4 888637965 +774 448 2 888557715 +774 1218 3 888556169 +900 474 4 877833781 +659 431 4 891385627 +843 447 2 879443297 +94 67 3 891723296 +455 144 3 879110436 +753 435 4 891401712 +903 276 5 891380461 +35 300 5 875458970 +821 427 5 874793649 +575 182 3 878148295 +868 524 3 877107730 +523 1047 5 883702800 +707 1068 4 880061405 +805 501 5 881695560 +589 322 3 883352631 +878 137 3 880865562 +895 284 3 879438062 +738 206 3 875350223 +328 235 3 885048464 +815 193 4 878696054 +374 294 2 880392193 +924 523 5 885458121 +887 423 2 881379954 +420 173 3 891356864 +435 58 3 884131328 +746 8 4 885075539 +222 150 3 878181869 +459 259 4 879561630 +833 670 1 875124428 +707 811 4 886287531 +721 873 3 877137447 +655 1529 2 887489792 +897 204 4 879990396 +919 358 3 875288304 +909 582 5 891920125 +399 302 4 882340101 +62 190 5 879374686 +935 284 4 884472673 +406 660 3 882461650 +476 66 3 883364433 +892 97 5 886608802 +339 343 3 891031800 +21 986 1 874951482 +909 292 4 891919160 +650 393 3 891386778 +160 213 4 876859778 +761 455 2 876190439 +846 780 4 883949380 +874 748 3 888633197 +500 183 4 883873461 +913 527 5 881036957 +435 144 4 884131085 +256 228 3 882164559 +724 1062 1 883758208 +660 227 2 891201172 +504 1147 4 887832741 +387 1011 3 886481033 +518 628 5 876823804 +792 591 2 877909865 +271 654 5 885848475 +919 887 3 885059452 +833 320 4 875124647 +727 398 2 883713714 +878 181 3 880865770 +716 172 4 879795542 +774 23 3 888556634 +868 273 3 877107284 +846 679 3 883948989 +442 447 3 883390048 +747 290 3 888733144 +295 1 4 879517580 +825 12 5 881101782 +501 597 3 883348260 +461 258 4 885355735 +385 1449 4 881047049 +891 471 5 891639941 +79 222 4 891271957 +497 210 4 878759777 +339 200 5 891033118 +234 989 2 891033966 +853 258 3 879364883 +899 218 4 884122155 +630 932 2 885667108 +846 1248 4 883949254 +664 285 5 876524053 +889 173 5 880178019 +815 200 5 878693871 +854 285 4 882812165 +870 396 3 875680668 +445 289 1 891199510 +458 735 2 886397679 +682 299 4 888518363 +474 469 4 887925916 +693 174 4 875483881 +775 329 3 891033071 +758 705 5 881976203 +862 183 5 879304834 +107 325 3 891264659 +929 209 3 880817752 +747 1225 3 888733314 +394 89 5 880889349 +815 50 5 878691739 +532 136 5 892865321 +484 2 4 891195391 +874 289 4 888633197 +885 91 3 885714820 +796 191 4 892690382 +343 198 4 876406006 +817 324 2 874815789 +352 431 2 884289728 +749 620 4 882804506 +788 211 4 880868401 +711 425 4 879993728 +863 898 1 889288973 +327 246 4 887744384 +634 272 5 889464384 +486 21 3 879875371 +878 15 4 880872273 +251 125 4 886272346 +709 11 5 879847945 +506 202 5 874873374 +285 270 4 890595456 +276 1213 1 874791407 +771 79 1 880659729 +707 1642 5 886286491 +496 842 2 876068249 +707 93 5 880059995 +927 24 3 879181042 +303 1039 5 879466457 +901 623 4 877131793 +745 427 4 880123361 +940 193 3 885921893 +642 237 5 885603870 +404 750 3 883790750 +387 563 2 886481851 +773 258 5 888538143 +655 1633 3 889331315 +883 28 3 891717908 +119 204 4 886177659 +897 143 5 879991069 +864 382 3 888887437 +882 222 5 879861562 +916 214 3 880844958 +474 200 3 887925497 +804 183 4 879445904 +916 175 4 880845011 +497 725 3 879363253 +87 476 2 879877241 +372 292 5 876869183 +790 1091 1 885157728 +747 313 5 888638265 +804 756 3 879443976 +628 1025 5 880777095 +632 143 5 879459053 +739 197 1 886958860 +378 949 3 880056318 +846 1118 5 883948495 +551 84 1 892785020 +919 347 3 885059569 +888 869 4 879365086 +900 183 3 877833781 +905 282 3 884983889 +524 570 4 884637128 +524 523 4 884634615 +642 571 3 885606113 +868 417 1 877108087 +788 661 5 880868473 +616 343 4 891224864 +497 49 3 879310474 +880 402 3 880242115 +223 313 5 891548750 +397 298 4 885349348 +474 1011 4 887916203 +932 176 5 891250449 +393 449 2 889731088 +313 15 2 891016962 +882 988 5 879861385 +782 898 3 891498720 +7 577 2 892133310 +881 1540 1 876539091 +894 83 4 882404250 +749 526 5 878847804 +833 396 3 875134063 +269 735 2 891448120 +593 233 2 875671549 +889 461 3 880181159 +819 1160 4 880382533 +707 1211 4 886287268 +886 171 4 876032072 +59 603 5 888204309 +454 480 4 881959652 +551 451 1 892784976 +608 1221 2 880406800 +940 568 3 885921870 +592 482 4 882955582 +897 56 2 879991037 +831 31 4 891354612 +222 770 3 878181592 +624 122 3 879793436 +870 68 3 879714087 +641 209 4 879370365 +621 88 2 874962772 +935 100 3 884472110 +715 274 3 875963899 +693 281 3 875483597 +872 748 3 888478942 +696 427 5 886404542 +892 144 5 886609179 +116 292 4 876453847 +940 14 3 885921710 +860 305 4 878567538 +771 69 5 880659606 +922 382 4 891451373 +863 1022 2 889289569 +331 22 4 877196235 +802 234 5 875985601 +899 172 4 884121089 +625 235 3 891631761 +925 5 4 884718156 +488 136 4 891294158 +771 144 1 880659507 +934 573 2 891197530 +710 174 4 882064283 +568 56 4 877907720 +595 275 4 886921166 +313 141 4 891030189 +942 117 4 891282816 +863 873 2 889289491 +889 155 3 880182582 +286 330 5 884069544 +771 408 5 880659302 +774 241 4 888557237 +466 895 3 890283056 +697 118 3 882622044 +123 14 5 879872540 +894 863 5 881105162 +664 408 5 878094973 +721 172 5 877138884 +880 864 3 880167200 +940 205 3 885921243 +548 181 4 891043008 +587 358 3 892871284 +444 328 5 890247082 +933 28 4 874853977 +84 318 5 883453617 +234 1075 3 892335797 +897 497 3 879990430 +256 50 4 882164443 +399 222 3 882344434 +846 967 3 883950791 +865 676 2 880144153 +940 272 4 884801316 +194 679 2 879523104 +640 461 4 874777833 +712 388 3 874957053 +846 727 4 883948873 +406 180 5 879445599 +911 496 3 892838954 +868 919 4 877103757 +817 546 4 874815947 +830 480 5 891462594 +766 393 3 891310372 +622 162 3 882670389 +847 404 3 878940732 +279 32 3 875298696 +608 22 4 880405395 +864 1228 3 888892375 +912 132 5 875965981 +610 127 5 888702902 +886 789 3 876031656 +937 275 4 876769323 +152 88 5 884035964 +868 117 2 877110332 +557 682 2 881179213 +1 42 5 876892425 +610 185 5 888703191 +882 33 2 879868197 +833 92 2 875135363 +706 181 4 880997105 +889 24 4 880177266 +835 313 5 891032224 +405 44 1 885548670 +748 326 3 879454171 +346 177 4 874948476 +825 117 5 889021393 +781 215 3 879634124 +860 300 4 874967063 +830 2 3 891561806 +394 252 3 881130112 +828 509 2 891036630 +253 490 5 891628374 +716 225 3 879794482 +606 111 4 878146986 +1 139 3 878543216 +790 25 2 884461925 +487 802 4 884051006 +479 509 4 879461756 +301 122 2 882074818 +846 469 2 883949290 +942 200 4 891282840 +798 97 1 875638474 +371 31 5 880435576 +846 190 5 883947694 +940 655 4 885921775 +529 343 3 882535180 +173 326 5 877556988 +806 216 4 882388128 +601 864 1 876347320 +443 260 1 883504818 +840 197 5 891204509 +305 275 2 886323153 +825 1244 5 881185672 +789 1 3 880332089 +592 472 1 882608795 +767 483 5 891462870 +913 1240 2 881037004 +896 25 3 887159261 +321 127 3 879438651 +831 316 3 891354338 +722 476 4 891281635 +890 625 3 882575104 +682 660 2 888517870 +730 327 2 880309964 +933 187 4 874854294 +258 877 3 885701044 +271 470 3 885848707 +429 65 3 882386216 +215 159 3 891436707 +766 386 3 891310620 +758 526 4 882052744 +593 288 4 877728878 +892 118 4 886610649 +805 655 3 881698175 +859 294 3 885775218 +710 299 3 882063612 +345 1007 5 884994119 +433 286 5 880585068 +831 7 5 891354947 +125 1204 3 879454419 +835 527 4 891033048 +537 1166 2 886031886 +932 55 3 891249994 +864 99 3 888890730 +938 122 1 891357190 +393 729 4 887746431 +911 381 5 892839846 +792 147 4 877910822 +903 288 4 891031105 +650 419 4 891370971 +774 201 2 888556090 +178 628 4 882824027 +843 191 3 879446755 +848 89 5 887040097 +896 481 4 887158683 +73 894 1 888625592 +880 40 2 880174904 +867 98 5 880078937 +830 612 4 891898061 +770 303 4 875971568 +437 101 3 880143355 +444 307 3 891979402 +161 929 1 891172377 +235 429 4 889655662 +469 161 3 879523802 +833 943 4 875124382 +671 56 1 883546120 +897 477 3 879993315 +17 628 1 885272724 +556 340 5 882135646 +865 268 4 880142652 +747 111 4 888733480 +883 212 5 891695570 +766 89 4 891309090 +843 675 5 879443174 +865 91 3 880235059 +753 294 5 891399737 +559 520 5 891033911 +194 79 3 879521088 +527 427 4 879455740 +903 191 5 891032872 +745 125 5 880123069 +389 302 5 879915633 +773 179 5 888538810 +655 5 2 887523641 +653 526 3 880151752 +551 294 4 892775824 +747 133 5 888732695 +688 359 5 884153606 +305 318 3 886322560 +450 96 4 887834823 +567 498 4 882425966 +435 44 2 884132619 +455 147 4 879109764 +92 385 4 875653665 +899 640 1 884122228 +893 148 3 874829287 +653 225 1 886052230 +864 87 5 888887403 +937 9 5 876769373 +542 627 3 886533604 +662 1652 3 880570909 +846 1311 2 883950712 +924 127 3 884371438 +805 631 5 881698243 +584 249 4 885774551 +905 300 4 884983556 +913 481 3 880758579 +379 1113 4 892879325 +659 568 4 891384850 +486 304 3 879874186 +128 258 2 879966299 +846 219 4 883948607 +779 109 3 875501782 +497 450 2 879362202 +825 293 3 880931805 +626 266 1 878771476 +637 301 1 882899527 +942 604 4 891283139 +452 663 2 885817516 +185 178 4 883524364 +881 117 5 876535796 +566 181 2 881649985 +826 510 4 885690677 +940 315 4 884801125 +642 742 5 885602839 +125 205 5 879454345 +911 98 2 892839015 +801 288 5 890332820 +141 1282 3 884585320 +681 1176 4 885409515 +587 689 1 892871438 +74 508 4 888333542 +144 56 4 888105387 +321 116 3 879439595 +902 50 5 879464726 +880 367 4 880174730 +885 195 4 885715827 +851 343 2 883148773 +301 205 4 882076046 +650 80 2 891389216 +795 42 3 881252510 +617 567 2 883789747 +701 328 4 891446707 +698 96 4 886366515 +645 186 4 892053340 +735 283 2 876698796 +854 1677 3 882814368 +291 98 5 874834701 +869 240 4 884491734 +642 780 5 885606270 +183 121 3 891463809 +544 288 2 884795135 +709 859 3 879848318 +885 56 3 885714641 +807 210 4 892528646 +442 433 4 883388283 +919 321 2 875288164 +826 678 4 885689942 +379 286 4 880524329 +654 153 4 887864414 +707 294 2 879438988 +828 1056 1 891036630 +588 1219 2 890028385 +435 687 2 884130834 +782 1380 2 891500150 +844 7 3 877381784 +378 98 5 880045760 +758 505 5 881979012 +826 570 4 885690790 +654 151 4 887863471 +474 467 4 887928498 +933 64 5 874853605 +401 286 2 891031464 +407 204 3 875116964 +325 383 1 891480034 +896 1018 3 887160116 +864 234 4 888887658 +910 845 4 880821405 +890 449 1 882915661 +886 218 3 876031829 +871 547 3 888193136 +733 117 2 879535779 +409 61 4 881109420 +881 94 2 876539020 +843 581 3 879443951 +643 169 4 891447222 +880 1053 3 880242660 +892 95 4 886608770 +710 510 4 882064283 +877 79 4 882678387 +537 714 3 886031886 +551 363 4 892784710 +942 423 5 891283095 +886 76 4 876033897 +41 96 4 890687019 +877 748 4 882676423 +933 447 2 874854678 +863 1679 3 889289491 +739 176 1 886958938 +887 91 5 881380884 +496 495 3 876066300 +671 779 3 884036683 +655 1473 3 888474872 +459 696 4 879563736 +474 174 5 887925750 +499 527 5 885599307 +915 300 3 891031477 +536 720 4 882361207 +870 395 3 879901999 +222 91 2 878183777 +850 121 5 883195055 +889 187 4 880177857 +622 210 3 882669784 +339 1258 3 891034717 +95 398 1 888956804 +503 130 5 879438837 +804 139 3 879444943 +472 432 5 875979964 +655 1129 3 891585242 +773 231 2 888540186 +896 20 1 887235027 +846 2 5 883948949 +621 432 4 874965093 +587 680 1 892871503 +452 842 2 875265368 +184 313 4 889906905 +892 596 3 886608136 +553 497 4 879948460 +846 588 4 883949380 +818 751 5 891870473 +583 708 5 879384338 +428 315 5 885943980 +734 193 4 891025340 +908 657 4 879722822 +846 654 5 883948089 +795 214 4 881265372 +910 237 4 880822060 +397 65 2 875063876 +181 596 4 878962866 +399 379 3 882512003 +521 751 3 884475485 +503 463 1 880383126 +802 53 4 875985840 +798 623 3 876175980 +894 1131 4 879897198 +894 511 4 879897198 +877 566 4 882678547 +916 81 5 880844527 +798 740 2 875296148 +620 313 5 889986477 +49 465 3 888067798 +703 508 3 875243028 +805 143 3 881705765 +871 22 5 888193177 +315 164 4 879821349 +760 739 4 875668888 +790 228 3 885156647 +940 66 4 885922016 +454 283 3 888267590 +868 81 4 877107373 +109 572 3 880583308 +933 156 4 874854135 +862 203 4 879305312 +892 110 3 886610523 +747 615 5 888640348 +561 542 1 885810858 +417 1230 2 880953088 +416 1119 5 893214225 +890 258 3 882404055 +885 173 4 885713357 +678 275 2 879544450 +648 161 3 884882802 +815 584 3 878696355 +568 234 3 877907092 +385 1456 4 879447205 +894 1560 4 882404641 +605 70 3 879424680 +474 96 4 887925497 +796 735 2 893188514 +894 257 3 880416315 +616 288 4 891224676 +798 603 3 875743267 +673 327 4 888787396 +919 596 3 885059887 +881 934 3 876537011 +917 471 4 882911099 +839 111 4 875752237 +923 237 4 880387908 +765 137 5 880346255 +815 174 4 878693424 +354 221 4 891216788 +934 1425 1 891197851 +926 286 4 888636202 +932 1266 4 891248937 +637 9 1 882902924 +181 678 2 878961369 +201 10 3 884114169 +899 282 5 884120007 +227 741 3 879035464 +778 568 3 890726190 +303 375 2 879544276 +768 310 4 883835026 +823 182 4 878438260 +690 435 5 881177616 +366 773 3 888858078 +320 185 4 884751141 +747 40 2 888733480 +222 67 4 878183616 +924 195 5 886065785 +882 660 3 879879731 +815 181 5 878691844 +943 58 4 888639118 +452 100 5 885544109 +503 694 5 880383030 +886 371 1 876033435 +884 165 3 876859070 +527 191 5 879455654 +794 269 5 891034213 +738 64 4 875351092 +825 243 4 884642187 +709 228 3 879848397 +424 286 4 880858792 +561 603 4 885807842 +478 11 4 889395638 +285 64 3 890595777 +417 231 4 879648798 +414 886 4 884999286 +686 173 5 879546847 +524 715 4 884636182 +932 679 2 891251538 +795 1199 3 880557953 +872 288 5 888478743 +924 273 3 889286721 +883 277 4 891717936 +864 161 4 888891288 +870 494 3 879865875 +745 204 3 880123335 +463 302 5 877384835 +907 317 5 880159910 +682 943 3 888520864 +782 1534 2 891500194 +751 917 2 892486699 +405 1577 1 885549506 +296 114 5 884198772 +499 588 4 885599334 +870 528 4 875050801 +541 584 3 883874646 +622 581 4 882670562 +880 722 3 880174904 +751 710 3 889298051 +480 443 4 891208746 +591 306 5 891030956 +676 295 1 892686220 +854 129 3 882812165 +776 195 3 891628836 +833 977 2 879818799 +551 1028 4 892785056 +860 347 4 886424396 +835 499 5 891033675 +846 1179 2 883949121 +693 121 2 875483564 +540 597 4 882157248 +622 484 3 882669803 +927 228 5 879184644 +655 170 3 887523224 +899 250 2 884120105 +551 226 5 892783411 +332 41 5 887938997 +693 157 4 875482779 +862 484 4 879304571 +456 952 4 881371766 +368 5 3 889783454 +655 1111 3 887473856 +561 1044 2 885810834 +116 246 5 876452405 +630 216 5 885667968 +837 275 4 875721989 +592 176 5 882956039 +882 225 5 879862865 +751 197 3 889296961 +919 462 3 875372844 +903 23 5 891033541 +840 144 3 891209104 +250 9 2 878089547 +669 151 5 892549370 +354 222 3 891216854 +896 1221 2 887159261 +650 622 3 891387468 +276 397 1 874792601 +104 246 3 888465319 +878 496 5 880867387 +921 932 3 879381128 +761 988 1 876189715 +592 224 5 882608357 +892 237 4 886608802 +867 250 4 880078091 +864 969 4 888887172 +682 683 2 888518503 +768 815 3 880135963 +31 1022 5 881547814 +744 340 3 881171820 +830 56 2 891464054 +305 326 2 886307917 +437 71 3 880141402 +901 929 4 877126902 +256 381 5 882165135 +788 621 3 880871026 +536 436 3 882359883 +846 387 3 883950634 +185 845 4 883524507 +833 511 4 875038742 +790 145 2 885158299 +59 524 3 888206689 +853 300 5 879364744 +782 873 4 891498512 +940 873 3 889480440 +370 137 4 879434707 +613 272 5 891227111 +298 50 5 884125578 +374 227 4 880937876 +383 660 4 891192748 +474 737 4 887926633 +276 385 4 874792547 +886 393 3 876033181 +27 930 2 891543222 +880 79 4 880167670 +416 550 4 886317599 +508 47 3 883777257 +634 473 2 875729558 +903 187 5 891033754 +764 121 5 876244991 +92 44 3 875906989 +627 328 4 879529486 +909 116 5 891920010 +541 659 5 883865555 +826 230 4 885690600 +627 358 3 879529556 +379 7 5 891674489 +398 231 2 875743840 +450 389 4 882396051 +868 98 4 877103371 +935 471 4 884472352 +618 52 3 891307224 +450 50 5 882371415 +327 181 4 887745537 +648 234 5 884368314 +425 12 5 878737791 +868 662 2 877103714 +825 1163 3 880756076 +840 515 5 891203280 +815 141 4 878694613 +907 620 4 880159113 +727 455 3 883709671 +933 98 5 874853734 +837 280 2 875722350 +495 1079 5 888636511 +301 233 4 882077872 +796 692 5 892761544 +561 1010 3 885809781 +773 958 4 888538908 +445 300 1 890987410 +360 223 5 880355803 +922 202 5 891448115 +664 664 4 876524474 +723 189 3 880498938 +658 42 4 875147873 +943 111 4 875502192 +889 1070 3 880178367 +716 418 4 879796620 +87 765 3 879877006 +907 274 5 880158986 +864 2 4 888889657 +708 473 1 877325656 +932 1305 2 891252260 +812 286 2 877625109 +843 582 2 879445658 +795 477 3 880558562 +889 755 3 880182017 +207 195 3 875509307 +610 172 4 888702962 +524 14 5 884322047 +939 931 2 880262196 +890 662 3 882575303 +6 531 4 883600747 +622 253 3 882591047 +344 546 3 884899837 +895 181 5 879437950 +840 257 3 891204056 +697 595 4 882622066 +823 90 4 878438552 +497 7 3 879310604 +401 428 4 891033092 +145 118 3 875270764 +751 704 2 889133429 +892 732 4 886610480 +880 44 4 880243712 +683 880 3 893283641 +181 1034 1 878962586 +684 158 3 878760372 +883 549 4 891696782 +870 179 4 875680165 +778 367 5 890802895 +747 234 5 888640099 +867 117 3 880079117 +829 222 4 882816987 +823 1267 4 878438780 +144 7 2 888104087 +741 118 1 891455855 +262 609 3 879793736 +130 326 5 874953239 +460 1067 4 882912316 +654 143 5 887864275 +406 122 3 879540405 +276 217 4 874792692 +58 137 5 884304430 +885 501 3 885714820 +731 613 2 886186568 +782 688 2 891498918 +854 4 2 882814436 +593 282 5 875659518 +788 120 2 880871520 +393 1076 3 889731109 +815 257 3 884320266 +889 223 4 880177906 +788 281 4 880871205 +462 326 4 886365297 +661 165 5 876013975 +394 358 3 880886546 +790 158 2 885157797 +548 56 5 891044356 +218 23 4 881288298 +604 7 4 883668097 +850 584 4 883195276 +886 1 4 876031433 +472 405 5 875978600 +671 265 3 884035992 +896 358 1 887235749 +586 581 2 884065745 +701 289 4 891446857 +665 202 3 884294612 +540 340 4 882156710 +286 42 4 877533698 +62 455 3 879372696 +618 218 3 891308115 +592 23 5 882955735 +222 167 3 878183588 +848 118 2 887047243 +843 551 3 879443544 +911 485 3 892839454 +864 747 3 888890380 +655 300 3 887476919 +239 531 5 889178762 +883 168 5 891694218 +303 1 5 879466966 +846 494 5 883947590 +446 245 4 879787226 +788 231 3 880871267 +608 317 5 880405527 +311 705 3 884365201 +344 431 3 884901469 +892 11 3 886608897 +573 157 4 885844161 +848 1021 5 887043777 +683 270 3 893283049 +896 175 2 887159603 +896 603 4 887158384 +833 7 3 875035953 +605 238 1 879424783 +943 11 4 888639000 +823 13 5 878438642 +872 363 4 888479582 +682 179 4 888517627 +38 637 2 892434452 +899 186 4 884121767 +916 46 4 880844480 +796 755 4 893219033 +936 1258 2 886833281 +650 478 4 891371186 +866 242 3 891221165 +882 243 4 879861325 +795 465 3 883252686 +921 313 5 884673044 +699 370 3 879148129 +458 204 4 886396390 +624 25 4 879792446 +796 1217 3 893194607 +908 133 5 879722603 +665 50 4 884290432 +577 313 4 890089462 +592 382 4 882956761 +853 259 3 879365034 +399 96 3 882342019 +846 554 4 883949728 +536 778 4 882359988 +917 50 3 882910915 +161 70 3 891171064 +715 135 2 875964203 +313 1470 1 891017319 +468 174 5 875294549 +894 713 4 880416177 +889 89 4 880177941 +680 269 4 876815942 +234 527 3 892334189 +731 136 4 886182826 +755 289 1 882569912 +690 1185 1 881177778 +665 473 4 884290882 +734 191 4 891025523 +162 179 3 877636794 +820 288 5 887954934 +886 801 3 876034205 +510 292 4 887667524 +776 564 3 892920446 +919 1136 2 875374269 +667 98 4 891035104 +806 1514 3 882385643 +928 496 5 880936863 +521 754 3 885252562 +655 458 3 887426407 +887 72 4 881381471 +741 204 4 891018266 +668 289 2 881523929 +747 606 5 888638958 +841 307 5 889067152 +727 760 1 883713388 +643 132 5 891448265 +601 436 4 876350230 +784 313 5 891386988 +773 198 4 888538950 +938 313 5 891349471 +731 521 1 886184682 +446 307 3 879786892 +339 396 4 891036316 +629 173 5 880116847 +756 274 3 874829637 +42 655 3 881107642 +275 380 3 876198328 +782 876 2 891498267 +932 614 4 891280138 +749 414 4 878848189 +413 327 3 879968933 +171 270 4 891034835 +564 1025 2 888718443 +536 79 4 882359813 +491 513 5 891189306 +357 121 5 878951576 +541 1047 2 883866173 +655 11 2 887427307 +194 204 4 879522324 +307 161 3 879205470 +901 12 5 877132065 +754 118 2 879451775 +336 1 3 877759342 +748 495 3 879454687 +795 209 5 880587862 +894 690 4 879896200 +489 885 4 891448861 +127 230 5 884364866 +445 257 2 891199945 +929 31 2 880817708 +95 8 5 879198262 +836 611 5 885754096 +505 132 5 889333598 +514 655 4 875462568 +650 218 3 891370065 +654 196 5 887864757 +802 263 1 875985032 +918 640 3 891988163 +851 301 3 890343401 +655 467 3 887523790 +541 140 5 883874682 +870 38 3 879714608 +43 257 4 875975276 +234 106 4 892336322 +763 462 5 878921529 +834 255 3 890862940 +621 7 4 880738353 +922 249 3 891455250 +474 924 4 887915600 +608 204 4 880405527 +622 588 4 882592246 +790 709 3 885156686 +504 187 3 887840559 +368 559 3 889783562 +864 780 2 888892968 +883 1591 3 891695570 +344 1048 3 884899815 +10 414 4 877891966 +880 746 4 892959246 +533 226 4 879191621 +13 903 3 890704759 +500 60 5 883874557 +518 129 5 876823804 +588 206 4 890025023 +328 903 3 893195755 +554 245 3 876231229 +759 937 4 881476756 +472 367 5 892790953 +788 223 4 880868181 +339 218 3 891034810 +643 674 3 891449901 +313 237 2 891016757 +886 388 1 876033850 +862 1117 4 879303668 +210 163 3 887730407 +577 102 4 880475043 +666 1071 3 880567771 +543 160 3 874863803 +870 1112 2 879714902 +929 517 5 879640329 +881 472 4 876537285 +715 227 3 875964272 +907 825 3 880159404 +805 106 5 881695968 +378 96 4 880055740 +910 245 2 881420474 +13 911 2 892015141 +835 543 5 891033232 +488 191 3 891293974 +868 150 5 877103834 +749 1615 4 878847076 +893 1 5 874827725 +814 665 4 885411204 +536 8 5 882359047 +244 58 3 880605438 +269 604 3 891448895 +862 117 5 879302844 +660 183 2 891199499 +77 519 5 884752874 +223 1284 1 891550295 +871 213 3 888193386 +299 515 4 877877691 +868 195 2 877104212 +630 323 4 885666237 +321 704 3 879440423 +896 515 3 887158029 +804 748 4 879440700 +845 268 3 885409374 +720 286 5 891262635 +738 203 3 892958137 +663 1017 2 889492679 +869 284 1 884491966 +727 199 4 883710288 +13 569 2 882396955 +894 344 4 887825614 +120 127 4 889489772 +868 178 5 877103714 +389 1168 3 880088717 +932 497 5 891249933 +550 1 3 883425913 +934 177 3 891192623 +792 1 4 877910822 +562 135 5 879196075 +639 213 5 891239528 +90 511 5 891384476 +464 299 4 878354791 +306 19 5 876503995 +749 223 4 881602704 +843 563 2 879443545 +846 493 5 883947590 +751 302 4 888870893 +600 232 3 888451839 +719 58 3 879360933 +867 289 5 880077950 +448 302 5 891887337 +854 55 4 882814467 +150 150 3 878746824 +923 472 4 880388547 +814 56 3 885410957 +408 327 5 889679982 +932 1184 3 891250169 +435 721 4 884132072 +451 335 4 879012721 +260 334 5 890618729 +503 503 3 880472250 +862 982 4 879303622 +897 172 4 879990466 +312 530 5 891698921 +395 286 4 883762088 +782 1302 3 891500028 +916 824 3 880843838 +894 355 3 889469028 +854 483 4 882813691 +931 237 3 891036552 +82 241 3 878769992 +893 405 5 874828864 +344 762 3 884900391 +458 519 4 886395899 +882 235 3 879863560 +738 423 4 875350223 +629 137 5 880117001 +918 428 5 891988001 +580 147 3 884125658 +655 980 2 888984354 +910 288 3 884229224 +851 291 4 875730244 +363 223 5 891495197 +790 208 3 885156014 +711 1170 3 879993842 +919 270 4 885059422 +774 118 1 888558594 +721 327 2 877136967 +862 179 5 879304410 +90 275 5 891383626 +311 96 5 884365653 +890 427 5 882405586 +533 169 4 879438543 +896 152 3 887160116 +869 50 4 884490892 +807 8 4 892528374 +97 69 5 884239616 +851 685 4 875731022 +942 261 4 891282673 +615 427 5 879448475 +694 1269 5 875726793 +826 449 4 885690819 +919 1047 3 875289697 +758 629 4 881978715 +187 707 5 879465882 +283 1009 3 879297867 +887 832 2 881379059 +618 183 4 891307494 +835 735 5 891033349 +757 222 4 888444400 +537 289 1 886029153 +709 441 4 879848239 +848 633 3 887043040 +903 1008 3 891031505 +885 233 3 885715889 +450 347 4 887047775 +13 288 1 882396790 +624 127 4 879792322 +483 283 5 878952582 +843 95 2 879446716 +907 282 4 880158939 +305 475 4 886324199 +886 71 4 876032274 +899 25 3 884120249 +897 951 3 879991186 +618 159 3 891309670 +299 480 4 878191995 +693 216 4 875484613 +667 238 3 891035140 +201 1426 2 884114015 +608 182 4 880403484 +210 655 5 887730496 +808 313 5 883949986 +409 1541 4 881107992 +825 546 5 880756603 +347 926 1 881654846 +921 282 2 879379714 +824 322 4 877021044 +938 240 2 891356847 +913 265 4 880757553 +708 150 4 892719246 +922 216 3 891448115 +930 121 4 879535392 +377 689 3 891297256 +276 586 3 874977512 +914 387 3 887124121 +881 678 2 876535695 +815 172 5 878694613 +881 178 3 876537512 +511 300 4 890004658 +921 720 4 879381128 +500 532 4 883865952 +495 511 4 888634536 +532 980 4 884594911 +918 204 1 891987317 +664 367 3 876526152 +943 570 1 888640125 +661 175 2 888299899 +790 248 4 884461888 +158 651 5 880134296 +435 527 4 884130995 +833 432 4 875132134 +465 48 3 883530313 +936 818 4 886832903 +868 419 3 877103449 +381 307 2 892697959 +347 418 4 881654134 +417 203 4 879646915 +524 521 4 884636182 +782 252 3 891499469 +758 144 4 881975267 +210 969 4 887730221 +932 967 4 891251331 +11 401 3 891905324 +716 22 5 879795159 +437 13 4 880141129 +319 358 3 889816233 +645 319 3 892051708 +915 1038 2 891030070 +940 289 3 884801144 +541 946 5 883874749 +508 710 4 883777071 +840 272 4 891202756 +760 928 1 875666242 +782 1666 2 891500194 +815 665 2 878698525 +913 237 4 881725960 +886 746 3 876032473 +788 620 3 880871088 +316 162 3 880854472 +508 524 5 883767608 +880 222 4 880166990 +406 629 3 880131977 +286 232 4 877534701 +653 307 4 889151627 +733 220 2 879544411 +896 872 3 887157322 +450 230 4 882371732 +768 471 3 880135875 +561 194 4 885807612 +457 371 4 882398275 +446 879 3 879786691 +846 230 3 883948720 +896 174 5 887161710 +846 716 3 883949508 +943 232 4 888639867 +621 1093 4 880738568 +619 181 4 885953778 +864 1217 3 888889327 +487 380 2 883531466 +505 123 3 889333894 +887 1473 1 881379522 +913 98 4 881725761 +707 1120 4 880060974 +339 639 4 891034115 +416 542 1 886317599 +754 328 3 879450984 +708 713 4 877325316 +577 568 3 880475021 +582 547 4 882961608 +788 164 3 880870115 +702 230 4 885767774 +786 423 5 882843150 +592 116 4 882608182 +700 28 3 884493712 +851 121 4 874728565 +823 1 4 878438206 +904 628 3 879735362 +665 631 2 884294459 +399 419 3 882343327 +713 344 5 888882276 +816 355 2 891711472 +922 56 1 891447628 +619 685 3 885953850 +801 300 5 890332748 +896 182 4 887157924 +804 227 4 879443136 +537 753 2 886030622 +655 1186 3 888984538 +807 684 5 892529851 +532 304 5 893118711 +901 196 4 877288864 +863 682 3 889289491 +890 135 5 882405546 +293 173 5 888905550 +672 109 4 879788774 +889 1006 4 880181563 +933 577 1 874938705 +62 466 3 879374785 +846 426 1 883949046 +788 657 4 880868277 +803 242 5 880054592 +661 181 5 876015607 +863 872 2 889289240 +709 192 4 879846705 +666 175 4 880567612 +875 71 2 876465336 +682 108 3 888521564 +899 265 4 884122087 +788 1518 3 880871394 +453 85 3 877561301 +757 271 3 888443307 +437 1063 5 880141661 +417 343 2 886186253 +896 217 2 887161198 +889 696 3 880177407 +454 632 3 881960145 +722 471 4 891281020 +901 168 4 877131342 +429 257 4 882386121 +834 288 5 890860566 +791 181 5 879448338 +311 496 5 884364593 +619 195 5 885954019 +896 880 4 887235664 +683 472 3 893286550 +798 423 3 875639864 +790 411 3 884462929 +13 158 1 882142057 +177 748 3 880130534 +7 341 3 892333206 +881 483 4 876537418 +786 125 4 882841745 +646 349 2 888529127 +880 140 4 880243001 +84 4 3 883453713 +787 1434 1 888979657 +897 177 5 879990465 +536 228 5 882359863 +942 427 5 891283017 +270 219 5 876956389 +846 415 2 883950605 +901 498 4 877131990 +60 237 4 883327442 +920 347 4 884220131 +102 947 3 888801360 +479 480 5 889125737 +870 447 4 879713953 +699 1187 4 879148051 +781 191 4 879633995 +919 298 3 875288983 +823 111 4 878438206 +334 246 4 891544952 +230 174 5 880484661 +286 41 2 877535323 +682 542 2 888523227 +392 589 4 891038946 +854 358 2 882812001 +618 420 3 891309163 +864 137 4 878179514 +758 152 5 881975853 +291 592 3 874834895 +59 219 5 888206485 +741 427 5 891018221 +567 187 5 882425673 +889 240 3 880177246 +851 1028 3 875730686 +485 301 2 891041551 +892 284 5 886610840 +764 294 3 876233213 +357 1048 2 878951217 +425 190 3 890347085 +756 53 3 874830432 +532 1428 4 874791420 +663 151 3 889492841 +487 248 1 883443504 +759 328 5 881476590 +298 121 4 884126202 +748 180 4 879454958 +850 742 5 883195214 +436 435 4 887769256 +932 229 4 891251063 +405 4 4 885547314 +593 153 5 875671107 +58 121 2 892242300 +798 486 4 875639889 +766 367 2 891309878 +47 303 4 879439112 +621 65 3 885596944 +747 483 5 888639318 +347 282 5 881652590 +805 769 2 881695999 +450 372 4 882396245 +931 678 3 891036247 +774 168 1 888555964 +922 395 4 891452879 +727 260 1 883708265 +654 381 3 887864886 +739 603 4 886959069 +930 148 1 879534886 +894 264 3 879896309 +455 568 4 879112298 +854 823 2 882813316 +409 1070 4 881107410 +897 409 4 879993553 +482 245 4 887643461 +805 225 1 881705892 +737 187 5 884315175 +620 174 5 889988121 +178 194 4 882826306 +894 1315 3 879896985 +618 1039 4 891309887 +308 479 5 887738346 +899 435 3 884122450 +623 286 2 891032107 +541 254 3 884046953 +776 438 2 892920506 +933 523 4 874853957 +935 846 4 884472999 +833 405 3 875038395 +654 1165 1 887864146 +913 234 4 880825443 +647 15 4 876532975 +942 487 4 891282985 +896 97 4 887158265 +416 846 3 878878779 +851 892 2 886534635 +836 134 3 885754096 +840 143 4 891209490 +897 603 5 879991666 +747 625 3 888640648 +533 549 4 879439340 +240 242 5 885775683 +425 217 1 878738914 +312 661 5 891698726 +887 871 5 881378325 +378 183 4 880331829 +916 82 4 880845772 +877 83 3 882677085 +881 129 4 879052141 +807 173 3 892528285 +625 484 4 891262783 +368 7 4 889783365 +839 1085 5 875752877 +894 346 4 884036796 +889 952 3 880178411 +655 461 2 887427130 +863 1237 4 889289618 +886 5 3 876032929 +655 240 3 887650538 +822 272 3 891033683 +222 100 5 877563052 +694 1020 4 875728345 +718 405 5 883349384 +789 1008 4 880332365 +275 473 3 880313679 +711 272 5 884485798 +840 632 3 891204296 +26 271 3 891348070 +102 384 2 892993827 +863 690 4 889289067 +727 233 4 883713473 +145 271 4 885557660 +419 191 4 879435590 +26 291 3 891379753 +669 222 3 892549434 +889 39 2 880181191 +577 1044 4 880475504 +556 323 2 882136058 +637 244 1 882903645 +799 690 3 879253668 +733 1114 3 879535603 +537 547 1 886029771 +788 193 4 880868235 +846 721 4 883948719 +200 380 5 884129381 +174 11 5 886439516 +355 1233 4 879486421 +592 92 5 882956358 +795 568 3 883251659 +907 828 5 880159361 +852 405 3 891037262 +793 456 3 875104752 +647 1014 3 876531583 +327 324 3 887743644 +682 551 2 888522977 +859 955 5 885776352 +464 257 4 878355088 +936 285 4 886832221 +385 215 2 879442559 +897 69 5 879990396 +911 423 4 892840837 +128 633 4 879967729 +748 425 4 879454773 +236 28 4 890116539 +72 654 4 880037461 +538 137 3 877108372 +883 1041 3 891694603 +846 479 4 883947694 +474 186 4 887925977 +642 472 5 885607081 +435 179 5 884131085 +889 212 2 880181225 +647 237 3 876776320 +4 359 5 892002352 +907 125 4 880159259 +760 841 3 875666421 +627 22 5 879530205 +435 298 4 884134500 +597 326 1 875339083 +145 228 4 885557660 +870 1042 2 879902127 +868 219 2 877107817 +279 193 2 875307407 +568 79 4 877907782 +562 385 2 879196483 +864 184 4 888890775 +822 410 1 891039486 +387 29 1 886483252 +782 1016 3 891499321 +929 419 4 880817844 +764 280 4 876244181 +551 128 4 892783829 +758 955 2 881977021 +887 410 4 881378040 +693 229 2 875483435 +119 28 5 874782022 +650 152 3 891382138 +717 126 5 884642580 +887 258 1 881377893 +929 134 4 880817752 +316 462 3 880853516 +639 174 4 891240160 +79 515 5 891271792 +807 121 4 892529278 +481 198 4 885828686 +303 293 4 879544515 +630 153 3 885668277 +356 322 3 891406289 +907 472 5 880159360 +790 235 1 884462551 +889 475 4 880176896 +465 528 3 883530190 +790 417 2 885156538 +535 427 4 879618246 +492 514 3 879969415 +919 937 4 875920627 +653 229 3 880153145 +268 143 2 875310116 +932 709 4 891251395 +709 747 2 879848925 +645 173 4 892053748 +660 474 2 891200037 +661 174 5 876013447 +838 300 2 887060778 +642 427 3 886132043 +592 87 4 882956467 +618 770 2 891309756 +665 69 5 884293475 +500 121 3 883865611 +821 509 5 874793574 +621 879 4 880227012 +886 22 4 876032378 +721 174 5 877139015 +632 99 5 879458941 +222 54 4 878183111 +907 301 4 880158537 +102 447 4 888803002 +764 276 3 876752289 +595 288 3 886920602 +474 197 5 887923788 +806 82 4 882389179 +823 428 5 878438511 +669 329 1 891182771 +870 90 4 875680668 +295 144 4 879518166 +625 210 3 892054095 +909 275 5 891920166 +865 845 1 880144123 +222 188 3 878184393 +537 699 4 886031149 +574 346 4 891278962 +896 798 2 887160983 +711 121 1 876185726 +752 316 3 891208329 +588 1061 5 890024876 +733 290 4 879535752 +840 611 4 891204509 +321 511 4 879440954 +886 96 3 876031392 +488 478 3 891294530 +766 183 4 891309484 +345 385 3 884993418 +532 313 5 884594326 +85 281 3 879452971 +783 872 4 884326545 +690 585 2 881177970 +787 898 3 888979182 +94 673 3 891721615 +788 12 5 880868919 +780 497 2 891364059 +665 274 3 884290408 +568 30 4 877907877 +11 83 5 891904335 +332 1157 4 888360532 +823 217 3 878439655 +806 153 4 882388658 +354 724 2 891307114 +508 204 3 883767510 +653 508 3 886052198 +776 50 5 891628977 +862 1110 5 879305386 +374 153 5 880395487 +911 1203 4 892838357 +790 274 3 884461950 +741 265 5 891455735 +355 689 4 879485423 +99 172 5 885679952 +450 181 4 882372103 +833 302 3 884828670 +710 180 4 882063736 +741 194 4 891457242 +474 611 4 887925395 +637 1033 3 882904233 +883 172 4 891696824 +753 527 4 891401510 +913 465 2 880826366 +715 7 3 875962110 +751 578 4 889298174 +897 588 4 879990877 +938 125 3 891356742 +13 370 1 882396984 +664 655 3 876524097 +889 1170 2 880182127 +741 1152 3 891458597 +844 210 4 877386928 +303 403 5 879468274 +758 751 4 882597651 +569 257 4 879794302 +908 185 4 879722822 +593 732 3 875660850 +95 431 3 879196629 +14 195 5 890881336 +919 50 3 875288570 +751 87 5 889297927 +886 732 3 876032029 +644 330 4 889076173 +885 949 4 885714452 +726 249 1 889832422 +907 86 5 880160162 +543 61 4 875659098 +698 204 2 886366770 +823 239 4 878438959 +90 156 4 891384147 +506 216 4 874873794 +329 1011 3 891655981 +782 1138 2 891499699 +931 476 3 891036974 +560 458 3 879976731 +716 479 4 879796010 +790 122 2 884462954 +939 106 3 880262019 +372 1090 5 876869878 +399 665 3 882345408 +453 215 3 877554419 +804 411 3 879443776 +768 476 4 883834705 +792 9 3 877909631 +487 809 2 884050192 +500 117 4 883865755 +642 628 3 891317897 +854 303 3 882811810 +903 845 1 891031450 +774 411 1 888558853 +942 323 3 891282644 +727 207 5 883710889 +833 573 1 875223976 +724 879 1 883757259 +409 115 2 881108777 +699 309 3 882000505 +551 508 4 892783366 +711 959 5 879995322 +794 248 4 891036463 +781 403 4 879634340 +758 802 3 881978572 +883 9 4 891717495 +682 232 3 888519408 +793 597 3 875104565 +890 183 3 882404917 +840 566 5 891209285 +393 96 4 889555434 +166 688 3 886397855 +917 740 5 882912385 +766 602 4 891310038 +416 265 5 893213796 +548 696 4 891415912 +615 26 4 879448233 +158 978 3 880133937 +751 79 4 889132776 +643 273 3 891445287 +562 174 5 879196105 +92 732 3 875812841 +252 847 4 891456738 +641 1194 3 879370299 +880 1059 4 880166939 +731 170 5 886179040 +567 223 4 882426508 +436 423 4 887769992 +190 100 4 891033653 +721 720 5 877138395 +868 455 5 877103410 +855 531 3 879825614 +897 871 3 879993519 +804 84 3 879445933 +271 215 4 885849300 +934 25 4 891195233 +693 144 4 875483847 +493 358 4 884129979 +880 12 5 880175622 +919 202 3 875373582 +886 150 4 876031656 +735 245 3 876698022 +655 636 3 888475015 +537 175 4 886030966 +710 172 4 882064283 +19 8 5 885412723 +668 882 3 881523929 +551 34 4 892778336 +731 127 4 886179415 +45 278 3 881014550 +905 150 4 884984148 +385 198 3 881128357 +608 517 4 880403856 +806 228 4 882389230 +819 340 5 879952627 +768 248 3 883834705 +609 894 1 886895852 +664 14 4 878090764 +870 443 3 882123736 +374 79 4 880394997 +773 1 3 888539232 +643 72 4 891449301 +916 1113 4 880844897 +686 192 5 879545340 +487 689 1 883441407 +418 300 3 891282656 +472 403 5 875982200 +642 35 2 886570027 +909 531 4 891920166 +833 198 4 875123677 +295 951 5 879517893 +880 92 4 880167778 +606 281 4 880922148 +921 1047 1 879380015 +665 410 3 884291165 +805 269 5 879971251 +854 829 2 882813287 +83 248 3 883868788 +885 356 3 885714317 +49 54 2 888068265 +627 431 4 879531302 +864 238 5 888890432 +442 188 3 883390782 +367 268 4 876689364 +851 916 3 891961195 +796 187 5 892662904 +707 603 3 886286926 +796 821 4 893047126 +115 684 3 881171489 +689 50 5 876676397 +709 117 4 879846623 +847 948 1 878774764 +657 273 3 884239566 +54 634 1 892681013 +269 939 2 891448177 +363 770 4 891497174 +560 301 3 879975116 +119 194 5 874781257 +941 147 4 875049077 +921 72 4 879380806 +795 403 3 883250829 +869 1134 1 884492445 +828 1672 2 891037722 +896 228 5 887158266 +903 91 5 891033005 +653 802 2 880153040 +807 554 4 892684529 +637 181 4 882902540 +786 222 4 882842044 +627 228 4 879531301 +432 15 4 889416456 +239 483 5 889179253 +704 22 2 891397441 +159 299 3 893256013 +627 180 5 879529794 +896 765 4 887160750 +385 55 2 879441728 +938 988 3 891356282 +606 293 5 878143605 +524 559 3 884637067 +640 174 5 876067863 +889 64 5 880178313 +806 2 3 882389862 +708 685 3 877326158 +713 327 2 888882085 +271 203 4 885848448 +903 521 5 891033781 +693 96 4 875483881 +890 101 2 882915661 +695 682 1 888805952 +235 524 5 889655204 +438 284 2 879868308 +844 511 3 877387825 +654 408 5 887863381 +667 79 3 891034930 +346 79 5 874948105 +336 257 4 877759730 +610 187 4 888703213 +573 216 4 885844674 +647 203 3 876776321 +757 176 5 888445730 +713 286 3 888881939 +642 441 1 886569942 +862 105 3 879303346 +487 231 1 884050940 +932 525 5 891250418 +918 419 3 891987622 +542 202 3 886532314 +870 69 4 875050603 +499 208 4 885599718 +854 134 4 882813825 +802 567 4 875985976 +524 476 3 884628212 +14 430 5 879119692 +405 1019 1 885549465 +896 161 3 887159302 +130 1142 4 874953595 +13 310 4 881514683 +727 1437 2 883713082 +644 298 4 889077513 +857 687 1 883432470 +826 576 4 885690900 +836 657 5 885754096 +894 129 4 880416253 +95 234 2 879197886 +503 13 3 879438377 +905 7 4 884984329 +935 127 4 884472086 +790 209 1 885155540 +752 904 4 891207845 +843 28 3 879446977 +838 100 4 887063994 +530 255 4 886198864 +934 197 5 891192041 +790 186 3 885156165 +316 716 5 880853881 +850 480 5 883194810 +942 615 3 891283017 +918 923 4 891987317 +49 820 1 888067164 +805 105 2 881705238 +504 176 3 887837739 +940 96 5 885921265 +924 1036 2 886759690 +892 472 3 886610523 +773 221 2 888540448 +875 692 2 876465230 +642 217 2 886569659 +932 1397 4 891250793 +13 172 5 882140355 +523 407 4 883702800 +37 210 4 880915810 +130 373 4 878537681 +570 879 2 881262795 +774 1017 3 888558829 +856 750 5 891489250 +677 1049 3 889399139 +159 130 1 880557322 +798 289 3 875286981 +843 135 5 879449177 +11 28 5 891904241 +924 300 2 884337243 +931 1152 4 891037177 +555 318 4 879975419 +693 298 3 885703740 +756 71 3 874828391 +624 928 3 879793511 +758 748 1 880672522 +828 382 3 891037639 +863 313 5 889288910 +832 873 2 888259984 +928 333 3 880937258 +308 654 5 887736881 +850 494 3 883195168 +892 5 4 886611354 +586 569 3 884060807 +851 352 1 890343544 +923 148 4 880387474 +897 455 3 879993772 +92 111 3 875641135 +697 820 3 882622373 +839 532 3 875752560 +822 432 3 891037394 +346 164 3 874948824 +881 443 5 876539448 +639 451 4 891239529 +846 168 5 883947737 +911 238 2 892839970 +738 434 4 875351872 +889 455 4 880177647 +566 523 4 881649622 +916 53 4 880844834 +629 416 4 880117813 +929 515 5 878402162 +886 1074 2 876033645 +650 550 3 891381661 +716 1020 5 879795314 +537 1400 2 886031678 +495 225 4 888635524 +454 972 2 888267128 +823 762 4 878439557 +13 722 3 882399528 +695 895 1 888805864 +447 15 1 878854481 +579 435 5 880952038 +913 789 4 880946415 +699 1033 4 884152917 +682 2 3 888522541 +592 69 5 882956201 +856 310 3 891489217 +648 295 4 882211464 +299 481 3 877880566 +541 79 5 883871524 +804 206 3 879445440 +825 984 5 884642187 +877 538 4 882676533 +700 222 3 884493899 +655 1022 3 887424948 +606 568 4 880923988 +452 83 3 885490812 +610 750 4 888702841 +532 1312 4 888631036 +873 294 4 891392303 +821 79 5 874793517 +664 1109 4 876526555 +407 95 3 875045190 +790 931 2 884462105 +712 210 5 874730293 +894 147 3 880993709 +859 368 3 885775880 +478 202 4 889396256 +757 91 4 888467309 +500 727 2 883875041 +749 210 4 878848587 +831 270 4 891354000 +332 471 4 887938351 +864 44 4 888890144 +733 534 3 879544377 +747 418 5 888639102 +901 71 4 877131654 +678 15 3 879544449 +912 154 4 875966027 +805 742 3 881695872 +796 659 3 892662482 +276 472 3 874787109 +464 255 4 878355061 +894 326 3 879896168 +668 269 5 881523612 +940 194 5 885921953 +904 66 4 879735641 +889 403 3 880179868 +406 521 3 882480511 +908 181 3 879722754 +932 179 5 891249239 +529 327 4 882535353 +890 85 1 882917090 +370 427 5 879435146 +918 137 5 891987879 +933 470 4 874854611 +522 200 4 876961314 +697 270 5 882622481 +860 245 3 880829225 +623 525 4 891034294 +883 270 4 891691436 +320 625 4 884751439 +444 286 2 890246847 +655 459 2 891408204 +90 268 4 891382392 +897 222 4 879993042 +835 23 4 891035310 +285 319 3 890595523 +639 311 3 891238599 +504 174 4 887909455 +823 150 4 878438058 +314 787 2 877889927 +886 186 4 876033460 +703 764 2 875242885 +765 14 5 880346204 +7 365 4 891353744 +854 616 4 882813877 +846 786 4 883949771 +560 928 3 879977062 +181 1382 1 878962168 +633 921 3 875324812 +130 552 5 876252225 +621 1228 3 880740296 +843 77 2 879443975 +916 506 3 880844728 +916 1206 2 880845543 +42 969 5 881107687 +826 373 3 885690900 +690 780 4 881177910 +627 7 5 879531158 +894 283 3 880993490 +174 384 1 886515121 +638 168 4 876695714 +933 63 2 874938563 +913 179 3 881368269 +881 15 3 876536241 +49 4 2 888069512 +894 336 3 879982820 +541 378 5 883864908 +807 511 5 892705391 +392 510 4 891038979 +660 318 3 891199133 +901 228 5 877131045 +766 72 2 891310704 +429 200 3 882386333 +112 333 4 884992566 +62 511 4 879373586 +778 451 1 891234405 +741 790 3 891457456 +919 204 4 875921396 +928 1007 5 880937163 +523 874 4 883699869 +844 56 4 877386897 +927 380 5 879196283 +828 198 4 891036492 +796 155 5 893047241 +181 333 3 878961227 +796 275 4 892660211 +374 273 2 880392747 +584 227 4 885774172 +216 416 3 880245165 +702 879 1 885767604 +897 451 4 879991607 +707 1401 3 886286663 +522 135 5 876960824 +766 182 4 891309053 +116 1256 1 876453222 +422 248 3 875130100 +797 988 1 879439230 +875 1422 3 876465274 +430 121 2 877225832 +505 69 3 889333974 +571 1039 3 883354760 +937 285 4 876769436 +868 449 3 877113540 +380 498 4 885478738 +686 197 5 879545814 +491 116 5 891185209 +137 685 5 881433296 +896 431 3 887159262 +798 1023 3 875295772 +497 83 2 878759898 +644 457 4 889076502 +930 8 3 879535713 +488 418 3 891294530 +385 954 4 879446235 +896 1284 2 887160958 +495 521 5 888632219 +632 720 3 879459025 +94 94 2 891723883 +727 62 3 883712603 +87 433 3 879876702 +110 722 3 886989028 +773 655 3 888539347 +601 118 1 876347320 +38 406 2 892434251 +436 81 3 887770244 +899 496 5 884121379 +621 95 4 880739654 +574 100 5 891279712 +935 717 4 884472872 +642 931 4 885606857 +389 134 5 879991045 +385 205 2 879443253 +704 318 5 891397491 +943 1067 2 875501756 +666 118 3 880313903 +639 655 3 891239406 +498 109 3 881955189 +588 8 5 890023557 +536 10 4 882318772 +256 64 5 882164231 +875 504 5 876465275 +868 240 5 877107373 +774 449 1 888557482 +920 331 3 884220094 +690 4 3 881177459 +690 451 4 881177910 +883 147 2 891717419 +715 433 2 875963082 +867 511 5 880078371 +832 258 3 888258960 +7 179 5 891352303 +776 184 4 892920381 +711 197 4 879993110 +538 188 4 877108195 +924 526 3 886327826 +632 227 3 879459025 +934 297 5 891189969 +916 17 4 880845135 +764 1028 4 876244181 +764 220 3 876243925 +773 1018 3 888539095 +763 1065 5 878915559 +763 174 4 878919019 +790 217 4 885158459 +374 4 2 880395924 +145 1041 5 875272987 +472 366 4 892790952 +846 191 5 883948048 +286 401 1 877535446 +864 1047 3 888888680 +309 879 4 877370319 +730 7 4 880310352 +545 450 2 883115718 +860 1602 3 893009852 +125 1271 2 892839021 +724 327 4 883757670 +551 824 1 892784629 +158 302 4 880132193 +831 117 3 891354970 +734 213 5 891022684 +880 1423 3 880175577 +665 240 5 884291271 +908 322 2 879722169 +817 245 2 874815789 +567 50 1 882426246 +472 230 5 875981876 +894 479 5 879897198 +102 11 3 888801232 +908 69 3 879722513 +451 334 3 879012648 +747 98 5 888639480 +790 117 5 884461283 +329 186 3 891656268 +44 157 4 878347711 +514 208 4 875463494 +669 915 3 892549178 +878 531 2 880866564 +830 226 5 891561806 +846 609 5 883949199 +774 175 3 888555897 +823 175 4 878438457 +868 436 3 877104913 +881 477 4 876536107 +393 141 2 889729537 +804 260 2 879440787 +13 275 3 886303585 +688 349 5 884153712 +897 484 3 879991341 +854 1061 1 882813421 +456 258 4 887165802 +936 340 4 886831535 +759 275 4 875227858 +795 1101 4 881528779 +905 321 4 884983463 +942 584 4 891283239 +670 417 4 877975129 +109 63 3 880582679 +841 300 4 889066780 +230 56 3 880484416 +943 808 4 888639868 +753 242 4 891399477 +904 778 3 879735678 +857 259 4 883432397 +539 496 3 879787985 +479 193 3 879460939 +796 949 4 893047460 +867 216 3 880079043 +921 471 2 879379821 +889 94 4 880181646 +896 216 5 887159658 +796 396 2 893218621 +861 382 5 881274780 +681 328 3 885409810 +841 358 1 889067348 +758 890 3 880672552 +883 250 3 892439468 +721 243 3 877137527 +829 100 4 881086893 +665 687 2 884290143 +280 173 3 891700453 +593 1221 3 875671982 +592 1356 4 882608915 +932 570 4 891251178 +724 347 4 883757670 +832 323 3 888259984 +734 275 4 891023019 +472 1079 4 883904360 +722 508 4 891281020 +94 403 3 891723188 +819 182 4 884105025 +798 225 4 875637487 +883 589 5 891754985 +498 663 4 881956363 +495 183 5 888633277 +79 276 3 891271957 +717 831 3 884642958 +532 367 5 893119439 +774 122 1 888558924 +870 550 3 879714310 +228 812 5 889388547 +262 58 3 879792452 +790 1039 3 885155490 +838 405 4 887064589 +680 318 5 876816106 +845 1399 3 885409493 +942 347 5 891282396 +835 357 5 891033232 +671 88 4 884036846 +529 264 2 882535820 +280 673 4 891701223 +787 1024 2 888979606 +902 134 3 879465523 +865 24 4 880143612 +640 1067 4 876068799 +654 1283 1 887863779 +940 172 4 885921451 +918 289 2 891988559 +653 719 3 880153841 +561 1039 3 885807612 +835 612 4 891033927 +916 655 3 880844350 +727 70 5 883710856 +588 561 3 890027780 +790 15 5 884461413 +865 101 1 880235099 +907 147 5 885862325 +764 227 4 876246358 +882 932 4 879863969 +89 301 5 879461219 +648 291 3 882211736 +919 57 5 875373621 +409 1512 5 881106947 +538 199 5 877364067 +334 137 2 891544953 +397 182 5 885349759 +254 496 4 886471982 +699 275 3 879148201 +585 170 5 891282573 +666 46 4 880139348 +891 531 4 883430128 +356 294 1 891406076 +883 79 4 891696864 +747 179 5 888639780 +590 546 1 879439538 +804 237 4 879443709 +788 64 5 880868005 +80 79 4 887401407 +727 1222 1 883713574 +774 367 2 888556047 +782 1013 3 891499439 +298 427 5 884127369 +716 497 3 879795949 +727 1249 3 883711991 +506 525 4 874876486 +881 755 4 876538922 +707 736 4 886286311 +882 496 5 879866320 +653 1016 3 890181186 +566 69 4 881650108 +872 310 4 888478698 +512 50 5 888579997 +921 288 3 879379265 +648 758 2 884795447 +736 293 4 878709365 +864 250 3 891044057 +505 98 4 889333792 +922 227 4 891447777 +561 772 4 885808715 +450 627 3 882396489 +859 928 3 885775473 +733 107 4 879536001 +738 1047 3 875351872 +588 385 3 890023557 +435 91 4 884131597 +434 974 5 886724940 +406 433 3 880131791 +5 239 4 875636655 +758 184 5 881974823 +872 118 4 888479560 +796 1407 3 893049362 +595 826 1 886921819 +841 271 4 889067216 +754 117 4 879451626 +308 1140 4 887740933 +627 550 1 879531352 +875 181 4 876465335 +727 358 2 883708462 +727 567 2 883713388 +592 55 4 882956067 +922 588 4 891448580 +487 399 5 884046800 +805 1017 3 881704337 +892 12 5 886608022 +880 346 5 892958128 +102 234 3 888802940 +869 756 1 884492780 +897 195 5 879991137 +752 539 4 891208357 +851 331 3 877830970 +830 627 3 891561541 +896 1 4 887158579 +896 479 3 887158713 +910 293 4 880822060 +823 419 4 878438780 +606 249 3 880922503 +828 1622 1 891038060 +800 276 3 887646245 +648 1030 2 884882552 +903 317 4 891033808 +298 546 3 884184098 +851 1277 2 875730418 +862 141 4 879305237 +860 716 2 887754411 +834 127 5 890862412 +566 121 3 881650755 +428 894 4 885943955 +625 216 4 891262899 +794 150 4 891034956 +861 83 5 881274672 +522 530 4 876961314 +647 357 5 876534131 +405 205 3 885546025 +846 499 4 883948840 +514 1074 4 876067623 +116 300 3 876452094 +894 558 5 882404250 +815 433 3 878695199 +734 742 4 891025958 +694 526 5 875729431 +422 185 4 879744015 +898 300 2 888294375 +526 294 3 885681982 +488 15 4 891294568 +927 15 5 879177509 +488 197 2 891294473 +751 1140 2 889299503 +133 306 4 890588612 +910 23 4 881421332 +409 1020 5 881107410 +817 24 4 874815947 +864 1 5 877214125 +64 480 3 879365619 +889 153 5 880181317 +621 625 4 874965299 +10 518 4 877886722 +711 134 5 876278804 +694 582 4 875728801 +896 134 5 887159109 +119 298 4 874775038 +505 227 2 889334334 +76 1154 5 878100710 +878 8 3 880866288 +888 269 5 879364981 +790 742 4 884461541 +763 518 4 878919180 +293 11 3 888905898 +641 338 3 879369958 +318 531 4 884495921 +918 211 2 891987752 +112 328 4 884992566 +339 506 4 891033766 +686 435 5 879545758 +660 568 3 891199182 +109 1245 2 880571872 +934 151 3 891189401 +669 355 2 891182792 +727 80 4 883713454 +627 195 4 879531301 +456 382 1 881374710 +934 202 5 891193132 +846 530 5 883948606 +790 65 4 885155846 +881 449 3 876539549 +854 135 4 882813933 +389 67 2 880614340 +324 285 4 880575412 +690 1090 3 881180138 +521 568 3 884478101 +117 132 4 881012110 +184 1121 4 889910545 +749 80 1 878850533 +85 270 3 890255063 +639 519 4 891239380 +635 879 3 878878866 +453 99 3 888205588 +649 24 4 891440460 +854 244 3 882812826 +756 181 4 874831383 +919 1315 2 875289611 +387 516 3 886482928 +633 328 4 875324298 +870 219 2 879714351 +729 322 4 893286637 +851 1047 3 874789005 +699 523 2 878883038 +435 203 4 884131434 +378 47 4 880055984 +283 100 4 879297160 +234 694 3 892079040 +472 222 5 876882530 +893 471 4 874828897 +536 94 4 882363972 +587 888 3 892871563 +524 661 3 884637467 +541 63 3 883866049 +932 379 2 891251798 +889 70 3 880180979 +781 187 5 879633976 +868 156 3 877103834 +747 31 4 888639222 +305 86 4 886323757 +633 958 3 877210979 +638 96 4 876694917 +907 740 5 880158960 +49 62 2 888069660 +796 89 5 892662222 +64 655 4 889739243 +840 606 4 891205004 +774 228 4 888557237 +919 168 1 875373074 +918 275 4 891987176 +711 660 5 879994825 +929 188 4 880817728 +758 353 4 886743253 +745 510 3 880123720 +183 274 5 892323452 +890 271 3 882404055 +660 328 3 891197585 +38 940 1 892434742 +921 181 5 879379562 +894 319 4 879896756 +763 39 4 878918360 +898 324 4 888294621 +564 245 4 888718546 +707 88 3 886287331 +916 39 4 880845011 +474 318 5 887923708 +655 1516 3 887474630 +922 63 3 891449363 +325 469 4 891478504 +777 42 5 875980670 +535 389 4 879619177 +293 513 5 888905990 +939 258 4 880260692 +846 565 2 883950712 +579 520 4 880951708 +894 1313 3 889229605 +907 181 4 880158692 +896 504 3 887159926 +711 86 5 886030557 +878 1065 1 880871600 +907 287 4 880158913 +151 385 3 879542775 +923 456 4 880388562 +365 237 3 891304278 +472 125 5 875979041 +711 202 4 879993194 +64 258 3 879365313 +773 427 3 888540484 +655 428 3 887428157 +478 68 1 889396582 +314 808 4 877892052 +851 696 3 874728338 +64 28 4 889737851 +476 746 3 883364295 +542 420 3 886533587 +709 53 3 879848272 +82 170 4 878769703 +854 93 5 882814571 +637 847 3 882903191 +864 218 4 888890316 +804 211 4 879444805 +435 919 5 884132184 +864 47 5 888887502 +452 514 3 875261350 +804 768 3 879445493 +825 116 3 880755693 +921 87 2 884673673 +592 71 4 882956668 +921 728 3 879381299 +521 520 3 884477585 +892 481 5 886610011 +798 485 5 875639784 +682 627 4 888523171 +644 117 4 889077418 +896 708 2 887159926 +165 156 3 879525894 +890 479 5 882402238 +890 515 5 882402518 +766 705 4 891309668 +624 319 3 891961140 +831 315 3 891353915 +708 125 4 877325601 +889 1011 3 880177287 +506 945 4 874874585 +711 301 4 889910848 +655 236 3 887426407 +13 777 1 882397084 +519 333 3 883248089 +880 22 4 880167695 +829 198 4 884736647 +825 925 4 880756904 +64 718 4 889739243 +889 67 2 880182541 +716 203 4 879796311 +737 58 4 884314970 +883 707 3 891693139 +851 271 5 883148692 +877 170 5 882677012 +715 1 5 875961843 +911 383 3 892841094 +798 756 3 875296109 +514 79 4 875462520 +63 276 4 875747265 +871 197 3 888193385 +758 436 3 881978572 +796 258 4 892611840 +474 294 3 887916330 +76 955 4 882606789 +303 405 4 879483802 +904 421 5 879735772 +747 530 5 888734041 +532 277 5 893119439 +523 451 5 883702441 +535 100 5 879617531 +807 1089 4 893084724 +721 8 4 877154765 +682 163 3 888521833 +291 575 2 875086699 +498 480 5 881960523 +782 354 2 891497698 +639 48 4 891239295 +721 518 2 877140221 +493 806 3 884131143 +201 640 4 884112029 +939 1054 4 880261868 +210 79 4 887736352 +435 127 4 884131681 +658 195 3 875148059 +934 195 4 891191600 +881 228 3 876537995 +721 735 4 877141039 +421 331 2 892241236 +863 879 2 889289123 +940 181 3 885921310 +642 622 4 886568941 +489 269 3 891362740 +110 939 4 886988042 +823 125 4 878438585 +913 144 5 880946236 +724 308 1 883757170 +851 144 5 875806849 +423 620 4 891395711 +864 182 3 888886913 +804 39 2 879447475 +880 826 3 880167551 +131 287 4 883681351 +661 135 5 876013398 +622 213 5 882670009 +782 1662 4 891500110 +476 732 3 883364250 +782 1296 3 891498030 +788 7 4 880868559 +645 558 4 892053429 +918 582 4 891987723 +85 519 4 879829265 +795 710 3 881265617 +936 106 3 886833148 +7 629 3 891352526 +534 93 1 877807692 +877 269 4 882676098 +796 628 4 893194740 +406 208 2 880131582 +934 411 3 891190377 +290 181 5 880473696 +627 792 4 879530501 +796 588 5 893218728 +846 110 3 883950568 +650 118 4 891381546 +405 646 2 885546202 +861 584 5 881274815 +801 333 5 890332885 +916 65 3 880845327 +889 497 4 880179893 +624 898 1 891961380 +425 1110 1 878738486 +635 15 3 878879346 +633 98 4 875324715 +796 97 3 892690059 +684 1028 4 875810966 +109 826 3 880572064 +864 588 3 888887289 +682 475 3 888521465 +533 443 3 879191595 +454 313 5 888000454 +90 481 5 891384516 +399 39 2 882344310 +886 941 2 876032072 +856 315 5 891489250 +889 127 4 880176845 +788 282 4 880869819 +919 1137 4 875289170 +17 221 2 885272654 +659 693 4 891331417 +844 251 4 877381484 +792 1047 3 877909798 +914 371 4 887122029 +288 327 1 886373007 +916 708 4 880845673 +910 117 4 880822012 +896 187 5 887157924 +561 96 1 885809336 +48 323 3 879434181 +471 420 1 889828027 +921 692 4 884673724 +780 660 3 891363969 +870 649 4 889717102 +293 1228 1 888908041 +698 173 5 886366652 +918 645 4 891988090 +682 109 3 888521539 +308 501 4 887740099 +648 665 2 884882987 +606 209 4 880926018 +650 482 3 891385775 +878 50 4 880865562 +837 762 2 875722318 +735 242 5 876697561 +632 195 5 879459738 +476 393 4 883365135 +682 451 3 888521637 +840 443 5 891209490 +931 303 4 891035917 +295 1297 4 879519529 +817 928 3 874815835 +541 622 3 883874804 +756 860 1 874830068 +844 300 3 877381268 +883 566 3 891696999 +198 201 3 884207897 +943 356 4 888639598 +883 455 4 891916411 +796 272 4 892610692 +311 69 5 884364999 +738 429 3 875353813 +782 244 4 891499321 +885 208 3 885713406 +896 12 3 887158604 +798 98 1 875639581 +699 243 2 879147597 +593 237 4 877728878 +291 844 5 874805804 +385 874 3 879438975 +119 473 3 874775647 +417 780 4 880952880 +529 309 3 882535353 +197 568 4 891410038 +834 50 5 890862362 +749 685 4 878848137 +710 234 4 882064321 +719 69 5 879360536 +790 364 2 885158161 +559 174 4 891035111 +568 483 5 877907281 +207 211 5 878191679 +919 327 4 875288304 +848 135 4 887038022 +305 428 3 886323902 +897 66 3 879990973 +496 652 5 876065693 +15 121 3 879456168 +254 269 2 887346935 +896 1406 3 887160676 +447 737 4 878855907 +902 993 3 879465180 +796 709 3 892676155 +486 301 4 879874113 +736 993 4 878709365 +562 229 1 879195848 +366 288 4 888857598 +283 211 4 879298271 +807 29 4 892530626 +774 428 1 888556090 +896 233 2 887160631 +328 23 3 886036795 +903 977 1 891031810 +843 141 4 879447327 +918 433 2 891987082 +682 824 1 888521907 +773 567 2 888540352 +474 468 4 887926999 +498 496 3 881957905 +629 210 5 880117689 +755 872 1 882569844 +725 321 2 876103700 +271 148 3 886106165 +648 229 4 884882802 +867 50 5 880078027 +870 10 4 879376967 +886 240 3 876031720 +683 609 3 893286502 +640 827 3 886474833 +496 174 4 876066507 +299 118 2 877880111 +886 80 3 876034228 +637 245 3 882900047 +830 15 4 891561065 +848 747 5 887043777 +720 313 3 891262608 +532 588 5 893119415 +229 303 1 891632073 +886 187 4 876031309 +417 506 4 879647471 +405 436 1 885548384 +693 12 4 875482056 +864 210 4 888887469 +798 1540 4 875743576 +59 42 5 888204841 +70 655 4 884150153 +184 29 3 889910326 +586 195 4 884058956 +318 482 5 884496156 +151 686 3 879525035 +806 496 5 882387798 +804 514 4 879443032 +49 717 2 888068651 +828 955 3 891379818 +831 288 1 891354043 +394 141 3 880888815 +766 604 4 891309329 +321 173 4 879440636 +643 29 2 891449901 +787 904 3 888979182 +742 7 3 881335492 +932 177 4 891250609 +543 466 4 874864094 +747 390 4 888640862 +868 621 2 877103449 +782 1528 2 891499577 +889 820 2 880182103 +68 127 4 876973969 +782 1300 2 891499469 +842 344 1 891217835 +174 215 5 886514220 +864 710 2 888888115 +5 425 2 875637440 +562 591 4 879196176 +913 82 3 881368310 +874 276 4 888632484 +714 250 5 892777876 +708 300 4 892718939 +932 617 4 891251588 +906 696 4 879435758 +778 42 5 890670510 +798 768 4 876175980 +682 849 2 888522699 +151 805 4 879542567 +868 229 3 877111154 +823 566 4 878439605 +145 240 5 875270764 +727 148 2 883709438 +919 1152 4 875288612 +548 978 2 891416122 +268 117 4 875742613 +733 740 3 879535886 +185 47 4 883524249 +638 222 4 876694787 +712 69 3 874730085 +486 1226 4 879874902 +864 31 4 888888202 +510 299 3 887667681 +666 147 3 880313661 +916 14 5 880843378 +263 135 5 891299877 +222 588 4 881059537 +916 179 3 880844420 +806 176 5 882387798 +899 428 4 884122254 +457 121 4 882393066 +913 127 4 882044440 +846 612 5 883949421 +181 713 2 878962774 +882 427 5 879877026 +405 36 2 885546859 +391 176 3 877398856 +789 508 4 880332169 +682 186 4 888521413 +643 631 3 891447930 +312 813 5 891698516 +655 1160 3 888685850 +715 42 5 875963112 +693 234 2 875483330 +618 64 4 891306990 +889 194 5 880178248 +653 428 1 880151580 +255 328 2 883215630 +634 678 2 877017632 +271 649 3 885849510 +889 172 4 880177941 +582 405 3 882962133 +827 750 3 892157198 +414 288 5 884999066 +721 299 3 877137447 +836 170 5 885754200 +864 496 5 888887944 +786 133 5 882843353 +354 896 4 891180527 +804 23 4 879442557 +541 427 4 883864638 +243 699 4 879988397 +130 350 4 886023989 +894 1226 4 879896920 +802 330 2 875985031 +535 640 3 879618742 +686 214 5 879546651 +911 659 3 892838677 +435 210 4 884131799 +637 283 2 882903822 +891 1197 5 891638734 +709 172 5 879848397 +42 132 5 881107502 +933 231 1 874939031 +684 173 3 878761120 +864 144 5 888887830 +708 149 3 892719246 +847 444 3 878940782 +708 476 3 892719385 +259 172 4 883371882 +664 483 4 878091463 +324 763 5 880575589 +854 257 3 882812877 +911 143 5 892840889 +751 239 4 889134237 +795 118 2 883254314 +399 225 3 882345212 +823 77 4 878438958 +913 1 2 880758579 +796 50 5 892660147 +880 90 3 880174858 +897 228 4 879991607 +577 62 3 880475504 +868 470 1 877107924 +457 222 5 882392853 +548 17 3 891044596 +474 111 4 887916203 +850 181 5 883195419 +727 87 4 883710347 +865 919 5 880143713 +592 302 5 882607325 +654 8 5 887864497 +933 433 1 874854251 +807 435 3 892528690 +350 181 4 882346720 +72 642 4 880037479 +715 248 4 875962280 +837 286 4 875721473 +699 1093 3 880696051 +896 232 3 887160427 +345 470 4 884992084 +876 19 5 879428354 +244 171 5 880606385 +883 656 5 891695666 +840 88 4 891209241 +826 127 5 885690482 +569 298 3 879793784 +752 259 5 891208451 +804 566 4 879444820 +648 454 3 884368232 +179 916 5 892151064 +787 326 4 888979547 +726 248 2 889832422 +344 529 5 884814668 +222 542 2 878183837 +788 646 3 880868513 +426 663 4 879444604 +551 111 5 892783612 +898 683 3 888294775 +880 173 3 880174780 +451 326 4 879012431 +749 1028 4 878849149 +669 664 4 892550104 +608 327 2 880402450 +669 96 2 891260392 +703 181 5 875242762 +565 707 5 891037453 +804 510 5 879441346 +940 8 5 885921577 +900 429 2 877833747 +878 274 3 880869003 +567 514 5 882425701 +645 89 4 892053483 +901 546 4 877127250 +805 383 2 881706146 +847 7 3 878775647 +190 7 4 891033653 +924 283 4 884371495 +77 527 4 884752853 +868 136 5 877104414 +880 810 3 880168411 +881 11 4 876537752 +577 240 3 880470884 +881 174 5 876537718 +903 223 5 891033354 +903 56 5 891466376 +586 96 4 884059110 +506 71 5 874873068 +799 319 4 879253668 +545 266 2 879898447 +757 471 4 888444738 +30 751 3 884310551 +864 94 4 888891423 +773 145 3 888540390 +804 89 4 879441524 +846 449 3 883950950 +645 32 5 892054906 +400 748 2 885676411 +914 155 5 887124121 +184 504 4 889908630 +35 264 2 875459099 +742 475 4 881335492 +119 475 4 874775580 +901 144 5 877288015 +621 780 4 874962824 +697 591 4 882622016 +527 640 4 879456464 +566 210 4 881650030 +585 86 5 891284016 +940 153 2 885921953 +347 106 2 881652813 +655 1141 3 888474986 +881 134 5 876539260 +892 648 4 886607642 +495 432 5 888633396 +645 514 5 892053686 +455 435 4 879110544 +788 630 2 880869355 +905 717 1 884984149 +749 932 3 878850333 +621 173 4 874965407 +588 842 3 890015542 +667 23 3 891035084 +618 432 5 891308979 +871 511 2 888193177 +90 220 4 891385165 +708 347 3 892718637 +286 929 4 876522098 +587 876 2 892871536 +484 88 4 891195179 +932 652 3 891248893 +485 286 2 891040897 +655 1635 3 887432079 +681 310 3 885409572 +661 192 4 888299461 +846 1029 1 883950859 +645 469 5 892054707 +295 511 5 879516961 +907 821 5 880160008 +798 705 4 875638447 +720 898 4 891262812 +932 566 4 891251463 +115 772 4 881171273 +648 250 4 882211464 +643 659 5 891447127 +627 523 4 879529767 +910 282 3 880821319 +782 1160 2 891500150 +886 222 4 876032615 +629 223 5 880117813 +18 137 5 880132437 +716 723 4 879796072 +896 429 5 887158866 +721 199 4 877147323 +652 257 2 882567356 +628 1296 5 880777096 +933 182 4 874854853 +798 1411 1 875639656 +511 260 4 890004916 +484 231 2 891195476 +905 326 3 884983034 +934 183 2 891190903 +503 58 4 880472565 +592 325 2 882607647 +618 1225 2 891309382 +493 134 3 884132246 +655 578 2 887488694 +13 326 3 882140792 +773 13 4 888539471 +69 334 3 882125962 +774 501 1 888558019 +641 1039 4 879370337 +725 286 5 876106729 +655 178 4 887427009 +897 200 5 879991434 +934 269 2 891188367 +374 526 4 880938965 +930 651 3 879535574 +851 182 5 875731406 +741 134 5 891455381 +566 11 3 881649962 +346 182 5 874948031 +885 419 4 885716328 +385 2 3 879446786 +200 172 5 884128554 +831 687 2 891354424 +566 631 4 881650605 +354 655 3 891217575 +505 419 3 889333560 +655 1014 3 890103072 +548 55 5 891044482 +883 462 5 891693085 +864 91 5 888887172 +489 245 3 891366838 +868 412 5 877112001 +431 294 5 877844377 +268 24 2 876514002 +823 401 4 878439365 +756 258 3 874826502 +796 722 3 893047460 +643 240 5 891445823 +635 328 3 878878752 +647 173 5 876534131 +923 762 4 880387525 +391 1163 2 877399864 +933 399 3 874939157 +896 196 3 887159173 +420 1347 3 891356927 +758 301 3 880672427 +749 642 2 878848137 +645 709 3 892054570 +786 102 4 882844096 +104 340 3 888441878 +756 742 3 874830026 +505 259 3 888631208 +345 91 4 884993016 +417 4 3 879648360 +709 808 4 879848645 +942 539 3 891282673 +749 229 3 878849482 +824 289 2 877021044 +730 273 2 880310324 +804 755 3 879445305 +663 693 4 889493732 +648 726 3 884882271 +892 203 5 886609390 +766 8 5 891309329 +653 186 5 880151557 +460 100 5 882912418 +579 69 2 880951868 +882 929 1 879863176 +539 319 5 879787770 +667 269 5 891034444 +622 125 3 882590457 +9 50 5 886960055 +694 52 4 875729667 +405 65 1 885546379 +903 467 3 891033606 +610 352 1 888702795 +913 430 2 882544617 +716 659 4 879794962 +654 154 3 887864797 +631 1527 2 888465351 +931 245 4 891037024 +693 159 4 875483521 +856 749 3 891489450 +707 1163 4 880060724 +773 183 4 888539962 +787 302 3 888979123 +674 1197 3 887763386 +748 181 4 879454455 +59 30 5 888205787 +802 260 4 875984938 +667 962 2 891035164 +846 1188 2 883950524 +643 121 4 891445741 +394 651 4 880888223 +216 546 2 880233197 +913 117 1 882544673 +894 691 3 889468982 +56 167 3 892911494 +727 249 2 883708927 +918 1101 4 891987824 +294 840 3 889242516 +393 451 3 887746995 +663 124 3 889492390 +721 145 4 877139773 +788 55 4 880868876 +868 50 5 877103449 +435 1014 2 884134515 +577 470 5 880475245 +896 942 4 887160209 +670 199 4 877974549 +527 187 5 879455999 +884 736 3 876859329 +659 494 4 891383965 +655 1499 3 888685556 +899 463 4 884121342 +514 419 4 875463468 +551 386 1 892785364 +784 272 4 891387077 +890 435 5 882574437 +787 1433 3 888979181 +524 170 4 884634785 +854 293 5 882812102 +493 204 5 884130852 +394 204 5 880888223 +307 433 5 879283625 +643 385 3 891449344 +840 631 4 891205004 +11 729 4 891904637 +655 1070 4 887474050 +796 510 3 892761578 +425 898 3 890346705 +880 195 4 880167670 +456 405 1 881371942 +782 935 2 891500150 +480 50 4 891207951 +806 461 4 882388706 +392 513 5 891039049 +749 100 3 878849052 +766 22 3 891309261 +721 197 4 877140221 +314 365 3 877891465 +361 194 4 879440345 +698 423 2 886366731 +893 724 3 874830160 +916 474 4 880844175 +544 338 2 884796062 +776 656 5 891628678 +527 661 5 879456186 +796 549 3 893047208 +85 1018 4 882995668 +675 463 5 889489003 +534 148 4 877808198 +13 746 3 884538766 +942 313 3 891282396 +746 183 4 885075165 +117 184 3 881012601 +776 177 4 891628937 +682 385 3 888522456 +826 397 3 885690854 +326 611 3 879875572 +562 194 5 879196075 +588 1411 1 890032421 +712 398 4 874957179 +429 843 1 882387114 +303 401 3 879543003 +552 127 4 879221580 +843 270 4 879442947 +859 1132 3 885775513 +756 121 3 874829152 +389 485 5 879991081 +798 208 3 875639010 +314 827 4 877887292 +686 209 5 879545550 +606 148 3 878150506 +941 124 5 875048996 +804 423 3 879441371 +293 143 4 888906428 +648 412 1 884367318 +674 257 4 887762641 +347 210 4 881653973 +773 210 2 888539398 +939 689 5 880260636 +642 401 4 885606178 +724 307 3 883757468 +761 1157 5 876189775 +883 197 4 891696689 +699 283 4 879147032 +119 7 5 874775185 +405 187 5 885544739 +733 124 5 879535213 +303 123 4 879468149 +370 390 1 879434587 +514 209 3 876062951 +577 410 3 880471170 +936 281 4 886832903 +847 1086 4 878775404 +825 257 4 880931887 +92 1216 4 886442386 +450 336 3 882370464 +880 368 1 880175503 +870 218 4 889717102 +711 704 4 879993650 +833 1012 4 875036418 +561 1059 1 885808867 +128 416 3 879967367 +15 249 1 879455764 +338 143 2 879438652 +654 98 5 887864641 +896 299 1 887235709 +823 193 5 878439113 +889 1218 4 880178511 +806 122 3 882385694 +2 289 3 888979353 +710 333 3 882063367 +94 195 3 885870231 +655 1121 3 887428938 +711 995 4 879991134 +394 672 3 880888540 +897 8 3 879990744 +926 322 2 888636270 +95 215 4 879198109 +849 427 4 879695317 +479 915 4 893281238 +246 447 3 884922714 +571 45 4 883354940 +936 952 4 886832966 +884 582 5 876859351 +875 478 4 876465025 +922 229 4 891447777 +532 491 5 893119491 +91 1192 4 891439243 +788 174 2 880868316 +62 134 4 879373768 +699 762 3 878882455 +561 379 2 885810428 +338 517 5 879438505 +290 234 3 880474451 +458 762 3 886395065 +524 582 3 884635326 +530 176 3 886202320 +332 748 4 887916385 +747 989 3 888638508 +533 1048 3 889450842 +642 28 5 885603636 +883 312 3 891692044 +474 655 5 887924083 +180 53 5 877442125 +871 56 5 888193177 +344 50 5 884814401 +922 451 4 891448247 +535 950 3 879618019 +311 747 3 884364502 +650 121 3 891369836 +532 203 5 893118712 +181 743 1 878963241 +768 744 3 880136272 +896 135 3 887158926 +363 239 3 891495272 +854 922 5 882813143 +561 655 3 885807930 +886 43 2 876033134 +389 15 2 879916135 +458 484 5 886397109 +406 492 4 879445859 +537 550 2 886032246 +663 187 5 889493869 +399 545 2 882345164 +525 100 4 881086108 +913 310 3 880753802 +758 98 5 881976289 +940 56 5 885921577 +500 286 1 883864527 +911 313 2 892838135 +880 1296 3 892958128 +495 196 3 888632546 +922 191 3 891454587 +514 272 4 885180603 +758 346 2 883099368 +537 855 3 886030937 +790 472 2 884462416 +823 459 4 878438379 +28 5 3 881961600 +271 1117 3 885847763 +630 98 5 885667898 +178 161 5 882827645 +886 506 4 876032308 +641 511 5 879370337 +798 707 2 875303559 +579 7 3 880952006 +870 244 3 875051043 +844 181 5 877388183 +514 168 4 875308925 +805 28 3 881698243 +561 849 2 885810193 +793 591 4 875104752 +580 597 1 884126077 +758 171 5 881976262 +658 735 3 875148108 +900 121 2 877832803 +655 18 3 888984478 +889 729 3 880179785 +620 28 4 889988121 +762 515 5 878719186 +870 23 4 875050865 +307 472 3 877123683 +798 769 2 876249507 +919 7 3 875288848 +640 91 4 874777998 +92 729 4 875656624 +913 475 4 880757473 +922 290 4 891451277 +524 39 5 884636583 +480 527 4 891208327 +85 316 3 893110061 +741 742 4 891455766 +900 1028 2 877833393 +733 126 2 879535938 +942 269 2 891282396 +833 33 2 875134264 +780 183 2 891363860 +847 71 4 878940653 +84 282 4 883450434 +880 269 4 892958090 +724 286 1 883758268 +514 22 4 875463202 +329 50 4 891655812 +334 209 3 891545821 +551 100 4 892776486 +727 550 4 883712519 +764 282 4 876243291 +756 402 4 874831383 +721 239 4 877147007 +269 639 4 891447216 +654 638 4 887864868 +676 302 5 892685224 +795 705 4 883250829 +831 317 4 891354798 +921 173 5 884673780 +219 906 4 892039575 +593 51 3 875671982 +840 582 5 891204265 +721 937 3 877137359 +689 150 4 876676134 +749 812 3 878849586 +883 405 3 891916961 +45 742 4 881013176 +487 559 3 884029657 +888 792 5 879365054 +804 367 3 879445605 +236 135 2 890116033 +313 651 3 891014552 +821 274 5 874792778 +649 298 4 891440293 +878 100 2 880865661 +682 243 1 888516865 +922 151 5 891449152 +712 486 4 874730521 +731 611 3 886184683 +871 896 3 888192858 +747 524 5 888640222 +435 268 5 884130688 +630 69 3 885667939 +621 577 3 874963446 +889 202 3 880178773 +243 631 4 879988298 +868 567 1 877113481 +682 148 3 888520923 +348 117 4 886523256 +373 367 3 877100458 +843 590 3 879443544 +671 22 4 884035406 +608 195 1 880405527 +882 195 5 879867568 +782 259 1 891498267 +712 88 4 874730155 +880 276 4 880166872 +806 588 4 882388795 +85 428 5 879454235 +514 88 4 875463468 +122 57 2 879270644 +666 121 3 880313603 +705 193 3 883518903 +823 64 5 878437753 +919 15 5 875289250 +429 196 4 882385012 +222 412 1 877564050 +158 107 3 880132960 +916 593 4 880843551 +665 483 4 884293610 +385 1070 5 880870206 +589 333 5 883352402 +919 475 3 875288898 +523 14 5 883700991 +418 1313 2 891282813 +624 313 5 885215463 +753 286 3 891399477 +618 193 4 891308432 +714 291 3 892777117 +143 286 2 888407586 +757 56 4 888445279 +187 173 5 879465307 +916 831 1 880843864 +561 660 3 885810144 +1 240 3 875071898 +838 7 5 887064072 +532 427 5 892519934 +924 836 3 885457975 +881 218 4 876539260 +846 241 4 883947911 +943 186 5 888639478 +940 355 1 889480552 +815 134 4 878694613 +149 340 4 883512775 +10 617 5 877892160 +13 917 4 892015104 +674 597 3 887763150 +883 692 3 891694249 +870 210 4 879270313 +721 261 3 877137214 +679 63 3 884489283 +393 259 4 887742851 +875 321 3 876464755 +919 201 4 875920887 +864 12 5 888886984 +699 930 2 880696344 +554 202 4 876232956 +223 1052 1 891550404 +682 175 3 888517265 +847 218 3 878940254 +921 132 3 884673699 +854 225 1 882813364 +655 735 3 887427338 +774 429 1 888556698 +726 535 3 889832806 +89 86 5 879459859 +771 189 5 880659815 +640 693 5 874778207 +617 448 3 883789507 +234 939 2 892333798 +303 1335 3 879485048 +850 82 5 883194950 +798 380 3 875638680 +417 185 3 879647708 +843 209 3 879446806 +655 423 3 887693376 +334 190 4 891547083 +863 288 4 889288911 +305 464 3 886322796 +881 304 3 876535642 +134 294 4 891732365 +889 451 3 880181488 +648 1271 4 884882234 +788 187 4 880867933 +452 501 3 885476356 +823 747 4 878438585 +198 939 3 884209412 +515 300 5 887658975 +729 362 4 893286637 +750 303 4 879445911 +627 735 4 879530600 +555 505 4 879975474 +826 332 3 885689821 +646 678 3 888529127 +495 182 5 888632043 +22 405 1 878888067 +661 249 3 886841443 +508 514 5 883767301 +864 102 4 888890997 +896 739 2 887159723 +294 986 3 889242810 +657 294 5 884238247 +246 257 4 884924327 +796 566 4 893048343 +707 1479 5 886287854 +292 181 4 881104068 +655 1068 3 891585417 +870 792 3 879540005 +880 595 1 880243541 +786 127 4 882841692 +435 427 3 884131542 +638 450 1 876695415 +923 1028 4 880387624 +293 168 4 888905716 +299 1068 3 877877600 +916 944 2 880845476 +908 147 2 879722932 +152 763 5 884018370 +43 100 4 875975656 +892 187 5 886608682 +659 197 5 891385080 +847 104 3 878939266 +450 235 3 887661217 +42 595 1 881106582 +151 1047 2 879543036 +305 13 3 886323998 +892 178 5 886608681 +23 679 3 874788443 +862 480 5 879304761 +847 756 1 878776020 +643 435 5 891447314 +648 153 4 884881621 +586 172 4 884058708 +476 94 2 883364780 +234 724 4 892335739 +168 931 3 884288329 +601 96 2 876350185 +916 1268 3 880845451 +916 381 3 880845738 +727 291 4 883709009 +841 344 3 889066880 +862 1199 2 879303729 +537 641 4 886031178 +650 239 3 891385876 +881 333 5 876535642 +564 117 4 888730974 +883 174 4 891696824 +606 596 4 878149415 +710 418 3 882063685 +62 451 3 879375716 +523 523 3 883703495 +454 472 3 888266874 +719 423 3 879360583 +863 749 2 889289419 +782 1391 4 891500066 +918 658 3 891987059 +551 415 4 892784710 +429 786 2 882386966 +889 879 3 880176596 +194 168 5 879521254 +711 559 3 879994020 +790 89 4 885155770 +943 215 5 888639000 +774 210 1 888555964 +618 288 3 891307343 +919 508 5 875288570 +804 134 4 879444890 +599 476 4 880953441 +655 2 3 888474138 +851 157 4 875731605 +836 238 4 885754200 +273 313 3 891292873 +846 518 4 883948571 +804 480 5 879442057 +730 301 1 880310202 +407 153 4 875042569 +655 511 3 887427009 +647 71 4 876534275 +629 69 5 880117485 +514 81 4 875463416 +855 45 3 879825383 +707 490 2 886285792 +588 98 1 890015324 +530 174 4 883784503 +183 649 4 891464079 +755 887 3 882569845 +379 577 4 892879355 +899 228 3 884121572 +620 834 2 889987073 +28 96 5 881957250 +934 461 4 891191660 +476 245 4 883365784 +102 550 2 888801812 +559 660 1 891034250 +833 108 2 875036102 +694 606 4 875727189 +670 135 3 877974549 +435 609 4 884132873 +389 709 4 879991115 +224 555 3 888104030 +887 183 1 881379449 +899 135 4 884121857 +894 937 4 880415903 +764 946 4 876246555 +875 527 4 876465230 +891 15 4 891638780 +648 810 4 884883031 +458 1 4 886394423 +943 443 2 888639746 +881 100 4 876536414 +919 286 4 885059400 +788 291 4 880870905 +536 487 4 882359813 +712 367 4 874956841 +397 480 5 885349476 +59 929 2 888203018 +624 100 5 879792581 +474 471 3 887915307 +662 10 4 880570142 +918 28 4 891987541 +833 1017 4 875036017 +84 79 4 883453520 +932 671 3 891250915 +913 42 3 880824372 +919 289 3 875288164 +737 196 3 884314694 +655 315 4 887424720 +267 158 4 878973126 +807 235 1 892530173 +715 658 4 875963693 +760 288 4 875665867 +887 8 4 881380025 +892 385 3 886608000 +936 298 4 886832134 +727 161 4 883712716 +934 228 4 891193778 +885 97 5 885714136 +919 819 3 875288805 +698 606 2 886366770 +651 285 4 879348966 +639 162 3 891239380 +547 319 4 891282926 +622 202 4 882670252 +632 95 5 879456955 +840 489 3 891204385 +276 1483 3 892436354 +559 87 4 891034003 +313 742 3 891016932 +690 722 3 881177937 +894 877 3 882403414 +592 895 3 882607528 +110 63 3 886989363 +660 1050 4 891200678 +287 941 3 875335424 +685 324 3 879451401 +897 926 4 879993674 +757 1240 3 888445820 +693 977 3 875483597 +835 180 5 891033675 +648 208 5 884796652 +788 380 3 880869215 +693 664 2 875482689 +506 566 4 885135819 +501 122 4 883348236 +488 294 4 891293606 +833 206 4 875038671 +260 270 5 890618728 +495 96 4 888634110 +844 1039 4 877382717 +886 230 2 876033106 +918 487 4 891987446 +291 717 3 874834388 +537 343 2 886029153 +639 786 3 891241022 +798 1297 3 875916505 +716 257 5 879793465 +224 591 3 888082584 +653 213 2 880150190 +257 14 5 879029742 +864 419 4 888887984 +758 8 5 881975577 +890 204 4 882403085 +463 749 3 877384882 +806 50 5 882385200 +189 1056 3 893265123 +868 475 4 877104987 +932 483 5 891249962 +486 306 1 879874063 +886 474 4 876031720 +374 1197 4 880393892 +932 157 4 891250667 +682 769 2 888522951 +758 212 4 881976919 +385 421 2 879446026 +887 934 4 881379188 +713 302 4 888882040 +664 137 3 876524641 +805 1091 2 881695591 +836 258 4 885753475 +896 168 4 887158738 +406 216 3 880131741 +663 108 2 889492796 +625 678 3 891262561 +496 277 5 876072633 +790 222 3 884461441 +622 207 5 882592278 +102 449 4 888802176 +425 5 1 878738887 +847 735 4 878940890 +399 890 2 882340517 +776 441 2 892920403 +819 321 4 880381928 +821 1060 5 874793022 +942 511 4 891282931 +758 200 5 881977229 +758 1039 5 881975787 +334 193 4 891547334 +452 82 3 886149040 +935 257 2 884472110 +416 164 5 893214041 +776 437 1 892920446 +707 696 4 880061405 +561 72 2 885810084 +270 185 5 876955938 +884 300 1 876857789 +537 1025 1 886029488 +748 189 4 879454749 +886 288 4 876031122 +421 208 2 892241554 +524 235 1 884628059 +452 23 2 876825745 +162 826 3 877635965 +99 326 3 885678267 +909 300 5 891919232 +659 319 3 891331322 +843 204 3 879448073 +405 1334 1 885549789 +460 1137 3 882912235 +543 1174 3 876894981 +927 456 2 879182709 +327 178 4 887745661 +49 367 3 888069117 +361 443 3 879441253 +194 265 4 879520991 +907 813 5 880158770 +846 196 4 883949290 +488 742 4 891295023 +910 332 2 880821834 +707 747 3 886287900 +125 663 3 879454956 +901 476 5 877289381 +648 180 1 884368643 +714 151 3 892777812 +897 485 3 879991037 +550 181 5 883425283 +683 300 3 893283728 +227 100 5 879035251 +757 233 3 888467038 +62 172 5 879373794 +922 212 2 891448473 +314 1094 1 877887065 +831 12 5 891354687 +774 986 1 888558594 +700 531 4 884494380 +514 185 3 875311225 +179 353 1 892151270 +919 742 4 875289499 +181 593 1 878962349 +554 597 4 876232176 +655 156 2 887430634 +881 230 4 876539291 +934 315 4 891188403 +689 118 4 876676433 +804 468 4 879442687 +655 211 3 887428334 +750 328 4 879445808 +908 200 2 879722642 +727 1016 3 883709802 +815 432 5 878694952 +11 52 3 891904335 +610 505 4 888703537 +863 691 3 889289067 +936 111 4 886832597 +474 748 3 887914979 +840 367 4 891205287 +43 755 3 883956075 +522 205 4 876961020 +718 751 5 883449953 +753 347 2 891401167 +663 323 2 889492230 +708 508 4 892719193 +457 485 4 882396832 +919 325 4 875288418 +606 156 4 880924789 +778 186 4 890802724 +897 736 3 879991186 +207 685 3 876018471 +631 310 4 888464980 +756 245 3 874832096 +625 4 4 892000372 +819 315 5 884618354 +671 472 5 884036411 +745 64 5 880123905 +151 611 4 879524514 +615 528 4 879448399 +1 7 4 875071561 +811 289 2 886377426 +747 463 3 888732695 +847 257 3 878775863 +595 815 3 886921584 +747 209 3 888640437 +389 946 3 880088363 +279 713 3 886015169 +344 19 4 884899346 +451 886 4 879012773 +721 455 5 877138884 +709 578 4 879848645 +919 1086 4 875289322 +896 572 2 887160676 +758 25 4 881977669 +738 193 5 892844112 +592 340 5 882607476 +798 961 1 875303558 +771 216 5 880659894 +783 750 4 884326274 +881 524 4 876537825 +391 322 3 877398619 +429 530 4 882384986 +625 100 3 891878363 +279 462 3 875309911 +227 1068 4 879035289 +663 307 4 889491690 +649 282 4 891440330 +384 879 4 891273874 +62 739 2 879375454 +753 71 5 891401457 +606 717 3 878147770 +454 367 4 888267128 +648 83 4 884628482 +848 603 5 887047308 +883 919 4 891692713 +938 1033 2 891357137 +921 82 3 884673954 +586 1207 2 884065879 +639 647 3 891239217 +634 929 3 877018033 +802 218 3 875985767 +210 402 5 887737171 +796 389 4 893219092 +747 945 4 888639481 +580 343 5 884124304 +542 168 4 886532602 +354 13 3 891216825 +452 607 5 875266680 +782 1142 3 891499243 +929 474 4 879640126 +933 734 2 874938644 +551 673 4 892778164 +731 15 4 886182632 +886 229 3 876032509 +710 95 3 882064434 +486 16 3 879874583 +907 118 4 880159360 +498 531 3 881957195 +94 423 4 885873302 +118 188 5 875384669 +751 588 5 889133291 +537 185 4 886030805 +603 450 3 891955972 +465 357 4 883531325 +146 269 4 891457591 +846 202 5 883949594 +682 223 1 888517011 +710 1019 4 882064555 +659 443 5 891385136 +659 642 2 891386492 +854 919 4 882812406 +255 743 1 883217030 +409 1159 2 881109019 +97 172 4 884238939 +650 38 3 891381784 +833 195 5 875038529 +752 358 4 891208452 +786 121 2 882842416 +650 21 2 891387767 +886 241 4 876032531 +747 189 4 888639272 +666 478 4 880139526 +527 154 3 879455814 +637 125 3 882903582 +656 326 1 892318888 +854 288 5 882814571 +416 118 2 876697479 +863 900 3 889289067 +880 123 4 880167247 +23 1004 3 874788318 +399 658 3 882350198 +682 211 4 888522311 +833 642 3 875038626 +792 151 3 877909753 +314 117 4 877886484 +407 395 1 876348957 +862 431 5 879305312 +666 805 4 880568436 +94 939 4 885873423 +96 200 5 884403215 +705 655 3 883518852 +406 23 4 879446529 +665 421 4 884294552 +70 678 3 884063627 +793 257 4 875103901 +369 335 2 889428072 +458 1109 4 886397318 +303 873 3 879466214 +405 418 5 885548836 +116 145 2 876452980 +751 142 4 889299175 +393 892 3 887742939 +454 312 3 888015842 +42 1048 1 881106220 +942 304 5 891282457 +510 261 2 887667780 +490 100 3 875427629 +577 96 4 880474257 +655 276 4 887473778 +201 12 4 884111269 +405 1540 2 885548877 +499 166 5 885599334 +806 17 4 882389506 +653 429 3 878866679 +799 484 3 879254077 +707 1141 3 886285791 +489 754 5 891448109 +848 642 5 887039164 +881 356 3 876539477 +556 209 5 882136162 +766 485 3 891309913 +653 1267 1 880153253 +848 179 5 887042377 +456 98 3 881372779 +863 1234 3 889289619 +885 28 4 885714136 +435 401 3 884133447 +802 258 5 875984532 +429 587 3 882386895 +766 196 3 891309703 +919 318 5 875372903 +422 773 3 879744183 +709 567 2 879848272 +757 350 3 888443511 +864 501 3 888891836 +913 185 4 881367173 +551 40 1 892785056 +532 1162 2 888631576 +574 896 2 891279013 +940 147 4 885921893 +643 127 5 891445476 +932 209 5 891250258 +802 424 2 875986303 +748 650 1 879454573 +741 121 2 891455766 +619 750 3 885953537 +823 98 5 878437890 +40 1038 1 889041741 +655 896 4 887474605 +591 45 5 891031257 +897 742 3 879993314 +880 272 5 892958036 +617 672 3 883789537 +804 234 4 879442862 +648 29 2 884883149 +903 118 4 891031794 +660 294 3 891197701 +666 48 4 880139180 +666 435 4 880567883 +450 190 4 882373385 +747 21 2 888733111 +880 471 4 880167114 +653 779 1 880153467 +943 210 4 888639147 +627 174 3 879531195 +58 1008 1 884304609 +322 33 4 887313946 +593 131 4 876506731 +799 173 5 879254077 +506 1019 5 878044851 +619 554 3 885954238 +933 219 1 874854217 +741 781 4 891457424 +798 709 5 875914860 +334 866 3 891545239 +655 751 3 888474960 +807 597 4 892705277 +890 193 4 882402826 +766 613 3 891310009 +486 1137 5 879874545 +488 754 4 891293606 +655 796 2 887428280 +688 341 5 884153606 +447 257 3 878854520 +880 697 2 880242281 +886 451 3 876033965 +658 477 3 875145750 +454 751 4 888265376 +934 239 4 891194802 +405 735 5 885545306 +796 623 3 893219122 +388 98 5 886441015 +661 197 4 876013975 +374 276 4 880393056 +914 736 3 887123465 +798 204 4 875742878 +214 188 5 892668173 +911 7 4 892839551 +10 230 4 877892210 +405 203 1 885548578 +760 120 1 875669077 +588 366 5 890027430 +480 197 3 891208215 +29 180 4 882821989 +545 177 3 879899299 +925 678 3 884717790 +201 692 3 884114895 +778 150 3 890802549 +246 941 1 884923547 +94 208 4 891720643 +939 476 5 880261974 +780 485 4 891363826 +301 282 4 882074561 +936 236 5 886832183 +917 1014 2 882911246 +757 969 3 888468741 +503 79 5 879454675 +429 234 4 882386566 +303 1097 3 879466523 +825 248 4 880755869 +828 702 2 891037466 +415 204 4 879439865 +742 1 4 881335281 +832 322 3 888259984 +663 150 5 889492435 +705 227 4 883428178 +621 68 4 880739654 +391 651 5 877399133 +671 50 5 875388719 +532 495 4 888634801 +901 568 5 877131045 +875 12 5 876465230 +851 866 3 875730895 +705 843 2 883427796 +649 50 4 891440235 +920 300 3 884220058 +235 1105 2 889654460 +23 59 4 874785526 +897 679 5 879991630 +925 218 4 884717862 +664 518 4 876524290 +712 61 3 874730031 +429 510 4 882387773 +665 196 4 884294026 +229 886 1 891632164 +544 328 3 884795581 +532 105 3 874789704 +887 416 2 881380539 +222 637 2 878183713 +330 237 4 876544690 +896 15 3 887158900 +334 142 3 891548272 +580 125 3 884125387 +29 306 4 882820730 +784 310 4 891387155 +632 845 4 879459677 +600 431 3 888451908 +543 508 4 874861792 +474 515 5 887915269 +751 98 5 889134186 +886 651 5 876034074 +790 226 3 885156396 +556 988 1 882135994 +612 117 4 875324599 +303 725 1 879544153 +921 252 4 879380142 +537 124 4 886029806 +592 343 3 882607476 +13 497 5 882140166 +398 133 3 875726786 +776 218 4 892920321 +943 685 4 875502042 +608 111 1 880406507 +655 363 3 887426770 +846 715 4 883949380 +940 610 1 885921953 +900 508 3 877832764 +578 288 3 887229335 +870 185 4 875050672 +664 529 4 878090125 +732 245 4 882590200 +918 174 3 891987154 +736 1089 1 878709187 +896 70 4 887160086 +385 656 5 879441425 +706 325 1 880996945 +598 269 3 886710494 +653 227 3 880151488 +493 25 4 884132717 +650 561 3 891370113 +865 189 4 880235059 +907 497 5 880160204 +854 846 3 882813453 +561 549 2 885809654 +630 742 5 885666918 +893 122 2 874829249 +933 214 3 874853666 +303 92 4 879467131 +704 648 5 891397667 +889 137 4 880177016 +774 1079 1 888558897 +463 271 1 889943811 +526 121 2 885682590 +800 300 4 887646980 +798 949 3 875914337 +655 144 3 887429594 +537 279 2 886030177 +324 340 5 880574827 +654 95 4 887864204 +366 675 4 888857866 +786 9 5 882841955 +843 225 2 879449256 +898 748 4 888294739 +747 11 5 888638958 +223 329 2 891549079 +222 596 3 877563739 +673 292 4 888787376 +931 362 3 891035970 +693 48 5 875482280 +872 864 3 888479498 +641 513 5 879370150 +848 476 3 887047674 +918 45 4 891986959 +919 477 4 875289025 +883 568 3 891696999 +674 1620 4 887763035 +654 11 4 887864452 +466 899 5 890284231 +360 879 3 880354094 +889 597 3 880182741 +487 841 2 883445168 +29 657 4 882821942 +486 926 2 879875408 +823 135 4 878438379 +276 540 1 874792519 +907 756 4 880159198 +773 12 3 888540448 +676 303 4 892685403 +65 1041 3 879217942 +164 329 4 889401410 +588 815 4 890024829 +653 797 2 880153841 +867 475 5 880078656 +863 751 4 889289122 +437 26 2 880142399 +399 552 1 882350733 +484 183 4 891195323 +731 140 2 886186811 +840 64 4 891204664 +768 25 4 880136157 +435 768 3 884133509 +840 750 4 891202784 +943 12 5 888639093 +935 742 5 884472266 +887 87 5 881380335 +856 323 2 891489593 +5 66 1 875721019 +416 421 5 893214041 +314 38 5 877889994 +586 231 3 884062010 +749 158 3 878849903 +682 591 3 888517097 +853 678 4 879365170 +881 484 4 876537512 +693 177 3 875484882 +480 1121 4 891208689 +880 1197 3 880167151 +823 474 5 878437890 +933 215 3 874854031 +194 186 5 879521088 +523 954 5 883702474 +571 114 4 883355063 +617 357 4 883789386 +755 288 1 882569771 +658 273 4 875148262 +663 815 4 889492759 +624 824 2 879793582 +713 311 3 888882040 +830 310 4 891462185 +463 764 2 877385457 +938 477 1 891356702 +505 501 2 889334373 +615 180 4 879448475 +488 144 3 891293974 +674 827 4 887762899 +798 720 5 875915940 +10 470 4 877891747 +704 272 5 891397015 +231 300 4 888605273 +927 7 3 879177298 +747 416 5 888640916 +889 430 4 880178411 +833 5 1 879818535 +669 408 5 892549316 +890 134 5 882403122 +911 89 4 892838405 +528 427 4 886813104 +878 66 3 880869354 +715 168 4 875963657 +840 707 5 891204114 +669 647 5 891260596 +864 178 4 888887248 +189 1020 4 893265657 +721 1265 3 877138661 +249 50 4 879571695 +487 53 2 883447118 +869 242 2 884490097 +639 196 3 891239456 +766 633 4 891309947 +676 539 4 892685920 +881 476 2 879052198 +622 99 4 882592383 +622 159 3 882670309 +858 269 4 879458608 +552 181 3 879221399 +479 222 4 879460028 +923 174 5 880388872 +448 258 4 891887440 +474 505 5 887924425 +13 145 2 882397011 +59 60 5 888204965 +771 137 4 880659302 +916 28 4 880844861 +436 239 3 887769952 +804 144 4 879444890 +661 707 5 876016858 +774 215 3 888556517 +474 671 3 887926105 +854 815 2 882812981 +660 485 3 891200491 +54 250 4 880933834 +716 842 3 879796846 +87 66 5 879876403 +72 1148 4 880036911 +416 898 4 885114374 +919 418 4 875373945 +560 472 2 879976945 +669 246 4 892549497 +897 22 5 879990361 +702 222 5 885767775 +903 1073 3 891032842 +666 507 3 880567771 +586 411 2 884067199 +651 116 2 879348966 +795 655 3 881530154 +882 597 4 879863106 +897 82 5 879990361 +886 549 3 876032929 +796 286 2 892610876 +226 370 3 883890235 +848 638 5 887038073 +661 318 5 876013935 +816 313 5 891710780 +894 515 4 879896654 +503 489 4 880383625 +876 187 4 879428354 +480 79 4 891208718 +511 887 5 890004747 +892 174 5 886608616 +593 122 1 875660347 +524 126 4 884323427 +833 654 5 875039558 +727 635 2 883713419 +413 289 4 879969027 +919 268 3 875920245 +683 317 4 893286501 +303 204 4 879466491 +892 845 4 886610174 +158 385 3 880134445 +620 924 3 889987164 +655 242 4 887424795 +698 662 2 886367406 +521 108 3 884476020 +405 781 5 885547447 +648 561 2 884883679 +851 1089 3 875730418 +534 7 4 877807780 +748 64 4 879454707 +923 181 5 880387363 +343 217 3 876405771 +896 95 4 887158555 +417 411 2 879649001 +514 1115 4 875462826 +882 122 2 879863831 +940 1401 1 885921371 +919 5 4 875374088 +660 3 1 891405958 +311 222 4 884366852 +774 231 1 888557383 +174 407 1 886515295 +719 582 3 888451748 +919 1114 3 875920823 +263 484 4 891298107 +733 324 4 879535694 +766 62 3 891310475 +435 1069 4 884131489 +485 269 4 891040493 +477 794 4 875941111 +210 1118 4 887730496 +455 124 4 879109594 +540 181 4 882157060 +296 285 5 884196469 +360 285 5 880354250 +343 157 4 876405045 +773 924 1 888540146 +4 362 5 892002352 +868 228 5 877103935 +595 744 3 886921274 +652 984 2 882567180 +846 294 3 883946477 +497 719 3 879363253 +158 208 5 880135093 +668 355 2 890349190 +497 684 3 879310792 +554 527 4 876233137 +342 763 3 874984854 +664 57 4 878092649 +368 573 3 889783617 +893 237 4 874828097 +913 655 4 881725846 +820 271 2 887955020 +784 751 4 891387316 +816 288 4 891710724 +298 845 3 884183773 +851 353 3 890862878 +853 330 1 879365091 +798 88 4 875743642 +595 240 3 886921424 +738 527 5 892844111 +385 176 2 879441386 +435 636 4 884134047 +262 631 4 879793536 +716 606 5 879796214 +207 515 5 878191679 +890 142 3 882916650 +450 102 4 882468047 +683 323 3 893283903 +830 1 4 891560596 +937 268 1 876762200 +796 570 2 893048505 +898 751 3 888294621 +747 14 3 888734152 +720 268 4 891262669 +130 300 5 874953239 +727 413 2 883709710 +716 474 5 879795122 +115 79 4 881171273 +481 498 5 885828619 +70 343 4 884066910 +116 1258 2 876453376 +858 307 3 880933013 +399 24 4 882341239 +632 451 4 879459505 +919 582 5 875373214 +776 194 4 891628752 +896 238 3 887158165 +659 252 4 891045227 +847 476 4 878775961 +682 239 3 888517439 +529 332 4 882535049 +504 575 3 887912401 +606 619 4 880922565 +280 866 3 891701997 +585 1155 5 891285820 +867 181 5 880078050 +502 343 5 883702370 +378 44 3 880055037 +733 1 2 879535129 +276 65 4 874787467 +449 544 3 879959023 +676 174 5 892686459 +488 678 2 891293400 +658 467 4 875147448 +897 132 5 879990531 +896 271 1 887157278 +347 95 4 881654410 +240 349 1 885775878 +911 99 3 892840889 +301 866 4 882075171 +893 259 3 874827960 +790 273 5 884461888 +804 28 4 879445904 +795 928 1 883774317 +796 443 2 893202878 +262 476 3 879962366 +561 210 3 885809146 +380 50 4 885478497 +835 633 5 891033889 +833 826 2 875297292 +931 121 2 891036604 +576 210 4 886986400 +297 124 4 874954353 +326 227 3 879876941 +864 63 3 888893088 +747 117 2 888639780 +213 117 4 878870987 +83 1041 4 880308909 +37 7 4 880915528 +542 196 4 886533452 +733 150 2 879535440 +521 651 3 885253376 +621 50 5 874965407 +880 327 3 880166475 +334 71 3 891546299 +836 654 5 885754150 +660 95 2 891200491 +823 228 3 878438435 +624 980 4 879793358 +21 980 2 874951349 +487 966 5 883530562 +727 808 2 883712245 +922 406 4 891447944 +417 993 3 879646800 +279 95 3 875309950 +881 286 2 876961961 +875 512 5 876465408 +634 740 2 875729749 +690 655 4 881177272 +577 693 1 880475408 +253 121 5 891628142 +435 56 5 884131055 +868 201 2 877104264 +493 109 4 884130416 +286 169 3 877533101 +487 64 5 883445859 +655 581 2 887477000 +634 676 4 875729633 +413 460 3 879969536 +782 347 1 891498139 +854 664 4 882814091 +851 147 4 874728461 +846 663 4 883948873 +913 588 3 881449256 +880 1023 2 880175405 +922 449 4 891447802 +499 430 3 885598989 +880 71 4 880241289 +608 218 4 880406862 +934 223 5 891191659 +151 436 3 879524947 +178 215 5 882826807 +518 1 4 876823143 +544 313 5 884795413 +788 562 3 880871294 +655 82 2 887429559 +773 364 4 888539875 +543 318 3 874863549 +766 173 4 891309261 +596 295 4 883539402 +401 278 4 891032412 +590 1014 3 879439283 +938 763 4 891356656 +936 1086 3 886832134 +902 333 3 879463310 +839 410 1 875752274 +600 665 5 888452152 +897 161 5 879993309 +901 96 5 877130999 +919 1048 3 875289113 +923 831 4 880388211 +700 318 4 884494420 +649 471 5 891440412 +650 168 4 891381546 +538 712 3 877109773 +561 162 3 885809781 +306 303 3 876503793 +847 11 3 878939876 +373 135 1 877098784 +456 485 4 881373574 +436 348 4 887768521 +665 721 3 884294772 +872 280 3 888479275 +185 50 4 883525998 +797 127 4 879439297 +664 692 3 878152048 +618 660 3 891309040 +11 737 4 891904789 +775 302 3 891032742 +627 679 3 879531429 +361 283 4 879440694 +625 22 3 891262899 +795 96 2 881530415 +655 186 3 887428157 +293 1 2 888904861 +936 313 4 886831374 +881 625 5 876538465 +679 748 4 884312926 +897 199 4 879990465 +875 1073 5 876465230 +747 485 5 888640222 +878 707 2 880866409 +678 237 3 879544915 +537 690 2 886028604 +592 431 2 882956510 +892 423 5 886608185 +489 346 5 891362904 +332 226 5 887939092 +66 282 3 883601266 +727 841 3 883709208 +566 173 3 881649945 +894 170 4 882404329 +678 742 4 879544783 +864 229 4 888891836 +109 1016 5 880571661 +705 699 5 883427640 +610 162 5 888703343 +757 79 4 888445750 +776 708 5 891628599 +405 392 5 885545487 +840 168 5 891204868 +566 156 4 881649428 +924 1011 3 886760052 +682 1217 3 888521047 +647 79 4 876530687 +790 69 1 885155209 +751 91 4 889134705 +682 271 4 888518279 +463 1 1 890453075 +921 15 4 879379621 +303 333 4 879466088 +901 13 1 877129839 +94 91 5 891722006 +399 78 3 882348948 +748 515 4 879454662 +763 47 3 878915692 +256 96 5 882164444 +864 100 5 877214125 +633 318 4 875324813 +894 310 3 882403366 +537 190 4 886030552 +789 284 3 880332259 +712 71 5 874730261 +889 317 4 880180849 +67 756 3 875379566 +455 620 3 879108829 +536 304 3 882317183 +902 250 4 879465073 +774 393 1 888556090 +883 213 2 891693058 +847 121 3 878775523 +929 23 3 880817681 +527 129 2 879455905 +472 257 4 875978096 +919 221 4 875288898 +341 335 4 890757782 +844 24 5 877388183 +727 228 4 883711527 +216 27 3 881428365 +866 305 2 891221006 +567 492 4 882425966 +276 1036 2 889174870 +882 82 5 879867885 +629 357 4 880117062 +184 262 5 889906946 +457 388 2 882551343 +537 121 1 886030380 +385 715 3 879446671 +276 55 4 874792366 +900 200 2 877833632 +751 28 5 889133064 +840 1018 3 891211664 +630 1 4 885666779 +595 273 3 886921140 +702 449 3 885767775 +476 319 1 883365561 +899 51 1 884122387 +854 170 4 882813537 +13 853 1 882397010 +896 343 1 887235690 +500 370 3 883865952 +566 879 2 881649273 +933 546 2 874939105 +303 596 4 879468274 +406 558 3 880132276 +913 202 4 880825052 +880 603 5 880243629 +532 452 5 888630585 +897 193 3 879990466 +921 79 4 879380704 +496 705 2 876065382 +189 318 5 893265191 +407 195 4 875119886 +327 56 2 887745805 +655 340 3 888984325 +796 739 5 893047207 +844 1099 2 877387391 +886 231 2 876032247 +450 403 4 887660440 +790 825 3 884462385 +763 625 4 878923488 +294 93 4 877819713 +887 38 5 881381503 +16 591 4 877726944 +41 152 4 890687326 +831 64 5 891354534 +892 214 2 886608897 +788 550 3 880869508 +450 221 4 882395052 +488 873 3 891293152 +727 283 2 883709009 +874 150 4 888632448 +749 25 4 878846697 +941 117 5 875048886 +716 199 4 879796096 +910 252 2 881421035 +932 1512 5 891249038 +671 159 5 883949781 +766 965 3 891310540 +661 418 4 876036240 +455 50 5 878585826 +894 381 3 882404430 +447 228 4 878855682 +688 898 5 884153606 +360 83 4 880355845 +761 293 4 876190130 +243 367 3 879988976 +405 1006 1 885546445 +279 385 4 875309351 +166 315 3 886397478 +938 333 4 891356146 +884 381 5 876859751 +934 100 4 891189511 +756 89 4 874828769 +655 869 2 889282952 +654 535 3 887863962 +865 302 5 880142614 +881 432 3 876537825 +618 731 2 891309514 +178 410 4 882824467 +533 846 2 879365886 +42 826 3 881106419 +790 63 2 885157837 +545 510 3 880347957 +839 1009 3 875752560 +897 182 4 879990683 +833 209 5 875124604 +592 514 5 882955543 +803 339 3 880054834 +622 135 4 882592346 +694 510 5 875726927 +792 597 3 877910478 +870 2 2 879714351 +643 496 4 891446688 +815 542 4 878694820 +666 433 3 880568560 +181 106 2 878963167 +653 176 3 878854145 +290 993 4 880473630 +539 204 4 879788045 +486 950 4 879875069 +628 8 2 880777167 +830 71 4 891561474 +925 682 4 884717586 +407 747 3 876339940 +56 559 4 892910646 +645 22 4 892054508 +796 434 4 892676195 +269 17 2 891449670 +896 631 2 887159464 +435 1552 3 884134187 +923 245 3 880387199 +177 127 5 880130667 +552 1095 3 879222738 +796 188 2 892675654 +871 173 5 888193383 +621 313 5 883798770 +655 128 3 887429732 +401 751 1 891031532 +468 82 5 875292320 +663 1119 3 889493437 +913 175 5 881366473 +890 655 3 882915818 +774 7 2 888558539 +92 199 3 875811628 +472 150 3 875978686 +776 187 4 891628632 +879 15 4 887761865 +867 276 1 880079020 +930 763 3 879535102 +592 357 4 882956102 +521 343 3 884475605 +586 22 3 884058708 +303 461 4 879484159 +887 418 4 881380025 +637 931 1 882905388 +916 222 3 880843419 +588 222 3 890015722 +896 201 3 887158900 +474 187 5 887923708 +911 501 3 892840916 +577 708 3 880475067 +794 420 4 891035662 +939 409 4 880261532 +886 657 5 876031695 +265 288 4 875320024 +853 688 3 879365169 +119 1265 3 891287060 +618 458 3 891309579 +210 98 5 887736429 +854 463 3 882814395 +564 118 4 888730699 +527 69 4 879456490 +618 62 2 891309697 +198 475 4 884205277 +716 482 5 879795867 +704 528 3 891397491 +934 405 5 891189819 +818 690 3 891870301 +405 1487 1 885546724 +537 183 3 886031407 +752 882 4 891207846 +925 56 3 884717963 +689 410 1 876676293 +781 268 2 879633862 +286 413 3 877531226 +655 255 3 887477336 +846 1069 4 883948221 +504 330 4 887831274 +13 566 5 882397502 +280 392 5 891701328 +645 318 5 892053241 +635 682 2 878878685 +178 12 5 882826162 +379 151 4 880525771 +453 826 1 877553430 +198 343 3 884204666 +766 216 3 891310038 +828 14 4 891035819 +773 475 3 888538533 +805 47 5 881698778 +846 492 3 883947737 +111 311 4 891680028 +880 245 2 892958350 +711 42 3 876278831 +901 566 5 877131118 +815 191 5 878693183 +936 927 4 886833052 +841 873 4 889067121 +846 684 5 883948141 +749 1088 2 881602596 +422 567 3 879744218 +693 56 4 875483268 +612 259 3 875324355 +618 403 4 891309608 +700 423 4 884493943 +666 385 3 880568028 +849 174 5 879695469 +591 866 3 891039658 +524 704 4 884636691 +637 740 2 882903914 +663 15 4 889493069 +763 475 4 878915722 +704 493 4 891397190 +450 23 5 887136837 +655 23 3 887426971 +344 588 5 884900993 +882 228 5 879867694 +860 890 2 880829225 +303 1040 1 879485844 +696 748 1 886404268 +90 316 5 891382658 +536 148 4 882318820 +16 732 5 877726944 +894 898 4 883518875 +667 69 3 891035104 +268 96 5 876513953 +498 135 5 881956576 +499 624 2 885599372 +881 403 3 876539330 +828 381 3 891036568 +655 900 3 887424991 +682 790 3 888521942 +692 1047 2 876953616 +893 1218 3 874830338 +916 91 4 880844223 +474 255 4 887915600 +694 89 4 875728220 +479 431 4 879461741 +879 1284 3 887761562 +796 238 3 892761427 +420 190 5 891356864 +616 339 3 891224718 +790 68 3 885157440 +919 4 1 875374032 +128 69 4 879966867 +682 696 4 888518035 +798 1164 3 875637744 +890 215 4 882916356 +249 853 4 879572256 +608 190 4 880405527 +654 3 3 887864071 +923 689 3 880387001 +11 427 4 891904300 +864 628 4 888890639 +683 307 3 893286347 +542 282 3 886533452 +545 168 4 879900156 +900 834 1 877833536 +648 2 4 884882742 +43 421 3 883954853 +618 275 3 891307577 +174 951 1 886515551 +927 367 5 879199250 +671 566 4 884035303 +568 520 2 877907327 +666 135 4 880139562 +798 194 4 875743366 +524 1046 3 884637173 +543 183 4 874864034 +298 125 3 884125912 +608 443 5 880405824 +943 237 4 888692413 +825 130 2 889021235 +756 171 4 874827062 +899 95 5 884121612 +716 615 3 879795269 +796 45 3 892675605 +903 1101 4 891033828 +6 468 3 883602174 +712 168 2 874956357 +834 475 5 890862311 +677 289 1 889399113 +440 361 5 891548567 +374 54 4 880396048 +782 339 3 891498676 +867 168 4 880078604 +28 448 4 881961600 +160 11 4 876858091 +789 1017 3 880332316 +590 740 4 879439645 +95 250 4 882803989 +918 135 1 891986634 +854 24 4 882812352 +749 866 3 878848639 +804 195 5 879442538 +13 262 4 881514876 +714 3 5 892777876 +548 286 1 891042194 +406 724 3 884630973 +915 270 3 891030070 +562 185 5 879196075 +524 461 3 884635287 +190 258 3 891033183 +869 15 1 884491993 +717 300 5 884641808 +387 953 2 886484012 +883 49 3 891694636 +851 828 2 875730482 +186 12 1 879023460 +886 1208 3 876032596 +643 448 3 891449580 +406 444 3 879792928 +76 264 3 875027292 +345 248 5 884994083 +13 393 3 882141617 +727 941 2 883711874 +654 70 4 887864663 +524 4 4 884636498 +776 145 2 892920381 +916 721 4 880845049 +715 64 5 875963242 +929 1 3 878402162 +647 73 5 876537697 +373 233 3 877105588 +901 679 4 877131205 +790 246 4 884461283 +385 357 4 879441339 +788 963 4 880868644 +807 313 5 892527050 +632 527 4 879458429 +790 49 3 885156852 +95 1227 2 880572581 +181 1356 1 878963204 +667 210 3 891035051 +916 281 3 880843727 +416 791 2 886319550 +682 229 4 888520923 +394 24 5 880889350 +852 260 3 891036414 +749 167 2 878848701 +696 302 5 886403632 +868 198 5 877103757 +643 156 5 891446826 +13 127 5 881515411 +346 159 4 874949011 +927 274 1 879181133 +342 152 4 874984341 +404 272 4 883790181 +618 25 2 891308260 +187 137 5 879464895 +666 514 4 880139295 +240 358 2 885775857 +283 291 2 879297867 +774 44 1 888558343 +886 54 3 876031279 +7 592 5 891353652 +734 97 4 891022993 +406 602 3 882480865 +524 259 3 884320358 +732 875 1 882590201 +508 629 4 883775341 +373 88 4 877106623 +878 60 4 880867035 +796 1303 2 893048713 +694 143 4 875727513 +298 549 4 884183307 +485 346 4 891040967 +637 676 3 882903767 +846 1045 3 883950364 +474 284 4 887915645 +854 840 2 882813364 +211 528 4 879459803 +825 385 5 881101641 +788 177 3 880868513 +716 70 4 879796046 +883 331 3 891691654 +751 83 5 889134705 +64 174 5 889737478 +796 611 4 892675694 +498 517 4 881957353 +793 282 4 875104340 +690 1273 3 881180382 +850 294 5 883194367 +655 1648 2 891817435 +766 435 3 891309053 +672 1023 2 879789672 +268 219 3 875744533 +643 144 4 891447286 +900 471 2 877833259 +823 318 5 878438179 +706 148 4 880997464 +588 553 4 890025864 +887 365 5 881381610 +443 333 5 883504654 +26 284 3 891371505 +655 47 3 887426972 +790 7 4 884461796 +721 28 5 877140137 +562 318 3 879194894 +463 16 4 877385830 +880 185 5 880241355 +601 357 4 876349150 +840 430 5 891204418 +684 763 2 878232961 +743 308 2 881277314 +470 319 3 879178216 +387 286 2 886484385 +847 411 1 878939349 +354 710 4 891217340 +13 474 4 881515112 +754 477 5 879451775 +642 993 4 891317955 +764 132 5 876246236 +724 748 1 883757784 +653 984 4 884408848 +683 305 4 893286261 +311 371 5 884366137 +449 640 5 880410734 +505 724 4 889333861 +207 393 4 877838977 +806 179 5 882387870 +756 173 3 874826565 +450 734 2 882471737 +62 204 3 879373737 +514 1600 4 875723266 +790 678 3 884461115 +782 1399 2 891498919 +864 466 4 888887794 +527 86 4 879456438 +537 484 4 886031105 +662 275 4 880571006 +936 250 5 886832337 +694 69 5 875727715 +593 318 5 875671413 +535 955 3 879618338 +804 160 4 879442707 +943 471 5 875502042 +727 421 5 883711181 +164 9 4 889402050 +56 678 4 892676056 +916 51 2 880845658 +896 118 2 887159805 +841 678 4 889067313 +725 9 4 876106243 +669 191 3 892550310 +790 249 3 884461849 +836 89 4 885754029 +5 366 3 875637145 +10 699 4 877893020 +712 462 3 874730085 +934 617 4 891191778 +867 175 5 880078818 +435 824 1 884134627 +887 1079 1 881378773 +707 137 5 880059876 +838 455 4 887064275 +901 748 4 877125480 +311 51 4 884366010 +672 255 2 879789278 +345 200 4 884916339 +474 213 4 887927509 +788 726 4 880871128 +931 310 3 891035876 +290 66 4 880731963 +428 302 5 885943651 +468 963 5 875286036 +731 606 3 886182366 +405 1055 3 885546202 +715 39 3 875964273 +803 303 4 880054629 +788 100 5 880868277 +796 100 3 892611093 +690 402 3 881180497 +544 259 1 884795581 +807 418 4 892529358 +883 559 3 891695692 +144 284 3 888104213 +881 265 5 876538286 +706 682 2 880996945 +840 429 3 891204827 +149 303 4 883512752 +717 262 4 884641621 +773 710 3 888539366 +851 981 1 875730826 +618 181 5 891307263 +761 15 5 876190314 +650 432 4 891386830 +665 566 2 884293741 +650 160 3 891383572 +690 763 4 881177553 +480 185 2 891208718 +764 218 4 876245837 +927 421 4 879194661 +541 265 5 885595654 +452 385 4 875560933 +836 793 2 885754029 +697 122 4 882622248 +885 402 3 885715489 +748 498 4 879454831 +777 818 5 875980669 +857 547 3 883432633 +896 89 5 887159262 +916 1109 3 880844861 +648 1041 3 884882192 +942 193 5 891283043 +256 222 4 882150313 +46 332 4 883611482 +473 246 5 878157404 +655 381 3 887474656 +508 378 5 883777430 +826 181 5 885690526 +840 300 3 891204056 +826 195 5 885690636 +621 568 5 874963797 +661 274 4 876037199 +938 476 4 891357137 +846 133 4 883948534 +41 180 5 890687019 +934 229 4 891194539 +606 501 4 880926084 +663 237 4 889492473 +269 89 2 891448800 +886 384 3 876034074 +806 56 5 882387999 +513 685 4 885062601 +883 60 5 891693012 +774 450 2 888557557 +880 549 4 880243230 +660 809 2 891201565 +407 388 2 876348849 +925 185 4 884717963 +148 238 4 877398586 +940 170 4 885921401 +802 413 4 875986303 +393 322 4 887742825 +607 494 5 883879556 +416 72 2 886318707 +619 176 5 885954053 +95 472 5 879197329 +870 483 5 880584497 +938 9 3 891356413 +161 197 3 891171734 +893 410 4 874828649 +697 1012 1 882622824 +768 16 3 880135943 +368 53 2 889783562 +682 427 4 888523581 +854 238 5 882813648 +712 234 2 874729935 +783 881 4 884326584 +145 436 5 877343121 +450 671 3 882371416 +633 56 2 875326491 +537 642 4 886031342 +109 226 5 880578503 +504 1090 4 887910961 +665 238 4 884294772 +606 919 2 880923349 +537 419 2 886031342 +698 427 1 886367013 +619 562 3 885954341 +453 732 3 877561695 +758 540 3 882054637 +497 169 4 879309992 +610 70 4 888703609 +406 193 4 879445771 +488 239 4 891294976 +890 1039 4 882403122 +796 699 4 893188576 +754 15 5 879451743 +836 192 5 885754118 +399 794 3 882349274 +927 79 3 879184644 +530 1226 4 891568366 +535 276 3 879618965 +403 151 4 879786270 +881 826 1 879052109 +7 39 5 891353614 +524 943 3 884636453 +545 232 3 883115515 +625 423 4 891263760 +862 56 3 879305204 +798 588 4 875638447 +899 69 3 884121125 +500 151 3 883874059 +72 1051 4 880035958 +92 246 4 890251289 +472 140 3 875980823 +592 189 5 882955583 +881 168 3 876537933 +606 825 5 878149689 +804 732 4 879445037 +782 1527 2 891498641 +521 23 3 884478428 +659 1168 4 891386641 +535 566 3 879618338 +884 258 5 876857704 +595 1142 5 886921199 +639 739 3 891240868 +406 565 3 880132319 +650 732 3 891371061 +896 472 2 887160983 +670 485 5 877974945 +663 827 2 889492796 +796 1057 2 893047967 +697 7 5 882622798 +612 1060 4 875324756 +653 712 3 880153639 +437 606 4 880140978 +848 732 5 887048573 +758 344 3 888715390 +267 69 4 878971659 +920 332 3 884219953 +867 270 5 880077780 +62 237 3 879372563 +532 204 5 892863286 +632 739 3 879459210 +787 305 3 888979721 +830 211 4 891898720 +916 530 4 880844202 +121 25 5 891390316 +889 170 4 880177994 +279 152 5 882146492 +918 1171 4 891988646 +694 485 4 875728952 +916 143 3 880844463 +308 42 4 887738191 +653 185 2 880606620 +120 744 4 889490522 +592 268 5 882607286 +665 134 4 884293569 +484 211 4 891195036 +923 546 4 880387507 +815 435 4 878694269 +833 616 5 875124024 +13 322 3 882140792 +863 346 5 889288911 +537 216 3 886031540 +210 205 4 887736393 +833 30 4 875225297 +930 245 3 879534165 +573 276 3 885843964 +479 22 4 879461280 +889 180 4 880180650 +256 265 4 882164479 +851 595 3 875731021 +867 150 5 880078677 +521 222 4 884475799 +286 97 4 877533101 +782 1096 2 891499699 +758 227 4 884999133 +908 648 4 879722333 +679 168 5 884487534 +280 595 3 891701666 +887 24 5 881378219 +622 183 4 882669826 +934 554 4 891194462 +551 67 5 892785164 +862 742 5 879303298 +880 801 3 880175239 +851 1025 2 884205201 +810 288 3 879895233 +567 387 4 882426899 +454 530 2 881960174 +59 620 4 888203959 +533 748 3 890659295 +597 181 4 875340062 +40 343 1 889041790 +922 172 5 891449021 +854 294 2 882811742 +593 301 4 877728878 +779 1028 4 875996932 +393 1531 4 889731794 +897 622 3 879990877 +428 754 4 885943847 +717 888 5 884642133 +698 525 1 886367615 +586 80 2 884067003 +666 196 3 880568129 +933 550 1 874939185 +7 125 4 891353192 +327 1129 2 887745891 +878 20 2 880865715 +52 333 4 882922038 +837 25 3 875722169 +580 271 5 884124248 +150 124 2 878746442 +312 638 5 891698580 +373 69 4 877099137 +92 39 3 875656419 +47 304 3 879439144 +618 7 4 891309887 +676 269 2 892685224 +665 157 3 884294671 +868 1098 5 877107416 +624 236 3 879792358 +495 498 3 888633165 +848 679 3 887047674 +796 794 4 893047320 +714 284 3 892777438 +682 562 2 888522700 +412 214 3 879717253 +551 655 5 892783142 +579 382 3 880952237 +615 135 4 879448599 +901 56 1 877130999 +709 234 5 879847945 +262 727 3 879792897 +677 508 5 889399171 +746 403 4 885075337 +543 62 3 875663687 +575 176 4 878148087 +694 470 4 875727144 +288 98 5 886373474 +554 328 4 878801354 +890 524 4 882403379 +792 276 3 877910305 +860 846 2 887754411 +567 1012 3 882427273 +888 69 4 879365104 +704 679 2 891398726 +537 1163 1 886030347 +841 333 4 889066780 +682 801 3 888521907 +61 310 4 891206194 +844 168 4 877386990 +724 750 2 883757170 +747 304 4 888638370 +158 648 5 880135020 +548 1011 2 891415746 +715 118 2 875962395 +735 117 3 876698897 +795 429 3 880568492 +426 609 3 879441931 +130 1058 5 876252064 +698 428 1 886367955 +64 48 5 879365619 +932 1573 4 891249239 +853 288 4 879364822 +234 702 2 892335707 +831 323 2 891354275 +894 223 4 879897149 +551 531 5 892777485 +537 61 4 886031211 +809 307 5 891036809 +18 516 5 880130861 +374 274 4 880393668 +864 770 3 888891322 +887 187 4 881381610 +835 185 4 891033957 +864 541 2 888892667 +682 1067 3 888520497 +636 118 5 891449305 +663 1011 3 889493027 +689 596 3 876676134 +466 226 4 890285034 +889 676 2 880176874 +360 955 5 880356166 +273 304 3 891292935 +650 109 3 891386167 +601 743 1 876348410 +298 204 4 884182148 +339 293 5 891033282 +655 312 2 892011201 +453 780 3 877561522 +328 347 5 885596118 +887 697 1 881380623 +378 55 4 880046229 +677 300 5 889398960 +346 196 3 874950692 +913 174 5 881367620 +512 325 2 888579139 +405 380 2 885545883 +516 214 3 891290649 +643 447 4 891449249 +862 60 5 879305143 +763 234 3 878923288 +711 485 4 879993278 +451 678 5 879012510 +871 313 5 888192858 +693 528 1 875484613 +712 627 4 874956515 +670 8 4 877975594 +7 663 5 891352220 +669 522 4 892550196 +385 671 3 879443315 +933 110 1 874938664 +698 1115 2 886367955 +902 515 5 879464726 +713 269 4 888882040 +562 173 5 879196308 +447 278 3 878854810 +387 109 4 886481073 +903 98 5 892760784 +484 153 5 891194716 +405 1551 1 885546835 +663 313 5 889491617 +884 640 1 876859161 +912 483 5 875965906 +487 746 4 883529540 +863 268 5 889289240 +602 117 5 888638674 +689 260 3 879211543 +144 276 3 888104122 +883 322 5 891692168 +515 294 3 887658910 +606 181 5 878143047 +476 47 3 883364392 +666 663 4 880139409 +795 135 3 881530126 +804 552 4 879446209 +693 258 4 875481336 +758 1001 5 882055227 +863 748 3 889289456 +786 28 5 882843646 +639 483 5 891240520 +714 1 3 892776123 +831 307 2 891354064 +43 127 4 875981304 +617 453 1 883789715 +567 631 3 882426869 +655 1063 3 888474909 +645 340 4 892051762 +259 293 4 883371861 +846 96 4 883947694 +809 313 4 891036743 +887 718 1 881377812 +903 177 4 891033541 +773 855 2 888538726 +805 331 4 879971214 +810 902 5 890083210 +846 488 5 883948343 +213 64 5 878955680 +919 58 5 875374032 +877 226 3 882678547 +669 531 3 892550310 +435 33 3 884132672 +503 174 5 880472250 +833 452 1 875224178 +871 750 3 888192689 +804 1170 3 879445393 +464 295 5 878355033 +868 159 2 877107416 +907 281 5 881030348 +618 8 3 891307862 +931 744 4 891036463 +721 334 1 877136831 +828 904 3 891618316 +900 325 1 877832320 +931 275 5 891037521 +294 1028 3 877819897 +149 345 4 883512623 +788 931 2 880871551 +711 921 5 879993318 +548 305 1 891042624 +387 550 2 886483252 +393 1270 3 889731673 +201 479 4 884111397 +480 654 4 891208718 +118 508 4 875385057 +690 9 3 881178232 +901 949 3 877131500 +474 127 5 887915188 +537 528 3 886030805 +489 351 5 891446623 +13 78 1 882399218 +276 12 5 874787407 +683 272 4 893286260 +275 199 4 880315170 +653 174 5 878854051 +361 285 4 879440516 +482 328 4 887643289 +523 258 5 883699583 +763 25 4 878922982 +504 216 4 887838450 +846 575 2 883950569 +863 1434 2 889289618 +194 496 4 879520743 +682 628 4 888517364 +625 174 4 891263589 +452 1057 1 876215627 +661 657 4 876013714 +733 1226 3 879535968 +647 405 4 876532747 +805 469 4 881698243 +932 54 4 891251038 +276 303 4 892436271 +889 11 5 880177941 +747 393 2 888733111 +829 170 4 881698933 +435 181 5 884132208 +622 781 3 882671595 +679 1 3 884487688 +922 403 3 891450805 +804 1228 3 879446090 +881 71 4 876538322 +396 823 2 884646647 +198 423 3 884208241 +321 435 5 879439860 +785 168 4 879438810 +100 892 2 891375484 +13 691 4 889316404 +447 12 5 878855907 +457 284 3 882394010 +442 227 3 883390574 +659 474 2 891384739 +697 328 5 882621486 +358 114 5 891270652 +274 472 3 878945918 +387 513 5 886483330 +758 331 4 882322862 +671 1597 1 884035892 +454 147 3 888267455 +654 476 3 887863914 +844 144 3 877387825 +694 118 4 875729983 +907 333 5 885860288 +914 1355 1 887123886 +533 1174 3 882821669 +224 468 4 888104030 +889 979 3 880177435 +455 181 4 878585826 +840 512 5 891205371 +773 184 2 888540041 +514 949 3 886189510 +640 269 5 886803575 +707 64 3 886286170 +626 333 1 878771281 +943 595 2 875502597 +621 588 3 874965208 +843 133 3 879448431 +796 111 4 893047288 +699 137 4 878882667 +883 384 3 891694431 +834 25 3 890862468 +561 524 4 885807888 +889 29 3 880182428 +585 1475 3 891283681 +693 576 2 875484148 +116 298 3 876452555 +752 1127 3 891208170 +906 740 4 879435415 +498 673 3 881958343 +121 736 5 891387992 +532 234 5 889235367 +667 28 5 891034913 +679 727 4 884487961 +890 423 5 882402905 +262 255 3 879790816 +847 216 3 878940356 +883 137 5 891717356 +429 39 3 882386378 +749 658 4 878849404 +557 289 4 880484992 +606 50 5 878142864 +148 174 5 877015066 +937 515 5 876769253 +860 900 3 886354648 +787 877 2 888980193 +877 55 4 882678512 +699 220 2 885775430 +738 231 3 875350995 +869 269 4 884493279 +880 1151 3 880167454 +515 342 3 887659423 +868 825 1 877109435 +922 265 5 891447777 +788 444 3 880870626 +291 800 2 874834944 +500 411 2 883865826 +378 1074 3 880332802 +607 887 3 883878999 +276 39 3 874790995 +338 275 5 879438063 +409 180 5 881107155 +480 249 1 891207975 +432 288 5 889416456 +881 202 4 876537825 +218 204 3 877488692 +795 432 3 881258945 +763 607 4 878917850 +344 83 4 884901503 +790 431 3 885157159 +627 520 5 879529916 +18 242 5 880129305 +488 215 5 891294742 +93 276 2 888705257 +624 117 3 879792446 +796 151 5 893218765 +730 875 2 880310201 +776 432 1 891628977 +679 294 1 884312763 +826 679 2 885690712 +922 71 4 891448580 +450 43 4 887139080 +655 645 3 887474288 +843 56 3 879443174 +466 173 3 890285762 +440 923 5 891577843 +95 399 4 880572449 +843 566 3 879444766 +890 637 3 882404610 +671 1109 2 883546677 +804 692 5 879442122 +870 154 4 876319311 +236 510 3 890118543 +870 988 2 875050439 +476 90 3 883364433 +749 98 5 878847404 +899 471 4 884120007 +921 190 2 884673602 +932 589 5 891250609 +916 727 4 880845049 +690 70 2 881179584 +324 125 5 880575714 +122 357 3 879270084 +698 175 3 886367406 +468 135 5 875287895 +809 302 5 891036743 +747 603 5 888639362 +896 46 2 887160750 +537 497 4 886030863 +857 116 5 883432663 +311 91 3 884366439 +542 42 3 886532726 +271 472 2 886106165 +504 729 5 887832571 +918 190 5 891986720 +459 619 4 879563169 +435 685 2 884134345 +189 137 4 893264407 +943 62 3 888640003 +795 25 5 880556527 +795 120 3 883255416 +706 273 3 880997142 +527 558 4 879456162 +934 388 3 891197678 +462 655 5 886365467 +666 195 3 880314272 +256 1471 3 882164999 +660 1135 2 891201675 +303 636 3 879484695 +279 450 4 889326161 +608 303 4 880402983 +527 214 4 879456030 +796 484 5 892675528 +110 364 3 886989612 +912 496 4 875965939 +450 172 4 882372103 +929 271 2 880817603 +405 373 2 885548162 +916 134 5 880844123 +940 95 5 885921800 +601 135 4 876350443 +906 628 5 879435551 +912 143 5 875966694 +94 636 4 891721351 +336 585 3 877756966 +716 420 4 879796766 +857 988 2 883432423 +666 153 4 880314103 +889 190 3 880177994 +660 403 3 891357371 +125 1170 1 892838591 +838 235 2 887064515 +880 254 2 880167599 +900 294 4 877832113 +774 808 1 888557451 +765 222 2 880346340 +883 1222 5 891696999 +655 902 2 892333973 +936 14 4 886832373 +245 151 3 888513279 +608 23 5 880403239 +486 1176 3 879874388 +28 31 4 881956082 +653 809 3 880153620 +843 436 2 879443394 +709 214 1 879846922 +890 489 4 882402826 +747 875 3 888638455 +932 647 5 891250987 +774 307 1 888555792 +660 470 2 891199883 +269 186 2 891449670 +897 566 2 879991976 +655 118 2 887426666 +496 483 4 876065259 +504 205 3 887909299 +840 664 3 891204474 +532 339 5 892859148 +773 61 5 888538908 +177 174 4 880130990 +877 702 4 882677386 +745 207 2 880123609 +545 175 4 879899641 +925 323 4 884633287 +743 269 4 881277267 +504 476 5 887831447 +789 137 2 880332189 +18 88 3 880130890 +527 192 4 879455765 +843 271 5 879442947 +665 188 4 884293366 +616 349 4 891224748 +927 41 4 879195407 +532 739 5 893119335 +854 69 4 882814395 +622 174 4 882592559 +823 531 4 878437890 +889 17 4 880181910 +912 423 5 875966694 +807 969 4 892528375 +712 401 3 874957027 +807 161 4 892528919 +870 697 4 875050603 +174 99 3 886515457 +793 293 4 875104091 +152 294 4 880149098 +619 96 5 885954083 +506 529 3 874873615 +778 157 3 891233153 +103 294 4 880416515 +786 237 5 882842195 +857 283 5 883432633 +883 226 3 892557605 +393 288 3 887741960 +728 304 4 879442794 +18 856 5 880131676 +540 280 3 882157797 +280 3 2 891702406 +361 603 5 879441215 +875 753 3 876465188 +101 546 4 877137015 +936 249 5 886832808 +407 739 3 876344062 +833 240 4 875035624 +709 431 5 879848511 +919 1012 4 875289611 +901 35 4 877131685 +345 974 3 884991581 +633 77 3 877212173 +880 734 3 880175240 +442 268 4 883388092 +838 12 4 887067063 +851 881 3 875729751 +766 672 3 891310824 +64 234 4 889737800 +907 198 5 880160162 +627 28 3 879529987 +786 696 3 882842149 +896 474 3 887159426 +684 67 3 878762144 +7 132 5 891351287 +394 69 5 880887063 +293 185 5 888905840 +289 121 3 876789736 +804 432 3 879441677 +699 50 3 878881875 +447 25 4 878854630 +815 65 5 878694664 +603 222 4 891955922 +632 693 2 879458692 +804 265 4 879445037 +788 270 2 880867855 +119 751 3 886175361 +804 173 4 879442412 +747 86 5 888638958 +885 946 3 885714933 +791 9 5 879448314 +274 629 5 878946645 +918 179 2 891988337 +894 744 3 880416072 +393 398 4 889731753 +618 99 3 891308019 +870 471 4 885071869 +758 364 4 882055394 +156 157 4 888185906 +498 9 2 881954931 +931 116 4 891036734 +655 566 3 888893279 +889 97 3 880178748 +924 202 4 886760020 +600 373 3 888452490 +897 73 3 879991341 +749 9 3 878846903 +218 663 3 877488492 +592 1258 1 882608960 +486 831 3 879875316 +880 88 3 880174705 +690 73 2 881177271 +940 174 4 885921310 +623 202 1 891034620 +711 189 5 886030557 +736 286 4 878709365 +709 1218 4 879846623 +321 603 5 879438607 +128 468 1 879968243 +437 121 3 881001766 +878 317 4 880866054 +474 929 3 887916330 +541 110 4 883866114 +766 402 3 891310565 +102 785 2 892991376 +890 737 3 882917152 +837 1047 1 875722267 +721 323 3 877137598 +880 405 4 880167328 +870 641 4 875050524 +700 169 3 884493862 +94 1009 4 891722845 +535 25 4 879619176 +71 52 4 877319567 +128 229 2 879968071 +712 66 5 874729816 +870 192 5 889717102 +417 268 4 879649657 +664 611 5 878090705 +334 1202 4 891544680 +757 175 3 888445551 +896 1078 3 887160983 +693 697 4 875482574 +655 658 3 887427130 +907 713 5 880159172 +684 1301 3 878760019 +937 297 4 876769436 +487 431 3 883529593 +846 179 5 883948571 +805 772 3 881698881 +5 455 4 875635174 +411 8 3 891035761 +867 207 5 880079094 +887 760 5 881378669 +615 168 5 879449110 +474 582 5 887927728 +825 235 3 880756678 +409 475 4 881107750 +827 301 4 882201885 +648 197 3 884628644 +459 105 4 879563819 +747 39 4 888640684 +423 339 2 891394788 +881 106 4 879052493 +437 511 5 880141962 +434 15 3 886724453 +671 17 4 883546889 +207 73 3 876079087 +757 276 4 888444181 +843 275 3 879446680 +572 14 4 879449683 +586 218 3 884060705 +764 89 4 876245837 +815 650 2 878696213 +911 404 3 892840950 +897 97 5 879990622 +716 122 2 879794727 +89 15 5 879441307 +433 205 3 880585730 +751 179 4 889298074 +716 175 2 879795644 +513 841 4 885062602 +932 238 3 891250609 +940 319 2 884800944 +184 238 4 889909069 +504 185 5 887838624 +693 649 2 875483169 +719 620 4 879359034 +299 1300 2 877878382 +347 123 3 881654301 +870 302 4 878737704 +846 143 5 883948804 +783 331 3 884326461 +267 233 4 878972731 +678 515 4 879544782 +751 215 4 889133334 +674 539 1 887763151 +134 269 3 891732122 +215 181 4 891435597 +11 8 4 891904949 +624 307 3 891961056 +815 631 4 887978234 +701 275 5 891447228 +880 365 2 880242660 +751 117 4 889132269 +788 79 4 880868559 +863 339 3 889289353 +587 914 4 892871031 +763 730 5 878923456 +654 291 4 887863914 +853 299 4 879365092 +923 288 5 880386897 +640 184 5 889235992 +828 60 4 891380167 +796 316 5 892610692 +880 768 2 880242848 +907 729 5 880159821 +719 97 3 879360845 +887 252 4 881378972 +129 990 2 883245452 +665 126 4 884290751 +787 352 2 888979657 +135 554 3 879858003 +659 241 3 891387121 +788 363 2 880871088 +817 289 2 874815789 +435 549 3 884132588 +85 515 5 879829265 +629 144 5 880117430 +543 463 3 874864034 +838 408 4 887066040 +234 611 5 892078605 +537 948 1 886029239 +847 456 1 878939393 +790 585 2 885157686 +727 39 2 883712780 +443 175 2 883505396 +912 482 5 875965939 +887 926 5 881378537 +815 163 4 878695841 +256 245 4 882150152 +911 204 4 892839930 +592 1016 4 882608145 +82 895 1 884713704 +682 1178 1 888521866 +707 200 2 886286491 +795 121 3 880558035 +363 176 4 891495109 +627 1478 3 879530967 +700 73 3 884494380 +694 215 3 875728181 +758 1143 5 880672637 +537 508 4 886030108 +897 183 5 879990531 +883 227 3 891696930 +454 252 2 881959336 +198 526 4 884208273 +326 178 5 879875175 +914 451 2 887122085 +788 436 3 880871127 +622 1407 1 882672922 +880 719 3 880174961 +908 488 4 879722642 +724 1234 1 883757170 +868 180 4 877104913 +682 678 1 888516814 +263 323 1 891297485 +823 8 5 878437925 +930 283 4 879535544 +451 988 1 879012773 +223 405 1 891550005 +846 23 4 883948089 +821 476 4 874792403 +503 183 5 879454754 +666 273 3 880313292 +913 530 2 881367312 +771 304 5 886640562 +173 301 5 877557076 +788 97 3 880868235 +907 1119 5 880159865 +373 1530 2 877107138 +201 770 3 884112426 +908 479 4 879723022 +943 1011 2 875502560 +571 484 4 883354992 +916 154 4 880844552 +694 451 4 875729068 +536 378 5 882360405 +920 682 3 884220058 +630 357 3 885668090 +620 1066 5 889988069 +542 95 3 886533562 +711 116 5 888458447 +778 200 5 890726264 +812 678 4 877625294 +642 136 3 885602232 +885 196 3 885714201 +537 639 2 886031438 +889 512 5 880181372 +398 705 5 875658898 +707 4 3 886286170 +621 1035 4 880739654 +313 511 4 891013742 +429 25 4 882385985 +178 283 5 882823784 +727 440 1 883713548 +860 285 5 885990901 +577 196 5 880474357 +583 425 5 879384575 +527 168 5 879456405 +389 521 3 879991330 +663 276 3 889492435 +504 629 4 887841136 +772 259 2 877533957 +833 649 3 875224178 +711 180 4 876279059 +10 589 5 877891905 +497 22 5 879310730 +712 1221 4 874956641 +267 1145 3 878974608 +863 877 1 889289277 +806 1016 1 882386110 +435 2 4 884132619 +924 1 5 884371535 +693 591 3 875482779 +531 892 3 887049187 +767 505 4 891462560 +931 515 5 891036506 +507 252 5 889966054 +881 276 5 876536079 +802 261 3 875985032 +919 1109 3 875373824 +689 405 5 876676292 +661 170 4 888300680 +499 429 4 885599372 +318 692 4 884495561 +777 527 4 875980306 +364 268 3 875931309 +666 116 4 880313270 +854 8 5 882814571 +472 426 4 875980010 +711 238 4 879993126 +699 458 4 879148051 +429 1076 2 882387350 +747 85 3 888733144 +671 181 5 875388719 +629 245 3 880116240 +864 93 3 888889948 +288 211 5 886374473 +758 118 2 881978326 +268 37 3 876514002 +804 163 3 879445579 +405 140 3 885548932 +889 55 4 880181191 +859 293 4 885776056 +378 292 3 882136243 +299 785 2 889502865 +894 753 5 882404278 +347 180 5 881654101 +474 357 5 887924618 +707 921 4 886286361 +655 1161 3 887426446 +899 527 4 884121767 +632 679 4 879459321 +682 866 2 888522101 +862 79 5 879304623 +571 191 4 883354761 +343 202 4 876406256 +921 651 3 884673891 +550 313 5 883425610 +933 934 1 874938412 +360 651 4 880355845 +230 233 1 880485513 +775 690 3 891033022 +851 264 2 890343477 +519 1238 5 883248595 +919 326 3 875288304 +942 31 5 891283517 +385 504 4 879442360 +456 580 4 881374767 +10 238 4 877892276 +695 268 5 888805864 +711 66 4 879994801 +396 472 5 884646647 +682 184 4 888519307 +943 549 1 888639772 +880 625 4 880242933 +660 231 2 891357371 +429 469 4 882386751 +716 218 3 879796766 +500 443 4 883873679 +878 197 4 880866971 +85 204 4 879828821 +355 682 4 879485523 +527 234 5 879455706 +200 176 5 884129627 +717 333 4 884641681 +762 955 5 878719551 +554 1046 4 876550526 +934 1037 1 891197344 +864 471 5 888888862 +815 434 3 878696619 +927 1089 5 879177457 +788 68 3 880869819 +847 211 4 878940383 +548 233 5 891044596 +186 55 4 879023556 +921 422 3 879380957 +900 124 4 877832837 +771 181 4 880659653 +796 12 5 892662483 +77 121 2 884733261 +894 107 3 880993709 +777 202 5 875980669 +109 144 4 880572560 +588 755 3 890025797 +747 1631 3 888638957 +826 554 4 885690749 +368 448 3 889783365 +655 942 4 888685850 +684 66 4 878762033 +850 71 5 883195118 +889 248 4 880176984 +618 470 3 891308615 +606 204 4 880924384 +215 208 4 891436202 +766 234 4 891309558 +552 237 4 879221617 +711 566 2 879995259 +551 1304 1 892783942 +279 805 3 879573022 +314 173 1 877889359 +922 568 3 891450524 +940 549 2 885921915 +643 474 5 891446955 +456 747 4 881374331 +440 57 5 891577949 +6 464 2 883601365 +127 50 4 884364866 +587 333 4 892871031 +624 293 4 879792623 +705 625 5 883427691 +854 744 2 882812787 +716 662 3 879794962 +372 326 4 876869330 +537 328 2 886029083 +710 185 4 882064321 +690 1118 1 881177459 +606 257 5 880922503 +561 762 3 885809654 +667 357 5 891034767 +599 1278 5 880952185 +659 234 4 891384798 +655 6 4 887425812 +805 209 4 881684202 +690 240 1 881179469 +905 475 3 884984329 +751 144 4 889133219 +629 196 4 880117062 +389 182 5 879991175 +360 257 4 880354515 +912 602 5 875965981 +897 385 3 879990622 +940 474 3 885921687 +766 747 5 891310210 +666 405 2 880313662 +468 584 4 875288771 +500 31 4 883875092 +622 721 4 882670610 +924 277 3 889286765 +663 318 4 889493576 +843 1480 2 879449377 +601 318 4 876348572 +524 230 3 884636907 +764 673 4 876246504 +774 412 3 888558924 +198 71 3 884208419 +625 204 3 891999874 +900 480 4 877833603 +620 323 5 889986580 +924 228 4 886327826 +673 345 4 888787396 +757 515 5 888444007 +794 127 5 891035117 +370 650 5 879435369 +901 1620 5 877126743 +259 294 3 881641699 +119 458 5 874774575 +708 1152 5 892719143 +655 912 3 891817522 +905 313 4 884982870 +665 154 3 884294025 +881 506 4 876539020 +419 212 1 879435749 +896 275 4 887158713 +894 751 3 885427971 +682 559 4 888522837 +537 286 3 886028498 +521 290 3 884477262 +643 179 4 891447901 +903 281 4 891031677 +49 301 3 888065640 +707 305 5 879439188 +240 340 4 885775710 +746 62 3 885075434 +331 467 3 877196702 +7 427 5 891352220 +634 515 4 877018346 +13 424 1 882397068 +429 506 4 882386711 +641 64 4 879370337 +749 1139 3 878850084 +891 717 4 883489728 +698 131 4 886366955 +886 803 2 876033015 +881 523 4 876537825 +286 189 3 877533296 +709 546 4 879848475 +637 685 3 882904829 +537 72 1 886031966 +453 750 4 888201942 +838 168 5 887066678 +777 204 5 875980670 +537 140 2 886032001 +899 410 1 884122535 +918 170 4 891987205 +666 1013 3 880314029 +730 873 2 880310035 +712 94 4 874957005 +899 188 2 884121720 +429 111 2 882386532 +308 550 4 887738847 +568 199 3 877906935 +429 167 3 882386629 +655 31 3 887523200 +911 203 4 892841196 +654 689 3 887863194 +831 748 2 891354297 +661 258 4 876012997 +73 197 5 888625934 +875 481 5 876465370 +447 200 3 878855963 +506 836 4 874875062 +689 475 4 876676334 +902 176 5 879465834 +458 302 5 886394314 +605 215 3 879426163 +559 70 3 891035917 +450 345 2 884906309 +640 55 5 874777765 +402 95 5 876267235 +336 294 4 877759103 +856 688 2 891489666 +934 629 4 891191334 +933 52 3 874854161 +716 136 5 879795790 +43 102 4 875981483 +896 302 2 887157234 +923 3 4 880387707 +438 281 4 879868494 +354 185 3 891218068 +46 93 4 883616218 +881 121 5 876536391 +630 123 4 885668203 +922 94 3 891449333 +437 203 1 880140978 +792 544 4 877910822 +79 10 5 891271901 +875 172 4 876465072 +788 503 4 880869984 +903 649 4 891033628 +903 412 2 891032077 +847 161 2 878940830 +443 748 4 883505171 +909 1121 5 891920703 +374 55 2 880394929 +923 117 4 880387598 +684 217 2 875811965 +461 575 2 885355930 +833 68 4 875224515 +588 1091 4 890027865 +526 100 5 885682448 +655 1113 3 887427810 +543 212 4 875659175 +13 184 1 882397011 +699 9 2 878882133 +880 87 4 880241913 +796 483 5 892663044 +864 658 2 888890690 +798 491 4 875743196 +487 385 4 883530454 +887 1033 4 881379295 +387 521 3 886483906 +909 509 5 891920211 +151 418 3 879525002 +732 322 3 882590201 +919 471 3 875289638 +385 234 1 879445493 +263 196 4 891298164 +84 70 5 883452906 +271 97 5 885848736 +758 479 5 881975539 +833 96 5 875132134 +601 173 5 876348736 +709 672 2 879848239 +795 768 3 883252985 +655 1356 3 887426059 +606 202 4 880924921 +860 286 4 874967063 +901 578 3 877131961 +870 385 3 879714159 +524 515 4 884637409 +660 657 2 891199579 +303 236 4 879468274 +934 88 4 891194866 +141 1280 1 887424890 +716 660 4 879796718 +627 289 2 879530899 +940 4 2 885922040 +643 629 3 891450168 +714 1028 4 892777877 +913 656 3 881726004 +666 127 5 880139180 +265 284 4 875320689 +327 305 5 887820828 +194 125 2 879548026 +94 238 5 891721168 +682 941 4 888518035 +677 151 4 889399431 +588 239 5 890025704 +249 195 4 879572911 +716 174 5 879795025 +889 178 5 880178078 +894 45 4 882404250 +538 172 4 877107765 +845 346 3 885409493 +880 1478 3 880242547 +804 64 5 879442001 +62 217 2 879376387 +729 313 3 893286638 +291 64 5 874867994 +642 51 5 886132172 +919 741 3 875288805 +532 918 4 893013954 +394 940 3 881059103 +796 724 2 893047241 +719 456 1 879373729 +684 265 4 878759435 +697 127 5 882622481 +807 624 3 892530705 +682 405 2 888522456 +790 926 2 884462598 +897 71 5 879991566 +717 685 4 884642581 +59 515 4 888204430 +72 518 4 880036824 +276 179 5 874791102 +450 741 3 882376282 +221 246 5 875244457 +286 455 1 889652378 +807 63 5 892531504 +600 182 4 888451750 +916 298 3 880843334 +389 135 2 879990996 +121 257 5 891390014 +645 191 5 892053644 +622 248 4 882590420 +716 428 3 879795838 +634 15 4 875729436 +913 183 4 880757553 +503 496 5 880472474 +889 652 5 880180784 +761 275 4 876190130 +863 306 5 889289570 +940 317 4 885921577 +751 399 3 889298912 +798 377 3 875639061 +255 840 1 883216958 +64 463 4 889739212 +938 595 2 891357042 +373 528 3 877104115 +558 744 4 879436027 +871 258 5 888192970 +474 222 4 887915479 +694 657 4 875728952 +593 949 2 875672949 +879 127 5 887761249 +483 50 5 878953485 +576 294 3 886960098 +940 751 3 884801227 +674 751 3 887762398 +645 172 4 892054537 +663 696 3 889492877 +634 933 3 877017951 +668 367 5 881605587 +800 751 4 887646980 +839 50 5 875751930 +544 294 2 884795581 +186 294 3 879024099 +881 175 2 876537418 +650 493 4 891369554 +454 471 3 881960445 +698 25 2 886367917 +662 13 4 880570265 +670 484 5 877975391 +272 174 5 879455043 +37 578 3 880916010 +552 100 4 879221716 +324 286 5 880574766 +183 449 2 891463592 +695 903 4 888806082 +711 381 5 879994749 +911 102 3 892840889 +216 496 5 880233635 +747 269 4 888638183 +934 208 5 891191258 +127 690 1 884363851 +506 710 5 874874151 +517 237 1 892659923 +721 84 3 877147675 +291 1489 2 875086766 +268 61 4 875309282 +738 260 2 875348571 +682 183 3 888520638 +887 699 1 881379566 +883 342 4 891692116 +669 269 3 891517159 +866 302 2 891220955 +735 277 3 876698604 +664 1098 3 876526152 +655 657 3 891585504 +494 845 4 879541429 +207 208 4 878191679 +210 1 5 887731052 +868 56 3 877107143 +453 273 4 877552678 +592 410 5 882608402 +919 144 4 875373889 +13 174 4 882139829 +927 560 2 879191978 +933 179 5 874854135 +530 443 4 883790943 +697 1089 3 882621958 +727 66 3 883712068 +632 64 5 879457525 +299 642 4 877881276 +807 96 3 892528564 +863 1243 4 889289277 +303 783 2 879543756 +663 173 3 889493818 +712 230 3 874730467 +842 754 1 891218251 +889 185 4 880180266 +897 435 3 879991069 +397 58 5 885349202 +807 968 4 892530498 +887 1051 4 881378773 +203 237 3 880434411 +655 1380 4 887425625 +835 272 4 891035309 +883 45 5 891695570 +671 210 5 884035892 +148 969 4 877398513 +709 79 3 879846440 +629 234 4 880117215 +652 286 3 882567012 +823 660 5 878438435 +893 1215 3 874829287 +110 1055 2 886988134 +542 952 4 886533193 +276 407 2 874792310 +343 13 5 876402894 +816 349 4 891711554 +912 318 4 875966385 +846 505 5 883948343 +871 435 3 888193336 +608 286 4 880402272 +240 307 4 885775683 +717 250 1 884715146 +297 248 3 874954814 +823 218 4 878438232 +560 249 5 879976247 +588 107 5 890030781 +499 915 4 892501128 +246 155 1 884923687 +727 393 3 883712397 +453 797 1 888206339 +503 823 2 879438817 +591 1041 2 891031644 +796 775 2 893047691 +607 435 3 883879473 +637 1028 3 882905182 +413 307 2 879968794 +587 315 4 892870956 +726 117 1 890080144 +912 197 5 875966429 +846 1035 4 883949771 +774 550 2 888557277 +569 7 4 879793909 +899 385 3 884121612 +234 686 3 892334976 +445 274 2 891200164 +215 172 4 891435394 +761 358 3 876189689 +896 1217 2 887160446 +943 181 4 875409978 +653 248 3 884405730 +764 95 5 876246475 +189 157 4 893265865 +764 591 3 876243572 +697 284 5 882622581 +788 427 2 880868316 +758 968 5 881976746 +125 168 5 879454793 +934 709 3 891196314 +90 192 4 891384959 +690 294 3 881177237 +656 896 5 892318842 +451 261 2 879012647 +892 501 3 886611023 +923 281 4 880387875 +822 1110 4 891036395 +833 56 4 875122716 +642 318 2 885602369 +287 222 5 875334224 +557 875 4 881179291 +503 269 5 879438024 +671 679 3 884036050 +916 427 4 880844654 +500 483 4 883874039 +807 174 5 892528866 +213 831 4 878871062 +247 340 3 893081396 +938 105 1 891357137 +931 1022 1 891036003 +750 304 4 879446013 +479 273 4 879459909 +18 100 5 880130065 +889 1195 3 880182317 +156 655 3 888185677 +622 8 4 882592421 +314 1053 5 877891490 +809 258 3 891036903 +883 399 5 891696999 +235 66 2 889655266 +796 301 1 892611903 +682 210 4 888522326 +639 661 4 891239155 +771 768 4 880659867 +671 176 2 883546120 +750 876 2 879446014 +330 376 4 876547378 +280 112 3 891702485 +808 286 4 883949560 +167 1200 4 892738384 +846 427 4 883948948 +495 185 5 888633042 +435 76 3 884131328 +889 154 4 880180612 +892 100 5 886607642 +374 443 5 880937735 +622 665 2 882671769 +576 255 3 887081086 +864 1016 4 877214125 +815 616 1 878697189 +772 323 4 876250551 +901 234 4 877287882 +406 88 2 880131608 +712 38 4 874730553 +451 878 1 879012811 +708 127 3 877325213 +894 307 3 880415834 +337 25 3 875184963 +943 412 2 875501856 +189 8 5 893265710 +559 661 3 891034040 +918 737 3 891988123 +916 2 3 880845391 +545 431 3 879899472 +405 59 1 885549507 +537 174 3 886030622 +114 153 3 881309622 +878 70 3 880868035 +804 180 4 879442348 +501 979 3 883348308 +749 584 3 878848483 +738 408 5 875349584 +366 637 5 888858078 +639 382 2 891239913 +666 1154 3 880567658 +450 118 3 882395166 +371 127 4 877487052 +591 216 4 891031426 +542 393 3 886533142 +437 94 4 881001436 +645 960 4 892054278 +855 86 2 879825462 +842 751 4 891218192 +558 275 4 879435896 +874 191 4 888633311 +916 317 4 880845098 +694 630 3 875728912 +865 111 1 880144123 +119 124 4 874781994 +796 178 3 892662223 +932 234 3 891250060 +663 56 5 889493502 +297 181 4 875410178 +748 328 4 879454208 +746 281 3 885075434 +660 266 2 891197639 +92 118 2 875640512 +393 249 3 887744373 +2 304 4 888979197 +887 763 5 881378087 +655 1107 4 888813272 +85 921 3 879827989 +759 222 5 881476922 +505 584 4 889334067 +7 31 4 892134959 +26 293 3 891371369 +532 352 3 886585109 +450 386 4 882397049 +472 1139 5 875983231 +698 143 3 886367530 +625 283 3 891629673 +641 30 4 879370365 +708 278 4 877325956 +939 121 5 880261373 +807 416 3 892528771 +707 648 4 886285824 +150 123 4 878746852 +922 173 5 891448040 +896 86 1 887159926 +481 580 4 885829153 +910 289 3 881420491 +281 323 3 881200789 +658 471 4 875145879 +915 328 2 891031450 +886 663 4 876032823 +724 683 1 883757834 +815 69 4 878694106 +854 597 2 882813143 +724 333 4 883757670 +303 97 5 879468459 +554 15 4 876231964 +805 1054 3 881705637 +849 633 5 879695420 +532 87 5 892866230 +324 310 4 880574827 +670 175 2 877975448 +835 97 5 891033501 +738 200 3 875350086 +634 285 4 875728872 +711 1168 4 879995753 +185 703 4 883524172 +880 124 5 880166847 +722 100 4 891280894 +577 174 5 880475043 +894 327 4 881625708 +374 278 2 880393754 +119 64 4 874781460 +885 383 2 885713939 +682 111 3 888521740 +924 121 4 886760071 +184 1101 4 889909515 +710 419 4 882063766 +864 38 3 888891628 +716 222 4 879793192 +796 451 5 893047167 +878 116 2 880869638 +637 13 1 882904458 +773 1071 2 888539662 +823 198 4 878439065 +581 222 3 879641698 +342 149 5 874984788 +840 132 4 891204356 +409 289 1 881105077 +498 134 3 881956498 +200 812 4 884130621 +796 516 4 893048115 +699 15 1 878882511 +788 591 3 880869469 +898 242 4 888294441 +686 11 4 879546083 +240 748 3 885775831 +848 25 5 887046890 +927 780 1 879195783 +417 49 3 880951737 +1 149 2 878542791 +291 195 4 874835165 +814 218 3 885411030 +883 134 5 891754950 +825 181 4 880756224 +587 258 4 892871069 +70 91 3 884068138 +72 58 4 880036638 +181 871 2 878963168 +632 196 3 879457064 +625 294 3 891536483 +76 182 4 882606392 +618 568 4 891309409 +936 181 4 886832596 +268 475 4 875306644 +417 180 5 879647604 +942 969 4 891282817 +805 288 1 881695244 +43 845 5 883955547 +932 380 4 891250498 +718 831 3 883349663 +364 687 1 875931561 +249 408 5 879572540 +751 367 4 889133950 +885 189 5 885714820 +749 141 4 878848217 +447 79 3 878856110 +314 419 4 877889039 +896 732 4 887159674 +773 265 2 888540146 +628 258 5 880777167 +675 286 4 889488431 +727 268 4 883708087 +452 945 4 888323595 +660 174 4 891199293 +222 734 2 881060735 +831 83 4 891354848 +936 333 3 886831415 +805 94 1 881705412 +894 748 3 879896233 +770 15 5 875971902 +733 286 4 879535471 +790 50 4 884461387 +248 806 3 884534772 +828 510 3 891037231 +655 1646 3 891913577 +690 238 5 881177302 +460 321 3 882910510 +632 1183 2 879458142 +514 306 4 876672606 +773 121 2 888540163 +735 676 3 876698837 +15 283 4 879455505 +707 347 5 886285277 +646 908 3 888529054 +268 51 3 875745202 +943 184 5 888639247 +798 781 2 875639061 +872 763 3 888479405 +13 619 3 886952245 +693 97 5 875482604 +417 713 2 879646052 +634 1049 2 877018004 +94 746 4 891721716 +498 234 4 881957625 +747 663 5 888733111 +661 64 4 876014060 +487 67 3 884050247 +666 640 4 880314477 +36 261 5 882157581 +896 721 4 887160465 +813 898 1 883752264 +681 990 4 885409770 +407 491 4 875550328 +800 292 5 887646979 +741 692 1 891019587 +892 291 4 886607744 +312 50 5 891698300 +203 879 4 880433474 +801 354 4 890332645 +416 311 3 886314877 +292 282 4 881104661 +655 874 4 888984255 +514 12 5 875318263 +786 71 5 882843786 +851 619 4 875730629 +62 207 3 879375676 +665 418 4 884294611 +60 654 4 883326399 +896 230 4 887161728 +854 511 4 882814298 +347 249 5 881652683 +867 183 3 880078863 +719 64 5 879360442 +764 117 5 876244991 +342 88 1 875320644 +246 651 4 884921638 +870 195 4 875050602 +896 226 3 887160270 +162 122 2 877636300 +666 499 4 880139562 +933 451 1 874938507 +253 699 4 891628630 +942 131 5 891283094 +892 172 5 886607743 +592 15 5 882608457 +472 252 4 875978191 +649 181 4 891440309 +790 298 5 884461849 +18 418 3 880130515 +472 678 4 883904118 +834 294 3 890860159 +239 12 5 889178729 +807 526 5 892530061 +401 678 3 891031936 +666 310 5 880313163 +715 158 2 875965035 +934 121 3 891189819 +883 506 5 891754950 +934 771 3 891196950 +724 328 4 883757727 +743 276 5 881277855 +552 323 2 879221267 +684 756 4 875811455 +660 1 3 891406276 +927 230 5 879199250 +624 845 3 879793129 +916 22 4 880844627 +35 266 3 875458941 +327 168 4 887820828 +870 28 4 875680258 +554 179 3 876369785 +537 428 4 886031506 +620 1503 4 889988196 +663 9 2 889492435 +457 956 4 882548214 +888 286 5 879364981 +356 258 5 891406040 +862 228 5 879305097 +275 229 3 876198296 +478 946 2 889396917 +825 245 5 882109193 +684 8 5 878761120 +880 678 3 880166662 +817 327 4 874815593 +692 208 4 876953340 +121 50 5 891390014 +671 686 3 884036365 +648 62 5 884882916 +785 183 5 879439232 +721 582 3 877140490 +888 762 5 879365497 +401 490 3 891033250 +8 336 3 879361664 +934 210 4 891191206 +463 866 3 877385862 +727 227 4 883710974 +664 321 3 876526179 +323 847 3 878739225 +770 326 4 876598016 +693 521 5 875482092 +201 566 3 884112352 +883 372 3 891694544 +774 204 3 888556316 +564 298 3 888730534 +833 249 1 875133458 +707 618 3 886288282 +330 989 5 876543930 +739 318 4 886958831 +847 153 4 878941496 +586 183 4 884059196 +655 1084 3 888813272 +698 1 4 886366815 +435 39 3 884131822 +501 100 4 883347799 +657 111 5 884239368 +578 298 4 888957584 +743 302 5 881277267 +711 265 2 879994536 +877 176 5 882678484 +648 7 3 882211109 +770 328 3 875971736 +642 173 5 885602314 +798 1066 2 876175427 +537 39 2 886031407 +823 83 3 878438024 +906 307 3 879434378 +788 554 3 880870257 +730 100 5 880310371 +130 928 4 876251287 +193 182 4 890860290 +670 969 2 877975070 +919 193 2 875373471 +932 498 5 891250363 +387 239 1 886483970 +741 239 2 891456040 +416 179 2 876699578 +94 357 5 891720921 +666 213 4 880139120 +825 250 5 880755693 +435 420 4 884132561 +796 554 2 893048713 +322 507 4 887314119 +932 515 4 891249373 +880 815 4 893028814 +707 527 5 880061699 +872 925 4 888479654 +478 283 4 889388137 +913 273 3 881037670 +499 173 5 885599307 +666 98 4 880139381 +13 774 1 882396913 +486 515 5 879874417 +636 10 5 891449123 +757 665 3 888466652 +580 866 4 884125856 +916 4 4 880844395 +889 435 4 880179536 +757 257 4 888444400 +848 65 2 887038527 +731 283 4 886182367 +669 323 1 891182792 +388 672 4 886441083 +269 202 2 891450405 +90 209 5 891383173 +927 67 4 879190473 +934 675 4 891192285 +848 133 4 887047308 +924 742 3 886065661 +460 137 5 882912418 +677 243 3 889399113 +896 542 3 887160677 +592 58 5 882956388 +683 271 3 893284183 +472 67 4 892790628 +943 655 4 888639269 +820 313 5 887954934 +882 1060 3 879862652 +784 333 4 891387501 +66 535 4 883602044 +539 306 4 879787770 +394 202 5 880888245 +943 96 4 888638920 +807 133 5 892705060 +21 619 2 874951416 +436 840 3 887771997 +143 288 5 888407586 +782 691 3 891498079 +645 258 3 892051708 +709 402 3 879849185 +924 173 5 885458060 +898 286 2 888294408 +648 1033 2 882212288 +682 86 2 888518206 +44 625 3 878348691 +938 1012 5 891356500 +821 161 4 874793898 +864 181 5 888887984 +921 1034 3 879380457 +935 121 4 884472434 +346 88 4 874949380 +833 1118 3 875133924 +645 208 5 892054797 +176 458 4 886048305 +391 187 4 877399030 +598 690 3 886710735 +739 465 1 886959039 +727 546 2 883709607 +409 705 2 881109175 +179 538 4 892151231 +733 742 3 879535502 +57 988 4 883696785 +708 258 5 892719007 +269 1103 5 891447773 +654 269 4 889451420 +886 1435 3 876034174 +661 304 2 886829961 +474 1286 2 887927670 +23 154 3 874785552 +682 820 3 888523323 +892 403 3 886610372 +389 603 5 880086943 +942 500 5 891282816 +910 508 4 880821349 +524 311 4 884287428 +655 514 5 887650683 +682 738 3 888522021 +868 214 3 877106470 +650 620 2 891383977 +932 1451 5 891249675 +500 16 4 883865462 +843 1118 2 879448112 +537 517 4 886031341 +943 373 3 888640275 +605 619 4 880762205 +880 421 2 880243204 +560 151 3 879976542 +653 1183 1 880153329 +887 318 5 881379649 +880 689 4 880166577 +921 755 4 884673910 +877 70 5 882677012 +911 835 3 892838405 +153 568 4 881371140 +932 161 3 891251507 +872 977 3 888479737 +653 161 4 878854247 +707 381 3 886286457 +885 237 5 885715151 +888 137 4 879365104 +422 302 3 877162650 +138 14 3 879022730 +770 1012 5 875972730 +463 1009 3 877386047 +727 665 3 883713257 +763 222 5 878918406 +848 501 3 887048073 +878 481 5 880870854 +942 479 4 891283118 +497 231 3 879310883 +650 1215 3 891381850 +730 237 3 880310233 +398 96 4 875716709 +542 181 4 886532359 +717 299 4 884641743 +363 1067 3 891496849 +581 475 4 879641850 +884 475 4 876858914 +417 743 2 880953053 +611 680 4 891636125 +532 22 5 892867296 +910 414 4 881421332 +674 313 5 887762296 +899 934 3 884120603 +630 535 4 885667624 +796 281 4 893194929 +776 866 3 892313273 +892 88 4 886609884 +659 70 4 891383412 +713 882 3 888881988 +883 55 4 891696864 +703 322 3 875242336 +707 317 3 886286433 +659 315 3 891044991 +676 750 4 892685252 +268 176 5 875309998 +57 323 3 883696709 +690 208 5 881177302 +845 909 4 885409789 +913 210 2 880826706 +251 79 5 886271733 +916 135 4 880844552 +457 676 3 882395400 +880 21 2 880174961 +916 50 5 880843436 +728 116 4 879443291 +812 245 2 877625367 +911 240 1 892840297 +643 159 3 891449345 +286 250 4 876521887 +405 26 3 885545552 +679 322 3 884312763 +650 391 2 891382877 +405 1041 5 885547447 +659 708 3 891386641 +774 447 1 888557715 +332 678 4 887916284 +531 898 5 887049081 +455 550 4 879112700 +830 265 5 891561607 +934 179 2 891191600 +754 237 3 879451805 +524 82 4 884636583 +843 69 3 879446476 +274 1051 4 878945763 +25 121 4 885853030 +452 179 5 875265368 +919 246 3 875288523 +522 480 5 876961076 +613 435 5 891227299 +882 416 4 879879868 +734 487 4 891025498 +474 479 5 887923972 +712 1503 4 874730235 +823 173 5 878438148 +715 28 5 875963242 +393 125 4 887744239 +317 260 4 891446887 +597 151 4 875342314 +919 717 3 875288805 +697 975 1 882622044 +13 49 4 882399419 +883 1115 4 891692765 +526 273 2 885682562 +889 226 2 880182016 +883 65 4 891717319 +553 506 4 879948655 +486 408 3 879874481 +85 1113 2 879454981 +608 735 4 880406799 +894 311 4 880993317 +210 174 5 887736045 +606 475 4 878143785 +318 275 4 884470718 +815 614 3 878695964 +707 638 4 886286361 +497 1046 3 879362041 +894 1379 4 879896673 +744 9 3 881170416 +918 64 4 891987025 +790 51 3 885156193 +860 311 4 882120528 +872 350 3 888478840 +693 191 2 875482136 +769 235 3 885424186 +233 70 5 879147810 +749 740 3 878847716 +660 742 2 891198312 +611 288 3 891636073 +234 641 4 892078297 +751 382 3 889298463 +932 489 4 891249710 +684 483 5 878576905 +59 1074 4 888206409 +877 582 2 882677280 +804 123 4 879443645 +551 209 5 892777123 +313 232 3 891014957 +883 89 5 891696864 +942 172 5 891282963 +886 1231 3 876033828 +938 300 3 891350008 +287 64 5 875336775 +712 417 4 874729750 +207 597 3 876018471 +669 482 4 892550170 +795 588 5 880587862 +389 1121 4 879991485 +805 806 4 881698175 +406 513 5 879445378 +151 427 5 879524108 +795 257 3 881252002 +747 1134 5 888732609 +201 1398 4 884140079 +342 1012 4 874984639 +660 238 3 891200340 +853 332 3 879364822 +883 770 4 891696957 +215 54 4 891436607 +553 528 3 879949180 +101 866 4 877137015 +551 1253 2 892784629 +303 993 2 879544576 +303 514 5 879466667 +811 307 4 886377248 +932 1050 4 891251015 +684 411 3 875811455 +650 133 4 891381546 +713 750 3 888881939 +314 949 4 877890428 +737 474 5 884314740 +704 173 4 891397058 +692 411 4 876954021 +862 597 3 879303697 +159 591 4 880557060 +758 91 4 881977375 +731 482 3 886184770 +933 209 2 874854678 +588 380 3 890028987 +806 521 3 882387595 +561 470 3 885809872 +332 769 3 888360532 +567 657 5 882425762 +889 71 3 880180849 +269 717 1 891456493 +931 312 4 891036105 +894 471 4 880416314 +846 69 5 883947500 +622 1060 3 882671160 +718 685 4 883349301 +805 195 3 881694693 +474 423 5 887924425 +458 845 3 886394527 +472 421 5 875982200 +97 173 3 884238728 +42 111 1 881105931 +489 299 2 891447522 +408 272 4 889679683 +858 690 3 879459087 +436 925 4 887770507 +838 128 4 887066724 +889 150 5 880176984 +435 472 2 884133466 +894 275 4 882404137 +494 181 4 879541298 +703 123 4 875242787 +435 501 3 884132266 +334 761 2 891549718 +326 520 5 879875151 +805 568 3 881694854 +26 751 4 891347477 +896 497 3 887158332 +532 549 5 888637085 +379 94 5 883156810 +314 756 3 877886641 +926 300 3 888351623 +889 734 3 880182815 +577 768 3 880474787 +557 246 5 880485693 +737 11 3 884314903 +481 663 4 885828297 +823 69 5 878438095 +504 364 2 887912382 +44 328 4 878340848 +716 432 5 879795269 +601 325 4 876346551 +496 559 5 876068153 +14 654 4 890881294 +870 79 4 879270313 +200 470 4 884129782 +721 991 3 877137214 +659 479 5 891383412 +176 340 5 886046979 +553 81 3 879948732 +893 411 3 874829056 +731 66 4 886184577 +573 179 4 885844091 +738 659 4 875350804 +402 228 3 876267173 +664 53 3 876526580 +716 208 5 879795790 +877 203 4 882678427 +821 56 5 874793847 +833 177 5 875123299 +883 86 3 891693086 +288 199 4 886629592 +909 682 3 891920763 +721 678 3 877137527 +882 684 3 879877026 +721 423 5 877141373 +902 294 2 879463212 +891 25 5 891638734 +835 294 3 891032356 +670 603 5 877974465 +453 120 1 877553678 +878 517 4 880866687 +918 638 4 891987267 +8 510 4 879362233 +224 991 1 888082277 +379 181 4 880525368 +567 527 3 882426673 +876 276 4 879428354 +932 428 4 891251105 +653 581 1 880152819 +301 69 5 882076682 +798 1469 3 876175427 +573 286 3 885843476 +711 736 5 879993871 +409 538 3 881104756 +496 721 5 876067215 +56 225 2 892910292 +679 50 5 884486758 +862 173 5 879304484 +191 315 5 891560253 +909 165 5 891920233 +314 1217 2 877891638 +690 202 2 881177349 +698 499 3 886366515 +648 205 3 884628607 +868 233 2 877109566 +116 56 5 886310197 +889 327 3 880176620 +425 92 5 878738335 +719 285 4 877917156 +731 207 4 886182827 +524 708 4 884636645 +286 274 2 876521917 +553 498 4 879949042 +913 302 4 880794297 +429 596 3 882385808 +90 1192 5 891384673 +291 223 5 874867912 +479 137 4 889125448 +897 205 3 879990556 +341 299 5 890757745 +676 687 1 892685803 +405 209 3 885547124 +345 38 2 884993830 +637 246 2 882903447 +295 461 5 879966498 +130 419 5 876251515 +270 234 5 876955976 +655 411 3 887650512 +514 24 3 875463164 +726 323 3 889828641 +487 720 4 884036466 +721 660 5 877147616 +763 1101 3 878918486 +432 827 3 889416570 +925 299 3 884717478 +425 1416 3 878738695 +748 234 4 879454475 +914 692 3 887122324 +416 302 5 893214127 +712 588 4 874956515 +918 213 5 891988054 +291 27 3 874835024 +285 183 4 890595859 +751 558 3 889298216 +387 175 5 886479771 +650 506 3 891385508 +665 98 4 884293569 +425 294 2 878737512 +222 17 2 878183079 +1 43 4 878542869 +716 185 5 879796046 +828 275 3 891035614 +405 856 1 885546287 +178 993 5 882824592 +822 25 3 891039543 +592 1022 5 885280183 +535 86 4 879618385 +668 50 5 881605642 +666 194 3 880139348 +943 127 5 875501774 +865 294 4 880235263 +926 288 3 888636202 +121 12 5 891390014 +707 882 4 879439382 +896 411 2 887160842 +799 174 5 879254026 +851 125 4 875730826 +503 223 5 880472362 +625 751 4 891536426 +880 435 4 880167778 +880 1013 3 880167355 +697 815 3 882622430 +334 187 4 891547107 +843 185 3 879443341 +870 186 4 875680186 +567 178 4 882425820 +41 194 3 890687242 +666 7 4 880313329 +231 866 3 879965961 +643 197 4 891446983 +586 288 4 884057861 +862 462 4 879304624 +918 606 4 891987132 +155 306 5 879371121 +660 746 4 891199478 +213 627 4 878955680 +291 785 4 875086308 +696 1126 3 886404617 +708 546 3 877325601 +866 887 3 891221165 +298 9 4 884126202 +474 487 4 887923972 +286 123 5 876521586 +902 480 5 879465711 +653 167 2 880153429 +263 434 4 891299514 +788 1112 3 880870428 +854 49 4 882814665 +773 154 5 888539471 +891 1028 3 883489521 +889 271 3 880176573 +229 316 1 891632347 +715 222 3 875962227 +710 135 5 882064041 +325 176 3 891478455 +802 299 4 875986155 +379 1075 3 888044628 +918 16 4 891988560 +269 65 4 891448072 +497 394 3 878759862 +933 80 2 874938689 +405 241 1 885547909 +627 665 3 879531459 +698 257 3 886366141 +878 99 4 880870130 +452 481 5 885544110 +634 109 4 877017810 +718 750 3 883449953 +927 125 4 879177298 +433 457 1 880585554 +793 129 4 875104067 +804 1210 2 879447476 +880 100 5 880166966 +720 262 4 891262608 +43 4 4 875981421 +922 50 5 891447447 +937 224 4 876769480 +569 325 1 879793149 +703 300 4 875242077 +496 651 2 876065610 +805 719 4 881705389 +776 479 4 891813013 +303 997 2 879544219 +716 399 3 879797414 +188 455 4 875075432 +892 588 5 886607879 +308 546 3 887740500 +724 893 3 883757874 +751 111 3 889132657 +459 455 2 879563392 +722 628 4 891280894 +864 191 4 888887869 +533 215 4 879438941 +484 22 5 891194841 +810 269 5 891293811 +557 176 4 880486028 +720 310 4 891262762 +524 796 3 884636958 +740 302 5 879523187 +736 127 4 878709365 +719 88 3 888454637 +641 134 5 879370062 +691 500 3 875543068 +210 302 5 890059415 +927 739 3 879191360 +687 313 5 884651420 +938 873 3 891356085 +601 168 5 876350944 +870 949 3 881001249 +77 156 4 884733621 +885 451 2 885713716 +378 531 4 880045520 +829 124 4 892312784 +749 357 4 878847862 +655 863 3 887473995 +303 83 5 879467607 +81 116 3 876533504 +92 707 4 875653162 +421 98 5 892241458 +426 143 3 879444852 +523 732 4 883702125 +902 181 3 879464783 +325 616 4 891477924 +698 404 1 886368545 +491 23 2 891189306 +62 167 2 879376727 +587 289 3 892871113 +268 713 4 875742365 +758 488 3 881976262 +301 117 5 882074584 +474 609 4 887927509 +249 223 4 879572370 +154 187 5 879139096 +708 111 4 877325570 +709 209 3 879846332 +363 12 5 891495070 +620 243 3 889986676 +815 252 2 884267891 +897 133 4 879991037 +90 656 5 891385132 +941 181 5 875048887 +716 1016 3 879794032 +806 168 4 882387595 +54 823 2 880938088 +826 1222 3 885690819 +486 685 3 879875188 +889 546 4 880177435 +747 845 2 888640046 +655 742 3 888813272 +932 175 4 891250449 +497 29 4 879362569 +271 9 4 885847738 +894 1381 3 880993766 +705 62 5 883428178 +214 253 5 892668173 +843 53 2 879443442 +847 99 2 878940013 +699 288 3 878881675 +885 278 3 885715468 +764 1 4 876244181 +239 633 5 889180040 +889 95 4 880178342 +416 742 4 876697524 +169 199 4 891359353 +749 99 5 878847804 +716 216 5 879795239 +268 273 3 875742470 +128 186 5 879966895 +831 1012 4 891354970 +648 121 5 882211654 +597 688 4 875339132 +902 304 3 879464257 +268 210 3 875310571 +359 930 4 886453402 +890 230 3 882404947 +828 271 2 891035438 +899 283 4 884121424 +130 404 5 875802137 +846 1004 3 883950791 +790 763 3 884462692 +276 902 4 890979199 +379 185 5 880524582 +677 742 4 889399139 +748 132 3 879454998 +747 69 5 888640475 +933 475 2 874853605 +893 172 5 874829883 +290 385 4 880474716 +883 902 4 891691534 +422 859 3 879744218 +870 527 5 875679687 +758 1023 4 880672855 +747 12 4 888639272 +835 423 4 891033857 +830 210 5 891561607 +87 222 4 879875940 +871 345 3 888192859 +497 367 4 879362835 +659 159 4 891386540 +622 98 5 882669449 +524 203 4 884634819 +517 25 2 892659923 +880 111 4 880167132 +561 79 3 885808887 +865 432 1 880235059 +671 455 4 884035775 +533 936 4 889450822 +655 12 3 887427130 +699 619 2 887503290 +924 258 3 884336994 +495 82 5 888632969 +181 1296 1 878962006 +430 235 2 877225727 +173 329 4 877557345 +551 1044 3 892785223 +8 222 5 879362356 +936 547 5 886833795 +8 431 2 879362356 +891 459 5 891638682 +906 10 4 879435339 +363 737 1 891497174 +711 354 3 889910865 +894 900 3 887044070 +537 283 4 886029889 +736 678 1 878709212 +883 229 4 891696930 +407 184 4 875044473 +943 1074 4 888640250 +595 410 4 886921315 +675 1628 5 889489837 +5 367 3 875636281 +519 879 5 883248595 +655 127 5 888474106 +853 327 3 879364955 +666 216 3 880139642 +806 181 2 882384988 +624 321 4 879791962 +666 143 2 880568064 +806 210 5 882387520 +499 143 3 885598961 +749 164 3 878848866 +753 185 3 891401410 +324 339 3 880574827 +734 603 4 891022958 +725 333 5 876106729 +798 1239 4 875915965 +805 1 4 881695527 +535 645 4 879617856 +665 1 4 884290491 +59 434 4 888205574 +429 147 2 882385859 +843 443 4 879443297 +854 274 3 882812906 +463 19 5 877385341 +303 121 3 879485016 +415 136 5 879439684 +724 259 2 883757726 +59 1093 5 888203578 +503 582 5 880383064 +644 250 4 889077463 +825 406 2 889021208 +14 919 4 876964725 +682 196 5 888523581 +537 271 2 886028791 +833 443 3 875124348 +160 458 5 876768025 +653 1207 1 880153329 +479 357 4 889125798 +13 916 4 892870589 +542 12 4 886533774 +924 705 5 885457858 +729 300 4 893286638 +478 195 4 889396509 +868 408 5 877103935 +297 144 3 875238778 +909 289 3 891920763 +804 168 5 879442377 +395 127 5 883765034 +223 873 3 891549111 +363 24 3 891494754 +592 196 5 882955978 +501 294 3 883346694 +747 519 5 888639989 +682 713 3 888517537 +796 859 2 893218622 +412 939 4 879717253 +893 144 4 874830101 +758 430 5 881975503 +697 1047 3 882622228 +778 281 2 890803859 +690 56 4 881177349 +345 238 5 884916495 +666 963 3 880139090 +683 269 3 893282664 +674 289 2 887763151 +891 285 5 891638757 +639 526 4 891239177 +796 307 4 892611799 +871 908 3 888192745 +896 993 4 887235498 +721 245 3 877137527 +916 295 2 880843551 +301 658 3 882076463 +409 923 5 881107410 +702 748 2 885767556 +889 470 4 880180554 +354 747 2 891307069 +13 235 2 882141841 +797 687 2 879439190 +664 83 4 876524869 +632 609 3 879459677 +348 237 4 886523078 +295 546 4 879518780 +846 184 5 883949697 +653 156 4 878854633 +669 132 4 891260519 +756 230 3 874829010 +438 148 5 879868443 +506 79 5 874874054 +758 887 5 882322840 +653 143 3 880150104 +894 535 4 879896920 +638 385 5 876694917 +936 741 4 886832808 +792 926 3 877909798 +807 381 2 892530004 +630 121 4 885666823 +602 880 4 888637925 +476 401 3 883364812 +655 1426 2 888474390 +592 117 5 882608234 +747 93 4 888639685 +665 239 3 884293475 +931 269 3 891035876 +540 333 4 882156617 +727 405 3 883709571 +663 235 2 889492917 +702 258 5 885767306 +528 258 4 886812857 +921 274 4 879379971 +893 246 3 874829968 +896 640 2 887160701 +246 418 3 884921453 +894 923 5 882404278 +645 47 4 892054824 +620 138 5 889988312 +688 307 4 884153505 +497 440 1 879362430 +782 247 1 891499700 +58 1 5 884304483 +543 660 3 875659098 +389 524 5 879991081 +725 322 4 876103762 +334 1020 4 891546181 +833 262 2 875035534 +846 42 5 883948606 +129 300 3 883243934 +221 12 5 875245283 +805 748 2 879971215 +308 273 2 887737084 +936 591 4 886832373 +92 685 3 875640708 +561 473 3 885810428 +419 28 3 879435663 +312 213 5 891699067 +474 323 2 887915020 +847 261 1 878774763 +648 449 3 884882987 +560 264 3 879975231 +385 1118 3 879447047 +638 523 4 876695917 +568 519 3 877907157 +897 33 5 879992310 +795 395 2 883255008 +885 88 4 885713461 +851 228 4 875731776 +880 156 4 880243680 +152 283 4 880148616 +458 433 4 886398289 +880 11 4 880167695 +864 231 3 888891288 +57 477 4 883697655 +455 230 3 879111291 +906 475 3 879435253 +85 405 2 879453018 +682 290 1 888522217 +328 983 3 885049234 +894 1010 4 880993662 +922 257 4 891455049 +694 836 4 875727821 +48 1063 3 879434654 +566 86 4 881649622 +234 837 3 892079434 +756 235 3 874827755 +733 1163 2 879535603 +933 583 3 874854217 +455 82 5 879110818 +168 546 3 884287962 +592 285 5 882607910 +145 449 3 885557699 +500 582 4 883874290 +454 463 2 888267560 +130 123 4 875216112 +618 121 4 891308913 +894 111 3 880416102 +130 291 4 876250932 +184 160 3 889911459 +606 468 4 880923989 +711 655 4 879993605 +727 278 2 883709325 +680 150 5 877075105 +627 187 5 879529855 +934 1449 5 891191976 +288 176 4 886373565 +830 98 5 891462467 +741 699 4 891018400 +896 1134 3 887159950 +913 432 3 881366721 +450 776 4 882468402 +758 38 3 881980408 +545 434 3 884134177 +159 873 2 893256062 +586 184 2 884060807 +747 525 5 888640684 +774 196 3 888556746 +922 471 3 891453501 +235 170 4 889656113 +804 1411 3 879446129 +780 164 4 891363996 +778 54 2 890803859 +793 508 4 875104620 +762 274 4 878719371 +892 50 5 886608802 +815 647 5 878694055 +501 1014 4 883348543 +145 628 2 875270932 +901 140 4 877288179 +741 174 5 891018303 +417 40 3 879649199 +559 205 5 891033805 +838 286 4 887061035 +119 449 5 874782190 +613 576 3 891227204 +537 513 4 886030891 +900 288 2 877832113 +479 474 5 879461279 +545 944 4 879900731 +639 604 4 891240520 +747 190 4 888640305 +880 288 4 880166451 +63 14 4 875747401 +851 977 3 875730533 +882 662 3 879879807 +840 7 4 891203408 +906 7 3 879434846 +864 67 4 888891190 +587 1265 4 892871252 +568 179 2 877906935 +885 151 4 885716221 +514 89 4 875318331 +677 109 1 889399327 +942 878 4 891282702 +357 926 4 878951831 +717 288 1 884641717 +885 386 2 885713680 +851 346 5 884831499 +690 167 2 881177662 +242 294 4 879740082 +385 558 2 879442673 +846 498 4 883947861 +895 13 5 879437950 +727 685 3 883709518 +653 531 5 878854284 +210 168 5 887730342 +565 190 5 891037563 +733 744 4 879535723 +934 436 3 891196610 +911 190 5 892838864 +733 1085 4 879536607 +875 183 5 876465144 +699 10 4 883884599 +896 87 4 887158295 +435 194 4 884131627 +145 742 4 875270616 +848 200 2 887040302 +941 993 4 875048996 +450 519 4 887660820 +660 219 1 891406212 +350 187 5 882347782 +481 88 4 885829153 +406 702 3 879793295 +455 250 3 879109966 +454 285 2 881959917 +846 1066 3 883950568 +698 487 2 886367508 +882 168 5 879867631 +59 193 4 888204465 +919 285 5 875288748 +660 456 1 891198996 +844 260 1 877381312 +840 121 2 891204056 +306 1251 5 876504026 +624 477 3 879793198 +757 153 3 888468995 +735 748 3 876698022 +533 1291 1 879366076 +858 100 3 880932746 +405 99 5 885548785 +428 352 4 885943651 +269 52 4 891447329 +616 879 4 891224864 +664 182 4 876524641 +131 297 4 883681514 +499 525 4 885599660 +766 133 3 891309844 +395 866 3 883766119 +314 1063 5 877887568 +600 511 5 888451492 +828 1466 4 891380166 +650 301 2 891385035 +328 313 4 893195532 +921 227 3 879381051 +835 196 5 891033173 +561 802 1 885810726 +826 176 5 885690600 +744 302 5 881171820 +704 269 4 891397015 +630 213 2 885667994 +44 87 5 878347742 +606 211 5 880926759 +617 656 4 883789386 +59 519 4 888204965 +552 756 2 879221683 +344 408 5 884814532 +751 11 1 889133177 +620 237 4 889987123 +889 121 4 880177308 +374 829 2 885083439 +508 183 5 883767588 +871 17 3 888193275 +682 833 1 888522260 +716 486 5 879795121 +365 1011 3 891304152 +601 294 1 876346515 +883 209 3 891694311 +927 69 4 879183164 +798 378 4 875743858 +727 511 4 883710948 +905 124 4 884983889 +749 291 4 878848137 +686 265 4 879545550 +622 586 3 882671916 +796 879 4 892612031 +865 472 1 880144229 +622 404 3 882670562 +577 472 4 880470570 +160 129 4 876768828 +934 393 2 891193013 +867 186 5 880078937 +507 288 5 889964020 +625 1016 2 891273699 +286 280 4 876522097 +550 596 2 883426119 +802 302 4 875984532 +871 876 3 888192689 +276 428 4 874791870 +644 871 4 889077513 +389 969 4 880086755 +717 298 3 884715172 +799 289 3 879253720 +930 151 2 879534724 +918 443 3 891988248 +756 197 2 874829446 +299 12 5 877880350 +13 826 5 882398385 +655 640 2 888685955 +883 464 5 891717533 +665 151 3 884291017 +788 331 4 880867372 +625 522 3 891968164 +721 406 1 877154989 +199 269 5 883782458 +655 160 3 887427473 +697 257 5 882621913 +693 742 3 875483407 +898 270 4 888294408 +330 403 5 876545417 +605 371 5 879427369 +696 311 5 886404063 +295 402 5 879518820 +807 1133 3 892823295 +254 451 2 886474426 +192 255 2 881367505 +363 751 1 891493772 +452 504 2 875273544 +860 202 4 885990932 +896 291 3 887160795 +361 319 5 879440941 +930 288 1 879534001 +297 357 4 875238922 +451 302 3 879012647 +117 931 3 881010728 +218 514 4 877488316 +860 316 3 889627165 +1 165 5 874965518 +442 218 3 883390048 +655 785 2 887490946 +577 48 5 880474530 +860 333 3 876074177 +794 275 4 891034792 +586 3 5 884068767 +661 210 5 876015530 +569 100 5 879793784 +429 227 2 882385934 +833 381 4 875134016 +877 258 4 882676234 +343 150 4 876402941 +535 707 4 879618809 +715 108 4 875962315 +757 313 3 888443263 +646 751 2 888528870 +910 137 3 880822060 +807 257 4 893084232 +932 172 5 891250472 +758 898 3 883287566 +505 144 3 889333861 +846 570 4 883949698 +718 15 5 883348962 +457 147 5 882395400 +705 183 2 883427988 +681 682 1 885409810 +348 685 4 886523560 +535 265 3 879619144 +692 866 4 876953733 +883 703 3 891693139 +758 154 5 881975267 +431 269 3 877844062 +222 446 3 881060824 +652 96 4 882567356 +303 869 2 879485703 +290 95 4 880474590 +937 242 3 876762200 +429 155 2 882387633 +732 289 3 882590201 +933 196 4 874854932 +904 328 2 879735136 +916 212 5 880844879 +474 608 4 887925187 +721 684 4 877138200 +95 511 4 879196298 +921 892 3 884673402 +591 709 4 891031426 +416 80 2 886317825 +870 384 3 875680597 +716 519 3 879796555 +579 202 5 880952270 +747 507 3 888639890 +741 173 2 891018366 +497 1415 2 879363748 +567 127 5 882426246 +393 121 4 887744419 +329 8 2 891656391 +707 248 4 886285498 +648 452 3 884883679 +853 264 3 879365169 +889 12 5 880177880 +699 124 4 878882667 +826 501 3 885690380 +856 313 5 891489217 +708 118 5 877325545 +674 245 4 887762430 +456 547 3 881371660 +903 333 4 891032653 +767 183 4 891462870 +536 427 5 882359455 +303 147 4 879467816 +374 779 3 880939186 +721 51 4 877141038 +804 284 4 879442732 +643 238 3 891448095 +532 240 3 888629938 +709 7 3 879846440 +943 51 1 888640088 +87 121 5 879875893 +682 195 4 888522418 +773 185 4 888540279 +298 357 5 884181969 +738 2 3 875351530 +610 508 3 888703629 +940 855 5 885921980 +932 154 5 891249994 +429 204 4 882387757 +864 789 4 888886946 +899 483 4 884121572 +45 284 4 881014130 +75 289 1 884049789 +881 375 1 876539387 +640 391 3 874778756 +458 513 4 886396314 +682 1093 3 888522100 +42 1050 3 881107538 +800 294 3 887645970 +716 202 4 879794935 +655 262 5 888474934 +882 21 2 879863909 +500 1311 1 883877467 +883 4 4 891694276 +908 151 3 879722875 +154 496 3 879138910 +749 135 4 878848189 +714 471 4 892777903 +690 197 4 881180427 +217 17 3 889069903 +553 514 3 879948695 +847 95 4 878939503 +263 23 3 891298654 +936 243 2 886831820 +868 227 1 877110060 +711 181 4 876185574 +936 1014 3 886833571 +901 161 5 877131147 +666 162 4 880568662 +883 873 3 891695173 +452 199 5 885816768 +70 559 3 884066399 +933 72 3 874938538 +933 1246 1 874938728 +847 198 4 878940161 +487 349 3 885239880 +714 410 3 892777767 +649 250 3 891440356 +653 154 3 878867137 +903 186 5 891466376 +707 318 5 880061699 +82 640 3 878769292 +847 428 3 878940732 +916 223 4 880844087 +717 866 1 884642932 +655 761 2 888686011 +429 381 3 882385882 +927 288 5 879199250 +659 603 5 891331825 +825 289 1 882109193 +788 144 4 880868599 +810 243 4 879895350 +325 771 1 891480115 +373 529 4 877105901 +201 603 4 884113924 +760 66 2 875668932 +444 272 5 891978637 +303 289 2 879466065 +397 289 3 885349348 +308 770 4 887738057 +883 346 4 891691353 +943 226 4 888639660 +715 88 3 875964633 +311 47 2 884365654 +699 482 2 878883038 +23 89 5 874785582 +445 96 4 890987655 +798 692 4 875743140 +298 187 5 884183063 +414 324 4 884999127 +294 881 3 889241707 +433 137 5 880585904 +758 338 4 881295151 +276 316 4 892436314 +913 269 5 881725938 +927 240 3 879177456 +187 52 4 879465683 +922 183 3 891450401 +883 19 2 891692657 +875 461 4 876466687 +630 11 5 885668028 +894 86 4 882404306 +916 393 2 880845067 +877 197 4 882677827 +374 281 3 880393425 +479 157 5 879461856 +901 257 4 877127196 +655 182 4 888474106 +474 956 4 887926271 +693 192 2 875482477 +503 949 3 892667891 +615 100 3 879448693 +535 275 4 879619177 +615 97 4 879448759 +783 307 5 884326506 +297 196 4 875239267 +795 167 3 883254348 +643 845 3 891445476 +774 545 1 888555864 +234 964 4 892334852 +913 89 5 880794731 +447 276 4 878854552 +577 546 3 880470483 +725 19 5 876106729 +272 56 5 879455220 +835 484 4 891034219 +137 96 5 881433654 +915 313 4 891029965 +315 4 4 879821065 +821 560 3 874793773 +749 1023 3 881073104 +548 762 4 891415709 +223 155 5 891550952 +664 845 2 878090381 +919 687 1 875288362 +758 514 5 881974823 +940 708 3 885921953 +642 1239 4 885607097 +126 316 4 887855231 +151 174 5 879524088 +279 971 4 875314231 +782 1514 2 891500194 +750 873 3 879446013 +838 8 4 887066972 +351 895 3 883356591 +826 226 4 885690677 +707 458 3 880060724 +655 723 3 887650851 +758 628 4 881977714 +692 211 4 876953340 +474 650 4 887925187 +934 174 5 891191511 +753 181 3 891402240 +850 97 5 883195168 +743 326 3 881277656 +500 295 4 883865128 +749 153 4 878848828 +109 151 5 880571661 +732 937 4 882589967 +749 968 3 878850186 +788 637 2 880870516 +896 1423 2 887160631 +894 59 5 882404397 +416 477 4 892441480 +269 281 1 891451590 +686 178 5 879546715 +936 301 3 886831637 +442 89 4 883390416 +363 150 5 891496667 +897 410 3 879993621 +934 514 5 891191546 +334 44 4 891548224 +846 268 4 883946938 +674 15 4 887762584 +393 395 3 889731753 +437 443 4 880142851 +712 1037 4 874956981 +903 1070 4 891033335 +151 629 4 879528754 +629 309 3 880116240 +840 96 2 891204592 +711 79 4 879992739 +648 72 4 884881722 +749 418 5 878847498 +322 1019 4 887314073 +436 167 3 887770403 +274 873 3 878944491 +310 294 1 879436712 +830 172 5 891561606 +379 435 5 882563752 +615 191 5 879448759 +425 319 1 878737511 +474 421 3 887928562 +145 308 2 885557505 +429 100 5 882385807 +305 49 3 886324962 +584 450 2 885778571 +193 826 2 889126146 +567 608 4 882426021 +921 845 4 879379601 +749 527 4 878847364 +1 116 3 878542960 +28 219 5 881961728 +738 517 3 892938492 +243 237 2 879987148 +904 739 4 879735678 +896 824 1 887161541 +234 119 3 892335261 +880 144 5 880167670 +618 651 5 891307263 +514 180 3 886189927 +622 532 3 882591091 +886 518 4 876031601 +18 510 4 880130680 +554 133 4 876369272 +863 340 3 889288911 +617 531 2 883788859 +750 322 2 879445877 +193 1407 3 889126146 +892 182 5 886608507 +151 945 5 879524419 +94 1221 3 891721216 +385 528 4 879470274 +174 65 5 886514123 +760 451 5 875668781 +696 9 5 886404617 +426 100 4 879442128 +488 486 4 891295023 +615 192 5 879448780 +889 1188 2 880182784 +768 315 3 883834448 +931 258 3 891036003 +328 646 3 885046174 +50 100 2 877052400 +504 441 4 887911314 +546 758 4 885140808 +839 277 2 875752082 +843 550 3 879449152 +500 552 1 883876738 +918 792 3 891986904 +797 181 5 879439362 +822 111 4 891039414 +639 286 4 891238618 +232 294 2 880062259 +535 471 4 879618743 +721 304 3 877137285 +743 744 5 881277892 +256 11 5 882164406 +733 713 4 879535938 +870 239 3 875680597 +943 200 4 888639388 +704 135 5 891397305 +758 654 4 881975061 +545 28 4 884133814 +489 322 5 891366571 +233 523 4 877663913 +731 143 5 886182827 +630 239 4 885668061 +271 506 4 885849052 +555 111 4 879964159 +664 494 5 878089975 +227 823 2 879035599 +719 214 2 879360965 +896 157 4 887159555 +521 246 4 884475913 +290 402 4 880474422 +757 206 4 888445683 +729 294 2 893286338 +941 258 4 875048495 +263 31 4 891299387 +815 712 3 878696563 +865 1011 1 880144405 +912 194 4 875966238 +372 872 4 876869330 +933 173 3 874855020 +251 1 4 886272009 +248 79 3 884534992 +940 89 4 885921828 +13 175 4 882139717 +933 318 4 874853605 +899 193 3 884121946 +739 55 1 886958972 +724 1127 3 883758267 +669 216 3 892550170 +134 508 3 891732726 +729 751 3 893286338 +870 1267 2 879270213 +868 184 3 877107730 +921 125 3 879379774 +676 546 3 892686371 +308 211 4 887737535 +184 371 5 889909840 +855 179 3 879825528 +843 498 2 879446155 +727 118 4 883709729 +724 343 1 883757259 +642 588 5 886131546 +602 294 5 888637987 +94 51 3 891721026 +744 156 4 881170452 +737 64 4 884314740 +897 660 4 879991630 +896 576 2 887160677 +472 231 5 875980418 +536 588 3 882359726 +426 519 4 879444117 +707 1168 3 886287990 +564 272 3 888718415 +894 904 4 890409804 +663 763 5 889492614 +495 1542 4 888637643 +805 122 5 881705350 +591 64 5 891031203 +238 257 4 883576261 +942 216 4 891282963 +326 588 3 879875691 +313 427 5 891014029 +393 1225 3 889731820 +491 654 5 891189306 +736 254 1 878709262 +752 325 2 891208126 +570 286 4 881262625 +234 82 3 892334079 +119 31 5 874781779 +694 135 5 875727018 +403 147 5 879786052 +618 895 3 891309929 +788 546 3 880871429 +768 742 3 880136033 +313 89 5 891014373 +870 715 3 875680597 +506 496 5 874873615 +779 328 4 875501334 +458 76 4 886398121 +804 498 5 879442239 +597 477 5 875339970 +919 217 4 875373669 +892 176 5 886608681 +940 427 5 885921451 +379 524 4 880961742 +790 384 2 885158374 +666 188 5 880314564 +891 282 5 891639793 +727 169 5 883710419 +326 568 4 879876882 +886 475 5 876031501 +804 401 2 879445798 +819 319 4 879952627 +561 546 1 885810557 +796 1522 3 893194740 +443 269 3 883504564 +705 69 3 883518834 +549 1 5 881672182 +561 153 3 885808844 +498 317 3 881957625 +840 492 5 891204215 +406 282 3 879539987 +221 847 4 875244051 +757 98 4 888445767 +287 246 4 875333964 +417 161 3 879647519 +712 365 3 874730234 +630 465 1 885668203 +833 69 2 875039326 +297 485 3 875240267 +683 301 2 893283728 +417 163 4 879647604 +758 1527 3 888039070 +484 951 1 891195886 +655 131 2 893002283 +13 165 3 881515295 +415 258 4 879439135 +890 527 4 882405473 +682 708 3 888518104 +922 222 4 891447681 +734 173 3 891025247 +495 67 3 888636635 +901 174 5 877130965 +937 126 4 876769374 +464 520 5 878355167 +741 274 4 891019587 +921 560 2 879380981 +880 188 4 880167842 +932 226 3 891251292 +269 23 5 891447773 +621 692 4 874962614 +630 819 3 885667108 +896 198 4 887158636 +804 172 4 879442001 +883 553 4 891696782 +16 939 4 877717833 +279 1001 4 882160106 +409 657 3 881108126 +719 87 2 879360617 +778 28 4 890726618 +589 688 4 883352707 +495 80 3 888636992 +447 201 2 878855723 +757 151 4 888444684 +232 50 4 880062302 +807 477 4 892775458 +608 83 5 880406862 +509 892 1 883591489 +561 423 2 885808796 +627 591 3 879530205 +790 108 3 884462415 +271 566 4 885848707 +87 252 3 879876224 +551 97 5 892777013 +643 88 2 891449417 +825 593 3 880755468 +537 515 4 886031297 +666 527 4 880139253 +363 589 3 891496077 +843 25 2 879447523 +707 880 2 887860711 +737 154 4 884314694 +168 276 1 884287642 +326 9 1 879875852 +892 25 4 886609828 +632 356 4 879459248 +877 111 3 882677967 +757 742 4 888444563 +868 189 5 877109300 +216 315 5 883981859 +264 150 5 886122952 +480 152 4 891208390 +929 174 3 879640329 +767 724 4 891462658 +677 7 4 889399171 +894 13 4 882404137 +883 461 5 891717988 +868 922 5 877106505 +687 300 4 884652089 +846 452 3 883950950 +634 25 4 877018125 +751 1 3 889132162 +545 167 3 879900731 +591 956 4 891031286 +666 180 4 880139562 +755 300 4 882569574 +798 946 2 875639889 +456 550 2 881375381 +85 141 3 879829042 +462 539 3 886365773 +109 53 4 880583336 +450 866 4 882396565 +868 447 2 877107284 +899 73 4 884121720 +698 100 2 886367809 +246 50 5 884920788 +537 109 1 886030051 +712 495 4 874730520 +254 138 1 886474122 +489 323 5 891445388 +472 1215 4 875979562 +709 423 3 879846741 +56 238 5 892676885 +460 124 4 882912150 +628 690 5 880776981 +847 243 1 878774856 +606 516 4 880924859 +751 216 4 889133602 +174 240 1 886434241 +723 322 2 880499254 +857 275 5 883432663 +481 393 3 885829045 +550 222 4 883425979 +943 188 4 888639269 +436 50 4 887769415 +773 6 3 888538620 +551 587 4 892783525 +770 258 5 875971568 +935 237 5 884472159 +159 291 4 880485766 +761 205 4 876190511 +239 505 5 889180169 +486 9 5 879874449 +615 213 5 879447990 +498 179 4 881961133 +654 597 4 887864812 +762 270 4 878718855 +18 958 5 880129731 +892 429 4 886608559 +399 540 2 882348722 +537 222 2 886029974 +618 154 3 891308615 +881 528 5 876538536 +642 1078 5 885604239 +788 684 5 880868401 +471 82 5 889827822 +363 312 3 891494106 +894 14 4 880416472 +916 48 5 880844861 +14 240 5 880929697 +747 262 5 888638242 +691 604 5 875543025 +561 1229 1 885810220 +589 339 5 883352494 +24 655 5 875323915 +213 7 4 878870518 +693 449 2 875483407 +405 1556 1 885549635 +561 512 4 885808000 +894 909 3 889469007 +889 721 3 880179536 +884 100 5 876858820 +406 466 4 879446228 +521 550 3 885253844 +189 792 5 893265741 +669 150 3 892549477 +807 491 5 892528062 +778 132 2 891232769 +94 411 3 891724508 +705 546 3 883427377 +489 897 2 891448565 +896 518 3 887159234 +887 1116 5 881381610 +913 222 3 881037459 +218 153 4 877488692 +747 423 5 888638958 +222 1079 1 878183984 +911 727 2 892842738 +38 1028 5 892432624 +39 301 3 891400280 +538 527 3 877364067 +846 91 4 883948417 +343 496 5 876404426 +551 720 2 892784744 +495 1157 4 888637300 +733 696 3 879535909 +764 405 4 876243772 +860 949 3 885991163 +707 168 3 886286170 +406 281 3 879540296 +586 118 4 884062671 +827 689 3 882201884 +393 627 4 889729296 +586 159 4 884065719 +541 278 2 883875063 +739 751 3 886825083 +587 331 3 892871197 +807 199 5 892528374 +537 186 4 886031211 +486 324 4 879874262 +534 410 5 877807816 +916 702 3 880845157 +825 591 4 880755943 +276 554 2 874795823 +938 281 2 891356594 +907 409 4 880159151 +899 257 4 884120185 +727 423 3 883710830 +773 462 5 888538776 +435 193 3 884131243 +887 472 4 881378402 +707 6 3 886285627 +422 237 4 875130230 +13 749 3 881515521 +787 300 4 888979657 +796 69 5 892662483 +92 322 3 890251700 +766 414 4 891310150 +892 671 5 886608212 +769 1312 2 885424776 +799 748 2 879253755 +429 582 3 882384950 +560 24 2 879976772 +699 685 3 879147367 +771 892 5 886640606 +119 827 3 874775815 +896 55 3 887157978 +807 605 3 892529150 +415 483 5 879439791 +807 1411 1 893082619 +716 732 5 879795375 +846 1209 1 883950858 +452 625 3 875562159 +906 15 3 879435415 +763 230 3 878923288 +786 866 3 882842173 +627 199 5 879529702 +883 283 4 891692742 +345 570 2 884993662 +871 121 4 888193275 +899 746 4 884121512 +691 318 5 875543281 +760 365 5 875668737 +606 959 5 880927128 +767 242 4 891462614 +74 315 5 888333194 +758 687 3 881295189 +388 218 5 886441083 +387 399 3 886482969 +546 258 4 885139634 +850 168 5 883195456 +894 885 2 887044250 +924 286 3 884337043 +653 631 2 880150412 +222 50 4 877563194 +881 4 3 876538286 +552 977 3 879222033 +709 62 3 879848590 +756 79 4 874829990 +847 109 5 878938982 +666 484 4 880139149 +43 277 1 883955498 +296 211 4 884197068 +503 306 5 879438024 +838 228 4 887067390 +889 79 3 880179705 +811 286 5 886376983 +887 69 4 881380025 +715 196 4 875964131 +728 124 3 879443155 +451 306 2 879012684 +545 403 5 879899380 +733 285 4 879535299 +537 616 2 886031752 +738 169 5 892844079 +716 11 4 879795790 +505 183 3 889333392 +901 405 4 877127250 +805 418 2 881695527 +806 240 2 882385455 +880 1052 1 880175503 +460 312 4 882910837 +222 101 4 878183539 +890 654 5 882404851 +102 435 3 888801315 +253 82 3 891628295 +500 1048 3 883865532 +615 387 3 879448915 +872 1028 3 888479434 +392 517 5 891038466 +874 124 4 888632411 +79 311 4 891271278 +405 737 1 885546487 +606 282 4 878147641 +717 327 3 884641681 +704 208 3 891397262 +457 831 2 882396001 +798 220 3 875295810 +798 90 3 875914860 +307 132 4 879283333 +789 111 3 880332400 +705 1035 4 883427737 +815 494 5 878696093 +755 937 4 882569604 +916 235 3 880843749 +659 660 3 891384798 +429 789 4 882385443 +269 170 2 891447216 +756 147 4 874828826 +535 518 5 879618569 +822 358 3 891037112 +847 82 4 878941466 +878 140 2 880870486 +714 111 3 892777330 +406 924 4 879540228 +731 213 5 886183515 +943 794 3 888640143 +816 326 4 891710803 +109 810 3 880583410 +655 469 3 887427778 +875 333 5 876464801 +313 127 5 891013620 +10 502 4 877889261 +207 3 2 877846284 +930 455 1 879534692 +693 288 2 883975203 +794 181 4 891035957 +110 338 1 886987540 +181 685 2 878963381 +487 229 3 884042207 +289 15 3 876789581 +938 181 5 891356390 +863 1678 1 889289570 +143 322 4 888407708 +884 509 4 876859090 +663 475 4 889492435 +395 163 5 883764378 +922 418 4 891448580 +422 333 4 875655986 +860 381 3 885990998 +170 678 4 886623680 +722 322 3 891280402 +327 47 4 887746553 +897 55 3 879990622 +624 544 4 879792557 +201 116 1 884112800 +579 289 2 880951569 +823 151 4 878438732 +479 670 3 879461530 +918 921 4 891988029 +289 477 2 876790323 +664 654 5 876526604 +616 326 3 891224590 +796 228 5 892761629 +880 1270 3 880175187 +848 474 5 887038441 +640 214 5 874778274 +597 1016 4 875342355 +924 632 4 885458121 +291 760 2 874834037 +506 449 2 885135882 +883 116 5 891692786 +514 778 4 876067546 +751 402 3 889298216 +922 174 5 891449021 +734 478 4 891022849 +814 17 3 885411073 +931 250 2 891036673 +802 563 3 875985976 +663 100 4 889492503 +59 959 4 888206095 +344 1020 5 884814457 +757 895 4 888443483 +786 186 4 882843786 +903 931 2 891032038 +941 7 4 875048952 +457 145 3 882549998 +665 56 5 884294611 +16 286 2 877716993 +852 840 3 891036866 +274 237 4 878945678 +693 506 2 875484932 +932 183 4 891249877 +456 265 3 881374048 +201 702 1 884111986 +56 298 4 892683695 +807 1413 2 893083486 +585 20 4 891285658 +379 143 4 880525839 +735 304 4 876697679 +70 1145 3 884151622 +834 246 4 890863023 +434 118 5 886724873 +192 1265 3 881366585 +1 198 5 878542717 +693 471 3 875482653 +868 23 5 877104949 +457 28 5 882396989 +773 431 1 888540063 +385 533 4 879440602 +709 232 5 879848590 +810 300 5 890083187 +503 484 4 880472188 +295 209 5 879518233 +776 28 5 891628895 +920 328 2 884220058 +691 185 5 875543281 +681 1394 5 885409742 +889 1014 2 880177778 +574 288 4 891279174 +863 752 4 889289277 +868 658 3 877108742 +749 661 5 878847576 +887 477 1 881378570 +786 202 4 882843812 +591 168 3 891031724 +896 64 4 887158926 +167 606 4 892738452 +749 435 4 878847888 +413 515 5 879969591 +521 684 3 884478807 +813 890 4 883752708 +693 195 4 875483847 +856 322 4 891489593 +763 702 3 878917877 +527 12 4 879456637 +774 226 2 888557330 +890 174 5 882405780 +590 1061 2 879439538 +637 268 2 882898692 +271 496 5 885849140 +613 478 5 891227262 +133 539 1 890588720 +239 304 1 889181248 +846 66 4 883949290 +727 176 4 883710948 +543 1159 5 875665787 +542 94 3 886533021 +870 673 5 875679721 +643 68 3 891447338 +689 13 1 876676397 +624 690 4 879791962 +717 130 2 884642958 +886 790 4 876034095 +879 222 4 887761460 +615 302 4 879447500 +927 300 5 879176156 +797 948 1 879439230 +301 15 4 882074460 +520 871 1 885170547 +920 1612 4 884219953 +500 919 3 883865341 +141 984 4 886447880 +752 621 1 891208491 +885 318 5 885714093 +682 719 2 888521982 +452 50 5 875264825 +639 511 4 891239240 +557 252 3 880485846 +610 484 3 888703507 +753 427 5 891401712 +771 243 3 886640629 +889 204 4 880179757 +665 286 4 884289850 +111 286 4 891680076 +701 313 4 891446521 +839 508 3 875752479 +721 56 3 877150031 +758 531 5 881975061 +889 4 3 880180765 +886 1046 2 876033755 +810 286 4 891293811 +399 151 2 882511876 +747 88 2 888733218 +588 762 4 890026705 +924 923 5 886327748 +881 546 4 876536012 +643 405 3 891445859 +916 182 3 880844123 +546 200 5 885141332 +181 151 2 878962866 +234 1101 3 892335372 +843 654 2 879446359 +659 135 3 891383412 +715 205 5 875964410 +535 792 4 879618655 +738 227 4 875353533 +176 285 5 886047963 +871 96 5 888193177 +846 692 3 883949594 +932 144 3 891249710 +635 874 3 878878714 +758 151 5 881975814 +682 925 3 888520923 +249 318 5 879572256 +605 302 4 879365132 +639 173 1 891239492 +750 748 3 879446013 +634 591 4 875729535 +883 1021 5 891693058 +880 418 4 880241256 +134 678 4 891732271 +406 73 2 880131704 +429 616 3 882386333 +749 1092 3 878850703 +445 1129 4 891199994 +152 33 5 882475924 +748 647 3 879454602 +727 258 2 883709325 +896 1074 2 887161393 +744 479 5 881171482 +764 845 4 876242972 +716 241 3 879796138 +11 196 5 891904270 +933 453 1 874938833 +887 176 5 881381348 +879 597 2 887761229 +854 50 4 882812102 +909 166 5 891920166 +682 250 4 888523635 +540 257 4 882157584 +374 713 1 880935656 +926 303 3 888351713 +919 878 2 875288443 +715 81 4 875963112 +803 269 5 880054592 +840 303 5 891202889 +524 855 4 884634911 +399 176 3 882342127 +862 100 5 879304196 +457 287 4 882394010 +118 317 5 875384885 +864 48 5 888886945 +632 549 3 879459210 +940 683 3 884800988 +682 1135 2 888518035 +695 354 4 888806056 +766 205 5 891309975 +563 255 5 880506528 +749 705 4 878847612 +691 672 1 875543153 +269 476 1 891446703 +846 542 3 883950712 +908 357 3 879723046 +333 483 4 891045496 +561 1267 3 885809690 +709 413 2 879848209 +716 151 5 879793631 +622 96 5 882592449 +868 402 1 877113412 +303 17 4 879466830 +308 293 4 887741415 +711 312 5 883589763 +615 514 5 879449110 +765 275 4 880346768 +864 562 4 888891794 +610 51 5 888703523 +269 1411 3 891451829 +823 157 5 878438435 +186 1213 3 879023882 +29 303 4 882820686 +771 8 5 880659583 +497 294 4 878759351 +890 168 5 882916704 +895 50 5 879438062 +712 652 3 876251407 +843 393 2 879448858 +207 538 2 880853139 +896 596 2 887159426 +899 239 3 884121946 +693 520 2 875485037 +629 100 5 880116847 +886 582 1 876032029 +710 282 2 882063921 +184 792 4 889909840 +397 693 4 885349955 +615 325 2 879447693 +655 272 3 888474138 +316 58 3 880854267 +707 485 4 886287079 +745 202 3 880123486 +659 212 4 891387227 +487 24 4 883444558 +793 823 3 875104648 +526 325 3 885682102 +497 826 3 879311007 +733 922 3 879535406 +776 947 2 891628836 +780 603 2 891364059 +710 198 4 883705435 +783 301 4 884326424 +693 99 3 875484763 +637 257 2 882903511 +624 316 4 891961232 +856 326 2 891489450 +637 322 3 882900888 +410 689 2 888626881 +876 529 4 879428451 +606 844 4 878149278 +652 307 4 882566890 +916 190 4 880846339 +699 1061 3 879147169 +450 33 5 882398083 +890 660 2 882917026 +320 1052 2 884749097 +889 207 3 880179785 +846 1451 4 883948089 +135 581 4 879857931 +735 181 4 876698604 +655 1101 2 887427243 +804 474 4 879441524 +864 43 3 888891524 +745 230 2 880123572 +651 683 3 880126096 +244 651 4 880606069 +864 523 4 888888202 +381 124 5 892697690 +864 432 2 888887502 +912 97 4 875966783 +821 705 5 874793649 +844 89 3 877387857 +727 82 3 883711527 +785 1 4 879439137 +399 780 1 882350850 +537 347 4 886028845 +751 372 3 889297990 +782 682 4 891498513 +860 313 4 885145375 +496 28 2 876066153 +454 135 2 888266433 +478 153 3 889396212 +711 1053 4 879995099 +780 286 4 891362937 +700 174 4 884493862 +754 459 4 879451805 +551 433 5 892777787 +592 123 4 882608573 +782 1385 4 891500028 +605 210 3 879424452 +145 98 5 875271896 +269 231 1 891451013 +517 311 3 892660034 +316 427 5 880853704 +449 268 2 880410988 +297 147 3 874955183 +943 73 3 888639598 +776 355 3 892210668 +447 535 4 878854954 +556 319 3 882135437 +828 283 3 891035864 +527 357 5 879455654 +323 98 4 878739699 +600 187 5 888451750 +922 98 5 891447665 +669 187 5 892550170 +868 208 3 877108624 +656 903 2 892318777 +131 248 3 883681262 +797 286 2 879438957 +587 890 1 892871503 +694 603 4 875727476 +405 1567 1 885547123 +806 156 4 882388128 +881 435 3 876538796 +938 840 2 891357190 +775 344 5 891032777 +721 15 4 877140632 +540 15 3 882157084 +916 527 4 880845135 +70 257 4 884063946 +280 68 3 891701066 +653 245 4 893276091 +776 181 4 891628916 +774 202 5 888555964 +862 831 3 879303542 +707 766 3 886287051 +504 559 5 887840745 +503 199 4 880383625 +99 678 2 885678479 +912 185 3 875966065 +937 293 4 876769530 +454 238 3 881960361 +201 792 4 884140579 +373 739 3 877111819 +899 710 3 884122619 +413 333 2 879968933 +655 292 2 889293132 +781 87 4 879634340 +872 1061 4 888479701 +214 114 4 891544290 +894 324 3 879896168 +766 185 4 891310038 +623 15 4 891032375 +768 313 5 883835026 +741 7 3 891040277 +805 545 1 881705488 +903 105 3 891031794 +766 187 4 891309053 +593 735 4 886193600 +619 326 2 885953601 +795 168 5 881528760 +717 343 4 884641983 +464 332 4 878354761 +425 184 4 878738596 +870 646 4 875050524 +926 325 1 888636269 +189 199 5 893265263 +648 436 5 884883476 +919 919 2 875288805 +83 79 5 887665423 +690 186 4 881177349 +932 194 5 891250472 +654 121 4 887863757 +30 164 4 875060217 +781 327 4 879633862 +843 569 1 879443482 +727 188 3 883711679 +934 488 5 891192197 +727 7 2 883708927 +707 279 3 886285627 +678 276 5 879544952 +594 19 3 874781004 +694 483 5 875727449 +606 1016 3 887062032 +934 648 3 891190695 +457 25 4 882393828 +926 315 4 888351623 +840 83 5 891204215 +881 395 3 876538322 +864 209 3 888887172 +877 381 4 882677345 +907 596 4 880159015 +450 702 4 882371904 +472 566 4 875982727 +815 993 2 878691939 +399 320 3 882342537 +830 197 4 891464415 +297 367 2 875239018 +790 584 4 885156773 +901 229 4 877131205 +416 942 4 893214333 +222 38 2 878185102 +328 586 1 885048666 +567 248 4 882427273 +671 203 3 884035173 +577 465 4 880474851 +932 114 5 891249903 +818 300 2 891870222 +588 468 3 890015835 +780 339 4 891363073 +268 80 3 875743909 +5 434 5 875637033 +25 133 3 885852381 +194 67 1 879549793 +62 22 4 879373820 +643 128 3 891447617 +378 370 2 880333494 +896 674 2 887160446 +548 50 5 891044304 +346 472 4 874950937 +736 253 5 878709365 +888 535 4 879365497 +868 47 2 877108302 +389 187 5 879990996 +840 505 5 891204714 +479 831 2 879460562 +727 471 3 883709188 +222 358 2 877562839 +347 121 3 881652535 +494 514 2 879541246 +823 770 4 878438754 +318 898 4 884470237 +807 194 4 892528427 +774 365 2 888556989 +650 136 4 891372203 +870 505 4 880584752 +627 233 2 879531351 +524 12 3 884634646 +727 596 4 883709188 +577 409 5 880470682 +256 665 4 882164644 +747 215 5 888732899 +758 1244 3 881713279 +910 125 3 880821383 +598 895 2 886710977 +890 228 4 882404879 +514 710 5 875318331 +504 928 4 887831353 +938 1014 4 891356632 +730 246 4 880310264 +889 22 3 880178158 +664 582 1 876525044 +751 347 4 887134587 +378 83 4 880045989 +846 414 4 883949771 +440 324 5 891548567 +457 179 4 882397963 +577 179 2 880474829 +892 729 4 886610174 +716 404 4 879796438 +892 265 4 886608380 +701 300 3 891446520 +57 15 4 883697223 +751 96 4 889133154 +897 50 5 879994113 +671 849 3 884036050 +796 785 5 893047287 +746 204 5 885075539 +904 451 4 879735584 +189 525 5 893265946 +766 577 3 891310934 +642 1053 3 886207279 +565 509 4 891037692 +18 512 5 880131407 +200 931 3 891825627 +406 1197 3 879539884 +916 246 5 880843318 +506 607 4 874874851 +770 748 5 875971655 +727 470 5 883711847 +807 79 5 892528690 +32 455 2 883717796 +922 949 5 891454320 +447 118 4 878854578 +881 526 5 876538251 +881 125 5 876536745 +881 405 4 876536667 +593 405 3 875659943 +727 1035 2 883712245 +561 496 3 885807369 +767 300 4 891462511 +711 427 5 886030557 +13 765 2 886303934 +172 428 4 875537964 +916 213 4 880844675 +704 187 4 891397143 +223 288 3 891548562 +499 98 4 885599119 +894 121 3 880993662 +805 554 1 881695080 +695 323 2 888806292 +497 53 3 879362178 +747 475 5 888639397 +816 294 5 891711801 +758 1012 4 880672727 +94 1135 4 891722646 +758 665 2 882055988 +910 24 3 880821367 +932 611 5 891250418 +479 408 5 879460091 +398 71 5 875743517 +712 724 3 874957268 +655 313 4 888474285 +939 1190 5 880260883 +622 375 2 882592625 +859 1315 4 885775251 +611 882 4 891636192 +875 300 3 876464800 +642 405 3 885606946 +247 70 5 893097024 +659 423 4 891384414 +893 412 3 874829249 +938 370 5 891357137 +864 1303 2 888890997 +279 946 3 875313032 +796 1048 2 893047288 +807 94 2 892823225 +394 715 4 880888689 +679 249 3 884486594 +648 826 3 882212526 +536 755 4 882360993 +916 194 4 880843997 +798 28 4 875638354 +23 423 3 874786488 +843 250 4 879445087 +594 245 3 874780909 +697 456 3 882622287 +921 411 2 879380142 +652 300 4 882566890 +650 633 4 891371091 +805 476 1 881705592 +10 430 3 877886597 +662 276 3 880570080 +83 728 4 880308909 +805 525 4 881696335 +567 673 3 882427089 +201 22 2 884112201 +634 1067 4 875729069 +773 152 5 888539398 +785 288 3 879438537 +534 760 2 877808098 +763 509 5 878920895 +429 529 4 882385243 +889 511 4 880178183 +674 678 3 887762480 +659 178 5 891332261 +535 302 3 879617063 +819 381 4 884105841 +930 269 4 879535392 +902 306 4 879463212 +877 340 3 882676395 +645 656 4 892053241 +881 27 3 876538953 +379 234 5 880524541 +38 1016 5 892429542 +737 169 4 884314644 +336 368 1 877756695 +472 472 5 875979153 +551 393 5 892782901 +919 112 3 875289417 +463 125 4 877385590 +547 302 5 891282575 +634 690 3 877368446 +707 1022 3 879439088 +303 47 5 879467959 +596 300 4 883539011 +811 315 4 886377579 +774 58 1 888556698 +588 202 1 890015500 +518 289 4 876823804 +942 607 5 891282931 +504 202 3 887909347 +925 948 2 884717790 +697 742 3 882622044 +437 1006 3 881001472 +216 81 4 880233726 +580 286 4 884124750 +867 651 5 880079065 +712 716 5 874730370 +394 173 5 881057730 +437 52 3 880141402 +808 300 4 883949681 +496 190 5 876072632 +823 152 5 878437703 +899 79 5 884122278 +927 1229 3 879197198 +764 284 4 876243015 +773 209 5 888539425 +57 50 5 883697105 +722 333 5 891279945 +484 117 4 881449561 +488 178 4 891294158 +894 252 3 879896897 +507 1237 5 889964311 +235 463 4 889656008 +716 117 4 879793542 +747 429 4 888639823 +892 496 5 886609435 +707 782 3 886288263 +749 986 3 878850107 +908 484 4 879722361 +724 289 1 883757703 +437 172 4 880140257 +43 274 5 883955441 +869 294 3 884490151 +868 59 4 877103757 +854 12 5 882813990 +561 544 2 885809872 +234 31 4 892334803 +758 580 4 881974880 +601 421 1 876350060 +934 664 4 891193331 +933 651 3 874854081 +889 117 4 880177154 +11 58 3 891904596 +804 22 5 879444407 +643 403 3 891449534 +775 900 3 891032956 +710 343 3 882063327 +731 527 5 886184682 +727 328 4 883708149 +64 591 4 889740394 +643 325 2 891446581 +538 642 3 877107633 +886 939 4 876031765 +933 746 4 874854762 +899 168 4 884121799 +393 483 4 889554540 +705 1544 4 883427691 +383 316 5 891192472 +608 1063 5 880405659 +527 135 2 879456587 +170 294 3 884705913 +821 117 3 874792442 +816 331 5 891710922 +727 71 3 883711069 +447 235 2 878854605 +927 1093 4 879177243 +943 195 4 888639407 +734 313 4 891022311 +744 301 3 881171857 +880 1210 4 880243790 +822 235 3 891039543 +693 582 2 875482477 +648 472 3 882211965 +435 271 4 884130671 +796 776 4 893219065 +852 50 5 891036414 +671 1491 1 884034132 +889 300 3 880176620 +804 1016 4 879441099 +754 282 4 879451804 +324 873 5 880575108 +537 197 4 886030891 +930 845 3 879534724 +758 218 4 881977487 +717 825 2 884642558 +640 169 5 874777890 +666 237 3 880313391 +836 1065 4 885754231 +468 1070 5 875301653 +823 721 4 878438695 +916 472 3 880843697 +2 272 5 888979061 +920 270 3 884219993 +741 66 3 891018266 +484 176 4 891195298 +708 1023 3 877326114 +663 410 3 889492759 +87 174 5 879875736 +479 169 5 879460917 +374 96 4 880938870 +693 187 3 875482336 +940 310 3 884800966 +11 301 4 891902157 +389 199 5 880165388 +860 690 4 876750421 +784 315 4 891386988 +527 116 4 879456611 +932 507 5 891249675 +222 198 4 881059039 +524 275 3 884832616 +189 255 2 893277551 +286 16 3 876521809 +650 658 3 891387571 +773 432 4 888539232 +857 258 5 883432193 +787 319 3 888979721 +871 307 3 888192315 +830 29 1 891899476 +919 458 2 875289212 +417 515 4 879646225 +328 121 4 885048266 +786 357 5 882842878 +870 276 4 889717102 +863 324 5 889289385 +627 468 2 879530408 +637 237 2 882903511 +734 496 5 891025523 +609 1 1 886896185 +551 125 4 892783791 +5 63 1 878844629 +479 756 1 879462203 +751 394 4 889297640 +696 520 5 886404617 +874 197 4 888633310 +883 487 5 891755066 +897 389 3 879991341 +630 273 5 885666779 +506 218 3 874873615 +303 4 4 879467936 +472 423 5 892791017 +745 28 2 880123671 +758 550 4 881978115 +486 297 4 879874629 +432 282 5 889416456 +913 25 3 881366974 +908 111 3 879723073 +782 748 4 891498720 +846 849 3 883950129 +739 195 5 886958939 +506 604 4 874873528 +484 415 3 891195857 +904 300 4 879735109 +655 200 4 887473639 +886 239 3 876032635 +868 132 4 877103195 +618 1212 2 891309410 +641 969 4 879370259 +666 657 4 880139642 +90 750 4 891383319 +847 1204 3 878940757 +387 204 2 886479771 +711 755 3 879994581 +697 246 5 882622798 +766 403 3 891310444 +781 318 3 879634124 +795 89 4 880569085 +938 151 4 891356679 +788 199 5 880868673 +764 56 4 876244472 +666 92 3 880139493 +758 481 5 881976031 +751 154 3 888871900 +847 93 1 878775570 +871 1024 3 888192689 +532 1228 3 874789704 +863 299 2 889289385 +922 746 4 891451143 +296 276 5 884198772 +91 343 4 891438151 +648 635 2 884883476 +873 750 3 891392303 +815 86 5 878693989 +23 116 5 874784466 +334 496 3 891547040 +633 147 4 875325740 +835 183 4 891034023 +445 298 2 891199906 +899 254 2 884122845 +796 66 5 893047241 +495 631 2 888632677 +903 183 4 891032872 +864 86 4 888890547 +788 141 3 880869984 +334 208 5 891546405 +899 83 4 884121214 +892 946 3 886610996 +94 365 3 891722383 +676 222 4 892686273 +846 4 5 883948908 +882 180 4 879865307 +496 771 2 876073865 +770 298 4 875971902 +422 218 4 879744086 +791 754 4 879448086 +454 111 1 888267086 +650 494 3 891371153 +871 1137 3 888193541 +450 1135 4 882396352 +654 147 3 887863488 +387 100 5 886484336 +13 132 4 882140002 +867 22 5 880078424 +682 187 5 888517235 +894 343 2 883518895 +38 35 5 892433801 +870 332 2 879982785 +888 180 4 879365004 +655 660 2 888475101 +782 1012 2 891499344 +540 274 4 882157662 +546 50 5 885140368 +650 56 3 891369798 +706 258 4 880997001 +758 170 5 881976233 +107 322 1 891264535 +862 977 4 879302877 +354 971 3 891217482 +551 310 4 892775516 +800 289 4 887646980 +354 196 3 891218457 +181 1025 1 878961668 +603 313 5 891956091 +655 953 3 887427243 +61 294 2 891220884 +303 559 4 879467670 +919 244 2 875289025 +763 55 4 878917384 +715 471 4 875962202 +486 288 4 879874153 +751 709 4 889132929 +655 1135 3 887427743 +216 210 4 880235229 +655 56 3 887428060 +747 188 5 888639890 +456 1107 4 881375587 +916 509 4 880844312 +360 96 3 880355803 +387 172 4 886480206 +893 240 4 874828864 +58 174 4 884305271 +486 268 3 879874064 +738 189 4 875351404 +758 141 4 881977533 +279 687 4 878793072 +785 152 4 879439527 +843 52 2 879447110 +848 82 5 887039164 +540 286 4 882156584 +5 181 5 875635757 +497 665 2 879310966 +5 412 3 875635416 +871 202 4 888193385 +472 176 5 875981664 +627 942 2 879530408 +405 970 1 885546487 +276 334 4 877935456 +642 54 4 886206959 +901 181 4 877127128 +246 1220 3 884921794 +262 338 4 879961532 +2 278 3 888551647 +474 4 5 887927588 +878 165 4 880866241 +833 118 2 875038483 +864 391 4 888893224 +525 14 3 881086078 +932 1205 5 891250643 +591 435 4 891031724 +556 268 4 882135646 +859 535 5 885774867 +906 544 4 879435664 +405 1308 1 885546336 +843 628 2 879443951 +868 685 1 877111394 +763 153 4 878915692 +617 56 1 883789425 +791 301 3 879448035 +767 170 5 891462717 +314 477 3 877886375 +600 174 4 888451665 +524 1048 4 884627594 +764 237 4 876243440 +826 422 2 885690379 +754 292 3 879451958 +328 911 3 893195879 +844 97 3 877386855 +293 877 2 888904265 +711 475 5 876185673 +924 421 4 885458060 +827 302 4 882201356 +389 486 4 880086971 +716 506 4 879794775 +727 55 3 883710375 +911 205 3 892839454 +452 661 4 875261747 +727 977 2 883709948 +782 127 4 891499213 +793 248 4 875103875 +472 227 5 875981429 +751 82 4 889133334 +459 409 2 879563796 +854 735 3 882813990 +709 50 5 879846489 +424 276 2 880859623 +426 968 3 879444952 +749 215 4 878847172 +488 89 4 891294854 +158 210 4 880134296 +940 343 2 884801246 +326 427 4 879875483 +586 234 3 884060614 +936 253 5 886832454 +863 903 3 889289570 +715 2 3 875964926 +303 615 4 879467413 +276 245 3 877935446 +405 920 1 885549746 +478 393 4 889397306 +900 284 2 877833287 +928 358 5 880936023 +774 222 3 888558539 +262 596 4 879961980 +625 192 2 892000438 +489 338 3 891448200 +880 849 3 880167918 +260 881 4 890618537 +659 1267 3 891385689 +269 1427 2 891448141 +791 245 4 879448087 +885 154 3 885713434 +709 1059 5 879847945 +18 32 2 880132129 +871 1022 3 888192689 +144 100 5 888104063 +653 496 2 878866679 +276 567 3 874792794 +788 118 3 880870335 +854 461 3 882814298 +387 191 4 886479610 +896 471 3 887159972 +883 175 5 891694312 +642 411 5 885605834 +454 486 3 881960385 +7 69 5 891351728 +222 692 4 878182370 +863 342 1 889289241 +665 135 4 884294880 +819 346 5 884012487 +455 239 3 879111397 +344 628 4 884899442 +844 184 3 877387769 +15 748 3 879455262 +303 287 4 879485203 +452 102 2 875560150 +546 379 4 885141465 +455 200 5 879111092 +807 227 4 892529805 +679 215 3 884487999 +60 496 4 883326682 +305 505 3 886323006 +895 301 4 879437793 +874 14 4 888632411 +939 993 4 880260853 +405 1591 1 885549943 +279 30 2 877756984 +672 284 4 879789030 +885 588 4 885714820 +16 202 5 877724726 +463 111 2 877385414 +843 71 2 879449256 +796 761 3 893048622 +741 181 4 891036681 +790 67 3 885158007 +705 82 5 883427663 +698 181 3 886366141 +405 923 2 885549464 +655 317 3 887474269 +577 215 5 880474556 +69 79 4 882145524 +663 978 4 889492614 +795 174 4 880569625 +650 926 3 891388294 +479 485 3 879460844 +927 105 1 879181879 +568 178 4 877907327 +880 793 4 880174677 +790 716 4 885158033 +833 428 2 875134110 +661 280 3 886841562 +848 845 5 887046565 +854 144 3 882814298 +762 246 1 878719294 +425 854 4 878738854 +648 1258 2 884366613 +903 248 2 891031309 +618 73 3 891309440 +664 497 3 878092649 +798 275 4 875295842 +886 200 3 876031573 +903 1 3 891031280 +699 828 3 884152917 +650 417 3 891387591 +83 756 4 883867791 +316 582 5 880854539 +592 235 3 882608662 +568 100 4 877907281 +764 4 3 876245421 +456 402 2 881375416 +449 475 5 879958603 +830 501 3 891561474 +655 1024 3 887650979 +653 780 2 880606620 +169 482 3 891359171 +936 93 5 886833795 +919 976 2 875289453 +578 245 3 887229523 +487 803 2 884045297 +771 97 1 880659919 +293 96 3 888905519 +933 132 3 874853605 +906 676 5 879435415 +899 479 4 884121612 +655 1407 2 887491131 +758 653 3 881975922 +592 480 4 882955662 +747 176 4 888638958 +397 243 1 875063613 +932 213 3 891249038 +931 690 4 891036003 +710 346 4 883705502 +22 50 5 878887765 +848 357 5 887038104 +378 323 3 890572396 +538 483 5 877109932 +542 780 3 886533003 +896 39 2 887158739 +606 942 4 880926700 +279 180 2 875308670 +788 679 2 880871057 +707 1545 2 886288189 +934 161 4 891193290 +851 79 4 875731722 +536 631 2 882363934 +742 100 5 881335492 +886 558 3 876031656 +747 8 5 888639175 +889 252 3 880177503 +738 179 3 875353869 +830 161 4 891561870 +923 928 4 880388306 +380 97 3 885478271 +764 125 4 876243795 +712 432 4 874730056 +610 755 5 888703710 +682 363 2 888522612 +868 998 2 877112063 +942 362 3 891282420 +399 235 4 882340876 +445 281 1 891200417 +13 819 1 882141924 +916 49 3 880845673 +709 427 4 879846489 +922 550 3 891450805 +590 274 3 879439256 +721 988 3 877137598 +391 194 4 877399486 +673 323 2 888787508 +506 2 4 874874850 +504 282 4 887831838 +851 915 5 893090752 +607 462 4 883880110 +31 1019 5 881548082 +647 496 4 876534275 +796 880 3 892611840 +425 443 2 878738956 +901 111 3 877126434 +406 97 5 879446639 +102 760 1 888803245 +931 220 3 891037046 +849 568 4 879695317 +546 816 3 885141411 +869 13 3 884491199 +880 584 3 880242933 +896 568 2 887159603 +851 455 3 875730379 +751 433 3 889134186 +601 148 3 876348140 +794 286 3 891034156 +496 22 4 876065259 +447 1009 4 878854876 +757 231 2 888466614 +757 258 5 888443306 +943 27 4 888639954 +796 414 3 892663044 +453 790 4 877561800 +616 748 3 891224840 +605 12 4 881016144 +630 15 3 885666718 +861 301 4 881274504 +184 368 1 889908104 +665 88 3 884294552 +624 1067 4 879793330 +847 173 5 878940332 +708 121 3 877325349 +669 190 3 892550170 +803 321 4 880054792 +894 979 3 880416473 +738 173 5 875350012 +748 169 4 879454848 +682 585 4 888522021 +655 464 3 887523367 +259 1074 3 874725264 +417 779 2 879649577 +758 290 5 881978495 +798 82 4 875915855 +727 1224 3 883712219 +312 614 4 891698865 +934 389 3 891195811 +796 409 3 893219122 +616 895 3 891224644 +320 1291 3 884749172 +878 175 2 880869911 +308 629 4 887738894 +100 887 2 891374868 +796 1299 2 892676043 +85 42 3 879453876 +316 100 4 880854083 +773 428 4 888539512 +882 419 5 879864917 +559 566 5 891034688 +500 740 3 883865632 +62 72 3 879375762 +293 815 2 888905122 +894 475 3 880416176 +379 97 3 882563752 +222 147 4 877563694 +880 29 2 880167965 +788 1407 3 880871717 +919 100 5 875288522 +796 194 4 892662826 +738 732 3 875350316 +912 611 3 875965830 +566 134 5 881649853 +736 323 1 878709187 +70 79 4 884149453 +765 50 2 880346255 +732 332 5 882589819 +642 416 5 886455469 +782 881 3 891498381 +897 659 5 879990923 +152 393 5 884018430 +717 1282 4 884642762 +622 227 3 882592815 +382 496 3 875946945 +719 220 5 888454728 +689 300 5 876674606 +625 91 4 891263057 +521 833 2 884476869 +545 679 2 879899438 +912 654 3 875966027 +718 255 4 883348773 +727 231 3 883713286 +721 286 5 877137285 +843 661 3 879447077 +426 482 5 879442737 +921 815 5 879379942 +669 290 2 892549820 +896 209 3 887158790 +714 117 5 892777876 +880 392 3 880242475 +383 488 4 891193242 +640 42 5 874778345 +234 89 3 892079910 +758 722 3 881980408 +666 172 3 880139090 +807 195 3 892528999 +560 93 3 879976559 +782 299 3 891498079 +336 871 2 877757550 +315 137 5 879799423 +387 178 3 886483824 +798 14 2 875295930 +7 217 4 891352778 +237 483 5 879376381 +644 259 4 889076433 +336 1249 3 877756356 +606 827 3 880922625 +653 290 3 880153522 +504 225 4 887832207 +655 1149 3 887429107 +907 628 5 880158986 +911 638 4 892839391 +907 202 5 880160204 +293 229 2 888907726 +458 631 4 886397541 +234 52 4 892334141 +875 496 4 876465144 +707 732 4 886287160 +416 150 5 893214041 +766 214 2 891309667 +804 456 3 879444011 +865 240 2 880143680 +805 1014 4 881694265 +527 431 3 879456363 +825 125 5 880755942 +561 40 2 885810834 +72 708 4 880036691 +457 154 5 882397058 +674 121 4 887762881 +550 271 5 883425652 +748 483 4 879455040 +798 602 3 875639260 +684 15 5 878759758 +116 916 2 892683699 +269 432 4 891450005 +718 289 3 883348391 +437 417 5 880143482 +569 762 3 879794740 +593 204 4 875660886 +886 1095 2 876033897 +897 429 5 879990587 +932 576 2 891252198 +790 216 5 885156435 +668 288 4 882818604 +522 208 5 876961248 +648 569 3 884883578 +503 224 3 880390128 +773 98 4 888540279 +343 1267 4 876406576 +406 163 3 880131582 +790 143 3 885156193 +916 87 3 880844262 +751 494 4 889133556 +450 485 5 882373088 +758 250 4 880672766 +759 756 4 875227922 +271 729 4 885848996 +94 587 4 891721078 +222 423 4 878183657 +601 234 1 876348947 +878 435 4 880866103 +184 241 3 889909812 +747 222 2 888640180 +899 1016 3 884120149 +276 844 4 877934677 +64 1065 1 889737968 +935 924 4 884472392 +402 275 5 876266741 +751 143 5 889133882 +932 657 5 891249767 +936 50 4 886832282 +704 185 4 891398702 +407 569 3 876348296 +378 193 4 880056160 +943 405 4 875502042 +763 972 3 878918333 +894 323 2 879896268 +684 215 5 875812176 +886 227 3 876032331 +747 985 2 888732640 +453 941 2 877561613 +578 246 2 890939697 +500 755 3 883876251 +650 230 4 891369656 +703 1 4 875242851 +886 157 4 876031695 +757 1016 3 888444563 +877 737 1 882677749 +913 963 4 881725737 +561 960 4 885809605 +686 969 5 879546083 +521 249 4 884476257 +798 95 5 876175467 +697 1067 5 882622170 +805 337 2 881180971 +698 9 3 886367956 +864 578 3 888889948 +749 258 4 878846265 +181 687 1 878961814 +329 248 3 891656640 +330 694 5 876545971 +551 284 4 892783110 +663 12 5 889493576 +899 747 1 884122535 +707 703 4 886287236 +389 728 3 880089302 +880 55 3 880167778 +77 199 5 884733988 +860 1041 2 887754411 +533 121 4 879192901 +498 174 3 881956953 +818 271 4 891870389 +915 333 3 891031450 +885 821 3 885713585 +409 45 4 881168603 +373 632 3 877106233 +720 316 4 891263387 +447 175 3 878855847 +331 160 5 877196702 +805 558 5 881695243 +761 1272 1 876190160 +445 327 2 891035830 +592 246 5 882608500 +645 214 4 892054570 +493 678 3 884129979 +566 1065 5 881650709 +871 270 5 888192858 +496 94 1 876070975 +817 597 2 874816007 +711 416 3 879995215 +7 318 5 891352010 +711 250 2 876185855 +454 942 2 888267198 +697 325 4 882621673 +749 72 3 878850388 +645 708 3 892055072 +906 276 5 879435299 +541 474 5 884047153 +659 43 4 891385955 +566 411 4 881651013 +840 483 5 891208703 +222 265 3 878182279 +727 597 3 883709641 +749 402 4 878849829 +805 50 4 879971214 +763 168 5 878919055 +749 1263 2 878850533 +592 245 1 882607434 +770 988 3 875971703 +682 558 1 888519276 +758 448 4 881978805 +766 50 4 891309053 +620 100 1 889987073 +618 90 1 891309351 +464 292 5 878354722 +790 550 4 885156618 +642 932 5 885605866 +932 225 2 891251985 +933 405 3 874939157 +524 385 3 884636453 +833 923 5 875039153 +102 4 2 888801522 +500 1195 4 883875468 +708 269 3 892718875 +782 251 3 891500109 +835 421 4 891034023 +253 132 5 891628416 +332 568 4 888098151 +608 306 4 880402983 +911 272 4 892838135 +63 269 3 875746948 +784 323 4 891387704 +715 4 4 875964300 +18 8 5 880130802 +864 596 4 888890001 +903 515 4 891031178 +915 268 5 891031477 +622 934 2 882591726 +582 932 2 882963114 +160 157 5 876858346 +807 234 3 892530216 +314 540 3 877890407 +918 514 2 891987082 +561 230 3 885809426 +815 57 5 878694854 +870 22 4 875680165 +706 410 4 880997444 +727 211 4 883710464 +569 14 4 879793948 +715 257 4 875962423 +894 1658 4 882404137 +913 156 3 880824512 +627 947 3 879531301 +487 197 3 883446404 +650 431 3 891369620 +652 333 4 882566857 +416 875 2 876696938 +897 238 4 879990779 +864 1412 1 888892461 +847 1137 5 878775404 +592 222 1 882608145 +844 597 3 877382339 +533 660 5 882902988 +683 322 2 893283903 +554 95 4 876550526 +804 322 5 879440700 +748 194 4 879454773 +808 288 3 883949454 +345 462 5 884901637 +913 79 4 880758974 +903 820 4 891031768 +738 222 4 875350913 +249 92 5 879572567 +790 1244 1 884462598 +911 484 3 892839363 +286 81 3 889652601 +394 577 2 881059704 +802 674 2 875985768 +741 582 3 891456156 +4 358 2 892004275 +666 546 4 880313640 +665 756 3 884292654 +332 411 4 887938738 +936 137 4 886832544 +744 188 3 881170528 +899 204 4 884121683 +763 357 4 878919116 +851 71 4 875731567 +804 443 5 879442122 +308 179 4 887736584 +808 312 3 883949873 +847 1012 1 878775729 +704 435 4 891397058 +889 1113 5 880182295 +922 159 3 891447853 +545 380 3 884134628 +781 181 5 879634318 +747 584 5 888640524 +796 1036 4 893219522 +416 491 4 886316596 +943 423 3 888639231 +417 651 4 879648212 +883 403 5 891696999 +774 569 2 888557857 +710 432 5 882064434 +493 186 5 884131897 +770 50 3 875971949 +326 500 3 879875644 +619 27 4 885954159 +804 25 4 879442490 +425 672 2 878738887 +296 9 4 884196523 +709 541 3 879848695 +867 176 3 880079094 +503 546 4 879438685 +933 385 3 874939207 +128 506 4 879968125 +840 163 4 891204295 +919 756 3 875289170 +382 59 5 875947049 +770 14 5 875972024 +387 1187 4 886480623 +610 98 5 888702902 +908 427 5 879722642 +724 313 5 883756996 +929 318 4 879640225 +894 1048 4 880993661 +918 382 4 891986846 +800 222 4 887646226 +429 176 3 882385542 +881 530 5 876538571 +194 515 4 879524216 +655 121 3 887651060 +802 448 3 875985686 +807 610 3 892684802 +851 406 2 875731674 +580 50 5 884124927 +748 175 5 879455019 +387 179 5 886484336 +911 399 5 892840120 +755 322 3 882569912 +645 174 4 892053518 +388 328 4 886439561 +846 949 2 883949643 +804 91 4 879442192 +453 575 2 892447163 +639 1193 4 891239702 +373 459 4 877106966 +886 66 3 876032442 +731 14 3 886179040 +756 183 4 874831383 +899 238 2 884121424 +916 33 2 880845135 +782 1127 2 891497793 +569 124 5 879793886 +239 507 5 889180651 +698 709 4 886367065 +890 211 2 882915661 +239 276 5 889179506 +523 67 4 883702654 +892 820 3 886611079 +880 42 5 880174808 +901 395 3 877131500 +783 948 3 884326726 +279 431 4 875310303 +622 195 5 882591938 +402 710 2 876267206 +773 790 3 888539825 +751 174 4 889133012 +715 564 2 875964300 +813 680 2 883752660 +897 616 5 879990877 +889 1073 5 880179893 +727 1215 2 883713521 +671 550 3 884035406 +561 235 3 885809806 +815 136 5 878695311 +437 475 3 880140288 +374 693 5 880396359 +533 402 4 888845284 +279 461 3 875306820 +473 20 3 878157568 +475 258 1 891451205 +549 121 4 881672461 +567 490 4 882425673 +497 141 3 879363611 +712 395 4 874957005 +796 500 4 892761629 +872 328 4 888478822 +109 228 5 880577604 +379 663 3 891674403 +163 316 5 891219976 +592 1275 3 882956624 +692 523 3 876953204 +487 98 5 883446637 +915 307 3 891030032 +452 15 4 875275763 +712 423 3 874729960 +425 301 4 890346705 +664 186 5 876526052 +469 603 5 879524376 +429 1101 5 882385399 +506 31 4 874873247 +682 88 4 888521599 +588 326 4 890014782 +346 96 5 874948252 +113 299 5 875076986 +639 204 3 891240751 +349 291 3 879465934 +805 625 3 881695560 +745 96 4 880123399 +289 455 4 876790464 +943 943 5 888639614 +437 716 5 881002345 +910 257 3 880821349 +844 121 3 877382055 +457 135 5 882397240 +880 176 5 880167731 +796 153 5 892676155 +536 191 4 882360187 +807 627 4 892684456 +416 103 3 886320119 +321 479 4 879438607 +833 67 3 875134891 +659 86 5 891386071 +639 580 2 891239581 +891 933 3 883429998 +532 982 3 888631077 +250 154 4 878090114 +846 76 4 883949200 +438 257 4 879868159 +764 255 4 876244181 +727 779 2 883712717 +642 140 3 886569257 +497 769 3 879362430 +234 465 2 892334803 +507 751 5 889964162 +682 781 2 888521833 +305 462 5 886323525 +416 218 3 876699488 +308 709 3 887737334 +746 568 4 885075211 +429 226 3 882386145 +286 348 4 889651179 +939 222 5 880260956 +18 633 5 880131358 +804 191 4 879442025 +551 770 2 892778244 +912 14 5 875966927 +795 189 3 881265284 +878 225 3 880870765 +716 605 3 879796215 +805 118 3 881695745 +800 25 4 887646980 +923 273 5 880387474 +524 239 2 884636498 +577 202 4 880474787 +788 729 4 880870052 +141 249 2 884585386 +711 172 5 879992445 +671 184 3 884035775 +534 717 5 877808198 +756 1074 4 874831383 +933 21 1 874854383 +939 1023 4 880262057 +151 423 4 879528570 +758 134 5 881975005 +769 121 4 885423865 +854 458 3 882812826 +444 269 4 891979402 +807 141 3 892684576 +650 719 3 891387833 +200 204 5 884128822 +441 338 4 891035289 +370 523 3 879434999 +835 210 5 891033303 +648 21 3 882212609 +708 319 5 892719062 +911 82 2 892840888 +747 357 5 888638876 +494 358 3 879540901 +627 77 2 879530305 +673 300 3 888786942 +668 137 3 881605093 +774 273 1 888558539 +777 509 4 875980449 +805 202 2 881696729 +551 640 4 892783750 +839 455 4 875752107 +590 248 4 879439645 +894 256 3 879896704 +907 42 4 880159957 +747 1205 3 888639594 +681 1105 3 885409742 +927 393 5 879193732 +831 713 5 891354970 +92 708 4 875654432 +42 141 3 881109059 +456 480 4 881373573 +795 552 2 883774317 +650 88 3 891384226 +601 483 4 876348782 +854 96 3 882814467 +804 127 3 879440947 +577 317 5 880474871 +249 69 5 879572600 +268 1208 2 875745398 +659 90 2 891386577 +298 356 3 884182627 +924 211 3 885457891 +533 135 3 879191022 +758 116 5 881976289 +924 285 4 884371386 +450 273 3 882377726 +128 458 4 879968921 +650 809 3 891383926 +669 208 2 891517215 +862 416 3 879305351 +595 845 3 886921448 +766 474 5 891309011 +717 269 5 884642133 +618 679 1 891308615 +624 979 4 879793511 +624 619 3 879793408 +548 950 4 891415643 +788 755 3 880870881 +782 302 3 891497698 +378 1221 3 880056351 +682 95 5 888523581 +387 718 4 886480206 +916 221 4 880843594 +21 990 2 874951039 +613 50 5 891227365 +527 174 4 879455847 +479 203 3 879460893 +870 658 4 875679992 +130 802 5 876252136 +495 211 5 888633194 +708 845 5 892719269 +655 910 3 889458990 +85 186 3 879454273 +882 50 5 879867694 +268 765 2 875743979 +904 278 5 879735616 +624 546 3 879793093 +870 856 3 879715002 +540 13 4 882157585 +653 659 1 880150330 +786 655 4 882843683 +371 73 5 880435397 +693 161 3 875484089 +201 924 3 884140751 +747 493 5 888734012 +648 565 3 884883679 +532 12 5 893119491 +878 204 2 880869911 +297 946 2 875239092 +757 328 3 888469286 +239 133 3 889178652 +417 230 3 879647850 +702 350 1 885767336 +640 315 5 886353894 +500 328 3 883864749 +889 818 4 880177540 +807 135 5 892705362 +666 479 4 880139642 +838 22 4 887065878 +527 179 3 879456587 +772 322 4 877533546 +854 283 3 882812492 +789 742 3 880332400 +488 97 4 891293863 +270 566 5 876955939 +120 508 2 889490979 +880 316 5 892958128 +843 860 3 879443443 +709 183 5 879846590 +831 603 5 891354535 +755 880 4 882569732 +253 168 3 891628278 +450 76 3 882395913 +94 637 3 891723186 +280 405 2 891700963 +848 971 5 887043421 +409 211 4 881108829 +445 272 3 890988205 +417 188 4 879647232 +84 100 4 883452155 +727 520 4 883710288 +892 1224 4 886609792 +387 243 1 886484460 +591 70 4 891031321 +763 1129 4 878918908 +815 391 2 878697734 +554 526 4 876550100 +586 1090 3 884065797 +738 235 2 875350764 +870 431 3 885586224 +592 276 5 882608401 +296 13 3 884196665 +693 507 4 875484837 +405 1412 1 885549005 +488 322 3 891293009 +796 298 5 892660954 +919 564 2 875373770 +632 133 4 879457064 +627 628 4 879530501 +194 167 2 879549900 +805 522 5 881698095 +683 132 5 893286207 +603 988 4 891956529 +650 528 3 891370998 +805 164 3 881695293 +15 297 3 879455606 +51 692 3 883498685 +880 1664 4 892958799 +643 685 3 891445354 +853 294 2 879365035 +450 492 5 882397049 +482 243 2 887644023 +524 194 4 884634646 +592 70 4 882956803 +902 300 4 879463373 +123 288 3 879809053 +900 186 2 877833957 +747 695 2 888733111 +846 810 3 883950434 +52 282 4 882922302 +758 571 4 882054936 +600 1239 2 888452564 +1 124 5 875071484 +880 2 3 880167732 +758 650 5 881979419 +409 1346 3 881168711 +46 748 5 883614645 +690 1210 3 881180035 +711 923 5 879993629 +440 883 5 891550404 +749 609 4 881073104 +802 196 3 875985239 +327 228 4 887820171 +875 50 5 876465370 +672 874 4 879787643 +442 121 2 883390544 +829 515 4 881698803 +743 294 2 881277656 +934 432 5 891191976 +902 483 4 879465448 +454 8 5 888266643 +788 1478 3 880871173 +853 1280 4 879365091 +387 28 5 886483939 +786 195 4 882843312 +818 875 1 891870590 +468 89 4 875291722 +804 526 4 879442792 +666 654 5 880139382 +919 1278 4 875289761 +730 181 2 880310465 +524 700 5 884637246 +828 45 4 891380166 +533 554 1 879191691 +864 114 5 888888168 +741 180 4 891457855 +756 91 3 874830954 +458 56 5 886397679 +922 184 3 891449901 +92 998 2 875907649 +731 481 3 886182456 +583 519 5 879384338 +194 1112 3 879527999 +933 4 3 874854383 +566 742 3 881650627 +655 914 3 891817471 +339 187 5 891032700 +892 321 5 886610341 +738 228 5 875350316 +815 154 5 878694453 +671 89 5 884035406 +222 249 1 883815768 +875 654 4 876465230 +845 690 5 885409719 +682 362 2 888518251 +886 1048 4 876032840 +942 514 4 891283069 +479 609 5 879461951 +393 724 3 889729159 +883 647 5 891717319 +429 1220 3 882387233 +399 82 3 882344512 +748 187 4 879454958 +119 316 4 890626706 +474 137 5 887915188 +932 131 4 891250525 +398 610 4 875745631 +318 809 4 884498210 +758 173 5 881975182 +655 246 3 887474020 +749 58 3 878847988 +748 527 5 879454749 +407 67 1 876339975 +896 696 1 887235027 +757 198 4 888445864 +778 8 1 891234406 +561 178 4 885807713 +847 239 5 878940688 +653 286 4 884405346 +912 152 4 875966320 +719 71 3 883354106 +754 243 1 879451163 +476 268 4 883365503 +800 223 5 887646979 +506 657 5 874873745 +582 841 2 882962133 +589 338 3 883352654 +303 46 3 879467706 +360 258 4 880353585 +782 908 3 891498322 +313 631 2 891014313 +342 249 3 874984661 +925 332 4 884717404 +773 233 1 888540112 +37 831 2 880915607 +871 813 3 888193136 +716 511 5 879795542 +459 50 4 879563064 +928 878 5 880936022 +747 318 5 888732899 +94 47 5 891720498 +449 639 5 880410700 +815 95 3 878693381 +836 318 5 885754172 +561 156 4 885807484 +717 326 3 884641621 +374 597 4 880393460 +851 342 2 888540205 +587 301 3 892871197 +645 496 3 892053686 +774 194 3 888555998 +927 449 4 879196230 +354 65 4 891218046 +148 133 5 877019251 +755 245 4 882569881 +407 134 5 875042569 +934 384 4 891195573 +930 405 3 879534803 +693 88 3 883975500 +758 228 3 881977021 +716 69 5 879795188 +805 559 3 881695347 +932 648 5 891249903 +669 181 5 892549390 +727 89 5 883711298 +748 137 3 879454958 +699 304 4 880695431 +880 948 4 880166662 +669 514 3 892550215 +896 22 5 887157947 +42 181 5 881107291 +897 136 5 879990843 +498 423 3 881957267 +883 176 4 891696895 +843 188 2 879444767 +782 1537 3 891500066 +314 41 5 877887802 +561 233 1 885809246 +392 1226 4 891038288 +592 22 5 882955506 +523 255 5 883700144 +747 187 5 888639318 +741 92 3 891456427 +880 412 3 880167306 +638 117 4 876694995 +715 96 4 875963538 +787 937 3 888979074 +886 589 3 876031365 +908 434 4 879723128 +887 421 5 881379954 +501 108 4 883348564 +804 176 4 879441702 +543 1073 3 874863269 +795 152 4 881260622 +13 799 4 882139937 +696 124 5 886404617 +543 23 4 874864183 +276 248 4 882659269 +727 397 2 883712780 +798 110 4 875914458 +791 259 3 879448087 +825 619 4 880756834 +630 125 3 885666875 +887 946 4 881381348 +753 357 4 891401901 +450 750 3 884098229 +653 219 1 880152780 +1 95 4 875072303 +279 191 3 875734031 +642 186 5 885602739 +927 237 4 879177508 +785 886 3 879438591 +25 134 4 885852008 +758 241 3 881977109 +3 336 1 889237198 +846 26 4 883949335 +330 422 4 876547853 +807 566 4 892528999 +774 526 4 888556600 +880 293 4 880166872 +797 748 1 879439105 +865 328 3 880142857 +664 173 4 876525963 +807 181 5 892528954 +259 271 3 888721050 +449 274 2 879959003 +916 9 5 880843378 +746 161 3 885075304 +291 50 5 874805860 +706 9 3 880997105 +484 226 4 891195390 +804 1140 3 879446276 +10 180 5 877889333 +236 526 3 890116500 +213 154 5 878956101 +504 356 4 887840098 +907 696 5 880159081 +806 258 3 882384589 +543 177 4 877545356 +812 881 4 877625537 +871 127 5 888193081 +871 575 5 888192909 +763 382 5 878922829 +675 896 5 889488575 +710 886 3 882063528 +747 959 5 888733144 +896 569 2 887161488 +188 356 4 875074200 +605 79 5 879425432 +481 8 3 885828245 +795 550 3 883252004 +222 738 3 878182959 +162 474 3 877636556 +354 676 5 891216788 +912 56 2 875966027 +774 679 5 888557383 +762 815 1 878719406 +555 258 3 879962096 +741 480 5 891457855 +322 9 4 887314212 +907 248 5 880159038 +551 280 3 892778337 +766 69 4 891309668 +130 1220 5 876252343 +864 1101 4 888887502 +741 660 3 891040362 +758 28 4 881975990 +870 194 3 875679795 +890 403 1 882915661 +535 258 5 879619286 +889 171 4 880177970 +883 355 5 891692168 +899 284 3 884120205 +349 106 1 879466283 +234 495 4 892335042 +852 681 4 891036414 +889 649 2 880178511 +528 845 3 886812857 +673 12 4 888787587 +313 210 4 891014898 +657 269 5 884238002 +548 15 2 891415854 +391 705 5 877399133 +551 64 5 892776380 +450 1311 4 887139844 +330 443 4 876546377 +650 193 3 891382901 +713 270 2 888882179 +758 124 5 884999132 +533 242 4 884698095 +864 62 4 888889035 +406 563 1 879792975 +906 273 4 879434882 +796 161 5 893048377 +597 289 5 875338983 +298 742 3 884125553 +532 1300 3 888632446 +12 88 5 879960826 +538 162 3 877363863 +932 98 5 891249586 +880 720 2 880167965 +497 176 4 879310762 +597 294 4 875339083 +798 451 2 875638547 +184 318 5 889908571 +593 417 5 875671598 +682 823 2 888522613 +815 423 5 878694613 +852 274 3 891036369 +672 321 4 879787518 +774 659 3 888555864 +592 1011 4 882608699 +502 263 1 883702448 +773 940 2 888539766 +790 151 4 884461988 +658 475 4 875145667 +614 14 3 879464093 +429 228 2 882386485 +409 116 4 881107117 +854 23 4 882813647 +457 13 3 882393883 +796 586 3 893049257 +95 566 2 879196594 +408 334 2 889679901 +883 8 4 891694249 +447 716 2 878856573 +749 68 4 878849612 +498 181 2 881955014 +59 24 4 888203579 +580 619 3 884125175 +854 324 3 882811937 +398 603 4 875721548 +122 86 5 879270458 +886 623 1 876033069 +622 506 3 882670139 +778 144 4 890670638 +399 560 3 882352404 +348 151 3 886523456 +406 150 4 879446748 +435 405 4 884132540 +712 172 5 874729901 +502 313 4 883701792 +642 407 5 885606482 +582 125 3 882961632 +894 1462 3 882404642 +199 751 3 883782557 +733 283 3 879535368 +668 328 4 881523787 +759 405 4 881476969 +727 240 3 883709607 +497 123 3 879361727 +447 223 5 878856394 +45 845 4 881011188 +758 384 5 881979788 +11 88 3 891905003 +738 47 3 875353569 +620 676 3 889987190 +72 1 4 880035614 +779 258 5 875501254 +805 229 2 881694885 +189 511 4 893265349 +588 210 4 890015500 +267 157 5 878971874 +771 15 5 880659303 +870 96 4 879270357 +782 992 2 891499370 +673 528 5 888787587 +865 121 1 880144024 +568 303 4 877906697 +225 482 5 879540707 +268 144 4 875744106 +892 229 3 886610011 +867 657 5 880078769 +864 202 5 888887354 +796 747 4 893047167 +499 898 4 885597901 +801 301 5 890332820 +796 180 2 892675606 +774 510 2 888556484 +363 148 3 891497439 +659 257 2 891044849 +738 568 3 875350485 +458 527 2 886397857 +222 457 1 878181287 +806 952 2 882385578 +201 29 3 884141053 +534 125 3 877807816 +804 831 3 879443852 +368 447 1 889783453 +864 29 4 888891794 +894 1251 4 879896654 +316 127 2 880853548 +870 6 4 875680311 +804 71 4 879442538 +308 47 4 887738933 +783 300 4 884326348 +886 1170 3 876031481 +416 924 5 893212623 +881 400 2 876539128 +640 926 3 886474913 +532 1136 2 888636558 +265 815 3 875320424 +805 709 4 881696699 +543 357 4 874863803 +437 200 4 880140398 +896 770 5 887160702 +784 258 5 891387249 +782 1144 3 891499243 +934 2 4 891192087 +936 9 4 886832373 +805 323 5 879971214 +804 282 4 879444714 +727 168 5 883710152 +763 941 3 878915958 +918 962 4 891988029 +189 659 4 893265796 +108 281 4 879879985 +437 189 2 881001946 +864 106 3 877214236 +712 794 4 874957243 +913 173 5 880826542 +782 358 4 891498641 +757 230 4 888466614 +769 111 5 885424001 +882 1444 4 879877245 +921 1032 5 879381199 +751 238 3 889297524 +766 1021 2 891309011 +921 133 5 884673843 +897 465 5 879992030 +201 201 4 884112537 +682 395 3 888523657 +643 665 3 891449930 +457 1047 2 882395964 +308 1147 4 887738387 +754 922 3 879452073 +541 111 1 884645883 +154 185 5 879139002 +912 168 5 875966107 +875 258 4 876464694 +393 282 4 887744053 +724 995 1 883757597 +936 116 4 886832636 +627 655 4 879530536 +870 959 4 875680046 +643 246 5 891445312 +734 479 4 891025541 +805 190 5 881694423 +143 258 3 888407586 +642 117 4 886131655 +942 303 4 891282477 +112 258 3 884992484 +274 744 5 878945678 +753 657 5 891401665 +806 222 4 882385563 +749 271 5 879788762 +752 302 5 891208451 +877 333 4 882676259 +751 310 3 887134816 +934 145 3 891196610 +824 288 3 877020927 +887 1413 4 881380176 +406 285 5 879792811 +816 687 2 891711554 +919 676 4 875289061 +897 840 3 879993887 +766 28 5 891309668 +271 100 5 885847738 +712 67 3 874957086 +7 265 5 891350845 +717 148 3 884642958 +764 275 4 876242851 +747 333 4 888638335 +51 705 1 883498756 +381 120 1 892696587 +847 301 5 878774832 +13 767 1 882397011 +586 217 5 884061084 +796 293 5 892660251 +496 168 3 876065324 +854 100 5 882812225 +932 778 4 891251272 +733 13 3 879535694 +758 425 5 881977337 +7 275 4 891352831 +402 168 5 876267206 +269 1074 1 891448697 +890 214 4 882916588 +308 1074 3 887741271 +815 158 2 878695645 +730 322 1 880310202 +804 199 5 879442239 +642 795 4 886570173 +675 303 5 889488522 +189 588 4 893266105 +850 28 5 883195214 +913 741 4 881037004 +709 318 5 879846210 +537 184 3 886032246 +815 203 4 878696650 +505 97 4 889333676 +848 214 5 887048573 +880 99 3 880241219 +279 1288 4 891209077 +650 928 2 891370093 +797 990 2 879439456 +447 274 1 878854552 +933 241 2 874855069 +746 82 4 885075337 +455 662 4 879111554 +429 772 3 882386508 +786 111 5 882841667 +379 709 5 880526032 +927 158 2 879198608 +130 96 5 875216786 +692 194 4 876953340 +893 849 3 874830372 +740 328 3 879522814 +345 54 3 884993506 +525 676 2 881086518 +802 304 3 875985142 +913 216 4 881725796 +641 23 5 879370364 +342 89 3 875319090 +608 507 3 880403899 +634 323 4 875729217 +807 699 4 892528515 +868 90 3 877109874 +724 258 4 883757537 +504 382 4 887839709 +901 523 4 877132400 +764 1284 3 876244529 +442 1170 4 883388909 +892 615 5 886609029 +903 529 4 891033278 +326 447 4 879877388 +727 90 3 883711991 +629 288 4 880116722 +887 969 5 881379954 +393 304 4 887742110 +386 118 3 877655085 +843 667 2 879443597 +934 949 3 891197678 +354 165 4 891217755 +796 22 4 892662523 +826 99 3 885690379 +516 204 4 891290649 +805 866 1 881705412 +889 151 3 880177016 +450 1249 3 882812821 +640 540 3 874778479 +796 230 5 893048377 +932 274 5 891250704 +825 827 4 881184695 +921 934 3 879380496 +798 143 5 875639061 +901 250 3 877127196 +497 216 3 879310399 +923 334 5 880387129 +128 462 4 879966729 +738 168 3 875353869 +749 635 1 878850703 +790 405 3 884461925 +650 235 3 891388080 +534 25 5 877807845 +748 709 4 879454546 +836 56 4 885754096 +503 1009 2 884638911 +741 17 2 891455711 +389 664 4 880088290 +523 179 3 883703495 +330 284 5 876544311 +864 317 4 888887128 +723 258 4 880498768 +766 265 3 891309357 +865 117 2 880143746 +450 1107 4 887138957 +854 264 1 882811888 +943 124 3 875501995 +459 98 5 879564941 +911 969 5 892840807 +670 191 4 877975731 +756 1060 4 874831383 +847 96 4 878940301 +758 355 4 888461050 +332 173 5 888360092 +503 221 5 879438377 +697 343 4 882621548 +838 289 5 887061035 +727 164 5 883711497 +387 551 2 886481800 +916 186 3 880844175 +756 591 4 874829924 +833 656 4 875123536 +629 273 2 880117001 +385 488 5 879441599 +868 187 4 877107284 +618 709 2 891308665 +652 125 2 882567383 +1 217 3 876892676 +694 163 4 875729982 +326 90 1 879877198 +234 148 3 891228196 +655 930 2 887429812 +60 1122 5 883326498 +347 1011 3 881653155 +752 307 5 891208451 +328 751 3 885596088 +467 293 4 879532385 +521 679 3 884478515 +758 39 2 881974931 +57 195 3 883698431 +716 134 5 879795314 +757 550 3 888445820 +308 180 5 887737997 +851 748 3 874788804 +758 31 3 881977872 +746 64 4 885075790 +712 50 4 874729750 +868 410 3 877104414 +601 178 4 876348526 +617 423 1 883789294 +341 908 3 890758080 +327 778 3 887819462 +291 97 4 875087264 +577 403 4 880475187 +12 238 5 879960826 +798 996 3 875638717 +886 179 2 876032673 +374 179 1 880395575 +567 96 4 882427155 +473 1143 4 878157242 +572 222 2 879449763 +780 659 4 891363756 +606 118 4 878143785 +488 153 2 891293974 +476 780 3 883365274 +576 208 3 886986445 +680 242 4 876815942 +637 282 3 882903250 +733 258 3 879535011 +796 106 2 893194895 +938 717 2 891357060 +106 100 3 881449487 +848 517 5 887043514 +429 358 3 882387053 +864 286 5 890463283 +526 302 5 885681860 +717 24 2 884642297 +894 258 4 879896109 +839 742 3 875752200 +450 260 2 889568753 +406 806 4 879446748 +463 539 1 889936753 +512 1238 4 888578602 +599 278 3 880953441 +417 663 3 879647040 +58 134 5 884304766 +268 127 4 875309945 +314 1145 4 877892488 +673 286 4 888787508 +617 234 3 883789464 +899 50 5 884119794 +885 71 4 885714820 +726 898 2 889829235 +532 8 5 893119415 +749 300 4 878846365 +790 402 2 885156796 +455 942 4 879112011 +655 963 3 888475015 +294 257 3 877819599 +653 679 2 880153406 +804 824 3 879444133 +442 181 4 883390416 +830 449 2 891899475 +339 1240 5 891033855 +92 558 3 875906765 +882 172 5 879864970 +286 1060 5 889652989 +796 467 3 892675654 +497 151 3 879363510 +788 132 5 880869014 +798 400 3 876176160 +470 305 4 879178257 +796 831 2 893049303 +833 122 2 875135058 +786 176 4 882843069 +602 259 4 888638160 +851 330 3 884205246 +526 260 1 885681982 +570 271 4 881262256 +934 663 5 891192849 +607 137 4 883879556 +788 582 4 880869396 +233 528 5 877665324 +899 658 2 884121911 +840 671 3 891204891 +846 59 4 883948457 +496 155 1 876070859 +889 235 3 880177648 +934 605 4 891195288 +159 125 5 880557192 +780 385 4 891364125 +406 130 3 879540147 +774 178 4 888556483 +467 127 5 879532478 +419 174 5 879435628 +622 625 3 882671120 +653 293 3 886051879 +918 495 3 891987689 +641 657 4 879370062 +592 9 5 882608182 +503 190 5 880383030 +892 570 3 886610566 +709 97 5 879846784 +711 433 4 879992994 +901 443 3 877287910 +932 218 3 891250915 +385 497 5 879443186 +138 474 5 879024327 +585 855 3 891284184 +162 55 3 877636713 +727 250 5 883709242 +787 258 5 888979605 +83 127 4 887665549 +463 591 4 877385590 +901 419 5 877131763 +650 117 4 891370852 +594 221 4 874781207 +936 475 5 886832282 +95 855 3 888954609 +487 568 4 883446322 +492 650 2 879969644 +490 1383 1 875428417 +883 693 4 891717988 +807 550 5 892979747 +239 463 5 889178689 +727 219 3 883712476 +751 313 2 889727869 +860 272 3 885145344 +655 223 3 887473856 +937 301 1 876768812 +192 269 3 881366436 +436 747 5 887770640 +796 432 2 893218728 +871 794 3 888193541 +705 142 2 883427932 +882 118 4 879863031 +940 628 4 885921800 +863 262 3 889289618 +655 220 2 887426583 +776 282 3 892313246 +934 56 5 891191922 +390 754 4 879693561 +894 1501 4 882404363 +828 327 4 891033756 +705 597 4 883427339 +271 178 3 885849087 +624 1289 3 879793093 +851 841 3 875730757 +557 165 5 881179653 +303 1228 2 879543459 +387 531 3 886479528 +647 1263 3 876776321 +417 405 3 879646531 +781 289 3 879633862 +718 121 4 883348773 +405 425 2 885546112 +279 1070 3 875309760 +790 250 5 885158562 +875 64 5 876465275 +393 560 3 889728584 +846 404 4 883949046 +698 479 2 886368545 +159 293 4 880485879 +210 121 4 887737244 +804 415 3 879446391 +592 680 1 882607690 +650 135 4 891381545 +144 58 3 888105548 +648 713 2 884795447 +880 770 4 880167880 +936 268 4 886831415 +504 834 2 887911059 +654 87 4 887864471 +595 111 4 886921496 +342 114 5 875318962 +621 2 3 880739909 +479 32 3 879461354 +655 741 3 887426201 +760 873 4 875665908 +655 218 3 887523477 +277 100 4 879543421 +457 210 5 882397337 +763 432 5 878922982 +145 1033 1 875270903 +374 1322 3 880394000 +764 64 5 876244991 +846 732 4 883948840 +243 26 3 879988459 +634 281 4 877017829 +437 153 5 881001888 +588 542 3 890026787 +476 451 3 883364475 +747 462 5 888639272 +498 190 4 881956203 +815 419 3 878695490 +795 231 4 883254844 +95 739 3 880572689 +340 95 5 884991083 +613 318 5 891227299 +711 380 3 879993959 +889 232 3 880182270 +145 226 1 875272196 +766 630 3 891310772 +796 250 5 892660984 +871 183 3 888193177 +672 515 5 879787812 +168 273 4 884287509 +823 100 5 878437658 +897 68 5 879994113 +900 618 4 877833957 +810 338 4 891873660 +193 715 3 890860076 +506 705 5 878044851 +130 820 5 876251312 +826 91 4 885690342 +702 688 1 885767629 +506 174 5 874873157 +363 302 5 891493571 +938 15 2 891356615 +694 318 5 875727099 +804 7 4 879443673 +940 300 5 884801316 +536 80 2 882360802 +907 98 5 880160037 +710 656 5 882064321 +806 789 4 882389319 +774 94 2 888556248 +450 1197 3 882395662 +778 79 3 890725776 +739 498 4 886958939 +330 423 5 876545971 +789 248 3 880332148 +562 50 5 879196445 +173 262 4 877556864 +493 89 4 884130933 +826 1 4 885690250 +890 1149 5 883009400 +199 243 1 883782636 +825 687 5 882109250 +425 233 2 878738643 +487 1314 1 883530929 +666 64 4 880139120 +122 127 5 879270424 +256 977 4 882154058 +555 319 5 879962096 +234 513 5 892333980 +747 529 5 888640099 +758 1074 1 882054297 +429 999 2 882387163 +416 282 5 893213796 +314 1 5 877886317 +625 176 4 891263960 +821 121 3 874792752 +62 1133 4 879376332 +592 568 5 882956201 +552 121 4 879222698 +524 739 2 884637128 +882 566 4 879876806 +899 157 4 884122419 +846 29 2 883949508 +649 121 2 891440214 +406 709 5 880131642 +437 139 3 881001576 +2 288 3 888550252 +848 650 4 887037822 +285 185 3 890595859 +842 313 4 891217891 +731 485 4 886187414 +568 653 4 877907877 +534 1215 3 877808120 +109 175 1 880577734 +621 783 3 874963273 +328 498 5 885046654 +761 123 3 876190160 +747 1497 4 888732538 +795 319 4 880554132 +896 405 2 887160270 +169 606 5 891359137 +802 379 4 875985976 +726 833 5 889832807 +456 289 4 881372687 +95 62 4 879196354 +737 192 5 884314970 +728 1355 4 879443265 +723 172 4 880498890 +203 477 4 880434755 +606 591 3 880923349 +486 289 3 879874262 +460 1011 4 882912205 +870 810 3 879714883 +804 720 3 879445072 +880 128 3 880167806 +59 285 4 888202941 +770 813 5 875971850 +867 431 4 880078841 +291 747 4 875087290 +374 1093 2 883627582 +346 515 5 874948890 +883 748 5 891692168 +276 109 4 874786686 +452 275 4 875264491 +716 121 5 879794116 +846 127 5 883947911 +407 708 3 876344712 +761 458 1 876190623 +189 531 3 893265327 +682 1225 4 888521783 +499 165 5 885598961 +772 315 5 889028363 +339 504 5 891032255 +936 1097 5 886833795 +164 826 4 889402340 +561 88 2 885810769 +943 94 4 888639929 +919 1277 4 875289887 +715 208 3 875963836 +921 96 4 879380656 +831 354 4 891354063 +728 237 4 879443155 +593 977 3 875660215 +802 681 4 875986155 +600 720 3 888452151 +936 1007 5 886833795 +894 306 4 879896756 +655 1174 3 887523477 +485 242 5 891040423 +839 93 4 875752056 +766 605 3 891310650 +659 705 5 891383561 +45 181 4 881010742 +533 393 4 879192069 +881 323 2 879051487 +671 810 2 884036050 +712 376 3 874956903 +730 269 5 880309870 +932 676 4 891251738 +279 449 3 875312378 +654 118 2 887863914 +234 661 5 892333573 +939 326 5 880260636 +757 96 4 888466461 +144 235 1 888104715 +749 650 3 878848189 +452 265 3 887719158 +378 225 3 880045006 +661 756 3 876037089 +44 419 4 878348784 +796 553 4 893047208 +661 573 3 876036043 +901 89 3 877288929 +778 249 3 891233675 +622 434 4 882592523 +533 550 4 879439340 +671 838 3 884036365 +916 56 5 880844038 +555 50 5 879962152 +456 209 3 881372849 +853 877 2 879364882 +612 147 4 875324975 +727 552 2 883712751 +821 28 5 874793469 +655 650 3 887427009 +222 174 5 878181934 +409 171 4 881107084 +864 568 4 888888115 +90 1201 5 891383687 +535 709 5 879618925 +492 199 3 879969255 +496 1157 1 876070937 +243 1115 3 879987465 +733 1047 2 879536659 +608 479 5 880404636 +846 401 5 883949643 +497 946 4 879310021 +771 274 4 880659941 +554 735 3 876369162 +387 567 2 886481737 +813 310 4 883752290 +577 1054 3 880471823 +628 332 5 880777096 +95 49 3 879198604 +611 353 3 891636125 +497 433 3 878759806 +429 307 3 882384437 +417 210 3 879647749 +894 299 3 879896200 +234 367 4 892334976 +279 1224 3 878082804 +774 29 1 888557519 +871 549 3 888193541 +537 732 3 886031912 +587 307 4 892870992 +463 276 3 877385287 +177 327 3 880130467 +670 1099 3 877975018 +650 1135 2 891383977 +838 56 5 887066782 +663 210 3 889493818 +929 185 5 879640184 +843 485 2 879447007 +450 588 4 882376658 +747 162 5 888639594 +279 2 4 875313311 +244 276 5 880604234 +405 182 1 885545974 +618 693 3 891307540 +805 123 4 881695723 +44 523 4 878348784 +653 1478 2 880153705 +764 22 4 876245549 +617 855 3 883789294 +543 197 4 874866116 +830 204 3 891898551 +244 528 3 880606533 +940 9 3 885921687 +655 7 3 887425969 +450 546 4 887139019 +774 188 3 888557329 +674 255 4 887763012 +190 327 2 891033349 +648 167 4 884882407 +13 779 3 882398255 +611 311 4 891636073 +185 258 4 883526267 +303 484 5 879466966 +391 177 4 877398951 +719 890 1 879358395 +773 1069 4 888539559 +773 216 4 888539608 +233 647 5 877661364 +586 393 3 884066799 +484 566 4 891195416 +903 696 3 891031906 +407 154 5 875116964 +588 155 5 890026882 +592 1071 4 882956668 +483 510 3 878953751 +909 744 3 891920763 +111 307 2 891680243 +708 742 1 892719385 +779 926 4 875992442 +926 289 3 888636269 +471 393 5 889827918 +694 527 5 875727449 +826 233 4 885690713 +784 326 5 891387155 +7 415 2 891354438 +537 1194 3 886030584 +939 818 3 880262057 +455 716 3 879112259 +891 313 5 891638337 +618 550 3 891308261 +901 135 4 877131961 +627 402 3 879530866 +194 435 4 879520813 +133 286 2 890588524 +532 1199 3 874789155 +68 181 5 876973884 +541 73 4 883865693 +458 960 1 886397726 +877 328 2 882676366 +655 219 2 890497653 +75 117 4 884050164 +495 491 5 888632443 +291 125 4 874834019 +693 130 1 875483144 +862 928 4 879303542 +747 285 5 888732899 +929 32 3 880817818 +749 136 5 878849404 +916 578 1 880844985 +299 597 3 877880111 +782 1252 3 891500066 +867 64 5 880078547 +537 314 1 886029239 +758 536 2 880672747 +291 151 5 874833668 +561 462 3 885809246 +833 218 4 875124495 +425 1222 2 878738757 +650 29 2 891382877 +585 543 3 891284393 +247 58 4 893081396 +756 159 4 874829924 +181 473 2 878962919 +682 298 4 888518639 +299 856 3 889503334 +429 443 4 882385210 +923 763 4 880387908 +880 180 5 880241822 +682 583 2 888517587 +766 181 4 891309177 +586 177 3 884061343 +869 411 4 884492828 +650 100 4 891369954 +786 416 4 882843534 +774 182 4 888556398 +943 281 4 875502299 +932 459 4 891250944 +72 198 5 880037881 +829 509 5 881698976 +891 286 5 891638433 +104 222 3 888465319 +526 248 4 885682635 +812 289 1 877625461 +803 306 4 880054629 +290 566 3 880474388 +830 203 4 891898061 +840 949 4 891211530 +445 546 2 891200417 +564 127 4 888730974 +213 197 5 878955707 +798 49 4 875814021 +773 187 5 888539962 +916 217 4 880845282 +263 322 3 891297485 +835 186 4 891034285 +605 408 5 881016144 +99 276 2 885678973 +451 304 3 879012684 +588 729 3 890024488 +381 96 5 892697174 +840 640 3 891209242 +619 298 5 885953778 +424 990 5 880858979 +770 334 5 876597960 +936 1344 5 886832183 +778 82 3 890803491 +1 58 4 878542960 +797 1254 2 879439548 +756 289 4 874828027 +62 546 4 879373118 +851 1094 1 875730455 +645 435 4 892054364 +776 5 4 892920320 +207 428 4 877838826 +262 567 1 879795430 +610 133 4 888703648 +833 445 4 875123299 +886 715 1 876033434 +13 810 5 882398076 +790 664 3 885158235 +577 550 3 880475130 +738 636 3 875350944 +447 508 3 878854195 +823 478 4 878439113 +640 691 4 890014144 +766 432 3 891309250 +152 367 3 882475972 +379 526 4 880525031 +399 526 3 882343171 +504 181 3 887831773 +924 82 4 885458168 +836 603 5 885754029 +626 681 1 878771477 +880 117 4 880166872 +648 90 3 884882271 +642 398 2 886454837 +347 284 3 881652480 +276 425 4 874791101 +715 462 4 875963998 +790 1025 1 884461188 +311 135 4 884366617 +804 1291 3 879444115 +560 405 4 879976970 +629 277 5 880117459 +829 70 4 881699060 +379 175 5 880525108 +851 367 2 875731674 +881 195 4 876539636 +553 525 4 879949153 +405 357 5 885544974 +796 39 3 893048562 +896 27 1 887235026 +363 455 5 891496927 +840 134 3 891204160 +870 77 3 879714103 +780 318 5 891364124 +776 514 5 891628916 +921 395 3 879380908 +738 147 3 875350764 +872 742 4 888479171 +883 286 3 891691654 +807 82 4 892529278 +862 271 5 879302763 +344 69 2 884901093 +703 276 3 875242964 +601 479 4 876349358 +498 509 3 881955867 +308 637 3 887741108 +934 529 5 891194866 +567 433 4 882426673 +766 215 3 891309250 +429 816 2 882387474 +496 195 4 876065715 +934 97 4 891192329 +15 258 3 879455473 +373 153 5 877100354 +250 183 4 878091870 +933 508 3 874853927 +588 969 5 890023831 +916 732 3 880844862 +500 7 5 883865104 +921 369 1 879380328 +217 761 4 889070232 +704 69 3 891397441 +793 1365 2 875104718 +674 866 5 887763062 +807 570 4 893081426 +936 1279 3 886833360 +301 387 3 882078084 +889 50 4 880176807 +251 468 2 886271641 +267 1110 3 878973329 +588 268 5 890014648 +201 232 2 884112282 +780 474 3 891363723 +232 178 5 888549988 +165 326 5 879525672 +854 246 3 882812195 +919 85 2 875372947 +18 524 4 880129816 +682 219 2 888522857 +296 244 1 884196896 +650 389 3 891387571 +379 474 5 886317533 +200 288 5 884125846 +928 877 5 880936022 +878 474 5 880868819 +425 181 4 878738435 +595 50 5 886921112 +279 269 4 892865492 +664 98 4 876526462 +393 585 2 889731649 +406 70 3 879793295 +757 183 4 888445864 +894 886 3 879982820 +916 85 2 880845115 +840 526 4 891204971 +343 64 5 876405697 +727 183 3 883710186 +835 133 5 891033718 +305 60 3 886324097 +834 405 4 890862563 +643 186 4 891447663 +545 164 4 879899906 +629 92 4 880117163 +931 347 4 891035946 +389 489 4 879991115 +107 327 3 891264501 +699 473 3 880696344 +834 315 5 890860687 +254 457 2 886470931 +97 1126 3 884239687 +744 307 4 881171839 +802 185 3 875985601 +322 483 5 887314417 +713 315 4 888881988 +645 98 4 892053241 +666 760 3 880313789 +92 401 3 875907535 +747 842 5 888640916 +337 227 5 875185319 +463 1115 4 877385531 +555 328 4 879962096 +894 919 4 881625708 +469 168 4 879524006 +738 254 2 875349111 +524 22 3 884634731 +174 781 4 886513788 +864 577 3 888892917 +716 73 4 879797256 +773 181 5 888540020 +761 1163 2 876190752 +748 323 4 879454208 +694 144 4 875728912 +845 751 2 885409719 +802 326 5 875984637 +862 172 5 879304243 +660 122 1 891198996 +13 438 1 882397068 +496 496 1 876066424 +862 182 5 879304526 +622 419 4 882670009 +508 451 3 883777281 +747 182 5 888639272 +599 1357 2 880952905 +682 202 4 888521413 +807 211 4 892529448 +412 174 5 879716918 +453 227 3 888207162 +416 293 5 893213019 +661 631 3 886841831 +787 681 3 888979657 +894 855 4 882404460 +871 92 3 888193338 +735 319 4 876697647 +235 344 5 889654419 +610 203 4 888703749 +798 162 3 876177353 +727 100 2 883708830 +817 7 4 874815885 +316 988 1 880853152 +854 133 3 882814091 +929 182 4 879640225 +862 143 5 879304722 +311 443 3 884365718 +751 559 4 889298622 +474 654 5 887924469 +842 1105 2 891218353 +745 79 3 880123540 +802 331 4 875986155 +480 485 4 891208186 +148 189 4 877019698 +805 56 4 881694423 +622 1016 3 882591014 +881 51 5 876538889 +161 194 1 891171503 +342 150 3 874984531 +367 185 5 876689991 +806 257 4 882385394 +758 252 3 880672830 +540 269 4 882156584 +650 588 3 891372286 +494 329 3 879540819 +332 225 3 887938706 +899 197 4 884121512 +860 274 3 885991476 +144 1028 3 888104495 +95 73 4 879198161 +788 1126 5 880869278 +128 223 5 879966839 +660 786 1 891265453 +622 29 4 882592735 +851 1034 1 875731105 +550 237 3 883426119 +565 171 5 891037252 +194 715 3 879527263 +880 742 4 880166847 +863 910 2 889289570 +58 203 5 884305185 +587 262 4 892871069 +405 468 3 885544698 +561 943 3 885809197 +639 1005 2 891239813 +535 207 4 879618613 +923 338 4 880387172 +592 754 3 882607325 +207 517 3 882081278 +472 191 5 875980283 +718 744 3 883348824 +896 50 5 887159211 +687 321 4 884651818 +549 748 4 881671952 +837 294 4 875721502 +297 527 5 875239018 +268 1178 1 875743534 +892 393 4 886607679 +771 462 3 880659426 +349 619 4 879466000 +648 746 4 884881524 +5 163 5 879197864 +774 554 1 888557556 +481 181 5 885827974 +829 462 4 881698976 +501 222 4 883347919 +617 443 4 883788782 +178 471 4 882823930 +934 168 4 891191875 +437 182 2 880140432 +222 193 4 878182005 +846 1107 4 883950128 +807 546 4 892978966 +149 313 5 883512557 +815 417 5 878694664 +613 297 5 891227338 +901 521 2 877289241 +850 648 5 883195527 +749 127 4 881073104 +566 133 4 881649670 +474 1200 4 887927339 +846 388 3 883950950 +860 56 4 885990862 +774 386 2 888556225 +595 717 2 886921977 +748 208 4 879454522 +653 642 1 878866604 +864 136 4 888886913 +484 471 4 881449737 +315 433 4 879821037 +788 685 3 880870996 +506 762 3 877861473 +18 172 3 880130551 +806 357 3 882387373 +498 14 4 881955189 +835 288 2 891032224 +727 180 3 883711589 +521 208 3 885253562 +786 280 3 882841745 +833 475 3 875035718 +782 1615 3 891499611 +833 431 2 875223813 +406 197 4 882480710 +758 352 4 885948283 +703 288 4 875242076 +786 501 4 882843534 +666 204 3 880139090 +450 392 4 887660762 +798 951 3 875639767 +634 1084 2 875728783 +786 1044 4 882844127 +862 434 5 879304410 +634 117 4 875729535 +533 38 2 879191691 +798 1139 3 876177661 +916 930 2 880843934 +380 89 5 885478583 +158 22 5 880134333 +198 474 5 884207298 +757 97 4 888445714 +938 284 2 891356827 +374 472 2 880393783 +749 655 5 878848044 +724 948 1 883758119 +276 728 2 874792277 +429 1109 2 882386448 +505 358 3 888631555 +702 352 1 885767435 +869 126 2 884491927 +934 67 4 891193373 +896 1248 2 887160187 +639 194 4 891240160 +727 774 3 883713257 +833 671 5 875039204 +843 379 2 879443394 +405 698 1 885546069 +902 298 2 879465016 +561 615 4 885807930 +485 345 1 891040560 +523 197 5 883703048 +747 26 3 888733314 +858 334 4 880933072 +592 96 5 882956241 +580 151 2 884126077 +819 300 5 879952538 +534 129 4 877807718 +541 29 2 883865336 +872 1047 4 888479603 +821 1197 5 874792889 +763 100 5 878915958 +682 228 4 888520923 +698 431 1 886367750 +767 524 5 891462560 +308 7 4 887738847 +758 291 4 881978115 +875 185 4 876466687 +807 154 2 892528919 +201 590 1 884114813 +759 984 2 881476642 +763 392 4 878919055 +804 1050 3 879442269 +506 132 4 874873615 +851 129 4 875730379 +561 186 3 885809447 +378 67 2 880332563 +830 968 4 891898211 +916 959 4 880845328 +110 780 3 886989566 +829 281 3 881712349 +425 157 2 878738149 +342 488 5 875319536 +916 1 4 880843361 +274 1060 4 878945645 +130 389 3 875216786 +686 518 5 879546497 +380 480 4 885478718 +779 7 3 875993165 +59 68 2 888205228 +468 508 4 875280539 +707 319 5 879439088 +551 509 4 892777274 +838 87 4 887065750 +843 177 3 879444767 +455 28 4 879111371 +13 209 3 882141306 +716 1124 3 879795838 +299 241 3 889502640 +592 475 5 882608107 +506 523 5 874873112 +899 474 3 884121612 +825 322 5 884642187 +398 837 4 875718614 +256 92 1 882164603 +653 62 3 880151691 +531 311 4 887048763 +503 356 4 879454841 +779 509 2 875999211 +805 102 4 881695591 +938 815 3 891356532 +648 38 5 884882803 +291 71 4 875086887 +890 636 3 882404879 +733 515 5 879535213 +833 522 2 875039039 +60 133 4 883326893 +881 554 1 876539636 +288 258 4 886372882 +871 1388 4 888193136 +741 22 5 891018303 +707 744 3 880060261 +450 78 2 882396245 +896 1522 2 887160750 +830 588 5 891561474 +347 148 3 881652888 +405 1546 1 885549408 +488 589 3 891294400 +327 255 3 887745911 +660 40 2 891201674 +743 301 4 881277357 +354 181 4 891216656 +548 659 4 891044446 +128 553 3 879968718 +303 1044 3 879485685 +470 129 3 879178542 +660 658 1 891200193 +405 303 1 885549904 +616 258 4 891224676 +374 239 4 880396622 +796 732 5 893047241 +893 1245 2 874828812 +291 939 4 874834768 +413 25 3 879969791 +279 56 4 875306515 +716 692 5 879795239 +682 226 3 888520923 +121 172 5 891388090 +475 354 2 891627606 +649 117 5 891440460 +541 393 3 883865693 +868 128 5 877108123 +818 346 4 891870364 +645 180 4 892054402 +249 238 5 879572451 +332 367 4 888360212 +48 243 3 879434330 +934 855 4 891192849 +889 191 4 880178078 +847 200 3 878940756 +450 597 4 882473914 +277 284 4 879543972 +728 289 3 879442761 +221 56 5 875245592 +429 1301 4 882385963 +796 608 3 892675492 +751 161 2 889134419 +13 187 5 882140205 +712 195 3 874730085 +625 519 2 891263703 +811 300 5 886377373 +509 338 3 883591319 +288 205 5 889225443 +806 1018 4 882389908 +877 921 4 882677128 +613 176 5 891227237 +913 603 4 880758150 +939 890 2 880260636 +881 21 3 876536667 +509 266 1 883591489 +653 728 2 880153568 +429 380 3 882387576 +903 96 2 891032842 +465 135 3 883531380 +795 143 3 883252292 +773 172 5 888539992 +907 934 4 880159222 +894 245 4 882404136 +807 1084 4 892529519 +832 286 3 888258806 +826 68 3 885690677 +815 1039 5 878693870 +588 24 2 890015766 +642 496 4 885603516 +429 637 3 882387506 +129 323 1 883245452 +654 1048 3 887864050 +741 83 4 891457855 +815 176 4 878694705 +653 702 3 880151918 +57 1016 4 883697730 +577 49 4 880474955 +868 94 1 877109814 +911 210 3 892839745 +836 269 5 885753475 +276 215 4 874791145 +459 235 1 879563367 +773 96 2 888540063 +500 215 1 883874528 +504 846 4 887831806 +455 183 4 879111862 +747 168 4 888639015 +503 197 5 880383358 +869 596 3 884491734 +886 237 4 876031850 +532 120 2 888630742 +645 367 3 892055039 +506 194 5 874873247 +533 511 4 879439379 +759 220 5 875227904 +833 684 3 875123195 +721 81 2 877139301 +95 552 1 888956422 +899 367 4 884122450 +498 657 3 881957488 +758 510 3 881974823 +761 840 4 876190753 +878 151 1 880870609 +670 83 3 877975018 +387 42 4 886480548 +646 1022 4 888528955 +806 98 4 882387798 +54 405 4 880934806 +889 1231 3 880182871 +224 222 4 888103729 +159 272 5 885501645 +724 938 3 883757671 +830 498 5 891899535 +489 749 4 891366571 +699 1336 3 884152976 +642 399 3 886131257 +194 661 5 879523104 +826 420 3 885690342 +904 736 4 879735499 +722 111 3 891281077 +892 143 2 886608238 +620 181 4 889988146 +854 195 3 882813537 +935 148 4 884472892 +151 258 5 879523838 +727 751 3 883708208 +843 82 3 879444801 +919 748 1 875288253 +416 415 4 886319408 +656 302 3 892318450 +916 961 3 880844202 +402 137 4 876266701 +705 252 1 883427552 +942 496 5 891283043 +933 73 4 874854629 +211 443 1 879460096 +804 576 4 879445355 +901 465 4 877131654 +682 248 3 888518640 +1 142 2 878543238 +207 385 3 875509346 +905 1011 3 884984382 +268 379 1 875744582 +623 228 3 891034343 +279 759 4 875313616 +483 222 3 878953485 +236 273 1 890116670 +720 347 3 891262608 +943 1188 3 888640250 +479 490 4 879461337 +880 1415 2 880243093 +798 161 3 875639235 +622 808 3 882671534 +28 672 3 881961728 +13 143 1 882140205 +762 749 1 878718996 +311 966 4 884365617 +924 13 3 887421305 +159 880 1 893256084 +894 1073 4 882404397 +537 693 4 886031786 +109 257 5 880563331 +804 70 4 879443137 +303 805 4 879485475 +636 283 3 891448916 +856 690 4 891489356 +796 1012 3 892660466 +648 210 4 882213502 +885 660 5 885714317 +819 70 4 884105841 +476 399 3 883364812 +923 125 4 880388289 +551 1136 5 892784049 +506 177 5 888848342 +916 54 3 880845790 +296 632 5 884197264 +290 102 3 880475585 +896 31 3 887158830 +919 240 3 875289611 +450 213 4 882396351 +802 678 4 875984776 +735 289 1 876698022 +881 812 2 876539505 +295 449 4 879518864 +760 631 3 875668368 +830 484 5 891898661 +815 77 4 878695798 +399 426 3 882350431 +195 1315 4 878019299 +689 257 5 876676397 +566 231 1 881651317 +934 963 5 891192914 +585 60 4 891282808 +660 204 3 891200370 +521 566 3 885254925 +881 90 3 876539595 +306 1028 2 876504581 +824 687 2 877021077 +804 358 3 879440787 +490 118 2 875428703 +769 1011 3 885424142 +663 121 4 889493182 +430 1375 4 877225660 +787 308 3 888979181 +788 405 4 880868974 +503 98 5 879454675 +917 276 5 882912385 +592 95 4 882956276 +829 1193 4 881699425 +864 72 4 888891288 +524 23 5 884635031 +788 636 3 880870583 +881 214 4 876538322 +887 96 4 881380403 +822 588 2 891037394 +815 87 5 878694199 +545 172 5 879899125 +781 245 2 879633862 +923 295 5 880387579 +882 89 5 879867508 +833 152 2 875134063 +406 670 3 879792928 +333 127 4 891045496 +887 47 5 881381679 +391 186 5 877399658 +694 1126 5 875727449 +815 518 3 878693183 +870 45 5 875679795 +617 413 1 883789635 +693 939 4 875483381 +840 514 5 891205093 +196 269 3 881250949 +833 589 5 875038807 +680 203 3 876816162 +889 566 3 880181275 +251 595 3 886272486 +588 225 5 890027113 +682 39 4 888518009 +595 121 2 886921550 +712 944 4 874956981 +43 144 4 883955415 +775 750 5 891032804 +916 77 3 880845620 +699 246 4 883278783 +843 501 2 879447578 +184 276 4 889907685 +905 125 3 884984009 +846 431 5 883947590 +851 299 4 886534617 +223 289 1 891549017 +648 63 4 884882103 +721 332 4 877137358 +10 70 4 877891747 +595 472 3 886921847 +342 1094 3 874984873 +269 187 4 891447841 +406 661 5 879446268 +889 93 3 880177219 +943 117 4 875501937 +655 503 3 887523477 +805 135 4 881698095 +1 216 5 876892701 +130 1157 3 880396861 +889 1067 3 880177131 +757 679 4 888466583 +407 176 4 875046427 +838 114 4 887065822 +727 771 3 883713692 +562 393 2 879195954 +122 513 4 879270084 +197 272 4 891409160 +835 318 5 891033718 +699 1163 5 879148050 +893 77 4 874829706 +741 56 4 891018303 +733 130 2 879544411 +669 614 4 891260778 +796 78 3 893219254 +826 258 4 885689759 +181 717 1 878963418 +787 306 3 888979007 +665 419 4 884295126 +305 228 2 886323998 +758 179 5 881976031 +178 588 4 882826242 +650 1627 3 891383786 +655 995 3 887424991 +870 1208 2 879902128 +884 1009 2 876859024 +880 68 5 880167843 +535 488 5 879618965 +889 749 2 880176718 +128 531 4 879966685 +797 269 3 879438957 +735 93 2 876698604 +927 410 1 879190223 +533 654 3 879191770 +327 245 1 887743705 +477 739 4 875941191 +275 393 3 880314772 +365 815 3 891304152 +861 531 4 881274529 +344 530 4 884901403 +796 1076 2 893219150 +92 368 1 886443672 +234 1011 3 891227730 +263 435 4 891298914 +738 164 5 892844112 +829 733 2 887584684 +591 182 3 891031171 +30 403 2 875061066 +805 1033 3 881706146 +491 294 2 891189842 +767 615 4 891463095 +936 508 3 886832282 +851 122 2 875731105 +716 549 4 879797372 +807 254 4 893085166 +878 371 3 880869239 +279 379 3 875314386 +586 50 4 884057387 +886 826 1 876032929 +683 325 2 893286346 +543 234 4 876896210 +897 234 5 879991729 +838 134 3 887066304 +891 237 5 891638601 +693 176 2 875483268 +777 15 4 875980306 +867 655 4 880078906 +325 511 4 891478047 +788 1303 3 880871577 +524 227 2 884636498 +207 847 3 885139179 +442 470 4 883391167 +551 196 5 892776982 +776 618 3 892474057 +562 582 4 879196249 +804 747 3 879445699 +749 239 4 878849286 +487 27 5 884044329 +188 11 5 875071520 +838 274 4 887064388 +846 209 4 883948377 +870 66 4 875680493 +450 489 4 882373464 +822 71 4 891037465 +564 685 3 888730658 +504 158 3 887910737 +796 945 5 892663009 +391 715 2 877399588 +850 519 4 883195168 +587 319 3 892871113 +365 741 2 891304059 +682 263 1 888518541 +524 222 2 884323500 +503 100 5 879438346 +795 58 4 881259362 +538 655 3 877108345 +833 515 3 875035660 +848 610 5 887046259 +727 114 5 883710152 +666 154 3 880568662 +159 742 2 880557192 +922 237 4 891448247 +833 667 1 875224381 +899 176 4 884121173 +846 367 4 883949121 +630 864 4 885667600 +933 1 3 874854294 +805 235 2 881705350 +560 109 3 879976651 +684 50 4 875810897 +862 70 4 879305172 +870 813 4 875051101 +846 185 5 883948534 +586 123 3 884057661 +828 902 4 891380167 +848 495 2 887039018 +574 242 5 891278860 +924 408 3 889286721 +495 636 3 888634475 +343 286 4 876402390 +90 479 5 891384147 +805 352 5 885845656 +887 254 4 881379145 +276 96 5 874792435 +291 404 4 875086958 +389 386 3 880089302 +608 157 1 880405085 +864 972 2 888890475 +919 11 4 875373582 +393 80 3 889729561 +927 763 4 879181749 +942 95 5 891283516 +825 363 4 881185343 +883 323 5 891692168 +757 270 3 888443434 +629 693 5 880117215 +464 270 4 878354762 +543 60 5 874864346 +896 840 2 887161469 +875 511 5 876465188 +392 495 3 891038401 +840 52 3 891205320 +321 1101 3 879440660 +345 86 4 884916235 +427 268 5 879701253 +622 451 4 882671221 +645 61 5 892054508 +846 608 4 883948377 +615 271 2 879447642 +698 483 3 886367133 +602 261 3 888638248 +499 55 4 885599598 +429 425 3 882385859 +494 143 5 879541245 +724 988 1 883758119 +773 455 4 888539471 +635 307 4 878878654 +622 22 4 882592178 +804 670 4 879444536 +712 63 4 874956903 +461 294 3 885355805 +880 1095 3 880175503 +642 771 3 885607115 +937 300 4 876768813 +363 257 2 891499595 +615 48 5 879448399 +804 1489 3 879445441 +854 188 4 882814368 +816 332 4 891710994 +914 643 4 887123886 +717 472 4 884642581 +815 582 1 878695311 +765 42 5 880346975 +896 8 5 887159343 +500 1135 3 883875561 +837 258 4 875721473 +749 1041 4 878849979 +456 544 3 881372114 +721 97 4 877140780 +592 887 5 882607780 +825 455 4 880756796 +939 934 3 880262139 +527 1211 3 879455765 +886 425 4 876032029 +831 28 3 891354848 +630 111 5 885666956 +239 116 5 889181093 +918 631 4 891986664 +786 496 5 882843312 +8 55 5 879362286 +405 398 1 885548094 +803 683 1 880054885 +593 238 4 877728878 +919 328 2 875288304 +846 525 4 883947819 +835 427 4 891033380 +774 1016 3 888559123 +938 472 4 891356656 +824 323 2 877020965 +506 580 3 874875062 +563 257 5 880506596 +72 215 4 880036718 +436 470 4 887770566 +859 1281 3 885774937 +757 53 3 888466737 +144 455 3 888104382 +496 443 2 876066353 +566 378 4 881650467 +533 289 2 879773297 +847 1007 4 878775444 +845 310 4 885409493 +407 402 2 876344329 +537 966 2 886032098 +653 208 3 890181185 +786 322 3 882842463 +481 199 5 885828543 +436 278 2 887771924 +189 405 2 893264487 +807 473 3 892530705 +868 181 5 877103280 +387 1 4 886480681 +846 227 4 883949698 +543 778 4 877550399 +830 96 3 891561673 +894 12 5 881625708 +919 1284 3 875289566 +815 240 2 878692319 +639 731 2 891239613 +804 636 3 879445334 +312 1172 5 891699538 +864 405 5 877214158 +645 60 5 892053748 +639 740 4 891239324 +665 1315 4 884291413 +847 151 4 878775914 +882 205 5 879865307 +15 823 2 879456351 +387 530 4 886483099 +655 1106 2 891817472 +496 506 3 876067215 +861 14 4 881274612 +551 1439 5 892783612 +445 902 4 891200870 +194 228 1 879535548 +450 619 3 882377861 +886 380 3 876032929 +671 379 3 884035303 +506 191 4 874873615 +582 919 5 882961540 +291 402 4 874871498 +566 576 2 881651013 +919 709 3 875374088 +793 928 3 875104864 +773 919 5 888538643 +585 1149 4 891283921 +870 873 2 875050370 +417 450 2 880953014 +98 210 4 880498968 +664 657 5 876526685 +116 1220 2 876453865 +712 996 4 874956903 +717 455 2 884642479 +425 326 1 890346567 +742 546 1 881335598 +521 1240 3 884478667 +789 249 3 880332296 +890 739 2 882915661 +455 15 2 879110767 +77 192 3 884752900 +663 3 4 889492614 +677 91 5 889399671 +627 387 2 879529916 +394 742 5 880888167 +880 986 3 880167569 +655 391 2 887429784 +719 216 4 879373935 +420 124 5 891356891 +666 1474 3 880567612 +924 504 5 885458009 +889 144 4 880178224 +833 100 4 875036169 +749 209 4 878848828 +871 272 2 888192859 +263 234 4 891298792 +464 515 5 878354965 +823 450 1 878439412 +887 294 5 881378219 +500 409 4 883865985 +754 1016 4 879451585 +763 1006 2 878919116 +699 1328 4 879148051 +682 553 3 888517627 +889 664 2 880182695 +398 100 3 875652816 +715 588 4 875963353 +450 214 1 882371416 +913 750 4 883110363 +200 429 5 884130014 +919 218 4 875374032 +474 523 5 887924083 +59 492 4 888205370 +659 720 3 891386492 +804 120 3 879444077 +878 213 3 880867854 +276 975 3 874836629 +545 720 3 883115664 +833 188 4 875124495 +848 265 4 887047808 +830 474 5 891898661 +532 118 4 888634813 +881 465 3 876538595 +629 658 4 880117813 +340 497 5 884990951 +697 310 3 882621431 +854 118 2 882813219 +848 496 2 887037980 +756 118 2 874828967 +630 181 3 885666650 +783 343 5 884326787 +33 880 3 891964230 +454 371 3 888267198 +299 640 3 889501995 +645 96 3 892054444 +920 350 4 884219953 +790 862 1 885158374 +186 1042 5 879023632 +535 144 3 879618123 +615 70 4 879448915 +326 474 5 879875025 +71 302 3 880864015 +642 1224 4 886132139 +654 462 4 887864998 +420 127 5 891357104 +790 105 2 884462907 +405 54 2 885546379 +13 504 5 881515011 +855 165 4 879825382 +455 77 4 879111528 +297 294 3 874953948 +304 243 3 884967391 +790 485 3 885156709 +727 158 2 883713668 +500 134 5 883873461 +889 1262 3 880182270 +790 294 2 884460878 +234 464 4 892079288 +640 182 5 874777925 +809 748 3 891037091 +857 24 1 883432711 +919 372 3 875920948 +883 127 5 891717319 +805 413 2 881695414 +542 347 3 886532176 +797 300 2 879439031 +556 707 3 882136396 +830 195 3 891464054 +189 1404 5 893266325 +875 98 5 876464967 +758 195 5 881975416 +429 808 3 882387576 +730 248 3 880310324 +892 1454 3 886610267 +896 223 4 887158830 +920 346 4 884219768 +390 475 1 879694232 +796 493 3 892675424 +919 628 3 875288898 +634 290 3 877017891 +851 355 4 888540240 +600 183 5 888451750 +790 214 3 885156618 +796 86 5 893047321 +887 28 5 881379522 +92 406 2 881008058 +880 258 4 880166499 +184 387 4 889909515 +486 303 4 879874388 +846 642 5 883950220 +845 302 3 885409374 +694 665 4 875728729 +5 404 2 875721216 +835 371 5 891034366 +795 175 5 881263767 +847 499 4 878940013 +313 326 4 891012907 +59 567 4 888206562 +852 1052 4 891037888 +716 485 5 879795375 +389 654 5 879991411 +729 272 4 893286638 +13 647 5 882140206 +716 724 4 879796138 +698 202 3 886367775 +389 371 4 880088309 +755 331 3 882569771 +394 29 3 881058201 +312 618 5 891698300 +715 11 4 875963306 +532 1217 4 888630453 +145 1216 2 888398238 +910 250 1 880821033 +622 80 3 882671446 +792 121 4 877910412 +682 192 3 888516979 +269 132 5 891449145 +297 148 3 875239619 +819 327 4 879952656 +178 147 4 886678902 +699 185 4 878883038 +625 121 3 891273698 +378 216 4 880055268 +870 327 4 875050410 +764 111 4 876243595 +405 401 1 885547448 +863 321 4 889289157 +660 391 2 891201823 +625 476 2 891632164 +450 696 4 882398666 +862 476 4 879303622 +719 298 2 888451537 +880 375 1 880242782 +108 1 4 879879720 +871 315 3 888192286 +661 89 5 888300344 +933 403 3 874939105 +880 217 4 880241411 +445 288 2 891035830 +805 1101 5 881698745 +601 121 2 876347267 +393 485 2 887746670 +693 685 4 875483947 +710 340 4 882063367 +457 175 5 882547139 +533 591 4 887721848 +805 1110 5 881694978 +420 855 5 891357021 +523 97 4 883702946 +882 380 5 879868197 +830 679 3 891561805 +605 338 2 881015064 +825 928 3 880756224 +198 682 3 884204709 +71 168 5 885016641 +730 257 5 880310541 +116 295 3 876452582 +917 150 5 882912385 +351 307 4 879481550 +659 451 5 891385534 +379 197 5 880568253 +745 194 4 880123262 +781 195 4 879633942 +447 83 5 878856458 +659 183 4 891385079 +897 265 3 879990466 +704 1299 3 891398702 +703 748 3 875242281 +908 447 3 879722850 +399 218 4 882344597 +896 1183 2 887160842 +682 686 4 888519725 +472 294 4 875977735 +301 636 3 882077811 +130 77 5 880396792 +897 240 4 879993823 +577 1219 3 880475067 +753 523 4 891401851 +716 620 3 879797287 +734 15 4 891026009 +780 294 3 891363259 +788 215 3 880869908 +642 21 5 885605148 +349 285 5 879465477 +815 117 3 878691884 +240 895 5 885775711 +655 568 3 887429640 +936 628 1 886832758 +166 687 1 886397777 +935 864 5 884472704 +704 631 3 891397366 +279 566 4 875313387 +884 382 5 876859351 +846 178 4 883947630 +849 121 5 879695086 +586 284 3 884057518 +628 294 4 880777167 +748 83 3 879455019 +846 751 5 883946938 +504 791 3 887911789 +788 286 5 880867372 +292 419 4 881105657 +276 919 4 874786467 +557 346 2 884357321 +780 186 4 891363651 +835 25 5 891032764 +474 504 5 887924469 +815 485 4 878694820 +398 208 5 875723253 +624 93 5 879792557 +181 546 2 878962919 +870 1118 3 881001249 +474 204 4 887924084 +753 174 4 891402323 +916 570 3 880845368 +933 471 3 874854611 +747 404 5 888640648 +840 659 5 891204827 +727 722 2 883712993 +654 568 4 887864868 +380 211 3 885479487 +843 174 4 879444670 +472 651 4 875981830 +332 147 4 887938524 +698 198 2 886367442 +497 951 2 879363695 +728 15 4 879443387 +234 925 2 892334976 +868 480 4 877103280 +385 210 1 879453773 +638 128 3 876695216 +181 1008 1 878963276 +524 485 2 884635085 +774 401 2 888556169 +889 262 4 880176620 +843 739 2 879447523 +835 69 5 891034366 +795 931 2 880560078 +793 148 4 875104498 +160 55 4 876858091 +885 79 4 885715803 +788 433 2 880869621 +936 282 2 886832714 +666 644 3 880314453 +782 1255 2 891500194 +745 12 5 880123905 +695 324 2 888805981 +853 358 1 879365035 +774 197 1 888556746 +642 288 1 885604085 +523 638 4 883701065 +178 100 4 882823758 +763 50 4 878914968 +839 713 2 875751774 +214 276 3 891543271 +201 549 3 884140750 +802 573 4 875985840 +354 451 3 891307114 +870 328 3 875050410 +577 496 5 880474455 +339 434 4 891033350 +325 93 4 891478627 +684 716 2 878761751 +833 435 2 878078229 +889 856 4 880181138 +601 50 5 876346810 +94 465 5 891721851 +608 505 5 880406862 +851 879 4 875729820 +804 988 4 879440663 +64 275 4 879365670 +870 401 3 880584584 +276 150 4 874786924 +568 631 5 877907367 +872 895 5 888478882 +255 332 2 883215586 +669 268 3 891517159 +455 553 3 879111907 +921 275 1 879379642 +581 1097 4 879641787 +139 237 3 879538254 +823 606 4 878438856 +805 217 2 881695293 +493 1088 2 884131777 +727 274 5 883709438 +495 568 1 888635294 +389 1 4 879915860 +889 636 4 880181663 +497 200 3 879362359 +833 168 5 875038775 +846 484 5 883948048 +770 929 4 875971989 +830 176 3 891561673 +921 1279 2 879380142 +804 447 3 879445625 +441 538 3 891035144 +271 181 5 885848707 +752 1024 3 891207940 +788 431 2 880868401 +450 220 4 882394097 +142 42 4 888640489 +747 13 3 888733348 +430 748 3 877225239 +859 287 5 885775358 +487 274 4 883444631 +461 327 4 885355757 +788 182 2 880868599 +715 234 4 875963242 +716 609 3 879796354 +880 790 3 880175050 +806 655 3 882388128 +730 328 2 880310201 +690 747 3 881180427 +47 286 3 879438984 +826 624 4 885690379 +833 289 1 875035487 +537 521 2 886030831 +453 1145 2 888206492 +452 475 2 876299004 +916 1005 4 880845303 +666 511 4 880139120 +439 290 4 882894084 +786 203 4 882843753 +922 217 3 891449993 +381 313 2 892697869 +543 249 2 888209667 +222 48 5 878181592 +634 276 5 877018125 +650 177 2 891371061 +814 53 4 885411132 +497 402 4 879310508 +746 2 3 885075304 +851 983 2 875731021 +763 483 4 878915628 +102 153 2 892991376 +14 186 4 879119497 +495 55 2 888634389 +793 151 5 875104142 +354 170 4 891217194 +85 9 4 879456308 +246 827 1 884923829 +907 8 3 880159688 +637 460 2 882905388 +833 238 2 875124225 +586 808 3 884062405 +837 151 5 875721734 +7 52 4 891353801 +378 71 4 880055672 +854 9 5 882814570 +913 747 3 881369407 +504 595 4 887832097 +851 250 5 875730379 +938 748 2 891356282 +846 559 5 883949200 +788 326 4 880867477 +758 242 3 880672230 +867 588 3 880078887 +894 1080 4 882404507 +699 886 3 893140639 +611 340 5 891636192 +200 930 3 876042790 +707 81 2 886286491 +224 125 3 888103942 +878 509 4 880866288 +807 541 4 893083740 +236 294 2 890116895 +417 212 1 879647800 +398 684 4 875908134 +863 1313 1 889289067 +925 333 3 884717790 +911 622 3 892840996 +621 25 4 880738699 +608 469 3 880405395 +761 877 2 876189931 +796 934 3 893048024 +748 210 3 879454584 +275 825 2 876197904 +867 9 5 880078958 +201 55 4 884114471 +919 794 4 875373521 +690 357 5 881179122 +796 480 4 892663155 +535 301 4 879617199 +795 472 3 880559543 +562 190 4 879196445 +588 625 3 890024325 +798 258 4 875286981 +450 812 4 882468402 +181 988 2 878961847 +796 768 2 893219065 +318 1160 5 884494976 +899 655 4 884121267 +631 682 2 888465247 +938 546 3 891356532 +759 591 3 881476891 +694 179 4 875730980 +409 127 4 881106605 +380 200 4 885479104 +903 185 5 891033070 +769 411 3 885424099 +844 117 4 877381450 +851 412 2 875731105 +868 739 2 877111542 +790 227 3 885156647 +308 392 4 887740367 +749 101 4 878848700 +474 25 5 887916608 +342 486 5 874984207 +82 770 4 878769777 +498 237 2 881957625 +852 825 3 891037586 +506 516 4 874874525 +808 332 4 883949639 +222 35 1 878184007 +896 327 5 887235643 +830 925 4 892502651 +279 321 5 875249102 +824 325 4 877021121 +851 411 3 875731021 +761 237 5 876190417 +645 482 4 892053340 +621 154 5 881444499 +13 863 4 882140487 +805 58 4 881698778 +381 596 3 892697297 +773 59 5 888540617 +918 856 4 891988491 +679 222 4 884487418 +826 33 3 885690600 +644 977 4 889076922 +684 63 4 878762087 +272 32 4 879455113 +768 14 5 883835026 +879 866 5 887761460 +500 1469 1 883876224 +700 173 5 884493713 +910 751 3 884229194 +848 478 5 887039531 +752 344 4 891208212 +497 68 4 879310850 +561 184 3 885808843 +346 175 4 874947644 +486 242 4 879874018 +887 411 4 881379059 +886 1209 2 876034041 +557 1244 2 880485863 +863 328 5 889288943 +601 239 3 876350537 +316 487 3 880853810 +429 235 3 882386966 +825 1087 3 881343153 +740 326 3 879522814 +786 289 4 882844336 +537 431 4 886031678 +869 1382 3 884492201 +42 174 5 881106711 +532 815 4 888635376 +354 527 4 891217394 +640 62 3 874778612 +117 475 5 880125746 +838 190 4 887066988 +586 164 2 884059486 +790 144 4 885155572 +192 289 4 881366615 +645 641 5 892054600 +904 155 4 879735616 +724 873 3 883757784 +903 48 4 891033005 +716 56 5 879796171 +804 515 5 879441000 +828 886 1 891035438 +318 134 5 884495639 +548 370 3 891416050 +715 71 3 875963354 +854 423 4 882813963 +929 483 4 879640036 +824 989 2 877021121 +457 120 2 882551344 +889 249 3 880177266 +540 332 4 882156677 +790 83 3 885155034 +734 274 4 891025943 +416 273 4 876697415 +855 529 4 879825613 +378 56 4 880045760 +933 1070 2 874854031 +739 333 4 886825227 +622 386 3 882671727 +822 539 2 891035086 +707 614 2 886287876 +551 559 5 892784479 +422 717 3 875130173 +758 23 4 881975814 +709 472 4 879848792 +76 203 4 875027507 +102 241 3 888802038 +407 659 5 875550174 +344 64 5 884900818 +393 195 3 889555272 +799 286 5 879253668 +576 763 3 886985695 +909 529 3 891920763 +839 121 3 875752237 +486 919 3 879874902 +798 417 3 876176043 +627 52 3 879530146 +854 924 4 882812314 +943 581 4 888639814 +777 127 1 875980391 +923 322 4 880387130 +534 291 4 877808031 +484 1016 4 883402866 +886 20 2 876031739 +846 188 3 883948642 +915 321 3 891030002 +25 527 4 885852248 +620 755 5 889988169 +634 248 4 877018311 +495 576 3 888637440 +556 324 4 882135805 +846 640 1 883948642 +156 480 5 888185606 +851 347 5 891961663 +71 153 4 885016495 +838 71 3 887066782 +813 892 1 883752708 +717 303 4 884641644 +790 393 2 885156290 +537 568 2 886031912 +843 206 3 879448112 +222 72 4 878183311 +935 1016 4 884472434 +579 234 3 880951708 +747 175 4 888640180 +18 493 5 880132437 +843 157 2 879448199 +932 550 2 891251331 +804 366 4 879445579 +655 1266 3 887428911 +542 321 4 886532928 +504 620 4 887831419 +801 328 5 890332748 +881 99 3 876538571 +932 211 5 891249710 +514 157 4 875309350 +630 9 2 885666536 +698 300 4 886365577 +75 833 2 884051113 +887 140 5 881381425 +293 451 3 888907245 +853 286 3 879364668 +655 584 3 887429171 +691 178 5 875543281 +887 828 3 881378854 +284 319 3 885329238 +366 17 5 888857866 +735 515 4 876698755 +600 947 4 888452071 +790 73 4 885157489 +795 419 3 880569526 +805 1098 3 881704150 +862 436 4 879305386 +541 151 3 883874717 +798 121 5 875295930 +751 751 4 887396425 +776 98 4 891628837 +338 86 4 879438505 +293 51 3 888907674 +878 588 2 880870048 +758 168 5 881975416 +867 323 3 880077951 +943 55 5 888639118 +764 747 3 876246291 +25 204 5 885853415 +559 863 5 891033956 +592 129 5 882608457 +833 202 4 875133924 +943 54 4 888639972 +340 480 5 884991114 +888 514 5 879365154 +825 979 4 889021134 +637 815 2 882904678 +445 508 2 891200078 +747 315 4 888638774 +847 527 2 878939536 +889 650 2 880178130 +736 533 3 878709108 +887 431 3 881379685 +790 237 4 884461541 +715 746 5 875964025 +603 22 4 891956776 +786 285 3 882842726 +711 155 4 879995382 +648 781 4 884882078 +388 276 2 886440608 +795 234 4 883251200 +704 492 5 891397491 +417 111 3 879647768 +60 175 5 883326919 +28 567 4 881961782 +548 546 4 891415815 +334 11 4 891545741 +532 426 5 888635197 +812 292 3 877625610 +908 963 4 879722397 +745 483 1 880123361 +782 289 3 891498436 +397 343 2 885349148 +642 673 2 886130929 +848 181 5 887046674 +290 472 4 880475495 +852 969 5 891037917 +181 1061 2 878963086 +940 521 4 885921915 +331 31 2 877196567 +920 302 4 884219701 +653 684 5 878854247 +327 28 3 887747971 +299 10 5 877878601 +863 327 5 889289327 +595 274 3 886921584 +850 568 5 883194768 +645 64 3 892053429 +846 697 5 883949254 +653 1139 3 880153145 +553 1 3 879949153 +580 121 4 884125457 +614 276 4 879464234 +872 274 3 888479560 +562 204 1 879196288 +766 481 4 891308968 +786 181 4 882841955 +805 22 1 881694423 +584 222 4 885774483 +854 1134 3 882812787 +896 508 2 887159035 +825 825 4 881187129 +268 172 5 875310031 +823 356 3 878439467 +844 70 4 877386990 +911 483 3 892838637 +756 96 4 874828640 +601 416 3 876350683 +506 48 2 874873158 +756 755 3 874830598 +465 98 4 883531409 +727 65 2 883712343 +738 118 3 875351438 +94 245 1 891724828 +737 475 4 884314693 +815 615 2 878696181 +874 325 2 888633197 +256 216 5 882165032 +892 153 5 886609793 +770 475 5 875972381 +566 20 4 881650551 +749 191 4 878848217 +860 49 2 885991316 +276 95 5 874792839 +843 380 3 879448262 +44 172 4 878348521 +269 441 1 891450857 +806 403 4 882388706 +850 22 5 883195527 +78 476 3 879633767 +758 896 5 886658068 +458 475 4 886394729 +833 1029 1 875134940 +854 64 5 882814121 +655 638 4 890497592 +848 509 4 887046674 +7 664 3 891353977 +933 765 1 874938644 +476 384 4 883365274 +249 302 4 879571438 +833 233 2 875223756 +655 480 4 888984506 +751 385 4 889135244 +182 1 4 885613092 +539 531 4 879788572 +336 1094 1 877757062 +7 11 3 891352451 +56 930 3 892679481 +828 322 3 891034515 +504 44 4 887838846 +751 55 4 889134419 +677 539 3 889399113 +773 386 3 888539643 +896 121 3 887159343 +868 217 2 877109895 +889 866 4 880177407 +905 742 4 884983888 +586 265 5 884062405 +436 264 2 887768669 +360 193 5 880355803 +464 288 4 878354626 +896 1437 1 887161564 +705 71 5 883427640 +826 309 4 885689892 +795 7 5 880557294 +666 293 3 880313310 +916 70 4 880845099 +865 21 2 880144229 +621 233 3 874964375 +892 132 5 886608897 +194 710 3 879524393 +345 412 3 884991600 +624 329 3 891961120 +933 161 2 874939105 +545 205 4 884134276 +749 1185 4 878849375 +711 955 1 879992739 +425 1013 1 878739054 +712 843 3 874957140 +426 404 3 879444321 +919 140 5 875373471 +508 175 4 883767465 +942 50 5 891282816 +79 275 4 891271627 +766 186 3 891309522 +875 174 5 876465025 +537 107 3 886030281 +648 769 1 884883724 +854 484 3 882814368 +576 324 2 887168978 +425 96 4 878738335 +343 387 4 876405521 +648 47 2 884881807 +551 380 3 892783488 +899 31 3 884121513 +907 318 5 880159642 +881 357 5 876537457 +896 808 3 887160270 +859 15 4 885776056 +908 423 4 879722822 +627 271 5 879529432 +846 468 4 883948949 +198 367 3 884209379 +756 195 3 874828967 +712 191 3 874730396 +727 179 3 883711150 +721 880 3 877137109 +537 723 2 886032098 +868 746 2 877109082 +437 1267 4 880141528 +536 209 2 882360030 +870 56 5 875050826 +541 655 4 883864782 +688 309 5 884153606 +870 174 5 875050698 +416 510 4 876698853 +453 56 5 877554771 +63 262 4 875746917 +831 741 2 891354726 +579 692 4 880952440 +7 632 5 891352261 +629 392 4 880117747 +881 63 4 876538853 +650 447 3 891386120 +900 318 4 877833672 +690 153 5 881177485 +815 684 4 878696441 +666 66 4 880568560 +906 125 4 879435365 +181 130 1 878963241 +548 316 4 891044139 +896 476 2 887161541 +624 246 4 879792493 +725 301 4 876106729 +393 332 4 887742764 +776 525 2 891629157 +222 90 2 878181647 +643 1016 3 891445766 +846 485 5 883947590 +909 14 4 891920763 +796 797 3 893049257 +655 237 3 887426116 +590 275 4 879439645 +406 472 3 879539884 +828 26 3 891037948 +372 53 5 876869553 +781 286 1 879633495 +823 28 3 878438058 +622 173 5 882670057 +738 128 4 875351873 +305 59 3 886322758 +741 50 5 891018339 +846 208 5 883949547 +749 531 5 878847171 +881 451 1 876539186 +456 739 3 881375226 +932 640 2 891249239 +503 66 3 880383468 +906 117 4 879435574 +474 482 3 887925395 +829 319 4 892312728 +622 480 4 882669414 +833 235 4 875036418 +566 49 2 881651561 +505 328 4 888631175 +315 741 5 879821349 +796 118 4 893048505 +267 554 3 878972040 +799 292 4 879253720 +682 876 3 888521290 +643 509 3 891448839 +924 1478 4 886759691 +657 302 2 884237291 +874 116 4 888632484 +864 401 4 888893271 +812 328 4 877625368 +814 672 3 885411030 +15 472 3 879456204 +846 720 4 883949643 +738 141 3 875352771 +435 479 3 884131901 +42 73 4 881108484 +650 551 3 891370446 +806 158 2 882390404 +912 173 4 875966238 +632 568 3 879458142 +536 222 4 882360552 +627 9 4 879530014 +693 272 4 885703603 +843 182 2 879444739 +805 24 4 881694923 +581 7 4 879643079 +833 324 3 875035487 +848 202 5 887043040 +393 820 3 887745380 +537 660 3 886031149 +97 193 4 884238997 +815 449 2 878698661 +936 275 4 886832134 +209 249 2 883417640 +580 282 5 884125292 +487 85 2 884044654 +527 508 3 879456363 +851 531 3 875731189 +804 177 5 879441727 +851 975 2 875731105 +797 340 2 879439735 +524 96 4 884635172 +698 855 2 886367615 +862 200 5 879304980 +708 687 2 892719062 +487 301 4 883440613 +305 469 2 886323757 +932 180 4 891251014 +921 322 3 879379428 +811 308 4 886377082 +748 318 5 879454475 +907 245 4 880158556 +647 29 4 876533657 +561 77 1 885809246 +246 252 1 884924473 +875 289 4 876464800 +704 14 3 891397190 +642 775 4 886569570 +690 629 1 881177459 +847 79 4 878941588 +643 432 5 891449771 +390 300 5 879693770 +749 284 4 878846812 +92 402 3 875813098 +817 258 3 874815541 +890 632 5 882916538 +901 520 5 877287882 +447 181 5 878854520 +698 490 3 886366814 +911 21 4 892840144 +861 179 1 881274672 +916 763 3 880843683 +639 662 2 891239581 +653 205 1 880150126 +788 356 4 880870827 +931 255 4 891036755 +608 127 5 880403320 +823 195 4 878437703 +585 509 4 891283000 +863 330 2 889289191 +102 511 3 888801407 +846 56 5 883948003 +665 89 4 884294935 +819 302 5 884012512 +854 455 2 882812906 +868 164 2 877104157 +498 410 3 881954931 +749 95 3 878848333 +479 584 3 879461873 +831 358 2 891354371 +461 748 1 885355839 +277 1008 3 879543621 +863 1431 4 889289618 +761 1287 1 876190072 +863 322 1 889289327 +828 694 2 891036717 +889 523 4 880178078 +848 498 5 887037935 +216 151 3 880232936 +880 1165 2 880175527 +758 143 5 881975314 +496 196 3 876066374 +758 217 2 881978805 +480 56 4 891208492 +159 298 5 880557386 +594 269 4 877816219 +469 152 4 879523947 +599 245 3 880953441 +788 1139 1 880871605 +515 304 4 887658782 +339 9 5 891033044 +91 662 4 891439439 +727 408 4 883708895 +892 367 4 886610588 +901 230 5 877131087 +655 1233 3 887650512 +524 69 4 884634578 +712 415 4 874957161 +851 840 3 875731105 +840 70 3 891208919 +756 50 4 874828592 +892 58 4 886609469 +896 88 5 887159426 +872 756 4 888479370 +770 275 5 875972219 +715 595 3 875962718 +916 228 3 880845049 +871 190 2 888193275 +882 748 5 879861155 +758 313 4 882926095 +586 1218 5 884066959 +735 288 4 876697610 +886 1119 4 876032553 +573 423 3 885844127 +851 336 4 890804691 +666 956 4 880568637 +782 355 3 891498821 +921 121 5 879379736 +339 211 5 891034215 +11 431 2 891905896 +435 202 4 884131901 +711 961 5 886030557 +660 449 3 891201796 +186 177 4 891719775 +850 705 5 883195034 +567 434 5 882425997 +765 1009 5 880346606 +798 1076 3 876176043 +474 652 4 887925838 +782 1082 3 891500230 +650 563 3 891388170 +823 709 3 878438095 +911 183 4 892839492 +791 748 3 879448035 +889 1016 3 880177070 +829 427 4 891204271 +537 319 4 886028604 +429 412 4 882387411 +645 72 3 892053686 +844 173 5 877388182 +868 153 2 877105916 +244 28 4 880606300 +385 378 1 879447555 +416 571 3 886318860 +875 195 4 876466687 +739 98 3 886958972 +896 636 3 887159464 +796 182 4 893048342 +749 398 3 878850038 +532 1407 2 874794386 +589 310 5 883352494 +943 174 4 875410099 +851 880 3 886534617 +889 1097 3 880176984 +587 681 2 892871641 +851 1676 2 875731674 +20 323 4 879667684 +686 299 5 879543557 +308 218 5 887738717 +770 246 5 875971813 +570 886 2 881262534 +648 717 4 884366425 +181 1353 1 878962200 +655 454 3 888813372 +840 173 5 891204356 +854 235 2 882813179 +868 382 4 877109874 +877 207 3 882677012 +650 231 2 891381709 +331 306 5 877196819 +867 1159 5 880078796 +751 173 4 889134393 +524 218 3 884636453 +881 108 3 879052402 +409 1328 2 881106287 +849 133 5 879696059 +614 508 4 879464093 +749 77 3 878849534 +823 215 4 878437925 +489 895 4 891448147 +825 1199 4 880755762 +617 424 1 883789716 +825 931 3 889021287 +848 663 5 887046329 +523 257 5 883700187 +711 275 5 876185855 +497 111 4 878759828 +905 302 5 884982870 +784 877 4 891387622 +659 56 5 891331825 +407 1263 2 876344668 +828 1068 4 891035864 +398 482 5 875657802 +796 568 4 892676114 +919 1134 2 875289356 +889 642 3 880181455 +635 331 4 878878654 +795 382 4 881529077 +896 887 2 887235769 +6 306 4 883268246 +835 650 5 891033957 +437 226 1 880142942 +863 901 1 889288972 +674 111 5 887763336 +327 393 3 887819507 +896 575 2 887161469 +437 15 4 881001946 +622 79 5 882591979 +838 172 5 887066143 +867 474 5 880078840 +653 132 3 880149897 +839 258 4 875751411 +863 319 2 889289123 +7 197 4 891351082 +152 944 4 882476632 +664 31 4 876526555 +612 864 4 875324756 +887 443 4 881380883 +630 282 3 885666804 +511 1527 4 890004952 +378 164 4 880056582 +906 473 4 879435598 +601 429 5 876349387 +488 286 1 891292852 +515 538 3 887658676 +843 434 4 879447146 +622 230 3 882592815 +659 294 4 891044849 +774 12 3 888559437 +690 66 3 881177581 +854 492 4 882814333 +932 661 5 891250109 +758 455 4 881977309 +394 431 5 880889607 +655 1086 3 888474358 +880 47 4 880174730 +693 218 4 875483473 +130 330 4 874953424 +622 1216 4 882590344 +894 1115 4 882404430 +657 301 3 884237633 +883 740 4 891692742 +115 644 3 881172183 +49 147 1 888069416 +241 286 5 887249482 +834 346 3 890860194 +637 147 1 882903645 +788 385 3 880869434 +553 609 4 879948806 +848 489 5 887043821 +937 14 4 876769080 +648 575 3 884882553 +934 674 4 891193814 +160 408 4 876767023 +749 540 3 878850388 +425 435 3 878738334 +815 602 3 878694269 +249 427 5 879572472 +919 531 3 875373669 +788 589 5 880868005 +804 582 3 879444963 +870 315 2 883876178 +774 831 2 888558594 +308 356 3 887740833 +666 1451 3 880139614 +624 993 4 879793486 +457 276 4 882393306 +795 1413 3 883254987 +506 137 2 874872872 +707 480 3 886286360 +886 591 3 876031765 +660 259 4 891197778 +868 783 1 877113481 +21 873 2 874950932 +643 504 4 891447370 +889 631 3 880178449 +833 293 4 875035885 +721 292 3 877137527 +727 191 4 883710717 +533 403 3 879439341 +932 441 2 891252504 +878 498 4 880866758 +880 394 3 880243319 +865 627 1 880235060 +296 194 5 884197193 +393 411 2 887745501 +454 984 3 891377968 +586 576 3 884062671 +729 310 3 893286204 +716 559 2 879796846 +192 9 5 881367527 +880 28 5 880175690 +660 173 5 891199556 +669 511 5 891260778 +447 411 2 878855107 +524 64 2 884634877 +32 628 4 883718121 +524 208 5 884635287 +671 174 5 884035685 +451 324 4 879012647 +460 304 2 882911101 +724 268 4 883757397 +13 445 4 882139774 +938 473 3 891357106 +897 184 4 879991226 +463 1028 2 877386082 +405 512 1 885549589 +754 291 4 879451991 +346 1011 1 874947609 +711 651 4 879993707 +940 358 1 884801227 +889 132 4 880181910 +913 498 3 880757473 +655 686 2 887427866 +854 106 3 882813248 +405 542 1 885549095 +916 484 4 880844156 +506 586 2 885135882 +474 1221 4 887926999 +773 357 4 888540448 +436 941 4 887771997 +823 56 5 878438119 +889 471 3 880176926 +716 162 4 879796311 +537 684 3 886030738 +690 705 1 881179505 +795 559 2 883774317 +846 198 5 883948457 +622 363 4 882591484 +561 794 2 885809731 +222 566 4 878185044 +347 696 4 881653266 +840 195 5 891204847 +932 745 5 891250584 +468 117 2 875280499 +716 58 5 879795239 +938 1028 5 891356679 +653 175 2 878854332 +919 1 4 875289321 +533 281 4 887032214 +588 713 3 890015791 +896 895 2 887235788 +655 927 3 887564613 +835 286 3 891032224 +279 1039 4 881731303 +942 1050 5 891283043 +746 423 3 885075612 +94 1010 4 891721117 +748 114 4 879454773 +313 181 4 891014782 +286 408 4 875806800 +536 614 4 882359653 +478 64 5 889388862 +325 408 5 891478307 +514 195 5 876063938 +850 196 3 883194792 +815 222 4 884320310 +655 731 3 888474872 +163 326 3 891219977 +479 196 4 879461207 +916 71 3 880844897 +752 350 4 891208357 +846 1530 2 883949335 +699 477 3 878882411 +516 515 4 891290566 +778 755 2 890804547 +807 1066 5 893081508 +113 300 3 875075887 +796 82 3 892676195 +498 462 3 881958897 +882 756 3 879863457 +880 284 4 880242528 +806 187 5 882387670 +830 79 4 891561607 +943 721 5 888639660 +843 153 3 879446281 +479 202 4 879461567 +660 1065 2 891201049 +749 184 2 878848137 +881 831 2 879052493 +834 316 5 890860566 +274 596 3 878945404 +821 845 5 874792591 +483 515 4 878950971 +535 186 4 879618925 +740 873 2 879522872 +246 56 1 884920948 +489 880 2 891447302 +932 1454 4 891251985 +933 1028 2 874938620 +87 715 3 879876885 +941 475 4 875049038 +778 69 2 890803860 +693 291 3 889167954 +694 194 5 875727143 +618 133 4 891307784 +851 1276 2 875730601 +535 187 2 879617701 +186 1385 2 879023968 +825 249 3 880755693 +831 260 2 891354371 +257 86 4 879547655 +480 302 4 891207539 +698 707 2 886366814 +569 288 3 879793228 +542 423 4 886532676 +6 285 3 883599431 +526 1007 3 885682657 +524 526 3 884636907 +543 188 4 877545717 +462 873 4 886365706 +190 237 5 891033773 +234 631 3 892334577 +916 1401 3 880844262 +158 1303 3 880134865 +846 513 5 883947589 +551 1220 5 892784524 +405 429 5 885545200 +911 923 4 892842509 +637 742 4 882904233 +457 528 5 882397543 +568 127 4 877907050 +116 650 2 876452806 +715 173 5 875963998 +804 637 3 879444943 +942 892 3 891282644 +894 316 4 888280105 +293 88 3 888907266 +621 55 5 874963594 +603 326 4 891956344 +933 559 2 874938808 +478 96 2 889396509 +621 40 3 874963273 +450 571 2 882471604 +336 734 1 877757516 +890 234 5 882404484 +655 722 1 887431047 +559 1556 3 891033759 +374 457 1 880392626 +543 265 4 877545356 +751 431 4 889134705 +896 73 3 887159368 +846 44 1 883947737 +757 562 3 888466737 +932 430 4 891249849 +815 217 3 878696681 +902 497 5 879465894 +889 237 4 880176874 +132 100 4 891278744 +577 559 3 880474903 +210 173 4 887730264 +373 684 4 877098784 +593 742 4 888872002 +676 294 4 892685591 +357 748 5 878951101 +870 1090 2 879902161 +758 147 4 881977021 +608 163 1 880405085 +406 657 5 884630493 +898 358 4 888294739 +334 527 3 891546231 +544 304 3 884795135 +768 15 2 883835210 +411 603 5 892845986 +893 820 3 874829161 +504 612 4 887838677 +863 1680 2 889289570 +794 14 5 891034956 +145 338 3 882181335 +847 426 2 878940485 +498 64 4 881956575 +870 469 4 875679958 +943 421 2 888639351 +380 79 4 885479104 +727 1165 2 883709948 +505 173 3 889333534 +699 596 3 884152780 +749 111 3 878848405 +843 627 2 879447718 +49 577 1 888069329 +664 356 3 876526685 +919 21 2 875289356 +886 1065 4 876033731 +659 64 4 891384152 +814 234 3 885410957 +705 862 1 883427875 +859 257 2 885775330 +793 235 3 875104068 +826 22 5 885690481 +790 944 1 885157299 +653 628 4 878866413 +828 24 4 891035864 +815 671 4 878695679 +486 269 4 879874388 +486 883 3 879874388 +392 837 5 891038466 +833 106 2 879818799 +654 845 4 887863613 +264 275 5 886122706 +533 483 4 879438470 +840 419 5 891208897 +104 678 2 888442404 +776 440 2 892920480 +498 7 3 881954741 +897 423 5 879994113 +535 211 4 879617489 +939 1051 5 880262090 +815 402 5 878695438 +807 222 4 892528174 +682 318 4 888517168 +917 278 3 882911767 +842 1395 4 891218060 +246 735 4 884921679 +887 470 3 881380773 +407 151 4 876340363 +785 318 4 879439232 +844 568 4 877387964 +454 498 3 888267559 +18 174 4 880130613 +872 313 5 888478786 +889 268 4 880176620 +715 122 4 875962718 +872 928 2 888479582 +881 392 5 876538155 +890 50 5 882405807 +236 333 3 890117748 +846 693 5 883949335 +804 292 2 879441099 +846 265 5 883947630 +551 326 4 892775612 +632 877 1 879459777 +838 70 4 887066207 +883 11 2 891696824 +883 603 4 891755017 +115 185 5 881171409 +863 334 5 889289353 +936 129 4 886832134 +875 55 3 876465370 +13 549 4 882399357 +437 23 4 880140288 +749 586 4 878850657 +747 504 5 888640605 +880 685 4 880167083 +896 430 3 887159234 +885 582 2 885714487 +846 772 4 883949421 +181 1366 1 878962200 +796 257 5 892660283 +454 275 2 888267419 +861 1009 5 881274857 +774 8 1 888556090 +664 642 4 876526554 +374 806 3 880396659 +942 97 5 891283239 +896 1471 1 887235026 +336 210 5 877757700 +747 732 3 888639138 +328 299 2 885044904 +5 383 3 875636588 +758 568 4 881977669 +540 270 4 882156731 +294 515 5 889242081 +494 300 5 879540593 +840 154 3 891204564 +886 1019 4 876031695 +728 319 3 879442612 +129 310 2 883244011 +464 510 4 878355167 +900 483 4 877833924 +733 1338 4 879536608 +541 99 4 883874717 +733 591 3 879535440 +452 474 3 875263067 +619 233 4 885954158 +889 282 4 880177246 +878 191 4 880866564 +633 50 4 875326664 +533 192 3 879438486 +752 900 4 891207791 +497 128 4 879362496 +805 393 3 881705843 +880 240 4 880167151 +495 378 5 888634896 +727 410 2 883709710 +363 385 4 891497129 +881 233 3 876538922 +847 220 4 878939327 +727 1025 2 883708149 +823 187 5 878438148 +937 93 4 876780336 +532 447 4 888630205 +585 1501 4 891284393 +779 235 4 875502286 +878 650 2 880866883 +763 59 5 878915765 +347 421 2 881653635 +660 172 4 891199017 +403 1 4 879785974 +771 588 5 880659815 +681 289 5 885410009 +501 829 3 883348656 +393 507 2 889554859 +391 301 4 877399745 +566 496 5 881649428 +615 699 3 879448823 +768 475 2 883835210 +86 326 3 879570423 +625 385 4 892053920 +663 628 4 889492615 +932 736 3 891249261 +643 515 4 891445140 +327 749 3 887743644 +115 192 5 881171137 +586 735 3 884066230 +805 436 3 881695347 +718 597 5 883348938 +663 147 3 889493069 +721 331 3 877137285 +823 654 5 878437703 +650 450 1 891382877 +776 431 4 891628916 +226 12 5 883889322 +773 168 5 888539425 +927 866 4 879181621 +843 657 3 879443668 +495 1188 5 888637147 +430 523 4 877226568 +707 425 5 886287268 +896 484 4 887159302 +727 739 4 883711735 +671 570 3 884036411 +648 384 4 884882235 +629 86 5 880117163 +552 126 4 879221876 +524 310 4 884701677 +711 662 3 879993918 +385 30 5 879442988 +892 117 4 886611161 +826 1228 3 885690900 +595 460 4 886921699 +653 15 3 878854383 +880 82 3 880167806 +686 2 3 879546443 +744 481 3 881171420 +321 705 3 879439812 +726 763 2 889831115 +688 1127 5 884153606 +506 443 4 874874760 +864 290 3 888892053 +873 286 2 891392091 +868 1509 1 877111487 +425 64 4 878738245 +655 794 1 887431019 +759 471 4 881476969 +102 879 3 879443144 +65 237 4 879217320 +416 869 3 892439992 +772 752 3 889028773 +782 325 2 891498720 +531 329 5 887049081 +154 641 5 879138831 +280 9 5 891700664 +158 195 5 880134398 +474 259 1 887914878 +821 237 5 874792491 +851 64 5 875731674 +268 388 1 875743979 +880 249 4 880166966 +343 531 5 876404539 +378 470 3 880056104 +299 855 4 889502087 +796 1297 2 893047504 +667 660 4 891035164 +676 892 4 892685900 +437 156 2 880140627 +903 528 4 892760784 +405 1552 1 885546636 +528 204 5 888522547 +721 359 3 877137359 +633 237 4 875324891 +606 451 3 880927247 +406 100 4 879446062 +933 218 3 874854678 +273 307 2 891292761 +318 735 5 884496182 +60 603 5 883326652 +729 338 1 893286373 +741 682 3 891455960 +645 1159 4 892054632 +864 561 4 888888937 +189 179 5 893265478 +621 721 4 874963126 +873 289 2 891392577 +678 100 5 879544750 +113 333 4 875935609 +533 580 3 879192034 +833 89 5 875124495 +233 304 5 877665323 +442 172 5 883389580 +687 294 3 884651894 +660 800 2 891201675 +568 427 4 877907720 +708 15 3 877325404 +707 111 4 880060420 +286 3 2 876522316 +95 238 5 880570823 +868 579 1 877108241 +770 333 5 875971612 +422 295 3 875130063 +880 456 3 880175270 +611 342 3 891636223 +877 727 4 882677967 +682 716 2 888522074 +622 257 3 882590485 +185 480 4 883526267 +709 144 3 879846622 +468 531 4 875295368 +733 277 1 879536523 +889 357 4 880177906 +843 258 4 879442947 +921 929 1 879380142 +943 161 4 888639772 +445 994 1 891199682 +222 628 5 877563485 +731 484 3 886179289 +262 216 3 879793216 +592 47 5 882955889 +276 97 3 874787549 +653 693 1 880151651 +661 1 5 876016545 +865 546 1 880143917 +840 50 4 891203366 +943 720 1 888640048 +478 762 4 889388161 +654 25 1 887863381 +788 586 2 880871490 +807 172 5 892528515 +84 756 3 883452765 +869 515 5 884493279 +790 161 4 885157181 +381 196 5 892697083 +772 748 3 877533625 +311 227 4 884365617 +650 355 2 891369190 +716 260 1 879793001 +870 340 3 882464808 +501 696 4 883348185 +836 322 2 885753639 +109 358 2 880562908 +453 257 3 877552590 +878 19 4 880865470 +13 811 5 882139829 +763 212 4 878920656 +867 56 5 880078818 +614 293 3 879464157 +883 276 5 891717462 +684 393 4 878761751 +537 276 4 886029806 +324 273 5 880575449 +872 278 3 888479206 +870 65 3 879713898 +943 23 4 888638897 +361 47 4 879440516 +870 333 3 882123130 +889 85 3 880181976 +463 275 5 877385287 +868 636 3 877103449 +7 144 5 891351201 +887 562 5 881381071 +536 694 5 882360622 +836 327 3 885753639 +666 81 4 880314194 +873 313 5 891392177 +943 928 5 875502074 +896 836 3 887158635 +871 937 3 888192689 +577 234 3 880474257 +476 430 4 883364143 +234 93 3 891227771 +796 144 5 892662524 +110 29 3 886988374 +871 195 5 888193274 +817 329 4 874815649 +699 7 2 878882272 +269 1005 4 891447427 +845 1238 2 885409374 +929 480 3 879639969 +920 292 3 884220058 +508 527 5 883775361 +868 239 3 877107924 +359 50 5 886453271 +687 323 2 884651894 +383 166 4 891192858 +500 168 4 883873616 +308 172 4 887736532 +881 56 1 876962037 +934 83 4 891191831 +833 291 3 879818619 +357 283 5 878951616 +694 141 5 875727399 +815 529 5 878694854 +796 447 3 893218485 +653 125 2 878866973 +659 610 3 891332044 +917 535 4 882912385 +174 284 4 886433771 +751 196 4 889133039 +773 737 3 888539064 +145 77 3 875272348 +198 204 3 884207584 +854 302 3 882811836 +878 462 4 880866509 +916 239 3 880844627 +838 210 4 887067359 +805 708 3 881699661 +623 603 4 891034294 +505 207 3 889334004 +854 203 4 882813933 +773 170 5 888538980 +716 636 2 879796651 +795 169 5 880567884 +642 584 4 885842877 +774 91 1 888558018 +889 718 4 880176807 +882 423 5 879878486 +308 1121 3 887737647 +585 640 2 891284816 +297 208 4 875049192 +590 1331 4 879439645 +15 938 3 879455233 +279 375 1 884556678 +299 747 4 889502640 +398 427 4 875657734 +659 476 3 891331534 +716 200 4 879795606 +934 526 2 891192197 +864 423 5 888887739 +882 11 4 879867816 +873 321 1 891392577 +707 641 1 886285907 +353 898 2 891402587 +833 508 5 875035953 +393 689 3 887742991 +703 323 2 875242281 +521 273 3 884476168 +864 663 4 888887248 +795 151 3 880558562 +897 416 5 879991186 +829 294 2 881707829 +780 520 4 891363904 +280 245 3 891700185 +677 294 5 885191227 +773 89 4 888540020 +568 604 4 877907156 +862 423 4 879305273 +814 441 2 885411347 +766 523 3 891309011 +385 1535 4 879448294 +807 826 3 893082505 +794 116 5 891035307 +488 79 4 891294334 +805 204 2 881704016 +716 209 3 879795543 +43 1055 2 883955969 +450 1297 4 882812635 +643 174 4 891446652 +788 720 3 880870482 +869 253 4 884493279 +504 121 4 887831642 +829 259 2 881707829 +680 14 5 877075079 +887 288 4 881378040 +62 673 2 879375323 +666 97 4 880139642 +24 223 5 875322727 +880 619 4 880243499 +437 961 5 881002323 +752 331 4 891208036 +757 204 4 888468577 +660 281 3 891198588 +301 24 4 882074312 +85 474 5 879454500 +880 246 5 892958837 +847 174 4 878941168 +648 743 1 884367366 +846 514 3 883947590 +456 367 3 881373900 +696 286 5 886403578 +854 124 5 882814570 +831 905 4 891354020 +846 441 4 883950252 +864 237 4 878179514 +907 647 3 880159844 +763 83 3 878917877 +804 94 4 879446194 +671 546 5 884036050 +380 179 3 885478313 +918 417 2 891988521 +828 70 3 893186210 +892 625 3 886610565 +345 12 5 884901701 +776 91 4 891628752 +712 238 3 874730206 +786 546 4 882844294 +746 385 5 885075367 +825 982 5 881184695 +916 1220 3 880845282 +96 514 4 884402977 +606 81 3 880924921 +497 416 2 879363611 +897 99 5 879994113 +328 275 4 885046420 +792 840 2 877910539 +72 271 1 880036346 +878 482 4 880866134 +426 484 5 879444662 +707 483 5 886286004 +592 893 1 882955292 +58 491 4 891611593 +870 354 4 889409590 +865 148 3 880144194 +741 209 3 891457342 +878 9 4 880865562 +393 384 3 889729508 +643 161 3 891449381 +537 89 4 886030862 +889 544 3 880177104 +884 323 2 876857745 +216 65 4 880233939 +883 387 5 891696750 +865 271 1 880142778 +527 275 3 879455961 +653 191 5 880150019 +872 905 4 888479034 +782 312 4 891498436 +95 110 2 880572323 +881 456 1 879052291 +722 294 2 891280219 +931 127 5 891037521 +705 419 3 883427663 +712 418 3 874730553 +71 98 4 885016536 +805 21 2 881705055 +900 1132 1 877833364 +393 748 3 887742851 +495 633 5 888632738 +580 288 5 884125658 +620 82 5 889988146 +900 871 1 877833443 +256 984 3 882150192 +836 292 5 885753475 +796 449 4 893048622 +493 1013 1 884131777 +892 425 5 886608977 +301 367 4 882076619 +524 495 4 884635358 +802 134 3 875985347 +859 1048 3 885775767 +456 191 3 881372849 +870 265 4 880584497 +558 9 4 879436069 +883 519 5 891717283 +758 93 5 881975922 +704 300 2 891396674 +524 269 4 884287379 +421 525 4 892241422 +645 654 5 892053686 +881 192 5 876537577 +851 1105 4 890862961 +698 1020 2 886367558 +59 380 3 888205956 +126 286 3 887853469 +526 285 5 885682503 +254 112 2 886473631 +889 408 3 880176960 +887 284 4 881378669 +886 685 2 876032378 +223 477 3 891550144 +826 849 4 885690750 +921 215 4 879380677 +304 879 3 884966972 +901 259 2 877129839 +848 393 5 887047962 +486 547 3 879874753 +405 703 2 885546112 +865 222 2 880143482 +910 298 2 880821124 +438 301 4 879867960 +349 546 3 879466200 +886 496 4 876031952 +809 245 3 891037127 +453 282 4 877561382 +25 79 4 885852757 +833 175 4 875124535 +815 195 4 878695278 +883 796 3 891696782 +85 1039 4 879453903 +749 429 4 878847461 +458 1039 5 886397275 +517 328 3 892660034 +577 183 5 880474747 +699 471 3 879147597 +752 354 2 891208261 +593 121 4 875660036 +286 473 3 875806918 +864 692 2 888890316 +863 350 1 889289457 +437 1142 4 880141696 +648 864 3 882211418 +804 161 4 879442269 +776 674 3 892920321 +453 82 3 877561694 +347 105 2 881653198 +784 304 4 891387501 +894 10 4 880416381 +868 139 1 877109300 +939 597 4 880261610 +663 591 3 889492759 +921 202 4 884673891 +647 77 4 876533851 +290 136 4 880474367 +540 117 4 882157706 +788 180 4 880869174 +663 42 5 889493732 +720 319 3 891263340 +708 151 4 892719211 +865 71 1 880235059 +806 1098 4 882387925 +862 519 4 879304326 +645 30 4 892054824 +667 268 3 891034404 +650 315 3 891368885 +769 222 4 885423824 +566 693 5 881649727 +313 216 4 891013525 +666 498 5 880139669 +883 1009 4 891692811 +588 29 3 890027063 +655 13 3 887426237 +851 473 4 874728396 +394 12 4 880887035 +804 969 4 879442687 +916 5 3 880845099 +648 585 3 884882234 +606 127 4 878143509 +754 295 4 879451626 +846 490 4 883947862 +854 757 3 882814235 +497 622 2 879363586 +650 499 3 891372316 +896 658 4 887159895 +647 177 5 876534131 +694 490 4 875727877 +663 129 3 889492503 +715 176 5 875963792 +864 629 3 888888282 +668 596 3 881591297 +627 135 4 879529702 +177 210 4 880130990 +643 656 4 891447196 +834 323 2 890860471 +503 237 4 879438505 +642 569 2 886569538 +218 288 2 877487931 +239 509 5 889180071 +286 101 5 877532204 +771 381 3 880659970 +864 735 5 888886882 +788 44 4 880869434 +716 213 5 879795906 +854 151 4 882812451 +838 28 4 887065709 +890 404 4 882915696 +592 299 1 882607573 +450 725 3 882469863 +880 568 5 880167843 +437 117 1 881001121 +943 450 1 888693158 +151 491 4 879524536 +735 50 5 876698683 +56 636 4 892683533 +870 772 4 875679767 +823 708 4 878438930 +627 511 4 879529986 +255 219 5 883216544 +780 419 4 891363826 +840 708 4 891209033 +551 9 5 892776982 +222 98 4 878181387 +230 499 4 880484870 +893 815 3 874830372 +405 443 4 885548330 +798 1285 3 876177330 +889 33 5 880180817 +737 32 4 884314993 +846 630 3 883948642 +854 150 3 882812314 +731 64 5 886179040 +748 271 3 879454302 +750 327 4 879446013 +409 890 1 881105677 +8 243 2 879361732 +886 1267 3 876032072 +280 423 5 891700276 +774 585 1 888556225 +541 172 5 884645816 +727 556 2 883713632 +653 521 4 878854441 +643 2 3 891448218 +746 22 4 885075211 +665 546 2 884291376 +734 28 4 891022627 +864 9 5 877214236 +885 662 3 885714362 +883 661 4 891718914 +579 210 3 880951944 +395 515 4 883765297 +566 234 3 881650148 +410 303 3 888626583 +346 720 2 875265528 +702 751 4 885767576 +452 153 4 875276361 +416 631 3 886316295 +788 1183 2 880871891 +497 441 2 879362407 +354 8 5 891217160 +882 275 5 879861678 +758 240 3 882053986 +864 25 4 888888240 +894 315 4 885428012 +793 118 2 875104119 +655 504 5 887650683 +697 235 4 882622188 +676 272 4 892685224 +545 1188 3 883115515 +232 172 4 888549412 +113 742 3 875076827 +634 546 4 875729535 +506 712 3 874873893 +886 202 3 876032509 +878 194 4 880869911 +932 646 4 891250498 +707 387 4 886287733 +756 739 4 874829743 +868 145 1 877109082 +655 676 2 887426665 +901 662 4 877132632 +655 1238 2 888474843 +727 28 5 883710075 +429 231 2 882385489 +860 220 3 885145702 +629 270 3 880116023 +837 763 1 875722123 +495 655 5 888634536 +651 127 4 879348965 +715 254 1 875962762 +922 153 4 891451037 +790 373 3 885158459 +844 207 4 877387392 +561 433 1 885808867 +399 28 2 882344134 +431 328 4 877844377 +538 528 5 877107536 +796 665 2 893048622 +660 435 4 891199883 +416 1337 1 876698083 +475 269 4 891451276 +843 435 2 879446477 +155 300 2 879370963 +816 328 4 891710968 +675 86 4 889489574 +698 435 3 886366980 +840 186 4 891204827 +533 53 1 879191621 +486 1611 3 879874692 +828 328 3 891033988 +506 739 4 874874525 +871 360 3 888192475 +618 111 3 891308946 +84 815 4 883452462 +796 356 4 893194646 +841 313 5 889066779 +886 783 1 876033784 +758 223 5 881975119 +896 83 5 887159554 +543 568 3 877547005 +747 83 4 888732571 +803 325 4 880054885 +805 629 3 881704553 +903 282 4 891031384 +332 385 5 888098398 +898 689 3 888294842 +470 273 3 879178370 +846 11 5 883948343 +848 606 4 887038441 +506 204 5 874874055 +457 367 4 882396989 +864 569 3 888891794 +846 662 3 883948765 +823 425 5 878438298 +871 1431 4 888192971 +416 520 5 893214225 +503 347 5 884637610 +388 294 4 886439561 +21 15 4 874951188 +833 521 4 875124495 +764 1046 4 876244895 +764 692 4 876246358 +588 12 5 890015324 +793 100 4 875104031 +498 269 4 881953527 +655 966 3 887477409 +823 170 4 878438357 +738 550 3 875351603 +881 654 4 876539156 +705 97 3 883518765 +930 1315 3 879534692 +650 625 3 891387616 +568 1125 4 877907281 +416 235 2 885115041 +936 813 5 886832222 +896 719 1 887235026 +256 274 5 882151456 +331 8 3 877196444 +459 294 5 879561755 +882 132 5 879864970 +524 92 4 884635171 +846 226 4 883948495 +682 245 3 888516841 +885 655 3 885713294 +919 681 2 875920347 +178 823 2 882824592 +448 1062 5 891888178 +749 227 4 878848189 +865 118 1 880144229 +833 234 3 875122884 +620 172 4 889988146 +207 18 2 877878739 +749 763 1 878848483 +308 449 3 887741003 +793 240 4 875104565 +880 380 3 880242281 +327 175 2 887744205 +828 547 2 891035864 +523 863 4 883700743 +303 1041 2 879485507 +648 95 3 884368371 +210 132 4 887736206 +758 175 4 881976061 +669 168 4 891517259 +378 473 3 880906178 +901 1041 5 877131443 +401 584 3 891033227 +782 1668 3 891500067 +728 287 4 879443155 +837 250 2 875722104 +707 443 3 886287191 +826 540 3 885690854 +886 10 3 876032030 +866 889 2 891221006 +889 687 2 880177797 +831 313 5 891354000 +236 282 5 890117028 +543 200 4 874864870 +813 9 3 883752051 +496 699 3 876068220 +345 980 4 884991688 +620 78 4 889988340 +890 480 5 882403477 +826 1409 2 885690442 +673 307 3 888787355 +883 724 4 891696689 +392 604 5 891039015 +454 687 3 881959468 +830 229 2 891561937 +759 748 4 875227708 +326 199 5 879875552 +177 144 5 880131011 +332 350 4 891214762 +884 268 4 876857704 +95 946 3 888956489 +457 225 4 882395825 +299 408 4 877877847 +151 1050 4 879524879 +943 765 3 888640227 +834 307 4 890860566 +870 503 4 879713899 +732 288 4 882590200 +865 847 5 880143386 +795 91 5 881265483 +519 874 5 883250102 +895 275 5 879438011 +774 318 1 888556483 +833 194 3 875133840 +520 893 2 885170330 +504 161 4 887839195 +405 1564 1 885546288 +807 588 5 892530251 +374 220 2 882158147 +387 588 3 886480163 +880 7 3 880166872 +735 764 3 876698837 +380 196 4 885479777 +926 340 4 888351623 +72 197 5 880037702 +815 1 5 878691975 +710 202 3 882063793 +535 614 5 879618850 +645 506 5 892055072 +378 64 4 880055239 +533 292 4 883583127 +269 11 3 891448365 +762 934 1 878719406 +311 131 3 884365252 +141 742 4 884584930 +798 472 3 875638178 +846 562 5 883950463 +87 1180 3 879877127 +497 232 3 879310850 +731 486 4 886182556 +99 789 4 885680176 +709 554 4 879848744 +939 1277 5 880261945 +899 121 5 884120164 +916 177 3 880844312 +500 10 3 883865391 +921 228 3 884673823 +716 230 3 879797198 +751 172 5 889133129 +642 368 4 885606271 +889 31 3 880178449 +303 687 1 879544923 +398 607 3 875720467 +856 289 1 891489525 +886 726 1 876033340 +495 418 4 888633440 +936 118 3 886833516 +835 1063 4 891034285 +933 367 4 874854190 +788 112 3 880871173 +90 69 1 891383424 +916 210 4 880844694 +773 288 2 888538199 +11 213 4 891906389 +788 9 4 880869508 +378 1092 3 880332683 +374 1206 2 880396080 +766 176 2 891308927 +843 420 3 879448073 +779 121 3 875503280 +741 1016 3 891458249 +805 451 5 881696759 +537 733 3 886031297 +504 664 3 887910718 +942 357 4 891283239 +840 580 3 891211972 +905 129 4 884984009 +923 291 4 880387707 +336 25 3 877756934 +90 753 4 891385751 +788 879 4 880867422 +907 283 4 880158827 +932 968 4 891250816 +123 187 4 879809943 +934 1285 3 891196516 +796 237 5 893047126 +798 577 2 875639441 +933 168 3 874853869 +943 98 5 888638980 +235 96 4 889654971 +854 194 3 882814235 +747 655 3 888639685 +327 161 3 887820417 +539 340 2 879787771 +842 315 3 891217834 +276 187 5 874791102 +828 512 5 891037948 +464 259 4 878354859 +921 603 3 884673868 +144 72 4 888105338 +861 529 5 881274718 +806 47 4 882387563 +792 596 3 877910241 +776 483 5 891628731 +527 475 3 879455847 +598 751 3 886710494 +130 88 2 875217265 +385 568 3 879446465 +587 260 4 892871284 +934 660 5 891194836 +804 1139 3 879446145 +709 849 4 879848590 +18 612 4 880131591 +758 105 2 882054936 +234 655 3 892333616 +843 473 2 879449193 +666 653 4 880139120 +785 56 4 879438920 +903 179 5 891466376 +314 1047 4 877886279 +721 269 5 877135269 +514 796 4 876067205 +326 202 4 879875724 +907 275 5 880158692 +9 7 4 886960030 +11 356 4 891906327 +716 210 5 879796651 +782 349 3 891498720 +932 649 4 891251199 +721 58 2 877140781 +592 97 4 882956718 +804 99 4 879442984 +73 96 2 888626523 +34 289 1 888602950 +460 19 5 882912418 +912 15 4 875967028 +797 336 2 879439136 +709 121 4 879848475 +896 190 5 887159530 +907 520 5 880159865 +721 942 4 877147140 +394 91 4 880886821 +618 172 5 891307098 +875 332 3 876464801 +454 81 1 888266433 +776 551 3 892920480 +805 665 4 881684185 +551 162 5 892783242 +592 526 5 882956241 +770 222 4 875973686 +825 871 3 880932283 +894 903 4 888280029 +682 932 1 888522017 +736 294 3 878709025 +807 386 4 893080516 +848 215 5 887046565 +870 514 5 875050637 +792 125 3 877910539 +451 358 1 879012550 +839 255 3 875752138 +880 571 2 880175187 +790 391 2 885158299 +883 319 3 891691560 +624 121 3 879793156 +95 671 3 880571045 +716 294 4 879793653 +796 429 4 892690102 +774 406 1 888559013 +541 931 3 883875370 +756 141 3 874831227 +774 732 1 888556814 +704 488 5 891397570 +893 118 4 874828864 +697 546 4 882622626 +872 826 3 888479654 +274 234 5 878946536 +112 888 4 886398699 +447 50 5 878854552 +825 118 4 880756725 +740 332 3 879522681 +805 13 3 881704063 +840 528 5 891209260 +861 582 2 881274796 +769 118 4 885424099 +844 255 3 877382008 +854 1226 4 882814571 +486 106 1 879875408 +883 1592 5 891692168 +224 924 3 888103646 +187 710 4 879465242 +738 252 4 875349045 +610 480 5 888702962 +848 166 5 887038159 +426 136 4 879442083 +887 597 5 881378325 +682 28 3 888516953 +904 216 4 879735461 +765 507 5 880347034 +538 276 1 877107340 +840 519 5 891204356 +588 178 5 890015323 +468 65 3 875294549 +647 1063 3 876776320 +870 582 5 879713817 +606 284 4 878148425 +523 432 5 883701800 +524 302 5 884287406 +622 763 4 882591047 +924 7 4 885458060 +313 176 4 891013713 +933 151 4 874853977 +128 275 5 879967016 +766 226 3 891310150 +452 1255 2 876298932 +877 549 4 882677935 +189 28 4 893266298 +424 969 1 880859385 +880 49 3 880174858 +916 561 3 880845227 +188 635 2 875074667 +345 244 3 884994658 +666 381 3 880139349 +315 163 3 879821158 +940 792 2 885921892 +733 273 4 879535603 +886 26 4 876032929 +665 96 3 884293831 +721 321 3 877137447 +894 179 5 882404485 +94 188 4 885870665 +556 286 4 882135437 +94 159 3 891723081 +848 527 3 887038280 +886 81 4 876032531 +766 194 3 891309117 +605 245 3 879366335 +347 11 5 881653544 +279 547 1 875295812 +660 393 2 891201541 +655 462 3 888474960 +751 631 5 889297711 +414 313 4 884998953 +804 373 2 879447476 +843 50 3 879444670 +716 183 2 879796279 +642 725 4 885606067 +435 444 3 884134075 +865 455 4 880143612 +763 171 3 878915015 +507 1016 5 889966088 +81 717 2 876533824 +848 433 3 887043180 +790 561 3 885158082 +805 509 5 881698095 +393 982 3 889731649 +1 126 2 875071713 +603 210 4 891957110 +699 683 3 880695597 +363 1056 4 891496169 +905 116 3 884984066 +617 653 4 883788955 +214 182 4 891544175 +901 28 5 877131624 +544 270 3 884795135 +343 72 5 876407706 +627 125 2 879530346 +887 412 5 881379188 +308 504 4 887738570 +828 59 5 891036972 +296 469 5 884197264 +807 1039 4 892528324 +886 79 5 876032884 +896 1004 2 887161542 +15 322 3 879455262 +889 1142 4 880176926 +882 739 4 879880131 +738 313 5 892938181 +643 568 4 891447663 +850 50 5 883195143 +389 419 3 880087003 +405 1192 1 885545975 +712 762 4 874956244 +833 79 3 875039254 +690 148 3 881178365 +293 85 3 888906927 +6 496 4 883601155 +621 1016 4 880737785 +692 476 3 876953279 +405 213 2 885549309 +555 89 4 879975438 +798 420 3 876175937 +445 1534 1 891199749 +897 98 5 879990361 +28 444 3 881961728 +942 1028 4 891283209 +373 170 5 877098751 +698 183 3 886366916 +447 471 4 878854340 +938 111 5 891356742 +486 251 5 879874582 +859 282 3 885774964 +854 1016 2 882812406 +862 521 5 879304762 +496 252 2 876065105 +664 449 2 876526718 +834 544 4 890862563 +568 735 2 877907327 +694 138 3 875730082 +391 228 2 877399486 +876 289 3 879428145 +844 99 3 877388040 +783 299 5 884326620 +676 480 5 892686666 +833 460 2 875036827 +748 97 4 879454848 +916 68 3 880845636 +848 805 5 887048111 +523 694 5 883703048 +795 123 4 880558447 +840 216 4 891205123 +361 202 3 879440941 +489 360 5 891362904 +793 273 3 875103942 +864 275 4 878179445 +918 133 1 891987267 +870 180 3 875679860 +452 196 4 875275763 +567 612 4 882427124 +18 212 5 880129990 +840 516 5 891205245 +248 343 4 884534436 +667 9 5 891034831 +684 172 5 875812299 +606 98 5 880923925 +851 160 5 875731224 +311 241 3 884364695 +399 541 3 882345622 +869 125 3 884491867 +666 811 4 880568396 +167 674 2 892738384 +406 124 4 879446588 +774 410 1 888558762 +235 970 4 889655204 +665 255 4 884290608 +455 463 4 879111737 +652 275 4 882567294 +807 520 5 892529358 +659 218 4 891384798 +655 451 3 887428280 +648 596 3 882211419 +267 1240 5 878974783 +406 483 4 879446062 +882 211 4 879867431 +643 67 4 891449476 +642 734 3 886569960 +654 274 4 887863635 +334 236 4 891544765 +690 781 2 881177662 +788 715 3 880871664 +905 748 2 884983627 +1 83 3 875072370 +880 577 3 880175207 +828 1062 4 891380166 +751 428 4 889297239 +518 744 4 876823266 +796 269 3 892610692 +870 763 4 879902059 +380 610 2 885478886 +301 425 4 882077033 +886 195 4 876032030 +486 713 3 879874902 +869 116 4 884490892 +682 237 3 888517324 +936 748 2 886831738 +827 269 5 882201356 +10 23 5 877886911 +110 576 2 886988574 +566 144 3 881649530 +421 269 3 892241210 +880 779 3 880167965 +424 690 3 880858792 +709 559 3 879848209 +852 259 4 891036414 +854 328 1 882811865 +922 476 1 891455167 +541 501 4 883874682 +101 763 3 877136789 +896 28 2 887158738 +788 655 3 880868644 +934 175 4 891190854 +780 210 5 891364027 +91 300 4 891438004 +543 469 4 875663056 +11 173 5 891904920 +686 654 5 879546954 +717 742 5 884642427 +705 83 4 883518834 +906 742 3 879435278 +889 54 3 880182815 +765 10 4 880346308 +897 230 4 879991607 +730 294 4 880309996 +862 96 4 879305051 +782 1393 2 891498512 +843 7 5 879443297 +276 172 5 874792435 +704 214 2 891398702 +96 196 4 884403057 +334 121 3 891545067 +160 59 4 876858346 +892 636 4 886609884 +682 1047 3 888521803 +761 748 4 876189614 +321 419 4 879439620 +504 292 5 887831273 +620 595 5 889987792 +588 88 5 890024730 +716 274 5 879793631 +741 196 5 891018460 +782 534 3 891500109 +234 1449 4 892333573 +893 151 4 874829427 +881 685 2 876536877 +844 83 5 877388183 +896 1194 3 887158604 +896 1042 2 887161151 +911 93 4 892839784 +246 597 2 884921965 +943 559 4 888639638 +925 563 2 884718204 +934 190 4 891191660 +579 70 3 880952299 +640 33 3 874778696 +894 61 4 882404572 +790 1188 3 885157984 +548 300 5 891044304 +908 47 3 879723095 +833 1386 4 875035660 +592 298 5 882608061 +749 4 4 878847863 +846 373 3 883950391 +91 294 3 891438288 +655 534 2 887693376 +878 732 4 880869302 +758 82 4 881976168 +889 177 4 880178183 +823 625 4 878438807 +58 354 3 890321652 +849 234 5 879695469 +533 739 5 882902988 +230 143 5 880484501 +889 473 4 880177503 +632 173 5 879458649 +268 408 5 875742316 +882 79 5 879878486 +790 687 1 884461162 +887 240 5 881378972 +934 302 4 891188367 +749 48 3 878848015 +806 6 2 882385063 +428 288 4 885943847 +886 466 1 876032577 +930 237 3 879534587 +650 491 3 891385775 +332 276 3 887938299 +875 135 4 876465188 +662 1342 4 880570112 +883 971 3 891693200 +886 449 3 876033784 +539 59 5 879788224 +279 284 1 886015853 +405 1419 2 885548137 +732 243 5 882589879 +343 22 4 876406181 +264 430 5 886123531 +227 319 4 879035072 +766 1298 3 891309736 +893 258 3 874827508 +788 553 3 880869687 +624 1012 4 879793408 +597 275 4 875339876 +698 89 4 886366454 +846 430 3 883947778 +682 732 3 888517740 +880 477 3 880166966 +881 527 3 876537900 +233 660 5 877661634 +479 199 5 879460863 +566 64 5 881649530 +798 585 3 875743912 +889 91 4 880180784 +183 739 4 891467353 +450 322 4 882370316 +925 245 3 884633287 +901 121 4 877127219 +810 323 4 879895314 +586 182 3 884066016 +940 116 2 885921741 +863 359 3 889289158 +26 760 1 891383899 +699 878 3 879382955 +328 651 5 885046580 +472 265 4 892790676 +506 63 4 874873944 +534 109 4 877808053 +641 270 3 879369827 +456 1604 4 881372849 +435 17 2 884132540 +296 250 2 884196689 +823 792 3 878438057 +897 95 3 879990586 +745 182 2 880123314 +872 820 3 888479624 +773 90 4 888539643 +896 1214 2 887159302 +305 66 3 886325023 +795 820 3 880560679 +868 200 3 877107189 +90 215 2 891385335 +526 150 2 885682370 +840 100 5 891203166 +640 591 4 875732368 +529 301 4 882535639 +789 1007 4 880332215 +269 603 5 891448871 +694 71 4 875730889 +804 153 4 879441346 +847 25 3 878775796 +939 220 5 880261658 +399 462 3 882510290 +540 1016 4 882157662 +301 258 4 882074363 +540 471 4 882157706 +707 367 4 886291531 +901 477 3 877127021 +784 300 4 891386988 +871 172 5 888193177 +345 469 5 884916274 +899 202 4 884122419 +921 240 1 879379621 +780 705 5 891363685 +833 55 3 875038807 +314 585 2 877890381 +132 664 5 891278996 +7 211 5 891352557 +629 238 5 880117285 +635 246 5 878879190 +899 153 5 884122331 +553 631 5 879948695 +727 67 4 883712652 +505 11 4 889333861 +880 105 3 880175077 +852 25 3 891036802 +560 121 3 879976705 +702 271 1 885767534 +323 64 5 878740017 +777 223 4 875980306 +790 116 4 884461334 +638 188 3 876694995 +703 15 5 875242814 +885 169 5 885714820 +826 1240 5 885690442 +896 202 2 887159464 +592 471 4 882608234 +758 311 4 880672321 +709 273 4 879847686 +940 321 4 884801316 +429 284 3 882386424 +188 50 4 875072741 +932 615 5 891249621 +938 405 3 891356847 +936 1368 5 886832337 +31 611 4 881548111 +643 7 4 891445354 +854 1 3 882812225 +864 472 4 888888861 +621 1036 1 874963446 +669 192 5 891260542 +746 121 3 885075337 +650 823 3 891381661 +788 498 5 880867933 +524 116 4 884322047 +240 286 5 885775625 +671 288 5 883950232 +282 358 3 879949594 +924 322 2 884337164 +916 163 3 880844834 +747 154 3 888733182 +667 283 4 891034947 +541 204 4 884645816 +537 30 3 886031606 +625 25 2 891632018 +840 45 4 891205222 +712 1055 4 874730155 +472 200 4 875981158 +497 541 4 879362546 +533 449 4 879191713 +130 771 2 878537631 +537 211 4 886030831 +43 73 4 883956099 +825 678 4 880757103 +771 134 4 880659482 +897 211 5 879991186 +796 565 3 893218556 +844 55 4 877387769 +863 300 5 889289157 +879 255 4 887761156 +880 64 5 880175646 +889 169 5 880177906 +496 426 3 876071419 +794 109 4 891035941 +883 315 3 891691353 +194 223 4 879547032 +456 1101 3 881374710 +451 1295 2 879012811 +240 302 5 885775536 +302 271 4 879436911 +777 238 4 875980541 +676 1234 1 892685775 +606 651 4 880926018 +894 279 4 880993709 +815 71 5 878694341 +117 252 3 881010322 +459 307 5 879561630 +896 820 2 887159926 +899 48 4 884122044 +756 323 3 874832096 +897 550 3 879990923 +697 369 5 882622481 +754 293 4 879451466 +627 528 4 879530662 +514 898 2 885180893 +844 921 5 877388183 +305 663 3 886323591 +846 1124 4 883948048 +65 471 4 879217434 +873 879 2 891392577 +457 125 4 882393343 +221 751 4 885081300 +503 124 5 879438233 +417 418 4 879647471 +833 135 4 875123677 +757 172 4 888445587 +647 197 5 876534131 +763 224 5 878919153 +707 702 3 886286193 +833 227 2 879818619 +429 136 4 882386071 +101 831 3 877136954 +460 306 4 882912418 +92 63 3 875907504 +11 393 4 891905222 +748 168 3 879454930 +889 428 4 880179536 +844 45 4 877387548 +894 508 3 880993490 +595 1028 3 886921475 +864 65 3 888890690 +256 187 3 882164444 +405 1544 1 885549095 +833 745 4 875134063 +843 164 3 879443297 +62 931 1 879373522 +588 168 5 890024002 +911 507 4 892839289 +425 11 3 878737981 +863 683 1 889289241 +560 1215 2 879977336 +416 78 2 886319785 +922 662 3 891448246 +16 480 5 877720297 +449 462 5 880410674 +690 393 4 881177616 +742 14 5 881335361 +782 270 4 891497963 +840 484 5 891204295 +747 811 3 888639735 +901 155 5 877132671 +899 222 4 884119910 +579 393 4 880952409 +862 647 5 879304369 +943 121 3 875502096 +527 878 1 879455511 +622 95 4 882669556 +916 931 1 880843798 +402 118 4 876267096 +450 111 4 882377590 +798 81 3 876177211 +861 319 5 881274504 +887 1029 5 881381740 +471 432 1 889827822 +395 750 5 883762266 +888 100 4 879365004 +922 274 3 891448247 +13 242 2 881515193 +621 1185 3 881445012 +336 591 5 877759598 +454 611 2 888266685 +234 280 3 892334803 +748 603 5 879454455 +505 181 3 889333974 +654 588 4 887864797 +286 235 4 875807003 +279 259 3 883546906 +806 271 3 882384844 +934 506 4 891193331 +862 238 4 879304624 +889 192 3 880178204 +452 94 1 888568349 +253 518 5 891628392 +888 644 4 879365054 +838 919 5 887064316 +484 720 4 891195532 +268 1110 3 876514077 +181 1079 1 878963122 +387 518 4 886483151 +318 187 4 884495742 +854 620 2 882813453 +411 79 4 892845634 +655 359 3 887424883 +775 313 4 891032837 +165 1119 3 879525922 +532 282 5 893119415 +896 1240 4 887159012 +899 291 4 884122279 +176 1097 4 886047963 +279 1481 4 875313925 +913 168 4 881725796 +18 604 5 880129731 +870 83 4 889717102 +486 544 4 879875249 +682 684 3 888520705 +758 895 4 883190310 +860 204 4 885990901 +823 640 1 878439315 +601 921 5 876351214 +833 436 2 875224252 +894 148 3 880416137 +459 127 4 879562834 +655 76 3 888813372 +497 743 3 879362638 +551 54 3 892784093 +897 378 5 879991137 +878 269 4 880865183 +648 217 2 884883616 +838 258 5 887060659 +880 876 4 892958376 +760 111 4 875666242 +847 447 3 878940890 +931 283 4 891036604 +648 629 4 882213596 +13 905 2 886302261 +829 286 4 891204271 +735 321 3 876698022 +350 427 5 882346118 +868 854 4 877103371 +915 334 3 891031477 +654 255 2 887863513 +934 257 4 891189598 +818 269 3 891870173 +933 211 4 874854251 +897 479 4 879991566 +796 478 5 892761629 +807 831 4 892530881 +804 238 4 879441727 +786 849 2 882844052 +903 89 4 891032842 +854 713 4 882812288 +851 833 3 875731105 +804 216 4 879441450 +851 340 5 883148669 +903 642 4 891033005 +452 520 3 875261100 +568 423 4 877907281 +736 748 2 878708465 +440 462 5 891577994 +833 24 4 875036213 +548 275 3 891415411 +11 451 2 891905003 +655 43 3 888474456 +798 191 4 875743458 +670 705 5 877974905 +942 322 3 891282539 +474 663 4 887924084 +630 1197 3 885667464 +757 27 4 888466683 +74 331 4 888333352 +665 33 2 884293873 +396 281 3 884646647 +882 405 4 879861939 +524 135 3 884634679 +815 660 4 878696441 +545 155 3 879902060 +541 993 4 884046295 +758 216 4 881974931 +180 40 4 877127296 +406 604 3 879446361 +94 474 5 885870322 +655 844 4 887650979 +525 282 4 881085648 +864 55 4 888887045 +763 732 3 878919206 +847 289 5 878774856 +885 274 5 885712996 +13 176 3 882140455 +916 423 3 880844654 +903 111 3 891031677 +216 129 4 880232615 +839 813 4 875752082 +537 302 4 886028446 +715 95 4 875963621 +425 1129 3 878738245 +653 96 4 878854145 +806 230 4 882388520 +756 22 3 874828592 +885 568 4 885715889 +406 531 3 879445475 +752 751 4 891208212 +913 132 3 880758150 +897 864 4 879993772 +569 471 3 879793466 +889 431 4 880179725 +931 300 5 891037521 +798 498 3 875639581 +747 288 4 888638091 +112 332 4 886398611 +936 926 4 886833191 +839 7 2 875751992 +887 22 5 881379566 +268 719 1 875744021 +896 143 4 887158901 +666 660 4 880568094 +560 168 4 879975718 +588 307 4 890014887 +331 1 1 877196567 +534 597 5 877808175 +533 255 2 882195237 +304 323 3 884967391 +804 393 3 879445072 +887 222 3 881378153 +805 214 2 881700713 +660 217 2 891200817 +888 153 4 879365154 +917 287 4 882911185 +747 367 3 888733070 +265 975 4 875320601 +870 211 3 879539713 +586 117 4 884057578 +23 181 4 874784337 +846 1218 4 883950434 +796 391 4 893048713 +523 42 3 883703495 +882 56 4 879865307 +707 632 4 886287426 +802 358 3 875984722 +872 272 4 888478822 +326 94 4 879877304 +653 670 1 880152902 +877 288 3 882675993 +548 254 1 891043999 +788 482 4 880869787 +719 655 4 879360617 +619 121 5 885953805 +931 896 3 891036080 +774 568 2 888557329 +720 321 4 891262762 +642 969 2 885603662 +756 1149 5 874827023 +851 266 3 886534672 +819 246 4 884012614 +734 144 2 891023019 +766 40 3 891310851 +922 175 3 891451240 +867 496 5 880078574 +161 177 2 891171848 +880 956 3 880242380 +731 125 3 886186940 +662 246 5 880571006 +815 945 4 878697261 +938 298 4 891356573 +847 56 1 878939975 +654 146 3 887864105 +773 42 3 888539398 +924 205 4 886327826 +337 67 4 875236631 +843 210 3 879444670 +807 28 4 892528918 +828 6 1 891035614 +840 1214 1 891211729 +406 506 4 882480802 +280 70 4 891700366 +892 613 5 886608714 +796 265 5 892761544 +632 201 4 879457641 +907 83 5 880159865 +146 294 1 891457668 +890 1 4 882402975 +886 178 5 876031829 +771 477 5 880660199 +620 406 4 889987073 +59 526 4 888204928 +405 1574 1 885546529 +854 632 4 882813797 +611 1243 3 891636244 +839 1048 1 875752990 +806 227 2 882388353 +713 752 2 888882276 +840 661 5 891204441 +749 161 3 878847461 +477 546 4 875941972 +894 1404 3 882404536 +198 89 5 884208623 +864 196 4 888887914 +568 488 5 877907782 +626 678 1 878771505 +620 94 5 889988340 +874 305 4 888632057 +751 214 4 889298463 +632 523 3 879458900 +826 578 5 885690713 +640 2 4 874778568 +7 569 4 892131978 +940 151 3 885921800 +664 566 4 876526631 +747 1020 4 888639642 +848 108 5 887040302 +808 751 3 883949560 +771 86 5 880659539 +49 652 5 888066446 +669 22 3 891517159 +924 496 5 886327689 +839 118 2 875752317 +846 705 3 883948141 +859 275 3 885774828 +548 347 2 891415257 +483 101 2 884047278 +463 313 4 889935655 +880 260 4 892958484 +822 91 3 891037394 +655 15 3 888685735 +638 202 3 876695819 +757 576 3 888469012 +869 1061 1 884492377 +617 496 1 883789080 +782 1378 2 891499494 +889 174 4 880178183 +230 422 3 880485633 +73 183 4 888626262 +902 172 4 879465522 +659 1064 5 891385866 +489 688 2 891448861 +899 255 4 884120149 +854 652 3 882813825 +883 100 4 891717462 +802 288 3 875984637 +790 928 3 884462598 +755 258 5 882569732 +503 211 5 880472435 +399 820 4 882341191 +404 938 4 883790749 +303 655 5 879483568 +698 10 4 886366652 +933 467 3 874854479 +279 833 4 875297410 +854 56 5 882814571 +864 239 4 888889466 +664 431 2 876526631 +891 111 3 891639737 +805 1629 5 881703690 +697 280 3 882622597 +544 877 2 884795612 +746 132 4 885075756 +655 803 3 888474358 +638 211 4 876695774 +614 289 2 879463669 +886 94 4 876033200 +923 105 4 880388547 +894 529 4 881625708 +510 748 3 887667707 +815 82 4 884267891 +780 204 5 891363651 +876 435 4 879428421 +798 394 4 875914484 +938 829 1 891357085 +487 204 4 883445495 +618 755 2 891309670 +843 1065 3 879448751 +786 198 5 882843753 +37 233 4 880916046 +603 250 5 891956173 +943 402 2 888639702 +883 1448 5 891695570 +806 1048 3 882385806 +883 956 4 891717885 +569 301 4 879793149 +753 272 4 891399135 +881 411 3 879052376 +527 279 4 879456438 +524 651 4 884634578 +806 45 4 882388159 +940 173 4 885921400 +561 507 4 885807429 +546 5 5 885141411 +276 685 4 874786784 +727 588 4 883710495 +535 484 5 879617819 +773 109 4 888539328 +453 763 4 877553221 +830 625 3 891561541 +453 451 2 877561836 +655 1098 3 887473905 +459 405 3 879563334 +327 83 2 887744101 +308 223 4 887737130 +622 541 2 882592781 +854 1335 2 882812288 +142 91 5 888640404 +394 123 5 880888566 +827 245 3 882807611 +801 302 4 890332645 +862 825 5 879303668 +836 531 4 885754150 +723 168 5 880498912 +807 470 5 892529448 +184 192 4 889908843 +919 558 5 875372988 +128 380 4 879968946 +611 906 2 891636223 +835 191 4 891033276 +699 286 3 880695246 +750 325 1 879446215 +838 705 5 887065750 +489 347 5 891448774 +42 168 3 881107773 +864 5 4 888889657 +221 399 3 875246459 +500 313 3 893192133 +94 86 5 891720971 +274 756 3 878946030 +747 210 4 888639272 +437 602 3 880140822 +586 780 4 884067151 +44 22 4 878347942 +861 286 4 881274504 +498 430 4 881958174 +747 238 3 888638957 +886 403 4 876031765 +796 54 4 893194685 +790 665 3 885158495 +807 402 5 892705096 +827 294 4 882807611 +833 506 2 875132079 +339 53 4 891034254 +593 111 5 875659576 +880 1258 3 880175368 +740 340 4 879523187 +640 580 5 874778096 +234 371 3 892335850 +880 238 4 880174652 +828 582 3 891037813 +453 452 2 888206630 +327 396 3 887819538 +733 458 2 879535129 +745 50 2 880122928 +835 15 5 891032930 +804 98 5 879441503 +796 226 3 893048410 +849 676 5 879695896 +871 300 4 888192971 +889 615 3 880180707 +833 1143 4 887158946 +686 542 1 879546443 +774 183 4 888557198 +250 259 1 883262792 +593 762 4 875659849 +576 124 4 886985002 +697 244 5 882622481 +827 288 3 882204460 +770 250 5 875971902 +883 1462 5 891695570 +449 515 5 879958685 +291 95 4 875086921 +766 197 3 891309011 +551 385 5 892783791 +719 284 2 888449573 +437 476 4 880142177 +903 693 5 891466376 +109 22 4 880572950 +346 660 2 874948979 +468 647 5 875293386 +497 944 3 879362798 +774 187 3 888556483 +405 663 2 885547221 +899 423 4 884121214 +889 575 3 880182850 +59 81 4 888205336 +806 408 5 882385237 +921 484 3 884673633 +790 196 3 885156500 +451 948 3 879012890 +880 208 5 880174652 +137 79 5 881433689 +122 519 4 879270129 +673 321 3 888787355 +481 202 4 885829240 +807 206 2 892684932 +823 1046 3 878439467 +790 72 2 885157661 +279 131 1 886020902 +870 168 4 875680472 +872 268 1 888478864 +485 889 5 891040560 +806 76 3 882389054 +863 906 4 889289570 +887 172 5 881379718 +758 53 4 882053613 +764 50 3 876242649 +303 77 4 879483978 +21 127 5 874951188 +908 527 3 879722754 +592 971 4 882955978 +429 192 3 882385612 +901 1389 5 877127052 +851 1280 4 890343493 +517 740 4 892660728 +606 323 4 877642209 +854 522 2 882814189 +567 79 2 882427023 +275 230 3 876198296 +770 117 5 875971989 +560 498 4 879975718 +868 218 3 877104913 +903 47 5 891033522 +927 405 5 879181451 +935 405 4 884472704 +662 100 5 880571006 +898 347 3 888294485 +790 1165 2 884462890 +406 176 5 879445474 +859 476 5 885775727 +627 1044 2 879530899 +517 294 1 892607194 +513 210 5 885063273 +406 569 3 879792974 +749 38 3 878850724 +257 285 5 882049950 +788 561 3 880870626 +716 284 3 879794116 +532 531 5 893119491 +932 863 4 891249063 +868 496 2 877107597 +175 869 3 877107500 +119 315 5 886175571 +913 418 3 881368742 +194 318 5 879521328 +667 182 5 891034767 +708 993 4 877325349 +933 176 3 874854315 +694 499 4 875728345 +887 1239 3 881381679 +13 590 2 882397068 +524 386 4 884637032 +903 443 5 891033755 +561 748 2 888557502 +396 118 4 884646314 +133 355 2 890588928 +903 196 4 891033781 +868 367 2 877106505 +867 204 4 880078958 +495 1133 3 888636487 +862 520 4 879304484 +907 284 5 881030348 +862 10 5 879303249 +870 288 4 875050370 +682 1039 4 888517510 +660 72 3 891201436 +499 328 5 882996296 +268 185 3 875309801 +795 546 3 880559275 +682 729 3 888518035 +747 136 5 888639481 +870 1021 2 881001249 +916 764 3 880843798 +708 299 1 892718964 +833 861 3 875224309 +863 908 1 889289240 +474 185 5 887923923 +586 17 5 884060807 +714 258 4 892777903 +851 48 4 875731489 +797 309 3 879438992 +344 290 2 884899837 +321 221 5 879438793 +124 1 3 890287733 +694 474 4 875727226 +885 685 3 885715671 +213 212 4 878955474 +514 134 3 875463665 +640 1258 3 886474866 +916 171 4 880844332 +870 135 3 875680045 +73 285 4 888792900 +880 845 3 880167200 +351 898 5 883356784 +537 702 3 886031375 +668 347 4 890349005 +883 202 4 891694312 +790 2 3 885156988 +749 214 3 878849177 +796 236 4 893048149 +828 1462 3 891037948 +922 176 3 891450401 +330 479 5 876546105 +578 346 3 887229335 +839 264 3 875751559 +798 415 3 875639260 +796 1046 3 893194607 +868 162 3 877109505 +181 245 2 878961369 +887 932 2 881379009 +244 744 3 880606923 +870 182 5 883876178 +792 363 3 877910478 +756 8 4 874827755 +903 180 5 891033585 +105 751 2 889214381 +851 56 5 875731489 +178 531 4 882826242 +905 237 3 884983951 +484 742 3 881449737 +586 1046 3 884064912 +867 12 5 880078656 +92 69 5 875653198 +885 584 3 885716328 +889 69 3 880179785 +619 391 3 885954215 +1 231 1 876893031 +589 334 1 883352631 +184 1086 4 889907711 +437 196 4 880140627 +629 1038 3 880116240 +907 260 2 885860511 +901 864 5 877289441 +880 1139 4 880242577 +807 542 5 893081951 +786 173 4 882843069 +682 174 4 888523581 +916 428 4 880844350 +719 127 3 879358453 +618 56 4 891307175 +880 1446 4 880174705 +509 328 1 883590800 +603 228 3 891955922 +942 183 3 891283184 +533 713 2 879192582 +312 602 4 891699263 +393 77 3 889729440 +870 479 5 875050801 +463 129 2 877385287 +889 847 4 880176926 +887 202 5 881379346 +813 271 4 883752455 +900 405 3 877833364 +724 751 2 883757397 +200 22 4 884128372 +758 652 5 881975853 +807 136 5 892529185 +655 176 2 887429999 +878 179 4 880866626 +712 393 3 874730320 +347 748 2 881652142 +871 210 5 888193275 +890 520 4 882403643 +923 168 5 880388872 +873 269 2 891392092 +741 79 4 891455610 +899 144 3 884121173 +922 155 2 891448473 +872 892 3 888479052 +707 15 4 880059876 +329 294 2 891655383 +648 405 4 882211924 +649 678 3 891440562 +144 294 4 888103573 +407 1041 3 876345492 +417 771 3 879649368 +878 168 4 880866626 +894 883 3 880415885 +414 895 4 884999170 +513 739 5 885063056 +372 844 4 876869481 +833 172 2 875224482 +533 480 4 879190670 +485 302 5 891040423 +536 500 4 882360946 +325 1118 3 891479665 +916 265 4 880844813 +647 300 4 876534131 +682 241 4 888522541 +881 226 3 876538400 +790 159 3 885156934 +67 273 4 875379288 +868 216 2 877109234 +619 406 2 885953931 +622 450 1 882592850 +889 554 4 880181976 +912 246 2 875967072 +717 312 5 884642133 +542 87 3 886532676 +892 482 5 886608136 +474 55 4 887926271 +727 609 3 883711923 +714 1152 2 892777651 +762 709 3 878719594 +409 206 4 881109264 +899 431 1 884122645 +528 526 4 886101505 +894 1258 3 879896949 +898 243 1 888294707 +343 663 5 876405045 +833 430 4 875133840 +210 114 4 887736175 +796 479 4 892761427 +883 1227 3 891693200 +796 63 3 893218764 +833 182 5 875039254 +749 423 4 878847645 +870 841 2 878737915 +802 217 3 875985767 +759 245 3 881476616 +622 153 4 882592314 +868 237 1 877108989 +472 91 5 892791063 +840 182 4 891204798 +778 117 3 890727011 +883 386 3 891694372 +867 286 5 880077721 +486 889 4 879873973 +760 776 5 875667247 +422 563 3 879744219 +834 333 5 890860566 +363 232 2 891495272 +835 488 5 891034117 +543 1416 2 876718718 +851 1376 2 875730895 +328 578 2 885048895 +115 218 3 881171623 +666 650 5 880139409 +710 479 5 882064120 +592 683 1 882607745 +921 924 3 879379736 +347 4 4 881654452 +301 90 3 882078360 +87 134 4 879877740 +907 1326 4 880159512 +917 591 3 882911185 +49 289 4 888065744 +790 959 3 885156686 +453 237 4 877552657 +757 559 4 888467400 +454 588 3 881960083 +846 176 4 883947694 +276 89 5 874792366 +655 122 2 887523605 +569 455 3 879794265 +673 310 5 888786997 +870 425 4 889717575 +767 22 4 891462614 +801 752 4 890332853 +747 792 5 888639102 +323 1073 4 878739857 +724 338 3 883758119 +453 1037 1 888206630 +714 100 1 892775786 +682 672 2 888522894 +795 201 4 880569984 +232 268 4 885939544 +10 700 4 877892277 +216 134 4 880233651 +804 1065 3 879441727 +655 823 2 888685759 +738 50 5 892844112 +914 1406 4 887123886 +862 650 4 879304941 +798 210 4 875743410 +788 241 5 880869075 +663 895 4 889491811 +867 132 3 880078629 +399 328 4 882340311 +575 357 5 878148388 +479 471 4 879460028 +852 235 4 891036765 +474 28 4 887924619 +896 53 1 887235026 +533 684 4 879191594 +862 186 3 879305143 +858 333 4 880933013 +682 159 3 888521005 +896 760 2 887235788 +815 258 4 884320310 +98 659 5 880498861 +916 55 3 880844369 +405 640 1 885549589 +841 306 4 889066824 +892 121 4 886609829 +915 345 4 891030145 +655 775 2 887523815 +851 912 4 891961214 +934 212 4 891194802 +409 603 5 881107351 +927 422 4 879199110 +715 1217 2 875963998 +881 480 4 876537679 +788 627 4 880870654 +400 343 4 885676552 +919 432 4 875373824 +717 546 3 884642932 +880 283 3 880167008 +894 126 3 880416381 +938 406 3 891357060 +455 924 3 879110154 +805 346 4 883766007 +286 629 5 877531661 +465 151 3 883530818 +880 38 3 880168411 +592 427 5 882955735 +524 433 5 884636444 +712 1036 5 874956981 +796 134 3 892663009 +91 527 4 891439057 +664 482 5 878090180 +503 172 5 880383588 +593 845 3 875671033 +805 678 4 879971214 +474 678 2 887915020 +234 662 3 892079585 +458 137 5 886394730 +684 585 2 878762273 +829 190 4 881698876 +548 472 2 891415967 +883 185 5 891695692 +848 435 3 887042427 +844 864 3 877381873 +116 326 2 876453376 +297 34 3 875410124 +413 283 5 879969484 +930 153 2 879535685 +259 173 4 874724843 +404 286 1 883790181 +174 582 4 886439537 +379 265 4 883156656 +514 265 4 886190600 +766 616 3 891309589 +897 510 3 879990531 +774 69 4 888556544 +638 455 3 876695059 +864 399 4 888893088 +907 144 5 880159937 +887 225 4 881379094 +864 96 5 888887830 +487 70 3 883530929 +919 323 4 875288362 +902 302 3 879463109 +847 369 1 878939451 +677 129 5 889399199 +726 255 2 889832297 +468 248 4 875280352 +640 96 5 874778240 +655 825 2 887429669 +667 315 4 891034426 +608 79 5 880405863 +405 668 1 885548275 +405 1535 1 885549635 +416 269 4 876696643 +719 185 4 877310932 +831 284 3 891355004 +556 427 5 882136440 +643 215 3 891447037 +900 602 1 877834025 +268 435 4 875309859 +484 684 5 891195390 +446 289 3 879786984 +851 754 2 891961831 +536 86 3 882360573 +846 139 2 883949508 +367 565 2 876690048 +624 302 4 885215462 +782 538 4 891498214 +816 342 4 891711519 +585 557 4 891285820 +846 391 3 883950605 +615 215 4 879448632 +616 245 3 891224767 +758 129 4 881975962 +646 294 2 888528870 +890 589 5 882403221 +297 479 5 875240015 +912 443 4 875966027 +922 427 5 891449123 +332 552 3 888360488 +796 23 2 892690382 +411 89 3 891035761 +109 476 3 880571831 +551 155 4 892784259 +880 148 2 880167030 +756 143 5 874831383 +109 831 2 880572296 +187 1065 4 879465717 +892 192 5 886608473 +567 423 2 882426869 +866 269 3 891221165 +783 286 3 884326274 +389 161 2 880088269 +899 546 2 884120317 +637 591 3 882904233 +883 634 3 891692874 +405 733 1 885546248 +92 926 3 875640542 +930 126 5 879535392 +753 750 2 891401167 +823 161 3 878438535 +663 98 5 889493540 +463 246 4 877387935 +707 1204 3 886286283 +896 317 4 887159069 +626 302 4 878771242 +727 222 3 883709350 +393 893 3 889554457 +521 147 4 884476837 +872 117 4 888479171 +450 286 4 882215617 +405 27 1 885546487 +435 930 3 884134019 +401 125 3 891033651 +48 650 3 879434819 +437 100 4 880140051 +880 655 4 880174623 +405 1266 1 885549634 +933 135 4 874854444 +448 1022 5 891888244 +840 616 5 891209364 +716 237 5 879793844 +892 417 3 886610588 +340 211 3 884991431 +458 199 4 886396140 +782 879 3 891498267 +641 336 3 879369943 +436 693 5 887769515 +846 436 4 883950286 +692 1132 4 876953954 +860 1047 2 885991563 +119 196 5 886177162 +758 475 5 881977205 +717 313 5 884642133 +880 70 4 880174677 +823 294 3 878439981 +849 197 5 879695782 +761 117 5 876190314 +391 652 4 877399588 +474 427 5 887923924 +864 800 1 888891154 +23 603 4 874785448 +896 425 2 887159110 +715 273 5 875961998 +650 271 3 891369143 +840 118 3 891204056 +896 371 2 887159723 +916 202 3 880845028 +405 725 1 885547691 +916 1208 2 880845249 +535 1063 4 879618613 +882 1 5 879864558 +806 288 3 882384554 +659 489 4 891045747 +593 8 3 875673098 +776 241 1 892313489 +779 1 4 875501555 +590 284 2 879439345 +1 204 5 875072688 +655 1445 3 887427538 +592 423 5 882955918 +178 881 2 886678484 +601 82 1 876351298 +785 748 3 879438705 +911 193 4 892839056 +896 426 2 887160722 +566 22 3 881649358 +436 469 3 887769128 +655 318 4 887473702 +877 553 4 882678137 +897 436 4 879991037 +466 4 3 890285034 +870 378 3 879902226 +892 68 4 886611162 +99 98 5 885679596 +640 81 5 874777735 +923 455 4 880387946 +334 130 4 891545318 +5 233 4 875729064 +629 425 3 880117163 +312 189 5 891698516 +865 501 1 880235060 +854 762 2 882812905 +534 685 3 877807653 +864 197 4 888888282 +724 1591 1 883757468 +880 825 4 880167288 +407 568 2 876338730 +921 304 2 879379428 +395 748 3 883762577 +694 435 4 875728639 +667 694 4 891034730 +363 153 3 891495169 +839 117 5 875752169 +412 431 4 879717549 +707 13 4 880059957 +843 616 3 879449256 +276 269 4 885871420 +487 22 5 883445495 +881 58 3 876538796 +637 235 1 882904233 +564 281 3 888730658 +70 739 2 884150753 +917 246 4 882910971 +849 421 5 879695588 +894 754 4 880993317 +244 65 4 880605766 +684 381 2 878762033 +889 484 4 880178313 +610 607 5 888703157 +271 216 5 885848672 +860 302 4 876074139 +90 276 4 891384476 +329 657 3 891656391 +747 95 3 888639318 +927 72 5 879193848 +921 328 5 879379338 +675 244 3 889489775 +883 24 4 891692657 +840 14 5 891203250 +828 86 3 891037047 +896 554 2 887161199 +913 742 3 881036957 +796 28 3 892662523 +620 742 5 889987792 +476 201 4 883364324 +892 222 4 886608094 +597 742 4 875341603 +788 984 3 880867855 +666 516 5 880139348 +707 1021 3 886287079 +715 268 4 875961674 +92 147 2 875640542 +788 151 1 880869908 +825 740 2 880756320 +311 81 3 884365451 +880 781 3 880174961 +616 307 2 891224448 +818 303 5 891870222 +864 755 4 888892128 +829 310 3 890956632 +617 446 2 883789590 +263 378 5 891299630 +896 154 3 887159212 +682 128 4 888522575 +802 219 5 875985767 +405 1545 2 885546201 +722 310 4 891279945 +866 900 4 891221165 +326 648 5 879875644 +886 201 3 876031695 +903 129 3 891031144 +605 135 5 879424369 +577 823 3 880471304 +538 182 4 877107408 +897 88 4 879991283 +883 257 5 891914605 +474 143 4 887926573 +389 482 5 880086777 +380 234 2 885478447 +862 59 5 879305204 +639 694 5 891239492 +321 133 5 879440612 +615 1065 4 879448567 +234 984 2 891033966 +838 204 4 887066040 +854 606 4 882813691 +125 1037 2 892839143 +429 42 5 882385593 +327 466 3 887820171 +843 158 2 879449336 +621 418 3 874965298 +630 820 4 885667391 +934 237 4 891189879 +943 68 4 888639500 +642 369 2 885606090 +267 210 4 878972434 +460 288 2 882910678 +773 675 5 888540279 +500 174 2 883873505 +330 64 5 876546409 +913 613 5 881725796 +764 151 4 876242912 +863 876 2 889289457 +671 511 3 884035406 +382 151 4 875946830 +727 384 2 883712804 +788 176 5 880868743 +178 295 3 882824055 +935 815 4 884472576 +747 466 3 888640136 +345 393 3 884993485 +345 678 2 884901497 +843 690 5 879442947 +843 144 3 879444711 +911 186 5 892839929 +541 812 3 883874872 +940 746 3 885921669 +871 662 3 888193541 +863 259 1 889289240 +933 710 2 874938309 +403 760 1 879790343 +465 868 2 883532119 +755 323 4 882570077 +883 316 5 891692168 +774 180 5 888556634 +538 208 3 877107085 +39 288 5 891400704 +927 623 3 879199110 +606 230 2 880926084 +716 468 3 879796596 +868 640 5 877103371 +916 417 2 880845949 +21 264 3 874950972 +940 316 4 889480582 +796 204 5 892662441 +880 780 3 880175157 +535 180 4 879618655 +548 750 4 891042353 +864 660 4 888889510 +882 841 1 879863909 +689 117 4 876676293 +758 737 3 881978864 +468 286 4 875279126 +374 1194 4 880396292 +653 199 4 880150239 +943 1028 2 875502096 +472 22 5 892790953 +452 515 4 875261747 +716 1113 4 879797443 +222 431 4 881059461 +892 401 3 886609264 +724 242 1 883758268 +802 184 4 875986155 +891 107 5 883490041 +815 1299 3 878697015 +610 516 3 888703710 +279 388 3 875659844 +92 631 4 875658112 +846 955 3 883948720 +293 176 4 888906536 +790 1215 1 884462737 +854 173 4 882813537 +624 298 4 879792378 +938 471 3 891356413 +417 823 2 879646860 +939 127 5 880260745 +887 755 5 881381425 +837 328 4 875721604 +925 773 1 884717862 +678 117 4 879544989 +700 48 4 884494215 +880 1215 1 880167599 +846 61 3 883947911 +815 227 2 878695147 +205 294 3 888284402 +201 217 3 884112627 +320 470 5 884751263 +903 582 3 891033564 +823 79 4 878439038 +653 63 2 880153077 +900 31 2 877833995 +707 197 4 886287130 +863 331 4 889289278 +593 283 4 875659665 +870 1230 2 879901998 +807 298 4 893083851 +796 339 2 892874859 +236 595 3 890117267 +881 8 4 876537457 +843 440 1 879443544 +13 362 4 890704999 +919 237 4 875288805 +885 523 3 885713357 +919 715 5 875921442 +497 774 4 879362407 +716 435 4 879795071 +747 604 5 888638913 +883 732 3 891694340 +293 237 3 888904696 +875 603 4 876465111 +885 225 3 885716242 +848 661 3 887040302 +694 427 4 875727226 +694 482 5 875728435 +762 332 1 878718996 +742 294 3 881005590 +654 596 3 887863802 +867 203 4 880078484 +889 686 3 880180612 +417 151 5 879646463 +734 465 4 891022734 +659 506 3 891385379 +815 9 4 878691739 +725 881 5 876106729 +417 537 4 880949849 +867 31 5 880078656 +327 121 2 887822530 +663 328 4 889491861 +387 367 3 886482883 +650 357 4 891372286 +831 237 4 891355004 +295 232 3 879518900 +847 125 3 878774969 +110 1228 3 886988689 +707 863 4 886286662 +715 480 5 875963387 +342 182 5 875319173 +591 1120 4 891039637 +256 989 5 882150192 +504 504 4 887909890 +631 288 3 888464916 +782 536 2 891500150 +611 272 5 891636098 +860 508 4 885991076 +796 318 4 892661988 +760 300 1 875665867 +627 576 3 879531504 +749 174 5 878847209 +657 117 4 884240629 +13 798 2 882397974 +896 237 5 887158714 +812 873 4 877625537 +922 1110 4 891450768 +921 66 5 884673700 +556 302 4 882135437 +916 76 3 880845049 +694 205 5 875726968 +216 47 4 880244870 +886 48 4 876031526 +821 111 4 874793049 +606 255 5 887061723 +788 649 3 880869649 +868 1285 2 877109926 +900 744 2 877833195 +776 1219 3 891628837 +391 696 4 877400117 +758 131 3 881975243 +868 451 2 877112063 +660 358 2 891197796 +588 66 3 890023646 +897 1051 3 879993772 +886 268 5 876031109 +431 332 3 877844377 +445 56 5 891200869 +738 258 4 875348442 +830 554 5 891561999 +877 88 4 882677967 +804 597 3 879444011 +907 1040 5 880159496 +389 430 5 880087003 +642 419 4 885603537 +757 827 3 888466758 +752 348 4 891208213 +833 1428 3 875123494 +927 257 5 879177353 +679 527 4 884486985 +606 8 2 880923579 +881 216 4 876538922 +634 294 4 876170101 +363 116 4 891495595 +152 319 2 890322385 +892 612 5 886609551 +705 755 5 883427691 +721 729 3 877141222 +347 147 4 881652710 +716 498 5 879795122 +707 106 3 886288189 +892 739 4 886609469 +551 264 3 892775970 +450 724 5 882395537 +885 69 4 885714201 +933 157 4 874854932 +697 287 4 882622170 +717 815 3 884642817 +752 909 3 891208036 +530 220 5 886628953 +870 640 3 886883147 +901 82 5 877131624 +828 207 4 891036492 +427 331 4 879700850 +870 684 3 879714246 +352 174 5 884289760 +807 1078 4 892979639 +540 405 3 882157612 +178 133 4 885784518 +533 227 4 879191563 +453 272 5 887941892 +847 1167 5 878939645 +616 362 3 891224517 +883 318 4 891717936 +802 769 5 875985976 +619 161 4 885954133 +84 408 5 883450553 +542 1 4 886532534 +881 188 4 876538665 +685 872 2 879447443 +406 631 5 882461650 +174 934 4 886434421 +840 473 5 891203408 +181 120 1 878963204 +881 414 5 876537752 +593 685 3 875660081 +308 525 5 887738847 +776 667 2 892920480 +843 179 4 879446774 +484 233 5 891195444 +452 516 3 888324014 +925 327 3 884717790 +492 153 4 879969454 +194 790 1 879535549 +916 709 3 880844123 +851 984 3 874809850 +898 334 3 888294739 +269 710 1 891449843 +843 175 4 879446911 +227 287 4 879035704 +279 451 1 888465592 +679 109 3 884488283 +795 12 4 881260621 +943 76 4 888639523 +653 755 2 880153077 +851 231 4 875807019 +500 289 4 883864818 +874 346 3 888632147 +709 231 3 879848646 +934 156 3 891190813 +846 665 4 883950434 +159 254 3 884026738 +913 518 4 881725761 +916 790 2 880845790 +846 699 3 883947960 +887 655 1 881379609 +314 8 4 877888059 +807 503 3 892530004 +896 139 2 887161033 +611 305 4 891636192 +916 433 3 880844958 +114 135 4 881260611 +655 1112 2 887475641 +846 474 5 883947960 +276 200 5 874792663 +76 806 4 882606471 +342 137 2 874984455 +747 320 5 888732899 +761 457 1 876189950 +144 527 5 888105665 +342 246 4 874984480 +936 827 2 886833191 +486 325 2 879874296 +600 578 2 888451839 +694 495 4 875727018 +536 28 5 882359678 +616 937 4 891224919 +867 483 5 880078372 +471 172 4 889827822 +907 869 5 880160123 +536 197 3 882359567 +774 385 1 888557329 +934 501 4 891196464 +942 1204 4 891283209 +798 254 5 875637836 +748 209 4 879454728 +928 1025 5 880936022 +802 98 4 875985601 +569 277 2 879794385 +911 482 4 892838864 +543 153 3 874863035 +758 502 4 881978864 +615 269 4 879447500 +63 257 3 875747342 +726 409 3 890087998 +592 249 4 882608795 +537 633 3 886031342 +716 735 5 879795644 +936 405 2 886833053 +457 660 5 882396449 +294 334 4 877818861 +798 1032 3 875639212 +918 707 5 891987446 +680 50 5 876816310 +890 447 3 882404541 +379 403 4 880525598 +881 1089 1 876537011 +896 204 4 887157947 +608 690 4 880402527 +733 1011 4 879535644 +698 127 4 886366101 +210 651 4 887736140 +178 232 5 882827162 +897 443 5 879991666 +908 525 4 879722300 +758 1135 2 881980034 +916 181 4 880843401 +572 286 4 879449179 +486 1016 2 879874970 +260 307 3 890618295 +796 514 3 892676231 +790 70 3 885157776 +881 1028 3 876537056 +699 985 3 879147814 +450 457 2 882466909 +758 11 3 881975289 +622 229 2 882592850 +930 107 3 879535207 +761 1152 2 876190623 +804 742 4 879442732 +655 674 3 887523427 +269 371 5 891450880 +903 523 5 891033606 +479 335 3 879459752 +648 684 4 884882702 +650 323 3 891369285 +551 82 5 892783525 +698 613 5 886366770 +385 251 2 879440098 +892 422 1 886610996 +567 199 4 882425820 +924 562 3 886759657 +896 591 3 887160702 +688 877 5 884153751 +73 129 4 888625907 +930 871 3 879535138 +892 274 4 886610451 +916 72 3 880845808 +763 60 5 878914968 +833 134 5 875038987 +776 95 4 892210688 +919 25 4 875289113 +670 519 5 877974604 +913 184 3 880826706 +378 932 2 880056930 +711 218 4 879994852 +658 24 3 875145493 +436 144 5 887769444 +916 96 3 880844813 +864 715 4 888891238 +943 122 1 875502576 +741 226 2 891455711 +492 651 3 879969814 +930 300 4 879535392 +871 352 3 888192971 +246 111 3 884921861 +765 847 4 880346466 +454 302 4 881958326 +852 1 4 891036457 +327 24 2 887745934 +186 331 3 889817888 +840 202 5 891204322 +918 1137 5 891986999 +909 261 5 891919599 +605 1 4 879365748 +869 276 4 884491082 +399 1 4 882340657 +844 432 5 877388183 +707 1061 3 880060118 +932 1021 4 891249146 +650 579 3 891370182 +363 180 3 891494754 +932 516 5 891249877 +766 191 4 891310067 +28 196 4 881956081 +655 607 4 887523427 +123 134 4 879872275 +82 118 3 878768510 +892 768 4 886609977 +184 837 3 889908630 +99 294 4 885678453 +826 271 4 885690022 +374 818 3 880394301 +834 751 3 890860298 +442 69 3 883390935 +583 483 5 879384338 +757 323 3 888443483 +894 879 4 879896141 +632 73 3 879459649 +833 1210 1 879818799 +865 1047 1 880144265 +458 79 5 886396192 +1 3 4 878542960 +303 284 4 879467465 +854 514 4 882813537 +246 164 3 884921613 +880 41 1 880175239 +829 129 4 881712252 +936 273 3 886832453 +106 9 4 883876572 +880 174 4 880167670 +864 732 4 888888067 +878 514 4 880870854 +707 718 5 880059876 +454 95 2 888266433 +592 877 2 882607647 +625 95 3 891953755 +932 141 4 891250363 +896 203 5 887158713 +804 573 3 879445232 +695 264 1 888806222 +890 265 2 882405059 +659 502 4 891385438 +655 30 5 888474646 +465 845 4 883530743 +878 529 5 880870854 +87 152 4 879876564 +466 909 5 890284231 +632 54 3 879459304 +930 45 4 879535492 +937 258 4 876762200 +796 769 4 893218622 +896 23 2 887159145 +429 685 3 882387434 +782 888 3 891498919 +932 659 5 891250770 +905 273 3 884984148 +347 186 5 881653912 +396 271 4 884645790 +805 636 4 881694978 +885 417 3 885716369 +533 111 4 879192474 +782 1388 3 891500028 +269 806 3 891448019 +381 1060 5 892697677 +747 286 4 888638335 +308 824 3 887742013 +788 186 3 880868559 +307 109 5 879283787 +496 416 1 876067754 +585 275 4 891283124 +848 170 5 887039271 +833 192 5 875038529 +904 781 4 879735678 +663 521 3 889493467 +595 979 3 886921847 +429 173 4 882384494 +328 237 4 885047373 +883 289 5 891692168 +655 295 3 887425530 +771 286 2 880659235 +889 13 4 880177179 +930 175 2 879535713 +721 301 4 877136358 +919 832 3 875289726 +907 1221 5 880160080 +892 81 3 886608473 +5 200 2 875720717 +728 243 2 879442892 +473 475 5 878157299 +110 651 4 886988018 +896 582 2 887160040 +877 164 5 882678547 +655 113 3 891585477 +766 972 3 891310907 +867 1039 5 880078677 +554 728 3 876369995 +878 318 5 880866013 +294 1 5 877819634 +653 471 2 884405560 +934 172 5 891191206 +650 73 3 891387542 +553 1194 5 879948995 +685 333 1 879451147 +760 237 3 875666179 +804 520 4 879445904 +891 742 4 891639497 +881 187 4 876539091 +776 670 3 892920351 +734 724 3 891022684 +159 1152 4 880557464 +697 1025 2 882621523 +862 496 5 879304902 +721 64 4 877139301 +922 747 3 891448247 +886 234 3 876031932 +827 316 3 892157262 +815 1157 2 884267828 +458 338 3 889323660 +915 315 4 891029965 +90 60 4 891385039 +618 487 4 891309886 +94 338 4 891725030 +922 294 4 891447296 +826 265 5 885690526 +43 580 3 883956417 +697 126 5 882622581 +730 535 2 880310506 +59 946 1 888206445 +642 245 4 891317923 +469 607 5 879524117 +921 380 4 879381051 +371 66 4 877487213 +657 744 4 884239566 +664 228 4 876526462 +943 485 5 888639523 +601 260 4 876346633 +540 1011 4 882157509 +936 117 4 886832713 +727 135 2 883711069 +805 998 4 881705327 +535 693 3 879619107 +620 596 2 889987954 +747 498 5 888639318 +478 708 3 889397239 +896 1231 1 887160880 +646 1176 4 888528955 +363 256 3 891499542 +932 188 3 891250142 +896 85 3 887160427 +211 117 4 879461498 +932 196 4 891251038 +889 562 3 880181911 +593 49 3 875671891 +328 327 3 885044566 +937 408 5 876769323 +91 474 3 891438947 +843 561 4 879443482 +889 87 4 880178367 +746 597 4 885075304 +83 151 3 880306745 +758 746 4 881976746 +922 22 5 891450586 +645 955 4 892054989 +919 222 3 875288983 +350 603 5 882345975 +943 756 2 875502146 +916 636 3 880845391 +537 950 3 886030347 +875 56 5 876466687 +901 91 1 877131817 +591 66 2 891031526 +835 234 5 891033857 +861 740 4 881274760 +820 333 5 887954878 +789 591 3 880332259 +49 789 4 888068033 +670 222 4 877974857 +704 98 5 891397305 +663 300 4 889491655 +886 127 4 876032472 +693 186 2 875484882 +303 631 4 879483617 +517 748 4 892660728 +764 25 2 876243015 +907 689 4 885860672 +940 168 3 885921597 +913 69 2 880757553 +167 86 4 892738212 +773 730 3 888538852 +881 412 1 876536523 +888 274 4 879365497 +454 327 3 881958428 +887 9 2 881378118 +928 266 5 880936022 +625 654 3 891262837 +747 479 5 888732719 +823 89 5 878438780 +393 1409 4 889729536 +763 135 5 878918332 +167 137 5 892738081 +843 172 3 879444711 +595 871 2 886921945 +862 174 5 879304721 +586 53 5 884061084 +41 969 4 890687438 +798 174 4 875743140 +347 546 4 881653059 +315 673 4 879821267 +860 516 3 885991040 +13 837 4 882139717 +711 403 4 879994513 +693 632 5 875482626 +927 417 4 879184710 +894 1023 3 879896898 +931 252 3 891037070 +707 57 4 886287310 +506 1063 5 888848303 +667 487 5 891035084 +887 125 5 881377933 +894 295 3 879896704 +389 274 4 880088421 +751 332 3 887134842 +314 144 3 877889275 +405 372 1 885547313 +716 650 3 879796278 +553 50 4 879948732 +837 284 1 875722104 +773 93 3 888539366 +864 118 4 888888994 +268 456 2 875743012 +617 611 4 883789386 +795 716 3 880569984 +936 1241 4 886832808 +301 226 5 882077222 +913 268 2 880753802 +899 111 4 884120105 +809 1025 1 891037205 +446 338 2 879786943 +535 197 5 879618288 +632 228 3 879457157 +654 83 5 887864680 +49 99 4 888067031 +442 1074 3 883389053 +741 367 2 891457280 +457 294 2 882393514 +608 59 5 880403856 +867 51 3 880079142 +839 100 3 875751991 +650 206 4 891371186 +880 1181 3 880242781 +522 168 5 876960956 +41 173 4 890687549 +878 88 4 880869418 +92 212 4 875656086 +870 95 4 875050559 +493 974 3 884132914 +533 117 5 879192901 +805 4 2 881694798 +852 122 1 891037738 +881 140 2 876538098 +806 856 5 882387644 +178 69 5 882826437 +592 975 4 882608873 +918 25 4 891988123 +694 100 4 875727640 +924 701 4 885457922 +749 748 3 878846384 +264 234 4 886122261 +831 144 5 891354815 +899 663 4 884122719 +885 143 4 885716344 +521 127 4 885253352 +825 1254 1 880756678 +624 235 4 879793156 +92 260 1 890463551 +714 1014 3 892777694 +643 55 4 891448218 +773 7 2 888539992 +301 288 4 882074291 +179 271 1 892151565 +354 292 4 891180489 +851 92 5 875806791 +608 288 5 880402982 +548 291 5 891415677 +896 468 2 887158866 +782 877 3 891498213 +618 723 3 891309514 +747 582 5 888639362 +804 982 4 879444048 +633 97 3 877211083 +570 358 2 881262582 +941 257 4 875048952 +224 544 1 888103812 +293 1264 3 888905582 +916 697 4 880844937 +573 654 4 885844535 +745 14 3 880122863 +204 269 4 892388976 +642 1133 3 886569295 +805 452 3 881695445 +416 1152 4 876697105 +896 234 4 887157925 +758 181 4 880672747 +311 436 3 884366269 +931 909 5 891037521 +678 1129 1 879544915 +325 71 3 891478981 +498 251 3 881954219 +327 268 4 887737629 +44 318 5 878347340 +504 503 4 887837958 +601 365 3 876350812 +806 1010 3 882385806 +655 553 2 887431019 +416 278 3 876698280 +259 748 4 883371839 +852 827 2 891036866 +82 483 5 878769888 +790 546 1 884461590 +887 476 1 881379059 +752 333 3 891207791 +393 310 4 887742040 +826 39 4 885690600 +670 245 4 877974070 +904 288 4 879735109 +653 407 1 878867398 +937 286 4 876762200 +919 98 5 875373470 +234 165 5 892079040 +738 951 2 875351906 +224 402 5 888103872 +267 188 5 878971745 +896 746 3 887159658 +936 1190 3 886833707 +545 142 3 884135088 +450 259 3 887834953 +881 209 3 876537718 +807 142 3 892530752 +766 518 3 891309878 +864 174 5 888887354 +883 463 3 891693058 +518 240 1 876824079 +676 326 2 892685592 +868 843 1 877109748 +731 28 4 886182826 +807 102 4 892979501 +791 306 5 879447977 +267 135 5 878972463 +866 344 2 891221165 +866 347 4 891221165 +690 993 3 881178697 +868 426 4 877103935 +577 318 5 880472055 +770 294 3 875971655 +825 291 5 880756603 +158 514 3 880135093 +59 116 4 888203018 +831 479 4 891354726 +586 241 4 884061623 +65 66 3 879217972 +840 215 4 891209285 +807 1409 4 892978256 +749 326 4 878846365 +500 249 3 887720111 +689 237 3 876676293 +747 64 5 888639642 +864 655 4 888887128 +475 327 4 891451149 +679 100 3 884487089 +846 174 5 883947737 +863 344 4 889289456 +836 210 4 885754058 +829 1120 2 881707829 +521 210 3 884478119 +683 347 4 893286208 +780 498 5 891363756 +484 4 4 891195154 +921 196 5 884673724 +779 304 3 875501254 +934 135 4 891191659 +102 792 3 892992297 +846 234 5 883948495 +847 1400 5 878940830 +898 539 3 888294441 +695 328 3 888806056 +715 549 3 875964519 +919 245 2 875288253 +664 237 2 876525002 +823 101 3 878438807 +936 325 5 886831709 +840 204 4 891205245 +775 245 3 891032989 +715 31 4 875963692 +897 323 4 879988868 +200 934 2 884127370 +934 65 4 891192914 +502 328 4 883701980 +896 11 2 887158333 +707 185 3 886286032 +504 505 4 887837957 +653 69 4 878854284 +886 544 4 876031850 +880 200 4 880241355 +312 1050 5 891698832 +933 1228 1 874939247 +648 164 4 884883424 +790 4 3 885156773 +128 117 5 879967631 +670 195 4 877974787 +831 301 2 891354275 +716 228 4 879794870 +804 55 4 879442141 +940 286 3 884800898 +709 5 4 879848167 +932 30 4 891249196 +643 492 4 891448586 +648 386 4 884882192 +7 12 5 892135346 +916 118 2 880843838 +301 80 3 882078883 +547 294 1 891282757 +450 44 3 882376658 +21 330 4 874951040 +891 1040 3 883489783 +474 485 4 887926804 +735 331 3 876698022 +650 132 4 891372365 +453 202 4 877553999 +655 304 2 888475101 +940 294 4 884801316 +721 162 2 877147503 +395 21 3 883764534 +872 300 5 888478766 +449 106 3 879958936 +727 1049 1 883709711 +168 181 4 884287298 +181 1276 1 878962586 +109 1135 4 880582976 +836 690 3 885753435 +622 24 4 882590367 +923 264 3 880387199 +551 765 1 892785194 +863 1395 4 889289491 +483 68 1 878953693 +919 284 3 875289280 +633 871 3 875326698 +885 756 2 885713101 +374 1059 2 883627906 +881 193 5 876538131 +863 885 1 889289456 +291 943 4 874834735 +864 433 3 888887703 +334 882 3 891544135 +663 315 4 889491560 +719 215 4 879360781 +476 940 3 883365336 +593 1014 1 875659755 +181 107 1 878963343 +603 50 5 891955922 +680 137 4 876816310 +802 879 5 875984938 +682 895 4 888518380 +608 168 1 880403810 +600 566 3 888451908 +145 827 2 888398238 +901 378 5 877131654 +881 64 5 876537933 +940 69 2 885921265 +354 45 5 891218046 +885 625 3 885714858 +885 1061 2 885713138 +717 147 4 884642297 +412 169 4 879717038 +894 248 4 879896836 +588 67 1 890032343 +846 602 4 883949255 +407 162 4 876339101 +551 218 5 892783212 +823 206 4 878439089 +804 69 4 879444890 +702 289 2 885767604 +668 993 4 881591257 +749 393 5 878849903 +815 523 4 878693462 +677 288 5 885191166 +838 713 4 887064193 +326 493 5 879874825 +528 422 2 886813066 +931 286 5 891037521 +761 125 4 876190798 +521 125 3 884476020 +660 747 4 891200639 +91 333 5 891438106 +715 195 4 875963657 +537 200 3 886031473 +923 100 5 880387474 +639 280 3 891240868 +838 494 4 887066644 +889 257 4 880176845 +892 435 4 886609149 +346 566 5 874950766 +862 97 4 879305143 +798 265 5 875915777 +523 408 5 883700527 +796 988 3 893219180 +787 1671 1 888980193 +514 474 5 875462689 +387 731 1 886482969 +943 42 5 888639042 +504 973 4 887911444 +610 673 4 888704000 +21 321 3 874950972 +712 51 3 874957293 +601 475 4 876346890 +894 339 4 880415854 +504 735 5 887838510 +807 68 4 892705239 +406 671 5 879792863 +389 559 3 880088680 +847 98 4 878940067 +752 338 3 891208329 +297 751 4 885922463 +283 173 5 879298206 +770 936 5 875971902 +798 878 4 875295521 +905 873 3 884983396 +64 389 4 889739834 +526 127 4 885682426 +885 245 2 885712224 +829 458 3 891990881 +698 481 3 886367473 +927 738 3 879196762 +543 195 4 874863155 +504 200 4 887838450 +709 182 4 879846741 +922 99 4 891448580 +554 50 4 876550778 +880 282 2 880166966 +234 176 3 892079190 +870 1 5 889717102 +112 690 4 884992462 +724 269 4 883756996 +426 661 4 879444321 +893 759 3 874830137 +518 713 5 876823071 +109 1210 3 880582230 +537 689 1 886029239 +825 9 3 880755418 +795 746 3 881529904 +694 605 4 875727513 +202 96 4 879727059 +896 709 3 887158866 +292 472 3 881104760 +653 823 2 880153568 +919 895 4 885059623 +870 258 4 886883539 +659 191 5 891332293 +907 286 5 880158316 +749 71 4 878847576 +343 425 5 876406514 +868 946 1 877107189 +66 9 4 883601265 +840 1451 5 891205123 +881 208 3 876538098 +936 975 3 886832714 +848 443 5 887047921 +678 298 3 879544750 +213 195 5 878956156 +334 810 3 891549267 +320 56 5 884749227 +848 582 4 887046329 +802 669 1 875985840 +405 672 1 885548434 +695 748 1 888806270 +393 833 4 887744626 +518 237 4 876823804 +64 10 5 889739733 +870 178 4 875050559 +423 316 4 891394985 +870 474 4 875050559 +618 238 1 891308391 +615 435 5 879449089 +758 343 2 882055987 +76 293 4 879117673 +936 124 4 886832282 +870 50 3 875050865 +96 234 4 884403336 +398 79 4 875660535 +87 648 5 879876448 +790 1230 2 885158235 +62 509 4 879373568 +82 318 4 878769629 +916 762 3 880843579 +341 881 5 890757961 +556 133 5 882136396 +244 291 2 880604379 +710 210 4 882064283 +815 639 2 878696681 +18 15 4 880131054 +655 1176 4 888474934 +549 282 3 881672300 +919 740 3 875289113 +817 455 3 874815947 +788 572 3 880871891 +711 154 4 879992739 +639 193 3 891239177 +63 137 4 875747368 +891 274 5 883429853 +427 881 5 879701253 +913 317 4 881725876 +774 121 1 888558565 +405 35 2 885549095 +417 576 3 879649410 +303 7 4 879467514 +92 1194 4 875654432 +864 214 2 888890052 +868 61 5 877109435 +846 1439 2 883950463 +152 401 3 884018905 +881 9 3 876536198 +458 21 2 886395393 +486 292 4 879874388 +363 386 1 891498407 +11 399 3 891905279 +25 612 4 885852120 +445 249 2 891200447 +92 761 2 875907134 +907 294 4 880158502 +711 120 2 879992038 +467 1059 4 879532693 +128 507 4 879966685 +313 225 4 891030228 +311 739 4 884365823 +722 286 4 891280046 +384 258 4 891273683 +901 795 3 877131738 +867 652 5 880078745 +870 273 3 875051100 +415 684 3 879439610 +828 751 3 891034306 +899 258 5 884119973 +774 451 1 888556169 +537 960 3 886031540 +763 280 2 878915015 +524 514 5 884634938 +938 255 1 891356329 +478 178 4 889388562 +612 7 3 875324876 +592 286 5 882607356 +881 849 2 876539051 +883 648 4 891694249 +280 241 2 891700945 +905 294 3 884983556 +905 100 4 884983888 +450 722 5 882471524 +551 184 1 892777855 +932 613 4 891250363 +939 118 5 880261450 +727 43 3 883712123 +277 1 4 879544145 +592 269 4 882607286 +426 659 4 879442128 +863 329 2 889289157 +345 684 4 884992005 +902 246 1 879465073 +883 313 3 891692285 +566 135 5 881649389 +755 328 4 882569881 +939 298 5 880261184 +447 22 4 878856422 +715 761 3 875965009 +911 548 3 892841073 +250 276 4 878089436 +903 52 3 891466551 +254 163 2 886472023 +467 181 3 879532420 +497 33 4 879310730 +823 234 4 878438608 +326 196 4 879875822 +259 286 4 874724727 +894 236 4 880416177 +933 789 4 874853957 +174 87 5 886514089 +489 359 5 891362812 +756 95 3 874829258 +752 1265 3 891208126 +691 650 5 875543281 +942 315 4 891282355 +880 137 4 880166827 +897 470 4 879991493 +822 169 4 891037394 +627 237 4 879530346 +610 204 1 888703343 +637 285 3 882901356 +882 174 5 879864697 +892 90 2 886610078 +592 326 4 882607573 +275 188 2 880315243 +773 780 4 888539857 +815 83 4 878695311 +545 233 4 879899380 +897 699 4 879990973 +447 265 4 878856394 +851 823 3 875730532 +160 628 3 876767360 +870 1019 3 881001249 +916 318 4 880844175 +707 199 2 886285824 +276 237 5 874786756 +833 1019 5 875039039 +690 1 4 881179631 +822 751 3 891035141 +703 591 4 875243049 +848 88 4 887048260 +481 191 5 885828543 +624 1010 4 879793155 +342 428 5 875320334 +606 201 4 880927417 +598 286 5 886711452 +141 988 3 884584460 +551 153 3 892777310 +877 557 4 882677715 +380 199 3 885478845 +405 194 1 885547176 +864 609 3 888888861 +479 986 1 879460648 +653 1133 2 880153674 +881 1133 2 876539360 +311 511 4 884365202 +933 239 3 874938412 +924 196 4 886759657 +848 514 5 887043777 +923 685 4 880387396 +145 235 4 875270507 +625 855 4 891953479 +610 378 5 888703609 +550 1089 3 883425485 +572 301 4 879449243 +877 228 4 882678387 +618 468 3 891308665 +933 202 2 874854745 +937 304 4 876768813 +712 294 4 876251330 +904 1041 2 879735710 +896 160 3 887160247 +794 285 5 891035355 +930 174 3 879535513 +280 451 5 891701377 +881 864 3 876536198 +870 489 4 875050827 +562 357 1 879195125 +896 250 3 887235144 +94 71 4 891721642 +174 167 3 886514953 +684 408 5 875810796 +890 23 5 882403221 +899 717 1 884120967 +198 137 4 884205252 +936 258 3 886831374 +887 164 4 881380139 +655 574 2 887489222 +823 194 5 878439136 +870 1008 3 879377028 +389 553 2 880089015 +862 515 4 879302877 +587 916 3 892871610 +922 168 3 891450968 +383 286 5 891192186 +780 216 4 891363617 +891 100 5 891638433 +653 546 2 880153253 +861 26 3 881274936 +882 95 4 879877155 +453 144 4 877554443 +796 762 3 892676115 +943 318 3 888639093 +593 974 2 875660347 +336 949 4 877757952 +846 52 4 883949290 +724 302 3 883756996 +879 294 3 887760951 +881 185 5 876537418 +833 455 3 875297104 +883 1065 5 891717533 +417 134 4 879647196 +804 108 3 879443819 +827 748 4 882808465 +55 174 4 878176397 +860 865 4 885990862 +749 179 4 878848015 +896 1220 1 887161033 +756 251 4 875129238 +882 98 5 879865750 +639 283 4 891239913 +762 421 4 878719594 +615 475 4 879447919 +139 475 5 879538415 +660 159 1 891200817 +504 122 1 887832268 +829 408 4 891991300 +854 25 3 882813219 +846 657 5 883947590 +514 274 4 876067433 +566 56 4 881649828 +224 237 3 888082742 +836 42 3 885754266 +786 179 4 882843500 +751 497 4 889134393 +878 236 2 880865470 +524 663 2 884635358 +774 235 1 888558806 +776 109 4 892210576 +766 527 5 891309558 +450 47 3 882394180 +276 1199 4 888873674 +919 276 5 875288612 +543 324 3 890723992 +94 367 4 891723328 +764 864 4 876243232 +63 283 4 875747401 +896 651 4 887158958 +804 529 4 879441913 +643 603 5 891447459 +897 1028 4 879993621 +114 224 3 881259839 +821 284 3 874792521 +907 88 5 881030348 +683 245 2 893283728 +94 1219 4 891722306 +938 676 3 891356428 +301 820 3 882075082 +756 419 3 874830513 +500 170 5 883874446 +916 219 3 880845755 +116 1244 2 876453191 +938 127 5 891356446 +757 254 2 888445172 +758 292 4 880672402 +874 357 5 888633311 +666 974 4 880313929 +807 89 4 892528470 +94 233 3 891722934 +809 340 4 891036744 +932 650 5 891250498 +660 428 4 891200594 +883 211 5 891694249 +916 173 4 880844332 +625 479 4 891262983 +803 261 1 880054754 +848 431 5 887038528 +493 881 1 884130009 +864 188 3 888887172 +560 271 4 879975194 +670 474 3 877975070 +880 56 5 880167731 +828 896 4 891379760 +896 705 5 887158768 +37 472 2 880915711 +933 238 2 874853819 +722 130 4 891281679 +886 128 4 876031551 +756 30 4 874827283 +804 50 4 879440912 +312 169 5 891698893 +144 962 4 888105612 +76 919 3 875027945 +586 679 3 884062742 +625 200 3 892000686 +184 509 4 889908694 +843 181 3 879444670 +788 289 4 880867565 +682 76 3 888517049 +611 886 4 891636399 +561 701 3 885807930 +284 877 2 885329395 +894 300 4 879896466 +570 268 3 881262404 +608 611 3 880403537 +653 686 2 878854247 +756 501 3 874829296 +104 310 2 888442275 +399 54 4 882343126 +830 751 2 891464054 +232 744 3 880062645 +62 116 3 879372480 +851 302 5 888540054 +651 515 5 879348966 +456 150 4 881371453 +828 303 4 891033574 +936 269 4 886831415 +194 604 3 879546498 +632 69 4 879457371 +804 154 3 879441598 +848 462 5 887038634 +829 257 4 881699584 +868 506 4 877104879 +435 778 4 884131844 +932 494 4 891250060 +562 511 2 879195819 +543 462 4 874864182 +711 71 3 879994581 +561 739 2 885810271 +774 232 2 888556121 +312 836 5 891698921 +773 1529 5 888539120 +405 724 1 885546530 +933 87 4 874854723 +491 408 5 891185298 +896 54 2 887160606 +793 1014 3 875103810 +629 632 3 880117031 +790 241 5 885156825 +650 597 3 891381818 +798 736 5 875639010 +681 750 5 885409438 +442 313 3 883387916 +804 379 3 879445465 +504 214 4 887840764 +931 316 5 891037521 +608 294 3 880402450 +680 7 5 876816310 +303 290 4 879483941 +882 227 4 879879868 +916 1098 4 880844862 +560 302 5 879975087 +851 22 5 875731330 +880 423 5 880175690 +40 346 2 889041358 +48 302 4 879434954 +279 87 1 875306613 +881 1215 1 879052376 +262 655 4 879793938 +833 164 2 879818575 +803 300 3 880054629 +878 418 3 880870130 +592 1059 3 882608457 +813 307 4 883752265 +846 1206 3 883948989 +373 471 3 877100458 +936 248 4 886833006 +846 203 5 883948606 +468 955 4 875288504 +924 31 3 885458168 +450 616 4 882373597 +904 553 3 879735710 +745 923 3 880123720 +654 302 5 887862964 +913 9 5 881725816 +302 333 3 879436785 +429 121 3 882386145 +937 847 4 876769213 +723 89 3 880498996 +394 77 3 880888603 +790 269 3 892305174 +820 324 3 887955020 +500 423 3 883875388 +835 176 4 891035309 +682 158 2 888522260 +234 503 2 892333653 +292 789 4 881105701 +894 293 4 881625708 +668 302 5 881523612 +130 681 3 875801315 +601 100 4 876346757 +815 629 4 878695527 +798 63 5 875914939 +87 194 5 879876403 +474 630 3 887928793 +521 421 4 885254070 +927 1014 3 879176876 +563 321 5 880506197 +295 11 4 879517062 +749 498 4 878847926 +10 525 5 877892210 +462 181 4 886365443 +864 109 5 888888994 +916 480 4 880844201 +427 322 3 879701051 +721 631 5 877147260 +453 151 3 877552970 +890 127 5 882402949 +881 1177 1 876539418 +870 188 5 875050672 +764 595 4 876243703 +796 1163 3 892660364 +468 432 5 875287826 +64 172 4 889739091 +724 1432 1 883758208 +830 193 5 891898415 +916 528 3 880846339 +363 705 2 891495371 +926 258 4 888636202 +761 1012 1 876190417 +497 91 2 879309993 +916 631 4 880844654 +880 121 2 880167030 +782 751 2 891498323 +908 419 4 879722875 +927 395 3 879193732 +883 183 5 891696895 +796 143 5 893218728 +169 525 3 891359250 +497 569 2 879362359 +749 273 4 878848243 +429 1074 3 882387163 +882 1412 3 879867368 +367 876 3 876689418 +842 328 2 891218192 +336 407 1 877757373 +755 688 3 882570077 +787 328 3 888979874 +833 806 4 875122675 +825 127 3 880755612 +286 906 5 884069544 +664 705 4 878092802 +777 522 5 875980669 +610 423 4 888703710 +936 476 4 886832544 +894 26 4 882404460 +901 63 5 877131307 +541 678 5 883864160 +663 265 4 889493691 +603 273 1 891956124 +823 427 4 878439038 +846 288 4 883946837 +655 157 3 887611445 +313 229 3 891028241 +864 1112 2 888891097 +313 582 2 891016622 +893 161 5 874830122 +940 47 3 885921758 +864 95 5 888887045 +864 939 4 888890102 +173 881 3 877557168 +680 143 4 876816224 +938 25 4 891356532 +268 29 1 875744356 +943 64 5 875409939 +819 345 4 884618137 +276 332 4 877933879 +768 9 5 883835026 +536 1030 3 882364170 +796 849 4 893048562 +937 255 3 876769323 +805 1119 3 881696759 +87 1118 3 879877007 +184 629 3 889911162 +389 663 4 880087026 +456 56 5 881373353 +716 154 5 879795867 +864 546 4 888892015 +529 991 1 882535639 +937 124 4 876769212 +484 732 5 891194864 +463 740 4 877385922 +869 815 1 884491966 +823 141 4 878438484 +527 175 3 879456132 +877 307 3 882676190 +361 155 3 879441008 +344 463 4 884901210 +715 56 5 875963387 +497 239 4 879362835 +749 196 4 878848302 +833 742 3 875036468 +680 294 4 876816043 +805 724 2 881696699 +840 656 4 891205041 +689 181 5 876674861 +312 124 3 891698726 +902 307 3 879463582 +313 576 3 891028472 +423 100 5 891395448 +682 161 3 888522542 +796 172 4 892663090 +870 13 4 876319137 +328 50 4 885045702 +891 409 4 883490041 +880 357 5 880175622 +930 705 2 879535609 +601 934 1 876348285 +93 934 3 888705988 +725 288 3 876103725 +828 355 2 891035437 +698 28 2 886366916 +773 50 5 888539993 +531 1316 4 887049214 +37 226 5 880916010 +381 520 5 892696757 +916 715 4 880845099 +593 468 3 886193438 +814 444 2 885411347 +566 168 4 881650003 +347 237 4 881652629 +793 628 3 875103942 +627 79 3 879531158 +618 418 3 891308260 +537 1 2 886029889 +363 1478 1 891498469 +336 1118 4 877758055 +749 292 4 878846384 +525 742 3 881085843 +745 168 3 880123671 +907 1284 5 881030348 +527 23 5 879456611 +666 696 3 880313811 +565 207 4 891037393 +854 260 3 882812030 +864 993 4 878179411 +647 82 4 876533912 +532 761 4 874787387 +598 748 4 886711034 +883 269 3 891691436 +834 15 4 890863052 +458 276 5 886394470 +872 405 4 888479151 +936 259 3 886831709 +919 307 4 885059506 +902 228 3 879465834 +804 554 2 879447476 +786 208 5 882843150 +896 1351 2 887160399 +847 742 3 878774969 +854 153 4 882813990 +886 1067 5 876032509 +125 66 5 879455184 +902 423 4 879465765 +708 1054 3 877326158 +551 219 5 892784479 +214 896 4 892668197 +601 1039 4 876350185 +443 307 3 883504564 +653 54 3 880152523 +872 974 4 888479701 +919 367 4 875921085 +748 421 4 879454630 +561 24 3 885807776 +891 1278 5 883489709 +312 459 4 891698365 +450 91 4 887660763 +535 466 3 879618385 +655 695 3 891585242 +881 240 1 879052141 +792 237 3 877910444 +863 307 5 889289157 +297 100 5 874954183 +470 874 3 879189137 +653 38 3 880152955 +851 751 4 883148669 +615 262 4 879447556 +892 951 4 886610649 +806 419 5 882388706 +30 135 5 885941156 +407 234 3 875042268 +686 427 5 879546319 +564 302 3 888718415 +927 401 2 879196762 +863 310 5 889288943 +824 245 2 877021121 +654 1014 3 887863981 +841 689 5 889067253 +657 340 4 884237291 +406 1073 3 882480671 +489 984 5 891362904 +391 291 3 877400062 +826 1231 3 885690854 +778 154 5 890670560 +868 556 3 877110060 +804 685 4 879443946 +883 153 5 891723290 +792 118 2 877910538 +405 1488 1 885546680 +773 809 1 888540186 +763 527 3 878915692 +708 112 1 877325934 +535 919 4 879618207 +805 8 3 881704063 +328 810 3 885049535 +837 222 3 875721793 +253 200 4 891628392 +216 1067 5 881432392 +724 329 4 883757670 +6 533 4 883599830 +867 1154 5 880078991 +694 202 4 875727189 +845 1234 4 885409719 +927 227 2 879196283 +886 799 1 876032973 +721 1025 3 877138200 +788 322 4 880867422 +267 68 4 878972931 +795 109 3 880557210 +618 939 2 891308791 +883 523 5 891694276 +804 429 4 879445037 +797 243 2 879439104 +942 258 4 891282438 +933 233 2 874939008 +921 222 5 879381128 +622 578 4 882670843 +11 365 3 891904764 +446 322 3 879787226 +839 127 5 875751723 +912 186 3 875966202 +409 134 5 881106734 +566 790 3 881651464 +476 325 1 883365684 +804 79 4 879441627 +904 402 4 879735679 +677 455 5 889399470 +914 739 2 887124376 +927 625 3 879191360 +790 577 2 885158122 +892 195 5 886607710 +233 462 5 879147730 +535 132 5 879619035 +840 190 5 891211236 +790 1471 2 885158374 +757 125 2 888467666 +727 395 3 883713692 +919 261 3 885059658 +601 65 4 876350017 +886 721 5 876033460 +590 591 3 879439256 +880 210 4 880167670 +777 273 4 875979432 +847 47 2 878939700 +751 596 4 889133852 +921 1016 4 879379562 +717 289 4 884641911 +788 43 3 880870299 +535 268 3 879617199 +943 284 2 875502192 +521 257 3 884476035 +868 646 5 877109435 +933 195 4 874854589 +868 142 1 877109874 +265 294 4 875320052 +730 340 3 880309892 +840 23 5 891204827 +757 64 5 888445298 +871 310 3 888192858 +622 175 4 882669645 +293 223 4 888905990 +560 546 2 879976705 +804 307 4 879440600 +837 16 2 875721793 +588 584 3 890024677 +892 210 4 886608507 +798 482 3 875638884 +115 302 4 881169559 +896 742 1 887159464 +749 495 4 878847612 +749 1136 4 878847804 +901 73 5 877131416 +864 443 4 888890639 +401 216 4 891032803 +848 180 2 887038993 +130 144 5 875216717 +610 71 4 888703258 +889 480 5 880178019 +823 4 5 878438607 +767 1121 5 891462917 +660 118 2 891198479 +938 1047 3 891357107 +145 269 5 879161576 +700 202 3 884493899 +516 474 5 891290648 +486 405 4 879875040 +269 747 4 891449646 +838 1 5 887064024 +815 91 3 878696840 +708 276 2 877325905 +928 288 3 880935738 +470 222 3 879178711 +804 434 4 879442642 +429 1139 2 882387434 +233 135 4 877661881 +702 690 1 885767392 +917 100 4 882910830 +774 444 1 888557772 +749 428 3 878849534 +506 1020 4 874873067 +902 87 4 879465834 +661 515 5 876017294 +716 79 4 879794935 +596 328 5 883539103 +650 519 4 891381545 +864 282 3 888887469 +830 550 5 891561870 +797 720 2 879439735 +514 118 2 875463416 +624 312 4 891961343 +276 710 4 889174849 +653 356 1 880151734 +487 405 4 883443504 +406 432 5 879793081 +933 265 4 874854697 +368 844 3 889783453 +840 607 4 891204627 +709 250 4 879847626 +349 284 5 879466156 +104 121 2 888466002 +629 268 5 880116722 +405 382 1 885546336 +558 100 5 879436396 +899 742 4 884119830 +851 204 4 875731567 +362 347 5 885019261 +640 373 3 874778756 +406 1170 4 880131851 +343 258 5 876402390 +876 174 4 879428378 +662 268 5 880571005 +613 530 5 891227262 +899 566 3 884122535 +880 97 4 880175714 +326 507 2 879875873 +669 515 5 891517238 +936 995 3 886831637 +892 516 5 886608263 +892 155 2 886609435 +758 79 4 881976061 +708 281 4 877326014 +634 547 4 877979407 +621 276 4 880736723 +804 328 4 879440600 +758 1088 3 880672830 +553 507 3 879948831 +60 423 4 883326593 +589 304 5 883352599 +497 55 3 879310705 +259 168 5 876365003 +883 88 4 891696715 +100 885 2 891375359 +758 713 3 881977533 +519 895 4 883248222 +58 823 1 892242419 +790 268 4 884460878 +733 274 3 879536723 +836 286 3 885753435 +392 316 5 891037811 +577 1042 4 880475286 +804 152 4 879445466 +712 941 5 874730491 +175 136 4 877108051 +312 529 5 891699121 +624 411 4 879793269 +716 949 3 879796718 +916 30 4 880844463 +246 765 2 884924026 +535 179 4 879617489 +889 607 4 880179868 +569 274 4 879794740 +466 300 3 890282795 +717 121 2 884642762 +406 57 4 879446062 +710 156 4 882064524 +629 324 2 880116023 +711 98 5 879992994 +933 357 4 874853635 +643 780 4 891449442 +916 512 5 880844675 +633 45 3 877211326 +758 262 5 880672257 +533 177 4 879191300 +932 204 4 891250667 +846 792 4 883948221 +653 771 2 880606620 +595 127 5 886921199 +806 111 3 882385237 +567 340 3 882426300 +406 1109 4 882480865 +817 876 4 874815542 +868 434 3 877107056 +934 225 2 891197375 +506 447 4 874873847 +851 328 3 886534572 +897 28 4 879990779 +883 61 5 891693012 +886 176 4 876032143 +773 286 3 888538269 +886 212 2 876031897 +708 930 3 892719363 +835 509 4 891035309 +880 366 2 880242257 +492 462 3 879969292 +916 192 4 880844552 +875 963 4 876465275 +197 50 5 891409839 +478 71 3 889388790 +846 785 4 883950364 +927 95 5 879184447 +682 1132 3 888521907 +10 153 4 877886722 +542 88 3 886532727 +880 410 4 880166938 +733 20 5 879535299 +922 83 4 891448115 +716 740 4 879793714 +886 733 4 876032776 +881 22 5 876538028 +776 23 4 891628708 +524 221 4 884323464 +378 265 4 880045989 +13 60 4 884538767 +936 1023 2 886833661 +640 92 4 874778515 +270 242 5 876953744 +887 121 5 881378370 +901 436 4 877131961 +795 567 2 883253903 +52 277 5 882922661 +864 549 3 888890730 +679 42 4 884487584 +393 941 4 889729212 +880 575 3 880175077 +5 380 3 875637191 +94 584 4 885872942 +468 218 4 875294971 +804 239 4 879442122 +94 737 4 891723459 +818 245 4 891870515 +731 190 5 886187538 +562 483 4 879195954 +766 484 4 891309391 +606 215 4 880923925 +941 15 4 875049144 +805 226 3 881694978 +21 877 2 874950972 +796 977 2 893194992 +655 1018 3 887472791 +567 427 3 882427124 +294 872 4 877818580 +804 72 4 879445281 +823 1070 4 878438332 +882 510 5 879864642 +327 33 3 887820341 +931 297 4 891036673 +393 250 4 887743453 +878 796 2 880869473 +779 596 4 875994324 +848 485 5 887042341 +234 1120 3 892079288 +825 628 4 880756504 +660 235 3 891198401 +735 123 3 876698866 +831 210 5 891354612 +380 86 4 885478374 +766 23 4 891309177 +72 237 3 880036346 +210 28 4 887736175 +906 823 3 879435664 +456 588 3 881374462 +896 181 5 887158829 +197 576 4 891410039 +934 435 4 891191365 +851 159 3 875806953 +303 33 4 879468021 +107 1243 3 891264466 +795 425 3 883249522 +829 125 3 891990619 +639 423 2 891239030 +796 227 4 893048471 +412 1 4 879716962 +883 712 3 891694249 +932 432 4 891250109 +755 340 1 882569732 +632 100 3 879457603 +673 326 4 888787423 +727 94 4 883713257 +406 372 4 880131929 +798 418 4 875639212 +592 527 5 882955889 +897 239 2 879992310 +756 919 5 874831383 +429 498 5 882384796 +599 284 4 880952229 +381 118 1 892697051 +671 123 5 883546677 +463 892 2 889936774 +92 369 3 886443672 +710 92 3 883705436 +572 924 1 879449840 +829 276 4 891990694 +796 15 4 893188341 +363 127 4 891495169 +660 675 3 891199556 +58 191 5 892791893 +601 382 4 876351582 +851 127 5 891961664 +866 882 2 891221165 +883 39 4 891696864 +326 429 5 879875175 +727 226 3 883711966 +889 1153 4 880181935 +624 340 3 879791884 +189 489 5 893265452 +622 739 2 882671554 +825 930 5 881184695 +315 475 4 879821036 +5 105 3 875635443 +838 945 4 887065917 +614 235 5 879464437 +602 508 3 888638618 +804 2 4 879445493 +110 31 3 886989057 +1 207 5 875073067 +922 447 1 891449901 +901 866 3 877126963 +579 327 3 880951494 +413 276 4 879969674 +886 423 3 876032422 +712 40 5 874956956 +38 451 5 892431727 +758 199 4 881975687 +57 168 3 883698362 +214 209 5 892668173 +932 495 5 891251105 +925 876 3 884717404 +64 919 4 889739834 +405 792 5 885545552 +627 245 4 879529556 +769 597 2 885424001 +170 300 5 884103732 +530 607 5 883790567 +835 28 4 891034052 +932 1126 5 891250862 +804 1025 4 879440765 +901 216 4 877132578 +919 332 4 885059537 +42 2 5 881109271 +144 198 4 888105287 +929 435 3 880817753 +904 181 3 879735362 +429 293 4 882385293 +788 89 5 880869548 +728 471 4 879443291 +731 1086 1 886186091 +716 633 4 879796808 +734 288 4 891022311 +856 294 4 891489502 +666 443 4 880568638 +936 20 5 886833795 +851 1143 5 891961798 +838 82 4 887066783 +930 238 4 879535544 +919 283 4 875288748 +682 468 5 888517869 +655 699 2 887650593 +707 476 3 880061111 +389 684 4 880087761 +904 237 5 879735551 +854 507 4 882813623 +717 285 5 884642214 +906 1009 2 879435212 +588 22 5 890024195 +782 1611 3 891500066 +668 69 1 881702566 +872 591 3 888479253 +758 230 4 884999132 +532 298 4 892859148 +934 818 1 891190288 +617 668 4 883789716 +872 151 2 888479434 +801 332 5 890332719 +87 685 3 879875856 +943 182 5 888639066 +497 413 3 879362292 +614 7 2 879464215 +87 372 3 879876565 +504 676 4 887908756 +387 655 3 886480352 +495 210 5 888632496 +805 433 4 883415418 +606 38 4 880927923 +892 79 5 886609622 +871 1386 3 888193136 +934 427 4 891191027 +710 56 5 882064021 +868 64 5 877103548 +709 69 5 879846332 +391 209 5 877399541 +806 131 4 882390496 +679 83 5 884486694 +727 982 4 883713632 +830 294 3 891464054 +864 542 4 888892841 +806 455 3 882385455 +922 660 3 891453122 +267 161 4 878972706 +916 216 4 880844312 +880 468 3 880242422 +253 751 3 891627815 +495 582 4 888635080 +165 432 5 879526046 +650 670 3 891387915 +815 625 4 878694705 +283 732 4 879298239 +665 92 4 884295080 +837 278 3 875722246 +906 129 4 879435469 +747 235 5 888733444 +151 143 5 879524878 +796 200 5 893218420 +916 234 4 880845206 +389 686 3 879991434 +445 343 1 891199385 +850 69 5 883195456 +393 577 4 889731437 +933 160 3 874853755 +743 259 3 881277656 +89 25 5 879441637 +896 127 5 887158578 +906 270 4 879434471 +887 588 4 881380298 +640 226 5 874778569 +303 577 3 879544340 +766 436 4 891310038 +899 470 4 884122016 +566 508 4 881649577 +99 544 4 885679183 +903 1048 4 891031906 +766 659 3 891309736 +135 38 3 879858003 +699 333 3 893140662 +532 2 5 893119336 +206 1433 1 888180049 +921 526 4 884673930 +109 56 5 880577804 +399 139 3 882348153 +806 175 5 882387756 +566 172 3 881649644 +500 462 4 883874715 +764 278 4 876243343 +804 671 3 879445493 +18 50 4 880130155 +537 311 3 886028446 +691 748 4 875542868 +650 211 4 891370971 +899 1101 5 884122112 +796 126 3 892690173 +889 231 3 880182444 +279 1250 1 888466349 +606 82 5 880925646 +916 1042 3 880845328 +561 117 3 885810220 +735 13 4 876698643 +862 282 5 879303123 +788 423 5 880868235 +892 2 4 886609006 +832 243 2 888259984 +354 512 3 891306892 +758 222 4 884999132 +342 476 4 875318488 +592 140 3 882956551 +901 243 2 877129839 +194 570 3 879529356 +792 762 4 877910206 +927 403 4 879194335 +918 1265 1 891986494 +795 739 1 883774317 +805 1149 4 881697229 +905 319 2 884983463 +621 299 1 880227012 +749 678 2 878846423 +648 809 3 884883323 +604 98 2 883668097 +933 1110 3 874938728 +848 109 4 887043421 +37 568 3 880915942 +407 175 4 875042865 +651 301 3 880126632 +567 654 5 882425701 +498 479 3 881957054 +880 1496 4 880243147 +643 1221 3 891450316 +751 101 4 889298622 +916 511 5 880844395 +889 436 3 880181275 +181 1281 1 878963241 +363 17 4 891495918 +883 477 5 891914545 +913 483 3 880757975 +682 365 3 888517986 +924 480 3 885457891 +21 991 2 874951039 +415 174 5 879439864 +653 692 2 880151884 +705 96 5 883428028 +890 286 5 882402181 +691 304 3 875542868 +882 185 5 879877245 +442 77 3 883391325 +189 14 5 893263994 +854 512 3 882814063 +711 214 4 879993871 +890 167 2 883010326 +178 203 4 882826242 +938 762 4 891356780 +764 202 4 876246312 +32 50 4 883717521 +934 132 4 891190609 +916 735 4 880844879 +76 1159 3 882606623 +332 685 4 887938277 +942 234 4 891283161 +783 292 4 884326382 +878 855 3 880867803 +930 113 5 879535573 +805 271 3 880055033 +934 4 5 891195713 +429 180 5 882385464 +939 742 5 880260915 +833 271 5 879818341 +497 739 4 879310474 +924 2 3 886759997 +627 188 4 879531196 +889 23 3 880179785 +508 163 3 883768862 +656 312 1 892318777 +807 523 3 892529519 +739 168 1 886958831 +901 235 3 877126963 +292 228 5 881105211 +835 486 4 891034084 +551 228 5 892783212 +577 133 4 880474694 +660 175 3 891199367 +622 4 4 882671120 +253 4 4 891628670 +594 292 3 874780864 +425 89 4 878738435 +618 87 3 891307931 +871 1072 3 888193541 +64 356 3 889740154 +679 432 4 884487514 +224 107 3 888104522 +313 497 4 891015296 +603 89 5 891956825 +437 8 4 880140752 +943 218 4 888639929 +707 739 2 886287919 +436 869 4 887771722 +661 185 5 876013447 +851 298 5 875730379 +405 1464 1 885546154 +540 343 4 882156677 +922 195 3 891450401 +303 562 4 879485447 +402 15 5 876267115 +918 175 3 891987339 +6 216 5 883601500 +907 1163 4 880159015 +536 87 3 882359584 +733 151 4 879535694 +823 418 4 878438672 +436 986 3 887770300 +655 132 3 887565138 +421 423 2 892241707 +642 609 3 885604859 +590 111 3 879438936 +846 41 3 883950859 +566 50 2 881650063 +606 273 4 878143509 +788 810 3 880870773 +232 475 5 880062469 +821 125 4 874792860 +837 9 3 875721889 +923 222 4 880388211 +330 966 5 876547311 +524 792 4 884636519 +840 493 5 891208958 +479 151 4 879461914 +296 153 4 884197419 +846 561 3 883950753 +727 238 2 883710910 +864 684 4 888887289 +896 4 3 887159173 +933 230 3 874854338 +890 195 5 882403045 +886 29 1 876033576 +406 56 5 879792811 +330 209 3 876547032 +533 498 4 879438850 +794 473 4 891036222 +778 143 1 890804547 +752 269 5 891208451 +717 7 4 884642160 +457 69 5 882396659 +889 182 4 880179586 +741 451 3 891457395 +721 282 4 877145657 +450 699 4 882395537 +864 85 2 888889327 +889 250 4 880177179 +420 493 3 891356864 +825 121 5 880756076 +399 1207 3 882350813 +392 326 2 891037685 +653 1 4 878855383 +790 79 4 885156538 +373 1444 3 877112116 +936 1008 5 886833098 +393 684 4 889554811 +177 98 5 880131026 +864 805 4 888889327 +38 185 2 892432573 +916 73 3 880845829 +653 100 4 878854666 +328 72 3 885046686 +807 132 4 892530003 +551 1303 1 892785399 +394 546 4 881058167 +848 405 5 887046915 +435 249 4 884134242 +466 195 4 890284857 +889 627 2 880181646 +661 228 5 876016545 +932 509 3 891248893 +920 310 4 884219768 +882 203 4 879867508 +936 1163 5 886833099 +899 732 3 884122776 +768 245 2 879523820 +846 527 5 883947500 +567 190 4 882427068 +932 14 4 891248856 +429 1133 2 882386848 +633 423 4 877212367 +873 328 4 891392756 +668 13 4 881591075 +28 588 3 881957425 +20 22 5 879669339 +654 24 4 887863651 +927 588 5 879183683 +486 25 4 879874838 +786 97 4 882843683 +807 373 4 893081695 +864 1044 3 888891049 +851 262 4 890343320 +822 101 2 891037465 +654 14 2 887863557 +349 985 3 879466118 +871 187 5 888193081 +327 433 4 887818991 +655 435 2 887860616 +815 79 4 878694493 +545 218 4 879899906 +897 433 4 879991434 +881 1033 1 876536745 +640 150 4 886474493 +254 143 4 886472643 +897 173 3 879990779 +903 4 4 891033564 +655 316 4 889978343 +932 133 4 891249675 +798 112 3 875296234 +514 188 5 875463028 +746 506 3 885075824 +715 944 2 875963755 +593 478 5 875660788 +640 209 5 874778154 +920 299 2 884220163 +796 578 4 893048562 +707 707 5 886286133 +633 82 4 875325273 +748 192 3 879454584 +825 405 5 880756442 +635 358 1 878878838 +648 663 1 882213502 +930 265 3 879535685 +321 430 3 879439734 +128 28 5 879966785 +428 242 4 885943651 +896 578 2 887160653 +896 455 2 887159723 +593 285 2 886193129 +586 410 3 884057783 +893 928 3 874829129 +697 326 4 882621548 +490 952 2 875427532 +345 58 4 884916322 +825 685 4 880756321 +592 654 5 882955703 +623 451 4 891034973 +747 1021 5 888640099 +659 82 4 891384499 +472 214 4 875979964 +934 173 3 891192965 +409 876 2 881105677 +707 770 3 886287405 +234 162 3 892335541 +506 231 3 874873847 +682 49 3 888522194 +804 449 3 879445281 +810 876 3 886614969 +910 273 3 880821492 +393 790 4 889729773 +457 695 3 882398345 +24 7 4 875323676 +201 806 3 884140049 +922 82 3 891449123 +222 245 3 878181198 +882 216 4 879867508 +213 42 5 878956263 +870 513 4 879713578 +749 1188 3 878850610 +221 550 4 875246183 +702 895 1 885767534 +719 274 3 888449274 +336 273 5 877760032 +77 636 2 884753061 +627 53 4 879531504 +913 7 5 881725846 +292 193 4 881105734 +875 418 4 876465230 +358 258 4 891269077 +168 845 4 884287668 +836 163 5 885754058 +890 385 4 882574402 +901 393 5 877131738 +494 238 5 879541207 +626 336 1 878771477 +619 33 3 885954133 +914 313 3 887121969 +906 471 3 879435415 +867 1065 5 880078424 +916 256 3 880843551 +864 470 4 888890052 +798 568 4 875656111 +436 507 4 887769801 +854 825 3 882813143 +896 148 2 887160606 +671 62 5 884036411 +717 887 5 884642133 +753 98 5 891401366 +913 57 4 880758348 +798 73 4 875914114 +721 335 3 877137359 +560 1019 4 879975529 +896 9 4 887158266 +844 294 2 877381206 +279 854 1 875306613 +833 226 3 887158946 +303 390 3 879544365 +312 601 5 891699067 +870 58 5 875050723 +56 193 5 892678669 +847 262 5 878774788 +919 31 3 875373416 +916 685 2 880843727 +711 88 5 886030557 +840 1639 4 891211447 +484 121 4 881449910 +851 925 3 875731022 +521 195 4 884477775 +21 408 5 874951188 +506 521 5 874873529 +847 317 3 878940732 +784 334 3 891387812 +151 124 5 879524491 +893 976 1 874828981 +815 226 3 878698704 +932 519 4 891249710 +878 276 3 880865715 +679 568 2 884488259 +804 647 5 879442001 +697 324 5 882622481 +648 435 5 882212651 +903 461 3 891033334 +694 661 5 875727926 +497 63 3 879362985 +669 357 4 891260616 +650 628 3 891369982 +931 459 4 891036506 +587 328 1 892871284 +833 840 2 875297195 +659 611 4 891384606 +454 606 2 881960330 +934 492 4 891192087 +458 116 4 886394623 +394 168 5 880886919 +851 690 4 891961166 +907 462 4 880159666 +537 482 4 886031375 +650 604 3 891385178 +655 507 4 888813371 +422 339 2 879743848 +398 111 3 875652318 +664 95 4 878090125 +711 186 3 879993237 +928 165 5 880936863 +886 709 3 876032473 +450 601 3 882376658 +821 484 5 874793898 +450 186 3 882396799 +295 143 4 879517682 +887 257 5 881377854 +566 260 2 881649273 +805 768 2 881706049 +715 249 4 875961919 +514 177 3 886189816 +332 1210 3 888360460 +823 238 5 878438057 +576 471 4 886986237 +321 526 3 879440245 +541 83 5 883864806 +747 664 2 888638876 +144 411 4 888104588 +757 227 4 888466652 +259 928 4 874724937 +646 877 3 888529014 +854 58 3 882813825 +440 258 4 891547637 +453 229 2 888206219 +869 476 1 884492519 +311 939 2 884364694 +933 388 1 874938620 +454 504 2 888266955 +560 201 3 879975718 +87 1186 3 879876886 +372 7 3 876869387 +893 1012 3 874828163 +524 6 5 884627388 +823 631 4 878439293 +308 259 3 887736408 +548 539 2 891415257 +868 432 2 877108624 +808 340 5 883949986 +796 1055 3 893188577 +892 1035 3 886608643 +830 174 5 891561606 +664 306 4 876523133 +661 164 4 876035968 +774 150 1 888558787 +815 686 5 878695092 +303 63 1 879484327 +878 215 2 880866687 +766 429 4 891310067 +922 181 5 891449122 +586 44 3 884065692 +796 71 4 893218764 +865 412 1 880144504 +354 714 4 891217449 +372 234 5 876869387 +910 56 4 880821656 +13 825 1 882397651 +450 603 5 882373088 +847 1 3 878775523 +764 273 3 876242649 +487 210 4 883529505 +339 654 5 891032150 +798 125 3 875296178 +805 428 5 881704337 +936 274 3 886832858 +457 423 5 882397699 +488 193 3 891293911 +919 313 5 885059400 +254 241 4 886473190 +504 454 5 887838008 +939 255 5 880261094 +670 96 5 877975070 +897 483 3 879991921 +645 185 5 892054537 +826 779 3 885690900 +833 433 3 875124181 +194 136 5 879521167 +934 13 5 891189566 +530 237 4 886629307 +823 58 5 878438930 +394 118 4 880889066 +648 228 5 884882702 +881 575 2 876539330 +930 235 2 879535207 +887 243 1 881378370 +801 245 3 890333042 +712 142 4 876251366 +927 143 3 879196231 +567 507 5 882425820 +934 414 5 891191027 +279 1034 4 875297381 +230 423 5 880484825 +682 775 1 888521981 +645 50 4 892054824 +790 570 2 885158057 +279 428 1 875307379 +279 429 4 875306910 +581 844 5 879642274 +576 678 3 886960535 +848 739 5 887048260 +1 244 2 887431973 +936 696 2 886833191 +939 266 2 880260636 +815 230 5 878698098 +737 171 4 884314644 +478 780 3 889397808 +660 8 2 891199781 +590 476 3 879439345 +130 17 5 875217096 +727 627 3 883711150 +943 79 5 888639019 +498 100 3 881955291 +925 788 3 884718204 +936 678 3 886831820 +474 1124 4 887927152 +151 301 4 879523925 +655 191 4 887472744 +543 82 4 877545605 +457 47 4 882396935 +645 653 5 892054990 +197 802 4 891410082 +922 739 3 891448516 +479 235 3 879460503 +890 667 2 882404652 +758 362 5 888020763 +222 790 1 878185068 +821 471 4 874792752 +768 127 5 883835026 +918 154 2 891987411 +782 257 3 891499278 +497 417 2 879363627 +883 56 5 891694276 +92 1037 2 875907702 +842 752 4 891218353 +815 613 5 878694983 +927 1035 4 879199030 +588 552 1 890031021 +753 64 4 891402379 +365 108 2 891304019 +805 642 4 881695830 +393 625 4 889554780 +810 328 5 885406635 +862 655 5 879305016 +382 235 5 875946830 +833 150 3 875036213 +435 412 3 884134677 +848 520 5 887039329 +796 633 5 892662070 +879 181 4 887761088 +880 1277 4 880167355 +555 47 2 879975505 +916 581 4 880845543 +584 228 5 885774171 +890 501 4 882403085 +858 678 1 879459926 +82 603 5 878769479 +495 662 5 888636810 +625 300 3 891262561 +299 503 4 878192601 +846 506 3 883948908 +428 245 5 885943713 +347 627 4 881654545 +698 195 4 886366483 +880 250 3 880167521 +303 155 3 879484159 +288 210 3 886373509 +835 591 4 891032579 +280 403 3 891701506 +659 214 3 891387399 +562 1126 4 879196045 +804 655 4 879442377 +896 527 4 887159723 +838 175 3 887066186 +881 95 4 876537679 +660 210 4 891199293 +902 479 4 879465583 +813 266 2 883752660 +833 217 2 875224252 +933 181 2 874854100 +881 521 4 876537870 +94 248 4 891724341 +575 318 5 878148087 +634 950 5 877018125 +486 458 3 879875069 +630 22 3 885668328 +787 362 3 888979657 +83 479 5 880307699 +747 70 4 888733218 +68 926 1 876974298 +746 455 4 885075304 +868 709 4 877109197 +883 347 4 891691559 +796 48 3 892663090 +7 421 3 891352134 +828 179 4 891036972 +608 736 4 880403484 +221 737 4 875393346 +752 750 2 891207791 +562 323 2 879194768 +453 55 4 877554301 +916 290 3 880845206 +293 284 2 888905122 +624 3 3 879793436 +92 149 3 886443494 +825 100 4 880755942 +856 286 4 891489299 +943 508 5 875501795 +727 568 3 883711476 +853 270 4 879364822 +705 257 4 883426944 +537 1420 1 886029181 +938 756 3 891357019 +903 61 4 891033302 +854 98 4 882814394 +632 685 2 879459394 +897 526 5 879990813 +537 204 3 886031786 +762 286 4 878718810 +188 259 3 875071443 +223 1234 3 891548646 +566 685 3 881651183 +59 658 4 888205188 +606 833 5 887060394 +472 105 3 875979402 +932 429 5 891249675 +939 1028 5 880261868 +552 258 4 879220564 +339 92 4 891033452 +311 578 2 884365930 +548 597 4 891415890 +934 792 3 891193132 +629 153 5 880116818 +865 588 2 880235060 +716 495 4 879795762 +830 427 5 891462531 +854 297 4 882812263 +833 181 2 875036321 +658 69 4 875147995 +708 336 2 892718846 +524 676 3 884322379 +568 1137 4 877907092 +234 385 2 892335309 +16 135 4 877720916 +436 143 2 887770092 +647 1016 4 876534131 +796 779 3 893048713 +659 447 3 891386910 +454 604 3 881959960 +916 164 4 880845028 +825 148 4 880756725 +795 402 2 883254905 +509 690 3 883590676 +617 74 5 883788859 +521 203 3 884477896 +296 898 4 884196284 +234 144 3 892079840 +648 475 1 884364250 +931 137 3 891036552 +886 159 2 876031695 +639 215 1 891239271 +747 433 3 888733387 +779 111 4 875994324 +627 82 4 879531248 +871 262 3 888192970 +20 50 3 879667937 +876 604 5 879428406 +757 17 3 888466490 +535 32 3 879617574 +733 148 3 879536607 +774 778 5 888556046 +870 70 4 889409590 +30 780 4 875060217 +64 435 4 889737771 +588 159 1 890029795 +743 258 5 881277357 +897 406 3 879993577 +867 603 5 880078452 +233 180 5 877661364 +64 241 3 889739380 +696 327 4 886404144 +1 19 5 875071515 +38 673 5 892432062 +201 1355 1 884111637 +765 170 5 880346854 +853 304 4 879364822 +667 475 5 891035051 +896 265 4 887158604 +690 232 4 881177689 +774 548 1 888558041 +663 676 3 889492435 +716 630 4 879796138 +916 755 2 880845574 +371 176 4 877487135 +608 421 5 880406427 +666 124 3 880313391 +514 137 3 875318114 +506 333 4 887230118 +846 1297 3 883950665 +746 265 4 885075399 +655 1010 3 887477191 +154 475 4 879138832 +270 563 3 876956442 +804 32 3 879444352 +763 137 4 878918332 +458 275 5 886394471 +880 1058 2 880242421 +936 125 4 886832757 +913 200 5 880825443 +716 515 5 879793293 +159 118 4 880557464 +928 487 5 880936769 +927 420 5 879193437 +62 76 4 879374045 +271 428 4 885849188 +815 233 3 878694381 +363 372 4 891496077 +548 250 5 891044304 +712 178 2 874956357 +749 240 1 878850656 +880 1036 2 880243147 +913 235 1 881725960 +244 924 4 880604550 +535 608 4 879617856 +763 194 5 878918406 +843 504 2 879446911 +855 855 4 879825488 +534 288 4 877807429 +597 990 2 875339041 +782 181 3 891499213 +2 286 4 888549960 +842 306 4 891217942 +627 566 3 879531249 +407 737 4 875117053 +666 23 4 880139467 +343 222 4 876402978 +840 603 5 891204564 +790 739 4 885156686 +276 1052 2 889174870 +786 281 4 882842044 +571 69 2 883354760 +873 342 4 891392698 +95 52 4 879198800 +328 447 2 885045528 +472 825 5 875979439 +459 186 4 879566321 +892 8 5 886607879 +901 435 5 877131342 +894 171 3 882404595 +258 326 5 885701024 +577 50 4 880474394 +716 300 5 879792599 +878 14 5 880865865 +621 184 3 874964267 +56 393 4 892677047 +727 402 3 883711847 +899 174 5 884121125 +378 313 5 889665301 +276 1019 5 883822485 +733 544 1 879535407 +749 1013 1 881073081 +785 69 4 879439137 +932 38 2 891251696 +611 354 3 891636192 +682 23 4 888519725 +548 431 5 891044446 +873 339 3 891392871 +831 742 3 891354866 +887 596 5 881378118 +562 514 1 879195848 +20 243 4 879667799 +815 97 5 878694983 +653 183 3 878854100 +335 340 5 891566808 +827 289 3 882807571 +748 7 4 879454662 +833 163 3 875122814 +883 113 4 891693723 +650 1419 3 891381884 +880 85 3 880174904 +897 79 5 879994113 +18 142 4 880131173 +651 995 1 880126547 +467 222 3 879532651 +863 909 3 889289619 +256 449 3 882164999 +782 304 4 891497906 +922 579 3 891447988 +648 692 4 882213535 +424 840 4 880859693 +497 805 3 879362835 +398 655 4 875658967 +790 135 3 885156538 +722 25 4 891281108 +399 561 2 882345335 +861 242 5 881274504 +886 69 2 876031932 +939 756 5 880261532 +892 56 4 886607957 +919 238 3 875372988 +654 237 4 887863339 +880 150 4 880166798 +478 150 4 889388098 +727 815 3 883709188 +883 208 4 891694340 +673 895 3 888787423 +378 287 2 880044802 +655 502 4 887477168 +933 654 4 874854338 +831 327 2 891353940 +94 412 2 891724485 +280 452 2 891702387 +757 250 4 888444088 +642 91 4 885603897 +46 286 5 883611352 +250 588 5 878091736 +804 252 4 879441160 +343 116 5 876403009 +886 1010 5 876032103 +923 280 3 880388097 +795 191 4 883249962 +880 231 2 880167880 +425 161 3 878738187 +494 323 3 879540901 +699 546 3 879147769 +781 294 1 879633862 +447 211 4 878855724 +883 96 4 891696864 +832 264 3 888259480 +894 32 4 882404137 +605 508 5 879425432 +526 181 4 885682448 +929 195 4 880817681 +876 527 5 879428406 +508 228 5 883777430 +940 692 4 885921651 +437 249 5 880142027 +537 494 4 886031752 +35 321 3 875458970 +835 132 5 891033232 +916 559 3 880845658 +385 240 4 879447317 +916 767 4 880845522 +536 993 3 882318629 +848 238 4 887046329 +931 685 4 891036902 +620 432 4 889988036 +550 15 5 883426027 +476 959 3 883364433 +655 1082 3 887425655 +3 353 1 889237122 +119 727 5 887038711 +903 198 4 891032872 +843 1135 3 879447377 +634 410 4 877017872 +484 14 4 885237963 +847 417 2 878941588 +807 144 4 892528771 +863 292 2 889289067 +301 299 3 882075520 +119 172 4 874782191 +513 435 5 885063304 +160 832 1 876770673 +840 503 4 891209322 +925 260 3 884717669 +184 480 4 889908571 +699 270 4 893140745 +664 157 3 876524731 +405 181 5 885547909 +747 1170 2 888733182 +406 425 3 884630617 +764 222 4 876243440 +285 286 3 890595584 +527 582 2 879456078 +805 1118 5 881704553 +823 181 4 878438260 +804 1244 2 879441132 +937 326 1 876768813 +751 916 1 893113145 +851 327 4 890804671 +546 343 3 885140117 +913 227 1 881368310 +825 195 5 881101543 +586 356 4 884065692 +407 85 4 876339975 +655 793 3 888813186 +437 420 3 881002191 +919 126 4 875289170 +825 620 3 889021134 +579 268 3 880951444 +897 208 5 879991037 +698 187 2 886366916 +622 9 4 882669969 +394 418 4 880887462 +943 187 5 888639147 +897 168 3 879991341 +478 1041 3 889396449 +38 433 5 892433771 +592 815 3 882608625 +846 550 4 883949156 +42 658 2 881107502 +916 919 5 880843465 +846 448 5 883949547 +395 300 3 883762362 +393 541 3 889555384 +694 133 5 875727189 +81 79 5 876534817 +542 432 5 886532552 +158 83 5 880134913 +279 27 5 875313015 +372 273 5 876869730 +888 631 4 879365224 +794 224 4 891035793 +394 403 4 880889034 +836 289 1 885753691 +694 530 5 875726708 +683 288 3 893286259 +321 659 4 879440980 +149 311 3 883512752 +14 382 5 879119739 +49 200 3 888067358 +416 345 5 893214332 +846 1078 2 883949982 +832 895 2 888259285 +768 763 2 883835210 +643 716 3 891449507 +806 128 3 882388419 +942 528 5 891282840 +453 1303 2 888206730 +603 227 3 891955972 +435 658 3 884133223 +863 304 3 889289240 +119 287 4 874775465 +805 411 2 881705350 +843 216 2 879446806 +416 173 5 893214127 +537 506 3 886031860 +802 259 2 875984938 +911 134 4 892838823 +560 58 3 879975485 +629 42 2 880117430 +850 659 4 883194709 +896 379 2 887159805 +829 86 4 891992008 +523 202 4 883702054 +125 289 5 892835854 +942 659 5 891283161 +763 12 5 878918486 +406 9 5 879445735 +880 976 2 880243588 +727 108 3 883709948 +506 641 5 874873158 +886 9 5 876032274 +588 697 5 890024002 +892 357 5 886607568 +458 194 2 886397504 +823 174 5 878437589 +901 194 5 877131342 +747 199 4 888639102 +572 100 3 879449632 +600 1004 4 888451839 +595 1010 4 886922069 +393 720 3 889554648 +864 651 5 888888168 +577 763 3 880470638 +870 793 5 875680258 +566 78 1 881651829 +807 428 4 892530439 +933 392 3 874854652 +671 11 4 884035774 +497 795 1 879363284 +868 24 2 877108385 +756 225 1 874830864 +864 28 5 888887247 +829 410 3 881086959 +854 258 4 882811810 +907 117 5 880159172 +833 526 4 875224515 +184 676 4 889907925 +659 512 3 891386040 +498 268 2 881954618 +919 989 2 875288418 +589 751 4 883352562 +377 678 2 891297043 +846 425 5 883949156 +655 1578 3 887650714 +936 286 5 886833794 +892 465 4 886609295 +59 608 4 888204502 +757 143 3 888468693 +697 339 2 882621714 +661 86 4 876035679 +450 61 4 882376446 +872 845 3 888479313 +496 68 4 876067192 +299 211 4 877880961 +201 697 4 884140115 +751 865 2 889135211 +455 52 3 879112011 +919 116 3 875288749 +869 275 4 884490936 +807 205 3 892528605 +887 109 5 881378289 +554 717 3 876232553 +59 90 2 888206363 +361 121 2 879441324 +731 694 5 886184421 +479 143 1 879461669 +846 200 4 883948685 +927 815 3 879181259 +58 56 5 884305369 +405 435 1 885547176 +741 732 4 891456509 +542 401 3 886533193 +389 418 4 880165168 +682 752 4 888523634 +342 9 5 874984233 +932 654 5 891249877 +546 219 5 885141439 +897 530 3 879990531 +807 422 4 893082741 +868 193 2 877108123 +878 174 3 880872669 +569 118 4 879794265 +932 479 5 891249794 +303 419 4 879467328 +917 756 4 882911622 +92 841 3 886443455 +897 135 3 879990843 +712 510 2 874729749 +350 190 4 882346900 +830 173 4 891464148 +537 708 3 886031860 +804 632 3 879444488 +397 484 5 885349759 +795 202 3 881529874 +442 92 5 883389776 +749 22 5 878847327 +734 483 4 891025247 +565 86 5 891037757 +710 179 4 882063766 +701 326 4 891446707 +516 357 3 891290685 +864 203 5 888886846 +911 584 3 892841033 +892 136 4 886609365 +682 625 3 888523155 +840 22 3 891204265 +414 11 5 884999347 +934 614 3 891191334 +514 100 4 875318163 +654 508 1 887863355 +632 550 2 879458900 +768 682 3 883834776 +886 328 3 876031173 +727 186 5 883710598 +918 216 2 891987205 +712 42 1 874729935 +201 1 3 884113635 +392 11 4 891038371 +552 628 3 879221833 +315 466 1 879821349 +745 20 1 880123905 +922 455 4 891450688 +904 709 3 879735499 +222 472 2 877563998 +535 848 3 879618743 +476 433 4 883364250 +664 414 5 878090415 +711 941 3 879994608 +145 234 5 875271948 +915 346 2 891030070 +903 655 5 891466376 +846 489 4 883948606 +158 298 3 880132513 +896 188 3 887159011 +883 504 5 891754950 +764 371 3 876246436 +398 633 4 875726786 +486 50 5 879874582 +28 529 4 881957310 +340 969 5 884991647 +545 67 1 880348933 +934 661 4 891190960 +517 1177 5 892660728 +930 117 3 879534803 +869 1132 1 884492906 +328 316 5 888641915 +715 97 3 875964330 +381 268 4 892697982 +843 650 3 879447801 +847 663 2 878940954 +586 423 2 884058708 +484 87 5 891195746 +766 663 5 891310067 +634 744 5 877018125 +276 373 2 874977513 +878 921 4 880867665 +551 520 4 892777339 +870 286 4 875050332 +587 322 3 892871113 +881 1066 3 876538726 +892 663 5 886609330 +49 283 3 888066086 +848 183 3 887038104 +862 472 5 879303505 +403 476 4 879790468 +774 101 2 888558018 +704 432 5 891397535 +479 470 5 889125718 +747 1427 2 888639594 +231 15 4 879965704 +782 313 5 891497697 +806 29 4 882390296 +177 156 5 880130931 +666 294 3 880139037 +563 301 4 880506234 +59 73 4 888206254 +416 620 4 878879237 +833 200 4 875131847 +899 515 3 884121945 +336 85 3 877758078 +389 722 2 880089192 +932 67 2 891251611 +856 307 4 891489250 +450 11 5 882376365 +922 433 4 891451143 +919 129 5 875289025 +714 281 3 892777651 +882 208 5 879868197 +173 258 4 877556625 +828 752 1 891035438 +537 972 3 886032123 +301 41 3 882079446 +234 615 5 892079722 +862 81 5 879305237 +869 237 4 884490745 +805 928 3 881695930 +779 879 3 875501300 +899 455 3 884119910 +524 528 4 884634818 +18 187 5 880130393 +234 304 3 891033591 +582 742 3 882961082 +500 557 3 883875136 +847 210 3 878940584 +842 324 4 891218060 +915 347 5 891031477 +537 378 2 886032154 +870 53 2 879714351 +890 357 5 882403299 +429 357 5 882385636 +934 755 4 891196610 +848 973 5 887046619 +234 635 2 892336358 +875 187 4 876466687 +815 114 5 878695019 +758 62 2 881978368 +159 1012 5 880557080 +919 20 1 875289499 +466 260 4 890283592 +416 597 3 876698178 +798 432 4 876176259 +881 1480 2 876539636 +827 300 3 882201725 +861 292 4 881274504 +343 466 4 876404957 +734 485 5 891022976 +796 693 3 893188650 +592 182 5 882955662 +102 2 2 888801522 +472 402 5 892791063 +886 33 4 876033088 +474 431 4 887926999 +806 879 3 882384802 +303 412 3 879543756 +789 150 5 880332333 +878 285 5 880865562 +727 230 3 883711847 +826 29 3 885690750 +13 899 1 892015288 +876 511 5 879428354 +805 273 2 883415418 +545 1028 4 879900731 +823 426 4 878437658 +838 60 4 887067575 +881 756 4 876536012 +938 328 2 891356282 +269 167 1 891451648 +815 521 4 878694381 +659 517 5 891384888 +825 823 4 881342978 +932 173 3 891250337 +655 1042 2 887523641 +882 429 4 879866320 +774 508 3 888558731 +595 676 2 886921140 +734 202 5 891022684 +392 269 5 891037385 +899 827 2 884120388 +897 974 4 879993553 +903 188 5 891466376 +645 182 5 892053686 +524 1540 2 884635326 +805 890 3 882216972 +708 405 4 877325881 +764 2 3 876244856 +752 887 1 891207846 +897 528 3 879991933 +885 117 4 885715643 +903 871 3 891031833 +749 328 4 878846422 +648 186 5 882213597 +671 66 5 884204727 +820 328 2 887955079 +886 100 4 876032187 +796 31 4 893194547 +854 269 4 882811742 +606 1 5 878148365 +452 527 3 885490722 +452 825 5 885816916 +851 333 5 890862741 +435 288 4 884130605 +379 1035 3 880962256 +894 7 4 880993632 +731 655 5 886183515 +922 250 2 891454910 +913 19 5 881366383 +505 121 4 889334004 +887 559 4 881381555 +764 693 3 876246687 +881 23 4 876537419 +766 193 3 891309668 +896 800 3 887161448 +276 696 2 874786632 +542 435 4 886532818 +756 228 3 874828640 +875 213 4 876465408 +284 334 3 885329468 +936 272 4 886831374 +887 7 4 881377812 +786 210 4 882843039 +750 886 3 879446114 +805 950 3 881698828 +934 254 4 891190478 +292 331 5 877560833 +152 568 5 882829846 +608 268 4 880402983 +600 391 3 888452491 +378 561 3 880333695 +389 155 2 880088900 +916 24 2 880843419 +620 931 3 889987875 +622 88 3 882670749 +758 236 4 881974742 +921 97 2 884673891 +627 530 3 879531195 +834 276 5 890862468 +881 1411 2 876539595 +851 681 1 886534672 +896 33 2 887160209 +937 864 3 876769530 +250 323 2 878089100 +365 319 4 891303694 +753 313 5 891399135 +537 430 3 886031297 +546 109 5 885141260 +691 182 5 875543228 +887 118 5 881378289 +886 168 4 876031573 +770 240 2 875972582 +643 147 3 891445526 +308 480 4 887736532 +538 273 3 877107879 +678 222 3 879544989 +848 186 5 887039271 +734 605 4 891025555 +869 287 2 884492047 +883 1656 5 891692168 +592 24 4 882608021 +266 289 3 892256967 +764 819 3 876243159 +710 64 4 882063766 +717 628 5 884644605 +537 471 3 886030012 +102 174 4 888801360 +534 985 4 877807815 +880 281 4 880167384 +500 358 4 887755810 +887 151 5 881378325 +222 1145 3 878185137 +655 1195 3 887693376 +860 315 3 884029545 +896 284 4 887159972 +125 95 5 879454628 +486 100 5 879875465 +49 702 3 888066614 +937 236 4 876769373 +588 928 4 890027063 +840 639 4 891204564 +805 1002 1 881705592 +677 117 4 889399171 +826 586 4 885690819 +624 1059 1 879793358 +409 1050 4 881109420 +830 566 3 891561937 +862 767 4 879303807 +899 161 4 884122367 +246 226 2 884923329 +90 137 5 891384754 +773 235 4 888539677 +504 9 4 887831567 +299 381 3 889502198 +892 576 4 886610840 +125 85 3 892838424 +11 382 3 891904573 +943 609 2 888639702 +883 279 3 891717356 +803 304 3 880054792 +870 1451 3 891214479 +855 170 2 879825383 +823 202 4 878438672 +854 271 4 882811937 +938 343 4 891356062 +932 708 4 891251647 +933 105 2 874938475 +782 894 2 891498031 +464 479 4 878355167 +279 630 4 875313351 +592 180 5 882956102 +798 671 2 875639115 +500 554 3 883877162 +846 54 3 883949459 +855 919 3 879825462 +844 2 4 877387933 +370 57 5 879435431 +655 226 3 887429732 +870 64 5 889717102 +833 591 2 875036139 +659 73 4 891387083 +474 151 3 887916203 +167 216 4 892738237 +94 823 3 891722458 +698 135 3 886366483 +907 356 4 880159937 +804 290 4 879443795 +907 322 5 881030348 +392 657 5 891038401 +273 286 3 891292761 +600 518 5 888451908 +833 1335 2 875038433 +771 202 4 880659941 +840 71 3 891209572 +846 655 3 883948804 +786 455 1 882842762 +689 717 3 876676359 +886 12 5 876031279 +883 435 4 891696895 +362 879 5 885019357 +798 648 3 875914785 +773 887 2 888538175 +262 204 3 879793667 +621 790 4 874963081 +655 972 3 887475213 +618 633 3 891308571 +764 472 3 876243925 +761 7 4 876190206 +683 327 4 893286260 +524 488 4 884634707 +145 64 4 882181785 +769 473 3 885424337 +894 334 3 879896200 +874 751 3 888632147 +406 1101 4 879445771 +416 4 4 876699903 +772 344 4 889028581 +890 474 5 882403587 +314 812 4 877889163 +582 100 5 882960863 +879 685 4 887761865 +848 654 5 887038104 +567 182 5 882425701 +803 340 5 880055088 +895 988 3 879437845 +634 93 5 877018125 +617 452 1 883789590 +742 124 4 881335461 +711 1024 5 883589512 +13 28 5 882398814 +692 257 4 876953340 +934 94 4 891196117 +774 655 1 888555998 +554 284 3 876549009 +104 328 3 888442249 +843 226 3 879443865 +846 88 4 883948948 +203 748 2 880433474 +916 483 5 880844419 +455 22 4 879111500 +618 566 3 891308261 +804 629 3 879445072 +844 174 4 877387768 +334 561 2 891549455 +532 368 3 888630991 +846 140 4 883950634 +618 313 4 891306927 +216 97 4 880235571 +901 932 4 877127021 +886 191 5 876031309 +566 137 5 881649928 +337 151 5 875185627 +846 141 4 883948948 +749 568 4 878848098 +758 285 5 881974823 +942 484 5 891282963 +848 403 4 887043266 +664 96 3 878094973 +807 300 5 892527168 +916 550 2 880844985 +669 175 4 892550170 +760 71 4 875668080 +524 13 4 884323551 +497 372 4 879362875 +491 325 1 891189876 +56 1091 2 892737210 +875 518 4 876465408 +790 1185 2 885158257 +573 135 4 885843964 +663 466 3 889493467 +715 977 2 875962718 +833 429 3 875123506 +870 497 4 875050559 +829 116 4 881698644 +10 85 4 877892438 +119 349 3 887038665 +930 756 3 879535015 +374 825 3 880394233 +903 721 4 891380524 +504 705 4 887838935 +815 871 1 878693073 +941 455 4 875049038 +701 124 5 891447164 +632 485 4 879457157 +704 156 3 891397819 +938 243 4 891356085 +877 326 4 882676190 +804 651 4 879445904 +774 380 2 888556968 +63 10 4 875748004 +659 514 5 891385044 +847 181 4 878775821 +907 483 4 880159937 +785 661 3 879438810 +815 835 3 878694269 +653 111 2 878854996 +592 931 1 882608960 +782 1598 2 891499556 +7 509 5 891352778 +586 72 2 884067378 +91 183 5 891438909 +616 316 4 891224840 +883 659 3 891694218 +772 264 4 876250551 +457 169 5 882396935 +796 152 3 892690101 +868 169 5 877106505 +888 191 5 879365004 +749 1244 3 878847101 +864 133 5 888887984 +710 327 3 882063407 +612 477 2 875324876 +615 83 4 879448399 +933 95 3 874853666 +829 705 4 891204271 +907 699 5 880159619 +823 50 5 878438435 +907 471 5 880159059 +327 217 3 887746328 +691 64 5 875543191 +903 11 2 891033335 +868 127 4 877103679 +611 690 3 891636098 +880 823 3 880167435 +825 124 3 881097389 +886 156 4 876031413 +898 1296 4 888294942 +701 269 5 891446488 +892 515 5 886608380 +495 419 1 888632070 +916 204 3 880844813 +880 693 5 880242191 +531 894 1 887049214 +649 252 4 891440624 +543 69 4 874863436 +867 28 5 880078887 +727 544 3 883709518 +932 193 3 891250142 +78 411 4 879634223 +735 301 3 876697610 +276 452 3 880913767 +840 525 5 891204535 +145 9 2 875270394 +875 358 3 876464800 +885 142 2 885716369 +76 851 4 879576570 +487 393 4 884042207 +468 204 5 875287826 +852 252 3 891036866 +898 343 3 888294805 +851 483 4 875806721 +648 526 3 884368232 +665 456 4 884291662 +436 1248 3 887770485 +881 199 5 876538824 +758 388 3 882055289 +823 655 5 878439364 +525 293 3 881086108 +360 15 3 880354436 +44 175 4 878347972 +855 509 3 879825613 +308 684 3 887737593 +198 470 3 884208571 +936 1011 4 886832757 +687 879 3 884651894 +659 528 4 891385012 +918 69 3 891987497 +643 176 5 891447157 +545 271 3 879898362 +425 228 4 878738334 +16 127 5 877719206 +437 152 4 880141129 +399 433 3 882344269 +346 658 3 874949011 +880 902 4 892958301 +825 831 3 880756796 +648 428 2 884881754 +267 710 4 878972493 +495 77 4 888634475 +682 280 3 888517740 +870 98 4 880584497 +649 257 5 891440496 +530 1136 4 891568851 +823 12 4 878437925 +771 169 5 880659426 +201 1208 4 884140927 +738 28 4 875350913 +776 185 4 892920290 +494 603 3 879541298 +643 11 4 891446720 +709 38 3 879848744 +275 174 4 875155257 +749 1133 2 878850084 +511 343 3 890004892 +543 218 3 874864034 +90 847 5 891383753 +748 657 4 879455221 +363 8 5 891497853 +805 98 5 881695196 +707 251 5 880059647 +82 1059 1 884714456 +686 806 5 879546319 +536 275 5 882318287 +939 285 5 880261184 +452 1204 4 875560150 +860 692 5 885990965 +880 17 3 880174808 +699 870 3 879147814 +535 495 3 879618849 +504 756 3 887910240 +835 505 3 891033857 +521 827 1 884476904 +911 647 4 892839140 +782 300 4 891497906 +885 167 3 885713807 +886 144 4 876032509 +405 704 2 885546577 +393 82 4 887746174 +13 671 3 882396790 +500 425 4 883874413 +905 471 4 884983952 +881 182 3 876538571 +786 504 4 882843352 +648 391 3 884883031 +13 358 3 881515521 +577 98 4 880474530 +823 66 4 878439391 +770 596 4 875972988 +278 302 3 891294959 +474 606 3 887924571 +710 181 3 882064160 +721 326 4 877136236 +92 40 3 875656164 +393 732 4 889555272 +894 165 4 882404329 +908 216 3 879723074 +903 1067 2 891031412 +714 276 2 892777242 +804 797 4 879445280 +786 98 5 882843190 +791 304 4 879448035 +846 700 2 883950605 +671 451 4 884037004 +653 367 3 878867228 +318 294 4 884469971 +894 20 5 881625708 +790 685 4 884461988 +838 93 3 887063937 +914 732 2 887123465 +538 289 1 877095667 +378 803 3 880334440 +886 940 2 876034255 +745 276 1 880123905 +788 1459 2 880871857 +887 100 2 881377854 +835 988 3 891032391 +561 488 4 885807290 +870 1074 2 879270213 +460 151 3 882912205 +630 866 3 885667148 +933 575 1 874938620 +141 866 5 884585071 +840 657 5 891205287 +790 365 4 885157465 +455 770 3 879111586 +933 474 5 874853734 +521 216 2 885253247 +682 797 2 888522613 +798 1435 2 875639836 +445 93 1 891199945 +49 174 1 888067691 +913 604 2 882201336 +868 726 2 877109926 +851 591 5 891961663 +887 128 5 881380218 +327 318 5 887820828 +806 675 3 882388381 +566 136 4 881649621 +881 274 3 876536850 +889 789 2 880179508 +825 237 4 880931932 +92 155 2 875654888 +786 88 4 882844010 +542 293 3 886532466 +880 763 3 880167247 +401 211 4 891033092 +862 544 5 879304196 +846 357 4 883947960 +543 59 4 875659256 +871 324 3 888192689 +694 204 4 875728639 +933 153 3 874853779 +870 421 2 879539965 +653 79 4 878854051 +669 183 3 891260577 +788 130 2 880869396 +848 427 5 887039136 +458 97 1 886397931 +44 173 5 878348725 +455 159 3 879111500 +776 509 5 891628773 +870 722 2 879270213 +406 1153 2 882480836 +42 755 4 881108425 +622 127 5 882590534 +786 385 4 882844294 +877 56 5 882678483 +476 210 4 883364218 +923 282 4 880387624 +806 484 4 882387373 +846 478 4 883947819 +634 1197 4 875729106 +796 405 5 892660954 +881 1 4 876535796 +851 1287 1 875731105 +790 949 4 885156825 +745 169 4 880123671 +758 88 4 881979942 +618 144 4 891309887 +707 10 5 880059687 +174 143 5 886515457 +417 25 2 879646413 +561 636 1 885809670 +815 143 5 878694665 +747 735 4 888639735 +21 672 3 874951727 +760 375 4 875669114 +567 152 4 882426673 +651 690 3 880126508 +224 570 4 888104522 +653 739 3 880152902 +394 82 4 880889553 +393 66 3 889554707 +782 1620 3 891499440 +825 325 5 882109250 +835 127 4 891032536 +429 607 3 882385785 +806 79 3 882387448 +843 101 3 879447424 +863 990 1 889289385 +899 403 3 884122844 +884 529 5 876859301 +699 1057 3 880696553 +510 326 4 887667751 +708 225 2 892719172 +751 537 4 889134006 +880 385 4 880167843 +872 1165 2 888479537 +907 402 5 880160037 +408 310 4 889679761 +1 29 1 878542869 +886 761 4 876033368 +653 142 2 880153378 +484 197 4 891195973 +542 695 2 886532788 +846 836 5 883950186 +846 944 2 883949547 +727 576 4 883713454 +709 665 3 879848272 +140 321 4 879013651 +848 174 5 887038104 +151 135 5 879524471 +894 887 4 880993374 +932 480 5 891250746 +881 238 1 876537679 +943 1228 3 888640275 +789 276 5 880332063 +790 202 3 885156904 +854 498 3 882813877 +940 200 3 885922016 +789 151 2 880332365 +615 153 4 879449130 +621 142 3 874965299 +766 180 4 891308927 +670 144 4 877975285 +913 151 4 881368824 +342 12 5 874984315 +893 771 3 874830424 +472 385 5 892790676 +642 1336 2 885606520 +21 9 5 874951188 +472 831 5 875979498 +130 819 3 874953825 +542 509 4 886532209 +697 305 5 882621431 +115 628 5 881169883 +789 129 5 880332063 +645 301 2 892052070 +896 1267 2 887160165 +938 866 5 891356991 +425 743 4 878739054 +551 210 4 892777787 +446 321 4 879786943 +181 1368 1 878962200 +943 475 5 875501889 +781 69 3 879634147 +777 180 5 875980306 +677 290 1 889399295 +880 300 3 880166451 +280 33 3 891700715 +619 333 2 885953574 +877 159 4 882678512 +841 326 4 889067216 +915 301 2 891030032 +929 521 5 879640184 +492 275 2 879969210 +805 241 2 881694923 +160 288 5 876771285 +606 637 3 880927750 +663 845 3 889492796 +909 382 5 891920327 +769 1 4 885423720 +929 187 5 879640290 +409 511 5 881107943 +605 523 5 879424345 +92 217 3 875657595 +796 231 3 893048622 +643 1028 3 891446404 +907 819 4 880159442 +435 53 3 884133447 +824 319 2 877020927 +503 86 5 880383098 +5 210 3 875636099 +326 514 3 879875612 +660 652 4 891200370 +890 132 5 882403045 +846 65 3 883949254 +939 411 4 880261917 +943 840 4 888693104 +620 173 5 889988121 +913 176 5 880759221 +904 275 5 879735461 +521 526 3 885254307 +659 483 4 891383889 +907 185 4 880159801 +759 50 4 881476824 +752 323 1 891208261 +343 252 4 876403491 +875 131 4 876465229 +807 843 2 892684615 +875 421 4 876465335 +840 82 3 891209183 +885 72 1 885713631 +773 408 5 888539232 +604 672 1 883668261 +454 71 3 888266754 +201 284 3 884140336 +854 466 3 882813761 +465 929 3 883530818 +429 98 4 882384494 +752 1176 2 891208170 +867 528 4 880078371 +370 170 4 879435369 +829 529 4 881698976 +921 210 4 884673633 +716 52 5 879795467 +938 1016 3 891356799 +391 378 3 877399171 +880 818 2 880175468 +267 77 3 878972650 +643 959 3 891449741 +893 11 4 874829753 +931 333 5 891037521 +885 213 3 885715221 +588 568 4 890024876 +235 1134 4 889655723 +619 231 4 885954185 +698 357 4 886366454 +379 345 3 892879380 +537 91 2 886031438 +927 542 2 879193676 +642 410 1 885605988 +636 15 5 891449237 +823 176 4 878438807 +661 96 4 876015607 +886 228 4 876031601 +870 202 3 879714181 +406 207 2 879446529 +776 174 5 891629157 +94 622 3 891722609 +859 1009 4 885775277 +868 498 3 877104913 +535 192 4 879617931 +896 587 3 887159603 +62 7 4 879372277 +524 657 4 884634995 +876 288 3 879428101 +568 191 4 877907126 +751 25 5 889132252 +669 649 4 891260754 +864 82 5 888887830 +92 25 3 875640072 +327 176 4 887744240 +897 633 5 879991007 +733 471 3 879535814 +397 357 5 885350381 +504 514 4 887838485 +748 402 2 879454476 +909 880 4 891919406 +428 892 4 885944044 +642 1185 4 885606024 +697 276 5 882622505 +792 742 3 877909709 +854 479 4 882813623 +336 716 2 877758001 +846 95 3 883947778 +686 191 5 879546954 +207 45 3 878104569 +663 281 3 889492759 +425 334 4 890346567 +707 310 4 882200872 +818 312 2 891870546 +609 285 5 886894879 +593 144 4 875660569 +429 507 5 882385210 +615 238 3 879449044 +865 100 4 880143232 +766 219 3 891310241 +788 11 2 880868513 +709 959 4 879846169 +936 1202 4 886832221 +847 235 1 878776020 +843 708 2 879448230 +425 269 4 890346376 +682 693 3 888517537 +406 1147 4 879446228 +592 892 1 882607690 +544 300 4 884795612 +295 1050 5 879517761 +919 312 2 885059658 +896 173 5 887158683 +721 809 1 877139384 +332 89 5 888098060 +42 282 4 881105677 +778 712 3 890803176 +234 127 4 892078386 +638 22 5 876694787 +860 257 3 891733877 +738 121 4 875353780 +557 865 3 881179268 +655 1153 3 887477336 +775 347 3 891032837 +642 975 2 886130929 +615 521 4 879448475 +897 294 3 879988800 +749 140 3 878847673 +897 203 4 879990813 +774 100 1 888558731 +588 95 4 890015722 +233 64 5 880612285 +890 444 4 882404610 +697 307 4 882621431 +94 127 5 885870175 +303 71 3 879468179 +13 841 1 882398076 +896 557 3 887160426 +896 145 1 887161413 +862 211 5 879305051 +887 1120 5 881378439 +846 806 3 883948343 +144 760 2 888104283 +579 50 5 880951984 +798 571 3 875914458 +868 778 2 877109375 +929 100 4 878402162 +561 435 3 888232990 +542 90 4 886533227 +456 33 4 881374086 +829 639 4 881699005 +897 708 2 879991226 +156 9 4 888185735 +239 186 1 889179253 +892 67 4 886610480 +639 1065 1 891239030 +922 421 4 891448473 +73 188 5 888625553 +938 678 3 891356282 +806 161 3 882388328 +758 1090 1 882055460 +598 22 5 886711521 +4 360 5 892002352 +886 1489 1 876034074 +896 320 3 887159530 +870 433 3 879901879 +25 125 5 885852817 +871 216 3 888193384 +648 294 3 884366184 +933 940 1 874938664 +879 50 4 887761865 +643 226 2 891449476 +687 268 5 884652088 +804 1615 4 879441195 +921 662 4 884673724 +881 490 4 876538763 +398 478 5 875657857 +504 1037 1 887912584 +776 182 3 891628773 +405 46 1 885546445 +6 111 2 883599478 +748 813 4 879454497 +472 554 5 875982771 +610 195 3 888703583 +938 117 3 891356350 +868 509 3 877106470 +875 42 4 876465336 +373 238 4 877098890 +894 340 4 879896756 +932 1030 2 891252338 +880 550 4 880167880 +435 755 2 884132266 +524 1073 5 884635287 +774 573 2 888557804 +763 4 5 878917877 +880 31 4 880243629 +731 603 5 886182631 +624 696 4 879793223 +648 474 4 884368002 +546 760 5 885140808 +721 1119 4 877147795 +875 327 4 876464873 +650 585 1 891387979 +587 305 4 892871068 +846 89 5 883948003 +901 172 5 877131205 +682 300 2 888518320 +918 166 4 891987238 +536 483 4 882359625 +642 118 3 885603566 +795 640 4 883251200 +630 120 4 885667678 +857 892 3 883432515 +932 56 4 891250584 +130 219 5 876252472 +573 519 4 885844567 +905 137 3 884984148 +934 516 3 891191334 +840 414 4 891204535 +276 143 5 874792870 +871 526 5 888193337 +417 94 3 879649177 +883 154 4 891754985 +758 68 3 881977265 +105 880 3 889214335 +695 289 2 888806150 +932 167 4 891251647 +882 357 4 879864917 +198 128 3 884209451 +741 357 5 891018507 +13 803 3 882398255 +934 154 3 891191401 +472 916 5 892790627 +213 1012 3 878870719 +226 474 3 883889063 +936 1079 1 886832714 +880 1225 2 880174834 +886 188 4 876031365 +768 1061 1 883835210 +871 242 3 888192858 +795 1041 3 883254780 +805 150 5 883766549 +60 519 4 883326370 +799 427 5 879254077 +757 732 3 888467829 +646 748 3 888529054 +393 864 3 887745230 +833 64 3 875039204 +399 11 4 882344199 +405 940 1 885547605 +627 941 3 879530866 +303 173 5 879466604 +918 485 3 891987689 +852 358 3 891036414 +940 657 4 885921471 +106 463 3 881453413 +916 236 4 880843482 +933 216 3 874938239 +699 20 4 879147239 +363 582 2 891496306 +606 404 4 880925200 +430 168 4 877226568 +214 11 5 892668153 +633 94 4 877211684 +925 561 3 884718100 +646 272 4 888528483 +749 780 1 878849682 +864 52 4 888888861 +573 836 3 885844605 +401 99 4 891033582 +904 274 5 879735551 +896 810 1 887160958 +807 168 4 892529893 +791 275 5 879448314 +917 268 4 882910409 +715 155 4 875964580 +864 717 3 878179608 +880 93 4 880174623 +876 878 2 879428253 +458 99 4 886397110 +399 511 3 882341848 +489 312 2 891366748 +896 206 3 887159368 +846 177 3 883947737 +843 154 3 879446281 +677 101 5 889399671 +843 671 3 879446889 +854 799 3 882814298 +692 410 5 876953824 +296 150 1 884196556 +872 476 4 888479737 +850 419 5 883195394 +616 301 3 891224748 +303 221 5 879466491 +881 573 3 876539260 +639 86 4 891239406 +727 1188 2 883712632 +308 411 4 887739987 +748 216 4 879454998 +748 655 3 879454879 +560 1134 3 879976478 +752 315 2 891207791 +637 1258 1 882905070 +916 88 4 880845157 +320 827 4 884749030 +563 172 5 880507339 +741 164 3 891455766 +99 174 5 885679705 +788 523 4 880868559 +550 249 4 883425388 +928 176 3 880936817 +870 177 4 875050827 +289 117 4 876789514 +887 1383 4 881379239 +784 750 5 891386988 +474 378 4 887927152 +922 91 4 891448833 +734 95 4 891025573 +782 295 2 891499321 +593 73 2 875671807 +897 243 4 879988868 +385 1506 4 879442606 +758 99 3 882052960 +798 1043 3 875915279 +788 117 4 880869014 +793 406 2 875104221 +262 219 3 879794206 +380 514 2 885478780 +232 425 4 888549790 +65 77 5 879217689 +790 85 3 885156825 +592 1264 4 882955460 +373 328 4 877098041 +120 515 5 889489772 +856 347 2 891489217 +864 73 5 888888994 +203 628 4 880434810 +792 25 2 877909892 +885 135 2 885714159 +758 405 4 881978635 +586 696 3 884065851 +928 876 5 880936023 +533 919 2 888239673 +733 950 4 879535643 +663 111 3 889492562 +659 345 4 891044849 +831 294 4 891354043 +835 205 3 891034084 +927 541 5 879199250 +551 200 4 892782936 +756 432 4 874829258 +482 286 3 887644023 +663 294 3 889491811 +913 343 1 881037310 +548 271 3 891043509 +795 998 3 883255182 +883 511 4 891717419 +373 125 4 877098821 +416 765 4 886319522 +342 716 2 875320014 +661 294 4 876036384 +881 561 4 876538465 +174 708 5 886514243 +666 744 3 880313661 +823 410 4 878438535 +488 651 5 891294014 +839 323 4 875751559 +804 495 3 879442792 +934 316 4 891188727 +843 637 2 879443297 +686 89 4 879545481 +911 176 4 892841255 +486 1143 3 879874726 +918 1266 4 891988586 +671 443 3 884034132 +495 739 4 888637042 +774 1118 3 888556047 +942 661 4 891283139 +875 8 3 876465072 +592 886 3 882607476 +868 68 2 877106505 +784 344 4 891387078 +889 869 3 880182428 +782 1664 4 891499699 +919 305 4 885059623 +919 16 4 875289533 +721 948 1 877137109 +913 64 5 881725876 +328 96 4 885046174 +655 327 3 888685734 +823 230 3 878439557 +828 316 5 891034440 +758 137 5 881975539 +298 275 3 884125672 +637 300 3 882900888 +704 222 3 891397058 +374 595 3 880393921 +678 127 5 879544782 +874 311 4 888632098 +21 987 3 874951616 +870 172 4 875680098 +752 589 4 891208491 +232 196 5 888549757 +130 258 4 874953526 +908 123 3 879722822 +815 1204 5 878696619 +291 928 2 874834389 +143 271 4 888407708 +668 475 4 881605210 +697 881 2 882621523 +677 475 4 889399265 +896 231 1 887160771 +883 781 3 891694340 +751 7 3 889132251 +201 125 2 884140709 +497 391 3 879362545 +852 472 3 891037605 +837 111 4 875722050 +846 70 4 883949156 +655 88 2 890887261 +486 459 2 879875040 +734 283 5 891023066 +806 143 5 882390296 +595 290 4 886921748 +471 71 3 889828154 +804 97 4 879442057 +825 222 5 880755468 +151 922 4 879542847 +743 748 4 881277656 +675 321 2 889488708 +870 608 4 875680098 +788 391 2 880871746 +535 318 4 879618502 +712 1220 5 874729996 +830 661 4 891462594 +920 333 4 884219993 +244 1428 4 880603411 +548 515 5 891044304 +870 651 3 879539936 +44 151 4 878341370 +932 663 4 891251506 +385 1065 3 879445153 +816 260 3 891711579 +920 307 3 884219993 +846 47 5 883948803 +782 1513 2 891499440 +758 750 2 883518021 +761 283 4 876190160 +624 762 4 879793330 +851 875 5 884205151 +338 479 5 879438250 +553 487 5 879948996 +846 233 5 883949547 +763 738 2 878922982 +942 879 4 891282539 +896 92 1 887160296 +833 679 3 875224482 +532 917 4 892520128 +884 127 4 876858877 +911 83 4 892839784 +933 384 1 874938475 +7 50 5 891351042 +576 204 4 886986445 +452 290 2 875562903 +424 688 2 880859228 +896 282 2 887158555 +661 204 5 876017801 +663 324 2 889492019 +378 443 4 880055336 +761 263 1 876189950 +883 896 5 891691465 +908 28 4 879723073 +296 246 4 884196584 +791 302 4 879447940 +655 712 3 887474050 +894 512 5 879897489 +591 237 3 891039974 +654 367 4 887864923 +716 31 3 879794996 +938 275 4 891356350 +867 7 5 880078604 +882 177 5 879867885 +933 228 4 874854217 +804 402 3 879445441 +852 117 4 891036707 +885 815 4 885715169 +904 796 3 879735710 +886 385 3 876033293 +880 393 3 880174926 +158 285 5 880132383 +666 646 3 880139180 +860 629 3 885991198 +834 284 4 890862468 +694 481 4 875727781 +85 172 4 882813285 +864 128 4 888886882 +503 963 5 880472061 +330 25 5 876544582 +749 202 5 878847461 +161 225 1 891172322 +642 110 2 885606048 +870 127 5 875050602 +390 690 3 879693677 +661 199 5 876016726 +804 949 3 879445254 +524 131 5 884636498 +872 1040 3 888479701 +751 1035 2 889298585 +757 235 3 888444935 +908 223 4 879722953 +892 763 2 886609726 +368 164 3 889783364 +885 423 4 885714136 +566 385 3 881650825 +854 544 3 882812852 +903 64 5 891033564 +882 183 4 879864789 +417 117 4 879646484 +456 772 4 881373228 +880 161 2 880167778 +503 303 5 879438024 +537 1154 1 886032000 +840 588 4 891205321 +932 639 5 891249171 +688 302 5 884153425 +606 79 3 880927127 +709 176 4 879848432 +526 845 5 885682590 +330 228 5 876547220 +932 482 5 891250211 +716 525 3 879794815 +864 116 4 888887045 +862 845 4 879303249 +896 180 5 887158660 +401 591 3 891032607 +896 7 4 887159145 +860 26 3 885991163 +932 70 4 891249171 +758 1292 1 880672876 +56 281 2 892683611 +901 391 5 877131205 +848 163 5 887048073 +238 255 3 883576644 +621 91 3 874965299 +151 966 4 879543457 +933 476 2 874854953 +845 340 1 885409719 +156 528 4 888185906 +416 727 5 893212730 +504 449 4 887839810 +793 7 3 875104031 +896 80 2 887160938 +322 655 5 887313946 +800 476 3 887646776 +724 1434 1 883757597 +880 356 4 880242475 +592 151 4 882608402 +459 271 4 879561731 +527 1149 4 879456637 +875 921 5 876465275 +933 569 1 874938850 +682 378 3 888517986 +916 183 4 880844395 +624 508 4 879793092 +821 473 3 874792813 +551 333 5 892775584 +782 1590 3 891500028 +77 98 4 884752901 +934 1018 4 891192849 +130 752 5 888211864 +567 1298 5 882425998 +872 121 4 888479206 +537 224 3 886030109 +769 685 3 885424305 +450 423 5 882371904 +862 568 3 879304799 +727 559 2 883712282 +159 322 5 880485443 +788 665 2 880867890 +932 560 2 891252198 +102 301 3 885697464 +391 427 5 877399512 +715 98 5 875963792 +217 405 3 889069878 +387 324 4 886481002 +722 845 5 891280842 +805 38 3 881695080 +854 14 4 882812225 +710 357 4 882063649 +798 1063 3 875303502 +642 147 4 885606986 +104 407 2 888465936 +933 866 2 874938620 +655 1631 4 888685734 +782 316 4 891498436 +633 71 3 875325804 +176 181 3 886047879 +587 302 3 892870956 +790 155 3 885157061 +271 963 5 885848518 +387 173 4 886480288 +943 172 4 888638940 +602 243 3 888638277 +883 66 3 891694636 +537 131 4 886031407 +553 213 5 879949290 +788 470 3 880868042 +389 196 3 880087516 +878 739 3 880869303 +893 298 4 874827623 +344 473 4 884900248 +941 222 2 875049038 +482 249 2 887644102 +753 304 4 891399686 +854 1281 2 882812314 +305 865 3 886323563 +878 321 2 880865300 +472 143 4 875980823 +234 258 2 891033627 +521 496 2 885253668 +698 22 1 886368545 +184 212 4 889909618 +833 346 5 884828744 +762 256 3 878719448 +919 988 3 875288362 +518 742 5 876823804 +919 412 2 875289061 +914 775 3 887124121 +942 71 5 891282840 +896 172 5 887158555 +923 460 4 880388426 +773 652 3 888538950 +890 429 4 882403045 +790 1028 3 884462692 +280 364 3 891702291 +886 153 3 876031279 +880 369 1 880175503 +399 465 3 882350005 +631 294 3 888465155 +804 159 4 879445441 +833 655 2 875131810 +498 238 4 881957195 +864 69 5 888889863 +846 12 5 883947777 +892 420 2 886610267 +747 134 5 888640180 +940 50 4 885921542 +489 328 4 891366748 +326 428 5 879877283 +795 410 2 880559227 +134 338 4 891732532 +892 1124 4 886608423 +459 932 4 879563334 +883 170 3 891693139 +878 393 3 880870487 +653 145 2 880153705 +843 632 2 879447146 +727 53 1 883712851 +664 1 4 878090087 +25 7 4 885853155 +892 436 3 886610201 +712 78 4 874957207 +869 100 5 884493279 +669 252 2 892549865 +840 499 4 891209241 +350 127 5 882345502 +452 288 2 876298593 +903 824 3 891031833 +236 717 3 890117409 +851 8 4 875731776 +474 1063 5 887927728 +883 302 5 891691410 +385 100 4 879440098 +5 448 2 875720692 +913 204 4 880946539 +874 182 4 888633311 +7 357 5 892135347 +622 117 4 882590291 +798 785 3 875639553 +639 990 1 891238689 +712 228 3 874730261 +116 124 3 876453733 +933 25 2 874854589 +497 156 5 879361872 +483 173 4 884047454 +825 566 5 881101543 +513 257 4 885062519 +374 241 5 880939035 +862 823 4 879303869 +753 69 4 891401851 +405 730 1 885545975 +789 100 5 880332089 +846 495 4 883948840 +11 239 4 891904617 +851 831 5 875731105 +682 922 3 888517816 +847 740 4 878938982 +489 300 5 891366571 +932 155 3 891251869 +918 958 3 891988491 +889 156 5 880178204 +271 174 5 885848314 +776 200 4 892920381 +916 756 3 880843892 +709 226 3 879848551 +452 285 3 888492147 +298 485 3 884124993 +544 346 4 884795135 +605 546 2 879429729 +472 581 4 875981551 +342 475 5 874984233 +764 418 4 876430033 +903 156 5 891466376 +918 1 3 891987059 +826 89 5 885690526 +851 326 3 891961717 +524 501 2 884636262 +823 514 5 878438024 +773 1036 3 888539907 +462 322 5 886365773 +889 731 2 880181191 +895 1014 3 879438082 +881 504 3 876537577 +846 365 2 883950434 +862 222 5 879304196 +927 29 5 879194033 +804 1101 3 879444805 +302 266 2 879436981 +892 473 3 886611023 +351 258 5 879481386 +851 223 4 875731567 +846 580 5 883949335 +877 738 4 882678137 +919 99 4 875373945 +175 111 4 877108015 +897 498 5 879990683 +290 62 2 880473583 +314 93 1 877886221 +772 1025 3 877533820 +719 162 4 879361003 +823 588 3 878438179 +42 136 4 881107329 +416 147 5 893212730 +347 411 5 881653132 +650 363 2 891382876 +661 179 4 876014125 +850 435 4 883194859 +230 64 5 880484416 +781 135 5 879634387 +749 1034 2 878850656 +201 1166 3 884113806 +405 1027 1 885548048 +450 781 4 882398220 +886 435 3 876031459 +622 418 3 882669905 +178 873 3 886678647 +506 205 5 874874760 +711 447 4 879994656 +880 461 4 880175666 +863 302 4 889288910 +896 616 3 887160653 +851 180 5 875731605 +943 53 3 888640067 +840 504 3 891208647 +294 455 3 877819490 +910 284 3 880821969 +943 541 4 888639954 +868 1206 3 877112033 +314 1291 1 877892519 +576 1 4 886985079 +866 315 4 891221206 +707 70 3 886287376 +880 53 4 880168411 +782 1190 2 891500230 +862 257 5 879303207 +887 195 4 881380438 +741 28 3 891018339 +328 471 3 885048004 +609 948 1 886895886 +453 403 4 877562293 +782 331 3 891497854 +767 432 5 891462829 +872 334 1 888479894 +936 16 4 886832596 +856 300 4 891489386 +796 1197 3 892660955 +925 447 4 884717963 +792 405 3 877909753 +805 425 5 881698745 +747 22 3 888640099 +547 321 4 891282732 +561 639 3 885809291 +715 22 4 875963792 +647 294 3 876532501 +738 4 4 875351486 +722 405 3 891280918 +861 321 1 881274504 +725 873 4 876103794 +387 153 4 886479649 +680 1 4 876816224 +805 588 2 881695527 +887 168 4 881380067 +880 298 4 880166827 +503 381 5 880383174 +906 300 3 879434378 +787 748 4 888979606 +719 468 3 879361023 +939 15 5 880261094 +882 546 2 879863031 +405 757 1 885549095 +833 860 2 875124604 +796 525 4 892761390 +437 401 5 880143505 +847 496 4 878940954 +385 693 4 879443315 +793 181 4 875103810 +747 96 5 888639397 +6 182 4 883268776 +486 279 4 879874939 +82 212 4 878769410 +618 88 4 891309440 +10 40 4 877892438 +741 131 4 891456776 +405 341 1 885549904 +374 406 3 880936233 +871 326 5 888192971 +665 924 4 884291165 +899 427 5 884121267 +459 477 1 879562995 +668 340 4 881523737 +22 209 4 878886518 +805 1065 5 881697792 +521 183 3 884477630 +790 1016 2 884461925 +354 10 5 891216692 +429 737 4 882387505 +654 1115 3 887863779 +807 432 5 892530498 +916 268 5 880843093 +497 172 5 879310705 +598 260 3 886711034 +870 558 4 879270313 +650 1050 3 891369620 +930 282 4 879534667 +911 432 3 892839551 +632 318 5 879456843 +608 134 3 880403810 +612 202 2 875325221 +806 127 5 882386323 +770 302 2 875971568 +669 235 2 892549865 +924 12 4 885458093 +195 135 5 875771440 +835 1045 4 891034023 +801 682 5 890332775 +114 522 5 881309662 +805 942 3 881698861 +682 756 2 888521942 +778 550 4 890670638 +663 546 3 889493118 +459 926 4 879563639 +642 384 5 886131546 +13 280 4 882399528 +916 249 3 880843579 +892 755 4 886610048 +900 654 2 877833924 +620 112 4 889988341 +870 496 5 882801371 +914 381 3 887122325 +867 273 3 880078991 +886 87 4 876032473 +198 942 4 884209569 +831 156 4 891354751 +502 754 2 883701927 +599 846 5 880952229 +694 180 4 875727672 +405 658 4 885545516 +727 553 2 883710186 +751 121 4 889135401 +846 794 5 883948495 +846 376 2 883950665 +661 496 5 876015530 +921 71 4 879380957 +880 771 3 880243848 +875 652 5 876465275 +807 403 4 892979116 +922 288 2 891445064 +659 387 4 891387227 +788 520 4 880868919 +650 504 3 891369889 +934 66 4 891193187 +671 583 3 884034132 +378 550 2 880332949 +450 521 4 882394180 +63 285 3 875747470 +328 51 3 885047417 +809 319 3 891036744 +886 216 5 876031695 +911 855 5 892839084 +424 259 2 880858979 +761 9 2 876190235 +755 299 2 882569732 +479 154 3 889126007 +94 631 5 891720950 +759 127 2 875227798 +798 72 3 875638883 +664 4 4 876526152 +536 1 5 882318394 +707 275 4 880059687 +548 252 3 891043977 +619 597 4 885953850 +943 233 5 888639327 +902 275 4 879465894 +339 250 5 891033830 +793 50 5 875103942 +346 58 3 875122112 +545 385 3 879899266 +892 135 5 886608643 +843 162 2 879447625 +642 1054 3 885606482 +682 77 3 888517562 +456 204 3 881374086 +642 796 4 885605909 +539 202 5 879788405 +710 271 3 882063367 +851 9 4 875730379 +615 190 3 879447968 +835 257 3 891032738 +18 381 4 880131474 +896 801 2 887161564 +896 117 2 887159173 +766 178 4 891308968 +659 836 4 891045943 +545 395 4 879901092 +273 268 5 891292905 +486 148 2 879874903 +632 7 3 879456955 +448 874 3 891889281 +798 1003 3 875639478 +887 65 5 881381679 +391 131 2 877399455 +62 275 4 879372325 +782 1143 2 891500194 +629 276 5 880116887 +187 204 2 879465370 +878 662 1 880871600 +593 1016 4 888872636 +617 1612 1 883788511 +805 196 2 881698778 +846 173 4 883947819 +833 223 4 875038888 +878 237 3 880868955 +910 1025 2 881420507 +115 83 3 881172183 +891 866 5 883489497 +458 52 4 886398187 +932 484 5 891249586 +308 257 4 887741526 +537 676 4 886029889 +892 96 4 886608977 +537 514 4 886030583 +792 1054 1 877910666 +934 234 2 891191875 +408 242 4 889679947 +885 82 4 885715907 +864 283 5 878179514 +279 482 4 875306613 +833 401 2 875135113 +879 304 4 887760912 +698 211 2 886367066 +927 255 4 879177027 +442 871 1 883389455 +782 887 4 891498676 +660 429 4 891199833 +344 117 3 884899767 +308 66 4 887740788 +407 1160 1 890687550 +883 1404 3 891694372 +889 955 3 880179536 +843 527 3 879448138 +933 1188 1 874938474 +64 693 3 889737654 +919 331 4 875920290 +140 988 3 879013719 +840 127 4 891203366 +524 56 4 884634849 +913 60 3 880946006 +394 795 2 881059103 +916 42 5 880844958 +478 235 2 889388357 +782 333 3 891497698 +936 246 4 886832282 +410 272 4 888627138 +276 23 5 874787467 +639 714 2 891239886 +167 641 4 892738341 +279 47 4 875296375 +840 520 5 891204089 +434 411 5 886724873 +617 218 2 883789464 +749 208 5 878848044 +714 748 5 892777877 +894 117 3 880416219 +862 180 5 879305097 +896 632 2 887159261 +907 96 5 881030348 +303 831 4 879544080 +878 640 1 880867751 +934 495 4 891195604 +104 471 3 888465290 +416 1483 4 893214333 +339 94 2 891036423 +407 443 3 876341493 +496 333 3 876063848 +592 1276 1 882609057 +378 69 3 880046069 +933 652 3 874854424 +621 890 1 883799608 +870 458 1 879377028 +795 132 3 883249522 +724 264 3 883758119 +938 50 5 891356314 +798 1035 4 875638717 +201 1103 3 884140487 +387 53 4 886481737 +763 133 3 878923609 +716 142 3 879797555 +488 509 2 891294365 +748 286 3 879454107 +470 291 2 879178777 +707 173 2 886286380 +293 696 2 888905229 +848 121 4 887043266 +805 9 3 881697667 +775 887 4 891032866 +847 191 4 878940652 +528 202 5 886101846 +786 4 4 882844294 +582 271 4 882960418 +502 323 4 883702447 +666 108 3 880313929 +868 69 2 877107416 +659 467 3 891384414 +768 620 2 880136410 +76 24 2 882607536 +455 372 4 879112055 +346 395 1 875264785 +649 815 3 891440274 +271 125 3 885848062 +846 218 4 883948089 +848 421 5 887043777 +632 182 3 879457641 +699 19 4 878882667 +868 161 2 877107056 +749 621 3 878848795 +660 181 4 891197998 +286 173 4 877531407 +324 268 4 880575045 +847 8 4 878941082 +223 278 4 891549901 +788 448 2 880869355 +926 313 3 888351622 +869 127 5 884493279 +391 96 3 877399171 +798 476 2 875637822 +781 878 1 879633752 +385 514 4 879443045 +776 318 4 891628632 +888 280 3 879365475 +143 690 2 888407622 +919 260 4 875288362 +566 1028 2 881651339 +840 971 4 891209449 +870 317 4 875050723 +437 129 1 880140433 +625 705 3 891262983 +554 7 3 876549087 +793 122 3 875104532 +779 117 4 875503280 +652 748 3 882566948 +429 746 3 882386096 +710 12 4 882063648 +878 535 1 880871600 +417 121 3 879646591 +625 597 2 891273801 +932 178 5 891249821 +748 633 4 879454428 +101 1028 3 877136449 +716 227 3 879797177 +860 269 2 891535991 +630 264 2 885666353 +506 489 4 874876651 +345 215 4 884993464 +62 117 4 879372563 +848 504 3 887038397 +776 588 4 892210723 +558 137 4 879435896 +815 427 5 887978255 +586 693 3 884066060 +648 514 2 884796822 +709 1188 4 879848695 +882 194 3 879879668 +882 147 4 879863106 +805 68 3 881694886 +907 1244 5 880159381 +636 106 4 891449328 +275 419 3 880314383 +851 472 3 875730312 +875 937 4 876464830 +843 230 3 879443763 +23 451 2 874787256 +705 363 2 883427530 +167 184 1 892738278 +70 993 3 884064688 +363 39 4 891495339 +709 98 4 879846648 +938 1283 3 891357190 +840 212 4 891209159 +101 472 3 877136711 +123 294 1 879809529 +749 67 1 878850588 +659 226 4 891387194 +574 887 4 891279214 +280 216 5 891701685 +494 498 4 879541246 +883 1226 3 891914483 +683 879 3 893283997 +747 231 3 888734113 +786 286 4 882841571 +557 270 3 881179166 +880 762 4 893028813 +643 96 5 891447747 +874 676 3 888632585 +633 581 3 877212085 +833 576 3 875224603 +755 310 4 882569604 +734 22 3 891025301 +561 1294 1 891710133 +406 95 4 879793081 +916 792 3 880844569 +696 178 4 886404542 +910 300 4 881420194 +615 28 4 879448759 +426 617 3 879441978 +840 645 3 891204714 +894 902 3 890409704 +222 380 4 878184545 +773 318 4 888540484 +116 690 3 877934548 +593 284 4 875659236 +918 88 2 891988276 +622 1419 2 882672120 +577 427 4 880474715 +805 111 3 881696671 +504 548 2 887909864 +883 1131 5 891695570 +660 47 2 891200456 +543 603 5 875665787 +903 293 4 891031226 +480 208 2 891208650 +916 60 4 880844058 +862 260 5 879302583 +509 245 2 883591109 +595 986 2 886921945 +847 141 3 878941144 +607 174 3 883879516 +479 234 5 879461318 +862 195 5 879304902 +378 569 3 880056736 +881 143 5 876539128 +538 176 4 877106918 +889 279 2 880177104 +190 826 3 891626040 +638 511 3 876695478 +497 144 4 879310792 +882 191 5 879867694 +886 710 4 876031601 +709 651 4 879846705 +1 18 4 887432020 +821 95 5 874793898 +871 359 3 888192743 +577 1336 1 880472018 +804 616 3 879442984 +875 479 4 876466687 +612 243 2 875324355 +14 276 4 879119390 +393 33 3 889554648 +903 324 4 891031697 +936 535 2 886833052 +709 833 4 879848792 +929 172 4 879640329 +927 471 4 879193906 +58 730 5 884305004 +534 824 4 877808260 +561 182 3 885807318 +887 1496 4 881380996 +676 993 5 892686294 +653 585 2 880153522 +854 1047 1 882812906 +529 324 2 882535563 +880 302 5 880166451 +896 195 4 887159578 +486 307 3 879874388 +881 763 3 879052317 +301 334 3 882075500 +694 172 5 875727399 +893 845 3 874828772 +254 228 4 886472609 +894 260 2 879896268 +699 95 3 878883173 +196 110 1 881252305 +882 143 4 879876806 +682 472 3 888522699 +642 385 5 885602571 +653 118 3 878854810 +447 202 3 878856078 +94 134 5 886008885 +721 268 4 877136831 +663 326 4 889491861 +798 243 4 875295566 +804 155 3 879445660 +703 121 5 875243049 +733 1375 3 879535559 +864 186 4 888887658 +916 150 4 880843318 +389 488 5 880087260 +838 718 5 887064051 +354 744 4 891216656 +817 300 3 874815542 +117 249 4 880125911 +707 160 5 886286193 +668 895 3 890349136 +774 96 2 888557276 +698 516 2 886367809 +826 665 5 885690819 +903 7 2 891031259 +669 79 2 891260474 +487 340 1 883440613 +696 285 4 886404617 +561 284 1 885809626 +940 98 4 885921421 +911 428 4 892839929 +361 226 3 879441352 +896 662 3 887160529 +782 301 3 891498139 +837 1049 1 875722298 +881 62 4 876538666 +578 268 2 890939697 +606 713 4 878142865 +878 781 1 880871600 +885 1221 3 885714362 +821 281 3 874793218 +777 9 5 875979380 +916 159 3 880845303 +870 87 5 889717575 +892 82 3 886609149 +883 900 5 891691654 +765 151 4 880346204 +930 176 3 879535663 +777 523 4 875980235 +863 362 1 889289122 +894 971 3 882404460 +847 117 2 878775570 +690 63 3 881177804 +472 264 3 875977870 +395 318 4 883764004 +805 100 5 881695196 +468 24 3 875280462 +828 331 4 891380166 +869 298 3 884491734 +922 810 4 891450866 +551 721 5 892784898 +881 419 5 876538691 +868 67 3 877109597 +334 38 2 891550141 +303 240 3 879468513 +806 302 4 882384513 +533 208 4 879191374 +291 576 4 874835198 +924 144 3 885458093 +899 518 4 884121379 +516 582 5 891290594 +138 147 4 879023779 +568 529 4 877907877 +901 402 4 877132632 +837 472 3 875722141 +416 420 3 886318155 +388 219 5 886441083 +897 140 3 879991403 +592 315 5 885280156 +924 433 5 885458168 +593 553 2 875672852 +843 214 3 879447453 +848 689 1 887037584 +932 109 2 891251891 +502 682 5 883701927 +867 222 4 880079094 +663 176 5 889493502 +887 845 4 881378087 +897 501 5 879991566 +648 1060 2 882212373 +683 626 3 893286550 +747 202 4 888733047 +587 1625 4 892871732 +494 245 3 879540720 +921 778 3 879380704 +911 479 5 892838787 +705 566 4 883428058 +903 121 3 891031487 +632 2 4 879459505 +751 237 2 889132301 +894 116 4 880416473 +735 275 4 876698643 +374 654 3 880396622 +1 59 5 876892817 +855 171 3 879825383 +826 426 2 885690379 +189 459 4 893264595 +588 732 4 890024325 +937 222 3 876769530 +889 1 3 880177104 +883 945 4 891754985 +664 496 5 878090381 +943 816 4 888640186 +193 159 4 889124191 +919 88 2 875373621 +378 588 5 880318415 +500 122 3 883876795 +639 323 1 891238876 +863 538 2 889289122 +774 1228 1 888557556 +532 834 4 874796151 +774 72 1 888556121 +811 895 5 886377311 +374 27 4 880396444 +879 117 4 887761865 +13 522 5 882140425 +839 235 4 875752433 +871 4 3 888193338 +159 358 1 893255969 +301 62 3 882078419 +38 1032 4 892432624 +880 27 3 880167965 +504 322 4 887831274 +525 7 3 881086051 +804 230 4 879442001 +394 90 3 880889528 +782 340 3 891497963 +694 385 4 875730082 +833 264 2 878077967 +896 496 4 887158029 +840 209 4 891204418 +503 116 5 879438559 +943 97 2 888639445 +715 85 3 875964300 +749 809 3 878848673 +690 77 3 881179906 +747 185 5 888640437 +592 463 4 882956321 +810 881 4 879895350 +897 684 2 879991524 +244 188 4 880605869 +892 641 5 886607845 +405 378 4 885546379 +701 312 3 891446730 +198 151 4 884206401 +889 1139 1 880182582 +804 737 3 879444781 +1 15 5 875071608 +838 174 4 887066078 +788 651 4 880868838 +541 90 4 883866093 +896 393 3 887159464 +889 739 3 880182517 +932 524 5 891249675 +57 1 5 883698581 +931 471 3 891036506 +354 1039 4 891217249 +919 300 4 875288164 +936 1009 4 886833231 +883 210 4 891723351 +870 132 4 882123548 +435 406 3 884134810 +393 248 4 887744202 +549 24 3 881672556 +875 462 4 876465188 +916 978 1 880843949 +570 321 1 881262795 +916 863 3 880846735 +823 25 3 878438642 +901 195 5 877131118 +393 1 3 887743611 +727 17 1 883711011 +774 1090 1 888558419 +788 566 4 880869908 +758 276 2 881976574 +856 312 2 891489450 +293 315 3 888904513 +886 101 4 876032103 +643 430 5 891447403 +537 651 3 886030862 +899 173 3 884121089 +493 317 3 884132267 +342 1016 1 874984596 +803 289 3 880055309 +450 498 3 882396351 +932 222 4 891251485 +835 606 5 891033200 +911 1039 4 892838357 +880 473 3 880167132 +435 139 2 884134134 +882 135 5 879876806 +660 1615 2 891198441 +747 32 5 888639890 +913 428 3 881367151 +864 736 5 888888025 +748 847 4 879454546 +620 95 4 889988005 +894 262 4 879896141 +401 185 4 891033523 +835 160 3 891034219 +268 450 1 875745536 +305 650 4 886323406 +723 164 4 880499019 +331 132 3 877196174 +932 163 4 891251246 +884 86 3 876859208 +917 282 4 882911480 +912 28 4 875966756 +609 147 1 886895016 +833 23 5 875123427 +825 274 4 889020826 +846 134 4 883947630 +371 496 4 877487052 +526 271 3 885682124 +682 774 4 888522894 +875 288 4 876464755 +548 9 1 891043008 +758 229 3 881978057 +536 416 4 882360929 +653 619 3 880152085 +373 216 4 877100232 +932 529 4 891251153 +707 936 4 880059836 +655 1044 3 887564483 +916 196 4 880844920 +833 32 5 875123255 +790 10 1 884461988 +907 225 5 880159442 +577 588 4 880474808 +900 478 2 877833923 +279 62 3 875310303 +300 1012 4 875650329 +882 181 5 879867430 +678 332 4 879544254 +862 7 5 879304196 +363 25 3 891496337 +854 469 5 882814571 +837 125 5 875722032 +921 172 4 884673823 +456 59 4 881372779 +514 237 4 875462611 +682 367 3 888521783 +894 676 3 880416315 +847 219 4 878940618 +280 946 4 891701027 +942 316 4 891282618 +892 15 4 886608237 +911 709 5 892839846 +895 117 3 879438082 +843 446 3 879443442 +750 338 3 879445961 +903 9 3 891031309 +843 528 3 879447030 +405 954 4 885547268 +897 176 5 879990492 +878 127 4 880867444 +835 378 4 891035309 +833 184 3 875039039 +159 845 1 880557130 +442 928 3 883391299 +601 228 5 876350400 +896 153 4 887158165 +881 7 4 876536164 +751 118 2 889298074 +550 682 4 883425783 +458 531 5 886395758 +660 423 3 891199942 +707 172 2 886286134 +545 139 3 884134959 +436 928 4 887770547 +160 302 5 878078074 +773 1555 4 888540618 +776 191 5 891628837 +798 172 4 875639656 +557 305 3 881179268 +747 473 3 888640305 +393 272 4 887742006 +838 124 4 887063696 +543 9 4 876382812 +871 79 5 888193275 +518 235 4 876823597 +894 472 3 880993730 +659 121 4 891331301 +817 924 3 874815947 +532 684 5 888635197 +514 68 4 875463551 +344 100 5 886382272 +806 504 4 882388658 +567 39 3 882426974 +886 433 2 876032165 +908 183 4 879722427 +748 204 3 879454662 +454 988 2 888015879 +738 271 3 892938330 +907 268 4 885860288 +704 286 5 891397015 +749 391 3 878849149 +844 161 3 877387857 +303 238 4 879467295 +893 290 3 874829161 +561 596 2 885809958 +854 19 3 882812826 +938 291 4 891356594 +387 95 2 886483620 +203 458 3 880434336 +868 191 3 877107143 +749 200 4 878848302 +788 4 3 880868401 +521 1 2 884475825 +496 151 3 876067445 +907 182 5 880159844 +854 13 3 882812755 +699 269 4 893140697 +328 300 5 885044640 +916 7 4 880843361 +551 300 4 892775687 +2 275 5 888550939 +276 365 3 874791339 +493 208 4 884131897 +684 216 3 878761717 +749 930 3 878849558 +932 434 5 891251015 +60 592 4 883327566 +846 569 3 883949728 +484 930 3 880270596 +63 322 2 875746986 +607 950 3 883879691 +297 724 3 875238883 +650 898 3 891368914 +521 403 4 885253758 +916 111 4 880843636 +417 818 2 886186925 +885 7 3 885715889 +655 59 4 887564613 +697 254 2 882621958 +719 410 1 883354126 +940 529 3 885921669 +180 735 4 877355337 +692 762 4 876953681 +923 823 4 880388383 +181 1215 1 878963304 +846 302 5 883946861 +907 928 5 880159198 +655 427 4 891585242 +660 209 4 891406212 +814 413 2 885411749 +550 258 5 883425409 +311 428 4 884366111 +916 642 3 880845227 +907 1220 5 880159642 +625 135 5 891999874 +633 96 4 875324997 +617 674 3 883789536 +935 286 5 884471835 +620 234 3 889987560 +749 233 5 878849286 +910 357 4 880821718 +298 402 3 884183063 +745 1 2 880122809 +708 628 3 892719246 +707 865 5 886286360 +790 233 3 885157230 +299 733 3 888855244 +622 69 4 882592041 +907 123 4 880159442 +787 294 3 888979606 +889 469 4 880180414 +746 405 2 885075476 +405 89 1 885547952 +643 210 4 891448318 +908 654 3 879722822 +892 566 4 886610318 +665 313 4 884618217 +887 496 4 881379685 +885 209 2 885713502 +882 96 4 879878140 +83 944 3 880308871 +807 930 5 893082778 +601 1116 4 876350944 +928 269 5 880935738 +870 589 4 880584534 +660 163 2 891199992 +655 479 4 888474107 +619 11 2 885954019 +940 213 4 885921597 +1 111 5 889751711 +782 307 4 891497854 +650 25 3 891385826 +1 52 4 875072205 +721 319 3 877137527 +521 265 3 885253247 +503 44 5 879454841 +655 333 2 887472879 +916 597 2 880843727 +624 405 4 879792671 +588 1078 4 890026999 +880 1620 3 880167288 +374 137 2 880393511 +915 305 2 891030070 +911 211 3 892839418 +916 385 3 880844834 +878 57 4 880867987 +916 155 2 880845808 +795 412 3 883254675 +256 100 4 882150313 +833 581 1 875223813 +92 1052 2 890251841 +834 628 5 890862648 +394 1484 4 881059619 +357 825 3 878952080 +313 778 2 891028904 +942 174 5 891283209 +618 416 4 891309720 +498 180 4 881955866 +654 282 3 887863513 +835 928 3 891032899 +332 64 5 888359944 +851 303 4 890804569 +671 38 5 884035992 +279 1437 3 892173418 +881 289 1 876535544 +919 295 3 875289170 +881 215 3 876538726 +873 358 2 891392698 +937 225 2 876769436 +917 879 2 882910604 +883 1118 4 891694276 +892 765 2 886610840 +620 627 5 889988037 +379 843 4 880962285 +561 526 3 885808796 +95 294 2 884266083 +825 407 3 889021180 +671 452 4 884035173 +556 523 5 882136205 +580 25 3 884125457 +846 419 5 883948949 +530 275 5 890627396 +767 481 5 891462614 +417 141 3 879648510 +880 383 3 880243147 +588 313 5 890014782 +864 145 4 888892230 +561 11 4 885807743 +907 744 5 880159015 +447 24 3 878854520 +859 381 4 885776352 +305 45 5 886323275 +870 31 4 875680070 +592 409 1 882609056 +474 729 4 887927152 +891 121 4 883490041 +219 433 5 889403133 +940 482 5 885921198 +816 243 4 891711554 +378 412 2 880334409 +779 275 4 875992583 +429 230 2 882385985 +886 568 3 876032973 +741 255 3 891458098 +642 1425 2 885606024 +835 685 4 891032627 +916 684 3 880844395 +843 89 5 879444670 +618 1221 2 891309636 +468 91 5 875301056 +622 190 4 882669762 +933 194 4 874854135 +864 333 5 890463283 +607 855 4 883880027 +938 235 1 891357137 +526 298 4 885682528 +882 101 3 879879807 +774 174 3 888557198 +864 66 3 888889784 +385 231 2 879449309 +898 271 3 888294567 +880 409 2 880243069 +144 690 3 888103573 +903 13 5 891031632 +851 112 1 875730629 +619 849 2 885954184 +880 1093 3 880167384 +748 172 4 879454810 +924 178 5 885457922 +676 255 5 892686348 +844 930 2 877382574 +885 25 4 885713017 +886 28 4 876031413 +847 196 3 878939839 +896 450 1 887161728 +805 65 3 881698861 +919 236 5 875288681 +943 282 5 875502230 +795 81 4 883250055 +890 523 4 882403299 +639 28 4 891239239 +690 203 4 881179631 +144 137 4 888104150 +315 79 4 879821349 +904 732 3 879735584 +150 291 4 878746764 +932 100 5 891249586 +690 158 4 881177835 +881 322 4 879051511 +795 62 4 883254564 +913 461 4 881725816 +200 239 3 884129602 +417 158 2 879649389 +537 463 3 886030738 +902 289 3 879463433 +588 821 4 890026339 +826 720 3 885690819 +22 526 4 878888026 +721 329 3 877137214 +627 56 2 879531248 +587 321 2 892871113 +456 94 3 881375482 +715 125 3 875962477 +548 405 4 891415643 +160 250 4 876768106 +773 343 1 888538175 +854 696 2 882812961 +42 735 4 881108548 +671 121 4 875389187 +537 890 1 886029526 +868 158 1 877111328 +462 328 5 886365773 +943 614 5 888639351 +614 121 4 879464398 +609 313 5 886894637 +291 405 4 874805984 +708 678 2 892719007 +846 380 3 883949380 +907 1167 5 880160106 +894 298 3 879896673 +908 194 3 879722932 +933 229 1 874939078 +726 1 4 890079166 +933 89 4 874853957 +301 721 3 882076494 +655 975 3 887426446 +590 298 2 879438911 +712 451 5 874956872 +940 301 3 884800988 +381 142 3 892697337 +844 549 3 877387280 +655 378 1 887430410 +642 1091 4 885606608 +450 140 3 882376585 +904 747 4 879735584 +694 506 4 875727270 +416 387 3 886319288 +506 135 5 874873157 +541 304 4 883864207 +125 67 5 892838865 +843 300 3 879442947 +916 153 3 880844087 +655 448 4 888474934 +552 1362 3 879222698 +157 244 5 886890406 +745 275 1 880123905 +69 222 3 882072956 +924 288 3 886065748 +246 433 5 884921488 +907 1157 5 885862211 +663 975 4 889492720 +276 33 4 874792018 +870 569 2 879714631 +670 521 4 877975344 +865 99 1 880235060 +795 564 1 883774317 +292 203 4 881105442 +833 664 3 875124225 +492 172 3 879969415 +924 114 3 886327724 +106 70 3 881452355 +537 806 3 886031074 +645 177 4 892053274 +567 197 5 882425901 +157 235 5 874813703 +145 96 5 882181728 +405 69 4 885545111 +884 949 2 876860604 +582 676 2 882961133 +659 357 4 891331959 +871 286 3 888193136 +891 476 5 883489605 +716 283 4 879793294 +893 125 3 874828864 +495 969 4 888632443 +534 300 4 877807486 +782 261 2 891498865 +916 948 2 880843838 +233 9 5 876021262 +758 328 1 880672321 +60 483 5 883326497 +116 270 3 879864042 +870 461 4 875680099 +825 16 3 889020779 +889 1065 4 880180817 +855 59 3 879825488 +798 746 4 875914066 +265 1016 3 875320462 +783 880 4 884326545 +247 100 3 893081395 +642 779 3 885843177 +756 97 3 874829484 +699 1010 3 878882563 +835 465 3 891033957 +907 1048 5 880159404 +868 732 3 877107416 +804 96 5 879441677 +882 393 4 879880132 +495 233 4 888633594 +452 76 4 875562410 +548 683 4 891042954 +305 961 3 886323440 +269 479 4 891448980 +588 463 4 890023879 +802 665 4 875985469 +382 1268 5 875947296 +801 355 3 890332929 +566 108 2 881651360 +843 239 3 879447670 +701 292 4 891446754 +349 696 3 879465934 +416 255 5 893214041 +913 191 5 881725737 +758 506 3 881975061 +883 512 5 891693058 +721 380 5 877138661 +269 697 4 891447931 +757 148 4 888444948 +478 232 2 889396180 +632 475 3 879457582 +625 50 5 891273543 +943 151 4 888692699 +896 493 5 887157978 +938 222 5 891356479 +385 197 4 879442360 +445 1067 1 891200390 +863 886 3 889289327 +589 336 1 883352535 +318 208 4 884495664 +24 1007 5 875322758 +158 290 4 880135160 +450 151 5 882376658 +868 631 4 877111453 +910 50 5 880822060 +854 180 4 882813537 +663 1161 3 889493069 +280 379 5 891702171 +503 283 5 879438258 +897 418 4 879991282 +721 125 3 877147080 +881 176 4 876537679 +886 184 4 876031309 +806 174 5 882387870 +848 141 4 887040159 +880 1041 4 880175128 +476 70 3 883364680 +864 367 5 888890316 +894 935 3 879896815 +872 282 5 888479253 +933 53 1 874855104 +814 288 4 885410789 +941 358 2 875048581 +313 357 5 891013773 +719 509 2 879360933 +49 477 2 888067727 +761 402 3 876189829 +871 342 4 888192475 +624 410 4 879793156 +695 887 3 888805797 +622 154 4 882669740 +709 288 5 879847945 +892 168 4 886607778 +855 512 4 879825382 +23 642 3 874785843 +747 63 3 888733510 +373 229 4 877104048 +870 657 5 875050748 +741 1041 4 891457424 +885 100 3 885712944 +453 90 3 877561942 +239 382 3 889180578 +916 286 4 880843062 +535 429 3 879618569 +913 228 5 881368310 +880 177 5 880167778 +189 568 4 893266205 +328 385 3 885046027 +507 754 5 889964121 +880 230 3 880167732 +763 1039 4 878923513 +760 255 3 875666375 +598 243 2 886711192 +216 189 3 880244972 +882 131 4 879876573 +664 522 3 876525998 +559 259 3 891035407 +932 174 4 891250017 +645 23 5 892054364 +734 282 4 891025974 +559 261 3 891035378 +770 100 5 875971949 +805 127 3 879971215 +334 218 3 891548317 +18 28 3 880129527 +747 94 4 888733537 +561 737 3 885810706 +934 209 1 891190695 +900 100 4 877832904 +897 181 3 879990622 +847 568 4 878941442 +697 260 3 882621651 +178 328 3 882823416 +881 255 3 876536332 +466 7 4 890284819 +878 154 3 880866369 +878 1149 4 880868820 +563 167 4 880506771 +189 170 4 893265380 +655 515 4 887425458 +374 546 5 880936389 +423 887 5 891394673 +268 239 3 875310491 +643 527 3 891448502 +582 508 4 882961082 +614 286 2 879464507 +393 392 4 889555225 +58 223 5 884305150 +922 77 4 891447833 +757 470 3 888467016 +932 517 5 891250643 +899 71 4 884121424 +864 157 4 888886984 +561 478 4 885807290 +698 945 2 886367100 +207 129 3 877751037 +916 218 3 880845303 +825 456 3 889021287 +927 168 4 879193383 +642 581 2 886569209 +702 380 4 885767774 +787 879 4 888979721 +391 435 5 877399100 +665 1028 4 884291133 +487 94 3 884050838 +886 56 4 876031365 +864 1248 3 888891628 +693 211 2 875484789 +635 877 3 878878901 +833 38 1 879818760 +904 682 4 879735158 +653 198 4 880151426 +537 195 3 886031407 +261 300 5 890454310 +910 12 4 880821718 +429 697 3 882385858 +615 286 4 879447500 +537 483 4 886030583 +796 294 3 892611979 +903 421 3 891380488 +782 1173 2 891500230 +573 237 4 885843527 +892 378 4 886610137 +32 181 4 883717628 +513 258 4 885062286 +832 288 3 888259984 +758 209 5 881975118 +18 56 5 880129454 +939 717 4 880261784 +607 100 4 883879316 +85 745 3 879829021 +896 720 1 887235026 +751 21 5 889298093 +842 749 4 891218060 +479 498 5 879461179 +902 144 5 879465894 +708 117 4 877325236 +932 636 3 891251063 +119 492 5 874781198 +223 819 3 891550404 +769 237 3 885423954 +451 887 1 879012858 +878 97 3 880869090 +906 405 3 879435551 +653 318 4 878854383 +343 583 4 876407202 +826 177 5 885690676 +727 163 4 883711550 +578 313 5 887229355 +514 98 5 875309473 +488 223 4 891294158 +711 167 2 879995146 +568 523 3 877907877 +409 499 3 881168631 +627 17 2 879531397 +593 88 4 875672874 +813 304 1 883752380 +902 191 5 879465583 +95 194 5 879197603 +672 301 4 879787500 +757 405 4 888444583 +894 50 4 880416008 +328 71 4 885048004 +489 307 4 891363191 +682 550 2 888522541 +269 108 5 891457067 +878 1041 1 880871600 +227 756 3 879035658 +126 310 2 887854652 +892 72 4 886609939 +620 50 4 889988121 +903 272 4 892493587 +666 651 5 880139149 +577 1035 3 880475130 +707 506 2 886286742 +846 67 4 883950252 +882 202 4 879876806 +893 235 3 874829035 +456 214 4 881374586 +638 4 4 876695108 +653 333 5 878853678 +840 187 3 891205222 +90 942 4 891385165 +930 286 3 879533975 +833 1187 5 875035850 +426 489 5 879441978 +486 293 3 879874545 +293 411 2 888905170 +378 399 3 880333598 +545 227 4 879899380 +198 96 4 884208326 +870 428 4 875050672 +899 66 4 884122087 +805 234 5 881695244 +59 969 3 888204802 +793 237 3 875103842 +790 22 5 885155540 +824 748 1 877021077 +110 739 4 886988937 +305 222 2 886323378 +864 226 3 888889601 +747 608 4 888640475 +802 264 4 875986155 +622 1411 4 882671664 +500 161 2 883877001 +468 5 3 875287686 +648 763 2 882212200 +592 512 5 882956803 +429 241 3 882385934 +746 229 2 885075399 +851 1095 3 875731105 +870 55 3 879713899 +786 211 4 882843500 +835 405 3 891032793 +878 59 3 880866054 +659 210 5 891383889 +907 686 4 880159778 +733 762 4 879535847 +773 189 5 888539232 +693 504 5 875483302 +854 42 4 882813990 +934 1311 1 891195713 +733 245 3 879544466 +846 161 4 883948534 +796 248 3 892660465 +595 100 4 886921112 +542 64 4 886533421 +846 211 2 883948089 +494 204 5 879541298 +345 318 5 884916354 +737 258 5 884315127 +276 1232 3 874791488 +923 1011 4 880388097 +486 294 2 879874187 +532 229 5 892859148 +663 64 5 889493502 +311 79 4 884364623 +533 64 5 882902988 +903 157 4 891033430 +330 143 5 876546470 +393 1197 3 887743611 +924 482 4 885457858 +887 180 4 881380177 +910 313 4 884229092 +537 56 5 886030652 +653 237 2 878855365 +798 140 4 876175467 +320 358 4 884748485 +916 31 3 880844789 +883 273 4 892557850 +503 83 5 880383098 +478 869 2 889396102 +592 198 5 882956241 +613 1157 2 891227204 +207 177 3 891759050 +200 1028 2 884128176 +844 82 3 877387857 +504 667 3 887911808 +395 1060 2 886481149 +924 275 4 889286721 +397 474 5 882839559 +436 1489 2 887770731 +843 392 2 879447377 +217 11 4 889069741 +786 275 4 882841772 +710 301 3 882063407 +834 286 4 890860566 +862 99 4 879305097 +925 217 2 884718100 +537 325 1 886029153 +475 539 3 891451693 +868 503 3 877106421 +612 476 3 875324947 +805 140 3 881705892 +862 930 5 879303843 +734 162 3 891025393 +841 315 4 889066780 +622 1230 1 882672922 +806 628 3 882385309 +526 125 2 885682657 +746 233 4 885075399 +870 246 3 881000751 +541 924 5 883865133 +887 432 5 881379988 +401 429 3 891032847 +804 412 2 879445955 +505 951 3 889334067 +896 77 4 887160270 +85 482 4 879454304 +618 265 4 891307289 +487 426 3 884025034 +10 12 5 877886911 +30 69 5 885941156 +881 28 5 876537612 +652 328 4 882567058 +648 740 4 882211301 +932 675 4 891249538 +424 304 4 880858861 +738 91 4 875351462 +733 244 2 879535886 +836 750 3 885753475 +637 328 4 882900888 +916 1074 3 880844985 +942 272 5 891282420 +773 212 2 888538980 +406 502 1 880131642 +861 462 4 881274698 +932 603 5 891249877 +30 319 4 875060217 +580 829 2 884126077 +276 284 4 874786605 +500 367 3 883875835 +747 1015 4 888640046 +562 88 5 879196680 +916 820 2 880843636 +899 740 5 884120077 +583 286 4 879384052 +348 369 3 886523758 +711 408 5 886030557 +222 333 5 877562819 +468 124 5 875280331 +723 988 1 880499254 +934 211 4 891194661 +854 826 2 882813453 +754 127 4 879451420 +87 396 1 879877280 +95 392 3 880571428 +663 282 3 889492759 +795 431 4 883253193 +878 216 4 880869135 +271 427 5 885848518 +131 536 5 883681723 +711 958 5 876278721 +918 430 1 891987205 +935 274 5 884472352 +896 101 3 887160070 +766 514 4 891308927 +393 143 5 889554930 +851 456 2 875730719 +805 162 2 881698069 +727 111 3 883709266 +840 644 4 891204592 +825 106 4 880756504 +790 259 2 884461023 +577 1147 4 880474394 +671 2 4 884035892 +757 568 4 888466490 +592 762 5 882608402 +486 473 3 879875188 +831 208 2 891354612 +663 685 4 889492917 +894 9 4 880416039 +442 986 1 883391377 +100 346 3 891375630 +766 503 3 891309329 +709 825 2 879848744 +268 363 1 875744228 +642 121 5 885842289 +698 132 4 886367066 +435 432 3 884132968 +913 423 3 881368310 +566 660 4 881650172 +671 7 5 875388719 +543 66 3 874866535 +776 1172 2 892051948 +700 56 3 884493899 +782 1665 2 891500194 +830 418 3 891561540 +682 143 3 888523115 +796 385 5 893048342 +864 403 5 888887944 +928 114 5 880936742 +4 301 5 892002353 +387 676 1 886480733 +1 88 4 878542791 +826 1110 4 885690900 +610 66 3 888704000 +830 732 5 891464415 +614 237 2 879464216 +942 662 4 891283517 +883 382 3 891693200 +406 674 4 879792897 +271 176 3 885848640 +552 619 3 879222632 +838 750 4 887060879 +709 118 5 879848824 +751 90 3 889298528 +698 640 2 886367849 +655 164 2 887430072 +352 210 3 884290328 +807 757 4 892528374 +901 50 4 877126576 +886 1421 2 876034174 +851 193 4 875731722 +928 173 4 880936863 +617 1187 3 883788900 +883 52 3 891693169 +109 250 2 880563471 +851 248 4 875730379 +363 28 4 891495339 +798 50 5 875295810 +634 147 2 875729749 +405 1069 1 885546154 +867 1 4 880078521 +896 328 1 887235731 +860 216 4 885990901 +747 274 4 888733348 +927 154 3 879184534 +868 154 3 877107539 +744 174 4 881171421 +477 275 5 875941763 +693 382 4 875482689 +751 213 5 889132808 +486 222 3 879874939 +830 87 4 891462594 +810 678 4 879895453 +195 242 4 879141989 +659 609 4 891385769 +835 285 4 891032792 +567 59 5 882425762 +618 24 2 891308515 +622 7 5 882590269 +182 15 4 885612967 +843 194 2 879445590 +919 1014 4 875289384 +881 588 3 876538027 +360 175 3 880355888 +766 65 4 891309810 +633 148 1 875326138 +840 81 4 891204948 +922 252 2 891455230 +119 655 5 874781628 +883 1171 5 891695570 +867 182 4 880078521 +398 185 5 875717638 +406 185 5 879792811 +897 141 4 879991403 +126 303 3 887854825 +862 188 5 879305312 +903 214 4 891033781 +455 1167 4 879111123 +796 1415 3 893219254 +682 144 3 888522418 +413 321 3 879969259 +119 93 4 874775262 +151 531 3 879524738 +921 392 4 884673868 +640 161 4 874778479 +709 155 2 879849185 +195 841 2 891841129 +109 28 3 880572721 +902 328 3 879463212 +879 1047 2 887761477 +881 620 2 879052198 +893 597 4 874829230 +586 763 4 884067105 +184 197 4 889908873 +70 1 4 884065277 +583 655 5 879384471 +878 98 4 880866848 +871 289 3 888192475 +318 423 5 884495561 +936 1016 3 886832966 +293 117 3 888904696 +624 126 4 879792395 +796 300 4 892611903 +911 506 3 892839518 +296 514 5 884199624 +894 1281 3 885428159 +583 100 5 879384404 +691 692 5 875543153 +892 826 2 886610523 +852 826 3 891037806 +604 567 5 883668352 +647 196 4 876537620 +394 176 5 881130008 +628 984 5 880776981 +733 276 5 879535299 +939 283 5 880261291 +839 106 2 875752317 +877 173 4 882677865 +696 899 3 886403673 +903 12 5 891033334 +372 264 4 876869330 +506 199 4 874874109 +870 699 3 879901671 +894 331 4 881625708 +889 188 5 880181317 +645 746 4 892054683 +823 866 2 878438179 +435 946 2 884132072 +608 509 1 880403855 +921 1317 2 879380981 +886 399 3 876034041 +807 229 4 892530752 +738 117 3 875350913 +918 165 4 891986998 +642 1037 2 885605866 +884 923 3 876859109 +902 204 3 879465952 +527 433 4 879456464 +883 414 3 891694431 +906 124 4 879435212 +916 748 2 880843249 +757 472 3 888445086 +921 763 3 879380258 +738 269 2 892938254 +923 307 4 880386897 +463 1007 3 877387935 +807 421 3 892529805 +757 252 3 888444827 +564 924 3 888730534 +815 179 2 878694228 +439 268 4 882892424 +870 631 2 882123130 +894 1150 4 882404137 +784 332 4 891387812 +825 1008 1 889020680 +486 328 2 879873973 +870 945 4 879714039 +618 233 3 891309471 +399 356 3 882344512 +644 276 4 889077344 +655 1090 3 887430855 +492 478 2 879969583 +853 334 3 879364744 +715 367 3 875964272 +567 523 3 882425966 +782 1243 3 891498558 +864 159 4 888891049 +694 484 4 875726707 +943 824 4 875502483 +879 292 4 887760823 +847 480 3 878940039 +757 825 3 888444865 +79 285 5 891271652 +655 1248 3 887473879 +316 223 4 880853849 +929 127 5 878402162 +342 153 4 874984261 +885 735 3 885714764 +631 323 2 888465216 +646 259 3 888528978 +798 755 3 875638627 +794 455 4 891034986 +788 742 3 880869508 +704 506 4 891397712 +414 433 5 884999394 +892 180 5 886609622 +887 491 2 881379566 +488 127 4 891294606 +319 350 3 889816233 +430 123 2 877225965 +773 732 3 888539492 +649 127 5 891440356 +797 327 2 879438992 +588 716 5 890028167 +41 156 4 890687304 +901 739 5 877132671 +807 720 4 893080801 +419 1 4 879435590 +785 496 4 879438810 +535 300 3 879617199 +932 191 4 891249620 +897 196 3 879991258 +852 121 4 891036901 +363 230 2 891497440 +795 21 3 880557953 +599 1048 2 880952357 +844 588 4 877388040 +281 300 4 881200643 +830 424 1 891560972 +845 896 3 885409374 +142 268 5 888639837 +927 768 4 879195972 +537 79 3 886032123 +505 95 4 889333313 +412 195 4 879717621 +936 815 3 886833571 +864 223 5 888887097 +916 678 2 880843249 +912 479 4 875966107 +373 231 3 877104976 +936 300 3 886831501 +655 197 3 887426864 +299 399 2 889503373 +881 393 4 876539091 +894 289 2 879896109 +885 953 3 885714531 +720 896 5 891262669 +342 42 3 875319659 +350 1039 4 882345975 +16 943 3 877719206 +612 100 4 875324790 +321 942 3 879440954 +655 447 4 888813372 +919 750 3 885059452 +807 398 3 893082268 +279 231 2 879573060 +940 629 3 885921800 +306 257 4 876504354 +882 196 4 879867263 +451 873 5 879012684 +636 272 5 891448155 +896 928 3 887161033 +724 906 1 883757468 +802 201 4 875985601 +629 732 5 880117430 +833 273 3 875035954 +92 169 5 875653121 +916 549 3 880845543 +332 50 5 887916675 +870 653 4 875050559 +896 482 3 887158359 +271 43 3 885849817 +504 155 3 887912634 +805 729 3 881699728 +774 181 3 888557236 +537 603 4 886030622 +712 1074 3 874957086 +758 715 4 881977057 +870 191 3 881001249 +638 187 2 876694704 +914 781 5 887123464 +894 113 4 882404484 +749 143 4 878847926 +927 121 5 879199250 +924 172 4 885458060 +894 678 3 879896268 +520 990 4 885168906 +655 1136 2 887427568 +722 328 5 891280272 +406 367 4 880131929 +757 82 4 888466490 +916 198 4 880844463 +223 28 4 891550684 +732 294 3 882590201 +882 290 4 879862217 +269 268 5 891446132 +871 651 2 888193337 +399 1042 3 882348283 +345 40 3 884993662 +621 118 3 880738353 +655 639 3 887473803 +339 229 3 891035584 +715 145 2 875963657 +593 496 5 875671198 +911 209 5 892839784 +864 591 4 878179608 +385 204 1 879441728 +766 606 3 891309011 +456 217 3 881374883 +455 581 3 879111763 +62 747 3 879375247 +697 271 4 882621460 +896 679 3 887160813 +733 281 2 879536567 +868 566 1 877111394 +693 185 5 875483301 +930 255 3 879534667 +733 250 1 879535502 +63 993 2 875747635 +277 1012 3 879543454 +796 79 5 892661988 +726 294 5 889828701 +823 735 4 878438754 +766 172 3 891309052 +940 382 3 885921953 +894 1194 5 879897235 +263 181 4 891299448 +864 318 5 888887071 +621 3 5 881444887 +724 294 4 883757726 +553 187 5 879948609 +453 652 3 877554443 +885 174 5 885715780 +634 866 3 875729668 +655 1549 2 891585574 +344 258 3 884814359 +701 19 5 891447164 +394 294 4 880886919 +38 162 5 892431727 +892 233 5 886610049 +697 252 1 882621940 +916 380 2 880845206 +913 346 3 883110406 +592 813 4 882607955 +943 100 5 875501725 +92 418 3 875653769 +680 517 4 876816162 +845 308 4 885409493 +592 735 5 882956158 +758 922 5 881980034 +618 95 3 891309319 +75 222 5 884050194 +924 318 5 885458060 +354 887 4 891180527 +934 533 3 891189640 +6 8 4 883600657 +881 105 3 876537285 +922 715 3 891452354 +887 465 5 881381307 +931 293 4 891036604 +650 203 3 891369924 +592 287 3 882608457 +773 11 2 888539963 +897 118 5 879993275 +899 229 2 884122254 +851 820 3 875730947 +524 58 4 884635031 +314 1225 3 877891575 +405 1429 1 885549903 +578 751 3 887229503 +749 941 5 878849877 +786 174 4 882844294 +136 257 3 882693234 +442 164 2 883390083 +575 603 5 878148012 +684 73 4 878762087 +897 496 5 879994113 +340 196 4 884990861 +936 346 4 886831445 +773 23 5 888540507 +929 284 2 878402162 +727 810 2 883712652 +903 664 4 891033755 +222 685 4 881061165 +897 281 4 879993553 +911 154 4 892839492 +442 441 3 883390083 +276 636 4 874792483 +773 720 1 888540218 +916 746 3 880844262 +903 346 3 891380391 +693 611 4 875484406 +862 250 5 879303158 +347 713 3 881652568 +682 346 2 888518320 +57 257 5 883698580 +940 204 4 885922015 +782 321 2 891498381 +218 657 5 881288265 +789 741 5 880332148 +495 208 5 888632134 +910 98 4 881421309 +664 183 3 876526462 +828 906 3 891034148 +301 755 4 882078308 +682 235 1 888521833 +936 898 1 886831535 +932 528 5 891249962 +788 29 3 880871240 +680 24 4 877075214 +625 97 4 891263057 +826 79 4 885690526 +397 529 4 885350326 +642 926 5 885605454 +932 357 5 891280138 +814 669 3 885411204 +727 144 4 883710395 +940 12 4 885921979 +803 259 2 880054971 +934 550 4 891193097 +545 188 2 879899233 +882 412 1 879863735 +908 494 3 879723046 +927 928 4 879183019 +921 678 5 879379447 +458 969 4 886395899 +620 420 3 889988005 +943 202 2 888639170 +123 1269 2 879872867 +698 385 4 886367366 +499 205 5 885599413 +336 393 3 877756618 +851 895 3 886534529 +889 128 5 880180897 +911 172 4 892838636 +523 1472 5 883701124 +294 293 4 877819897 +786 451 2 882844171 +716 419 5 879794775 +781 56 3 879633919 +749 66 3 878849433 +470 277 4 879178593 +848 512 5 887040025 +868 433 4 877103195 +447 952 4 878854315 +271 315 4 885847170 +894 109 1 880416219 +666 493 5 880139252 +906 9 4 879434846 +894 313 4 883518874 +782 1014 2 891499611 +678 14 3 879544815 +529 307 5 882534996 +592 237 4 882608061 +175 566 3 877108015 +907 1051 5 880159530 +831 1119 3 891354751 +566 143 3 881650502 +551 1051 4 892784593 +10 286 4 877886162 +605 930 2 879429706 +479 338 1 887064372 +416 470 4 878880154 +758 509 5 881975213 +926 321 3 888636202 +160 9 3 876767023 +773 568 1 888540091 +942 99 5 891282880 +626 270 2 878771355 +905 345 4 884983089 +658 201 3 875147873 +637 1284 1 882905070 +421 173 1 892241319 +922 1 5 891448551 +943 426 4 888640027 +748 213 3 879455454 +26 471 2 891371676 +592 985 4 882608698 +693 230 2 875483381 +316 323 1 880853152 +18 83 5 880129877 +10 179 5 877889004 +314 69 5 877888212 +908 591 4 879722996 +805 403 4 881694886 +806 265 4 882388328 +742 24 3 881335248 +790 121 3 884461657 +682 82 4 888522541 +883 805 4 891723323 +495 9 5 888632069 +471 627 1 889827881 +833 174 2 875038529 +892 215 4 886608743 +168 1028 2 884287846 +699 1643 3 879147169 +916 476 2 880843775 +393 367 3 889730187 +833 1149 4 875123677 +860 100 4 885991075 +788 510 5 880867933 +843 495 3 879447170 +186 77 5 879023694 +934 153 5 891225716 +389 579 1 881384611 +328 56 4 885045993 +911 142 4 892840950 +654 751 3 887863034 +896 147 2 887159464 +727 1206 2 883712315 +632 258 4 879459777 +911 216 4 892839929 +189 1154 3 893265380 +807 510 5 892529401 +7 607 3 891352831 +596 289 3 883539079 +537 381 3 886031678 +885 94 2 885713833 +495 1263 4 888636062 +617 1316 1 883788511 +781 50 5 879634362 +874 100 4 888632411 +828 170 3 891037231 +795 1095 3 883767108 +279 17 4 875306552 +913 11 4 881037106 +711 70 5 879993824 +808 875 4 883949915 +878 152 4 880870854 +921 151 3 879379994 +875 28 4 876465408 +799 127 4 879254026 +884 146 3 876858877 +773 32 4 888540467 +715 68 4 875963486 +823 156 5 878438403 +851 824 4 874767550 +616 292 4 891224448 +659 186 3 891385197 +247 181 4 893081396 +913 164 2 880826620 +815 472 1 878692826 +851 1059 3 875730533 +249 1167 4 879572284 +897 673 5 879990744 +627 148 3 879530463 +879 751 2 887760879 +441 100 3 891035441 +756 275 3 874827103 +642 220 4 887663380 +711 317 4 879993173 +684 732 4 878761717 +752 1527 1 891208077 +727 940 2 883713521 +561 1021 4 885807962 +455 385 3 879111907 +907 19 5 880158730 +854 1011 2 882813047 +717 240 2 884642868 +450 756 3 882398940 +532 1483 4 891909911 +653 840 4 878854737 +624 689 3 891961187 +882 66 4 879867980 +829 151 4 891990672 +860 1059 1 891536049 +156 77 2 888185906 +859 458 3 885775382 +632 210 5 879459738 +851 410 4 875730379 +624 255 3 879793435 +405 313 4 885544635 +880 209 3 880174623 +588 370 5 890031141 +851 845 3 874767408 +685 882 3 879451401 +862 61 5 879304244 +843 215 2 879447214 +426 671 4 879444170 +877 241 4 882678194 +896 1098 3 887159146 +874 125 3 888632585 +854 493 5 882813933 +790 1118 3 885156046 +488 288 2 891292682 +853 690 2 879364744 +661 652 2 888300680 +748 197 3 879454630 +503 475 2 879438319 +912 474 3 875965906 +705 526 3 883428028 +933 127 5 874853898 +889 411 2 880177541 +838 568 4 887067309 +847 578 3 878940805 +879 125 5 887761174 +436 273 4 887769233 +864 169 5 888887402 +829 1121 4 883149815 +416 223 5 893212572 +871 955 3 888193541 +193 333 1 889123039 +821 148 3 874792650 +805 739 1 881697013 +185 239 3 883524206 +373 735 5 877099137 +704 210 4 891397112 +862 640 3 879305351 +43 226 3 883956442 +875 269 4 876464694 +890 452 2 882404723 +746 176 5 885075243 +145 869 4 875272926 +606 472 4 880921408 +194 550 3 879524504 +142 338 2 888640199 +370 173 3 879434707 +854 83 4 882813691 +306 289 3 876503793 +881 200 2 876538185 +881 728 3 876539129 +664 174 5 878092802 +875 707 4 876464967 +605 526 5 879426371 +81 210 4 876534704 +606 527 4 880924790 +588 21 5 890015791 +661 566 4 876015688 +270 1007 5 876954036 +561 692 1 885810084 +708 819 3 877325349 +181 299 1 878961749 +713 272 4 888881939 +801 343 4 890332986 +798 584 3 876176071 +621 108 3 881445012 +851 23 4 875806721 +886 772 1 876031973 +863 272 5 889288910 +186 405 3 879023677 +747 192 5 888639014 +894 60 5 882404363 +936 24 4 886832904 +868 747 2 877109566 +768 255 4 888798611 +73 246 3 888792938 +701 127 4 891447139 +896 735 3 887159262 +868 1037 1 877113481 +766 198 4 891310210 +206 1233 1 888180018 +805 432 5 881695527 +120 118 2 889490979 +807 208 4 892528646 +669 483 3 892550196 +7 86 4 891350810 +432 313 4 889415763 +889 746 4 880179893 +916 399 3 880845135 +738 216 3 875352679 +795 919 4 880557617 +882 465 3 879876573 +728 286 3 879442532 +851 676 3 875729887 +452 77 3 875562997 +42 411 4 881106317 +862 135 5 879304762 +807 659 4 892977077 +555 1013 4 879962642 +776 89 5 891628708 +690 89 2 881179505 +847 13 3 878938897 +757 174 5 888445637 +805 946 2 881695591 +804 496 5 879441973 +936 324 5 886831576 +881 136 4 876538537 +763 26 4 878919055 +907 173 4 880160140 +933 232 1 874938354 +592 458 3 882608107 +715 1016 4 875962049 +630 472 3 885667391 +574 1022 2 891278916 +862 89 5 879304526 +368 441 3 889783617 +589 690 4 883352600 +877 202 4 882677936 +429 739 3 882387140 +379 707 5 880525926 +753 173 5 891401757 +854 421 3 882814028 +864 474 4 888889863 +624 879 3 879792171 +561 201 3 885807291 +396 974 4 884646152 +714 924 3 892777408 +637 619 2 882903914 +780 28 5 891363618 +940 209 4 885921800 +892 1118 3 886609939 +655 944 3 891585504 +779 125 4 875996809 +429 651 4 882384772 +145 11 5 875273120 +326 1126 2 879875243 +798 554 2 875638884 +259 546 3 883372151 +869 1163 2 884492238 +442 239 3 883388401 +796 36 1 893047967 +896 1249 2 887161518 +559 22 1 891034003 +629 56 5 880117430 +450 1112 3 882396352 +217 684 5 889069782 +622 231 4 882592735 +690 53 2 881180005 +632 1028 2 879459649 +23 449 2 874787083 +460 9 3 882912150 +591 710 3 891031603 +716 826 2 879794410 +934 162 3 891191546 +618 174 5 891307539 +859 763 4 885775699 +882 568 5 879865629 +943 399 1 888639886 +902 95 4 879465834 +927 132 2 879194268 +425 403 4 878738548 +708 981 3 892719304 +889 98 4 880177857 +378 577 2 880333995 +894 990 3 879896268 +784 690 4 891387249 +645 521 4 892054990 +887 127 3 881377854 +897 188 5 879991493 +788 748 3 880867855 +666 707 5 880314103 +92 239 4 875654125 +887 928 5 881378620 +715 182 5 875965035 +62 285 4 879372455 +758 210 4 882053302 +438 619 4 879868159 +921 128 1 879381287 +830 222 3 891561065 +763 692 2 878915958 +830 451 4 892503035 +861 45 5 881274698 +328 258 5 885044482 +788 658 3 880869862 +429 540 3 882386916 +851 435 4 875731225 +653 172 3 878854051 +854 471 2 882812928 +695 312 3 888806193 +257 1010 4 882050150 +640 301 2 886353820 +591 85 3 891031500 +758 350 4 885016523 +488 132 3 891294108 +938 928 5 891356656 +141 294 4 884584247 +776 510 5 891628708 +817 294 4 874815593 +889 493 3 880178313 +886 63 3 876033015 +301 183 3 882076291 +389 87 5 879991330 +854 357 4 882814235 +802 200 4 875985686 +437 202 5 881001715 +796 550 3 893048562 +8 358 2 879361732 +787 359 3 888979547 +363 789 4 891494962 +711 582 5 879993605 +145 926 3 875271094 +865 547 5 880143232 +813 750 4 883752264 +95 679 2 879196513 +38 1029 1 892434626 +330 117 5 876544654 +532 311 2 885415471 +178 174 5 882826719 +892 7 4 886608473 +315 202 3 879821037 +430 151 4 877225516 +797 298 3 879439362 +940 1167 4 885921198 +334 290 3 891544997 +437 215 3 880140325 +742 127 5 881335361 +707 482 3 886286032 +922 29 3 891450805 +497 449 2 879310966 +561 1115 3 885809146 +644 546 4 889076875 +833 578 1 875224603 +880 541 2 880167918 +650 208 5 891371090 +881 43 3 876539595 +903 106 2 891031883 +591 712 3 891040366 +642 4 3 885605768 +936 25 4 886833231 +147 286 5 885594040 +495 1207 5 888637300 +465 275 4 883530521 +874 313 3 888632098 +698 228 3 886367442 +916 180 5 880844753 +910 307 2 880821815 +165 202 4 879525855 +34 898 5 888602842 +938 121 5 891356895 +327 875 4 887743600 +497 388 4 879363253 +805 679 4 881694854 +848 23 2 887040025 +652 879 3 882566924 +455 79 4 879112377 +896 62 2 887161488 +38 1037 4 892434283 +374 196 1 880395426 +743 9 5 881278061 +881 96 3 876537718 +658 530 4 875147995 +650 191 4 891381546 +405 1101 3 885546287 +835 200 4 891033927 +312 181 4 891699426 +883 124 5 891717419 +786 126 4 882842019 +114 200 3 881260409 +747 7 4 888639176 +761 742 2 876190370 +18 962 4 880131631 +922 380 4 891454218 +623 258 4 891032358 +760 195 4 875668535 +908 50 4 879722397 +911 1060 4 892841033 +887 56 5 881381382 +784 299 3 891387155 +943 393 2 888639638 +469 238 4 879525237 +848 50 5 887038397 +917 237 5 882912385 +843 651 2 879447837 +877 692 4 882677898 +631 315 4 888464916 +871 333 2 888192202 +763 13 3 878919116 +927 82 2 879197269 +930 165 5 879535609 +919 117 4 875288934 +903 120 2 891032101 +328 518 2 885048198 +668 902 2 890349285 +880 1119 3 880242028 +932 443 4 891250059 +847 70 3 878940584 +555 252 5 879962551 +894 70 3 882404536 +22 174 5 878887765 +19 294 3 885412034 +397 14 3 885349348 +795 95 4 881529851 +897 521 5 879990877 +916 825 1 880843750 +181 1325 1 878962816 +537 845 2 886030078 +559 94 3 891035979 +887 385 4 881380502 +804 425 4 879442643 +59 727 2 888205265 +886 919 4 876031869 +864 404 4 888890316 +519 268 5 883248065 +812 333 5 877625294 +600 53 4 888452563 +559 202 1 891035674 +523 169 5 883701800 +665 471 3 884292009 +749 180 4 878848483 +899 89 4 884121647 +490 255 1 875428309 +712 141 3 874730320 +451 1038 1 879012889 +940 70 3 885921500 +699 206 3 878883173 +893 260 2 874828296 +823 1067 4 878438511 +930 64 4 879535641 +216 3 4 880233061 +222 1250 1 881060635 +881 576 3 876538824 +916 147 1 880843578 +405 709 1 885547314 +840 654 4 891204160 +417 238 4 879647768 +551 265 4 892776336 +561 207 3 885809245 +759 118 5 875227954 +545 542 2 880348933 +751 486 3 889133737 +916 652 4 880844291 +804 930 3 879444115 +925 98 4 884717862 +716 494 5 879795542 +722 823 3 891281570 +927 775 3 879197949 +885 50 3 885712252 +279 222 1 875295943 +472 100 5 875978534 +881 768 3 876539505 +551 672 1 892785056 +538 174 4 877106619 +806 553 3 882389831 +519 751 4 884545801 +790 427 4 885155172 +913 180 3 880758150 +472 216 4 875981230 +10 479 5 877891966 +752 260 3 891208261 +450 59 4 882371904 +592 685 2 882608662 +59 505 4 888204260 +796 1039 4 892662223 +843 385 3 879444801 +896 422 3 887159972 +511 678 2 890005076 +913 83 4 881725904 +447 132 4 878855963 +896 380 2 887159748 +482 294 4 887643365 +334 419 3 891546181 +738 82 5 892844079 +843 229 3 879443908 +551 1118 5 892784199 +62 276 5 879372182 +420 286 4 891356790 +650 601 3 891386964 +864 127 4 888887216 +424 258 2 880858792 +854 1028 2 882813421 +698 526 2 886366611 +181 1242 1 878962349 +561 629 3 885809119 +896 655 4 887159109 +903 427 5 891466376 +626 879 1 878771418 +847 482 2 878940584 +664 724 3 876525695 +655 1144 3 888475015 +636 25 5 891449237 +422 271 3 879743635 +821 389 5 874793469 +854 756 3 882813364 +886 405 3 876033434 +768 597 2 883835210 +436 592 3 887770379 +893 476 3 874828772 +562 550 4 879196445 +887 501 4 881380884 +796 209 3 893048115 +938 260 4 891355996 +202 179 1 879727294 +943 406 3 875502597 +828 748 2 891035438 +247 258 5 893097024 +588 692 4 890024051 +862 467 4 879305143 +417 66 3 879648026 +551 760 3 892784592 +537 715 4 886032029 +894 1 4 880416286 +542 744 2 886532676 +751 481 4 889133684 +773 1170 3 888539711 +94 1065 4 885872942 +881 417 2 876538131 +426 641 4 879441931 +274 1163 2 878946162 +804 162 2 879446037 +727 474 3 883710910 +796 1511 3 892660955 +707 847 5 880060066 +506 484 4 882100828 +931 355 2 891036148 +8 566 3 879362423 +44 432 5 878347569 +749 485 4 878848097 +870 100 4 889717102 +929 22 5 879640394 +26 515 4 891352940 +774 250 3 888559123 +460 13 3 882912371 +838 9 4 887063696 +755 538 4 882570023 +923 1012 5 880387624 +551 211 5 892778035 +597 825 5 875343583 +177 42 4 880130972 +645 92 3 892054444 +930 137 2 879535734 +929 56 4 880817844 +871 181 3 888193335 +782 1292 3 891499700 +862 98 5 879304865 +1 13 5 875071805 +809 333 3 891036903 +875 32 5 876465275 +373 190 5 877100161 +880 1134 5 880241609 +457 160 4 882395078 +916 237 3 880843419 +153 322 3 881370900 +904 762 2 879735617 +938 323 3 891356282 +622 198 4 882669612 +622 431 5 882670169 +501 276 4 883348138 +891 148 5 891639793 +932 385 2 891251331 +933 144 4 874854932 +870 124 4 879376994 +60 228 4 883327472 +747 47 5 888639939 +588 286 4 890014710 +561 176 4 885807345 +655 471 3 887611594 +878 497 2 880872395 +897 1033 4 879993713 +859 288 4 885776056 +881 132 3 876538726 +117 1059 3 881008632 +715 629 2 875963921 +910 9 4 880821079 +555 301 4 879962096 +698 498 4 886366515 +653 482 2 880150218 +450 69 4 882373532 +406 1079 2 880132048 +846 87 4 883948417 +176 345 5 886046979 +838 83 5 887065807 +942 79 5 891282903 +33 288 4 891964066 +840 181 3 891204056 +717 1011 4 884644419 +868 755 4 877112184 +456 1421 3 881374437 +177 238 3 880131143 +898 327 5 888294529 +860 517 4 885991076 +385 23 5 879441313 +870 574 1 879902181 +363 384 1 891498066 +645 56 3 892053241 +227 15 4 879035725 +923 628 4 880387428 +753 653 4 891401851 +932 427 4 891249709 +880 109 4 880167114 +533 28 4 879192315 +690 636 4 881179969 +780 174 5 891363783 +887 419 2 881379748 +16 33 2 877722001 +936 455 3 886833148 +425 258 2 878737511 +921 820 3 879380328 +625 165 3 891999926 +145 333 2 885557626 +318 167 4 884497611 +926 302 4 888351713 +912 653 3 875965906 +508 79 2 883767543 +389 209 4 880087048 +16 410 5 877718107 +925 816 3 884718156 +865 475 4 880143425 +617 302 4 883788511 +928 48 5 880936817 +933 840 3 874939230 +933 167 2 874938491 +881 420 3 876539549 +360 471 4 880355177 +862 498 4 879304445 +504 401 2 887911789 +622 226 4 882670367 +661 195 5 888300488 +933 94 1 874938475 +897 65 4 879992811 +918 664 4 891987914 +921 1028 4 879380142 +689 358 4 876674762 +843 168 3 879446255 +222 230 4 878182058 +903 763 5 891031450 +740 271 2 879522753 +158 294 1 880132193 +66 300 5 883601089 +907 1016 5 880158939 +825 409 3 889020852 +622 1228 1 882672922 +872 546 4 888479560 +343 1047 1 876403776 +405 738 1 885547447 +848 127 3 887038159 +643 187 4 891447127 +499 519 3 885599040 +937 295 4 876780336 +813 263 3 883752606 +815 403 4 878697532 +859 118 3 885775193 +178 269 4 882823324 +21 286 3 874950889 +254 200 3 886472504 +754 286 3 879450947 +851 1014 3 874767408 +690 642 3 881179937 +867 69 2 880078797 +816 264 4 891711495 +771 172 4 880659482 +636 760 5 891449263 +707 167 2 886288133 +796 778 4 893047021 +772 328 5 876250551 +627 23 4 879529986 +766 497 3 891309736 +847 89 2 878940332 +896 24 4 887159344 +777 135 3 875980391 +837 1009 5 875721765 +724 895 4 883757727 +90 135 5 891384570 +387 12 5 886484336 +774 214 3 888556517 +929 433 2 880817753 +496 1091 1 876068433 +145 1279 1 875270903 +401 88 4 891033319 +734 164 3 891025524 +919 879 3 875920627 +764 633 5 876244991 +313 79 5 891015114 +425 455 2 878738992 +234 1010 2 892335415 +790 183 4 885156193 +919 875 1 875288362 +537 340 4 886028604 +792 15 4 877909865 +710 286 4 882063223 +419 69 4 879435628 +621 82 5 874964267 +748 408 5 879454428 +499 1483 1 892501259 +916 144 3 880844016 +719 98 5 877310859 +12 69 5 879958902 +908 515 4 879722463 +545 451 3 879900366 +897 866 5 879993797 +810 342 5 890083580 +686 50 4 879545413 +894 290 2 880416285 +605 333 4 880554130 +13 336 2 882140848 +629 435 4 880116756 +796 685 4 892660466 +892 98 5 886607912 +636 235 4 891449371 +932 162 4 891250704 +896 420 4 887158739 +213 924 4 878870846 +749 298 4 879788916 +807 515 4 892528999 +466 679 3 890285159 +344 496 4 889814194 +942 705 4 891283095 +941 763 3 875048996 +805 258 3 879971215 +883 785 3 891694372 +752 332 4 891208170 +326 523 4 879875057 +880 1014 4 892959041 +846 215 5 883949156 +688 879 5 884153712 +880 1224 3 880242632 +878 136 4 880866241 +344 319 1 886381985 +870 198 4 875679860 +218 98 5 881288233 +643 956 4 891448586 +752 752 3 891208213 +171 326 2 891034801 +695 333 2 888805952 +883 173 4 891694182 +394 549 4 880888452 +455 172 4 879112054 +795 50 3 880557114 +892 568 4 886610451 +608 197 5 880405431 +848 197 5 887038021 +266 100 5 892257865 +749 821 3 878847328 +846 515 5 883948457 +388 200 5 886441083 +883 304 3 891691534 +600 568 4 888451908 +891 118 4 883490041 +500 846 3 883865566 +513 763 3 885062453 +599 1 4 880951657 +663 864 3 889492917 +436 425 4 887769335 +326 519 5 879875533 +470 327 3 879178274 +889 405 2 880177567 +456 793 3 881374883 +716 72 3 879796766 +72 106 4 880036185 +373 465 4 877104202 +44 190 5 878348000 +833 13 2 875036139 +800 121 4 887646423 +908 482 3 879722667 +711 161 4 879994495 +655 372 3 887428507 +394 627 5 880888972 +727 25 3 883708927 +863 336 2 889289327 +724 351 1 883758241 +934 498 3 891191511 +751 739 3 889133556 +561 25 2 885809426 +221 117 4 875244633 +899 357 4 884121342 +436 11 5 887769777 +928 172 5 880936769 +293 410 2 888905034 +612 25 3 875324915 +160 325 3 878078115 +804 646 4 879441936 +916 425 5 880844102 +267 12 5 878971659 +647 202 4 876534275 +771 694 3 880659894 +798 801 3 875915317 +932 1411 4 891251647 +872 1376 2 888479603 +374 925 3 880394301 +704 197 5 891397948 +864 49 3 888892091 +523 1036 4 883702552 +829 20 3 881707829 +509 181 4 883591826 +13 813 1 882139863 +766 968 4 891310241 +877 98 5 882678427 +727 679 5 883712315 +650 642 3 891370065 +342 514 5 874984341 +778 35 1 891234406 +293 238 4 888906464 +458 515 4 886396729 +943 2 5 888639953 +614 1142 3 879463965 +862 1009 4 879303622 +638 226 5 876695217 +764 7 4 876243159 +272 134 5 879455176 +918 529 3 891987290 +887 143 5 881379781 +95 462 4 879197022 +840 637 3 891205199 +881 520 5 876538986 +883 550 3 892557605 +894 960 5 882404572 +936 221 4 886832373 +887 115 5 881380218 +642 393 5 885605834 +880 556 3 880242451 +549 323 2 881671879 +152 660 5 880150075 +833 76 2 875124382 +201 508 4 884140458 +833 197 3 875123427 +666 69 3 880139149 +910 1 4 880822060 +730 151 4 880310371 +932 165 4 891248996 +826 651 4 885690526 +293 820 2 888905306 +868 82 2 877112001 +757 145 3 888467442 +591 110 2 891031676 +642 191 4 886131970 +823 143 4 878438024 +916 188 3 880844789 +682 1019 5 888519519 +782 245 4 891498139 +782 1254 3 891499829 +592 688 1 882607744 +661 180 5 876016545 +721 876 3 877137447 +323 156 5 878739720 +94 997 4 891723190 +923 129 5 880387474 +250 202 4 878090253 +454 602 2 888267521 +795 203 3 881530198 +816 271 4 891711378 +116 127 5 876454257 +492 699 3 879969210 +193 347 4 889122906 +782 1088 2 891499611 +776 657 3 891628977 +896 183 4 887235690 +840 89 5 891204418 +501 544 4 883348372 +825 866 4 880756376 +627 690 5 879529406 +905 879 3 884983627 +13 882 3 886952438 +807 50 5 892529076 +916 566 3 880845574 +527 318 3 879456104 +12 127 4 879959488 +708 289 4 892719062 +796 559 3 893218453 +398 483 5 875720673 +592 1142 5 882608145 +393 9 4 887744448 +788 135 3 880869014 +328 715 2 885046853 +627 89 5 879531158 +907 71 5 880159911 +894 93 4 880416219 +374 823 1 880936476 +886 117 2 876033624 +374 181 3 880392846 +826 210 5 885690526 +910 25 3 880822203 +508 186 3 883777109 +901 210 4 877130999 +927 374 4 879195783 +659 79 4 891384036 +898 272 4 888294375 +920 288 3 884219768 +766 530 4 891309703 +328 167 3 885048861 +591 603 5 891031116 +813 270 5 883752380 +915 752 3 891030120 +834 287 2 890862974 +833 298 5 875036383 +932 478 4 891249962 +936 410 3 886833099 +896 68 3 887160313 +892 129 3 886608897 +183 50 2 891467546 +938 1254 1 891357019 +911 443 4 892841220 +727 128 4 883712016 +939 9 5 880260745 +706 117 4 880997195 +884 462 4 876859237 +870 693 4 879713979 +892 419 3 886609520 +860 307 3 879801617 +854 249 3 882812928 +880 147 4 880167224 +930 1048 2 879535160 +896 402 4 887159173 +872 930 3 888479654 +890 162 4 882403007 +936 6 5 886832636 +707 507 5 886286819 +830 134 3 891464054 +670 1299 4 877974905 +864 559 4 888888680 +805 810 2 881695105 +878 702 1 880871600 +870 9 5 879376967 +896 274 2 887158865 +591 283 4 891039565 +506 12 5 874873247 +655 61 3 887564614 +482 258 2 887644023 +882 1116 4 879879868 +899 684 3 884122501 +782 1670 3 891497793 +722 696 4 891281570 +931 315 5 891037577 +658 919 2 875145841 +774 597 2 888558565 +244 193 4 880605638 +588 216 5 890024781 +786 484 4 882843398 +660 257 4 891197934 +788 736 3 880870299 +435 55 5 884131434 +943 194 5 888639192 +864 194 4 888886984 +881 25 3 876536198 +537 980 3 886030051 +881 515 4 876535967 +763 317 3 878919180 +706 24 3 880997172 +430 303 4 877225239 +489 879 5 891366652 +590 137 5 879438878 +806 226 3 882389908 +676 286 4 892685252 +889 294 3 880176686 +38 768 5 892433062 +587 988 2 892871641 +758 640 5 881975119 +387 568 2 886483099 +871 1430 3 888192744 +716 489 4 879795496 +661 471 4 876037167 +829 1 4 891990554 +922 51 4 891448451 +95 631 4 880573627 +650 258 3 891368960 +844 222 3 877381629 +719 402 4 879360933 +748 4 4 879454912 +249 844 5 879572795 +643 357 5 891446889 +680 151 5 877075164 +450 366 3 882396489 +711 306 5 879991049 +425 50 5 878738335 +781 172 5 879634362 +903 1142 5 891466376 +673 898 3 888787312 +940 516 4 885921401 +844 919 3 877381534 +425 27 3 878738695 +457 208 4 882396705 +864 678 4 887686545 +659 655 4 891383561 +883 955 5 891696689 +929 423 4 879640394 +839 864 3 875751958 +790 80 2 885157575 +539 163 4 879788572 +714 9 3 892775786 +405 1529 1 885549635 +759 24 3 875227904 +723 178 3 880498938 +827 938 3 892157282 +330 82 4 876546298 +92 597 2 886443328 +711 200 4 879993918 +940 302 4 884801316 +807 393 4 892528954 +497 926 2 879309759 +592 518 5 882956011 +804 642 3 879445556 +238 237 3 883576281 +733 297 3 879535559 +846 213 3 883948534 +924 427 4 885458010 +560 22 2 879975613 +705 377 4 883427857 +898 315 5 888294375 +659 1044 4 891386071 +428 310 4 885943651 +766 71 3 891309913 +429 936 4 882385934 +711 387 4 879994777 +907 313 5 885860093 +551 143 4 892777274 +330 468 5 876547608 +887 142 1 881381207 +889 433 4 880180612 +213 288 4 878870226 +933 210 3 874853734 +882 1052 2 879864125 +393 315 5 887741960 +422 323 3 875129668 +851 332 1 884205263 +429 177 4 882385065 +940 651 4 885921243 +731 494 3 886179161 +541 623 3 883874778 +496 206 4 876068615 +868 114 5 877103371 +806 231 3 882390614 +904 202 2 879735584 +940 269 4 884801316 +656 300 2 892318614 +796 8 5 892690059 +878 515 4 880865900 +622 725 3 882672177 +766 1050 3 891309668 +632 203 3 879457217 +567 83 4 882425791 +823 42 4 878438357 +865 1240 5 880235099 +892 184 4 886609726 +224 729 3 888104188 +273 896 4 891292873 +938 508 4 891356367 +446 300 3 879787149 +840 756 4 891203664 +716 168 5 879796942 +804 182 4 879444924 +781 134 5 879634256 +896 128 4 887159321 +479 647 5 879461039 +933 665 1 874938878 +902 326 3 879463310 +870 382 3 875680568 +798 734 3 875639061 +527 134 5 879456490 +885 99 4 885714858 +883 1005 5 891695570 +883 778 4 891694372 +782 256 2 891500150 +790 203 4 885155459 +815 121 2 878692344 +825 844 2 892949244 +840 501 4 891209159 +499 258 2 885598932 +904 603 4 879735843 +435 818 2 884133938 +929 205 4 879639969 +933 186 4 874938563 +871 82 3 888193336 +916 568 4 880845949 +592 282 4 882608572 +764 531 5 876244991 +863 286 5 889289191 +880 384 3 880175157 +655 111 2 887523664 +899 603 4 884121379 +878 584 4 880867803 +871 331 3 888192202 +567 489 5 882426673 +655 357 4 887426864 +870 196 3 879539965 +114 172 5 881259495 +883 204 4 891694182 +181 370 2 878963418 +852 264 3 891035999 +758 61 3 881976289 +601 387 3 876350583 +537 173 4 886030682 +713 690 1 888882179 +870 477 4 876319062 +883 12 4 891717356 +506 85 3 874873795 +940 100 3 885921471 +883 285 5 891723351 +256 21 4 882163677 +405 170 1 885549506 +737 160 4 884314881 +756 983 2 874830305 +678 300 4 879544295 +846 802 2 883949508 +884 1018 2 876860514 +749 546 3 878849857 +855 475 4 879825383 +633 654 3 875324654 +622 172 5 882669826 +554 77 4 876550778 +851 176 4 875731816 +125 763 3 892836574 +121 315 4 891389282 +886 693 4 876033897 +572 813 4 879449573 +505 82 4 889333274 +435 235 4 884132266 +923 713 5 880388173 +624 282 4 879793330 +405 1573 1 885549464 +709 540 3 879848744 +844 421 4 877387219 +472 208 5 875981317 +663 13 3 889492562 +346 226 3 886273914 +788 528 5 880868144 +450 1518 4 887138957 +27 1017 4 891542897 +790 475 3 884461657 +846 432 3 883948457 +897 402 5 879991069 +280 411 3 891701871 +919 250 3 875288749 +904 794 4 879735710 +417 1411 3 880952418 +25 177 3 885852488 +795 405 1 883774317 +851 689 3 883148867 +715 233 3 875964468 +892 487 5 886609295 +222 223 4 878181535 +753 187 3 891401851 +868 1188 1 877110060 +620 1091 4 889988069 +903 79 4 891033070 +665 931 3 884291810 +809 315 5 891036743 +758 419 4 881974639 +561 925 3 885810084 +862 559 4 879305312 +911 153 5 892839784 +533 44 4 879191594 +939 280 5 880261291 +868 317 5 877107961 +749 139 4 878850084 +627 276 2 879530173 +934 213 4 891190744 +663 1067 3 889492562 +766 132 4 891309522 +786 50 4 882844295 +548 98 5 891044410 +267 89 5 878971690 +788 172 3 880869687 +593 179 5 877728878 +479 15 3 879460140 +653 232 2 880152426 +453 67 4 888205882 +870 710 3 875680212 +933 56 5 874853688 +634 225 3 875729668 +864 81 3 888891836 +7 317 4 892133670 +881 229 4 876538726 +94 721 2 891721078 +927 278 1 879181133 +934 99 3 891194379 +897 40 3 879990361 +529 689 2 882535049 +707 504 1 886286246 +937 50 5 876769374 +887 50 5 881377758 +778 246 2 890769632 +854 175 4 882813797 +159 597 5 880989838 +308 1118 4 887740500 +773 251 3 888538573 +868 550 4 877112393 +254 135 5 886471880 +217 825 3 889070266 +484 161 4 891195444 +643 234 4 891447260 +629 200 4 880117333 +450 405 4 882474001 +494 127 5 879541080 +751 99 4 889134483 +738 197 4 875353869 +829 258 3 886993238 +663 948 4 889492258 +788 662 4 880871359 +276 469 4 874787441 +524 1184 3 884637173 +916 535 3 880843949 +398 662 2 875723172 +73 514 4 888626153 +854 168 4 882814435 +529 260 4 882535693 +429 562 2 882387575 +795 39 4 883253661 +445 879 2 891199331 +880 1217 3 880243712 +704 100 4 891397491 +882 99 5 879878486 +162 28 4 877636746 +430 298 3 877225547 +201 45 2 884111958 +906 286 5 879434335 +74 300 3 888333194 +862 678 4 879302614 +181 287 2 878963038 +889 83 4 880180817 +524 418 1 884637598 +63 294 2 875747047 +226 23 3 883889355 +144 183 4 888105140 +919 334 4 885059506 +917 248 4 882912385 +395 288 2 886481149 +825 25 4 880756904 +883 430 5 891694401 +880 1244 3 880167411 +342 1011 3 875318467 +430 297 4 877225599 +670 419 4 877974945 +833 645 3 875039416 +72 770 4 880037306 +756 222 2 874828967 +738 930 3 875351956 +343 735 5 876406576 +452 71 3 875273415 +782 1257 1 891500230 +392 875 3 891037851 +646 323 3 888529153 +655 603 4 887473605 +894 276 5 880416314 +663 984 3 889491690 +738 1 5 892844079 +709 65 2 879846868 +938 456 1 891357161 +901 1 5 877129870 +329 322 3 891655570 +815 837 5 878694983 +933 735 3 874853846 +617 854 1 883789464 +934 732 5 891194089 +405 466 1 885548633 +642 812 4 886455357 +504 739 3 887841201 +887 13 1 881378928 +932 77 2 891251869 +892 64 4 886608347 +778 405 3 890727091 +437 248 2 880141716 +804 504 3 879444444 +883 584 3 891693200 +721 204 5 877154765 +794 137 5 891035307 +796 245 3 892612031 +894 268 3 879896041 +429 300 3 882385168 +831 688 1 891354424 +553 527 3 879949290 +250 159 4 878092144 +851 310 5 891961663 +60 141 3 883327472 +586 56 5 884060112 +798 1503 3 876176071 +244 1012 2 880604670 +582 313 5 882960461 +833 448 3 875124495 +570 340 3 881262145 +788 230 3 880869754 +833 980 3 875035800 +320 51 5 884750992 +529 300 4 882535049 +911 451 2 892840253 +753 316 4 891399903 +892 1091 2 886611079 +505 648 4 889334614 +38 413 1 892434626 +650 639 3 891371116 +849 118 5 879695153 +703 926 4 875242885 +793 222 3 875103971 +178 223 4 882827433 +522 180 5 876960824 +571 181 4 883354940 +853 880 5 879364822 +936 235 3 886833099 +922 576 4 891450805 +796 216 5 892761543 +749 226 4 878848533 +846 778 4 883948804 +234 843 2 892334400 +864 164 4 888887216 +293 73 2 888906869 +314 568 5 877888391 +823 503 5 878439315 +846 497 5 883948685 +506 455 3 876070976 +867 191 5 880079117 +630 568 4 885668328 +537 499 3 886031634 +252 124 5 891457490 +921 400 4 879381158 +882 411 3 879863457 +297 659 4 881708055 +710 100 4 882063920 +267 959 3 878972524 +378 82 4 880045935 +877 52 4 882677507 +886 180 5 876031392 +486 281 3 879874629 +932 1116 4 891250943 +75 866 2 884050733 +577 22 5 880472153 +399 919 2 882510379 +880 401 3 880175077 +892 238 4 886608296 +660 523 3 891200534 +913 100 3 880824823 +85 663 5 879454437 +546 892 4 885141260 +620 588 5 889988036 +457 252 4 882395638 +932 447 3 891250944 +378 204 4 880056826 +918 72 1 891988491 +715 713 4 875962201 +629 326 3 880116103 +908 79 4 879722850 +244 56 5 880602440 +299 510 5 889501392 +416 926 2 886315298 +608 234 5 880404847 +805 645 5 881704193 +919 304 4 875920245 +665 237 3 884290635 +761 282 4 876190752 +588 151 4 890026263 +775 315 5 891032742 +314 1048 4 877886221 +690 127 4 881178213 +293 66 2 888906781 +746 174 5 885075243 +886 58 4 876032331 +443 948 1 883504844 +617 200 5 883789425 +234 768 2 892335990 +450 415 3 882398220 +537 953 3 886031473 +903 240 4 891031730 +787 691 4 888979123 +493 959 2 884131263 +234 699 3 892079538 +783 294 3 884326506 +666 50 3 880313447 +877 463 4 882677311 +675 223 1 889490151 +230 10 3 880485530 +524 493 4 884638025 +860 287 3 885991407 +666 100 4 880313310 +450 232 4 882398666 +719 294 2 877311109 +295 941 4 879518359 +648 286 1 882210926 +868 207 3 877107189 +416 1136 4 886318186 +416 624 3 886317237 +429 583 3 882386121 +758 43 3 881977747 +932 470 3 891251331 +748 79 4 879454998 +468 143 5 875288197 +448 288 1 891887161 +459 1014 1 879563506 +269 673 4 891448322 +717 1051 3 884642868 +816 678 4 891710837 +43 143 4 883955247 +872 294 3 888478882 +846 99 4 883948989 +693 228 2 875483947 +670 161 2 877975392 +328 481 3 885048500 +470 742 4 879178455 +916 58 5 880844291 +756 88 1 874829743 +863 348 2 889289456 +374 732 4 880395320 +661 298 3 886841348 +405 1090 1 885548670 +349 459 4 879465569 +535 135 3 879617978 +679 111 3 884487715 +877 155 2 882677997 +296 659 5 884198772 +551 33 5 892778297 +790 168 4 885155230 +843 197 2 879446638 +833 467 2 875038626 +939 680 2 880260636 +159 15 5 880485972 +833 230 1 875223923 +751 738 4 889299733 +896 51 2 887159951 +327 250 2 887745272 +303 1209 2 879544021 +594 276 3 874783470 +790 283 2 884461517 +246 175 4 884921362 +933 411 2 874938689 +643 172 5 891447093 +591 511 3 891031145 +201 33 4 884112487 +889 147 3 880176926 +592 591 4 882608402 +6 237 2 883599914 +425 684 2 878738385 +655 1448 3 887523224 +268 449 2 875744357 +41 514 4 890687042 +130 203 4 875801716 +435 10 5 884131950 +7 164 5 891351813 +757 1014 3 888444827 +880 731 4 880175023 +90 491 4 891384959 +536 95 5 882360361 +445 1378 2 891199635 +362 678 2 885019651 +695 302 4 888805836 +407 189 4 875042268 +889 124 4 880177050 +538 58 4 877109688 +621 62 4 874964496 +858 754 4 879459087 +664 525 4 876526580 +846 212 5 883948804 +479 200 5 889125775 +910 124 3 880821124 +825 1051 4 880755693 +591 4 4 891040366 +887 471 3 881377972 +747 1041 4 888733567 +330 627 5 876545479 +936 244 4 886833099 +286 183 4 877531864 +859 410 4 885776056 +422 234 4 879744015 +872 717 4 888479582 +679 751 5 884325826 +835 514 3 891033986 +941 298 5 875048887 +378 728 3 880332998 +14 524 5 879119497 +682 48 4 888517264 +748 300 4 879454172 +877 531 5 882677128 +635 742 3 878879190 +567 303 3 882426350 +727 147 3 883709402 +463 286 4 877387935 +382 252 2 875946262 +846 181 5 883947694 +846 271 5 883946611 +174 98 5 886452583 +429 11 4 882385464 +921 762 2 879380237 +664 317 3 878095280 +694 241 3 875727877 +892 760 3 886609330 +870 713 4 879376966 +815 659 5 878694952 +539 215 4 879788623 +940 709 5 885921451 +918 1639 5 891987571 +830 399 5 891561999 +435 79 4 884131016 +757 188 3 888466614 +586 551 2 884061189 +514 268 4 885180579 +727 366 3 883712397 +918 1195 4 891986664 +851 597 4 875730686 +897 290 4 879993457 +435 155 3 884133710 +267 181 5 878974783 +222 465 2 878183898 +296 462 4 884197330 +543 47 3 877547672 +807 484 4 892530966 +790 568 3 885157087 +919 148 3 875289417 +774 674 2 888557683 +799 331 4 879253795 +224 526 4 888082495 +92 108 2 886443416 +455 744 3 879109881 +721 237 3 877145312 +892 525 5 886607957 +588 50 5 890024427 +881 580 5 876538251 +666 129 4 880313270 +588 403 3 890027525 +201 737 2 884112077 +582 473 3 882962062 +919 82 5 875373945 +405 621 1 885548932 +885 188 3 885715946 +606 1011 3 880921408 +671 654 3 884034800 +916 117 2 880843509 +851 1051 2 875730279 +618 1163 2 891309266 +741 216 4 891457342 +878 485 3 880866103 +846 182 5 883948089 +705 117 5 883426944 +786 188 5 882843237 +890 663 4 882402949 +585 286 4 891281385 +657 508 4 884239057 +318 941 4 884497715 +885 393 3 885713680 +239 179 5 889180410 +745 302 4 880122475 +803 264 2 880055309 +615 14 5 879448016 +889 239 4 880180554 +880 96 4 880167695 +731 202 5 886186568 +397 591 4 885349562 +474 126 4 887915366 +884 638 4 876859301 +883 338 4 891695193 +849 207 5 879695680 +648 151 2 882212288 +472 603 5 875980376 +588 720 4 890027247 +767 648 4 891462917 +864 625 4 888890273 +939 591 5 880260994 +413 100 4 879969535 +885 111 4 885712996 +398 283 3 875652760 +270 118 3 876956038 +916 674 3 880845522 +886 265 4 876032553 +864 563 3 888892539 +784 260 4 891387704 +435 953 3 884132968 +886 15 3 876031869 +599 866 2 880952229 +886 659 4 876033731 +776 679 4 891628708 +200 465 4 884129112 +676 483 4 892686459 +682 1228 1 888522699 +897 121 5 879993376 +880 761 4 880167965 +43 731 4 875981190 +449 213 3 880410652 +643 82 3 891448095 +529 690 3 882535180 +896 1045 3 887159012 +935 282 4 884472539 +592 99 5 882955663 +768 274 3 880136201 +804 951 3 879444781 +289 109 3 876789628 +655 1311 3 887474473 +794 273 4 891036111 +697 263 1 882621714 +815 190 5 878693381 +889 919 5 880177050 +868 547 3 877112559 +795 1 4 883767204 +660 182 2 891200213 +503 185 5 879454753 +727 399 3 883712717 +380 1101 4 885479487 +345 210 4 884992174 +189 185 5 893265428 +892 62 4 886610011 +862 483 5 879304326 +497 42 4 878759777 +716 234 5 879795269 +828 288 3 891034237 +880 24 3 880167175 +831 271 2 891354225 +758 616 4 881976377 +796 43 4 893188486 +942 265 5 891282880 +659 1021 5 891331825 +932 600 2 891252412 +886 92 3 876031481 +833 47 5 875123299 +491 493 4 891185129 +115 100 5 881171982 +886 959 3 876032473 +634 845 3 875729148 +588 234 5 890024161 +121 11 2 891387992 +883 863 3 891693497 +80 887 4 887401236 +201 705 3 884113302 +795 10 4 880556527 +943 1044 3 888639903 +793 3 4 875104592 +545 684 4 879899380 +311 781 2 884366307 +889 258 4 880176550 +665 121 2 884290480 +933 166 3 874854062 +633 195 4 875324997 +347 260 1 881652250 +910 118 3 881420857 +416 330 3 885114446 +754 1197 3 879451841 +747 644 5 888639397 +13 778 3 886302694 +757 449 3 888466782 +535 504 3 879617574 +938 597 3 891356679 +634 245 3 875729217 +710 420 4 882064434 +393 586 3 889731040 +181 1341 1 878962169 +209 293 4 883417796 +617 671 4 883789425 +880 588 4 880241219 +741 178 5 891018435 +312 484 5 891698174 +843 1 3 879446186 +655 93 3 888474986 +118 234 5 875385386 +897 235 3 879993519 +532 98 5 893119438 +934 1411 4 891195437 +814 667 2 885411204 +294 255 3 889241958 +782 880 4 891498322 +763 1180 2 878915765 +488 134 2 891294707 +524 429 2 884635358 +707 462 4 886286133 +895 294 4 879437727 +145 249 4 875270832 +818 258 4 891870301 +901 423 4 877131685 +853 340 1 879364744 +758 433 5 881976820 +758 447 4 881977487 +180 181 2 877125956 +541 709 5 885595735 +654 223 4 887864497 +860 712 3 885991316 +880 248 4 892958863 +487 178 5 883445540 +830 49 5 892503093 +887 378 5 881381207 +46 262 5 883614766 +842 340 5 891218192 +918 168 3 891986999 +880 234 5 880241327 +540 147 3 882157612 +655 1388 3 887477336 +823 52 3 878439605 +239 1065 5 889181015 +815 1133 3 878697466 +648 527 4 884368643 +592 1166 3 882956668 +528 250 3 886812886 +864 232 4 888889327 +841 1294 5 889067507 +26 936 4 891352136 +796 64 4 892662400 +887 1013 4 881379295 +145 218 3 877343121 +901 151 3 877129870 +918 196 3 891987267 +727 1185 1 883711847 +758 293 3 880672727 +942 310 4 891282396 +601 195 3 876348611 +44 181 4 878341290 +567 56 4 882425630 +889 385 3 880180376 +326 131 2 879875457 +932 487 3 891250558 +734 821 2 891023086 +885 420 4 885714858 +743 340 3 881277551 +654 12 5 887864389 +868 429 2 877103834 +774 566 2 888557277 +532 840 4 892867296 +299 49 4 889502823 +534 282 5 877808174 +513 121 5 885062602 +788 62 3 880870179 +716 708 4 879797443 +940 258 5 884801316 +38 627 5 892431586 +827 332 3 882204460 +596 50 5 883539402 +682 721 4 888518937 +533 451 2 879439465 +894 875 3 880415952 +383 528 4 891193242 +682 180 3 888516979 +537 1011 3 886030416 +892 418 4 886610996 +265 273 5 875320714 +894 961 4 882404642 +225 478 5 879539767 +642 928 5 886131546 +938 288 5 891354203 +401 482 4 891033343 +805 191 4 881697713 +402 408 5 876266741 +815 133 5 878694613 +833 378 3 875124648 +514 87 5 875318163 +559 521 2 891033911 +774 743 1 888558623 +561 709 3 885808824 +324 508 5 880575618 +880 930 2 880167551 +916 125 3 880843750 +409 79 4 881108246 +790 258 3 884461387 +938 225 4 891357161 +693 566 2 875483473 +919 315 3 885059569 +776 603 4 891628599 +796 1032 3 893219451 +804 413 4 879443918 +506 196 4 874873745 +924 200 4 885458093 +880 81 4 880242094 +725 748 4 876103744 +375 1046 2 886622131 +836 900 2 885753475 +846 381 4 883950311 +934 163 4 891193331 +919 28 4 875373888 +899 179 2 884121267 +795 72 3 883252003 +653 1136 2 880152759 +579 523 3 880951740 +917 751 2 882910409 +888 111 4 879365072 +405 665 1 885548094 +870 690 2 886372265 +634 696 4 875729535 +180 655 5 877127159 +758 66 3 881977169 +757 931 2 888445150 +846 638 4 883947694 +537 591 3 886030051 +383 124 4 891192949 +747 517 5 888734012 +871 182 5 888192925 +243 77 3 879988587 +686 22 5 879545181 +922 258 4 891454681 +646 880 3 888529127 +48 193 2 879434751 +532 864 4 887041540 +653 620 3 880153740 +533 508 4 879192702 +608 514 5 880403320 +922 67 3 891452928 +855 510 4 879825578 +111 304 4 891679840 +719 300 2 888449132 +635 333 5 878878685 +894 536 5 879896756 +406 210 5 880131703 +546 665 2 885141411 +903 684 3 891033828 +865 473 3 880144194 +634 1162 1 877017951 +569 333 3 879793036 +64 496 5 889737567 +894 736 4 882404572 +151 173 5 879524130 +548 293 4 891043760 +307 269 4 879283333 +892 194 4 886608423 +280 318 5 891700607 +74 358 2 888333372 +780 4 3 891363969 +889 203 2 880181275 +728 323 3 879442685 +864 258 5 877214042 +862 196 5 879304799 +33 300 4 891964131 +878 923 3 880866687 +938 1061 4 891357085 +890 194 5 882402774 +747 174 5 888639138 +447 762 3 878855139 +642 432 2 885602369 +583 195 4 879384404 +669 195 2 891260542 +751 204 4 889133950 +95 648 3 888954170 +866 896 2 891221006 +851 818 2 875730279 +805 597 3 881695080 +847 419 3 878941027 +823 231 3 878439337 +236 521 3 890115996 +823 128 2 878438733 +478 204 4 889388658 +497 928 3 879361744 +608 340 4 880402982 +542 22 3 886532314 +894 1005 5 882404669 +901 636 2 877131147 +811 988 4 886377686 +678 277 3 879544882 +151 28 4 879524199 +677 740 1 889399265 +743 408 4 881277931 +532 1240 2 874793852 +916 168 4 880844369 +890 484 3 882915942 +758 96 5 881976985 +877 690 4 882676098 +799 321 4 879253720 +672 181 3 879788708 +639 949 3 891240868 +881 409 4 879052545 +766 375 2 891310907 +190 24 3 891033773 +936 3 4 886833148 +539 56 2 879788046 +766 609 3 891309767 +757 164 3 888445684 +296 696 4 884196805 +398 97 4 875721348 +932 205 5 891250211 +935 9 1 884472352 +747 653 5 888639939 +892 659 4 886608681 +181 544 1 878962919 +878 64 5 880866446 +903 154 4 891033781 +891 924 5 891639737 +391 98 4 877399133 +393 652 3 889729375 +121 458 1 891388847 +883 275 4 891692657 +921 1051 3 879380433 +194 199 4 879521329 +898 312 2 888294707 +64 347 3 889737062 +648 576 4 884882916 +776 444 2 892920423 +877 302 2 882676054 +807 998 3 893081656 +398 135 3 875657802 +471 1219 4 889828026 +824 259 4 877020927 +738 225 3 875351837 +429 796 3 882386601 +102 1 3 883748352 +407 219 4 876348318 +498 337 4 881954617 +343 1117 3 876403563 +774 530 5 888557197 +100 751 4 891374868 +819 177 4 884105025 +787 313 5 888979547 +828 475 4 891035724 +921 1287 1 879380401 +778 216 3 890726264 +880 1017 3 880175077 +683 354 3 893286347 +930 106 4 879535392 +13 515 2 881515193 +465 836 3 883531155 +769 1093 3 885423632 +746 720 3 885075399 +880 470 4 880242306 +466 241 5 890284857 +868 327 4 877103039 +882 199 5 879867508 +327 183 3 887744065 +864 235 5 888891794 +913 596 1 881367210 +796 486 5 892676072 +523 1121 5 883700969 +363 301 3 891493918 +770 268 5 875971568 +907 50 4 880158692 +543 796 3 877550790 +378 660 4 880056547 +872 290 2 888479537 +840 175 4 891205004 +100 271 3 891375260 +860 321 3 880829225 +745 9 4 880122809 +646 1313 3 888529180 +943 31 4 888639066 +903 87 4 891032981 +787 286 3 888979007 +89 173 5 879459859 +932 195 4 891250643 +697 9 4 882622505 +406 294 3 879445250 +916 971 4 880845476 +424 300 2 880859199 +504 168 5 887839164 +148 173 5 877017054 +13 9 3 882140205 +903 60 4 891033048 +523 531 5 883700792 +682 27 3 888518104 +642 208 5 886131547 +681 292 4 885409883 +911 374 1 892841118 +429 80 3 882386684 +936 121 4 886832544 +938 1152 3 891357106 +880 310 3 892958036 +650 257 3 891384844 +889 651 4 880177906 +916 569 2 880845606 +916 97 4 880844789 +275 679 3 880315080 +234 447 3 892336047 +919 294 3 875288304 +561 928 2 885810330 +916 1101 4 880844419 +94 226 2 891721238 +807 543 2 892528427 +684 83 5 878761676 +854 411 2 882813143 +669 111 4 892549583 +912 661 2 875965981 +919 271 4 885059476 +312 429 5 891698951 +927 11 5 879183303 +408 751 4 889679982 +848 153 5 887039271 +895 742 4 879438123 +883 13 4 891723351 +942 750 4 891282355 +922 204 3 891451100 +261 596 2 890456142 +872 284 3 888479369 +158 70 4 880135118 +901 1047 3 877131391 +618 483 5 891308199 +894 277 4 880416341 +921 194 3 879380704 +934 420 4 891191469 +899 181 3 884119877 +318 1030 2 884498787 +894 212 5 882404572 +843 143 2 879447757 +896 179 2 887159630 +141 1040 3 884585547 +746 68 4 885075337 +582 294 1 882960396 +833 517 2 875133633 +632 468 3 879457925 +693 654 3 875483381 +805 141 2 881705843 +941 408 5 875048886 +563 220 4 880506703 +774 97 2 888556600 +796 387 3 893047504 +313 559 3 891029877 +864 665 3 888892300 +881 542 1 876538763 +157 1016 5 886890341 +738 211 3 892958137 +901 451 4 877132604 +913 531 2 880946475 +835 485 5 891033525 +593 393 4 886194041 +99 329 4 886518562 +848 484 5 887043040 +913 474 5 881725737 +881 186 3 876538221 +456 109 3 881371660 +214 518 3 891544000 +663 1059 2 889492614 +933 50 4 874854383 +293 712 2 888907603 +894 125 3 885428261 +784 346 4 891387077 +917 696 5 882912385 +596 286 4 883538815 +882 820 3 879863969 +642 660 3 886132089 +894 19 4 879897100 +927 535 3 879181694 +836 523 5 885754150 +598 300 4 886710671 +831 750 4 891354225 +569 546 3 879794302 +506 692 4 874873529 +683 315 4 893285557 +754 340 2 879451010 +541 95 4 883874682 +905 301 4 884983556 +722 866 4 891281108 +894 198 4 882404460 +881 582 1 876538465 +738 109 4 875353678 +256 829 4 882153751 +409 83 3 881108971 +474 9 5 887916203 +782 890 1 891498865 +937 19 1 876769436 +629 699 3 880117460 +374 88 3 880395665 +933 578 1 874939230 +796 342 5 892611871 +883 10 5 892557605 +916 193 4 880844420 +840 615 5 891204356 +892 484 5 886607568 +742 284 3 881335492 +798 694 3 875303718 +763 515 4 878915628 +208 781 3 883108498 +455 258 5 878585250 +79 763 5 891271741 +932 148 2 891252140 +776 524 5 891628752 +655 137 4 892333972 +882 151 5 879862327 +880 1185 1 880174995 +378 1168 3 880333383 +932 189 5 891250449 +896 29 2 887160916 +175 98 5 877107390 +773 541 1 888540187 +843 170 1 879446863 +456 14 5 881371427 +933 184 1 874938850 +894 190 5 879897100 +514 222 4 875462611 +932 530 4 891249903 +756 66 4 874829705 +591 194 4 891031171 +918 855 5 891987497 +825 597 5 880756933 +774 1215 1 888558623 +892 70 4 886608802 +848 528 3 887037980 +918 153 1 891987291 +588 100 1 890015374 +576 7 5 886985003 +840 609 4 891204627 +938 148 3 891356500 +641 558 5 879370299 +840 855 4 891205093 +894 303 4 879896756 +615 666 2 879448270 +815 168 3 878693424 +640 175 5 874777735 +882 121 4 879861739 +303 259 3 879466116 +206 326 1 888179713 +907 25 5 880159113 +645 48 4 892053748 +859 1008 4 885776056 +297 1136 3 875240053 +865 744 4 880144024 +694 72 4 875729107 +894 978 3 880416176 +303 81 4 879466866 +267 1035 4 878973971 +916 79 3 880845249 +712 946 4 874730521 +625 197 5 891262724 +7 309 3 891350704 +938 7 4 891356679 +568 430 3 877907834 +643 58 4 891448062 +795 17 2 883252686 +343 715 5 876405943 +771 164 2 880660025 +820 286 4 887954853 +757 1 4 888443974 +882 258 3 879860936 +834 148 4 890862563 +788 399 3 880871128 +655 298 4 887425564 +932 134 4 891250169 +642 40 4 885605866 +727 1250 1 883713760 +892 69 5 886610048 +24 699 3 875323051 +848 134 5 887043265 +914 1259 1 887123886 +835 135 5 891033560 +747 129 5 888639138 +733 116 4 879535368 +334 1011 4 891544680 +677 908 4 885191403 +503 8 5 880472435 +930 523 2 879535574 +910 254 1 881421240 +913 419 5 881725737 +890 179 5 882403299 +22 998 1 878886571 +752 995 4 891208261 +777 692 5 875980670 +790 582 3 885156852 +846 521 3 883948141 +588 111 1 890028509 +790 275 4 884461774 +561 588 2 885809197 +146 342 1 891457978 +880 381 4 880174808 +716 385 1 879796011 +758 12 5 881975243 +933 627 2 874854874 +551 727 5 892783559 +716 631 5 879795867 +669 654 5 891260754 +500 82 4 883874290 +427 334 5 879701326 +838 69 4 887067609 +930 1 3 879534525 +458 1335 1 886395565 +872 682 3 888478822 +715 1188 2 875964843 +916 250 4 880843361 +710 173 3 882063685 +313 235 3 891029148 +847 1031 2 878941005 +290 64 4 880474034 +847 820 1 878939375 +929 135 5 880817818 +276 293 4 874786686 +795 68 3 883253137 +916 541 2 880845206 +933 38 2 874939185 +221 423 2 875245167 +880 127 5 880167066 +934 428 4 891195503 +371 204 5 880435210 +643 202 3 891447835 +459 275 4 879562859 +935 597 4 884472576 +660 298 2 891198441 +342 324 1 874984002 +881 495 5 876537752 +886 132 3 876032399 +422 7 3 875129882 +923 293 4 880387908 +834 300 3 890860334 +207 1170 2 875506807 +218 431 3 881288386 +708 1049 2 877326086 +94 690 4 891928703 +561 385 2 885810144 +655 889 3 888474285 +288 100 5 886629749 +834 181 5 890862526 +532 660 4 888634801 +497 1041 3 879310473 +683 914 2 893283104 +932 616 5 891251153 +883 385 1 891696999 +464 50 4 878354966 +916 161 3 880845658 +927 111 4 879177457 +916 387 4 880845328 +617 192 5 883788900 +708 676 3 892719172 +488 31 4 891294439 +435 169 5 884130995 +59 143 1 888204641 +290 357 3 880474107 +841 325 3 889067216 +181 1352 1 878962240 +663 319 1 889492229 +738 528 4 875352679 +112 315 5 891299783 +881 1228 3 876538986 +645 46 5 892054508 +935 300 4 884471955 +670 483 5 877975200 +26 282 4 891373086 +826 82 3 885690482 +936 1335 4 886833325 +435 627 3 884133194 +931 126 4 891036463 +805 169 4 881695527 +870 197 5 875050723 +149 333 1 883512591 +411 194 5 892845605 +887 305 5 881377532 +896 637 2 887160041 +664 134 5 878092758 +89 405 3 879441586 +592 558 5 882955948 +671 526 2 884035406 +560 275 4 879975718 +943 231 2 888640186 +216 833 2 880233233 +605 934 4 879425706 +930 116 5 879535392 +830 88 4 891464148 +911 465 5 892840807 +843 74 2 879448830 +880 1188 2 880167880 +865 685 3 880144071 +445 271 1 891199458 +804 448 3 879445841 +793 106 3 875104340 +727 98 4 883710152 +537 518 4 886031105 +910 174 5 880822060 +886 566 3 876033461 +276 1273 2 874795823 +642 1058 3 886132139 +838 255 4 887063937 +711 727 4 879993629 +865 108 1 880143680 +803 538 4 880054834 +836 324 4 885753595 +655 1118 3 887473605 +95 50 5 879197329 +561 651 3 885807574 +648 220 3 882212039 +846 63 3 883950220 +868 378 2 877108056 +841 258 5 889067076 +650 290 2 891387979 +889 3 4 880177664 +102 684 2 888802176 +482 313 5 887643146 +892 159 4 886609977 +843 196 2 879446806 +937 303 4 876762200 +655 279 3 888685989 +934 630 4 891192285 +846 82 2 883948089 +542 249 4 886532432 +102 1076 2 883748527 +805 357 5 881697713 +620 151 4 889988196 +862 546 4 879302944 +787 351 3 888979657 +639 14 5 891239813 +858 9 5 880932449 +779 294 5 875501334 +194 712 3 879555147 +796 655 3 893048115 +825 840 4 880757103 +727 252 2 883709438 +620 758 2 889987073 +378 51 3 880333195 +824 243 1 877021002 +885 365 3 885714431 +777 652 5 875980670 +45 24 3 881014550 +748 118 2 879455040 +798 181 5 875295772 +421 509 2 892241532 +683 127 4 893286501 +934 712 4 891196564 +771 173 4 880659894 +809 322 3 891037069 +817 9 3 874815836 +406 462 5 879445562 +751 655 3 889133377 +932 493 5 891249767 +894 30 4 882404250 +530 470 3 891568895 +916 257 3 880843401 +932 228 4 891251442 +796 195 5 892675424 +894 718 3 885428386 +239 528 5 889178562 +932 520 4 891249794 +41 50 5 890687066 +329 534 3 891656639 +642 172 5 885604299 +59 507 4 888204877 +709 295 3 879847731 +389 367 4 880086820 +436 427 3 887769105 +905 751 3 884983034 +887 455 5 881378620 +693 546 1 875483234 +940 183 3 885921422 +551 17 5 892784942 +911 173 5 892838677 +250 469 4 878091772 +605 187 5 879425432 +863 895 5 889289385 +460 245 3 882910657 +881 194 3 876538185 +155 322 2 879371261 +798 1446 4 875914898 +690 69 5 881179293 +650 520 4 891369759 +938 259 2 891356282 +724 323 2 883757874 +608 42 5 880406168 +894 270 3 879896141 +514 199 3 875463351 +648 742 5 882211175 +545 50 5 879898644 +905 1051 2 884984329 +577 294 4 880469903 +933 39 3 874854100 +296 1251 5 884196469 +617 17 1 883789507 +294 21 3 877819897 +653 1035 2 880153099 +655 196 3 888685556 +919 880 3 885059601 +642 1032 4 886569012 +22 731 3 878887116 +180 235 4 877127758 +864 393 3 888889129 +934 449 4 891194900 +784 302 5 891386988 +782 752 4 891497793 +757 118 3 888444920 +870 427 4 880584516 +429 528 4 882385034 +897 25 2 879993346 +533 627 2 879439593 +151 664 5 879524713 +846 463 5 883948222 +910 597 3 881421048 +833 819 1 875133458 +378 956 3 880332034 +435 585 3 884133447 +468 55 5 875287615 +930 14 4 879535392 +492 474 5 879969879 +90 516 5 891383987 +286 1133 4 877534137 +645 288 3 892051741 +13 218 1 882396869 +840 463 5 891205287 +804 928 4 879443736 +864 58 5 888887739 +276 949 3 874836725 +868 1240 5 877107284 +429 71 3 882385705 +806 70 2 882388628 +109 50 5 880563331 +932 212 4 891249109 +805 549 3 881696759 +734 705 4 891023131 +838 487 4 887067126 +268 840 2 875744357 +846 97 4 883949255 +619 293 3 885953804 +502 307 4 883701980 +898 328 2 888294567 +543 144 4 874863269 +814 447 3 885411030 +805 82 3 881694854 +807 1274 3 893083179 +659 559 1 891386641 +307 121 1 879114143 +524 60 5 884634938 +416 303 4 876696643 +299 354 4 888854746 +145 544 4 875271312 +933 164 2 874854461 +328 610 3 886036967 +330 384 2 876547813 +553 483 5 879948423 +455 736 3 879112460 +872 975 4 888479654 +267 265 5 878972903 +758 319 4 880672321 +504 100 5 887831486 +536 205 5 882360424 +555 13 5 879964092 +934 89 5 891191157 +618 214 2 891308176 +657 7 3 884239057 +896 952 4 887159012 +798 828 4 875637986 +91 79 5 891439018 +756 151 4 874830550 +934 170 4 891190744 +224 147 3 888103646 +367 217 5 876690021 +870 88 2 879270213 +562 148 5 879195442 +864 509 5 888887944 +883 496 2 891755066 +622 427 4 882592178 +903 273 3 891031203 +363 1013 3 891499875 +645 135 5 892054707 +479 205 3 879461015 +722 117 4 891281132 +774 518 1 888556746 +650 145 3 891387953 +918 381 5 891988123 +896 129 4 887159531 +862 979 5 879303409 +837 277 2 875722169 +144 212 5 888105993 +537 19 4 886030051 +393 769 4 889731593 +329 423 4 891656237 +578 300 4 887229386 +405 550 2 885547909 +894 124 5 881625708 +883 237 3 891717963 +325 172 4 891478851 +179 347 3 892151064 +655 559 2 887472965 +896 164 4 887159321 +478 433 3 889396330 +897 125 4 879993314 +916 367 3 880845451 +222 597 1 877564076 +271 735 4 885849140 +552 111 3 879222238 +577 216 4 880472124 +398 237 3 875653168 +880 151 4 880242848 +929 28 4 879640084 +26 1013 1 891383836 +452 480 5 875261261 +323 273 4 878739355 +896 43 3 887161171 +758 77 3 882054049 +751 597 2 889299290 +472 235 5 875978994 +933 834 1 874938878 +788 828 3 880869396 +889 165 3 880178131 +881 748 3 876535544 +880 63 3 880174926 +886 214 3 876032072 +591 954 3 891031403 +877 222 2 882678484 +880 636 3 880167918 +723 150 3 880499050 +524 647 3 884634911 +332 472 3 887938277 +887 409 4 881378971 +868 55 5 877106505 +286 402 3 877534216 +932 96 4 891250060 +926 272 5 888351623 +650 176 4 891369798 +847 603 3 878939876 +279 945 5 879647064 +738 100 2 875349968 +747 172 5 888639222 +393 819 3 889731592 +487 1220 4 884050879 +795 583 4 883250168 +817 288 4 874815593 +943 204 3 888639117 +655 1628 2 888729735 +870 579 2 879902161 +586 232 3 884058809 +830 510 4 891561673 +263 141 5 891299877 +648 364 5 884882528 +870 313 4 883405554 +540 762 4 882157545 +698 214 1 886367874 +722 148 3 891281710 +916 369 2 880843906 +653 393 2 880152426 +747 1246 1 888733415 +774 211 3 888555897 +774 62 2 888557520 +537 792 3 886030805 +804 167 3 879445956 +805 338 1 879970974 +883 265 3 891696864 +801 358 4 890333094 +645 194 4 892053644 +773 324 3 888538269 +472 95 3 875980209 +603 474 4 891956803 +808 264 5 883949986 +922 834 1 891455565 +871 1434 3 888192689 +942 328 3 891282503 +537 978 2 886029841 +870 692 2 879270213 +943 132 3 888639093 +162 294 3 877634955 +85 162 2 879454235 +543 562 2 877547004 +601 406 2 876350998 +539 301 5 879787770 +828 462 3 891036630 +919 423 5 875374032 +490 289 1 875427021 +484 89 4 891195298 +430 64 4 877226130 +543 432 4 874862967 +727 1615 1 883709884 +577 941 4 880475435 +582 988 1 882960718 +846 737 4 883949771 +307 708 4 879283322 +918 82 3 891988521 +618 186 4 891307224 +919 287 4 875289611 +943 56 5 888639269 +705 423 2 883427904 +407 152 4 875043826 +886 64 5 876031573 +838 121 2 887064248 +919 527 4 875373416 +405 174 5 885544739 +279 242 3 877756647 +932 510 4 891249146 +784 268 3 891387501 +918 630 3 891988672 +617 164 1 883789664 +532 143 4 874788755 +916 462 4 880844058 +807 318 5 892528062 +935 546 4 884472743 +870 268 3 881000751 +629 881 3 880116023 +715 50 5 875961998 +234 1003 2 892334267 +747 169 5 888640305 +554 276 3 876548886 +860 332 2 880829226 +884 921 5 876859277 +840 11 3 891204921 +189 297 3 893264023 +454 732 4 888267560 +848 176 4 887037980 +804 250 4 879441000 +307 831 1 879114143 +704 382 4 891397571 +889 514 1 880178158 +807 449 5 893082893 +831 508 3 891354947 +823 127 5 878438357 +741 172 5 891018339 +481 144 4 885828732 +320 597 3 884748774 +318 451 4 884497546 +533 70 4 879191938 +771 128 2 880659482 +881 596 3 876536241 +883 396 2 891695743 +815 204 4 878693871 +896 654 3 887159895 +747 17 4 888733387 +650 614 3 891385876 +102 316 3 889362833 +870 1221 3 881001249 +592 789 4 882956419 +850 318 5 883194737 +848 647 5 887039329 +582 117 3 882961000 +883 530 3 891696823 +880 1049 3 892959087 +867 257 4 880078090 +772 294 4 877533625 +894 347 4 885427952 +758 386 3 881978259 +907 79 5 880160008 +13 870 3 882397271 +841 751 3 889066880 +645 39 3 892054324 +583 602 4 879384471 +568 482 4 877907781 +854 197 4 882813797 +862 633 5 879304722 +896 1028 2 887160554 +293 432 5 888906516 +505 755 3 889334248 +617 441 3 883789590 +704 494 5 891397948 +883 989 5 891692168 +936 717 2 886833325 +807 95 4 892529185 +303 116 5 879466771 +910 210 4 881421309 +642 794 4 886568429 +764 939 4 876245880 +846 48 5 883949046 +449 86 4 880410599 +758 196 4 881977229 +194 654 2 879522445 +890 176 4 882404851 +707 654 4 880061578 +776 7 4 891629077 +806 690 2 882384589 +931 845 3 891036883 +673 340 5 888786969 +851 349 3 890862917 +938 258 5 891353196 +834 13 2 890862648 +880 1047 3 880175157 +890 187 5 882403221 +919 953 3 875921051 +369 196 5 889428642 +854 121 1 882813074 +653 1087 2 880153207 +534 276 5 877807873 +463 985 1 877386923 +659 482 4 891383674 +936 358 4 886831820 +399 1060 3 882510269 +862 969 5 879304410 +463 936 2 890460826 +560 197 4 879975613 +897 120 3 879993886 +698 419 3 886367474 +600 759 2 888453145 +256 934 3 882163730 +642 64 5 885602482 +727 616 2 883713348 +346 195 5 874948703 +242 275 5 879741196 +498 1404 3 881957054 +577 121 5 880470258 +156 100 4 888185677 +907 475 3 880158692 +862 132 5 879304980 +495 135 3 888633011 +479 62 3 879462007 +479 250 4 879460393 +416 544 2 888700566 +705 230 4 883428083 +894 591 4 880416137 +763 79 5 878919083 +874 20 3 888632615 +661 31 3 876017533 +881 712 3 876539156 +693 402 3 883975558 +842 874 5 891218060 +891 595 3 883489668 +733 1117 2 879536659 +922 80 3 891452817 +773 174 3 888539962 +889 509 2 880180650 +874 127 5 888633310 +699 202 3 878883112 +429 1112 3 882386785 +660 87 2 891199133 +867 300 2 880077751 +877 14 5 882677048 +933 435 4 874854251 +497 1615 3 879310650 +627 693 2 879530205 +826 511 3 885690482 +281 259 3 881200789 +848 566 4 887046823 +821 71 5 874793969 +899 195 4 884121884 +176 273 4 886048230 +556 173 3 882136162 +876 22 4 879428451 +899 1 3 884120105 +900 117 2 877833029 +658 923 3 875148059 +940 164 2 885921915 +618 55 2 891308063 +514 568 4 875462689 +741 186 5 891455317 +807 748 4 892527267 +889 276 4 880177104 +287 742 3 875334196 +748 427 4 879454405 +930 411 1 879535272 +65 194 4 879217881 +776 860 3 892920381 +908 7 3 879722334 +422 441 4 879744183 +312 197 4 891698764 +60 419 3 883327612 +881 14 1 879051971 +892 318 5 886607641 +438 300 4 879867960 +916 650 4 880844711 +387 665 2 886481851 +521 231 2 885254307 +611 750 5 891636222 +880 342 3 892958275 +932 491 5 891249621 +846 661 4 883948840 +527 423 3 879456248 +870 606 4 875679687 +758 902 4 889328320 +577 819 3 880470604 +902 257 3 879464964 +886 550 4 876034228 +75 129 3 884049939 +1 28 4 875072173 +882 407 2 879863831 +867 855 5 880078604 +880 1012 4 880166827 +827 312 2 882809814 +934 965 4 891192914 +164 248 4 889402030 +847 928 3 878939375 +900 205 4 877833712 +632 22 4 879457394 +916 92 5 880844291 +927 25 3 879177403 +891 405 3 883489646 +721 682 3 877137285 +700 651 4 884493712 +194 575 1 879554453 +880 226 4 880167806 +942 1221 4 891282783 +768 237 4 883834705 +642 940 2 886569847 +706 237 4 880997482 +903 175 4 891032760 +943 625 3 888639427 +59 53 5 888206161 +659 170 3 891045943 +532 99 5 893119438 +786 419 4 882843312 +117 164 5 881011727 +25 82 4 885852150 +872 628 4 888479151 +625 652 4 891262983 +296 187 5 884198772 +785 269 5 879438537 +454 511 3 881960173 +691 322 3 875542976 +918 197 2 891987387 +796 243 3 892612354 +178 173 5 882826306 +382 514 3 875946730 +600 82 5 888451583 +592 748 2 882607434 +941 300 4 875048495 +643 408 4 891445176 +655 915 4 891817435 +805 419 4 881705766 +795 747 3 883252630 +707 134 4 886286004 +889 59 4 880177906 +711 378 4 879995099 +535 134 5 879619144 +878 740 2 880865813 +918 965 4 891988276 +798 1284 3 875637744 +763 143 3 878918332 +889 763 4 880177502 +848 945 5 887043821 +782 348 4 891498213 +861 70 4 881274672 +927 195 4 879183245 +711 729 3 879994413 +754 307 3 879451191 +618 713 4 891307224 +646 352 1 888529153 +327 952 2 887819354 +730 1 4 880310285 +435 101 3 884132184 +943 1330 3 888692465 +847 507 3 878940161 +405 641 1 885546201 +854 11 5 882814570 +409 663 4 881107251 +121 1 4 891388475 +291 293 5 874833668 +872 273 3 888479274 +882 7 4 879862652 +464 12 5 878355167 +887 368 5 881381679 +308 583 4 887737483 +624 595 3 879793408 +909 339 4 891919406 +389 412 3 880089170 +886 95 5 876032531 +34 899 5 888603123 +865 95 1 880235059 +496 1041 1 876068615 +402 100 5 876266904 +501 273 4 883347975 +508 215 3 883776977 +125 82 5 879454386 +132 1019 3 891278867 +796 477 2 892660465 +682 172 5 888522417 +204 9 5 892513979 +537 501 3 886032000 +100 898 4 891375454 +267 576 3 878973760 +532 754 4 892854961 +117 271 4 880124397 +908 124 3 879722694 +919 275 5 875288522 +851 480 5 875731406 +896 473 2 887161393 +843 521 2 879446359 +891 126 5 891638601 +887 1084 5 881377893 +870 490 3 886883147 +691 205 5 875543395 +880 467 4 880241821 +500 1315 4 883865463 +456 483 4 881372911 +836 260 2 885753691 +666 566 3 880314500 +532 453 4 888631524 +94 1007 4 891724282 +49 208 4 888068715 +786 703 3 882843190 +886 1014 5 876034371 +862 185 5 879304571 +665 248 4 884292068 +653 188 5 878854145 +706 125 5 880997172 +279 1274 3 875314001 +383 604 5 891193042 +447 474 3 878856022 +545 386 2 884134780 +561 531 1 885807215 +655 1636 4 887473570 +814 635 2 885411749 +561 357 3 885807612 +3 340 5 889237455 +715 692 3 875963836 +796 125 4 892660465 +942 520 5 891282963 +887 405 5 881378439 +943 569 2 888640186 +56 1074 3 892683941 +442 738 3 883389164 +621 386 3 874963126 +917 763 3 882911480 +440 245 4 891548470 +230 627 5 880484661 +932 705 4 891250017 +709 597 4 879848824 +524 117 3 884322113 +747 649 3 888640916 +884 14 4 876858946 +548 127 5 891043008 +553 170 4 879948806 +933 597 1 874939230 +686 603 5 879546847 +435 596 4 884132184 +747 276 5 888639989 +38 678 5 892428658 +887 25 2 881378537 +658 171 4 875147448 +758 1047 3 882054250 +880 732 4 880174652 +869 25 2 884491767 +860 894 2 883678286 +699 117 4 879148051 +840 91 5 891208998 +934 199 4 891191778 +907 291 5 880158913 +101 595 2 877136391 +886 42 5 876032248 +451 748 4 879012550 +814 201 2 885410957 +606 180 4 880926245 +896 710 4 887159657 +934 1065 2 891191108 +804 118 4 879443900 +771 496 5 880659606 +840 172 3 891204627 +705 393 4 883427716 +705 576 4 883428128 +943 546 4 875502229 +251 185 5 886271884 +922 15 4 891453122 +788 402 3 880870544 +21 858 1 874951858 +834 886 4 890860566 +889 1239 1 880182815 +847 66 3 878941398 +932 488 5 891250282 +916 713 3 880843636 +707 9 5 880059647 +862 1050 5 879305351 +495 577 1 888637477 +401 203 4 891033288 +291 739 3 875087334 +927 56 4 879184534 +650 71 3 891386755 +932 890 1 891248778 +574 305 3 891279012 +258 300 5 885700877 +437 558 3 880142365 +910 181 1 880821033 +927 477 3 879176876 +358 221 5 891269077 +246 477 4 884921767 +650 559 3 891387520 +110 569 4 886988321 +913 50 4 880758348 +846 576 4 883950186 +232 44 4 888549412 +924 511 5 885457827 +568 524 2 877907281 +727 371 2 883712193 +840 157 4 891208998 +916 582 4 880844728 +244 383 3 880608957 +746 186 4 885075497 +429 462 4 882386662 +528 79 5 886101911 +334 403 4 891547016 +49 225 2 888068651 +49 256 4 888066215 +745 127 2 880122986 +878 1100 3 880869418 +266 325 1 892257419 +927 412 1 879182833 +411 202 4 891035663 +641 203 4 879370337 +846 523 4 883948048 +921 538 4 884673311 +912 517 4 875966458 +705 283 5 883427048 +411 174 4 892845634 +892 27 4 886610682 +536 549 3 882360283 +867 188 4 880078796 +758 289 2 880672402 +936 19 5 886832092 +916 475 4 880843334 +743 242 4 881277267 +934 483 3 891190609 +26 328 2 891348011 +842 258 3 891217835 +591 8 3 891031203 +763 190 4 878917384 +248 187 3 884535046 +886 762 5 876033228 +883 517 4 891694218 +664 318 5 876525044 +877 61 5 882677244 +524 174 4 884634911 +334 214 3 891549045 +372 1212 4 876869932 +843 357 2 879446502 +788 22 5 880868513 +892 227 4 886609520 +798 944 4 875914573 +634 1011 4 875729633 +432 475 4 889416147 +790 721 3 885157017 +766 739 2 891310241 +161 118 2 891172421 +934 811 4 891192145 +504 622 4 887910487 +802 194 4 875986155 +727 748 4 883708119 +804 156 4 879444781 +631 877 2 888465131 +693 1090 4 875483564 +585 14 4 891282808 +541 826 3 883871755 +846 768 4 883949508 +899 203 4 884121513 +110 67 3 886989566 +922 450 4 891447876 +682 1153 3 888517869 +943 385 4 888639308 +910 831 1 881421142 +812 332 4 877625368 +932 612 5 891249620 +26 1010 2 891377609 +77 191 3 884752948 +846 1249 3 883949771 +195 109 3 878019342 +653 265 4 878866995 +896 1681 3 887160722 +889 42 5 880180191 +699 1009 4 878882668 +470 124 3 879178486 +940 191 4 885921710 +705 820 3 883427817 +707 242 4 879439088 +892 28 4 886607845 +276 541 3 874792520 +655 1638 3 887488947 +145 1011 5 888398162 +922 391 3 891450840 +328 566 5 885047374 +939 257 5 880260805 +893 288 3 874827526 +899 568 4 884121720 +763 819 2 878915766 +783 895 4 884326787 +560 1016 3 879976216 +275 228 4 876198296 +919 447 4 875372903 +878 663 5 880868635 +708 1028 2 877326217 +237 64 5 879376671 +815 443 3 878695055 +918 132 4 891986904 +773 153 5 888539425 +844 405 2 877382189 +690 154 3 881179222 +665 535 4 884291094 +606 63 3 880927666 +484 172 5 891195298 +403 50 5 879785736 +931 508 4 891036696 +697 291 5 882622481 +593 163 4 876506675 +374 193 4 883628973 +774 88 1 888556193 +842 349 3 891218459 +342 236 3 875318536 +788 175 3 880868401 +933 69 4 874854009 +927 761 3 879198085 +407 498 4 875046427 +416 603 5 893212484 +11 107 4 891903276 +617 515 3 883788782 +84 591 4 883451664 +795 226 3 883251800 +932 527 4 891249710 +854 1284 2 882812961 +916 233 3 880845391 +908 172 3 879722780 +826 190 3 885690636 +749 162 3 878848333 +906 991 3 879434410 +840 208 4 891204295 +927 71 5 879190473 +880 257 5 880167521 +228 275 3 889388521 +932 47 4 891250142 +525 181 4 881085740 +708 1040 2 877326037 +630 195 4 885667968 +94 355 2 891725090 +488 321 3 891293152 +592 681 1 882607780 +723 50 4 880498889 +596 222 3 883539402 +826 568 4 885690636 +752 678 3 891208299 +194 399 2 879528454 +938 250 3 891356532 +561 206 3 885809506 +686 168 5 879547129 +936 257 3 886832808 +808 748 4 883949873 +497 249 5 879309734 +57 717 4 883697960 +59 1120 1 888203900 +788 623 3 880870936 +804 245 4 879441132 +645 181 4 892053483 +914 216 3 887122324 +542 48 5 886533452 +653 447 2 880606620 +880 570 3 880167965 +907 506 5 881030348 +880 657 4 880243629 +653 238 1 878866604 +731 215 5 886182555 +838 257 5 887064014 +908 558 4 879722667 +796 511 4 892676155 +804 523 5 879441476 +723 433 3 880499019 +620 699 5 889988121 +180 356 3 877442079 +655 716 2 888475101 +807 417 3 892979746 +890 521 5 882916429 +410 352 3 888626682 +599 220 5 880951479 +624 870 4 879793155 +753 269 5 891399367 +878 549 4 880869303 +526 272 5 885681860 +897 179 3 879991069 +771 95 4 880659606 +899 147 2 884120106 +894 312 3 883518949 +623 70 4 891034950 +777 212 5 875980348 +577 452 3 880475644 +358 1159 5 891269617 +279 576 3 875312441 +106 82 3 881453290 +927 1415 4 879196853 +833 1070 5 875038987 +928 268 5 880935814 +770 410 4 875973047 +846 421 4 883948173 +435 559 3 884132342 +450 504 5 882377590 +9 385 5 886960055 +813 893 3 883752708 +416 1229 2 893210527 +835 187 4 891033078 +731 237 4 886185851 +933 204 3 874854723 +655 1137 3 888474807 +795 210 4 880567593 +874 521 5 888633311 +463 690 4 877384802 +450 63 4 882469941 +846 1220 2 883950434 +711 905 3 886559521 +70 449 2 884065247 +862 45 4 879304721 +693 28 2 875482280 +657 327 1 884238247 +864 225 3 878179608 +730 1012 5 880310426 +600 79 4 888451582 +639 835 4 891240543 +429 663 4 882385358 +846 728 4 883949422 +916 583 4 880845690 +710 277 4 882063967 +911 228 4 892841220 +705 173 2 883427640 +772 751 3 889028876 +493 170 3 884131089 +805 145 2 881695445 +834 515 5 890862231 +935 313 5 884471835 +934 82 4 891194221 +889 695 3 880179586 +1 172 5 874965478 +327 66 3 887819582 +353 313 5 891402757 +924 153 4 886327689 +883 59 5 891692982 +479 238 4 879461039 +894 1403 3 882404641 +871 905 3 888192744 +679 173 5 884486966 +846 68 3 883948765 +762 111 2 878719371 +867 678 3 880078004 +644 125 4 889076851 +703 328 3 875242303 +226 92 2 883889102 +417 102 3 879648656 +901 222 4 877126648 +407 71 3 875046460 +393 210 4 887747108 +846 385 5 883949156 +660 679 2 891201069 +840 650 4 891209364 +843 596 3 879448486 +936 1068 4 886832904 +896 966 4 887159531 +152 451 5 882476911 +889 164 4 880179757 +826 625 3 885690442 +416 1286 5 893213549 +913 131 5 881367150 +766 443 3 891309844 +897 1531 4 879991933 +401 634 1 891033319 +881 205 4 876538465 +933 154 2 874938389 +885 172 3 885715888 +407 408 4 875552445 +545 1091 3 879901483 +738 154 3 875353105 +883 251 5 891692657 +468 161 3 875296309 +931 181 4 891036786 +883 922 5 891717963 +487 789 4 883446757 +915 750 4 891030070 +506 172 5 885135819 +669 64 4 891260440 +615 683 1 879447642 +847 455 2 878775647 +943 227 1 888693158 +234 190 3 892079190 +437 319 5 881001538 +804 431 4 879442707 +929 204 4 879640126 +536 117 4 882318415 +537 284 3 886030347 +906 1011 4 879435365 +901 826 2 877129839 +801 681 1 890332820 +887 568 2 881379566 +643 436 4 891449870 +942 689 3 891282644 +634 760 3 879787621 +501 93 4 883347891 +752 1243 4 891207939 +854 89 4 882814467 +764 318 5 876244991 +733 1132 4 879536488 +805 417 2 881705918 +861 10 3 881274739 +651 269 5 880126096 +925 288 5 884633224 +705 15 3 883427297 +716 367 4 879796942 +416 1168 4 886318953 +130 239 4 878538071 +922 62 3 891450768 +286 856 2 877533698 +847 135 4 878941144 +888 202 4 879365072 +626 292 1 878771281 +805 155 1 881696923 +881 172 4 876538986 +934 703 4 891195437 +900 136 2 877833712 +301 217 3 882079503 +727 451 5 883712681 +825 932 3 880756862 +893 323 2 874827595 +877 371 5 882677935 +819 533 4 884618086 +674 292 4 887762415 +815 313 5 884222552 +23 387 3 874786098 +178 339 3 892239822 +892 405 4 886609977 +356 288 4 891406076 +861 116 4 881274739 +463 1216 3 877387935 +727 538 3 883708066 +864 380 3 888889744 +758 239 3 881976574 +885 179 1 885714226 +122 1074 4 879270901 +561 69 1 885807215 +940 357 4 885921219 +639 509 3 891239271 +823 102 4 878438807 +469 510 4 879523802 +393 866 3 889728074 +264 517 5 886123358 +409 529 5 881109019 +881 227 4 876538953 +691 79 5 875543025 +591 856 4 891040366 +399 182 4 882342570 +519 682 1 883248278 +40 302 3 889041283 +918 199 3 891986846 +47 1022 3 879440429 +933 62 1 874854994 +714 118 5 892777877 +561 514 4 885807713 +834 1017 2 890862563 +847 228 4 878940383 +13 135 5 882139541 +712 553 5 874729850 +24 97 4 875323193 +130 293 5 874953769 +236 520 4 890116095 +299 89 5 878192756 +892 213 3 886608942 +892 447 3 886610174 +916 121 3 880843864 +436 234 3 887769471 +923 325 4 880387081 +655 1284 2 887477511 +880 62 3 880168411 +908 496 5 879722361 +889 1194 4 880180817 +398 86 3 875726010 +923 257 5 880387946 +151 610 5 879528607 +106 318 5 881449830 +833 1427 3 875131974 +749 566 3 878849857 +935 1048 3 884472465 +848 432 2 887038022 +653 144 3 878867346 +698 607 2 886368545 +665 265 3 884294716 +18 133 5 880130713 +222 1291 2 877564031 +922 122 2 891455788 +230 549 5 880485380 +711 49 4 879994903 +871 147 5 888193136 +919 535 3 885059887 +911 514 3 892839454 +815 732 5 878694106 +930 274 4 879534803 +942 210 4 891283184 +621 8 5 874965407 +675 235 1 889490151 +651 302 5 879348880 +417 496 3 879647040 +796 147 5 893048410 +933 42 1 874853635 +399 100 3 882509855 +892 523 5 886607711 +886 833 5 876033460 +838 254 3 887065606 +72 23 4 880036550 +864 24 5 888887502 +495 448 5 888634896 +916 960 4 880844861 +624 301 3 879792131 +886 692 3 876032225 +880 39 4 880167731 +922 68 4 891450586 +942 480 5 891282985 +714 323 4 892777903 +647 136 5 876534131 +766 465 3 891310281 +586 79 4 884058986 +250 81 4 878092143 +207 1023 3 875506634 +584 541 3 885774508 +664 792 4 876524474 +425 4 4 878738290 +907 1028 5 880158913 +610 135 3 888703730 +806 1012 4 882385278 +312 511 5 891699156 +830 431 3 891561737 +883 794 4 891696750 +474 492 4 887925838 +906 237 4 879435469 +709 515 4 879846816 +835 225 2 891032898 +435 177 5 884131267 +897 826 4 879993578 +833 931 4 879818760 +906 240 3 879435758 +888 237 5 879365449 +548 1 4 891043182 +693 636 1 875483473 +669 196 3 892550234 +859 1326 4 885775859 +533 1086 3 880402916 +936 1 4 886832453 +404 876 2 883790286 +777 288 4 875979201 +745 936 1 880122907 +151 202 5 879542753 +804 527 4 879441752 +894 1255 4 879896949 +868 520 4 877103756 +884 515 4 876858914 +875 180 5 876464967 +919 125 4 875289113 +249 129 5 879571883 +558 285 5 879436396 +795 926 2 880561783 +85 715 4 882995967 +538 50 5 877107656 +863 343 5 889289328 +841 302 5 889066959 +804 444 4 879444743 +456 1551 3 881374193 +897 288 5 879988800 +924 313 4 886065805 +903 234 4 891033808 +475 303 1 891451341 +882 582 5 879876573 +916 211 4 880844395 +747 555 2 888734152 +936 1160 5 886833795 +425 300 2 878737512 +851 1023 3 875730601 +621 751 4 883799651 +782 1667 3 891500110 +935 255 4 884472247 +880 329 4 892958250 +852 109 3 891036505 +796 530 3 893048410 +878 45 3 880867665 +370 14 3 879434707 +896 461 3 887159069 +823 408 5 878437589 +705 161 5 883428028 +880 328 4 880166557 +328 38 3 885049275 +435 742 4 884132840 +682 288 4 888516814 +843 222 3 879443837 +901 204 5 877131307 +870 89 3 879539936 +23 176 3 874785843 +842 302 5 891217834 +787 749 4 888979657 +936 1199 4 886833148 +816 300 4 891710724 +749 419 5 878847765 +823 651 5 878438179 +889 474 4 880177941 +932 389 3 891251331 +854 222 4 882812492 +846 787 4 883949335 +890 186 2 882916276 +249 123 3 879640261 +363 260 2 891494049 +299 83 5 878192344 +846 614 5 883948765 +544 327 2 884795516 +916 69 4 880844694 +328 281 4 885048930 +381 483 5 892696698 +833 357 4 875038709 +864 77 4 888891627 +545 449 2 879899497 +825 1013 2 881185672 +536 73 4 882360894 +833 447 5 875224309 +870 223 4 878737979 +716 604 3 879795071 +716 193 5 879796596 +887 289 5 881380623 +87 56 4 879876524 +840 69 4 891204535 +592 350 4 885280124 +267 2 3 878972463 +109 385 4 880577961 +497 177 4 879310762 +936 756 4 886833052 +803 260 3 880055454 +877 739 4 882678105 +943 468 2 888639575 +886 512 1 876031526 +488 300 4 891293606 +749 969 4 878848243 +276 1010 3 874786784 +830 568 4 891561607 +315 1084 4 879799423 +848 1063 5 887038197 +301 655 1 882076187 +705 181 5 883426892 +912 64 4 875966027 +682 527 3 888517168 +389 675 3 880165702 +126 881 5 887938392 +693 135 4 875482524 +894 463 4 882404430 +899 8 4 884121572 +541 173 5 883865534 +922 11 5 891450401 +345 815 3 884991546 +931 306 4 891036026 +661 121 2 876037619 +907 476 4 880159134 +916 209 3 880844017 +650 159 3 891370093 +266 276 3 892258004 +254 405 3 886471522 +916 1070 4 880844202 +86 259 4 879570423 +800 237 4 887646980 +871 11 3 888193274 +782 293 2 891499278 +727 385 3 883710994 +795 222 3 880558122 +457 202 4 882398275 +704 889 3 891397015 +407 121 4 876343028 +880 1044 4 880242577 +904 1152 4 879735551 +890 657 5 882403379 +715 183 3 875964491 +846 581 4 883950129 +257 1137 5 882049896 +920 268 3 884220163 +896 774 3 887159973 +338 169 5 879438196 +378 1147 4 880055101 +49 904 2 888065527 +758 576 4 882055054 +883 1288 4 892439357 +889 322 3 880176717 +911 197 4 892842771 +650 162 3 891382928 +907 151 4 880159222 +546 567 4 885141502 +868 679 3 877109748 +146 286 3 891457493 +642 58 3 886131744 +502 266 3 883702255 +901 117 4 877127196 +405 385 1 885547910 +606 951 2 880928181 +880 992 4 892959014 +318 629 4 884497236 +916 693 3 880844087 +634 284 4 875729668 +870 7 4 875051072 +533 298 4 882195203 +823 136 5 878438206 +932 755 2 891251822 +677 351 2 889399113 +249 658 4 879572944 +896 307 3 887157636 +607 482 5 883879556 +709 379 3 879848209 +716 430 5 879796620 +934 972 3 891225716 +889 482 4 880178367 +711 254 2 879992038 +431 303 4 877844183 +419 197 5 879435749 +595 547 4 886922069 +880 122 3 880175208 +881 259 3 876535599 +646 895 3 888528978 +588 1098 4 890026656 +903 238 5 891033502 +897 368 1 879993886 +805 402 2 881697013 +334 14 3 891544810 +731 720 3 886184771 +423 10 4 891395734 +66 257 3 883601355 +221 288 3 875244232 +885 204 4 885713294 +641 198 5 879370028 +943 234 3 888693184 +816 323 4 891711324 +566 388 3 881651512 +136 258 5 882693234 +758 139 4 882053834 +486 532 4 879874871 +659 187 5 891331825 +854 275 4 882814571 +642 420 4 885606581 +313 490 4 891016280 +901 409 3 877129911 +314 476 5 877886921 +738 152 4 875350265 +872 871 3 888479677 +880 184 4 880167843 +848 1065 2 887048154 +872 354 4 888478822 +716 505 4 879796381 +44 201 2 878347392 +44 31 4 878348998 +347 1244 3 881653300 +875 211 5 876465144 +757 1073 4 888466983 +825 290 4 880755869 +807 602 5 893083772 +624 326 3 891961210 +716 451 4 879796961 +943 72 2 888639814 +833 577 1 875135113 +460 283 3 882912316 +796 660 5 892690101 +709 233 3 879848511 +503 684 4 879454950 +650 489 3 891387277 +417 549 3 879647924 +13 756 2 886302858 +221 1016 3 875244713 +269 825 1 891456033 +451 258 4 879012343 +844 172 4 877387768 +712 143 5 874957306 +896 1112 3 887161393 +457 133 4 882547820 +279 823 3 875297456 +751 153 4 889133240 +634 988 1 875729217 +95 450 2 880572787 +640 770 4 874777658 +901 560 3 877131624 +895 748 3 879437712 +559 56 3 891034550 +843 211 2 879446255 +666 208 3 880139467 +833 179 5 875124181 +198 81 5 884208326 +13 8 4 882140001 +727 930 3 883709802 +795 755 3 883254564 +840 196 4 891205070 +83 50 3 880327590 +305 311 5 886307971 +860 393 2 885991129 +627 658 3 879530536 +286 215 3 889651630 +738 343 3 892938330 +13 285 5 882139937 +727 578 3 883711897 +682 216 4 888521381 +767 344 4 891462511 +669 313 4 891182948 +844 946 3 877388107 +623 153 3 891034757 +940 150 3 885921422 +903 211 5 891033808 +627 317 5 879530071 +320 96 5 884749255 +533 744 2 887721800 +541 1091 3 883874804 +692 1028 3 876953823 +17 269 4 885165619 +717 476 4 884642868 +405 1043 1 885547644 +537 493 4 886030707 +642 69 5 885602631 +758 566 4 881977488 +276 161 3 874792483 +892 49 4 886610173 +90 708 5 891385787 +340 378 5 884990891 +550 275 4 883425958 +208 393 4 883108398 +586 431 3 884061343 +307 50 5 879284239 +928 749 5 880936022 +936 866 2 886833099 +450 795 3 882468790 +907 496 4 880159666 +577 356 4 880474903 +490 24 4 875428765 +805 231 3 881694978 +796 333 5 892610876 +271 136 3 885848863 +518 508 3 876823266 +707 190 5 886286283 +833 646 5 875123427 +250 991 2 878089202 +768 272 5 884970491 +13 260 1 882140848 +771 652 4 880659507 +486 1142 5 879874725 +940 161 3 885921870 +500 182 2 883873556 +299 1379 3 877878080 +724 749 4 883757670 +782 1278 4 891499278 +925 559 3 884717963 +844 471 3 877381736 +472 50 5 875978010 +939 424 3 880262019 +912 192 4 875966349 +222 162 2 878184087 +833 1274 1 878078280 +542 50 4 886532209 +643 393 4 891450273 +197 751 3 891409290 +878 755 2 880870486 +851 1291 2 875730979 +890 675 5 882404541 +908 603 4 879722361 +889 519 4 880179757 +246 240 3 884923547 +650 265 4 891370031 +932 9 5 891249649 +377 294 5 891296356 +851 174 5 875731776 +763 464 3 878918960 +795 473 2 880561783 +737 137 5 884314694 +872 347 2 888478743 +716 566 3 879796010 +393 302 4 891364609 +118 100 5 875384751 +802 436 4 875985686 +785 294 4 879438705 +933 117 2 874939157 +60 15 4 883328033 +450 628 4 882377590 +807 118 4 892529713 +118 5 2 875385256 +391 133 4 877398898 +507 181 5 889965997 +735 1012 2 876698897 +894 818 3 880416340 +768 762 1 883835210 +899 177 3 884122367 +887 1047 5 881378773 +877 475 4 882677085 +858 689 5 879459087 +757 69 3 888445768 +416 124 4 876697017 +749 380 3 878849586 +391 648 5 877399100 +82 134 4 878769442 +436 187 5 887768982 +913 171 3 880758348 +269 237 2 891446368 +923 294 4 880387081 +851 1675 3 884222085 +327 275 4 887747338 +776 607 4 892920221 +592 185 5 882956201 +695 678 4 888806292 +785 79 4 879438984 +561 185 4 885807173 +868 95 2 877108302 +686 23 5 879547177 +916 741 3 880843401 +812 300 5 877625461 +790 97 2 885155770 +387 232 2 886483289 +590 19 5 879438735 +154 152 4 879138832 +866 313 1 891220955 +622 176 4 882669851 +881 225 2 876536012 +446 340 2 879786691 +937 100 3 876769080 +45 826 3 881015386 +394 183 4 881130008 +897 546 4 879993489 +749 984 3 881073009 +863 750 4 889288973 +889 303 3 880176550 +826 96 5 885690600 +380 318 4 885478624 +841 316 4 889067313 +116 596 5 876452854 +927 755 5 879192381 +695 286 3 888805913 +7 561 4 891354611 +916 86 4 880844655 +901 403 2 877131086 +804 219 3 879445072 +399 404 3 882344684 +490 987 3 875428702 +804 603 5 879441937 +896 1119 3 887160040 +665 301 4 884290096 +683 678 1 893283948 +848 42 2 887040097 +472 338 4 892790531 +901 88 5 877132604 +650 173 5 891369520 +457 275 5 882393648 +498 527 3 881957757 +532 248 4 888635264 +587 292 3 892871141 +846 1221 3 883950220 +852 1615 2 891036457 +807 408 3 892528813 +561 133 3 885807888 +881 69 3 876537933 +887 105 3 881379009 +727 12 5 883710598 +889 524 4 880180650 +399 232 2 882350431 +894 698 4 882404669 +864 394 3 888890432 +738 234 4 875349850 +758 820 4 882054112 +458 619 2 886394778 +813 326 3 883752380 +843 422 2 879448431 +837 926 1 875722371 +882 420 5 879879807 +409 466 4 881107666 +895 283 4 879438028 +924 50 5 884371386 +308 121 3 887739471 +118 179 5 875384612 +881 234 3 876537870 +313 845 3 891016853 +633 300 4 875324233 +881 568 4 876539020 +617 427 4 883789042 +811 321 3 886377483 +796 607 4 892662964 +791 332 5 879448166 +553 657 5 879949212 +536 22 5 882359863 +622 218 3 882670057 +815 175 3 878694952 +911 194 4 892839929 +327 156 4 887747668 +535 1098 5 879618464 +483 228 5 878953485 +490 1012 3 875428416 +620 1219 3 889988069 +894 292 4 879896168 +825 370 3 889021180 +848 511 4 887037822 +207 805 3 882081278 +436 550 4 887771093 +92 233 3 875654732 +751 202 4 889133129 +385 132 4 879446235 +230 69 4 880484338 +85 325 2 879452386 +943 24 4 875502074 +768 235 2 885319496 +314 1297 4 877890734 +908 195 4 879722754 +679 588 3 884487825 +882 210 4 879867568 +658 960 4 875147873 +559 1401 3 891034172 +881 820 2 876537285 +286 345 4 884069337 +847 652 5 878941005 +907 272 5 885860093 +833 201 4 875134150 +10 610 4 877888613 +897 411 5 879993797 +268 1016 3 875742470 +405 1220 3 885546202 +698 174 3 886367337 +862 495 4 879305097 +500 1069 4 883876300 +280 276 5 891700664 +709 569 3 879848209 +901 118 3 877127250 +933 121 3 874855138 +5 419 3 875636815 +886 559 2 876033265 +885 29 1 885714487 +642 155 3 886568726 +749 637 1 878850456 +943 80 2 888640048 +782 936 3 891500110 +894 1009 4 880993709 +910 222 4 880822060 +889 159 3 880182295 +868 100 5 877103935 +627 193 5 879529767 +271 116 2 885847636 +758 312 3 883190351 +399 366 3 882345271 +760 1135 4 875668968 +472 866 5 875978600 +885 290 1 885712921 +815 479 4 878694106 +804 631 3 879444463 +557 739 3 881179539 +466 403 3 890284857 +249 93 4 879640194 +867 144 3 880078484 +552 300 4 879220610 +671 55 3 883546890 +863 316 5 889289419 +789 288 3 880331942 +200 139 3 884130540 +677 358 5 885191454 +749 234 4 878848044 +514 114 5 875462466 +751 227 4 889298892 +270 672 5 876956390 +883 479 5 891755017 +880 403 3 880167778 +907 697 5 880159982 +433 245 3 880585491 +908 100 4 879722427 +17 276 4 885272654 +548 164 5 891044446 +896 559 3 887160187 +843 530 3 879444670 +894 242 4 879896041 +363 496 4 891494563 +577 200 3 880475226 +817 222 4 874815835 +716 173 4 879797328 +643 194 4 891446652 +698 121 2 886368545 +554 70 4 876369382 +592 170 5 882955703 +798 105 3 875555000 +796 796 4 893047320 +890 151 5 882916941 +177 187 4 880131040 +834 9 3 890862311 +903 59 4 891466808 +452 164 4 875269386 +491 12 5 891189305 +870 235 3 885312790 +889 290 2 880181601 +929 50 4 878402162 +338 478 3 879438505 +927 64 5 879199250 +865 405 2 880144194 +846 470 5 883949200 +886 23 4 876031365 +873 875 1 891392577 +682 332 4 888518320 +655 22 2 888474424 +588 186 4 890024079 +758 332 4 886464043 +918 517 3 891987622 +639 516 4 891240678 +532 161 5 892519934 +892 601 5 886609149 +463 476 3 877385664 +653 1101 2 878866755 +870 583 2 879714351 +737 501 1 884314922 +815 705 5 878693183 +826 526 3 885690677 +932 496 4 891250169 +879 25 4 887761865 +835 134 3 891033927 +903 1098 5 891033606 +922 271 3 891445117 +883 198 5 891695570 +913 478 4 880824512 +59 28 5 888204841 +642 934 2 885606137 +880 187 5 880167671 +327 42 3 887746665 +891 181 3 891638601 +933 172 2 874939031 +577 402 4 880475318 +907 924 5 880159240 +929 484 3 879639969 +601 15 1 876347040 +846 194 4 883947630 +339 143 5 891034810 +44 633 3 878347633 +881 705 1 876537679 +711 622 4 879993997 +897 651 3 879990587 +875 423 5 876464967 +14 588 4 890881433 +897 760 5 879993609 +67 117 5 875379794 +848 97 5 887043607 +835 239 5 891034084 +782 895 4 891497964 +880 158 2 880175128 +62 191 5 879373613 +901 95 4 877131685 +838 354 4 892153360 +717 127 4 884715172 +930 50 2 879534410 +798 1509 3 875915155 +897 89 4 879990683 +916 206 3 880844597 +815 392 4 878697163 +694 238 3 875727306 +639 953 2 891239407 +796 284 3 892660954 +938 286 3 891356282 +119 258 2 887037225 +291 577 1 875086669 +823 183 4 878438403 +825 411 3 889021134 +936 1370 4 886833571 +389 494 5 879991411 +833 761 2 879818719 +800 181 4 887646203 +682 431 4 888520799 +852 407 3 891037778 +790 1040 2 884462954 +159 1132 5 880557584 +894 702 4 882404768 +423 292 4 891394504 +846 511 5 883947911 +758 841 3 882055193 +749 79 4 878848069 +621 795 1 874963273 +49 715 3 888069040 +458 83 4 886398071 +880 202 4 880174834 +561 617 4 885808738 +521 68 4 886061689 +509 309 2 883590609 +912 418 4 875966694 +883 151 5 892439523 +501 678 3 883346886 +909 86 5 891920125 +664 458 3 878091463 +704 58 3 891397366 +792 508 2 877910478 +890 152 4 882403299 +432 293 5 889415812 +881 1057 1 879052341 +857 328 3 883432301 +142 322 2 888640054 +786 197 3 882843431 +908 205 3 879722901 +788 65 4 880869584 +725 879 4 876106729 +687 324 2 884651648 +796 213 4 893047167 +864 288 5 878179381 +625 515 4 891263589 +201 7 3 884112201 +654 418 4 887864588 +919 70 4 875921442 +776 567 2 892920351 +896 660 5 887159872 +635 150 3 878879236 +653 571 1 880153406 +651 332 3 879348880 +805 959 2 881705327 +916 1194 4 880844753 +551 399 3 892785364 +934 131 4 891191778 +655 762 2 888984255 +222 64 5 878183136 +324 846 5 880575715 +774 708 2 888556893 +727 1028 2 883712016 +761 151 2 876190394 +828 20 2 891035969 +796 423 4 892690262 +928 134 5 880936742 +859 475 4 885776056 +788 167 3 880870582 +923 742 4 880387792 +510 873 3 887667780 +536 510 4 882359838 +887 204 5 881380067 +39 302 5 891400188 +868 7 5 877104157 +764 717 3 876243644 +796 283 3 892660322 +218 164 3 881288574 +844 176 3 877387933 +537 208 4 886031297 +943 449 1 888693158 +749 94 5 878849829 +716 161 3 879796651 +937 137 3 876769480 +405 1480 2 885549005 +378 97 5 880045612 +798 399 5 875638680 +488 205 4 891375784 +916 280 2 880843864 +659 521 5 891384499 +922 230 4 891447723 +815 527 5 878693830 +817 831 1 874816007 +712 95 4 874730552 +908 174 3 879722642 +846 623 1 883950889 +308 139 3 887741179 +506 324 1 877984213 +517 181 4 892660033 +403 405 5 879786747 +749 731 3 878848828 +796 672 3 893218485 +907 762 5 880159496 +704 639 2 891397667 +532 448 4 888635429 +777 196 5 875980306 +863 347 2 889289067 +420 690 5 891357271 +553 589 5 879948964 +854 132 5 882813877 +766 433 3 891309391 +373 131 4 877099968 +472 202 5 875979737 +632 194 4 879457712 +543 642 3 874863803 +556 482 5 882136440 +892 478 5 886608616 +655 57 3 887427743 +582 458 4 882961968 +449 1005 5 880410734 +588 735 5 890024196 +615 519 5 879448598 +558 269 4 879436396 +492 521 5 879969644 +405 1005 1 885549407 +771 114 4 880659539 +840 357 5 891204114 +711 228 3 879993997 +655 865 4 887523909 +560 50 5 879976109 +758 356 2 881977872 +886 578 4 876034205 +916 106 3 880843934 +878 512 5 880867709 +870 1073 5 875050748 +907 633 5 881030348 +763 99 4 878915765 +890 121 2 882915661 +472 419 4 875982337 +634 292 3 876170101 +409 326 3 881105077 +930 275 4 879534550 +48 428 4 879434608 +771 596 4 880659815 +70 946 3 884150691 +712 1040 4 874729682 +77 134 4 884752562 +890 185 5 882402301 +932 199 5 891249538 +936 294 3 886831679 +851 286 4 883148669 +819 286 5 879952508 +915 286 4 891030032 +654 785 4 887864976 +13 525 5 882140624 +724 898 1 883757784 +540 825 4 882157172 +943 205 5 888639478 +916 64 5 880843996 +911 427 3 892838538 +543 461 3 875659175 +15 845 2 879456108 +889 265 4 880180816 +411 238 3 891035525 +880 623 4 880243069 +880 315 5 892958175 +878 553 3 880869303 +311 448 5 884365718 +894 936 4 879896836 +767 921 5 891462717 +917 476 5 882912385 +804 257 5 879441014 +571 32 2 883355063 +627 435 5 879531158 +478 15 5 889397306 +383 736 5 891192949 +145 49 3 875272926 +394 62 4 881132876 +654 748 4 887863081 +174 202 5 886513729 +609 750 4 886895397 +190 930 2 891042916 +567 589 5 882425932 +457 1 4 882393244 +880 33 3 880167880 +664 69 3 876525364 +380 302 5 885477742 +932 541 1 891251421 +7 521 5 891353124 +601 284 4 876347523 +488 216 2 891294785 +642 447 4 886569328 +535 419 3 879618654 +878 202 4 880869090 +806 273 4 882385524 +881 1164 1 876537106 +305 485 2 886323648 +491 14 2 891185298 +620 260 5 889986624 +855 582 3 879825578 +664 54 3 876526684 +671 172 5 884035774 +560 508 3 879976502 +881 177 4 876537900 +798 38 4 875915806 +782 937 1 891498918 +833 824 1 875134843 +741 479 5 891456874 +318 458 4 884494861 +749 230 3 878848272 +495 637 3 888635995 +535 50 5 879618091 +758 340 3 880672345 +95 219 4 880572658 +825 748 5 880756504 +923 405 4 880387429 +863 271 4 889289191 +731 845 2 886184681 +72 81 3 880036876 +846 58 4 883949200 +886 584 4 876031993 +437 210 3 881002191 +49 1073 5 888066424 +665 1048 4 884292325 +6 539 2 883681433 +660 179 4 891200073 +833 267 1 875655669 +817 117 5 874815947 +897 232 5 879994113 +158 4 4 880134477 +655 543 3 887474050 +618 33 2 891309351 +399 123 2 882340807 +561 144 3 885807547 +936 323 3 886831820 +171 272 5 891034835 +708 222 5 892719172 +570 327 4 881262795 +331 511 5 877196633 +592 183 5 882955613 +763 125 3 878923322 +796 869 4 893047287 +451 321 3 879012470 +795 79 2 880568325 +854 855 4 882814063 +806 188 3 882388159 +186 147 4 891719774 +701 751 4 891446788 +819 245 3 879952688 +798 419 4 876175937 +387 641 5 886483824 +538 121 3 877110209 +933 823 2 874854813 +870 735 3 875679721 +622 719 2 882671622 +69 628 3 882126125 +863 887 3 889289328 +908 96 4 879722932 +907 1054 3 880159598 +938 929 2 891356966 +768 100 5 883835026 +648 88 4 884881679 +445 151 4 891200869 +894 278 4 880416419 +924 134 4 885457827 +890 451 2 882575274 +793 1 4 875104091 +846 1478 4 883950523 +545 95 4 879901458 +940 176 4 885921979 +850 98 1 883195192 +832 307 4 888259231 +804 926 4 879443993 +602 118 3 888638703 +899 748 4 884120232 +551 276 5 892783451 +763 191 4 878915063 +801 313 5 890332694 +887 1283 5 881378896 +201 583 1 884112352 +846 789 4 883948417 +509 294 2 883590972 +537 894 1 886029526 +942 135 3 891283017 +586 222 3 884057387 +923 50 5 880387306 +936 276 5 886832282 +806 249 4 882385476 +645 195 4 892054537 +533 168 4 879191864 +940 347 3 884801024 +119 271 4 886175150 +363 42 2 891495070 +152 1035 4 882477755 +13 793 5 882141841 +715 121 4 875962524 +774 265 3 888557237 +417 209 4 879647299 +825 147 5 880756643 +869 315 3 884490332 +798 473 2 875296109 +739 288 1 886825083 +344 715 4 889814195 +932 811 4 891250392 +407 191 5 876339940 +798 728 4 875914458 +643 4 4 891448136 +216 147 4 880232787 +889 338 1 880176666 +901 294 3 877125532 +539 258 4 879787770 +868 133 2 877108302 +833 523 3 875133840 +536 167 3 882361317 +736 324 3 878708991 +738 665 2 875351873 +230 195 3 880484416 +919 64 5 875374088 +851 128 4 875731330 +795 105 1 883774317 +900 129 4 877833080 +363 652 4 891495143 +584 181 4 885778120 +933 284 2 874854294 +877 451 4 882677865 +704 606 2 891397441 +916 1011 4 880843666 +566 467 3 881650030 +868 222 3 877108989 +746 208 4 885075569 +406 144 1 879445475 +389 608 3 880087832 +693 77 2 875482860 +705 815 3 883427297 +510 324 1 887667618 +774 199 4 888556517 +918 709 4 891986820 +483 9 2 878952471 +807 186 4 892530004 +416 732 5 893213404 +767 1 5 891462829 +927 568 5 879199250 +806 1 4 882385082 +664 121 3 876526659 +135 226 3 879857956 +927 1016 5 879199250 +846 270 3 883946284 +778 226 4 890670638 +326 237 2 879875572 +446 299 2 879787149 +883 47 3 891694182 +676 316 4 892685224 +838 45 4 887066644 +130 7 5 874953557 +854 742 2 882812960 +243 8 5 879989217 +517 472 2 892659923 +647 402 4 876534009 +851 1258 3 890343790 +646 286 3 888528927 +181 1317 1 878962086 +899 356 2 884122087 +896 219 3 887160500 +770 297 5 875972099 +624 750 4 891961163 +330 231 5 876545418 +669 657 5 891517185 +406 382 5 879793295 +934 193 4 891192236 +254 526 3 886472609 +517 755 3 892659893 +916 720 2 880844920 +859 313 5 885774773 +413 237 4 879969755 +846 586 2 883950712 +711 472 1 879991585 +673 313 4 888786942 +751 52 2 889297948 +716 108 2 879794290 +303 427 4 879466547 +405 806 1 885545974 +943 22 4 888639042 +796 371 5 893047167 +941 919 5 875048887 +653 1244 3 878854769 +796 95 4 892690382 +474 549 5 887926999 +864 200 4 888889162 +192 111 2 881368222 +879 121 4 887761865 +883 367 5 891694218 +669 271 2 891182948 +889 1428 3 880179757 +790 470 4 885158547 +109 1161 3 880564678 +906 221 4 879435365 +796 88 5 893047287 +802 183 5 875985469 +721 872 3 877137598 +345 161 3 884993555 +394 720 2 881058146 +28 603 3 881957090 +810 339 5 891294039 +882 288 3 879860762 +758 150 5 881975243 +868 234 4 877103935 +416 535 4 876697847 +314 322 4 877886029 +525 248 4 881085709 +864 597 4 888888625 +682 1267 3 888517627 +363 273 3 891495630 +618 148 3 891309670 +908 127 4 879722694 +87 128 3 879876037 +901 728 4 877132632 +800 275 4 887646203 +889 60 3 880181275 +613 603 5 891227298 +894 286 5 879896756 +800 50 4 887646263 +815 655 3 878694563 +774 567 1 888557772 +675 272 3 889488431 +864 1284 3 888891900 +815 210 2 878698553 +838 419 5 887066989 +478 182 5 889389014 +864 111 3 888888115 +311 614 4 884365357 +540 25 4 882157635 +850 153 4 883194792 +791 331 1 879447940 +903 25 4 891031259 +617 547 1 883789464 +867 529 5 880078863 +827 326 3 882807503 +450 22 5 882373865 +943 28 4 875409978 +760 25 2 875666317 +764 1057 1 876243990 +920 245 2 884220131 +505 117 4 889333508 +840 137 5 891203309 +828 961 2 891038222 +878 111 4 880867282 +771 283 4 880659303 +420 179 5 891356864 +929 136 3 879640184 +60 601 4 883325944 +560 257 3 879976172 +889 833 3 880177472 +716 501 5 879796215 +506 89 5 874874109 +334 1263 4 891549926 +615 283 4 879448015 +632 191 5 879457603 +896 1011 2 887160296 +844 684 3 877387933 +655 222 2 887650944 +920 258 4 884220094 +756 9 2 874828453 +615 72 2 879449164 +916 151 3 880843578 +405 428 1 885547314 +821 707 5 874793848 +903 357 5 891032872 +409 136 4 881107992 +878 432 3 880870048 +840 936 4 891203504 +391 23 4 877398992 +497 642 3 879362041 +454 589 2 888267487 +805 831 4 881695040 +457 368 1 882396133 +918 1099 4 891987571 +323 181 5 878739177 +538 204 3 877363950 +63 181 3 875747556 +878 234 1 880872619 +699 294 3 878881676 +58 200 3 884305295 +795 658 2 883251696 +83 845 3 880306648 +934 451 4 891192562 +715 941 2 875964072 +468 1134 5 875280670 +190 9 1 891033725 +716 229 3 879797177 +881 380 4 876538763 +250 629 4 878091965 +889 100 4 880176845 +655 1011 3 887651060 +894 462 4 882404278 +772 258 5 877533440 +234 1460 3 892335460 +916 11 4 880844369 +881 615 4 876539291 +445 933 1 891200390 +472 62 5 875981876 +648 109 5 882211419 +893 531 4 874830160 +181 281 2 878963038 +671 219 3 884338399 +58 7 5 884304656 +479 403 3 879461988 +531 908 1 887048836 +347 455 2 881653087 +887 1028 5 881379059 +928 246 5 880937184 +723 748 5 880498795 +534 919 5 877807816 +653 431 4 878854666 +907 748 5 880158537 +835 204 3 891033380 +851 252 3 875730418 +479 475 1 879460028 +618 135 4 891307224 +896 58 3 887159531 +890 434 4 882403587 +42 433 2 881108760 +831 129 2 891354866 +882 28 5 879867508 +844 175 3 877386897 +922 200 3 891449878 +881 197 3 876537870 +903 30 5 891466808 +699 106 3 886568066 +840 675 4 891205093 +588 237 2 890015894 +332 820 4 887938524 +886 49 4 876032187 +269 1478 1 891448643 +580 3 5 884125916 +750 1280 1 879445877 +877 584 4 882677507 +585 198 5 891283921 +819 304 4 879952565 +682 540 2 888521291 +727 802 2 883712780 +535 156 2 879617613 +566 23 4 881650405 +655 513 3 891585504 +832 748 3 888259984 +121 318 5 891390013 +357 412 2 878951918 +181 1358 1 878962120 +881 139 3 876538922 +118 427 5 875384751 +635 268 5 878878654 +886 89 4 876031720 +936 127 5 886833795 +537 371 3 886031407 +793 9 3 875103810 +851 284 3 874728338 +805 401 4 881705108 +653 1046 1 880151580 +942 300 5 891282564 +500 371 4 883874341 +486 1610 2 879874811 +286 1053 4 877532093 +864 473 4 888892300 +889 943 3 880178512 +537 270 3 886028498 +537 496 4 886030831 +931 14 4 891036648 +584 108 3 885774575 +455 11 3 879110971 +481 500 4 885828732 +938 290 3 891356679 +751 603 4 889132776 +747 1179 1 888733387 +244 88 4 880607684 +851 295 5 874728370 +869 696 2 884493021 +271 244 2 886106039 +890 69 4 882403446 +871 907 3 888192745 +719 510 4 879360493 +942 215 5 891283117 +569 295 3 879793983 +807 472 4 892530625 +294 520 5 889854323 +756 300 4 874826502 +846 568 4 883948571 +529 268 5 882535220 +866 272 2 891221006 +655 673 3 887523427 +648 633 3 884796858 +648 144 4 884368273 +782 749 4 891498079 +466 33 4 890285113 +622 249 5 882590394 +267 195 4 878972092 +886 174 5 876032739 +894 284 3 880416220 +254 842 3 886475952 +932 203 4 891250584 +320 248 5 884750644 +399 29 3 882349198 +294 354 3 889241377 +897 201 5 879990556 +851 825 4 875730533 +846 729 4 883950053 +896 763 2 887161199 +13 116 5 882140455 +921 230 3 879381051 +82 435 5 878769409 +336 238 3 877757700 +425 33 4 878738435 +490 222 3 875427103 +664 176 4 876526462 +920 340 4 884219993 +346 365 1 874951029 +907 121 4 880159015 +896 1208 3 887160339 +712 174 5 874729995 +919 732 3 875373471 +246 658 4 884923329 +724 332 4 883757670 +345 150 5 884991105 +533 385 4 879438666 +139 744 5 879538169 +677 322 4 885191280 +693 9 3 875481856 +867 134 5 880078723 +466 510 2 890284857 +682 403 3 888517792 +892 228 3 886608095 +758 520 5 881976089 +495 441 3 888633440 +790 328 3 884461023 +870 203 4 875680098 +798 1337 3 875554892 +892 582 3 886608559 +821 495 5 874793574 +325 386 4 891479890 +882 70 3 879876573 +500 763 3 883865589 +187 694 5 879465532 +919 264 3 875288362 +114 171 4 881309511 +401 663 1 891033549 +901 430 3 877131416 +497 73 3 879362858 +383 188 5 891192949 +805 405 3 881694885 +883 190 4 891693058 +251 480 5 886271733 +592 7 5 882607986 +540 515 5 882157105 +788 203 5 880869215 +7 173 5 891351002 +669 121 3 892549673 +896 809 2 887160771 +758 342 4 881295151 +825 288 1 880931932 +450 356 4 887138756 +535 1101 4 879619177 +716 627 4 879797475 +669 205 4 892550137 +916 943 4 880844834 +782 885 3 891498766 +332 974 4 888360532 +886 396 2 876032739 +934 902 4 891188580 +540 276 4 882157061 +875 357 5 876465072 +924 28 4 885457827 +870 208 4 879270313 +405 1306 1 885546529 +927 1095 2 879182939 +927 63 4 879197074 +863 289 4 889289457 +818 288 5 891870364 +514 190 5 875318224 +494 663 5 879541080 +831 204 5 891354645 +402 181 4 876266860 +846 604 4 883947777 +804 380 4 879445715 +468 772 4 875291722 +921 147 3 879379843 +619 546 2 885953826 +857 20 3 883432688 +914 402 5 887124376 +549 258 5 881671833 +892 31 4 886608643 +478 144 5 889396509 +883 58 3 891717380 +738 97 4 875350122 +563 304 2 880506234 +870 1098 4 889812986 +45 764 4 881015310 +938 411 3 891357042 +851 234 4 875731189 +72 403 3 880037277 +886 631 4 876033645 +912 523 4 875965830 +799 307 3 879253795 +554 288 3 876231123 +617 558 3 883789425 +932 665 2 891252058 +899 588 3 884122155 +306 285 4 876504354 +292 165 4 881105657 +619 68 3 885954105 +716 603 5 879794775 +342 165 3 875318907 +806 200 4 882387670 +772 354 4 889028692 +655 847 2 891585279 +555 244 5 879962642 +619 327 3 885953743 +488 174 4 891294853 +807 743 3 893083216 +919 813 4 875288681 +868 710 3 877103320 +782 350 4 891498641 +49 12 4 888068057 +496 217 5 876073320 +889 732 2 880179612 +1 122 3 875241498 +152 559 1 882475972 +468 127 4 875280126 +195 507 4 875436627 +460 1171 3 882912235 +805 294 1 879970879 +878 170 4 880867485 +468 226 2 875302208 +814 184 3 885411073 +943 732 4 888639789 +675 750 4 889488487 +774 1274 1 888557557 +693 178 5 875482309 +860 312 4 888169119 +721 1442 4 877147872 +912 648 3 875966616 +942 282 5 891282816 +539 660 5 879788346 +725 111 3 876106206 +445 1009 2 891200321 +655 961 3 888685735 +832 313 5 888258754 +889 92 3 880177970 +923 340 5 880387080 +892 1269 5 886607958 +45 993 4 881014785 +697 763 4 882622208 +875 806 4 876465230 +711 258 4 876185488 +916 276 4 880843551 +880 98 5 880241327 +666 12 4 880139323 +896 665 1 887235690 +900 864 2 877833000 +763 159 3 878917818 +854 472 1 882813143 +897 11 2 879990744 +864 465 3 888889327 +805 179 4 881697792 +927 826 4 879181451 +354 922 4 891216825 +532 1594 4 893115576 +741 283 4 891458250 +892 125 4 886610588 +592 501 4 882956276 +244 735 5 880605697 +407 168 5 875042424 +889 663 3 880180554 +532 576 5 893118712 +872 409 3 888479677 +275 227 3 876198296 +932 490 4 891250891 +883 306 3 891691410 +907 120 4 880159562 +651 322 3 880126632 +855 462 4 879825383 +934 1 2 891225958 +393 134 2 887746824 +895 885 2 879437868 +394 151 5 880886919 +555 274 4 879964240 +716 83 4 879795906 +891 323 3 883489806 +862 789 5 879304941 +943 831 2 875502283 +622 977 2 882591804 +645 357 5 892053274 +10 707 5 877886783 +764 231 3 876246409 +648 1626 1 884795447 +916 739 3 880845589 +167 465 5 892738341 +882 455 3 879862652 +343 260 1 876402556 +138 742 4 879023245 +592 3 4 882608960 +343 317 5 876405130 +416 96 4 893142245 +919 660 4 875373945 +918 143 4 891988726 +823 219 2 878439038 +896 715 3 887159895 +882 969 5 879880132 +236 411 1 890117095 +843 62 4 879444891 +671 237 5 884037003 +507 895 5 889964202 +815 167 2 878697705 +465 513 5 883530015 +18 317 5 880131144 +650 226 3 891370031 +798 133 3 875303559 +6 537 4 883601277 +795 144 4 881265483 +495 154 4 888633277 +655 715 3 887476942 +619 56 3 885953992 +828 116 4 891035724 +869 1014 4 884493279 +425 97 2 890347247 +840 221 4 891203309 +317 683 2 891446412 +761 243 3 876189749 +932 86 4 891249146 +592 628 3 882608107 +870 732 2 882123355 +936 1377 5 886832183 +854 509 4 882814333 +498 265 2 881957489 +834 237 5 890862437 +551 568 4 892783906 +847 77 4 878941421 +826 2 3 885690713 +856 316 5 891489547 +901 20 1 877130406 +898 313 4 888294375 +452 528 4 875261261 +638 185 5 876695601 +836 302 5 885753506 +536 88 4 882360601 +452 172 4 876297413 +927 8 4 879183164 +342 57 3 875319457 +929 654 3 879640290 +703 742 3 875242852 +933 483 4 874854424 +927 411 4 879182939 +207 238 2 876079087 +858 293 3 880932692 +932 836 5 891250142 +894 1153 3 882404642 +892 99 3 886610996 +907 393 5 880160009 +823 154 5 878438607 +119 471 4 886177338 +773 264 2 888538348 +748 588 4 879454497 +930 281 4 879535056 +747 9 5 888734012 +776 637 3 892920381 +894 25 2 880416137 +295 582 5 879517721 +546 271 5 885139779 +933 424 1 874938833 +451 885 1 879012890 +655 954 2 887428031 +666 282 3 880313482 +814 145 2 885411749 +846 175 5 883948048 +768 222 4 883834705 +500 49 4 883876053 +798 395 3 875915279 +643 428 4 891447196 +507 306 5 889964677 +886 282 3 876032378 +897 649 3 879992004 +757 433 4 888445684 +894 707 4 882404250 +903 479 4 891032793 +825 1034 4 881185343 +695 343 4 888806120 +394 33 4 880889259 +859 151 2 885775067 +916 176 4 880844419 +379 28 4 880524943 +862 566 3 879304571 +436 1263 3 887772060 +39 319 4 891400094 +269 940 1 891451908 +406 184 2 879792863 +592 203 5 882956276 +271 1282 2 885847666 +708 352 1 892718596 +719 427 4 883354106 +625 486 3 891953617 +894 639 5 882404430 +632 633 4 879459003 +933 67 1 874938430 +214 721 3 891635915 +450 1421 4 882399664 +943 173 5 888638960 +794 13 4 891035582 +456 129 3 881372604 +779 225 4 877454525 +833 336 2 878078056 +336 50 4 877759224 +864 195 4 888888937 +922 127 3 891453105 +889 269 4 880176518 +311 230 5 884364931 +896 470 2 887159531 +786 684 4 882843607 +864 97 4 888887216 +840 183 5 891204664 +908 12 3 879722603 +184 274 4 889907812 +831 197 4 891354751 +873 259 1 891392698 +770 123 3 875972100 +653 441 3 890181186 +916 1010 4 880843482 +889 700 3 880182295 +95 473 4 879193353 +917 285 4 882911122 +796 591 3 892611093 +905 871 2 884984149 +645 428 4 892054684 +829 582 4 881699060 +752 1279 3 891208491 +119 1137 5 886176922 +940 508 5 885921198 +10 484 5 877891904 +796 53 1 893048713 +655 1645 4 892871225 +854 185 4 882813877 +450 25 3 882376188 +880 172 5 880167695 +850 132 5 883195236 +790 317 4 885155949 +527 499 5 879456490 +293 558 3 888906143 +904 255 5 879735380 +868 588 1 877106421 +197 227 3 891409936 +405 972 1 885546445 +890 436 3 882402949 +443 39 1 883505492 +727 22 4 883710236 +899 318 4 884121512 +757 403 4 888466461 +77 222 4 884732873 +634 685 4 875729535 +585 462 3 891283124 +839 130 3 875753029 +806 1129 3 882384988 +905 322 3 884983341 +805 367 4 881705108 +686 194 5 879546443 +870 47 3 875679958 +916 1014 3 880843683 +617 559 1 883789507 +175 187 4 877107338 +846 73 4 883949728 +405 1208 1 885546577 +897 717 1 879993912 +588 283 4 890015835 +932 511 5 891250282 +405 638 1 885549589 +932 805 4 891250236 +896 399 1 887161151 +896 241 5 887158791 +117 895 2 886019030 +586 806 4 884058611 +807 578 4 892530582 +937 988 2 876768983 +521 79 4 884477656 +774 413 1 888559013 +85 1075 3 879454400 +627 229 2 879531459 +711 1289 2 879991458 +683 607 5 893286207 +551 51 5 892784780 +552 845 3 879222368 +882 69 5 879864917 +854 286 1 882811742 +741 313 4 891455095 +788 629 1 880870149 +919 333 4 875920290 +746 210 5 885075211 +922 145 3 891450315 +892 480 4 886607844 +660 121 2 891197954 +683 346 4 893286347 +936 864 4 886833360 +773 200 4 888540279 +483 473 3 878953090 +361 527 4 879441462 +466 121 3 890285034 +650 151 3 891387418 +889 540 2 880182317 +927 328 4 879176059 +299 319 3 889501480 +695 358 5 888806270 +148 164 4 877398444 +164 690 4 889401241 +882 378 5 879868198 +486 246 3 879874545 +151 498 5 879524150 +887 673 5 881381382 +846 615 5 883948003 +908 481 3 879722754 +907 5 5 881030348 +896 260 2 887157732 +246 384 2 884923632 +716 1101 5 879795467 +697 895 2 882621548 +693 662 4 875482604 +606 154 3 880923862 +814 98 4 885410957 +671 98 4 883949357 +405 877 1 885549903 +650 2 3 891381709 +924 100 4 884371558 +911 627 3 892840888 +26 248 3 891377468 +416 231 3 878880244 +666 428 3 880139439 +429 44 3 882386171 +248 323 1 884534472 +907 258 4 880158316 +747 258 2 888638335 +332 562 5 888098328 +916 1597 3 880845206 +892 202 4 886608135 +844 241 4 877387150 +815 88 4 878695176 +601 9 4 876347196 +77 183 5 884732606 +198 428 4 884209188 +935 125 4 884472575 +177 204 3 880131011 +115 696 4 881169984 +267 183 4 878971438 +834 268 3 890860194 +932 136 5 891249736 +222 1206 2 878184899 +378 428 3 880055101 +846 496 3 883947630 +683 513 5 893286208 +883 739 2 891696715 +679 423 3 884487112 +933 234 3 874853957 +927 118 5 879181042 +592 134 5 882955794 +798 703 4 876177414 +474 343 3 887915082 +159 1254 1 884360361 +804 746 4 879444890 +532 759 2 888631120 +387 188 5 886483151 +870 570 2 879714681 +591 26 3 891031526 +913 276 3 881037047 +926 292 3 888636202 +916 844 3 880843465 +796 649 3 893194646 +788 317 4 880869945 +909 170 5 891920276 +532 127 5 893119438 +543 732 3 877547863 +794 1251 4 891034755 +730 685 2 880310569 +10 686 4 877886911 +374 82 4 880394484 +922 219 1 891449901 +484 186 4 891195219 +13 141 2 890705034 +339 736 3 891035093 +691 227 4 875543108 +711 83 5 879993628 +749 833 2 878850565 +455 286 5 878585250 +663 597 3 889492917 +436 635 3 887771875 +823 204 4 878438930 +643 218 3 891449680 +835 523 3 891033560 +871 909 3 888192475 +707 923 5 886286092 +741 210 3 891455353 +499 524 4 885599073 +327 260 1 887743705 +889 26 4 880178748 +548 272 2 891042194 +886 467 4 876032577 +145 943 3 875272050 +727 209 3 883710186 +843 633 3 879447285 +666 357 4 880139526 +457 386 3 882549133 +759 294 5 875227708 +932 235 2 891250770 +234 1185 3 892335951 +711 419 5 879994581 +658 628 3 875145841 +536 181 5 882318369 +805 228 3 881694423 +682 728 3 888522021 +786 692 4 882843190 +70 418 3 884149806 +864 15 4 888887658 +943 419 2 888638920 +908 483 4 879722718 +880 218 4 880241355 +749 729 4 878848015 +697 879 4 882621486 +921 111 4 879380097 +487 11 5 883445495 +925 325 4 884633349 +896 489 5 887159674 +851 1598 3 886534882 +889 533 3 880177352 +921 259 4 884673369 +378 38 3 880333383 +936 904 5 886831415 +472 356 3 875983231 +508 50 5 883777430 +146 311 4 891457714 +920 313 5 884219701 +425 293 4 878738992 +943 239 5 888639867 +893 358 2 874828296 +721 222 5 877138584 +911 151 5 892840916 +669 97 4 891517238 +414 270 5 884998972 +405 176 1 885547909 +5 375 3 875637587 +24 518 4 875323552 +892 22 5 886608714 +846 28 5 883948685 +535 498 4 879619224 +524 134 5 884634848 +683 328 2 893283728 +13 182 5 882139347 +95 433 4 880571950 +357 826 3 878951984 +546 121 5 885140909 +559 513 5 891033956 +26 323 2 891349184 +919 23 3 875373074 +833 250 3 875036499 +716 178 5 879795269 +379 433 4 880525259 +787 288 1 888979236 +450 228 4 882373019 +932 1449 5 891248937 +904 815 4 879735678 +846 510 4 883948003 +807 230 4 892530216 +921 245 1 879379361 +618 31 4 891307577 +899 29 2 884122844 +932 1558 5 891248996 +618 506 4 891308296 +825 284 3 880756603 +416 392 5 893213444 +847 716 3 878941370 +56 295 3 893257941 +855 166 4 879825578 +721 1393 3 877137598 +934 708 3 891192329 +932 121 3 891251669 +671 562 5 884036365 +902 8 5 879465765 +913 95 4 880826766 +781 302 5 879633862 +299 114 4 878191943 +923 9 4 880387306 +913 729 3 881368824 +650 131 3 891372258 +305 69 3 886324299 +181 1137 1 878962392 +779 118 5 875994324 +642 1152 5 886569828 +880 227 2 880167918 +387 25 2 886481271 +864 257 4 891044192 +931 298 4 891036849 +887 95 4 881379718 +940 436 4 885921542 +699 323 4 879147366 +62 528 5 879375080 +841 322 4 889067152 +896 2 3 887160000 +560 606 4 879975613 +896 480 3 887158185 +693 58 3 875482477 +908 478 4 879723046 +759 281 4 881476991 +438 252 4 879868364 +906 283 4 879435524 +812 682 4 877625224 +901 94 4 877131738 +825 252 5 880757103 +913 427 4 881725960 +890 671 5 882404571 +932 855 5 891249109 +875 294 2 876464755 +671 118 5 875389187 +537 12 3 886031074 +934 72 3 891195982 +666 291 3 880313640 +622 3 1 882672922 +224 126 3 888103704 +684 210 3 878759474 +798 732 2 875638759 +669 248 4 892549412 +935 118 4 884472704 +392 174 5 891038979 +374 471 4 880393056 +913 919 4 880758150 +34 288 2 888601628 +711 94 2 879995728 +778 219 3 890727129 +283 109 4 879297237 +720 272 4 891262762 +864 729 4 888889035 +745 10 5 880123905 +651 276 4 879348966 +429 939 4 882384986 +719 520 5 879360466 +922 43 3 891454445 +864 143 4 888887703 +833 58 2 875124495 +805 716 4 881696980 +524 471 4 884322169 +910 628 1 880821319 +660 79 2 891199348 +53 15 5 879443027 +833 4 3 875123781 +542 72 3 886532818 +788 1107 3 880870773 +870 357 5 875679687 +456 72 1 881374801 +24 58 3 875323745 +342 1010 1 874984574 +902 271 2 879463433 +913 657 5 881725761 +788 96 3 880868803 +718 1028 4 883349191 +864 117 4 888889466 +715 576 2 875964468 +897 506 4 879991524 +889 28 4 880181995 +865 763 1 880143680 +911 655 5 892839719 +693 50 3 875483881 +651 309 1 880126632 +862 435 5 879304244 +727 827 3 883709839 +727 229 2 883711476 +554 866 3 876232486 +794 19 4 891036111 +883 694 5 891693110 +923 151 4 880388021 +404 339 1 883790609 +809 300 4 891036903 +711 157 3 879994608 +758 6 2 881976919 +648 441 3 884883724 +551 229 5 892784779 +931 750 5 891037521 +463 1199 1 889937778 +912 659 5 875966202 +523 155 4 883703091 +927 552 4 879196283 +664 509 4 876523654 +758 541 4 881977747 +833 940 2 875134411 +667 427 5 891034767 +666 513 4 880139323 +624 866 3 879793436 +878 1039 3 880866508 +860 344 3 887028250 +554 56 4 876550257 +749 478 5 878847328 +387 408 4 886484492 +768 346 3 883834705 +823 17 4 878439655 +398 712 2 875736732 +567 429 4 882426899 +627 526 4 879529916 +907 710 4 880160106 +95 507 4 880571226 +880 1184 3 880167806 +856 327 4 891489478 +551 628 5 892783177 +839 845 4 875752237 +804 357 5 879441450 +886 628 3 876031695 +704 519 3 891397262 +804 455 5 879443609 +354 936 4 891216607 +336 579 3 877757373 +639 165 3 891239658 +490 458 3 875428417 +907 1047 5 881030348 +890 313 5 882914803 +659 164 4 891384606 +20 82 4 879669697 +893 286 4 874828384 +942 435 5 891282931 +429 194 4 882385705 +312 644 5 891698987 +323 651 5 878739829 +786 458 3 882842195 +880 191 5 880175597 +675 427 5 889489691 +901 1605 5 877127052 +560 11 4 879975485 +618 49 3 891309514 +778 423 1 890803860 +819 147 5 884105025 +620 560 4 889988232 +926 294 3 888636269 +748 58 4 879455083 +862 82 4 879305237 +843 234 4 879443297 +378 436 4 880046437 +660 123 2 891198109 +700 98 3 884494215 +642 95 5 886131547 +822 1 4 891037291 +709 697 5 879847946 +886 943 3 876032248 +63 121 1 875748139 +890 136 5 882403045 +603 288 3 891956283 +927 155 4 879193972 +924 237 4 889286746 +826 810 3 885690854 +64 732 4 889739288 +659 499 4 891385438 +883 14 3 891693675 +689 1 3 876676211 +682 42 5 888518979 +374 25 5 880393191 +906 277 3 879435469 +363 100 5 891495070 +886 47 4 876031601 +93 118 3 888705416 +756 588 4 874829258 +664 100 5 876523833 +867 156 5 880078574 +940 271 2 884801053 +70 1030 2 884151801 +347 693 5 881654156 +592 1620 1 882609057 +703 1012 4 875242852 +884 713 3 876858914 +639 356 2 891239380 +608 187 4 880403055 +704 89 5 891397305 +499 100 4 885599040 +92 225 3 875640740 +648 496 4 884796822 +299 20 3 877880111 +606 546 4 878149278 +916 83 4 880845206 +578 325 1 888957735 +747 1659 1 888733313 +940 137 3 885921758 +919 755 3 875373889 +694 28 4 875729304 +533 1001 1 879366160 +290 183 4 880474054 +939 254 3 880262319 +939 841 4 880261868 +407 94 4 876345492 +913 436 3 881367312 +798 941 3 876176561 +867 328 5 880077855 +7 639 5 891353676 +409 854 4 881108648 +119 323 4 874774449 +896 387 2 887159368 +679 286 5 884312660 +386 181 3 877654961 +593 775 3 875672949 +620 422 1 889988036 +290 151 2 880474835 +406 157 3 882480865 +871 226 5 888193177 +749 977 4 878850502 +804 229 4 879445816 +894 1592 4 889469391 +784 331 4 891387155 +804 100 5 879445904 +892 521 5 886608263 +897 76 4 879992811 +352 175 1 884290574 +548 1047 4 891416011 +653 42 2 880151818 +554 117 4 876231777 +598 259 3 886710977 +323 334 3 878738865 +690 72 2 881177553 +669 125 3 892549622 +688 749 5 884153712 +889 1553 3 880180979 +900 237 4 877832803 +653 410 1 878855024 +933 227 1 874939078 +239 39 5 889181093 +766 550 3 891310210 +692 66 2 876953130 +49 235 2 888068990 +613 89 5 891227237 +927 404 4 879197692 +682 284 4 888519725 +613 12 5 891227299 +455 546 3 879110767 +849 406 4 879695125 +896 313 4 887235122 +869 151 5 884493279 +506 5 4 874874947 +804 208 5 879441412 +927 402 4 879192123 +758 208 4 881978148 +801 881 3 890332820 +417 568 2 879648155 +682 765 4 888523581 +919 301 3 875288164 +815 444 2 878698407 +646 288 3 888529127 +852 568 4 891037947 +808 872 5 883949986 +160 488 5 876862078 +890 603 5 882404851 +575 168 5 878148358 +683 331 2 893283728 +907 277 5 880158794 +72 844 4 880035708 +899 214 4 884122044 +56 405 4 892679460 +847 204 4 878939912 +764 286 4 876232900 +721 322 4 877136891 +188 300 4 875071195 +881 474 3 876537870 +428 269 5 885943749 +11 229 4 891905878 +405 1382 1 885549790 +758 435 5 881975853 +790 213 3 885156336 +779 252 3 877453656 +883 81 5 891717908 +906 287 5 879435524 +328 582 5 885045844 +694 434 5 875727018 +537 1147 3 886031473 +883 354 4 891692000 +939 405 4 880261450 +927 722 3 879197421 +749 401 1 878850015 +916 431 3 880844655 +932 45 5 891249063 +416 111 4 876697592 +430 127 4 877225484 +830 487 5 891898415 +615 86 5 879448439 +911 603 5 892838864 +708 457 4 892718965 +325 1487 3 891480086 +864 172 5 888887795 +381 588 3 892697338 +297 690 5 876717812 +921 136 4 879380806 +541 459 5 884047153 +648 671 3 884883476 +717 1047 4 884642981 +748 195 4 879455083 +314 609 4 877889311 +890 200 4 882402633 +896 1622 2 887160296 +886 181 5 876031392 +567 10 4 882426508 +940 82 4 885922040 +817 273 5 874815885 +927 756 4 879181259 +429 156 4 882384920 +42 87 4 881107576 +433 300 3 880585068 +731 1039 4 886182366 +201 239 1 884140275 +891 756 4 883429918 +600 1419 3 888452564 +846 616 3 883950753 +655 956 3 888984538 +743 286 3 881277602 +933 11 4 874853899 +776 193 3 891628895 +875 302 5 876464694 +633 226 4 877212085 +602 300 3 888637847 +889 1110 3 880182943 +660 1133 2 891201419 +638 405 3 876695338 +683 289 4 893286260 +568 134 5 877907092 +930 690 3 879534335 +650 144 3 891381585 +892 1285 4 886609435 +526 258 3 885681860 +790 90 2 885157440 +924 849 3 886760052 +934 286 4 891188367 +321 498 5 879438699 +650 443 5 891369982 +682 209 3 888521381 +890 604 5 882403299 +533 293 3 879191469 +579 4 2 880952271 +796 99 3 893218764 +782 328 5 891498030 +943 722 3 888640208 +181 273 1 878962774 +721 127 5 877140409 +868 1076 1 877111487 +711 723 5 879994852 +933 7 4 874854190 +608 216 5 880403239 +756 622 3 874830790 +627 660 4 879530463 +43 254 3 875975323 +889 881 3 880176717 +922 69 3 891453106 +435 208 4 884131515 +901 768 3 877131793 +654 189 4 887864230 +627 684 4 879531301 +880 881 4 892958401 +222 410 2 877563326 +406 26 3 879793235 +405 79 5 885544798 +567 705 5 882426105 +655 1173 2 887431157 +622 109 5 882590559 +622 391 2 882671827 +701 237 5 891447198 +666 962 3 880314272 +899 597 2 884120270 +41 191 4 890687473 +105 347 3 889214334 +93 14 4 888705200 +533 56 3 879439379 +919 319 3 875288164 +896 845 3 887159531 +409 632 3 881107902 +858 323 2 879459926 +843 180 3 879447234 +769 1322 2 885424730 +865 946 1 880235099 +896 42 4 887160000 +919 93 5 875288681 +354 432 3 891218380 +764 200 4 876244895 +761 1558 1 876190511 +393 1001 4 887745410 +200 447 4 884130014 +938 126 4 891356656 +889 684 2 880180376 +708 740 5 877325687 +514 153 4 875463386 +943 785 2 888640088 +635 688 2 878878838 +881 511 5 876537419 +660 419 2 891199348 +837 950 2 875722169 +440 304 5 891546785 +321 52 3 879440612 +15 225 3 879456447 +579 153 4 880952335 +551 49 3 892783281 +865 411 1 880144153 +850 496 5 883195079 +749 449 3 878850610 +276 92 4 888873675 +621 926 3 880738894 +291 240 4 874833726 +754 273 3 879451516 +64 651 4 889740795 +933 180 5 874854723 +883 199 4 891717462 +845 904 3 885409374 +890 173 4 882575167 +772 331 5 876250551 +835 632 5 891033747 +488 162 3 891376081 +593 535 3 875659943 +505 300 4 888631046 +894 272 4 885427952 +130 751 5 884623756 +796 748 5 892611979 +629 271 4 880116722 +862 658 5 879304526 +144 59 4 888105197 +658 192 4 875147935 +735 300 4 876697647 +226 596 3 883889884 +600 1274 2 888453145 +917 405 3 882911215 +561 492 4 885807369 +704 193 5 891397305 +943 229 2 888693158 +934 481 4 891191402 +874 514 5 888633311 +270 1109 5 876955899 +935 1 3 884472064 +879 118 3 887761562 +286 800 5 877534528 +839 1 4 875751723 +339 213 4 891033542 +861 463 3 881274698 +896 642 2 887160702 +184 735 3 889909868 +58 168 5 891611548 +826 183 5 885690482 +883 48 4 891717283 +747 403 5 888734113 +89 451 3 879459884 +373 168 5 877098297 +912 507 3 875965906 +479 131 3 879460999 +676 250 4 892686164 +594 100 4 874781004 +916 101 3 880845690 +846 183 4 883948048 +805 922 5 881702716 +741 67 3 891457456 +553 605 4 879949251 +474 509 5 887927457 +154 523 5 879138831 +262 747 4 879793641 +195 366 3 885110899 +592 531 5 882955765 +676 100 5 892686083 +854 709 4 882814395 +715 1088 1 875962454 +424 292 4 880859228 +919 419 5 875374269 +734 121 4 891026028 +804 763 4 879443776 +721 435 4 877139384 +806 196 5 882388437 +897 925 5 879993739 +747 726 2 888733387 +881 399 4 876538465 +393 575 2 889728712 +890 208 5 882403007 +655 153 2 887523641 +814 7 4 885411073 +735 237 4 876698714 +825 273 5 880756401 +308 396 4 887740099 +627 241 4 879531397 +943 566 4 888639886 +814 358 2 885410837 +825 696 3 889020961 +566 166 4 881649709 +504 561 4 887910023 +747 181 5 888639014 +14 663 5 879119651 +881 742 4 876536773 +778 168 5 890670560 +655 54 2 887430746 +373 79 4 877098979 +805 1157 5 881696124 +643 183 5 891447790 +563 294 3 880506121 +47 305 5 879439040 +802 266 3 875984938 +929 12 4 879640036 +85 196 4 879454952 +487 173 4 883445580 +145 293 4 875270276 +279 826 4 875297456 +681 538 3 885409516 +213 194 4 878955766 +642 252 5 885842962 +336 746 3 877758103 +530 181 3 886202320 +854 123 1 882812406 +14 25 2 876965165 +618 200 5 891307367 +936 928 3 886832502 +707 285 5 880059749 +903 46 4 891033123 +727 83 5 883710889 +523 56 3 883703495 +589 326 1 883352600 +561 160 3 885808904 +757 426 3 888467270 +943 230 1 888693158 +616 327 3 891224558 +887 756 5 881379094 +768 301 5 883835026 +880 186 4 880174808 +851 1254 1 875730895 +178 268 4 884837324 +795 154 3 881529904 +276 413 3 877934705 +551 660 3 892783672 +758 13 5 881977205 +67 1047 3 875379750 +495 1 4 888632943 +918 340 1 891986174 +556 321 4 882135994 +521 174 4 884478721 +866 303 4 891221165 +416 122 3 886315885 +5 373 3 875635907 +918 971 4 891987780 +534 118 4 877807935 +875 428 4 876465112 +620 393 5 889988196 +483 258 4 878950353 +802 569 3 875985840 +256 597 4 882152509 +49 404 3 888067765 +500 13 5 883865232 +648 1337 3 884367366 +454 387 2 888267279 +221 1208 3 875247565 +498 77 2 881961627 +924 429 4 886760020 +815 229 3 878695527 +650 174 4 891369479 +525 147 3 881085893 +848 199 5 887042341 +755 301 3 882569771 +697 237 5 882622414 +559 300 4 891035137 +775 333 4 891033022 +798 815 5 875295695 +398 8 3 875716709 +456 324 4 881372687 +727 472 2 883709374 +902 268 1 879463373 +862 69 5 879304244 +181 880 1 878961668 +848 483 5 887038021 +847 195 4 878940301 +459 257 5 879563245 +902 989 2 879465336 +314 12 4 877888758 +704 481 5 891397667 +660 444 2 891201948 +592 135 5 882955765 +847 172 4 878939803 +270 56 5 876955976 +586 978 2 884065825 +506 693 4 874876651 +843 431 3 879443763 +452 456 1 876209837 +751 484 3 889134483 +815 265 5 878696181 +880 67 1 880175023 +545 62 5 879899438 +883 195 5 891696824 +933 576 1 874939185 +870 802 3 879714763 +312 91 3 891699655 +923 926 4 880388383 +198 684 3 884208778 +189 473 5 893264558 +931 344 4 891035917 +880 179 4 880175735 +526 313 5 885681934 +435 98 5 884131576 +901 1643 5 877130473 +663 299 2 889491739 +271 466 4 885849490 +85 161 4 882819528 +435 333 3 884130647 +397 522 5 885349476 +452 223 5 885816768 +838 191 5 887065709 +798 323 4 875295469 +919 310 3 885059537 +727 96 4 883710152 +679 95 3 884487688 +727 363 3 883709641 +62 15 2 879372634 +579 331 3 880951346 +934 313 3 891188441 +916 402 3 880845177 +703 127 5 875242663 +931 125 4 891036786 +763 466 4 878922422 +122 197 5 879270482 +582 1 4 882961257 +655 1012 3 888474357 +456 229 3 881375482 +144 170 4 888105364 +130 794 5 875802137 +706 323 4 880996945 +832 678 2 888259984 +910 405 4 881420841 +848 519 5 887037980 +87 1178 3 879877208 +272 69 4 879455113 +932 506 4 891249710 +924 216 4 885458010 +644 873 4 889076310 +934 152 4 891194303 +592 148 2 882608961 +851 717 3 874728598 +682 692 3 888519207 +807 625 3 892978296 +301 17 4 882077142 +102 272 3 888112484 +943 431 4 888639724 +919 343 4 885059506 +922 631 3 891453171 +543 14 4 876896210 +916 132 3 880844597 +661 58 4 886841865 +394 393 4 880889350 +943 724 1 888639478 +650 378 3 891383879 +854 431 3 882813726 +943 67 4 888640143 +912 174 3 875966756 +918 86 4 891986798 +867 180 5 880078656 +922 402 3 891448451 +933 410 3 874854383 +843 161 2 879444891 +936 321 3 886831769 +757 455 3 888445035 +290 99 4 880473918 +41 205 4 890687353 +782 1589 3 891500028 +923 825 4 880387525 +864 451 4 888889563 +861 509 5 881274739 +864 228 5 888888067 +620 1480 3 889988281 +698 133 2 886367586 +721 748 3 877136967 +913 186 3 880946006 +883 514 4 891694182 +585 652 4 891285658 +911 163 4 892839846 +798 168 4 875743765 +720 902 4 891263460 +308 642 5 887738226 +846 204 3 883948141 +314 1029 2 877891603 +722 748 4 891280154 +537 703 3 886031859 +536 432 4 882360552 +919 946 4 875373416 +733 933 1 879535752 +889 1022 4 880176667 +940 313 5 884801316 +104 9 2 888465201 +884 198 5 876859237 +653 1231 2 880153349 +405 660 2 885546247 +757 561 2 888467380 +699 475 4 878882667 +405 389 2 885548932 +925 219 3 884718099 +943 201 5 888639351 +499 647 5 885599013 +682 1221 3 888517265 +892 1 5 886608185 +752 1463 4 891208261 +825 326 4 886696420 +507 345 5 889964202 +749 430 4 878847926 +189 532 4 893264150 +938 358 4 891355972 +407 131 3 875552400 +868 589 4 877106421 +943 386 1 888640186 +850 95 5 883195301 +862 252 3 879302910 +577 770 4 880475149 +234 623 2 892318107 +938 871 2 891356549 +553 524 5 879948996 +894 213 4 882404278 +631 332 3 888465180 +604 447 4 883668352 +94 182 5 885873089 +773 182 4 888539993 +907 111 5 880158883 +722 871 2 891281876 +90 500 4 891384721 +718 257 4 883348845 +334 10 4 891545265 +541 1409 4 883874778 +292 483 5 881105442 +642 759 3 885843824 +880 1035 4 880242933 +922 214 2 891454071 +488 323 1 891293263 +934 794 4 891192849 +532 187 4 884594932 +128 180 5 879967174 +907 405 4 880159113 +738 98 4 875350515 +886 194 3 876031365 +894 57 4 882404397 +757 574 3 888467187 +757 298 4 888444208 +339 346 5 891032255 +880 1157 4 880243817 +913 96 5 881725904 +533 778 4 879192157 +655 45 3 891585477 +880 591 4 880166990 +650 474 4 891385315 +870 1046 3 879714310 +771 111 4 880659919 +856 270 3 891489412 +932 153 4 891251063 +332 245 4 888098170 +751 809 3 889299429 +416 184 4 876699758 +770 473 5 875972612 +638 175 4 876695774 +623 185 4 891034343 +291 153 4 874871736 +682 24 4 888522575 +718 282 5 883348712 +641 483 5 879370259 +606 236 3 878150506 +822 189 4 891037394 +781 232 3 879634318 +854 482 3 882813761 +495 578 3 888636653 +916 531 4 880844331 +201 195 3 884111397 +447 237 4 878854234 +542 173 4 886532265 +918 462 3 891986933 +826 385 5 885690677 +828 463 2 891036717 +903 628 3 891031384 +894 933 3 880416472 +865 418 1 880235099 +542 384 3 886533227 +802 440 3 875985686 +233 215 5 877665324 +840 511 4 891204089 +585 30 4 891284393 +589 332 4 883352536 +643 118 2 891445741 +504 400 3 887911277 +889 9 4 880176896 +850 162 3 883195301 +647 298 3 876533005 +716 298 5 879793501 +821 459 5 874792698 +934 186 2 891190854 +620 418 3 889988005 +825 126 3 880755982 +59 129 5 888202941 +459 471 3 879562659 +886 581 4 876032103 +457 433 5 882397020 +533 755 3 888845338 +630 732 4 885668203 +280 222 3 891700624 +545 326 3 879898447 +622 161 3 882670712 +701 1 4 891447139 +901 688 2 877129839 +727 379 2 883712805 +854 811 3 882814091 +854 628 2 882812451 +480 169 5 891208327 +846 131 3 883948457 +653 76 3 880150702 +776 53 2 892313246 +592 1082 3 882608625 +885 300 4 885712224 +943 228 3 888693158 +896 386 3 887161172 +328 435 4 885045844 +473 285 4 878157404 +203 744 2 880434495 +798 826 5 875295695 +615 268 4 879447642 +320 340 2 884748230 +741 218 4 891455711 +935 934 4 884472743 +681 270 1 885409370 +921 419 5 879381234 +370 835 5 879434909 +398 153 4 875732862 +629 241 5 880116911 +839 1245 4 875752408 +466 684 4 890285034 +851 806 4 875731330 +645 674 3 892054402 +627 282 2 879530463 +637 1060 2 882904148 +663 1327 4 889493210 +922 375 2 891454552 +920 301 2 884220058 +927 204 4 879183511 +903 709 4 891033502 +879 276 4 887761865 +547 269 3 891282555 +889 427 4 880177880 +870 204 4 875680448 +115 117 4 881171009 +788 226 4 880870710 +933 79 3 874853819 +819 258 2 879952538 +932 562 2 891251611 +713 300 2 888881939 +546 682 3 885140097 +927 409 4 879176876 +903 520 4 891032911 +429 1438 1 882385705 +343 274 3 876403443 +899 499 3 884122308 +864 781 3 888891238 +923 1277 5 880388322 +774 525 2 888558305 +892 470 4 886609977 +563 871 2 880507263 +851 1540 2 875731529 +666 692 3 880568505 +927 819 3 879181508 +619 684 4 885954083 +345 42 2 884991873 +158 709 5 880135020 +911 191 5 892838676 +354 97 3 891217610 +839 181 3 875751991 +883 22 3 891696824 +403 237 5 879786221 +521 215 1 886062095 +217 808 2 889069808 +833 219 4 875224309 +548 294 3 891042954 +466 92 4 890285034 +910 134 3 880821676 +918 499 4 891986775 +933 200 4 874854783 +632 367 2 879459544 +297 338 2 881707832 +690 118 4 881180056 +919 183 3 875372802 +639 285 1 891239131 +535 190 4 879617747 +630 64 5 885668276 +781 1500 5 879634096 +793 685 3 875104718 +883 90 3 891694672 +935 281 5 884472310 +193 487 5 889124287 +498 1495 3 881958237 +85 520 3 882996257 +682 54 4 888517628 +889 297 3 880176845 +653 472 1 880606675 +606 58 3 880924483 +643 1098 4 891447696 +916 1682 3 880845755 +764 411 3 876243668 +904 117 4 879735316 +897 1219 4 879991137 +799 191 3 879254077 +707 26 3 886286954 +690 106 3 881180138 +811 678 5 886377686 +637 15 4 882903447 +135 5 3 879857868 +393 787 5 889554674 +308 537 4 887739136 +825 746 5 881101782 +607 19 3 883879613 +846 39 3 883948873 +919 1173 3 885059859 +927 174 3 879185327 +916 203 4 880844157 +884 213 4 876859207 +442 742 3 883391146 +901 211 4 877131342 +687 286 3 884651648 +769 476 4 885424142 +930 171 1 879535685 +537 584 2 886031678 +940 527 3 885921710 +882 369 3 879863257 +332 984 2 887916411 +820 302 5 887954906 +874 137 4 888632484 +142 134 5 888640356 +507 841 5 889966054 +537 423 2 886030622 +711 203 4 879994433 +880 201 4 880174834 +342 14 5 874984661 +616 302 5 891224517 +638 29 2 876694917 +889 216 4 880180191 +936 1115 4 886832859 +648 603 5 882212651 +889 1152 3 880177778 +847 705 3 878939700 +607 238 4 883879556 +860 310 4 880914645 +875 523 4 876465408 +708 294 3 892719033 +804 428 3 879445841 +270 554 1 876956264 +844 418 3 877388040 +694 185 4 875729520 +943 941 1 888639725 +933 561 3 874938808 +889 658 4 880181086 +606 184 5 880924790 +885 538 4 885712224 +896 392 3 887160187 +381 419 5 892696446 +585 283 4 891283124 +897 670 3 879991258 +870 253 4 887567321 +659 180 5 891385044 +562 566 4 879196483 +507 258 4 889963959 +659 162 3 891385136 +181 826 1 878963304 +535 382 5 879618058 +312 647 5 891698726 +899 433 4 884122178 +389 286 2 879915633 +890 102 3 882574982 +194 502 4 879548624 +642 568 4 885606735 +814 436 3 885411073 +450 170 5 887660440 +840 435 4 891204114 +766 385 3 891310281 +870 480 5 875680142 +58 584 5 884305271 +846 487 4 883948685 +771 251 5 880660087 +503 633 5 880472344 +927 96 5 879184761 +675 242 4 889488522 +890 210 4 882403587 +793 405 3 875104340 +6 490 5 883601365 +707 287 4 880059774 +454 86 2 888267280 +932 198 4 891249109 +87 598 2 879877279 +932 436 3 891251225 +790 240 3 884462692 +772 245 5 877533546 +932 101 3 891251225 +927 385 4 879193625 +749 1016 5 878846958 +676 912 3 892685489 +864 1033 2 888891473 +752 683 4 891208299 +846 549 4 883949421 +834 326 4 890860386 +897 117 3 879993210 +882 265 5 879867431 +145 268 4 888396828 +865 258 4 880142652 +921 405 3 879379774 +425 347 4 890346517 +432 1012 5 889415947 +907 553 5 880160056 +95 227 2 880572356 +756 155 4 874829637 +459 1013 3 879563226 +886 686 4 876033228 +916 230 3 880845177 +883 222 3 891717495 +898 316 5 888294739 +673 896 5 888787355 +843 419 2 879446617 +551 941 4 892782734 +70 227 3 884067476 +894 628 3 880416102 +582 321 3 882960555 +835 616 4 891033718 +660 91 4 891200193 +577 1028 4 880470764 +851 318 5 891961664 +851 17 5 875807089 +624 310 4 891961078 +823 26 5 878438930 +194 208 3 879521329 +916 3 3 880843838 +495 218 4 888635080 +761 477 1 876190235 +621 73 5 874962772 +864 343 5 887686545 +504 462 4 887838740 +707 1255 3 880061252 +671 255 5 884375221 +883 713 3 891692742 +663 509 4 889493437 +593 313 4 888871903 +551 475 5 892777910 +347 357 5 881653774 +541 543 4 883875432 +405 1260 1 885546835 +650 511 5 891369520 +878 1121 2 880867895 +243 306 4 879988830 +25 692 4 885852656 +899 28 5 884121214 +650 68 3 891381784 +479 252 2 879460628 +922 135 2 891453820 +796 707 3 892663154 +519 346 4 885929222 +889 125 4 880177435 +894 100 4 882404137 +756 1240 4 874829333 +658 55 4 875148059 +858 1368 4 880932449 +673 322 4 888787450 +655 528 5 887473570 +698 988 1 886365802 +922 228 4 891447665 +813 751 5 883752264 +334 304 3 891550557 +493 833 2 884131738 +417 191 5 879647498 +484 95 4 891195773 +932 208 5 891249794 +870 169 4 888095560 +201 15 3 884140670 +752 321 3 891208212 +615 582 3 879447968 +721 209 3 877150031 +883 515 5 891692657 +813 300 4 883752331 +514 432 4 875311156 +666 649 3 880568694 +194 501 3 879548319 +887 720 5 881380813 +793 979 3 875104620 +899 64 4 884121647 +899 724 5 884122776 +915 302 4 891029965 +933 159 3 874854190 +483 227 3 878953592 +178 118 4 882824291 +906 744 4 879435524 +417 153 5 879647580 +106 59 4 881453318 +797 257 5 879439362 +886 24 4 876031973 +913 169 4 880757553 +932 170 4 891248967 +548 471 5 891415709 +885 476 4 885713062 +223 173 5 891550711 +845 286 5 885409719 +535 632 4 879618965 +23 919 5 874784440 +802 646 4 875986155 +936 252 2 886833099 +661 50 5 876013935 +933 125 4 874854251 +586 227 2 884062010 +524 212 5 884635326 +889 742 3 880177219 +450 1126 4 887661961 +932 185 4 891250392 +941 273 3 875049038 +843 199 3 879446503 +848 479 5 887040302 +553 607 4 879949107 +251 202 4 886271920 +731 133 1 886184852 +380 174 4 885478924 +943 217 3 888640067 +894 350 3 886027788 +397 12 4 885349790 +860 70 5 885991040 +854 156 3 882813574 +332 554 3 888360460 +851 924 4 874789109 +493 262 3 884129793 +587 245 1 892871253 +796 91 2 893219033 +808 270 4 883949560 +71 100 4 877319197 +393 145 3 889731820 +886 367 4 876031622 +27 123 5 891543191 +936 825 4 886832502 +886 381 2 876032308 +747 511 5 888639138 +642 452 1 886569699 +843 660 2 879447484 +295 56 4 879517348 +405 582 3 885546336 +823 88 5 878438780 +20 204 3 879670039 +764 252 3 876244023 +405 657 1 885548578 +615 1128 1 879448715 +897 96 5 879990430 +561 89 4 885809556 +395 258 4 883762309 +429 778 3 882385294 +864 167 4 888891794 +691 243 1 875542944 +617 868 4 883788820 +759 181 5 875227798 +405 86 1 885546154 +721 1 5 877137877 +677 988 4 889399113 +128 1136 3 879969084 +938 596 5 891356532 +234 86 2 892333765 +892 430 5 886608296 +936 319 4 886831576 +940 420 4 885921979 +562 432 5 879196074 +642 827 1 886131332 +805 552 3 881696124 +880 1468 4 880242139 +486 108 4 879874810 +919 382 5 875373214 +934 581 2 891193814 +234 494 4 892078837 +515 259 3 887659123 +772 302 5 877533625 +918 520 3 891987571 +846 526 4 883947960 +869 1079 2 884493021 +328 54 3 885047194 +848 655 4 887040097 +95 623 3 880572388 +497 300 3 878759351 +181 237 5 878962996 +840 642 4 891204664 +447 282 4 878856290 +863 269 3 889288973 +643 79 4 891446826 +620 7 4 889987073 +804 193 4 879444518 +533 921 2 879439061 +683 259 3 893283642 +671 841 2 875388720 +932 632 4 891249649 +892 479 5 886608616 +361 50 5 879441417 +896 184 3 887159578 +784 327 4 891387315 +38 195 1 892429952 +917 473 3 882911390 +825 285 3 880756504 +838 584 4 887066143 +807 1076 3 893082227 +942 478 5 891283017 +927 217 1 879196955 +2 302 5 888552084 +806 234 4 882388036 +892 216 5 886609028 +234 792 4 892336165 +14 525 5 890881557 +637 93 3 882903511 +714 369 3 892777581 +559 347 3 891035343 +627 541 4 879531504 +842 288 3 891218192 +362 683 1 885019722 +862 258 5 879302461 +660 315 4 891197462 +776 219 3 892920321 +90 730 5 891384147 +293 501 4 888906378 +776 590 1 892920446 +892 150 5 886608136 +861 737 3 881274883 +669 474 4 891260369 +574 268 5 891279174 +440 213 4 891577950 +776 179 4 891628678 +528 1254 3 886812920 +659 519 4 891383889 +711 133 5 879992739 +465 127 4 883530667 +588 472 4 890026059 +185 302 4 883526267 +807 228 4 892529448 +788 511 5 880868277 +62 215 3 879374640 +92 922 1 875644796 +621 200 4 874964816 +671 504 4 883949781 +931 100 4 891036430 +770 129 5 875972352 +707 1024 5 890008041 +927 820 4 879177403 +621 79 5 874963594 +798 132 4 875639134 +695 989 3 888806056 +885 181 3 885712280 +305 242 5 886307828 +266 924 2 892258038 +795 108 3 880559483 +30 29 3 875106638 +735 127 4 876698755 +600 802 2 888453082 +881 217 3 876538131 +933 449 1 874939207 +898 310 4 888294441 +660 550 2 891201541 +912 268 2 875965695 +181 1033 1 878963381 +749 483 4 878847540 +38 447 5 892434430 +889 234 4 880177857 +913 56 5 880758974 +449 333 3 879958474 +748 732 4 879454749 +918 208 3 891988002 +116 275 2 876453519 +907 739 5 880159982 +916 405 2 880843579 +821 597 3 874793022 +864 357 5 888887794 +916 238 4 880845011 +250 144 4 878092059 +919 340 5 885059506 +878 451 2 880869135 +933 100 5 874853927 +838 127 5 887063657 +925 672 3 884718099 +826 95 5 885690342 +262 82 3 879794918 +725 328 4 876106729 +206 336 1 888179928 +659 616 4 891386577 +553 178 5 879948460 +862 197 4 879304623 +605 274 3 879425663 +907 235 4 880159222 +894 322 3 879896267 +586 257 3 884057471 +355 1429 4 879485423 +854 705 4 882813963 +805 79 5 881694423 +655 382 3 887427131 +894 1089 2 885428261 +893 69 5 874827818 +919 69 3 875921182 +666 211 4 880139382 +907 129 5 885862428 +643 571 3 891450316 +299 45 3 878192238 +864 402 3 888892128 +864 930 3 888892841 +877 185 4 882678387 +569 291 4 879794348 +880 684 4 880167778 +911 480 4 892838823 +924 896 4 884337242 +517 117 4 892659893 +90 498 5 891383173 +583 200 5 879384404 +795 28 4 880569414 +648 235 4 882212071 +927 1047 4 879181192 +709 693 4 879847082 +877 744 5 882677280 +880 239 4 880174808 +897 705 3 879991226 +864 1109 4 888890639 +826 227 4 885690713 +511 340 4 890004687 +880 95 3 880241219 +834 272 4 890860566 +551 4 2 892783711 +579 25 4 880952335 +807 1016 4 893083991 +576 100 4 886984965 +846 1210 2 883950791 +925 324 4 884633348 +707 692 4 886286092 +268 380 2 875310704 +693 443 2 875483741 +719 254 1 879360298 +373 317 4 877100061 +711 151 4 876185920 +18 116 5 880131358 +627 470 3 879530264 +222 405 3 877563570 +682 168 5 888521381 +733 100 5 879535471 +753 328 3 891401167 +489 876 2 891447218 +897 273 3 879993164 +551 85 1 892783749 +716 98 5 879795336 +877 971 4 882677386 +862 151 5 879304196 +394 928 4 881059902 +933 273 3 874855069 +842 303 5 891218002 +11 324 1 891902222 +25 657 4 885852720 +405 576 1 885548093 +343 1112 3 876406314 +582 240 4 882961804 +782 886 3 891498267 +936 295 3 886832502 +154 172 4 879138783 +863 354 1 889289191 +653 708 2 880152598 +921 50 4 879381051 +896 124 4 887158830 +933 58 3 874855121 +886 1228 2 876034228 +766 519 4 891308968 +896 435 4 887158579 +899 234 4 884122674 +758 211 4 881975736 +827 343 4 882201532 +26 288 4 891347477 +213 98 5 878955598 +22 385 4 878887869 +881 795 2 876539418 +660 271 3 891197561 +781 97 4 879634096 +830 648 5 891464148 +320 774 4 884751552 +755 938 3 882570023 +880 628 2 880166799 +439 1600 5 882893291 +524 226 3 884635085 +491 684 5 891189575 +457 88 4 882397763 +721 1221 3 877139637 +743 181 3 881277931 +880 1 4 880166744 +892 204 4 886608714 +268 747 3 875310412 +387 174 5 886480384 +880 194 5 880174623 +222 762 3 877563530 +923 475 5 880387664 +506 434 4 874876599 +758 300 2 880672402 +919 1073 4 875373416 +416 655 5 893213103 +805 181 3 879971215 +721 1295 3 877137214 +622 228 5 882592815 +905 508 4 884984066 +877 662 5 882677936 +622 501 3 882670480 +551 89 4 892777787 +903 302 4 891380461 +846 1479 3 883948720 +537 569 2 886032183 +854 171 4 882814333 +641 301 4 879369925 +326 478 3 879875083 +747 195 4 888640136 +665 222 3 884290676 +921 257 3 879379898 +721 266 3 877136967 +899 237 4 884120026 +934 157 2 891194498 +543 168 3 875663170 +419 494 3 879435749 +120 50 4 889489973 +588 1311 1 890029079 +825 98 5 881101641 +776 238 4 891628708 +943 41 4 888640251 +99 1047 4 885679472 +880 287 4 892958966 +451 990 3 879012684 +606 441 4 880927750 +401 610 4 891033651 +52 191 5 882923031 +533 521 3 879191022 +916 89 5 880844241 +223 121 3 891549294 +846 660 3 883948765 +763 845 4 878918712 +886 65 3 876031870 +672 237 2 879787811 +95 1222 2 880572602 +939 546 4 880261610 +908 528 4 879722397 +823 227 1 878439497 +894 689 3 880993390 +524 175 3 884634911 +629 160 4 880117361 +883 886 3 892439422 +917 312 2 882910627 +47 262 5 879439040 +788 670 3 880870935 +938 591 3 891356463 +691 735 5 875543228 +489 898 3 891366652 +748 479 4 879454428 +921 472 2 879380057 +943 92 5 888639660 +554 1284 3 876232053 +674 410 3 887763150 +805 431 1 881694713 +773 948 2 888538438 +796 33 3 893048471 +7 441 2 891354257 +867 198 5 880078723 +189 186 2 893266027 +293 628 3 888905004 +796 783 4 893047691 +733 846 2 879535848 +21 876 2 874950932 +354 210 3 891217717 +496 661 3 876067001 +933 679 1 874939078 +435 8 3 884131576 +758 582 3 881974823 +655 367 3 887428031 +49 1069 3 888068912 +804 174 5 879441476 +297 1109 3 875238922 +561 55 4 885808796 +918 83 4 891987914 +748 182 4 879454630 +712 90 3 874957027 +835 194 4 891034143 +405 110 1 885547506 +429 182 4 882384821 +881 1078 3 876539260 +684 477 5 878759560 +504 154 4 887839081 +501 1097 5 883347950 +751 689 2 888871738 +699 532 3 878882410 +507 307 5 889964239 +472 1029 4 875983321 +715 206 4 875964438 +663 749 3 889491617 +916 174 5 880844569 +449 1010 4 879958664 +756 82 3 874830748 +109 871 2 880572350 +921 760 2 879380164 +664 516 5 876525963 +663 259 2 889491861 +724 331 3 883757468 +833 347 3 887158791 +826 771 3 885690900 +671 1303 3 884036365 +94 559 4 891721777 +751 323 1 888871598 +899 190 4 884121051 +867 423 3 880078991 +376 705 3 879434750 +508 174 4 883767728 +450 516 5 882396564 +313 531 3 891014524 +722 597 3 891281710 +813 690 4 883752331 +731 195 1 886185851 +87 849 5 879875996 +286 240 3 876521858 +590 293 3 879439114 +645 198 3 892053644 +601 431 4 876351413 +544 301 2 884795580 +702 307 2 885767336 +419 300 4 879435347 +654 15 3 887863557 +125 571 3 892838827 +924 519 4 886759888 +548 413 3 891416049 +64 197 3 889737506 +657 455 1 884239498 +917 328 2 882910506 +682 944 3 888522073 +541 395 2 883866300 +298 282 4 884125629 +299 61 4 877880648 +851 4 5 875731489 +837 717 1 875722393 +897 646 5 879994113 +835 310 4 891035309 +875 286 3 876464694 +23 173 5 874787587 +592 260 4 882607690 +59 392 2 888206562 +846 195 4 883948141 +525 713 4 881086393 +92 433 5 875654665 +859 3 5 885775513 +332 302 5 893027264 +737 174 2 884314740 +632 651 5 879459738 +825 105 3 889021208 +474 448 5 887925751 +763 87 2 878919019 +693 628 4 875483020 +846 941 2 883949379 +339 178 5 891033310 +671 553 5 884036846 +871 752 3 888192744 +654 82 5 887864797 +870 193 5 889717102 +345 218 3 884992218 +861 381 4 881274780 +717 258 5 884642133 +821 483 5 874793517 +934 657 3 891191027 +110 403 3 886988134 +740 258 3 879522681 +551 245 3 892775723 +532 523 5 888637085 +912 655 5 875966320 +916 806 4 880844552 +299 179 4 878191943 +699 328 2 885775345 +279 644 1 875306552 +514 196 5 875318331 +870 21 3 876319159 +892 133 3 886609149 +830 127 4 891464054 +938 252 4 891357042 +551 790 2 892783942 +933 22 5 874853634 +896 258 5 887157258 +621 235 3 880738142 +92 855 5 875653162 +844 95 4 877388040 +864 531 5 888887739 +934 70 4 891195713 +551 96 5 892777987 +715 237 4 875962280 +679 290 2 884487715 +846 392 2 883950185 +938 245 3 891356282 +505 243 2 888631415 +913 189 3 881367594 +832 50 3 888260089 +870 1210 1 879902161 +435 366 2 884133134 +902 127 3 879464726 +804 187 4 879441973 +109 1139 2 880583463 +933 636 2 874939105 +820 358 1 887954972 +923 975 4 880388245 +932 486 5 891251177 +864 768 3 888890776 +665 271 2 884290055 +932 230 4 891251153 +537 45 3 886031786 +280 12 5 891700803 +458 64 4 886396005 +919 151 4 875289025 +597 286 3 875338983 +934 805 4 891194221 +484 125 4 881450017 +919 288 4 875288164 +345 286 3 884900521 +461 305 2 885355757 +914 778 5 887122085 +771 98 1 880659990 +577 732 4 880474414 +393 934 3 887745544 +655 535 2 888685914 +925 567 3 884718156 +434 424 1 886724913 +843 200 3 879447801 +269 1361 4 891446756 +897 180 5 879991007 +738 1016 3 875348912 +782 330 4 891498213 +905 117 3 884984066 +402 1284 3 876266984 +738 54 3 875351872 +697 225 3 882622680 +896 257 4 887235105 +176 257 1 886048188 +650 385 4 891381585 +918 70 3 891988248 +932 1139 2 891251562 +526 591 4 885682503 +864 79 5 888887830 +889 318 4 880180265 +659 155 3 891386540 +698 66 3 886367100 +297 284 4 874954497 +655 690 2 887477489 +805 71 3 881695560 +864 373 2 888892053 +472 549 5 892791063 +593 272 5 888871874 +565 923 4 891037333 +643 47 4 891446791 +159 9 3 880485766 +650 657 4 891372339 +911 478 5 892838823 +397 358 2 882838937 +293 98 4 888905898 +632 12 5 879456910 +894 1007 3 880416072 +846 142 3 883950053 +54 148 3 880937490 +763 85 4 878918960 +90 23 5 891384997 +892 181 4 886608212 +831 173 3 891354798 +823 715 5 878439065 +878 265 3 880866626 +327 249 2 887744432 +296 498 5 884197352 +867 197 4 880078796 +483 676 4 878950972 +151 73 4 879528909 +664 764 4 878092758 +758 608 5 881975182 +24 276 5 875322951 +429 479 4 882385358 +693 172 3 875483947 +445 1016 1 891200164 +892 684 5 886608743 +796 705 4 892690263 +76 96 5 875312034 +782 255 4 891499321 +773 240 2 888539273 +562 234 5 879196074 +452 210 4 875561852 +198 93 3 884205346 +927 229 3 879191722 +756 1031 2 874830819 +435 722 3 884133818 +757 228 4 888466461 +835 287 4 891035309 +727 879 4 883708208 +711 316 4 889911048 +943 50 4 875501835 +907 237 5 880159059 +561 159 1 885809356 +103 56 5 880416602 +880 554 3 880168411 +913 15 3 881367770 +870 1664 4 890057322 +924 605 3 885457975 +303 542 2 879484194 +871 989 3 888192744 +642 357 2 885603565 +919 191 5 875373824 +500 93 4 883865020 +934 650 4 891195503 +451 245 2 879012550 +363 224 4 891495682 +865 456 1 880144405 +889 604 3 880178342 +883 750 3 891691485 +890 7 4 882402739 +663 174 5 889493540 +551 215 4 892778035 +589 877 4 883352562 +786 265 4 882842946 +454 132 2 888266874 +936 100 4 886832092 +599 546 4 880953441 +666 655 4 880139439 +301 155 1 882078308 +911 625 5 892840807 +930 100 3 879534506 +644 308 4 889076095 +760 845 5 875666110 +612 127 2 875325049 +629 39 2 880117747 +825 323 4 881185672 +349 713 3 879465673 +611 302 5 891636073 +852 100 4 891036457 +875 45 3 876465072 +244 121 1 880604583 +797 1023 3 879439519 +489 683 2 891449099 +934 191 5 891190695 +918 498 4 891987025 +632 51 4 879459166 +716 135 3 879795071 +462 346 1 886365928 +885 338 3 885712224 +942 124 4 891283068 +868 80 2 877111453 +805 121 3 881694885 +407 650 2 875044400 +467 302 4 879532127 +581 137 5 879641787 +886 1093 1 876032654 +389 240 3 879916254 +921 659 5 884673799 +320 292 3 884748299 +77 42 5 884752948 +861 20 4 881274857 +815 98 4 878693183 +682 117 4 888522455 +943 367 4 888639679 +504 125 4 889550735 +715 17 3 875964105 +878 956 2 880866810 +936 237 4 886832672 +919 282 4 875289113 +326 701 4 879876141 +896 19 2 887159211 +905 591 4 884983951 +804 479 4 879441542 +816 322 4 891710922 +279 165 4 875310233 +774 64 3 888556517 +38 420 5 892429347 +845 242 4 885409493 +782 50 3 891499243 +868 12 5 877103834 +224 378 4 888103775 +566 94 2 881651636 +883 216 4 891694249 +913 22 5 881369920 +276 175 5 874787376 +130 117 5 874953895 +56 28 5 892678669 +533 820 2 887032380 +650 62 3 891381784 +586 67 5 884067059 +554 191 5 876243914 +482 682 3 887644022 +889 86 4 880180191 +328 176 5 885046052 +934 510 5 891193751 +648 82 5 884882742 +603 7 5 891956075 +280 1063 3 891700607 +839 458 5 875751893 +865 408 5 880143385 +496 88 1 876067346 +881 257 5 876536040 +802 565 3 875985976 +290 120 4 880732712 +595 1047 2 886921769 +795 2 3 883252599 +825 833 4 881101329 +886 546 1 876031550 +715 235 2 875962140 +750 258 3 879445755 +942 414 4 891282857 +930 24 1 879535015 +892 29 2 886610565 +899 498 4 884121767 +910 127 5 880822060 +761 508 1 876190206 +933 183 4 874853819 +804 1260 3 879445660 +776 134 4 892210460 +405 95 3 885548785 +916 382 4 880844674 +345 941 3 884993932 +889 291 3 880182815 +712 83 4 874730396 +234 659 3 892078660 +94 151 5 891721716 +757 95 4 888467270 +785 50 5 879439021 +912 498 5 875965830 +533 1142 4 888347670 +747 521 5 888640567 +526 245 2 885682124 +912 610 4 875966027 +894 345 4 884036815 +211 890 2 879461395 +911 431 4 892842368 +560 515 3 879976109 +641 432 5 879370119 +934 86 3 891191831 +815 559 3 878695877 +663 652 4 889493540 +919 303 4 875920245 +393 1058 4 887746916 +775 305 4 891032837 +694 15 4 875728842 +621 804 4 881445120 +843 423 2 879448019 +913 143 5 881725761 +207 792 2 876079016 +883 26 3 891693139 +919 1197 4 875288613 +550 257 4 883425337 +615 629 4 879449184 +719 382 2 879360965 +864 797 3 888892539 +59 86 3 888205145 +515 895 4 887659123 +920 286 2 884219953 +788 371 3 880870626 +793 127 5 875103773 +927 1 5 879191524 +757 554 3 888466683 +871 566 3 888193337 +782 1384 3 891500110 +910 684 4 880821696 +747 204 5 888732899 +659 712 3 891386307 +940 678 4 884801316 +486 813 5 879874516 +753 183 1 891401798 +840 521 5 891205069 +25 86 4 885852248 +866 340 2 891221165 +294 294 4 877818860 +606 185 3 880926759 +540 121 2 882157148 +910 310 3 881420170 +682 81 3 888517439 +782 269 3 891497698 +933 163 2 874938309 +752 902 5 891208452 +500 402 3 883875388 +846 558 4 883948221 +848 451 4 887042377 +358 208 2 891270510 +727 173 5 883710437 +833 802 1 887158946 +869 249 4 884493279 +846 386 3 883950154 +519 991 2 883250021 +931 304 4 891036105 +907 427 5 880159821 +912 646 3 875966429 +435 430 5 884131712 +631 873 2 888465084 +938 742 3 891356702 +932 474 5 891250418 +94 293 4 891724044 +875 23 5 876466687 +763 955 2 878917433 +851 161 3 875731490 +938 926 3 891357137 +716 1269 4 879795122 +896 100 3 887158294 +918 704 4 891988123 +294 295 4 877820132 +434 1 4 886724590 +922 432 5 891448551 +349 25 3 879465966 +533 609 4 879191184 +865 1 1 880143424 +896 211 4 887159554 +841 888 5 889067432 +103 98 3 880420565 +316 304 3 880853193 +332 550 5 887939092 +693 117 4 875483977 +679 483 5 884487010 +795 423 2 881265617 +919 118 4 875373582 +904 88 3 879735710 +893 220 3 874829187 +919 9 5 875288749 +555 235 3 879964209 +553 134 4 879948806 +892 196 4 886609622 +763 1098 3 878919083 +56 871 2 892910207 +552 1 3 879221716 +721 284 4 877141038 +477 111 5 875941763 +801 268 5 890332645 +880 23 5 880175735 +638 210 4 876695478 +621 585 4 874962988 +790 1047 3 885157621 +825 1049 3 880756834 +334 518 4 891547334 +49 300 1 888065577 +544 302 5 884795135 +523 168 4 883701962 +828 985 3 893186246 +297 153 5 875240053 +293 1119 1 888906655 +551 366 5 892784049 +916 157 4 880845011 +96 423 5 884403057 +788 323 3 880867855 +821 22 5 874793418 +892 239 4 886609829 +747 476 3 888733595 +716 696 2 879794615 +406 98 4 879446529 +642 402 4 885603792 +279 744 2 892864943 +758 176 5 882055987 +707 313 2 886288754 +900 661 4 877833747 +916 172 5 880843997 +403 282 5 879786052 +823 742 4 878438535 +889 135 2 880180101 +521 597 2 884476302 +919 137 2 875288749 +774 561 1 888557772 +532 407 2 874794386 +782 994 2 891500194 +854 343 3 882811773 +766 837 3 891309878 +406 286 3 879445250 +606 235 3 880922566 +114 527 3 881309586 +486 302 5 879873973 +903 210 4 891033541 +801 271 5 890332929 +936 988 3 886831912 +381 225 3 892697495 +923 544 4 880387507 +524 150 2 884832650 +551 686 3 892783829 +815 144 4 878693989 +646 307 3 888528902 +798 1102 4 875637680 +893 50 5 874829883 +840 1674 4 891211682 +942 678 3 891282673 +192 287 4 881368016 +606 198 4 880927665 +658 235 2 875145572 +747 659 4 888639175 +864 672 2 888889389 +893 819 3 874829355 +753 89 3 891402240 +897 371 2 879991007 +877 86 4 882677827 +805 371 1 881696759 +893 24 4 874828649 +514 1101 4 886189893 +847 164 3 878941056 +49 813 3 888068686 +693 134 4 875484539 +99 473 4 885679353 +881 70 2 876539220 +930 1010 2 879534692 +606 188 4 880924921 +878 153 5 880866177 +477 274 5 875941763 +872 685 4 888479348 +664 58 4 876525292 +712 501 3 874957140 +870 736 1 879901654 +312 83 4 891699538 +751 210 5 889133106 +666 192 4 880139615 +383 185 5 891192985 +312 525 5 891698424 +794 257 4 891036265 +711 91 4 879994413 +705 588 3 883427640 +758 345 5 883806413 +904 535 3 879735404 +708 880 3 892718919 +453 781 3 888206022 +896 288 3 887235788 +896 199 3 887158005 +896 79 5 887158384 +894 1295 3 879896268 +537 315 4 886029116 +889 82 4 880180122 +943 585 1 888640250 +881 79 4 876537825 +876 318 5 879428406 +504 153 3 887838624 +109 595 3 880572108 +833 284 1 885328485 +672 220 2 879787729 +308 530 4 887736584 +705 797 4 883428258 +634 111 4 875729794 +730 268 4 880309927 +773 29 2 888540218 +880 376 3 880175239 +661 665 3 876035999 +860 262 4 874967063 +138 497 5 879023947 +295 132 5 879517348 +933 452 1 874938808 +647 147 4 876532975 +463 269 5 877384802 +75 864 4 884049876 +871 97 3 888193541 +643 1215 3 891446489 +936 13 4 886832596 +714 257 3 892776410 +921 237 3 879379562 +213 70 3 878955766 +22 265 3 878888066 +379 317 5 880525001 +790 403 4 885157036 +773 367 2 888539576 +833 410 3 878078390 +782 361 3 891498139 +99 433 4 886780105 +11 11 2 891904271 +932 503 4 891249962 +764 69 5 876244991 +284 315 5 885329593 +784 340 3 891387895 +929 197 3 880817780 +918 972 5 891988054 +585 313 3 891281385 +862 406 4 879303843 +468 44 4 875302208 +630 471 4 885666955 +889 96 4 880181015 +264 173 5 886123358 +716 465 5 879797177 +682 586 1 888522700 +244 455 2 880604503 +846 509 4 883948765 +291 582 4 875087720 +486 825 2 879875188 +663 833 4 889492796 +628 301 4 880777046 +790 1014 2 884462551 +690 514 1 881177430 +641 258 3 879369806 +878 1092 3 880867444 +311 415 3 884365654 +880 91 3 880241256 +457 1221 4 882549438 +807 596 4 892530792 +880 411 4 880167328 +804 476 3 879443852 +674 181 4 887762603 +537 303 4 886028706 +829 10 3 881707829 +305 127 5 886322412 +788 148 3 880869215 +11 747 3 891906426 +690 443 3 881179937 +645 959 4 892053541 +579 294 4 880951494 +291 562 4 874835242 +655 916 2 892436455 +893 121 4 874830313 +711 549 4 879994719 +751 94 3 889298964 +661 218 3 876035933 +771 82 2 880659686 +829 212 4 881699005 +49 121 1 888068100 +581 936 3 879643155 +200 523 4 884129627 +906 284 4 879435469 +878 690 2 880865230 +877 306 3 882675993 +922 367 3 891452743 +823 919 4 878438206 +82 660 5 878769848 +10 604 4 877892110 +820 347 4 887954853 +915 691 4 891030108 +918 42 3 891987059 +682 401 1 888522260 +936 1171 5 886832757 +435 409 3 884134019 +343 478 5 876404499 +921 185 3 879380826 +758 237 4 881976377 +843 482 2 879447007 +130 444 4 880396495 +683 258 3 893282978 +729 346 1 893286168 +257 936 4 882050151 +682 147 1 888523619 +747 127 5 888639362 +378 25 4 880044489 +744 483 4 881171452 +740 1038 4 879523187 +716 1126 3 879796138 +892 288 4 886610626 +756 1652 1 874828198 +760 748 4 875665867 +721 1026 3 877137214 +804 40 3 879445739 +22 233 3 878888066 +493 435 5 884132015 +864 201 5 888887172 +326 56 2 879875691 +606 1065 5 880924323 +92 1210 1 875907179 +533 740 4 879192815 +890 448 2 882915661 +662 1511 4 880570301 +870 659 4 875680020 +454 1089 2 881959437 +935 620 2 884472627 +880 475 4 880166798 +881 473 2 876536636 +892 511 5 886608296 +639 865 1 891239427 +881 120 2 879052376 +682 62 3 888522541 +660 301 3 891197661 +902 79 5 879465952 +871 269 3 888192970 +711 969 5 886030557 +64 503 4 889740342 +731 608 4 886183515 +938 237 2 891356549 +840 653 5 891209389 +788 531 4 880868144 +932 1456 4 891250891 +932 502 4 891249710 +512 186 5 888579520 +339 644 5 891033200 +541 1030 3 885595972 +930 257 4 879535392 +800 15 4 887646631 +655 1142 2 891585344 +796 573 4 893218521 +588 447 3 890026009 +375 234 5 886621917 +788 159 3 880869135 +253 966 5 891628181 +763 198 5 878915958 +592 984 1 882607690 +880 794 4 880243265 +535 277 5 879619107 +846 51 4 883949121 +406 101 3 879793112 +846 1041 4 883950791 +679 318 5 884486812 +927 426 4 879191432 +918 1172 3 891987622 +618 1063 3 891308459 +804 483 5 879441627 +815 159 3 878694306 +509 271 4 883591195 +860 663 3 885991101 +871 301 4 888192475 +932 82 3 891251246 +13 429 5 884538727 +848 523 5 887042341 +787 345 3 888979007 +269 739 1 891451431 +734 230 2 891022803 +851 815 3 874767550 +653 1042 2 880151488 +924 527 4 885458009 +318 143 5 884495944 +911 26 4 892840048 +843 1157 3 879444114 +894 237 4 880416176 +913 258 4 889331049 +919 124 3 875288522 +934 624 4 891193290 +793 742 3 875104648 +548 176 4 891044355 +864 1140 1 888892491 +655 1245 3 887426087 +561 99 3 885808673 +279 544 1 890451433 +44 97 2 878348000 +805 213 3 881696699 +886 55 4 876031622 +178 1028 3 882824670 +852 506 4 891037917 +567 513 4 882426719 +907 312 5 885860416 +608 287 3 880406950 +16 66 4 877719075 +797 294 3 879439105 +495 240 4 888636773 +776 559 4 892920351 +601 473 3 876347665 +682 65 3 888517416 +117 282 5 880126295 +1 152 5 878542589 +933 393 2 874938371 +806 180 4 882388082 +177 160 4 880131011 +41 135 4 890687473 +658 198 5 875148108 +221 38 2 875246506 +622 1149 3 882592314 +514 421 4 875463269 +657 873 3 884238614 +659 505 4 891385769 +500 1057 3 883877359 +823 517 5 878437658 +919 111 4 875288681 +892 300 4 886607521 +445 183 2 890987687 +836 187 5 885754200 +705 471 5 883427339 +650 602 4 891371116 +305 97 4 886322560 +812 302 3 877625109 +303 191 5 879466937 +567 494 5 882425932 +919 147 4 875289322 +554 1028 3 876551044 +338 990 4 879437607 +758 117 4 881976203 +560 222 4 879976706 +913 408 5 880758348 +829 105 3 881711924 +435 603 3 884131118 +623 274 4 891034053 +639 60 3 891239790 +862 176 5 879304672 +373 178 4 877099352 +896 91 2 887159369 +279 7 5 891209102 +804 291 4 879443819 +930 143 2 879535462 +280 183 3 891700588 +561 9 4 885807546 +838 1039 5 887065782 +929 144 3 879640394 +315 288 3 879821349 +709 762 3 879848925 +588 301 5 890015021 +21 53 4 874951820 +630 1079 1 885667508 +642 257 5 886131546 +942 318 5 891282903 +891 127 4 883431353 +21 273 4 874951349 +883 70 3 891693169 +492 1121 2 879969720 +747 196 2 888640046 +499 56 4 885599182 +875 134 5 876465188 +899 414 2 884122228 +606 588 5 880923862 +642 1055 4 886569483 +839 333 4 875751442 +130 1278 5 876251127 +3 346 5 889237455 +887 1060 5 881378570 +719 255 2 883981599 +387 581 4 886483394 +382 756 3 875946185 +922 411 1 891455379 +769 13 4 885424214 +889 705 4 880178287 +904 785 5 879735731 +582 328 3 882960555 +870 1044 2 879714772 +729 894 1 893286511 +916 137 5 880843482 +749 433 3 878848217 +892 483 5 886607642 +938 118 5 891356799 +929 589 5 880817708 +846 187 4 883947911 +458 69 2 886397988 +645 202 3 892053518 +630 546 3 885667056 +889 959 3 880182103 +407 101 3 876338186 +935 181 4 884472039 +654 248 2 887863596 +330 496 5 876546172 +559 652 4 891035633 +896 69 5 887158768 +833 180 5 875123677 +932 523 4 891250080 +923 121 4 880387908 +650 153 4 891382138 +830 228 3 891561607 +896 661 4 887158384 +465 835 3 883531026 +788 192 4 880868838 +940 264 1 884801053 +901 321 1 877129839 +916 98 5 880844038 +911 87 5 892839056 +85 333 1 886282927 +691 772 5 875543281 +449 70 4 880410777 +907 172 4 880160008 +739 749 5 886825529 +847 157 1 878940463 +268 116 4 875306760 +484 393 1 891195246 +897 405 5 879993042 +932 99 4 891250236 +842 902 5 891218459 +524 1107 4 884636262 +833 26 1 875133661 +312 199 5 891698516 +293 162 3 888907312 +773 196 4 888540467 +374 117 5 880392846 +833 153 3 875038709 +881 651 5 876539549 +435 441 3 884133084 +239 203 1 889179291 +900 9 2 877832868 +943 427 4 888639147 +601 208 4 876350017 +577 97 5 880472153 +838 153 4 887066783 +896 300 2 887157234 +595 108 2 886921634 +770 323 5 875971612 +831 22 5 891354573 +829 475 4 891990718 +269 378 3 891449962 +868 65 2 877104212 +815 228 5 878694735 +682 804 3 888521740 +521 239 5 885254354 +625 732 3 891263960 +158 7 5 880132744 +374 477 1 885107929 +627 385 2 879531351 +894 271 2 880993335 +882 746 4 879865163 +908 663 3 879723022 +56 66 3 892911110 +932 513 5 891250316 +756 403 2 874828826 +659 526 5 891332224 +378 1091 2 880332911 +907 742 5 880158939 +931 281 3 891036883 +917 289 4 882910457 +184 95 4 889908801 +938 100 5 891356350 +885 1030 1 885713975 +642 400 4 886569278 +361 692 4 879440774 +407 73 4 892060474 +773 522 4 888539328 +803 322 2 880055043 +792 1164 3 877910629 +389 347 4 887868071 +894 52 4 882404507 +478 32 3 889395678 +527 9 5 879455873 +806 318 5 882387484 +916 1079 2 880843811 +621 148 4 880739654 +710 887 2 882063612 +894 595 3 880993632 +882 470 4 879867816 +715 101 3 875964131 +825 321 3 886697076 +733 9 3 879535406 +548 328 4 891042954 +923 1 3 880387306 +830 151 3 891560596 +847 602 3 878940732 +932 168 5 891250746 +329 127 4 891655741 +493 274 5 884131480 +167 1125 5 892738419 +823 168 5 878437658 +188 187 3 875072211 +496 419 2 876066874 +936 1323 4 886833281 +916 226 3 880845177 +727 447 3 883713194 +464 249 2 878355119 +749 178 4 878847540 +896 245 4 887235265 +864 108 3 888891627 +28 434 4 881961104 +588 382 3 890024730 +442 96 4 883390328 +913 172 5 881726004 +537 1048 2 886030381 +895 222 3 879437965 +574 312 4 891279410 +782 254 2 891499660 +901 429 5 877132301 +324 321 3 880575002 +868 155 2 877111623 +648 249 3 882211348 +766 294 2 891307007 +551 302 3 892775389 +43 202 5 875981190 +911 473 3 892840996 +890 133 5 882402518 +537 345 4 886028446 +747 100 5 888639397 +310 1142 5 879436467 +770 111 5 875972059 +897 185 5 879991137 +643 5 3 891449741 +834 298 4 890862648 +573 495 2 885844339 +654 455 3 887863826 +5 368 1 875635457 +85 181 4 882813312 +889 947 4 880181225 +849 38 5 879695420 +916 273 3 880843361 +531 313 5 887049364 +901 1035 4 877131793 +670 515 2 877974699 +804 820 4 879444115 +442 405 3 883390497 +939 274 5 880261334 +939 252 3 880261185 +805 1071 4 881705456 +474 411 2 887915684 +864 1425 2 888890475 +650 635 3 891370155 +37 62 5 880916070 +646 354 3 888528902 +774 217 2 888557772 +610 485 5 888703815 +656 340 3 892318488 +269 1267 1 891448643 +938 220 4 891357085 +181 280 4 878963381 +339 518 5 891033984 +854 476 3 882813219 +907 220 5 880159360 +887 578 4 881381610 +834 342 2 890860334 +601 660 3 876349937 +416 17 2 886318084 +807 139 2 893082430 +705 416 3 883427716 +924 1149 3 888351470 +556 135 2 882136252 +919 277 5 875288805 +907 988 3 880158612 +864 230 2 888889129 +896 483 3 887158333 +823 686 4 878439257 +286 367 5 877531574 +707 479 3 886286092 +642 131 3 885603566 +294 333 4 877818861 +943 185 2 888639370 +749 405 2 878848673 +908 264 3 879722206 +286 537 4 889651402 +640 1010 3 886474753 +400 313 5 885676316 +781 523 5 879634038 +672 1190 2 879789437 +201 440 2 884114770 +795 436 3 883767338 +634 269 4 890779855 +759 323 4 875227724 +943 403 4 888639746 +385 448 3 879448263 +804 145 3 879446276 +716 195 1 879795425 +882 230 5 879867508 +504 248 4 887831622 +934 1203 5 891193013 +566 521 4 881649802 +837 181 3 875721869 +943 401 1 888639867 +917 3 1 882911567 +751 658 3 889133106 +741 724 4 891019625 +843 228 4 879443763 +933 515 3 874854062 +749 356 4 878847804 +109 410 1 880564534 +125 222 5 892836465 +932 399 4 891251798 +655 1262 3 891585279 +881 447 4 876538953 +932 526 5 891250746 +851 339 4 888540093 +934 602 3 891195063 +450 1480 3 882468686 +533 147 1 884698117 +692 1 4 876953340 +44 183 4 883613372 +865 831 1 880144480 +917 255 3 882911158 +798 699 3 875303502 +719 137 1 884899841 +189 523 4 893265596 +409 178 5 881107817 +328 68 3 885048198 +870 170 5 875050637 +936 343 3 886831576 +789 762 3 880332232 +749 1440 3 878849534 +747 488 5 888640524 +65 9 5 879217138 +829 845 3 891990650 +622 742 3 882590420 +712 204 4 874956810 +321 428 4 879441336 +610 317 3 888703553 +611 315 5 891636098 +280 585 3 891702441 +648 211 4 884368643 +919 181 4 875289250 +864 121 4 877214085 +303 634 3 879467035 +833 1353 3 875035885 +863 355 4 889289419 +749 420 4 878849682 +664 230 3 876526659 +458 483 5 886396460 +798 402 3 875916297 +795 208 4 881252835 +407 288 4 890687293 +846 428 3 883948377 +653 182 3 878854051 +716 190 5 879797152 +709 738 1 879849330 +324 742 5 880575493 +201 1137 4 884111830 +761 201 2 876190511 +650 89 4 891381585 +65 392 5 879217689 +305 173 3 886322670 +551 546 2 892784673 +746 135 1 885075655 +500 242 3 891916883 +393 774 4 889731673 +145 53 2 875272245 +627 518 4 879530146 +806 96 5 882389908 +858 127 5 880932912 +861 213 5 881274759 +751 479 2 889132776 +804 218 4 879445072 +805 477 4 881705810 +608 1281 4 880407079 +886 1467 5 876033987 +24 151 5 875322848 +584 50 4 885777950 +774 177 4 888557277 +429 472 3 882387434 +758 204 4 881975787 +680 257 4 877075273 +528 213 4 886101505 +406 601 3 882480749 +323 1048 3 878739594 +593 40 1 875671757 +6 202 3 883602690 +922 431 4 891447723 +406 154 5 879792811 +840 176 3 891204755 +537 462 3 886030805 +883 207 3 891693012 +774 421 1 888558128 +715 100 2 875961816 +532 347 4 884594422 +699 591 2 880696196 +731 1275 1 886186940 +442 450 3 883391377 +536 1050 5 882360124 +860 327 3 880829225 +452 213 4 875265265 +521 181 4 884475845 +821 504 4 874793848 +828 345 1 891035438 +537 527 4 886031860 +774 82 2 888557277 +757 638 3 888468871 +421 79 4 892241459 +881 72 2 876539220 +123 321 4 879809220 +474 647 4 887924571 +916 640 4 880845157 +72 649 4 880036783 +314 932 4 877887316 +805 1105 2 884881781 +748 227 3 879455150 +932 89 5 891249586 +727 198 4 883710687 +435 201 4 884131356 +918 656 4 891986609 +660 1139 2 891201966 +642 686 5 886131546 +366 758 3 888857684 +846 560 1 883950889 +717 245 4 884641842 +648 176 4 884367538 +721 739 4 877139551 +749 155 2 878849829 +690 47 1 881179469 +578 1016 4 888957666 +887 228 4 881380709 +749 203 4 878848639 +936 1315 3 886833191 +919 1119 3 875373824 +459 298 3 879562895 +890 205 5 882405473 +435 635 3 884133544 +864 204 5 888888937 +738 655 3 875350456 +577 68 4 880475021 +877 1402 4 882677386 +868 655 4 877107996 +798 83 4 875303683 +936 289 5 886831769 +711 51 4 879994778 +526 123 3 885682614 +806 88 4 882390191 +907 107 5 880158939 +840 199 4 891209183 +918 507 5 891987363 +401 188 1 891033267 +934 303 4 891188441 +382 168 4 875946700 +347 363 1 881653244 +875 480 5 876465275 +262 234 3 879794359 +807 496 5 892528918 +843 427 2 879446281 +904 1074 4 879735710 +921 797 3 879381287 +913 4 4 874786460 +881 498 4 876537577 +556 243 1 882135994 +327 529 3 887822770 +844 100 4 877381607 +871 1176 3 888192858 +474 59 3 887923708 +884 212 4 876859238 +846 192 5 883949254 +631 886 4 888465216 +848 430 5 887041354 +532 1011 5 893119491 +873 326 4 891392656 +834 245 4 890860416 +889 737 3 880181515 +77 228 3 884753105 +808 327 5 883949986 +747 715 5 888733274 +360 137 5 880354379 +648 904 2 884794555 +23 73 3 874787016 +308 429 4 887737890 +660 636 2 891200704 +889 208 4 880181275 +940 879 3 889480535 +901 142 4 877131739 +457 356 4 882547670 +892 477 4 886609551 +537 1404 2 886032204 +234 2 2 892335142 +937 283 4 876769212 +772 271 4 889028773 +666 236 4 880313250 +790 176 3 885155489 +815 588 5 878693906 +851 261 3 877831111 +62 151 5 879372651 +804 235 5 879443736 +698 496 3 886366690 +588 356 4 890025751 +682 1311 3 888518035 +618 588 4 891307224 +833 1006 1 875039153 +666 642 5 880139586 +291 833 3 874834236 +721 228 5 877138585 +896 802 2 887161172 +903 509 4 891033380 +902 301 2 879463373 +389 487 5 879991115 +800 405 4 887646705 +454 527 4 881960201 +918 151 2 891988646 +592 603 5 882955543 +845 303 1 885409374 +844 125 3 877382269 +279 1496 3 875298419 +806 702 3 882388795 +862 651 5 879304624 +398 708 3 875747159 +533 243 3 879193517 +561 566 3 885809873 +385 92 3 879443217 +426 496 3 879442841 +339 790 2 891034151 +758 307 3 880672345 +181 815 3 878963168 +13 188 4 882140130 +707 345 5 886285168 +642 181 5 885603699 +782 1608 3 891499399 +457 569 3 882549356 +577 5 4 880475318 +749 181 5 878846998 +648 377 3 884881837 +882 291 4 879862936 +758 270 4 889062124 +788 153 3 880868277 +571 144 2 883354992 +88 326 5 891038103 +851 687 2 874728168 +174 1017 2 886434187 +641 528 4 879370150 +758 393 4 881979012 +417 473 2 879646860 +862 432 5 879304902 +459 125 4 879563169 +930 709 4 879535663 +351 304 3 879481675 +87 180 4 879875649 +924 181 3 884371535 +787 906 1 888979721 +871 271 5 888192349 +796 662 5 893047207 +919 293 4 875288681 +937 237 4 876769530 +295 416 4 879518630 +639 61 3 891239790 +862 91 5 879304762 +774 218 1 888557739 +916 52 5 880844813 +881 243 2 876535663 +655 815 2 887651149 +609 15 5 886895150 +854 322 1 882811865 +619 182 4 885954019 +551 895 3 892775752 +460 870 2 882912469 +151 705 5 879524778 +794 187 5 891035117 +503 529 2 880383030 +927 1178 2 879192052 +940 171 2 885921401 +897 763 3 879993404 +934 226 4 891191831 +318 944 2 884497208 +639 100 1 891240495 +521 204 4 884477853 +880 407 1 880175503 +214 55 4 892668197 +833 1628 3 875225219 +932 448 2 891251588 +922 385 3 891450586 +864 183 4 888888115 +864 189 4 888889268 +933 177 4 874854994 +336 173 5 877757637 +796 62 4 893048562 +929 496 3 879640256 +514 433 5 875462795 +622 769 1 882672922 +442 2 3 883390544 +715 1222 2 875965035 +751 315 3 887134587 +130 233 4 875801750 +559 167 3 891035840 +883 580 3 891693200 +889 210 4 880178342 +62 924 1 879373175 +851 1120 2 890343707 +561 1210 1 885810813 +934 705 4 891191778 +908 144 4 879722850 +870 12 4 875050748 +675 269 5 889488487 +697 986 1 882622680 +924 276 2 884371386 +399 47 3 882511093 +880 940 3 880175157 +886 204 3 876031932 +545 692 3 879900654 +536 386 4 882361162 +577 125 4 880470604 +934 144 4 891192087 +917 121 1 882911567 +738 240 3 875350385 +921 174 5 884673780 +901 756 4 877126935 +840 179 5 891205069 +886 209 4 876031850 +276 772 4 874790826 +936 7 4 886832221 +763 703 5 878923433 +932 462 4 891249038 +843 173 2 879446215 +566 265 4 881650849 +938 410 1 891356780 +83 704 3 880327216 +189 582 5 893265998 +856 272 5 891489217 +747 1045 4 888639823 +846 197 4 883948417 +805 144 3 881694693 +243 246 4 879987085 +451 266 2 879012811 +933 175 4 874854444 +404 301 3 883790286 +313 603 5 891013681 +896 248 4 887235249 +593 274 3 875659849 +924 56 3 886327724 +374 504 4 880395973 +655 1155 3 887474289 +874 285 4 888632411 +669 7 3 892549266 +59 243 1 888206764 +751 274 4 889298694 +933 9 3 874854402 +389 239 3 880087939 +943 576 4 888640106 +244 67 4 880608820 +239 14 5 889179478 +922 919 5 891454625 +183 1215 1 891467546 +177 221 3 880130775 +773 68 2 888540091 +872 926 4 888479516 +232 286 3 880062259 +796 450 3 893049399 +157 258 3 886890296 +528 678 3 888520525 +880 1222 4 880168411 +391 591 4 877399894 +919 406 3 875289417 +523 1069 5 883701962 +810 878 4 879895500 +363 313 5 891493571 +682 33 4 888520864 +742 282 3 881335857 +246 159 3 884923003 +913 466 3 882544673 +799 1545 4 879254026 +726 1038 2 889832053 +931 111 3 891036648 +847 50 4 878774969 +862 265 5 879304980 +923 815 4 880387792 +82 484 4 878769597 +884 510 5 876859330 +846 738 4 883950364 +883 349 2 892557605 +909 707 5 891920327 +503 187 5 880383625 +796 145 2 893218485 +929 429 4 879640225 +225 479 4 879539614 +59 4 4 888205188 +821 993 4 874792570 +339 216 3 891032286 +912 419 4 875966756 +305 566 3 886324486 +209 129 2 883417667 +374 411 3 880394088 +936 1375 5 886832596 +617 320 5 883789424 +315 318 5 879799422 +232 435 4 888550013 +276 182 5 874787549 +488 746 4 891293771 +854 1283 2 882813047 +919 22 5 875374269 +799 306 4 879253795 +788 294 3 880867855 +835 1278 5 891032653 +795 1030 3 883255381 +311 550 3 884364812 +907 978 5 880159473 +868 2 2 877112290 +660 94 2 891201887 +894 534 4 879896704 +655 307 3 892011201 +642 748 5 885601998 +681 894 1 885409742 +435 84 2 884133757 +523 213 5 883700743 +926 245 3 888636270 +429 129 4 882385065 +441 300 3 891035056 +293 122 3 888905399 +199 1354 1 883782952 +774 553 2 888556867 +151 380 5 879543146 +653 371 1 880152058 +921 276 1 879381004 +903 127 5 891031144 +542 194 4 886532534 +938 845 1 891356780 +885 549 3 885714409 +924 9 4 886759657 +709 17 4 879848120 +889 949 3 880181646 +903 928 2 891031749 +751 660 4 889297990 +610 176 4 888703157 +615 300 4 879447613 +882 133 5 879867263 +758 831 4 882054415 +548 924 3 891415786 +805 519 4 881698095 +892 497 4 886608347 +786 100 4 882841667 +803 305 5 880055604 +537 604 3 886031211 +813 243 3 883752660 +927 210 5 879194937 +759 237 3 881476891 +665 200 4 884293741 +79 236 5 891271719 +10 93 4 877892160 +773 24 3 888538677 +592 295 4 882608357 +758 320 5 881976061 +780 427 3 891363904 +894 287 4 880993766 +846 747 3 883948417 +345 181 4 884992479 +405 1445 1 885546336 +8 260 3 879361665 +699 291 3 892709098 +795 47 3 881265108 +181 1381 2 878962349 +164 328 5 889401362 +532 215 5 892866230 +436 856 4 887769952 +534 508 4 877807973 +870 367 4 875679768 +629 194 5 880116887 +604 288 3 883668261 +536 431 5 882359813 +701 286 4 891446488 +912 357 5 875966429 +537 609 3 886031606 +653 210 4 880150103 +13 400 4 885744650 +826 4 4 885690526 +159 932 3 880557464 +541 1041 3 883865929 +747 194 3 888639222 +682 1478 3 888519226 +667 275 4 891035084 +393 8 3 887746145 +734 498 4 891022938 +229 882 4 891633029 +871 402 3 888193541 +903 369 4 891032101 +425 827 1 878739095 +851 95 4 875731282 +416 95 3 878879688 +588 660 4 890024002 +537 228 3 886031474 +272 187 5 879455043 +910 121 1 880821492 +453 1079 1 887942484 +805 317 4 881698745 +497 226 3 879310913 +910 742 4 880822031 +547 751 4 891282597 +488 492 2 891375784 +910 183 4 880822060 +747 900 5 888638183 +788 445 4 880869718 +779 447 4 875999211 +830 231 2 891561938 +887 71 5 881380996 +854 508 4 882812492 +927 571 3 879196853 +271 610 3 885848584 +901 69 5 877132346 +825 1011 3 881101246 +332 619 3 887938524 +907 781 5 885862325 +870 939 3 879714066 +389 257 3 879916077 +796 234 2 892690173 +887 609 4 881381207 +860 781 2 887754411 +826 399 4 885690790 +943 717 4 875502116 +731 520 4 886186567 +892 797 4 886610372 +876 286 5 879428072 +758 315 5 883793836 +606 1149 4 880925289 +881 1217 5 876538506 +271 429 4 885848672 +876 523 5 879428378 +924 402 3 886759965 +916 66 3 880845264 +770 257 4 875972059 +927 1284 4 879181133 +916 421 5 880844291 +745 603 4 880123243 +586 939 4 884064459 +940 7 4 885921597 +815 239 5 878694563 +892 175 4 886608559 +921 69 4 879380862 +919 678 2 875288253 +848 132 5 887038197 +546 300 3 885139842 +919 95 4 875921182 +321 59 4 879440687 +597 748 5 875339041 +537 69 2 886031178 +785 137 2 879438810 +389 618 4 880088115 +484 38 4 891195532 +933 226 2 874854874 +746 83 4 885075497 +574 311 4 891279410 +637 127 2 882901356 +856 328 3 891489478 +862 202 5 879304624 +790 210 4 885155209 +618 776 2 891307098 +133 271 5 890588766 +495 393 5 888635339 +871 305 3 888192475 +728 748 3 879442532 +682 8 3 888521833 +469 487 5 879524178 +883 241 4 891696714 +721 1065 5 877147383 +201 28 3 884111217 +457 238 5 882392976 +536 640 4 882361042 +896 478 5 887158739 +776 427 3 892313246 +886 164 4 876033053 +655 410 2 891585344 +280 182 3 891700276 +303 88 4 879468307 +712 96 5 874729850 +896 427 4 887158384 +686 26 5 879546847 +42 591 4 881110138 +394 343 3 881130008 +350 429 4 882345668 +298 679 3 884183099 +598 538 4 886711452 +622 978 2 882591453 +934 1135 3 891196117 +710 501 3 882064435 +882 501 5 879879807 +802 748 4 875984776 +804 513 5 879441937 +791 294 3 879447940 +679 97 3 884487300 +495 590 4 888637612 +870 654 4 875050801 +916 23 4 880843997 +363 80 4 891498434 +917 1 3 882910888 +851 930 3 875730312 +864 88 4 888887469 +727 840 2 883709884 +860 678 3 887754112 +288 286 4 886372862 +639 863 4 891239702 +643 572 3 891450341 +930 210 2 879535713 +650 158 2 891388149 +889 193 4 880180191 +815 333 3 887978234 +624 275 4 879792493 +279 374 1 888806649 +768 284 1 883835210 +434 1197 5 886724913 +669 603 5 891260719 +735 756 2 876698684 +782 1387 3 891499278 +503 580 3 880383236 +895 151 5 879438101 +59 517 5 888205714 +392 528 5 891038371 +448 270 5 891888137 +592 750 5 886394208 +659 673 4 891384499 +847 222 5 878775470 +303 943 2 879467815 +100 315 5 891375557 +749 470 5 878849259 +882 432 5 879865307 +755 286 5 882569670 +20 15 4 879667937 +327 628 2 887820226 +880 527 4 880241943 +115 558 5 881171203 +557 307 5 881179653 +368 413 1 889783454 +943 216 4 888639327 +883 1012 5 891916324 +371 202 5 880435313 +790 792 2 885155603 +245 717 4 888513447 +901 1120 4 877127021 +416 100 5 893212895 +2 296 3 888550871 +605 111 3 879425663 +650 23 3 891369890 +923 741 5 880387792 +234 1448 3 892335187 +671 82 4 884035686 +924 129 4 889286888 +805 11 2 881694423 +21 1 5 874951244 +916 558 3 880844767 +907 15 5 880158861 +847 501 3 878940463 +844 12 5 877388182 +44 198 4 878348947 +883 82 3 891696999 +788 300 5 880867477 +860 339 3 882831410 +886 410 4 876031459 +546 236 4 885141260 +246 66 3 884922252 +830 692 4 891464148 +880 318 5 880241746 +334 161 3 891549304 +916 123 3 880843524 +908 709 4 879722490 +815 318 5 878693497 +928 127 5 880936905 +883 490 4 891755017 +911 199 3 892839333 +937 874 3 876768956 +655 1640 3 888474646 +724 1105 1 883757537 +786 376 3 882844096 +874 654 5 888633311 +383 213 5 891193137 +577 660 3 880474613 +804 841 4 879443709 +621 405 5 880740034 +930 240 1 879535207 +904 280 5 879735678 +655 734 3 887523477 +573 134 4 885843928 +18 127 5 880129668 +887 90 5 881381071 +934 204 4 891192444 +704 633 5 891397819 +779 255 4 875993165 +145 1012 4 875270322 +837 285 4 875722187 +894 922 4 882404137 +537 300 1 886028446 +216 181 3 880232597 +645 184 3 892055213 +515 326 2 887660131 +873 348 3 891392577 +943 763 4 875501813 +806 1059 3 882390426 +846 80 4 883949594 +774 399 2 888556169 +710 294 3 882063224 +374 31 5 880396659 +815 919 5 878691844 +646 328 3 888528457 +815 2 3 878696355 +658 127 5 875145614 +892 526 4 886608771 +425 70 3 878738245 +928 276 5 880937144 +798 2 4 875743787 +908 209 3 879722694 +886 53 1 876032422 +902 1 5 879465583 +864 8 5 888887402 +389 143 3 880087026 +727 491 4 883710213 +305 484 3 886322838 +239 433 5 889180447 +815 28 4 878694199 +894 874 4 879982788 +889 483 4 880178183 +819 255 1 884105841 +724 887 3 883757468 +937 508 1 876780336 +931 313 4 891035876 +862 92 5 879305051 +538 88 2 877108078 +916 710 3 880844332 +374 184 2 880939034 +627 1267 4 879530346 +634 300 3 881952599 +753 300 1 891401167 +868 168 3 877104157 +796 199 3 892662223 +293 507 4 888905665 +882 4 4 879868118 +924 71 5 885457922 +271 515 5 885848558 +609 352 1 886895699 +912 520 2 875966429 +640 802 3 874778756 +622 178 4 882592421 +711 365 3 879995850 +346 640 3 874947923 +749 975 4 878848369 +922 562 3 891450866 +727 849 2 883713348 +827 286 3 882201725 +682 783 2 888521291 +838 50 5 887063657 +910 291 1 881421090 +723 286 3 880498746 +641 497 5 879370259 +731 1087 1 886186091 +921 122 2 879380433 +468 943 3 875287721 +786 228 4 882844295 +903 475 4 891031144 +923 276 5 880387429 +315 93 5 879821065 +566 153 2 881649747 +878 166 4 880870854 +393 1419 3 889729319 +561 664 4 885807574 +798 111 1 875296109 +543 191 4 874863035 +473 127 5 878157299 +706 687 1 880996945 +428 751 5 885943818 +593 293 1 877727988 +785 995 3 879438736 +803 990 2 880054792 +620 419 2 889988169 +524 614 5 884634731 +189 59 3 893265191 +296 23 5 884197235 +774 193 5 888556746 +452 98 5 875263330 +819 744 5 880382355 +793 252 4 875104498 +308 513 3 887736584 +921 410 2 879380957 +916 227 3 880845067 +726 25 4 889831222 +360 474 5 880355803 +756 568 3 874828903 +543 528 4 874864666 +507 294 5 889964274 +290 378 3 880475169 +796 323 2 892611953 +854 945 3 882813761 +805 659 3 881695677 +703 100 4 875242663 +519 1434 5 883250102 +711 97 4 879993605 +894 509 4 882404278 +885 153 2 885713357 +443 245 3 883504796 +748 1 4 879455040 +693 735 4 875482912 +726 832 5 889832807 +405 177 1 885547996 +753 172 3 891401510 +911 419 5 892840916 +933 732 3 874854651 +918 161 1 891988824 +568 497 2 877907092 +575 531 1 878148199 +271 186 4 885848915 +766 380 2 891310475 +773 840 1 888540218 +420 285 5 891356891 +592 13 5 882608401 +588 56 4 890024246 +622 1406 3 882671381 +827 358 2 882808622 +693 180 3 875482309 +889 944 3 880182173 +416 1133 4 893142244 +399 246 3 882340639 +234 656 4 892079288 +551 233 4 892784259 +855 638 4 879825462 +452 1410 1 876297577 +843 91 3 879446155 +921 280 3 879379562 +943 69 5 888639427 +730 121 4 880310506 +923 249 4 880388021 +886 183 5 876033088 +71 6 3 880864124 +901 58 4 877132091 +193 405 3 889125945 +913 508 3 880759072 +796 606 4 892761504 +883 856 5 891694401 +119 257 4 874775614 +506 514 5 874873287 +727 235 3 883709518 +817 121 3 874815835 +883 684 3 891755066 +116 532 2 876452651 +930 244 4 879535392 +757 29 2 888466683 +909 294 3 891920763 +363 739 3 891498183 +840 174 4 891204114 +767 659 5 891462560 +892 449 2 886610565 +776 549 5 891628731 +279 486 4 875310041 +828 557 2 891036826 +850 79 5 883195192 +683 683 3 893286347 +901 180 2 877289290 +871 510 3 888193335 +798 845 5 875295930 +779 95 5 875999285 +828 737 1 891037948 +529 333 4 882534996 +919 12 3 875373294 +884 285 4 876858820 +655 1166 3 891585477 +922 1079 1 891455277 +794 936 5 891035219 +916 1217 1 880845606 +774 398 1 888557482 +943 168 2 888638897 +665 496 3 884294200 +850 385 5 883195099 +7 198 3 891351685 +697 1022 1 882621523 +650 565 3 891388266 +889 1069 1 880182127 +798 610 3 875743314 +907 366 5 885862156 +373 187 2 877098849 +773 70 3 888538810 +342 833 3 874984751 +938 1 4 891356314 +13 541 1 882397650 +938 273 5 891356532 +642 1287 2 885606463 +677 240 5 889399431 +396 151 3 884646401 +484 241 3 891195390 +889 32 4 880180376 +396 323 4 884645790 +916 158 2 880845829 +933 585 1 874938728 +188 176 4 875072876 +919 864 2 875288848 +847 142 3 878941168 +505 491 3 889333861 +805 406 1 881695445 +892 380 4 886609180 +830 837 5 891462467 +551 833 3 892784166 +594 127 4 874781076 +934 69 5 891193013 +157 475 3 886890650 +743 322 3 881277750 +874 111 3 888632411 +693 197 3 875482197 +589 324 1 883352402 +483 91 3 884047427 +533 1161 3 883583033 +13 893 3 882774005 +930 190 4 879535492 +323 535 3 878739643 +935 15 5 884472177 +749 549 3 878847926 +311 392 5 884366067 +280 739 3 891701359 +677 1011 3 889399431 +932 1020 5 891249621 +642 477 5 886131563 +907 485 5 880160008 +378 735 4 880046229 +847 133 3 878941027 +758 310 3 880672402 +753 179 2 891401410 +747 305 5 888638183 +749 85 4 878849259 +471 946 2 889827982 +930 16 1 879534925 +567 525 5 882425901 +234 200 5 892335074 +537 901 1 886029488 +764 21 2 876243794 +889 1048 3 880177435 +727 122 2 883709802 +748 133 3 879454455 +731 496 5 886179040 +699 3 3 879147917 +773 751 3 888538175 +720 311 5 891262635 +639 673 4 891239406 +541 139 3 884047204 +346 1188 1 875264472 +533 172 4 879191184 +803 307 4 880055604 +783 330 1 884326755 +763 609 4 878918712 +916 241 4 880845368 +870 647 4 879270400 +715 144 5 875962991 +682 176 4 888521195 +43 892 3 883954776 +660 1240 3 891201637 +934 527 3 891191334 +21 323 2 874950972 +836 357 5 885754173 +935 283 4 884472136 +934 584 4 891196384 +416 310 5 893214225 +653 1065 1 880152085 +901 66 5 877131307 +848 855 5 887046915 +908 300 3 879722076 +932 1149 4 891249767 +682 722 4 888522073 +796 939 3 892761504 +653 1132 1 880153429 +798 393 3 875915029 +156 646 4 888185947 +774 546 1 888558565 +13 629 1 882141582 +747 505 5 888639823 +204 12 4 892513865 +577 826 4 880470852 +158 431 5 880134477 +632 176 3 879457812 +727 651 3 883710104 +862 1109 5 879305016 +899 151 2 884122367 +645 650 5 892055285 +52 7 5 882922204 +780 604 3 891363933 +325 235 1 891479292 +782 272 5 891497698 +339 660 4 891034778 +868 578 2 877112439 +870 289 2 875050332 +378 238 3 880046161 +450 1061 4 882398313 +593 126 5 875659777 +923 1017 5 880387525 +711 710 4 879994903 +573 523 4 885844007 +334 479 4 891545926 +806 117 2 882385237 +183 258 3 891462811 +57 144 3 883698408 +895 328 4 879437748 +774 50 4 888557198 +805 210 3 881694693 +919 272 5 885059452 +606 393 4 880925453 +933 174 4 874854745 +751 209 4 889133377 +659 486 4 891383733 +544 748 3 884795986 +487 62 3 884042630 +899 213 4 884122698 +435 709 4 884131822 +642 553 5 886132153 +790 597 3 884462047 +262 269 3 879961283 +940 471 4 885921628 +918 660 4 891987752 +44 692 3 878347532 +642 1182 2 885606178 +774 866 1 888558853 +450 234 3 882396245 +799 1063 4 879254026 +738 250 4 875348912 +622 62 4 882592850 +869 288 3 884490011 +398 367 3 875717020 +887 122 5 881379239 +401 537 4 891033466 +222 241 3 878181696 +789 628 3 880332215 +242 1355 5 879741196 +497 265 4 879310883 +55 7 3 878176047 +778 196 2 890769633 +932 1035 4 891251869 +919 255 4 875289170 +174 1313 4 888155294 +926 262 3 888636082 +324 410 5 880575449 +928 168 5 880936817 +771 50 4 880659347 +880 926 3 880167328 +807 91 5 892684675 +827 333 3 892157242 +293 1044 2 888908117 +590 1009 3 879439483 +228 56 2 889388607 +903 192 5 891033628 +497 50 5 879310580 +868 199 5 877105882 +911 474 5 892838637 +894 827 3 880993766 +833 641 4 875038626 +890 97 4 882402774 +416 300 4 876696823 +594 199 4 877816302 +151 1041 3 879543306 +919 302 4 875920245 +883 345 3 891691465 +833 176 2 875038850 +881 29 2 876539091 +406 205 2 879445642 +780 515 3 891364124 +922 235 2 891452407 +658 22 4 875147448 +532 477 4 892520198 +840 198 3 891204356 +622 276 4 882590485 +629 127 5 880117605 +488 82 4 891294942 +927 742 5 879199250 +632 566 4 879458649 +871 161 5 888193275 +145 754 3 882181058 +436 468 4 887771826 +625 198 4 891263665 +406 217 4 879792928 +933 70 2 874855020 +617 816 1 883789747 +913 289 5 880658260 +880 795 2 880243147 +568 611 3 877907782 +880 379 4 880241434 +428 749 4 885943782 +279 83 5 878082781 +807 258 3 892527100 +647 174 4 876530784 +766 448 3 891310934 +940 259 4 884801316 +768 895 2 883750415 +52 288 3 882922454 +230 203 2 880484890 +870 111 3 880584548 +896 550 2 887160880 +846 633 3 883948534 +843 218 2 879443297 +592 109 4 882608145 +815 515 5 878691739 +847 240 1 878939309 +709 841 4 879848824 +880 120 2 880175503 +70 172 5 884064217 +232 357 4 888549721 +896 1222 2 887161393 +727 172 5 883710104 +659 199 4 891383965 +429 1012 3 882385963 +918 995 3 891986143 +891 597 3 883489324 +887 132 4 881380218 +693 484 3 875484837 +903 81 5 891466376 +870 284 2 875051072 +605 64 5 879425432 +581 1353 4 879641850 +59 91 4 888205265 +362 321 2 885019435 +326 211 4 879876184 +733 924 4 879536523 +763 737 2 878919055 +938 823 4 891357019 +848 812 2 887038475 +820 258 3 887954853 +738 919 4 875349807 +326 97 4 879874897 +894 250 4 879896898 +878 699 1 880871600 +716 177 2 879794935 +738 755 3 875350913 +934 196 5 891191108 +795 70 3 883253481 +894 1038 3 880415855 +155 872 3 879370860 +782 1089 2 891499660 +405 1423 1 885546725 +786 528 5 882842878 +910 286 3 883760216 +49 2 1 888069606 +932 607 4 891249621 +868 135 5 877104987 +933 959 1 874938430 +671 273 4 875389187 +858 515 4 880932911 +798 731 3 875303765 +679 172 5 884486758 +903 595 2 891031714 +562 485 5 879196074 +886 196 3 876031365 +566 289 1 881649273 +887 1279 3 881378402 +900 410 2 877833326 +378 402 4 880045856 +294 829 3 889242788 +907 764 4 880159113 +686 179 5 879545814 +435 763 5 884133544 +537 429 3 886030863 +938 106 5 891357019 +642 998 3 886569765 +544 292 4 884795470 +269 708 4 891448323 +709 68 5 879848551 +406 393 4 880131851 +904 90 2 879735731 +892 431 4 886607957 +685 289 2 879451253 +479 340 1 887064320 +577 88 3 880475226 +912 616 3 875966065 +898 309 5 888294805 +334 549 4 891547261 +861 475 3 881274760 +102 227 4 888801673 +60 135 5 883327087 +864 742 4 878179445 +817 405 3 874815947 +801 299 2 890333011 +916 90 3 880845115 +7 152 4 891351851 +779 50 5 875992279 +193 1090 2 889124778 +475 302 3 891451083 +561 197 4 885807484 +796 77 5 893194646 +887 427 5 881379718 +889 603 4 880180122 +303 368 1 879544340 +883 271 2 891692116 +222 133 1 878182338 +846 199 5 883947911 +878 258 3 880865562 +685 875 3 879451401 +561 17 2 885810167 +845 306 2 885409374 +704 523 5 891397667 +455 523 4 879110946 +323 322 2 878738910 +655 192 3 887473753 +318 25 5 884494757 +533 676 5 879439720 +685 886 1 879451211 +7 367 5 891350810 +927 99 2 879195472 +515 340 3 887658782 +919 223 4 875372844 +707 420 3 886287160 +508 655 4 883767525 +416 659 5 893213404 +932 841 2 891250317 +940 354 5 889480493 +862 748 4 879302533 +450 399 4 882468239 +453 25 4 877552872 +486 244 3 879875220 +749 118 3 878846841 +591 523 4 891031724 +896 730 4 887158294 +886 177 4 876031973 +716 1286 2 879795239 +938 248 1 891356390 +564 258 4 888718771 +766 584 3 891309844 +807 2 4 892978338 +246 739 2 884922678 +173 245 4 877556927 +716 655 4 879795838 +504 300 4 887831274 +863 1127 4 889289157 +896 588 5 887158265 +749 365 3 878848951 +291 1047 2 874834165 +760 258 5 875665793 +328 46 2 885048004 +363 168 4 891494905 +455 117 3 879111345 +504 742 4 887831860 +387 214 5 886483753 +887 393 4 881381114 +497 121 4 879310581 +267 5 3 878972399 +897 23 3 879990683 +314 768 5 877890261 +432 255 5 889416608 +256 230 4 882164480 +283 71 4 879297965 +561 942 3 885809712 +178 1119 4 882827400 +586 68 4 884062010 +870 1020 3 882385179 +478 710 5 889396029 +727 92 2 883710806 +659 188 3 891384606 +892 495 4 886609218 +561 199 4 885809939 +682 999 2 888521942 +724 322 1 883757784 +848 173 5 887038134 +931 290 2 891036883 +501 628 4 883348519 +901 732 5 877132578 +625 70 3 891262724 +235 285 4 889655204 +698 663 1 886366955 +653 160 3 878854441 +837 740 5 875722123 +643 630 3 891448352 +766 607 1 891309090 +883 513 5 891717319 +86 1176 5 879570973 +764 98 5 876244991 +747 178 5 888639939 +805 322 2 879971215 +798 15 4 875295810 +201 800 2 884114713 +865 471 1 880143612 +851 12 4 875731370 +919 877 3 875288304 +936 1129 5 886833795 +301 100 5 882074408 +943 526 4 888639523 +823 710 4 878438457 +828 558 3 891037047 +18 959 3 880131450 +899 133 3 884122308 +910 3 2 881421019 +233 845 4 880190627 +933 193 4 874853927 +665 210 4 884293789 +94 1101 3 891720590 +778 441 3 890804387 +897 77 4 879990877 +870 746 3 879270400 +620 452 3 889987604 +867 89 5 880078769 +892 692 4 886608296 +293 45 5 888906315 +374 164 4 880937735 +936 327 4 886831445 +296 209 4 884199625 +588 378 3 890026059 +213 125 5 878955295 +897 404 4 879991186 +796 96 4 892662523 +481 211 5 885828426 +908 631 4 879723128 +493 333 4 884133084 +343 963 5 876404880 +835 504 5 891033772 +897 187 5 879990622 +896 239 4 887158165 +916 195 3 880844920 +870 148 2 879377064 +931 302 4 891035876 +373 174 4 877099137 +943 196 5 888639192 +387 847 3 886480325 +890 483 5 882402477 +432 298 3 889415852 +357 841 3 878951918 +712 419 3 874730234 +782 905 4 891498791 +276 807 2 874795574 +869 122 3 884493060 +858 327 3 879459504 +903 1009 4 891031906 +686 318 5 879545814 +82 22 3 878769777 +861 937 4 881274504 +130 272 5 888962577 +896 570 2 887161198 +328 187 4 885045993 +495 1116 3 888632738 +536 450 2 882364152 +548 151 1 891415786 +490 547 4 875428765 +437 135 4 880140101 +889 219 2 880178131 +915 896 2 891030070 +933 391 1 874939230 +168 924 2 884287614 +790 368 2 884462954 +615 197 4 879448439 +116 311 3 886978067 +758 471 3 881975472 +796 58 3 892675605 +704 134 5 891397441 +902 754 3 879463310 +892 825 4 886610682 +13 166 5 884538663 +583 524 5 879384522 +826 550 3 885690750 +655 1554 2 887611677 +648 448 3 884883476 +756 256 4 874827486 +601 198 4 876350104 +890 229 2 882405059 +509 705 4 883591687 +933 763 3 874938644 +907 332 5 885862325 +870 475 5 875051100 +932 1 4 891249932 +605 275 4 879366177 +650 270 4 891368959 +943 9 3 875501960 +804 708 3 879445783 +17 222 3 885272751 +843 83 3 879446948 +629 275 5 880117565 +918 89 5 891987780 +710 302 4 882063224 +798 945 3 875743518 +900 696 2 877833195 +711 417 4 879994749 +655 1465 2 887472943 +887 404 4 881381071 +458 7 4 886394373 +654 720 4 887864923 +262 70 4 879962517 +16 367 3 877726390 +398 582 2 875659518 +870 318 5 875050865 +889 980 4 880178748 +804 288 1 879447476 +889 657 4 880177941 +868 186 2 877109234 +13 834 1 882397068 +653 187 4 878853780 +920 311 3 884219701 +612 480 4 875325049 +687 269 4 884651420 +854 20 2 882813179 +573 528 4 885843928 +868 174 5 877107320 +655 4 2 887611649 +853 682 4 879364823 +251 25 4 886272615 +885 739 4 885715241 +839 846 2 875753052 +811 243 3 886377579 +406 654 4 879445522 +500 383 3 883877467 +768 535 3 882190750 +727 392 4 883711847 +756 383 3 874831050 +836 185 5 885754118 +928 191 5 880936863 +727 465 2 883712159 +401 243 3 891031867 +666 483 5 880139348 +896 566 4 887159805 +472 96 5 875980823 +361 1152 2 879441008 +735 325 1 876698022 +938 458 4 891356780 +916 546 2 880843864 +505 182 1 889334555 +922 276 3 891453854 +450 178 4 882394251 +179 313 4 892151270 +923 866 4 880388383 +639 1101 3 891239177 +665 417 3 884293569 +916 1073 4 880844445 +61 301 1 891206450 +846 435 5 883948222 +606 87 4 880924483 +825 919 1 881099316 +846 396 5 883949508 +239 269 5 889181247 +768 269 3 885319349 +59 953 5 888205787 +642 756 5 885604859 +913 181 3 880825135 +363 238 4 891497583 +715 939 4 875964545 +49 154 5 888068715 +703 819 2 875242912 +147 302 4 885593845 +934 96 4 891191157 +376 815 3 879459207 +294 328 4 877818982 +732 321 3 882590201 +82 237 3 876311319 +774 219 4 888557739 +886 655 4 876032973 +864 125 4 888889162 +648 458 2 882211418 +348 827 4 886523387 +393 399 4 889728353 +793 117 4 875103739 +943 672 5 888640125 +477 451 5 875941763 +682 1046 3 888520799 +833 540 1 875224687 +766 161 3 891310372 +655 1637 3 888984255 +796 127 5 892660147 +932 521 5 891249994 +922 384 4 891452521 +673 302 3 888786942 +158 125 3 880132745 +42 103 3 881106162 +843 441 2 879443544 +864 1208 2 888890731 +916 1009 5 880843551 +683 294 3 893286346 +685 288 2 879451147 +923 591 5 880387875 +682 85 3 888521833 +624 833 4 879793582 +346 1210 3 875265335 +772 272 5 889028581 +938 841 3 891357190 +795 434 3 880569983 +137 690 2 881432482 +916 537 4 880844087 +66 1016 3 883601859 +830 89 5 891561607 +940 430 4 885921542 +515 332 3 887658676 +14 19 5 880929651 +655 1143 3 887425458 +757 358 3 888443570 +831 56 5 891354751 +833 12 5 875039416 +336 72 3 877756127 +293 765 3 888907836 +667 197 4 891035033 +423 508 4 891395394 +537 492 3 886031342 +842 272 4 891217834 +940 238 4 885921628 +823 96 4 878438179 +255 826 1 883216958 +943 38 3 888640208 +936 255 5 886833795 +655 911 2 891817522 +479 136 4 879461447 +507 118 5 889966127 +384 286 4 891273649 +587 539 3 892871437 +890 190 4 882403587 +938 1013 2 891357042 +796 94 3 893219065 +932 475 4 891248856 +758 174 5 881975005 +835 98 5 891034401 +308 778 3 887740603 +393 572 4 889731618 +898 258 3 888294407 +837 934 2 875722483 +942 197 5 891283043 +501 928 3 883347773 +22 792 4 878886647 +474 47 4 887927339 +903 410 4 891031677 +670 186 4 877975594 +934 134 4 891191157 +911 530 4 892838677 +929 98 5 879640394 +892 542 1 886611023 +934 181 4 891189275 +385 201 4 879441982 +458 435 4 886397504 +767 177 5 891462614 +921 294 4 879379338 +804 625 3 879445493 +551 58 5 892783451 +325 1140 3 891479681 +732 304 5 882589792 +701 344 3 891446788 +880 25 4 880166938 +939 508 5 880261141 +916 80 3 880845476 +468 237 4 875280181 +613 279 4 891227410 +889 179 3 880179705 +940 216 4 885921310 +867 690 5 880077751 +720 887 5 891262608 +592 127 5 882608021 +623 288 1 891032140 +890 530 4 882405780 +809 331 2 891036809 +941 1 5 875049144 +684 98 4 878759970 +474 381 4 887924683 +395 118 3 883765791 +922 1157 2 891447853 +883 98 3 891695666 +669 480 5 891517259 +844 257 4 877381784 +291 508 5 874805892 +899 98 4 884121572 +870 1014 2 884789665 +934 474 4 891191976 +599 280 5 880952229 +569 328 4 879793253 +537 745 2 886031074 +822 95 4 891037394 +339 241 4 891034152 +26 683 3 891350372 +798 930 5 875637661 +722 121 5 891281182 +416 680 3 876696938 +622 181 5 882592041 +715 282 3 875962423 +454 140 3 888267386 +690 428 1 881177506 +795 825 2 880559026 +625 961 4 891962917 +889 741 4 880177131 +553 655 4 879949289 +523 435 5 883702263 +682 746 3 888521413 +846 491 3 883947960 +233 4 3 877663337 +943 274 3 875502074 +711 22 4 879993073 +594 520 4 874786664 +582 25 3 882961608 +883 745 5 891694431 +883 408 5 891914522 +262 699 5 879793022 +913 469 3 881037459 +237 286 3 879376220 +401 191 4 891032847 +532 332 4 876696298 +429 217 3 882387715 +894 137 5 880416340 +786 196 4 882843683 +807 431 4 892528062 +437 66 3 880143167 +661 169 5 876017294 +450 584 5 882397223 +198 673 3 884209451 +721 153 4 877150031 +878 51 4 880869239 +504 1093 1 887841073 +749 204 4 878847576 +425 1188 3 878738695 +707 1142 1 880059921 +889 199 5 880181138 +629 876 3 880116023 +892 186 3 886608643 +938 257 5 891356350 +442 90 3 883388609 +766 712 3 891310444 +846 1109 3 883948908 +710 483 5 882063685 +535 162 3 879619035 +822 902 4 891033747 +829 284 3 891990799 +826 62 4 885690790 +880 748 4 892958250 +660 84 2 891201823 +308 9 4 887737194 +798 660 3 876177436 +887 548 1 881381555 +923 248 4 880387474 +292 602 4 881105481 +266 9 4 892258004 +840 185 5 891204356 +92 13 4 886443292 +660 196 4 891199557 +864 153 5 888886946 +880 585 1 880175050 +918 659 4 891987622 +552 148 3 879222452 +559 311 3 891033635 +308 169 5 887736532 +506 363 3 874862646 +618 521 2 891307784 +761 628 4 876190689 +230 699 4 880484975 +890 674 3 882404610 +344 173 5 884814697 +116 269 3 886309452 +874 302 5 888632098 +896 1046 2 887160583 +798 281 4 875296234 +937 1007 4 876769373 +758 1034 4 882054415 +13 822 3 884538634 +722 928 3 891281228 +448 312 1 891888653 +70 380 3 884066399 +710 258 2 882063224 +97 208 5 884239744 +109 924 3 880564415 +934 507 4 891192145 +634 934 2 877018033 +132 806 3 891278896 +889 195 4 880178204 +868 268 4 877102974 +881 430 4 876537870 +550 243 2 883426119 +426 289 2 879441754 +892 837 5 886608743 +815 54 3 878696355 +648 110 3 884882407 +852 250 4 891036414 +457 227 4 882392853 +405 1475 1 885547268 +246 158 1 884923955 +870 523 5 875050774 +537 928 1 886030442 +158 230 2 880134445 +655 1630 3 887428735 +497 184 3 879310792 +579 228 3 880951984 +890 496 5 882916460 +503 509 5 880383098 +802 176 5 875985469 +763 498 4 878915600 +574 754 4 891279122 +864 619 3 888889327 +358 1396 4 891269827 +551 583 3 892778369 +897 215 4 879990683 +521 188 4 884478101 +942 945 5 891283239 +904 111 4 879735641 +186 295 2 879023390 +551 192 5 892776750 +286 652 4 877531899 +864 190 4 888887437 +790 62 3 885157465 +881 679 1 876539129 +884 1073 4 876859138 +854 282 2 882812960 +280 172 3 891700768 +746 168 3 885075790 +499 174 3 885598961 +727 11 3 883710152 +933 282 3 874855104 +896 71 5 887158927 +705 229 3 883428154 +930 535 4 879535392 +763 132 3 878920656 +710 127 5 882064096 +825 137 2 880756224 +479 496 3 879461084 +941 294 4 875048532 +929 431 1 879640225 +639 19 4 891239813 +891 116 3 891639552 +429 222 4 882385518 +796 1126 1 892662826 +773 127 5 888539962 +848 71 5 887046915 +555 118 4 879962569 +269 823 3 891446514 +854 1013 1 882813453 +474 190 3 887923972 +889 1487 3 880182871 +330 732 5 876547220 +782 253 2 891500150 +95 386 2 880572356 +413 273 2 879969484 +788 1042 3 880871240 +921 323 4 879379428 +919 1060 3 875289322 +393 823 3 889730262 +939 275 4 880260852 +342 507 4 875319295 +119 1264 3 886176993 +293 502 3 888906428 +610 606 5 888703343 +589 328 5 883352562 +614 535 2 879464376 +655 1643 5 887611511 +590 547 4 879439086 +796 274 5 893047167 +518 920 3 876824121 +943 568 3 888639042 +826 71 5 885690342 +766 238 4 891309450 +663 182 5 889493691 +389 629 2 880166028 +733 1380 2 879536567 +907 1 5 880158712 +653 151 3 878866475 +299 212 4 878191889 +141 181 4 884584709 +405 513 1 885546112 +862 866 4 879303697 +913 238 3 880825052 +921 254 3 879380908 +910 748 3 881420228 +312 430 5 891699426 +387 1198 3 886479575 +506 228 5 874873571 +876 531 4 879428481 +364 678 4 875931478 +339 480 5 891032885 +798 926 4 875638203 +878 463 2 880866177 +464 127 5 878354966 +313 197 5 891013910 +7 598 3 891353801 +698 515 4 886366190 +22 68 4 878887925 +334 99 4 891548533 +749 186 4 878847862 +721 229 5 877138585 +615 708 2 879448882 +519 348 5 883250148 +816 1025 4 891711495 +466 161 2 890285113 +915 258 2 891030108 +666 91 3 880139409 +916 498 3 880844241 +940 1137 3 885921577 +286 72 4 877534025 +804 436 5 879444984 +724 352 1 883757259 +500 546 4 887720050 +936 919 5 886832808 +660 946 2 891201696 +943 139 1 888640027 +815 484 4 878693989 +548 288 3 891042794 +847 88 2 878941168 +303 546 2 879484373 +409 338 3 881104916 +355 319 5 879486529 +774 453 2 888557804 +501 274 3 883348474 +790 153 3 885155077 +535 638 4 879618655 +913 462 3 881037459 +712 400 3 874957179 +488 633 5 891294334 +761 245 5 876189715 +782 1610 1 891500230 +871 347 5 888192315 +521 300 3 884475555 +916 939 3 880844694 +907 326 5 880158448 +854 174 3 882813574 +896 210 4 887158332 +838 283 5 887063994 +281 748 5 881200745 +938 685 3 891356894 +286 403 5 877533543 +416 291 4 878879275 +749 739 3 878848558 +236 304 4 890117676 +916 12 4 880844445 +293 94 2 888908066 +83 88 5 880308186 +387 727 5 886484098 +802 670 4 875986155 +843 526 3 879447625 +457 451 4 882549212 +741 945 5 891456827 +710 303 4 882063224 +308 255 4 887741693 +727 56 3 883711150 +756 420 4 874829373 +919 258 4 875288164 +829 255 3 891547657 +648 39 3 884882742 +407 169 5 875042642 +923 1001 1 880388173 +682 717 3 888521090 +407 474 3 875042378 +907 271 5 881030073 +267 431 4 878973426 +517 229 3 892660034 +715 412 2 875962783 +727 205 5 883710104 +823 473 3 878439065 +765 283 4 880346282 +769 120 1 885424401 +919 1258 3 875289453 +524 265 4 884636583 +848 191 5 887038564 +725 294 3 876103726 +186 269 1 889818094 +655 155 4 887473702 +881 191 5 876537457 +889 161 4 880180897 +682 470 5 888517628 +273 338 3 891293304 +790 451 3 885157299 +870 1412 2 879714435 +716 487 5 879794934 +639 514 4 891240566 +454 64 4 881959652 +430 7 3 877225660 +327 678 3 887743705 +635 302 4 878878587 +178 111 4 882823905 +889 423 4 880177941 +932 119 5 891249586 +504 371 3 887912236 +454 748 4 881958551 +913 195 4 881725846 +774 117 2 888558646 +936 108 4 886832758 +790 13 3 884461820 +406 971 3 879793328 +836 174 5 885754266 +326 1118 2 879877264 +896 229 4 887160399 +655 558 4 887427506 +872 1011 1 888479333 +934 961 4 891193854 +864 328 5 887686456 +251 597 3 886272514 +932 169 5 891249649 +853 322 3 879364883 +719 77 3 879360846 +716 132 5 879796438 +833 288 2 875035487 +774 523 2 888555964 +881 82 5 876538286 +846 79 4 883947630 +807 69 5 892528110 +97 423 5 884239472 +648 50 5 882211016 +659 255 3 891045161 +548 475 4 891415411 +622 185 3 882592041 +755 879 4 882569844 +195 615 4 880650666 +487 825 3 883444674 +554 68 2 876368907 +753 193 4 891401366 +145 59 1 882181695 +917 9 5 882912385 +524 955 1 884637914 +548 183 5 891044410 +881 181 4 876535928 +894 318 5 879897168 +298 482 5 884182657 +673 79 5 888787587 +450 732 3 882395662 +921 284 4 879379943 +864 4 4 888890690 +931 900 4 891035917 +716 823 3 879794428 +738 7 4 875349530 +907 143 5 880159982 +487 1209 4 884045135 +911 215 3 892839140 +682 73 5 888521564 +828 652 5 891036492 +630 1061 2 885667581 +911 208 4 892839970 +690 284 4 881178442 +838 222 4 887064356 +881 31 5 876537577 +684 924 2 878232961 +894 531 3 882404363 +488 56 4 891294785 +456 1129 4 881371548 +892 969 4 886608380 +919 591 3 875289667 +12 480 4 879959161 +788 46 3 880870018 +393 97 4 889555126 +561 226 1 885809806 +802 197 3 875985347 +62 64 4 879373638 +634 333 4 881007052 +289 363 3 876790653 +527 144 4 879456186 +776 523 4 891628937 +518 619 4 876823018 +419 269 4 879435190 +606 692 5 880924790 +548 218 4 891044538 +907 97 5 880160204 +475 306 5 891451276 +18 724 4 880132055 +160 952 4 876767299 +468 64 5 875286450 +808 346 5 883949986 +889 831 2 880177387 +593 181 4 875658800 +758 735 5 881976855 +848 241 5 887047243 +344 756 2 884900529 +70 94 3 884151014 +932 481 4 891249877 +80 64 5 887401475 +847 609 2 878940383 +826 102 4 885690442 +868 230 3 877112349 +923 829 4 880388426 +130 761 3 876251650 +702 450 1 885767775 +893 781 3 874828569 +555 100 5 879964092 +883 228 4 891696824 +697 250 4 882621940 +901 237 3 877126757 +708 181 5 877325279 +494 707 4 879541112 +933 1183 3 874938596 +606 178 5 880925579 +864 265 5 888886946 +856 748 3 891489638 +932 1121 5 891249261 +714 294 4 892777903 +416 305 3 878877919 +501 248 4 883347975 +773 1252 4 888538643 +868 238 4 877103249 +192 118 2 881367932 +141 591 4 884584865 +804 1177 3 879446390 +825 282 4 880755693 +921 367 4 879381021 +581 1367 5 879641603 +582 831 2 882962561 +901 38 3 877131087 +844 13 3 877381708 +125 710 5 879454699 +293 303 4 888904220 +655 1641 3 887427810 +405 375 1 885546835 +697 886 5 882622481 +889 647 2 880181191 +607 56 5 883880155 +846 735 2 883948141 +805 1008 4 881699661 +201 471 2 884140637 +892 633 4 886609551 +826 187 4 885690481 +477 66 5 875941763 +882 25 2 879862652 +922 655 2 891451327 +426 481 5 879442892 +145 97 5 875272652 +381 480 5 892696019 +794 249 3 891035885 +493 249 4 884132784 +293 28 3 888906071 +892 679 3 886610049 +24 324 5 875322875 +666 370 2 880313811 +786 497 4 882842946 +405 445 4 885548435 +790 131 2 885156852 +811 901 4 886377771 +880 94 3 880175097 +916 109 3 880845099 +892 1078 3 886610566 +695 340 4 888806082 +798 827 4 875637541 +37 121 2 880915528 +846 942 4 883948765 +279 1444 3 875313351 +932 514 5 891249932 +711 1190 3 886030579 +767 180 5 891462870 +846 650 5 883948534 +901 322 4 877125575 +301 21 2 882074967 +843 378 2 879448230 +752 355 2 891208036 +934 502 4 891194539 +420 547 4 891357104 +557 1176 5 881179653 +774 391 1 888557520 +34 991 4 888602618 +883 238 4 891694218 +843 127 2 879445059 +942 498 5 891282931 +153 187 2 881371198 +941 1007 4 875049077 +903 252 3 891031715 +26 845 3 891377468 +897 210 5 879991007 +627 64 5 879530015 +843 1039 3 879446215 +919 292 3 875288253 +178 220 3 882827247 +943 825 3 875502283 +665 1047 1 884291376 +671 195 5 884035774 +892 183 5 886608681 +213 157 4 878955501 +478 124 4 889387982 +870 248 4 880124496 +943 193 4 888639093 +887 218 5 881381471 +870 724 4 875679906 +848 210 5 887039271 +145 121 2 875270507 +850 96 4 883195236 +642 955 3 888123262 +887 420 5 881381425 +913 288 2 880755823 +429 440 1 882387411 +666 193 4 880567810 +868 1183 1 877112141 +548 25 2 891415746 +778 623 1 890804625 +886 364 3 876034006 +49 475 4 888066109 +882 284 3 879862865 +933 88 3 874854696 +450 388 3 882471604 +933 82 3 874939130 +678 285 3 879544397 +873 307 3 891392360 +807 483 5 892529756 +404 288 3 883790314 +899 194 5 884121125 +932 414 4 891251959 +916 1119 3 880845505 +537 86 4 886031786 +885 216 3 885715221 +934 462 4 891191511 +766 810 2 891310620 +896 235 1 887161198 +815 514 1 878693183 +850 485 5 883195168 +899 96 4 884121125 +574 286 3 891278916 +665 742 4 884290704 +933 12 4 874854135 +854 321 3 882811913 +883 1074 4 891694340 +919 539 3 885059682 +542 386 3 886533046 +796 378 4 893218764 +407 210 4 875044037 +694 211 5 875727189 +721 878 3 877137598 +708 887 2 892718820 +121 292 4 891388960 +896 225 1 887161518 +880 273 5 880166770 +655 143 4 887523176 +561 504 3 885809447 +1 94 2 875072956 +843 465 2 879449152 +764 732 3 876246475 +942 259 4 891282673 +504 423 4 887840960 +551 258 4 892775584 +650 27 3 891381745 +184 372 3 889910053 +815 151 4 878692207 +543 64 4 874863336 +458 100 4 886394373 +399 90 2 882350653 +716 141 4 879797555 +909 326 4 891919458 +747 865 5 888640916 +654 496 4 887864230 +727 1446 3 883712123 +932 405 4 891251177 +943 470 4 888639814 +457 98 5 882553113 +894 305 4 880415834 +882 176 4 879867980 +294 1047 3 877820240 +821 294 4 874792194 +221 633 3 875246459 +833 1181 1 875133458 +567 650 4 882426762 +504 67 2 887912382 +807 289 4 892527665 +806 237 2 882385135 +796 328 5 892612057 +250 984 3 878089229 +846 1178 2 883950524 +764 106 2 876243990 +486 546 2 879875440 +797 259 3 879439136 +816 690 4 891710922 +788 443 4 880868473 +880 168 3 880174623 +399 343 2 882340517 +758 919 5 881976262 +932 197 5 891249649 +908 732 3 879722974 +59 602 2 888206295 +691 1172 5 875543191 +549 151 3 881672300 +721 995 3 877137447 +928 135 4 880936884 +828 640 2 891037948 +766 499 3 891310125 +303 1217 1 879484948 +16 39 5 877720118 +562 82 5 879196401 +224 731 4 888103872 +608 93 4 880406299 +927 38 5 879195783 +492 1098 4 879969512 +717 260 1 884641911 +919 1514 2 885059812 +861 305 4 881274504 +943 1047 2 875502146 +99 348 4 886518562 +804 310 4 879440600 +449 198 4 880410624 +842 333 4 891218107 +214 250 2 891543036 +933 568 2 874939207 +561 417 2 885809690 +810 873 3 879895403 +637 117 2 882904148 +361 367 3 879440475 +831 690 4 891354064 +937 116 4 876769080 +234 835 3 892334481 +94 1140 2 891723328 +405 1246 1 885547735 +264 209 5 886123415 +886 1217 4 876033602 +615 332 2 879447585 +287 895 2 888177213 +592 1079 1 882608873 +932 210 4 891250793 +786 117 4 882841996 +437 462 5 881002324 +897 849 4 879990877 +555 405 4 879962569 +189 180 5 893265741 +919 14 4 875288934 +887 929 1 881379059 +292 249 3 881104820 +836 663 5 885754266 +478 100 5 889388863 +896 1303 4 887161518 +65 178 5 879217689 +251 294 3 886272283 +271 28 5 885849025 +626 327 4 878771419 +13 432 4 882398654 +943 415 1 888640027 +174 168 1 886434621 +934 403 4 891195537 +738 204 4 875350053 +339 176 4 891032413 +906 408 4 879435212 +416 1594 5 893212484 +155 245 2 879371061 +880 268 5 892958128 +655 21 2 888685787 +862 12 5 879304571 +883 736 3 891696750 +592 1012 5 882608401 +806 81 5 882389727 +474 405 4 887916260 +638 153 3 876695819 +788 28 5 880868876 +82 582 4 878769410 +922 95 3 891448580 +919 174 4 875372947 +709 576 4 879848695 +697 245 3 882621621 +790 100 2 884461334 +821 14 4 874792369 +113 979 5 875936424 +910 205 4 880822060 +796 736 3 893047126 +480 98 4 891208239 +588 7 3 890024611 +704 322 2 891396881 +857 304 2 883432301 +256 930 3 882153258 +524 519 4 884634818 +875 179 5 876465188 +479 271 3 879459692 +880 627 3 880241256 +848 72 5 887042341 +253 318 5 891628323 +919 815 2 875289533 +606 926 3 880922625 +846 429 2 883947819 +739 22 5 886958860 +833 11 5 875038850 +865 625 1 880235099 +916 737 3 880845328 +56 748 4 892676028 +417 365 4 879648860 +889 298 4 880177016 +622 1231 2 882670653 +804 197 4 879443136 +354 283 4 891216632 +901 252 3 877127250 +501 150 5 883347773 +304 274 4 884968415 +864 734 3 888892874 +883 847 4 892557605 +890 514 5 882402478 +90 196 4 891385250 +622 199 5 882592143 +140 288 3 879013617 +929 479 4 879640329 +805 173 4 881696671 +794 515 5 891034755 +738 449 3 875351438 +486 1405 5 879874516 +339 217 3 891034254 +922 699 3 891449048 +846 210 5 883947500 +561 505 4 885807510 +917 628 5 882912385 +122 699 5 879270541 +145 740 2 875272786 +110 1229 3 886988374 +774 840 2 888558594 +26 122 1 891380200 +664 202 4 878094973 +305 1286 5 886324687 +809 299 4 891037069 +588 294 4 890014887 +280 588 5 891700803 +815 380 3 878695744 +198 238 4 884207733 +931 272 5 891037521 +524 430 3 884637914 +785 273 3 879439527 +850 88 5 883195479 +913 203 4 880825916 +692 508 3 876953424 +388 121 4 886436756 +720 242 4 891262608 +265 1 5 875320247 +919 892 3 885059724 +805 153 4 881704063 +223 546 5 891550118 +18 357 4 880129421 +367 331 4 876689418 +538 89 4 877109831 +190 288 5 891033606 +325 527 4 891478140 +880 294 4 880166557 +699 70 4 878883038 +707 815 2 880060609 +484 423 5 891195746 +894 280 3 880993709 +554 1041 3 876369560 +110 585 2 886989473 +870 644 2 882123665 +338 382 5 879438762 +694 357 5 875726618 +163 202 3 891220137 +83 1049 3 880307588 +709 1 4 879847730 +316 97 5 880854142 +882 588 4 879867430 +357 508 5 878951616 +296 137 4 884196741 +484 468 5 891194886 +551 403 3 892782807 +545 195 4 879899158 +894 16 3 880993614 +742 591 4 881335461 +919 297 4 875288749 +473 150 5 878157329 +276 300 4 874786338 +786 95 5 882843397 +549 405 4 881672556 +468 9 5 875280041 +385 522 4 879924244 +347 1291 1 881653340 +892 276 4 886608559 +900 1298 2 877833923 +774 452 1 888557805 +770 937 4 876598016 +624 1114 4 879792557 +655 69 3 887476943 +13 904 1 892015178 +517 131 3 892659922 +279 969 3 875308799 +555 265 3 879975505 +916 156 5 880844016 +871 276 5 888193136 +717 995 5 884642132 +737 357 5 884314944 +924 64 4 886327778 +776 132 3 891629157 +868 762 4 877109535 +933 97 2 874854161 +664 97 3 876525363 +943 219 4 888639575 +311 170 5 884364999 +269 124 5 891446165 +833 344 4 888536031 +758 1283 4 880672876 +438 282 5 879868264 +397 492 4 885349955 +376 100 4 879454598 +318 393 5 884497449 +445 458 2 891200272 +757 431 4 888466584 +896 692 4 887159173 +150 14 4 878746889 +806 518 3 882388231 +748 96 5 879454662 +719 735 5 888454612 +864 673 3 888890273 +148 194 5 877015066 +542 132 3 886532620 +828 900 2 891035438 +151 836 4 879524514 +770 924 5 875971902 +151 190 4 879528673 +102 154 3 888803708 +85 1166 4 879455021 +294 342 3 889241466 +31 192 4 881548054 +916 679 3 880845690 +908 318 5 879722717 +425 405 2 878738643 +787 751 4 888979235 +402 410 1 876266985 +904 724 4 879735616 +932 431 3 891250944 +883 582 3 891693387 +249 147 5 879640343 +523 949 5 883700792 +168 1051 4 884288222 +906 285 5 879434846 +18 952 2 880130582 +445 1 3 891199749 +197 306 2 891409160 +669 56 2 891260497 +851 475 4 875731674 +916 461 4 880844087 +270 283 5 876954456 +655 649 3 888685989 +618 382 2 891307540 +711 715 4 879994581 +360 144 2 880355527 +868 727 2 877110277 +853 261 3 879365360 +896 647 3 887159502 +522 514 2 876960956 +398 1 5 875652927 +159 288 3 884026901 +276 1413 1 874977513 +193 282 5 889124965 +778 629 2 890802784 +807 423 5 892528470 +902 1016 2 879464783 +838 238 4 887067359 +661 255 3 876037088 +574 750 3 891278962 +44 307 4 878340940 +527 526 5 879456312 +174 88 5 886513752 +868 211 3 877107730 +682 1 4 888523054 +637 508 2 882903301 +863 1296 3 889289617 +889 646 3 880177970 +748 199 4 879455454 +497 182 4 879310705 +907 288 5 880158476 +279 901 4 883893835 +403 1199 2 879790506 +853 307 1 879364744 +899 125 3 884120185 +897 609 5 879991105 +89 402 4 879460347 +788 696 3 880871173 +829 313 4 891204191 +582 118 2 882962523 +865 926 1 880144405 +864 550 4 888889389 +599 294 4 880951113 +429 409 2 882386751 +764 216 4 876245520 +551 926 2 892785300 +396 406 2 884646468 +932 64 2 891250059 +733 291 2 879536608 +416 79 5 893213405 +822 206 3 891036851 +870 655 4 875050865 +590 124 5 879438735 +577 1046 4 880475226 +731 591 1 886184577 +655 305 4 887523909 +412 208 4 879717621 +225 98 5 879539672 +694 183 5 875727061 +932 151 3 891251225 +895 1 4 879437950 +790 755 3 885157928 +716 517 5 879797221 +634 408 3 875728783 +543 947 4 877545605 +521 42 5 884478721 +916 284 2 880843666 +892 705 4 886607912 +864 801 3 888892667 +382 286 2 875945173 +889 209 2 880178019 +749 47 4 878848098 +938 276 3 891356572 +488 705 4 891294473 +832 260 3 888259404 +59 1114 5 888203415 +279 779 3 878262194 +926 237 3 888351813 +852 926 3 891036902 +682 1012 4 888518747 +458 823 3 886395119 +594 515 5 874781050 +747 1 5 888639138 +905 458 4 884984382 +455 259 2 884027220 +804 435 3 879444488 +821 98 5 874793847 +661 145 1 876035968 +749 845 3 878848189 +927 94 2 879198972 +668 896 4 882818549 +777 245 5 875979241 +660 154 4 891200534 +611 306 5 891636152 +810 289 5 879895403 +782 332 4 891498139 +455 164 4 879110844 +903 147 3 891031178 +919 200 4 875373294 +894 330 3 880415951 +776 217 4 892920351 +716 13 2 879793376 +405 196 1 885546112 +883 531 3 891693497 +181 1287 1 878963380 +280 233 4 891702049 +581 922 5 879642333 +923 411 4 880387664 +872 893 4 888478902 +885 161 4 885715827 +291 573 4 874834944 +785 174 5 879438957 +749 443 4 878847954 +938 289 1 891356282 +89 107 5 879441780 +899 117 4 884119830 +862 177 4 879305016 +747 58 3 888639594 +580 257 5 884125243 +122 28 4 879270084 +449 593 4 879959101 +640 689 4 886353852 +643 721 2 892502531 +806 252 1 882386110 +572 284 3 879449840 +344 302 5 884814359 +608 92 3 880408150 +940 215 2 885921451 +632 134 5 879457217 +899 180 3 884121308 +294 405 4 877819761 +698 86 2 886367508 +782 271 2 891498213 +666 960 4 880567810 +588 91 5 890026656 +891 740 5 891639497 +417 302 3 879645999 +160 127 5 876770168 +293 127 5 888904614 +802 333 4 875986155 +486 252 3 879875316 +699 764 3 886568162 +533 8 3 879191938 +911 420 4 892840950 +760 98 3 875667717 +804 294 5 879441099 +532 916 3 893115293 +737 100 5 884314664 +148 127 1 877399351 +506 686 3 889874717 +57 121 4 883697432 +732 269 5 882589593 +643 655 4 891448176 +708 1079 1 892719385 +684 409 3 878760614 +912 501 4 875966756 +541 1412 1 883874834 +886 217 2 876032776 +734 50 4 891022627 +932 606 4 891250169 +922 596 4 891448833 +892 188 5 886608185 +715 106 2 875962140 +347 427 4 881654004 +501 245 3 883346844 +933 1037 1 874938620 +889 513 4 880178748 +617 498 3 883788955 +782 342 2 891498322 +115 508 5 881170438 +529 875 4 882535714 +421 427 4 892241735 +875 1103 5 876465144 +936 845 4 886833006 +919 689 2 885059506 +644 255 4 889077513 +537 192 4 886031473 +346 693 4 874950937 +92 65 4 875653960 +798 929 3 875638090 +774 189 2 888557987 +58 238 5 884305185 +804 132 4 879445305 +815 214 5 878693497 +916 704 3 880845177 +690 274 3 881177721 +846 318 5 883947777 +497 584 4 879363611 +868 385 2 877103834 +618 15 3 891308391 +488 71 3 891294606 +621 38 3 874964495 +627 232 3 879531302 +561 49 2 885809269 +940 285 4 885921846 +927 91 4 879196955 +524 318 4 884635287 +788 357 4 880869687 +883 421 5 891696689 +883 952 3 891916924 +429 1018 3 882386051 +804 1060 3 879443918 +747 514 4 888639823 +542 240 3 886533142 +749 50 5 878846978 +916 215 3 880844552 +110 947 3 886988574 +165 223 4 879525894 +852 290 4 891036817 +894 166 4 882404306 +894 750 4 883518875 +902 879 4 879463485 +270 265 4 876956137 +766 664 2 891309589 +590 676 4 879439060 +10 9 4 877889005 +75 473 3 884050733 +933 222 1 874854783 +293 509 3 888905948 +201 237 4 884140307 +660 89 3 891199965 +893 96 4 874830314 +497 763 3 879309780 +926 269 5 888636082 +221 931 3 875245100 +805 185 5 881695196 +854 111 3 882812906 +226 179 4 883888853 +321 478 4 879439926 +721 161 5 877138816 +654 405 4 887863866 +537 25 2 886030199 +269 515 4 891446132 +109 180 3 880581127 +657 258 2 884238559 +936 312 3 886831853 +693 210 3 875484044 +622 474 3 882669509 +928 328 3 880937258 +643 451 2 891449301 +655 692 3 887523453 +244 650 3 880607231 +393 693 3 887746883 +894 905 3 887044109 +892 162 4 886609390 +806 100 4 882385063 +669 475 3 892549336 +938 293 3 891356501 +943 796 3 888640311 +541 258 4 883864123 +151 559 2 879543075 +450 1490 3 882396929 +566 462 4 881650090 +927 28 4 879183511 +541 468 4 883865007 +708 762 5 877325838 +928 9 5 880937163 +535 7 5 879618776 +881 566 4 876538796 +870 943 2 879714310 +707 505 4 886286311 +717 591 4 884642297 +847 685 2 878938922 +892 1444 3 886610267 +820 895 2 887955046 +334 47 4 891547171 +209 276 2 883417796 +495 1039 5 888635180 +786 1 4 882841828 +318 340 4 884470115 +465 408 5 883530391 +552 281 3 879222306 +867 294 3 880077831 +936 1226 3 886833148 +871 904 3 888192858 +903 405 4 891031678 +901 447 3 877132015 +934 419 4 891192849 +862 208 2 879304282 +59 273 2 888203129 +886 50 5 876031501 +912 427 5 875965830 +798 924 3 875296148 +892 131 4 886610451 +339 212 4 891035215 +909 224 5 891920089 +897 174 5 879990587 +593 58 4 875671579 +354 319 3 891180399 +64 184 4 889739243 +889 181 4 880177131 +798 443 3 876249370 +901 15 5 877130439 +830 834 1 891899475 +773 895 2 888538417 +528 410 4 886813104 +271 169 5 885848475 +346 151 4 874949244 +838 993 3 887064231 +698 134 3 886366558 +238 151 2 883576398 +474 31 4 887926573 +642 73 4 885605735 +870 11 4 875679992 +643 39 4 891447747 +887 98 3 881379345 +846 40 2 883950253 +846 98 4 883947819 +503 692 3 880383467 +898 302 4 888294567 +916 557 4 880844527 +896 751 4 887235605 +918 747 3 891988705 +664 660 3 876525718 +935 120 3 884472942 +766 498 4 891309913 +806 170 5 882387520 +907 278 5 880159016 +588 265 5 890025621 +805 128 5 881694798 +931 546 3 891036849 +554 181 4 876550100 +913 28 3 881369039 +820 751 1 887955180 +896 176 5 887235690 +306 741 1 876504286 +533 265 3 879191563 +939 237 5 880261056 +782 351 3 891498139 +738 135 5 892844111 +790 1077 3 885156619 +875 22 3 876465072 +83 245 2 891181703 +870 508 3 881001249 +787 268 4 888979007 +574 358 2 891279520 +303 627 3 879484733 +815 526 4 878696093 +621 384 3 874963081 +43 591 5 875975656 +43 123 1 875975520 +800 1 4 887646283 +847 120 1 878939349 +880 3 1 880175023 +518 405 5 876823926 +655 872 3 888685879 +712 1480 4 874957161 +25 176 4 885852862 +886 11 5 876031365 +890 157 4 882916239 +694 188 5 875727715 +881 732 5 876538465 +496 660 3 876067108 +749 444 2 878850632 +388 53 5 886441248 +704 340 3 891396636 +781 179 5 879634017 +682 71 5 888523135 +451 876 4 879012431 +474 56 5 887924083 +422 267 4 875655986 +920 272 3 884219701 +707 52 3 886287268 +741 151 3 891458539 +715 143 3 875963946 +870 4 2 879270213 +619 79 5 885953992 +648 281 3 884365970 +933 96 2 874855020 +746 228 4 885075243 +872 1284 3 888479434 +525 106 2 881086938 +691 496 5 875543025 +140 303 5 879013684 +327 498 4 887819860 +32 408 3 883717684 +892 208 4 886609029 +840 480 5 891208647 +98 194 5 880498898 +518 410 3 876823541 +798 202 2 875639095 +814 5 3 885411030 +577 181 5 880474612 +869 1047 2 884492571 +843 132 3 879446186 +472 420 3 875982149 +399 1542 2 882348592 +924 471 4 884371635 +474 124 5 887915269 +892 157 5 886609029 +939 471 5 880261254 +862 485 5 879304410 +495 573 4 888636928 +405 958 1 885549590 +749 712 3 878849375 +807 204 4 892528954 +721 242 3 877137597 +868 172 5 877107847 +854 290 1 882813179 +839 1381 3 875752456 +902 187 3 879465834 +864 418 3 888887247 +862 205 4 879304282 +766 428 5 891309622 +603 56 4 891957053 +789 124 4 880332089 +826 260 3 885690022 +18 967 3 880131901 +907 815 5 880158913 +450 654 4 882373928 +665 378 3 884294237 +854 528 4 882813623 +378 441 3 880333995 +880 110 3 880175128 +532 425 4 888634801 +851 553 4 875731225 +633 159 4 875325093 +653 135 5 878866755 +348 596 4 886523456 +749 205 4 878847804 +934 786 1 891194089 +806 875 3 882384802 +524 481 4 884634785 +860 732 4 885991129 +721 263 3 877137598 +618 531 4 891309886 +903 544 2 891031470 +737 22 4 884314993 +752 268 2 891208036 +897 523 5 879991186 +56 575 3 892911469 +865 743 1 880144504 +886 2 4 876033368 +781 210 4 879634295 +849 625 5 879695420 +606 576 3 880927750 +303 939 3 879467739 +870 435 3 880584549 +13 446 1 882397039 +747 124 5 888639138 +204 333 1 892391748 +925 558 1 884718099 +878 155 3 880869418 +880 5 3 880241379 +916 356 3 880845722 +188 484 5 875072392 +846 101 4 883949336 +389 133 5 880086888 +879 596 2 887761380 +840 432 5 891209342 +626 680 1 878771476 +804 233 4 879445815 +663 240 3 889493027 +145 769 2 877343280 +818 313 4 891870173 +574 328 3 891279174 +648 456 2 884367180 +806 169 5 882387756 +666 265 3 880139274 +794 100 5 891035063 +303 1086 1 879468021 +933 441 2 874938833 +519 887 5 883250102 +867 172 5 880078769 +889 550 3 880181434 +938 993 5 891356413 +532 990 3 875511963 +487 313 3 883439795 +659 216 4 891045892 +943 739 4 888639929 +416 153 4 886317272 +864 151 5 888889466 +932 416 3 891250498 +734 294 1 891025891 +874 275 4 888632448 +903 1381 4 891031864 +303 363 1 879485134 +921 25 3 879379736 +788 157 5 880869396 +634 1028 3 875729456 +916 148 2 880843892 +892 631 4 886609726 +401 405 2 891032453 +10 198 3 877889005 +689 258 5 876674954 +5 174 5 875636130 +891 978 4 883489282 +921 143 5 879381257 +23 227 3 874787738 +848 216 5 887040159 +739 50 4 886958895 +869 282 3 884490987 +747 510 5 888639890 +913 318 4 880794731 +835 588 3 891033857 +723 9 3 880498912 +935 685 4 884472310 +537 675 3 886031860 +694 705 5 875728048 +937 294 1 876769480 +707 864 4 880060262 +899 200 4 884122674 +561 611 5 885807547 +826 748 4 885689918 +773 232 3 888540146 +749 823 3 878850060 +806 90 4 882390164 +884 463 5 876859070 +707 708 3 886286170 +535 1170 3 879618019 +383 200 5 891193181 +903 651 5 891032793 +887 274 1 881378478 +484 210 5 891194743 +715 778 2 875965171 +879 111 4 887761865 +710 79 4 882064283 +711 48 4 879993053 +669 479 5 891260806 +684 248 3 878576473 +407 7 4 893253637 +889 8 3 880179757 +619 578 4 885954215 +485 752 3 891040967 +393 613 4 887745937 +853 333 4 879364669 +887 1063 1 881380404 +838 313 5 887060659 +447 770 3 878856601 +527 659 4 879455617 +606 97 5 880925453 +630 815 3 885667229 +806 209 3 882387837 +867 748 4 880077951 +693 1136 3 883975358 +648 318 3 884368371 +875 964 4 876465335 +749 636 4 878849929 +490 109 5 875428765 +441 282 4 891035528 +851 1013 2 891961856 +883 234 4 891695666 +102 7 2 888801407 +896 96 5 887158635 +935 117 4 884472229 +358 1005 4 891269723 +874 286 4 888632057 +896 511 5 887158830 +828 531 4 891036972 +835 174 5 891033623 +593 223 5 888872089 +904 173 3 879735499 +764 281 3 876243854 +741 696 3 891455901 +930 410 3 879534973 +798 659 4 875914337 +211 215 5 879460294 +554 172 5 876550372 +659 657 5 891383965 +931 257 4 891036530 +221 144 4 875245427 +207 173 3 877878923 +936 251 4 886832134 +868 405 1 877109082 +102 172 3 888801232 +903 50 5 891031329 +653 411 2 878854906 +895 100 4 879437997 +379 621 4 880525815 +130 824 3 875801830 +929 276 2 879640184 +788 328 4 880867477 +577 176 5 880474311 +725 276 4 876106243 +851 1337 3 875730719 +889 77 3 880182359 +780 313 5 891362901 +828 346 4 891380167 +593 1 3 875659150 +363 181 5 891494783 +925 200 2 884717963 +862 120 3 879303953 +848 708 4 887046619 +563 566 4 880507042 +500 1010 4 883865483 +780 50 5 891363685 +823 134 5 878438232 +130 93 5 874953665 +130 121 5 876250746 +537 778 3 886031106 +655 913 4 891817521 +889 2 3 880182460 +865 1009 5 880144368 +851 979 3 875730244 +833 474 5 875122675 +394 380 4 881132876 +193 690 4 889123221 +621 809 4 880740136 +766 91 5 891310125 +650 479 5 891372339 +429 199 5 882386006 +847 596 3 878938982 +934 216 1 891191511 +788 556 2 880871128 +897 369 4 879993713 +936 287 4 886832419 +936 766 3 886832597 +449 120 1 879959573 +661 762 2 876037121 +721 874 3 877137447 +821 151 4 874792889 +764 596 3 876243046 +537 443 3 886031752 +618 628 2 891308019 +487 291 3 883445079 +113 975 5 875936424 +943 391 2 888640291 +864 685 4 888891900 +750 323 3 879445877 +279 64 1 875308510 +646 750 3 888528902 +654 370 2 887863914 +617 582 4 883789294 +913 690 3 880824288 +660 229 2 891406212 +421 498 4 892241344 +495 1091 4 888637503 +806 421 4 882388897 +676 538 4 892685437 +721 262 3 877137285 +913 209 2 881367150 +378 78 3 880056976 +880 476 3 880175444 +716 204 5 879795543 +276 1090 1 874795795 +13 225 2 882399156 +12 203 3 879959583 diff --git a/example_datasets/Movies/u.item b/example_datasets/Movies/u.item new file mode 100644 index 0000000..91bb56d --- /dev/null +++ b/example_datasets/Movies/u.item @@ -0,0 +1,1682 @@ +1|Toy Story (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)|0|0|0|1|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +2|GoldenEye (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?GoldenEye%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +3|Four Rooms (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Four%20Rooms%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +4|Get Shorty (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)|0|1|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +5|Copycat (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Copycat%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +6|Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)|01-Jan-1995||http://us.imdb.com/Title?Yao+a+yao+yao+dao+waipo+qiao+(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +7|Twelve Monkeys (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0 +8|Babe (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Babe%20(1995)|0|0|0|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +9|Dead Man Walking (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +10|Richard III (1995)|22-Jan-1996||http://us.imdb.com/M/title-exact?Richard%20III%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +11|Seven (Se7en) (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Se7en%20(1995)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +12|Usual Suspects, The (1995)|14-Aug-1995||http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +13|Mighty Aphrodite (1995)|30-Oct-1995||http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +14|Postino, Il (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +15|Mr. Holland's Opus (1995)|29-Jan-1996||http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +16|French Twist (Gazon maudit) (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Gazon%20maudit%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +17|From Dusk Till Dawn (1996)|05-Feb-1996||http://us.imdb.com/M/title-exact?From%20Dusk%20Till%20Dawn%20(1996)|0|1|0|0|0|1|1|0|0|0|0|1|0|0|0|0|1|0|0 +18|White Balloon, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Badkonake%20Sefid%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +19|Antonia's Line (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Antonia%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +20|Angels and Insects (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Angels%20and%20Insects%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +21|Muppet Treasure Island (1996)|16-Feb-1996||http://us.imdb.com/M/title-exact?Muppet%20Treasure%20Island%20(1996)|0|1|1|0|0|1|0|0|0|0|0|0|1|0|0|0|1|0|0 +22|Braveheart (1995)|16-Feb-1996||http://us.imdb.com/M/title-exact?Braveheart%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +23|Taxi Driver (1976)|16-Feb-1996||http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +24|Rumble in the Bronx (1995)|23-Feb-1996||http://us.imdb.com/M/title-exact?Hong%20Faan%20Kui%20(1995)|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +25|Birdcage, The (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +26|Brothers McMullen, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Brothers%20McMullen,%20The%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +27|Bad Boys (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Bad%20Boys%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +28|Apollo 13 (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +29|Batman Forever (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Batman%20Forever%20(1995)|0|1|1|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +30|Belle de jour (1967)|01-Jan-1967||http://us.imdb.com/M/title-exact?Belle%20de%20jour%20(1967)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +31|Crimson Tide (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Crimson%20Tide%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|1|0 +32|Crumb (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Crumb%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +33|Desperado (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Desperado%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +34|Doom Generation, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Doom%20Generation,%20The%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +35|Free Willy 2: The Adventure Home (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Free%20Willy%202:%20The%20Adventure%20Home%20(1995)|0|0|1|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +36|Mad Love (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mad%20Love%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +37|Nadja (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Nadja%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +38|Net, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Net,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +39|Strange Days (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Strange%20Days%20(1995)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0 +40|To Wong Foo, Thanks for Everything! Julie Newmar (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?To%20Wong%20Foo,%20Thanks%20for%20Everything!%20Julie%20Newmar%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +41|Billy Madison (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Billy%20Madison%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +42|Clerks (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Clerks%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +43|Disclosure (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Disclosure%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +44|Dolores Claiborne (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Dolores%20Claiborne%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +45|Eat Drink Man Woman (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Yinshi%20Nan%20Nu%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +46|Exotica (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Exotica%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +47|Ed Wood (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Ed%20Wood%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +48|Hoop Dreams (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Hoop%20Dreams%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +49|I.Q. (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?I.Q.%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +50|Star Wars (1977)|01-Jan-1977||http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|1|0|1|0 +51|Legends of the Fall (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Legends%20of%20the%20Fall%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|1 +52|Madness of King George, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Madness%20of%20King%20George,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +53|Natural Born Killers (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Natural%20Born%20Killers%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +54|Outbreak (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Outbreak%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +55|Professional, The (1994)|01-Jan-1994||http://us.imdb.com/Title?L%E9on+(1994)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|1|0|1|0|0 +56|Pulp Fiction (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +57|Priest (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Priest%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +58|Quiz Show (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Quiz%20Show%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +59|Three Colors: Red (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Czerwony%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +60|Three Colors: Blue (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Niebieski%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +61|Three Colors: White (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Bialy%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +62|Stargate (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Stargate%20(1994)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +63|Santa Clause, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Santa%20Clause,%20The%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +64|Shawshank Redemption, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +65|What's Eating Gilbert Grape (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?What's%20Eating%20Gilbert%20Grape%20(1993)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +66|While You Were Sleeping (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?While%20You%20Were%20Sleeping%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +67|Ace Ventura: Pet Detective (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Ace%20Ventura:%20Pet%20Detective%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +68|Crow, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Crow,%20The%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +69|Forrest Gump (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|1|0 +70|Four Weddings and a Funeral (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +71|Lion King, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +72|Mask, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mask,%20The%20(1994)|0|0|0|0|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0 +73|Maverick (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Maverick%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +74|Faster Pussycat! Kill! Kill! (1965)|01-Jan-1965||http://us.imdb.com/M/title-exact?Faster%20Pussycat!%20Kill!%20Kill!%20(1965)|0|1|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +75|Brother Minister: The Assassination of Malcolm X (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Brother%20Minister:%20The%20Assassination%20of%20Malcolm%20X%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +76|Carlito's Way (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Carlito's%20Way%20(1993)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +77|Firm, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Firm,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +78|Free Willy (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Free%20Willy%20(1993)|0|0|1|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +79|Fugitive, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +80|Hot Shots! Part Deux (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Hot%20Shots!%20Part%20Deux%20(1993)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +81|Hudsucker Proxy, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Hudsucker%20Proxy,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +82|Jurassic Park (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +83|Much Ado About Nothing (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Much%20Ado%20About%20Nothing%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +84|Robert A. Heinlein's The Puppet Masters (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Robert%20A.%20Heinlein's%20The%20Puppet%20Masters%20(1994)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +85|Ref, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Ref,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +86|Remains of the Day, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Remains%20of%20the%20Day,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +87|Searching for Bobby Fischer (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Searching%20for%20Bobby%20Fischer%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +88|Sleepless in Seattle (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Sleepless%20in%20Seattle%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +89|Blade Runner (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0 +90|So I Married an Axe Murderer (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?So%20I%20Married%20an%20Axe%20Murderer%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|1|0|0 +91|Nightmare Before Christmas, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Nightmare%20Before%20Christmas,%20The%20(1993)|0|0|0|0|1|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +92|True Romance (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?True%20Romance%20(1993)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|0|0 +93|Welcome to the Dollhouse (1995)|24-May-1996||http://us.imdb.com/Title?Welcome+to+the+Dollhouse+(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +94|Home Alone (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +95|Aladdin (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Aladdin%20(1992)|0|0|0|1|1|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +96|Terminator 2: Judgment Day (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +97|Dances with Wolves (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1 +98|Silence of the Lambs, The (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +99|Snow White and the Seven Dwarfs (1937)|01-Jan-1937||http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +100|Fargo (1996)|14-Feb-1997||http://us.imdb.com/M/title-exact?Fargo%20(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +101|Heavy Metal (1981)|08-Mar-1981||http://us.imdb.com/M/title-exact?Heavy%20Metal%20(1981)|0|1|1|1|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +102|Aristocats, The (1970)|01-Jan-1970||http://us.imdb.com/M/title-exact?Aristocats,%20The%20(1970)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +103|All Dogs Go to Heaven 2 (1996)|29-Mar-1996||http://us.imdb.com/M/title-exact?All%20Dogs%20Go%20to%20Heaven%202%20(1996)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +104|Theodore Rex (1995)|29-Mar-1996||http://us.imdb.com/M/title-exact?Theodore%20Rex%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +105|Sgt. Bilko (1996)|29-Mar-1996||http://us.imdb.com/M/title-exact?Sgt.%20Bilko%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +106|Diabolique (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Diabolique%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +107|Moll Flanders (1996)|14-Jun-1996||http://us.imdb.com/M/title-exact?Moll%20Flanders%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +108|Kids in the Hall: Brain Candy (1996)|12-Apr-1996||http://us.imdb.com/M/title-exact?Kids%20in%20the%20Hall:%20Brain%20Candy%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +109|Mystery Science Theater 3000: The Movie (1996)|19-Apr-1996||http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +110|Operation Dumbo Drop (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Operation%20Dumbo%20Drop%20(1995)|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +111|Truth About Cats & Dogs, The (1996)|26-Apr-1996||http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +112|Flipper (1996)|10-May-1996||http://us.imdb.com/M/title-exact?Flipper%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +113|Horseman on the Roof, The (Hussard sur le toit, Le) (1995)|19-Apr-1996||http://us.imdb.com/M/title-exact?Hussard%20sur%20le%20toit,%20Le%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +114|Wallace & Gromit: The Best of Aardman Animation (1996)|05-Apr-1996||http://us.imdb.com/Title?Wallace+%26+Gromit%3A+The+Best+of+Aardman+Animation+(1996)|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +115|Haunted World of Edward D. Wood Jr., The (1995)|26-Apr-1996||http://us.imdb.com/Title?Haunted+World+of+Edward+D.+Wood+Jr.,+The+(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +116|Cold Comfort Farm (1995)|23-Apr-1996||http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +117|Rock, The (1996)|07-Jun-1996||http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +118|Twister (1996)|10-May-1996||http://us.imdb.com/M/title-exact?Twister%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +119|Maya Lin: A Strong Clear Vision (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Maya%20Lin:%20A%20Strong%20Clear%20Vision%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +120|Striptease (1996)|28-Jun-1996||http://us.imdb.com/M/title-exact?Striptease%20(1996)|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +121|Independence Day (ID4) (1996)|03-Jul-1996||http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0 +122|Cable Guy, The (1996)|14-Jun-1996||http://us.imdb.com/M/title-exact?Cable%20Guy,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +123|Frighteners, The (1996)|19-Jul-1996||http://us.imdb.com/M/title-exact?Frighteners,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +124|Lone Star (1996)|21-Jun-1996||http://us.imdb.com/M/title-exact?Lone%20Star%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +125|Phenomenon (1996)|29-Jun-1996||http://us.imdb.com/M/title-exact?Phenomenon%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +126|Spitfire Grill, The (1996)|06-Sep-1996||http://us.imdb.com/M/title-exact?Spitfire%20Grill,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +127|Godfather, The (1972)|01-Jan-1972||http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)|0|1|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +128|Supercop (1992)|26-Jul-1996||http://us.imdb.com/M/title-exact?Police%20Story%20III:%20Supercop%20(1992)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +129|Bound (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Bound%20(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|1|0|1|0|0 +130|Kansas City (1996)|16-Aug-1996||http://us.imdb.com/M/title-exact?Kansas%20City%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +131|Breakfast at Tiffany's (1961)|01-Jan-1961||http://us.imdb.com/M/title-exact?Breakfast%20at%20Tiffany's%20(1961)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +132|Wizard of Oz, The (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)|0|0|1|0|1|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +133|Gone with the Wind (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +134|Citizen Kane (1941)|01-Jan-1941||http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +135|2001: A Space Odyssey (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|1|1|0|0 +136|Mr. Smith Goes to Washington (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Mr.%20Smith%20Goes%20to%20Washington%20(1939)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +137|Big Night (1996)|20-Sep-1996||http://us.imdb.com/M/title-exact?Big%20Night%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +138|D3: The Mighty Ducks (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?D3:%20The%20Mighty%20Ducks%20(1996)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +139|Love Bug, The (1969)|01-Jan-1969||http://us.imdb.com/M/title-exact?Love%20Bug,%20The%20(1969)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +140|Homeward Bound: The Incredible Journey (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Homeward%20Bound:%20The%20Incredible%20Journey%20(1993)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +141|20,000 Leagues Under the Sea (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?20,000%20Leagues%20Under%20the%20Sea%20(1954)|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0|1|0|0|0 +142|Bedknobs and Broomsticks (1971)|01-Jan-1971||http://us.imdb.com/M/title-exact?Bedknobs%20and%20Broomsticks%20(1971)|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +143|Sound of Music, The (1965)|01-Jan-1965||http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +144|Die Hard (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +145|Lawnmower Man, The (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +146|Unhook the Stars (1996)|30-Oct-1996||http://us.imdb.com/M/title-exact?Unhook%20the%20Stars%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +147|Long Kiss Goodnight, The (1996)|05-Oct-1996||http://us.imdb.com/M/title-exact?Long%20Kiss%20Goodnight,%20The%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +148|Ghost and the Darkness, The (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Ghost%20and%20the%20Darkness,%20The%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +149|Jude (1996)|01-Nov-1996||http://us.imdb.com/M/title-exact?Jude%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +150|Swingers (1996)|18-Oct-1996||http://us.imdb.com/M/title-exact?Swingers%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +151|Willy Wonka and the Chocolate Factory (1971)|01-Jan-1971||http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)|0|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +152|Sleeper (1973)|01-Jan-1973||http://us.imdb.com/M/title-exact?Sleeper%20(1973)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +153|Fish Called Wanda, A (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +154|Monty Python's Life of Brian (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +155|Dirty Dancing (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Dirty%20Dancing%20(1987)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0|0 +156|Reservoir Dogs (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Reservoir%20Dogs%20(1992)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +157|Platoon (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Platoon%20(1986)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +158|Weekend at Bernie's (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Weekend%20at%20Bernie's%20(1989)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +159|Basic Instinct (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Basic%20Instinct%20(1992)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +160|Glengarry Glen Ross (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Glengarry%20Glen%20Ross%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +161|Top Gun (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +162|On Golden Pond (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?On%20Golden%20Pond%20(1981)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +163|Return of the Pink Panther, The (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Return%20of%20the%20Pink%20Panther,%20The%20(1974)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +164|Abyss, The (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +165|Jean de Florette (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Jean%20de%20Florette%20(1986)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +166|Manon of the Spring (Manon des sources) (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Manon%20des%20sources%20(1986)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +167|Private Benjamin (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Private%20Benjamin%20(1980)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +168|Monty Python and the Holy Grail (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +169|Wrong Trousers, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Wrong%20Trousers,%20The%20(1993)|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +170|Cinema Paradiso (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Nuovo%20cinema%20Paradiso%20(1988)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +171|Delicatessen (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Delicatessen%20(1991)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +172|Empire Strikes Back, The (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)|0|1|1|0|0|0|0|0|1|0|0|0|0|0|1|1|0|1|0 +173|Princess Bride, The (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)|0|1|1|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +174|Raiders of the Lost Ark (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +175|Brazil (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Brazil%20(1985)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +176|Aliens (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Aliens%20(1986)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|1|0 +177|Good, The Bad and The Ugly, The (1966)|01-Jan-1966||http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +178|12 Angry Men (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +179|Clockwork Orange, A (1971)|01-Jan-1971||http://us.imdb.com/M/title-exact?Clockwork%20Orange,%20A%20(1971)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +180|Apocalypse Now (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +181|Return of the Jedi (1983)|14-Mar-1997||http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|1|0|1|0 +182|GoodFellas (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?GoodFellas%20(1990)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +183|Alien (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Alien%20(1979)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|1|1|0|0 +184|Army of Darkness (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Army%20of%20Darkness%20(1993)|0|1|1|0|0|1|0|0|0|0|0|1|0|0|0|1|0|0|0 +185|Psycho (1960)|01-Jan-1960||http://us.imdb.com/M/title-exact?Psycho%20(1960)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|1|0|0 +186|Blues Brothers, The (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)|0|1|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +187|Godfather: Part II, The (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Godfather:%20Part%20II,%20The%20(1974)|0|1|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +188|Full Metal Jacket (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +189|Grand Day Out, A (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Grand%20Day%20Out,%20A%20(1992)|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +190|Henry V (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Henry%20V%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +191|Amadeus (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Amadeus%20(1984)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +192|Raging Bull (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Raging%20Bull%20(1980)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +193|Right Stuff, The (1983)|01-Jan-1983||http://us.imdb.com/M/title-exact?Right%20Stuff,%20The%20(1983)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +194|Sting, The (1973)|01-Jan-1973||http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +195|Terminator, The (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +196|Dead Poets Society (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +197|Graduate, The (1967)|01-Jan-1967||http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +198|Nikita (La Femme Nikita) (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Nikita%20(1990)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +199|Bridge on the River Kwai, The (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Bridge%20on%20the%20River%20Kwai,%20The%20(1957)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +200|Shining, The (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +201|Evil Dead II (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)|0|1|1|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +202|Groundhog Day (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +203|Unforgiven (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Unforgiven%20(1992)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +204|Back to the Future (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +205|Patton (1970)|01-Jan-1970||http://us.imdb.com/M/title-exact?Patton%20(1970)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +206|Akira (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Akira%20(1988)|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +207|Cyrano de Bergerac (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Cyrano%20de%20Bergerac%20(1990)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +208|Young Frankenstein (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +209|This Is Spinal Tap (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)|0|0|0|0|0|1|0|0|1|0|0|0|1|0|0|0|0|0|0 +210|Indiana Jones and the Last Crusade (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +211|M*A*S*H (1970)|01-Jan-1970||http://us.imdb.com/M/title-exact?MASH%20(1970)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +212|Unbearable Lightness of Being, The (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Unbearable%20Lightness%20of%20Being,%20The%20(1988)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +213|Room with a View, A (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Room%20with%20a%20View,%20A%20(1986)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +214|Pink Floyd - The Wall (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Pink%20Floyd%20-%20The%20Wall%20(1982)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|1|0 +215|Field of Dreams (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Field%20of%20Dreams%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +216|When Harry Met Sally... (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +217|Bram Stoker's Dracula (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Bram%20Stoker's%20Dracula%20(1992)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0 +218|Cape Fear (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Cape%20Fear%20(1991)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +219|Nightmare on Elm Street, A (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Nightmare%20on%20Elm%20Street,%20A%20(1984)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +220|Mirror Has Two Faces, The (1996)|15-Nov-1996||http://us.imdb.com/M/title-exact?Mirror%20Has%20Two%20Faces,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +221|Breaking the Waves (1996)|15-Nov-1996||http://us.imdb.com/M/title-exact?Breaking%20the%20Waves%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +222|Star Trek: First Contact (1996)|22-Nov-1996||http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +223|Sling Blade (1996)|22-Nov-1996||http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +224|Ridicule (1996)|27-Nov-1996||http://us.imdb.com/M/title-exact?Ridicule%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +225|101 Dalmatians (1996)|27-Nov-1996||http://us.imdb.com/M/title-exact?101%20Dalmatians%20(1996)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +226|Die Hard 2 (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Die%20Hard%202%20(1990)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +227|Star Trek VI: The Undiscovered Country (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +228|Star Trek: The Wrath of Khan (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +229|Star Trek III: The Search for Spock (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +230|Star Trek IV: The Voyage Home (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +231|Batman Returns (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Batman%20Returns%20(1992)|0|1|1|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +232|Young Guns (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Young%20Guns%20(1988)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +233|Under Siege (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Under%20Siege%20(1992)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +234|Jaws (1975)|01-Jan-1975||http://us.imdb.com/M/title-exact?Jaws%20(1975)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +235|Mars Attacks! (1996)|13-Dec-1996||http://us.imdb.com/M/title-exact?Mars%20Attacks!%20(1996)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|1|0 +236|Citizen Ruth (1996)|13-Dec-1996||http://us.imdb.com/M/title-exact?Citizen%20Ruth%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +237|Jerry Maguire (1996)|13-Dec-1996||http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +238|Raising Arizona (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +239|Sneakers (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Sneakers%20(1992)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|1|0|0|0 +240|Beavis and Butt-head Do America (1996)|20-Dec-1996||http://us.imdb.com/M/title-exact?Beavis%20and%20Butt-head%20Do%20America%20(1996)|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +241|Last of the Mohicans, The (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0 +242|Kolya (1996)|24-Jan-1997||http://us.imdb.com/M/title-exact?Kolya%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +243|Jungle2Jungle (1997)|07-Mar-1997||http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +244|Smilla's Sense of Snow (1997)|14-Mar-1997||http://us.imdb.com/M/title-exact?Smilla%27s%20Sense%20of%20Snow%20(1997)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +245|Devil's Own, The (1997)|26-Mar-1997||http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|1|0 +246|Chasing Amy (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Chasing+Amy+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +247|Turbo: A Power Rangers Movie (1997)|28-Mar-1997||http://us.imdb.com/M/title-exact?Turbo%3A%20A%20Power%20Rangers%20Movie%20%281997%29|0|1|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +248|Grosse Pointe Blank (1997)|11-Apr-1997||http://us.imdb.com/M/title-exact?Grosse%20Pointe%20Blank%20%281997%29|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +249|Austin Powers: International Man of Mystery (1997)|02-May-1997||http://us.imdb.com/M/title-exact?Austin%20Powers%3A%20International%20Man%20of%20Mystery%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +250|Fifth Element, The (1997)|09-May-1997||http://us.imdb.com/M/title-exact?Fifth%20Element%2C%20The%20%281997%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +251|Shall We Dance? (1996)|11-Jul-1997||http://us.imdb.com/M/title-exact?Shall%20we%20DANSU%3F%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +252|Lost World: Jurassic Park, The (1997)|23-May-1997||http://us.imdb.com/M/title-exact?Lost%20World%3A%20Jurassic%20Park%2C%20The%20%281997%29|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +253|Pillow Book, The (1995)|13-Jun-1997||http://us.imdb.com/M/title-exact?Pillow%20Book%2C%20The%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +254|Batman & Robin (1997)|20-Jun-1997||http://us.imdb.com/M/title-exact?Batman+%26+Robin+(1997)|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +255|My Best Friend's Wedding (1997)|20-Jun-1997||http://us.imdb.com/M/title-exact?My+Best+Friend%27s+Wedding+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +256|When the Cats Away (Chacun cherche son chat) (1996)|20-Jun-1997||http://us.imdb.com/M/title-exact?Chacun+cherche+son+chat+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +257|Men in Black (1997)|04-Jul-1997||http://us.imdb.com/M/title-exact?Men+in+Black+(1997)|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +258|Contact (1997)|11-Jul-1997||http://us.imdb.com/Title?Contact+(1997/I)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0 +259|George of the Jungle (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +260|Event Horizon (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Event+Horizon+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|1|1|0|0 +261|Air Bud (1997)|01-Aug-1997||http://us.imdb.com/M/title-exact?Air+Bud+(1997)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +262|In the Company of Men (1997)|01-Aug-1997||http://us.imdb.com/M/title-exact?In+the+Company+of+Men+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +263|Steel (1997)|15-Aug-1997||http://us.imdb.com/M/title-exact?Steel+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +264|Mimic (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?Mimic+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +265|Hunt for Red October, The (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Hunt+for+Red+October%2C+The+(1990)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +266|Kull the Conqueror (1997)|29-Aug-1997||http://us.imdb.com/M/title-exact?Kull+the+Conqueror+(1997)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +267|unknown||||1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +268|Chasing Amy (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Chasing+Amy+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +269|Full Monty, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +270|Gattaca (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Gattaca+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|1|0|0 +271|Starship Troopers (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0 +272|Good Will Hunting (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119217|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +273|Heat (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Heat%20(1995)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +274|Sabrina (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Sabrina%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +275|Sense and Sensibility (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +276|Leaving Las Vegas (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +277|Restoration (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Restoration%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +278|Bed of Roses (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Bed%20of%20Roses%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +279|Once Upon a Time... When We Were Colored (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Once%20Upon%20a%20Time... When%20We%20Were%20Colored%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +280|Up Close and Personal (1996)|01-Mar-1996||http://us.imdb.com/M/title-exact?Up%20Close%20and%20Personal%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +281|River Wild, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?River%20Wild,%20The%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +282|Time to Kill, A (1996)|13-Jul-1996||http://us.imdb.com/M/title-exact?Time%20to%20Kill,%20A%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +283|Emma (1996)|02-Aug-1996||http://us.imdb.com/M/title-exact?Emma%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +284|Tin Cup (1996)|16-Aug-1996||http://us.imdb.com/M/title-exact?Tin%20Cup%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +285|Secrets & Lies (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +286|English Patient, The (1996)|15-Nov-1996||http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +287|Marvin's Room (1996)|18-Dec-1996||http://us.imdb.com/M/title-exact?Marvin's%20Room%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +288|Scream (1996)|20-Dec-1996||http://us.imdb.com/M/title-exact?Scream%20(1996)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +289|Evita (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Evita%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +290|Fierce Creatures (1997)|10-Jan-1997||http://us.imdb.com/M/title-exact?Fierce%20Creatures%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +291|Absolute Power (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?Absolute%20Power%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +292|Rosewood (1997)|21-Feb-1997||http://us.imdb.com/M/title-exact?Rosewood%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +293|Donnie Brasco (1997)|28-Feb-1997||http://us.imdb.com/M/title-exact?Donnie%20Brasco%20(1997)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +294|Liar Liar (1997)|21-Mar-1997||http://us.imdb.com/Title?Liar+Liar+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +295|Breakdown (1997)|02-May-1997||http://us.imdb.com/M/title-exact?Breakdown%20%281997%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +296|Promesse, La (1996)|16-May-1997||http://us.imdb.com/M/title-exact?Promesse%2C%20La%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +297|Ulee's Gold (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Ulee%27s+Gold+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +298|Face/Off (1997)|27-Jun-1997||http://us.imdb.com/M/title-exact?Face/Off+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +299|Hoodlum (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?Hoodlum+(1997)|0|0|0|0|0|0|1|0|1|0|1|0|0|0|0|0|0|0|0 +300|Air Force One (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Air+Force+One+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +301|In & Out (1997)|19-Sep-1997||http://us.imdb.com/Title?In+%26+Out+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +302|L.A. Confidential (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)|0|0|0|0|0|0|1|0|0|0|1|0|0|1|0|0|1|0|0 +303|Ulee's Gold (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Ulee%27s+Gold+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +304|Fly Away Home (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Fly%20Away%20Home%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +305|Ice Storm, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Ice+Storm%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +306|Mrs. Brown (Her Majesty, Mrs. Brown) (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Her+Majesty%2C+Mrs%2E+Brown+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +307|Devil's Advocate, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)|0|0|0|0|0|0|1|0|0|0|0|1|0|1|0|0|1|0|0 +308|FairyTale: A True Story (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Fairytale:+A+True+Story+(1997)|0|0|0|0|1|0|0|0|1|1|0|0|0|0|0|0|0|0|0 +309|Deceiver (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Liar+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +310|Rainmaker, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Rainmaker,+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +311|Wings of the Dove, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Wings+of+the+Dove%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|1|0|0 +312|Midnight in the Garden of Good and Evil (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Midnight+in+the+Garden+of+Good+and+Evil+(1997)|0|0|0|0|0|1|1|0|1|0|0|0|0|1|0|0|0|0|0 +313|Titanic (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120338|0|1|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +314|3 Ninjas: High Noon At Mega Mountain (1998)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-118539|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +315|Apt Pupil (1998)|23-Oct-1998||http://us.imdb.com/Title?Apt+Pupil+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +316|As Good As It Gets (1997)|23-Dec-1997||http://us.imdb.com/Title?As+Good+As+It+Gets+(1997)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +317|In the Name of the Father (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?In%20the%20Name%20of%20the%20Father%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +318|Schindler's List (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +319|Everyone Says I Love You (1996)|06-Dec-1996||http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +320|Paradise Lost: The Child Murders at Robin Hood Hills (1996)|06-Dec-1996||http://us.imdb.com/M/title-exact?Paradise%20Lost%3a%20The%20Child%20Murders%20at%20Robin%20Hood%20Hills%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +321|Mother (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Mother%20(1996/I)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +322|Murder at 1600 (1997)|18-Apr-1997||http://us.imdb.com/M/title-exact?Murder%20at%201600%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +323|Dante's Peak (1997)|07-Feb-1997||http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +324|Lost Highway (1997)|21-Feb-1997||http://us.imdb.com/Title?Lost+Highway+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0 +325|Crash (1996)|21-Mar-1997||http://us.imdb.com/M/title-exact?Crash%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +326|G.I. Jane (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?G%2EI%2E+Jane+(1997)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +327|Cop Land (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Cop+Land+(1997)|0|0|0|0|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0 +328|Conspiracy Theory (1997)|08-Aug-1997||http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|1|1|0|1|0|0 +329|Desperate Measures (1998)|30-Jan-1998||http://us.imdb.com/Title?Desperate+Measures+(1998)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +330|187 (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?187+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +331|Edge, The (1997)|26-Sep-1997||http://us.imdb.com/M/title-exact?Edge%2C+The+(1997/I)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +332|Kiss the Girls (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Kiss+the+Girls+(1997)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +333|Game, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Game%2C+The+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +334|U Turn (1997)|01-Jan-1997||http://us.imdb.com/Title?U+Turn+(1997)|0|1|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0 +335|How to Be a Player (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?How+to+Be+a+Player+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +336|Playing God (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Playing+God+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +337|House of Yes, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?House+of+Yes,+The+(1997)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|1|0|0 +338|Bean (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Bean+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +339|Mad City (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Mad+City+(1997)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +340|Boogie Nights (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Boogie+Nights+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +341|Critical Care (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Critical+Care+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +342|Man Who Knew Too Little, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Man+Who+Knew+Too+Little%2C+The+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +343|Alien: Resurrection (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Alien%3A+Resurrection+(1997)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +344|Apostle, The (1997)|18-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-118632|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +345|Deconstructing Harry (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-118954|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +346|Jackie Brown (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119396|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +347|Wag the Dog (1997)|09-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120885|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +348|Desperate Measures (1998)|30-Jan-1998||http://us.imdb.com/Title?Desperate+Measures+(1998)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +349|Hard Rain (1998)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120696|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +350|Fallen (1998)|16-Jan-1998||http://us.imdb.com/Title?Fallen+(1998)|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +351|Prophecy II, The (1998)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-119959|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +352|Spice World (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120185|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +353|Deep Rising (1998)|30-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-118956|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +354|Wedding Singer, The (1998)|13-Feb-1998||http://us.imdb.com/M/title-exact?Wedding+Singer%2C+The+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +355|Sphere (1998)|13-Feb-1998||http://us.imdb.com/M/title-exact?Sphere+(1998)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +356|Client, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Client,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|1|0|0 +357|One Flew Over the Cuckoo's Nest (1975)|01-Jan-1975||http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +358|Spawn (1997)|01-Aug-1997||http://us.imdb.com/M/title-exact?Spawn+(1997/I)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +359|Assignment, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Assignment%2C+The+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +360|Wonderland (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Wonderland+(1997)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +361|Incognito (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Incognito+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +362|Blues Brothers 2000 (1998)|06-Feb-1998||http://us.imdb.com/M/title-exact?Blues+Brothers+2000+(1998)|0|1|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +363|Sudden Death (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Sudden%20Death%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +364|Ace Ventura: When Nature Calls (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Ace%20Ventura:%20When%20Nature%20Calls%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +365|Powder (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Powder%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +366|Dangerous Minds (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dangerous%20Minds%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +367|Clueless (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Clueless%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +368|Bio-Dome (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Bio-Dome%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +369|Black Sheep (1996)|02-Feb-1996||http://us.imdb.com/M/title-exact?Black%20Sheep%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +370|Mary Reilly (1996)|23-Feb-1996||http://us.imdb.com/M/title-exact?Mary%20Reilly%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +371|Bridges of Madison County, The (1995)|09-Feb-1996||http://us.imdb.com/M/title-exact?Bridges%20of%20Madison%20County,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +372|Jeffrey (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Jeffrey%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +373|Judge Dredd (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Judge%20Dredd%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +374|Mighty Morphin Power Rangers: The Movie (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mighty%20Morphin%20Power%20Rangers:%20The%20Movie%20(1995)|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +375|Showgirls (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Showgirls%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +376|Houseguest (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Houseguest%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +377|Heavyweights (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Heavyweights%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +378|Miracle on 34th Street (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Miracle%20on%2034th%20Street%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +379|Tales From the Crypt Presents: Demon Knight (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tales%20From%20the%20Crypt%20Presents:%20Demon%20Knight%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +380|Star Trek: Generations (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Star%20Trek:%20Generations%20(1994)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +381|Muriel's Wedding (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Muriel's%20Wedding%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +382|Adventures of Priscilla, Queen of the Desert, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Adventures%20of%20Priscilla,%20Queen%20of%20the%20Desert,%20The%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +383|Flintstones, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Flintstones,%20The%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +384|Naked Gun 33 1/3: The Final Insult (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Naked%20Gun%2033%201/3:%20The%20Final%20Insult%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +385|True Lies (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?True%20Lies%20(1994)|0|1|1|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +386|Addams Family Values (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Addams%20Family%20Values%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +387|Age of Innocence, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Age%20of%20Innocence,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +388|Beverly Hills Cop III (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Beverly%20Hills%20Cop%20III%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +389|Black Beauty (1994)|01-Jan-1994||http://us.imdb.com/Title?Black+Beauty+(1994/I)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +390|Fear of a Black Hat (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fear%20of%20a%20Black%20Hat%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +391|Last Action Hero (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Last%20Action%20Hero%20(1993)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +392|Man Without a Face, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Man%20Without%20a%20Face,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +393|Mrs. Doubtfire (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Mrs.%20Doubtfire%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +394|Radioland Murders (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Radioland%20Murders%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|1|0|0|0|0 +395|Robin Hood: Men in Tights (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Robin%20Hood:%20Men%20in%20Tights%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +396|Serial Mom (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Serial%20Mom%20(1994)|0|0|0|0|0|1|1|0|0|0|0|1|0|0|0|0|0|0|0 +397|Striking Distance (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Striking%20Distance%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +398|Super Mario Bros. (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Super%20Mario%20Bros.%20(1993)|0|1|1|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +399|Three Musketeers, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Three%20Musketeers,%20The%20(1993)|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +400|Little Rascals, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Little%20Rascals,%20The%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +401|Brady Bunch Movie, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Brady%20Bunch%20Movie,%20The%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +402|Ghost (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Ghost%20(1990)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|1|0|0 +403|Batman (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Batman%20(1989)|0|1|1|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +404|Pinocchio (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Pinocchio%20(1940)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +405|Mission: Impossible (1996)|22-May-1996||http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0 +406|Thinner (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Thinner%20(1996)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +407|Spy Hard (1996)|24-May-1996||http://us.imdb.com/M/title-exact?Spy%20Hard%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +408|Close Shave, A (1995)|28-Apr-1996||http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0 +409|Jack (1996)|07-Aug-1996||http://us.imdb.com/M/title-exact?Jack%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +410|Kingpin (1996)|12-Jul-1996||http://us.imdb.com/M/title-exact?Kingpin%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +411|Nutty Professor, The (1996)|28-Jun-1996||http://us.imdb.com/M/title-exact?Nutty%20Professor,%20The%20(1996)|0|0|0|0|0|1|0|0|0|1|0|0|0|0|1|1|0|0|0 +412|Very Brady Sequel, A (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Very%20Brady%20Sequel,%20A%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +413|Tales from the Crypt Presents: Bordello of Blood (1996)|19-Jul-1996||http://us.imdb.com/M/title-exact?Tales%20from%20the%20Crypt%20Presents:%20Bordello%20of%20Blood%20(1996)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +414|My Favorite Year (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?My%20Favorite%20Year%20(1982)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +415|Apple Dumpling Gang, The (1975)|01-Jan-1975||http://us.imdb.com/M/title-exact?Apple%20Dumpling%20Gang,%20The%20(1975)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +416|Old Yeller (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Old%20Yeller%20(1957)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +417|Parent Trap, The (1961)|01-Jan-1961||http://us.imdb.com/M/title-exact?Parent%20Trap,%20The%20(1961)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +418|Cinderella (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Cinderella%20(1950)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +419|Mary Poppins (1964)|01-Jan-1964||http://us.imdb.com/M/title-exact?Mary%20Poppins%20(1964)|0|0|0|0|1|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +420|Alice in Wonderland (1951)|01-Jan-1951||http://us.imdb.com/M/title-exact?Alice%20in%20Wonderland%20(1951)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +421|William Shakespeare's Romeo and Juliet (1996)|25-Oct-1996||http://us.imdb.com/Title?Romeo+%2B+Juliet+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +422|Aladdin and the King of Thieves (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Aladdin%20and%20the%20King%20of%20Thieves%20(1996)%20(V)|0|0|0|1|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +423|E.T. the Extra-Terrestrial (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29|0|0|0|0|1|0|0|0|1|1|0|0|0|0|0|1|0|0|0 +424|Children of the Corn: The Gathering (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Children%20of%20the%20Corn%3A%20The%20Gathering%20%281996%29|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +425|Bob Roberts (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Bob%20Roberts%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +426|Transformers: The Movie, The (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Transformers:%20The%20Movie,%20The%20(1986)|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|1|1|1|0 +427|To Kill a Mockingbird (1962)|01-Jan-1962||http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +428|Harold and Maude (1971)|01-Jan-1971||http://us.imdb.com/M/title-exact?Harold%20and%20Maude%20(1971)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +429|Day the Earth Stood Still, The (1951)|01-Jan-1951||http://us.imdb.com/M/title-exact?Day%20the%20Earth%20Stood%20Still,%20The%20(1951)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0 +430|Duck Soup (1933)|01-Jan-1933||http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +431|Highlander (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Highlander%20(1986)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +432|Fantasia (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Fantasia%20(1940)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +433|Heathers (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Heathers%20(1989)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +434|Forbidden Planet (1956)|01-Jan-1956||http://us.imdb.com/M/title-exact?Forbidden%20Planet%20(1956)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +435|Butch Cassidy and the Sundance Kid (1969)|01-Jan-1969||http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +436|American Werewolf in London, An (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?American%20Werewolf%20in%20London,%20An%20(1981)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +437|Amityville 1992: It's About Time (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Amityville%201992:%20It's%20About%20Time%20(1992)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +438|Amityville 3-D (1983)|01-Jan-1983||http://us.imdb.com/M/title-exact?Amityville%203-D%20(1983)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +439|Amityville: A New Generation (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Amityville:%20A%20New%20Generation%20(1993)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +440|Amityville II: The Possession (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Amityville%20II:%20The%20Possession%20(1982)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +441|Amityville Horror, The (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Amityville%20Horror,%20The%20(1979)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +442|Amityville Curse, The (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Amityville%20Curse,%20The%20(1990)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +443|Birds, The (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?Birds,%20The%20(1963)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +444|Blob, The (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Blob,%20The%20(1958)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +445|Body Snatcher, The (1945)|01-Jan-1945||http://us.imdb.com/M/title-exact?Body%20Snatcher,%20The%20(1945)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +446|Burnt Offerings (1976)|01-Jan-1976||http://us.imdb.com/M/title-exact?Burnt%20Offerings%20(1976)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +447|Carrie (1976)|01-Jan-1976||http://us.imdb.com/M/title-exact?Carrie%20(1976)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +448|Omen, The (1976)|01-Jan-1976||http://us.imdb.com/M/title-exact?Omen,%20The%20(1976)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +449|Star Trek: The Motion Picture (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Motion%20Picture%20(1979)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +450|Star Trek V: The Final Frontier (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Star%20Trek%20V:%20The%20Final%20Frontier%20(1989)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +451|Grease (1978)|01-Jan-1978||http://us.imdb.com/M/title-exact?Grease%20(1978)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +452|Jaws 2 (1978)|01-Jan-1978||http://us.imdb.com/M/title-exact?Jaws%202%20(1978)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +453|Jaws 3-D (1983)|01-Jan-1983||http://us.imdb.com/M/title-exact?Jaws%203-D%20(1983)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +454|Bastard Out of Carolina (1996)|15-Dec-1996||http://us.imdb.com/M/title-exact?Bastard%20Out%20of%20Carolina%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +455|Jackie Chan's First Strike (1996)|10-Jan-1997||http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +456|Beverly Hills Ninja (1997)|17-Jan-1997||http://us.imdb.com/M/title-exact?Beverly%20Hills%20Ninja%20(1997)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +457|Free Willy 3: The Rescue (1997)|08-Aug-1997||http://us.imdb.com/M/title-exact?Free+Willy+3%3A+The+Rescue+(1997)|0|0|1|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +458|Nixon (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Nixon%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +459|Cry, the Beloved Country (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Cry,%20the%20Beloved%20Country%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +460|Crossing Guard, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Crossing%20Guard,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +461|Smoke (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Smoke%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +462|Like Water For Chocolate (Como agua para chocolate) (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Como%20agua%20para%20chocolate%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +463|Secret of Roan Inish, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Secret%20of%20Roan%20Inish,%20The%20(1994)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +464|Vanya on 42nd Street (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Vanya%20on%2042nd%20Street%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +465|Jungle Book, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Jungle%20Book,%20The%20(1994)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +466|Red Rock West (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Red%20Rock%20West%20(1992)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +467|Bronx Tale, A (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Bronx%20Tale,%20A%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +468|Rudy (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Rudy%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +469|Short Cuts (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Short%20Cuts%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +470|Tombstone (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Tombstone%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +471|Courage Under Fire (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +472|Dragonheart (1996)|31-May-1996||http://us.imdb.com/M/title-exact?Dragonheart%20(1996)|0|1|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +473|James and the Giant Peach (1996)|12-Apr-1996||http://us.imdb.com/M/title-exact?James%20and%20the%20Giant%20Peach%20(1996)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +474|Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?Dr.%20Strangelove%20or:%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20the%20Bomb%20(1963)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0 +475|Trainspotting (1996)|19-Jul-1996||http://us.imdb.com/Title?Trainspotting+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +476|First Wives Club, The (1996)|14-Sep-1996||http://us.imdb.com/M/title-exact?First%20Wives%20Club,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +477|Matilda (1996)|02-Aug-1996||http://us.imdb.com/M/title-exact?Matilda%20(1996)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +478|Philadelphia Story, The (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Philadelphia%20Story,%20The%20(1940)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +479|Vertigo (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Vertigo%20(1958)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +480|North by Northwest (1959)|01-Jan-1959||http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0 +481|Apartment, The (1960)|01-Jan-1960||http://us.imdb.com/M/title-exact?Apartment,%20The%20(1960)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +482|Some Like It Hot (1959)|01-Jan-1959||http://us.imdb.com/M/title-exact?Some%20Like%20It%20Hot%20(1959)|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +483|Casablanca (1942)|01-Jan-1942||http://us.imdb.com/M/title-exact?Casablanca%20(1942)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +484|Maltese Falcon, The (1941)|01-Jan-1941||http://us.imdb.com/M/title-exact?Maltese%20Falcon,%20The%20(1941)|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0 +485|My Fair Lady (1964)|01-Jan-1964||http://us.imdb.com/M/title-exact?My%20Fair%20Lady%20(1964)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0|0 +486|Sabrina (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Sabrina%20(1954)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +487|Roman Holiday (1953)|01-Jan-1953||http://us.imdb.com/M/title-exact?Roman%20Holiday%20(1953)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +488|Sunset Blvd. (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Sunset%20Boulevard%20(1950)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0 +489|Notorious (1946)|01-Jan-1946||http://us.imdb.com/M/title-exact?Notorious%20(1946)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|1|0|0 +490|To Catch a Thief (1955)|01-Jan-1955||http://us.imdb.com/M/title-exact?To%20Catch%20a%20Thief%20(1955)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|1|0|0 +491|Adventures of Robin Hood, The (1938)|01-Jan-1938||http://us.imdb.com/M/title-exact?Adventures%20of%20Robin%20Hood,%20The%20(1938)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +492|East of Eden (1955)|01-Jan-1955||http://us.imdb.com/M/title-exact?East%20of%20Eden%20(1955)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +493|Thin Man, The (1934)|01-Jan-1934||http://us.imdb.com/M/title-exact?Thin%20Man,%20The%20(1934)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0 +494|His Girl Friday (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?His%20Girl%20Friday%20(1940)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +495|Around the World in 80 Days (1956)|01-Jan-1956||http://us.imdb.com/M/title-exact?Around%20the%20World%20in%2080%20Days%20(1956)|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +496|It's a Wonderful Life (1946)|01-Jan-1946||http://us.imdb.com/M/title-exact?It's%20a%20Wonderful%20Life%20(1946)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +497|Bringing Up Baby (1938)|01-Jan-1938||http://us.imdb.com/M/title-exact?Bringing%20Up%20Baby%20(1938)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +498|African Queen, The (1951)|01-Jan-1951||http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0 +499|Cat on a Hot Tin Roof (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Cat%20on%20a%20Hot%20Tin%20Roof%20(1958)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +500|Fly Away Home (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Fly%20Away%20Home%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +501|Dumbo (1941)|01-Jan-1941||http://us.imdb.com/M/title-exact?Dumbo%20(1941)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +502|Bananas (1971)|01-Jan-1971||http://us.imdb.com/M/title-exact?Bananas%20(1971)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +503|Candidate, The (1972)|01-Jan-1972||http://us.imdb.com/M/title-exact?Candidate,%20The%20(1972)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +504|Bonnie and Clyde (1967)|01-Jan-1967||http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +505|Dial M for Murder (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Dial%20M%20for%20Murder%20(1954)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +506|Rebel Without a Cause (1955)|01-Jan-1955||http://us.imdb.com/M/title-exact?Rebel%20Without%20a%20Cause%20(1955)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +507|Streetcar Named Desire, A (1951)|01-Jan-1951||http://us.imdb.com/M/title-exact?Streetcar%20Named%20Desire,%20A%20(1951)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +508|People vs. Larry Flynt, The (1996)|27-Dec-1996||http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +509|My Left Foot (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?My%20Left%20Foot%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +510|Magnificent Seven, The (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1 +511|Lawrence of Arabia (1962)|01-Jan-1962||http://us.imdb.com/M/title-exact?Lawrence%20of%20Arabia%20(1962)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +512|Wings of Desire (1987)|01-Jan-1987||http://us.imdb.com/Title?Himmel+%FCber+Berlin,+Der+(1987)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +513|Third Man, The (1949)|01-Jan-1949||http://us.imdb.com/M/title-exact?Third%20Man,%20The%20(1949)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +514|Annie Hall (1977)|01-Jan-1977||http://us.imdb.com/M/title-exact?Annie%20Hall%20(1977)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +515|Boot, Das (1981)|04-Apr-1997||http://us.imdb.com/M/title-exact?Boot,%20Das%20(1981)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +516|Local Hero (1983)|01-Jan-1983||http://us.imdb.com/M/title-exact?Local%20Hero%20(1983)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +517|Manhattan (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Manhattan%20(1979)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +518|Miller's Crossing (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Miller's%20Crossing%20(1990)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +519|Treasure of the Sierra Madre, The (1948)|01-Jan-1948||http://us.imdb.com/M/title-exact?Treasure%20of%20the%20Sierra%20Madre,%20The%20(1948)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +520|Great Escape, The (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?Great%20Escape,%20The%20(1963)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +521|Deer Hunter, The (1978)|01-Jan-1978||http://us.imdb.com/M/title-exact?Deer%20Hunter,%20The%20(1978)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +522|Down by Law (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Down%20by%20Law%20(1986)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +523|Cool Hand Luke (1967)|01-Jan-1967||http://us.imdb.com/M/title-exact?Cool%20Hand%20Luke%20(1967)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +524|Great Dictator, The (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Great%20Dictator,%20The%20(1940)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +525|Big Sleep, The (1946)|01-Jan-1946||http://us.imdb.com/M/title-exact?Big%20Sleep,%20The%20(1946)|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0 +526|Ben-Hur (1959)|01-Jan-1959||http://us.imdb.com/M/title-exact?Ben-Hur%20(1959)|0|1|1|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +527|Gandhi (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Gandhi%20(1982)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +528|Killing Fields, The (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Killing%20Fields,%20The%20(1984)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +529|My Life as a Dog (Mitt liv som hund) (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Mitt%20liv%20som%20hund%20(1985)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +530|Man Who Would Be King, The (1975)|01-Jan-1975||http://us.imdb.com/M/title-exact?Man%20Who%20Would%20Be%20King,%20The%20(1975)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +531|Shine (1996)|22-Nov-1996||http://us.imdb.com/M/title-exact?Shine%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +532|Kama Sutra: A Tale of Love (1996)|07-Mar-1997||http://us.imdb.com/M/title-exact?Kama%20Sutra%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +533|Daytrippers, The (1996)|21-Mar-1997||http://us.imdb.com/M/title-exact?Daytrippers%2C%20The%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0 +534|Traveller (1997)|18-Apr-1997||http://us.imdb.com/M/title-exact?Traveller%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +535|Addicted to Love (1997)|23-May-1997||http://us.imdb.com/M/title-exact?Addicted%20to%20Love%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +536|Ponette (1996)|23-May-1997||http://us.imdb.com/M/title-exact?Ponette%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +537|My Own Private Idaho (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?My+Own+Private+Idaho+(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +538|Anastasia (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Anastasia+(1997)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +539|Mouse Hunt (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119715|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +540|Money Train (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Money%20Train%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +541|Mortal Kombat (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mortal%20Kombat%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +542|Pocahontas (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Pocahontas%20(1995)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|1|0|0|0|0 +543|Misrables, Les (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mis%E9rables%2C%20Les%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +544|Things to Do in Denver when You're Dead (1995)|02-Feb-1996||http://us.imdb.com/M/title-exact?Things%20to%20Do%20in%20Denver%20when%20You're%20Dead%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|1|0|0|0|0 +545|Vampire in Brooklyn (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Vampire%20in%20Brooklyn%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +546|Broken Arrow (1996)|09-Feb-1996||http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +547|Young Poisoner's Handbook, The (1995)|23-Feb-1996||http://us.imdb.com/M/title-exact?Young%20Poisoner's%20Handbook,%20The%20(1995)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +548|NeverEnding Story III, The (1994)|02-Feb-1996||http://us.imdb.com/M/title-exact?NeverEnding%20Story%20III,%20The%20(1994)|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +549|Rob Roy (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Rob%20Roy%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +550|Die Hard: With a Vengeance (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Die%20Hard:%20With%20a%20Vengeance%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +551|Lord of Illusions (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Lord%20of%20Illusions%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +552|Species (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Species%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +553|Walk in the Clouds, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Walk%20in%20the%20Clouds,%20A%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +554|Waterworld (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Waterworld%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +555|White Man's Burden (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?White%20Man's%20Burden%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +556|Wild Bill (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Wild%20Bill%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +557|Farinelli: il castrato (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Farinelli:%20il%20castrato%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +558|Heavenly Creatures (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Heavenly%20Creatures%20(1994)|0|0|0|0|0|0|0|0|1|1|0|0|0|0|0|0|1|0|0 +559|Interview with the Vampire (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Interview%20with%20the%20Vampire%20(1994)|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0 +560|Kid in King Arthur's Court, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Kid%20in%20King%20Arthur's%20Court,%20A%20(1995)|0|0|1|0|1|1|0|0|0|1|0|0|0|0|1|1|0|0|0 +561|Mary Shelley's Frankenstein (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mary%20Shelley's%20Frankenstein%20(1994)|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0 +562|Quick and the Dead, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Quick%20and%20the%20Dead,%20The%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +563|Stephen King's The Langoliers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?%22Langoliers,%20The%22%20(1995)%20(mini)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +564|Tales from the Hood (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tales%20from%20the%20Hood%20(1995)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +565|Village of the Damned (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Village%20of%20the%20Damned%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +566|Clear and Present Danger (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Clear%20and%20Present%20Danger%20(1994)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +567|Wes Craven's New Nightmare (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Wes%20Craven's%20New%20Nightmare%20(1994)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +568|Speed (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Speed%20(1994/I)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +569|Wolf (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Wolf%20(1994)|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0 +570|Wyatt Earp (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Wyatt%20Earp%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +571|Another Stakeout (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Another%20Stakeout%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0 +572|Blown Away (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Blown%20Away%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +573|Body Snatchers (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Body%20Snatchers%20(1993)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|1|0|0 +574|Boxing Helena (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Boxing%20Helena%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|1|0|0 +575|City Slickers II: The Legend of Curly's Gold (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?City%20Slickers%20II:%20The%20Legend%20of%20Curly's%20Gold%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +576|Cliffhanger (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Cliffhanger%20(1993)|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +577|Coneheads (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Coneheads%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +578|Demolition Man (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Demolition%20Man%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +579|Fatal Instinct (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fatal%20Instinct%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +580|Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Englishman%20Who%20Went%20Up%20a%20Hill,%20But%20Came%20Down%20a%20Mountain,%20The%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +581|Kalifornia (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Kalifornia%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +582|Piano, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Piano,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +583|Romeo Is Bleeding (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Romeo%20Is%20Bleeding%20(1993)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +584|Secret Garden, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Secret%20Garden,%20The%20(1993)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +585|Son in Law (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Son%20in%20Law%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +586|Terminal Velocity (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Terminal%20Velocity%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +587|Hour of the Pig, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Hour%20of%20the%20Pig,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +588|Beauty and the Beast (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +589|Wild Bunch, The (1969)|01-Jan-1969||http://us.imdb.com/M/title-exact?Wild%20Bunch,%20The%20(1969)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +590|Hellraiser: Bloodline (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?Hellraiser:%20Bloodline%20(1996)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +591|Primal Fear (1996)|30-Mar-1996||http://us.imdb.com/M/title-exact?Primal%20Fear%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +592|True Crime (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?True%20Crime%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +593|Stalingrad (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Stalingrad%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +594|Heavy (1995)|05-Jun-1996||http://us.imdb.com/M/title-exact?Heavy%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +595|Fan, The (1996)|16-Aug-1996||http://us.imdb.com/M/title-exact?Fan,%20The%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +596|Hunchback of Notre Dame, The (1996)|21-Jun-1996||http://us.imdb.com/M/title-exact?Hunchback%20of%20Notre%20Dame,%20The%20(1996)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +597|Eraser (1996)|21-Jun-1996||http://us.imdb.com/M/title-exact?Eraser%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +598|Big Squeeze, The (1996)|06-Sep-1996||http://us.imdb.com/M/title-exact?Big%20Squeeze,%20The%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +599|Police Story 4: Project S (Chao ji ji hua) (1993)|16-Aug-1996||http://us.imdb.com/M/title-exact?Project%20S%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +600|Daniel Defoe's Robinson Crusoe (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Robinson%20Crusoe%20(1996)|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +601|For Whom the Bell Tolls (1943)|01-Jan-1943||http://us.imdb.com/M/title-exact?For%20Whom%20the%20Bell%20Tolls%20(1943)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +602|American in Paris, An (1951)|01-Jan-1951||http://us.imdb.com/M/title-exact?American%20in%20Paris,%20An%20(1951)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0|0 +603|Rear Window (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +604|It Happened One Night (1934)|01-Jan-1934||http://us.imdb.com/M/title-exact?It%20Happened%20One%20Night%20(1934)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +605|Meet Me in St. Louis (1944)|01-Jan-1944||http://us.imdb.com/M/title-exact?Meet%20Me%20in%20St.%20Louis%20(1944)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +606|All About Eve (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?All%20About%20Eve%20(1950)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +607|Rebecca (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Rebecca%20(1940)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +608|Spellbound (1945)|01-Jan-1945||http://us.imdb.com/M/title-exact?Spellbound%20(1945)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|1|0|0 +609|Father of the Bride (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Father%20of%20the%20Bride%20(1950)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +610|Gigi (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Gigi%20(1958)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +611|Laura (1944)|01-Jan-1944||http://us.imdb.com/M/title-exact?Laura%20(1944)|0|0|0|0|0|0|1|0|0|0|1|0|0|1|0|0|0|0|0 +612|Lost Horizon (1937)|01-Jan-1937||http://us.imdb.com/M/title-exact?Lost%20Horizon%20(1937)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +613|My Man Godfrey (1936)|01-Jan-1936||http://us.imdb.com/M/title-exact?My%20Man%20Godfrey%20(1936)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +614|Giant (1956)|01-Jan-1956||http://us.imdb.com/M/title-exact?Giant%20(1956)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +615|39 Steps, The (1935)|01-Jan-1935||http://us.imdb.com/M/title-exact?39%20Steps,%20The%20(1935)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +616|Night of the Living Dead (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?Night%20of%20the%20Living%20Dead%20(1968)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +617|Blue Angel, The (Blaue Engel, Der) (1930)|01-Jan-1930||http://us.imdb.com/M/title-exact?Blaue%20Engel,%20Der%20(1930)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +618|Picnic (1955)|01-Jan-1955||http://us.imdb.com/M/title-exact?Picnic%20(1955)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +619|Extreme Measures (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Extreme%20Measures%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +620|Chamber, The (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Chamber,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +621|Davy Crockett, King of the Wild Frontier (1955)|01-Jan-1955||http://us.imdb.com/M/title-exact?Davy%20Crockett%2C%20King%20of%20the%20Wild%20Frontier%20%281955%29|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +622|Swiss Family Robinson (1960)|01-Jan-1960||http://us.imdb.com/M/title-exact?Swiss%20Family%20Robinson%20(1960)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +623|Angels in the Outfield (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Angels%20in%20the%20Outfield%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +624|Three Caballeros, The (1945)|01-Jan-1945||http://us.imdb.com/M/title-exact?Three%20Caballeros,%20The%20(1945)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +625|Sword in the Stone, The (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?Sword%20in%20the%20Stone,%20The%20(1963)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +626|So Dear to My Heart (1949)|01-Jan-1949||http://us.imdb.com/Title?So+Dear+to+My+Heart+(1949)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +627|Robin Hood: Prince of Thieves (1991)|01-Jan-1991||http://us.imdb.com/Title?Robin+Hood%3A+Prince+of+Thieves+(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +628|Sleepers (1996)|18-Oct-1996||http://us.imdb.com/M/title-exact?Sleepers%20(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +629|Victor/Victoria (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Victor/Victoria%20%281982%29|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +630|Great Race, The (1965)|01-Jan-1965||http://us.imdb.com/M/title-exact?Great%20Race,%20The%20(1965)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +631|Crying Game, The (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Crying%20Game,%20The%20(1992)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +632|Sophie's Choice (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Sophie's%20Choice%20(1982)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +633|Christmas Carol, A (1938)|01-Jan-1938||http://us.imdb.com/M/title-exact?Christmas%20Carol,%20A%20(1938)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +634|Microcosmos: Le peuple de l'herbe (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Microcosmos%3A%20Le%20peuple%20de%20l%27herbe%20%281996%29|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +635|Fog, The (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Fog,%20The%20(1980)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +636|Escape from New York (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Escape%20from%20New%20York%20(1981)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +637|Howling, The (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Howling,%20The%20(1981)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +638|Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Retour%20de%20Martin%20Guerre,%20Le%20(1982)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +639|Tin Drum, The (Blechtrommel, Die) (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Blechtrommel,%20Die%20(1979)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +640|Cook the Thief His Wife & Her Lover, The (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Cook%20the%20Thief%20His%20Wife%20&%20Her%20Lover,%20The%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +641|Paths of Glory (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Paths%20of%20Glory%20(1957)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +642|Grifters, The (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Grifters,%20The%20(1990)|0|0|0|0|0|0|1|0|1|0|1|0|0|0|0|0|0|0|0 +643|The Innocent (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Innocent,%20The%20(1994)%20(TV)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +644|Thin Blue Line, The (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Thin%20Blue%20Line,%20The%20(1988)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +645|Paris Is Burning (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Paris%20Is%20Burning%20(1990)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +646|Once Upon a Time in the West (1969)|01-Jan-1969||http://us.imdb.com/M/title-exact?C'era%20una%20volta%20il%20west%20(1969)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +647|Ran (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Ran%20(1985)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +648|Quiet Man, The (1952)|01-Jan-1952||http://us.imdb.com/M/title-exact?Quiet%20Man,%20The%20(1952)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +649|Once Upon a Time in America (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Once%20Upon%20a%20Time%20in%20America%20(1984)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +650|Seventh Seal, The (Sjunde inseglet, Det) (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Sjunde%20inseglet,%20Det%20(1957)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +651|Glory (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Glory%20(1989)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +652|Rosencrantz and Guildenstern Are Dead (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Rosencrantz%20and%20Guildenstern%20Are%20Dead%20(1990)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +653|Touch of Evil (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Touch%20of%20Evil%20(1958)|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|1|0|0 +654|Chinatown (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Chinatown%20(1974)|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0|1|0|0 +655|Stand by Me (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)|0|0|1|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +656|M (1931)|01-Jan-1931||http://us.imdb.com/M/title-exact?M%20(1931)|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|1|0|0 +657|Manchurian Candidate, The (1962)|01-Jan-1962||http://us.imdb.com/M/title-exact?Manchurian%20Candidate,%20The%20(1962)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0 +658|Pump Up the Volume (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Pump%20Up%20the%20Volume%20(1990)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +659|Arsenic and Old Lace (1944)|01-Jan-1944||http://us.imdb.com/M/title-exact?Arsenic%20and%20Old%20Lace%20(1944)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|1|0|0 +660|Fried Green Tomatoes (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Fried%20Green%20Tomatoes%20at%20the%20Whistle%20Stop%20Cafe%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +661|High Noon (1952)|01-Jan-1952||http://us.imdb.com/M/title-exact?High%20Noon%20(1952)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +662|Somewhere in Time (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Somewhere%20in%20Time%20(1980)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +663|Being There (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Being%20There%20(1979)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +664|Paris, Texas (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Paris,%20Texas%20(1984)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +665|Alien 3 (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Alien%203%20(1992)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|1|1|0|0 +666|Blood For Dracula (Andy Warhol's Dracula) (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Andy%20Warhol's%20Dracula%20(1974)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +667|Audrey Rose (1977)|01-Jan-1977||http://us.imdb.com/M/title-exact?Audrey%20Rose%20(1977)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +668|Blood Beach (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Blood%20Beach%20(1981)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +669|Body Parts (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Body%20Parts%20(1991)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +670|Body Snatchers (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Body%20Snatchers%20(1993)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|1|0|0 +671|Bride of Frankenstein (1935)|01-Jan-1935||http://us.imdb.com/M/title-exact?Bride%20of%20Frankenstein%20(1935)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +672|Candyman (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Candyman%20(1992)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +673|Cape Fear (1962)|01-Jan-1962||http://us.imdb.com/M/title-exact?Cape%20Fear%20(1962)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0 +674|Cat People (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Cat%20People%20(1982)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +675|Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)|01-Jan-1922||http://us.imdb.com/M/title-exact?Nosferatu,%20eine%20Symphonie%20des%20Grauens%20(1922)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +676|Crucible, The (1996)|27-Nov-1996||http://us.imdb.com/M/title-exact?Crucible,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +677|Fire on the Mountain (1996)|24-Jan-1997||http://us.imdb.com/M/title-exact?Fire%20on%20the%20Mountain%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +678|Volcano (1997)|25-Apr-1997||http://us.imdb.com/M/title-exact?Volcano%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +679|Conan the Barbarian (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Conan+the+Barbarian+(1981)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +680|Kull the Conqueror (1997)|29-Aug-1997||http://us.imdb.com/M/title-exact?Kull+the+Conqueror+(1997)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +681|Wishmaster (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Wishmaster+(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +682|I Know What You Did Last Summer (1997)|17-Oct-1997||http://us.imdb.com/M/title-exact?I+Know+What+You+Did+Last+Summer+(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|1|0|0 +683|Rocket Man (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Rocket+Man+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +684|In the Line of Fire (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Fire%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +685|Executive Decision (1996)|09-Mar-1996||http://us.imdb.com/M/title-exact?Executive%20Decision%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +686|Perfect World, A (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Perfect%20World,%20A%20(1993)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +687|McHale's Navy (1997)|18-Apr-1997||http://us.imdb.com/M/title-exact?McHale's%20Navy%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +688|Leave It to Beaver (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?Leave+It+To+Beaver+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +689|Jackal, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Jackal%2C+The+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +690|Seven Years in Tibet (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Seven+Years+in+Tibet+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +691|Dark City (1998)|09-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-118929|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|1|0|0 +692|American President, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +693|Casino (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Casino%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +694|Persuasion (1995)|25-Sep-1995||http://us.imdb.com/Title?Persuasion+(1995/I)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +695|Kicking and Screaming (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Kicking%20and%20Screaming%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +696|City Hall (1996)|16-Feb-1996||http://us.imdb.com/M/title-exact?City%20Hall%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +697|Basketball Diaries, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Basketball%20Diaries,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +698|Browning Version, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Browning%20Version,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +699|Little Women (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Little%20Women%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +700|Miami Rhapsody (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Miami%20Rhapsody%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +701|Wonderful, Horrible Life of Leni Riefenstahl, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Macht%20der%20Bilder:%20Leni%20Riefenstahl,%20Die%20(1993)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +702|Barcelona (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Barcelona%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +703|Widows' Peak (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Widows'%20Peak%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +704|House of the Spirits, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?House%20of%20the%20Spirits,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +705|Singin' in the Rain (1952)|01-Jan-1952||http://us.imdb.com/M/title-exact?Singin'%20in%20the%20Rain%20(1952)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0|0 +706|Bad Moon (1996)|01-Nov-1996||http://us.imdb.com/M/title-exact?Bad%20Moon%20(1996)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +707|Enchanted April (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Enchanted%20April%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +708|Sex, Lies, and Videotape (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?sex,%20lies,%20and%20videotape%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +709|Strictly Ballroom (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Strictly%20Ballroom%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +710|Better Off Dead... (1985)|01-Jan-1985||http://us.imdb.com/Title?Better+Off+Dead...+(1985)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +711|Substance of Fire, The (1996)|06-Dec-1996||http://us.imdb.com/M/title-exact?Substance%20of%20Fire,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +712|Tin Men (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Tin%20Men%20(1987)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +713|Othello (1995)|18-Dec-1995||http://us.imdb.com/M/title-exact?Othello%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +714|Carrington (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Carrington%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +715|To Die For (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?To%20Die%20For%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +716|Home for the Holidays (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Home%20for%20the%20Holidays%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +717|Juror, The (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Juror,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +718|In the Bleak Midwinter (1995)|23-Feb-1996||http://us.imdb.com/M/title-exact?In%20the%20Bleak%20Midwinter%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +719|Canadian Bacon (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Canadian%20Bacon%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +720|First Knight (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?First%20Knight%20(1995)|0|1|1|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +721|Mallrats (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mallrats%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +722|Nine Months (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Nine%20Months%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +723|Boys on the Side (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Boys%20on%20the%20Side%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +724|Circle of Friends (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Circle%20of%20Friends%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +725|Exit to Eden (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Exit%20to%20Eden%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +726|Fluke (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Fluke%20(1995)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +727|Immortal Beloved (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Immortal%20Beloved%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +728|Junior (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Junior%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +729|Nell (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Nell%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +730|Queen Margot (Reine Margot, La) (1994)|01-Jan-1996||http://us.imdb.com/Title?Reine+Margot,+La+(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +731|Corrina, Corrina (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Corrina,%20Corrina%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +732|Dave (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Dave%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +733|Go Fish (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Go%20Fish%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +734|Made in America (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Made%20in%20America%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +735|Philadelphia (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Philadelphia%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +736|Shadowlands (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Shadowlands%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +737|Sirens (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Sirens%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +738|Threesome (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Threesome%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +739|Pretty Woman (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Pretty%20Woman%20(1990)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +740|Jane Eyre (1996)|05-Apr-1996||http://us.imdb.com/M/title-exact?Jane%20Eyre%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +741|Last Supper, The (1995)|05-Apr-1996||http://us.imdb.com/M/title-exact?Last%20Supper,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +742|Ransom (1996)|08-Nov-1996||http://us.imdb.com/M/title-exact?Ransom%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +743|Crow: City of Angels, The (1996)|30-Aug-1996||http://us.imdb.com/M/title-exact?Crow%3A%20City%20of%20Angels%2C%20The%20%281996%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +744|Michael Collins (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Michael%20Collins%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +745|Ruling Class, The (1972)|01-Jan-1972||http://us.imdb.com/M/title-exact?Ruling%20Class,%20The%20(1972)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +746|Real Genius (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Real%20Genius%20(1985)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +747|Benny & Joon (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Benny%20&%20Joon%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +748|Saint, The (1997)|14-Mar-1997||http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +749|MatchMaker, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Matchmaker%2C+The+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +750|Amistad (1997)|18-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-118607|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +751|Tomorrow Never Dies (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120347|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +752|Replacement Killers, The (1998)|06-Feb-1998||http://us.imdb.com/M/title-exact?Replacement+Killers%2C+The+(1998)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +753|Burnt By the Sun (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Utomlyonnye%20Solntsem%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +754|Red Corner (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Red+Corner+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +755|Jumanji (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Jumanji%20(1995)|0|1|1|0|1|0|0|0|0|1|0|0|0|0|0|1|0|0|0 +756|Father of the Bride Part II (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Father%20of%20the%20Bride%20Part%20II%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +757|Across the Sea of Time (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Across%20The%20Sea%20of%20Time%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +758|Lawnmower Man 2: Beyond Cyberspace (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Lawnmower%20Man%202:%20Beyond%20Cyberspace%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +759|Fair Game (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Fair%20Game%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +760|Screamers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Screamers%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +761|Nick of Time (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Nick%20of%20Time%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +762|Beautiful Girls (1996)|09-Feb-1996||http://us.imdb.com/M/title-exact?Beautiful%20Girls%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +763|Happy Gilmore (1996)|16-Feb-1996||http://us.imdb.com/M/title-exact?Happy%20Gilmore%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +764|If Lucy Fell (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?If%20Lucy%20Fell%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +765|Boomerang (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Boomerang%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +766|Man of the Year (1995)|01-Mar-1996||http://us.imdb.com/M/title-exact?Man%20of%20the%20Year%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +767|Addiction, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Addiction,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +768|Casper (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Casper%20(1995)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +769|Congo (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Congo%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0 +770|Devil in a Blue Dress (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Devil%20in%20a%20Blue%20Dress%20(1995)|0|0|0|0|0|0|1|0|0|0|1|0|0|1|0|0|1|0|0 +771|Johnny Mnemonic (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Johnny%20Mnemonic%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +772|Kids (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Kids%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +773|Mute Witness (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mute%20Witness%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +774|Prophecy, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Prophecy,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +775|Something to Talk About (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Something%20to%20Talk%20About%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +776|Three Wishes (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Three%20Wishes%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +777|Castle Freak (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Castle%20Freak%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +778|Don Juan DeMarco (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Don%20Juan%20DeMarco%20and%20the%20Centerfold%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +779|Drop Zone (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Drop%20Zone%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +780|Dumb & Dumber (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Dumb%20&%20Dumber%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +781|French Kiss (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?French%20Kiss%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +782|Little Odessa (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Little%20Odessa%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +783|Milk Money (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Milk%20Money%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +784|Beyond Bedlam (1993)|01-Jan-1993||http://us.imdb.com/Title?Beyond+Bedlam+(1993)|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0 +785|Only You (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Only%20You%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +786|Perez Family, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Perez%20Family,%20The%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +787|Roommates (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Roommates%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +788|Relative Fear (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Relative%20Fear%20(1994)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +789|Swimming with Sharks (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Swimming%20with%20Sharks%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +790|Tommy Boy (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tommy%20Boy%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +791|Baby-Sitters Club, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Baby-Sitters%20Club,%20The%20(1995)|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +792|Bullets Over Broadway (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Bullets%20Over%20Broadway%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +793|Crooklyn (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Crooklyn%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +794|It Could Happen to You (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?It%20Could%20Happen%20to%20You%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +795|Richie Rich (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Richie%20Rich%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +796|Speechless (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Speechless%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +797|Timecop (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Timecop%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +798|Bad Company (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Bad%20Company%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +799|Boys Life (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Boys%20Life%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +800|In the Mouth of Madness (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?In%20the%20Mouth%20of%20Madness%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +801|Air Up There, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Air%20Up%20There,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +802|Hard Target (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Hard%20Target%20(1993)|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +803|Heaven & Earth (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Heaven%20&%20Earth%20(1993)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +804|Jimmy Hollywood (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Jimmy%20Hollywood%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +805|Manhattan Murder Mystery (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Manhattan%20Murder%20Mystery%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +806|Menace II Society (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Menace%20II%20Society%20(1993)|0|1|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +807|Poetic Justice (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Poetic%20Justice%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +808|Program, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Program,%20The%20(1993)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +809|Rising Sun (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Rising%20Sun%20(1993)|0|1|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +810|Shadow, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Shadow,%20The%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +811|Thirty-Two Short Films About Glenn Gould (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Thirty-Two%20Short%20Films%20About%20Glenn%20Gould%20(1993)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +812|Andre (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Andre%20(1994)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +813|Celluloid Closet, The (1995)|15-Mar-1996||http://us.imdb.com/M/title-exact?Celluloid%20Closet,%20The%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +814|Great Day in Harlem, A (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Great%20Day%20in%20Harlem,%20A%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +815|One Fine Day (1996)|30-Nov-1996||http://us.imdb.com/M/title-exact?One%20Fine%20Day%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +816|Candyman: Farewell to the Flesh (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Candyman:%20Farewell%20to%20the%20Flesh%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +817|Frisk (1995)|29-Mar-1996||http://us.imdb.com/M/title-exact?Frisk%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +818|Girl 6 (1996)|22-Mar-1996||http://us.imdb.com/M/title-exact?Girl%206%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +819|Eddie (1996)|31-May-1996||http://us.imdb.com/M/title-exact?Eddie%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +820|Space Jam (1996)|15-Nov-1996||http://us.imdb.com/M/title-exact?Space%20Jam%20(1996)|0|0|1|1|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0 +821|Mrs. Winterbourne (1996)|19-Apr-1996||http://us.imdb.com/M/title-exact?Mrs.%20Winterbourne%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +822|Faces (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?Faces%20(1968)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +823|Mulholland Falls (1996)|26-Apr-1996||http://us.imdb.com/M/title-exact?Mulholland%20Falls%20(1996)|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|1|0|0 +824|Great White Hype, The (1996)|03-May-1996||http://us.imdb.com/M/title-exact?Great%20White%20Hype,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +825|Arrival, The (1996)|31-May-1996||http://us.imdb.com/M/title-exact?Arrival,%20The%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +826|Phantom, The (1996)|07-Jun-1996||http://us.imdb.com/M/title-exact?Phantom,%20The%20(1996)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +827|Daylight (1996)|06-Dec-1996||http://us.imdb.com/M/title-exact?Daylight%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +828|Alaska (1996)|21-Aug-1996||http://us.imdb.com/M/title-exact?Alaska%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +829|Fled (1996)|19-Jul-1996||http://us.imdb.com/M/title-exact?Fled%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +830|Power 98 (1995)|17-May-1996||http://us.imdb.com/M/title-exact?Power%2098%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +831|Escape from L.A. (1996)|09-Aug-1996||http://us.imdb.com/M/title-exact?Escape%20from%20L.A.%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +832|Bogus (1996)|06-Sep-1996||http://us.imdb.com/M/title-exact?Bogus%20(1996)|0|0|0|0|1|0|0|0|1|1|0|0|0|0|0|0|0|0|0 +833|Bulletproof (1996)|06-Sep-1996||http://us.imdb.com/M/title-exact?Bulletproof%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +834|Halloween: The Curse of Michael Myers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Halloween:%20The%20Curse%20of%20Michael%20Myers%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +835|Gay Divorcee, The (1934)|01-Jan-1934||http://us.imdb.com/M/title-exact?Gay%20Divorcee%2C%20The%20%281934%29|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +836|Ninotchka (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Ninotchka%20(1939)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +837|Meet John Doe (1941)|01-Jan-1941||http://us.imdb.com/M/title-exact?Meet%20John%20Doe%20(1941)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +838|In the Line of Duty 2 (1987)|30-Aug-1996||http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Duty%202%20(1987)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +839|Loch Ness (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Loch%20Ness%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +840|Last Man Standing (1996)|20-Sep-1996||http://us.imdb.com/M/title-exact?Last%20Man%20Standing%20(1996/I)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1 +841|Glimmer Man, The (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Glimmer%20Man,%20The%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +842|Pollyanna (1960)|01-Jan-1960||http://us.imdb.com/M/title-exact?Pollyanna%20(1960)|0|0|0|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +843|Shaggy Dog, The (1959)|01-Jan-1959||http://us.imdb.com/M/title-exact?Shaggy%20Dog,%20The%20(1959)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +844|Freeway (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Freeway%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +845|That Thing You Do! (1996)|28-Sep-1996||http://us.imdb.com/M/title-exact?That%20Thing%20You%20Do!%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +846|To Gillian on Her 37th Birthday (1996)|18-Oct-1996||http://us.imdb.com/M/title-exact?To%20Gillian%20on%20Her%2037th%20Birthday%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +847|Looking for Richard (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Looking%20for%20Richard%20(1996)|0|0|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0 +848|Murder, My Sweet (1944)|01-Jan-1944||http://us.imdb.com/M/title-exact?Murder,%20My%20Sweet%20(1944)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0 +849|Days of Thunder (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Days%20of%20Thunder%20(1990)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +850|Perfect Candidate, A (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Perfect%20Candidate,%20A%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +851|Two or Three Things I Know About Her (1966)|01-Jan-1966||http://us.imdb.com/M/title-exact?Deux%20ou%20trois%20choses%20que%20je%20sais%20d'elle%20(1966)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +852|Bloody Child, The (1996)|26-Oct-1996||http://us.imdb.com/M/title-exact?Bloody%20Child%2C%20The%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +853|Braindead (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Braindead%20(1992)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +854|Bad Taste (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Bad%20Taste%20(1987)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +855|Diva (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Diva%20(1981)|0|1|0|0|0|0|0|0|1|0|0|0|0|1|1|0|1|0|0 +856|Night on Earth (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Night%20on%20Earth%20(1991)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +857|Paris Was a Woman (1995)|08-Nov-1996||http://us.imdb.com/M/title-exact?Paris%20Was%20a%20Woman%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +858|Amityville: Dollhouse (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Amityville:%20Dollhouse%20(1996)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +859|April Fool's Day (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?April%20Fool's%20Day%20(1986)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +860|Believers, The (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Believers,%20The%20(1987)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +861|Nosferatu a Venezia (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Nosferatu%20a%20Venezia%20(1986)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +862|Jingle All the Way (1996)|22-Nov-1996||http://us.imdb.com/M/title-exact?Jingle%20All%20the%20Way%20(1996)|0|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +863|Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)|08-Nov-1996||http://us.imdb.com/M/title-exact?Giardino%20dei%20Finzi-Contini,%20Il%20(1970)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +864|My Fellow Americans (1996)|20-Dec-1996||http://us.imdb.com/M/title-exact?My%20Fellow%20Americans%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +865|Ice Storm, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Ice+Storm%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +866|Michael (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Michael%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +867|Whole Wide World, The (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Whole%20Wide%20World,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +868|Hearts and Minds (1996)|10-Jan-1997||http://us.imdb.com/M/title-exact?Hearts%20and%20Minds%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +869|Fools Rush In (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?Fools%20Rush%20In%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +870|Touch (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?Touch%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +871|Vegas Vacation (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?Vegas%20Vacation%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +872|Love Jones (1997)|14-Mar-1997||http://us.imdb.com/M/title-exact?Love%20Jones%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +873|Picture Perfect (1997)|01-Aug-1997||http://us.imdb.com/M/title-exact?Picture+Perfect+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +874|Career Girls (1997)|08-Aug-1997||http://us.imdb.com/M/title-exact?Career+Girls+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +875|She's So Lovely (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?She%27s+So+Lovely+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +876|Money Talks (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?Money+Talks+(1997)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +877|Excess Baggage (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Excess+Baggage+(1997)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +878|That Darn Cat! (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?That%20Darn%20Cat%20(1997)|0|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +879|Peacemaker, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Peacemaker%2C+The+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0 +880|Soul Food (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Soul+Food+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +881|Money Talks (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?Money+Talks+(1997)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +882|Washington Square (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Washington+Square+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +883|Telling Lies in America (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Telling+Lies+in+America+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +884|Year of the Horse (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Year+of+the+Horse+(1997)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +885|Phantoms (1998)|01-Jan-1998||http://us.imdb.com/M/title-exact?Phantoms+(1998)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +886|Life Less Ordinary, A (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Life+Less+Ordinary,+A+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +887|Eve's Bayou (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Eve's+Bayou+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +888|One Night Stand (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?One+Night+Stand+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +889|Tango Lesson, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Tango+Lesson,+The+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +890|Mortal Kombat: Annihilation (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Mortal+Kombat%3A+Annihilation+(1997)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +891|Bent (1997)|18-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-118698|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +892|Flubber (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119137|0|0|0|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0 +893|For Richer or Poorer (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119142|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +894|Home Alone 3 (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119303|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +895|Scream 2 (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120082|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +896|Sweet Hereafter, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Sweet+Hereafter%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +897|Time Tracers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?imdb-title-128755|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +898|Postman, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119925|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +899|Winter Guest, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120521|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +900|Kundun (1997)|25-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-119485|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +901|Mr. Magoo (1997)|25-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-119718|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +902|Big Lebowski, The (1998)|26-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-118715|0|0|0|0|0|1|1|0|0|0|0|0|0|1|0|0|1|0|0 +903|Afterglow (1997)|26-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-118566|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +904|Ma vie en rose (My Life in Pink) (1997)|26-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-119590|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +905|Great Expectations (1998)|01-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-119223|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +906|Oscar & Lucinda (1997)|31-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-119843|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +907|Vermin (1998)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120881|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +908|Half Baked (1998)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120693|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +909|Dangerous Beauty (1998)|23-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-118892|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +910|Nil By Mouth (1997)|06-Feb-1998||http://us.imdb.com/Title?Nil+By+Mouth+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +911|Twilight (1998)|30-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-119594|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +912|U.S. Marshalls (1998)|10-Mar-1998||http://us.imdb.com/Title?U.S.+Marshals+(1998)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +913|Love and Death on Long Island (1997)|10-Mar-1998||http://us.imdb.com/Title?Love+and+Death+on+Long+Island+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +914|Wild Things (1998)|14-Mar-1998||http://us.imdb.com/Title?Wild+Things+(1998)|0|0|0|0|0|0|1|0|1|0|0|0|0|1|0|0|1|0|0 +915|Primary Colors (1998)|20-Mar-1998||http://us.imdb.com/Title?Primary+Colors+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +916|Lost in Space (1998)|27-Mar-1998||http://us.imdb.com/Title?Lost+in+Space+(1998)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +917|Mercury Rising (1998)|27-Mar-1998||http://us.imdb.com/Title?Mercury+Rising+(1998)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +918|City of Angels (1998)|03-Apr-1998||http://us.imdb.com/Title?City+of+Angels+(1998)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +919|City of Lost Children, The (1995)|01-Jan-1995||http://us.imdb.com/Title?Cit%E9+des+enfants+perdus,+La+(1995)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +920|Two Bits (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Two%20Bits%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +921|Farewell My Concubine (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Ba%20Wang%20Bie%20Ji%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +922|Dead Man (1995)|10-May-1996||http://us.imdb.com/M/title-exact?Dead%20Man%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +923|Raise the Red Lantern (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Da%20Hong%20Deng%20Long%20Gao%20Gao%20Gua%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +924|White Squall (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?White%20Squall%20(1996)|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +925|Unforgettable (1996)|23-Feb-1996||http://us.imdb.com/Title?Unforgettable+(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +926|Down Periscope (1996)|01-Mar-1996||http://us.imdb.com/M/title-exact?Down%20Periscope%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +927|Flower of My Secret, The (Flor de mi secreto, La) (1995)|08-Mar-1996||http://us.imdb.com/M/title-exact?Flor%20de%20mi%20secreto,%20La%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +928|Craft, The (1996)|26-Apr-1996||http://us.imdb.com/M/title-exact?Craft,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0 +929|Harriet the Spy (1996)|03-Jul-1996||http://us.imdb.com/M/title-exact?Harriet%20the%20Spy%20(1996)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +930|Chain Reaction (1996)|31-Jul-1996||http://us.imdb.com/M/title-exact?Chain%20Reaction%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +931|Island of Dr. Moreau, The (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Island%20of%20Dr.%20Moreau,%20The%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +932|First Kid (1996)|30-Aug-1996||http://us.imdb.com/M/title-exact?First%20Kid%20(1996)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +933|Funeral, The (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Funeral,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +934|Preacher's Wife, The (1996)|13-Dec-1996||http://us.imdb.com/M/title-exact?Preacher's%20Wife,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +935|Paradise Road (1997)|18-Apr-1997||http://us.imdb.com/M/title-exact?Paradise%20Road%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +936|Brassed Off (1996)|13-Jun-1997||http://us.imdb.com/M/title-exact?Brassed%20Off%20%281996%29|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +937|Thousand Acres, A (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Thousand+Acres%2C+A+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +938|Smile Like Yours, A (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Smile+Like+Yours%2C+A+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +939|Murder in the First (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Murder%20in%20the%20First%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +940|Airheads (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Airheads%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +941|With Honors (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?With%20Honors%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +942|What's Love Got to Do with It (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?What's%20Love%20Got%20to%20Do%20with%20It%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +943|Killing Zoe (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Killing%20Zoe%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +944|Renaissance Man (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Renaissance%20Man%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|1|0 +945|Charade (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?Charade%20(1963)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|1|0|1|0|0 +946|Fox and the Hound, The (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Fox%20and%20the%20Hound,%20The%20(1981)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +947|Big Blue, The (Grand bleu, Le) (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Grand%20bleu,%20Le%20(1988)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +948|Booty Call (1997)|28-Feb-1997||http://us.imdb.com/M/title-exact?Booty%20Call%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +949|How to Make an American Quilt (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?How%20to%20Make%20an%20American%20Quilt%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +950|Georgia (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Georgia%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +951|Indian in the Cupboard, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Indian%20in%20the%20Cupboard,%20The%20(1995)|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +952|Blue in the Face (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Blue%20in%20the%20Face%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +953|Unstrung Heroes (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Unstrung%20Heroes%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +954|Unzipped (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Unzipped%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +955|Before Sunrise (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Before%20Sunrise%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +956|Nobody's Fool (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Nobody's%20Fool%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +957|Pushing Hands (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Tui%20Shou%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +958|To Live (Huozhe) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Huozhe%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +959|Dazed and Confused (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Dazed%20and%20Confused%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +960|Naked (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Naked%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +961|Orlando (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Orlando%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +962|Ruby in Paradise (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Ruby%20in%20Paradise%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +963|Some Folks Call It a Sling Blade (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Some%20Folks%20Call%20It%20a%20Sling%20Blade%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +964|Month by the Lake, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Month%20by%20The%20Lake,%20A%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +965|Funny Face (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Funny%20Face%20(1957)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +966|Affair to Remember, An (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Affair%20to%20Remember,%20An%20(1957)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +967|Little Lord Fauntleroy (1936)|01-Jan-1936||http://us.imdb.com/M/title-exact?Little%20Lord%20Fauntleroy%20(1936)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +968|Inspector General, The (1949)|01-Jan-1949||http://us.imdb.com/M/title-exact?Inspector%20General,%20The%20(1949)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +969|Winnie the Pooh and the Blustery Day (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?Winnie%20the%20Pooh%20and%20the%20Blustery%20Day%20%281968%29|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +970|Hear My Song (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Hear%20My%20Song%20(1991)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +971|Mediterraneo (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Mediterraneo%20(1991)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +972|Passion Fish (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Passion%20Fish%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +973|Grateful Dead (1995)|18-Oct-1996||http://us.imdb.com/M/title-exact?Grateful%20Dead%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +974|Eye for an Eye (1996)|01-Jan-1996||http://us.imdb.com/Title?Eye+for+an+Eye+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +975|Fear (1996)|12-Apr-1996||http://us.imdb.com/M/title-exact?Fear%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +976|Solo (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Solo%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +977|Substitute, The (1996)|19-Apr-1996||http://us.imdb.com/M/title-exact?Substitute,%20The%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +978|Heaven's Prisoners (1996)|10-May-1996||http://us.imdb.com/M/title-exact?Heaven's%20Prisoners%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +979|Trigger Effect, The (1996)|30-Aug-1996||http://us.imdb.com/M/title-exact?Trigger%20Effect,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +980|Mother Night (1996)|01-Nov-1996||http://us.imdb.com/M/title-exact?Mother%20Night%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +981|Dangerous Ground (1997)|04-Sep-1996||http://us.imdb.com/M/title-exact?Dangerous%20Ground%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +982|Maximum Risk (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Maximum%20Risk%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +983|Rich Man's Wife, The (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Rich%20Man's%20Wife,%20The%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +984|Shadow Conspiracy (1997)|31-Jan-1997||http://us.imdb.com/M/title-exact?Shadow%20Conspiracy%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +985|Blood & Wine (1997)|15-Nov-1996||http://us.imdb.com/Title?Blood+%26+Wine+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +986|Turbulence (1997)|10-Jan-1997||http://us.imdb.com/M/title-exact?Turbulence%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +987|Underworld (1997)|09-May-1997||http://us.imdb.com/M/title-exact?Underworld%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +988|Beautician and the Beast, The (1997)|07-Feb-1997||http://us.imdb.com/M/title-exact?Beautician%20and%20the%20Beast,%20The%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +989|Cats Don't Dance (1997)|26-Mar-1997||http://us.imdb.com/M/title-exact?Cats%20Don%27t%20Dance%20(1997)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +990|Anna Karenina (1997)|04-Apr-1997||http://us.imdb.com/M/title-exact?Anna%20Karenina%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +991|Keys to Tulsa (1997)|11-Apr-1997||http://us.imdb.com/Title?Keys+to+Tulsa+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +992|Head Above Water (1996)|20-Jun-1997||http://us.imdb.com/M/title-exact?Head+Above+Water+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0 +993|Hercules (1997)|27-Jun-1997||http://us.imdb.com/M/title-exact?Hercules+(1997)|0|0|1|1|1|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +994|Last Time I Committed Suicide, The (1997)|20-Jun-1997||http://us.imdb.com/M/title-exact?Last+Time+I+Committed+Suicide%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +995|Kiss Me, Guido (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Kiss+Me%2C+Guido+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +996|Big Green, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Big%20Green,%20The%20(1995)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +997|Stuart Saves His Family (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Stuart%20Saves%20His%20Family%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +998|Cabin Boy (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Cabin%20Boy%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +999|Clean Slate (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Clean%20Slate%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1000|Lightning Jack (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Lightning%20Jack%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +1001|Stupids, The (1996)|30-Aug-1996||http://us.imdb.com/M/title-exact?Stupids,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1002|Pest, The (1997)|07-Feb-1997||http://us.imdb.com/M/title-exact?Pest,%20The%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1003|That Darn Cat! (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?That%20Darn%20Cat%20(1997)|0|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +1004|Geronimo: An American Legend (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Geronimo:%20An%20American%20Legend%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1 +1005|Double vie de Vronique, La (Double Life of Veronique, The) (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Podwojne%20zycie%20Weroniki%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1006|Until the End of the World (Bis ans Ende der Welt) (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Bis%20ans%20Ende%20der%20Welt%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0 +1007|Waiting for Guffman (1996)|31-Jan-1997||http://us.imdb.com/M/title-exact?Waiting%20for%20Guffman%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1008|I Shot Andy Warhol (1996)|01-May-1996||http://us.imdb.com/M/title-exact?I%20Shot%20Andy%20Warhol%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1009|Stealing Beauty (1996)|14-Jun-1996||http://us.imdb.com/M/title-exact?Stealing%20Beauty%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1010|Basquiat (1996)|16-Aug-1996||http://us.imdb.com/M/title-exact?Basquiat%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1011|2 Days in the Valley (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?2%20Days%20in%20the%20Valley%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1012|Private Parts (1997)|07-Mar-1997||http://us.imdb.com/M/title-exact?Private%20Parts%20(1997)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1013|Anaconda (1997)|11-Apr-1997||http://us.imdb.com/M/title-exact?Anaconda%20%281997%29|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1014|Romy and Michele's High School Reunion (1997)|25-Apr-1997||http://us.imdb.com/M/title-exact?Romy%20and%20Michele%27s%20High%20School%20Reunion%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1015|Shiloh (1997)|23-May-1997||http://us.imdb.com/M/title-exact?Shiloh%20%281997%29|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1016|Con Air (1997)|06-Jun-1997||http://us.imdb.com/M/title-exact?Con%20Air%20%281997%29|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1017|Trees Lounge (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Trees%20Lounge%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1018|Tie Me Up! Tie Me Down! (1990)|01-Jan-1990||http://us.imdb.com/Title?%A1%C1tame%21+(1990)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1019|Die xue shuang xiong (Killer, The) (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Die%20xue%20shuang%20xiong%20(1989)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1020|Gaslight (1944)|01-Jan-1944||http://us.imdb.com/M/title-exact?Gaslight%20(1944)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +1021|8 1/2 (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?8%201/2%20(1963)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1022|Fast, Cheap & Out of Control (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Fast,+Cheap+&+Out+of+Control+(1997)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1023|Fathers' Day (1997)|09-May-1997||http://us.imdb.com/M/title-exact?Fathers%27%20Day%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1024|Mrs. Dalloway (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Mrs%2E+Dalloway+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1025|Fire Down Below (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Fire+Down+Below+(1997)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1026|Lay of the Land, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Lay+of+the+Land%2C+The+(1997)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1027|Shooter, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Shooter,%20The%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1028|Grumpier Old Men (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Grumpier%20Old%20Men%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1029|Jury Duty (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Jury%20Duty%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1030|Beverly Hillbillies, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Beverly%20Hillbillies,%20The%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1031|Lassie (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Lassie%20(1994)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1032|Little Big League (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Little%20Big%20League%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1033|Homeward Bound II: Lost in San Francisco (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?Homeward%20Bound%20II:%20Lost%20in%20San%20Francisco%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1034|Quest, The (1996)|26-Apr-1996||http://us.imdb.com/M/title-exact?Quest,%20The%20(1996/I)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1035|Cool Runnings (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Cool%20Runnings%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1036|Drop Dead Fred (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Drop%20Dead%20Fred%20(1991)|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0 +1037|Grease 2 (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Grease%202%20(1982)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +1038|Switchback (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Switchback+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1039|Hamlet (1996)|24-Jan-1997||http://us.imdb.com/M/title-exact?Hamlet%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1040|Two if by Sea (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Two%20if%20by%20Sea%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1041|Forget Paris (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Forget%20Paris%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1042|Just Cause (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Just%20Cause%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +1043|Rent-a-Kid (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Rent-a-Kid%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1044|Paper, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Paper,%20The%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1045|Fearless (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fearless%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1046|Malice (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Malice%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1047|Multiplicity (1996)|12-Jul-1996||http://us.imdb.com/M/title-exact?Multiplicity%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1048|She's the One (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?She's%20the%20One%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1049|House Arrest (1996)|02-Aug-1996||http://us.imdb.com/Title?House+Arrest+(1996/I)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1050|Ghost and Mrs. Muir, The (1947)|01-Jan-1947||http://us.imdb.com/M/title-exact?Ghost%20and%20Mrs.%20Muir,%20The%20(1947)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1051|Associate, The (1996)|19-Oct-1996||http://us.imdb.com/M/title-exact?Associate,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1052|Dracula: Dead and Loving It (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dracula:%20Dead%20and%20Loving%20It%20(1995)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +1053|Now and Then (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Now%20and%20Then%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1054|Mr. Wrong (1996)|16-Feb-1996||http://us.imdb.com/M/title-exact?Mr.%20Wrong%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1055|Simple Twist of Fate, A (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Simple%20Twist%20of%20Fate,%20A%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1056|Cronos (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Cronos%20(1992)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +1057|Pallbearer, The (1996)|19-Apr-1996||http://us.imdb.com/M/title-exact?Pallbearer,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1058|War, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?War,%20The%20(1994)|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1059|Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Don't%20Be%20a%20Menace%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1060|Adventures of Pinocchio, The (1996)|26-Jul-1996||http://us.imdb.com/M/title-exact?Adventures%20of%20Pinocchio,%20The%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1061|Evening Star, The (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Evening%20Star,%20The%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1062|Four Days in September (1997)|23-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-119815|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1063|Little Princess, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Little%20Princess,%20A%20(1995)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1064|Crossfire (1947)|01-Jan-1947||http://us.imdb.com/M/title-exact?Crossfire%20(1947)|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0 +1065|Koyaanisqatsi (1983)|01-Jan-1983||http://us.imdb.com/M/title-exact?Koyaanisqatsi%20(1983)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0 +1066|Balto (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Balto%20(1995)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1067|Bottle Rocket (1996)|21-Feb-1996||http://us.imdb.com/M/title-exact?Bottle%20Rocket%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1068|Star Maker, The (Uomo delle stelle, L') (1995)|01-Mar-1996||http://us.imdb.com/M/title-exact?Uomo%20delle%20stelle,%20L'%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1069|Amateur (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Amateur%20(1994)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +1070|Living in Oblivion (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Living%20in%20Oblivion%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1071|Party Girl (1995)|01-Jan-1995||http://us.imdb.com/Title?Party+Girl+(1995/I)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1072|Pyromaniac's Love Story, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Pyromaniac's%20Love%20Story,%20A%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1073|Shallow Grave (1994)|01-Jan-1994||http://us.imdb.com/Title?Shallow+Grave+(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1074|Reality Bites (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Reality%20Bites%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1075|Man of No Importance, A (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Man%20of%20No%20Importance,%20A%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1076|Pagemaster, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Pagemaster,%20The%20(1994)|0|1|1|1|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +1077|Love and a .45 (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Love%20and%20a%20.45%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1078|Oliver & Company (1988)|29-Mar-1988||http://us.imdb.com/M/title-exact?Oliver%20&%20Company%20(1988)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1079|Joe's Apartment (1996)|26-Jul-1996||http://us.imdb.com/M/title-exact?Joe's%20Apartment%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +1080|Celestial Clockwork (1994)|12-Jul-1996||http://us.imdb.com/Title?Cort%E1zar+(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1081|Curdled (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Curdled%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1082|Female Perversions (1996)|25-Apr-1997||http://us.imdb.com/M/title-exact?Female%20Perversions%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1083|Albino Alligator (1996)|17-Jan-1997||http://us.imdb.com/M/title-exact?Albino%20Alligator%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +1084|Anne Frank Remembered (1995)|23-Feb-1996||http://us.imdb.com/M/title-exact?Anne%20Frank%20Remembered%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1085|Carried Away (1996)|29-Mar-1996||http://us.imdb.com/M/title-exact?Carried%20Away%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1086|It's My Party (1995)|22-Mar-1996||http://us.imdb.com/M/title-exact?It's%20My%20Party%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1087|Bloodsport 2 (1995)|01-Mar-1996||http://us.imdb.com/M/title-exact?Bloodsport%202%20%281995%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1088|Double Team (1997)|04-Apr-1997||http://us.imdb.com/M/title-exact?Double%20Team%20%281997%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1089|Speed 2: Cruise Control (1997)|13-Jun-1997||http://us.imdb.com/M/title-exact?Speed%202%3A%20Cruise%20Control%20%281997%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +1090|Sliver (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Sliver%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1091|Pete's Dragon (1977)|01-Jan-1977||http://us.imdb.com/M/title-exact?Pete's%20Dragon%20(1977)|0|0|1|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +1092|Dear God (1996)|01-Nov-1996||http://us.imdb.com/M/title-exact?Dear%20God%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1093|Live Nude Girls (1995)|01-Mar-1996||http://us.imdb.com/M/title-exact?Live%20Nude%20Girls%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1094|Thin Line Between Love and Hate, A (1996)|03-Apr-1996||http://us.imdb.com/M/title-exact?Thin%20Line%20Between%20Love%20and%20Hate,%20A%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1095|High School High (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?High%20School%20High%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1096|Commandments (1997)|02-May-1997||http://us.imdb.com/Title?Commandments+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1097|Hate (Haine, La) (1995)|09-Feb-1996||http://us.imdb.com/M/title-exact?Haine,%20La%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1098|Flirting With Disaster (1996)|22-Mar-1996||http://us.imdb.com/M/title-exact?Flirting%20With%20Disaster%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1099|Red Firecracker, Green Firecracker (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Pao%20Da%20Shuang%20Deng%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1100|What Happened Was... (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?What%20Happened%20Was...%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +1101|Six Degrees of Separation (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Six%20Degrees%20of%20Separation%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +1102|Two Much (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Two%20Much%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1103|Trust (1990)|01-Jan-1990||http://us.imdb.com/Title?Trust+(1990)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1104|C'est arriv prs de chez vous (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?C%27est%20arriv%E9%20pr%E8s%20de%20chez%20vous%20%281992%29|0|0|0|0|0|1|1|0|1|0|0|0|0|0|0|0|0|0|0 +1105|Firestorm (1998)|09-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120670|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1106|Newton Boys, The (1998)|14-Mar-1998||http://us.imdb.com/Title?Newton+Boys,+The+(1998)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1107|Beyond Rangoon (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Beyond%20Rangoon%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1108|Feast of July (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Feast%20of%20July%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1109|Death and the Maiden (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Death%20and%20the%20Maiden%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1110|Tank Girl (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tank%20Girl%20(1995)|0|1|0|0|0|1|0|0|0|0|0|0|1|0|0|1|0|0|0 +1111|Double Happiness (1994)|01-Mar-1996||http://us.imdb.com/M/title-exact?Double%20Happiness%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1112|Cobb (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Cobb%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1113|Mrs. Parker and the Vicious Circle (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mrs.%20Parker%20and%20the%20Vicious%20Circle%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1114|Faithful (1996)|03-Apr-1996||http://us.imdb.com/M/title-exact?Faithful%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1115|Twelfth Night (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Twelfth%20Night:%20Or%20What%20You%20Will%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +1116|Mark of Zorro, The (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Mark%20of%20Zorro,%20The%20(1940)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1117|Surviving Picasso (1996)|20-Sep-1996||http://us.imdb.com/M/title-exact?Surviving%20Picasso%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1118|Up in Smoke (1978)|01-Jan-1978||http://us.imdb.com/M/title-exact?Up%20in%20Smoke%20(1978)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1119|Some Kind of Wonderful (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Some%20Kind%20of%20Wonderful%20(1987)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1120|I'm Not Rappaport (1996)|13-Nov-1996||http://us.imdb.com/M/title-exact?I'm%20Not%20Rappaport%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1121|Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)|05-Apr-1996||http://us.imdb.com/M/title-exact?Parapluies%20de%20Cherbourg,%20Les%20(1964)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +1122|They Made Me a Criminal (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?They%20Made%20Me%20a%20Criminal%20(1939)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1123|Last Time I Saw Paris, The (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Last%20Time%20I%20Saw%20Paris,%20The%20(1954)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1124|Farewell to Arms, A (1932)|01-Jan-1932||http://us.imdb.com/M/title-exact?Farewell%20to%20Arms,%20A%20(1932)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0 +1125|Innocents, The (1961)|01-Jan-1961||http://us.imdb.com/M/title-exact?Innocents,%20The%20(1961)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1126|Old Man and the Sea, The (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Old%20Man%20and%20the%20Sea,%20The%20(1958)|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1127|Truman Show, The (1998)|01-Jan-1998||http://us.imdb.com/Title?Truman+Show,+The+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1128|Heidi Fleiss: Hollywood Madam (1995) |09-Feb-1996||http://us.imdb.com/M/title-exact?Heidi%20Fleiss:%20Hollywood%20Madam%20(1995)%20(TV)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1129|Chungking Express (1994)|16-Feb-1996||http://us.imdb.com/M/title-exact?Chongqing%20Senlin%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|1|0|0|0|0 +1130|Jupiter's Wife (1994)|09-Feb-1996||http://us.imdb.com/M/title-exact?Jupiter's%20Wife%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1131|Safe (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Safe%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1132|Feeling Minnesota (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Feeling%20Minnesota%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1133|Escape to Witch Mountain (1975)|01-Jan-1975||http://us.imdb.com/M/title-exact?Escape%20to%20Witch%20Mountain%20(1975)|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +1134|Get on the Bus (1996)|16-Oct-1996||http://us.imdb.com/M/title-exact?Get%20on%20the%20Bus%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1135|Doors, The (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Doors,%20The%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +1136|Ghosts of Mississippi (1996)|20-Dec-1996||http://us.imdb.com/M/title-exact?Ghosts%20of%20Mississippi%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1137|Beautiful Thing (1996)|09-Oct-1996||http://us.imdb.com/M/title-exact?Beautiful%20Thing%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1138|Best Men (1997)|01-Sep-1997||http://us.imdb.com/M/title-exact/Independence%20(1997)|0|1|0|0|0|1|1|0|1|0|0|0|0|0|0|0|0|0|0 +1139|Hackers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Hackers%20(1995)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +1140|Road to Wellville, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Road%20to%20Wellville,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1141|War Room, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?War%20Room,%20The%20(1993)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1142|When We Were Kings (1996)|14-Feb-1997||http://us.imdb.com/M/title-exact?When%20We%20Were%20Kings%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1143|Hard Eight (1996)|28-Feb-1997||http://us.imdb.com/Title?Hard+Eight+(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +1144|Quiet Room, The (1996)|02-May-1997||http://us.imdb.com/M/title-exact?Quiet%20Room%2C%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1145|Blue Chips (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Blue%20Chips%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1146|Calendar Girl (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Calendar%20Girl%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1147|My Family (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?My%20Family%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1148|Tom & Viv (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Tom%20&%20Viv%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1149|Walkabout (1971)|20-Dec-1971||http://us.imdb.com/M/title-exact?Walkabout%20(1971)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1150|Last Dance (1996)|03-May-1996||http://us.imdb.com/M/title-exact?Last%20Dance%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1151|Original Gangstas (1996)|10-May-1996||http://us.imdb.com/M/title-exact?Original%20Gangstas%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1152|In Love and War (1996)|24-Jan-1997||http://us.imdb.com/M/title-exact?In%20Love%20and%20War%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0 +1153|Backbeat (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Backbeat%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +1154|Alphaville (1965)|01-Jan-1965||http://us.imdb.com/M/title-exact?Alphaville%20(1965)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1155|Rendezvous in Paris (Rendez-vous de Paris, Les) (1995)|28-Jun-1996||http://us.imdb.com/M/title-exact?Rendez-vous%20de%20Paris,%20Les%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1156|Cyclo (1995)|02-Aug-1996||http://us.imdb.com/M/title-exact?Cyclo%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1157|Relic, The (1997)|17-Jan-1997||http://us.imdb.com/M/title-exact?Relic,%20The%20(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +1158|Fille seule, La (A Single Girl) (1995)|30-Oct-1996||http://us.imdb.com/M/title-exact?Fille%20seule,%20La%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1159|Stalker (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Stalker%20(1979)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0 +1160|Love! Valour! Compassion! (1997)|16-May-1997||http://us.imdb.com/Title?Love%21+Valour%21+Compassion%21+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1161|Palookaville (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Palookaville%20(1996)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1162|Phat Beach (1996)|02-Aug-1996||http://us.imdb.com/M/title-exact?Phat%20Beach%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1163|Portrait of a Lady, The (1996)|27-Dec-1996||http://us.imdb.com/M/title-exact?Portrait%20of%20a%20Lady%2C%20The%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1164|Zeus and Roxanne (1997)|10-Jan-1997||http://us.imdb.com/M/title-exact?Zeus%20and%20Roxanne%20(1997)|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1165|Big Bully (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Big%20Bully%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1166|Love & Human Remains (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Love%20&%20Human%20Remains%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1167|Sum of Us, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Sum%20of%20Us,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1168|Little Buddha (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Little%20Buddha%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1169|Fresh (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Fresh%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1170|Spanking the Monkey (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Spanking%20the%20Monkey%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1171|Wild Reeds (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Roseaux%20sauvages%2C%20Les%20%281994%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1172|Women, The (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Women,%20The%20(1939)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1173|Bliss (1997)|06-Jun-1997||http://us.imdb.com/M/title-exact?Bliss%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1174|Caught (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Caught%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1175|Hugo Pool (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Hugo+Pool+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1176|Welcome To Sarajevo (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Welcome+To+Sarajevo+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +1177|Dunston Checks In (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Dunston%20Checks%20In%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1178|Major Payne (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Major%20Payne%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1179|Man of the House (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Man%20of%20the%20House%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1180|I Love Trouble (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?I%20Love%20Trouble%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1181|Low Down Dirty Shame, A (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Low%20Down%20Dirty%20Shame,%20A%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1182|Cops and Robbersons (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Cops%20and%20Robbersons%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1183|Cowboy Way, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Cowboy%20Way,%20The%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1184|Endless Summer 2, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Endless%20Summer%202,%20The%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1185|In the Army Now (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?In%20the%20Army%20Now%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +1186|Inkwell, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Inkwell,%20The%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1187|Switchblade Sisters (1975)|17-May-1975||http://us.imdb.com/M/title-exact?Switchblade%20Sisters%20(1975)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1188|Young Guns II (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Young%20Guns%20II%20(1990)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +1189|Prefontaine (1997)|24-Jan-1997||http://us.imdb.com/M/title-exact?Prefontaine%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1190|That Old Feeling (1997)|04-Apr-1997||http://us.imdb.com/M/title-exact?That%20Old%20Feeling%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1191|Letter From Death Row, A (1998)|01-Feb-1998||http://us.imdb.com/M/title-exact?Letter+From+Death+Row%2C+A+(1998)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1192|Boys of St. Vincent, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Boys%20of%20St.%20Vincent,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1193|Before the Rain (Pred dozhdot) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Pred%20dozhdot%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1194|Once Were Warriors (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Once%20Were%20Warriors%20(1994)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1195|Strawberry and Chocolate (Fresa y chocolate) (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fresa%20y%20chocolate%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1196|Savage Nights (Nuits fauves, Les) (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Nuits%20fauves,%20Les%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1197|Family Thing, A (1996)|23-Mar-1996||http://us.imdb.com/M/title-exact?Family%20Thing,%20A%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1198|Purple Noon (1960)|28-Jun-1960||http://us.imdb.com/M/title-exact?Plein%20soleil%20(1960)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +1199|Cemetery Man (Dellamorte Dellamore) (1994)|12-Apr-1996||http://us.imdb.com/M/title-exact?Dellamorte%20Dellamore%20(1994)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +1200|Kim (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Kim%20(1950)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1201|Marlene Dietrich: Shadow and Light (1996) |02-Apr-1996||http://us.imdb.com/M/title-exact?Marlene%20Dietrich:%20Shadow%20and%20Light%20(1996)%20(TV)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1202|Maybe, Maybe Not (Bewegte Mann, Der) (1994)|19-Jul-1996||http://us.imdb.com/M/title-exact?Bewegte%20Mann,%20Der%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1203|Top Hat (1935)|01-Jan-1935||http://us.imdb.com/M/title-exact?Top%20Hat%20(1935)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +1204|To Be or Not to Be (1942)|01-Jan-1942||http://us.imdb.com/M/title-exact?To%20Be%20or%20Not%20to%20Be%20(1942)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|1|0 +1205|Secret Agent, The (1996)|08-Nov-1996||http://us.imdb.com/M/title-exact?Secret%20Agent,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1206|Amos & Andrew (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Amos%20&%20Andrew%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1207|Jade (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Jade%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1208|Kiss of Death (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Kiss%20of%20Death%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +1209|Mixed Nuts (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mixed%20Nuts%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1210|Virtuosity (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Virtuosity%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +1211|Blue Sky (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Blue%20Sky%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1212|Flesh and Bone (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Flesh%20and%20Bone%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|1|0|0|0|0 +1213|Guilty as Sin (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Guilty%20as%20Sin%20(1993)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +1214|In the Realm of the Senses (Ai no corrida) (1976)|08-Mar-1976||http://us.imdb.com/M/title-exact?Ai%20no%20Corrida%20(1976)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1215|Barb Wire (1996)|03-May-1996||http://us.imdb.com/M/title-exact?Barb%20Wire%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1216|Kissed (1996)|18-Apr-1997||http://us.imdb.com/M/title-exact?Kissed%20%281996%29|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1217|Assassins (1995)|01-Jan-1995||http://us.imdb.com/Title?Assassins+(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1218|Friday (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Friday%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1219|Goofy Movie, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Goofy%20Movie,%20A%20(1995)|0|0|0|1|1|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1220|Higher Learning (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Higher%20Learning%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1221|When a Man Loves a Woman (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?When%20a%20Man%20Loves%20a%20Woman%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1222|Judgment Night (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Judgment%20Night%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1223|King of the Hill (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?King%20of%20the%20Hill%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1224|Scout, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Scout,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1225|Angus (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Angus%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1226|Night Falls on Manhattan (1997)|16-May-1997||http://us.imdb.com/M/title-exact?Night%20Falls%20on%20Manhattan%20(1997)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1227|Awfully Big Adventure, An (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Awfully%20Big%20Adventure,%20An%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1228|Under Siege 2: Dark Territory (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Under%20Siege%202:%20Dark%20Territory%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1229|Poison Ivy II (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Poison%20Ivy%20II%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1230|Ready to Wear (Pret-A-Porter) (1994)|01-Jan-1994||http://us.imdb.com/Title?Pr%EAt-%E0-Porter+(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1231|Marked for Death (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Marked%20for%20Death%20(1990)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1232|Madonna: Truth or Dare (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Madonna:%20Truth%20or%20Dare%20(1991)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1233|Nnette et Boni (1996)|01-Jan-1996||http://us.imdb.com/Title?N%E9nette+et+Boni+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1234|Chairman of the Board (1998)|01-Jan-1998||http://us.imdb.com/Title?Chairman+of+the+Board+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1235|Big Bang Theory, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?imdb-title-109266|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1236|Other Voices, Other Rooms (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119845|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1237|Twisted (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?imdb-title-117994|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1238|Full Speed (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?imdb-title-118230|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1239|Cutthroat Island (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Cutthroat%20Island%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1240|Ghost in the Shell (Kokaku kidotai) (1995)|12-Apr-1996||http://us.imdb.com/M/title-exact?Kokaku%20Kidotai%20(1995)|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1241|Van, The (1996)|27-Jun-1997||http://us.imdb.com/M/title-exact?Van%2C%20The%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1242|Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Vieille%20qui%20marchait%20dans%20la%20mer,%20La%20(1991)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1243|Night Flier (1997)|06-Feb-1998||http://us.imdb.com/M/title-exact?Night+Flier+(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +1244|Metro (1997)|17-Jan-1997||http://us.imdb.com/M/title-exact?Metro%20(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1245|Gridlock'd (1997)|29-Jan-1997||http://us.imdb.com/M/title-exact?Gridlock'd%20(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1246|Bushwhacked (1995)|01-Jan-1995||http://us.imdb.com/Title?Bushwhacked+(1995/I)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1247|Bad Girls (1994)|01-Jan-1994||http://us.imdb.com/Title?Bad+Girls+(1994/I)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +1248|Blink (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Blink%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1249|For Love or Money (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?For%20Love%20or%20Money%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1250|Best of the Best 3: No Turning Back (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Best%20of%20the%20Best%203:%20No%20Turning%20Back%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1251|A Chef in Love (1996)|25-Apr-1997||http://us.imdb.com/M/title-exact?Mille%20et%20une%20recettes%20du%20cuisinier%20amoureux%2C%20Les%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1252|Contempt (Mpris, Le) (1963)|27-Jun-1997||http://us.imdb.com/M/title-exact?M%E9pris%2C+Le+(1963)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1253|Tie That Binds, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tie%20That%20Binds,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1254|Gone Fishin' (1997)|30-May-1997||http://us.imdb.com/M/title-exact?Gone%20Fishin'%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1255|Broken English (1996)|02-May-1997||http://us.imdb.com/M/title-exact?Broken%20English%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1256|Designated Mourner, The (1997)|23-May-1997||http://us.imdb.com/M/title-exact?Designated%20Mourner%2C%20The%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1257|Designated Mourner, The (1997)|23-May-1997||http://us.imdb.com/M/title-exact?Designated%20Mourner%2C%20The%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1258|Trial and Error (1997)|30-May-1997||http://us.imdb.com/M/title-exact?Trial%20and%20Error%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1259|Pie in the Sky (1995)|09-Feb-1996||http://us.imdb.com/M/title-exact?Pie%20in%20the%20Sky%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1260|Total Eclipse (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Total%20Eclipse%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1261|Run of the Country, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Run%20of%20the%20Country,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1262|Walking and Talking (1996)|12-Jul-1996||http://us.imdb.com/M/title-exact?Walking%20and%20Talking%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1263|Foxfire (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Foxfire%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1264|Nothing to Lose (1994)|16-Aug-1996||http://us.imdb.com/M/title-exact?Nothing%20to%20Lose%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1265|Star Maps (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Star+Maps+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1266|Bread and Chocolate (Pane e cioccolata) (1973)|01-Jan-1973||http://us.imdb.com/M/title-exact?Pane%20e%20Cioccolata%20(1973)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1267|Clockers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Clockers%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1268|Bitter Moon (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Lunes%20de%20fiel%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1269|Love in the Afternoon (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Love%20in%20the%20Afternoon%20(1957)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1270|Life with Mikey (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Life%20with%20Mikey%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1271|North (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?North%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1272|Talking About Sex (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Talking%20About%20Sex%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1273|Color of Night (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Color%20of%20Night%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1274|Robocop 3 (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Robocop%203%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +1275|Killer (Bulletproof Heart) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Killer%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1276|Sunset Park (1996)|26-Apr-1996||http://us.imdb.com/M/title-exact?Sunset%20Park%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1277|Set It Off (1996)|25-Sep-1996||http://us.imdb.com/M/title-exact?Set%20It%20Off%20(1996)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1278|Selena (1997)|21-Mar-1997||http://us.imdb.com/M/title-exact?Selena%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +1279|Wild America (1997)|04-Jul-1997||http://us.imdb.com/M/title-exact?Wild+America+(1997)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1280|Gang Related (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Gang+Related+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1281|Manny & Lo (1996)|26-Jul-1996||http://us.imdb.com/M/title-exact?Manny%20&%20Lo%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1282|Grass Harp, The (1995)|11-Oct-1996||http://us.imdb.com/M/title-exact?Grass%20Harp,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1283|Out to Sea (1997)|04-Jul-1997||http://us.imdb.com/M/title-exact?Out+to+Sea+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1284|Before and After (1996)|23-Feb-1996||http://us.imdb.com/M/title-exact?Before%20and%20After%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +1285|Princess Caraboo (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Princess%20Caraboo%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1286|Shall We Dance? (1937)|01-Jan-1937||http://us.imdb.com/M/title-exact?Shall%20We%20Dance?%20(1937)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +1287|Ed (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?Ed%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1288|Denise Calls Up (1995)|29-Mar-1996||http://us.imdb.com/M/title-exact?Denise%20Calls%20Up%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1289|Jack and Sarah (1995)|22-Mar-1996||http://us.imdb.com/M/title-exact?Jack%20and%20Sarah%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1290|Country Life (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Country%20Life%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1291|Celtic Pride (1996)|19-Apr-1996||http://us.imdb.com/M/title-exact?Celtic%20Pride%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1292|Simple Wish, A (1997)|11-Jul-1997||http://us.imdb.com/M/title-exact?Simple+Wish%2C+A+(1997)|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +1293|Star Kid (1997)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120478|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0|1|0|0|0 +1294|Ayn Rand: A Sense of Life (1997)|13-Feb-1998||http://us.imdb.com/Title?Ayn+Rand%3A+A+Sense+of+Life+(1997)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1295|Kicked in the Head (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Kicked+in+the+Head+(1997)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1296|Indian Summer (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Indian+Summer+(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1297|Love Affair (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Love%20Affair%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1298|Band Wagon, The (1953)|01-Jan-1953||http://us.imdb.com/M/title-exact?Band%20Wagon,%20The%20(1953)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +1299|Penny Serenade (1941)|01-Jan-1941||http://us.imdb.com/M/title-exact?Penny%20Serenade%20(1941)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1300|'Til There Was You (1997)|30-May-1997||http://us.imdb.com/Title?%27Til+There+Was+You+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1301|Stripes (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Stripes+(1981)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1302|Late Bloomers (1996)|06-Jun-1997||http://us.imdb.com/M/title-exact?Late%20Bloomers%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1303|Getaway, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Getaway,%20The%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1304|New York Cop (1996)|01-Jan-1996||http://us.imdb.com/Title?New+York+Cop+(1996)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1305|National Lampoon's Senior Trip (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?National%20Lampoon's%20Senior%20Trip%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1306|Delta of Venus (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Delta%20of%20Venus%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1307|Carmen Miranda: Bananas Is My Business (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Carmen%20Miranda:%20Bananas%20Is%20My%20Business%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1308|Babyfever (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Babyfever%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1309|Very Natural Thing, A (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Very%20Natural%20Thing,%20A%20(1974)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1310|Walk in the Sun, A (1945)|01-Jan-1945||http://us.imdb.com/M/title-exact?Walk%20in%20the%20Sun,%20A%20(1945)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1311|Waiting to Exhale (1995)|15-Jan-1996||http://us.imdb.com/M/title-exact?Waiting%20to%20Exhale%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1312|Pompatus of Love, The (1996)|26-Jul-1996||http://us.imdb.com/M/title-exact?Pompatus%20of%20Love,%20The%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1313|Palmetto (1998)|20-Feb-1998||http://us.imdb.com/M/title-exact?Palmetto+(1998)|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0|1|0|0 +1314|Surviving the Game (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Surviving%20the%20Game%20(1994)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1315|Inventing the Abbotts (1997)|04-Apr-1997||http://us.imdb.com/M/title-exact?Inventing%20the%20Abbotts%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1316|Horse Whisperer, The (1998)|25-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-119314|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1317|Journey of August King, The (1995)|22-Mar-1996||http://us.imdb.com/M/title-exact?Journey%20of%20August%20King,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1318|Catwalk (1995)|07-Jun-1996||http://us.imdb.com/Title?Catwalk+(1995/I)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1319|Neon Bible, The (1995)|01-Mar-1996||http://us.imdb.com/M/title-exact?Neon%20Bible,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1320|Homage (1995)|03-May-1996||http://us.imdb.com/M/title-exact?Homage%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1321|Open Season (1996)|10-May-1996||http://us.imdb.com/Title?Open+Season+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1322|Metisse (Caf au Lait) (1993)|01-Jan-1993||http://us.imdb.com/Title?M%E9tisse+(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1323|Wooden Man's Bride, The (Wu Kui) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Wu%20Kui%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1324|Loaded (1994)|12-Apr-1996||http://us.imdb.com/M/title-exact?Loaded%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1325|August (1996)|12-Apr-1996||http://us.imdb.com/M/title-exact?August%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1326|Boys (1996)|10-May-1996||http://us.imdb.com/M/title-exact?Boys%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1327|Captives (1994)|16-Sep-1994||http://us.imdb.com/Title?Captives+(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1328|Of Love and Shadows (1994)|10-May-1996||http://us.imdb.com/M/title-exact?Of%20Love%20and%20Shadows%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1329|Low Life, The (1994)|10-May-1996||http://us.imdb.com/Title?Low+Life,+The+(1994/I)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1330|An Unforgettable Summer (1994)|01-Jan-1994||http://us.imdb.com/Title?Un+%E9t%E9+inoubliable+(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1331|Last Klezmer: Leopold Kozlowski, His Life and Music, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Last%20Klezmer%3A%20Leopold%20Kozlowski%2C%20His%20Life%20and%20Music%2C%20The%20%281995%29|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1332|My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?En%20compagnie%20d'Antonin%20Artaud%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1333|Midnight Dancers (Sibak) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Sibak%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1334|Somebody to Love (1994)|14-Jun-1996||http://us.imdb.com/Title?Somebody+to+Love+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1335|American Buffalo (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?American%20Buffalo%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1336|Kazaam (1996)|17-Jul-1996||http://us.imdb.com/M/title-exact?Kazaam%20(1996)|0|0|0|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0 +1337|Larger Than Life (1996)|01-Nov-1996||http://us.imdb.com/M/title-exact?Larger%20Than%20Life%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1338|Two Deaths (1995)|09-Aug-1996||http://us.imdb.com/Title?Two+Deaths+(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1339|Stefano Quantestorie (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Stefano%20Quantestorie%20%281993%29|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1340|Crude Oasis, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Crude%20Oasis,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1341|Hedd Wyn (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Hedd%20Wyn%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1342|Convent, The (Convento, O) (1995)|14-Jun-1996||http://us.imdb.com/M/title-exact?Convento,%20O%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1343|Lotto Land (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Lotto%20Land%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1344|Story of Xinghua, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Story%20of%20Xinghua,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1345|Day the Sun Turned Cold, The (Tianguo niezi) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Tianguo%20Niezi%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1346|Dingo (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Dingo%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1347|Ballad of Narayama, The (Narayama Bushiko) (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Narayama%20Bushiko%20%281958%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1348|Every Other Weekend (1990)|01-Jan-1990||http://us.imdb.com/Title?Un+week-end+sur+deux+(1990)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1349|Mille bolle blu (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Mille%20bolle%20blu%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1350|Crows and Sparrows (1949)|01-Jan-1949||http://us.imdb.com/Title?Wuya+yu+maque+(1949)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1351|Lover's Knot (1996)|12-Jul-1996||http://us.imdb.com/M/title-exact?Lover's%20Knot%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1352|Shadow of Angels (Schatten der Engel) (1976)|01-Jan-1976||http://us.imdb.com/M/title-exact?Schatten%20der%20Engel%20(1976)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1353|1-900 (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?06%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1354|Venice/Venice (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Venice/Venice%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1355|Infinity (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Infinity%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1356|Ed's Next Move (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Ed%27s%20Next%20Move%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1357|For the Moment (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?For%20the%20Moment%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0 +1358|The Deadly Cure (1996)|16-Sep-1996|||0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1359|Boys in Venice (1996)|24-Sep-1996|||0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1360|Sexual Life of the Belgians, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Vie%20sexuelle%20des%20Belges,%20La%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1361|Search for One-eye Jimmy, The (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Search%20for%20One-eye%20Jimmy,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1362|American Strays (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?American%20Strays%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1363|Leopard Son, The (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Leopard%20Son,%20The%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1364|Bird of Prey (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Bird%20of%20Prey%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1365|Johnny 100 Pesos (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Johnny%20100%20Pesos%20(1993)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1366|JLG/JLG - autoportrait de dcembre (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?JLG/JLG%20-%20autoportrait%20de%20d%E9cembre%20%281994%29|0|0|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0 +1367|Faust (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Faust%20%281994%29|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1368|Mina Tannenbaum (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mina%20Tannenbaum%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1369|Forbidden Christ, The (Cristo proibito, Il) (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Cristo%20proibito%2C%20Il%20%281950%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1370|I Can't Sleep (J'ai pas sommeil) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?J'ai%20pas%20sommeil%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1371|Machine, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Machine,%20La%20(1994)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +1372|Stranger, The (1994)|01-Jan-1994||http://us.imdb.com/Title?Stranger,+The+(1994/II)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1373|Good Morning (1971)|4-Feb-1971||http://us.imdb.com/M/title-exact?Good%20Morning%20(1971)|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1374|Falling in Love Again (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Falling%20in%20Love%20Again%20(1980)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1375|Cement Garden, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Cement%20Garden,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1376|Meet Wally Sparks (1997)|31-Jan-1997||http://us.imdb.com/M/title-exact?Meet%20Wally%20Sparks%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1377|Hotel de Love (1996)|07-Feb-1997||http://us.imdb.com/M/title-exact?Hotel%20de%20Love%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1378|Rhyme & Reason (1997)|05-Mar-1997||http://us.imdb.com/M/title-exact?Rhyme%20%26%20Reason%20(1997)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1379|Love and Other Catastrophes (1996)|28-Mar-1997||http://us.imdb.com/M/title-exact?Love%20and%20Other%20Catastrophes%20%281996%29|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1380|Hollow Reed (1996)|02-May-1997||http://us.imdb.com/Title?Hollow+Reed+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1381|Losing Chase (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Losing%20Chase%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1382|Bonheur, Le (1965)|16-May-1997||http://us.imdb.com/M/title-exact?Bonheur%2C%20Le%20%281965%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1383|Second Jungle Book: Mowgli & Baloo, The (1997)|16-May-1997||http://us.imdb.com/M/title-exact?Second%20Jungle%20Book%3A%20Mowgli%20%26%20Baloo%2C%20The%20%281997%29|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1384|Squeeze (1996)|13-Jun-1997||http://us.imdb.com/M/title-exact?Squeeze%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1385|Roseanna's Grave (For Roseanna) (1997)|20-Jun-1997||http://us.imdb.com/M/title-exact?Roseanna%27s+Grave+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1386|Tetsuo II: Body Hammer (1992)|20-Jun-1997||http://us.imdb.com/M/title-exact?Tetsuo+II%3A+Body+Hammer+(1992)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1387|Fall (1997)|27-Jun-1997||http://us.imdb.com/M/title-exact?Fall+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1388|Gabbeh (1996)|27-Jun-1997||http://us.imdb.com/M/title-exact?Gabbeh+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1389|Mondo (1996)|27-Jun-1997||http://us.imdb.com/M/title-exact?Mondo+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1390|Innocent Sleep, The (1995)|27-Jun-1997||http://us.imdb.com/M/title-exact?Innocent+Sleep%2C+The+(1995)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1391|For Ever Mozart (1996)|04-Jul-1997||http://us.imdb.com/M/title-exact?For+Ever+Mozart+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1392|Locusts, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Locusts%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1393|Stag (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Stag+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1394|Swept from the Sea (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Swept+from+the+Sea+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1395|Hurricane Streets (1998)|01-Jan-1998||http://us.imdb.com/Title?Hurricane+Streets+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1396|Stonewall (1995)|26-Jul-1996||http://us.imdb.com/M/title-exact?Stonewall%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1397|Of Human Bondage (1934)|01-Jan-1934||http://us.imdb.com/M/title-exact?Of%20Human%20Bondage%20(1934)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1398|Anna (1996)|13-Nov-1996||http://us.imdb.com/M/title-exact?Anna%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1399|Stranger in the House (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120222|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1400|Picture Bride (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Picture%20Bride%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1401|M. Butterfly (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?M.%20Butterfly%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1402|Ciao, Professore! (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Io%20speriamo%20che%20me%20la%20cavo%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1403|Caro Diario (Dear Diary) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Caro%20diario%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1404|Withnail and I (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Withnail%20and%20I%20(1987)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1405|Boy's Life 2 (1997)|07-Mar-1997||http://us.imdb.com/M/title-exact?Boy%27s%20Life%202%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1406|When Night Is Falling (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?When%20Night%20is%20Falling%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1407|Specialist, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Specialist,%20The%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1408|Gordy (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Gordy%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1409|Swan Princess, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Swan%20Princess,%20The%20(1994)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1410|Harlem (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Harlem%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1411|Barbarella (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?Barbarella%20(1968)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1412|Land Before Time III: The Time of the Great Giving (1995) (V)|01-Jan-1995||http://us.imdb.com/M/title-exact?Land%20Before%20Time%20III%3A%20The%20Time%20of%20the%20Great%20Giving%20%281995%29%20%28V%29|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1413|Street Fighter (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Street%20Fighter%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1414|Coldblooded (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Coldblooded%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1415|Next Karate Kid, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Next%20Karate%20Kid,%20The%20(1994)|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1416|No Escape (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?No%20Escape%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1417|Turning, The (1992)|02-May-1997||http://us.imdb.com/M/title-exact?Turning%2C%20The%20%281992%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1418|Joy Luck Club, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Joy+Luck+Club%2C+The+(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1419|Highlander III: The Sorcerer (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Highlander%20III:%20The%20Sorcerer%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1420|Gilligan's Island: The Movie (1998)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119195|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1421|My Crazy Life (Mi vida loca) (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Mi%20vida%20loca%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1422|Suture (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Suture%20(1993)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0 +1423|Walking Dead, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Walking%20Dead,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +1424|I Like It Like That (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?I%20Like%20It%20Like%20That%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +1425|I'll Do Anything (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?I'll%20Do%20Anything%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1426|Grace of My Heart (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Grace%20of%20My%20Heart%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1427|Drunks (1995)|01-Nov-1996||http://us.imdb.com/M/title-exact?Drunks%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1428|SubUrbia (1997)|07-Feb-1997||http://us.imdb.com/M/title-exact?SubUrbia%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1429|Sliding Doors (1998)|01-Jan-1998||http://us.imdb.com/Title?Sliding+Doors+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1430|Ill Gotten Gains (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119352|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1431|Legal Deceit (1997)|01-Jan-1997||http://us.imdb.com/Title?Legal+Deceit+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1432|Mighty, The (1998)|09-Oct-1998||http://us.imdb.com/Title?Mighty,+The+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1433|Men of Means (1998)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119655|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1434|Shooting Fish (1997)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120122|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1435|Steal Big, Steal Little (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Steal%20Big,%20Steal%20Little%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1436|Mr. Jones (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Mr.%20Jones%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1437|House Party 3 (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?House%20Party%203%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1438|Panther (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Panther%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1439|Jason's Lyric (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Jason's%20Lyric%20(1994)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1440|Above the Rim (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Above%20the%20Rim%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1441|Moonlight and Valentino (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Moonlight%20and%20Valentino%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1442|Scarlet Letter, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Scarlet%20Letter,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1443|8 Seconds (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?8%20Seconds%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1444|That Darn Cat! (1965)|01-Jan-1965||http://us.imdb.com/Title?That+Darn+Cat%21+(1965)|0|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +1445|Ladybird Ladybird (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Ladybird%20Ladybird%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1446|Bye Bye, Love (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Bye%20Bye,%20Love%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1447|Century (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Century%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1448|My Favorite Season (1993)|19-Apr-1996||http://us.imdb.com/Title?Ma+saison+pr%E9f%E9r%E9e+(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1449|Pather Panchali (1955)|22-Mar-1996||http://us.imdb.com/M/title-exact?Pather%20Panchali%20(1955)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1450|Golden Earrings (1947)|01-Jan-1947||http://us.imdb.com/M/title-exact?Golden%20Earrings%20%281947%29|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1451|Foreign Correspondent (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Foreign%20Correspondent%20(1940)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1452|Lady of Burlesque (1943)|01-Jan-1943||http://us.imdb.com/M/title-exact?Lady%20of%20Burlesque%20(1943)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +1453|Angel on My Shoulder (1946)|01-Jan-1946||http://us.imdb.com/M/title-exact?Angel%20on%20My%20Shoulder%20(1946)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1454|Angel and the Badman (1947)|01-Jan-1947||http://us.imdb.com/M/title-exact?Angel%20and%20the%20Badman%20(1947)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +1455|Outlaw, The (1943)|01-Jan-1943||http://us.imdb.com/M/title-exact?Outlaw,%20The%20(1943)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +1456|Beat the Devil (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Beat%20the%20Devil%20(1954)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1457|Love Is All There Is (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Love%20Is%20All%20There%20Is%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1458|Damsel in Distress, A (1937)|01-Jan-1937||http://us.imdb.com/M/title-exact?Damsel%20in%20Distress,%20A%20(1937)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +1459|Madame Butterfly (1995)|20-Sep-1996||http://us.imdb.com/M/title-exact?Madame%20Butterfly%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +1460|Sleepover (1995)|25-Oct-1996||http://us.imdb.com/M/title-exact?Sleepover%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1461|Here Comes Cookie (1935)|01-Jan-1935||http://us.imdb.com/M/title-exact?Here%20Comes%20Cookie%20(1935)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1462|Thieves (Voleurs, Les) (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Voleurs,%20Les%20(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|1|0|0|0|0 +1463|Boys, Les (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-118764|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1464|Stars Fell on Henrietta, The (1995)|01-Jan-1995||http://us.imdb.com/Title?Stars+Fell+on+Henrietta,+The+(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1465|Last Summer in the Hamptons (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Last%20Summer%20in%20the%20Hamptons%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1466|Margaret's Museum (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Margaret's%20Museum%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1467|Saint of Fort Washington, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Saint%20of%20Fort%20Washington,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1468|Cure, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Cure,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1469|Tom and Huck (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tom%20and%20Huck%20(1995)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1470|Gumby: The Movie (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Gumby:%20The%20Movie%20(1995)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1471|Hideaway (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Hideaway%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1472|Visitors, The (Visiteurs, Les) (1993)|19-Jul-1996||http://us.imdb.com/M/title-exact?Visiteurs,%20Les%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +1473|Little Princess, The (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Little%20Princess,%20The%20(1939)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1474|Nina Takes a Lover (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Nina%20Takes%20a%20Lover%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1475|Bhaji on the Beach (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Bhaji%20on%20the%20Beach%20(1993)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1476|Raw Deal (1948)|01-Jan-1948||http://us.imdb.com/M/title-exact?Raw%20Deal%20(1948)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0 +1477|Nightwatch (1997)|22-Apr-1997||http://us.imdb.com/M/title-exact?Nightwatch%20(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +1478|Dead Presidents (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dead%20Presidents%20(1995)|0|1|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1479|Reckless (1995)|01-Jan-1995||http://us.imdb.com/Title?Reckless+(1995/I)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1480|Herbie Rides Again (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Herbie%20Rides%20Again%20(1974)|0|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1481|S.F.W. (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?S.F.W.%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1482|Gate of Heavenly Peace, The (1995)|10-May-1996||http://us.imdb.com/M/title-exact?Gate%20of%20Heavenly%20Peace,%20The%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1483|Man in the Iron Mask, The (1998)|17-Mar-1998||http://us.imdb.com/Title?Man+in+the+Iron+Mask,+The+(1998/I)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1484|Jerky Boys, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Jerky%20Boys,%20The%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1485|Colonel Chabert, Le (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Colonel%20Chabert,%20Le%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +1486|Girl in the Cadillac (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Girl%20in%20the%20Cadillac%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1487|Even Cowgirls Get the Blues (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Even%20Cowgirls%20Get%20the%20Blues%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1488|Germinal (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Germinal%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1489|Chasers (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Chasers%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1490|Fausto (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fausto%20%281993%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1491|Tough and Deadly (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tough%20and%20Deadly%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1492|Window to Paris (1994)|01-Jan-1994||http://us.imdb.com/Title?Okno+v+Parizh+(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1493|Modern Affair, A (1995)|06-Sep-1996||http://us.imdb.com/M/title-exact?Modern%20Affair,%20A%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1494|Mostro, Il (1994)|19-Apr-1996||http://us.imdb.com/M/title-exact?Mostro,%20Il%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1495|Flirt (1995)|07-Aug-1996||http://us.imdb.com/Title?Flirt+(1995/I)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1496|Carpool (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Carpool%20(1996)|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +1497|Line King: Al Hirschfeld, The (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Line%20King,%20The%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1498|Farmer & Chase (1995)|10-Jan-1997||http://us.imdb.com/M/title-exact?Farmer%20&%20Chase%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1499|Grosse Fatigue (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Grosse%20fatigue%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1500|Santa with Muscles (1996)|08-Nov-1996||http://us.imdb.com/M/title-exact?Santa%20with%20Muscles%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1501|Prisoner of the Mountains (Kavkazsky Plennik) (1996)|31-Jan-1997||http://us.imdb.com/M/title-exact?Kavkazsky%20Plennik%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +1502|Naked in New York (1994)|01-Jan-1994||http://us.imdb.com/Title?Naked+in+New+York+(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1503|Gold Diggers: The Secret of Bear Mountain (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Gold%20Diggers:%20The%20Secret%20of%20Bear%20Mountain%20(1995)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1504|Bewegte Mann, Der (1994)|12-Jul-1996||http://us.imdb.com/M/title-exact?Bewegte%20Mann%2C%20Der%20%281994%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1505|Killer: A Journal of Murder (1995)|06-Sep-1996||http://us.imdb.com/M/title-exact?Killer:%20A%20Journal%20of%20Murder%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1506|Nelly & Monsieur Arnaud (1995)|12-Apr-1996||http://us.imdb.com/M/title-exact?Nelly%20%26%20Monsieur%20Arnaud%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1507|Three Lives and Only One Death (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Trois%20vies%20et%20une%20seule%20mort%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1508|Babysitter, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Babysitter,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1509|Getting Even with Dad (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Getting%20Even%20with%20Dad%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1510|Mad Dog Time (1996)|08-Nov-1996||http://us.imdb.com/M/title-exact?Mad%20Dog%20Time%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1511|Children of the Revolution (1996)|01-May-1997||http://us.imdb.com/M/title-exact?Children%20of%20the%20Revolution%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1512|World of Apu, The (Apur Sansar) (1959)|05-Apr-1996||http://us.imdb.com/M/title-exact?Apur%20Sansar%20(1959)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1513|Sprung (1997)|14-May-1997||http://us.imdb.com/M/title-exact?Sprung%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1514|Dream With the Fishes (1997)|20-Jun-1997||http://us.imdb.com/M/title-exact?Dream+With+the+Fishes+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1515|Wings of Courage (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Wings%20of%20Courage%20(1995)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1516|Wedding Gift, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Wedding%20Gift,%20The%20(1994)%20(TV)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1517|Race the Sun (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Race%20the%20Sun%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1518|Losing Isaiah (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Losing%20Isaiah%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1519|New Jersey Drive (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?New%20Jersey%20Drive%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1520|Fear, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Fear,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +1521|Mr. Wonderful (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Mr.%20Wonderful%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1522|Trial by Jury (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Trial%20by%20Jury%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1523|Good Man in Africa, A (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Good%20Man%20in%20Africa,%20A%20(1994)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1524|Kaspar Hauser (1993)|07-Jun-1996||http://us.imdb.com/Title?Kaspar+Hauser+(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1525|Object of My Affection, The (1998)|20-Mar-1998||http://us.imdb.com/Title?Object+of+My+Affection,+The+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1526|Witness (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Witness+(1985)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|1|0|0 +1527|Senseless (1998)|09-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120820|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1528|Nowhere (1997)|09-May-1997||http://us.imdb.com/M/title-exact?Nowhere%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1529|Underground (1995)|29-Mar-1996||http://us.imdb.com/M/title-exact?Underground%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +1530|Jefferson in Paris (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Jefferson%20in%20Paris%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1531|Far From Home: The Adventures of Yellow Dog (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Far%20From%20Home:%20The%20Adventures%20of%20Yellow%20Dog%20(1995)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1532|Foreign Student (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Foreign%20Student%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1533|I Don't Want to Talk About It (De eso no se habla) (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?De%20Eso%20No%20Se%20Habla%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1534|Twin Town (1997)|30-May-1997||http://us.imdb.com/M/title-exact?Twin%20Town%20%281997%29|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +1535|Enfer, L' (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Enfer,%20L'%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1536|Aiqing wansui (1994)|22-Jul-1996||http://us.imdb.com/M/title-exact?Aiqing%20Wansui%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1537|Cosi (1996)|11-Apr-1997||http://us.imdb.com/M/title-exact?Cosi%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1538|All Over Me (1997)|25-Apr-1997||http://us.imdb.com/M/title-exact?All%20Over%20Me%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1539|Being Human (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Being%20Human%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1540|Amazing Panda Adventure, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Amazing%20Panda%20Adventure,%20The%20(1995)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1541|Beans of Egypt, Maine, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Beans%20of%20Egypt,%20Maine,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1542|Scarlet Letter, The (1926)|01-Jan-1926||http://us.imdb.com/M/title-exact?Scarlet%20Letter,%20The%20(1926)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1543|Johns (1996)|18-Oct-1996||http://us.imdb.com/M/title-exact?Johns%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1544|It Takes Two (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?It%20Takes%20Two%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1545|Frankie Starlight (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Frankie%20Starlight%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1546|Shadows (Cienie) (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Cienie%20(1988)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1547|Show, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Show,%20The%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1548|The Courtyard (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Courtyard,%20The%20(1995)%20(TV)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1549|Dream Man (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dream%20Man%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1550|Destiny Turns on the Radio (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Destiny%20Turns%20on%20the%20Radio%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1551|Glass Shield, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Glass%20Shield,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1552|Hunted, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Hunted,%20The%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1553|Underneath, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Underneath,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +1554|Safe Passage (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Safe%20Passage%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1555|Secret Adventures of Tom Thumb, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Secret%20Adventures%20of%20Tom%20Thumb,%20The%20(1993)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1556|Condition Red (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Condition%20Red%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1557|Yankee Zulu (1994)|16-Feb-1996||http://us.imdb.com/M/title-exact?Yankee%20Zulu%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1558|Aparajito (1956)|29-Mar-1996||http://us.imdb.com/M/title-exact?Aparajito%20(1956)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1559|Hostile Intentions (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Hostile%20Intentions%20(1994)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1560|Clean Slate (Coup de Torchon) (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Coup%20de%20torchon%20(1981)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1561|Tigrero: A Film That Was Never Made (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Tigrero:%20A%20Film%20That%20Was%20Never%20Made%20(1994)|0|0|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0 +1562|Eye of Vichy, The (Oeil de Vichy, L') (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Oeil%20de%20Vichy,%20L'%20(1993)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1563|Promise, The (Versprechen, Das) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Versprechen,%20Das%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1564|To Cross the Rubicon (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?To%20Cross%20the%20Rubicon%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1565|Daens (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Daens%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1566|Man from Down Under, The (1943)|01-Jan-1943||http://us.imdb.com/Title?Man+from+Down+Under,+The+(1943)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1567|Careful (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Careful%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1568|Vermont Is For Lovers (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Vermont%20Is%20For%20Lovers%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1569|Vie est belle, La (Life is Rosey) (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Vie%20est%20belle,%20La%20(1987)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1570|Quartier Mozart (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Quartier%20Mozart%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1571|Touki Bouki (Journey of the Hyena) (1973)|01-Jan-1973||http://us.imdb.com/M/title-exact?Touki%20Bouki%20(1973)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1572|Wend Kuuni (God's Gift) (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Wend%20Kuuni%20(1982)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1573|Spirits of the Dead (Tre passi nel delirio) (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?Tre%20passi%20nel%20delirio%20(1968)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +1574|Pharaoh's Army (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Pharaoh's%20Army%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +1575|I, Worst of All (Yo, la peor de todas) (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Yo,%20la%20Peor%20de%20Todas%20(1990)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1576|Hungarian Fairy Tale, A (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Hol%20volt,%20hol%20nem%20volt%20(1987)|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +1577|Death in the Garden (Mort en ce jardin, La) (1956)|01-Jan-1956||http://us.imdb.com/Title?Mort+en+ce+jardin,+La+(1956)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1578|Collectionneuse, La (1967)|01-Jan-1967||http://us.imdb.com/M/title-exact?Collectionneuse,%20La%20(1967)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1579|Baton Rouge (1988)|01-Jan-1988||http://us.imdb.com/Title?B%E2ton+rouge+(1988)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1580|Liebelei (1933)|01-Jan-1933||http://us.imdb.com/M/title-exact?Liebelei%20(1933)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1581|Woman in Question, The (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Woman%20in%20Question,%20The%20(1950)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0 +1582|T-Men (1947)|01-Jan-1947||http://us.imdb.com/M/title-exact?T-Men%20(1947)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0 +1583|Invitation, The (Zaproszenie) (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Zaproszenie%20(1986)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1584|Symphonie pastorale, La (1946)|01-Jan-1946||http://us.imdb.com/M/title-exact?Symphonie%20pastorale,%20La%20(1946)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1585|American Dream (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?American%20Dream%20(1990)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1586|Lashou shentan (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Lashou%20Shentan%20(1992)|0|1|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1587|Terror in a Texas Town (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Terror%20in%20a%20Texas%20Town%20(1958)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +1588|Salut cousin! (1996)|21-Feb-1997||http://us.imdb.com/M/title-exact?Salut%20cousin!%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1589|Schizopolis (1996)|23-May-1997||http://us.imdb.com/Title?Schizopolis+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1590|To Have, or Not (1995)|06-Jun-1997||http://us.imdb.com/M/title-exact?En%20avoir%20%28ou%20pas%29%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1591|Duoluo tianshi (1995)|21-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-112913|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1592|Magic Hour, The (1998)|30-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-119594|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1593|Death in Brunswick (1991)|16-Aug-1996||http://us.imdb.com/M/title-exact?Death%20in%20Brunswick%20(1991)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1594|Everest (1998)|10-Mar-1998||http://us.imdb.com/Title?Everest+(1998)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1595|Shopping (1994)|09-Feb-1996||http://us.imdb.com/M/title-exact?Shopping%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1596|Nemesis 2: Nebula (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Nemesis%202:%20Nebula%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +1597|Romper Stomper (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Romper%20Stomper%20(1992)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1598|City of Industry (1997)|14-Mar-1997||http://us.imdb.com/M/title-exact?City%20of%20Industry%20(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +1599|Someone Else's America (1995)|10-May-1996||http://us.imdb.com/M/title-exact?Someone%20Else's%20America%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1600|Guantanamera (1994)|16-May-1997||http://us.imdb.com/M/title-exact?Guantanamera%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1601|Office Killer (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119819|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1602|Price Above Rubies, A (1998)|20-Mar-1998||http://us.imdb.com/Title?Price+Above+Rubies,+A+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1603|Angela (1995)|16-Feb-1996||http://us.imdb.com/M/title-exact?Angela%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1604|He Walked by Night (1948)|01-Jan-1948||http://us.imdb.com/M/title-exact?He%20Walked%20by%20Night%20(1948)|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|1|0|0 +1605|Love Serenade (1996)|11-Jul-1997||http://us.imdb.com/M/title-exact?Love+Serenade+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1606|Deceiver (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Liar+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1607|Hurricane Streets (1998)|01-Jan-1998||http://us.imdb.com/Title?Hurricane+Streets+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1608|Buddy (1997)|06-Jun-1997||http://us.imdb.com/M/title-exact?Buddy%20%281997%29|0|0|1|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1609|B*A*P*S (1997)|28-Mar-1997||http://us.imdb.com/M/title-exact?B%2EA%2EP%2ES%2E%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1610|Truth or Consequences, N.M. (1997)|02-May-1997||http://us.imdb.com/Title?Truth+or+Consequences,+N.M.+(1997)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|0|0 +1611|Intimate Relations (1996)|09-May-1997||http://us.imdb.com/M/title-exact?Intimate%20Relations%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1612|Leading Man, The (1996)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-116845|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1613|Tokyo Fist (1995)|11-Feb-1998||http://us.imdb.com/M/title-exact?Tokyo+Fist+(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1614|Reluctant Debutante, The (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Reluctant%20Debutante,%20The%20(1958)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1615|Warriors of Virtue (1997)|02-May-1997||http://us.imdb.com/M/title-exact?Warriors%20of%20Virtue%20%281997%29|0|1|1|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +1616|Desert Winds (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Desert%20Winds%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1617|Hugo Pool (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Hugo+Pool+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1618|King of New York (1990)|01-Jan-1990||http://us.imdb.com/Title?King+of+New+York+(1990)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1619|All Things Fair (1996)|08-Mar-1996||http://us.imdb.com/Title?Lust+och+f%E4gring+stor+(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1620|Sixth Man, The (1997)|28-Mar-1997||http://us.imdb.com/M/title-exact?Sixth%20Man%2C%20The%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1621|Butterfly Kiss (1995)|26-Apr-1996||http://us.imdb.com/M/title-exact?Butterfly%20Kiss%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1622|Paris, France (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Paris,%20France%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1623|Crmonie, La (1995)|20-Dec-1996||http://us.imdb.com/M/title-exact?C%E9r%E9monie%2C%20La%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1624|Hush (1998)|10-Mar-1998||http://us.imdb.com/Title?Hush+(1998)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1625|Nightwatch (1997)|22-Apr-1997||http://us.imdb.com/M/title-exact?Nightwatch%20(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +1626|Nobody Loves Me (Keiner liebt mich) (1994)|09-Feb-1996||http://us.imdb.com/M/title-exact?Keiner%20liebt%20mich%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1627|Wife, The (1995)|26-Jul-1996||http://us.imdb.com/Title?Wife,+The+(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1628|Lamerica (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Lamerica%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1629|Nico Icon (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Nico%20Icon%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1630|Silence of the Palace, The (Saimt el Qusur) (1994)|02-Feb-1996||http://us.imdb.com/M/title-exact?Saimt%20el%20Qusur%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1631|Slingshot, The (1993)|01-Jan-1993||http://us.imdb.com/Title?K%E5disbellan+(1993)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1632|Land and Freedom (Tierra y libertad) (1995)|29-Mar-1996||http://us.imdb.com/M/title-exact?Tierra%20y%20libertad%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +1633| kldum klaka (Cold Fever) (1994)|08-Mar-1996||http://us.imdb.com/Title?%C1+k%F6ldum+klaka+(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1634|Etz Hadomim Tafus (Under the Domin Tree) (1994)|19-Apr-1996||http://us.imdb.com/M/title-exact?Etz%20Hadomim%20Tafus%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1635|Two Friends (1986) |26-Apr-1986||http://us.imdb.com/M/title-exact?Two%20Friends%20(1986)%20(TV)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1636|Brothers in Trouble (1995)|26-Apr-1996||http://us.imdb.com/M/title-exact?Brothers%20in%20Trouble%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1637|Girls Town (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Girls%20Town%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1638|Normal Life (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Normal%20Life%20(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1639|Bitter Sugar (Azucar Amargo) (1996)|22-Nov-1996||http://us.imdb.com/M/title-exact?Bitter%20Sugar%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1640|Eighth Day, The (1996)|01-Nov-1996||http://us.imdb.com/Title?Huiti%E8me+jour,+Le+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1641|Dadetown (1995)|18-Sep-1996||http://us.imdb.com/M/title-exact?Dadetown%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1642|Some Mother's Son (1996)|27-Dec-1996||http://us.imdb.com/M/title-exact?Some%20Mother's%20Son%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1643|Angel Baby (1995)|10-Jan-1997||http://us.imdb.com/Title?Angel+Baby+(1995/I)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1644|Sudden Manhattan (1996)|13-Jun-1997||http://us.imdb.com/M/title-exact?Sudden%20Manhattan%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1645|Butcher Boy, The (1998)|01-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-118804|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1646|Men With Guns (1997)|06-Mar-1998||http://us.imdb.com/Title?Men+with+Guns+(1997/I)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1647|Hana-bi (1997)|20-Mar-1998||http://us.imdb.com/Title?Hana-bi+(1997)|0|0|0|0|0|1|1|0|1|0|0|0|0|0|0|0|0|0|0 +1648|Niagara, Niagara (1997)|20-Mar-1998||http://us.imdb.com/Title?Niagara,+Niagara+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1649|Big One, The (1997)|27-Mar-1998||http://us.imdb.com/Title?Big+One,+The+(1997)|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0 +1650|Butcher Boy, The (1998)|01-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-118804|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1651|Spanish Prisoner, The (1997)|27-Mar-1998||http://us.imdb.com/Title?Spanish+Prisoner,+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1652|Temptress Moon (Feng Yue) (1996)|13-Jun-1997||http://us.imdb.com/M/title-exact?Feng%20Yue%20%281996%29|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1653|Entertaining Angels: The Dorothy Day Story (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Entertaining%20Angels:%20The%20Dorothy%20Day%20Story%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1654|Chairman of the Board (1998)|01-Jan-1998||http://us.imdb.com/Title?Chairman+of+the+Board+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1655|Favor, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Favor,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1656|Little City (1998)|20-Feb-1998||http://us.imdb.com/M/title-exact?Little+City+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1657|Target (1995)|28-Feb-1996||http://us.imdb.com/M/title-exact?Target%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1658|Substance of Fire, The (1996)|06-Dec-1996||http://us.imdb.com/M/title-exact?Substance%20of%20Fire,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1659|Getting Away With Murder (1996)|12-Apr-1996||http://us.imdb.com/Title?Getting+Away+With+Murder+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1660|Small Faces (1995)|09-Aug-1996||http://us.imdb.com/M/title-exact?Small%20Faces%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1661|New Age, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?New%20Age,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1662|Rough Magic (1995)|30-May-1997||http://us.imdb.com/M/title-exact?Rough%20Magic%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1663|Nothing Personal (1995)|30-Apr-1997||http://us.imdb.com/M/title-exact?Nothing%20Personal%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +1664|8 Heads in a Duffel Bag (1997)|18-Apr-1997||http://us.imdb.com/Title?8+Heads+in+a+Duffel+Bag+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1665|Brother's Kiss, A (1997)|25-Apr-1997||http://us.imdb.com/M/title-exact?Brother%27s%20Kiss%2C%20A%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1666|Ripe (1996)|02-May-1997||http://us.imdb.com/M/title-exact?Ripe%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1667|Next Step, The (1995)|13-Jun-1997||http://us.imdb.com/M/title-exact?Next%20Step%2C%20The%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1668|Wedding Bell Blues (1996)|13-Jun-1997||http://us.imdb.com/M/title-exact?Wedding%20Bell%20Blues%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1669|MURDER and murder (1996)|20-Jun-1997||http://us.imdb.com/M/title-exact?MURDER+and+murder+(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0 +1670|Tainted (1998)|01-Feb-1998||http://us.imdb.com/M/title-exact?Tainted+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0 +1671|Further Gesture, A (1996)|20-Feb-1998||http://us.imdb.com/M/title-exact?Further+Gesture%2C+A+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1672|Kika (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Kika%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1673|Mirage (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mirage%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1674|Mamma Roma (1962)|01-Jan-1962||http://us.imdb.com/M/title-exact?Mamma%20Roma%20(1962)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1675|Sunchaser, The (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Sunchaser,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1676|War at Home, The (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?War%20at%20Home%2C%20The%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1677|Sweet Nothing (1995)|20-Sep-1996||http://us.imdb.com/M/title-exact?Sweet%20Nothing%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1678|Mat' i syn (1997)|06-Feb-1998||http://us.imdb.com/M/title-exact?Mat%27+i+syn+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1679|B. Monkey (1998)|06-Feb-1998||http://us.imdb.com/M/title-exact?B%2E+Monkey+(1998)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +1680|Sliding Doors (1998)|01-Jan-1998||http://us.imdb.com/Title?Sliding+Doors+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1681|You So Crazy (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?You%20So%20Crazy%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1682|Scream of Stone (Schrei aus Stein) (1991)|08-Mar-1996||http://us.imdb.com/M/title-exact?Schrei%20aus%20Stein%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 diff --git a/example_datasets/Songs/song_interaction.csv b/example_datasets/Songs/song_interaction.csv new file mode 100644 index 0000000..c9d8308 --- /dev/null +++ b/example_datasets/Songs/song_interaction.csv @@ -0,0 +1,29683 @@ +,user_id,item_id,rating +0,0,1511,1 +1,0,3275,2 +2,0,3270,4 +3,0,8667,1 +4,0,3159,1 +5,0,5528,1 +6,0,2492,3 +7,0,762,3 +8,0,6440,5 +9,0,5429,1 +10,0,6071,2 +11,0,834,5 +12,0,7864,3 +13,0,8953,2 +14,1,5941,3 +15,1,116,5 +16,1,5851,5 +17,1,1128,2 +18,1,6623,4 +19,1,8659,1 +20,1,409,3 +21,1,8717,5 +22,1,1418,2 +23,1,7735,5 +24,1,5909,3 +25,1,3185,3 +26,1,1303,2 +27,1,6774,2 +28,1,4697,1 +29,1,3013,5 +30,1,9573,3 +31,1,705,3 +32,1,9732,4 +33,1,6305,3 +34,1,8484,3 +35,1,1325,5 +36,1,654,2 +37,2,791,4 +38,2,4684,2 +39,2,943,5 +40,2,6994,5 +41,2,4567,1 +42,2,1759,5 +43,2,565,4 +44,2,8781,4 +45,2,9110,3 +46,2,2501,2 +47,2,7526,3 +48,2,5713,3 +49,2,4785,5 +50,2,8518,3 +51,2,1591,1 +52,2,1129,5 +53,2,6424,1 +54,2,8435,4 +55,2,4162,2 +56,2,1246,4 +57,2,3870,4 +58,2,7905,4 +59,2,8818,3 +60,2,6037,1 +61,2,6452,4 +62,2,9613,2 +63,2,726,5 +64,2,441,1 +65,2,9736,2 +66,2,9362,2 +67,2,4406,5 +68,2,4774,5 +69,2,8442,4 +70,2,8313,2 +71,2,4548,3 +72,3,7524,5 +73,3,2913,2 +74,3,3018,4 +75,3,6002,3 +76,3,4070,4 +77,3,5782,1 +78,3,4382,1 +79,3,8150,5 +80,3,2373,2 +81,3,2081,2 +82,3,9895,4 +83,4,1059,2 +84,4,1123,5 +85,4,1698,3 +86,4,2924,5 +87,4,3546,3 +88,4,6861,5 +89,4,2475,1 +90,4,81,3 +91,4,233,1 +92,4,2534,3 +93,4,7280,5 +94,4,7513,3 +95,4,8598,1 +96,4,3468,5 +97,4,9718,5 +98,4,5755,3 +99,4,1680,5 +100,4,6509,3 +101,4,940,3 +102,4,2503,4 +103,4,2517,4 +104,4,7337,5 +105,5,8675,3 +106,5,3336,5 +107,5,9770,4 +108,5,3358,3 +109,5,365,5 +110,5,6122,5 +111,5,8853,5 +112,5,1823,2 +113,5,8138,5 +114,5,8814,2 +115,5,192,3 +116,5,7983,1 +117,5,6614,5 +118,5,579,1 +119,5,511,1 +120,5,3778,1 +121,6,9290,1 +122,6,4825,4 +123,6,9738,2 +124,6,3467,4 +125,6,2971,5 +126,6,4521,2 +127,6,6015,4 +128,6,3470,2 +129,6,7876,3 +130,6,1064,5 +131,6,4703,3 +132,6,8850,1 +133,6,350,1 +134,6,9841,5 +135,6,2221,5 +136,6,522,4 +137,6,7764,1 +138,6,7348,4 +139,6,1101,3 +140,6,8573,3 +141,6,9379,2 +142,6,1124,5 +143,6,8628,2 +144,6,2046,5 +145,6,4022,4 +146,6,9972,2 +147,6,4001,2 +148,6,1830,4 +149,6,961,5 +150,6,8896,1 +151,6,4159,4 +152,6,5479,4 +153,6,2293,1 +154,6,179,2 +155,6,8639,2 +156,6,4448,5 +157,6,9324,4 +158,6,1701,2 +159,7,5069,5 +160,7,7453,3 +161,7,4163,1 +162,7,7094,2 +163,7,3369,2 +164,7,6649,4 +165,7,5979,5 +166,7,2504,5 +167,7,7626,5 +168,7,7367,5 +169,7,1140,4 +170,7,2866,5 +171,7,2717,5 +172,7,7443,4 +173,7,3590,2 +174,7,2480,3 +175,7,9686,3 +176,7,4807,3 +177,7,4770,4 +178,7,36,2 +179,7,7395,3 +180,7,9764,5 +181,7,4065,1 +182,7,8685,5 +183,7,7756,1 +184,7,224,3 +185,7,6892,2 +186,7,9311,3 +187,7,6198,1 +188,7,2925,2 +189,7,1750,4 +190,7,9667,4 +191,7,910,5 +192,8,4463,1 +193,8,4320,2 +194,8,2824,5 +195,8,6189,5 +196,8,3934,1 +197,8,5495,1 +198,8,6329,3 +199,8,6471,5 +200,8,7090,4 +201,8,758,4 +202,8,3383,2 +203,8,566,4 +204,8,3846,4 +205,8,1266,5 +206,8,1779,1 +207,8,9935,1 +208,8,7611,3 +209,8,6516,2 +210,8,2048,1 +211,8,1894,2 +212,8,3456,4 +213,8,5994,1 +214,8,1834,5 +215,8,3299,5 +216,8,2363,3 +217,8,188,5 +218,8,58,2 +219,8,4916,4 +220,8,8425,3 +221,8,1138,2 +222,8,9005,2 +223,8,627,2 +224,8,9057,2 +225,8,3957,2 +226,8,6508,3 +227,8,1448,3 +228,8,5137,3 +229,9,7356,5 +230,9,1830,2 +231,9,3474,2 +232,9,3539,2 +233,9,4736,3 +234,9,5577,5 +235,9,2722,5 +236,9,5811,4 +237,9,5211,3 +238,9,5706,5 +239,9,5508,2 +240,9,7688,1 +241,9,4913,2 +242,9,6257,2 +243,9,4297,3 +244,9,3729,1 +245,9,9287,4 +246,9,9026,4 +247,9,1651,5 +248,9,2228,5 +249,9,8665,2 +250,9,2903,5 +251,9,8867,3 +252,9,2849,1 +253,9,7924,3 +254,9,4394,2 +255,9,4558,2 +256,9,5689,2 +257,9,8882,5 +258,9,5922,1 +259,9,5511,5 +260,9,307,2 +261,9,3331,1 +262,9,8563,2 +263,9,84,1 +264,9,6763,4 +265,9,5829,1 +266,9,7931,1 +267,9,8100,5 +268,9,1165,2 +269,9,8403,5 +270,9,3875,3 +271,9,9994,4 +272,10,3140,4 +273,10,827,1 +274,10,9104,4 +275,10,2216,4 +276,10,7840,1 +277,10,4841,1 +278,10,778,2 +279,10,4205,1 +280,10,5849,4 +281,10,2191,3 +282,10,470,3 +283,10,5066,1 +284,10,2311,1 +285,10,3215,1 +286,10,5148,1 +287,10,8516,4 +288,10,851,5 +289,10,3332,4 +290,10,5966,3 +291,10,6967,2 +292,10,5790,2 +293,10,8896,2 +294,10,5574,3 +295,10,8707,3 +296,10,669,3 +297,10,5493,3 +298,10,2235,4 +299,10,3043,4 +300,10,4195,4 +301,10,8450,4 +302,10,9135,2 +303,10,951,5 +304,10,4613,3 +305,10,2020,3 +306,10,9028,4 +307,10,3902,2 +308,10,9293,1 +309,10,4434,5 +310,10,7918,2 +311,10,8956,3 +312,11,854,3 +313,11,1078,5 +314,11,6165,3 +315,11,1447,3 +316,11,2977,1 +317,11,4379,4 +318,11,8999,4 +319,11,5190,4 +320,11,1424,5 +321,11,8411,5 +322,11,7871,4 +323,11,3355,5 +324,11,1481,2 +325,11,8099,2 +326,11,5347,2 +327,11,3795,5 +328,11,8941,5 +329,11,9669,1 +330,11,4491,3 +331,11,243,4 +332,12,6295,2 +333,12,3919,2 +334,12,2061,5 +335,12,30,5 +336,12,488,3 +337,12,9410,4 +338,12,8915,5 +339,12,4597,5 +340,12,3171,3 +341,12,4612,3 +342,13,753,3 +343,13,2002,2 +344,13,4539,4 +345,13,667,5 +346,13,4178,4 +347,13,9539,1 +348,13,8521,1 +349,13,9942,5 +350,13,6732,4 +351,13,2371,2 +352,13,3155,1 +353,13,2120,5 +354,13,1702,2 +355,13,3033,3 +356,13,2772,4 +357,13,1966,2 +358,13,9005,3 +359,13,9803,5 +360,13,8810,3 +361,13,9989,5 +362,13,9499,2 +363,13,4427,3 +364,13,1638,5 +365,13,6249,4 +366,13,6412,1 +367,13,9130,2 +368,13,4045,2 +369,13,4795,5 +370,13,4788,1 +371,13,2173,4 +372,13,7655,2 +373,13,429,1 +374,13,1533,5 +375,13,5140,5 +376,13,7243,1 +377,13,6499,1 +378,13,8390,1 +379,13,1091,3 +380,13,8391,3 +381,13,9717,1 +382,13,6157,1 +383,13,2344,2 +384,14,7332,2 +385,14,1678,1 +386,14,1752,5 +387,14,4988,1 +388,14,807,2 +389,14,6371,4 +390,14,6978,3 +391,14,9798,5 +392,14,8038,5 +393,14,1276,2 +394,14,5733,3 +395,14,2352,1 +396,14,7480,1 +397,14,6777,5 +398,14,5130,5 +399,14,4336,1 +400,14,2765,5 +401,14,4603,5 +402,14,3761,3 +403,14,4772,5 +404,14,2856,1 +405,14,9075,3 +406,14,8915,1 +407,14,1704,4 +408,14,1572,2 +409,14,4127,2 +410,14,3723,1 +411,14,3717,2 +412,14,3737,1 +413,14,8593,3 +414,14,2761,2 +415,14,5161,4 +416,14,2148,1 +417,15,4694,5 +418,15,1984,5 +419,15,4013,2 +420,15,2449,2 +421,15,6545,2 +422,15,8990,3 +423,15,2717,2 +424,15,3778,3 +425,15,8634,1 +426,15,3108,2 +427,15,7918,1 +428,15,7076,1 +429,15,4115,2 +430,15,3665,4 +431,15,3892,4 +432,16,674,4 +433,16,3926,3 +434,16,9322,2 +435,16,5859,5 +436,16,6220,2 +437,16,3685,3 +438,16,5639,4 +439,16,7352,4 +440,16,6102,3 +441,16,9604,4 +442,16,6170,3 +443,16,890,3 +444,16,4537,2 +445,16,8045,4 +446,16,4080,1 +447,16,794,2 +448,16,8691,5 +449,16,5482,1 +450,16,7246,5 +451,16,8581,3 +452,16,7226,5 +453,16,6353,2 +454,16,7105,2 +455,16,4656,4 +456,16,2457,5 +457,16,4870,5 +458,16,1296,4 +459,16,9514,3 +460,16,7073,1 +461,16,4670,5 +462,16,6164,2 +463,16,3747,2 +464,16,6327,2 +465,16,4680,2 +466,16,8154,4 +467,16,2117,1 +468,16,2313,4 +469,16,6088,4 +470,17,7095,4 +471,17,6530,5 +472,17,7349,3 +473,17,8373,1 +474,17,937,4 +475,17,3124,2 +476,17,2124,1 +477,17,9611,1 +478,17,2247,3 +479,17,8123,4 +480,17,4171,5 +481,17,663,3 +482,18,3785,1 +483,18,1414,2 +484,18,8119,1 +485,18,9387,1 +486,18,1854,1 +487,18,7263,2 +488,18,6273,1 +489,18,8186,4 +490,18,1194,1 +491,18,4261,5 +492,18,2953,4 +493,18,7042,2 +494,18,2217,3 +495,18,3502,1 +496,18,2408,1 +497,18,4807,5 +498,18,2750,4 +499,18,3891,4 +500,18,4478,5 +501,18,5892,3 +502,18,4996,5 +503,18,7550,3 +504,19,4617,4 +505,19,1104,4 +506,19,1249,2 +507,19,9766,3 +508,19,8577,4 +509,19,1069,1 +510,19,8038,4 +511,19,8347,4 +512,19,7370,3 +513,19,7669,2 +514,19,1216,4 +515,19,6866,3 +516,19,8175,1 +517,19,7831,3 +518,19,3341,5 +519,19,8270,4 +520,19,5218,4 +521,19,1973,5 +522,19,438,3 +523,19,9970,4 +524,19,4936,1 +525,19,1410,4 +526,19,3735,4 +527,19,5013,1 +528,19,9769,3 +529,19,868,4 +530,20,6855,1 +531,20,120,5 +532,20,2780,3 +533,20,3508,1 +534,20,3643,2 +535,20,7537,4 +536,20,5905,3 +537,20,682,3 +538,20,5565,2 +539,20,5767,4 +540,20,6025,2 +541,20,7506,2 +542,20,1443,3 +543,20,4336,3 +544,20,8013,1 +545,20,8534,1 +546,20,4903,2 +547,20,6744,3 +548,20,4385,1 +549,20,42,4 +550,20,7281,3 +551,20,9166,1 +552,21,6215,5 +553,21,408,5 +554,21,1666,1 +555,21,5584,3 +556,21,9784,2 +557,21,8411,3 +558,21,2928,5 +559,21,1022,3 +560,21,9482,5 +561,21,5130,1 +562,21,2608,2 +563,21,5985,3 +564,21,4177,4 +565,22,1042,3 +566,22,2919,5 +567,22,7932,1 +568,22,4453,2 +569,22,6633,3 +570,22,1098,1 +571,22,7051,5 +572,22,8337,5 +573,22,684,5 +574,22,8439,5 +575,22,7521,3 +576,22,765,4 +577,22,9763,4 +578,22,3383,5 +579,22,7007,4 +580,22,7475,3 +581,22,997,3 +582,22,9826,4 +583,22,9308,5 +584,22,1232,4 +585,22,5574,1 +586,22,9637,1 +587,22,8075,5 +588,22,4119,1 +589,22,9627,4 +590,22,1612,5 +591,22,4165,4 +592,22,964,5 +593,22,1693,5 +594,22,6903,4 +595,22,2529,2 +596,23,1728,3 +597,23,7851,2 +598,23,7746,5 +599,23,7594,2 +600,23,4947,2 +601,23,5032,1 +602,23,7582,4 +603,23,348,1 +604,23,3045,2 +605,23,2378,4 +606,23,5753,5 +607,23,3297,3 +608,23,9876,3 +609,23,7557,1 +610,23,7682,4 +611,23,4081,5 +612,23,3408,5 +613,23,8650,3 +614,23,3425,3 +615,23,711,4 +616,23,411,1 +617,23,4730,1 +618,23,8900,4 +619,23,9243,2 +620,23,2448,5 +621,23,2050,3 +622,24,5709,4 +623,24,3776,2 +624,24,2686,3 +625,24,7999,2 +626,24,9896,2 +627,24,9379,5 +628,24,706,2 +629,24,7975,5 +630,24,1529,1 +631,24,7904,3 +632,24,7261,3 +633,24,9059,4 +634,24,4586,4 +635,24,6915,5 +636,24,5070,5 +637,24,2884,1 +638,24,2037,2 +639,24,2853,5 +640,24,4622,3 +641,24,8065,1 +642,24,9300,3 +643,24,3308,3 +644,24,6093,5 +645,24,5519,2 +646,24,2675,2 +647,24,3454,4 +648,24,2895,2 +649,24,9471,5 +650,24,4384,3 +651,24,2131,2 +652,25,863,2 +653,25,7791,5 +654,25,9530,2 +655,25,812,5 +656,25,7461,3 +657,25,6678,4 +658,25,9233,4 +659,25,8510,3 +660,25,5430,1 +661,25,3614,4 +662,25,5501,1 +663,25,4217,2 +664,25,3932,1 +665,25,6563,2 +666,25,1621,1 +667,25,4794,5 +668,25,2127,3 +669,25,8586,4 +670,25,6742,5 +671,25,4628,3 +672,25,121,1 +673,25,8509,1 +674,25,9701,3 +675,25,2525,4 +676,25,2687,2 +677,25,4895,4 +678,25,1529,2 +679,25,2829,3 +680,25,4343,2 +681,25,5341,3 +682,25,7487,2 +683,25,9843,1 +684,25,5667,2 +685,25,4823,1 +686,25,3867,5 +687,26,3448,2 +688,26,6637,1 +689,26,3270,5 +690,26,6812,1 +691,26,2853,3 +692,26,8410,4 +693,26,6357,5 +694,26,4131,3 +695,26,7497,1 +696,26,345,4 +697,26,8678,5 +698,26,1982,4 +699,26,7,4 +700,26,8115,2 +701,26,5595,3 +702,26,473,3 +703,26,4822,4 +704,26,4623,3 +705,26,8223,2 +706,26,2119,1 +707,26,141,5 +708,26,673,2 +709,26,9573,2 +710,26,3998,3 +711,26,4644,1 +712,26,9146,2 +713,26,4885,3 +714,26,678,4 +715,26,9485,3 +716,26,6028,3 +717,26,1956,2 +718,26,4587,1 +719,26,1141,5 +720,26,7314,5 +721,26,2848,2 +722,26,654,2 +723,26,8708,5 +724,27,530,2 +725,27,7413,3 +726,27,3585,5 +727,27,2031,3 +728,27,1282,4 +729,27,5728,5 +730,27,1793,1 +731,27,2204,2 +732,27,4758,4 +733,27,2643,1 +734,27,4506,4 +735,27,7929,3 +736,27,3787,5 +737,27,4917,1 +738,27,5658,2 +739,27,8961,1 +740,27,7422,5 +741,27,6879,4 +742,27,798,2 +743,27,8849,3 +744,27,4395,5 +745,27,281,5 +746,27,9147,2 +747,27,3693,5 +748,27,5674,2 +749,27,2423,1 +750,27,7635,2 +751,27,6655,3 +752,27,1693,1 +753,27,9652,4 +754,27,7992,3 +755,27,7948,4 +756,27,1995,5 +757,27,5743,3 +758,27,753,4 +759,27,8829,1 +760,27,1735,1 +761,27,862,4 +762,27,1397,3 +763,27,3979,2 +764,27,2975,4 +765,27,4847,1 +766,28,8070,5 +767,28,4743,4 +768,28,936,3 +769,28,8623,3 +770,28,9443,1 +771,28,5970,1 +772,28,8594,2 +773,28,7496,3 +774,28,643,2 +775,28,7800,1 +776,28,4986,2 +777,28,3211,3 +778,28,5162,5 +779,28,2038,1 +780,28,1864,2 +781,28,6895,1 +782,28,3333,4 +783,28,3949,3 +784,28,5468,4 +785,28,309,5 +786,28,1793,5 +787,28,2342,4 +788,28,2738,3 +789,28,2165,1 +790,28,9693,3 +791,28,8827,1 +792,28,2130,1 +793,28,7848,5 +794,28,2607,1 +795,28,1303,3 +796,28,2430,1 +797,28,4224,1 +798,28,9701,5 +799,28,8266,3 +800,28,3487,2 +801,28,3876,3 +802,28,5850,3 +803,28,7150,2 +804,28,4880,5 +805,28,8455,1 +806,28,3399,1 +807,28,7712,2 +808,28,5659,4 +809,28,2244,2 +810,28,8735,5 +811,28,4238,5 +812,28,5752,4 +813,28,2519,4 +814,28,8749,3 +815,29,4609,5 +816,29,5644,1 +817,29,4702,1 +818,29,5055,3 +819,29,3438,5 +820,29,4749,5 +821,29,6086,4 +822,29,3047,3 +823,29,3220,2 +824,29,323,5 +825,29,6161,3 +826,29,5622,5 +827,29,2882,4 +828,29,3439,1 +829,29,3613,3 +830,29,2970,5 +831,29,537,2 +832,29,5985,4 +833,29,2977,2 +834,29,1581,1 +835,29,5360,2 +836,29,6546,1 +837,29,2083,2 +838,29,6272,3 +839,29,3888,3 +840,29,8125,5 +841,29,4680,5 +842,29,1064,5 +843,29,8222,3 +844,29,5301,3 +845,29,7633,2 +846,29,3114,2 +847,29,5415,2 +848,30,2795,3 +849,30,3405,4 +850,30,6204,2 +851,30,4478,5 +852,30,9895,3 +853,30,3758,2 +854,30,4470,3 +855,30,6646,5 +856,30,3745,2 +857,30,2924,5 +858,30,4647,5 +859,30,502,4 +860,30,7816,3 +861,31,4538,4 +862,31,4622,5 +863,31,1759,4 +864,31,7537,4 +865,31,5049,4 +866,31,3015,4 +867,31,2141,5 +868,31,499,3 +869,31,3379,2 +870,31,5388,5 +871,31,1263,2 +872,31,6000,4 +873,31,440,5 +874,31,1264,5 +875,31,2211,2 +876,31,4816,1 +877,31,4801,2 +878,32,1623,5 +879,32,1024,3 +880,32,6279,1 +881,32,6950,2 +882,32,634,1 +883,32,247,5 +884,32,6418,5 +885,32,9727,4 +886,32,7590,3 +887,32,4533,3 +888,32,2116,5 +889,32,8494,4 +890,32,6876,2 +891,32,4507,5 +892,32,2351,1 +893,32,6952,3 +894,32,5255,1 +895,32,5826,1 +896,32,2023,3 +897,32,4996,1 +898,32,8179,4 +899,33,563,1 +900,33,4748,2 +901,33,3977,2 +902,33,7961,2 +903,33,2016,3 +904,33,6690,3 +905,33,9902,1 +906,33,4977,1 +907,33,8551,2 +908,33,2429,2 +909,33,9547,2 +910,33,4598,3 +911,33,8578,2 +912,33,8622,2 +913,33,7263,1 +914,33,4803,1 +915,33,7146,5 +916,33,5645,4 +917,33,586,5 +918,34,5402,5 +919,34,9999,5 +920,34,9985,4 +921,34,5571,5 +922,34,249,3 +923,34,2292,5 +924,34,4710,5 +925,34,6745,4 +926,34,3362,5 +927,34,7229,3 +928,34,1869,4 +929,34,2381,2 +930,34,1926,3 +931,34,362,4 +932,34,5580,1 +933,34,9628,3 +934,34,4733,3 +935,35,6457,4 +936,35,5180,5 +937,35,6424,1 +938,35,8338,4 +939,35,7761,1 +940,35,3041,4 +941,35,6411,5 +942,35,5580,1 +943,35,7704,3 +944,35,6706,2 +945,35,1896,5 +946,35,7630,3 +947,35,3318,2 +948,35,1181,4 +949,35,5469,3 +950,35,4378,3 +951,35,1420,1 +952,35,6317,1 +953,35,1152,3 +954,35,2847,3 +955,35,786,3 +956,35,9176,2 +957,35,2135,1 +958,35,9425,1 +959,35,4964,3 +960,35,7862,2 +961,35,2205,5 +962,35,2114,4 +963,35,2620,4 +964,35,8813,5 +965,35,1190,4 +966,35,9584,2 +967,35,2196,3 +968,35,9833,1 +969,35,7396,4 +970,35,7449,3 +971,35,2009,3 +972,35,290,4 +973,35,407,3 +974,35,251,3 +975,35,1239,3 +976,35,5950,3 +977,35,2637,1 +978,35,7703,5 +979,35,8221,3 +980,35,4671,5 +981,35,4731,2 +982,36,613,1 +983,36,7064,5 +984,36,2411,4 +985,36,2645,4 +986,36,7105,2 +987,36,3036,2 +988,36,973,5 +989,36,9748,2 +990,36,7612,1 +991,36,6074,1 +992,36,7569,5 +993,36,1269,5 +994,36,9920,4 +995,36,4178,4 +996,36,5195,5 +997,36,8306,2 +998,36,2984,4 +999,36,423,3 +1000,36,2074,1 +1001,36,6277,4 +1002,36,4593,4 +1003,36,4258,4 +1004,36,9162,4 +1005,36,9805,4 +1006,36,6347,4 +1007,36,6604,5 +1008,36,8512,1 +1009,36,1011,4 +1010,36,7511,2 +1011,36,5255,1 +1012,36,6550,1 +1013,36,3044,2 +1014,36,7235,3 +1015,36,6489,3 +1016,36,2691,5 +1017,36,1665,3 +1018,36,708,3 +1019,36,2482,5 +1020,36,2456,4 +1021,36,262,2 +1022,36,9658,3 +1023,36,5969,1 +1024,36,9099,4 +1025,36,7154,1 +1026,36,1019,3 +1027,37,4019,2 +1028,37,6151,4 +1029,37,6451,2 +1030,37,6171,2 +1031,37,7937,4 +1032,37,7180,2 +1033,37,3054,4 +1034,37,2032,4 +1035,37,6301,5 +1036,37,4421,1 +1037,37,2504,5 +1038,37,3361,4 +1039,37,3051,4 +1040,37,1892,5 +1041,37,2215,4 +1042,37,8661,3 +1043,37,484,2 +1044,37,2128,3 +1045,37,2571,3 +1046,38,2214,4 +1047,38,6257,2 +1048,38,4038,2 +1049,38,4525,4 +1050,38,2108,1 +1051,38,402,3 +1052,38,1831,1 +1053,38,1719,5 +1054,38,1450,2 +1055,38,7282,5 +1056,38,1298,4 +1057,38,2237,2 +1058,38,8206,4 +1059,38,7878,4 +1060,38,6181,1 +1061,39,5927,2 +1062,39,5500,2 +1063,39,6197,4 +1064,39,5182,4 +1065,39,2165,4 +1066,39,4863,4 +1067,39,3265,1 +1068,39,9991,3 +1069,39,9132,1 +1070,39,1534,3 +1071,39,9121,5 +1072,39,6839,1 +1073,39,7197,2 +1074,39,898,3 +1075,39,2958,1 +1076,39,8173,1 +1077,39,4689,5 +1078,39,8489,5 +1079,39,8941,1 +1080,39,897,5 +1081,39,2831,2 +1082,39,4875,3 +1083,39,2618,4 +1084,39,7965,3 +1085,39,7055,5 +1086,39,336,3 +1087,39,1567,2 +1088,39,7720,5 +1089,40,4634,5 +1090,40,8855,2 +1091,40,2892,1 +1092,40,8557,2 +1093,40,6039,3 +1094,40,9616,3 +1095,40,5191,4 +1096,40,1253,3 +1097,40,9845,2 +1098,40,4922,2 +1099,40,3255,5 +1100,40,4484,3 +1101,40,7796,4 +1102,40,7920,3 +1103,40,2859,5 +1104,40,3129,5 +1105,40,3919,5 +1106,40,7176,3 +1107,40,3818,1 +1108,40,5985,5 +1109,40,611,1 +1110,40,9553,2 +1111,40,5096,5 +1112,40,4967,5 +1113,40,7301,3 +1114,40,3060,1 +1115,40,6603,2 +1116,40,498,2 +1117,40,121,4 +1118,40,9301,5 +1119,40,5159,4 +1120,40,88,2 +1121,40,4848,1 +1122,41,8340,1 +1123,41,6928,4 +1124,41,9081,4 +1125,41,3713,5 +1126,41,762,1 +1127,41,9251,5 +1128,41,5627,1 +1129,41,3697,4 +1130,41,9898,2 +1131,41,7923,3 +1132,41,4957,4 +1133,41,4726,1 +1134,41,1053,5 +1135,41,5695,1 +1136,41,9651,5 +1137,41,5593,4 +1138,41,3309,1 +1139,41,3235,4 +1140,41,6304,5 +1141,41,6588,2 +1142,41,358,1 +1143,41,7082,2 +1144,41,1230,4 +1145,41,2072,5 +1146,41,6143,2 +1147,41,6248,5 +1148,41,8733,3 +1149,41,3770,1 +1150,41,168,4 +1151,41,9525,1 +1152,41,4321,5 +1153,41,568,4 +1154,41,1572,5 +1155,41,8175,3 +1156,41,6735,2 +1157,41,5934,5 +1158,41,239,4 +1159,41,1515,4 +1160,41,4876,3 +1161,41,4971,1 +1162,41,3593,5 +1163,41,1536,4 +1164,42,136,3 +1165,42,7211,4 +1166,42,6104,5 +1167,42,3499,3 +1168,42,1785,1 +1169,42,3992,2 +1170,42,4432,3 +1171,42,4049,3 +1172,42,925,5 +1173,42,8016,4 +1174,42,1243,4 +1175,42,8454,4 +1176,42,2139,3 +1177,42,2692,1 +1178,42,1872,4 +1179,42,3174,4 +1180,42,6089,3 +1181,42,9854,5 +1182,42,3198,1 +1183,42,6535,5 +1184,42,6713,2 +1185,42,9222,3 +1186,42,7500,5 +1187,42,7806,1 +1188,42,7135,4 +1189,42,6880,5 +1190,42,8101,5 +1191,42,5916,4 +1192,42,1408,5 +1193,42,2584,2 +1194,42,5534,3 +1195,42,8890,4 +1196,42,3592,3 +1197,42,6326,2 +1198,42,5563,5 +1199,43,3168,2 +1200,43,6534,2 +1201,43,5935,1 +1202,43,638,5 +1203,43,3454,3 +1204,43,3271,2 +1205,43,7158,2 +1206,43,2029,1 +1207,43,2738,1 +1208,43,8356,5 +1209,44,4966,2 +1210,44,9187,5 +1211,44,9973,4 +1212,44,6690,3 +1213,44,686,5 +1214,44,1640,3 +1215,44,1600,5 +1216,44,3712,2 +1217,44,9876,2 +1218,44,183,5 +1219,44,3606,2 +1220,44,6017,5 +1221,44,3731,2 +1222,44,7601,5 +1223,44,814,4 +1224,44,4269,1 +1225,44,6843,3 +1226,44,8594,5 +1227,45,4981,5 +1228,45,7458,4 +1229,45,8394,1 +1230,45,9845,5 +1231,45,1125,5 +1232,45,5898,1 +1233,45,8687,5 +1234,45,7475,4 +1235,45,1659,5 +1236,45,101,4 +1237,45,2687,2 +1238,45,1669,4 +1239,45,5589,1 +1240,45,4929,4 +1241,45,396,5 +1242,45,6264,5 +1243,45,3288,3 +1244,45,4886,1 +1245,45,9739,5 +1246,45,1999,5 +1247,45,8944,1 +1248,45,5499,2 +1249,45,894,5 +1250,45,3135,5 +1251,45,4594,4 +1252,45,1050,5 +1253,45,3236,2 +1254,45,1150,5 +1255,45,2977,2 +1256,46,8445,5 +1257,46,2088,2 +1258,46,6950,1 +1259,46,6472,4 +1260,46,8834,5 +1261,46,4306,1 +1262,46,7135,3 +1263,46,6007,4 +1264,46,2540,5 +1265,46,501,5 +1266,46,4308,4 +1267,46,6894,2 +1268,46,7609,3 +1269,46,5744,2 +1270,46,2225,3 +1271,46,7289,4 +1272,46,7215,5 +1273,46,7753,3 +1274,46,8061,4 +1275,46,9471,3 +1276,46,9965,4 +1277,46,7155,4 +1278,47,6103,1 +1279,47,7918,2 +1280,47,1476,4 +1281,47,1225,5 +1282,47,1208,4 +1283,47,5401,1 +1284,47,6720,5 +1285,47,7206,4 +1286,47,8909,1 +1287,47,285,3 +1288,47,9886,5 +1289,47,8105,5 +1290,47,8600,3 +1291,47,9423,1 +1292,48,2607,3 +1293,48,1588,1 +1294,48,1160,5 +1295,48,255,4 +1296,48,2340,2 +1297,48,3519,5 +1298,48,3866,1 +1299,48,8134,5 +1300,48,7940,4 +1301,48,3794,5 +1302,48,308,1 +1303,48,209,5 +1304,48,2793,2 +1305,48,9897,2 +1306,48,2895,2 +1307,48,3440,3 +1308,48,5658,5 +1309,48,8891,1 +1310,48,6205,5 +1311,48,6434,1 +1312,48,8633,2 +1313,48,1765,2 +1314,48,5083,3 +1315,48,7517,2 +1316,48,4903,1 +1317,48,1528,3 +1318,48,9362,1 +1319,48,9285,2 +1320,48,3384,5 +1321,48,6185,2 +1322,48,9883,2 +1323,48,6150,3 +1324,48,5673,4 +1325,48,7545,3 +1326,48,4320,5 +1327,48,2806,3 +1328,48,3280,2 +1329,48,2409,4 +1330,48,1510,2 +1331,48,5474,5 +1332,48,6109,2 +1333,48,7850,3 +1334,48,5169,4 +1335,48,6571,2 +1336,48,4976,2 +1337,48,1482,3 +1338,48,6727,5 +1339,48,2714,2 +1340,48,851,1 +1341,49,4389,4 +1342,49,6841,3 +1343,49,7376,5 +1344,49,6986,2 +1345,49,7970,2 +1346,49,1897,4 +1347,49,3881,5 +1348,49,5813,4 +1349,49,2072,1 +1350,49,3055,4 +1351,49,3569,1 +1352,49,9801,5 +1353,49,399,5 +1354,49,1068,4 +1355,49,7589,5 +1356,49,8737,1 +1357,49,1910,2 +1358,49,3219,4 +1359,49,3095,5 +1360,49,3131,2 +1361,49,9940,4 +1362,49,8265,5 +1363,49,4226,2 +1364,49,743,5 +1365,49,2551,3 +1366,49,2307,2 +1367,49,103,1 +1368,49,620,1 +1369,49,3313,3 +1370,49,1328,4 +1371,49,7746,5 +1372,49,1390,4 +1373,49,3797,4 +1374,49,2280,2 +1375,49,1591,4 +1376,50,3685,5 +1377,50,3674,4 +1378,50,1994,1 +1379,50,2973,4 +1380,50,935,2 +1381,50,2006,2 +1382,50,6276,3 +1383,50,3620,5 +1384,50,987,3 +1385,50,6851,4 +1386,50,6334,5 +1387,50,3805,5 +1388,50,3940,3 +1389,50,8724,1 +1390,50,2774,2 +1391,50,5309,2 +1392,50,7801,2 +1393,50,1593,5 +1394,50,4928,4 +1395,50,7246,2 +1396,50,2131,5 +1397,50,8095,1 +1398,50,2920,1 +1399,50,192,4 +1400,50,811,2 +1401,50,8607,1 +1402,50,6649,4 +1403,50,4440,3 +1404,50,7808,5 +1405,50,1130,1 +1406,50,258,3 +1407,50,9225,3 +1408,50,1560,2 +1409,50,3819,3 +1410,50,3262,3 +1411,50,5445,4 +1412,50,7509,2 +1413,50,5990,1 +1414,50,8529,4 +1415,50,9404,2 +1416,51,4907,1 +1417,51,9157,2 +1418,51,3326,4 +1419,51,1820,2 +1420,51,8746,1 +1421,51,8482,3 +1422,51,113,2 +1423,51,5177,5 +1424,51,7903,3 +1425,51,516,2 +1426,51,4925,1 +1427,51,519,1 +1428,51,6145,2 +1429,51,1458,3 +1430,51,8813,1 +1431,51,8978,2 +1432,51,2255,2 +1433,51,8926,1 +1434,51,8332,5 +1435,51,9553,3 +1436,51,7525,4 +1437,51,4161,3 +1438,51,5879,1 +1439,51,61,3 +1440,51,9213,3 +1441,51,8948,3 +1442,51,2816,4 +1443,51,7849,1 +1444,51,2906,2 +1445,51,7763,3 +1446,51,3721,2 +1447,51,3373,2 +1448,51,6836,2 +1449,51,7823,4 +1450,51,7578,2 +1451,51,7464,4 +1452,51,5981,1 +1453,51,9140,5 +1454,51,8995,5 +1455,51,4603,1 +1456,51,4019,1 +1457,51,3087,1 +1458,51,775,3 +1459,51,8397,4 +1460,51,2360,2 +1461,51,7011,2 +1462,51,9792,1 +1463,51,1361,2 +1464,51,489,2 +1465,51,2843,4 +1466,52,3882,2 +1467,52,1770,3 +1468,52,2752,2 +1469,52,1476,3 +1470,52,7765,5 +1471,52,4803,4 +1472,52,3654,2 +1473,52,4064,2 +1474,52,4909,4 +1475,52,1033,1 +1476,52,29,2 +1477,52,5489,5 +1478,52,7958,2 +1479,52,8616,5 +1480,52,3377,2 +1481,52,3170,5 +1482,52,1975,1 +1483,52,2249,4 +1484,52,3309,4 +1485,52,396,1 +1486,52,9144,3 +1487,52,2917,1 +1488,52,9381,1 +1489,52,2466,5 +1490,52,295,2 +1491,52,8560,1 +1492,52,2688,3 +1493,52,1617,3 +1494,52,3871,1 +1495,52,3503,1 +1496,52,9278,1 +1497,52,7306,4 +1498,52,7576,5 +1499,52,2539,1 +1500,53,9434,5 +1501,53,5619,3 +1502,53,696,4 +1503,53,200,1 +1504,53,6694,4 +1505,53,7527,5 +1506,53,3998,3 +1507,53,2629,1 +1508,53,6302,3 +1509,53,6570,3 +1510,53,3078,3 +1511,53,619,5 +1512,53,5174,5 +1513,53,4361,3 +1514,53,4052,1 +1515,53,7428,3 +1516,53,7405,3 +1517,53,2170,2 +1518,53,6697,2 +1519,53,6110,2 +1520,53,2879,5 +1521,53,6887,5 +1522,53,1800,5 +1523,54,3057,1 +1524,54,55,5 +1525,54,3026,3 +1526,54,3683,1 +1527,54,7464,2 +1528,54,5071,1 +1529,54,5395,2 +1530,54,7244,5 +1531,54,5124,4 +1532,54,7062,1 +1533,54,5924,1 +1534,54,3305,1 +1535,54,9549,5 +1536,54,5455,5 +1537,54,9663,4 +1538,54,8731,3 +1539,54,2142,2 +1540,54,6031,2 +1541,54,9489,1 +1542,54,1892,2 +1543,54,8921,4 +1544,54,6213,1 +1545,54,5975,4 +1546,54,636,4 +1547,54,3316,4 +1548,54,8980,3 +1549,54,5973,5 +1550,54,6343,5 +1551,54,8346,2 +1552,54,9036,2 +1553,54,6197,5 +1554,54,661,4 +1555,54,5768,1 +1556,54,7708,5 +1557,54,1873,3 +1558,54,8162,4 +1559,54,3024,2 +1560,54,2351,4 +1561,54,1740,1 +1562,54,471,2 +1563,54,1313,3 +1564,54,1246,3 +1565,54,5897,5 +1566,54,4442,1 +1567,55,1411,1 +1568,55,8772,3 +1569,55,1101,5 +1570,55,6661,2 +1571,55,1970,3 +1572,55,515,1 +1573,55,4579,2 +1574,55,7621,3 +1575,55,2346,5 +1576,55,6113,3 +1577,55,3668,3 +1578,55,8321,3 +1579,55,8256,2 +1580,55,2736,5 +1581,55,8778,4 +1582,55,816,3 +1583,55,9754,5 +1584,55,2344,2 +1585,55,1991,4 +1586,55,9189,4 +1587,55,2777,1 +1588,55,5859,1 +1589,55,1263,4 +1590,55,2033,3 +1591,55,4904,2 +1592,55,6520,5 +1593,55,8565,3 +1594,55,8042,4 +1595,55,2637,1 +1596,55,2233,4 +1597,55,768,1 +1598,55,3682,1 +1599,55,2029,2 +1600,55,6977,3 +1601,55,4643,1 +1602,55,1639,3 +1603,55,3138,5 +1604,55,9197,2 +1605,55,6515,4 +1606,55,4922,2 +1607,55,2252,5 +1608,55,6112,1 +1609,55,6859,4 +1610,55,3972,5 +1611,56,5164,3 +1612,56,3859,4 +1613,56,5815,1 +1614,56,1247,2 +1615,56,8357,4 +1616,56,2879,4 +1617,56,9029,2 +1618,56,717,4 +1619,56,5246,1 +1620,56,7395,5 +1621,56,4072,1 +1622,56,5915,5 +1623,56,6602,5 +1624,56,6346,2 +1625,56,9322,5 +1626,56,3736,3 +1627,56,4366,1 +1628,56,546,4 +1629,56,1950,1 +1630,56,7878,1 +1631,56,8812,3 +1632,56,5342,4 +1633,56,7707,1 +1634,56,3072,5 +1635,56,7497,2 +1636,57,2814,1 +1637,57,9863,5 +1638,57,1875,4 +1639,57,7858,3 +1640,57,494,2 +1641,57,6261,4 +1642,57,9927,2 +1643,57,4527,4 +1644,57,7366,1 +1645,57,4168,1 +1646,57,5147,1 +1647,57,3322,4 +1648,57,456,3 +1649,57,3302,4 +1650,57,9569,1 +1651,57,1557,3 +1652,57,3706,1 +1653,57,1135,5 +1654,58,1851,4 +1655,58,1855,1 +1656,58,9445,2 +1657,58,3091,2 +1658,58,9615,1 +1659,58,1213,2 +1660,58,5319,5 +1661,58,7766,5 +1662,58,3452,2 +1663,58,8826,1 +1664,58,7030,1 +1665,58,5959,4 +1666,58,6555,1 +1667,58,5918,3 +1668,58,8773,4 +1669,58,6329,4 +1670,58,5459,3 +1671,58,7678,4 +1672,58,6556,3 +1673,58,4192,1 +1674,59,1787,1 +1675,59,5883,1 +1676,59,3337,4 +1677,59,2564,1 +1678,59,4174,4 +1679,59,3205,1 +1680,59,1747,1 +1681,59,8504,3 +1682,59,1721,4 +1683,59,5235,2 +1684,59,1051,2 +1685,59,1703,4 +1686,59,3925,3 +1687,59,9700,5 +1688,59,6206,2 +1689,59,8453,2 +1690,59,4135,1 +1691,59,4504,3 +1692,59,2738,2 +1693,59,3354,1 +1694,59,2918,1 +1695,59,4033,5 +1696,59,9530,3 +1697,59,3452,2 +1698,59,8882,4 +1699,59,4309,2 +1700,59,691,5 +1701,59,6764,4 +1702,60,2456,2 +1703,60,7911,5 +1704,60,8485,1 +1705,60,9836,2 +1706,60,1044,1 +1707,60,4499,4 +1708,60,6935,5 +1709,60,6602,3 +1710,60,5500,5 +1711,60,7324,2 +1712,60,8760,3 +1713,60,1825,1 +1714,60,7698,3 +1715,60,6117,4 +1716,60,8290,5 +1717,60,6160,4 +1718,60,548,3 +1719,60,9811,2 +1720,60,9432,4 +1721,60,4144,5 +1722,60,9065,3 +1723,60,3125,1 +1724,60,1626,5 +1725,60,6330,5 +1726,60,4590,5 +1727,60,5267,4 +1728,61,758,4 +1729,61,5451,5 +1730,61,3467,1 +1731,61,6169,3 +1732,61,3952,2 +1733,61,571,3 +1734,61,5780,2 +1735,61,2518,1 +1736,61,2968,3 +1737,61,2520,5 +1738,61,6830,1 +1739,61,3637,4 +1740,61,7094,3 +1741,61,4772,3 +1742,61,994,1 +1743,61,366,3 +1744,61,8919,3 +1745,61,7938,5 +1746,61,8088,1 +1747,61,9343,3 +1748,61,7981,3 +1749,61,9835,3 +1750,61,1174,2 +1751,61,4156,3 +1752,61,2574,3 +1753,61,7204,1 +1754,61,3883,3 +1755,61,3238,1 +1756,61,2692,1 +1757,61,6173,2 +1758,61,6454,5 +1759,61,2715,4 +1760,61,2143,5 +1761,61,4011,3 +1762,61,1447,4 +1763,61,7638,5 +1764,61,1645,5 +1765,61,6845,1 +1766,62,2646,1 +1767,62,2123,1 +1768,62,5520,1 +1769,62,6653,3 +1770,62,4573,4 +1771,62,1775,2 +1772,62,9199,4 +1773,62,7887,1 +1774,62,1934,3 +1775,62,3735,2 +1776,62,1192,2 +1777,62,9655,1 +1778,62,2040,4 +1779,62,338,1 +1780,62,776,2 +1781,62,8518,3 +1782,62,8786,3 +1783,62,7165,5 +1784,62,3656,5 +1785,62,9320,4 +1786,62,1611,2 +1787,62,3602,3 +1788,62,1467,2 +1789,62,88,1 +1790,62,5813,3 +1791,62,8269,1 +1792,62,8789,2 +1793,62,1345,3 +1794,62,2028,1 +1795,62,790,5 +1796,62,5022,2 +1797,63,508,4 +1798,63,4000,1 +1799,63,1051,3 +1800,63,7689,4 +1801,63,5962,5 +1802,63,9561,1 +1803,63,7726,4 +1804,63,965,4 +1805,63,1966,3 +1806,63,7805,2 +1807,63,2126,2 +1808,63,9285,3 +1809,63,386,3 +1810,63,1838,1 +1811,63,7613,5 +1812,63,2726,1 +1813,63,7842,2 +1814,63,5557,2 +1815,63,644,5 +1816,63,1851,1 +1817,63,9232,5 +1818,64,9077,5 +1819,64,5180,2 +1820,64,1279,4 +1821,64,3961,4 +1822,64,9854,5 +1823,64,2007,2 +1824,64,4152,4 +1825,64,7689,3 +1826,64,9758,1 +1827,64,6598,5 +1828,64,6438,2 +1829,64,3970,3 +1830,64,8372,4 +1831,64,2821,5 +1832,64,591,1 +1833,65,675,5 +1834,65,2738,5 +1835,65,1184,3 +1836,65,8902,3 +1837,65,6597,5 +1838,65,861,3 +1839,65,8500,3 +1840,65,4370,3 +1841,65,5401,5 +1842,65,9247,5 +1843,65,737,5 +1844,65,7660,2 +1845,65,9462,5 +1846,65,808,5 +1847,65,9775,4 +1848,65,5379,5 +1849,65,1248,2 +1850,65,885,5 +1851,65,5756,2 +1852,65,2241,4 +1853,65,9941,4 +1854,65,6437,3 +1855,66,9816,5 +1856,66,2702,2 +1857,66,9252,1 +1858,66,5503,1 +1859,66,8709,4 +1860,66,8897,3 +1861,66,4537,5 +1862,66,2199,2 +1863,66,6410,5 +1864,66,7980,5 +1865,66,387,5 +1866,66,1921,3 +1867,66,4708,3 +1868,66,2124,4 +1869,66,6216,5 +1870,66,8058,4 +1871,66,8226,4 +1872,66,6528,4 +1873,66,3332,2 +1874,66,6607,5 +1875,66,8844,2 +1876,66,1818,2 +1877,66,2173,5 +1878,66,9721,1 +1879,66,965,1 +1880,66,4191,3 +1881,66,4017,4 +1882,66,4609,2 +1883,66,5476,2 +1884,66,3187,3 +1885,66,1413,5 +1886,66,9674,3 +1887,66,5112,3 +1888,66,7582,5 +1889,67,7814,3 +1890,67,5946,4 +1891,67,4856,2 +1892,67,1609,3 +1893,67,5462,5 +1894,67,3699,3 +1895,67,8718,3 +1896,67,5307,1 +1897,67,6871,1 +1898,67,1462,5 +1899,67,3896,4 +1900,67,3759,4 +1901,67,3175,4 +1902,67,838,1 +1903,67,6344,2 +1904,67,2985,3 +1905,67,7130,5 +1906,67,3348,5 +1907,67,5064,2 +1908,67,952,2 +1909,67,7081,1 +1910,67,280,4 +1911,67,3678,2 +1912,67,3866,3 +1913,67,4586,2 +1914,67,1991,3 +1915,67,4232,2 +1916,67,7532,1 +1917,68,5696,3 +1918,68,8678,1 +1919,68,9002,1 +1920,68,4905,1 +1921,68,9938,4 +1922,68,6316,4 +1923,68,3437,4 +1924,68,2421,1 +1925,68,7395,3 +1926,68,617,2 +1927,68,5371,1 +1928,68,2522,5 +1929,68,941,2 +1930,68,5591,1 +1931,68,2687,1 +1932,68,2812,4 +1933,68,9501,2 +1934,68,8549,2 +1935,68,6304,3 +1936,68,8629,4 +1937,68,3466,3 +1938,68,6697,3 +1939,68,2007,1 +1940,68,8093,5 +1941,68,2485,5 +1942,68,4548,1 +1943,68,684,1 +1944,68,3746,5 +1945,68,3630,3 +1946,68,6056,2 +1947,68,6090,5 +1948,68,4619,2 +1949,68,9989,3 +1950,68,4719,3 +1951,68,2525,3 +1952,68,1218,2 +1953,69,699,3 +1954,69,3668,1 +1955,69,2470,5 +1956,69,1579,4 +1957,69,2415,3 +1958,69,9302,1 +1959,69,2634,2 +1960,69,1534,4 +1961,69,2827,3 +1962,69,3518,3 +1963,69,7335,5 +1964,69,8812,4 +1965,70,8520,1 +1966,70,5916,3 +1967,70,6367,2 +1968,70,758,1 +1969,70,6271,4 +1970,70,9520,1 +1971,70,3261,1 +1972,70,7915,4 +1973,70,985,5 +1974,70,3936,4 +1975,70,169,5 +1976,70,1608,5 +1977,70,5354,4 +1978,70,6713,3 +1979,70,3398,1 +1980,70,4425,3 +1981,70,5162,3 +1982,70,9729,5 +1983,70,7902,3 +1984,70,5969,5 +1985,70,1640,2 +1986,70,4124,5 +1987,70,7191,1 +1988,70,9311,4 +1989,70,2612,4 +1990,70,5520,3 +1991,70,5474,5 +1992,70,9771,3 +1993,70,9501,1 +1994,70,5401,1 +1995,70,4297,4 +1996,70,9142,1 +1997,70,5644,5 +1998,70,9834,1 +1999,70,8697,5 +2000,71,5732,5 +2001,71,3124,3 +2002,71,5261,3 +2003,71,4711,4 +2004,71,865,5 +2005,71,2827,3 +2006,71,2276,1 +2007,71,4763,4 +2008,71,2221,3 +2009,71,6825,1 +2010,71,2702,4 +2011,71,7062,4 +2012,71,35,4 +2013,71,7695,1 +2014,71,3772,2 +2015,71,8404,2 +2016,71,1609,1 +2017,71,3895,3 +2018,71,1508,5 +2019,71,3841,5 +2020,71,4977,1 +2021,71,5404,1 +2022,71,7537,1 +2023,71,4526,2 +2024,71,204,4 +2025,71,6637,1 +2026,71,3379,5 +2027,71,4157,1 +2028,71,1108,4 +2029,71,9243,2 +2030,71,2802,4 +2031,71,6258,3 +2032,71,448,4 +2033,71,8851,5 +2034,71,1586,3 +2035,71,7497,1 +2036,71,8059,2 +2037,71,26,3 +2038,71,987,2 +2039,71,6669,1 +2040,71,1810,3 +2041,71,6682,5 +2042,71,933,4 +2043,71,5622,3 +2044,71,5343,3 +2045,71,1562,4 +2046,71,2759,4 +2047,71,2664,5 +2048,71,9804,1 +2049,72,667,2 +2050,72,2752,2 +2051,72,6814,5 +2052,72,7516,4 +2053,72,7944,5 +2054,72,4574,3 +2055,72,122,5 +2056,72,8479,4 +2057,72,522,3 +2058,72,912,3 +2059,72,1456,5 +2060,72,2169,2 +2061,72,7037,1 +2062,72,9650,4 +2063,72,1713,1 +2064,72,9491,2 +2065,72,4986,1 +2066,72,8310,4 +2067,72,6488,1 +2068,72,8362,3 +2069,72,7453,2 +2070,72,5865,5 +2071,72,9930,1 +2072,72,1969,5 +2073,72,8060,4 +2074,72,8113,5 +2075,72,9659,4 +2076,72,3151,2 +2077,72,9520,4 +2078,72,221,3 +2079,72,9090,2 +2080,72,2040,4 +2081,72,8252,2 +2082,72,4401,1 +2083,72,1259,1 +2084,72,5365,4 +2085,72,1181,1 +2086,72,4451,5 +2087,72,3177,1 +2088,72,2379,4 +2089,73,9851,1 +2090,73,5353,3 +2091,73,2059,1 +2092,73,1318,1 +2093,73,8188,2 +2094,73,3307,2 +2095,73,4610,1 +2096,73,9793,1 +2097,73,6392,3 +2098,73,8037,5 +2099,73,2783,3 +2100,73,7908,3 +2101,73,1165,4 +2102,73,2472,3 +2103,73,1050,3 +2104,73,441,4 +2105,73,4546,5 +2106,73,4596,1 +2107,73,2001,5 +2108,73,2641,4 +2109,73,7446,2 +2110,73,9267,5 +2111,73,1303,5 +2112,73,159,2 +2113,73,9553,5 +2114,73,6799,4 +2115,73,2497,3 +2116,73,5250,5 +2117,73,2994,4 +2118,73,4762,2 +2119,73,9393,2 +2120,73,8455,2 +2121,73,3944,5 +2122,73,547,3 +2123,73,4313,3 +2124,74,4122,5 +2125,74,7349,5 +2126,74,5619,5 +2127,74,9102,4 +2128,74,9441,2 +2129,74,7773,1 +2130,74,9476,3 +2131,74,817,3 +2132,74,9363,3 +2133,74,1079,1 +2134,74,4316,2 +2135,74,6253,2 +2136,74,180,5 +2137,74,8628,4 +2138,74,3061,1 +2139,74,2681,4 +2140,74,7645,5 +2141,74,9136,5 +2142,74,4587,5 +2143,74,7003,3 +2144,74,7804,1 +2145,74,4696,2 +2146,74,5781,1 +2147,74,1819,2 +2148,74,1964,5 +2149,74,8223,2 +2150,74,6284,5 +2151,74,89,4 +2152,74,933,2 +2153,75,5128,1 +2154,75,1583,2 +2155,75,2154,5 +2156,75,7916,2 +2157,75,9673,1 +2158,75,3595,1 +2159,75,7767,5 +2160,75,3440,4 +2161,75,7547,5 +2162,75,4315,4 +2163,75,156,3 +2164,75,3240,4 +2165,75,8518,2 +2166,75,779,2 +2167,75,8100,1 +2168,75,1004,1 +2169,75,3607,4 +2170,75,2800,5 +2171,75,6000,3 +2172,75,1507,3 +2173,75,6456,4 +2174,75,1787,1 +2175,75,8591,1 +2176,75,7091,5 +2177,75,6960,5 +2178,75,9061,3 +2179,75,5937,3 +2180,75,1475,4 +2181,75,32,2 +2182,75,6904,2 +2183,75,3431,5 +2184,75,4063,2 +2185,75,1305,1 +2186,75,7682,3 +2187,75,7032,5 +2188,75,4512,1 +2189,75,3421,4 +2190,75,202,2 +2191,75,4623,4 +2192,75,9487,2 +2193,75,3808,4 +2194,75,6441,5 +2195,75,264,2 +2196,76,4088,2 +2197,76,7997,5 +2198,76,166,4 +2199,76,2513,1 +2200,76,8474,4 +2201,76,5099,3 +2202,76,2940,1 +2203,76,5024,5 +2204,76,2432,2 +2205,76,8077,4 +2206,76,9524,5 +2207,76,1423,2 +2208,76,6188,5 +2209,76,4423,2 +2210,76,968,2 +2211,76,9889,4 +2212,76,5552,2 +2213,76,5534,3 +2214,76,4190,5 +2215,76,9902,2 +2216,76,6668,1 +2217,76,8914,1 +2218,76,9812,2 +2219,76,1723,2 +2220,76,4062,5 +2221,76,6382,2 +2222,76,495,1 +2223,76,4072,3 +2224,76,4053,4 +2225,76,491,3 +2226,76,9284,1 +2227,76,1985,1 +2228,76,3983,5 +2229,77,3583,5 +2230,77,8981,1 +2231,77,777,4 +2232,77,7925,5 +2233,77,7113,2 +2234,77,5017,5 +2235,77,3177,2 +2236,77,3540,4 +2237,77,4970,4 +2238,77,5947,3 +2239,77,3028,4 +2240,77,3662,4 +2241,77,5040,5 +2242,77,3269,3 +2243,77,3112,3 +2244,77,642,4 +2245,77,3339,2 +2246,77,8986,3 +2247,78,8962,5 +2248,78,5757,5 +2249,78,7820,5 +2250,78,4196,5 +2251,78,4350,2 +2252,78,457,1 +2253,78,471,5 +2254,78,2069,3 +2255,78,9511,1 +2256,78,7059,1 +2257,78,1531,3 +2258,78,2536,1 +2259,78,8239,5 +2260,78,8569,4 +2261,78,4300,3 +2262,78,1228,3 +2263,78,3952,2 +2264,78,999,2 +2265,78,2998,1 +2266,78,56,1 +2267,78,6800,2 +2268,78,1938,1 +2269,78,7827,4 +2270,78,9440,4 +2271,78,3277,5 +2272,78,974,4 +2273,78,7372,1 +2274,78,2610,4 +2275,78,4495,1 +2276,78,2767,1 +2277,78,3106,2 +2278,78,3652,4 +2279,78,583,2 +2280,78,3953,5 +2281,78,6188,3 +2282,78,1156,1 +2283,78,1453,3 +2284,78,9260,5 +2285,79,3775,3 +2286,79,9542,3 +2287,79,7416,5 +2288,79,6775,4 +2289,79,9772,4 +2290,79,9537,2 +2291,79,1738,1 +2292,79,1375,3 +2293,79,1520,3 +2294,79,7744,3 +2295,79,121,2 +2296,79,5093,4 +2297,79,8773,2 +2298,79,1438,3 +2299,79,1783,4 +2300,79,3210,4 +2301,79,2661,5 +2302,79,814,4 +2303,79,4196,2 +2304,79,7943,2 +2305,79,4078,2 +2306,79,8688,1 +2307,79,386,2 +2308,79,1440,2 +2309,79,798,4 +2310,79,9030,5 +2311,79,2163,2 +2312,79,7326,3 +2313,79,6723,2 +2314,79,1481,1 +2315,79,2592,3 +2316,79,5552,5 +2317,79,7642,5 +2318,79,174,2 +2319,79,1992,3 +2320,80,6704,4 +2321,80,1175,4 +2322,80,6381,3 +2323,80,9195,5 +2324,80,3471,1 +2325,80,9643,2 +2326,80,905,5 +2327,80,5736,2 +2328,80,5896,5 +2329,80,4574,1 +2330,80,3761,3 +2331,80,2660,3 +2332,80,8424,2 +2333,80,970,1 +2334,80,4877,1 +2335,80,1246,5 +2336,80,4055,4 +2337,80,8268,5 +2338,80,8353,3 +2339,80,9565,5 +2340,80,6027,3 +2341,80,5305,1 +2342,80,8274,3 +2343,80,1899,3 +2344,80,8697,1 +2345,80,5670,4 +2346,80,2074,3 +2347,80,323,4 +2348,81,5772,2 +2349,81,2881,1 +2350,81,1495,1 +2351,81,5162,3 +2352,81,4269,4 +2353,81,7465,3 +2354,81,3033,1 +2355,81,3916,1 +2356,81,8083,1 +2357,81,2300,2 +2358,81,3674,1 +2359,81,5539,5 +2360,81,6960,4 +2361,81,6343,2 +2362,81,9980,2 +2363,81,4508,3 +2364,81,6163,2 +2365,81,2424,2 +2366,81,1821,3 +2367,81,5171,5 +2368,81,4319,4 +2369,81,8115,2 +2370,81,4723,4 +2371,81,980,4 +2372,81,7694,2 +2373,81,9575,2 +2374,81,802,5 +2375,81,2363,1 +2376,81,7741,2 +2377,81,6920,1 +2378,81,1446,2 +2379,81,7865,3 +2380,81,1430,3 +2381,81,3362,4 +2382,81,9157,4 +2383,81,9654,2 +2384,81,5009,3 +2385,81,9168,3 +2386,81,5481,3 +2387,82,868,1 +2388,82,2267,4 +2389,82,1251,2 +2390,82,9887,1 +2391,82,6321,5 +2392,82,1040,1 +2393,82,1837,3 +2394,82,3174,2 +2395,82,4139,3 +2396,82,3444,4 +2397,82,8489,1 +2398,82,7223,2 +2399,82,518,3 +2400,82,3756,4 +2401,82,7997,4 +2402,82,2939,3 +2403,82,6329,5 +2404,82,1058,4 +2405,82,4948,1 +2406,82,2648,4 +2407,82,2630,3 +2408,82,1887,5 +2409,82,5585,4 +2410,82,1319,3 +2411,82,1331,4 +2412,82,3776,3 +2413,82,485,4 +2414,82,3410,4 +2415,82,9685,1 +2416,82,245,4 +2417,82,9412,5 +2418,82,5998,1 +2419,82,4847,2 +2420,82,3044,4 +2421,82,6022,4 +2422,82,8093,5 +2423,82,6356,3 +2424,82,2286,4 +2425,82,4146,5 +2426,82,4517,5 +2427,82,6932,2 +2428,82,4604,2 +2429,82,8264,4 +2430,82,4562,1 +2431,82,3559,5 +2432,82,3006,2 +2433,82,9854,4 +2434,83,1144,4 +2435,83,3266,1 +2436,83,9190,5 +2437,83,4593,3 +2438,83,5213,2 +2439,83,6094,1 +2440,83,7257,4 +2441,83,2706,5 +2442,83,1744,1 +2443,83,8991,1 +2444,83,8965,3 +2445,83,4221,4 +2446,83,5741,2 +2447,83,9452,5 +2448,83,1587,5 +2449,83,8110,3 +2450,83,9117,4 +2451,83,5808,2 +2452,83,7242,5 +2453,83,2684,4 +2454,83,5499,4 +2455,83,586,2 +2456,83,670,1 +2457,83,5204,3 +2458,83,9818,2 +2459,83,4824,4 +2460,83,278,3 +2461,83,2307,1 +2462,83,4063,4 +2463,83,1941,5 +2464,83,8522,1 +2465,83,6813,4 +2466,83,9998,5 +2467,83,4747,1 +2468,83,4299,4 +2469,83,3424,1 +2470,83,3088,3 +2471,83,1300,4 +2472,83,58,2 +2473,83,5700,4 +2474,83,7181,4 +2475,83,7454,1 +2476,83,5070,5 +2477,83,6513,3 +2478,83,328,2 +2479,83,944,1 +2480,83,7635,2 +2481,83,4522,3 +2482,84,5083,4 +2483,84,918,3 +2484,84,5640,1 +2485,84,5145,2 +2486,84,497,5 +2487,84,5135,3 +2488,84,9937,3 +2489,84,9964,5 +2490,84,400,2 +2491,84,9767,3 +2492,84,3277,5 +2493,84,5478,2 +2494,84,9104,4 +2495,84,4287,2 +2496,84,650,5 +2497,84,1615,1 +2498,84,3705,5 +2499,84,2796,4 +2500,84,9099,1 +2501,84,8638,5 +2502,84,2631,3 +2503,84,8808,1 +2504,84,1277,3 +2505,85,8788,5 +2506,85,570,1 +2507,85,6037,3 +2508,85,9023,2 +2509,85,4461,1 +2510,85,5878,4 +2511,85,7253,3 +2512,85,9325,2 +2513,85,4774,1 +2514,85,6361,2 +2515,85,9839,1 +2516,85,2047,3 +2517,85,2397,1 +2518,85,3423,1 +2519,86,5503,3 +2520,86,8274,2 +2521,86,9552,2 +2522,86,1633,3 +2523,86,4497,5 +2524,86,297,2 +2525,86,9410,5 +2526,86,3281,2 +2527,86,4474,1 +2528,86,7148,3 +2529,86,5997,3 +2530,86,9843,1 +2531,86,5616,4 +2532,86,5284,1 +2533,86,1881,4 +2534,86,5524,4 +2535,86,1608,5 +2536,86,4765,5 +2537,86,4097,4 +2538,86,2014,3 +2539,86,9570,4 +2540,86,9918,4 +2541,86,3710,5 +2542,86,6301,4 +2543,86,5719,3 +2544,86,7494,2 +2545,86,4542,5 +2546,86,9633,4 +2547,86,1982,4 +2548,86,5024,1 +2549,86,8914,1 +2550,86,1096,4 +2551,86,2123,3 +2552,86,8029,3 +2553,86,6737,5 +2554,86,1315,1 +2555,86,6359,3 +2556,86,3947,3 +2557,86,390,2 +2558,86,293,1 +2559,86,8130,5 +2560,86,7344,1 +2561,86,9818,4 +2562,86,8889,4 +2563,87,1025,1 +2564,87,2977,2 +2565,87,6591,1 +2566,87,5112,4 +2567,87,2786,4 +2568,87,7146,4 +2569,87,8104,5 +2570,87,9927,5 +2571,87,6413,2 +2572,87,5121,4 +2573,87,2266,4 +2574,87,3342,1 +2575,87,5814,3 +2576,87,2905,4 +2577,87,5345,5 +2578,87,1216,1 +2579,87,3673,5 +2580,87,6985,5 +2581,87,7695,5 +2582,88,2886,2 +2583,88,6185,3 +2584,88,6098,3 +2585,88,708,5 +2586,88,4664,1 +2587,88,5972,5 +2588,88,1050,3 +2589,88,9897,5 +2590,88,1340,1 +2591,88,6577,4 +2592,88,5887,5 +2593,88,5446,4 +2594,88,4989,1 +2595,88,3048,1 +2596,88,8376,4 +2597,88,6866,5 +2598,88,3857,2 +2599,88,9638,1 +2600,89,3867,1 +2601,89,5674,1 +2602,89,4064,5 +2603,89,1537,5 +2604,89,34,3 +2605,89,1829,2 +2606,89,2943,2 +2607,89,3014,1 +2608,89,7457,5 +2609,89,5797,1 +2610,89,8948,1 +2611,89,3416,2 +2612,89,7268,2 +2613,89,5045,5 +2614,89,4127,5 +2615,89,6662,5 +2616,89,8526,4 +2617,89,3612,2 +2618,89,397,2 +2619,89,9730,3 +2620,89,9249,2 +2621,89,6480,1 +2622,89,2867,4 +2623,89,5067,4 +2624,89,7880,1 +2625,89,7585,5 +2626,89,288,4 +2627,89,5128,3 +2628,89,8783,2 +2629,89,5384,1 +2630,89,3382,1 +2631,89,335,1 +2632,89,3074,5 +2633,89,1373,4 +2634,89,5847,3 +2635,89,3080,1 +2636,89,5666,1 +2637,89,6029,5 +2638,89,7790,4 +2639,89,2999,5 +2640,89,3246,3 +2641,89,5594,1 +2642,89,3318,3 +2643,89,4691,3 +2644,90,8150,5 +2645,90,4160,4 +2646,90,5525,1 +2647,90,2956,3 +2648,90,4608,5 +2649,90,7327,3 +2650,90,9894,4 +2651,90,296,1 +2652,90,3710,4 +2653,90,6237,2 +2654,90,9456,3 +2655,90,4733,5 +2656,90,6172,4 +2657,90,6075,4 +2658,90,8138,2 +2659,90,3172,4 +2660,90,987,5 +2661,90,4431,4 +2662,90,3117,3 +2663,90,699,4 +2664,90,2918,3 +2665,90,6160,5 +2666,90,9043,3 +2667,90,4354,2 +2668,90,4606,5 +2669,90,9866,2 +2670,90,3387,5 +2671,90,5033,5 +2672,90,3660,5 +2673,90,720,4 +2674,91,761,3 +2675,91,8251,4 +2676,91,8072,1 +2677,91,8089,1 +2678,91,6771,4 +2679,91,3328,4 +2680,91,7410,1 +2681,91,6744,4 +2682,91,503,3 +2683,91,864,3 +2684,91,1075,5 +2685,91,584,5 +2686,91,1003,4 +2687,91,4983,5 +2688,91,4107,4 +2689,91,3557,4 +2690,91,366,1 +2691,91,4079,2 +2692,91,3652,1 +2693,91,7419,2 +2694,91,8109,3 +2695,91,2147,1 +2696,91,7424,1 +2697,91,3697,2 +2698,91,5133,2 +2699,91,462,5 +2700,91,6828,4 +2701,91,6116,4 +2702,91,1415,4 +2703,91,3851,4 +2704,91,655,5 +2705,91,7265,4 +2706,91,6393,1 +2707,91,8023,4 +2708,91,4546,3 +2709,91,3634,5 +2710,91,432,4 +2711,91,9456,5 +2712,91,3392,2 +2713,91,302,1 +2714,91,7762,4 +2715,91,6237,3 +2716,91,4651,5 +2717,91,9880,5 +2718,92,4771,5 +2719,92,2288,1 +2720,92,5603,3 +2721,92,7260,2 +2722,92,6465,1 +2723,92,4092,3 +2724,92,402,2 +2725,92,1571,3 +2726,92,6428,2 +2727,92,403,5 +2728,92,9955,3 +2729,92,664,1 +2730,92,4489,5 +2731,92,835,4 +2732,92,9805,5 +2733,92,9446,1 +2734,92,8601,1 +2735,92,6931,3 +2736,92,9210,5 +2737,92,2985,1 +2738,92,7373,4 +2739,92,3815,2 +2740,92,8652,1 +2741,92,7965,2 +2742,92,4156,5 +2743,92,3584,2 +2744,92,6939,1 +2745,92,9134,4 +2746,92,7076,2 +2747,92,7701,2 +2748,92,4103,3 +2749,92,5444,1 +2750,92,7497,4 +2751,92,5258,5 +2752,92,9627,4 +2753,92,9775,1 +2754,92,1508,2 +2755,92,7116,3 +2756,92,5560,1 +2757,92,5799,2 +2758,92,306,1 +2759,92,5282,5 +2760,92,3919,1 +2761,92,8103,1 +2762,92,8757,1 +2763,92,6431,5 +2764,92,4166,3 +2765,92,5951,1 +2766,92,4873,3 +2767,92,4722,4 +2768,93,1442,4 +2769,93,1661,5 +2770,93,39,4 +2771,93,169,5 +2772,93,9653,3 +2773,93,1892,2 +2774,93,2664,5 +2775,93,868,2 +2776,93,6480,5 +2777,93,6750,5 +2778,93,4754,2 +2779,93,2168,1 +2780,93,7530,3 +2781,93,1561,3 +2782,93,1760,3 +2783,93,7525,4 +2784,93,2883,3 +2785,94,2119,1 +2786,94,9337,2 +2787,94,4438,3 +2788,94,5718,3 +2789,94,9251,4 +2790,94,40,3 +2791,94,4586,3 +2792,94,6259,5 +2793,94,1437,1 +2794,94,3823,2 +2795,94,908,4 +2796,94,9917,4 +2797,94,9195,1 +2798,94,8272,3 +2799,94,9462,1 +2800,94,7074,4 +2801,94,8062,1 +2802,94,6212,2 +2803,94,4847,3 +2804,94,1163,2 +2805,94,212,3 +2806,94,2634,4 +2807,94,7539,5 +2808,94,3257,3 +2809,94,6322,5 +2810,94,4451,1 +2811,94,5934,4 +2812,94,9009,2 +2813,94,4662,5 +2814,94,8002,3 +2815,94,1419,2 +2816,94,9750,4 +2817,94,1248,4 +2818,94,4089,5 +2819,95,3559,2 +2820,95,2559,5 +2821,95,3402,2 +2822,95,190,1 +2823,95,3262,2 +2824,95,582,4 +2825,95,8541,1 +2826,95,9548,4 +2827,95,7185,3 +2828,95,4131,5 +2829,95,7093,3 +2830,95,2867,4 +2831,95,1944,4 +2832,95,4389,5 +2833,96,4282,5 +2834,96,3089,1 +2835,96,5072,5 +2836,96,9923,4 +2837,96,7679,2 +2838,96,7453,4 +2839,96,9616,5 +2840,96,8656,3 +2841,96,1705,3 +2842,96,9354,2 +2843,96,5884,4 +2844,96,6534,5 +2845,96,3939,4 +2846,96,5325,3 +2847,96,7908,5 +2848,96,6145,4 +2849,96,9273,2 +2850,96,8877,4 +2851,96,4246,3 +2852,96,8882,3 +2853,96,491,3 +2854,96,1700,5 +2855,96,2015,2 +2856,96,8967,5 +2857,96,3696,2 +2858,96,196,5 +2859,96,6460,3 +2860,96,5689,3 +2861,96,2330,1 +2862,96,4868,2 +2863,96,682,2 +2864,96,3965,3 +2865,96,1301,4 +2866,96,5315,2 +2867,96,6223,2 +2868,96,1370,2 +2869,96,3496,1 +2870,96,1340,4 +2871,96,910,4 +2872,96,6224,1 +2873,96,7897,2 +2874,96,9373,1 +2875,96,2004,3 +2876,96,3066,5 +2877,96,4989,1 +2878,96,1884,5 +2879,96,5570,2 +2880,96,4767,1 +2881,97,1218,5 +2882,97,2732,4 +2883,97,9701,5 +2884,97,1978,2 +2885,97,1203,3 +2886,97,6342,5 +2887,97,9089,1 +2888,97,5012,1 +2889,97,8269,2 +2890,97,1655,2 +2891,97,4588,3 +2892,97,5937,3 +2893,97,3939,3 +2894,97,9426,5 +2895,97,309,3 +2896,97,3438,2 +2897,97,9289,4 +2898,97,2626,1 +2899,97,1686,2 +2900,97,3227,2 +2901,97,9087,5 +2902,97,5867,2 +2903,97,966,1 +2904,97,6034,3 +2905,97,9111,4 +2906,97,1163,5 +2907,97,8373,3 +2908,97,8530,2 +2909,97,8468,1 +2910,97,5229,1 +2911,97,9832,1 +2912,97,894,5 +2913,97,6431,1 +2914,97,1168,5 +2915,97,8374,1 +2916,97,6734,5 +2917,97,4767,2 +2918,97,5028,4 +2919,97,8678,5 +2920,97,4552,5 +2921,97,6287,3 +2922,97,2268,3 +2923,97,2222,5 +2924,97,677,4 +2925,97,627,2 +2926,97,8281,1 +2927,97,4976,4 +2928,98,6439,2 +2929,98,4844,1 +2930,98,4051,5 +2931,98,2036,2 +2932,98,4893,5 +2933,98,2669,1 +2934,98,1486,5 +2935,98,9663,2 +2936,98,2722,2 +2937,98,8439,4 +2938,98,8792,4 +2939,98,272,4 +2940,98,269,4 +2941,98,1512,4 +2942,98,6204,3 +2943,98,9883,3 +2944,98,5358,2 +2945,98,3727,5 +2946,98,3532,2 +2947,98,5124,5 +2948,98,198,4 +2949,98,9215,1 +2950,98,9223,4 +2951,98,8012,5 +2952,98,3991,1 +2953,98,761,1 +2954,99,3769,5 +2955,99,2251,5 +2956,99,136,5 +2957,99,1778,4 +2958,99,1839,2 +2959,99,599,5 +2960,99,4112,1 +2961,99,8463,3 +2962,99,7700,4 +2963,99,9368,5 +2964,99,9129,5 +2965,99,8512,2 +2966,99,4050,4 +2967,99,632,5 +2968,99,6802,4 +2969,99,4146,3 +2970,99,8938,3 +2971,99,3518,5 +2972,99,4631,2 +2973,99,9409,3 +2974,99,6058,3 +2975,99,1634,4 +2976,99,9198,4 +2977,99,2191,1 +2978,99,7521,2 +2979,99,6638,5 +2980,99,1104,1 +2981,99,7081,2 +2982,99,3804,4 +2983,99,4683,1 +2984,99,3455,2 +2985,99,4345,4 +2986,99,1949,5 +2987,99,2516,1 +2988,99,5397,1 +2989,99,4908,2 +2990,99,4556,2 +2991,99,4111,2 +2992,99,4187,4 +2993,99,401,3 +2994,99,1489,4 +2995,100,654,2 +2996,100,7239,4 +2997,100,5096,3 +2998,100,5264,4 +2999,100,6021,4 +3000,100,8063,4 +3001,100,7929,4 +3002,100,8338,2 +3003,100,5291,5 +3004,100,7683,2 +3005,100,6999,1 +3006,100,7757,4 +3007,100,9487,4 +3008,100,5641,2 +3009,100,777,3 +3010,100,9967,5 +3011,101,2923,4 +3012,101,4869,2 +3013,101,5608,1 +3014,101,6382,4 +3015,101,7877,1 +3016,101,3843,4 +3017,101,2131,2 +3018,101,1189,4 +3019,101,5320,3 +3020,101,5398,5 +3021,101,3157,4 +3022,101,412,5 +3023,101,8758,5 +3024,101,7684,5 +3025,101,7605,1 +3026,101,6091,5 +3027,101,5419,1 +3028,101,8614,2 +3029,101,6155,4 +3030,101,3203,1 +3031,101,3007,5 +3032,101,990,2 +3033,101,3815,3 +3034,101,3169,2 +3035,101,9099,1 +3036,101,6454,4 +3037,101,3150,1 +3038,101,473,5 +3039,101,2381,1 +3040,101,5046,1 +3041,101,1440,5 +3042,101,4420,1 +3043,101,6359,3 +3044,101,7110,3 +3045,101,9052,3 +3046,101,9015,2 +3047,101,4574,5 +3048,101,4089,4 +3049,101,8907,5 +3050,101,5069,4 +3051,101,4027,1 +3052,101,354,1 +3053,101,7078,4 +3054,101,3092,2 +3055,101,7010,3 +3056,101,2746,3 +3057,101,1908,3 +3058,101,562,4 +3059,101,8429,1 +3060,102,892,3 +3061,102,4517,2 +3062,102,7061,4 +3063,102,8731,1 +3064,102,9393,1 +3065,102,4828,3 +3066,102,9094,1 +3067,102,6939,5 +3068,102,4658,5 +3069,102,8191,2 +3070,102,6288,3 +3071,102,5287,5 +3072,102,9849,5 +3073,102,7155,2 +3074,102,267,5 +3075,102,2730,2 +3076,102,4636,5 +3077,102,251,1 +3078,102,6587,2 +3079,102,1260,5 +3080,102,3410,4 +3081,102,1498,4 +3082,102,7971,5 +3083,102,964,4 +3084,102,3967,2 +3085,102,4391,2 +3086,102,7328,4 +3087,102,2914,1 +3088,102,2100,4 +3089,102,6052,1 +3090,102,6182,3 +3091,102,1924,3 +3092,102,3867,5 +3093,102,4640,3 +3094,102,9473,3 +3095,102,242,2 +3096,102,4269,1 +3097,103,1655,2 +3098,103,4541,4 +3099,103,3965,1 +3100,103,925,4 +3101,103,4883,5 +3102,103,4657,1 +3103,103,535,1 +3104,103,7185,3 +3105,103,9224,5 +3106,103,4659,3 +3107,103,965,3 +3108,104,718,2 +3109,104,3058,2 +3110,104,7076,3 +3111,104,6234,1 +3112,104,1835,3 +3113,104,2571,4 +3114,104,5871,1 +3115,104,5365,4 +3116,104,2556,5 +3117,104,372,3 +3118,104,855,2 +3119,104,1200,3 +3120,104,1934,4 +3121,104,7818,4 +3122,104,1883,4 +3123,104,4180,3 +3124,104,1192,3 +3125,105,2334,3 +3126,105,4860,3 +3127,105,5369,4 +3128,105,5206,3 +3129,105,9488,2 +3130,105,5802,1 +3131,105,8081,1 +3132,105,2187,3 +3133,105,3033,1 +3134,105,3268,2 +3135,105,7758,4 +3136,105,2629,3 +3137,105,8922,1 +3138,105,2413,1 +3139,105,6274,3 +3140,105,3607,1 +3141,105,5913,4 +3142,105,8532,1 +3143,105,4196,2 +3144,105,1499,1 +3145,105,8262,3 +3146,105,9397,3 +3147,105,6055,2 +3148,105,3148,5 +3149,105,5730,2 +3150,105,8420,5 +3151,105,3518,4 +3152,105,5825,2 +3153,105,4982,4 +3154,105,8086,2 +3155,105,6309,4 +3156,105,4812,3 +3157,105,1164,2 +3158,105,7655,3 +3159,105,5164,2 +3160,105,9228,2 +3161,105,5029,5 +3162,105,4648,4 +3163,105,6505,1 +3164,105,3129,3 +3165,105,9417,5 +3166,106,6428,4 +3167,106,648,4 +3168,106,8064,2 +3169,106,6084,3 +3170,106,6646,3 +3171,106,6682,2 +3172,106,8992,2 +3173,106,2570,1 +3174,106,1834,2 +3175,106,6337,5 +3176,106,1455,3 +3177,106,3094,3 +3178,106,8165,4 +3179,106,1813,4 +3180,106,5850,1 +3181,106,5466,3 +3182,106,9200,4 +3183,106,9291,5 +3184,106,2047,4 +3185,107,14,1 +3186,107,2635,5 +3187,107,9910,2 +3188,107,7989,5 +3189,107,8060,4 +3190,107,7929,4 +3191,107,3101,5 +3192,107,7251,4 +3193,107,3061,1 +3194,107,3226,2 +3195,107,3969,1 +3196,107,1259,4 +3197,108,3110,3 +3198,108,3931,4 +3199,108,653,1 +3200,108,2758,5 +3201,108,3163,4 +3202,108,4635,5 +3203,108,2947,3 +3204,108,391,5 +3205,108,5523,4 +3206,108,5545,1 +3207,108,3873,2 +3208,108,659,1 +3209,108,8159,4 +3210,108,4433,5 +3211,108,3947,4 +3212,108,4717,3 +3213,108,6898,4 +3214,108,620,3 +3215,108,4462,4 +3216,108,236,2 +3217,108,4918,4 +3218,108,3338,2 +3219,108,9419,4 +3220,108,8885,1 +3221,108,4941,1 +3222,108,4900,3 +3223,108,3650,5 +3224,108,5188,5 +3225,108,3372,1 +3226,108,4410,3 +3227,108,882,1 +3228,108,6544,4 +3229,108,3532,4 +3230,108,9382,1 +3231,108,6991,3 +3232,108,9426,1 +3233,108,5596,1 +3234,108,8411,4 +3235,108,6452,4 +3236,109,2195,1 +3237,109,9608,5 +3238,109,1497,4 +3239,109,2716,3 +3240,109,6616,4 +3241,109,2367,4 +3242,109,3266,1 +3243,109,2178,5 +3244,109,6313,5 +3245,109,1574,1 +3246,109,594,3 +3247,109,6937,2 +3248,109,5506,2 +3249,109,1032,2 +3250,109,1897,3 +3251,109,3482,3 +3252,109,8654,1 +3253,109,1282,3 +3254,109,3505,3 +3255,109,1044,5 +3256,109,9357,4 +3257,109,7240,2 +3258,109,6346,3 +3259,109,5668,5 +3260,109,4721,2 +3261,109,491,2 +3262,109,7730,2 +3263,109,9390,3 +3264,109,5238,4 +3265,109,4101,5 +3266,109,3196,2 +3267,109,1180,3 +3268,109,2131,3 +3269,109,7279,4 +3270,109,3104,4 +3271,109,8107,2 +3272,109,9340,5 +3273,109,9976,1 +3274,109,7381,3 +3275,109,3695,4 +3276,109,7880,5 +3277,109,1127,1 +3278,109,986,5 +3279,109,4216,3 +3280,109,2422,4 +3281,110,3905,5 +3282,110,2451,4 +3283,110,211,5 +3284,110,9294,3 +3285,110,7756,4 +3286,110,5075,5 +3287,110,7527,3 +3288,110,6722,1 +3289,110,5497,4 +3290,110,229,3 +3291,110,5469,4 +3292,110,3680,1 +3293,110,5038,3 +3294,110,3474,2 +3295,110,4663,5 +3296,110,1551,3 +3297,110,2652,1 +3298,110,4089,3 +3299,110,4719,5 +3300,110,5009,2 +3301,110,930,2 +3302,110,1280,4 +3303,110,1214,5 +3304,110,2374,5 +3305,110,4318,3 +3306,110,2517,2 +3307,110,1627,3 +3308,110,81,3 +3309,110,1285,4 +3310,110,3490,3 +3311,110,3716,3 +3312,110,6048,2 +3313,110,5403,1 +3314,110,8556,4 +3315,110,4722,5 +3316,110,3408,4 +3317,110,4190,5 +3318,110,7542,4 +3319,110,514,2 +3320,110,7957,4 +3321,110,9730,1 +3322,110,9339,5 +3323,110,5356,4 +3324,110,4946,5 +3325,110,2995,5 +3326,110,2572,4 +3327,110,9750,3 +3328,110,6964,4 +3329,110,2231,3 +3330,110,7426,2 +3331,111,5385,1 +3332,111,4141,3 +3333,111,6165,2 +3334,111,3504,4 +3335,111,3305,2 +3336,111,7180,2 +3337,111,8006,4 +3338,111,6933,4 +3339,111,8127,2 +3340,111,8141,1 +3341,111,4677,2 +3342,111,7759,4 +3343,111,9971,2 +3344,111,5903,4 +3345,111,7384,4 +3346,111,4052,4 +3347,111,7549,3 +3348,111,5923,5 +3349,111,5310,4 +3350,111,6061,1 +3351,111,9749,4 +3352,111,691,5 +3353,111,4951,2 +3354,111,1859,5 +3355,111,5094,2 +3356,111,6704,5 +3357,111,1580,3 +3358,111,5428,2 +3359,112,2975,5 +3360,112,9209,2 +3361,112,809,3 +3362,112,1797,4 +3363,112,6702,3 +3364,112,7324,2 +3365,112,9798,4 +3366,112,7343,5 +3367,112,2520,3 +3368,112,3273,5 +3369,112,2372,5 +3370,112,3173,4 +3371,112,919,4 +3372,112,1494,5 +3373,112,4663,5 +3374,112,6786,1 +3375,112,1053,1 +3376,112,6407,5 +3377,112,1696,1 +3378,112,8278,4 +3379,112,4889,5 +3380,112,1018,5 +3381,112,742,3 +3382,112,3191,5 +3383,112,9642,1 +3384,112,9544,1 +3385,112,3413,1 +3386,112,420,2 +3387,112,5121,4 +3388,112,8437,3 +3389,112,3750,2 +3390,112,4036,2 +3391,112,2593,5 +3392,112,1415,2 +3393,112,8985,4 +3394,112,4467,3 +3395,112,9756,3 +3396,112,6602,2 +3397,112,6048,5 +3398,112,8921,1 +3399,112,1541,2 +3400,112,6293,1 +3401,112,5766,2 +3402,112,9947,1 +3403,112,407,4 +3404,112,8963,1 +3405,113,7924,5 +3406,113,9624,2 +3407,113,1973,4 +3408,113,5410,5 +3409,113,8521,1 +3410,113,6887,3 +3411,113,9534,1 +3412,113,4557,3 +3413,113,1523,2 +3414,113,3676,2 +3415,113,8683,4 +3416,113,1544,3 +3417,113,7559,1 +3418,113,5188,1 +3419,113,9187,2 +3420,113,3151,5 +3421,113,4118,1 +3422,113,3178,3 +3423,113,4782,1 +3424,113,4606,4 +3425,113,5343,5 +3426,113,512,1 +3427,113,6362,1 +3428,114,6623,4 +3429,114,4748,2 +3430,114,9244,4 +3431,114,9041,5 +3432,114,4562,5 +3433,114,3814,1 +3434,114,8398,3 +3435,114,9539,5 +3436,114,6970,3 +3437,114,4341,5 +3438,114,7308,5 +3439,114,1726,1 +3440,114,3774,1 +3441,114,310,4 +3442,114,480,4 +3443,114,7648,3 +3444,114,2664,1 +3445,114,7320,1 +3446,114,7457,4 +3447,114,4152,5 +3448,114,5382,4 +3449,114,9276,2 +3450,114,8728,5 +3451,114,8145,3 +3452,114,2956,3 +3453,114,9831,4 +3454,114,5627,1 +3455,114,8494,1 +3456,115,2538,4 +3457,115,5709,4 +3458,115,7118,3 +3459,115,5747,3 +3460,115,7604,3 +3461,115,8282,5 +3462,115,5815,4 +3463,115,3557,2 +3464,115,2574,5 +3465,115,9214,3 +3466,115,7431,4 +3467,115,8678,5 +3468,115,9391,4 +3469,115,4324,5 +3470,115,9398,2 +3471,115,3362,5 +3472,115,1725,2 +3473,115,1945,3 +3474,115,3656,5 +3475,115,4927,4 +3476,115,4446,1 +3477,115,3260,3 +3478,115,1638,5 +3479,115,6388,4 +3480,115,435,1 +3481,115,5580,3 +3482,115,2830,1 +3483,116,1443,4 +3484,116,330,5 +3485,116,6512,1 +3486,116,3581,2 +3487,116,3253,5 +3488,116,9250,4 +3489,116,5176,4 +3490,116,6990,4 +3491,116,3365,4 +3492,116,6642,4 +3493,116,9092,4 +3494,116,8751,5 +3495,116,8149,2 +3496,116,2415,3 +3497,116,744,2 +3498,116,9569,5 +3499,116,8283,4 +3500,116,7759,3 +3501,116,1339,1 +3502,116,5941,2 +3503,116,3110,5 +3504,116,8722,1 +3505,116,8752,5 +3506,116,779,2 +3507,116,9496,3 +3508,116,3168,5 +3509,116,2662,2 +3510,116,4617,1 +3511,116,3637,5 +3512,116,3085,3 +3513,116,7189,4 +3514,116,158,1 +3515,116,2626,5 +3516,116,9951,3 +3517,116,7820,2 +3518,116,5100,1 +3519,116,506,4 +3520,116,7319,4 +3521,116,2226,3 +3522,117,2052,1 +3523,117,6495,4 +3524,117,474,2 +3525,117,1712,2 +3526,117,3534,2 +3527,117,2216,3 +3528,117,1468,5 +3529,117,3833,3 +3530,117,2053,4 +3531,117,9027,2 +3532,117,7394,4 +3533,117,3328,2 +3534,118,6535,2 +3535,118,6952,3 +3536,118,2399,3 +3537,118,8414,2 +3538,118,8087,1 +3539,118,7796,5 +3540,118,1190,5 +3541,118,4376,5 +3542,118,2588,1 +3543,118,2582,4 +3544,118,4467,4 +3545,118,4769,2 +3546,118,4961,4 +3547,118,186,5 +3548,118,5906,2 +3549,118,606,4 +3550,118,2002,1 +3551,118,8620,1 +3552,119,2246,5 +3553,119,8739,3 +3554,119,6395,4 +3555,119,9920,4 +3556,119,8056,5 +3557,119,5836,3 +3558,119,666,5 +3559,119,1961,4 +3560,119,7093,2 +3561,119,8253,5 +3562,119,3186,5 +3563,119,55,2 +3564,119,3402,3 +3565,119,7867,5 +3566,119,3556,1 +3567,119,6205,5 +3568,119,2438,3 +3569,119,4786,4 +3570,119,6106,3 +3571,119,6112,2 +3572,119,9733,5 +3573,119,9580,1 +3574,119,5759,1 +3575,119,290,5 +3576,119,6199,2 +3577,119,9652,5 +3578,119,3550,1 +3579,119,4081,1 +3580,119,6793,4 +3581,119,8867,1 +3582,119,2729,4 +3583,119,485,4 +3584,119,4250,2 +3585,119,7248,4 +3586,119,4385,5 +3587,120,3453,3 +3588,120,4519,5 +3589,120,8307,2 +3590,120,4011,5 +3591,120,2411,2 +3592,120,7126,3 +3593,120,3794,5 +3594,120,55,5 +3595,120,6665,4 +3596,120,4843,1 +3597,120,6329,3 +3598,120,3141,4 +3599,120,5801,5 +3600,120,170,2 +3601,120,8547,4 +3602,120,7222,4 +3603,120,4170,5 +3604,120,3124,2 +3605,120,7129,4 +3606,120,1964,3 +3607,120,5380,4 +3608,120,4856,2 +3609,120,181,4 +3610,120,7891,4 +3611,120,9035,5 +3612,120,125,3 +3613,120,1556,4 +3614,120,1986,5 +3615,120,9392,1 +3616,120,1524,5 +3617,120,1425,5 +3618,120,4194,4 +3619,120,1143,3 +3620,120,338,2 +3621,120,5602,4 +3622,120,5260,2 +3623,120,5447,4 +3624,120,2501,1 +3625,120,5065,2 +3626,120,3696,2 +3627,120,4460,3 +3628,120,529,3 +3629,120,5293,3 +3630,120,8591,1 +3631,120,3790,3 +3632,120,6053,4 +3633,120,8820,2 +3634,121,6856,2 +3635,121,6500,1 +3636,121,2550,4 +3637,121,178,1 +3638,121,9081,1 +3639,121,4421,5 +3640,121,7244,5 +3641,121,8043,3 +3642,121,5759,5 +3643,121,1417,4 +3644,121,8198,2 +3645,121,6022,1 +3646,121,1153,1 +3647,121,2968,1 +3648,121,3709,1 +3649,121,8036,4 +3650,121,4828,1 +3651,121,7820,5 +3652,121,9056,2 +3653,121,9490,4 +3654,121,4110,3 +3655,121,5189,5 +3656,121,7145,4 +3657,121,3943,4 +3658,121,5243,3 +3659,121,2833,4 +3660,121,1501,1 +3661,121,3237,3 +3662,121,8653,5 +3663,121,1741,5 +3664,121,7839,1 +3665,121,5108,1 +3666,121,2275,2 +3667,121,2088,2 +3668,121,7494,4 +3669,121,1123,2 +3670,122,549,3 +3671,122,8027,2 +3672,122,8877,2 +3673,122,2101,5 +3674,122,6489,2 +3675,122,605,3 +3676,122,1972,2 +3677,122,4550,3 +3678,122,405,3 +3679,122,6109,3 +3680,122,3840,5 +3681,122,8715,3 +3682,122,8474,1 +3683,122,1505,5 +3684,122,6391,3 +3685,122,8044,1 +3686,122,6442,4 +3687,122,9560,1 +3688,122,5004,1 +3689,122,2328,5 +3690,122,7032,2 +3691,122,1589,2 +3692,122,9715,5 +3693,122,5273,2 +3694,122,8241,1 +3695,122,7318,5 +3696,122,53,3 +3697,122,2611,1 +3698,122,3092,2 +3699,122,5735,5 +3700,122,1746,1 +3701,122,3978,5 +3702,122,4196,5 +3703,122,9186,3 +3704,122,8545,1 +3705,122,3845,4 +3706,122,3249,2 +3707,122,247,5 +3708,122,1089,3 +3709,122,3234,5 +3710,122,6092,2 +3711,122,8730,2 +3712,122,553,5 +3713,123,8077,4 +3714,123,7371,4 +3715,123,5219,1 +3716,123,3734,5 +3717,123,4255,2 +3718,123,7856,3 +3719,123,1201,4 +3720,123,1976,4 +3721,123,8586,2 +3722,123,3638,4 +3723,123,4889,1 +3724,123,114,1 +3725,123,9642,5 +3726,123,2708,1 +3727,123,4932,3 +3728,123,2301,1 +3729,123,3895,1 +3730,123,7528,1 +3731,123,2451,5 +3732,123,7300,1 +3733,123,9452,1 +3734,123,4132,2 +3735,123,1483,3 +3736,123,8788,1 +3737,123,6221,3 +3738,123,6734,4 +3739,123,727,3 +3740,124,4227,5 +3741,124,9560,5 +3742,124,6169,3 +3743,124,2877,2 +3744,124,4910,2 +3745,124,2472,5 +3746,124,1215,4 +3747,124,3255,2 +3748,124,8449,4 +3749,124,49,2 +3750,124,2274,4 +3751,124,5382,1 +3752,124,2459,5 +3753,124,1093,3 +3754,124,4240,2 +3755,124,2276,2 +3756,124,4101,5 +3757,124,7781,4 +3758,124,7379,3 +3759,124,3684,2 +3760,124,6649,3 +3761,124,9775,1 +3762,124,8692,5 +3763,124,9222,5 +3764,124,5485,1 +3765,124,5714,2 +3766,124,8975,5 +3767,124,726,4 +3768,125,197,5 +3769,125,8404,2 +3770,125,9310,4 +3771,125,7162,3 +3772,125,2416,2 +3773,125,8434,5 +3774,125,7208,5 +3775,125,96,4 +3776,125,6692,2 +3777,125,2207,4 +3778,125,4109,3 +3779,125,411,3 +3780,125,1161,4 +3781,125,8147,1 +3782,125,5326,1 +3783,125,3972,3 +3784,125,1008,2 +3785,125,8507,3 +3786,125,1642,1 +3787,125,2119,3 +3788,125,3811,3 +3789,125,3516,2 +3790,125,6741,3 +3791,125,1694,4 +3792,125,1491,3 +3793,125,5536,2 +3794,125,5960,4 +3795,125,3865,5 +3796,125,1977,3 +3797,125,4144,3 +3798,125,4821,2 +3799,125,5121,3 +3800,125,3099,2 +3801,125,5152,3 +3802,125,3187,4 +3803,125,1281,5 +3804,125,5036,5 +3805,125,5985,1 +3806,125,8850,4 +3807,125,1955,2 +3808,125,3426,4 +3809,125,5035,1 +3810,125,3527,2 +3811,125,3404,2 +3812,125,9010,3 +3813,125,1881,3 +3814,125,8801,5 +3815,125,627,2 +3816,125,9226,1 +3817,126,1146,4 +3818,126,9578,4 +3819,126,5420,3 +3820,126,9522,4 +3821,126,4864,3 +3822,126,8954,3 +3823,126,9621,4 +3824,126,2450,5 +3825,126,5566,3 +3826,126,7336,3 +3827,126,5851,2 +3828,126,9267,4 +3829,126,9242,3 +3830,126,9727,4 +3831,126,7903,1 +3832,126,3030,2 +3833,126,4551,4 +3834,126,63,3 +3835,126,8944,2 +3836,127,4687,2 +3837,127,9425,2 +3838,127,9023,5 +3839,127,9250,5 +3840,127,6258,3 +3841,127,2570,5 +3842,127,3820,2 +3843,127,1900,4 +3844,127,9573,2 +3845,127,8632,1 +3846,127,8618,4 +3847,127,2409,3 +3848,127,469,3 +3849,127,9159,3 +3850,127,2918,4 +3851,127,2553,4 +3852,127,5829,2 +3853,128,6252,4 +3854,128,1866,3 +3855,128,7990,3 +3856,128,4212,3 +3857,128,6813,1 +3858,128,9613,2 +3859,128,4919,5 +3860,128,4524,2 +3861,128,9634,1 +3862,128,869,3 +3863,128,7375,5 +3864,128,7133,4 +3865,128,911,2 +3866,128,335,5 +3867,128,5895,5 +3868,128,7334,2 +3869,128,4038,1 +3870,128,9785,4 +3871,128,3514,1 +3872,128,6441,4 +3873,128,1862,5 +3874,128,1815,2 +3875,128,1776,1 +3876,128,3908,4 +3877,128,1763,1 +3878,128,2965,4 +3879,128,499,1 +3880,128,2069,1 +3881,128,7428,3 +3882,128,9650,3 +3883,128,1049,4 +3884,128,5923,1 +3885,128,7107,3 +3886,128,8421,2 +3887,128,6387,4 +3888,128,1925,1 +3889,128,1146,3 +3890,128,5098,1 +3891,128,6486,2 +3892,128,505,5 +3893,128,1997,5 +3894,128,2093,5 +3895,129,4763,5 +3896,129,881,2 +3897,129,4370,3 +3898,129,172,2 +3899,129,2942,4 +3900,129,9874,5 +3901,129,3602,3 +3902,129,6885,5 +3903,129,8215,4 +3904,129,2806,1 +3905,129,6523,5 +3906,129,3198,4 +3907,129,7922,1 +3908,129,858,2 +3909,129,2144,2 +3910,129,9518,1 +3911,129,259,1 +3912,129,975,4 +3913,129,8643,3 +3914,129,681,5 +3915,129,518,5 +3916,129,4618,5 +3917,129,8142,3 +3918,129,4993,1 +3919,129,7355,4 +3920,129,9548,1 +3921,129,5312,1 +3922,129,7354,3 +3923,129,2888,5 +3924,129,4428,4 +3925,129,816,2 +3926,129,8024,2 +3927,129,8988,1 +3928,129,315,1 +3929,129,8690,3 +3930,129,8340,1 +3931,129,5083,1 +3932,129,7853,2 +3933,129,2461,3 +3934,130,3140,4 +3935,130,1156,2 +3936,130,6768,2 +3937,130,3761,3 +3938,130,6052,2 +3939,130,7965,5 +3940,130,9346,4 +3941,130,712,3 +3942,130,7788,1 +3943,130,8371,5 +3944,130,3092,3 +3945,130,6677,2 +3946,130,4188,2 +3947,130,1628,2 +3948,130,9822,2 +3949,130,2206,4 +3950,130,5931,4 +3951,130,2974,3 +3952,130,2356,2 +3953,130,7877,4 +3954,130,1771,5 +3955,130,2393,2 +3956,130,5783,5 +3957,130,4030,2 +3958,130,8776,1 +3959,130,7744,2 +3960,130,3383,3 +3961,130,8857,1 +3962,130,2993,5 +3963,130,6881,3 +3964,130,8836,1 +3965,130,5912,3 +3966,130,1636,3 +3967,130,4435,5 +3968,130,913,5 +3969,130,9252,3 +3970,130,4152,2 +3971,130,8109,5 +3972,131,1948,1 +3973,131,994,4 +3974,131,6370,1 +3975,131,8273,4 +3976,131,2836,1 +3977,131,7915,5 +3978,131,6489,1 +3979,131,7672,1 +3980,131,8163,5 +3981,131,217,4 +3982,131,4874,1 +3983,131,2829,5 +3984,131,3940,2 +3985,131,2039,4 +3986,131,2197,3 +3987,131,1626,4 +3988,131,2471,3 +3989,131,9359,2 +3990,131,3630,2 +3991,131,9331,2 +3992,131,3626,4 +3993,131,9435,3 +3994,131,1559,5 +3995,131,8303,5 +3996,131,2361,3 +3997,131,876,4 +3998,131,1682,2 +3999,131,9479,2 +4000,131,6344,2 +4001,131,4245,2 +4002,131,2041,1 +4003,131,4326,4 +4004,131,1631,5 +4005,131,5852,3 +4006,131,5305,3 +4007,131,1378,2 +4008,131,1505,5 +4009,131,1831,4 +4010,131,3089,5 +4011,131,9684,4 +4012,131,5535,2 +4013,131,5020,5 +4014,131,3056,3 +4015,132,8314,1 +4016,132,1866,5 +4017,132,4057,1 +4018,132,5726,1 +4019,132,3228,5 +4020,132,2577,3 +4021,132,8873,4 +4022,132,3079,5 +4023,132,7261,1 +4024,132,7172,3 +4025,132,3569,4 +4026,132,4406,1 +4027,132,361,5 +4028,132,1284,1 +4029,132,9481,2 +4030,132,6055,1 +4031,132,5775,4 +4032,132,3006,5 +4033,132,7620,1 +4034,132,1011,5 +4035,132,1219,4 +4036,133,7,5 +4037,133,7835,5 +4038,133,3473,1 +4039,133,3308,4 +4040,133,3691,1 +4041,133,1828,5 +4042,133,2429,1 +4043,133,4112,2 +4044,133,3043,4 +4045,133,765,3 +4046,133,1728,2 +4047,133,6778,4 +4048,133,2916,5 +4049,133,2140,1 +4050,133,1132,5 +4051,133,2604,1 +4052,133,1460,1 +4053,133,1609,1 +4054,133,3428,2 +4055,133,5,4 +4056,133,5848,5 +4057,133,6288,5 +4058,133,3072,4 +4059,133,6657,3 +4060,133,777,3 +4061,133,1332,5 +4062,133,3116,2 +4063,133,3424,1 +4064,133,5898,4 +4065,133,8547,3 +4066,133,2962,3 +4067,133,5700,1 +4068,133,9353,3 +4069,133,984,3 +4070,133,5372,4 +4071,133,6776,1 +4072,133,9932,2 +4073,133,3959,1 +4074,134,3728,2 +4075,134,1135,4 +4076,134,6609,1 +4077,134,2884,2 +4078,134,3792,5 +4079,134,1452,3 +4080,134,9698,1 +4081,134,8635,4 +4082,134,950,1 +4083,134,3242,3 +4084,135,7139,4 +4085,135,5036,3 +4086,135,5632,3 +4087,135,4359,4 +4088,135,8155,3 +4089,135,9617,4 +4090,135,8100,4 +4091,135,4283,5 +4092,135,6805,2 +4093,135,4984,2 +4094,135,266,4 +4095,135,969,2 +4096,135,2934,1 +4097,135,378,2 +4098,135,6728,1 +4099,135,5898,5 +4100,135,3423,2 +4101,135,8972,5 +4102,135,4277,5 +4103,135,2956,5 +4104,135,7374,3 +4105,135,8258,1 +4106,135,8080,5 +4107,135,203,2 +4108,135,1263,5 +4109,135,9688,4 +4110,135,2359,4 +4111,135,6147,4 +4112,135,3577,3 +4113,135,1716,2 +4114,135,352,3 +4115,135,5675,5 +4116,136,3114,4 +4117,136,7836,5 +4118,136,8212,1 +4119,136,6953,5 +4120,136,5133,5 +4121,136,7418,3 +4122,136,8988,5 +4123,136,4282,3 +4124,136,7898,2 +4125,136,2038,1 +4126,136,6017,5 +4127,136,1508,1 +4128,136,5092,1 +4129,136,7154,2 +4130,136,4183,4 +4131,136,7697,5 +4132,136,4646,2 +4133,136,2666,3 +4134,136,7683,1 +4135,136,6944,1 +4136,136,4795,5 +4137,136,5601,4 +4138,136,1318,4 +4139,136,8455,2 +4140,136,4365,5 +4141,136,6430,3 +4142,137,1769,5 +4143,137,3484,2 +4144,137,578,2 +4145,137,7967,5 +4146,137,6098,3 +4147,137,1639,5 +4148,137,7872,4 +4149,137,8859,1 +4150,137,5196,3 +4151,137,1136,3 +4152,137,6139,5 +4153,137,2189,2 +4154,137,9681,5 +4155,137,9694,1 +4156,138,3460,1 +4157,138,9184,1 +4158,138,3168,4 +4159,138,139,1 +4160,138,3641,5 +4161,138,9135,4 +4162,138,560,4 +4163,138,9338,2 +4164,138,8931,1 +4165,138,284,2 +4166,138,4094,3 +4167,138,6595,1 +4168,138,6939,5 +4169,138,8553,5 +4170,138,3742,4 +4171,138,3909,5 +4172,138,3102,1 +4173,138,4884,4 +4174,138,7671,1 +4175,138,8539,3 +4176,138,9361,4 +4177,138,3021,4 +4178,138,9253,1 +4179,138,9759,4 +4180,139,6602,3 +4181,139,848,1 +4182,139,1272,2 +4183,139,544,1 +4184,139,322,4 +4185,139,7502,5 +4186,139,476,3 +4187,139,4921,1 +4188,139,9099,1 +4189,139,5737,2 +4190,139,6311,5 +4191,140,5957,1 +4192,140,7293,3 +4193,140,612,3 +4194,140,6137,4 +4195,140,5234,1 +4196,140,5413,5 +4197,140,7311,4 +4198,140,7583,5 +4199,140,3372,2 +4200,140,6727,1 +4201,140,7104,3 +4202,140,8909,4 +4203,140,80,5 +4204,140,9908,3 +4205,140,5879,2 +4206,140,5555,1 +4207,140,9858,2 +4208,140,9727,1 +4209,140,9371,5 +4210,140,3433,1 +4211,140,8540,4 +4212,140,7522,3 +4213,140,183,3 +4214,140,1270,4 +4215,140,9268,5 +4216,140,6204,3 +4217,140,9260,3 +4218,140,1247,5 +4219,140,9172,3 +4220,140,8534,5 +4221,141,3925,3 +4222,141,6327,4 +4223,141,7023,4 +4224,141,9341,1 +4225,141,6451,3 +4226,141,8230,5 +4227,141,658,1 +4228,141,2566,3 +4229,141,9186,1 +4230,141,89,2 +4231,141,7262,3 +4232,141,4779,2 +4233,141,8856,4 +4234,141,8356,2 +4235,141,642,5 +4236,141,7807,2 +4237,141,2516,3 +4238,141,1765,4 +4239,141,2671,4 +4240,141,6043,3 +4241,141,4768,3 +4242,141,2525,4 +4243,141,1147,1 +4244,141,9903,2 +4245,141,9560,4 +4246,141,6740,4 +4247,141,72,1 +4248,141,6110,4 +4249,141,9978,4 +4250,141,6862,1 +4251,141,2476,3 +4252,141,1266,1 +4253,141,226,4 +4254,141,2511,3 +4255,141,5688,5 +4256,141,7499,4 +4257,141,9445,2 +4258,141,4735,1 +4259,141,9516,1 +4260,141,5848,5 +4261,141,2377,4 +4262,142,9621,3 +4263,142,5731,4 +4264,142,2075,4 +4265,142,2436,3 +4266,142,4566,1 +4267,142,7721,3 +4268,142,5923,2 +4269,142,2238,2 +4270,142,6834,1 +4271,142,3057,4 +4272,142,5326,3 +4273,142,379,4 +4274,142,9402,1 +4275,142,7678,5 +4276,142,5776,5 +4277,142,3193,4 +4278,142,4939,3 +4279,142,2064,2 +4280,142,4032,4 +4281,142,3058,3 +4282,142,2486,3 +4283,142,8164,3 +4284,142,3835,5 +4285,142,5917,3 +4286,142,9389,5 +4287,142,1173,1 +4288,142,8599,3 +4289,142,7370,1 +4290,142,8620,3 +4291,142,8424,3 +4292,142,2296,3 +4293,142,7013,2 +4294,142,3198,3 +4295,142,7511,2 +4296,142,8398,2 +4297,143,2724,2 +4298,143,1127,5 +4299,143,707,3 +4300,143,951,4 +4301,143,3015,5 +4302,143,7620,4 +4303,143,7647,3 +4304,143,2926,1 +4305,143,8964,3 +4306,143,2041,5 +4307,143,7735,1 +4308,143,8353,1 +4309,143,6020,5 +4310,143,4022,5 +4311,143,939,5 +4312,143,5412,4 +4313,143,2008,4 +4314,143,3954,4 +4315,143,8833,5 +4316,143,4862,2 +4317,143,5020,4 +4318,143,440,2 +4319,143,2190,2 +4320,143,7248,2 +4321,144,7797,1 +4322,144,7443,5 +4323,144,2865,4 +4324,144,521,2 +4325,144,5700,3 +4326,144,8394,1 +4327,144,6483,3 +4328,144,2533,5 +4329,144,9715,5 +4330,144,8369,1 +4331,144,8753,2 +4332,144,911,4 +4333,144,8133,5 +4334,144,9973,4 +4335,144,7123,2 +4336,144,7207,3 +4337,144,2523,4 +4338,144,677,5 +4339,144,5397,3 +4340,144,2562,5 +4341,144,9366,3 +4342,145,5449,3 +4343,145,7482,3 +4344,145,2256,3 +4345,145,1319,3 +4346,145,9582,5 +4347,145,6000,5 +4348,145,5488,2 +4349,145,7355,1 +4350,145,1393,2 +4351,145,7205,1 +4352,145,662,5 +4353,145,9990,2 +4354,145,8347,4 +4355,145,7178,4 +4356,146,6527,5 +4357,146,8682,1 +4358,146,698,4 +4359,146,9809,3 +4360,146,7030,4 +4361,146,7384,4 +4362,146,9445,4 +4363,146,2588,1 +4364,146,8975,1 +4365,146,5604,2 +4366,146,458,5 +4367,146,5517,4 +4368,146,2878,4 +4369,146,6830,5 +4370,146,7255,4 +4371,146,1977,1 +4372,146,4920,1 +4373,146,9207,3 +4374,146,926,2 +4375,146,3503,5 +4376,146,7911,1 +4377,146,8797,1 +4378,146,8399,1 +4379,146,1494,2 +4380,146,7290,2 +4381,146,6793,1 +4382,146,4154,1 +4383,146,6653,2 +4384,146,1588,1 +4385,146,8577,2 +4386,147,2084,1 +4387,147,5151,4 +4388,147,1113,5 +4389,147,8233,4 +4390,147,5171,2 +4391,147,6430,1 +4392,147,2090,3 +4393,147,9755,5 +4394,147,9294,5 +4395,147,3663,1 +4396,147,8023,2 +4397,147,9281,2 +4398,147,1649,5 +4399,147,1403,2 +4400,147,2780,4 +4401,147,480,2 +4402,147,6574,5 +4403,147,9133,2 +4404,147,5675,1 +4405,147,5352,5 +4406,147,1685,4 +4407,148,2333,2 +4408,148,5109,4 +4409,148,1609,4 +4410,148,2335,1 +4411,148,368,2 +4412,148,6373,3 +4413,148,5355,3 +4414,148,2076,2 +4415,148,7313,5 +4416,148,3044,1 +4417,148,9118,3 +4418,148,3399,5 +4419,148,2033,1 +4420,148,7561,5 +4421,148,880,4 +4422,148,2528,2 +4423,148,4633,3 +4424,148,2478,1 +4425,148,2610,2 +4426,148,3281,4 +4427,148,9006,2 +4428,148,5361,2 +4429,148,4100,4 +4430,148,1569,4 +4431,148,9712,1 +4432,148,1311,2 +4433,148,3295,3 +4434,148,8574,3 +4435,148,7824,4 +4436,148,2005,1 +4437,148,1244,1 +4438,148,3000,1 +4439,149,2059,1 +4440,149,6927,2 +4441,149,2602,1 +4442,149,9868,1 +4443,149,8660,2 +4444,149,8245,5 +4445,149,2330,4 +4446,149,8172,1 +4447,149,4160,3 +4448,149,9698,1 +4449,149,8476,3 +4450,149,2478,5 +4451,149,3158,4 +4452,149,6738,3 +4453,149,6784,2 +4454,149,5249,3 +4455,149,9381,4 +4456,149,2141,2 +4457,149,714,1 +4458,149,7566,3 +4459,149,3885,3 +4460,149,5416,5 +4461,149,553,4 +4462,150,1423,2 +4463,150,6667,3 +4464,150,5181,1 +4465,150,6286,4 +4466,150,2651,1 +4467,150,4010,4 +4468,150,1479,1 +4469,150,668,2 +4470,150,2415,2 +4471,150,1428,4 +4472,150,9810,5 +4473,150,5218,4 +4474,150,1171,1 +4475,150,7371,5 +4476,150,8265,2 +4477,150,7307,4 +4478,150,6744,1 +4479,150,5100,1 +4480,150,9663,3 +4481,150,6883,1 +4482,150,5310,5 +4483,150,1132,1 +4484,150,1032,4 +4485,150,9424,5 +4486,150,1581,4 +4487,150,8752,5 +4488,150,203,2 +4489,150,1184,4 +4490,150,8530,3 +4491,150,4211,4 +4492,150,2551,1 +4493,150,7328,5 +4494,150,52,5 +4495,151,4192,5 +4496,151,7884,1 +4497,151,4997,2 +4498,151,2733,1 +4499,151,1376,4 +4500,151,4068,1 +4501,151,4129,2 +4502,151,7891,1 +4503,151,9381,3 +4504,151,3768,1 +4505,151,195,2 +4506,152,9313,3 +4507,152,231,2 +4508,152,3058,4 +4509,152,1993,4 +4510,152,7108,4 +4511,152,5946,5 +4512,152,2809,5 +4513,152,7198,1 +4514,152,4900,5 +4515,152,9224,1 +4516,152,9441,3 +4517,152,7163,3 +4518,152,6794,4 +4519,152,2361,3 +4520,152,5601,2 +4521,152,5171,2 +4522,152,2524,2 +4523,152,8780,1 +4524,152,3830,2 +4525,152,7855,1 +4526,152,4520,4 +4527,152,3076,4 +4528,152,1151,5 +4529,152,149,2 +4530,152,7129,4 +4531,152,1220,5 +4532,152,6520,5 +4533,152,7964,3 +4534,152,5644,3 +4535,152,6684,2 +4536,152,9131,2 +4537,152,1691,5 +4538,152,7613,5 +4539,152,6008,4 +4540,152,1840,3 +4541,152,2649,3 +4542,152,1095,5 +4543,152,3275,4 +4544,152,1166,1 +4545,152,987,5 +4546,152,1794,1 +4547,152,3645,5 +4548,152,9316,5 +4549,152,5477,4 +4550,152,8863,3 +4551,152,937,5 +4552,152,320,4 +4553,153,5595,5 +4554,153,3205,4 +4555,153,639,1 +4556,153,6709,2 +4557,153,613,2 +4558,153,3756,3 +4559,153,6888,1 +4560,153,9932,2 +4561,153,8593,4 +4562,153,9852,4 +4563,153,6498,5 +4564,153,5192,4 +4565,153,8146,1 +4566,153,5540,2 +4567,153,5676,5 +4568,153,5976,5 +4569,153,3827,4 +4570,153,9504,5 +4571,153,4755,4 +4572,153,8143,2 +4573,153,6554,1 +4574,154,7892,3 +4575,154,6392,4 +4576,154,944,4 +4577,154,6102,5 +4578,154,4402,4 +4579,154,4315,1 +4580,154,2441,1 +4581,154,4662,2 +4582,154,9420,1 +4583,154,7089,3 +4584,154,5533,2 +4585,154,5829,1 +4586,154,4679,3 +4587,154,799,4 +4588,154,3216,4 +4589,154,2003,4 +4590,154,8662,1 +4591,154,1083,2 +4592,154,3670,5 +4593,154,5914,3 +4594,154,1803,2 +4595,155,8387,5 +4596,155,9914,5 +4597,155,4234,2 +4598,155,8534,5 +4599,155,7824,3 +4600,155,4942,5 +4601,155,1869,2 +4602,155,9097,2 +4603,155,8773,4 +4604,155,1079,5 +4605,155,1386,1 +4606,155,5468,5 +4607,155,2401,3 +4608,155,808,4 +4609,156,9452,5 +4610,156,4990,2 +4611,156,896,3 +4612,156,2626,3 +4613,156,2349,1 +4614,156,9886,2 +4615,156,5796,2 +4616,156,4868,4 +4617,156,2503,5 +4618,156,3241,4 +4619,156,8995,4 +4620,156,4706,1 +4621,156,6054,4 +4622,156,5932,4 +4623,156,369,4 +4624,156,9037,3 +4625,156,5061,4 +4626,156,5151,3 +4627,156,8487,5 +4628,156,1980,4 +4629,156,2487,1 +4630,157,2921,2 +4631,157,1100,3 +4632,157,8088,1 +4633,157,8833,2 +4634,157,7765,2 +4635,157,3477,4 +4636,157,2353,3 +4637,157,5815,4 +4638,157,1749,2 +4639,157,4591,1 +4640,157,592,1 +4641,157,2098,3 +4642,157,1875,2 +4643,157,7976,3 +4644,157,4708,4 +4645,157,3137,4 +4646,157,1520,2 +4647,157,1862,2 +4648,157,7465,5 +4649,157,1049,1 +4650,157,5709,4 +4651,157,6595,1 +4652,158,8075,3 +4653,158,4534,3 +4654,158,3292,2 +4655,158,9981,3 +4656,158,6189,4 +4657,158,4547,3 +4658,158,4924,4 +4659,158,8069,4 +4660,158,5777,1 +4661,158,732,1 +4662,158,5599,1 +4663,158,2244,4 +4664,158,9755,1 +4665,158,2340,4 +4666,158,5917,1 +4667,158,578,4 +4668,158,1173,3 +4669,158,5197,5 +4670,158,6922,4 +4671,158,6672,2 +4672,158,60,5 +4673,158,1256,3 +4674,158,1598,2 +4675,159,101,3 +4676,159,185,3 +4677,159,2368,1 +4678,159,8311,1 +4679,159,3434,1 +4680,159,4482,3 +4681,159,6817,2 +4682,159,3828,3 +4683,159,5608,5 +4684,159,233,5 +4685,159,3780,4 +4686,159,1593,3 +4687,159,6412,3 +4688,159,2360,1 +4689,159,3992,1 +4690,159,7182,5 +4691,159,9678,5 +4692,159,9588,5 +4693,159,4471,5 +4694,159,2586,2 +4695,159,2338,1 +4696,159,7067,1 +4697,159,5928,1 +4698,159,6544,5 +4699,159,2606,4 +4700,159,4295,1 +4701,159,5830,4 +4702,159,2916,1 +4703,159,2612,2 +4704,159,1448,2 +4705,159,410,5 +4706,159,2737,1 +4707,159,3135,3 +4708,159,6333,4 +4709,159,9471,4 +4710,159,5229,5 +4711,159,1703,3 +4712,159,6701,4 +4713,159,1311,5 +4714,159,2561,3 +4715,159,6911,4 +4716,159,8632,5 +4717,159,3803,2 +4718,159,124,1 +4719,159,1986,1 +4720,159,8456,4 +4721,159,6040,3 +4722,159,6153,2 +4723,159,8097,3 +4724,159,6844,5 +4725,160,3457,5 +4726,160,3592,1 +4727,160,5691,1 +4728,160,644,1 +4729,160,1953,3 +4730,160,4504,2 +4731,160,7480,3 +4732,160,4622,3 +4733,160,7623,5 +4734,160,5368,1 +4735,160,4045,3 +4736,160,81,4 +4737,160,7077,1 +4738,160,6639,5 +4739,160,7900,3 +4740,160,6341,2 +4741,160,9165,3 +4742,160,4468,1 +4743,160,5777,3 +4744,160,6976,1 +4745,160,3123,2 +4746,160,1015,3 +4747,160,2918,5 +4748,160,1919,3 +4749,160,7246,2 +4750,160,1911,3 +4751,160,3400,3 +4752,160,4603,5 +4753,160,9116,1 +4754,160,2993,4 +4755,160,233,3 +4756,160,265,5 +4757,160,118,4 +4758,160,5880,5 +4759,160,4222,5 +4760,160,388,3 +4761,160,9504,1 +4762,160,2379,3 +4763,161,2912,1 +4764,161,8711,2 +4765,161,4867,1 +4766,161,4944,1 +4767,161,2857,4 +4768,161,3896,2 +4769,161,8789,1 +4770,161,1801,3 +4771,161,2266,1 +4772,161,6341,5 +4773,161,1085,4 +4774,161,1912,1 +4775,161,7085,3 +4776,161,2395,3 +4777,161,7021,2 +4778,161,7549,2 +4779,161,1075,3 +4780,161,69,1 +4781,161,3132,4 +4782,161,2886,2 +4783,161,2294,3 +4784,161,9837,2 +4785,161,1718,5 +4786,162,2823,5 +4787,162,9778,1 +4788,162,9350,3 +4789,162,2829,3 +4790,162,3586,2 +4791,162,4866,5 +4792,162,4136,1 +4793,162,1396,5 +4794,162,8706,5 +4795,162,5472,5 +4796,162,5359,5 +4797,162,3593,4 +4798,162,1482,4 +4799,162,8652,3 +4800,162,5182,1 +4801,162,1256,5 +4802,162,4875,1 +4803,162,4710,5 +4804,162,1031,1 +4805,162,7887,1 +4806,162,1149,5 +4807,162,5191,3 +4808,162,3138,1 +4809,162,981,5 +4810,162,427,4 +4811,162,9862,5 +4812,162,1592,4 +4813,162,3719,3 +4814,162,6312,5 +4815,162,3968,5 +4816,162,8276,1 +4817,162,5674,5 +4818,162,1697,5 +4819,162,5280,1 +4820,162,438,3 +4821,162,5319,5 +4822,162,6816,3 +4823,162,1822,4 +4824,162,7100,4 +4825,162,4157,4 +4826,162,1143,1 +4827,162,9739,2 +4828,162,4019,4 +4829,162,5792,2 +4830,162,5204,3 +4831,162,2224,2 +4832,162,908,2 +4833,162,4522,2 +4834,162,3502,4 +4835,162,6653,2 +4836,163,6477,3 +4837,163,2393,2 +4838,163,2455,2 +4839,163,645,3 +4840,163,8056,3 +4841,163,4116,1 +4842,163,9750,1 +4843,163,7643,5 +4844,163,3371,2 +4845,163,8470,1 +4846,163,2809,2 +4847,163,5129,2 +4848,163,4769,1 +4849,163,5524,2 +4850,163,2534,3 +4851,163,8065,2 +4852,163,7523,4 +4853,163,853,3 +4854,163,6649,2 +4855,163,5164,4 +4856,163,5919,1 +4857,163,9847,3 +4858,163,1874,5 +4859,163,4215,3 +4860,163,7417,3 +4861,163,2539,2 +4862,163,927,3 +4863,163,2006,3 +4864,163,2565,5 +4865,163,3862,2 +4866,163,3065,2 +4867,163,511,1 +4868,164,9205,5 +4869,164,9610,5 +4870,164,8920,4 +4871,164,7300,3 +4872,164,7156,3 +4873,164,249,1 +4874,164,7308,2 +4875,164,4628,3 +4876,164,8357,2 +4877,164,6732,3 +4878,164,3006,3 +4879,164,5867,1 +4880,164,904,3 +4881,164,4680,1 +4882,164,935,4 +4883,164,2637,3 +4884,165,8042,1 +4885,165,9049,5 +4886,165,3501,1 +4887,165,2666,3 +4888,165,8160,1 +4889,165,8985,4 +4890,165,2642,4 +4891,165,8295,5 +4892,165,1957,3 +4893,165,4325,1 +4894,165,1772,2 +4895,165,3607,2 +4896,165,5912,4 +4897,165,1197,3 +4898,165,1320,5 +4899,165,4443,4 +4900,165,2845,1 +4901,165,2577,4 +4902,165,2514,3 +4903,165,6727,3 +4904,165,5907,4 +4905,165,8999,4 +4906,165,3412,4 +4907,165,3474,5 +4908,165,5389,3 +4909,165,1712,5 +4910,165,8641,5 +4911,165,475,1 +4912,165,2503,3 +4913,165,3512,5 +4914,165,2165,4 +4915,165,7248,3 +4916,165,2863,5 +4917,165,5917,1 +4918,165,8551,4 +4919,165,7279,3 +4920,165,6135,1 +4921,165,4321,1 +4922,165,1239,2 +4923,165,8067,5 +4924,165,9022,3 +4925,165,4791,3 +4926,166,3911,3 +4927,166,9176,1 +4928,166,5536,5 +4929,166,8885,1 +4930,166,8278,5 +4931,166,2399,2 +4932,166,1825,5 +4933,166,2243,5 +4934,166,7762,5 +4935,166,5833,1 +4936,166,8129,1 +4937,166,9298,4 +4938,166,6508,3 +4939,166,2388,2 +4940,166,3971,1 +4941,166,7796,1 +4942,166,6842,4 +4943,166,7269,2 +4944,166,6488,4 +4945,166,3404,1 +4946,166,1613,1 +4947,166,2597,3 +4948,166,7937,3 +4949,166,4133,1 +4950,166,1207,1 +4951,166,9155,5 +4952,166,8370,3 +4953,166,6774,2 +4954,166,6279,1 +4955,166,4645,2 +4956,166,861,5 +4957,166,4781,5 +4958,166,8171,2 +4959,166,252,3 +4960,166,5443,4 +4961,166,9596,1 +4962,166,7645,4 +4963,166,8104,4 +4964,166,1789,3 +4965,166,8817,5 +4966,166,5219,4 +4967,166,8856,4 +4968,166,3220,1 +4969,166,541,2 +4970,166,3547,5 +4971,166,3940,5 +4972,166,7565,3 +4973,166,2571,1 +4974,166,7001,4 +4975,167,6572,1 +4976,167,3399,4 +4977,167,2172,1 +4978,167,6185,3 +4979,167,9819,4 +4980,167,602,2 +4981,167,3337,3 +4982,167,5,1 +4983,167,7608,5 +4984,167,4294,3 +4985,167,6890,5 +4986,167,5396,2 +4987,167,5122,1 +4988,167,3712,4 +4989,167,4739,1 +4990,167,6937,5 +4991,167,3751,3 +4992,167,8804,2 +4993,167,7321,5 +4994,167,1233,2 +4995,167,2178,5 +4996,168,9403,1 +4997,168,5190,5 +4998,168,9999,4 +4999,168,8363,1 +5000,168,5736,1 +5001,168,7332,3 +5002,168,7757,5 +5003,168,225,1 +5004,168,8113,5 +5005,168,595,3 +5006,168,6256,2 +5007,168,7736,1 +5008,168,7630,2 +5009,168,1761,1 +5010,168,8235,5 +5011,168,2430,1 +5012,168,8104,3 +5013,168,2619,3 +5014,168,9711,3 +5015,168,945,4 +5016,168,9329,5 +5017,168,8696,2 +5018,168,804,3 +5019,168,5672,5 +5020,168,8523,5 +5021,168,2351,2 +5022,168,122,1 +5023,168,9534,1 +5024,168,858,2 +5025,168,4794,1 +5026,168,7011,1 +5027,168,743,2 +5028,168,4518,1 +5029,168,3170,4 +5030,168,578,1 +5031,168,2801,3 +5032,168,6234,2 +5033,168,7688,3 +5034,168,1379,5 +5035,168,2557,5 +5036,168,8571,4 +5037,168,8378,5 +5038,168,9797,3 +5039,168,8196,5 +5040,168,4754,2 +5041,169,1087,3 +5042,169,9076,2 +5043,169,1828,3 +5044,169,9613,1 +5045,169,6791,5 +5046,169,9387,1 +5047,169,3121,1 +5048,169,5017,1 +5049,169,5938,2 +5050,169,6390,1 +5051,169,7741,5 +5052,169,1073,5 +5053,169,8199,1 +5054,169,4141,3 +5055,169,9851,4 +5056,169,8945,1 +5057,169,6725,5 +5058,169,5590,3 +5059,169,5480,3 +5060,169,2953,3 +5061,169,2607,3 +5062,169,7135,3 +5063,169,4626,2 +5064,169,9197,4 +5065,169,9409,4 +5066,169,2386,2 +5067,169,2982,3 +5068,169,8478,5 +5069,169,9804,3 +5070,169,7759,4 +5071,169,7497,5 +5072,169,4348,1 +5073,169,6516,2 +5074,169,4731,1 +5075,169,321,2 +5076,169,6715,4 +5077,169,2196,4 +5078,169,3529,2 +5079,169,7059,1 +5080,169,3311,5 +5081,169,6918,3 +5082,169,507,4 +5083,170,8241,5 +5084,170,2670,2 +5085,170,224,5 +5086,170,9102,4 +5087,170,5385,5 +5088,170,6651,2 +5089,170,921,3 +5090,170,2576,1 +5091,170,4011,2 +5092,170,1022,4 +5093,170,8629,3 +5094,170,88,4 +5095,170,7209,3 +5096,170,6613,1 +5097,170,1887,3 +5098,170,3399,2 +5099,170,7600,5 +5100,170,3873,5 +5101,170,5889,3 +5102,170,3962,5 +5103,170,1297,4 +5104,170,7624,4 +5105,170,1623,1 +5106,170,2860,5 +5107,170,9277,4 +5108,170,5859,3 +5109,170,828,4 +5110,170,4391,2 +5111,171,3054,2 +5112,171,9386,2 +5113,171,2704,3 +5114,171,1966,3 +5115,171,1678,5 +5116,171,5079,5 +5117,171,9746,3 +5118,171,1239,1 +5119,171,4718,4 +5120,171,3185,1 +5121,171,3574,5 +5122,171,3546,1 +5123,171,9227,3 +5124,171,1953,4 +5125,171,5447,1 +5126,171,347,4 +5127,171,7457,1 +5128,171,5387,4 +5129,171,7270,4 +5130,172,798,3 +5131,172,4431,3 +5132,172,469,2 +5133,172,5586,4 +5134,172,4292,2 +5135,172,6117,3 +5136,172,1739,2 +5137,172,8988,3 +5138,172,297,3 +5139,172,260,3 +5140,172,717,4 +5141,172,4282,1 +5142,172,1879,2 +5143,172,1689,5 +5144,172,5274,3 +5145,172,9025,4 +5146,172,1998,3 +5147,172,320,5 +5148,172,879,4 +5149,172,1027,2 +5150,172,3412,3 +5151,172,2552,1 +5152,172,434,5 +5153,172,2497,4 +5154,172,2040,1 +5155,172,805,3 +5156,172,4978,4 +5157,173,5479,2 +5158,173,2721,3 +5159,173,1897,5 +5160,173,1465,4 +5161,173,5347,5 +5162,173,8718,2 +5163,173,2880,3 +5164,173,2754,3 +5165,173,1989,1 +5166,173,2237,1 +5167,173,4205,5 +5168,173,8914,4 +5169,173,4499,3 +5170,173,1494,2 +5171,173,99,1 +5172,173,3264,5 +5173,173,4135,5 +5174,173,2009,5 +5175,173,5722,1 +5176,173,883,2 +5177,173,7830,1 +5178,173,1770,5 +5179,173,4428,4 +5180,173,6716,2 +5181,173,5653,2 +5182,173,4914,4 +5183,173,5504,2 +5184,173,4788,1 +5185,173,5978,3 +5186,173,5925,4 +5187,173,440,3 +5188,173,2234,5 +5189,173,4154,4 +5190,173,2521,1 +5191,174,2325,2 +5192,174,8232,4 +5193,174,910,2 +5194,174,9448,4 +5195,174,1242,3 +5196,174,830,1 +5197,174,9233,5 +5198,174,6832,5 +5199,174,2317,2 +5200,174,5750,2 +5201,174,9197,4 +5202,174,4630,4 +5203,174,5796,4 +5204,174,5513,5 +5205,174,990,1 +5206,174,2585,1 +5207,174,7451,1 +5208,174,6153,3 +5209,174,6964,5 +5210,174,8008,4 +5211,174,5413,4 +5212,174,336,3 +5213,174,6553,1 +5214,174,6162,5 +5215,174,6212,4 +5216,174,9180,1 +5217,174,4692,4 +5218,174,1743,4 +5219,174,2856,5 +5220,174,9806,1 +5221,174,2763,3 +5222,174,4351,3 +5223,174,3713,3 +5224,174,6292,3 +5225,174,7418,4 +5226,174,3888,3 +5227,174,6940,5 +5228,174,2450,3 +5229,174,6032,4 +5230,174,8303,2 +5231,174,7830,2 +5232,174,6574,3 +5233,174,8940,1 +5234,174,1824,4 +5235,174,7711,1 +5236,175,1058,5 +5237,175,9958,5 +5238,175,5787,2 +5239,175,7108,2 +5240,175,3494,3 +5241,175,8502,1 +5242,175,9331,5 +5243,175,6582,2 +5244,175,9235,2 +5245,175,6655,1 +5246,175,177,3 +5247,175,2121,5 +5248,175,5947,2 +5249,175,2837,5 +5250,175,4262,5 +5251,175,3915,3 +5252,175,9843,1 +5253,175,9660,1 +5254,175,4366,5 +5255,175,9838,1 +5256,175,6261,4 +5257,175,7776,5 +5258,175,4458,5 +5259,175,4550,2 +5260,175,4782,3 +5261,175,8212,2 +5262,176,9632,4 +5263,176,5880,1 +5264,176,7786,5 +5265,176,8081,5 +5266,176,8136,4 +5267,176,8235,2 +5268,176,9391,5 +5269,176,2013,2 +5270,176,9227,1 +5271,176,5149,4 +5272,176,2826,2 +5273,176,1833,2 +5274,176,2827,2 +5275,176,5630,2 +5276,176,9282,2 +5277,176,8587,1 +5278,176,940,4 +5279,176,3314,2 +5280,176,2023,1 +5281,176,3569,1 +5282,176,6429,1 +5283,176,22,4 +5284,176,6718,1 +5285,176,9129,5 +5286,176,9117,2 +5287,177,102,4 +5288,177,2626,2 +5289,177,5470,3 +5290,177,4771,4 +5291,177,25,4 +5292,177,3506,5 +5293,177,2698,4 +5294,177,1322,3 +5295,177,5151,3 +5296,177,350,5 +5297,177,5418,2 +5298,177,9707,2 +5299,177,4897,1 +5300,177,8041,5 +5301,177,7862,5 +5302,177,4757,3 +5303,177,2635,5 +5304,177,3769,1 +5305,177,9320,5 +5306,177,2370,4 +5307,177,6198,5 +5308,177,6259,5 +5309,177,6417,2 +5310,177,6143,3 +5311,177,6760,2 +5312,177,9343,2 +5313,177,7474,2 +5314,177,1505,2 +5315,177,5826,2 +5316,177,178,4 +5317,177,9636,5 +5318,177,8062,3 +5319,177,9906,4 +5320,177,3812,2 +5321,177,6437,5 +5322,177,127,2 +5323,177,511,4 +5324,177,2968,5 +5325,177,2985,3 +5326,177,6053,3 +5327,177,5939,3 +5328,177,5014,1 +5329,177,1772,4 +5330,178,2484,3 +5331,178,6221,2 +5332,178,7817,2 +5333,178,2288,4 +5334,178,813,3 +5335,178,182,3 +5336,178,466,2 +5337,178,2570,2 +5338,178,707,2 +5339,178,1657,1 +5340,178,3467,1 +5341,178,9877,5 +5342,178,1417,3 +5343,178,6541,3 +5344,178,2273,5 +5345,178,9574,3 +5346,178,6275,4 +5347,178,6676,5 +5348,178,7151,5 +5349,178,2125,2 +5350,178,5202,3 +5351,178,3568,4 +5352,178,5271,1 +5353,178,7844,3 +5354,178,751,2 +5355,178,40,1 +5356,178,4574,5 +5357,178,9546,2 +5358,178,8086,4 +5359,178,6353,5 +5360,178,5338,2 +5361,178,2185,4 +5362,178,4112,3 +5363,178,3604,5 +5364,178,6972,4 +5365,178,3130,1 +5366,178,1230,4 +5367,178,1092,3 +5368,178,9038,5 +5369,178,6210,3 +5370,178,4953,1 +5371,178,879,3 +5372,178,1742,1 +5373,178,7884,5 +5374,178,1920,4 +5375,179,5069,2 +5376,179,5859,2 +5377,179,9560,5 +5378,179,9772,3 +5379,179,5344,2 +5380,179,7413,1 +5381,179,4486,4 +5382,179,2533,4 +5383,179,3402,5 +5384,179,3382,5 +5385,179,6756,2 +5386,179,4396,3 +5387,179,3620,3 +5388,179,5647,5 +5389,179,2174,3 +5390,179,1926,4 +5391,179,6049,4 +5392,179,1860,3 +5393,179,2955,2 +5394,179,9716,3 +5395,179,9455,3 +5396,179,798,5 +5397,179,5582,5 +5398,179,424,5 +5399,180,5869,5 +5400,180,6996,2 +5401,180,2132,1 +5402,180,7917,3 +5403,180,4810,3 +5404,180,5623,5 +5405,180,2605,5 +5406,180,8194,3 +5407,180,5916,2 +5408,180,3130,5 +5409,180,6586,1 +5410,180,7154,5 +5411,180,7794,3 +5412,180,4957,1 +5413,180,3990,2 +5414,180,9322,1 +5415,180,6102,1 +5416,180,5453,2 +5417,180,749,2 +5418,180,6602,4 +5419,180,3621,5 +5420,180,4857,4 +5421,180,9768,4 +5422,180,2150,4 +5423,180,5111,5 +5424,180,4174,2 +5425,180,1833,1 +5426,180,478,3 +5427,180,3012,5 +5428,180,2889,1 +5429,180,5690,3 +5430,180,3477,3 +5431,180,7246,2 +5432,180,1081,5 +5433,180,9805,2 +5434,180,2431,1 +5435,180,4954,5 +5436,180,3557,5 +5437,181,4667,2 +5438,181,2855,4 +5439,181,5518,1 +5440,181,7935,3 +5441,181,9718,2 +5442,181,9606,5 +5443,181,6848,5 +5444,181,9351,2 +5445,181,1196,3 +5446,181,3992,1 +5447,181,78,1 +5448,181,4933,3 +5449,181,2698,4 +5450,181,8216,1 +5451,181,2267,1 +5452,181,8215,1 +5453,181,3217,1 +5454,181,981,4 +5455,181,7809,1 +5456,181,5705,1 +5457,181,3702,1 +5458,181,359,2 +5459,181,6673,4 +5460,181,7712,1 +5461,181,239,1 +5462,181,8745,1 +5463,181,3662,4 +5464,181,1930,5 +5465,181,682,2 +5466,181,2915,1 +5467,181,2329,5 +5468,181,7226,4 +5469,181,417,5 +5470,181,181,4 +5471,181,6427,3 +5472,181,5123,1 +5473,181,6156,5 +5474,182,5096,5 +5475,182,309,2 +5476,182,2973,5 +5477,182,5046,4 +5478,182,1565,4 +5479,182,2673,5 +5480,182,2698,4 +5481,182,882,4 +5482,182,4375,2 +5483,182,4423,5 +5484,182,9512,4 +5485,182,8657,5 +5486,182,8412,4 +5487,182,5184,2 +5488,182,676,2 +5489,182,6092,2 +5490,182,4816,2 +5491,182,1085,1 +5492,182,9705,2 +5493,182,4203,4 +5494,182,4165,1 +5495,182,7692,5 +5496,182,6610,2 +5497,182,4865,4 +5498,182,6193,5 +5499,182,145,3 +5500,182,4399,2 +5501,182,5287,1 +5502,182,8735,2 +5503,182,100,2 +5504,182,5048,4 +5505,182,1852,4 +5506,182,1801,1 +5507,182,3064,4 +5508,182,2978,5 +5509,182,7620,4 +5510,182,4145,4 +5511,182,9734,1 +5512,183,6486,5 +5513,183,8842,4 +5514,183,407,1 +5515,183,133,4 +5516,183,8832,3 +5517,183,7312,1 +5518,183,4655,4 +5519,183,8803,1 +5520,183,7557,2 +5521,183,3406,5 +5522,183,6604,4 +5523,183,1269,1 +5524,183,9890,1 +5525,183,5808,4 +5526,183,6050,3 +5527,183,9355,4 +5528,183,4954,2 +5529,183,650,1 +5530,183,3368,3 +5531,183,6388,3 +5532,183,8212,3 +5533,183,6287,2 +5534,183,8421,5 +5535,183,8663,2 +5536,183,7878,5 +5537,183,6926,4 +5538,183,3479,1 +5539,183,3981,1 +5540,183,8365,2 +5541,183,9104,2 +5542,183,774,5 +5543,183,1397,5 +5544,183,9694,4 +5545,183,5940,4 +5546,183,621,5 +5547,184,2706,3 +5548,184,1254,4 +5549,184,7139,2 +5550,184,1596,3 +5551,184,2929,3 +5552,184,1845,4 +5553,184,7791,4 +5554,184,5320,1 +5555,184,1471,4 +5556,184,6777,3 +5557,184,835,3 +5558,184,27,4 +5559,185,385,3 +5560,185,8309,5 +5561,185,4844,5 +5562,185,1176,1 +5563,185,3727,5 +5564,185,9815,1 +5565,185,4122,1 +5566,185,3336,2 +5567,185,6523,4 +5568,185,9200,2 +5569,185,295,4 +5570,185,6121,4 +5571,185,7483,4 +5572,185,6878,1 +5573,185,6719,4 +5574,185,1138,3 +5575,185,8559,4 +5576,185,3289,3 +5577,185,257,2 +5578,185,4298,4 +5579,185,5686,3 +5580,185,5372,2 +5581,185,5434,1 +5582,185,1773,3 +5583,185,3279,3 +5584,185,5285,1 +5585,185,245,2 +5586,185,5804,2 +5587,185,4766,1 +5588,185,6703,5 +5589,185,1210,4 +5590,185,6593,3 +5591,186,8924,3 +5592,186,2140,2 +5593,186,536,2 +5594,186,3987,1 +5595,186,496,5 +5596,186,1454,5 +5597,186,1570,1 +5598,186,1704,5 +5599,186,6135,4 +5600,186,481,2 +5601,186,4101,4 +5602,186,5875,1 +5603,186,8991,2 +5604,186,5338,5 +5605,186,8102,3 +5606,186,8230,2 +5607,186,1529,4 +5608,186,1255,5 +5609,186,2791,2 +5610,186,4120,2 +5611,186,3135,2 +5612,186,7144,1 +5613,186,4229,5 +5614,186,6238,3 +5615,187,5437,5 +5616,187,8680,4 +5617,187,332,2 +5618,187,8628,3 +5619,187,9479,2 +5620,187,793,4 +5621,187,6325,1 +5622,187,6577,3 +5623,187,2882,5 +5624,187,8103,3 +5625,187,2496,1 +5626,187,9441,3 +5627,187,6375,5 +5628,188,8127,5 +5629,188,2070,5 +5630,188,3003,4 +5631,188,5037,5 +5632,188,6332,2 +5633,188,8690,3 +5634,188,28,1 +5635,188,5791,2 +5636,188,1403,2 +5637,188,1204,2 +5638,188,9697,4 +5639,188,3982,4 +5640,188,5249,2 +5641,188,342,2 +5642,188,2950,1 +5643,188,7561,5 +5644,188,3651,2 +5645,188,4769,1 +5646,188,2963,5 +5647,188,9982,5 +5648,189,6281,1 +5649,189,8201,5 +5650,189,3000,1 +5651,189,8721,2 +5652,189,1392,1 +5653,189,7377,4 +5654,189,3570,1 +5655,189,4808,2 +5656,189,6239,3 +5657,189,3309,5 +5658,189,5656,4 +5659,189,6773,3 +5660,189,7027,3 +5661,189,2596,1 +5662,189,3186,2 +5663,189,3204,3 +5664,189,7811,4 +5665,190,9024,4 +5666,190,7043,5 +5667,190,6283,5 +5668,190,8332,1 +5669,190,6284,2 +5670,190,9858,2 +5671,190,4268,2 +5672,190,1999,1 +5673,190,4095,3 +5674,190,5761,5 +5675,190,2500,1 +5676,190,517,2 +5677,190,6316,5 +5678,190,4869,3 +5679,190,7573,1 +5680,190,3538,5 +5681,190,9112,4 +5682,190,3264,5 +5683,190,7796,1 +5684,190,1374,5 +5685,191,7678,3 +5686,191,4750,1 +5687,191,6770,5 +5688,191,1377,4 +5689,191,1635,5 +5690,191,260,3 +5691,191,6083,2 +5692,191,2339,3 +5693,191,6698,1 +5694,191,7832,4 +5695,191,1182,2 +5696,191,6388,2 +5697,191,5363,3 +5698,191,4351,3 +5699,191,4759,3 +5700,191,2142,2 +5701,191,2178,4 +5702,191,9501,2 +5703,191,7166,2 +5704,191,4306,4 +5705,191,2416,4 +5706,191,8142,2 +5707,191,6002,1 +5708,191,788,1 +5709,191,1932,1 +5710,191,8533,2 +5711,191,6444,3 +5712,191,297,5 +5713,191,172,5 +5714,191,9424,2 +5715,191,1607,3 +5716,192,3619,3 +5717,192,3316,4 +5718,192,2540,2 +5719,192,909,1 +5720,192,5918,3 +5721,192,8528,4 +5722,192,7977,3 +5723,192,4497,3 +5724,192,6755,3 +5725,192,5823,3 +5726,192,3790,5 +5727,192,1404,2 +5728,192,6629,4 +5729,192,9437,5 +5730,192,3341,4 +5731,192,4381,1 +5732,193,3335,2 +5733,193,7143,3 +5734,193,3784,3 +5735,193,2437,4 +5736,193,8346,5 +5737,193,1878,5 +5738,193,6604,2 +5739,193,8116,1 +5740,193,4409,1 +5741,193,8491,3 +5742,193,2699,4 +5743,193,7516,2 +5744,193,647,3 +5745,193,8234,5 +5746,193,3874,1 +5747,193,6736,3 +5748,193,5937,5 +5749,193,7857,1 +5750,193,7240,1 +5751,193,9639,1 +5752,193,9921,3 +5753,193,3627,1 +5754,193,181,5 +5755,193,5284,3 +5756,193,3555,5 +5757,193,4743,5 +5758,193,7558,2 +5759,193,975,5 +5760,193,3074,5 +5761,193,8281,1 +5762,193,5270,3 +5763,193,5996,5 +5764,193,2392,4 +5765,193,2148,1 +5766,193,8272,5 +5767,193,2878,2 +5768,193,2104,4 +5769,193,6578,1 +5770,193,1381,1 +5771,193,5286,2 +5772,193,2868,3 +5773,193,8111,3 +5774,193,6242,4 +5775,193,2188,4 +5776,193,6351,1 +5777,193,9124,3 +5778,193,9528,4 +5779,193,6147,2 +5780,194,5530,2 +5781,194,9327,4 +5782,194,4023,4 +5783,194,5270,5 +5784,194,3163,2 +5785,194,1958,2 +5786,194,6118,5 +5787,194,1305,3 +5788,194,2179,5 +5789,194,6021,5 +5790,194,9018,4 +5791,194,3209,4 +5792,194,4892,4 +5793,194,1732,5 +5794,194,6476,3 +5795,194,24,2 +5796,194,643,4 +5797,194,6577,3 +5798,194,9519,4 +5799,194,6025,2 +5800,194,3521,1 +5801,194,2677,4 +5802,194,5141,5 +5803,194,6834,3 +5804,194,7842,5 +5805,194,9557,2 +5806,194,1177,1 +5807,194,2394,4 +5808,194,6201,1 +5809,194,3294,3 +5810,194,4003,3 +5811,194,5268,2 +5812,195,9807,5 +5813,195,1098,5 +5814,195,7415,4 +5815,195,7138,2 +5816,195,2261,1 +5817,195,1766,5 +5818,195,1878,1 +5819,195,6197,4 +5820,195,6837,4 +5821,195,6031,3 +5822,195,6168,2 +5823,195,3325,4 +5824,195,972,4 +5825,195,5692,2 +5826,195,9680,2 +5827,195,7865,4 +5828,195,9472,4 +5829,195,5415,1 +5830,195,8509,5 +5831,195,7749,3 +5832,195,6055,5 +5833,195,3226,5 +5834,195,3412,3 +5835,195,2302,4 +5836,195,1756,2 +5837,195,9877,3 +5838,195,9062,4 +5839,195,3405,2 +5840,195,186,1 +5841,195,6678,2 +5842,195,8996,2 +5843,195,7848,4 +5844,195,3645,4 +5845,195,5496,5 +5846,195,6861,5 +5847,195,6558,2 +5848,195,4108,2 +5849,195,6904,3 +5850,195,744,4 +5851,195,5580,5 +5852,195,8886,1 +5853,195,6522,1 +5854,195,3551,5 +5855,195,7155,1 +5856,195,558,4 +5857,195,292,5 +5858,195,3625,1 +5859,196,2346,1 +5860,196,9631,2 +5861,196,1847,3 +5862,196,650,3 +5863,196,4873,2 +5864,196,1492,5 +5865,196,451,4 +5866,196,1596,1 +5867,196,6468,5 +5868,196,3983,4 +5869,196,7171,3 +5870,196,7401,2 +5871,196,1409,3 +5872,196,386,1 +5873,196,525,4 +5874,196,7163,2 +5875,196,5252,1 +5876,196,4858,2 +5877,196,2916,1 +5878,196,3533,5 +5879,196,550,2 +5880,196,6862,1 +5881,197,3074,2 +5882,197,5128,5 +5883,197,3817,2 +5884,197,7121,1 +5885,197,9623,2 +5886,197,1391,4 +5887,197,6704,5 +5888,197,362,5 +5889,197,2675,5 +5890,197,7162,3 +5891,197,2715,4 +5892,197,480,1 +5893,197,5227,5 +5894,197,2742,5 +5895,197,9001,3 +5896,197,5563,4 +5897,197,9056,5 +5898,197,4105,5 +5899,197,8883,2 +5900,197,9944,1 +5901,197,7022,1 +5902,197,6927,3 +5903,197,3052,5 +5904,197,4293,4 +5905,197,9592,3 +5906,197,1593,3 +5907,198,6488,1 +5908,198,3352,2 +5909,198,9735,5 +5910,198,4855,2 +5911,198,5128,4 +5912,198,8184,2 +5913,198,2154,3 +5914,198,138,4 +5915,198,3782,1 +5916,198,2033,1 +5917,198,6565,2 +5918,198,8144,2 +5919,198,6414,1 +5920,198,3843,4 +5921,198,1888,3 +5922,198,7771,1 +5923,198,892,1 +5924,198,3383,4 +5925,198,2063,1 +5926,198,5764,1 +5927,198,6634,5 +5928,198,508,4 +5929,198,628,4 +5930,198,9766,3 +5931,198,1936,3 +5932,198,9255,4 +5933,198,351,3 +5934,198,1954,4 +5935,198,8142,1 +5936,198,1749,4 +5937,198,8618,1 +5938,198,6836,1 +5939,198,2400,3 +5940,198,1639,5 +5941,198,8654,4 +5942,198,7350,3 +5943,198,6968,2 +5944,198,5719,3 +5945,198,4473,2 +5946,198,1038,3 +5947,198,5995,1 +5948,198,9099,3 +5949,198,5464,3 +5950,198,7841,2 +5951,198,6680,4 +5952,199,4781,5 +5953,199,1435,2 +5954,199,1070,2 +5955,199,4807,2 +5956,199,9033,2 +5957,199,7437,3 +5958,199,7921,5 +5959,199,3374,4 +5960,199,863,4 +5961,199,2122,3 +5962,199,6511,3 +5963,199,5727,5 +5964,199,4066,1 +5965,199,6999,4 +5966,199,8804,3 +5967,199,8081,4 +5968,200,9975,5 +5969,200,6927,1 +5970,200,6032,1 +5971,200,6542,1 +5972,200,9521,4 +5973,200,5391,2 +5974,200,3168,4 +5975,200,5660,1 +5976,200,1209,5 +5977,200,5557,1 +5978,200,2371,4 +5979,200,4783,3 +5980,200,7901,5 +5981,200,4881,3 +5982,200,3340,5 +5983,200,7947,1 +5984,200,662,1 +5985,200,1372,3 +5986,200,1794,4 +5987,200,1755,3 +5988,200,1988,5 +5989,200,4368,2 +5990,200,8936,2 +5991,200,1531,3 +5992,200,2892,1 +5993,200,8856,2 +5994,200,5115,4 +5995,200,806,2 +5996,200,3327,5 +5997,200,4049,1 +5998,200,7919,4 +5999,200,3066,2 +6000,200,5627,2 +6001,200,2768,5 +6002,200,2472,5 +6003,200,3085,3 +6004,201,5306,5 +6005,201,6392,1 +6006,201,1908,2 +6007,201,8542,1 +6008,201,6815,3 +6009,201,478,4 +6010,201,401,3 +6011,201,9023,1 +6012,201,2126,3 +6013,201,5767,4 +6014,201,620,5 +6015,201,670,1 +6016,201,9908,4 +6017,201,4276,2 +6018,201,3045,1 +6019,201,1933,2 +6020,201,7734,4 +6021,201,3445,1 +6022,201,9202,4 +6023,201,5530,4 +6024,201,561,3 +6025,201,4937,1 +6026,201,690,1 +6027,201,1586,2 +6028,201,291,5 +6029,201,1046,5 +6030,201,8294,3 +6031,201,3761,3 +6032,201,760,1 +6033,201,3086,3 +6034,201,9731,5 +6035,201,6751,3 +6036,201,903,3 +6037,201,3056,4 +6038,201,7663,5 +6039,201,7889,5 +6040,201,7203,1 +6041,201,8601,1 +6042,201,7790,4 +6043,201,1687,2 +6044,201,546,2 +6045,201,2826,1 +6046,201,5321,1 +6047,202,3757,5 +6048,202,8865,4 +6049,202,4534,3 +6050,202,7754,5 +6051,202,6278,5 +6052,202,5638,1 +6053,202,1596,5 +6054,202,7828,5 +6055,202,8284,5 +6056,202,8639,4 +6057,202,1849,2 +6058,202,5776,3 +6059,202,812,3 +6060,202,3249,3 +6061,202,406,2 +6062,202,5780,5 +6063,202,6643,3 +6064,202,5589,2 +6065,202,7345,3 +6066,202,8644,4 +6067,202,2497,4 +6068,202,8349,2 +6069,202,2549,1 +6070,202,4068,5 +6071,202,1994,4 +6072,202,2883,4 +6073,202,6279,1 +6074,202,83,5 +6075,202,3326,4 +6076,202,5560,1 +6077,202,7335,4 +6078,202,1587,2 +6079,202,1363,1 +6080,202,1173,5 +6081,202,1379,2 +6082,202,8139,3 +6083,203,944,1 +6084,203,8077,3 +6085,203,9570,4 +6086,203,4501,3 +6087,203,6431,2 +6088,203,3368,1 +6089,203,2776,2 +6090,203,6878,1 +6091,203,8973,2 +6092,203,3954,5 +6093,203,11,5 +6094,203,2431,4 +6095,203,6447,2 +6096,203,5161,3 +6097,203,7506,2 +6098,203,4533,2 +6099,203,7582,4 +6100,203,9741,4 +6101,203,2429,3 +6102,203,7764,3 +6103,203,3031,2 +6104,203,9583,3 +6105,203,9303,2 +6106,203,8777,2 +6107,203,3179,1 +6108,203,1558,4 +6109,203,4732,5 +6110,203,2507,5 +6111,203,5117,3 +6112,203,9956,3 +6113,203,196,3 +6114,203,6828,4 +6115,203,7969,5 +6116,203,7461,5 +6117,203,5822,1 +6118,203,6581,1 +6119,203,1989,2 +6120,203,1425,2 +6121,203,469,2 +6122,203,6517,5 +6123,203,1625,3 +6124,203,4653,2 +6125,203,7182,1 +6126,203,83,1 +6127,203,3065,2 +6128,203,808,3 +6129,203,7521,5 +6130,203,4166,1 +6131,203,3143,4 +6132,204,9038,2 +6133,204,266,3 +6134,204,504,4 +6135,204,3314,4 +6136,204,6212,1 +6137,204,8229,3 +6138,204,7497,2 +6139,204,7177,3 +6140,204,1865,4 +6141,204,6675,5 +6142,204,6967,5 +6143,204,3042,2 +6144,204,9937,1 +6145,204,7181,5 +6146,204,2704,1 +6147,204,8857,2 +6148,204,1100,1 +6149,204,5016,5 +6150,204,593,2 +6151,204,233,1 +6152,204,696,3 +6153,204,154,3 +6154,204,3880,2 +6155,204,3439,3 +6156,204,131,1 +6157,204,2029,5 +6158,204,9478,1 +6159,204,5644,5 +6160,204,9797,5 +6161,204,6452,1 +6162,204,519,1 +6163,204,5396,3 +6164,204,1897,3 +6165,204,325,1 +6166,204,7491,2 +6167,204,6725,1 +6168,204,2058,3 +6169,204,4487,2 +6170,204,9332,2 +6171,204,9338,3 +6172,204,7939,2 +6173,204,884,5 +6174,205,1584,2 +6175,205,4060,5 +6176,205,2975,4 +6177,205,9684,4 +6178,205,5711,5 +6179,205,2311,1 +6180,205,202,3 +6181,205,7972,5 +6182,205,3373,5 +6183,205,5606,2 +6184,205,8772,3 +6185,205,2640,1 +6186,205,48,1 +6187,205,281,1 +6188,205,3816,5 +6189,205,2143,3 +6190,205,4053,3 +6191,205,3127,2 +6192,205,7722,5 +6193,205,2920,4 +6194,205,5821,3 +6195,205,313,5 +6196,205,5508,1 +6197,205,5221,5 +6198,205,5007,1 +6199,205,4258,1 +6200,205,8320,3 +6201,205,5638,3 +6202,205,4803,2 +6203,205,5813,1 +6204,205,4186,1 +6205,205,4051,1 +6206,206,775,4 +6207,206,2766,5 +6208,206,9872,3 +6209,206,2065,3 +6210,206,191,4 +6211,206,1180,3 +6212,206,8840,4 +6213,206,3767,4 +6214,206,1912,2 +6215,206,6621,1 +6216,206,9236,4 +6217,206,6352,5 +6218,206,8946,2 +6219,206,3217,1 +6220,206,5558,4 +6221,206,8171,4 +6222,206,2307,1 +6223,206,7253,1 +6224,206,483,4 +6225,206,6160,4 +6226,206,4586,1 +6227,206,338,4 +6228,206,4135,3 +6229,206,2683,3 +6230,206,6552,4 +6231,206,1270,1 +6232,206,4115,4 +6233,206,3241,4 +6234,206,1901,3 +6235,206,7567,2 +6236,206,7050,3 +6237,206,3303,4 +6238,207,9082,4 +6239,207,9992,4 +6240,207,8931,4 +6241,207,3013,1 +6242,207,584,3 +6243,207,6534,2 +6244,207,1841,2 +6245,207,1585,3 +6246,207,8650,4 +6247,207,3045,1 +6248,207,3005,1 +6249,207,352,4 +6250,207,5090,5 +6251,207,9567,5 +6252,207,2795,4 +6253,207,7380,1 +6254,207,1086,2 +6255,208,6082,3 +6256,208,3371,5 +6257,208,5841,2 +6258,208,3478,1 +6259,208,1297,3 +6260,208,5680,3 +6261,208,6795,3 +6262,208,1579,3 +6263,208,1799,3 +6264,208,9999,1 +6265,208,7004,4 +6266,208,8220,2 +6267,208,1459,2 +6268,208,6823,1 +6269,208,6248,4 +6270,208,9599,1 +6271,208,9443,3 +6272,208,43,2 +6273,208,2106,4 +6274,208,5285,4 +6275,208,2407,1 +6276,208,8489,2 +6277,208,491,4 +6278,208,1877,5 +6279,208,7142,5 +6280,208,9857,2 +6281,208,1146,1 +6282,208,4811,5 +6283,208,9128,4 +6284,209,8889,1 +6285,209,4087,4 +6286,209,726,5 +6287,209,6248,4 +6288,209,6996,4 +6289,209,2373,4 +6290,209,6329,3 +6291,209,6714,5 +6292,209,2043,4 +6293,209,5784,5 +6294,209,8937,4 +6295,209,3918,2 +6296,209,369,3 +6297,209,1187,1 +6298,209,7721,1 +6299,209,9895,5 +6300,209,8211,2 +6301,209,3785,5 +6302,209,8507,4 +6303,209,113,4 +6304,209,2029,5 +6305,209,6990,2 +6306,209,1406,3 +6307,209,93,5 +6308,209,3835,3 +6309,209,2475,2 +6310,209,3261,2 +6311,209,6505,1 +6312,209,9291,1 +6313,209,8521,1 +6314,209,6295,3 +6315,209,35,5 +6316,209,9584,3 +6317,209,6332,2 +6318,209,613,4 +6319,209,4059,2 +6320,209,6952,1 +6321,209,2299,3 +6322,209,7975,3 +6323,209,1188,2 +6324,209,8320,1 +6325,209,9918,5 +6326,210,1315,5 +6327,210,7061,3 +6328,210,8366,2 +6329,210,5295,2 +6330,210,1913,2 +6331,210,1458,5 +6332,210,4153,2 +6333,210,6431,3 +6334,210,9622,5 +6335,210,1451,5 +6336,210,4576,3 +6337,210,6969,2 +6338,210,1794,4 +6339,211,441,1 +6340,211,7045,3 +6341,211,3494,4 +6342,211,3825,2 +6343,211,6713,3 +6344,211,7281,3 +6345,211,2017,4 +6346,211,7849,3 +6347,211,6725,2 +6348,211,1802,2 +6349,211,6591,5 +6350,212,9135,1 +6351,212,4511,5 +6352,212,6054,1 +6353,212,976,4 +6354,212,4641,3 +6355,212,6426,2 +6356,212,7295,3 +6357,212,1225,4 +6358,212,7404,1 +6359,212,5951,5 +6360,212,5962,1 +6361,212,5096,1 +6362,212,4380,5 +6363,212,4816,2 +6364,212,1588,2 +6365,212,3301,2 +6366,212,6102,3 +6367,212,6841,3 +6368,212,6986,3 +6369,212,3359,4 +6370,212,9211,3 +6371,212,2883,3 +6372,212,6237,1 +6373,212,2462,2 +6374,212,7874,5 +6375,212,4198,3 +6376,212,7133,1 +6377,212,9190,1 +6378,212,9431,3 +6379,212,6867,1 +6380,212,8954,4 +6381,212,8225,2 +6382,212,2992,2 +6383,213,7766,5 +6384,213,3527,3 +6385,213,7555,4 +6386,213,9146,2 +6387,213,2733,2 +6388,213,5875,3 +6389,213,332,4 +6390,213,4286,5 +6391,213,8917,2 +6392,213,2531,1 +6393,213,9648,1 +6394,213,2764,4 +6395,213,7389,2 +6396,213,1831,1 +6397,213,8729,4 +6398,213,7603,2 +6399,213,165,4 +6400,213,4060,2 +6401,213,3700,4 +6402,213,2209,3 +6403,213,9587,5 +6404,213,6078,1 +6405,213,7867,4 +6406,213,1614,1 +6407,213,6926,1 +6408,213,4674,4 +6409,213,5428,1 +6410,214,8121,1 +6411,214,2928,3 +6412,214,7225,1 +6413,214,3581,1 +6414,214,71,1 +6415,214,2985,5 +6416,214,3137,1 +6417,214,6360,5 +6418,214,7721,4 +6419,214,7134,5 +6420,214,2961,3 +6421,214,6079,1 +6422,214,3828,4 +6423,214,3057,1 +6424,214,5076,5 +6425,214,279,3 +6426,214,8423,1 +6427,214,5179,2 +6428,214,7745,3 +6429,214,7179,3 +6430,214,9322,4 +6431,214,5044,1 +6432,214,5220,3 +6433,214,4940,2 +6434,214,7400,5 +6435,214,182,5 +6436,214,7973,2 +6437,214,2444,3 +6438,214,7327,2 +6439,214,638,3 +6440,214,3939,2 +6441,214,1433,3 +6442,214,6090,2 +6443,215,2658,1 +6444,215,5217,3 +6445,215,2345,5 +6446,215,1873,5 +6447,215,7827,4 +6448,215,2864,3 +6449,215,5730,3 +6450,215,8517,5 +6451,215,1789,2 +6452,215,6597,3 +6453,215,7149,5 +6454,215,827,3 +6455,215,2933,5 +6456,215,2941,4 +6457,215,7301,3 +6458,215,6401,3 +6459,215,5996,4 +6460,215,1002,3 +6461,215,6819,4 +6462,215,5384,5 +6463,215,3184,4 +6464,215,7233,2 +6465,215,6932,5 +6466,215,8320,5 +6467,215,2732,4 +6468,215,1443,2 +6469,215,7609,3 +6470,215,6529,1 +6471,215,1146,3 +6472,215,6130,5 +6473,215,6210,4 +6474,215,1446,2 +6475,215,485,5 +6476,215,8117,3 +6477,215,161,5 +6478,215,9404,4 +6479,215,81,4 +6480,215,9765,4 +6481,215,7161,5 +6482,215,1969,1 +6483,215,7097,5 +6484,215,5357,1 +6485,215,2015,4 +6486,215,2548,5 +6487,215,2286,4 +6488,215,2580,3 +6489,216,6268,3 +6490,216,8151,1 +6491,216,6758,3 +6492,216,1851,1 +6493,216,2397,4 +6494,216,6340,5 +6495,216,9177,5 +6496,216,3909,2 +6497,216,7620,4 +6498,216,8107,1 +6499,216,2254,4 +6500,216,7556,5 +6501,216,8928,1 +6502,216,7033,3 +6503,216,8077,3 +6504,216,9465,2 +6505,216,6974,1 +6506,216,7565,5 +6507,216,2330,3 +6508,216,4525,4 +6509,216,2236,3 +6510,216,9493,5 +6511,216,2269,1 +6512,217,6602,1 +6513,217,8279,1 +6514,217,8554,5 +6515,217,8582,3 +6516,217,5867,2 +6517,217,6017,1 +6518,217,4604,2 +6519,217,4954,3 +6520,217,9763,4 +6521,217,9229,5 +6522,217,8064,2 +6523,217,2299,3 +6524,217,1047,2 +6525,217,1434,1 +6526,217,7342,5 +6527,217,949,1 +6528,217,6234,1 +6529,217,8460,1 +6530,217,1314,5 +6531,217,9039,3 +6532,217,5747,5 +6533,217,71,2 +6534,217,2519,3 +6535,217,9239,5 +6536,217,5554,3 +6537,217,9262,1 +6538,217,1403,3 +6539,217,704,3 +6540,217,2237,3 +6541,217,5652,5 +6542,217,7968,5 +6543,217,9746,3 +6544,217,9776,5 +6545,217,649,3 +6546,217,1554,1 +6547,217,2075,4 +6548,217,1409,4 +6549,217,3092,1 +6550,217,2203,3 +6551,217,9871,2 +6552,217,587,3 +6553,218,6883,1 +6554,218,1351,2 +6555,218,9560,4 +6556,218,8451,1 +6557,218,1200,4 +6558,218,8876,5 +6559,218,9409,4 +6560,218,1360,2 +6561,218,6616,1 +6562,218,6153,4 +6563,218,2392,2 +6564,218,727,2 +6565,218,2149,5 +6566,218,5696,2 +6567,218,9308,5 +6568,218,907,5 +6569,218,7540,4 +6570,218,1905,3 +6571,218,3308,1 +6572,218,2720,2 +6573,218,9348,4 +6574,218,9168,2 +6575,218,9821,4 +6576,218,5289,2 +6577,218,2258,3 +6578,218,9919,5 +6579,218,2628,2 +6580,218,3053,5 +6581,218,888,3 +6582,218,2854,3 +6583,218,8929,4 +6584,218,4629,5 +6585,218,7531,1 +6586,218,2129,2 +6587,219,7764,2 +6588,219,2509,3 +6589,219,7095,1 +6590,219,2058,2 +6591,219,195,5 +6592,219,9524,2 +6593,219,4838,4 +6594,219,7528,4 +6595,219,9610,1 +6596,219,6348,3 +6597,219,6345,2 +6598,219,2866,3 +6599,219,4570,2 +6600,219,1577,4 +6601,219,1987,3 +6602,219,5477,3 +6603,219,1883,4 +6604,219,7355,2 +6605,219,4456,5 +6606,220,1301,1 +6607,220,3099,1 +6608,220,837,2 +6609,220,8132,5 +6610,220,2680,2 +6611,220,4926,5 +6612,220,3917,2 +6613,220,2303,3 +6614,220,1702,2 +6615,220,9891,2 +6616,220,9048,4 +6617,221,7146,1 +6618,221,9422,2 +6619,221,748,1 +6620,221,744,5 +6621,221,807,1 +6622,221,4976,2 +6623,221,6502,3 +6624,221,6860,4 +6625,221,3167,4 +6626,221,2876,1 +6627,221,2931,2 +6628,221,429,1 +6629,221,4422,2 +6630,221,5498,1 +6631,221,5157,4 +6632,221,3770,3 +6633,221,3433,4 +6634,221,7013,5 +6635,221,8408,4 +6636,221,519,4 +6637,221,1269,5 +6638,221,9259,1 +6639,221,5803,2 +6640,221,7001,3 +6641,221,1632,5 +6642,221,5134,1 +6643,221,1132,5 +6644,221,1055,4 +6645,221,740,5 +6646,221,5520,2 +6647,221,1551,3 +6648,221,5679,4 +6649,221,5869,2 +6650,221,8347,5 +6651,221,3633,1 +6652,221,5754,3 +6653,221,3346,3 +6654,221,8870,2 +6655,221,7371,1 +6656,221,7282,4 +6657,221,4905,2 +6658,221,1537,1 +6659,221,7066,4 +6660,222,4556,1 +6661,222,9911,4 +6662,222,7562,4 +6663,222,5799,4 +6664,222,6177,3 +6665,222,6792,4 +6666,222,7538,5 +6667,222,7808,2 +6668,222,1552,5 +6669,222,9298,1 +6670,222,8921,1 +6671,222,6261,4 +6672,222,7006,5 +6673,222,3637,3 +6674,222,629,1 +6675,223,1141,2 +6676,223,3902,4 +6677,223,7838,1 +6678,223,3672,4 +6679,223,6116,1 +6680,223,8383,1 +6681,223,4161,4 +6682,223,3677,4 +6683,223,6483,3 +6684,223,3753,1 +6685,223,6443,1 +6686,223,6783,4 +6687,223,3233,4 +6688,223,7199,1 +6689,223,477,4 +6690,223,818,5 +6691,223,4273,5 +6692,223,8117,4 +6693,223,7330,1 +6694,223,5729,1 +6695,223,9323,5 +6696,223,6695,2 +6697,223,2767,2 +6698,223,8605,5 +6699,223,1030,4 +6700,223,7784,1 +6701,223,6147,2 +6702,223,9367,5 +6703,223,8169,2 +6704,223,5960,3 +6705,223,5796,2 +6706,223,7742,3 +6707,223,6121,4 +6708,223,4297,4 +6709,223,1605,1 +6710,223,5798,3 +6711,223,3868,2 +6712,224,5500,2 +6713,224,6910,3 +6714,224,9128,1 +6715,224,6924,4 +6716,224,9992,5 +6717,224,1303,1 +6718,224,9248,3 +6719,224,9132,2 +6720,224,5999,1 +6721,224,6123,4 +6722,224,2035,3 +6723,224,3197,4 +6724,224,7871,4 +6725,224,997,1 +6726,224,6575,4 +6727,224,9051,1 +6728,224,5722,5 +6729,224,3700,4 +6730,224,5509,1 +6731,224,8323,3 +6732,224,486,3 +6733,224,7629,2 +6734,224,4370,5 +6735,224,9776,5 +6736,224,719,3 +6737,224,5014,5 +6738,224,2962,5 +6739,224,4598,3 +6740,224,1861,1 +6741,224,1416,1 +6742,224,4282,3 +6743,224,7740,3 +6744,224,3743,2 +6745,224,9916,4 +6746,224,8772,2 +6747,224,7847,4 +6748,224,2423,4 +6749,224,8085,5 +6750,224,463,3 +6751,224,3417,1 +6752,224,5546,3 +6753,224,7075,3 +6754,224,2921,1 +6755,224,5233,4 +6756,224,3902,1 +6757,225,7414,2 +6758,225,1235,2 +6759,225,5127,5 +6760,225,3098,5 +6761,225,9989,3 +6762,225,6919,1 +6763,225,8851,5 +6764,225,8187,4 +6765,225,2653,5 +6766,225,4634,3 +6767,225,7871,2 +6768,225,9841,5 +6769,225,5105,5 +6770,225,7793,4 +6771,225,7587,3 +6772,225,658,2 +6773,225,5869,2 +6774,225,1229,5 +6775,225,1448,2 +6776,225,1606,3 +6777,225,7959,1 +6778,225,7099,2 +6779,225,3891,4 +6780,225,4415,4 +6781,225,9614,3 +6782,225,439,4 +6783,226,9819,3 +6784,226,7388,2 +6785,226,515,3 +6786,226,8403,1 +6787,226,3691,4 +6788,226,2131,2 +6789,226,3336,1 +6790,226,4861,5 +6791,226,1085,5 +6792,226,5668,5 +6793,226,2140,1 +6794,226,6105,3 +6795,226,8627,4 +6796,226,4926,1 +6797,226,8945,3 +6798,226,6068,4 +6799,226,1833,4 +6800,226,3735,3 +6801,226,6253,1 +6802,226,5660,2 +6803,226,9406,1 +6804,226,634,4 +6805,226,2936,3 +6806,226,5350,5 +6807,226,1732,3 +6808,226,3190,3 +6809,226,3936,4 +6810,226,3051,5 +6811,226,4708,5 +6812,226,6961,4 +6813,226,7013,5 +6814,226,4109,4 +6815,226,6693,1 +6816,226,5475,5 +6817,226,6309,1 +6818,226,6603,2 +6819,226,8272,1 +6820,226,2460,3 +6821,226,1197,5 +6822,226,7654,1 +6823,226,9080,3 +6824,226,1559,1 +6825,226,2933,4 +6826,226,3025,5 +6827,226,3494,2 +6828,226,9656,5 +6829,226,6684,4 +6830,226,3639,1 +6831,226,6228,3 +6832,227,6989,5 +6833,227,7287,4 +6834,227,6803,4 +6835,227,4411,5 +6836,227,9561,3 +6837,227,630,2 +6838,227,9041,5 +6839,227,6157,2 +6840,227,1870,4 +6841,227,8284,2 +6842,227,5453,1 +6843,227,1974,1 +6844,227,407,2 +6845,227,4456,3 +6846,227,8388,2 +6847,227,8481,5 +6848,227,1917,5 +6849,227,643,2 +6850,227,2798,2 +6851,227,8433,4 +6852,227,8469,1 +6853,227,8171,4 +6854,227,141,3 +6855,227,3011,4 +6856,227,3432,5 +6857,227,1852,5 +6858,227,5207,3 +6859,227,2285,1 +6860,227,5201,4 +6861,227,5688,5 +6862,227,8072,1 +6863,227,8399,3 +6864,227,3925,3 +6865,227,1567,1 +6866,227,5473,4 +6867,228,6566,4 +6868,228,4864,3 +6869,228,4926,1 +6870,228,8081,2 +6871,228,1315,4 +6872,228,9294,4 +6873,228,3561,1 +6874,228,3704,1 +6875,228,9056,4 +6876,228,750,2 +6877,228,9531,1 +6878,228,7783,1 +6879,228,6081,2 +6880,228,6918,4 +6881,228,4586,2 +6882,228,2430,3 +6883,228,2259,4 +6884,228,3602,3 +6885,228,2414,1 +6886,228,7539,3 +6887,228,4236,1 +6888,228,6004,1 +6889,228,9935,2 +6890,228,2989,1 +6891,228,9816,1 +6892,228,8215,1 +6893,228,4253,3 +6894,228,1364,1 +6895,228,704,2 +6896,228,5024,4 +6897,228,1228,3 +6898,228,4515,2 +6899,228,2154,3 +6900,228,3301,1 +6901,229,9952,1 +6902,229,3534,3 +6903,229,4795,5 +6904,229,2658,1 +6905,229,7303,1 +6906,229,3480,5 +6907,229,1971,1 +6908,229,8332,5 +6909,229,4485,1 +6910,229,2297,4 +6911,229,8909,1 +6912,229,1801,3 +6913,229,15,1 +6914,229,3966,2 +6915,229,4222,2 +6916,229,6763,3 +6917,229,4774,5 +6918,229,7545,3 +6919,229,8626,5 +6920,229,7740,2 +6921,229,5707,5 +6922,229,2803,2 +6923,229,9274,1 +6924,229,9854,5 +6925,229,4217,3 +6926,229,5372,5 +6927,229,2374,5 +6928,229,241,1 +6929,229,9332,3 +6930,229,8117,1 +6931,229,5623,2 +6932,229,8086,3 +6933,229,1671,1 +6934,230,2043,2 +6935,230,1106,1 +6936,230,9674,2 +6937,230,9075,2 +6938,230,4557,3 +6939,230,9481,5 +6940,230,9086,4 +6941,230,4970,4 +6942,230,141,4 +6943,230,100,4 +6944,230,3260,5 +6945,230,1297,1 +6946,230,2131,2 +6947,230,1521,4 +6948,230,2237,4 +6949,230,7665,3 +6950,230,2996,5 +6951,230,2476,1 +6952,230,4404,3 +6953,230,8052,5 +6954,230,2975,5 +6955,230,1415,4 +6956,230,8198,4 +6957,230,2943,5 +6958,230,5596,3 +6959,230,9592,3 +6960,230,2575,3 +6961,230,8290,4 +6962,230,8554,5 +6963,230,3753,1 +6964,230,8878,1 +6965,230,2492,1 +6966,230,8059,5 +6967,230,2154,2 +6968,230,9731,3 +6969,230,3963,2 +6970,230,522,1 +6971,230,4717,5 +6972,230,528,5 +6973,230,138,1 +6974,230,2468,4 +6975,230,6354,4 +6976,230,2249,1 +6977,230,1749,4 +6978,230,5285,3 +6979,230,574,3 +6980,230,9130,5 +6981,231,1320,4 +6982,231,620,1 +6983,231,5684,5 +6984,231,5942,1 +6985,231,8834,1 +6986,231,7867,3 +6987,231,5340,1 +6988,231,7482,4 +6989,231,9267,4 +6990,231,5969,3 +6991,231,8775,5 +6992,231,5626,4 +6993,231,8853,1 +6994,231,1357,2 +6995,231,5293,1 +6996,231,6690,1 +6997,231,7390,4 +6998,231,299,4 +6999,231,5701,4 +7000,231,8198,1 +7001,231,5332,2 +7002,231,9786,2 +7003,231,5443,1 +7004,231,3266,2 +7005,231,4523,5 +7006,231,1163,1 +7007,231,6386,5 +7008,231,9162,5 +7009,231,5589,1 +7010,231,5228,4 +7011,231,1378,4 +7012,231,1927,1 +7013,231,9282,1 +7014,231,2643,5 +7015,231,4564,1 +7016,231,1918,2 +7017,231,8655,4 +7018,231,3075,3 +7019,231,2258,2 +7020,231,3509,3 +7021,231,8664,4 +7022,231,6147,1 +7023,232,4010,5 +7024,232,3139,1 +7025,232,3922,3 +7026,232,4520,1 +7027,232,7555,4 +7028,232,2074,5 +7029,232,1267,1 +7030,232,6645,1 +7031,232,4247,1 +7032,232,9452,4 +7033,232,8759,2 +7034,232,5653,3 +7035,232,9831,5 +7036,232,5086,1 +7037,232,1937,2 +7038,232,4627,5 +7039,232,5331,3 +7040,232,7044,5 +7041,232,4302,1 +7042,232,9466,3 +7043,232,2643,1 +7044,232,1957,1 +7045,232,7749,3 +7046,233,2931,4 +7047,233,8174,5 +7048,233,24,3 +7049,233,7703,5 +7050,233,5223,4 +7051,233,2237,1 +7052,233,1589,4 +7053,233,5534,4 +7054,233,2312,5 +7055,233,2895,3 +7056,233,3216,3 +7057,233,3813,3 +7058,233,3719,4 +7059,233,2014,1 +7060,233,6232,3 +7061,233,7085,2 +7062,233,4818,2 +7063,233,4147,2 +7064,233,3764,5 +7065,233,2253,1 +7066,233,4728,5 +7067,233,7307,3 +7068,233,2114,3 +7069,233,7514,4 +7070,233,6275,3 +7071,233,1241,4 +7072,233,4291,5 +7073,233,9076,3 +7074,233,230,2 +7075,233,5407,2 +7076,233,2598,1 +7077,233,7832,5 +7078,233,7946,2 +7079,233,5174,3 +7080,233,3700,3 +7081,233,5791,4 +7082,233,1756,3 +7083,233,815,5 +7084,233,7125,1 +7085,233,6172,4 +7086,233,5073,1 +7087,233,6862,2 +7088,233,347,4 +7089,233,5793,5 +7090,233,5544,4 +7091,233,5284,1 +7092,233,3225,3 +7093,233,9940,4 +7094,234,9450,2 +7095,234,6509,2 +7096,234,2143,2 +7097,234,3285,2 +7098,234,6208,3 +7099,234,6229,1 +7100,234,6737,3 +7101,234,9178,2 +7102,234,8983,3 +7103,234,3804,2 +7104,234,5332,1 +7105,234,7391,4 +7106,234,179,3 +7107,234,3409,5 +7108,234,2586,1 +7109,234,9016,5 +7110,234,8428,4 +7111,234,1012,1 +7112,234,5730,5 +7113,234,951,5 +7114,234,3520,2 +7115,234,3370,5 +7116,234,9798,1 +7117,234,3523,2 +7118,234,6301,4 +7119,234,4647,5 +7120,234,300,2 +7121,234,4170,1 +7122,234,233,4 +7123,234,3330,4 +7124,235,5526,1 +7125,235,9824,3 +7126,235,6406,5 +7127,235,6669,5 +7128,235,8015,3 +7129,235,5411,3 +7130,235,1519,4 +7131,235,3161,2 +7132,235,61,1 +7133,235,4468,5 +7134,235,1874,1 +7135,235,5632,1 +7136,235,1187,3 +7137,235,9021,5 +7138,235,2823,4 +7139,235,9088,4 +7140,235,4787,5 +7141,235,2803,3 +7142,235,3531,1 +7143,235,7831,3 +7144,235,3562,3 +7145,235,6255,3 +7146,235,9586,4 +7147,235,2755,5 +7148,235,3191,2 +7149,235,5246,1 +7150,235,6680,1 +7151,235,1831,2 +7152,235,9456,3 +7153,235,2056,2 +7154,235,1432,4 +7155,235,3166,2 +7156,235,5653,5 +7157,235,6014,1 +7158,235,2963,2 +7159,235,635,4 +7160,235,1899,5 +7161,236,9041,3 +7162,236,4945,4 +7163,236,7208,1 +7164,236,5175,1 +7165,236,615,3 +7166,236,8240,5 +7167,236,734,2 +7168,236,8051,1 +7169,236,738,4 +7170,236,8731,4 +7171,236,4399,2 +7172,236,891,2 +7173,237,7636,3 +7174,237,7558,5 +7175,237,7696,4 +7176,237,4589,4 +7177,237,5446,2 +7178,237,3083,3 +7179,237,1846,4 +7180,237,4794,5 +7181,237,3684,5 +7182,237,9085,1 +7183,237,6915,3 +7184,237,5707,1 +7185,237,6029,1 +7186,237,5046,3 +7187,238,5594,1 +7188,238,9330,3 +7189,238,2723,4 +7190,238,2207,2 +7191,238,610,2 +7192,238,4747,1 +7193,238,9887,5 +7194,238,7704,3 +7195,238,538,1 +7196,238,1814,5 +7197,238,6606,5 +7198,238,5935,5 +7199,238,7733,2 +7200,238,5118,5 +7201,238,1095,5 +7202,238,767,3 +7203,238,8579,5 +7204,238,8590,3 +7205,238,9005,2 +7206,238,865,4 +7207,238,5252,2 +7208,238,3758,5 +7209,238,9379,4 +7210,238,5322,1 +7211,238,2140,3 +7212,238,2571,4 +7213,238,9107,5 +7214,238,2017,4 +7215,238,388,4 +7216,238,3745,2 +7217,238,2670,5 +7218,238,2608,4 +7219,238,4867,3 +7220,238,9749,3 +7221,238,8576,5 +7222,238,9655,2 +7223,238,6037,1 +7224,239,1318,4 +7225,239,9795,2 +7226,239,3240,5 +7227,239,5229,2 +7228,239,2047,5 +7229,239,22,4 +7230,239,8110,3 +7231,239,5023,1 +7232,239,768,1 +7233,239,4566,5 +7234,239,2817,5 +7235,239,4047,5 +7236,239,7692,5 +7237,239,4487,5 +7238,239,8873,2 +7239,239,6141,1 +7240,239,9014,5 +7241,239,3512,5 +7242,239,9915,4 +7243,239,4317,1 +7244,239,6889,2 +7245,239,9871,3 +7246,239,2570,2 +7247,239,9155,5 +7248,239,4682,2 +7249,239,1134,2 +7250,239,7052,1 +7251,239,7874,4 +7252,239,4085,2 +7253,239,6922,1 +7254,239,4125,2 +7255,239,2051,4 +7256,239,9438,3 +7257,239,9032,1 +7258,239,3077,2 +7259,239,3904,3 +7260,239,1429,5 +7261,239,2823,5 +7262,239,603,1 +7263,239,1660,2 +7264,239,2317,4 +7265,239,9340,5 +7266,239,4296,4 +7267,239,7432,2 +7268,239,4463,1 +7269,239,8409,5 +7270,240,1021,2 +7271,240,4922,4 +7272,240,5951,1 +7273,240,3378,1 +7274,240,7760,2 +7275,240,4237,4 +7276,240,9576,4 +7277,240,6622,3 +7278,240,8156,4 +7279,240,7579,2 +7280,240,991,5 +7281,240,6117,1 +7282,240,4556,1 +7283,240,9525,2 +7284,240,9895,5 +7285,240,6968,3 +7286,240,2243,4 +7287,240,9447,2 +7288,240,3132,4 +7289,240,7331,5 +7290,240,8276,2 +7291,240,9011,4 +7292,240,7923,4 +7293,241,7833,2 +7294,241,7259,1 +7295,241,8814,1 +7296,241,7976,5 +7297,241,6398,3 +7298,241,5282,2 +7299,241,7912,1 +7300,241,2025,5 +7301,241,7202,4 +7302,241,3615,5 +7303,241,4953,3 +7304,241,6237,4 +7305,241,4996,5 +7306,241,623,4 +7307,241,2845,4 +7308,241,5379,3 +7309,241,6606,4 +7310,241,423,1 +7311,241,1045,3 +7312,241,6480,5 +7313,241,5173,4 +7314,241,2908,4 +7315,241,4839,4 +7316,241,6458,5 +7317,241,9877,2 +7318,241,8249,5 +7319,241,7886,3 +7320,241,6981,4 +7321,241,9217,3 +7322,241,6413,4 +7323,241,149,5 +7324,241,2121,3 +7325,241,1998,2 +7326,241,5698,2 +7327,241,1265,4 +7328,241,168,4 +7329,241,1544,4 +7330,241,20,1 +7331,241,4192,2 +7332,241,2185,3 +7333,241,2855,5 +7334,241,1890,4 +7335,241,6880,2 +7336,241,8189,3 +7337,241,8099,1 +7338,242,828,4 +7339,242,7931,4 +7340,242,1503,4 +7341,242,8282,4 +7342,242,7785,5 +7343,242,7328,3 +7344,242,6214,4 +7345,242,7605,1 +7346,242,4786,1 +7347,242,5961,3 +7348,242,6461,5 +7349,242,8724,3 +7350,242,2718,1 +7351,242,5672,3 +7352,242,9347,2 +7353,242,541,1 +7354,242,5692,1 +7355,242,7991,2 +7356,242,162,3 +7357,242,5894,2 +7358,242,3275,2 +7359,242,6913,4 +7360,242,1055,4 +7361,242,2916,2 +7362,242,4928,3 +7363,242,4578,4 +7364,242,5022,2 +7365,242,9680,2 +7366,242,88,1 +7367,242,5410,5 +7368,243,9102,2 +7369,243,9495,1 +7370,243,6689,4 +7371,243,2363,1 +7372,243,750,1 +7373,243,6661,4 +7374,243,8751,4 +7375,243,612,3 +7376,243,2439,4 +7377,243,3909,5 +7378,243,5439,5 +7379,243,1839,5 +7380,243,4061,2 +7381,243,1116,4 +7382,243,5570,1 +7383,243,6235,5 +7384,243,2724,1 +7385,243,5664,2 +7386,243,1885,2 +7387,243,5469,4 +7388,243,4481,1 +7389,243,8378,1 +7390,243,4064,5 +7391,243,9504,5 +7392,243,7299,4 +7393,243,5979,3 +7394,243,4468,5 +7395,243,6851,5 +7396,243,8189,4 +7397,243,4928,4 +7398,243,2656,1 +7399,243,2336,1 +7400,243,7733,1 +7401,243,917,4 +7402,243,842,4 +7403,243,3398,4 +7404,243,792,3 +7405,243,811,2 +7406,243,5982,1 +7407,243,1779,4 +7408,243,3961,4 +7409,244,69,1 +7410,244,8974,5 +7411,244,309,5 +7412,244,8349,2 +7413,244,3469,1 +7414,244,6723,1 +7415,244,1121,4 +7416,244,2187,5 +7417,244,8278,3 +7418,244,9025,4 +7419,244,6345,5 +7420,244,4729,5 +7421,244,8462,5 +7422,244,8299,4 +7423,244,1113,1 +7424,244,9062,4 +7425,244,2028,5 +7426,244,6636,2 +7427,244,1610,2 +7428,244,5478,1 +7429,244,3962,5 +7430,244,5666,3 +7431,244,4846,3 +7432,244,6501,5 +7433,244,260,4 +7434,244,584,4 +7435,244,7231,5 +7436,244,6910,5 +7437,244,543,4 +7438,244,8496,4 +7439,244,8598,3 +7440,244,294,1 +7441,244,20,4 +7442,244,6054,4 +7443,244,6700,5 +7444,244,4434,1 +7445,244,4569,2 +7446,244,6484,1 +7447,244,483,3 +7448,244,7339,4 +7449,244,9014,2 +7450,244,3936,2 +7451,244,7005,3 +7452,244,7856,3 +7453,244,8277,1 +7454,244,5661,3 +7455,245,4386,1 +7456,245,3299,5 +7457,245,9179,5 +7458,245,5126,1 +7459,245,198,4 +7460,245,8714,4 +7461,245,4372,4 +7462,245,1499,4 +7463,245,7869,5 +7464,245,7921,3 +7465,245,5817,5 +7466,245,1538,5 +7467,245,2361,1 +7468,245,3707,3 +7469,245,1087,5 +7470,245,1854,2 +7471,245,4508,5 +7472,245,7227,1 +7473,245,4208,5 +7474,245,3980,4 +7475,245,1897,3 +7476,245,5635,3 +7477,245,6232,1 +7478,245,8697,4 +7479,245,1140,5 +7480,245,5992,3 +7481,245,5315,2 +7482,246,5276,4 +7483,246,5837,3 +7484,246,6981,1 +7485,246,4934,5 +7486,246,261,4 +7487,246,2163,5 +7488,246,4927,1 +7489,246,8260,2 +7490,246,9668,5 +7491,246,3384,2 +7492,246,3541,3 +7493,246,1952,5 +7494,246,3140,5 +7495,246,3870,3 +7496,246,6684,5 +7497,246,7798,5 +7498,246,9012,5 +7499,246,9086,5 +7500,246,1664,5 +7501,246,4751,3 +7502,246,570,4 +7503,246,5345,3 +7504,246,476,3 +7505,246,9937,2 +7506,246,3156,2 +7507,246,4391,1 +7508,246,4235,4 +7509,246,5263,2 +7510,246,4623,3 +7511,247,5380,1 +7512,247,6342,2 +7513,247,645,3 +7514,247,4234,1 +7515,247,5011,1 +7516,247,1124,1 +7517,247,8167,4 +7518,247,4368,1 +7519,247,2765,2 +7520,247,3999,2 +7521,247,669,4 +7522,248,2315,1 +7523,248,9049,2 +7524,248,5190,2 +7525,248,6304,2 +7526,248,4531,2 +7527,248,2267,3 +7528,248,8009,3 +7529,248,3303,1 +7530,248,1452,1 +7531,248,400,1 +7532,248,3396,5 +7533,248,931,3 +7534,248,2861,4 +7535,248,8561,3 +7536,248,2044,4 +7537,248,9327,1 +7538,248,230,3 +7539,249,7027,5 +7540,249,8169,3 +7541,249,5691,5 +7542,249,8960,1 +7543,249,7744,4 +7544,249,9050,2 +7545,249,3500,5 +7546,249,9331,2 +7547,249,5056,1 +7548,249,7011,4 +7549,249,3255,3 +7550,249,9361,3 +7551,249,8865,5 +7552,249,3629,1 +7553,249,5467,2 +7554,249,9562,1 +7555,249,9863,1 +7556,249,2594,1 +7557,249,5740,2 +7558,249,4922,1 +7559,249,5540,4 +7560,249,9885,1 +7561,249,7723,1 +7562,249,652,2 +7563,249,2645,1 +7564,249,7499,3 +7565,249,9396,3 +7566,249,6382,4 +7567,249,1553,3 +7568,249,6414,5 +7569,249,8274,4 +7570,249,5743,3 +7571,249,8126,5 +7572,249,8407,1 +7573,249,9761,3 +7574,250,8781,2 +7575,250,3810,1 +7576,250,139,1 +7577,250,2516,5 +7578,250,7564,4 +7579,250,3115,5 +7580,250,6341,4 +7581,250,6739,5 +7582,250,2032,5 +7583,250,1833,1 +7584,250,7161,4 +7585,250,9342,4 +7586,250,6600,3 +7587,250,3910,1 +7588,250,9276,3 +7589,250,5147,5 +7590,250,1361,4 +7591,250,1754,1 +7592,250,6604,1 +7593,250,8887,3 +7594,250,6053,4 +7595,250,5545,5 +7596,250,3158,2 +7597,250,4387,1 +7598,250,2199,3 +7599,250,1916,3 +7600,250,402,1 +7601,250,2846,4 +7602,250,1678,4 +7603,250,2132,1 +7604,250,6071,1 +7605,251,6906,1 +7606,251,9649,5 +7607,251,6848,4 +7608,251,916,5 +7609,251,6867,3 +7610,251,1014,2 +7611,251,2201,1 +7612,251,6881,4 +7613,251,7761,5 +7614,251,104,5 +7615,251,9725,1 +7616,251,3105,4 +7617,251,9759,3 +7618,251,7428,3 +7619,251,8300,3 +7620,251,2444,4 +7621,251,411,5 +7622,251,6005,1 +7623,251,9268,3 +7624,251,6136,3 +7625,251,7500,5 +7626,251,9761,5 +7627,251,8777,4 +7628,251,8033,1 +7629,251,2532,2 +7630,251,4657,2 +7631,251,8082,3 +7632,251,1849,5 +7633,251,4437,2 +7634,251,3144,2 +7635,251,5949,1 +7636,251,7011,4 +7637,251,5785,4 +7638,251,2902,5 +7639,252,6452,3 +7640,252,1967,4 +7641,252,3953,3 +7642,252,3266,4 +7643,252,9573,4 +7644,252,3331,3 +7645,252,5124,4 +7646,252,3867,4 +7647,252,8494,2 +7648,252,3220,5 +7649,252,4465,2 +7650,252,8939,4 +7651,252,3017,5 +7652,252,6451,3 +7653,252,7233,5 +7654,252,9723,3 +7655,252,4766,4 +7656,252,381,5 +7657,252,9335,4 +7658,252,7242,4 +7659,252,4693,5 +7660,252,6603,1 +7661,252,1118,4 +7662,252,9397,1 +7663,252,8698,3 +7664,252,3257,1 +7665,252,4865,3 +7666,252,5724,3 +7667,252,8209,4 +7668,252,1212,4 +7669,252,2625,3 +7670,252,1960,2 +7671,252,3789,2 +7672,252,3760,5 +7673,252,3156,4 +7674,252,6950,5 +7675,252,853,1 +7676,252,7444,4 +7677,252,7811,3 +7678,252,7675,1 +7679,252,913,5 +7680,252,1429,4 +7681,253,5443,1 +7682,253,6752,2 +7683,253,5817,4 +7684,253,4782,4 +7685,253,8139,2 +7686,253,2739,1 +7687,253,4317,5 +7688,253,3898,4 +7689,253,8467,3 +7690,253,1212,1 +7691,253,8680,5 +7692,253,1039,2 +7693,253,9370,3 +7694,253,6938,5 +7695,253,5335,3 +7696,253,6638,3 +7697,253,220,3 +7698,253,7393,5 +7699,253,8120,2 +7700,253,2014,4 +7701,253,2297,1 +7702,253,267,2 +7703,253,4895,3 +7704,253,8217,1 +7705,253,6652,3 +7706,253,9297,3 +7707,253,1903,2 +7708,253,414,3 +7709,253,4558,2 +7710,253,8932,1 +7711,253,3804,3 +7712,253,4239,2 +7713,253,2964,1 +7714,253,1487,5 +7715,253,5154,2 +7716,253,241,1 +7717,253,1691,5 +7718,253,7967,5 +7719,253,8376,4 +7720,253,2092,2 +7721,253,6468,2 +7722,253,1455,3 +7723,253,4400,4 +7724,253,1888,4 +7725,253,9135,1 +7726,253,5428,5 +7727,254,1015,4 +7728,254,5550,5 +7729,254,3740,2 +7730,254,5057,2 +7731,254,6588,5 +7732,254,46,1 +7733,254,199,4 +7734,254,9987,2 +7735,254,6657,2 +7736,254,6682,4 +7737,254,9370,4 +7738,254,5384,2 +7739,254,1294,4 +7740,254,9789,5 +7741,254,9535,4 +7742,254,1603,5 +7743,254,3510,5 +7744,254,6602,5 +7745,254,4491,4 +7746,254,2880,3 +7747,254,3941,2 +7748,254,2319,3 +7749,254,3247,1 +7750,254,648,2 +7751,255,9261,3 +7752,255,1644,3 +7753,255,9081,4 +7754,255,8438,5 +7755,255,5611,5 +7756,255,1379,4 +7757,255,8671,5 +7758,255,4416,1 +7759,255,7834,5 +7760,255,1707,4 +7761,255,1425,1 +7762,255,3329,5 +7763,255,5705,4 +7764,255,6425,4 +7765,255,9444,1 +7766,255,8057,1 +7767,255,260,4 +7768,255,2984,3 +7769,255,9908,1 +7770,255,2080,5 +7771,255,6763,4 +7772,255,8691,5 +7773,255,5214,1 +7774,255,6081,5 +7775,255,8189,5 +7776,255,64,5 +7777,255,8634,2 +7778,255,2922,5 +7779,255,6279,1 +7780,255,3222,5 +7781,255,1553,2 +7782,255,5362,2 +7783,255,3663,2 +7784,255,9054,2 +7785,255,6040,1 +7786,255,6057,1 +7787,255,4766,4 +7788,255,3005,5 +7789,255,988,5 +7790,255,803,5 +7791,255,6727,2 +7792,255,7551,2 +7793,255,5223,3 +7794,255,7270,4 +7795,255,3818,4 +7796,255,5174,1 +7797,256,5338,2 +7798,256,6830,3 +7799,256,6649,1 +7800,256,7752,4 +7801,256,1987,5 +7802,256,9776,3 +7803,256,6194,2 +7804,256,3658,5 +7805,256,8875,3 +7806,256,4597,3 +7807,256,2365,3 +7808,256,6984,4 +7809,256,2250,5 +7810,256,6579,1 +7811,256,6227,4 +7812,256,2962,2 +7813,256,8092,5 +7814,256,4770,4 +7815,256,9955,1 +7816,256,8102,2 +7817,256,8698,1 +7818,256,2517,2 +7819,256,9460,3 +7820,256,6822,4 +7821,256,6645,3 +7822,256,5151,3 +7823,256,4610,1 +7824,256,2889,3 +7825,256,8484,1 +7826,256,3394,5 +7827,256,1393,4 +7828,256,4411,5 +7829,256,1769,4 +7830,256,1035,1 +7831,256,8668,2 +7832,256,8972,2 +7833,256,7081,4 +7834,256,9624,3 +7835,256,9068,2 +7836,256,8859,3 +7837,256,8867,2 +7838,256,5724,1 +7839,257,334,4 +7840,257,851,3 +7841,257,8324,5 +7842,257,4958,3 +7843,257,5049,1 +7844,257,4486,5 +7845,257,55,3 +7846,257,5378,2 +7847,257,4555,5 +7848,257,9608,4 +7849,257,6598,1 +7850,257,3857,4 +7851,257,367,2 +7852,257,1241,5 +7853,257,7770,3 +7854,257,8481,5 +7855,257,524,4 +7856,257,6233,1 +7857,257,4303,1 +7858,257,5265,4 +7859,257,3843,3 +7860,257,7254,4 +7861,257,183,2 +7862,257,2977,1 +7863,257,7823,4 +7864,257,4790,5 +7865,257,458,1 +7866,257,833,4 +7867,257,7446,3 +7868,257,8072,2 +7869,257,4613,2 +7870,257,2495,5 +7871,257,8817,2 +7872,257,8074,2 +7873,257,3462,1 +7874,257,233,4 +7875,257,4509,3 +7876,257,1050,2 +7877,257,3389,3 +7878,257,1758,1 +7879,257,6605,4 +7880,257,1091,2 +7881,257,4249,3 +7882,258,5230,3 +7883,258,2519,5 +7884,258,4132,1 +7885,258,9805,3 +7886,258,2676,2 +7887,258,6731,4 +7888,258,2917,5 +7889,258,9744,5 +7890,258,3241,5 +7891,258,34,2 +7892,258,8252,5 +7893,258,4821,3 +7894,258,6772,5 +7895,258,2815,1 +7896,258,4587,5 +7897,258,9747,1 +7898,258,1151,1 +7899,258,7734,4 +7900,258,5316,4 +7901,258,8526,2 +7902,258,8941,2 +7903,258,2338,5 +7904,258,8684,1 +7905,258,8764,2 +7906,258,8420,3 +7907,258,3700,5 +7908,258,675,4 +7909,258,7013,4 +7910,258,5922,4 +7911,258,141,4 +7912,258,2305,1 +7913,258,4754,3 +7914,258,2407,4 +7915,258,3215,5 +7916,258,4154,5 +7917,259,8441,2 +7918,259,4306,1 +7919,259,6305,5 +7920,259,657,5 +7921,259,4631,2 +7922,259,3569,1 +7923,259,7556,5 +7924,259,4996,3 +7925,259,9678,4 +7926,259,1515,4 +7927,259,4831,3 +7928,259,3614,4 +7929,259,4412,1 +7930,259,2360,2 +7931,259,2462,1 +7932,259,5189,2 +7933,259,7042,4 +7934,259,8117,5 +7935,259,8941,1 +7936,259,9044,4 +7937,259,8947,4 +7938,259,6332,4 +7939,260,9735,1 +7940,260,931,3 +7941,260,6417,4 +7942,260,2605,2 +7943,260,7877,2 +7944,260,3959,1 +7945,260,929,1 +7946,260,8247,2 +7947,260,7097,5 +7948,260,5245,3 +7949,261,6764,5 +7950,261,6303,4 +7951,261,8029,4 +7952,261,737,2 +7953,261,7117,2 +7954,261,6072,5 +7955,261,6243,1 +7956,261,2036,2 +7957,261,9768,2 +7958,261,3621,5 +7959,261,1729,3 +7960,261,977,5 +7961,261,3217,4 +7962,261,5611,3 +7963,261,6056,3 +7964,261,9641,2 +7965,261,167,1 +7966,261,7465,4 +7967,262,6384,5 +7968,262,2845,5 +7969,262,1995,1 +7970,262,4832,1 +7971,262,6027,5 +7972,262,3267,4 +7973,262,6879,3 +7974,262,5695,5 +7975,262,5930,1 +7976,262,4385,5 +7977,262,2446,5 +7978,262,8747,1 +7979,262,6424,3 +7980,262,9944,1 +7981,262,6005,1 +7982,262,3958,5 +7983,262,945,2 +7984,262,1829,5 +7985,262,1056,5 +7986,262,322,4 +7987,262,9444,3 +7988,262,3190,1 +7989,262,6022,2 +7990,262,6050,4 +7991,262,9094,5 +7992,262,6446,2 +7993,262,8957,1 +7994,262,8281,1 +7995,263,9351,1 +7996,263,784,2 +7997,263,3458,5 +7998,263,9837,5 +7999,263,3433,5 +8000,263,2600,3 +8001,263,8278,4 +8002,263,6864,5 +8003,263,9857,2 +8004,263,5920,2 +8005,263,7709,4 +8006,263,661,4 +8007,263,10,4 +8008,263,1462,3 +8009,263,9783,3 +8010,263,5713,2 +8011,263,6558,3 +8012,263,8870,3 +8013,263,317,4 +8014,263,6245,4 +8015,263,8607,4 +8016,263,1573,2 +8017,263,2427,5 +8018,263,2966,4 +8019,263,9533,2 +8020,263,8885,5 +8021,263,1120,4 +8022,263,6851,5 +8023,263,9173,3 +8024,263,4776,5 +8025,263,4384,2 +8026,263,1686,2 +8027,263,2028,5 +8028,264,6273,2 +8029,264,3055,1 +8030,264,9802,1 +8031,264,4146,2 +8032,264,3793,1 +8033,264,7359,4 +8034,264,492,2 +8035,264,991,5 +8036,264,8968,1 +8037,264,9269,2 +8038,264,4140,2 +8039,264,7514,3 +8040,265,2998,2 +8041,265,7642,3 +8042,265,208,5 +8043,265,8921,2 +8044,265,4121,5 +8045,265,6518,1 +8046,265,5679,2 +8047,265,488,5 +8048,265,6365,3 +8049,265,2875,1 +8050,265,6185,2 +8051,265,5095,2 +8052,265,9704,3 +8053,265,3649,5 +8054,265,3652,2 +8055,265,4916,3 +8056,265,8622,1 +8057,265,2171,1 +8058,265,7212,3 +8059,265,4116,4 +8060,265,5953,3 +8061,265,9595,3 +8062,265,7616,3 +8063,265,4590,1 +8064,265,4826,1 +8065,265,4851,3 +8066,265,8426,2 +8067,265,5171,2 +8068,265,7793,3 +8069,265,3339,4 +8070,265,9221,5 +8071,265,8218,2 +8072,265,2576,1 +8073,265,1114,3 +8074,265,4381,5 +8075,265,6754,5 +8076,265,9709,2 +8077,265,3251,3 +8078,265,3075,4 +8079,265,7241,1 +8080,265,7454,1 +8081,266,208,2 +8082,266,3113,2 +8083,266,6788,4 +8084,266,5628,3 +8085,266,8312,3 +8086,266,9771,4 +8087,266,5636,5 +8088,266,7154,3 +8089,266,5337,1 +8090,266,7344,5 +8091,266,9381,4 +8092,266,1373,3 +8093,266,3751,4 +8094,266,9972,2 +8095,266,7080,5 +8096,266,5106,4 +8097,266,1679,1 +8098,266,6858,2 +8099,266,6822,1 +8100,266,4677,4 +8101,266,5215,2 +8102,266,5188,2 +8103,266,2576,3 +8104,266,6679,1 +8105,266,6361,2 +8106,266,4810,4 +8107,266,7926,4 +8108,266,3501,5 +8109,266,9412,5 +8110,266,5088,2 +8111,266,3817,3 +8112,266,5458,4 +8113,266,2179,2 +8114,266,8603,1 +8115,266,409,3 +8116,266,7514,1 +8117,266,3780,2 +8118,266,7635,3 +8119,266,1238,4 +8120,266,2801,2 +8121,266,4687,3 +8122,266,4353,2 +8123,266,4652,3 +8124,266,2123,1 +8125,266,8334,1 +8126,266,4848,2 +8127,267,7189,1 +8128,267,7433,4 +8129,267,7626,4 +8130,267,47,2 +8131,267,1926,4 +8132,267,3037,1 +8133,267,3182,5 +8134,267,3154,2 +8135,267,1441,2 +8136,267,579,3 +8137,267,8588,1 +8138,267,7634,4 +8139,267,6088,4 +8140,267,9919,2 +8141,267,2623,2 +8142,267,5182,2 +8143,267,3326,4 +8144,267,1867,5 +8145,267,5170,1 +8146,267,4555,4 +8147,267,3630,1 +8148,267,1109,1 +8149,267,7172,2 +8150,267,1228,4 +8151,267,7885,2 +8152,267,8512,3 +8153,267,2609,1 +8154,267,6353,3 +8155,267,1611,1 +8156,267,914,2 +8157,267,4927,3 +8158,267,973,5 +8159,267,7860,2 +8160,267,4323,1 +8161,267,1036,5 +8162,267,9879,5 +8163,267,1565,3 +8164,267,883,2 +8165,267,87,2 +8166,267,9844,3 +8167,267,2537,2 +8168,267,2328,3 +8169,267,6004,5 +8170,267,6188,1 +8171,268,2795,1 +8172,268,4238,3 +8173,268,3409,3 +8174,268,8807,5 +8175,268,5807,3 +8176,268,4556,1 +8177,268,3848,2 +8178,268,254,5 +8179,268,4518,2 +8180,268,965,2 +8181,268,479,4 +8182,268,6196,3 +8183,268,2741,3 +8184,268,8360,4 +8185,268,3962,2 +8186,268,6328,5 +8187,268,2179,2 +8188,268,5421,1 +8189,268,1383,2 +8190,268,5892,2 +8191,268,4268,2 +8192,268,3959,2 +8193,268,4032,1 +8194,268,2203,5 +8195,268,7341,5 +8196,268,5549,3 +8197,268,8485,2 +8198,268,4019,1 +8199,268,3468,3 +8200,268,4385,2 +8201,268,6384,4 +8202,268,6051,1 +8203,268,8449,5 +8204,268,5026,2 +8205,268,1338,1 +8206,268,6211,1 +8207,268,7776,4 +8208,268,2512,4 +8209,268,5492,1 +8210,269,3624,5 +8211,269,4669,1 +8212,269,3424,5 +8213,269,2006,1 +8214,269,2746,4 +8215,269,2751,3 +8216,269,328,4 +8217,269,8345,1 +8218,269,3118,5 +8219,269,7208,5 +8220,269,1480,2 +8221,269,325,5 +8222,269,2030,3 +8223,269,7172,1 +8224,269,8069,2 +8225,269,6876,5 +8226,269,2080,3 +8227,269,9297,3 +8228,269,7958,3 +8229,269,1060,3 +8230,269,4283,3 +8231,269,506,1 +8232,269,5374,3 +8233,269,455,1 +8234,269,1979,4 +8235,269,7249,5 +8236,269,3262,5 +8237,269,7274,2 +8238,269,5193,3 +8239,269,4472,3 +8240,269,4541,1 +8241,269,2972,3 +8242,269,6491,4 +8243,269,3526,1 +8244,269,462,2 +8245,269,898,3 +8246,269,7301,5 +8247,269,5608,3 +8248,269,1677,3 +8249,269,9808,2 +8250,269,7689,3 +8251,270,8384,5 +8252,270,3834,3 +8253,270,8264,4 +8254,270,881,1 +8255,270,4840,5 +8256,270,412,4 +8257,270,6274,3 +8258,270,2960,5 +8259,270,6124,5 +8260,270,8413,3 +8261,270,1251,4 +8262,270,4490,1 +8263,270,2859,5 +8264,271,415,1 +8265,271,515,2 +8266,271,8,4 +8267,271,5971,3 +8268,271,709,4 +8269,271,3274,4 +8270,271,5923,3 +8271,271,2574,4 +8272,271,5559,1 +8273,271,783,5 +8274,271,2832,1 +8275,271,9663,4 +8276,271,4508,4 +8277,271,3717,4 +8278,271,5385,2 +8279,271,3517,1 +8280,271,9963,2 +8281,271,877,5 +8282,271,8580,2 +8283,271,4329,3 +8284,271,3410,1 +8285,271,7498,1 +8286,271,5176,2 +8287,271,1278,4 +8288,271,3045,2 +8289,271,3810,2 +8290,271,6470,3 +8291,271,4999,4 +8292,271,1862,5 +8293,271,7852,3 +8294,271,2463,5 +8295,271,9446,1 +8296,271,4896,4 +8297,271,2306,2 +8298,271,8617,5 +8299,271,7975,1 +8300,271,5009,5 +8301,271,7459,2 +8302,271,4995,1 +8303,271,6805,2 +8304,271,2026,1 +8305,272,1201,3 +8306,272,7398,5 +8307,272,6488,5 +8308,272,4433,3 +8309,272,4813,2 +8310,272,7742,5 +8311,272,5639,4 +8312,272,4544,4 +8313,272,8813,2 +8314,272,4620,2 +8315,272,3411,3 +8316,272,3599,5 +8317,272,6896,5 +8318,272,8315,5 +8319,272,6154,3 +8320,272,8683,1 +8321,272,4081,1 +8322,272,6597,1 +8323,272,7804,4 +8324,272,259,2 +8325,272,1140,3 +8326,272,3815,4 +8327,272,1061,5 +8328,272,9999,4 +8329,272,8246,1 +8330,273,6176,5 +8331,273,3821,1 +8332,273,1760,3 +8333,273,9635,5 +8334,273,8454,4 +8335,273,5614,1 +8336,273,2784,5 +8337,273,1671,5 +8338,273,9743,3 +8339,273,4071,4 +8340,273,7220,5 +8341,273,154,2 +8342,273,4463,3 +8343,273,5703,4 +8344,273,1905,2 +8345,273,1287,3 +8346,273,4415,2 +8347,273,3700,3 +8348,273,565,4 +8349,273,4347,5 +8350,273,2426,2 +8351,273,1201,4 +8352,273,8119,4 +8353,273,4242,4 +8354,273,7459,2 +8355,273,8014,1 +8356,273,4557,5 +8357,273,405,2 +8358,273,2541,5 +8359,274,499,5 +8360,274,4684,2 +8361,274,4378,2 +8362,274,6279,4 +8363,274,4385,1 +8364,274,2107,5 +8365,274,3113,5 +8366,274,8578,4 +8367,274,1480,3 +8368,274,9803,1 +8369,274,5521,3 +8370,274,7870,4 +8371,274,2842,3 +8372,274,4891,1 +8373,274,699,4 +8374,274,935,1 +8375,274,2259,2 +8376,274,6844,3 +8377,274,6172,5 +8378,274,8107,4 +8379,274,631,2 +8380,274,6196,5 +8381,274,691,2 +8382,274,2969,5 +8383,274,2652,1 +8384,274,2307,3 +8385,274,9006,3 +8386,274,4998,5 +8387,274,2992,5 +8388,274,8345,2 +8389,274,4944,1 +8390,274,4969,4 +8391,274,2874,4 +8392,274,1231,4 +8393,274,1479,5 +8394,274,8044,1 +8395,274,758,1 +8396,274,3797,1 +8397,274,2551,2 +8398,274,6313,3 +8399,274,6021,3 +8400,274,4724,2 +8401,274,2350,4 +8402,274,6098,5 +8403,274,864,5 +8404,275,6868,5 +8405,275,4171,4 +8406,275,5902,4 +8407,275,4094,2 +8408,275,146,1 +8409,275,9302,2 +8410,275,9800,2 +8411,275,92,1 +8412,275,8578,4 +8413,275,8122,5 +8414,275,3350,5 +8415,275,5831,1 +8416,275,8868,2 +8417,275,7018,3 +8418,275,8774,3 +8419,275,1266,4 +8420,275,5338,1 +8421,275,9417,2 +8422,275,9859,1 +8423,275,2645,1 +8424,275,250,1 +8425,275,4414,1 +8426,275,1909,3 +8427,275,8019,2 +8428,275,648,2 +8429,275,4019,5 +8430,275,8986,2 +8431,275,444,1 +8432,275,1437,1 +8433,275,8068,5 +8434,275,9344,1 +8435,275,1009,2 +8436,275,2594,1 +8437,275,4463,3 +8438,275,9537,5 +8439,275,9012,3 +8440,275,5969,5 +8441,275,6501,1 +8442,275,8598,3 +8443,275,2565,2 +8444,275,2016,4 +8445,276,1778,2 +8446,276,4624,1 +8447,276,8172,3 +8448,276,5116,2 +8449,276,2518,1 +8450,276,3877,2 +8451,276,9670,3 +8452,276,2908,2 +8453,276,461,2 +8454,276,2696,4 +8455,276,1154,2 +8456,276,1511,3 +8457,276,4932,2 +8458,276,5910,1 +8459,276,4438,2 +8460,276,8870,1 +8461,276,8658,2 +8462,276,511,3 +8463,276,118,5 +8464,276,7674,5 +8465,276,750,4 +8466,276,4955,2 +8467,276,6675,3 +8468,276,4859,2 +8469,276,3502,1 +8470,276,2225,5 +8471,276,3996,2 +8472,276,4685,3 +8473,276,9779,1 +8474,276,7388,1 +8475,276,7085,3 +8476,276,2270,3 +8477,276,3250,4 +8478,276,6704,2 +8479,276,746,1 +8480,276,7377,4 +8481,276,5269,5 +8482,276,9846,4 +8483,276,5339,1 +8484,276,9857,2 +8485,276,7893,3 +8486,276,5344,5 +8487,276,1354,1 +8488,276,2440,5 +8489,277,4002,4 +8490,277,2501,2 +8491,277,8594,5 +8492,277,2635,3 +8493,277,909,3 +8494,277,8110,5 +8495,277,6311,4 +8496,277,1316,2 +8497,277,6137,1 +8498,277,161,5 +8499,277,8208,5 +8500,277,3334,4 +8501,277,608,1 +8502,277,3326,5 +8503,277,3412,2 +8504,277,1186,2 +8505,277,7138,1 +8506,277,8371,2 +8507,277,7785,1 +8508,277,9545,5 +8509,277,1753,2 +8510,277,281,3 +8511,277,3770,3 +8512,277,1795,4 +8513,277,8430,2 +8514,277,5838,2 +8515,277,5875,1 +8516,277,5213,5 +8517,277,7527,4 +8518,277,9746,3 +8519,277,7190,4 +8520,277,9568,2 +8521,277,2031,2 +8522,277,5426,4 +8523,277,7586,1 +8524,277,702,2 +8525,277,2242,3 +8526,277,2857,1 +8527,277,9514,5 +8528,278,4799,2 +8529,278,6698,5 +8530,278,6441,3 +8531,278,3971,1 +8532,278,5585,4 +8533,278,9497,4 +8534,278,5003,3 +8535,278,6628,4 +8536,278,8549,5 +8537,278,1107,3 +8538,279,6863,1 +8539,279,9334,4 +8540,279,5225,3 +8541,279,6420,3 +8542,279,4769,4 +8543,279,1656,5 +8544,279,4083,5 +8545,279,9326,2 +8546,279,6001,5 +8547,279,3088,2 +8548,279,7710,1 +8549,279,7538,4 +8550,279,1861,2 +8551,279,3754,3 +8552,279,4476,4 +8553,279,8647,2 +8554,279,5568,1 +8555,279,292,4 +8556,279,6988,5 +8557,279,7958,1 +8558,279,2312,4 +8559,279,534,3 +8560,279,8263,4 +8561,279,5049,1 +8562,279,758,1 +8563,279,9058,2 +8564,279,2018,4 +8565,279,8862,1 +8566,279,5484,4 +8567,279,7779,4 +8568,279,7677,3 +8569,279,2240,5 +8570,279,3237,4 +8571,279,9265,2 +8572,279,3594,5 +8573,279,9679,4 +8574,279,6803,4 +8575,279,4649,4 +8576,279,9726,2 +8577,279,4554,4 +8578,279,5309,1 +8579,280,8767,3 +8580,280,2124,4 +8581,280,2702,2 +8582,280,735,4 +8583,280,3903,1 +8584,280,8514,1 +8585,280,6349,5 +8586,280,5026,4 +8587,280,8127,3 +8588,280,7267,1 +8589,281,4090,3 +8590,281,69,2 +8591,281,6454,1 +8592,281,8992,4 +8593,281,4446,3 +8594,281,5022,2 +8595,281,5853,1 +8596,281,9818,3 +8597,281,1046,3 +8598,281,1143,1 +8599,281,3369,1 +8600,281,5984,1 +8601,281,3349,5 +8602,281,333,5 +8603,281,5820,1 +8604,281,6971,5 +8605,281,1528,1 +8606,281,4820,4 +8607,281,1232,2 +8608,281,1198,5 +8609,281,2551,3 +8610,281,4952,3 +8611,281,2680,4 +8612,282,2724,4 +8613,282,1647,4 +8614,282,526,3 +8615,282,716,2 +8616,282,3546,1 +8617,282,9515,3 +8618,282,6517,1 +8619,282,4199,5 +8620,282,117,4 +8621,282,9927,1 +8622,282,7161,5 +8623,282,8648,5 +8624,282,8268,1 +8625,282,2203,4 +8626,283,1298,4 +8627,283,2975,2 +8628,283,7735,3 +8629,283,9190,1 +8630,283,5492,4 +8631,283,3837,1 +8632,283,4711,1 +8633,283,5105,3 +8634,283,6924,5 +8635,283,2756,4 +8636,283,5851,5 +8637,283,2199,5 +8638,283,5159,3 +8639,283,9794,5 +8640,283,1169,2 +8641,283,850,4 +8642,283,4078,2 +8643,283,4286,2 +8644,283,4872,4 +8645,283,2324,3 +8646,283,2864,3 +8647,283,7230,3 +8648,283,7258,3 +8649,283,6206,3 +8650,283,8531,3 +8651,283,7754,1 +8652,283,2790,5 +8653,283,9238,1 +8654,283,5014,1 +8655,283,2299,4 +8656,283,4486,5 +8657,283,5846,2 +8658,283,8374,4 +8659,284,3667,1 +8660,284,3470,1 +8661,284,4227,4 +8662,284,6296,3 +8663,284,9264,2 +8664,284,3242,3 +8665,284,1811,2 +8666,284,164,3 +8667,284,5059,2 +8668,284,3944,5 +8669,284,4547,5 +8670,284,2183,3 +8671,284,7864,5 +8672,284,9877,2 +8673,284,8790,4 +8674,284,2953,2 +8675,284,2167,1 +8676,285,9325,4 +8677,285,9747,1 +8678,285,6317,1 +8679,285,5367,2 +8680,285,5575,3 +8681,285,4236,5 +8682,285,8101,5 +8683,285,4321,2 +8684,285,3474,3 +8685,285,5286,5 +8686,285,5119,4 +8687,285,4996,5 +8688,285,5905,4 +8689,285,5914,1 +8690,285,8536,4 +8691,285,3800,3 +8692,285,8749,3 +8693,285,9240,3 +8694,285,240,2 +8695,285,1544,1 +8696,285,4229,1 +8697,285,9765,5 +8698,285,4500,3 +8699,285,7932,4 +8700,285,694,4 +8701,285,800,4 +8702,285,2119,1 +8703,285,2554,3 +8704,285,1773,1 +8705,285,9181,4 +8706,286,9500,2 +8707,286,24,5 +8708,286,5699,4 +8709,286,6004,3 +8710,286,7,4 +8711,286,8606,4 +8712,286,4962,4 +8713,286,894,5 +8714,286,8641,4 +8715,286,44,4 +8716,286,3711,4 +8717,286,4011,2 +8718,286,5210,4 +8719,286,9580,1 +8720,286,9831,3 +8721,286,9180,5 +8722,286,7944,3 +8723,286,1871,1 +8724,286,7885,2 +8725,286,3671,5 +8726,286,7405,3 +8727,286,2828,5 +8728,286,5483,3 +8729,286,5351,2 +8730,286,5265,5 +8731,286,5725,2 +8732,286,1103,5 +8733,286,2580,1 +8734,286,9378,1 +8735,286,8182,4 +8736,286,5188,5 +8737,286,7561,3 +8738,286,631,3 +8739,286,9806,2 +8740,286,1638,4 +8741,286,609,4 +8742,286,8073,1 +8743,286,1672,3 +8744,286,2502,1 +8745,286,7694,4 +8746,286,1945,5 +8747,286,6951,4 +8748,286,8122,2 +8749,286,7261,5 +8750,286,1801,5 +8751,286,7462,3 +8752,287,7679,3 +8753,287,8333,4 +8754,287,5169,4 +8755,287,4576,1 +8756,287,3800,5 +8757,287,9674,5 +8758,287,2001,3 +8759,287,3820,1 +8760,287,3976,3 +8761,287,2315,1 +8762,287,8618,3 +8763,287,9199,2 +8764,287,5335,2 +8765,287,4292,4 +8766,287,5522,5 +8767,287,877,5 +8768,287,1757,3 +8769,287,5050,1 +8770,287,9572,1 +8771,287,8833,3 +8772,287,9580,5 +8773,287,1485,5 +8774,287,9090,3 +8775,287,2695,4 +8776,287,8895,2 +8777,287,9487,4 +8778,287,7311,3 +8779,287,8440,4 +8780,287,8401,5 +8781,287,7466,2 +8782,287,359,5 +8783,287,1043,1 +8784,287,8103,3 +8785,287,7107,2 +8786,288,9340,4 +8787,288,4480,4 +8788,288,9153,4 +8789,288,3374,3 +8790,288,7156,3 +8791,288,1297,4 +8792,288,3430,3 +8793,288,8792,2 +8794,288,2436,5 +8795,288,7715,2 +8796,288,9170,1 +8797,288,562,2 +8798,288,1676,5 +8799,288,9397,2 +8800,288,737,5 +8801,288,9254,5 +8802,288,8149,1 +8803,288,7191,5 +8804,288,5151,3 +8805,288,234,5 +8806,288,8824,3 +8807,288,9823,5 +8808,288,5573,2 +8809,288,1552,4 +8810,288,8514,3 +8811,288,9642,3 +8812,288,9434,4 +8813,288,3716,2 +8814,288,9511,5 +8815,288,9194,4 +8816,288,3661,1 +8817,288,8723,4 +8818,288,9720,2 +8819,288,9171,3 +8820,288,1331,2 +8821,288,7520,1 +8822,288,6955,1 +8823,288,7048,1 +8824,288,4927,2 +8825,288,2512,3 +8826,288,3496,3 +8827,288,2834,1 +8828,288,8458,4 +8829,288,6135,1 +8830,288,8460,1 +8831,288,4004,3 +8832,288,7712,2 +8833,289,6025,5 +8834,289,5680,4 +8835,289,564,2 +8836,289,193,5 +8837,289,8641,4 +8838,289,3731,5 +8839,289,5419,5 +8840,289,1227,2 +8841,289,8613,2 +8842,289,2031,2 +8843,289,6821,2 +8844,289,1392,2 +8845,289,2050,4 +8846,289,9897,4 +8847,289,9149,5 +8848,290,3538,4 +8849,290,6184,4 +8850,290,4824,5 +8851,290,5176,4 +8852,290,7626,2 +8853,290,1299,2 +8854,290,6540,3 +8855,290,5189,2 +8856,290,7403,3 +8857,290,9042,4 +8858,290,9290,2 +8859,290,4406,3 +8860,290,6004,3 +8861,290,2035,5 +8862,290,9814,5 +8863,290,6327,5 +8864,290,9196,1 +8865,290,2659,1 +8866,290,2593,2 +8867,290,4979,4 +8868,290,4761,5 +8869,290,2385,1 +8870,290,9948,2 +8871,290,8512,1 +8872,290,9640,5 +8873,290,656,5 +8874,290,5559,5 +8875,290,5279,3 +8876,290,8292,2 +8877,290,2271,4 +8878,290,5989,1 +8879,290,1387,5 +8880,290,6859,1 +8881,290,1399,2 +8882,290,9114,5 +8883,290,555,5 +8884,291,3257,2 +8885,291,3459,1 +8886,291,6724,2 +8887,291,7846,4 +8888,291,977,1 +8889,291,9681,3 +8890,291,8007,3 +8891,291,5202,1 +8892,291,8271,5 +8893,291,7122,3 +8894,291,2722,5 +8895,291,4015,1 +8896,291,278,4 +8897,291,8502,1 +8898,291,477,1 +8899,291,4400,5 +8900,291,9758,2 +8901,291,5303,5 +8902,291,7806,4 +8903,291,9534,4 +8904,291,3058,3 +8905,291,7713,1 +8906,291,6818,3 +8907,291,8188,2 +8908,291,8453,1 +8909,291,1546,5 +8910,291,2412,1 +8911,291,55,3 +8912,291,5076,2 +8913,291,5318,3 +8914,291,5293,5 +8915,291,914,2 +8916,291,8499,3 +8917,291,4358,4 +8918,291,902,5 +8919,291,3186,1 +8920,291,1522,4 +8921,291,3487,3 +8922,291,789,1 +8923,291,9144,5 +8924,291,1480,1 +8925,291,5800,1 +8926,291,1328,5 +8927,291,770,1 +8928,291,4968,5 +8929,292,8933,2 +8930,292,6910,3 +8931,292,2866,5 +8932,292,7503,4 +8933,292,6611,5 +8934,292,9320,4 +8935,292,3692,5 +8936,292,589,2 +8937,292,8003,3 +8938,292,7756,2 +8939,292,9741,1 +8940,292,1227,2 +8941,292,4003,4 +8942,292,61,3 +8943,292,4484,2 +8944,292,4753,1 +8945,292,1153,3 +8946,292,8676,4 +8947,292,9801,1 +8948,292,698,4 +8949,292,5450,5 +8950,292,7738,4 +8951,292,3613,3 +8952,292,1735,2 +8953,292,3698,5 +8954,292,5551,3 +8955,292,9481,1 +8956,292,2757,5 +8957,292,3913,5 +8958,292,555,1 +8959,292,2473,5 +8960,292,2767,5 +8961,292,6410,1 +8962,292,7693,1 +8963,292,5569,5 +8964,292,3048,2 +8965,292,4122,3 +8966,292,2843,1 +8967,292,2470,5 +8968,292,9490,3 +8969,292,8905,1 +8970,292,2574,3 +8971,292,108,1 +8972,292,7842,2 +8973,292,6399,2 +8974,292,9651,1 +8975,292,4166,3 +8976,293,6324,2 +8977,293,4665,2 +8978,293,9965,5 +8979,293,124,2 +8980,293,5652,1 +8981,293,125,1 +8982,293,2539,2 +8983,293,803,1 +8984,293,830,1 +8985,293,7579,2 +8986,293,6521,3 +8987,293,3730,3 +8988,293,2909,4 +8989,293,7238,2 +8990,293,2629,3 +8991,293,2623,3 +8992,293,3540,1 +8993,293,2862,1 +8994,293,1929,4 +8995,294,9422,5 +8996,294,9293,1 +8997,294,75,1 +8998,294,557,5 +8999,294,598,2 +9000,294,3012,4 +9001,294,2555,3 +9002,294,2220,5 +9003,294,3607,4 +9004,294,3250,4 +9005,294,8498,4 +9006,294,7727,2 +9007,294,1293,3 +9008,294,1915,3 +9009,294,5750,2 +9010,294,1296,4 +9011,294,3128,5 +9012,294,6108,3 +9013,294,4747,2 +9014,294,4518,4 +9015,294,3118,5 +9016,294,8228,4 +9017,294,5118,4 +9018,294,9785,5 +9019,294,2882,1 +9020,294,1849,5 +9021,294,836,3 +9022,295,4575,4 +9023,295,879,1 +9024,295,3613,1 +9025,295,3474,3 +9026,295,5711,2 +9027,295,4494,5 +9028,295,6947,3 +9029,295,2871,2 +9030,295,6054,5 +9031,295,6942,4 +9032,295,3615,1 +9033,295,8254,4 +9034,295,1409,3 +9035,295,8976,2 +9036,295,7350,4 +9037,295,7316,3 +9038,295,6010,3 +9039,295,9327,2 +9040,295,6620,2 +9041,295,7749,3 +9042,295,1273,3 +9043,295,7617,3 +9044,295,297,2 +9045,295,2723,1 +9046,295,2516,2 +9047,295,8242,5 +9048,295,3419,1 +9049,295,5294,3 +9050,295,7600,3 +9051,295,340,5 +9052,295,4485,2 +9053,295,4810,1 +9054,295,7272,3 +9055,295,4681,4 +9056,295,5275,1 +9057,295,7579,2 +9058,295,9428,3 +9059,295,9607,4 +9060,295,1732,1 +9061,296,2807,4 +9062,296,2161,3 +9063,296,4377,4 +9064,296,7130,1 +9065,296,1164,1 +9066,296,3711,3 +9067,296,3046,1 +9068,296,6434,4 +9069,296,6551,4 +9070,296,7939,5 +9071,296,4200,4 +9072,296,7395,2 +9073,296,9994,1 +9074,296,3688,4 +9075,296,6619,2 +9076,296,6532,2 +9077,296,6962,1 +9078,296,5856,3 +9079,297,5289,4 +9080,297,1400,1 +9081,297,4081,3 +9082,297,3557,1 +9083,297,3981,2 +9084,297,2817,4 +9085,297,6026,5 +9086,297,5241,5 +9087,297,1976,1 +9088,297,2580,2 +9089,297,5116,5 +9090,297,3461,3 +9091,297,4973,1 +9092,297,1067,5 +9093,297,2118,1 +9094,297,9190,2 +9095,297,5970,4 +9096,297,8197,2 +9097,297,5167,1 +9098,297,900,2 +9099,297,2240,3 +9100,297,5095,4 +9101,297,6303,2 +9102,297,6775,2 +9103,297,6417,2 +9104,297,489,2 +9105,298,2750,4 +9106,298,6830,4 +9107,298,5228,1 +9108,298,5282,2 +9109,298,8293,2 +9110,298,3948,4 +9111,298,6694,5 +9112,298,2984,3 +9113,298,9733,5 +9114,298,139,3 +9115,298,2185,1 +9116,298,9062,4 +9117,298,863,4 +9118,298,2360,4 +9119,298,9707,1 +9120,298,37,1 +9121,298,8692,2 +9122,298,8056,4 +9123,298,7195,3 +9124,298,7012,3 +9125,298,7306,3 +9126,298,7652,5 +9127,298,8015,3 +9128,298,6541,1 +9129,298,5455,2 +9130,298,3349,1 +9131,298,8249,1 +9132,298,98,2 +9133,298,1151,2 +9134,298,698,1 +9135,298,4553,1 +9136,298,8700,5 +9137,298,5442,4 +9138,298,4531,4 +9139,298,4224,5 +9140,298,8458,1 +9141,298,2459,5 +9142,298,8212,2 +9143,298,3536,1 +9144,298,4073,5 +9145,298,9868,1 +9146,298,719,3 +9147,299,4346,2 +9148,299,7842,3 +9149,299,1020,5 +9150,299,4239,4 +9151,299,8400,4 +9152,299,2224,2 +9153,299,1857,3 +9154,299,2694,5 +9155,299,9324,3 +9156,299,4427,2 +9157,299,1688,1 +9158,299,1364,4 +9159,299,1889,2 +9160,299,7386,1 +9161,299,125,4 +9162,299,2913,1 +9163,299,7342,5 +9164,299,956,5 +9165,299,2159,3 +9166,299,6866,5 +9167,299,4094,3 +9168,299,7534,4 +9169,299,8475,4 +9170,300,9923,3 +9171,300,8857,1 +9172,300,6574,2 +9173,300,9539,2 +9174,300,2172,4 +9175,300,6119,2 +9176,300,585,3 +9177,300,3825,4 +9178,300,265,1 +9179,300,5710,3 +9180,300,6519,1 +9181,300,3332,3 +9182,300,4727,3 +9183,300,8386,3 +9184,300,3150,5 +9185,300,9383,2 +9186,300,1081,3 +9187,300,9427,4 +9188,300,9856,5 +9189,300,4544,3 +9190,300,7704,5 +9191,300,1537,3 +9192,300,1405,4 +9193,300,4074,3 +9194,300,6706,5 +9195,300,4381,2 +9196,300,698,4 +9197,300,8672,1 +9198,300,3866,4 +9199,300,3327,3 +9200,300,2358,4 +9201,300,2636,1 +9202,300,1320,4 +9203,300,6828,2 +9204,300,1276,3 +9205,301,3826,3 +9206,301,9273,5 +9207,301,9240,4 +9208,301,1412,2 +9209,301,5928,5 +9210,301,1170,3 +9211,301,8229,2 +9212,301,3156,4 +9213,301,2811,1 +9214,301,9890,2 +9215,301,8006,5 +9216,301,6588,2 +9217,301,7605,4 +9218,301,2344,5 +9219,301,2254,2 +9220,301,4416,2 +9221,301,704,3 +9222,301,316,1 +9223,301,2192,3 +9224,301,735,3 +9225,301,4303,1 +9226,301,9177,3 +9227,302,7709,5 +9228,302,9328,1 +9229,302,1989,4 +9230,302,4636,1 +9231,302,6318,1 +9232,302,5089,4 +9233,302,6342,1 +9234,302,8350,4 +9235,302,144,5 +9236,302,6064,1 +9237,302,8877,1 +9238,302,9781,1 +9239,302,8563,5 +9240,302,2721,2 +9241,302,2766,4 +9242,302,114,5 +9243,302,5334,3 +9244,302,8262,2 +9245,302,6672,4 +9246,302,9847,1 +9247,302,88,1 +9248,302,9826,3 +9249,302,3151,1 +9250,302,7383,1 +9251,302,6163,4 +9252,302,4764,2 +9253,302,8229,1 +9254,302,606,5 +9255,302,2758,2 +9256,302,6467,4 +9257,302,2138,5 +9258,302,2111,2 +9259,302,8445,1 +9260,302,220,2 +9261,302,6955,4 +9262,302,5249,1 +9263,302,1162,3 +9264,302,6698,2 +9265,303,4499,3 +9266,303,5071,5 +9267,303,3303,2 +9268,303,1777,3 +9269,303,8783,3 +9270,303,7194,1 +9271,303,5072,5 +9272,303,3164,5 +9273,303,796,2 +9274,303,9512,5 +9275,303,8873,3 +9276,303,292,3 +9277,303,5745,3 +9278,303,3084,1 +9279,303,3382,4 +9280,303,8841,4 +9281,303,332,5 +9282,303,5374,1 +9283,303,1642,1 +9284,303,6123,1 +9285,304,6305,4 +9286,304,9856,3 +9287,304,5608,4 +9288,304,5007,3 +9289,304,7216,3 +9290,304,3366,1 +9291,304,2680,1 +9292,304,2479,1 +9293,304,9827,2 +9294,304,3812,2 +9295,304,9180,5 +9296,304,6963,1 +9297,304,8716,1 +9298,304,5169,2 +9299,304,7657,4 +9300,304,3564,4 +9301,304,1769,3 +9302,304,3153,2 +9303,304,4482,4 +9304,304,8060,4 +9305,304,5406,4 +9306,304,2274,5 +9307,304,8969,3 +9308,304,2374,3 +9309,304,8547,5 +9310,304,6785,3 +9311,304,36,4 +9312,304,620,1 +9313,304,4889,4 +9314,304,6375,5 +9315,305,8211,1 +9316,305,1080,1 +9317,305,3651,4 +9318,305,4991,3 +9319,305,451,2 +9320,305,7664,5 +9321,305,6552,5 +9322,305,8189,4 +9323,305,9478,5 +9324,305,5490,1 +9325,305,3575,4 +9326,305,2378,1 +9327,305,343,5 +9328,305,8692,2 +9329,305,5855,4 +9330,305,3523,2 +9331,305,6148,1 +9332,305,3841,3 +9333,305,1605,3 +9334,305,9842,5 +9335,305,557,5 +9336,305,8523,5 +9337,305,4734,3 +9338,305,1722,5 +9339,305,8058,5 +9340,305,2914,2 +9341,305,8425,5 +9342,305,232,2 +9343,305,8829,3 +9344,305,6381,3 +9345,305,6409,2 +9346,305,3173,4 +9347,305,3151,4 +9348,305,7371,2 +9349,305,9846,3 +9350,305,7408,1 +9351,305,4156,5 +9352,305,1408,5 +9353,305,8107,5 +9354,305,6277,5 +9355,305,5523,2 +9356,305,6968,3 +9357,305,4802,5 +9358,305,3711,5 +9359,305,8744,2 +9360,306,9113,3 +9361,306,5006,4 +9362,306,4027,5 +9363,306,444,4 +9364,306,8734,2 +9365,306,9231,1 +9366,306,5827,5 +9367,306,4305,4 +9368,306,3840,2 +9369,306,5396,5 +9370,306,9700,1 +9371,306,9021,3 +9372,306,2312,1 +9373,306,7788,1 +9374,306,4102,3 +9375,306,828,4 +9376,306,1481,1 +9377,306,5201,1 +9378,306,3128,5 +9379,306,2026,2 +9380,306,2747,4 +9381,306,8149,3 +9382,306,4002,2 +9383,307,7474,3 +9384,307,3750,1 +9385,307,1840,1 +9386,307,4095,4 +9387,307,5079,5 +9388,307,6008,4 +9389,307,9809,4 +9390,307,3441,5 +9391,307,4212,3 +9392,307,4722,3 +9393,308,5622,1 +9394,308,3284,5 +9395,308,8083,1 +9396,308,1047,1 +9397,308,4916,4 +9398,308,639,2 +9399,308,6927,2 +9400,308,5020,1 +9401,308,1271,3 +9402,308,1961,5 +9403,308,2059,5 +9404,308,2379,4 +9405,308,9943,2 +9406,309,1338,2 +9407,309,2917,4 +9408,309,748,4 +9409,309,2678,4 +9410,309,9466,2 +9411,309,4717,4 +9412,309,7325,4 +9413,309,9919,3 +9414,309,9100,4 +9415,309,8830,2 +9416,309,5612,2 +9417,309,465,3 +9418,309,1230,2 +9419,309,5907,1 +9420,309,1715,1 +9421,309,8567,1 +9422,309,3475,2 +9423,309,5242,1 +9424,309,3977,5 +9425,309,1386,2 +9426,309,2507,1 +9427,309,2452,2 +9428,309,6541,4 +9429,309,5592,1 +9430,309,9942,4 +9431,309,3108,1 +9432,310,1917,2 +9433,310,2251,2 +9434,310,2392,1 +9435,310,8864,5 +9436,310,4207,4 +9437,310,9205,4 +9438,310,1193,5 +9439,310,9821,2 +9440,310,2075,5 +9441,310,8957,1 +9442,310,904,3 +9443,310,3574,2 +9444,310,6801,2 +9445,311,8765,4 +9446,311,9161,1 +9447,311,5590,3 +9448,311,5716,1 +9449,311,1700,3 +9450,311,41,5 +9451,311,5424,3 +9452,311,4342,1 +9453,311,2369,5 +9454,311,4479,1 +9455,311,980,3 +9456,311,3729,3 +9457,311,4079,5 +9458,311,8945,1 +9459,311,2705,2 +9460,311,8098,1 +9461,311,1543,4 +9462,311,8399,5 +9463,311,44,2 +9464,311,2409,5 +9465,311,2600,2 +9466,311,6725,4 +9467,311,7550,4 +9468,311,2761,4 +9469,311,5860,3 +9470,311,7386,2 +9471,311,5024,2 +9472,311,7760,2 +9473,311,8485,5 +9474,311,7528,3 +9475,311,404,3 +9476,311,5337,1 +9477,311,3519,5 +9478,311,4897,1 +9479,311,8229,3 +9480,312,6136,3 +9481,312,2275,2 +9482,312,1960,3 +9483,312,7773,3 +9484,312,3930,5 +9485,312,9722,2 +9486,312,228,5 +9487,312,5447,3 +9488,312,9269,2 +9489,312,769,2 +9490,312,2860,5 +9491,312,941,2 +9492,312,6987,4 +9493,312,7658,3 +9494,312,1816,2 +9495,312,6703,4 +9496,312,1845,4 +9497,312,9125,3 +9498,312,2111,4 +9499,312,3279,5 +9500,312,986,5 +9501,312,8935,2 +9502,312,8159,3 +9503,312,4730,3 +9504,312,4427,1 +9505,312,8487,3 +9506,312,9402,2 +9507,312,3201,2 +9508,312,1657,3 +9509,312,8808,5 +9510,312,2561,1 +9511,312,9034,2 +9512,312,234,4 +9513,312,5312,5 +9514,312,5592,1 +9515,312,9217,2 +9516,312,6891,1 +9517,312,6324,2 +9518,312,1911,4 +9519,312,5419,1 +9520,312,4805,4 +9521,312,4674,3 +9522,312,2141,5 +9523,312,6858,1 +9524,312,9275,3 +9525,312,618,2 +9526,313,6178,3 +9527,313,4280,2 +9528,313,5764,1 +9529,313,9008,2 +9530,313,4731,4 +9531,313,8958,2 +9532,313,4804,4 +9533,313,3267,1 +9534,313,4422,2 +9535,313,8025,3 +9536,313,4921,5 +9537,313,2522,4 +9538,313,6415,3 +9539,313,7330,2 +9540,313,5888,2 +9541,313,2605,4 +9542,313,764,1 +9543,313,559,5 +9544,313,1776,2 +9545,313,295,2 +9546,313,9058,3 +9547,313,3616,2 +9548,313,8726,1 +9549,313,3224,3 +9550,313,8934,2 +9551,313,2569,2 +9552,313,3927,2 +9553,313,2093,3 +9554,313,2684,5 +9555,313,6270,2 +9556,313,6892,1 +9557,313,9018,1 +9558,313,89,1 +9559,313,6540,5 +9560,313,9990,4 +9561,313,2092,2 +9562,313,6859,4 +9563,313,1386,2 +9564,313,5000,2 +9565,314,1533,1 +9566,314,2365,1 +9567,314,3917,5 +9568,314,392,2 +9569,314,3199,3 +9570,314,6295,5 +9571,314,851,1 +9572,314,2601,1 +9573,314,9843,4 +9574,314,6048,2 +9575,314,5079,1 +9576,314,8629,4 +9577,314,534,5 +9578,314,2253,1 +9579,314,3928,2 +9580,314,7732,4 +9581,314,538,5 +9582,314,8876,3 +9583,314,4798,4 +9584,314,2487,1 +9585,314,3916,3 +9586,314,909,5 +9587,314,3085,1 +9588,314,6977,4 +9589,314,3686,2 +9590,314,864,3 +9591,314,4312,3 +9592,314,3005,3 +9593,314,8544,5 +9594,314,1750,5 +9595,314,718,3 +9596,314,4402,4 +9597,314,1488,1 +9598,314,6268,1 +9599,314,790,1 +9600,314,822,3 +9601,314,7886,3 +9602,314,377,5 +9603,314,5105,1 +9604,315,2240,3 +9605,315,8435,5 +9606,315,5795,4 +9607,315,3923,2 +9608,315,9054,2 +9609,315,9707,4 +9610,315,5853,3 +9611,315,3307,3 +9612,315,9764,1 +9613,315,3642,3 +9614,315,4643,5 +9615,315,9177,4 +9616,315,9209,5 +9617,315,6752,5 +9618,315,4579,5 +9619,315,8940,1 +9620,315,3005,3 +9621,315,6082,3 +9622,315,2164,2 +9623,315,1931,2 +9624,315,9860,1 +9625,315,6683,3 +9626,315,412,5 +9627,315,7756,4 +9628,315,1320,2 +9629,315,4369,4 +9630,315,5199,3 +9631,315,9465,5 +9632,315,3322,1 +9633,315,5490,2 +9634,315,8582,2 +9635,315,6491,1 +9636,315,4107,2 +9637,315,5517,5 +9638,315,5465,3 +9639,315,9098,2 +9640,316,7754,1 +9641,316,9119,5 +9642,316,5023,4 +9643,316,5725,1 +9644,316,2363,3 +9645,316,3937,1 +9646,316,7003,1 +9647,316,3737,5 +9648,316,9275,3 +9649,316,7906,5 +9650,316,4293,4 +9651,316,3341,1 +9652,316,5517,5 +9653,316,6587,1 +9654,316,5266,3 +9655,316,3600,3 +9656,316,1646,3 +9657,316,3933,5 +9658,316,6835,3 +9659,316,726,2 +9660,316,5672,2 +9661,316,5350,1 +9662,316,1808,5 +9663,316,5181,1 +9664,316,86,5 +9665,316,3868,2 +9666,316,8416,5 +9667,316,8604,3 +9668,316,6464,3 +9669,316,8222,3 +9670,316,2556,2 +9671,316,3299,5 +9672,316,3632,3 +9673,316,2274,1 +9674,316,8491,2 +9675,316,2008,4 +9676,316,6507,5 +9677,316,8121,4 +9678,316,8065,3 +9679,316,2742,5 +9680,316,5758,4 +9681,316,2669,4 +9682,316,9610,1 +9683,316,6519,2 +9684,316,6812,4 +9685,317,1416,4 +9686,317,8395,5 +9687,317,2034,1 +9688,317,158,3 +9689,317,4275,4 +9690,317,8566,1 +9691,317,153,1 +9692,317,4,1 +9693,317,7221,4 +9694,317,8803,1 +9695,317,2006,1 +9696,317,6365,1 +9697,317,2973,3 +9698,317,7368,2 +9699,317,5355,4 +9700,317,8141,3 +9701,317,5419,2 +9702,317,9,2 +9703,317,2269,2 +9704,317,4661,5 +9705,317,4102,5 +9706,317,1705,4 +9707,317,1618,2 +9708,317,9536,1 +9709,317,5220,4 +9710,317,3801,2 +9711,317,5367,2 +9712,317,9182,3 +9713,317,7060,2 +9714,317,9837,1 +9715,317,8936,5 +9716,317,9447,3 +9717,317,621,5 +9718,317,762,5 +9719,317,9320,1 +9720,317,3347,3 +9721,317,7220,1 +9722,317,4122,5 +9723,317,3293,2 +9724,317,3490,5 +9725,317,5708,2 +9726,317,4721,3 +9727,317,5155,2 +9728,317,6390,4 +9729,317,9204,1 +9730,317,5314,5 +9731,318,6947,1 +9732,318,9808,1 +9733,318,867,2 +9734,318,1807,2 +9735,318,9122,3 +9736,318,556,3 +9737,318,4724,4 +9738,318,157,1 +9739,318,7923,3 +9740,318,804,1 +9741,318,1194,3 +9742,318,8179,3 +9743,318,5586,2 +9744,318,1378,4 +9745,318,448,3 +9746,318,5068,5 +9747,318,8121,3 +9748,318,8696,2 +9749,318,650,2 +9750,318,2417,1 +9751,318,3220,1 +9752,318,5620,4 +9753,318,2614,2 +9754,318,6170,5 +9755,318,7906,5 +9756,318,275,1 +9757,318,5582,4 +9758,318,873,4 +9759,319,9283,1 +9760,319,956,3 +9761,319,4351,4 +9762,319,5163,5 +9763,319,7953,3 +9764,319,4266,5 +9765,319,8343,1 +9766,319,3050,2 +9767,319,133,4 +9768,319,7561,3 +9769,319,959,2 +9770,319,7706,5 +9771,319,3573,2 +9772,319,7141,1 +9773,319,2483,5 +9774,319,3031,5 +9775,319,3835,1 +9776,319,3773,3 +9777,319,5005,2 +9778,319,1510,5 +9779,319,500,3 +9780,319,3033,4 +9781,319,1691,1 +9782,319,9684,1 +9783,319,904,3 +9784,319,3577,5 +9785,319,7122,3 +9786,319,1546,2 +9787,319,5452,3 +9788,319,6706,4 +9789,320,9511,3 +9790,320,388,1 +9791,320,1495,5 +9792,320,6183,5 +9793,320,2887,5 +9794,320,1312,4 +9795,320,4783,1 +9796,320,9394,2 +9797,320,9117,3 +9798,320,85,2 +9799,320,8358,3 +9800,320,5417,1 +9801,320,8416,1 +9802,320,5512,3 +9803,320,753,1 +9804,320,5601,3 +9805,320,5116,3 +9806,320,4979,5 +9807,320,5205,1 +9808,320,2234,4 +9809,321,8069,1 +9810,321,6792,2 +9811,321,1618,3 +9812,321,1021,1 +9813,321,7217,1 +9814,321,7983,5 +9815,321,2184,4 +9816,321,6295,3 +9817,321,7887,2 +9818,321,23,3 +9819,321,9120,5 +9820,321,6851,3 +9821,321,2004,5 +9822,321,7372,5 +9823,321,6284,2 +9824,321,4730,2 +9825,321,5749,2 +9826,321,9463,3 +9827,321,5438,4 +9828,321,3202,2 +9829,321,4648,3 +9830,321,9852,4 +9831,321,9591,5 +9832,321,6407,2 +9833,321,7027,2 +9834,321,3822,2 +9835,321,2001,3 +9836,321,5744,2 +9837,321,6337,2 +9838,321,1989,1 +9839,321,7407,4 +9840,322,3993,1 +9841,322,5234,1 +9842,322,3290,5 +9843,322,4178,2 +9844,322,5933,5 +9845,322,4444,3 +9846,322,6142,2 +9847,322,7832,1 +9848,322,7719,1 +9849,322,4606,3 +9850,322,8757,4 +9851,322,3637,3 +9852,322,3447,4 +9853,322,1300,2 +9854,322,802,1 +9855,322,534,2 +9856,322,7579,4 +9857,322,800,4 +9858,322,8212,3 +9859,322,4204,4 +9860,322,3302,2 +9861,322,944,3 +9862,322,2210,2 +9863,322,2587,5 +9864,322,256,1 +9865,322,5526,4 +9866,322,2480,3 +9867,322,7574,4 +9868,322,4866,4 +9869,322,857,4 +9870,322,608,3 +9871,322,3193,1 +9872,322,3391,3 +9873,322,512,4 +9874,322,7759,4 +9875,322,6662,1 +9876,322,4925,2 +9877,322,1652,3 +9878,322,1321,4 +9879,322,2758,2 +9880,322,5446,3 +9881,323,7768,5 +9882,323,2804,1 +9883,323,6951,5 +9884,323,3730,1 +9885,323,4582,2 +9886,323,4089,1 +9887,323,2865,3 +9888,323,8463,4 +9889,323,8671,1 +9890,323,9624,5 +9891,323,6804,1 +9892,323,7069,5 +9893,323,8000,1 +9894,323,8676,5 +9895,323,5190,4 +9896,323,4067,5 +9897,323,7434,5 +9898,323,1522,4 +9899,323,7993,4 +9900,323,9231,3 +9901,323,6849,1 +9902,323,8825,2 +9903,323,7384,2 +9904,323,2011,1 +9905,323,172,4 +9906,323,6816,4 +9907,323,3560,4 +9908,323,2467,5 +9909,323,4113,4 +9910,323,2046,1 +9911,323,6197,2 +9912,324,4381,4 +9913,324,8414,2 +9914,324,1207,2 +9915,324,6939,5 +9916,324,6045,4 +9917,324,6195,5 +9918,324,6855,5 +9919,324,933,5 +9920,324,764,1 +9921,324,6950,1 +9922,324,5748,2 +9923,324,3500,4 +9924,324,1638,5 +9925,324,2153,3 +9926,324,1496,1 +9927,324,1666,1 +9928,324,3245,5 +9929,324,8359,3 +9930,324,9806,2 +9931,324,1,5 +9932,324,5533,4 +9933,324,5986,5 +9934,324,3408,2 +9935,324,502,1 +9936,324,5134,2 +9937,324,8657,3 +9938,324,5302,2 +9939,324,8294,1 +9940,324,7438,4 +9941,324,792,1 +9942,324,8643,1 +9943,324,6583,3 +9944,324,1919,2 +9945,324,9230,4 +9946,325,6434,3 +9947,325,638,1 +9948,325,1662,4 +9949,325,611,4 +9950,325,7137,4 +9951,325,6532,3 +9952,325,6359,3 +9953,325,2920,3 +9954,325,4151,5 +9955,325,5773,3 +9956,325,9759,2 +9957,325,1697,2 +9958,325,1637,2 +9959,325,8198,4 +9960,325,2823,2 +9961,325,2623,2 +9962,326,7622,5 +9963,326,6298,2 +9964,326,3047,2 +9965,326,5409,5 +9966,326,8213,4 +9967,326,7035,2 +9968,326,8246,3 +9969,326,898,4 +9970,326,1122,3 +9971,326,8356,1 +9972,326,6340,3 +9973,326,5311,2 +9974,326,1318,2 +9975,326,2911,1 +9976,326,871,4 +9977,326,3347,5 +9978,326,1870,3 +9979,326,7126,1 +9980,326,529,1 +9981,326,6197,5 +9982,326,3689,5 +9983,326,6036,2 +9984,326,1775,1 +9985,326,2526,5 +9986,327,4276,1 +9987,327,1008,5 +9988,327,1777,2 +9989,327,3252,2 +9990,327,2648,3 +9991,327,826,5 +9992,327,7705,3 +9993,327,7859,1 +9994,327,6590,5 +9995,327,6601,5 +9996,327,7107,3 +9997,327,7405,5 +9998,327,7514,1 +9999,327,1124,5 +10000,327,6700,5 +10001,327,8417,4 +10002,327,8282,2 +10003,327,8655,4 +10004,327,787,3 +10005,327,1038,5 +10006,327,751,4 +10007,327,4260,2 +10008,327,6801,4 +10009,327,7009,1 +10010,327,9017,5 +10011,327,578,1 +10012,327,5867,1 +10013,327,5027,3 +10014,327,2278,5 +10015,327,7200,1 +10016,327,2434,3 +10017,327,7170,1 +10018,327,6228,1 +10019,327,1592,4 +10020,327,2510,1 +10021,327,8249,2 +10022,327,9586,5 +10023,327,9659,3 +10024,327,8491,4 +10025,327,8345,3 +10026,327,5839,1 +10027,327,8192,5 +10028,328,6021,4 +10029,328,424,2 +10030,328,7799,5 +10031,328,2743,4 +10032,328,8474,4 +10033,328,4501,5 +10034,328,6832,5 +10035,328,5672,4 +10036,328,3128,4 +10037,328,689,5 +10038,328,4976,2 +10039,328,9091,4 +10040,328,6457,3 +10041,328,2661,3 +10042,328,556,2 +10043,328,4773,1 +10044,328,905,1 +10045,328,4602,2 +10046,328,8651,3 +10047,328,9787,3 +10048,328,5284,4 +10049,328,7683,3 +10050,328,9612,4 +10051,328,779,1 +10052,328,826,2 +10053,328,3619,5 +10054,328,1712,4 +10055,328,5176,2 +10056,328,6630,3 +10057,328,4098,2 +10058,328,8845,3 +10059,328,5381,1 +10060,328,8065,2 +10061,328,5972,3 +10062,329,2410,1 +10063,329,9622,5 +10064,329,9087,2 +10065,329,8189,5 +10066,329,7741,3 +10067,329,8254,4 +10068,329,3645,5 +10069,329,4555,3 +10070,329,6597,4 +10071,329,5197,3 +10072,329,6498,1 +10073,329,5246,3 +10074,329,2465,2 +10075,329,9065,4 +10076,329,2702,5 +10077,329,8712,4 +10078,329,8919,5 +10079,329,6627,4 +10080,329,6480,2 +10081,329,3505,1 +10082,329,5540,3 +10083,329,8876,3 +10084,329,4750,2 +10085,329,1125,4 +10086,330,6623,1 +10087,330,8173,3 +10088,330,9945,5 +10089,330,1091,3 +10090,330,103,2 +10091,330,767,2 +10092,330,5770,2 +10093,330,6030,4 +10094,330,1524,2 +10095,330,4966,1 +10096,330,4349,3 +10097,330,1342,1 +10098,330,6755,4 +10099,330,8290,3 +10100,330,9847,5 +10101,330,3295,5 +10102,330,9223,1 +10103,330,7754,1 +10104,330,9519,2 +10105,330,1433,5 +10106,330,9441,4 +10107,330,891,2 +10108,330,6170,1 +10109,330,9423,3 +10110,331,6245,3 +10111,331,9425,4 +10112,331,1431,4 +10113,331,1883,1 +10114,331,6315,1 +10115,331,2146,5 +10116,331,6570,5 +10117,331,5120,3 +10118,331,3364,4 +10119,331,4339,1 +10120,331,7976,2 +10121,331,3430,3 +10122,331,7099,3 +10123,331,520,1 +10124,331,5985,2 +10125,331,1878,4 +10126,331,440,3 +10127,331,9304,1 +10128,331,5844,4 +10129,331,5001,1 +10130,332,7502,3 +10131,332,672,4 +10132,332,5774,2 +10133,332,804,3 +10134,332,655,2 +10135,332,649,1 +10136,332,4419,3 +10137,332,2744,1 +10138,332,2395,1 +10139,332,9241,5 +10140,332,9063,1 +10141,332,9215,4 +10142,332,7899,3 +10143,332,9384,5 +10144,332,3491,5 +10145,332,4220,3 +10146,332,6280,2 +10147,332,922,2 +10148,332,7287,4 +10149,332,4404,3 +10150,332,7401,3 +10151,332,3553,3 +10152,332,9851,3 +10153,332,4985,4 +10154,332,3265,2 +10155,332,3676,4 +10156,332,6289,4 +10157,332,2231,2 +10158,332,558,3 +10159,332,561,4 +10160,332,3741,4 +10161,332,6999,2 +10162,332,2150,3 +10163,332,8119,5 +10164,332,7819,3 +10165,332,205,2 +10166,332,6643,3 +10167,332,9326,5 +10168,333,2750,3 +10169,333,4460,3 +10170,333,7497,4 +10171,333,399,5 +10172,333,2769,3 +10173,333,5422,3 +10174,333,2543,3 +10175,333,4779,5 +10176,333,1668,5 +10177,333,4327,3 +10178,333,4936,4 +10179,333,3260,4 +10180,333,1848,1 +10181,334,5498,4 +10182,334,4153,1 +10183,334,4694,4 +10184,334,790,2 +10185,334,1660,3 +10186,334,4970,1 +10187,334,9751,1 +10188,334,5152,5 +10189,334,6176,3 +10190,334,8614,4 +10191,334,2878,3 +10192,334,7176,1 +10193,334,9633,5 +10194,334,8890,1 +10195,334,6056,4 +10196,334,7415,3 +10197,334,9140,1 +10198,334,9832,4 +10199,334,6393,3 +10200,334,8597,3 +10201,334,6620,2 +10202,334,1998,5 +10203,334,5033,4 +10204,334,2957,1 +10205,334,9315,5 +10206,334,9653,5 +10207,334,7003,2 +10208,335,8700,2 +10209,335,4338,5 +10210,335,5029,4 +10211,335,3500,3 +10212,335,2754,4 +10213,335,8256,5 +10214,335,2980,3 +10215,335,8227,3 +10216,335,5994,5 +10217,335,6263,1 +10218,335,5085,2 +10219,335,5910,4 +10220,335,3759,3 +10221,335,3107,5 +10222,335,7199,1 +10223,335,8155,1 +10224,335,1133,1 +10225,335,3758,2 +10226,335,8409,5 +10227,335,5500,2 +10228,335,803,3 +10229,335,8216,4 +10230,335,1072,3 +10231,335,2887,5 +10232,335,3463,2 +10233,335,9446,1 +10234,335,6517,2 +10235,335,2494,1 +10236,335,7458,2 +10237,335,5014,5 +10238,335,6645,2 +10239,335,866,1 +10240,335,1426,3 +10241,335,5916,3 +10242,335,7838,5 +10243,336,344,4 +10244,336,5005,2 +10245,336,8846,4 +10246,336,4892,2 +10247,336,5008,2 +10248,336,1314,3 +10249,336,374,3 +10250,336,4427,1 +10251,336,2183,1 +10252,336,8596,2 +10253,336,8420,3 +10254,336,6955,4 +10255,336,3646,1 +10256,336,5754,5 +10257,336,8025,1 +10258,336,7704,2 +10259,336,5055,4 +10260,336,3840,5 +10261,336,8443,3 +10262,336,7780,4 +10263,336,321,2 +10264,336,6275,1 +10265,336,3624,1 +10266,336,1024,1 +10267,336,7187,4 +10268,336,5551,4 +10269,336,2516,5 +10270,336,6643,2 +10271,336,9968,4 +10272,336,4861,3 +10273,336,9845,4 +10274,336,6493,2 +10275,336,3600,1 +10276,336,6477,1 +10277,336,4480,5 +10278,336,1404,4 +10279,337,261,1 +10280,337,9910,1 +10281,337,7812,2 +10282,337,6512,3 +10283,337,5859,3 +10284,337,7920,3 +10285,337,8424,4 +10286,337,4380,3 +10287,337,8348,3 +10288,337,8751,5 +10289,337,3240,3 +10290,337,2092,5 +10291,337,7211,4 +10292,337,3720,5 +10293,337,1,1 +10294,337,4826,1 +10295,337,799,4 +10296,337,3056,4 +10297,337,9076,5 +10298,337,9529,1 +10299,337,9355,5 +10300,337,9359,5 +10301,337,5242,5 +10302,337,7414,3 +10303,337,9540,4 +10304,337,826,3 +10305,337,2451,4 +10306,337,9862,5 +10307,337,9030,5 +10308,337,9877,3 +10309,337,4063,2 +10310,337,515,3 +10311,337,422,5 +10312,337,1690,1 +10313,337,1332,4 +10314,337,9115,4 +10315,337,2711,2 +10316,337,3011,4 +10317,337,5423,4 +10318,337,1455,5 +10319,338,3590,1 +10320,338,4331,3 +10321,338,2675,4 +10322,338,4440,2 +10323,338,9987,5 +10324,338,3483,4 +10325,338,8921,5 +10326,338,7433,4 +10327,338,8911,3 +10328,338,428,5 +10329,338,8125,2 +10330,338,9746,4 +10331,338,7650,2 +10332,338,749,3 +10333,338,5478,3 +10334,339,8276,4 +10335,339,1239,2 +10336,339,4335,3 +10337,339,7316,4 +10338,339,1515,1 +10339,339,7627,4 +10340,339,2048,1 +10341,339,112,3 +10342,339,5153,3 +10343,339,7108,3 +10344,339,7374,5 +10345,339,4720,3 +10346,339,5200,4 +10347,339,4022,5 +10348,339,9698,1 +10349,339,7258,4 +10350,339,3248,3 +10351,339,5783,3 +10352,339,7308,2 +10353,339,3525,3 +10354,339,9092,1 +10355,339,4066,3 +10356,339,6021,2 +10357,339,4087,4 +10358,339,7322,1 +10359,339,6781,5 +10360,339,7795,4 +10361,339,6251,5 +10362,339,7893,1 +10363,340,8387,4 +10364,340,921,2 +10365,340,162,3 +10366,340,6133,3 +10367,340,563,4 +10368,340,9295,1 +10369,340,7936,3 +10370,340,6956,4 +10371,340,3412,5 +10372,340,8285,5 +10373,340,6780,3 +10374,340,160,4 +10375,340,4506,3 +10376,340,7921,1 +10377,340,991,2 +10378,340,6604,5 +10379,340,1445,3 +10380,340,2491,2 +10381,340,7977,3 +10382,340,9835,5 +10383,340,411,4 +10384,340,4162,4 +10385,340,7119,3 +10386,340,4132,4 +10387,340,668,1 +10388,340,413,1 +10389,340,3972,4 +10390,340,1274,4 +10391,341,9629,5 +10392,341,1429,4 +10393,341,9357,2 +10394,341,7527,1 +10395,341,5437,3 +10396,341,8798,2 +10397,341,2172,3 +10398,341,6074,2 +10399,341,7915,2 +10400,341,9166,2 +10401,341,7241,2 +10402,341,5439,1 +10403,341,8767,5 +10404,341,6932,3 +10405,341,4713,4 +10406,341,3720,1 +10407,341,8486,3 +10408,341,4977,2 +10409,341,4803,5 +10410,341,5736,3 +10411,341,5134,1 +10412,341,3389,1 +10413,341,2377,5 +10414,341,8006,2 +10415,341,8764,5 +10416,341,6549,5 +10417,341,5377,3 +10418,341,9644,5 +10419,341,2883,3 +10420,341,9346,2 +10421,341,13,4 +10422,341,3224,1 +10423,341,2411,2 +10424,341,9510,4 +10425,341,8428,1 +10426,341,5590,1 +10427,341,665,1 +10428,341,7837,4 +10429,341,1568,4 +10430,341,9455,5 +10431,341,7191,4 +10432,341,9953,3 +10433,342,299,4 +10434,342,4148,2 +10435,342,8035,2 +10436,342,7979,3 +10437,342,2500,3 +10438,342,6734,1 +10439,342,7745,4 +10440,342,9229,5 +10441,342,4402,5 +10442,342,1581,1 +10443,342,1062,2 +10444,342,1584,3 +10445,342,516,5 +10446,342,1545,3 +10447,342,4078,4 +10448,342,8218,3 +10449,342,796,5 +10450,342,7684,4 +10451,342,795,2 +10452,342,6000,4 +10453,342,963,3 +10454,342,2896,5 +10455,342,8332,1 +10456,342,3220,3 +10457,342,7198,4 +10458,342,1532,5 +10459,342,6648,1 +10460,342,4568,2 +10461,342,6853,3 +10462,343,7457,4 +10463,343,9612,5 +10464,343,4237,2 +10465,343,1838,3 +10466,343,5078,1 +10467,343,6086,1 +10468,343,1116,1 +10469,343,9486,2 +10470,343,9232,3 +10471,343,9802,1 +10472,343,6732,2 +10473,343,5262,5 +10474,343,3736,5 +10475,343,21,2 +10476,343,2264,5 +10477,343,501,2 +10478,343,2783,3 +10479,343,2175,2 +10480,343,9583,5 +10481,343,2903,2 +10482,343,8866,4 +10483,343,2694,4 +10484,343,7581,4 +10485,343,9931,5 +10486,343,9317,4 +10487,343,7247,5 +10488,343,488,1 +10489,343,3776,5 +10490,343,6712,5 +10491,343,2870,2 +10492,343,5202,5 +10493,343,1165,2 +10494,344,9387,2 +10495,344,5065,5 +10496,344,5087,3 +10497,344,3911,1 +10498,344,9872,1 +10499,344,5966,4 +10500,344,6135,5 +10501,344,116,3 +10502,344,4706,2 +10503,344,8553,2 +10504,344,120,5 +10505,344,666,4 +10506,344,1692,1 +10507,344,9266,2 +10508,345,6172,1 +10509,345,5086,1 +10510,345,7132,1 +10511,345,5880,3 +10512,345,9557,4 +10513,345,809,4 +10514,345,3417,1 +10515,345,2267,3 +10516,345,1799,2 +10517,345,3594,2 +10518,345,9994,5 +10519,345,3751,1 +10520,345,4348,5 +10521,345,3145,4 +10522,345,7074,2 +10523,345,7900,2 +10524,345,9643,1 +10525,345,9284,4 +10526,345,553,1 +10527,345,4410,4 +10528,345,7136,3 +10529,345,995,1 +10530,345,3762,1 +10531,345,4899,1 +10532,345,3005,1 +10533,345,502,2 +10534,345,7717,2 +10535,345,1097,5 +10536,345,9974,3 +10537,345,9439,2 +10538,345,3688,5 +10539,345,5638,3 +10540,345,4880,1 +10541,345,4382,1 +10542,345,1855,2 +10543,345,7637,5 +10544,345,7590,1 +10545,345,7910,1 +10546,345,7544,4 +10547,345,7120,1 +10548,345,112,2 +10549,345,1100,3 +10550,345,7055,1 +10551,345,9433,2 +10552,345,5014,1 +10553,345,3782,4 +10554,345,5851,2 +10555,346,4011,3 +10556,346,9067,4 +10557,346,6886,5 +10558,346,213,5 +10559,346,8005,3 +10560,346,1966,1 +10561,346,805,1 +10562,346,1198,3 +10563,346,4871,1 +10564,346,4985,4 +10565,346,4181,4 +10566,346,6212,2 +10567,346,6541,3 +10568,346,6889,3 +10569,346,7431,2 +10570,346,4663,4 +10571,346,920,3 +10572,346,2716,1 +10573,346,3111,4 +10574,346,1961,1 +10575,346,9607,5 +10576,346,2652,1 +10577,346,3324,2 +10578,346,2835,3 +10579,346,6219,4 +10580,346,4647,4 +10581,346,1308,2 +10582,346,6716,2 +10583,346,853,3 +10584,346,5909,3 +10585,346,6695,5 +10586,346,9422,2 +10587,346,2476,3 +10588,346,4963,5 +10589,346,1327,4 +10590,346,637,1 +10591,346,6786,2 +10592,346,3395,2 +10593,346,9529,1 +10594,346,3441,2 +10595,346,8993,4 +10596,346,2063,2 +10597,346,5974,1 +10598,346,6058,4 +10599,346,2721,4 +10600,346,3345,3 +10601,347,8569,1 +10602,347,9812,1 +10603,347,1106,1 +10604,347,4229,5 +10605,347,4758,1 +10606,347,7677,3 +10607,347,2580,2 +10608,347,9396,2 +10609,347,5037,2 +10610,347,1610,5 +10611,347,5837,4 +10612,347,5243,3 +10613,347,8600,1 +10614,347,4510,2 +10615,347,4041,2 +10616,347,9753,3 +10617,347,3874,5 +10618,347,733,5 +10619,347,1743,5 +10620,347,3488,2 +10621,347,2644,4 +10622,347,2616,3 +10623,347,7415,5 +10624,347,2787,3 +10625,347,9606,5 +10626,347,7968,5 +10627,347,6430,2 +10628,347,7432,2 +10629,347,6392,4 +10630,347,8215,3 +10631,347,4112,5 +10632,347,1998,1 +10633,347,1053,5 +10634,347,496,5 +10635,347,7036,4 +10636,347,5792,4 +10637,347,9514,5 +10638,347,1507,1 +10639,347,6814,1 +10640,347,6190,2 +10641,347,9710,3 +10642,347,3261,5 +10643,347,7630,1 +10644,347,9938,1 +10645,347,2923,3 +10646,347,849,5 +10647,347,6210,1 +10648,347,3302,1 +10649,348,3478,2 +10650,348,4018,3 +10651,348,7250,1 +10652,348,5949,2 +10653,348,2276,3 +10654,348,6279,1 +10655,348,8254,4 +10656,348,359,2 +10657,348,5277,3 +10658,348,5974,1 +10659,348,8857,5 +10660,348,2213,5 +10661,348,274,2 +10662,348,5121,3 +10663,348,1002,5 +10664,348,4198,2 +10665,348,6672,1 +10666,348,4637,1 +10667,348,8533,4 +10668,348,1590,4 +10669,348,5087,4 +10670,348,9752,1 +10671,348,4222,2 +10672,348,9134,5 +10673,348,6875,1 +10674,348,5917,3 +10675,348,514,4 +10676,348,2162,3 +10677,348,7266,4 +10678,348,5909,5 +10679,348,3637,5 +10680,348,9338,1 +10681,348,1300,4 +10682,349,6778,3 +10683,349,2518,5 +10684,349,1524,2 +10685,349,385,3 +10686,349,6995,5 +10687,349,7061,1 +10688,349,9896,1 +10689,349,1580,2 +10690,349,5862,3 +10691,349,3379,2 +10692,349,3647,3 +10693,349,6773,4 +10694,349,6427,1 +10695,349,6352,2 +10696,349,82,3 +10697,349,7166,5 +10698,349,6939,1 +10699,349,1846,3 +10700,349,6067,2 +10701,349,9633,1 +10702,350,451,2 +10703,350,5772,5 +10704,350,4764,3 +10705,350,5150,3 +10706,350,8991,3 +10707,350,404,1 +10708,350,8971,3 +10709,350,313,3 +10710,350,5868,1 +10711,350,6501,2 +10712,350,2947,2 +10713,350,1578,4 +10714,350,7236,2 +10715,350,852,1 +10716,350,2999,1 +10717,350,2258,5 +10718,350,7329,4 +10719,350,9120,3 +10720,350,4330,5 +10721,350,7914,3 +10722,350,5034,3 +10723,350,6219,4 +10724,350,2078,2 +10725,350,8945,5 +10726,350,5354,5 +10727,350,4260,5 +10728,350,7642,4 +10729,350,6531,5 +10730,350,1121,2 +10731,350,8391,1 +10732,350,9355,2 +10733,350,4401,3 +10734,350,320,3 +10735,350,1199,5 +10736,350,5916,1 +10737,350,727,1 +10738,350,8042,1 +10739,350,1691,3 +10740,350,2601,3 +10741,350,5047,5 +10742,350,7380,1 +10743,350,309,4 +10744,350,9006,1 +10745,350,4972,4 +10746,350,7953,2 +10747,350,9645,4 +10748,350,7417,5 +10749,350,4056,4 +10750,350,9161,3 +10751,350,224,2 +10752,351,2380,2 +10753,351,1554,2 +10754,351,5273,1 +10755,351,7505,2 +10756,351,5442,1 +10757,351,7304,4 +10758,351,6586,5 +10759,351,1025,2 +10760,351,1533,5 +10761,351,4537,3 +10762,351,3704,1 +10763,351,450,1 +10764,351,7405,1 +10765,351,991,1 +10766,351,5998,3 +10767,351,8938,4 +10768,351,3684,3 +10769,351,3614,2 +10770,351,2764,5 +10771,351,5355,5 +10772,351,3093,5 +10773,351,3692,3 +10774,351,165,4 +10775,351,9233,5 +10776,351,6627,3 +10777,351,3653,1 +10778,351,5878,5 +10779,351,333,2 +10780,351,8612,1 +10781,351,9037,5 +10782,351,1875,4 +10783,351,1949,4 +10784,351,6660,4 +10785,351,7959,1 +10786,351,1280,1 +10787,351,5643,1 +10788,351,4217,5 +10789,351,6221,2 +10790,351,8291,3 +10791,351,5597,4 +10792,351,7612,1 +10793,351,9734,5 +10794,351,2747,1 +10795,351,9235,5 +10796,351,5953,1 +10797,351,9397,2 +10798,352,9738,4 +10799,352,1572,2 +10800,352,3221,5 +10801,352,3248,3 +10802,352,8995,1 +10803,352,333,5 +10804,352,4314,4 +10805,352,5532,2 +10806,352,2916,2 +10807,352,9257,1 +10808,352,9782,3 +10809,352,1892,5 +10810,352,1575,2 +10811,353,8581,5 +10812,353,4499,4 +10813,353,5082,3 +10814,353,1548,1 +10815,353,9129,3 +10816,353,2767,2 +10817,353,5098,3 +10818,353,9162,3 +10819,353,6692,1 +10820,353,2220,1 +10821,353,8901,3 +10822,353,9237,1 +10823,353,5630,5 +10824,353,8833,5 +10825,353,1272,1 +10826,353,8865,3 +10827,353,775,3 +10828,354,6976,1 +10829,354,8465,4 +10830,354,9439,5 +10831,354,7021,3 +10832,354,3760,1 +10833,354,6814,5 +10834,354,5679,4 +10835,354,3850,5 +10836,354,4843,5 +10837,354,7997,3 +10838,354,6010,2 +10839,354,5039,3 +10840,354,9162,3 +10841,354,5876,5 +10842,354,2642,3 +10843,354,8299,2 +10844,354,5697,5 +10845,354,5933,5 +10846,354,888,4 +10847,354,8319,1 +10848,354,2107,4 +10849,354,9923,2 +10850,354,5726,5 +10851,355,31,3 +10852,355,9328,5 +10853,355,9579,4 +10854,355,150,1 +10855,355,9966,4 +10856,355,846,1 +10857,355,7791,1 +10858,355,1399,1 +10859,355,8297,4 +10860,355,103,3 +10861,355,3078,2 +10862,355,38,2 +10863,355,3309,1 +10864,355,2594,3 +10865,355,6005,1 +10866,355,7130,5 +10867,355,4459,2 +10868,355,2947,1 +10869,355,5384,5 +10870,355,7315,5 +10871,355,4230,3 +10872,355,6762,4 +10873,356,4181,4 +10874,356,3315,3 +10875,356,8469,2 +10876,356,4323,4 +10877,356,4313,1 +10878,356,661,2 +10879,356,8562,2 +10880,356,9726,5 +10881,356,3468,4 +10882,356,1986,3 +10883,356,2292,1 +10884,356,3934,4 +10885,356,475,3 +10886,356,3625,5 +10887,356,5386,2 +10888,356,5376,1 +10889,356,3093,2 +10890,356,9508,3 +10891,356,6082,2 +10892,356,8903,2 +10893,356,1278,2 +10894,356,3486,2 +10895,356,8428,3 +10896,356,6167,3 +10897,356,7093,5 +10898,356,7061,2 +10899,356,1193,4 +10900,356,9996,1 +10901,356,1623,4 +10902,356,4622,2 +10903,356,4699,3 +10904,356,5102,3 +10905,356,8196,1 +10906,356,3312,5 +10907,356,1956,4 +10908,356,2440,3 +10909,356,4140,4 +10910,356,3777,3 +10911,357,7092,2 +10912,357,2967,5 +10913,357,3063,3 +10914,357,1110,5 +10915,357,7040,1 +10916,357,2152,5 +10917,357,7520,3 +10918,357,7046,1 +10919,357,6352,4 +10920,357,7516,2 +10921,357,7438,5 +10922,357,5239,5 +10923,357,7843,3 +10924,357,5446,2 +10925,357,8187,4 +10926,357,4543,5 +10927,357,7088,2 +10928,357,8061,1 +10929,357,2984,5 +10930,357,6160,3 +10931,357,5528,3 +10932,357,6783,2 +10933,357,402,5 +10934,357,3147,2 +10935,357,5097,4 +10936,357,807,1 +10937,357,2352,2 +10938,357,4446,3 +10939,357,4680,5 +10940,357,8784,4 +10941,357,1935,5 +10942,357,2862,2 +10943,357,614,1 +10944,357,5957,4 +10945,357,6843,5 +10946,357,9561,3 +10947,357,3142,3 +10948,357,8786,1 +10949,357,3777,4 +10950,357,240,4 +10951,357,1217,4 +10952,357,9961,5 +10953,357,8087,5 +10954,357,7416,4 +10955,357,6623,1 +10956,357,2746,1 +10957,357,3199,4 +10958,357,653,4 +10959,358,960,5 +10960,358,6312,2 +10961,358,7923,1 +10962,358,1277,4 +10963,358,8174,3 +10964,358,441,3 +10965,358,1793,4 +10966,358,864,2 +10967,358,7366,4 +10968,358,403,3 +10969,358,9527,2 +10970,358,5779,5 +10971,358,4436,4 +10972,358,6821,3 +10973,358,7032,5 +10974,358,3447,4 +10975,358,3424,5 +10976,358,159,2 +10977,358,6622,5 +10978,358,8775,4 +10979,358,1638,4 +10980,358,8953,1 +10981,358,23,5 +10982,358,9789,2 +10983,358,4133,4 +10984,358,7113,2 +10985,358,7517,4 +10986,359,1238,1 +10987,359,8691,4 +10988,359,7628,2 +10989,359,8076,3 +10990,359,5826,3 +10991,359,9333,4 +10992,359,3592,3 +10993,359,8907,1 +10994,359,4632,5 +10995,359,4714,3 +10996,359,9063,3 +10997,359,9869,3 +10998,359,7059,5 +10999,359,2616,3 +11000,359,9539,5 +11001,359,4753,1 +11002,359,7545,3 +11003,359,6061,2 +11004,359,8983,5 +11005,360,2807,1 +11006,360,3404,3 +11007,360,8140,1 +11008,360,535,3 +11009,360,1003,4 +11010,360,5587,4 +11011,360,2706,3 +11012,360,1089,2 +11013,360,5329,1 +11014,360,3556,5 +11015,360,6877,1 +11016,360,5503,3 +11017,360,9708,4 +11018,360,4075,1 +11019,360,193,4 +11020,360,2969,5 +11021,360,5970,2 +11022,360,9712,1 +11023,360,310,5 +11024,360,6039,5 +11025,360,7290,5 +11026,360,3789,4 +11027,360,705,4 +11028,360,544,1 +11029,360,2228,3 +11030,360,5172,3 +11031,361,8232,3 +11032,361,1020,5 +11033,361,8222,5 +11034,361,1397,5 +11035,361,4704,2 +11036,361,9587,1 +11037,361,3445,4 +11038,361,1837,4 +11039,361,2005,2 +11040,361,6398,4 +11041,361,4197,4 +11042,361,1971,1 +11043,361,689,4 +11044,361,6108,2 +11045,361,5590,4 +11046,361,8050,4 +11047,361,3272,2 +11048,361,5261,2 +11049,361,1240,1 +11050,361,5076,1 +11051,361,4563,4 +11052,361,4694,4 +11053,361,3840,4 +11054,361,4970,1 +11055,361,2276,4 +11056,361,6317,4 +11057,361,5610,1 +11058,361,9129,5 +11059,361,2646,2 +11060,361,3257,1 +11061,361,7074,2 +11062,361,2362,5 +11063,361,6491,1 +11064,361,6556,4 +11065,361,198,2 +11066,361,7278,5 +11067,361,6213,1 +11068,362,1750,4 +11069,362,2020,4 +11070,362,5980,1 +11071,362,9328,3 +11072,362,4584,1 +11073,362,7553,3 +11074,362,6371,1 +11075,362,888,5 +11076,362,2721,2 +11077,362,6878,1 +11078,362,8187,2 +11079,362,5743,1 +11080,362,3843,5 +11081,362,5091,2 +11082,362,2408,5 +11083,362,6965,5 +11084,362,7816,1 +11085,362,6770,5 +11086,362,4863,4 +11087,362,709,2 +11088,362,4635,5 +11089,362,3330,4 +11090,362,9794,2 +11091,362,7210,1 +11092,362,5837,5 +11093,362,1942,4 +11094,362,8414,5 +11095,363,7989,1 +11096,363,5411,3 +11097,363,1920,5 +11098,363,2596,1 +11099,363,727,5 +11100,363,6752,3 +11101,363,1568,1 +11102,363,2202,4 +11103,363,4197,1 +11104,363,69,2 +11105,363,4211,2 +11106,364,4408,2 +11107,364,3271,5 +11108,364,7843,4 +11109,364,744,2 +11110,364,9810,5 +11111,364,8471,3 +11112,364,8356,3 +11113,364,4100,4 +11114,364,9043,2 +11115,364,6547,4 +11116,364,413,3 +11117,364,7928,3 +11118,364,7725,4 +11119,364,1184,4 +11120,364,4286,2 +11121,364,8472,2 +11122,364,7610,5 +11123,364,8270,3 +11124,364,3782,2 +11125,364,7592,2 +11126,365,5182,3 +11127,365,5124,4 +11128,365,5214,2 +11129,365,7046,5 +11130,365,5811,5 +11131,365,1075,4 +11132,365,5439,5 +11133,365,9255,4 +11134,365,9217,3 +11135,365,9568,3 +11136,365,5349,5 +11137,365,1234,3 +11138,365,1670,5 +11139,365,3248,3 +11140,365,2208,5 +11141,365,2389,4 +11142,365,6115,3 +11143,365,2029,5 +11144,365,2086,2 +11145,365,5246,2 +11146,365,8817,5 +11147,365,2137,3 +11148,365,5880,2 +11149,365,3279,1 +11150,365,5028,1 +11151,365,7986,5 +11152,365,4029,4 +11153,365,8837,1 +11154,365,5260,2 +11155,365,7902,5 +11156,365,2562,1 +11157,365,9198,2 +11158,365,7954,4 +11159,365,3295,3 +11160,365,903,1 +11161,365,4619,1 +11162,365,6335,4 +11163,365,7593,4 +11164,365,2103,3 +11165,365,7668,4 +11166,365,8184,5 +11167,365,9423,4 +11168,365,2259,2 +11169,365,5012,4 +11170,365,7479,2 +11171,366,4824,3 +11172,366,7573,2 +11173,366,8107,5 +11174,366,7035,3 +11175,366,3896,4 +11176,366,5785,1 +11177,366,3900,1 +11178,366,7855,2 +11179,366,7843,4 +11180,366,7136,2 +11181,366,6375,1 +11182,366,7214,4 +11183,366,9967,4 +11184,366,3605,1 +11185,366,7772,2 +11186,366,8675,5 +11187,366,9549,3 +11188,366,8833,1 +11189,366,6842,2 +11190,366,9700,3 +11191,366,1648,4 +11192,366,6328,2 +11193,366,8688,5 +11194,366,2216,3 +11195,366,1005,5 +11196,366,2850,4 +11197,366,9764,5 +11198,366,6195,4 +11199,366,7119,5 +11200,366,320,4 +11201,366,6844,2 +11202,366,9418,3 +11203,366,7221,3 +11204,366,6669,2 +11205,366,5323,2 +11206,366,2584,3 +11207,366,1313,4 +11208,366,5469,3 +11209,366,7149,1 +11210,366,9229,2 +11211,366,4592,4 +11212,367,9677,3 +11213,367,73,3 +11214,367,3599,3 +11215,367,7403,5 +11216,367,177,4 +11217,367,502,4 +11218,367,4089,4 +11219,367,3768,2 +11220,367,297,5 +11221,367,8291,4 +11222,367,4878,1 +11223,367,3745,1 +11224,367,1101,1 +11225,367,2539,1 +11226,368,4956,2 +11227,368,9794,1 +11228,368,7283,1 +11229,368,3464,3 +11230,368,4039,5 +11231,368,5653,5 +11232,368,7124,2 +11233,368,9717,5 +11234,368,4195,1 +11235,368,1270,1 +11236,368,8847,1 +11237,368,2388,4 +11238,368,9562,3 +11239,368,4723,5 +11240,368,4810,3 +11241,369,4680,4 +11242,369,2748,1 +11243,369,6436,1 +11244,369,8882,2 +11245,369,3153,5 +11246,369,9178,4 +11247,369,939,3 +11248,369,34,1 +11249,369,6630,3 +11250,369,1991,4 +11251,369,691,5 +11252,369,1511,4 +11253,369,5150,4 +11254,369,147,1 +11255,369,8886,4 +11256,369,4511,1 +11257,369,7096,4 +11258,369,2266,5 +11259,369,1084,3 +11260,369,6068,1 +11261,369,4785,3 +11262,369,9973,4 +11263,370,4083,5 +11264,370,7346,3 +11265,370,936,2 +11266,370,1712,3 +11267,370,4667,3 +11268,370,9021,1 +11269,370,1324,2 +11270,370,2805,1 +11271,370,9227,5 +11272,370,8734,5 +11273,370,1537,5 +11274,370,238,3 +11275,370,5255,1 +11276,370,7387,3 +11277,370,6690,1 +11278,370,6408,3 +11279,370,8706,1 +11280,370,4965,5 +11281,370,5464,5 +11282,370,58,4 +11283,370,2219,3 +11284,370,4892,4 +11285,370,9820,1 +11286,370,6960,5 +11287,370,5189,4 +11288,370,9325,4 +11289,370,2594,3 +11290,370,1387,2 +11291,370,7837,1 +11292,370,6157,3 +11293,370,929,1 +11294,370,2894,1 +11295,370,7738,3 +11296,370,3545,5 +11297,370,8799,5 +11298,371,3845,2 +11299,371,8375,3 +11300,371,7407,2 +11301,371,9487,4 +11302,371,6940,2 +11303,371,5127,5 +11304,371,2099,5 +11305,371,4344,1 +11306,371,742,4 +11307,371,9607,2 +11308,371,7112,4 +11309,371,2717,1 +11310,371,7236,2 +11311,371,1296,4 +11312,371,8122,3 +11313,371,8804,3 +11314,371,9359,3 +11315,371,6829,4 +11316,372,24,1 +11317,372,5279,3 +11318,372,5024,4 +11319,372,78,4 +11320,372,4099,5 +11321,372,7615,4 +11322,372,5361,5 +11323,372,8689,2 +11324,372,3880,1 +11325,372,9048,4 +11326,372,530,1 +11327,372,5078,3 +11328,372,2939,1 +11329,372,5820,4 +11330,372,7637,1 +11331,372,9366,2 +11332,372,6471,5 +11333,372,2278,1 +11334,373,8506,5 +11335,373,876,1 +11336,373,3129,2 +11337,373,7544,4 +11338,373,394,4 +11339,373,6946,2 +11340,373,5452,5 +11341,373,630,1 +11342,373,1421,5 +11343,373,3844,4 +11344,373,6773,2 +11345,373,6835,2 +11346,373,7979,4 +11347,373,5333,1 +11348,374,6624,4 +11349,374,1010,5 +11350,374,5465,1 +11351,374,5336,1 +11352,374,5235,1 +11353,374,5069,5 +11354,374,1675,3 +11355,374,2212,1 +11356,374,8297,2 +11357,374,3297,2 +11358,374,7933,4 +11359,374,8831,2 +11360,374,8145,1 +11361,374,9167,5 +11362,374,6302,4 +11363,374,9852,3 +11364,374,7468,2 +11365,374,5794,2 +11366,374,2457,2 +11367,374,3693,4 +11368,374,6042,3 +11369,374,7460,2 +11370,374,4742,3 +11371,374,8748,4 +11372,374,3932,5 +11373,374,5567,4 +11374,374,1031,3 +11375,374,619,2 +11376,374,3081,2 +11377,374,1651,5 +11378,375,6291,2 +11379,375,1514,3 +11380,375,2060,4 +11381,375,6625,3 +11382,375,6406,3 +11383,375,1491,1 +11384,375,6084,3 +11385,375,1532,2 +11386,375,84,1 +11387,375,6495,5 +11388,375,7526,1 +11389,375,5415,5 +11390,375,2842,5 +11391,375,6189,2 +11392,375,2136,3 +11393,375,8394,2 +11394,375,5882,3 +11395,375,7952,3 +11396,375,2987,3 +11397,375,3060,4 +11398,375,4210,5 +11399,375,3509,2 +11400,376,9280,3 +11401,376,2633,5 +11402,376,6456,5 +11403,376,8370,2 +11404,376,4778,2 +11405,376,8178,2 +11406,376,4278,5 +11407,376,8793,5 +11408,376,1561,1 +11409,376,1064,2 +11410,376,8506,2 +11411,376,3966,4 +11412,376,1228,2 +11413,376,9909,5 +11414,376,3628,5 +11415,376,5202,4 +11416,376,8866,3 +11417,376,8186,5 +11418,376,4738,1 +11419,376,9595,3 +11420,376,6713,1 +11421,376,2843,3 +11422,376,5126,5 +11423,376,3655,1 +11424,376,2592,1 +11425,376,4900,5 +11426,376,5642,5 +11427,376,551,2 +11428,376,9373,1 +11429,376,9928,1 +11430,376,9402,3 +11431,376,3562,4 +11432,376,7596,5 +11433,376,9349,5 +11434,376,2729,1 +11435,376,8687,5 +11436,376,2439,4 +11437,376,4132,4 +11438,376,8131,2 +11439,376,5592,1 +11440,376,2628,3 +11441,376,14,1 +11442,376,1461,2 +11443,376,9925,2 +11444,376,5241,2 +11445,376,1482,1 +11446,377,5922,3 +11447,377,6197,3 +11448,377,9372,5 +11449,377,9130,2 +11450,377,2797,4 +11451,377,914,2 +11452,377,8615,1 +11453,377,3311,5 +11454,377,4379,3 +11455,377,2373,3 +11456,377,3573,1 +11457,377,2250,5 +11458,377,3708,2 +11459,377,5614,2 +11460,377,270,5 +11461,377,4317,5 +11462,377,1564,2 +11463,377,459,1 +11464,377,1506,2 +11465,377,1375,2 +11466,377,3930,5 +11467,377,8971,2 +11468,377,2698,4 +11469,377,9014,1 +11470,377,8064,5 +11471,377,2095,5 +11472,377,3779,5 +11473,377,4020,3 +11474,377,8963,5 +11475,377,1597,2 +11476,378,341,3 +11477,378,126,4 +11478,378,987,4 +11479,378,5447,1 +11480,378,9166,3 +11481,378,944,5 +11482,378,5103,3 +11483,378,443,2 +11484,378,1677,5 +11485,378,2518,4 +11486,378,8824,1 +11487,378,6370,2 +11488,378,2244,3 +11489,378,4310,5 +11490,378,1143,5 +11491,378,8164,3 +11492,378,110,2 +11493,379,6335,2 +11494,379,6127,2 +11495,379,7023,3 +11496,379,2119,5 +11497,379,3519,3 +11498,379,981,1 +11499,379,2587,3 +11500,379,9723,3 +11501,379,9557,1 +11502,379,8372,3 +11503,379,4033,3 +11504,379,1756,1 +11505,379,3506,3 +11506,379,4619,4 +11507,379,3251,5 +11508,379,1079,4 +11509,379,6315,2 +11510,379,8533,1 +11511,379,2217,4 +11512,379,3832,2 +11513,379,5850,4 +11514,379,1423,1 +11515,379,4069,1 +11516,379,5271,5 +11517,379,9156,1 +11518,379,8918,5 +11519,379,7166,5 +11520,379,3313,5 +11521,379,4598,5 +11522,380,3065,4 +11523,380,7382,5 +11524,380,9068,1 +11525,380,7621,1 +11526,380,4951,1 +11527,380,8436,5 +11528,380,9938,1 +11529,380,5212,5 +11530,380,9335,1 +11531,380,7271,1 +11532,380,6249,1 +11533,380,1190,3 +11534,380,373,5 +11535,380,1152,3 +11536,380,8772,3 +11537,380,8348,1 +11538,380,5597,5 +11539,380,8030,4 +11540,380,7395,5 +11541,380,9793,5 +11542,380,1557,3 +11543,380,2489,2 +11544,380,4969,2 +11545,380,3927,5 +11546,380,4947,4 +11547,380,8343,5 +11548,380,9427,4 +11549,380,5281,4 +11550,380,5226,3 +11551,380,9989,4 +11552,381,8961,1 +11553,381,4888,3 +11554,381,1370,4 +11555,381,3093,2 +11556,381,7096,3 +11557,381,533,2 +11558,381,3712,1 +11559,381,9430,4 +11560,381,9348,1 +11561,381,1709,5 +11562,381,6101,4 +11563,381,4365,4 +11564,381,3936,1 +11565,381,6251,4 +11566,381,74,3 +11567,381,2603,2 +11568,381,2279,1 +11569,381,5094,5 +11570,381,535,1 +11571,381,2996,4 +11572,381,7439,2 +11573,381,5461,5 +11574,381,7878,1 +11575,381,1916,4 +11576,381,3511,3 +11577,381,3253,1 +11578,382,2202,4 +11579,382,7358,1 +11580,382,6172,2 +11581,382,991,2 +11582,382,5737,1 +11583,382,9252,2 +11584,382,7879,1 +11585,382,7733,3 +11586,382,1258,5 +11587,382,9998,4 +11588,383,9218,5 +11589,383,552,5 +11590,383,1635,3 +11591,383,5384,5 +11592,383,9314,5 +11593,383,7206,1 +11594,383,7613,1 +11595,383,1388,3 +11596,383,5578,4 +11597,383,3208,1 +11598,383,4792,5 +11599,383,1673,3 +11600,384,244,1 +11601,384,7184,5 +11602,384,3636,4 +11603,384,9304,3 +11604,384,1621,4 +11605,384,3000,4 +11606,384,7438,1 +11607,384,7817,5 +11608,384,7724,5 +11609,384,2518,3 +11610,384,2538,5 +11611,384,2614,1 +11612,384,3674,5 +11613,384,2743,3 +11614,384,2151,2 +11615,384,6444,5 +11616,384,879,3 +11617,384,7793,3 +11618,384,2341,3 +11619,384,6909,4 +11620,384,2063,2 +11621,384,3356,1 +11622,384,3316,1 +11623,384,1429,5 +11624,384,1001,1 +11625,384,659,4 +11626,384,4516,1 +11627,384,1871,2 +11628,385,1200,4 +11629,385,693,2 +11630,385,5602,2 +11631,385,1693,4 +11632,385,1135,5 +11633,385,6021,4 +11634,385,5273,4 +11635,385,8501,5 +11636,385,5268,4 +11637,385,2306,1 +11638,385,1436,3 +11639,385,1176,4 +11640,385,9159,4 +11641,385,8150,5 +11642,385,5366,2 +11643,385,2166,4 +11644,385,9844,4 +11645,385,3917,4 +11646,385,3311,3 +11647,385,3065,4 +11648,385,6149,5 +11649,385,8632,2 +11650,385,9977,3 +11651,385,2251,3 +11652,385,8231,2 +11653,385,9419,3 +11654,385,9978,2 +11655,385,7422,5 +11656,385,6840,5 +11657,385,2735,1 +11658,385,1735,4 +11659,385,3715,1 +11660,385,2971,2 +11661,385,3554,4 +11662,385,9278,3 +11663,385,8057,3 +11664,385,4491,4 +11665,385,6609,3 +11666,385,9354,5 +11667,385,5924,4 +11668,385,3861,3 +11669,385,3706,4 +11670,386,5913,2 +11671,386,5721,3 +11672,386,1546,5 +11673,386,3099,5 +11674,386,6453,2 +11675,386,760,5 +11676,386,6169,5 +11677,386,5492,5 +11678,386,9234,2 +11679,386,9108,3 +11680,386,3196,1 +11681,386,8267,1 +11682,386,9161,5 +11683,386,7150,1 +11684,386,7608,1 +11685,386,3648,5 +11686,386,8712,1 +11687,386,7142,1 +11688,386,4240,2 +11689,386,4111,5 +11690,386,6038,5 +11691,386,4167,3 +11692,386,3895,3 +11693,386,2558,4 +11694,386,7307,1 +11695,386,2675,1 +11696,386,4114,3 +11697,386,537,1 +11698,386,1262,4 +11699,386,3441,1 +11700,386,5115,4 +11701,386,5500,2 +11702,386,9811,5 +11703,386,136,4 +11704,386,1723,3 +11705,386,2364,3 +11706,387,5035,2 +11707,387,4301,4 +11708,387,1902,5 +11709,387,7386,4 +11710,387,9531,3 +11711,387,1726,5 +11712,387,1140,3 +11713,387,1967,5 +11714,387,9204,5 +11715,387,9985,1 +11716,387,4809,3 +11717,387,3831,5 +11718,387,3063,5 +11719,387,5385,4 +11720,387,7511,2 +11721,387,6581,3 +11722,387,8504,5 +11723,387,6336,4 +11724,387,5687,3 +11725,387,95,5 +11726,387,7739,3 +11727,387,2249,4 +11728,387,3239,5 +11729,387,2628,1 +11730,387,6023,4 +11731,387,1250,4 +11732,387,3828,1 +11733,387,8465,1 +11734,387,7197,3 +11735,387,4051,1 +11736,387,5670,2 +11737,387,4397,2 +11738,387,2131,5 +11739,387,2472,2 +11740,387,4055,2 +11741,387,2053,4 +11742,387,4463,3 +11743,387,9280,3 +11744,388,9225,5 +11745,388,7335,3 +11746,388,7368,2 +11747,388,1663,2 +11748,388,2171,4 +11749,388,4999,1 +11750,388,8989,4 +11751,388,802,1 +11752,388,1793,1 +11753,388,8447,3 +11754,388,4610,1 +11755,388,6439,5 +11756,388,480,2 +11757,388,3000,2 +11758,388,2739,1 +11759,388,6985,1 +11760,388,3311,3 +11761,388,7525,5 +11762,388,2002,3 +11763,388,1308,4 +11764,388,4924,4 +11765,388,6887,5 +11766,388,3790,4 +11767,389,537,3 +11768,389,8283,1 +11769,389,7748,1 +11770,389,9831,4 +11771,389,540,4 +11772,389,5368,3 +11773,389,7469,1 +11774,389,987,5 +11775,389,7338,3 +11776,389,4166,3 +11777,389,3562,4 +11778,389,9467,5 +11779,389,9740,5 +11780,389,7015,5 +11781,389,5512,4 +11782,389,774,3 +11783,389,6441,5 +11784,389,4120,2 +11785,389,4686,1 +11786,389,1215,3 +11787,389,1086,3 +11788,389,7022,2 +11789,389,4901,1 +11790,389,2543,5 +11791,389,6398,2 +11792,389,6375,1 +11793,389,7875,1 +11794,389,1833,2 +11795,389,8911,1 +11796,389,6570,2 +11797,389,7214,4 +11798,389,3844,5 +11799,389,5510,1 +11800,389,7695,4 +11801,389,8385,3 +11802,389,3078,2 +11803,389,8534,2 +11804,390,8139,2 +11805,390,2039,2 +11806,390,9532,3 +11807,390,5470,1 +11808,390,9280,3 +11809,390,4898,2 +11810,390,5267,2 +11811,390,3337,4 +11812,390,5303,5 +11813,390,7790,5 +11814,390,213,3 +11815,390,9908,4 +11816,390,3839,5 +11817,390,8663,4 +11818,390,1807,5 +11819,390,3244,3 +11820,390,726,4 +11821,390,4372,5 +11822,390,8927,1 +11823,390,7175,2 +11824,390,3125,2 +11825,390,2043,4 +11826,390,650,4 +11827,390,4428,1 +11828,390,7944,4 +11829,390,479,1 +11830,390,3220,4 +11831,390,4540,3 +11832,390,1952,4 +11833,390,5351,2 +11834,390,7076,5 +11835,390,7392,1 +11836,391,4130,1 +11837,391,8912,1 +11838,391,7641,3 +11839,391,2337,4 +11840,391,3323,3 +11841,391,3638,3 +11842,391,9362,4 +11843,391,2256,1 +11844,391,3177,4 +11845,391,4650,2 +11846,391,3747,2 +11847,391,5302,2 +11848,391,5328,4 +11849,391,5563,4 +11850,391,1841,2 +11851,391,2399,3 +11852,391,6768,2 +11853,391,1437,2 +11854,391,4258,4 +11855,391,4435,4 +11856,391,4802,5 +11857,391,2976,1 +11858,392,7617,4 +11859,392,853,2 +11860,392,5309,2 +11861,392,7740,3 +11862,392,6124,2 +11863,392,6355,1 +11864,392,4737,1 +11865,392,108,5 +11866,392,6977,2 +11867,392,8240,2 +11868,392,9541,2 +11869,392,8627,2 +11870,392,914,5 +11871,392,7640,1 +11872,392,2825,5 +11873,392,3310,5 +11874,392,3670,1 +11875,392,6827,4 +11876,392,4137,3 +11877,392,267,3 +11878,392,794,3 +11879,392,278,1 +11880,392,6127,4 +11881,392,8128,3 +11882,392,4953,2 +11883,392,1069,1 +11884,392,1781,5 +11885,392,593,5 +11886,392,3472,3 +11887,392,5374,3 +11888,392,1042,1 +11889,392,2185,1 +11890,392,7272,4 +11891,392,5356,4 +11892,392,1110,2 +11893,392,2961,3 +11894,392,4717,4 +11895,392,9950,5 +11896,393,8330,1 +11897,393,1226,4 +11898,393,8235,1 +11899,393,812,5 +11900,393,9084,2 +11901,393,2831,5 +11902,393,4683,4 +11903,393,9724,4 +11904,393,5870,1 +11905,393,582,1 +11906,393,8501,5 +11907,393,5973,4 +11908,393,873,2 +11909,393,3268,5 +11910,393,7200,4 +11911,393,4891,3 +11912,393,4281,2 +11913,393,7280,2 +11914,393,1846,3 +11915,393,3313,3 +11916,393,9624,5 +11917,393,4658,5 +11918,393,235,3 +11919,393,1528,1 +11920,393,4346,1 +11921,393,4555,4 +11922,393,1906,2 +11923,393,5754,4 +11924,393,9350,5 +11925,393,1523,2 +11926,393,6349,3 +11927,393,4803,4 +11928,393,7070,5 +11929,393,3341,4 +11930,393,8096,2 +11931,394,9698,4 +11932,394,8512,1 +11933,394,8597,3 +11934,394,2517,2 +11935,394,8151,3 +11936,394,1296,2 +11937,394,1280,5 +11938,394,9443,2 +11939,394,1987,1 +11940,394,2972,2 +11941,394,8976,2 +11942,394,5734,2 +11943,394,7289,5 +11944,394,4735,3 +11945,394,8931,1 +11946,394,1783,5 +11947,394,6440,5 +11948,394,8197,1 +11949,394,6398,5 +11950,395,3929,1 +11951,395,2201,3 +11952,395,4379,5 +11953,395,6320,5 +11954,395,6463,2 +11955,395,7,3 +11956,395,9248,5 +11957,395,6861,3 +11958,395,4951,1 +11959,395,4288,5 +11960,395,416,1 +11961,395,8520,5 +11962,395,2703,2 +11963,395,1222,4 +11964,395,2024,2 +11965,395,9161,1 +11966,395,484,2 +11967,395,5326,4 +11968,395,5440,2 +11969,395,7599,1 +11970,395,4406,4 +11971,395,5421,3 +11972,395,2904,5 +11973,395,3611,3 +11974,395,1866,3 +11975,395,456,2 +11976,395,5033,4 +11977,395,8393,2 +11978,395,6815,2 +11979,395,3158,4 +11980,396,5858,2 +11981,396,1389,3 +11982,396,5236,3 +11983,396,4280,1 +11984,396,9378,4 +11985,396,2369,2 +11986,396,3489,2 +11987,396,7364,1 +11988,396,2636,2 +11989,396,4977,4 +11990,396,9041,4 +11991,396,8169,5 +11992,396,4780,1 +11993,396,8270,2 +11994,396,7808,4 +11995,396,9265,5 +11996,396,9571,2 +11997,396,5756,3 +11998,396,9148,4 +11999,396,3166,1 +12000,396,4919,3 +12001,396,9027,2 +12002,396,6372,3 +12003,396,4054,4 +12004,396,2669,4 +12005,396,1118,4 +12006,396,7208,4 +12007,396,409,2 +12008,396,6888,4 +12009,396,2023,5 +12010,396,8369,5 +12011,396,4683,4 +12012,396,7206,2 +12013,396,3013,5 +12014,396,9551,3 +12015,396,7050,4 +12016,396,447,5 +12017,396,3701,5 +12018,396,3181,3 +12019,396,3211,3 +12020,396,8122,1 +12021,396,6632,2 +12022,396,7387,4 +12023,396,5732,1 +12024,396,1507,3 +12025,397,4705,5 +12026,397,8256,3 +12027,397,5308,4 +12028,397,2371,5 +12029,397,5417,1 +12030,397,9902,2 +12031,397,1376,2 +12032,397,1880,2 +12033,397,3777,1 +12034,397,2803,4 +12035,397,2512,3 +12036,397,6698,5 +12037,397,1502,4 +12038,397,2140,2 +12039,397,2867,5 +12040,397,9318,4 +12041,397,2688,2 +12042,397,471,4 +12043,397,2612,1 +12044,397,7023,3 +12045,397,8445,5 +12046,397,9298,3 +12047,397,6830,5 +12048,397,8346,3 +12049,397,9029,3 +12050,397,9790,3 +12051,397,2667,1 +12052,397,1747,2 +12053,397,8464,1 +12054,397,398,4 +12055,397,1619,4 +12056,397,65,3 +12057,397,6963,2 +12058,397,6788,5 +12059,397,6919,3 +12060,397,5943,4 +12061,397,7491,4 +12062,397,4437,5 +12063,397,4102,4 +12064,397,3461,3 +12065,397,3577,3 +12066,397,4586,2 +12067,397,4294,5 +12068,397,9854,5 +12069,397,4443,2 +12070,398,3290,3 +12071,398,4829,1 +12072,398,5626,1 +12073,398,9147,1 +12074,398,598,1 +12075,398,5531,3 +12076,398,8487,5 +12077,398,8482,5 +12078,398,9296,4 +12079,398,1792,1 +12080,398,9941,5 +12081,398,3140,2 +12082,398,3823,4 +12083,398,9708,2 +12084,398,6518,4 +12085,398,1965,2 +12086,398,5936,1 +12087,398,8881,2 +12088,398,1912,4 +12089,398,3367,3 +12090,398,5060,4 +12091,399,1606,2 +12092,399,6325,5 +12093,399,3050,1 +12094,399,5199,5 +12095,399,4185,2 +12096,399,7909,5 +12097,399,9021,2 +12098,399,1608,1 +12099,399,8041,4 +12100,399,3157,3 +12101,399,8990,1 +12102,399,3299,2 +12103,399,8538,5 +12104,399,2559,4 +12105,399,8899,4 +12106,399,2021,3 +12107,399,5872,3 +12108,399,2966,3 +12109,399,1319,2 +12110,399,3992,2 +12111,399,451,2 +12112,399,3383,1 +12113,399,4501,2 +12114,399,2812,4 +12115,399,3834,5 +12116,399,8697,5 +12117,399,6986,2 +12118,399,8421,4 +12119,399,3772,3 +12120,399,583,1 +12121,399,5450,3 +12122,399,1749,1 +12123,399,7591,1 +12124,399,5458,4 +12125,399,3338,5 +12126,399,9709,5 +12127,399,8835,5 +12128,399,5020,5 +12129,399,2741,3 +12130,399,7268,1 +12131,399,3860,3 +12132,399,2711,2 +12133,399,3331,1 +12134,399,8541,2 +12135,399,7858,3 +12136,399,6683,5 +12137,399,5746,1 +12138,399,8303,5 +12139,399,9478,3 +12140,400,3923,4 +12141,400,4544,2 +12142,400,8980,2 +12143,400,9623,4 +12144,400,9298,4 +12145,400,9724,2 +12146,400,6535,5 +12147,400,7211,3 +12148,400,189,3 +12149,400,7510,2 +12150,400,3658,2 +12151,400,7705,5 +12152,400,2367,2 +12153,400,8450,3 +12154,400,6722,2 +12155,400,4891,4 +12156,400,5761,4 +12157,400,2489,2 +12158,400,9046,3 +12159,400,4741,5 +12160,400,9541,3 +12161,400,9419,3 +12162,400,779,4 +12163,400,5168,4 +12164,400,6410,3 +12165,400,6009,1 +12166,400,3882,4 +12167,400,5731,4 +12168,400,2850,2 +12169,400,4794,5 +12170,400,996,4 +12171,400,5863,5 +12172,400,6006,3 +12173,400,5241,5 +12174,400,6793,5 +12175,400,2068,5 +12176,400,3659,2 +12177,400,3382,3 +12178,400,5590,3 +12179,400,2520,5 +12180,400,2825,5 +12181,400,5495,2 +12182,400,3379,5 +12183,400,1938,5 +12184,400,4925,4 +12185,400,712,2 +12186,401,5770,2 +12187,401,7381,3 +12188,401,1658,1 +12189,401,4640,3 +12190,401,761,5 +12191,401,1121,1 +12192,401,8139,5 +12193,401,316,1 +12194,401,1575,2 +12195,401,3460,5 +12196,401,4563,1 +12197,401,17,1 +12198,401,2127,5 +12199,401,4314,2 +12200,401,1721,3 +12201,401,7847,4 +12202,401,9503,4 +12203,401,9145,3 +12204,401,3964,4 +12205,401,662,4 +12206,401,831,1 +12207,401,8178,3 +12208,401,2293,3 +12209,401,9588,3 +12210,401,5638,3 +12211,401,4904,3 +12212,401,3178,1 +12213,401,2648,4 +12214,401,2532,2 +12215,401,9019,1 +12216,401,851,1 +12217,401,3737,5 +12218,401,2217,1 +12219,401,3562,2 +12220,401,5258,1 +12221,401,2093,1 +12222,401,8296,2 +12223,401,1807,2 +12224,401,6273,1 +12225,401,3791,1 +12226,401,8431,3 +12227,401,8808,5 +12228,401,9344,5 +12229,401,7069,3 +12230,401,2685,5 +12231,401,3385,4 +12232,401,7615,2 +12233,402,8383,4 +12234,402,1129,3 +12235,402,1153,3 +12236,402,5165,5 +12237,402,352,4 +12238,402,9596,1 +12239,402,4536,4 +12240,402,9771,1 +12241,402,9961,3 +12242,402,9937,3 +12243,402,988,2 +12244,402,2312,4 +12245,402,3915,5 +12246,402,3038,1 +12247,402,1045,4 +12248,402,9602,3 +12249,402,2611,3 +12250,402,2310,2 +12251,402,6596,3 +12252,402,5876,3 +12253,402,8227,2 +12254,403,7997,3 +12255,403,7004,4 +12256,403,9710,2 +12257,403,2907,3 +12258,403,8210,3 +12259,403,862,5 +12260,403,9280,3 +12261,403,2714,5 +12262,403,9966,4 +12263,403,8762,4 +12264,403,8694,4 +12265,403,2516,3 +12266,403,4947,2 +12267,403,6272,2 +12268,403,2763,1 +12269,403,5179,1 +12270,403,626,3 +12271,403,678,2 +12272,403,8305,2 +12273,403,9367,3 +12274,403,6208,4 +12275,403,8769,3 +12276,403,1433,5 +12277,403,3824,5 +12278,403,4974,3 +12279,403,5536,3 +12280,403,3127,5 +12281,403,3305,3 +12282,403,3457,5 +12283,403,4555,3 +12284,403,1872,3 +12285,403,7425,2 +12286,403,2039,1 +12287,403,654,3 +12288,403,5637,2 +12289,403,7124,5 +12290,403,4150,2 +12291,403,8360,3 +12292,403,4861,4 +12293,403,1572,1 +12294,403,5621,2 +12295,403,169,1 +12296,403,9649,2 +12297,403,9081,5 +12298,403,9510,3 +12299,404,3313,2 +12300,404,6732,5 +12301,404,8781,2 +12302,404,8586,5 +12303,404,855,2 +12304,404,23,1 +12305,404,6149,3 +12306,404,4293,3 +12307,404,9991,5 +12308,404,322,3 +12309,404,1286,2 +12310,404,5857,3 +12311,404,7419,1 +12312,404,1871,3 +12313,404,2057,5 +12314,404,7869,1 +12315,404,586,1 +12316,404,8867,4 +12317,404,9226,3 +12318,404,9845,3 +12319,404,8702,4 +12320,404,9091,1 +12321,404,9324,3 +12322,404,9357,5 +12323,404,9943,2 +12324,404,2125,4 +12325,404,1371,1 +12326,404,2561,4 +12327,404,3021,4 +12328,404,7504,2 +12329,404,9916,3 +12330,404,5207,2 +12331,404,442,3 +12332,404,8885,5 +12333,404,8648,5 +12334,404,2293,5 +12335,404,2255,2 +12336,404,5843,5 +12337,404,4341,5 +12338,405,4191,1 +12339,405,9611,4 +12340,405,6405,2 +12341,405,6024,3 +12342,405,5055,1 +12343,405,4037,4 +12344,405,1265,2 +12345,405,8029,4 +12346,405,9488,5 +12347,405,3284,1 +12348,405,9659,3 +12349,406,7182,3 +12350,406,7600,2 +12351,406,6833,4 +12352,406,1229,3 +12353,406,4988,2 +12354,406,5304,5 +12355,406,3242,1 +12356,406,5587,5 +12357,406,6956,2 +12358,406,3182,3 +12359,406,7189,2 +12360,406,5376,5 +12361,406,2560,3 +12362,406,1813,1 +12363,406,9629,4 +12364,406,8926,4 +12365,406,3060,3 +12366,406,1879,5 +12367,406,5025,2 +12368,406,7957,4 +12369,406,4526,2 +12370,406,5611,3 +12371,406,1856,3 +12372,406,5971,5 +12373,406,9507,5 +12374,406,951,3 +12375,406,1211,3 +12376,406,2491,1 +12377,406,4763,4 +12378,406,8738,4 +12379,406,921,3 +12380,406,9513,3 +12381,406,2037,4 +12382,406,4618,5 +12383,406,6757,3 +12384,406,9986,1 +12385,406,4567,5 +12386,406,363,4 +12387,406,8757,5 +12388,406,3573,2 +12389,406,8914,2 +12390,406,6585,2 +12391,406,2040,3 +12392,406,5882,3 +12393,406,3102,1 +12394,406,9907,2 +12395,406,8023,5 +12396,406,9498,2 +12397,406,429,1 +12398,407,514,2 +12399,407,8171,3 +12400,407,6259,1 +12401,407,3596,2 +12402,407,7902,2 +12403,407,5792,2 +12404,407,395,2 +12405,407,362,1 +12406,407,9357,4 +12407,407,2643,1 +12408,407,4806,4 +12409,407,8416,3 +12410,407,7280,2 +12411,407,553,3 +12412,408,2101,2 +12413,408,315,3 +12414,408,7153,3 +12415,408,3887,5 +12416,408,6048,2 +12417,408,2407,1 +12418,408,7886,5 +12419,408,8148,4 +12420,408,4565,4 +12421,408,5963,5 +12422,408,1548,1 +12423,408,2573,3 +12424,408,2215,4 +12425,408,6735,3 +12426,408,7772,4 +12427,408,3672,2 +12428,408,3545,1 +12429,408,9820,5 +12430,408,5111,1 +12431,408,6740,1 +12432,409,4513,2 +12433,409,206,3 +12434,409,2154,1 +12435,409,4344,1 +12436,409,2262,4 +12437,409,8127,1 +12438,409,3084,2 +12439,409,4748,4 +12440,409,636,5 +12441,409,2366,4 +12442,409,2081,3 +12443,409,8238,5 +12444,409,9733,3 +12445,409,7260,1 +12446,409,9478,2 +12447,409,4351,5 +12448,409,2859,2 +12449,410,1614,4 +12450,410,3372,4 +12451,410,3336,3 +12452,410,7415,4 +12453,410,4991,2 +12454,410,2798,5 +12455,410,2668,3 +12456,410,570,5 +12457,410,8742,2 +12458,410,18,3 +12459,410,4650,4 +12460,410,4043,2 +12461,410,7498,3 +12462,410,9018,2 +12463,410,7782,5 +12464,410,4729,2 +12465,410,1036,5 +12466,410,5624,5 +12467,410,7588,2 +12468,410,7045,5 +12469,410,8396,3 +12470,410,8014,4 +12471,410,7833,3 +12472,410,9901,2 +12473,410,3379,4 +12474,410,5938,1 +12475,410,7372,5 +12476,410,3750,2 +12477,410,1794,2 +12478,410,5612,3 +12479,410,9156,1 +12480,410,2084,1 +12481,410,6941,3 +12482,410,5294,4 +12483,410,8858,1 +12484,410,1054,2 +12485,410,5619,5 +12486,410,6204,2 +12487,410,6246,1 +12488,410,3312,3 +12489,410,9291,1 +12490,410,4002,2 +12491,410,4062,5 +12492,411,4963,3 +12493,411,57,4 +12494,411,5288,1 +12495,411,3025,1 +12496,411,2791,1 +12497,411,5829,3 +12498,411,6905,4 +12499,411,6764,5 +12500,411,6982,3 +12501,411,4375,3 +12502,411,2528,1 +12503,411,709,2 +12504,411,6561,3 +12505,411,9641,5 +12506,411,8555,4 +12507,411,4271,1 +12508,411,4351,1 +12509,411,8561,3 +12510,411,7817,4 +12511,411,5915,3 +12512,411,6353,3 +12513,411,9005,4 +12514,411,7249,2 +12515,411,4612,5 +12516,411,2124,1 +12517,411,1343,1 +12518,411,5524,4 +12519,411,2419,2 +12520,411,9385,4 +12521,411,5646,5 +12522,411,3779,5 +12523,411,2566,5 +12524,411,9333,2 +12525,411,4955,3 +12526,411,5679,4 +12527,411,793,3 +12528,411,781,5 +12529,411,8267,4 +12530,411,5800,4 +12531,411,4797,2 +12532,412,20,5 +12533,412,5506,5 +12534,412,2950,2 +12535,412,7161,4 +12536,412,9685,2 +12537,412,5673,1 +12538,412,256,1 +12539,412,302,3 +12540,412,6720,1 +12541,412,7424,4 +12542,412,9169,2 +12543,412,948,2 +12544,412,4673,3 +12545,412,236,5 +12546,412,5033,2 +12547,412,9865,4 +12548,412,4284,2 +12549,412,4718,4 +12550,413,2349,5 +12551,413,116,2 +12552,413,3806,3 +12553,413,2132,2 +12554,413,500,4 +12555,413,4604,3 +12556,413,3172,3 +12557,413,8697,1 +12558,413,5758,5 +12559,413,3900,5 +12560,413,6605,2 +12561,413,5546,4 +12562,413,6551,2 +12563,413,5458,2 +12564,413,475,2 +12565,413,5824,5 +12566,413,6509,5 +12567,413,4960,4 +12568,413,9036,1 +12569,413,2530,1 +12570,413,241,5 +12571,413,4533,3 +12572,413,4109,2 +12573,413,7512,4 +12574,413,4370,4 +12575,413,2976,1 +12576,413,2202,2 +12577,413,1179,1 +12578,413,9872,1 +12579,413,7767,4 +12580,413,1792,4 +12581,413,8151,3 +12582,413,9262,2 +12583,413,1165,5 +12584,413,47,4 +12585,413,5613,1 +12586,413,4573,2 +12587,413,5453,2 +12588,414,9740,4 +12589,414,45,4 +12590,414,4974,5 +12591,414,3676,4 +12592,414,8063,1 +12593,414,3243,2 +12594,414,1555,1 +12595,414,9549,1 +12596,414,1604,5 +12597,414,1917,1 +12598,414,7597,4 +12599,414,735,1 +12600,414,3467,3 +12601,414,827,3 +12602,414,2109,5 +12603,415,2560,1 +12604,415,806,2 +12605,415,5768,5 +12606,415,8221,5 +12607,415,2449,3 +12608,415,9605,1 +12609,415,9864,1 +12610,415,8116,1 +12611,415,4377,5 +12612,415,2114,5 +12613,415,7368,4 +12614,415,18,1 +12615,415,7183,3 +12616,415,2423,4 +12617,415,4138,4 +12618,415,8229,3 +12619,415,8172,2 +12620,415,9749,4 +12621,415,7185,1 +12622,416,3409,3 +12623,416,5219,3 +12624,416,3494,1 +12625,416,7821,3 +12626,416,4469,1 +12627,416,1452,1 +12628,416,7650,4 +12629,416,8169,5 +12630,416,9472,5 +12631,416,6561,2 +12632,416,6812,5 +12633,416,1313,5 +12634,416,8600,3 +12635,416,2459,4 +12636,416,6417,5 +12637,417,5860,4 +12638,417,4229,4 +12639,417,2512,4 +12640,417,2344,5 +12641,417,2582,2 +12642,417,9222,3 +12643,417,6467,3 +12644,417,6193,5 +12645,417,7322,5 +12646,417,8770,2 +12647,417,3467,1 +12648,417,709,3 +12649,417,9363,2 +12650,417,6337,3 +12651,417,4567,1 +12652,417,3352,2 +12653,418,3038,5 +12654,418,1578,5 +12655,418,5999,3 +12656,418,7232,3 +12657,418,7529,2 +12658,418,6562,1 +12659,418,3993,2 +12660,418,7907,2 +12661,418,7317,2 +12662,418,7399,2 +12663,418,5304,3 +12664,418,3159,3 +12665,418,2591,3 +12666,418,2430,2 +12667,418,7046,5 +12668,418,1874,5 +12669,418,4427,3 +12670,418,820,2 +12671,418,4224,2 +12672,418,8287,2 +12673,419,4738,1 +12674,419,9192,5 +12675,419,5694,3 +12676,419,5992,4 +12677,419,3355,5 +12678,419,9623,2 +12679,419,2986,2 +12680,419,4333,3 +12681,419,6705,5 +12682,419,528,2 +12683,419,1756,3 +12684,419,5494,1 +12685,419,2388,4 +12686,419,8447,3 +12687,419,9738,3 +12688,419,8595,4 +12689,419,8978,5 +12690,419,9256,2 +12691,419,942,3 +12692,419,7662,3 +12693,419,4754,5 +12694,419,7434,1 +12695,419,9298,1 +12696,419,2702,4 +12697,419,8616,3 +12698,419,6269,2 +12699,419,6377,4 +12700,419,2077,4 +12701,419,4929,2 +12702,419,3017,2 +12703,419,9406,4 +12704,419,7785,2 +12705,419,2112,5 +12706,419,2,4 +12707,419,961,1 +12708,419,2225,4 +12709,419,2375,5 +12710,420,3181,1 +12711,420,5633,2 +12712,420,1644,2 +12713,420,276,2 +12714,420,4726,4 +12715,420,9238,4 +12716,420,828,1 +12717,420,2784,4 +12718,420,2354,3 +12719,420,698,2 +12720,421,1204,1 +12721,421,4539,1 +12722,421,3473,4 +12723,421,4171,1 +12724,421,2774,5 +12725,421,4196,3 +12726,421,7197,1 +12727,421,3978,2 +12728,421,1693,3 +12729,421,9532,3 +12730,422,3140,2 +12731,422,4150,1 +12732,422,8826,2 +12733,422,931,5 +12734,422,9366,2 +12735,422,1631,5 +12736,422,8318,4 +12737,422,4350,1 +12738,422,562,4 +12739,422,5507,3 +12740,423,6553,2 +12741,423,2125,5 +12742,423,1089,5 +12743,423,1272,2 +12744,423,1717,2 +12745,423,6535,4 +12746,423,6731,2 +12747,423,9635,5 +12748,423,3837,1 +12749,423,6071,5 +12750,423,766,4 +12751,423,3565,1 +12752,423,7901,4 +12753,423,9758,4 +12754,423,9325,2 +12755,423,2113,1 +12756,423,1153,3 +12757,423,1522,1 +12758,423,9428,1 +12759,423,9819,4 +12760,423,977,3 +12761,423,9183,2 +12762,423,3057,3 +12763,424,1698,2 +12764,424,2155,5 +12765,424,4094,5 +12766,424,2778,5 +12767,424,9917,2 +12768,424,6683,3 +12769,424,8424,2 +12770,424,1978,5 +12771,424,2528,3 +12772,424,1870,4 +12773,424,1824,5 +12774,424,4350,1 +12775,424,9470,5 +12776,424,2709,4 +12777,424,6005,5 +12778,424,1327,1 +12779,424,3429,3 +12780,424,5235,4 +12781,424,8254,4 +12782,424,8339,2 +12783,424,7537,3 +12784,424,5996,4 +12785,424,7916,3 +12786,424,467,1 +12787,424,9221,3 +12788,424,9243,4 +12789,424,4284,1 +12790,424,8942,1 +12791,424,6598,4 +12792,424,5369,2 +12793,424,7813,5 +12794,424,312,3 +12795,424,9649,2 +12796,424,8283,3 +12797,424,6523,1 +12798,424,8905,1 +12799,424,8397,2 +12800,424,6075,4 +12801,424,6041,4 +12802,424,830,5 +12803,424,3981,2 +12804,424,5879,3 +12805,424,6499,1 +12806,424,6031,2 +12807,424,8066,1 +12808,424,921,4 +12809,424,2907,3 +12810,425,8887,4 +12811,425,6714,4 +12812,425,3314,1 +12813,425,7986,2 +12814,425,5651,2 +12815,425,3461,4 +12816,425,9401,1 +12817,425,7623,3 +12818,425,8912,4 +12819,425,2095,5 +12820,425,479,3 +12821,425,8185,2 +12822,425,561,3 +12823,425,9671,3 +12824,425,8076,1 +12825,425,3727,1 +12826,425,7651,2 +12827,425,2117,3 +12828,425,8951,5 +12829,425,797,3 +12830,425,9890,2 +12831,425,5081,3 +12832,425,4873,1 +12833,425,8555,2 +12834,425,5442,5 +12835,425,2478,2 +12836,425,6201,1 +12837,425,5057,5 +12838,425,5524,4 +12839,425,8364,3 +12840,425,1328,4 +12841,425,6120,1 +12842,425,2156,5 +12843,425,3150,5 +12844,425,3413,2 +12845,425,1453,2 +12846,425,2724,4 +12847,425,772,4 +12848,425,7309,2 +12849,425,5804,3 +12850,425,4447,5 +12851,425,9073,4 +12852,425,7731,3 +12853,425,8484,2 +12854,426,1254,1 +12855,426,5107,5 +12856,426,7629,2 +12857,426,7070,4 +12858,426,2188,1 +12859,426,4280,5 +12860,426,1908,4 +12861,426,9160,3 +12862,426,8663,3 +12863,426,2667,2 +12864,426,6133,2 +12865,426,7498,5 +12866,426,5532,4 +12867,426,7121,2 +12868,426,6451,2 +12869,426,8362,3 +12870,426,4457,5 +12871,426,9980,5 +12872,426,6977,4 +12873,426,8832,4 +12874,426,7851,1 +12875,426,5373,4 +12876,426,2015,3 +12877,426,1625,5 +12878,426,5185,4 +12879,426,2649,3 +12880,427,3525,5 +12881,427,1441,2 +12882,427,2089,3 +12883,427,4828,4 +12884,427,3745,1 +12885,427,1860,3 +12886,427,6981,1 +12887,427,3557,4 +12888,427,4155,3 +12889,427,7484,2 +12890,427,3321,2 +12891,427,5885,1 +12892,427,9889,3 +12893,427,9560,2 +12894,427,2067,4 +12895,427,3225,4 +12896,427,4013,2 +12897,427,9794,2 +12898,427,9785,2 +12899,427,5665,5 +12900,427,4325,2 +12901,427,777,4 +12902,427,630,4 +12903,427,1823,4 +12904,427,5221,5 +12905,427,783,2 +12906,427,2419,2 +12907,427,452,4 +12908,427,2401,5 +12909,427,8632,4 +12910,427,5362,1 +12911,427,2587,4 +12912,427,5270,5 +12913,427,9689,3 +12914,427,6934,5 +12915,427,5725,2 +12916,427,8847,3 +12917,427,2211,5 +12918,427,4321,1 +12919,427,2310,2 +12920,427,5128,4 +12921,427,3111,5 +12922,427,5871,4 +12923,427,9427,4 +12924,427,5118,2 +12925,427,2404,1 +12926,427,2746,1 +12927,427,2151,4 +12928,427,6520,5 +12929,427,2636,5 +12930,428,1036,5 +12931,428,8658,1 +12932,428,5105,1 +12933,428,9424,2 +12934,428,8963,5 +12935,428,8493,2 +12936,428,9219,1 +12937,428,4950,3 +12938,428,8445,5 +12939,428,5739,3 +12940,428,6358,4 +12941,428,637,5 +12942,429,8372,3 +12943,429,5925,1 +12944,429,3525,1 +12945,429,6708,4 +12946,429,1667,3 +12947,429,5152,4 +12948,429,329,1 +12949,429,3811,2 +12950,429,6435,3 +12951,429,4674,3 +12952,429,3505,1 +12953,429,8351,4 +12954,429,5195,4 +12955,429,1852,4 +12956,429,4214,1 +12957,429,4951,2 +12958,429,7990,4 +12959,429,4584,5 +12960,429,7414,2 +12961,429,2117,3 +12962,429,3950,5 +12963,429,5688,4 +12964,429,6115,2 +12965,429,312,3 +12966,429,1322,2 +12967,429,973,5 +12968,429,570,1 +12969,429,5214,3 +12970,429,5992,3 +12971,429,7925,1 +12972,429,3577,2 +12973,429,6401,2 +12974,429,2760,5 +12975,429,9106,2 +12976,430,1399,4 +12977,430,631,1 +12978,430,4373,4 +12979,430,2514,2 +12980,430,8341,2 +12981,430,6523,4 +12982,430,224,5 +12983,430,1987,1 +12984,430,7106,4 +12985,430,7862,2 +12986,430,2559,1 +12987,430,5212,1 +12988,430,7675,1 +12989,430,8709,2 +12990,430,9529,4 +12991,431,2956,1 +12992,431,2729,1 +12993,431,9880,2 +12994,431,8976,2 +12995,431,6585,1 +12996,431,8180,4 +12997,431,7037,1 +12998,431,6200,4 +12999,431,7546,5 +13000,431,5869,1 +13001,431,3191,5 +13002,431,4860,5 +13003,431,2732,3 +13004,431,7491,1 +13005,432,4055,2 +13006,432,2858,3 +13007,432,6300,4 +13008,432,3248,4 +13009,432,2322,1 +13010,432,4747,1 +13011,432,9408,4 +13012,432,9373,5 +13013,432,526,4 +13014,432,8485,1 +13015,432,1873,2 +13016,432,3307,5 +13017,432,4331,4 +13018,432,1916,1 +13019,432,9065,2 +13020,432,8986,2 +13021,432,4823,2 +13022,432,3550,2 +13023,433,9494,3 +13024,433,2548,2 +13025,433,6198,1 +13026,433,9323,2 +13027,433,6599,5 +13028,433,7384,3 +13029,433,3182,5 +13030,433,5117,1 +13031,433,7107,1 +13032,433,6386,1 +13033,433,3579,1 +13034,433,3309,3 +13035,433,8308,1 +13036,433,5621,1 +13037,433,5522,2 +13038,433,6296,5 +13039,433,3235,1 +13040,433,1455,5 +13041,433,3446,1 +13042,433,6235,1 +13043,433,7353,1 +13044,433,6493,1 +13045,434,7723,4 +13046,434,8299,4 +13047,434,4394,3 +13048,434,2005,3 +13049,434,8918,1 +13050,434,1168,2 +13051,434,2562,3 +13052,434,7021,3 +13053,434,495,3 +13054,434,4369,2 +13055,434,3571,4 +13056,434,1312,2 +13057,434,7667,3 +13058,434,8353,4 +13059,434,9974,5 +13060,434,369,2 +13061,434,7568,2 +13062,434,2367,2 +13063,434,2167,1 +13064,434,5414,2 +13065,434,902,3 +13066,434,1897,2 +13067,434,1466,1 +13068,434,2944,2 +13069,434,2417,1 +13070,434,6596,4 +13071,434,9419,4 +13072,434,1118,5 +13073,434,9527,5 +13074,434,212,2 +13075,434,3465,1 +13076,434,3906,5 +13077,434,3616,5 +13078,434,8527,2 +13079,434,8717,5 +13080,434,2812,4 +13081,434,8880,1 +13082,434,5649,1 +13083,434,5995,4 +13084,434,6858,1 +13085,434,6992,1 +13086,434,5176,4 +13087,434,5294,4 +13088,434,5168,4 +13089,434,6440,3 +13090,434,5722,3 +13091,434,3727,5 +13092,434,5756,1 +13093,435,7161,2 +13094,435,8118,5 +13095,435,8522,1 +13096,435,3165,1 +13097,435,9577,2 +13098,435,9837,3 +13099,435,1894,4 +13100,435,9902,2 +13101,435,8920,5 +13102,435,7015,1 +13103,435,2677,2 +13104,435,9965,4 +13105,435,7033,2 +13106,435,7606,2 +13107,435,5831,3 +13108,435,2382,2 +13109,435,2017,2 +13110,435,6569,3 +13111,435,9066,2 +13112,435,1805,4 +13113,435,4905,4 +13114,435,2113,4 +13115,435,8428,1 +13116,435,7638,4 +13117,435,7788,3 +13118,435,7937,3 +13119,435,9664,1 +13120,435,692,3 +13121,435,1224,2 +13122,436,8083,1 +13123,436,7102,3 +13124,436,3239,3 +13125,436,4495,1 +13126,436,1054,1 +13127,436,2019,4 +13128,436,9148,3 +13129,436,5995,3 +13130,436,3614,1 +13131,436,2305,2 +13132,436,7446,2 +13133,436,7656,5 +13134,436,449,3 +13135,436,7961,1 +13136,436,4476,3 +13137,436,4633,3 +13138,436,1449,4 +13139,436,992,3 +13140,436,8153,4 +13141,436,9296,3 +13142,436,5555,5 +13143,436,4820,4 +13144,436,4817,4 +13145,436,2975,2 +13146,436,4827,1 +13147,436,5136,4 +13148,436,1330,4 +13149,436,8904,5 +13150,436,9251,5 +13151,436,5053,3 +13152,436,1653,2 +13153,436,8245,3 +13154,436,6524,5 +13155,436,8962,4 +13156,436,8253,2 +13157,436,4646,4 +13158,436,1587,3 +13159,436,3019,5 +13160,436,887,1 +13161,436,9808,3 +13162,436,3710,2 +13163,436,8381,3 +13164,436,5108,5 +13165,436,2636,4 +13166,436,8204,4 +13167,436,3362,2 +13168,437,5675,4 +13169,437,6218,5 +13170,437,6849,3 +13171,437,4445,2 +13172,437,5342,2 +13173,437,7443,5 +13174,437,3237,2 +13175,437,7221,4 +13176,437,9554,4 +13177,437,9549,5 +13178,437,6364,3 +13179,437,7540,1 +13180,437,9029,1 +13181,437,3177,4 +13182,437,5722,5 +13183,437,7371,2 +13184,437,3621,5 +13185,437,6745,4 +13186,437,190,3 +13187,437,4054,3 +13188,437,5053,2 +13189,437,1687,2 +13190,437,8250,1 +13191,437,7016,5 +13192,438,3311,2 +13193,438,2546,2 +13194,438,1172,4 +13195,438,5176,4 +13196,438,1079,1 +13197,438,6802,5 +13198,438,9843,3 +13199,438,3322,3 +13200,438,6397,2 +13201,438,1416,2 +13202,438,1120,1 +13203,438,7739,1 +13204,438,335,5 +13205,438,6773,5 +13206,438,9672,5 +13207,438,8547,5 +13208,438,9013,3 +13209,438,5049,1 +13210,438,29,1 +13211,438,4290,1 +13212,438,6514,2 +13213,438,7010,5 +13214,438,5883,1 +13215,438,2182,4 +13216,438,1548,4 +13217,438,6121,3 +13218,438,7957,2 +13219,438,761,1 +13220,438,4570,3 +13221,438,7073,4 +13222,438,8889,5 +13223,438,8219,2 +13224,438,1020,4 +13225,438,3750,3 +13226,438,552,3 +13227,438,4014,4 +13228,438,4206,5 +13229,438,7139,5 +13230,438,3958,2 +13231,438,1339,1 +13232,438,3521,3 +13233,439,592,5 +13234,439,9035,3 +13235,439,8288,1 +13236,439,5463,1 +13237,439,2262,5 +13238,439,4055,1 +13239,439,9790,1 +13240,439,3160,5 +13241,439,3088,3 +13242,439,6107,5 +13243,439,6394,3 +13244,439,9788,2 +13245,439,1458,3 +13246,439,6847,2 +13247,439,9777,1 +13248,439,5580,3 +13249,439,550,1 +13250,439,6188,2 +13251,439,890,1 +13252,439,1128,1 +13253,440,4224,5 +13254,440,3436,3 +13255,440,7869,3 +13256,440,6528,1 +13257,440,9136,4 +13258,440,106,2 +13259,440,234,5 +13260,440,4564,2 +13261,440,7734,4 +13262,440,2741,4 +13263,441,2354,2 +13264,441,8650,2 +13265,441,1777,4 +13266,441,1498,4 +13267,441,4086,4 +13268,441,2669,1 +13269,441,3117,1 +13270,441,7816,1 +13271,441,5596,2 +13272,441,806,4 +13273,441,9750,2 +13274,441,5955,4 +13275,441,607,2 +13276,441,1697,5 +13277,441,4410,2 +13278,441,9140,5 +13279,441,4879,3 +13280,441,6733,5 +13281,441,5713,5 +13282,441,2694,2 +13283,441,7598,2 +13284,441,7667,2 +13285,441,2467,3 +13286,441,4590,4 +13287,441,2124,4 +13288,442,8788,5 +13289,442,8443,4 +13290,442,7244,2 +13291,442,1306,1 +13292,442,6,2 +13293,442,3741,5 +13294,442,3148,4 +13295,442,3774,3 +13296,442,747,2 +13297,442,5468,4 +13298,442,2963,2 +13299,442,6618,4 +13300,442,3084,3 +13301,442,4465,5 +13302,442,4007,4 +13303,442,2119,3 +13304,442,8911,3 +13305,442,3623,1 +13306,442,6737,3 +13307,442,9133,4 +13308,442,4532,2 +13309,442,1366,5 +13310,442,6177,4 +13311,442,1786,5 +13312,442,2057,5 +13313,442,8206,4 +13314,442,870,2 +13315,442,328,5 +13316,442,5701,4 +13317,442,2382,5 +13318,442,7990,5 +13319,442,9213,1 +13320,442,1069,4 +13321,442,4013,2 +13322,442,6367,1 +13323,442,583,2 +13324,443,142,3 +13325,443,2183,4 +13326,443,8521,3 +13327,443,6648,1 +13328,443,8419,1 +13329,443,4085,1 +13330,443,7426,2 +13331,443,2155,5 +13332,443,5549,3 +13333,443,3730,5 +13334,443,5388,2 +13335,443,1734,2 +13336,443,8131,5 +13337,443,8576,3 +13338,443,7198,3 +13339,443,3053,1 +13340,443,9803,5 +13341,443,1934,1 +13342,443,1680,1 +13343,443,7260,4 +13344,443,9880,1 +13345,443,8863,4 +13346,443,5474,5 +13347,443,4378,3 +13348,444,7024,1 +13349,444,5111,3 +13350,444,4611,2 +13351,444,1772,2 +13352,444,1717,5 +13353,444,8370,5 +13354,444,7186,1 +13355,444,6234,5 +13356,444,1842,4 +13357,444,8730,5 +13358,444,7190,4 +13359,444,1885,5 +13360,444,2206,4 +13361,444,8441,4 +13362,444,6059,5 +13363,444,4481,1 +13364,444,5051,3 +13365,444,9342,3 +13366,444,8834,2 +13367,444,9181,2 +13368,444,7004,5 +13369,444,2519,4 +13370,444,9160,3 +13371,444,7527,3 +13372,444,4141,4 +13373,444,2722,3 +13374,444,2209,2 +13375,444,6086,1 +13376,444,7478,2 +13377,444,697,2 +13378,444,4491,3 +13379,444,1992,3 +13380,444,1806,3 +13381,444,492,4 +13382,444,1404,1 +13383,444,2166,1 +13384,444,5910,4 +13385,444,9216,2 +13386,444,5130,1 +13387,444,7687,4 +13388,444,4678,1 +13389,444,7640,3 +13390,444,9749,2 +13391,444,8320,3 +13392,444,9682,1 +13393,444,6464,1 +13394,444,7098,4 +13395,444,8425,2 +13396,444,39,1 +13397,444,1798,5 +13398,445,3251,5 +13399,445,1540,1 +13400,445,1566,5 +13401,445,4247,2 +13402,445,6072,3 +13403,445,6002,5 +13404,445,9994,4 +13405,445,653,2 +13406,445,8258,1 +13407,445,6431,1 +13408,445,5835,5 +13409,445,3198,5 +13410,445,9504,2 +13411,445,3397,1 +13412,445,1630,5 +13413,445,1831,2 +13414,445,4089,5 +13415,445,7211,4 +13416,445,1625,2 +13417,445,1302,3 +13418,445,8929,4 +13419,445,1383,3 +13420,445,777,1 +13421,445,5505,4 +13422,445,6486,1 +13423,445,5813,2 +13424,445,7498,3 +13425,445,2585,2 +13426,445,9741,3 +13427,445,8432,5 +13428,445,5397,1 +13429,445,3278,5 +13430,445,8545,4 +13431,445,3010,5 +13432,446,7354,3 +13433,446,3064,3 +13434,446,8690,1 +13435,446,7821,3 +13436,446,1331,5 +13437,446,8292,1 +13438,446,6556,4 +13439,446,964,1 +13440,446,5027,2 +13441,446,5310,5 +13442,446,8334,3 +13443,446,1342,2 +13444,446,4153,1 +13445,446,8867,5 +13446,446,8361,5 +13447,446,6900,2 +13448,446,8930,5 +13449,446,1605,1 +13450,446,6240,3 +13451,446,1866,4 +13452,446,6466,3 +13453,446,3152,4 +13454,446,8226,5 +13455,446,5889,1 +13456,446,2274,1 +13457,446,8622,3 +13458,446,552,3 +13459,446,4683,1 +13460,447,8053,2 +13461,447,4587,3 +13462,447,8657,3 +13463,447,1314,5 +13464,447,4615,3 +13465,447,8132,5 +13466,447,7110,3 +13467,447,1056,4 +13468,447,6660,2 +13469,447,590,2 +13470,447,483,3 +13471,447,1717,1 +13472,447,3352,4 +13473,447,8547,2 +13474,447,130,1 +13475,447,8564,4 +13476,447,2094,3 +13477,447,6526,5 +13478,447,2239,1 +13479,447,8156,2 +13480,447,7508,4 +13481,447,4117,5 +13482,447,5630,5 +13483,447,6152,3 +13484,447,2803,3 +13485,447,766,1 +13486,447,4377,4 +13487,447,6770,1 +13488,448,5668,4 +13489,448,14,4 +13490,448,4780,3 +13491,448,8779,4 +13492,448,4465,5 +13493,448,7423,2 +13494,448,1057,5 +13495,448,8529,1 +13496,448,5651,1 +13497,448,633,2 +13498,448,5192,1 +13499,448,6817,5 +13500,448,6991,2 +13501,448,6482,3 +13502,448,1493,3 +13503,449,1292,5 +13504,449,9675,2 +13505,449,9886,2 +13506,449,5392,2 +13507,449,5677,1 +13508,449,6989,5 +13509,449,1594,2 +13510,449,900,2 +13511,449,7072,2 +13512,449,4094,4 +13513,449,4175,5 +13514,449,3426,2 +13515,449,1128,3 +13516,449,2676,1 +13517,449,3590,3 +13518,450,4796,5 +13519,450,5386,4 +13520,450,9849,4 +13521,450,6191,1 +13522,450,6605,1 +13523,450,8160,4 +13524,450,6268,2 +13525,450,7512,1 +13526,450,2558,5 +13527,450,4621,5 +13528,450,7,2 +13529,450,6431,5 +13530,450,9619,5 +13531,450,60,3 +13532,450,3581,4 +13533,450,2163,3 +13534,450,9080,3 +13535,450,6194,1 +13536,450,5061,3 +13537,450,6145,1 +13538,450,4581,2 +13539,450,7471,3 +13540,450,4747,3 +13541,450,3818,5 +13542,450,9209,4 +13543,450,8791,2 +13544,450,9476,1 +13545,450,5527,5 +13546,450,8914,2 +13547,450,9294,5 +13548,450,5276,5 +13549,450,9688,2 +13550,450,9336,2 +13551,450,4420,3 +13552,451,3574,3 +13553,451,4942,2 +13554,451,3068,4 +13555,451,2507,4 +13556,451,8737,5 +13557,451,1002,5 +13558,451,4036,1 +13559,451,4148,2 +13560,451,2597,4 +13561,451,5059,3 +13562,451,8495,5 +13563,451,7756,3 +13564,451,7968,1 +13565,451,4376,5 +13566,451,9733,5 +13567,451,9330,5 +13568,451,7070,4 +13569,451,7452,5 +13570,451,9111,1 +13571,451,6308,3 +13572,451,8304,3 +13573,451,2807,3 +13574,451,318,5 +13575,451,847,1 +13576,451,4050,1 +13577,451,1591,2 +13578,451,2320,1 +13579,451,7207,2 +13580,451,9017,1 +13581,451,9908,3 +13582,451,8933,3 +13583,451,8380,1 +13584,451,6344,2 +13585,451,8759,3 +13586,451,8261,3 +13587,451,4076,1 +13588,451,601,1 +13589,451,7669,4 +13590,451,9834,3 +13591,451,1828,3 +13592,451,1667,4 +13593,451,6549,3 +13594,451,4979,5 +13595,451,3685,4 +13596,451,6238,1 +13597,452,2942,1 +13598,452,2642,2 +13599,452,6937,3 +13600,452,1227,2 +13601,452,895,5 +13602,452,4537,1 +13603,452,8242,4 +13604,452,3275,1 +13605,452,4600,1 +13606,452,9729,4 +13607,452,4499,4 +13608,452,6588,2 +13609,452,7488,2 +13610,452,3883,2 +13611,452,9306,1 +13612,452,1036,4 +13613,452,6812,4 +13614,452,4700,3 +13615,452,8897,2 +13616,452,302,2 +13617,452,409,3 +13618,452,460,3 +13619,452,9050,5 +13620,452,6672,4 +13621,452,2283,3 +13622,452,4871,2 +13623,452,9692,5 +13624,452,386,2 +13625,452,2985,4 +13626,452,5684,3 +13627,452,9632,1 +13628,452,755,2 +13629,452,5271,1 +13630,452,567,5 +13631,452,8882,3 +13632,452,1208,1 +13633,452,2933,3 +13634,452,5468,2 +13635,452,7638,3 +13636,453,7193,1 +13637,453,1620,3 +13638,453,2246,5 +13639,453,7843,1 +13640,453,6613,5 +13641,453,340,1 +13642,453,1489,2 +13643,453,5912,3 +13644,453,9696,3 +13645,453,2484,4 +13646,453,7933,1 +13647,453,9714,2 +13648,453,4216,3 +13649,453,7454,5 +13650,453,886,1 +13651,453,4173,4 +13652,453,8964,3 +13653,453,1485,2 +13654,453,9497,2 +13655,453,7508,3 +13656,453,7458,5 +13657,453,9341,4 +13658,453,6848,4 +13659,453,2067,5 +13660,453,1776,4 +13661,453,5599,1 +13662,453,2964,4 +13663,453,9899,1 +13664,453,5076,2 +13665,453,7619,4 +13666,453,51,3 +13667,453,9270,3 +13668,453,6505,4 +13669,453,6953,3 +13670,453,9663,5 +13671,453,2672,1 +13672,453,4879,4 +13673,453,3772,4 +13674,453,3815,1 +13675,453,1246,4 +13676,453,15,2 +13677,453,5544,2 +13678,453,2819,1 +13679,454,6603,5 +13680,454,9599,3 +13681,454,3973,5 +13682,454,9354,3 +13683,454,9486,5 +13684,454,4455,1 +13685,454,4753,3 +13686,454,8724,3 +13687,454,5215,1 +13688,454,1683,2 +13689,454,7216,1 +13690,454,5147,5 +13691,454,2533,1 +13692,454,5760,1 +13693,454,356,1 +13694,454,3619,4 +13695,454,5554,5 +13696,454,9413,2 +13697,454,3955,5 +13698,454,4034,4 +13699,454,4203,4 +13700,454,9149,5 +13701,454,7040,3 +13702,454,3968,5 +13703,454,587,5 +13704,454,707,4 +13705,454,1879,2 +13706,455,7583,5 +13707,455,7532,1 +13708,455,968,2 +13709,455,2258,5 +13710,455,9251,1 +13711,455,440,3 +13712,455,7652,5 +13713,455,4690,1 +13714,455,9248,3 +13715,455,4482,5 +13716,455,8763,2 +13717,456,5614,2 +13718,456,1298,4 +13719,456,9804,4 +13720,456,7901,3 +13721,456,6262,2 +13722,456,7446,1 +13723,456,9187,5 +13724,456,5323,1 +13725,456,2087,2 +13726,456,5745,2 +13727,456,6150,4 +13728,456,8417,1 +13729,456,9856,3 +13730,457,6737,2 +13731,457,5019,5 +13732,457,2625,2 +13733,457,6024,2 +13734,457,8283,3 +13735,457,1876,4 +13736,457,5744,2 +13737,457,3323,2 +13738,457,603,3 +13739,457,3519,2 +13740,457,4859,1 +13741,457,2423,2 +13742,457,1362,1 +13743,457,1851,2 +13744,457,5083,2 +13745,457,9816,1 +13746,457,8680,3 +13747,457,9126,3 +13748,457,7166,1 +13749,457,9980,1 +13750,457,9102,4 +13751,457,8720,5 +13752,457,4330,3 +13753,457,3235,3 +13754,457,5036,5 +13755,457,8726,2 +13756,457,6364,1 +13757,457,1267,4 +13758,457,7630,1 +13759,457,3305,1 +13760,457,7263,2 +13761,457,6199,3 +13762,457,9292,1 +13763,457,6354,4 +13764,457,8411,1 +13765,457,3831,3 +13766,457,5756,1 +13767,457,1844,4 +13768,457,8344,3 +13769,457,119,4 +13770,458,4172,1 +13771,458,8054,3 +13772,458,6987,5 +13773,458,4432,3 +13774,458,8338,5 +13775,458,4437,5 +13776,458,9078,5 +13777,458,3501,2 +13778,458,1272,1 +13779,458,8908,2 +13780,458,2148,3 +13781,458,8848,3 +13782,458,396,3 +13783,458,7587,2 +13784,458,7743,3 +13785,458,6485,1 +13786,459,7478,1 +13787,459,9809,2 +13788,459,1479,2 +13789,459,5366,3 +13790,459,3808,2 +13791,459,7262,2 +13792,459,6160,3 +13793,459,816,5 +13794,459,8946,5 +13795,459,2950,3 +13796,459,5848,2 +13797,459,4216,3 +13798,460,6881,4 +13799,460,2051,3 +13800,460,5909,2 +13801,460,5167,5 +13802,460,6420,5 +13803,460,8331,4 +13804,460,7310,4 +13805,460,3544,3 +13806,460,279,3 +13807,460,5981,1 +13808,460,7019,1 +13809,460,5462,1 +13810,460,9323,5 +13811,460,7024,1 +13812,460,8086,2 +13813,460,3520,4 +13814,460,4041,5 +13815,460,7488,1 +13816,460,1488,3 +13817,460,5271,5 +13818,460,6140,1 +13819,460,9281,2 +13820,460,6159,5 +13821,460,320,4 +13822,460,3446,1 +13823,460,9903,2 +13824,460,3769,5 +13825,460,9147,1 +13826,460,3557,5 +13827,460,4087,2 +13828,460,7041,1 +13829,460,6313,2 +13830,461,4092,3 +13831,461,7609,5 +13832,461,8432,2 +13833,461,4418,2 +13834,461,6630,1 +13835,461,6088,3 +13836,461,8716,1 +13837,461,720,3 +13838,461,5846,2 +13839,461,8083,2 +13840,461,4877,5 +13841,461,837,2 +13842,461,3351,3 +13843,461,2521,2 +13844,461,9679,1 +13845,461,6479,5 +13846,461,1532,4 +13847,461,9506,4 +13848,461,9940,5 +13849,461,9424,1 +13850,461,8702,4 +13851,461,2021,5 +13852,461,3453,3 +13853,461,7946,4 +13854,461,9200,2 +13855,461,497,3 +13856,461,5376,5 +13857,461,899,5 +13858,461,5141,2 +13859,461,3532,2 +13860,461,294,1 +13861,461,3995,5 +13862,461,7972,5 +13863,461,9461,3 +13864,461,34,1 +13865,461,9086,2 +13866,461,3712,3 +13867,461,4782,5 +13868,461,6788,1 +13869,461,9054,2 +13870,461,2218,3 +13871,461,2583,1 +13872,461,9973,2 +13873,461,5648,1 +13874,461,3155,2 +13875,461,4901,1 +13876,462,7844,5 +13877,462,8513,5 +13878,462,2949,1 +13879,462,4547,2 +13880,462,3919,1 +13881,462,1336,4 +13882,462,953,4 +13883,462,5517,3 +13884,462,6790,5 +13885,462,6805,3 +13886,462,200,2 +13887,462,2285,2 +13888,462,7342,5 +13889,462,2359,1 +13890,462,773,5 +13891,462,7506,2 +13892,462,2477,2 +13893,462,1683,5 +13894,462,9329,1 +13895,462,1,2 +13896,462,5754,5 +13897,462,569,3 +13898,462,3117,3 +13899,462,9754,4 +13900,462,6833,5 +13901,463,2057,5 +13902,463,1118,1 +13903,463,1525,2 +13904,463,6188,4 +13905,463,8399,1 +13906,463,6101,2 +13907,463,1249,4 +13908,463,4528,3 +13909,463,6663,4 +13910,463,3502,3 +13911,463,7236,2 +13912,463,9708,3 +13913,463,2202,3 +13914,463,9612,2 +13915,463,9348,3 +13916,463,8428,3 +13917,463,5205,1 +13918,463,5941,2 +13919,463,868,3 +13920,463,3822,1 +13921,463,3542,4 +13922,463,3485,4 +13923,463,5707,5 +13924,463,438,2 +13925,464,4268,1 +13926,464,475,1 +13927,464,413,2 +13928,464,5759,2 +13929,464,392,2 +13930,464,4650,1 +13931,464,1619,5 +13932,464,4918,2 +13933,464,461,3 +13934,464,6736,5 +13935,464,4112,2 +13936,464,3334,4 +13937,465,1048,5 +13938,465,2063,5 +13939,465,4066,1 +13940,465,6322,5 +13941,465,4666,1 +13942,465,6139,5 +13943,465,4914,1 +13944,465,8583,4 +13945,465,1478,1 +13946,465,2658,2 +13947,465,9296,4 +13948,465,1818,5 +13949,465,7780,5 +13950,465,5950,4 +13951,465,6565,3 +13952,465,2626,5 +13953,466,483,2 +13954,466,5132,5 +13955,466,6644,5 +13956,466,1527,5 +13957,466,3120,3 +13958,466,5256,1 +13959,466,5172,3 +13960,466,5621,3 +13961,466,5628,5 +13962,466,6908,3 +13963,467,3651,1 +13964,467,6792,4 +13965,467,5919,1 +13966,467,6018,1 +13967,467,2504,3 +13968,467,2826,1 +13969,467,9017,5 +13970,467,7352,5 +13971,467,1640,5 +13972,467,892,3 +13973,467,8806,3 +13974,467,2030,3 +13975,467,6649,4 +13976,467,9012,2 +13977,467,5078,5 +13978,467,8628,1 +13979,467,1698,4 +13980,467,8891,3 +13981,467,9879,2 +13982,467,9525,5 +13983,467,8000,2 +13984,467,3065,4 +13985,467,5099,2 +13986,467,8878,5 +13987,467,909,2 +13988,467,8250,2 +13989,467,9139,2 +13990,467,8907,1 +13991,467,7181,4 +13992,467,4015,2 +13993,467,8314,1 +13994,467,5074,4 +13995,467,6784,3 +13996,467,7632,4 +13997,467,178,3 +13998,467,6789,1 +13999,468,279,4 +14000,468,9577,3 +14001,468,6475,3 +14002,468,4005,4 +14003,468,1972,1 +14004,468,7888,4 +14005,468,6668,2 +14006,468,4242,4 +14007,468,7177,1 +14008,468,7261,5 +14009,468,6890,1 +14010,468,48,5 +14011,468,788,4 +14012,468,2071,5 +14013,469,1042,2 +14014,469,2758,3 +14015,469,7716,3 +14016,469,1775,3 +14017,469,3453,5 +14018,469,4803,4 +14019,469,9776,2 +14020,469,1933,5 +14021,469,1910,5 +14022,469,3126,1 +14023,469,4501,4 +14024,469,3782,2 +14025,469,1023,2 +14026,469,8423,3 +14027,469,4236,3 +14028,469,548,3 +14029,469,4965,2 +14030,469,3508,1 +14031,469,4540,5 +14032,469,89,2 +14033,469,509,2 +14034,469,4508,3 +14035,469,8185,5 +14036,469,6088,5 +14037,469,2370,5 +14038,469,610,2 +14039,469,4744,4 +14040,469,6818,5 +14041,469,5379,2 +14042,469,5838,5 +14043,469,2778,5 +14044,469,5450,3 +14045,469,9674,1 +14046,469,9501,3 +14047,469,1323,5 +14048,470,5756,1 +14049,470,8027,5 +14050,470,2461,1 +14051,470,7821,1 +14052,470,9879,1 +14053,470,4883,5 +14054,470,4449,1 +14055,470,5610,4 +14056,470,7094,1 +14057,470,2845,5 +14058,470,5779,4 +14059,470,321,4 +14060,470,9918,1 +14061,470,7093,4 +14062,470,1805,1 +14063,470,454,2 +14064,470,7136,1 +14065,470,6790,4 +14066,470,6619,4 +14067,470,4845,4 +14068,470,2837,1 +14069,470,2296,1 +14070,470,641,2 +14071,470,8775,2 +14072,470,8530,5 +14073,470,3087,1 +14074,470,1114,1 +14075,470,7468,3 +14076,470,1468,4 +14077,470,2872,3 +14078,471,3501,5 +14079,471,2557,1 +14080,471,5816,1 +14081,471,5753,2 +14082,471,5696,4 +14083,471,9445,2 +14084,471,8115,1 +14085,471,4868,3 +14086,471,9004,5 +14087,471,7773,2 +14088,471,2214,5 +14089,471,1013,1 +14090,471,321,1 +14091,471,9538,4 +14092,471,4725,5 +14093,471,4927,3 +14094,471,7721,1 +14095,471,1009,3 +14096,471,8633,5 +14097,471,5731,2 +14098,471,6611,2 +14099,471,1698,3 +14100,471,8472,3 +14101,471,5763,3 +14102,471,3014,5 +14103,471,5692,2 +14104,472,1813,1 +14105,472,1322,2 +14106,472,8099,2 +14107,472,6218,3 +14108,472,7445,3 +14109,472,8505,4 +14110,472,949,5 +14111,472,1337,3 +14112,472,7862,4 +14113,472,3104,2 +14114,472,1978,5 +14115,472,5781,4 +14116,472,6994,1 +14117,472,3924,2 +14118,472,9259,2 +14119,472,9002,2 +14120,473,2021,5 +14121,473,8133,4 +14122,473,3154,2 +14123,473,4359,1 +14124,473,6065,4 +14125,473,2631,3 +14126,473,1327,4 +14127,473,5101,5 +14128,473,3500,5 +14129,473,6703,3 +14130,473,6269,2 +14131,473,3221,5 +14132,473,6325,1 +14133,473,7170,3 +14134,473,403,4 +14135,473,9069,2 +14136,473,230,2 +14137,473,6208,5 +14138,473,6751,1 +14139,473,2055,3 +14140,473,5707,2 +14141,473,6985,3 +14142,473,2775,4 +14143,473,5097,1 +14144,473,4143,2 +14145,473,4154,2 +14146,473,8732,3 +14147,473,8716,1 +14148,473,7368,3 +14149,473,3894,3 +14150,473,2361,1 +14151,474,7590,3 +14152,474,6052,1 +14153,474,9823,1 +14154,474,6709,2 +14155,474,1543,4 +14156,474,1284,3 +14157,474,2103,2 +14158,474,898,4 +14159,474,4904,2 +14160,474,2263,2 +14161,474,5042,4 +14162,474,551,2 +14163,474,2350,2 +14164,474,3301,3 +14165,474,4142,5 +14166,474,5700,3 +14167,474,8407,5 +14168,474,7572,4 +14169,474,5290,1 +14170,474,6001,2 +14171,474,1605,3 +14172,474,2395,5 +14173,474,8081,3 +14174,474,52,4 +14175,474,1679,4 +14176,474,6118,1 +14177,474,6911,1 +14178,474,5011,3 +14179,474,3169,1 +14180,474,6182,5 +14181,474,152,2 +14182,474,1307,2 +14183,474,8984,1 +14184,474,1192,4 +14185,474,5173,1 +14186,474,7917,3 +14187,474,8820,4 +14188,474,1875,2 +14189,474,945,4 +14190,474,3418,5 +14191,474,5304,1 +14192,474,1540,3 +14193,474,7940,5 +14194,474,3612,4 +14195,474,9880,3 +14196,474,7763,2 +14197,474,1150,2 +14198,474,4736,5 +14199,474,6329,4 +14200,475,4124,3 +14201,475,2405,4 +14202,475,8242,3 +14203,475,11,1 +14204,475,6467,3 +14205,475,3241,5 +14206,475,4490,2 +14207,475,9531,3 +14208,475,9038,3 +14209,475,3298,1 +14210,475,4427,2 +14211,475,976,3 +14212,475,1474,4 +14213,475,4633,5 +14214,475,8578,2 +14215,475,6405,2 +14216,475,3754,3 +14217,475,3634,4 +14218,475,4239,1 +14219,475,3897,3 +14220,475,9498,5 +14221,475,9457,2 +14222,475,8870,2 +14223,475,8513,5 +14224,475,3063,4 +14225,475,9960,4 +14226,475,6805,4 +14227,475,4185,4 +14228,475,329,3 +14229,475,4817,3 +14230,475,4349,2 +14231,475,6104,3 +14232,476,4277,3 +14233,476,6419,2 +14234,476,9901,4 +14235,476,7880,4 +14236,476,7968,2 +14237,476,9021,4 +14238,476,7,2 +14239,476,1056,5 +14240,476,397,3 +14241,476,8910,4 +14242,476,1460,5 +14243,476,4233,4 +14244,476,534,4 +14245,476,642,5 +14246,476,7178,2 +14247,476,3133,1 +14248,476,9940,2 +14249,476,1376,4 +14250,476,6236,1 +14251,476,2421,4 +14252,476,1244,3 +14253,476,1335,3 +14254,477,1585,3 +14255,477,8187,5 +14256,477,7730,5 +14257,477,9292,3 +14258,477,9949,4 +14259,477,1295,4 +14260,477,4967,2 +14261,477,7459,2 +14262,477,9034,2 +14263,477,242,3 +14264,477,6044,3 +14265,477,8398,1 +14266,477,534,3 +14267,477,1190,4 +14268,477,3590,4 +14269,477,3156,3 +14270,477,4999,5 +14271,477,4106,4 +14272,477,4824,3 +14273,477,28,3 +14274,477,7401,2 +14275,477,3623,1 +14276,478,560,5 +14277,478,1588,2 +14278,478,9423,5 +14279,478,2173,4 +14280,478,8304,4 +14281,478,6459,4 +14282,478,1874,4 +14283,478,5634,2 +14284,478,424,3 +14285,478,7348,4 +14286,478,7715,2 +14287,478,2686,5 +14288,478,6168,2 +14289,478,1111,3 +14290,478,7281,4 +14291,478,9809,1 +14292,478,8943,2 +14293,478,8124,1 +14294,478,2399,3 +14295,478,4095,2 +14296,478,3119,5 +14297,478,1337,1 +14298,478,6335,1 +14299,478,6371,3 +14300,478,7859,1 +14301,478,919,5 +14302,478,9465,1 +14303,478,2900,2 +14304,478,7929,3 +14305,478,1375,1 +14306,478,5194,3 +14307,478,6274,3 +14308,478,3131,5 +14309,478,545,1 +14310,478,2423,4 +14311,478,5301,5 +14312,478,8962,2 +14313,479,4507,4 +14314,479,5668,1 +14315,479,6712,4 +14316,479,1853,2 +14317,479,8395,4 +14318,479,8586,4 +14319,479,7665,2 +14320,479,6651,3 +14321,479,1979,2 +14322,479,2959,5 +14323,479,9765,3 +14324,479,8257,4 +14325,479,7630,3 +14326,479,4700,5 +14327,479,2111,4 +14328,479,8854,4 +14329,479,838,2 +14330,479,3785,2 +14331,479,6755,5 +14332,479,8797,3 +14333,479,5013,1 +14334,479,3172,3 +14335,480,7023,1 +14336,480,9538,2 +14337,480,5744,3 +14338,480,6715,3 +14339,480,1929,4 +14340,480,7648,3 +14341,480,2443,4 +14342,480,6955,1 +14343,480,5784,3 +14344,480,9817,3 +14345,480,31,3 +14346,480,2253,2 +14347,480,4592,1 +14348,480,3921,1 +14349,480,2994,2 +14350,480,8451,4 +14351,480,6657,2 +14352,481,5406,1 +14353,481,7993,4 +14354,481,8691,3 +14355,481,747,2 +14356,481,4021,5 +14357,481,5399,3 +14358,481,4654,5 +14359,481,5947,1 +14360,481,6423,2 +14361,481,611,5 +14362,481,9882,5 +14363,481,4476,4 +14364,481,6583,5 +14365,481,6636,5 +14366,481,7154,2 +14367,481,4605,5 +14368,481,9454,1 +14369,481,6513,2 +14370,481,7503,5 +14371,481,3987,3 +14372,481,6765,1 +14373,481,3223,1 +14374,481,706,5 +14375,482,977,3 +14376,482,6408,5 +14377,482,7414,3 +14378,482,6161,5 +14379,482,5512,4 +14380,482,4548,5 +14381,482,7119,2 +14382,482,6160,1 +14383,482,2439,5 +14384,482,4557,3 +14385,482,84,1 +14386,482,9476,4 +14387,482,6649,2 +14388,482,7921,2 +14389,482,9848,5 +14390,482,2845,4 +14391,482,9229,4 +14392,482,5807,1 +14393,482,2789,3 +14394,482,2753,5 +14395,482,862,3 +14396,482,2112,3 +14397,482,9863,3 +14398,482,4465,4 +14399,482,8431,3 +14400,482,4160,4 +14401,482,5343,2 +14402,482,3225,2 +14403,482,7359,4 +14404,482,150,4 +14405,482,8337,5 +14406,482,7743,3 +14407,482,7379,4 +14408,482,1501,4 +14409,482,7736,3 +14410,482,1866,2 +14411,482,149,3 +14412,482,1330,3 +14413,482,6155,4 +14414,482,5588,4 +14415,482,2894,4 +14416,482,642,2 +14417,482,643,2 +14418,482,1180,1 +14419,482,7025,3 +14420,483,9171,2 +14421,483,1265,1 +14422,483,5003,5 +14423,483,7310,4 +14424,483,3657,5 +14425,483,8850,1 +14426,483,5194,1 +14427,483,4672,3 +14428,483,3475,1 +14429,483,6851,4 +14430,483,2837,5 +14431,483,6417,4 +14432,483,9841,2 +14433,483,2758,2 +14434,483,829,5 +14435,483,2288,4 +14436,483,5644,4 +14437,483,1059,1 +14438,483,9270,4 +14439,484,5336,5 +14440,484,3223,2 +14441,484,9533,5 +14442,484,6608,2 +14443,484,7466,1 +14444,484,3324,2 +14445,484,1057,2 +14446,484,3946,3 +14447,484,5664,3 +14448,484,8043,3 +14449,484,2013,2 +14450,484,1611,3 +14451,484,3793,4 +14452,484,5415,1 +14453,484,9553,3 +14454,484,7478,2 +14455,484,8070,4 +14456,484,1455,5 +14457,484,4820,5 +14458,484,479,1 +14459,484,2475,3 +14460,484,5252,5 +14461,484,2077,4 +14462,484,274,2 +14463,484,6548,1 +14464,484,6865,5 +14465,484,6529,2 +14466,484,5350,5 +14467,484,6961,3 +14468,484,6308,5 +14469,485,4974,4 +14470,485,2950,2 +14471,485,8809,1 +14472,485,1659,5 +14473,485,9328,2 +14474,485,3335,1 +14475,485,8348,4 +14476,485,1072,4 +14477,485,7716,4 +14478,485,332,3 +14479,485,5232,1 +14480,485,4790,5 +14481,485,8144,2 +14482,485,128,2 +14483,485,7144,5 +14484,485,1530,2 +14485,485,4583,1 +14486,485,1676,5 +14487,485,7316,1 +14488,485,3676,1 +14489,485,5177,4 +14490,485,4201,2 +14491,485,1917,1 +14492,486,7904,3 +14493,486,5295,2 +14494,486,8857,2 +14495,486,7538,5 +14496,486,8464,2 +14497,486,9097,3 +14498,486,172,2 +14499,486,4335,2 +14500,486,2933,3 +14501,486,4785,2 +14502,486,5256,1 +14503,486,4302,2 +14504,486,7758,4 +14505,486,7061,2 +14506,486,4088,1 +14507,486,4246,1 +14508,486,445,3 +14509,486,9611,2 +14510,486,7731,3 +14511,486,2894,1 +14512,486,5964,4 +14513,486,6311,1 +14514,486,8197,2 +14515,486,6854,3 +14516,486,5961,5 +14517,486,3367,4 +14518,486,106,2 +14519,486,3948,2 +14520,486,2765,5 +14521,486,6618,4 +14522,486,9079,2 +14523,486,9034,3 +14524,486,7111,4 +14525,486,5989,5 +14526,486,2457,4 +14527,487,7234,5 +14528,487,6223,4 +14529,487,9844,5 +14530,487,5987,5 +14531,487,8172,4 +14532,487,7154,4 +14533,487,2981,4 +14534,487,1258,3 +14535,487,3755,3 +14536,487,4069,4 +14537,487,4825,1 +14538,487,7795,4 +14539,487,2108,4 +14540,487,1082,5 +14541,487,3720,3 +14542,487,8001,5 +14543,487,9793,5 +14544,487,7169,5 +14545,487,8394,3 +14546,487,5334,4 +14547,487,527,5 +14548,487,7777,1 +14549,487,7834,3 +14550,487,9590,5 +14551,487,239,4 +14552,487,6784,2 +14553,487,7125,4 +14554,487,2547,3 +14555,488,8559,2 +14556,488,1238,2 +14557,488,7832,5 +14558,488,2719,4 +14559,488,4570,5 +14560,488,4117,5 +14561,488,4809,5 +14562,488,4348,2 +14563,488,964,5 +14564,488,9587,3 +14565,488,7827,4 +14566,488,407,3 +14567,488,5852,5 +14568,488,8591,4 +14569,489,5975,3 +14570,489,3920,1 +14571,489,7194,3 +14572,489,9108,3 +14573,489,9942,3 +14574,489,5335,5 +14575,489,1619,1 +14576,489,3805,2 +14577,489,3197,3 +14578,489,914,3 +14579,489,5032,5 +14580,489,2693,5 +14581,489,4739,4 +14582,489,2527,1 +14583,489,3475,3 +14584,489,6470,4 +14585,490,1795,2 +14586,490,8318,5 +14587,490,4207,3 +14588,490,2713,3 +14589,490,7950,4 +14590,490,9637,1 +14591,490,7780,2 +14592,490,2829,4 +14593,490,4794,2 +14594,490,4904,1 +14595,490,4952,5 +14596,490,4543,3 +14597,490,2574,3 +14598,490,7099,5 +14599,490,1153,3 +14600,490,5503,2 +14601,490,6298,1 +14602,490,3763,3 +14603,491,5463,2 +14604,491,176,1 +14605,491,8434,3 +14606,491,7044,4 +14607,491,4611,4 +14608,491,1546,2 +14609,491,7551,1 +14610,491,611,5 +14611,491,6871,2 +14612,491,2586,3 +14613,491,9415,4 +14614,491,3611,4 +14615,492,4592,1 +14616,492,4927,1 +14617,492,9442,5 +14618,492,1909,4 +14619,492,2656,4 +14620,492,8535,4 +14621,492,1907,4 +14622,492,5120,2 +14623,492,3328,1 +14624,492,511,4 +14625,492,1446,4 +14626,492,105,2 +14627,492,8497,1 +14628,492,7559,3 +14629,492,4730,2 +14630,492,6154,1 +14631,492,8225,2 +14632,492,1617,4 +14633,492,1001,3 +14634,492,5307,5 +14635,492,1207,4 +14636,492,1045,4 +14637,492,2161,1 +14638,492,6668,4 +14639,492,6161,1 +14640,492,1728,5 +14641,492,5422,5 +14642,492,3944,4 +14643,492,4979,4 +14644,492,3702,1 +14645,492,290,1 +14646,492,1704,5 +14647,492,5093,2 +14648,492,8169,1 +14649,492,993,5 +14650,493,2127,3 +14651,493,828,4 +14652,493,158,3 +14653,493,5980,2 +14654,493,972,3 +14655,493,5794,2 +14656,493,328,3 +14657,493,2225,1 +14658,493,5374,5 +14659,493,8389,2 +14660,493,5670,2 +14661,493,8199,4 +14662,493,2479,1 +14663,493,6255,5 +14664,493,7998,1 +14665,493,7240,4 +14666,493,140,1 +14667,493,3548,5 +14668,493,4300,2 +14669,493,7738,4 +14670,493,868,1 +14671,493,5540,5 +14672,493,4930,2 +14673,493,8301,4 +14674,493,4155,5 +14675,493,5440,3 +14676,493,6153,5 +14677,493,1918,1 +14678,493,9367,1 +14679,493,1552,1 +14680,493,9048,4 +14681,493,3921,5 +14682,494,5061,2 +14683,494,2064,4 +14684,494,1226,3 +14685,494,6778,3 +14686,494,3150,2 +14687,494,1618,3 +14688,494,4445,1 +14689,494,3637,5 +14690,494,6253,5 +14691,494,8264,2 +14692,494,920,3 +14693,494,4802,4 +14694,494,5435,3 +14695,494,8412,3 +14696,494,9831,4 +14697,494,4862,3 +14698,494,4989,3 +14699,494,5096,2 +14700,494,2577,2 +14701,494,2736,5 +14702,494,9914,2 +14703,494,5911,2 +14704,494,7623,1 +14705,494,462,4 +14706,494,8082,2 +14707,494,5318,3 +14708,494,4327,4 +14709,494,9724,3 +14710,494,2747,4 +14711,494,8052,4 +14712,494,3348,2 +14713,494,2644,1 +14714,494,1214,3 +14715,494,7667,5 +14716,494,4339,2 +14717,494,9127,2 +14718,494,9207,4 +14719,494,4458,4 +14720,494,4947,4 +14721,494,2395,2 +14722,494,8232,5 +14723,494,9065,4 +14724,494,9693,5 +14725,495,8001,4 +14726,495,2025,4 +14727,495,3530,3 +14728,495,4743,5 +14729,495,8949,3 +14730,495,3647,2 +14731,495,2910,5 +14732,495,4479,3 +14733,495,6722,5 +14734,495,7668,5 +14735,495,3996,4 +14736,495,3093,3 +14737,495,6396,1 +14738,495,5643,5 +14739,495,1554,3 +14740,495,697,1 +14741,495,2290,3 +14742,495,4007,3 +14743,495,8991,3 +14744,495,6595,3 +14745,495,1791,2 +14746,495,1665,5 +14747,495,9275,5 +14748,495,7479,1 +14749,495,6178,4 +14750,495,9454,2 +14751,495,8514,5 +14752,495,9271,2 +14753,495,4725,1 +14754,495,5818,2 +14755,495,2851,2 +14756,495,2042,5 +14757,495,234,5 +14758,495,3331,2 +14759,495,1590,4 +14760,495,564,3 +14761,495,389,3 +14762,495,6075,1 +14763,495,3029,5 +14764,495,6291,3 +14765,495,5132,5 +14766,495,979,1 +14767,495,7232,1 +14768,495,5030,2 +14769,496,3419,3 +14770,496,9346,3 +14771,496,1579,4 +14772,496,214,2 +14773,496,3456,3 +14774,496,3375,4 +14775,496,9814,5 +14776,496,3009,4 +14777,496,1759,2 +14778,496,5514,5 +14779,496,2157,4 +14780,496,8350,4 +14781,496,9830,5 +14782,496,7428,3 +14783,496,4287,4 +14784,496,1315,1 +14785,496,7423,2 +14786,496,8871,2 +14787,496,714,4 +14788,496,3486,2 +14789,496,455,4 +14790,496,4200,3 +14791,496,7093,1 +14792,496,6868,2 +14793,496,6700,5 +14794,496,295,1 +14795,496,8226,1 +14796,496,3619,1 +14797,496,3443,5 +14798,496,297,1 +14799,496,7651,5 +14800,496,5681,4 +14801,496,9933,1 +14802,496,6631,2 +14803,496,5983,1 +14804,496,690,2 +14805,496,6537,5 +14806,497,6181,3 +14807,497,7385,4 +14808,497,2184,5 +14809,497,6280,3 +14810,497,416,3 +14811,497,8397,5 +14812,497,9968,4 +14813,497,9408,4 +14814,497,5542,3 +14815,497,1618,4 +14816,497,3604,1 +14817,497,5923,3 +14818,497,3747,5 +14819,497,5385,2 +14820,497,7517,4 +14821,497,2006,3 +14822,497,5050,5 +14823,497,6525,4 +14824,497,7894,3 +14825,497,699,1 +14826,497,6123,4 +14827,497,418,5 +14828,497,4734,5 +14829,497,8785,4 +14830,497,5822,1 +14831,497,3111,2 +14832,497,2143,5 +14833,497,5910,2 +14834,497,6233,3 +14835,497,1024,3 +14836,497,2952,1 +14837,497,5166,2 +14838,497,5214,4 +14839,497,89,4 +14840,497,1642,1 +14841,497,1696,4 +14842,497,8556,1 +14843,497,4629,5 +14844,498,9901,1 +14845,498,5046,5 +14846,498,3453,2 +14847,498,9439,5 +14848,498,2904,3 +14849,498,8957,4 +14850,498,9681,4 +14851,498,880,4 +14852,498,1067,4 +14853,498,4913,2 +14854,498,2,4 +14855,498,9069,2 +14856,498,5519,1 +14857,498,3442,2 +14858,498,1991,5 +14859,498,1396,2 +14860,498,6822,2 +14861,498,8224,3 +14862,498,5877,1 +14863,498,7389,1 +14864,498,6593,5 +14865,498,1301,3 +14866,498,4556,1 +14867,498,8890,3 +14868,498,4763,1 +14869,498,797,1 +14870,498,6979,3 +14871,498,9291,5 +14872,498,6336,3 +14873,498,1535,1 +14874,498,2288,2 +14875,498,8336,1 +14876,498,5210,4 +14877,498,3743,1 +14878,499,4849,2 +14879,499,1617,2 +14880,499,1197,3 +14881,499,7318,1 +14882,499,2935,3 +14883,499,7436,4 +14884,499,6309,5 +14885,499,9923,1 +14886,499,4072,5 +14887,499,4213,1 +14888,500,2429,3 +14889,500,4874,1 +14890,500,1327,5 +14891,500,1632,1 +14892,500,5795,5 +14893,500,3936,3 +14894,500,6732,1 +14895,500,2376,2 +14896,500,6385,2 +14897,500,5839,1 +14898,500,8842,1 +14899,500,9217,1 +14900,500,380,2 +14901,500,6190,5 +14902,500,3615,4 +14903,500,358,5 +14904,500,5037,4 +14905,500,1331,3 +14906,500,1259,2 +14907,500,487,4 +14908,500,1302,5 +14909,500,3472,3 +14910,500,1255,2 +14911,500,2773,3 +14912,500,888,4 +14913,500,7304,4 +14914,500,3740,3 +14915,500,96,5 +14916,500,4447,1 +14917,500,8749,1 +14918,500,2833,2 +14919,500,1613,1 +14920,500,3661,2 +14921,500,6345,2 +14922,500,6838,2 +14923,500,589,4 +14924,500,955,5 +14925,500,7986,5 +14926,500,8024,3 +14927,500,3422,2 +14928,500,5756,2 +14929,500,2254,2 +14930,500,764,5 +14931,500,4011,2 +14932,500,9726,2 +14933,500,691,2 +14934,501,1786,5 +14935,501,513,5 +14936,501,887,3 +14937,501,200,5 +14938,501,2110,3 +14939,501,2621,2 +14940,501,9850,5 +14941,501,6104,2 +14942,501,4539,4 +14943,501,5909,1 +14944,501,4661,2 +14945,501,7409,3 +14946,501,8044,2 +14947,501,9931,5 +14948,501,3635,5 +14949,501,8104,1 +14950,501,9419,1 +14951,501,1982,1 +14952,501,9583,1 +14953,501,9228,3 +14954,501,8615,1 +14955,501,3703,4 +14956,501,6568,2 +14957,501,4171,1 +14958,501,5726,3 +14959,501,5157,4 +14960,501,9893,3 +14961,501,834,1 +14962,501,7246,5 +14963,501,7651,4 +14964,501,2996,1 +14965,501,1443,5 +14966,501,9051,3 +14967,501,8261,4 +14968,501,7813,3 +14969,501,1977,3 +14970,501,4008,1 +14971,501,5694,4 +14972,501,595,2 +14973,501,619,3 +14974,501,761,4 +14975,501,9949,2 +14976,501,821,1 +14977,501,9483,2 +14978,501,6074,4 +14979,501,7233,4 +14980,501,944,4 +14981,501,3373,4 +14982,501,4445,5 +14983,502,8773,1 +14984,502,6822,2 +14985,502,2238,2 +14986,502,7946,5 +14987,502,5287,3 +14988,502,4545,5 +14989,502,9719,2 +14990,502,2931,3 +14991,502,4181,4 +14992,502,8852,3 +14993,502,5196,5 +14994,502,5091,3 +14995,502,2853,4 +14996,502,2777,2 +14997,502,7491,4 +14998,502,1228,4 +14999,502,8393,5 +15000,502,4239,3 +15001,502,5789,4 +15002,502,5170,1 +15003,502,8432,1 +15004,502,5617,1 +15005,502,5119,2 +15006,502,9292,4 +15007,502,6496,2 +15008,502,8116,1 +15009,502,2399,3 +15010,502,6498,1 +15011,503,7031,1 +15012,503,706,3 +15013,503,6990,5 +15014,503,1862,2 +15015,503,8983,2 +15016,503,7352,5 +15017,503,3125,1 +15018,503,7753,5 +15019,503,257,1 +15020,503,5767,2 +15021,503,5584,2 +15022,503,8077,2 +15023,503,7715,3 +15024,503,5233,3 +15025,503,4553,2 +15026,503,3556,1 +15027,503,2999,4 +15028,503,1262,2 +15029,503,4728,1 +15030,503,3152,3 +15031,503,8213,5 +15032,503,9452,5 +15033,503,380,5 +15034,503,6924,3 +15035,503,757,4 +15036,503,4538,1 +15037,503,2602,4 +15038,503,66,5 +15039,503,908,5 +15040,503,9000,2 +15041,503,8471,2 +15042,503,4993,4 +15043,503,608,4 +15044,503,9762,4 +15045,503,1045,1 +15046,503,6675,3 +15047,504,1406,3 +15048,504,5665,1 +15049,504,1627,2 +15050,504,3452,1 +15051,504,9425,2 +15052,504,3998,5 +15053,504,6345,5 +15054,504,9659,3 +15055,504,1269,3 +15056,504,6487,4 +15057,504,8997,4 +15058,504,994,5 +15059,504,9495,1 +15060,504,7586,5 +15061,504,7816,3 +15062,504,4516,3 +15063,504,9110,5 +15064,504,8021,4 +15065,504,8817,1 +15066,504,4553,4 +15067,504,7378,4 +15068,504,850,5 +15069,504,6637,2 +15070,504,6348,3 +15071,504,5034,2 +15072,504,9821,2 +15073,504,8176,4 +15074,504,4194,5 +15075,504,1761,3 +15076,505,6857,2 +15077,505,5521,2 +15078,505,9844,3 +15079,505,7061,3 +15080,505,720,1 +15081,505,3502,2 +15082,505,7297,1 +15083,505,4850,1 +15084,505,9810,3 +15085,505,9245,4 +15086,505,3865,5 +15087,505,9873,2 +15088,505,8565,2 +15089,505,4245,4 +15090,505,6394,1 +15091,505,4037,3 +15092,505,515,4 +15093,505,6231,4 +15094,505,7091,5 +15095,505,3504,5 +15096,505,1117,5 +15097,505,2739,4 +15098,505,1579,2 +15099,505,1624,5 +15100,505,891,4 +15101,505,1469,4 +15102,505,3824,3 +15103,505,2197,3 +15104,505,350,5 +15105,505,4977,5 +15106,505,7168,1 +15107,505,5739,4 +15108,505,7429,5 +15109,505,8384,5 +15110,505,8650,1 +15111,505,2544,2 +15112,505,9302,2 +15113,505,2068,5 +15114,505,7083,1 +15115,505,7802,1 +15116,505,9933,2 +15117,505,9821,4 +15118,505,9185,1 +15119,505,4396,1 +15120,506,7023,2 +15121,506,8504,5 +15122,506,985,3 +15123,506,723,4 +15124,506,4643,5 +15125,506,9497,1 +15126,506,7776,3 +15127,506,7569,2 +15128,506,4122,3 +15129,506,3114,1 +15130,506,5516,3 +15131,506,6082,5 +15132,506,3529,3 +15133,506,7004,5 +15134,506,3343,5 +15135,506,44,4 +15136,506,7994,4 +15137,506,4862,1 +15138,506,5414,1 +15139,506,7025,1 +15140,506,5995,4 +15141,506,1887,3 +15142,506,5222,5 +15143,506,7972,1 +15144,507,5886,5 +15145,507,8211,5 +15146,507,5137,2 +15147,507,5341,4 +15148,507,8790,1 +15149,507,2034,1 +15150,507,1019,2 +15151,507,534,4 +15152,507,181,4 +15153,507,6014,2 +15154,507,4267,1 +15155,507,2888,4 +15156,507,8764,1 +15157,507,8051,1 +15158,507,1810,2 +15159,507,3219,2 +15160,507,5198,3 +15161,507,6420,3 +15162,507,6246,4 +15163,507,3171,3 +15164,507,6006,4 +15165,507,844,5 +15166,507,198,3 +15167,507,8163,1 +15168,507,3027,5 +15169,507,1792,3 +15170,507,705,1 +15171,507,8722,5 +15172,507,5632,1 +15173,507,5523,1 +15174,507,2499,4 +15175,507,8340,3 +15176,507,4842,3 +15177,507,6858,1 +15178,507,1762,2 +15179,507,3122,2 +15180,507,9819,4 +15181,507,604,5 +15182,507,1576,5 +15183,507,6565,5 +15184,507,5965,4 +15185,507,1843,4 +15186,507,9534,4 +15187,507,874,1 +15188,507,8623,4 +15189,508,5229,4 +15190,508,4716,5 +15191,508,2502,2 +15192,508,5736,2 +15193,508,7320,5 +15194,508,9197,4 +15195,508,1900,5 +15196,508,1485,1 +15197,508,5380,3 +15198,508,469,1 +15199,508,8893,2 +15200,508,1574,4 +15201,508,6830,4 +15202,508,8899,1 +15203,508,2643,3 +15204,508,492,1 +15205,508,3875,2 +15206,508,3722,1 +15207,508,575,4 +15208,508,8229,2 +15209,508,3635,4 +15210,508,3355,2 +15211,508,1110,1 +15212,508,9384,1 +15213,508,8185,1 +15214,508,8702,1 +15215,508,5432,5 +15216,508,5632,5 +15217,508,6481,5 +15218,508,2247,5 +15219,508,1692,4 +15220,508,5659,2 +15221,508,2662,2 +15222,508,3863,5 +15223,508,8049,5 +15224,508,7557,3 +15225,508,2400,2 +15226,508,3767,3 +15227,508,7436,4 +15228,508,7043,5 +15229,508,7611,3 +15230,508,9054,4 +15231,508,2528,3 +15232,508,5152,3 +15233,508,6440,3 +15234,508,4664,2 +15235,508,905,2 +15236,508,535,3 +15237,508,5598,3 +15238,509,7968,4 +15239,509,3184,2 +15240,509,1913,4 +15241,509,100,2 +15242,509,3537,4 +15243,509,1477,2 +15244,509,9217,3 +15245,509,4105,5 +15246,509,8464,1 +15247,509,4532,4 +15248,509,6857,5 +15249,509,8590,3 +15250,509,8810,5 +15251,509,6272,4 +15252,509,9160,2 +15253,509,7480,5 +15254,509,3391,1 +15255,509,3543,1 +15256,509,2325,5 +15257,509,9504,4 +15258,509,9231,2 +15259,509,4078,2 +15260,509,5715,5 +15261,509,7486,1 +15262,509,1212,2 +15263,509,3440,3 +15264,509,6150,5 +15265,509,5275,3 +15266,509,2919,5 +15267,509,9728,2 +15268,509,9341,4 +15269,509,2802,3 +15270,509,5834,4 +15271,509,9931,3 +15272,509,9604,5 +15273,509,8270,5 +15274,509,6423,4 +15275,509,3165,4 +15276,509,9131,3 +15277,509,5762,1 +15278,509,7780,4 +15279,509,2021,4 +15280,509,1020,4 +15281,510,9894,3 +15282,510,9735,3 +15283,510,5862,5 +15284,510,4050,1 +15285,510,1540,1 +15286,510,8500,4 +15287,510,1786,5 +15288,510,1700,4 +15289,510,7032,3 +15290,510,7986,4 +15291,510,7892,1 +15292,511,4717,2 +15293,511,9992,5 +15294,511,7560,5 +15295,511,2198,3 +15296,511,7317,1 +15297,511,2858,1 +15298,511,6660,4 +15299,511,260,2 +15300,511,9029,2 +15301,511,5994,5 +15302,511,5188,2 +15303,511,4076,4 +15304,511,7294,3 +15305,511,8362,4 +15306,511,5263,4 +15307,511,1071,1 +15308,511,9424,5 +15309,511,6248,2 +15310,511,9860,3 +15311,512,4703,3 +15312,512,8504,2 +15313,512,809,4 +15314,512,8032,5 +15315,512,1092,1 +15316,512,1388,2 +15317,512,511,5 +15318,512,9606,4 +15319,512,140,2 +15320,512,5417,3 +15321,512,346,4 +15322,512,9973,2 +15323,512,9213,4 +15324,512,5599,3 +15325,513,7628,1 +15326,513,5131,2 +15327,513,1935,1 +15328,513,9332,3 +15329,513,9057,5 +15330,513,3859,5 +15331,513,7134,3 +15332,513,3563,3 +15333,513,6615,4 +15334,513,3852,4 +15335,513,9499,5 +15336,513,5347,2 +15337,513,6386,1 +15338,513,2508,5 +15339,513,4713,4 +15340,513,6387,4 +15341,513,9200,1 +15342,513,7198,1 +15343,513,4647,2 +15344,513,2274,4 +15345,513,3091,2 +15346,513,3207,1 +15347,513,9833,3 +15348,513,2897,2 +15349,513,503,3 +15350,513,4616,3 +15351,513,5705,3 +15352,513,4589,5 +15353,513,9246,2 +15354,513,4371,4 +15355,513,4146,4 +15356,513,3904,1 +15357,513,6475,2 +15358,513,9738,5 +15359,513,4502,3 +15360,513,1725,3 +15361,513,8381,2 +15362,513,2459,3 +15363,513,5377,5 +15364,513,314,4 +15365,514,3743,4 +15366,514,920,1 +15367,514,7062,4 +15368,514,4384,5 +15369,514,6474,1 +15370,514,2372,4 +15371,514,9599,4 +15372,514,7226,1 +15373,514,5565,4 +15374,514,5430,3 +15375,514,1006,1 +15376,514,6835,5 +15377,514,3845,5 +15378,514,6690,5 +15379,514,1769,5 +15380,514,209,4 +15381,514,5893,5 +15382,514,1198,1 +15383,514,1109,3 +15384,514,7462,2 +15385,514,2192,2 +15386,514,6783,3 +15387,514,5968,3 +15388,514,8375,3 +15389,514,2428,2 +15390,514,7540,2 +15391,514,2667,5 +15392,514,4544,3 +15393,514,3148,4 +15394,514,1532,4 +15395,514,6032,4 +15396,514,2466,4 +15397,514,43,5 +15398,514,2760,3 +15399,514,9122,3 +15400,514,6372,2 +15401,514,7091,1 +15402,514,1190,3 +15403,514,130,1 +15404,514,2816,5 +15405,514,4649,1 +15406,514,3201,4 +15407,514,8555,2 +15408,515,3996,2 +15409,515,7243,1 +15410,515,5735,4 +15411,515,4261,4 +15412,515,8260,3 +15413,515,2054,2 +15414,515,6081,2 +15415,515,9604,4 +15416,515,4083,4 +15417,515,615,1 +15418,515,8098,1 +15419,515,7080,3 +15420,515,4013,4 +15421,515,1159,1 +15422,515,8629,4 +15423,516,8307,2 +15424,516,9420,2 +15425,516,4856,2 +15426,516,202,3 +15427,516,299,3 +15428,516,5844,1 +15429,516,4810,1 +15430,516,8547,4 +15431,516,4477,5 +15432,516,9010,3 +15433,516,6702,4 +15434,516,7411,2 +15435,516,4223,1 +15436,516,6867,5 +15437,516,6024,2 +15438,516,5143,5 +15439,516,2269,3 +15440,516,4832,5 +15441,516,8942,4 +15442,516,3867,2 +15443,516,3330,2 +15444,516,3146,5 +15445,516,9421,3 +15446,516,2277,3 +15447,516,2653,5 +15448,516,4001,5 +15449,516,9841,2 +15450,516,6146,2 +15451,516,792,1 +15452,516,2487,2 +15453,516,8764,4 +15454,516,2904,4 +15455,516,8977,3 +15456,516,1487,3 +15457,516,6715,2 +15458,516,6300,3 +15459,516,4441,5 +15460,516,621,4 +15461,517,1255,5 +15462,517,2686,4 +15463,517,3409,2 +15464,517,8242,5 +15465,517,270,1 +15466,517,5812,3 +15467,517,9809,4 +15468,517,6798,3 +15469,517,9041,3 +15470,517,5072,4 +15471,517,3498,2 +15472,517,2471,5 +15473,517,8230,2 +15474,517,3636,4 +15475,517,2091,3 +15476,517,3663,3 +15477,517,9537,3 +15478,517,3912,5 +15479,517,1815,2 +15480,517,6115,4 +15481,517,4772,2 +15482,517,2670,5 +15483,517,4317,4 +15484,517,403,3 +15485,517,5040,4 +15486,518,7020,1 +15487,518,6951,1 +15488,518,7330,1 +15489,518,2621,3 +15490,518,5422,3 +15491,518,3920,1 +15492,518,2196,5 +15493,518,3348,2 +15494,518,7362,5 +15495,518,9370,5 +15496,518,908,4 +15497,518,3256,1 +15498,518,630,4 +15499,518,7448,4 +15500,518,8962,4 +15501,518,8113,5 +15502,518,6626,5 +15503,518,9957,1 +15504,518,4291,4 +15505,518,6768,5 +15506,518,7947,1 +15507,519,7700,4 +15508,519,3911,2 +15509,519,6398,2 +15510,519,4249,1 +15511,519,6990,3 +15512,519,4506,1 +15513,519,6859,5 +15514,519,9287,4 +15515,519,2028,2 +15516,519,912,3 +15517,519,692,3 +15518,519,2058,5 +15519,519,88,5 +15520,519,3883,3 +15521,519,140,5 +15522,519,8381,3 +15523,519,616,3 +15524,519,549,3 +15525,519,2172,3 +15526,519,726,5 +15527,519,44,2 +15528,520,4589,4 +15529,520,6789,4 +15530,520,4768,4 +15531,520,2986,1 +15532,520,9290,5 +15533,520,1317,4 +15534,520,4182,4 +15535,520,6592,5 +15536,520,3175,5 +15537,520,2227,2 +15538,520,4019,5 +15539,520,7926,5 +15540,520,8511,2 +15541,520,7739,1 +15542,520,6184,1 +15543,520,8025,4 +15544,520,1419,5 +15545,520,7586,3 +15546,520,5123,4 +15547,520,8059,1 +15548,520,2825,1 +15549,520,4225,4 +15550,520,3720,4 +15551,520,1813,2 +15552,520,7114,5 +15553,520,8083,5 +15554,521,4034,1 +15555,521,3788,4 +15556,521,9180,5 +15557,521,3768,5 +15558,521,8521,2 +15559,521,8822,4 +15560,521,642,2 +15561,521,1592,1 +15562,521,3355,4 +15563,521,8914,2 +15564,521,8295,4 +15565,521,4862,4 +15566,521,5661,4 +15567,521,2402,3 +15568,521,3655,4 +15569,521,8861,3 +15570,521,5809,5 +15571,521,7323,5 +15572,521,1148,4 +15573,521,310,3 +15574,521,3642,3 +15575,521,7850,3 +15576,521,2554,2 +15577,521,9890,2 +15578,521,916,3 +15579,521,8490,1 +15580,521,6851,3 +15581,521,8759,4 +15582,521,2738,5 +15583,521,655,5 +15584,521,6703,2 +15585,521,1051,4 +15586,521,6878,4 +15587,521,2005,2 +15588,521,8551,4 +15589,521,8321,5 +15590,521,9063,4 +15591,521,9950,3 +15592,521,175,3 +15593,521,9741,1 +15594,521,3892,5 +15595,521,3280,4 +15596,521,6109,3 +15597,521,9795,3 +15598,522,8756,3 +15599,522,713,4 +15600,522,377,5 +15601,522,7800,4 +15602,522,9307,5 +15603,522,82,2 +15604,522,2428,2 +15605,522,3233,4 +15606,522,9306,4 +15607,522,1141,4 +15608,522,3477,2 +15609,522,8438,2 +15610,522,7765,1 +15611,522,1418,1 +15612,522,8818,2 +15613,522,5219,5 +15614,522,9556,3 +15615,522,1749,4 +15616,522,7893,2 +15617,522,52,4 +15618,522,1874,5 +15619,522,8538,2 +15620,522,5431,1 +15621,522,2558,3 +15622,522,7538,1 +15623,522,6233,4 +15624,522,3055,2 +15625,522,4941,3 +15626,522,6477,4 +15627,522,3583,1 +15628,522,815,4 +15629,522,8824,2 +15630,522,7580,1 +15631,522,6417,3 +15632,522,7319,5 +15633,522,7567,3 +15634,522,3591,1 +15635,522,9057,1 +15636,522,8130,4 +15637,522,8639,1 +15638,522,2612,4 +15639,522,5053,2 +15640,523,9053,3 +15641,523,8959,5 +15642,523,2694,3 +15643,523,1525,4 +15644,523,9061,3 +15645,523,3058,1 +15646,523,609,3 +15647,523,4723,2 +15648,523,8977,1 +15649,523,8010,4 +15650,523,4276,5 +15651,523,1977,4 +15652,523,7041,1 +15653,523,7692,1 +15654,523,7532,5 +15655,523,3466,1 +15656,523,352,2 +15657,523,7166,3 +15658,523,318,4 +15659,523,7842,3 +15660,523,846,1 +15661,523,4235,4 +15662,523,945,5 +15663,523,4343,2 +15664,523,8826,2 +15665,523,7355,4 +15666,523,3564,5 +15667,523,3969,5 +15668,523,4433,1 +15669,523,8853,1 +15670,523,5381,1 +15671,523,6154,5 +15672,523,3492,4 +15673,523,5829,2 +15674,523,7504,2 +15675,523,9440,1 +15676,523,2269,4 +15677,523,8526,5 +15678,523,2875,5 +15679,523,9357,5 +15680,523,2279,2 +15681,523,3622,3 +15682,523,9414,3 +15683,523,7885,2 +15684,523,3643,2 +15685,523,2344,1 +15686,524,3746,5 +15687,524,3084,4 +15688,524,601,1 +15689,524,3077,4 +15690,524,6789,2 +15691,524,4680,5 +15692,524,6228,3 +15693,524,4020,5 +15694,524,2474,4 +15695,524,428,5 +15696,524,8584,3 +15697,524,8035,1 +15698,524,8480,3 +15699,524,1232,5 +15700,524,2333,1 +15701,524,9053,2 +15702,524,5776,5 +15703,524,4660,2 +15704,524,1713,4 +15705,524,9545,3 +15706,524,1623,5 +15707,524,4784,1 +15708,524,2060,4 +15709,524,6242,4 +15710,524,9057,1 +15711,524,6746,4 +15712,524,2090,4 +15713,524,1947,5 +15714,524,5639,3 +15715,524,7756,5 +15716,524,7499,5 +15717,524,7333,4 +15718,524,5530,4 +15719,524,8897,2 +15720,524,2540,5 +15721,524,1080,1 +15722,524,9256,4 +15723,524,650,4 +15724,524,5968,5 +15725,524,7804,2 +15726,524,9605,2 +15727,524,274,2 +15728,524,793,5 +15729,524,4624,3 +15730,524,3739,1 +15731,524,5983,1 +15732,524,5492,3 +15733,525,5724,4 +15734,525,6205,2 +15735,525,60,4 +15736,525,9964,5 +15737,525,187,5 +15738,525,7419,3 +15739,525,8326,3 +15740,525,6991,4 +15741,525,1664,2 +15742,525,7361,4 +15743,525,8074,2 +15744,525,3704,3 +15745,525,1897,2 +15746,525,6070,5 +15747,525,6692,4 +15748,525,8027,1 +15749,525,9159,2 +15750,525,3179,3 +15751,525,7099,2 +15752,525,8295,5 +15753,525,5720,3 +15754,525,6964,4 +15755,525,9184,4 +15756,525,8582,1 +15757,525,9615,5 +15758,525,9291,2 +15759,525,9910,1 +15760,525,2984,5 +15761,525,965,4 +15762,525,9696,3 +15763,525,1564,5 +15764,525,9129,1 +15765,525,4425,5 +15766,525,6996,3 +15767,525,6315,5 +15768,525,8449,1 +15769,525,2237,1 +15770,525,4470,1 +15771,525,2904,2 +15772,525,8805,5 +15773,525,8809,4 +15774,526,6793,4 +15775,526,4546,1 +15776,526,4635,3 +15777,526,3698,2 +15778,526,8872,3 +15779,526,5555,2 +15780,526,7773,3 +15781,526,2571,5 +15782,526,7735,4 +15783,526,3855,2 +15784,526,1170,2 +15785,526,6602,5 +15786,526,4150,3 +15787,526,2327,3 +15788,526,6114,1 +15789,526,3677,3 +15790,526,9102,4 +15791,526,1773,1 +15792,526,3858,3 +15793,526,1188,1 +15794,526,8501,2 +15795,526,7504,1 +15796,526,7660,1 +15797,526,3259,5 +15798,526,1805,2 +15799,526,3918,4 +15800,526,2295,5 +15801,526,9250,2 +15802,526,3939,3 +15803,526,1002,5 +15804,526,3732,5 +15805,526,7932,5 +15806,526,3495,4 +15807,526,4058,5 +15808,526,5092,1 +15809,526,2728,4 +15810,526,4852,5 +15811,527,1402,5 +15812,527,1091,3 +15813,527,7227,2 +15814,527,6984,2 +15815,527,3865,1 +15816,527,481,5 +15817,527,756,4 +15818,527,4338,3 +15819,527,6464,1 +15820,527,7817,2 +15821,527,5163,5 +15822,527,6417,4 +15823,527,3172,2 +15824,527,8016,5 +15825,527,3563,3 +15826,527,3813,1 +15827,527,9500,3 +15828,527,6943,3 +15829,527,9324,4 +15830,527,8383,2 +15831,527,48,4 +15832,527,6380,5 +15833,527,9941,3 +15834,527,7502,5 +15835,527,8394,3 +15836,527,8722,3 +15837,527,4410,2 +15838,527,1941,5 +15839,527,2797,2 +15840,527,9910,3 +15841,527,2137,3 +15842,527,4275,1 +15843,527,7918,1 +15844,527,5306,4 +15845,528,7070,2 +15846,528,9566,1 +15847,528,7498,3 +15848,528,6915,4 +15849,528,257,2 +15850,528,182,1 +15851,528,3195,1 +15852,528,8742,2 +15853,528,8092,2 +15854,528,2031,4 +15855,529,4287,3 +15856,529,9870,5 +15857,529,5227,4 +15858,529,9356,4 +15859,529,2870,1 +15860,529,4699,2 +15861,529,879,3 +15862,529,6539,1 +15863,529,7387,1 +15864,529,5314,2 +15865,529,2594,2 +15866,529,5970,4 +15867,529,4401,5 +15868,529,7434,3 +15869,529,6484,3 +15870,529,1866,2 +15871,529,7071,2 +15872,529,1993,5 +15873,529,3801,3 +15874,529,1612,1 +15875,529,5851,3 +15876,529,6680,3 +15877,529,4501,3 +15878,529,6503,4 +15879,529,4394,2 +15880,529,2555,4 +15881,529,6079,1 +15882,529,6670,1 +15883,530,163,1 +15884,530,906,3 +15885,530,4486,4 +15886,530,9601,3 +15887,530,491,4 +15888,530,5742,4 +15889,530,8163,3 +15890,530,8565,4 +15891,530,9420,1 +15892,530,9945,3 +15893,530,5321,1 +15894,530,4784,2 +15895,530,6692,2 +15896,530,2995,4 +15897,530,1292,4 +15898,530,7400,3 +15899,530,9294,1 +15900,530,9065,5 +15901,530,1615,1 +15902,530,382,4 +15903,530,4557,5 +15904,530,9071,1 +15905,530,7621,4 +15906,530,6367,3 +15907,530,791,4 +15908,530,2753,3 +15909,530,8553,3 +15910,530,1976,4 +15911,530,7309,3 +15912,530,2774,1 +15913,530,5274,5 +15914,530,7676,4 +15915,530,3000,4 +15916,530,4027,5 +15917,530,2888,3 +15918,530,4664,5 +15919,530,989,2 +15920,530,1854,1 +15921,530,9181,1 +15922,530,4198,1 +15923,530,3498,1 +15924,530,5026,5 +15925,530,6359,4 +15926,530,6270,3 +15927,531,8518,4 +15928,531,6793,5 +15929,531,7547,1 +15930,531,259,1 +15931,531,3732,2 +15932,531,7226,4 +15933,531,8209,5 +15934,531,5519,1 +15935,531,5555,3 +15936,531,2628,4 +15937,531,6095,4 +15938,531,4645,2 +15939,531,5075,2 +15940,531,7138,2 +15941,531,669,3 +15942,532,7268,3 +15943,532,3662,3 +15944,532,7840,1 +15945,532,7565,2 +15946,532,6827,5 +15947,532,9274,3 +15948,532,5530,3 +15949,532,5427,4 +15950,532,5383,3 +15951,532,8481,2 +15952,532,515,5 +15953,532,319,1 +15954,532,2870,5 +15955,532,6705,5 +15956,532,5108,4 +15957,532,8411,2 +15958,532,7461,2 +15959,532,1760,2 +15960,532,9615,1 +15961,532,1777,5 +15962,532,7308,2 +15963,532,85,5 +15964,532,2625,4 +15965,532,395,2 +15966,532,1263,4 +15967,532,9398,1 +15968,532,2486,3 +15969,532,3569,1 +15970,532,9339,2 +15971,532,5709,4 +15972,532,7672,3 +15973,532,7433,3 +15974,532,7680,1 +15975,532,5291,1 +15976,532,6077,2 +15977,532,6446,4 +15978,532,3417,2 +15979,532,4930,2 +15980,532,1442,2 +15981,532,9599,5 +15982,532,9388,3 +15983,532,9678,5 +15984,532,7563,1 +15985,532,315,4 +15986,532,481,2 +15987,532,4431,2 +15988,532,17,1 +15989,532,3325,2 +15990,533,6285,3 +15991,533,2035,3 +15992,533,7888,2 +15993,533,4611,5 +15994,533,3511,1 +15995,533,2357,3 +15996,533,2147,3 +15997,533,5136,1 +15998,533,9978,2 +15999,533,2914,1 +16000,533,2065,2 +16001,533,3108,4 +16002,533,6263,1 +16003,533,4927,5 +16004,533,7687,5 +16005,533,906,3 +16006,533,5095,2 +16007,533,7502,4 +16008,533,9049,1 +16009,533,7024,2 +16010,533,9479,3 +16011,533,4865,1 +16012,533,2356,4 +16013,533,9928,3 +16014,533,1256,3 +16015,533,5949,2 +16016,533,2512,3 +16017,533,8941,2 +16018,533,8668,1 +16019,533,7349,3 +16020,533,9578,1 +16021,533,162,4 +16022,534,4888,5 +16023,534,902,2 +16024,534,2957,4 +16025,534,1508,3 +16026,534,8592,5 +16027,534,9535,4 +16028,534,5700,1 +16029,534,6499,5 +16030,534,1184,4 +16031,534,8271,3 +16032,534,9415,4 +16033,534,6416,3 +16034,534,8317,4 +16035,534,4623,3 +16036,534,1345,5 +16037,534,474,4 +16038,534,6594,3 +16039,534,4066,5 +16040,534,613,5 +16041,534,4562,1 +16042,534,1689,4 +16043,534,1897,5 +16044,534,3814,4 +16045,534,8917,1 +16046,534,8694,3 +16047,534,2532,5 +16048,534,2038,1 +16049,534,363,1 +16050,534,3175,5 +16051,534,1656,4 +16052,534,9671,5 +16053,534,658,2 +16054,535,5162,4 +16055,535,9250,4 +16056,535,4061,5 +16057,535,1487,3 +16058,535,9214,4 +16059,535,5210,2 +16060,535,2085,5 +16061,535,5835,1 +16062,535,7116,4 +16063,535,2152,5 +16064,535,3350,4 +16065,535,415,2 +16066,535,9855,2 +16067,535,7515,5 +16068,535,1048,5 +16069,535,1422,4 +16070,535,4601,3 +16071,535,6885,5 +16072,535,1275,4 +16073,535,3907,1 +16074,535,7934,1 +16075,535,516,2 +16076,535,260,3 +16077,535,2638,1 +16078,535,8149,2 +16079,535,5776,4 +16080,535,7966,4 +16081,535,3006,1 +16082,535,2106,4 +16083,535,2768,5 +16084,535,8176,3 +16085,535,5065,1 +16086,535,8542,2 +16087,535,4094,2 +16088,535,8552,3 +16089,535,2516,5 +16090,535,6275,5 +16091,535,2784,4 +16092,535,1663,1 +16093,535,643,4 +16094,535,8632,5 +16095,535,5742,1 +16096,535,4811,3 +16097,535,8396,4 +16098,535,1155,3 +16099,535,2361,3 +16100,536,8988,3 +16101,536,407,2 +16102,536,9040,3 +16103,536,4311,3 +16104,536,3676,3 +16105,536,1110,3 +16106,536,5770,3 +16107,536,1375,4 +16108,536,9575,5 +16109,536,2908,3 +16110,536,3146,5 +16111,536,6433,5 +16112,536,3392,2 +16113,536,4540,2 +16114,536,8537,1 +16115,537,4815,4 +16116,537,5479,2 +16117,537,3797,5 +16118,537,2031,3 +16119,537,2698,5 +16120,537,5825,3 +16121,537,5472,2 +16122,537,5987,4 +16123,537,629,2 +16124,537,7636,2 +16125,537,8300,2 +16126,537,8277,2 +16127,537,1188,4 +16128,537,2422,4 +16129,537,8176,2 +16130,537,6913,5 +16131,537,9822,4 +16132,537,6368,3 +16133,537,1995,4 +16134,537,8774,5 +16135,537,4966,5 +16136,537,9778,2 +16137,537,5262,2 +16138,537,3732,3 +16139,537,802,3 +16140,537,8742,4 +16141,537,1996,3 +16142,537,8083,3 +16143,537,7989,5 +16144,537,2987,1 +16145,537,7112,5 +16146,538,3724,4 +16147,538,9943,2 +16148,538,6641,2 +16149,538,254,1 +16150,538,4193,3 +16151,538,8603,3 +16152,538,9717,1 +16153,538,9955,1 +16154,538,3845,5 +16155,538,5578,4 +16156,538,2756,5 +16157,538,8228,3 +16158,538,358,4 +16159,538,7510,2 +16160,538,5128,5 +16161,538,8257,5 +16162,538,9062,4 +16163,538,385,2 +16164,538,6884,4 +16165,538,1757,2 +16166,538,696,1 +16167,538,2423,3 +16168,538,2699,1 +16169,538,5450,3 +16170,538,3288,4 +16171,539,6723,3 +16172,539,1986,5 +16173,539,2160,5 +16174,539,2083,3 +16175,539,609,2 +16176,539,8586,1 +16177,539,437,5 +16178,539,6810,3 +16179,539,796,3 +16180,539,5975,5 +16181,539,5710,4 +16182,539,3340,4 +16183,539,9524,1 +16184,540,5508,2 +16185,540,9336,5 +16186,540,8758,4 +16187,540,8507,3 +16188,540,4969,4 +16189,540,3305,5 +16190,540,6289,3 +16191,540,7638,3 +16192,540,7615,5 +16193,540,3961,5 +16194,540,4983,5 +16195,540,5671,3 +16196,540,8206,5 +16197,540,7667,2 +16198,540,2482,5 +16199,540,9768,1 +16200,540,6016,3 +16201,541,2201,5 +16202,541,5683,4 +16203,541,6530,1 +16204,541,8285,1 +16205,541,8260,2 +16206,541,8887,3 +16207,541,9214,4 +16208,541,4389,2 +16209,541,8320,1 +16210,541,9461,1 +16211,541,3828,5 +16212,542,9499,2 +16213,542,1899,4 +16214,542,2827,4 +16215,542,3915,3 +16216,542,6243,2 +16217,542,3472,4 +16218,542,973,1 +16219,542,9869,3 +16220,542,7116,2 +16221,542,1857,3 +16222,542,5369,5 +16223,542,7730,4 +16224,542,5058,2 +16225,542,8304,5 +16226,542,6176,2 +16227,542,1190,3 +16228,542,961,2 +16229,542,7524,1 +16230,542,9560,5 +16231,542,3446,5 +16232,542,358,2 +16233,542,4708,5 +16234,542,8717,2 +16235,542,6877,5 +16236,542,8503,1 +16237,542,2075,3 +16238,542,5805,5 +16239,542,4243,4 +16240,542,4228,4 +16241,542,6502,5 +16242,542,1772,5 +16243,542,6006,2 +16244,542,4966,2 +16245,543,3299,1 +16246,543,3464,4 +16247,543,9299,2 +16248,543,7949,5 +16249,543,6478,3 +16250,543,653,4 +16251,543,9293,4 +16252,543,4321,3 +16253,543,9371,5 +16254,543,8356,1 +16255,543,2282,1 +16256,543,8827,3 +16257,543,8907,4 +16258,543,9549,2 +16259,543,6921,3 +16260,543,3563,4 +16261,543,8182,2 +16262,543,5290,4 +16263,543,9583,1 +16264,543,805,1 +16265,543,5729,4 +16266,543,8573,2 +16267,543,1821,5 +16268,543,3844,2 +16269,543,6269,1 +16270,543,5721,4 +16271,543,4885,4 +16272,543,6210,2 +16273,543,8551,5 +16274,543,8906,3 +16275,543,2551,2 +16276,543,3460,1 +16277,543,6652,3 +16278,543,6411,1 +16279,543,2023,5 +16280,543,9362,3 +16281,543,2653,4 +16282,543,2905,5 +16283,543,7395,4 +16284,544,6189,1 +16285,544,6143,5 +16286,544,7934,5 +16287,544,3605,2 +16288,544,1310,3 +16289,544,2674,4 +16290,544,4610,5 +16291,544,2995,1 +16292,544,9858,5 +16293,544,3316,2 +16294,544,5485,2 +16295,545,1374,5 +16296,545,6874,4 +16297,545,6471,3 +16298,545,2863,3 +16299,545,1189,4 +16300,545,4659,1 +16301,545,5756,5 +16302,545,2048,5 +16303,545,6217,5 +16304,545,7423,4 +16305,545,751,3 +16306,545,1607,3 +16307,545,2039,2 +16308,545,3985,4 +16309,545,5990,5 +16310,545,3715,5 +16311,545,7330,3 +16312,545,545,5 +16313,545,1426,4 +16314,545,8536,5 +16315,545,437,3 +16316,545,8374,1 +16317,545,6409,2 +16318,545,9303,4 +16319,545,6845,3 +16320,545,6366,4 +16321,545,773,5 +16322,546,8879,1 +16323,546,5261,4 +16324,546,604,4 +16325,546,7854,4 +16326,546,7513,2 +16327,546,5960,5 +16328,546,974,1 +16329,546,9655,2 +16330,546,34,4 +16331,546,4746,1 +16332,546,7523,5 +16333,546,6346,2 +16334,546,8794,3 +16335,546,9719,2 +16336,546,1310,5 +16337,546,4644,4 +16338,546,2133,1 +16339,546,4932,1 +16340,546,431,2 +16341,546,9601,1 +16342,546,417,3 +16343,546,5079,2 +16344,546,613,1 +16345,547,4631,4 +16346,547,8540,2 +16347,547,666,3 +16348,547,1674,2 +16349,547,1111,1 +16350,547,3555,5 +16351,547,2611,5 +16352,547,216,2 +16353,547,6994,2 +16354,547,538,4 +16355,547,265,4 +16356,547,464,5 +16357,547,4327,5 +16358,547,8694,2 +16359,547,3456,3 +16360,547,6995,4 +16361,547,2039,3 +16362,547,4120,5 +16363,548,4745,4 +16364,548,7806,2 +16365,548,6773,4 +16366,548,6958,3 +16367,548,3516,2 +16368,548,1899,4 +16369,548,5498,3 +16370,548,432,3 +16371,548,4807,3 +16372,548,4180,2 +16373,548,1414,2 +16374,548,4382,4 +16375,548,108,1 +16376,548,8686,1 +16377,548,4379,1 +16378,548,1301,3 +16379,548,5361,4 +16380,548,4467,3 +16381,548,380,2 +16382,548,3628,3 +16383,548,8586,2 +16384,548,4541,2 +16385,548,1279,3 +16386,548,8672,1 +16387,548,6513,1 +16388,548,4766,3 +16389,548,9851,3 +16390,548,6291,3 +16391,548,5043,2 +16392,548,8534,4 +16393,548,4934,5 +16394,548,367,4 +16395,548,1418,1 +16396,548,9117,1 +16397,548,1681,2 +16398,548,2462,4 +16399,548,7943,1 +16400,548,4865,2 +16401,548,3532,4 +16402,548,8041,2 +16403,548,7700,4 +16404,549,4739,3 +16405,549,4428,3 +16406,549,3236,5 +16407,549,6587,3 +16408,549,2350,1 +16409,549,7231,4 +16410,549,266,3 +16411,549,9834,2 +16412,549,5064,1 +16413,549,3388,2 +16414,549,5997,1 +16415,549,4519,3 +16416,549,1221,5 +16417,549,8795,4 +16418,549,180,2 +16419,549,3648,2 +16420,549,7075,1 +16421,549,1549,5 +16422,549,9510,3 +16423,549,3202,1 +16424,549,6122,5 +16425,549,4973,4 +16426,549,594,2 +16427,549,6982,1 +16428,549,2303,5 +16429,549,9781,5 +16430,549,3224,5 +16431,549,8682,4 +16432,549,2877,2 +16433,549,8796,3 +16434,549,927,4 +16435,549,8989,5 +16436,549,8986,4 +16437,549,5248,5 +16438,549,2475,1 +16439,549,6660,4 +16440,549,9161,5 +16441,549,7938,4 +16442,549,2360,1 +16443,549,7596,1 +16444,549,6460,1 +16445,549,1724,4 +16446,549,480,1 +16447,549,1228,3 +16448,550,5497,5 +16449,550,7152,3 +16450,550,6226,1 +16451,550,6027,4 +16452,550,4595,5 +16453,550,1676,2 +16454,550,5716,4 +16455,550,9999,1 +16456,550,3050,5 +16457,550,1512,5 +16458,550,2645,4 +16459,550,4503,3 +16460,550,7035,5 +16461,550,2616,3 +16462,550,5775,2 +16463,550,17,4 +16464,550,7128,1 +16465,550,9528,1 +16466,550,3832,4 +16467,550,5227,2 +16468,550,2949,2 +16469,550,368,4 +16470,550,2455,1 +16471,550,8851,4 +16472,550,8711,3 +16473,550,639,4 +16474,550,6281,4 +16475,550,5064,2 +16476,550,5556,4 +16477,550,8861,3 +16478,550,3501,2 +16479,550,9455,5 +16480,550,4628,5 +16481,550,1993,5 +16482,550,5409,1 +16483,550,2285,5 +16484,550,4757,1 +16485,550,9669,4 +16486,550,9070,2 +16487,550,4292,5 +16488,550,7477,1 +16489,550,8393,4 +16490,550,4733,5 +16491,550,9626,5 +16492,550,642,3 +16493,551,3438,1 +16494,551,1568,1 +16495,551,5961,1 +16496,551,3576,1 +16497,551,7194,2 +16498,551,7543,1 +16499,551,7071,5 +16500,551,2441,2 +16501,551,3253,1 +16502,551,8504,3 +16503,551,2382,2 +16504,551,9455,4 +16505,551,3901,4 +16506,551,5965,2 +16507,551,7542,4 +16508,551,3182,5 +16509,551,1221,4 +16510,551,8207,2 +16511,551,6574,2 +16512,551,8800,2 +16513,551,2854,3 +16514,551,7738,4 +16515,551,5844,4 +16516,551,2956,1 +16517,551,3197,3 +16518,551,1890,4 +16519,551,3761,2 +16520,551,6737,1 +16521,551,4527,2 +16522,551,2807,2 +16523,551,5851,4 +16524,551,4105,2 +16525,551,2769,3 +16526,551,8107,4 +16527,551,615,1 +16528,552,3426,2 +16529,552,5281,1 +16530,552,931,4 +16531,552,789,2 +16532,552,4510,5 +16533,552,1402,3 +16534,552,4142,3 +16535,552,4030,2 +16536,552,2761,4 +16537,552,3019,5 +16538,552,9252,1 +16539,552,7252,5 +16540,552,5720,3 +16541,552,9576,5 +16542,553,3496,4 +16543,553,9000,4 +16544,553,2667,1 +16545,553,9030,5 +16546,553,6176,5 +16547,553,785,1 +16548,553,8162,5 +16549,553,224,5 +16550,553,1814,3 +16551,553,6864,2 +16552,553,5336,5 +16553,553,9866,5 +16554,553,1009,1 +16555,553,9600,2 +16556,553,8764,4 +16557,553,2235,2 +16558,553,5976,4 +16559,553,823,5 +16560,553,6256,4 +16561,553,4576,3 +16562,553,2798,5 +16563,553,6543,1 +16564,553,1290,3 +16565,553,9674,4 +16566,554,2839,1 +16567,554,7267,1 +16568,554,4736,5 +16569,554,1286,5 +16570,554,3839,5 +16571,554,6630,1 +16572,554,2938,3 +16573,554,8676,1 +16574,554,42,3 +16575,554,3916,3 +16576,554,5825,4 +16577,554,378,2 +16578,554,5447,5 +16579,554,5529,5 +16580,554,5889,4 +16581,554,4735,5 +16582,554,6996,2 +16583,554,5679,2 +16584,554,7984,3 +16585,554,9409,4 +16586,554,4873,5 +16587,554,2100,2 +16588,554,4299,1 +16589,554,7307,3 +16590,554,6991,5 +16591,554,8854,4 +16592,554,3331,2 +16593,554,8974,4 +16594,554,5256,5 +16595,554,1968,5 +16596,554,4251,4 +16597,554,627,4 +16598,554,622,2 +16599,554,8012,5 +16600,554,3073,3 +16601,554,175,2 +16602,554,4677,5 +16603,554,8838,3 +16604,554,202,4 +16605,554,6128,5 +16606,554,3789,2 +16607,554,4289,2 +16608,554,9352,4 +16609,554,3291,1 +16610,554,5455,1 +16611,555,5905,4 +16612,555,1241,3 +16613,555,2298,1 +16614,555,6965,2 +16615,555,3531,2 +16616,555,4722,4 +16617,555,2799,1 +16618,555,8230,4 +16619,555,9955,5 +16620,555,1754,2 +16621,555,7060,2 +16622,555,3549,2 +16623,555,6429,1 +16624,555,8500,5 +16625,556,6213,4 +16626,556,3170,3 +16627,556,1379,2 +16628,556,4968,5 +16629,556,2200,4 +16630,556,1667,5 +16631,556,9486,3 +16632,556,7372,2 +16633,556,2746,3 +16634,556,6784,5 +16635,556,378,4 +16636,556,5908,2 +16637,556,2956,2 +16638,556,3784,5 +16639,556,5359,4 +16640,556,7599,4 +16641,556,8179,5 +16642,556,5911,4 +16643,556,1826,4 +16644,556,5651,2 +16645,556,3524,5 +16646,556,2357,3 +16647,556,3604,3 +16648,556,7160,5 +16649,556,2128,5 +16650,556,4705,3 +16651,556,2821,5 +16652,556,1754,3 +16653,556,7157,4 +16654,556,2928,5 +16655,556,679,4 +16656,556,958,3 +16657,556,4803,2 +16658,556,2199,1 +16659,557,3175,3 +16660,557,6808,3 +16661,557,9515,1 +16662,557,7076,2 +16663,557,8347,3 +16664,557,6792,1 +16665,557,6247,4 +16666,557,1863,3 +16667,557,8309,1 +16668,557,2925,4 +16669,557,484,3 +16670,557,9557,1 +16671,557,176,4 +16672,557,8728,3 +16673,557,7363,5 +16674,557,3478,3 +16675,557,2330,5 +16676,557,1689,4 +16677,557,2296,5 +16678,557,8753,4 +16679,557,4104,3 +16680,558,8203,5 +16681,558,869,4 +16682,558,4916,1 +16683,558,7741,2 +16684,558,2522,5 +16685,558,8787,4 +16686,558,7667,1 +16687,558,7751,2 +16688,558,1234,3 +16689,558,8818,5 +16690,558,2661,1 +16691,558,55,4 +16692,558,761,1 +16693,558,2704,5 +16694,558,7685,5 +16695,558,5799,3 +16696,558,1463,1 +16697,558,8310,2 +16698,558,3427,2 +16699,558,4427,5 +16700,558,6457,4 +16701,558,5691,5 +16702,558,6634,4 +16703,558,451,5 +16704,558,5931,4 +16705,558,6333,1 +16706,558,3445,2 +16707,558,182,2 +16708,558,3701,2 +16709,558,9343,4 +16710,558,7849,1 +16711,558,5651,3 +16712,558,6302,1 +16713,558,5180,5 +16714,558,5340,1 +16715,558,1812,5 +16716,558,7931,4 +16717,558,4438,3 +16718,558,572,5 +16719,558,2701,1 +16720,558,3462,5 +16721,558,8169,2 +16722,558,1048,5 +16723,558,106,5 +16724,559,3441,1 +16725,559,9116,4 +16726,559,727,5 +16727,559,2461,2 +16728,559,4436,4 +16729,559,338,1 +16730,559,821,1 +16731,559,8671,3 +16732,559,9681,5 +16733,559,1555,3 +16734,559,8173,4 +16735,559,7839,1 +16736,559,7371,4 +16737,559,9597,4 +16738,559,868,1 +16739,559,262,1 +16740,559,7703,3 +16741,559,7912,1 +16742,559,2735,1 +16743,559,5662,3 +16744,559,2293,1 +16745,559,2799,1 +16746,560,1611,2 +16747,560,1726,2 +16748,560,7208,2 +16749,560,2794,1 +16750,560,4320,4 +16751,560,4675,2 +16752,560,7696,4 +16753,560,9547,5 +16754,560,6074,2 +16755,560,2303,2 +16756,560,928,3 +16757,560,6986,4 +16758,561,6129,1 +16759,561,85,5 +16760,561,8726,5 +16761,561,2673,5 +16762,561,7500,4 +16763,561,5162,5 +16764,561,5018,3 +16765,561,3564,2 +16766,561,7810,1 +16767,561,3022,1 +16768,561,4610,4 +16769,561,1012,3 +16770,561,3228,5 +16771,561,1886,3 +16772,561,118,3 +16773,561,9970,5 +16774,561,4078,2 +16775,561,7498,2 +16776,561,6435,4 +16777,561,2238,1 +16778,561,315,5 +16779,561,1122,2 +16780,561,8013,5 +16781,561,8562,3 +16782,561,1245,2 +16783,561,9456,3 +16784,561,8202,4 +16785,561,1043,2 +16786,561,3756,1 +16787,561,1306,4 +16788,561,1442,5 +16789,561,2255,2 +16790,561,9355,2 +16791,561,7900,2 +16792,561,1575,1 +16793,561,8854,4 +16794,561,8548,1 +16795,561,1257,5 +16796,561,4319,3 +16797,561,2230,3 +16798,561,8394,5 +16799,561,7610,5 +16800,561,9629,3 +16801,561,7325,4 +16802,561,513,2 +16803,561,7564,5 +16804,561,7230,1 +16805,561,1517,3 +16806,561,6647,2 +16807,561,831,5 +16808,562,9007,2 +16809,562,665,5 +16810,562,8730,1 +16811,562,7562,5 +16812,562,5426,3 +16813,562,7283,4 +16814,562,4902,4 +16815,562,5450,1 +16816,562,2002,5 +16817,562,5859,4 +16818,562,6380,1 +16819,562,8980,2 +16820,562,9259,5 +16821,562,6973,3 +16822,562,1845,5 +16823,562,4145,4 +16824,562,949,5 +16825,562,6751,2 +16826,562,5457,2 +16827,562,5666,4 +16828,562,4753,2 +16829,562,1924,5 +16830,563,8059,2 +16831,563,7253,3 +16832,563,9156,3 +16833,563,1888,1 +16834,563,8383,2 +16835,563,6795,3 +16836,563,7655,1 +16837,563,6766,2 +16838,563,7756,4 +16839,563,4123,1 +16840,563,5910,5 +16841,564,1273,3 +16842,564,7365,3 +16843,564,7782,5 +16844,564,7783,2 +16845,564,278,5 +16846,564,2320,4 +16847,564,5631,4 +16848,564,896,5 +16849,564,5702,1 +16850,564,311,2 +16851,564,4947,4 +16852,564,3121,1 +16853,564,1470,2 +16854,564,2464,5 +16855,564,7534,2 +16856,564,3581,4 +16857,564,2013,2 +16858,564,9853,5 +16859,564,1934,2 +16860,564,552,1 +16861,565,6525,1 +16862,565,151,2 +16863,565,420,3 +16864,565,3221,1 +16865,565,917,2 +16866,565,5211,1 +16867,565,5950,1 +16868,565,6351,4 +16869,565,9334,1 +16870,565,9207,1 +16871,565,2271,2 +16872,565,3002,1 +16873,565,8280,3 +16874,565,9901,5 +16875,565,8814,5 +16876,565,91,5 +16877,565,7014,5 +16878,565,3702,2 +16879,565,7813,5 +16880,565,9006,1 +16881,565,7401,4 +16882,565,7148,3 +16883,565,6303,2 +16884,565,8580,3 +16885,565,8307,1 +16886,565,6573,4 +16887,565,1630,4 +16888,565,2588,1 +16889,565,5739,5 +16890,565,6257,5 +16891,565,7779,4 +16892,565,5379,1 +16893,565,9711,5 +16894,565,5108,2 +16895,565,7598,5 +16896,565,703,4 +16897,565,6920,4 +16898,565,8857,1 +16899,566,3846,1 +16900,566,9521,5 +16901,566,9298,4 +16902,566,8029,5 +16903,566,8327,3 +16904,566,2808,5 +16905,566,2006,1 +16906,566,4233,4 +16907,566,1718,1 +16908,566,5451,5 +16909,566,4122,3 +16910,566,9033,1 +16911,566,7868,3 +16912,566,7224,1 +16913,566,7012,1 +16914,566,4464,2 +16915,566,3154,5 +16916,566,4192,4 +16917,566,2425,5 +16918,566,4408,3 +16919,566,8946,1 +16920,566,3047,1 +16921,566,6298,1 +16922,566,8405,4 +16923,566,5324,4 +16924,566,8527,3 +16925,566,4326,1 +16926,566,758,3 +16927,566,2480,2 +16928,566,8765,1 +16929,567,5449,3 +16930,567,6301,4 +16931,567,8646,5 +16932,567,5537,4 +16933,567,9848,4 +16934,567,8323,1 +16935,567,261,4 +16936,567,9603,5 +16937,567,4515,4 +16938,567,2699,3 +16939,567,6826,4 +16940,567,7192,1 +16941,567,325,4 +16942,567,4161,3 +16943,567,9500,4 +16944,567,7767,4 +16945,567,8645,1 +16946,567,8257,1 +16947,567,8636,4 +16948,567,1510,1 +16949,567,7148,4 +16950,567,7174,2 +16951,567,3298,1 +16952,567,9768,2 +16953,567,4142,3 +16954,567,8792,5 +16955,567,395,5 +16956,567,3364,3 +16957,567,1048,1 +16958,567,64,4 +16959,567,9492,1 +16960,567,6092,4 +16961,568,1209,1 +16962,568,9727,1 +16963,568,9593,5 +16964,568,8878,4 +16965,568,632,1 +16966,568,2419,1 +16967,568,4284,4 +16968,568,2741,5 +16969,568,1118,4 +16970,568,42,4 +16971,568,2239,1 +16972,568,8443,3 +16973,568,7493,3 +16974,568,5420,5 +16975,568,7662,5 +16976,568,4812,2 +16977,568,2002,1 +16978,568,7978,5 +16979,568,6206,2 +16980,568,4311,5 +16981,568,869,3 +16982,568,155,3 +16983,568,1698,4 +16984,568,854,2 +16985,568,5977,3 +16986,568,6646,2 +16987,568,3702,3 +16988,568,1426,3 +16989,568,1611,2 +16990,568,5370,3 +16991,568,2466,3 +16992,568,1941,3 +16993,569,7549,5 +16994,569,3589,2 +16995,569,3057,5 +16996,569,9896,4 +16997,569,3616,1 +16998,569,4645,3 +16999,569,280,4 +17000,569,677,5 +17001,569,1620,3 +17002,569,1703,2 +17003,569,9761,3 +17004,569,6595,4 +17005,569,8553,2 +17006,569,6515,4 +17007,569,7926,2 +17008,569,1390,5 +17009,569,1861,1 +17010,569,7796,4 +17011,569,4242,2 +17012,569,4920,4 +17013,569,4799,2 +17014,569,2560,1 +17015,569,1348,2 +17016,569,2122,4 +17017,569,3290,3 +17018,569,6801,3 +17019,569,3450,1 +17020,569,633,2 +17021,569,5319,2 +17022,569,6104,4 +17023,570,7970,3 +17024,570,5740,4 +17025,570,7653,1 +17026,570,6960,1 +17027,570,2855,4 +17028,570,4001,4 +17029,570,728,3 +17030,570,5156,3 +17031,570,8699,4 +17032,570,1875,4 +17033,570,8504,3 +17034,570,5275,4 +17035,570,7385,1 +17036,570,1787,3 +17037,570,8428,2 +17038,570,7850,4 +17039,570,1508,4 +17040,570,2131,1 +17041,570,4264,2 +17042,570,9366,3 +17043,570,6307,2 +17044,570,992,4 +17045,571,5415,3 +17046,571,9072,2 +17047,571,1696,3 +17048,571,5999,4 +17049,571,9127,4 +17050,571,7378,5 +17051,571,8135,4 +17052,571,4281,4 +17053,571,7718,1 +17054,571,8943,1 +17055,571,9893,1 +17056,571,9457,5 +17057,571,2992,3 +17058,571,6856,3 +17059,571,6107,4 +17060,571,9510,3 +17061,571,9464,2 +17062,571,885,4 +17063,571,9204,4 +17064,571,3613,4 +17065,571,75,3 +17066,571,9735,3 +17067,571,9809,4 +17068,571,8222,5 +17069,571,4646,5 +17070,571,4655,1 +17071,571,5567,1 +17072,571,2915,1 +17073,572,4511,3 +17074,572,2889,5 +17075,572,6477,5 +17076,572,6328,4 +17077,572,7517,4 +17078,572,6702,3 +17079,572,9400,3 +17080,572,9012,4 +17081,572,1900,4 +17082,572,5985,3 +17083,572,4183,5 +17084,572,3048,5 +17085,572,6455,2 +17086,572,9644,3 +17087,572,5986,5 +17088,572,5618,3 +17089,572,990,4 +17090,572,7945,2 +17091,572,4717,5 +17092,572,3578,5 +17093,572,3569,5 +17094,572,512,2 +17095,572,3169,1 +17096,572,4823,4 +17097,572,4001,2 +17098,572,4233,4 +17099,572,5776,5 +17100,572,1698,2 +17101,572,5127,1 +17102,572,9335,3 +17103,572,9133,5 +17104,572,616,2 +17105,573,2703,5 +17106,573,9308,1 +17107,573,2938,4 +17108,573,8720,3 +17109,573,1218,4 +17110,573,2363,2 +17111,573,6881,5 +17112,573,614,4 +17113,573,9149,2 +17114,573,7318,1 +17115,573,5099,1 +17116,573,4937,1 +17117,573,7759,1 +17118,573,8243,5 +17119,573,9698,2 +17120,573,5955,3 +17121,573,1455,1 +17122,573,4608,4 +17123,573,7333,3 +17124,573,2102,4 +17125,573,8756,1 +17126,573,3576,5 +17127,573,795,5 +17128,573,5270,1 +17129,573,8661,5 +17130,573,7804,2 +17131,573,7747,5 +17132,573,9067,4 +17133,573,9499,3 +17134,573,9441,3 +17135,574,636,1 +17136,574,599,5 +17137,574,5405,5 +17138,574,6865,3 +17139,574,8275,2 +17140,574,9076,2 +17141,574,6777,4 +17142,574,9579,2 +17143,574,3681,4 +17144,574,9782,4 +17145,574,9829,5 +17146,574,7668,2 +17147,574,6729,2 +17148,574,8488,4 +17149,574,5946,1 +17150,574,6212,3 +17151,574,1089,3 +17152,574,8651,5 +17153,574,4896,2 +17154,574,9352,4 +17155,574,1014,4 +17156,574,73,4 +17157,574,2070,3 +17158,574,6885,5 +17159,574,9324,2 +17160,574,6457,4 +17161,574,288,3 +17162,574,8841,2 +17163,574,6027,4 +17164,574,8141,3 +17165,574,8345,5 +17166,574,6963,4 +17167,574,479,1 +17168,574,9315,3 +17169,574,2312,4 +17170,574,1471,4 +17171,574,8912,4 +17172,574,5540,1 +17173,574,6281,4 +17174,574,5059,4 +17175,574,2767,1 +17176,575,6507,4 +17177,575,5483,1 +17178,575,1753,3 +17179,575,4656,2 +17180,575,9085,3 +17181,575,371,5 +17182,575,4696,4 +17183,575,1906,5 +17184,575,254,2 +17185,575,7294,3 +17186,575,6721,4 +17187,575,1414,5 +17188,575,2290,2 +17189,575,3342,5 +17190,575,6782,2 +17191,575,785,4 +17192,575,4555,1 +17193,575,103,1 +17194,575,2312,5 +17195,575,3234,1 +17196,575,8560,3 +17197,575,3912,1 +17198,575,3494,3 +17199,575,8846,1 +17200,575,2952,3 +17201,575,5827,5 +17202,575,8586,3 +17203,575,503,1 +17204,575,977,2 +17205,576,913,4 +17206,576,6127,4 +17207,576,8501,3 +17208,576,4464,2 +17209,576,4270,3 +17210,576,3483,3 +17211,576,8929,2 +17212,576,1428,3 +17213,576,5707,4 +17214,576,8889,1 +17215,576,1625,2 +17216,576,1550,3 +17217,576,5480,5 +17218,576,1030,2 +17219,576,8707,1 +17220,576,6738,3 +17221,576,5132,3 +17222,576,5371,1 +17223,576,55,3 +17224,576,2888,2 +17225,576,7672,5 +17226,576,7189,2 +17227,576,5829,1 +17228,576,9074,5 +17229,576,2460,5 +17230,576,5774,5 +17231,576,6487,2 +17232,576,9093,3 +17233,576,7352,5 +17234,576,8160,4 +17235,576,1902,4 +17236,576,6325,1 +17237,576,8493,4 +17238,576,277,5 +17239,576,1102,2 +17240,576,8908,3 +17241,576,1504,2 +17242,576,1722,5 +17243,576,2693,5 +17244,576,6813,5 +17245,576,4651,5 +17246,576,1277,2 +17247,577,3553,1 +17248,577,2761,3 +17249,577,6353,1 +17250,577,4640,4 +17251,577,1126,2 +17252,577,3873,4 +17253,577,4095,2 +17254,577,2425,2 +17255,577,9942,2 +17256,577,4409,5 +17257,578,3518,2 +17258,578,9889,4 +17259,578,2787,1 +17260,578,595,3 +17261,578,7806,2 +17262,578,6460,5 +17263,578,8216,2 +17264,578,9730,2 +17265,578,7973,2 +17266,578,8512,3 +17267,578,2357,1 +17268,578,7558,1 +17269,578,3650,1 +17270,578,3367,4 +17271,578,5019,2 +17272,578,1100,3 +17273,578,6729,2 +17274,578,7685,2 +17275,578,1389,1 +17276,578,2640,1 +17277,578,4598,3 +17278,578,9358,5 +17279,578,3362,4 +17280,579,2612,5 +17281,579,2771,1 +17282,579,8152,1 +17283,579,9807,2 +17284,579,134,2 +17285,579,8208,4 +17286,579,7456,4 +17287,579,6559,3 +17288,579,8694,3 +17289,579,7641,3 +17290,579,8327,1 +17291,579,8646,4 +17292,579,9107,5 +17293,579,3619,1 +17294,580,856,5 +17295,580,7787,4 +17296,580,8836,1 +17297,580,2411,2 +17298,580,7917,3 +17299,580,716,2 +17300,580,3217,2 +17301,580,8375,3 +17302,580,6460,5 +17303,580,7973,3 +17304,580,61,1 +17305,580,7232,3 +17306,580,3154,1 +17307,580,5152,2 +17308,580,8905,2 +17309,580,9300,4 +17310,580,2836,2 +17311,580,1676,3 +17312,580,4100,1 +17313,580,9091,4 +17314,580,8599,2 +17315,580,3647,3 +17316,580,3359,4 +17317,580,1680,2 +17318,580,1496,1 +17319,580,9521,1 +17320,580,3405,1 +17321,580,8197,4 +17322,580,9470,5 +17323,580,9289,3 +17324,580,3502,4 +17325,580,4405,1 +17326,580,1792,5 +17327,580,8012,5 +17328,580,4482,3 +17329,580,5829,1 +17330,580,7615,1 +17331,580,578,5 +17332,580,9476,3 +17333,580,7729,5 +17334,580,2094,2 +17335,580,3375,4 +17336,580,5029,4 +17337,580,1624,5 +17338,581,6204,1 +17339,581,4031,3 +17340,581,6964,2 +17341,581,8266,1 +17342,581,9994,3 +17343,581,8568,1 +17344,581,9364,2 +17345,581,6042,1 +17346,581,1567,2 +17347,581,6259,1 +17348,581,7153,2 +17349,581,8347,3 +17350,581,6772,5 +17351,581,5481,2 +17352,581,3075,5 +17353,581,5219,4 +17354,581,3952,2 +17355,581,7346,2 +17356,582,4185,4 +17357,582,8471,1 +17358,582,5146,2 +17359,582,8371,4 +17360,582,2522,2 +17361,582,6211,5 +17362,582,704,2 +17363,582,5467,1 +17364,582,8630,4 +17365,582,9628,1 +17366,582,5328,3 +17367,582,8956,5 +17368,582,8159,3 +17369,582,587,2 +17370,582,5743,1 +17371,582,845,3 +17372,582,4004,5 +17373,582,7449,5 +17374,582,8193,3 +17375,582,3459,2 +17376,582,6746,1 +17377,582,9748,3 +17378,582,8268,4 +17379,582,3931,5 +17380,582,7788,3 +17381,582,9952,3 +17382,583,753,4 +17383,583,3737,1 +17384,583,9454,2 +17385,583,2674,1 +17386,583,8158,1 +17387,583,3544,5 +17388,583,1797,5 +17389,583,8915,2 +17390,583,5033,4 +17391,583,1677,4 +17392,583,416,2 +17393,583,8457,2 +17394,583,7627,5 +17395,583,4290,3 +17396,583,2811,1 +17397,584,5789,1 +17398,584,6624,1 +17399,584,298,4 +17400,584,333,4 +17401,584,8077,2 +17402,584,3121,2 +17403,584,3470,5 +17404,584,2059,3 +17405,584,4563,4 +17406,584,6044,5 +17407,584,4594,1 +17408,584,1145,1 +17409,584,1746,5 +17410,584,6275,4 +17411,584,1747,3 +17412,584,4642,5 +17413,584,1218,3 +17414,584,3105,1 +17415,584,6795,1 +17416,584,223,1 +17417,584,3940,5 +17418,584,7001,1 +17419,584,324,5 +17420,584,7375,3 +17421,584,2687,3 +17422,584,3538,2 +17423,584,9567,2 +17424,584,3266,2 +17425,584,7482,5 +17426,584,9007,4 +17427,584,9641,5 +17428,584,2681,4 +17429,584,3231,4 +17430,584,2440,5 +17431,584,3272,3 +17432,584,8370,4 +17433,584,2565,3 +17434,584,7400,5 +17435,584,6012,5 +17436,584,3568,5 +17437,584,8740,1 +17438,585,2952,3 +17439,585,2921,5 +17440,585,2482,1 +17441,585,9980,1 +17442,585,5592,2 +17443,585,6232,3 +17444,585,9720,3 +17445,585,5980,2 +17446,585,58,1 +17447,585,7612,1 +17448,585,2503,2 +17449,585,1027,4 +17450,585,777,5 +17451,585,9794,2 +17452,585,630,5 +17453,585,8499,5 +17454,585,9681,2 +17455,585,5170,2 +17456,585,1003,5 +17457,585,3885,1 +17458,585,9190,4 +17459,585,7386,4 +17460,585,8522,1 +17461,585,5657,2 +17462,585,7372,3 +17463,585,4264,3 +17464,585,5322,1 +17465,585,9908,4 +17466,585,8845,4 +17467,585,3464,4 +17468,585,9200,1 +17469,585,337,3 +17470,585,1249,3 +17471,585,866,5 +17472,585,1255,2 +17473,585,7706,5 +17474,585,2922,5 +17475,586,3540,5 +17476,586,9459,1 +17477,586,552,1 +17478,586,9823,3 +17479,586,9716,4 +17480,586,3517,1 +17481,586,3251,1 +17482,586,1828,2 +17483,586,9123,1 +17484,586,1218,5 +17485,586,8248,1 +17486,586,560,4 +17487,586,475,3 +17488,586,5578,1 +17489,586,3785,5 +17490,586,421,2 +17491,586,8629,3 +17492,586,1174,4 +17493,586,2065,1 +17494,586,8792,1 +17495,586,4602,5 +17496,586,4352,1 +17497,586,5087,3 +17498,586,7427,4 +17499,586,5129,5 +17500,586,8359,4 +17501,586,8461,2 +17502,586,2298,3 +17503,586,8164,2 +17504,587,9338,5 +17505,587,4527,1 +17506,587,7679,1 +17507,587,1132,4 +17508,587,4955,4 +17509,587,4188,1 +17510,587,5137,1 +17511,587,5253,3 +17512,587,4267,4 +17513,587,3891,4 +17514,587,3020,5 +17515,588,712,4 +17516,588,3451,1 +17517,588,1734,4 +17518,588,4850,2 +17519,588,283,4 +17520,588,3509,5 +17521,588,2564,2 +17522,588,2137,2 +17523,588,9091,4 +17524,588,5511,3 +17525,588,411,3 +17526,588,3155,5 +17527,588,6182,2 +17528,588,3072,2 +17529,588,1775,4 +17530,588,7501,3 +17531,589,5453,1 +17532,589,9013,4 +17533,589,961,3 +17534,589,8431,1 +17535,589,4917,2 +17536,589,2152,5 +17537,589,2368,1 +17538,589,4815,3 +17539,589,4323,5 +17540,589,1200,4 +17541,590,104,2 +17542,590,738,1 +17543,590,6523,1 +17544,590,2478,1 +17545,590,1416,1 +17546,590,5416,3 +17547,590,7861,5 +17548,590,9468,4 +17549,590,9923,2 +17550,590,4770,3 +17551,590,6687,5 +17552,590,7959,4 +17553,590,6130,1 +17554,590,5266,4 +17555,590,5301,4 +17556,590,7848,5 +17557,590,2814,1 +17558,590,8232,2 +17559,590,4083,2 +17560,590,6748,5 +17561,590,5519,3 +17562,590,1158,2 +17563,590,8424,5 +17564,590,1668,3 +17565,590,2431,5 +17566,590,9203,1 +17567,590,186,5 +17568,590,9664,3 +17569,590,5108,1 +17570,590,2088,4 +17571,590,6044,4 +17572,590,4744,4 +17573,590,4719,4 +17574,590,7814,2 +17575,590,2671,5 +17576,590,5142,4 +17577,590,6428,5 +17578,590,3340,1 +17579,590,263,2 +17580,590,3206,4 +17581,591,5088,2 +17582,591,9666,5 +17583,591,2177,2 +17584,591,2938,2 +17585,591,6177,4 +17586,591,5106,4 +17587,591,345,4 +17588,591,3677,5 +17589,591,4747,4 +17590,591,8244,2 +17591,591,98,5 +17592,591,1630,2 +17593,591,2028,3 +17594,591,5869,5 +17595,591,2419,3 +17596,591,7285,2 +17597,591,7178,1 +17598,591,5636,5 +17599,591,5337,2 +17600,591,4924,2 +17601,591,5820,5 +17602,592,6161,2 +17603,592,9351,2 +17604,592,8549,2 +17605,592,6383,4 +17606,592,2659,1 +17607,592,2223,4 +17608,592,3873,2 +17609,592,1418,2 +17610,592,3734,3 +17611,592,6323,2 +17612,592,2140,4 +17613,592,8518,3 +17614,592,4843,2 +17615,592,3699,2 +17616,592,1841,1 +17617,592,991,1 +17618,592,3897,3 +17619,592,470,3 +17620,592,5943,5 +17621,592,3737,5 +17622,592,353,3 +17623,592,7720,5 +17624,592,5172,3 +17625,592,4090,1 +17626,592,6538,2 +17627,592,303,4 +17628,592,5710,5 +17629,592,9018,4 +17630,592,4701,5 +17631,592,2353,5 +17632,592,1913,5 +17633,592,5353,3 +17634,592,5438,5 +17635,592,8754,2 +17636,592,1248,3 +17637,593,8006,5 +17638,593,1789,4 +17639,593,4944,3 +17640,593,1235,2 +17641,593,7454,1 +17642,593,2129,3 +17643,593,6867,4 +17644,593,7671,5 +17645,593,5211,5 +17646,593,4272,5 +17647,593,8924,3 +17648,593,7468,5 +17649,593,2738,5 +17650,593,1866,5 +17651,593,9723,3 +17652,593,7342,4 +17653,593,8485,3 +17654,593,785,5 +17655,593,9461,1 +17656,593,655,3 +17657,593,7742,5 +17658,593,5812,2 +17659,593,6403,2 +17660,593,1920,3 +17661,593,9491,4 +17662,593,1121,5 +17663,593,1271,2 +17664,593,9456,5 +17665,593,17,2 +17666,593,2964,3 +17667,593,1179,1 +17668,593,4051,2 +17669,593,8421,5 +17670,593,5037,1 +17671,593,309,5 +17672,593,2260,1 +17673,593,9180,4 +17674,593,5895,4 +17675,593,7418,1 +17676,593,5473,5 +17677,593,1451,2 +17678,593,8771,5 +17679,593,973,5 +17680,593,7189,4 +17681,594,8494,4 +17682,594,1147,4 +17683,594,7844,4 +17684,594,5802,3 +17685,594,7335,3 +17686,594,7366,4 +17687,594,2533,5 +17688,594,2547,4 +17689,594,3751,4 +17690,594,805,4 +17691,594,1518,2 +17692,594,2898,5 +17693,594,1184,3 +17694,594,4802,2 +17695,594,7997,4 +17696,594,5119,3 +17697,594,491,2 +17698,594,2439,4 +17699,594,558,5 +17700,594,9975,4 +17701,594,2019,1 +17702,594,7424,4 +17703,594,356,3 +17704,594,2088,2 +17705,594,9528,1 +17706,594,6218,4 +17707,594,2512,4 +17708,594,1405,4 +17709,594,8040,3 +17710,594,201,2 +17711,594,4565,3 +17712,594,4599,4 +17713,594,3128,2 +17714,594,4098,4 +17715,594,6678,1 +17716,594,2646,2 +17717,594,8417,5 +17718,594,5634,4 +17719,595,281,1 +17720,595,706,5 +17721,595,8843,2 +17722,595,8762,4 +17723,595,4260,2 +17724,595,6907,4 +17725,595,1688,4 +17726,595,6685,5 +17727,595,7671,3 +17728,595,1377,4 +17729,595,9563,4 +17730,595,7526,4 +17731,595,3694,4 +17732,595,887,2 +17733,595,8567,4 +17734,595,3314,3 +17735,595,2080,3 +17736,595,9772,1 +17737,595,4085,1 +17738,595,3516,5 +17739,595,1831,5 +17740,595,8481,3 +17741,595,4657,5 +17742,595,3877,4 +17743,595,1336,3 +17744,595,3985,1 +17745,595,5935,1 +17746,595,9607,4 +17747,595,8541,3 +17748,595,3653,5 +17749,595,6406,3 +17750,595,1898,3 +17751,595,4851,3 +17752,595,4547,4 +17753,595,8942,1 +17754,595,4599,2 +17755,595,8323,1 +17756,595,3170,2 +17757,595,4110,4 +17758,595,5582,4 +17759,595,1696,3 +17760,595,4494,2 +17761,595,6645,2 +17762,595,7444,3 +17763,596,2145,1 +17764,596,8413,3 +17765,596,7292,2 +17766,596,2570,2 +17767,596,5548,1 +17768,596,4353,2 +17769,596,6718,3 +17770,596,9260,1 +17771,596,5169,4 +17772,596,5026,2 +17773,596,5398,4 +17774,596,4525,5 +17775,596,7161,1 +17776,596,5043,1 +17777,596,7237,3 +17778,597,4249,2 +17779,597,724,1 +17780,597,3117,4 +17781,597,6831,5 +17782,597,2482,1 +17783,597,933,5 +17784,597,4936,4 +17785,597,6867,4 +17786,597,7937,5 +17787,597,4931,2 +17788,597,5372,4 +17789,597,1051,5 +17790,597,4792,1 +17791,597,994,1 +17792,597,8295,5 +17793,597,6362,2 +17794,597,7139,5 +17795,597,3395,4 +17796,597,7223,3 +17797,597,2393,4 +17798,597,6994,3 +17799,597,9811,5 +17800,597,5268,4 +17801,597,6475,2 +17802,597,1619,5 +17803,597,9932,4 +17804,597,174,2 +17805,597,8317,3 +17806,597,607,5 +17807,597,5084,2 +17808,597,1450,5 +17809,597,61,5 +17810,597,8492,2 +17811,597,1564,1 +17812,597,3528,5 +17813,597,6854,4 +17814,597,1704,2 +17815,597,927,5 +17816,597,6053,4 +17817,597,7534,2 +17818,597,1050,1 +17819,597,4731,1 +17820,597,5111,3 +17821,597,9894,1 +17822,597,3269,5 +17823,597,1786,1 +17824,598,2963,1 +17825,598,2931,3 +17826,598,1189,4 +17827,598,7862,4 +17828,598,5752,5 +17829,598,7643,1 +17830,598,2383,1 +17831,598,3803,3 +17832,598,7990,4 +17833,598,8833,2 +17834,598,5222,5 +17835,598,6810,2 +17836,598,446,5 +17837,598,5540,5 +17838,598,9605,4 +17839,598,5505,1 +17840,598,5589,2 +17841,598,6831,2 +17842,598,1912,2 +17843,598,6746,4 +17844,598,9191,3 +17845,598,7135,1 +17846,598,3811,1 +17847,598,2460,2 +17848,598,7991,1 +17849,598,5152,5 +17850,598,1758,5 +17851,598,2123,2 +17852,598,5463,3 +17853,598,280,3 +17854,598,4771,5 +17855,598,5335,3 +17856,598,2927,2 +17857,598,3097,1 +17858,598,1851,2 +17859,598,1064,4 +17860,598,4500,4 +17861,598,6243,1 +17862,599,6193,3 +17863,599,237,4 +17864,599,3585,2 +17865,599,1659,2 +17866,599,1661,3 +17867,599,4515,2 +17868,599,6121,2 +17869,599,9187,4 +17870,599,9197,3 +17871,599,1464,4 +17872,600,7333,1 +17873,600,3307,3 +17874,600,1984,1 +17875,600,3981,5 +17876,600,9168,3 +17877,600,9272,5 +17878,600,7212,5 +17879,600,2741,5 +17880,600,1710,2 +17881,600,7676,3 +17882,600,7763,3 +17883,600,3689,5 +17884,600,3634,5 +17885,600,5093,2 +17886,600,7310,3 +17887,600,3431,4 +17888,600,9044,3 +17889,600,7627,4 +17890,600,720,2 +17891,600,4690,1 +17892,600,5912,4 +17893,600,3610,3 +17894,600,560,2 +17895,601,5460,4 +17896,601,5449,5 +17897,601,6048,3 +17898,601,4970,1 +17899,601,7765,1 +17900,601,2552,5 +17901,601,9970,1 +17902,601,4076,1 +17903,601,1044,5 +17904,601,1891,5 +17905,601,7852,3 +17906,601,1590,4 +17907,601,4165,4 +17908,601,7856,4 +17909,601,8413,2 +17910,601,6290,4 +17911,601,1792,3 +17912,601,7958,1 +17913,601,7683,3 +17914,601,9781,2 +17915,601,7372,3 +17916,601,1210,1 +17917,601,8275,3 +17918,601,1731,5 +17919,601,2988,1 +17920,601,2280,2 +17921,601,5490,4 +17922,601,7937,5 +17923,601,591,2 +17924,601,2054,5 +17925,601,3739,5 +17926,601,8365,1 +17927,601,5171,5 +17928,601,9950,1 +17929,601,8255,1 +17930,601,7144,5 +17931,601,573,2 +17932,601,1814,4 +17933,601,8060,3 +17934,601,390,5 +17935,601,7681,2 +17936,601,350,4 +17937,601,9611,1 +17938,601,8762,2 +17939,602,2356,5 +17940,602,3660,2 +17941,602,4157,3 +17942,602,1770,5 +17943,602,8997,1 +17944,602,3418,1 +17945,602,7894,3 +17946,602,4872,3 +17947,602,5133,3 +17948,602,6861,1 +17949,602,5646,1 +17950,602,7307,4 +17951,602,2182,2 +17952,602,1265,1 +17953,602,6683,5 +17954,602,2898,5 +17955,602,2620,3 +17956,602,2885,5 +17957,602,9473,4 +17958,602,6261,3 +17959,602,6917,3 +17960,602,8119,5 +17961,602,874,3 +17962,602,9239,4 +17963,602,9282,2 +17964,602,9342,1 +17965,602,6104,2 +17966,602,6172,1 +17967,602,1679,5 +17968,602,7125,1 +17969,602,1411,3 +17970,602,359,2 +17971,602,7900,2 +17972,602,8836,4 +17973,602,1740,1 +17974,602,5089,1 +17975,602,3249,3 +17976,602,7163,2 +17977,602,7374,3 +17978,602,7898,4 +17979,603,5858,4 +17980,603,7086,1 +17981,603,1945,5 +17982,603,9279,4 +17983,603,4360,4 +17984,603,8766,4 +17985,603,6055,1 +17986,603,9454,2 +17987,603,2794,2 +17988,603,3116,2 +17989,603,9831,1 +17990,603,4240,3 +17991,603,6759,4 +17992,603,9730,4 +17993,603,6265,1 +17994,603,3665,4 +17995,604,5616,5 +17996,604,7167,2 +17997,604,2695,3 +17998,604,2897,2 +17999,604,3253,1 +18000,604,2198,1 +18001,604,3900,1 +18002,604,5947,5 +18003,604,2096,5 +18004,604,7393,2 +18005,604,9769,5 +18006,604,238,4 +18007,604,4852,2 +18008,604,473,3 +18009,604,9826,1 +18010,604,631,1 +18011,604,5436,2 +18012,604,9320,2 +18013,604,9707,2 +18014,604,9741,1 +18015,604,9111,1 +18016,604,7687,4 +18017,604,9566,3 +18018,604,1458,3 +18019,604,1479,1 +18020,604,4255,4 +18021,604,3371,2 +18022,604,7989,5 +18023,604,2138,2 +18024,604,3085,1 +18025,604,7506,2 +18026,604,482,2 +18027,604,6882,3 +18028,604,3006,3 +18029,604,5419,1 +18030,604,701,4 +18031,604,2567,5 +18032,604,2279,2 +18033,604,1364,1 +18034,605,6947,5 +18035,605,7897,1 +18036,605,7826,3 +18037,605,3506,3 +18038,605,7553,3 +18039,605,2323,5 +18040,605,8829,3 +18041,605,2342,1 +18042,605,6831,4 +18043,605,5392,1 +18044,605,8347,2 +18045,605,308,5 +18046,605,9460,1 +18047,605,3964,3 +18048,605,2192,5 +18049,605,6436,4 +18050,605,9323,2 +18051,605,7854,5 +18052,605,4520,5 +18053,605,145,4 +18054,605,9950,4 +18055,605,9339,3 +18056,605,5208,1 +18057,605,5969,5 +18058,605,7933,3 +18059,605,5670,5 +18060,605,2592,3 +18061,605,8282,2 +18062,605,4891,3 +18063,605,1026,4 +18064,605,4728,4 +18065,605,5278,2 +18066,605,1780,1 +18067,605,5574,3 +18068,605,951,2 +18069,605,1071,1 +18070,605,1549,5 +18071,605,1225,4 +18072,605,278,1 +18073,605,6010,5 +18074,605,3278,3 +18075,605,7364,3 +18076,605,1330,3 +18077,605,9819,3 +18078,605,9462,5 +18079,605,2083,1 +18080,605,6959,2 +18081,605,9884,5 +18082,606,5278,1 +18083,606,5559,3 +18084,606,1571,4 +18085,606,9543,1 +18086,606,2206,2 +18087,606,4477,5 +18088,606,7961,4 +18089,606,6824,4 +18090,606,9063,3 +18091,606,7870,2 +18092,606,873,1 +18093,606,6,3 +18094,606,4319,5 +18095,606,7238,3 +18096,606,8358,3 +18097,607,7272,4 +18098,607,9113,3 +18099,607,2271,5 +18100,607,2838,5 +18101,607,8376,4 +18102,607,5220,2 +18103,607,511,5 +18104,607,9640,3 +18105,607,3105,1 +18106,607,2990,4 +18107,607,4796,5 +18108,607,962,3 +18109,607,4693,2 +18110,607,7512,3 +18111,607,4219,1 +18112,607,9077,3 +18113,607,9708,5 +18114,607,4801,5 +18115,607,5757,2 +18116,607,7743,4 +18117,607,1618,4 +18118,607,361,1 +18119,607,8863,3 +18120,607,4375,2 +18121,607,3052,3 +18122,607,6496,2 +18123,607,6631,5 +18124,607,5237,3 +18125,607,4825,5 +18126,607,7529,3 +18127,607,9559,2 +18128,607,3864,1 +18129,607,5702,3 +18130,607,6202,1 +18131,607,7801,4 +18132,607,5424,2 +18133,607,6448,4 +18134,607,2904,2 +18135,608,2224,5 +18136,608,9841,5 +18137,608,1999,2 +18138,608,9304,3 +18139,608,5663,4 +18140,608,8592,3 +18141,608,1117,4 +18142,608,5967,5 +18143,608,2498,3 +18144,608,3599,5 +18145,608,9926,2 +18146,608,4365,4 +18147,608,3141,2 +18148,608,5181,3 +18149,608,6244,5 +18150,608,2101,1 +18151,608,1694,1 +18152,608,7475,2 +18153,608,6734,1 +18154,608,6392,1 +18155,608,13,5 +18156,608,3832,5 +18157,608,7092,3 +18158,608,4865,5 +18159,608,6749,5 +18160,608,566,2 +18161,608,5158,4 +18162,608,5021,3 +18163,608,5050,4 +18164,608,3210,4 +18165,608,8013,3 +18166,608,9093,4 +18167,608,2046,4 +18168,608,6689,3 +18169,608,4612,5 +18170,608,9011,1 +18171,608,7164,4 +18172,608,3655,3 +18173,608,3416,4 +18174,608,3138,1 +18175,608,8165,4 +18176,608,3089,5 +18177,608,3694,5 +18178,608,5457,4 +18179,608,8570,2 +18180,608,6819,5 +18181,609,3303,4 +18182,609,6039,5 +18183,609,7268,1 +18184,609,9068,3 +18185,609,2370,4 +18186,609,9823,1 +18187,609,4382,4 +18188,609,4984,1 +18189,609,9681,2 +18190,609,8485,2 +18191,609,6379,1 +18192,609,2747,4 +18193,609,8359,1 +18194,609,2707,2 +18195,609,2946,4 +18196,609,1405,5 +18197,609,9228,5 +18198,609,1916,3 +18199,609,947,5 +18200,609,4288,1 +18201,609,6601,4 +18202,609,4068,1 +18203,609,3893,1 +18204,609,8024,3 +18205,609,2190,1 +18206,609,3233,3 +18207,609,5616,1 +18208,609,9672,5 +18209,609,6240,1 +18210,609,9893,2 +18211,609,6036,5 +18212,609,8701,5 +18213,609,3149,4 +18214,609,3415,5 +18215,609,2662,5 +18216,610,4058,2 +18217,610,1970,4 +18218,610,6653,5 +18219,610,5871,4 +18220,610,8722,5 +18221,610,8779,1 +18222,610,2786,1 +18223,610,2060,3 +18224,610,2214,3 +18225,610,8711,3 +18226,610,2049,3 +18227,610,9157,5 +18228,610,9160,5 +18229,610,5941,4 +18230,610,2244,1 +18231,610,5390,1 +18232,610,8878,3 +18233,610,9654,1 +18234,610,166,4 +18235,610,1389,3 +18236,610,5396,3 +18237,610,7932,1 +18238,610,6566,5 +18239,610,105,5 +18240,611,8073,5 +18241,611,4161,4 +18242,611,1289,3 +18243,611,2999,2 +18244,611,7772,5 +18245,611,5172,4 +18246,611,5160,2 +18247,611,9932,3 +18248,611,1470,3 +18249,611,7282,5 +18250,611,7804,3 +18251,611,6141,1 +18252,611,4836,2 +18253,611,5525,5 +18254,611,8986,5 +18255,611,2402,3 +18256,611,6572,1 +18257,611,6771,2 +18258,611,3170,3 +18259,611,2050,2 +18260,611,1932,2 +18261,611,2600,4 +18262,611,2300,5 +18263,611,955,4 +18264,611,2580,3 +18265,611,5853,1 +18266,611,5378,1 +18267,611,2171,4 +18268,611,5979,5 +18269,611,9467,2 +18270,611,2821,5 +18271,611,9014,1 +18272,611,7710,4 +18273,611,5801,3 +18274,611,7844,5 +18275,611,7840,5 +18276,611,994,3 +18277,611,5335,2 +18278,611,1037,5 +18279,611,7498,5 +18280,611,3139,2 +18281,611,5271,2 +18282,611,3878,1 +18283,611,2126,4 +18284,612,8417,1 +18285,612,9976,2 +18286,612,1630,3 +18287,612,8019,1 +18288,612,5470,2 +18289,612,7848,3 +18290,612,3625,3 +18291,612,7361,4 +18292,612,6095,1 +18293,612,6181,4 +18294,612,3030,3 +18295,612,2700,2 +18296,612,2607,4 +18297,612,8512,5 +18298,612,2844,3 +18299,612,9729,5 +18300,612,5390,2 +18301,612,1339,3 +18302,612,8562,2 +18303,612,6905,1 +18304,612,2815,3 +18305,612,4891,5 +18306,612,4232,3 +18307,612,8602,2 +18308,612,4342,5 +18309,612,2920,4 +18310,612,3480,2 +18311,612,1627,1 +18312,612,1194,1 +18313,612,6837,5 +18314,612,7109,3 +18315,612,7075,1 +18316,612,9856,1 +18317,612,6182,4 +18318,612,6899,4 +18319,612,409,1 +18320,612,3724,1 +18321,612,1838,1 +18322,612,1005,1 +18323,613,5390,4 +18324,613,8054,3 +18325,613,4365,2 +18326,613,936,1 +18327,613,6275,4 +18328,613,5017,3 +18329,613,7324,1 +18330,613,1201,2 +18331,613,1146,1 +18332,613,9792,3 +18333,613,4098,5 +18334,613,331,2 +18335,613,7399,1 +18336,613,7153,4 +18337,613,2529,1 +18338,613,1583,2 +18339,613,9169,5 +18340,613,1995,2 +18341,613,715,3 +18342,613,7379,5 +18343,613,5016,3 +18344,613,9552,2 +18345,613,6367,2 +18346,613,2225,5 +18347,613,6907,3 +18348,613,6781,1 +18349,613,4117,1 +18350,613,3244,3 +18351,613,5797,2 +18352,613,3141,1 +18353,613,6168,1 +18354,613,4373,5 +18355,613,9284,2 +18356,614,8172,5 +18357,614,5090,4 +18358,614,5969,5 +18359,614,8764,4 +18360,614,9602,2 +18361,614,9786,1 +18362,614,5953,2 +18363,614,3490,2 +18364,614,1949,3 +18365,614,6486,2 +18366,614,927,3 +18367,614,1289,4 +18368,614,428,5 +18369,614,9550,1 +18370,614,238,1 +18371,615,4668,1 +18372,615,2025,5 +18373,615,9085,4 +18374,615,2424,2 +18375,615,7490,3 +18376,615,1088,3 +18377,615,4775,3 +18378,615,986,2 +18379,615,3284,1 +18380,615,5282,3 +18381,615,5108,1 +18382,615,155,4 +18383,615,6113,1 +18384,615,5212,5 +18385,615,1003,3 +18386,615,1862,5 +18387,615,2550,4 +18388,615,2056,5 +18389,615,4808,3 +18390,615,6942,2 +18391,615,9279,4 +18392,615,9246,1 +18393,615,3078,4 +18394,615,9334,2 +18395,615,4694,3 +18396,615,7849,1 +18397,615,1679,3 +18398,615,2398,2 +18399,615,1986,3 +18400,615,2862,5 +18401,615,2125,1 +18402,615,5116,2 +18403,615,7226,1 +18404,615,1881,1 +18405,615,3662,4 +18406,615,9259,2 +18407,615,4164,1 +18408,615,9744,1 +18409,615,76,4 +18410,615,9962,1 +18411,615,5054,5 +18412,615,4424,4 +18413,615,9671,3 +18414,615,8423,2 +18415,615,1508,4 +18416,615,5518,2 +18417,615,6981,3 +18418,615,7331,2 +18419,615,5979,3 +18420,616,3911,4 +18421,616,2821,2 +18422,616,6936,5 +18423,616,7116,3 +18424,616,9883,1 +18425,616,5437,5 +18426,616,2360,4 +18427,616,1573,3 +18428,616,1517,2 +18429,616,4892,3 +18430,616,6984,1 +18431,616,5564,3 +18432,616,9467,5 +18433,616,2520,2 +18434,616,6663,2 +18435,616,4590,4 +18436,616,8462,5 +18437,616,9791,3 +18438,616,1347,4 +18439,616,1477,5 +18440,616,2617,5 +18441,616,465,5 +18442,616,8183,1 +18443,616,3167,1 +18444,616,2609,3 +18445,616,4541,1 +18446,616,8772,5 +18447,616,1089,5 +18448,616,9435,5 +18449,616,5897,5 +18450,616,853,2 +18451,616,7059,1 +18452,616,8962,1 +18453,616,3490,5 +18454,616,5868,4 +18455,616,4665,1 +18456,616,6948,5 +18457,616,3570,5 +18458,617,9666,3 +18459,617,5714,2 +18460,617,463,2 +18461,617,4132,3 +18462,617,7860,3 +18463,617,578,4 +18464,617,6482,5 +18465,617,8343,3 +18466,617,7332,5 +18467,617,1771,5 +18468,617,9147,3 +18469,617,4514,3 +18470,617,8247,5 +18471,617,7126,2 +18472,617,6309,3 +18473,617,2442,4 +18474,617,9641,1 +18475,617,2760,3 +18476,617,9361,2 +18477,617,9763,2 +18478,617,3427,1 +18479,617,1894,4 +18480,617,8864,1 +18481,617,1648,4 +18482,617,3313,1 +18483,617,9835,4 +18484,617,2026,5 +18485,617,7614,4 +18486,617,4345,3 +18487,617,1720,3 +18488,617,7571,1 +18489,617,8023,1 +18490,617,120,5 +18491,617,8595,1 +18492,617,9792,2 +18493,617,6723,4 +18494,617,6975,5 +18495,617,6720,4 +18496,617,9534,1 +18497,617,4842,4 +18498,617,7958,2 +18499,617,1872,1 +18500,617,4812,2 +18501,617,1989,4 +18502,617,5451,4 +18503,617,6490,2 +18504,617,3237,5 +18505,617,6270,4 +18506,617,6319,4 +18507,617,1397,1 +18508,618,1102,5 +18509,618,624,4 +18510,618,5313,4 +18511,618,8065,4 +18512,618,4443,3 +18513,618,6885,5 +18514,618,8397,4 +18515,618,1418,5 +18516,618,2553,1 +18517,618,5750,2 +18518,618,907,5 +18519,618,2816,2 +18520,618,7555,2 +18521,618,5289,5 +18522,618,4105,1 +18523,618,313,4 +18524,618,743,5 +18525,618,6368,1 +18526,618,4626,5 +18527,618,8020,3 +18528,619,4409,4 +18529,619,8664,3 +18530,619,9740,1 +18531,619,4710,1 +18532,619,278,2 +18533,619,9527,1 +18534,619,2925,2 +18535,619,5704,3 +18536,619,2410,2 +18537,619,9119,2 +18538,619,4429,5 +18539,619,4038,2 +18540,619,5097,5 +18541,619,8649,5 +18542,619,4752,4 +18543,619,9377,3 +18544,619,7977,3 +18545,619,5992,2 +18546,619,9604,1 +18547,620,3055,4 +18548,620,4699,5 +18549,620,5457,2 +18550,620,8552,5 +18551,620,1445,2 +18552,620,8367,3 +18553,620,1063,2 +18554,620,436,1 +18555,620,5196,4 +18556,620,5540,1 +18557,620,1224,5 +18558,620,1744,2 +18559,620,5359,3 +18560,620,5691,2 +18561,620,2717,4 +18562,620,1172,3 +18563,620,7038,1 +18564,620,7740,1 +18565,620,8469,2 +18566,620,6533,4 +18567,620,4542,5 +18568,620,7218,4 +18569,620,2711,2 +18570,620,9416,1 +18571,620,9542,3 +18572,620,9636,1 +18573,620,3195,5 +18574,620,2697,2 +18575,620,3660,3 +18576,620,8662,3 +18577,620,6342,3 +18578,620,1616,2 +18579,620,7330,2 +18580,620,6508,2 +18581,620,1777,3 +18582,620,3824,5 +18583,620,8544,4 +18584,620,2657,2 +18585,620,7970,2 +18586,620,1272,4 +18587,620,2535,4 +18588,620,8442,5 +18589,620,1564,1 +18590,620,4086,3 +18591,621,4064,3 +18592,621,6918,1 +18593,621,3374,3 +18594,621,5550,4 +18595,621,7942,3 +18596,621,4159,5 +18597,621,8671,1 +18598,621,1670,4 +18599,621,8351,5 +18600,621,2575,4 +18601,621,6023,4 +18602,621,9523,4 +18603,621,852,5 +18604,621,3733,1 +18605,621,3569,3 +18606,621,9976,1 +18607,621,7784,2 +18608,621,9786,4 +18609,621,3735,3 +18610,621,5511,1 +18611,621,2271,4 +18612,621,9730,1 +18613,621,3200,1 +18614,621,4316,1 +18615,621,3191,5 +18616,621,1567,5 +18617,622,8577,5 +18618,622,5652,3 +18619,622,965,1 +18620,622,9332,4 +18621,622,8809,4 +18622,622,9718,1 +18623,622,7300,1 +18624,622,7616,1 +18625,622,4304,5 +18626,622,5821,1 +18627,622,7114,5 +18628,623,6463,2 +18629,623,7794,4 +18630,623,5525,5 +18631,623,6872,4 +18632,623,2827,2 +18633,623,6976,1 +18634,623,498,4 +18635,623,4761,3 +18636,623,9244,4 +18637,623,8035,5 +18638,623,7569,5 +18639,623,5763,4 +18640,623,7983,2 +18641,623,6792,5 +18642,623,2650,5 +18643,623,1205,1 +18644,623,6306,1 +18645,623,3700,3 +18646,623,43,3 +18647,623,7717,3 +18648,623,1702,2 +18649,623,4541,1 +18650,623,6833,5 +18651,623,1920,3 +18652,623,9239,2 +18653,623,5125,5 +18654,623,9440,4 +18655,623,3255,1 +18656,623,8312,4 +18657,623,2579,1 +18658,623,8768,4 +18659,623,9942,3 +18660,623,7189,5 +18661,623,1254,1 +18662,623,8758,5 +18663,623,3928,5 +18664,623,7749,5 +18665,623,9038,2 +18666,623,860,1 +18667,624,9397,5 +18668,624,6462,3 +18669,624,365,3 +18670,624,3268,2 +18671,624,3499,1 +18672,624,8424,4 +18673,624,7020,5 +18674,624,325,1 +18675,624,9054,1 +18676,624,8968,2 +18677,624,8749,5 +18678,624,5625,5 +18679,624,8775,3 +18680,625,7204,4 +18681,625,7764,4 +18682,625,731,2 +18683,625,1819,1 +18684,625,9514,4 +18685,625,5595,1 +18686,625,5284,5 +18687,625,2794,1 +18688,625,120,3 +18689,625,3784,3 +18690,625,4489,1 +18691,625,3794,2 +18692,625,8724,1 +18693,625,9780,4 +18694,625,3442,1 +18695,625,6127,4 +18696,625,7425,4 +18697,625,5571,3 +18698,625,2869,2 +18699,625,3584,4 +18700,625,7064,5 +18701,625,5781,4 +18702,625,5810,5 +18703,625,7388,2 +18704,625,7283,4 +18705,625,8763,5 +18706,625,8289,5 +18707,625,1149,2 +18708,625,9856,2 +18709,625,5549,2 +18710,625,1131,1 +18711,625,8444,4 +18712,625,9957,5 +18713,625,9703,3 +18714,625,1628,3 +18715,625,3607,2 +18716,625,403,5 +18717,625,2965,2 +18718,625,5815,3 +18719,625,8672,3 +18720,625,7195,2 +18721,625,2400,2 +18722,625,7201,2 +18723,625,7695,1 +18724,626,7379,1 +18725,626,5965,4 +18726,626,2035,1 +18727,626,727,1 +18728,626,189,4 +18729,626,3201,1 +18730,626,3698,1 +18731,626,8443,5 +18732,626,8420,3 +18733,626,1490,3 +18734,626,1663,1 +18735,626,9885,3 +18736,626,3114,1 +18737,626,2781,2 +18738,626,8259,1 +18739,626,386,3 +18740,626,3725,2 +18741,626,193,1 +18742,626,9074,3 +18743,626,4699,5 +18744,626,8456,1 +18745,626,8123,5 +18746,626,3694,2 +18747,626,6018,1 +18748,626,9233,5 +18749,626,6431,2 +18750,626,7216,1 +18751,626,278,1 +18752,626,7857,5 +18753,626,3868,1 +18754,626,986,3 +18755,626,7545,3 +18756,626,6100,1 +18757,626,7078,3 +18758,626,2029,5 +18759,626,7285,1 +18760,626,5071,2 +18761,626,921,3 +18762,627,1001,3 +18763,627,3839,5 +18764,627,8527,3 +18765,627,2039,1 +18766,627,68,2 +18767,627,4120,4 +18768,627,9719,4 +18769,627,2254,1 +18770,627,1754,4 +18771,627,6846,4 +18772,627,7794,4 +18773,627,8505,1 +18774,627,3138,2 +18775,627,4681,5 +18776,627,9489,1 +18777,627,8841,5 +18778,627,1786,1 +18779,627,1211,1 +18780,627,4081,3 +18781,627,8697,3 +18782,627,7043,5 +18783,627,4423,3 +18784,627,544,5 +18785,627,3052,2 +18786,627,6947,4 +18787,628,3790,5 +18788,628,7029,5 +18789,628,7905,1 +18790,628,2982,4 +18791,628,1323,3 +18792,628,1843,1 +18793,628,7387,1 +18794,628,6133,5 +18795,628,6485,5 +18796,628,1550,1 +18797,628,6108,4 +18798,628,2323,3 +18799,628,360,5 +18800,628,2992,4 +18801,628,385,3 +18802,628,3706,2 +18803,628,9851,2 +18804,628,2270,5 +18805,628,2638,5 +18806,628,6434,3 +18807,628,2825,3 +18808,628,9122,3 +18809,628,1993,4 +18810,628,4731,3 +18811,628,7163,3 +18812,628,1701,1 +18813,628,193,1 +18814,628,3418,1 +18815,628,4810,4 +18816,628,5262,1 +18817,628,9506,4 +18818,628,4760,1 +18819,628,7359,5 +18820,628,3360,1 +18821,628,6459,1 +18822,628,4296,3 +18823,628,9067,1 +18824,628,8271,1 +18825,628,5251,3 +18826,628,5164,1 +18827,628,7794,5 +18828,628,7101,4 +18829,628,3357,1 +18830,628,9214,3 +18831,628,6724,4 +18832,628,6179,4 +18833,629,4302,3 +18834,629,3030,3 +18835,629,623,3 +18836,629,151,3 +18837,629,8272,1 +18838,629,4233,5 +18839,629,495,5 +18840,629,9693,5 +18841,629,9187,4 +18842,629,7317,3 +18843,629,1497,5 +18844,629,8584,4 +18845,629,998,3 +18846,629,7393,3 +18847,629,7142,5 +18848,629,8749,1 +18849,630,2981,5 +18850,630,9147,3 +18851,630,7943,1 +18852,630,3262,1 +18853,630,8205,1 +18854,630,5881,5 +18855,630,3733,2 +18856,630,1884,4 +18857,630,6246,5 +18858,630,2601,5 +18859,630,7045,5 +18860,630,8278,5 +18861,630,7692,3 +18862,630,2066,5 +18863,630,2653,4 +18864,630,6410,1 +18865,630,4817,4 +18866,630,3613,5 +18867,630,2359,1 +18868,630,2271,2 +18869,630,5460,5 +18870,630,2192,3 +18871,630,4962,3 +18872,630,3549,5 +18873,630,5863,5 +18874,630,5338,4 +18875,630,7663,3 +18876,630,3539,2 +18877,631,171,4 +18878,631,256,5 +18879,631,6393,4 +18880,631,1897,1 +18881,631,5491,1 +18882,631,4113,2 +18883,631,9189,2 +18884,631,9421,1 +18885,631,614,4 +18886,631,6037,3 +18887,631,3594,5 +18888,631,2336,2 +18889,631,2556,2 +18890,631,2905,3 +18891,631,3772,2 +18892,631,1733,4 +18893,631,3421,1 +18894,631,3364,3 +18895,631,5534,5 +18896,631,558,1 +18897,631,9951,4 +18898,631,4186,3 +18899,631,6372,5 +18900,631,5832,2 +18901,631,1624,5 +18902,631,1183,3 +18903,631,3846,4 +18904,631,2167,2 +18905,631,9335,1 +18906,631,8703,5 +18907,631,3137,5 +18908,632,1245,2 +18909,632,4994,4 +18910,632,4002,1 +18911,632,3590,1 +18912,632,7269,2 +18913,632,5076,4 +18914,632,4087,4 +18915,632,1522,4 +18916,632,4787,5 +18917,632,2559,3 +18918,632,7383,1 +18919,632,9001,3 +18920,632,1519,3 +18921,632,4198,3 +18922,632,3007,2 +18923,632,6653,5 +18924,632,4681,3 +18925,632,5196,1 +18926,632,8723,2 +18927,632,929,2 +18928,632,2931,3 +18929,632,3126,5 +18930,632,7929,3 +18931,632,2560,5 +18932,632,1331,1 +18933,632,7574,3 +18934,632,3597,1 +18935,632,475,1 +18936,632,3487,2 +18937,632,1925,3 +18938,632,7437,3 +18939,633,1203,2 +18940,633,3941,3 +18941,633,2868,4 +18942,633,2869,3 +18943,633,1592,2 +18944,633,1564,1 +18945,633,5310,2 +18946,633,4324,4 +18947,633,3388,5 +18948,633,728,3 +18949,633,9979,3 +18950,633,1464,1 +18951,633,4612,1 +18952,633,1607,1 +18953,633,1455,3 +18954,633,7570,3 +18955,633,6648,1 +18956,633,7403,2 +18957,633,4294,1 +18958,633,1430,5 +18959,634,604,3 +18960,634,5733,4 +18961,634,5132,4 +18962,634,8697,5 +18963,634,8988,3 +18964,634,1037,1 +18965,634,3807,4 +18966,634,1278,4 +18967,634,9093,2 +18968,634,5949,2 +18969,634,1951,2 +18970,634,4253,2 +18971,634,1173,3 +18972,634,2742,4 +18973,634,5966,5 +18974,634,2741,1 +18975,634,8950,5 +18976,634,4839,5 +18977,634,4668,2 +18978,634,6799,4 +18979,634,1122,5 +18980,634,5339,1 +18981,634,4986,4 +18982,634,5783,5 +18983,634,7695,2 +18984,634,1377,3 +18985,634,3889,1 +18986,634,3218,5 +18987,634,5082,5 +18988,634,6824,3 +18989,634,997,5 +18990,634,7181,3 +18991,635,1214,2 +18992,635,8649,1 +18993,635,4035,2 +18994,635,1301,2 +18995,635,6190,3 +18996,635,4304,2 +18997,635,1062,5 +18998,635,835,1 +18999,635,2624,1 +19000,635,3863,4 +19001,635,1485,4 +19002,635,5119,1 +19003,636,1064,2 +19004,636,3544,3 +19005,636,847,2 +19006,636,4094,3 +19007,636,6983,5 +19008,636,3699,4 +19009,636,7426,3 +19010,636,1412,4 +19011,636,8365,2 +19012,636,7779,3 +19013,636,8964,4 +19014,636,2136,1 +19015,636,845,2 +19016,636,4739,2 +19017,636,7239,2 +19018,636,5563,5 +19019,636,2713,4 +19020,636,5398,2 +19021,636,7063,4 +19022,636,4515,5 +19023,636,3101,4 +19024,636,4876,5 +19025,636,7939,1 +19026,636,9855,1 +19027,636,9084,4 +19028,636,5030,5 +19029,636,955,4 +19030,636,448,5 +19031,636,7833,3 +19032,637,4262,1 +19033,637,8456,1 +19034,637,966,4 +19035,637,6615,1 +19036,637,7452,5 +19037,637,3626,5 +19038,637,1018,5 +19039,637,8951,1 +19040,637,7711,1 +19041,637,1526,5 +19042,637,6623,2 +19043,637,5777,2 +19044,637,1433,4 +19045,637,7823,5 +19046,637,1422,5 +19047,637,7730,5 +19048,637,9465,1 +19049,637,1612,1 +19050,637,8322,3 +19051,637,9681,4 +19052,638,3921,3 +19053,638,1473,2 +19054,638,5712,5 +19055,638,4634,5 +19056,638,5644,2 +19057,638,3386,3 +19058,638,8001,4 +19059,638,2462,2 +19060,638,9944,1 +19061,638,6854,1 +19062,638,9233,3 +19063,638,1882,2 +19064,638,6174,2 +19065,638,1961,2 +19066,638,2078,1 +19067,638,9156,5 +19068,638,6638,3 +19069,638,4507,1 +19070,638,905,5 +19071,639,9064,5 +19072,639,9555,5 +19073,639,4549,1 +19074,639,4239,3 +19075,639,2510,3 +19076,639,8920,1 +19077,639,1814,1 +19078,639,521,5 +19079,639,8207,5 +19080,639,4094,4 +19081,639,449,2 +19082,639,6028,2 +19083,639,5034,3 +19084,639,6287,2 +19085,639,4664,5 +19086,639,8990,5 +19087,639,2909,3 +19088,639,688,2 +19089,639,6714,1 +19090,639,4296,5 +19091,639,3705,3 +19092,639,7294,1 +19093,639,955,1 +19094,639,6346,5 +19095,639,8477,1 +19096,639,2459,1 +19097,639,2055,5 +19098,639,2667,4 +19099,639,1043,1 +19100,639,9022,3 +19101,639,5656,4 +19102,639,2475,3 +19103,639,5911,2 +19104,639,9843,2 +19105,639,2365,3 +19106,639,5712,5 +19107,639,3513,4 +19108,639,4544,3 +19109,639,3786,4 +19110,639,2169,2 +19111,640,7304,1 +19112,640,2198,4 +19113,640,9965,4 +19114,640,2219,3 +19115,640,2329,3 +19116,640,2779,5 +19117,640,1711,3 +19118,640,2844,1 +19119,640,7857,3 +19120,640,7552,1 +19121,640,8192,3 +19122,640,625,1 +19123,640,6852,2 +19124,640,5519,4 +19125,640,9869,5 +19126,640,3908,3 +19127,640,4000,1 +19128,640,8855,3 +19129,640,6243,3 +19130,640,989,3 +19131,640,2747,4 +19132,640,1890,3 +19133,640,7744,4 +19134,640,6325,2 +19135,640,6885,2 +19136,640,1219,2 +19137,640,8440,2 +19138,640,5146,2 +19139,640,1867,4 +19140,640,1069,2 +19141,640,2254,4 +19142,640,8129,5 +19143,640,6105,1 +19144,640,9643,5 +19145,640,6531,3 +19146,640,3310,3 +19147,640,740,5 +19148,640,58,2 +19149,640,1288,2 +19150,640,734,4 +19151,640,9124,2 +19152,640,9584,2 +19153,640,667,4 +19154,640,8352,4 +19155,640,3798,5 +19156,640,1188,5 +19157,640,9928,5 +19158,640,7542,1 +19159,640,3849,2 +19160,641,2481,4 +19161,641,8730,5 +19162,641,3363,1 +19163,641,8365,2 +19164,641,6391,4 +19165,641,4797,4 +19166,641,3693,1 +19167,641,8341,1 +19168,641,4072,5 +19169,641,3200,3 +19170,641,1327,2 +19171,641,9948,5 +19172,641,3710,2 +19173,641,4302,4 +19174,641,5628,4 +19175,641,4251,5 +19176,641,3080,4 +19177,641,7957,3 +19178,641,1998,2 +19179,641,685,1 +19180,641,6420,5 +19181,641,9125,1 +19182,642,2112,1 +19183,642,8377,2 +19184,642,1292,5 +19185,642,18,5 +19186,642,8077,2 +19187,642,4984,3 +19188,642,2173,3 +19189,642,6373,1 +19190,642,4062,4 +19191,642,102,2 +19192,642,9676,5 +19193,642,5428,4 +19194,642,6432,4 +19195,642,7203,1 +19196,642,3424,3 +19197,642,2242,3 +19198,642,4024,3 +19199,642,4086,1 +19200,642,1789,2 +19201,642,341,1 +19202,642,5224,4 +19203,642,9975,1 +19204,642,4603,4 +19205,642,1296,3 +19206,642,4254,2 +19207,642,735,3 +19208,642,1628,5 +19209,642,7911,2 +19210,642,9611,1 +19211,642,6687,3 +19212,642,3776,2 +19213,642,7061,5 +19214,642,390,5 +19215,642,1746,5 +19216,642,4954,5 +19217,642,2004,2 +19218,642,7678,5 +19219,642,9885,2 +19220,642,9995,3 +19221,642,1089,3 +19222,643,4598,2 +19223,643,4096,3 +19224,643,5285,4 +19225,643,5551,1 +19226,643,3173,3 +19227,643,5938,4 +19228,643,2771,2 +19229,643,3580,3 +19230,643,2430,1 +19231,643,7944,3 +19232,643,8676,5 +19233,643,9553,1 +19234,643,3697,3 +19235,644,3641,4 +19236,644,51,4 +19237,644,3735,2 +19238,644,9968,3 +19239,644,8948,5 +19240,644,9158,3 +19241,644,8170,1 +19242,644,7857,2 +19243,644,2062,3 +19244,644,5785,3 +19245,644,3710,2 +19246,644,8591,3 +19247,644,9000,1 +19248,644,6365,5 +19249,645,1989,4 +19250,645,2013,3 +19251,645,1445,2 +19252,645,6359,5 +19253,645,2407,1 +19254,645,8245,3 +19255,645,8658,4 +19256,645,4021,1 +19257,645,3536,3 +19258,645,3955,5 +19259,645,978,5 +19260,645,8124,1 +19261,645,390,3 +19262,645,7224,3 +19263,645,4132,2 +19264,645,6514,2 +19265,645,6319,3 +19266,645,8921,5 +19267,645,5772,5 +19268,645,8649,2 +19269,645,6874,4 +19270,645,3993,1 +19271,645,5368,3 +19272,645,2156,5 +19273,645,2326,3 +19274,645,7754,4 +19275,645,2891,3 +19276,645,4634,1 +19277,645,3271,1 +19278,645,2766,2 +19279,645,3600,1 +19280,645,1487,3 +19281,645,6232,2 +19282,645,1494,3 +19283,645,9395,1 +19284,645,6735,4 +19285,645,7403,1 +19286,645,2449,2 +19287,645,2568,2 +19288,645,3443,5 +19289,645,3290,1 +19290,645,4126,4 +19291,645,6666,2 +19292,645,3302,1 +19293,645,6750,1 +19294,646,1355,4 +19295,646,702,1 +19296,646,4989,4 +19297,646,1613,4 +19298,646,644,1 +19299,646,8539,1 +19300,646,7358,2 +19301,646,1505,1 +19302,646,93,1 +19303,646,249,2 +19304,646,8937,1 +19305,646,9519,3 +19306,646,2526,4 +19307,646,1675,5 +19308,646,1351,5 +19309,646,5714,5 +19310,646,1335,2 +19311,646,5437,3 +19312,646,2462,1 +19313,646,1051,2 +19314,646,5165,2 +19315,646,7640,1 +19316,646,951,5 +19317,646,6255,5 +19318,646,247,5 +19319,646,4125,5 +19320,646,9397,1 +19321,647,9726,2 +19322,647,9127,3 +19323,647,2603,3 +19324,647,6286,4 +19325,647,2516,3 +19326,647,9046,3 +19327,647,4217,5 +19328,647,7590,4 +19329,647,9755,5 +19330,647,3938,3 +19331,647,7458,1 +19332,647,3879,3 +19333,647,6437,4 +19334,647,9700,5 +19335,647,4701,5 +19336,647,5336,4 +19337,647,5140,3 +19338,647,6803,5 +19339,647,3589,2 +19340,647,6027,5 +19341,647,2826,4 +19342,647,5732,4 +19343,647,4102,3 +19344,647,8416,4 +19345,647,166,4 +19346,647,1984,4 +19347,647,6104,4 +19348,647,4160,2 +19349,647,2214,5 +19350,647,7874,1 +19351,647,382,1 +19352,647,288,5 +19353,647,1826,2 +19354,647,8795,4 +19355,647,3504,3 +19356,647,746,2 +19357,647,8893,2 +19358,647,2588,3 +19359,647,9264,2 +19360,647,1493,3 +19361,647,5416,5 +19362,647,7410,3 +19363,647,4678,4 +19364,647,3790,3 +19365,647,7426,2 +19366,647,4272,3 +19367,647,9396,2 +19368,648,2677,1 +19369,648,7914,2 +19370,648,465,2 +19371,648,8751,3 +19372,648,8050,2 +19373,648,3256,1 +19374,648,9123,3 +19375,648,2263,5 +19376,648,5707,5 +19377,648,8403,3 +19378,648,5643,4 +19379,648,2776,3 +19380,648,8065,4 +19381,648,7039,5 +19382,648,8397,1 +19383,648,7312,3 +19384,648,1478,5 +19385,648,9906,1 +19386,648,4470,3 +19387,648,134,5 +19388,648,9865,4 +19389,648,3855,4 +19390,648,6945,5 +19391,648,8781,4 +19392,648,2014,4 +19393,648,8717,2 +19394,648,8261,1 +19395,648,6625,5 +19396,648,6532,5 +19397,648,9276,2 +19398,648,1741,2 +19399,648,373,4 +19400,648,1819,4 +19401,648,7660,3 +19402,648,7775,4 +19403,648,4752,5 +19404,648,6580,1 +19405,648,4435,4 +19406,648,4533,4 +19407,648,8914,2 +19408,648,6865,2 +19409,648,5322,1 +19410,648,5663,1 +19411,648,6615,2 +19412,648,1261,4 +19413,648,8830,1 +19414,649,7879,4 +19415,649,7851,2 +19416,649,9317,5 +19417,649,2801,4 +19418,649,4342,1 +19419,649,7341,2 +19420,649,6297,2 +19421,649,4913,1 +19422,649,5682,3 +19423,649,5401,5 +19424,649,8058,2 +19425,649,9053,1 +19426,649,5110,5 +19427,649,3691,5 +19428,649,9525,4 +19429,649,9239,4 +19430,649,5797,4 +19431,649,8426,2 +19432,649,1401,4 +19433,649,101,2 +19434,649,2539,5 +19435,649,6852,2 +19436,649,1863,5 +19437,649,2727,2 +19438,649,5832,3 +19439,649,6385,2 +19440,649,3882,5 +19441,649,3810,5 +19442,649,6623,3 +19443,650,4264,1 +19444,650,6781,5 +19445,650,2369,1 +19446,650,5466,2 +19447,650,4054,2 +19448,650,1012,5 +19449,650,5925,1 +19450,650,4065,4 +19451,650,9403,1 +19452,650,3564,1 +19453,650,1689,3 +19454,651,5327,1 +19455,651,8233,3 +19456,651,5754,1 +19457,651,8845,2 +19458,651,7030,5 +19459,651,9111,5 +19460,651,3311,3 +19461,651,8486,5 +19462,651,8133,1 +19463,651,3827,2 +19464,651,5337,2 +19465,651,8591,5 +19466,651,3508,4 +19467,651,1881,4 +19468,651,7072,5 +19469,651,9719,5 +19470,651,1105,3 +19471,651,5481,1 +19472,651,361,5 +19473,651,8048,3 +19474,651,2999,2 +19475,651,2431,5 +19476,651,3288,2 +19477,651,4785,5 +19478,651,5541,4 +19479,651,6991,3 +19480,651,7375,2 +19481,651,1899,5 +19482,651,7224,3 +19483,651,1248,5 +19484,651,2298,3 +19485,651,7309,1 +19486,651,6746,1 +19487,651,6802,3 +19488,651,7088,3 +19489,651,1253,5 +19490,651,1215,1 +19491,651,8212,4 +19492,651,751,5 +19493,651,444,4 +19494,651,885,3 +19495,651,3644,1 +19496,651,1058,5 +19497,651,5724,2 +19498,651,9870,5 +19499,651,1245,5 +19500,651,3872,2 +19501,652,5050,2 +19502,652,7075,5 +19503,652,527,1 +19504,652,4858,1 +19505,652,4075,5 +19506,652,8530,2 +19507,652,2740,3 +19508,652,8074,3 +19509,652,1048,2 +19510,652,1630,4 +19511,652,4208,4 +19512,652,495,3 +19513,652,1613,2 +19514,652,5674,3 +19515,652,6534,5 +19516,652,6124,5 +19517,652,9957,5 +19518,652,6052,1 +19519,652,5461,3 +19520,652,8689,4 +19521,652,5306,1 +19522,652,5036,1 +19523,652,2589,5 +19524,652,6194,2 +19525,652,7802,2 +19526,652,6110,4 +19527,652,6647,5 +19528,652,7667,5 +19529,652,7716,3 +19530,652,120,4 +19531,652,8970,2 +19532,652,4152,2 +19533,652,4586,3 +19534,652,6145,5 +19535,652,498,3 +19536,652,3724,1 +19537,652,8392,2 +19538,652,7881,1 +19539,652,3958,5 +19540,652,1541,2 +19541,652,7360,2 +19542,652,6497,5 +19543,652,2412,4 +19544,652,1991,5 +19545,652,3396,3 +19546,652,7397,2 +19547,652,5819,5 +19548,652,8373,5 +19549,652,2547,4 +19550,652,2157,1 +19551,653,9257,4 +19552,653,7612,1 +19553,653,3287,5 +19554,653,8203,3 +19555,653,6619,4 +19556,653,6197,2 +19557,653,4966,3 +19558,653,9328,5 +19559,653,9889,3 +19560,653,9613,2 +19561,653,5886,4 +19562,653,9679,3 +19563,653,4363,5 +19564,653,3869,2 +19565,653,471,1 +19566,653,8025,4 +19567,653,4613,2 +19568,653,8818,3 +19569,653,3422,2 +19570,653,2706,2 +19571,653,7743,1 +19572,653,3545,2 +19573,653,9602,5 +19574,653,8843,4 +19575,653,8807,3 +19576,653,4916,3 +19577,653,7190,2 +19578,653,4116,5 +19579,653,327,1 +19580,653,9943,2 +19581,653,1076,4 +19582,653,3720,5 +19583,653,1613,3 +19584,653,5121,3 +19585,653,64,3 +19586,653,8494,4 +19587,653,9080,1 +19588,653,861,3 +19589,653,151,4 +19590,653,9435,2 +19591,653,5177,4 +19592,653,7053,2 +19593,653,2009,2 +19594,653,2803,4 +19595,653,2582,3 +19596,654,1325,4 +19597,654,5133,4 +19598,654,1103,4 +19599,654,2490,2 +19600,654,928,3 +19601,654,7881,3 +19602,654,1385,4 +19603,654,9634,3 +19604,654,1252,5 +19605,654,4389,5 +19606,654,9464,3 +19607,654,9819,3 +19608,654,653,4 +19609,654,6447,4 +19610,654,6735,1 +19611,654,3736,4 +19612,654,3753,1 +19613,654,3548,2 +19614,654,8469,4 +19615,654,6907,4 +19616,654,3036,5 +19617,654,8355,5 +19618,654,5535,3 +19619,654,3534,1 +19620,654,9901,5 +19621,654,9639,1 +19622,654,8265,5 +19623,654,1693,4 +19624,654,9472,4 +19625,654,5618,1 +19626,654,3593,2 +19627,654,7184,3 +19628,654,8968,3 +19629,654,1898,1 +19630,654,7473,5 +19631,654,2563,4 +19632,654,3622,2 +19633,654,1036,2 +19634,654,615,1 +19635,654,9440,5 +19636,654,8430,3 +19637,655,6810,4 +19638,655,1498,1 +19639,655,2130,3 +19640,655,3334,3 +19641,655,2133,4 +19642,655,1180,2 +19643,655,924,3 +19644,655,3531,3 +19645,655,5392,4 +19646,655,6274,1 +19647,655,6052,3 +19648,655,3940,4 +19649,655,9230,1 +19650,655,3749,4 +19651,655,6523,1 +19652,655,8713,2 +19653,655,9663,4 +19654,655,4373,5 +19655,655,2890,3 +19656,655,5839,3 +19657,655,307,4 +19658,655,9308,4 +19659,655,9131,3 +19660,655,6400,3 +19661,655,8762,1 +19662,655,6167,3 +19663,655,864,2 +19664,655,3073,2 +19665,655,8874,4 +19666,655,5168,5 +19667,655,9113,5 +19668,655,2518,2 +19669,655,1409,2 +19670,655,6801,5 +19671,655,1662,2 +19672,655,9292,5 +19673,655,6291,5 +19674,655,8003,5 +19675,656,5574,1 +19676,656,9799,5 +19677,656,5925,1 +19678,656,3084,5 +19679,656,423,5 +19680,656,2957,5 +19681,656,7905,1 +19682,656,6075,2 +19683,656,9738,2 +19684,656,7417,2 +19685,656,2922,5 +19686,656,1730,5 +19687,656,6022,4 +19688,656,8508,1 +19689,656,8922,5 +19690,656,6106,5 +19691,656,8850,1 +19692,656,6400,4 +19693,656,4149,1 +19694,656,5577,4 +19695,656,4341,5 +19696,656,6607,4 +19697,656,5110,5 +19698,656,4792,3 +19699,656,8510,1 +19700,656,8612,5 +19701,656,752,2 +19702,656,211,4 +19703,656,5325,1 +19704,656,3306,4 +19705,656,7870,4 +19706,656,3131,1 +19707,656,9976,3 +19708,656,6424,2 +19709,656,4867,2 +19710,656,5589,4 +19711,656,853,4 +19712,656,2787,1 +19713,656,6195,3 +19714,656,7621,4 +19715,657,8641,2 +19716,657,6255,2 +19717,657,3322,5 +19718,657,5534,5 +19719,657,6832,3 +19720,657,8660,5 +19721,657,2821,3 +19722,657,6461,4 +19723,657,4516,1 +19724,657,6481,2 +19725,657,1713,4 +19726,657,1043,5 +19727,657,4629,2 +19728,657,1673,1 +19729,657,2017,3 +19730,657,8206,5 +19731,657,9109,1 +19732,657,7076,4 +19733,657,7897,3 +19734,657,8604,2 +19735,657,4876,3 +19736,657,8348,1 +19737,657,7304,2 +19738,657,4965,1 +19739,657,6998,1 +19740,657,4335,5 +19741,657,9024,1 +19742,657,8788,5 +19743,657,3045,4 +19744,657,3152,2 +19745,657,9412,3 +19746,657,2901,2 +19747,657,5073,4 +19748,658,2053,3 +19749,658,5898,5 +19750,658,5557,3 +19751,658,1821,2 +19752,658,9423,5 +19753,658,6540,1 +19754,658,5322,4 +19755,658,2443,3 +19756,658,7656,1 +19757,658,1673,2 +19758,658,9968,4 +19759,658,9034,3 +19760,658,9818,2 +19761,658,9516,1 +19762,658,6793,1 +19763,658,8175,1 +19764,658,2893,4 +19765,658,9826,4 +19766,658,2621,3 +19767,658,872,4 +19768,658,4218,1 +19769,659,4256,1 +19770,659,8024,2 +19771,659,6350,5 +19772,659,90,5 +19773,659,9470,4 +19774,659,9565,2 +19775,659,8501,4 +19776,659,4823,2 +19777,659,7969,5 +19778,659,2070,1 +19779,659,6071,5 +19780,659,8287,4 +19781,660,9086,2 +19782,660,533,2 +19783,660,8720,4 +19784,660,1118,5 +19785,660,3210,5 +19786,660,2415,2 +19787,660,7190,1 +19788,660,596,5 +19789,660,1886,5 +19790,660,2590,5 +19791,660,9258,2 +19792,660,597,5 +19793,660,2136,1 +19794,660,8987,3 +19795,660,6068,1 +19796,660,9319,1 +19797,660,4546,5 +19798,660,5156,1 +19799,660,2396,3 +19800,660,7334,4 +19801,660,7312,3 +19802,660,1813,2 +19803,660,2696,4 +19804,660,1087,5 +19805,660,8774,2 +19806,660,5603,4 +19807,660,8090,3 +19808,660,9763,5 +19809,660,7510,2 +19810,660,9332,3 +19811,660,8212,5 +19812,660,1111,5 +19813,660,4999,2 +19814,660,8778,1 +19815,660,5797,2 +19816,660,9261,2 +19817,661,9039,4 +19818,661,6513,4 +19819,661,2805,2 +19820,661,4178,5 +19821,661,7287,4 +19822,661,8582,1 +19823,661,6918,2 +19824,661,2976,2 +19825,661,1678,5 +19826,661,4788,1 +19827,661,1908,5 +19828,661,6965,3 +19829,661,5150,4 +19830,661,2776,2 +19831,661,5491,4 +19832,661,9335,4 +19833,661,4368,3 +19834,661,6648,4 +19835,661,2641,2 +19836,661,7052,3 +19837,661,2135,3 +19838,661,5716,5 +19839,661,4544,1 +19840,661,9502,4 +19841,662,9380,2 +19842,662,8870,2 +19843,662,7566,3 +19844,662,7553,4 +19845,662,7808,3 +19846,662,8389,5 +19847,662,8186,3 +19848,662,1152,3 +19849,662,8270,2 +19850,662,8194,5 +19851,663,880,2 +19852,663,4831,4 +19853,663,7616,5 +19854,663,1123,5 +19855,663,6840,1 +19856,663,2035,5 +19857,663,8059,1 +19858,663,6741,5 +19859,663,1176,1 +19860,663,3393,4 +19861,663,8702,1 +19862,663,4724,4 +19863,664,7107,4 +19864,664,7381,3 +19865,664,5108,1 +19866,664,9083,2 +19867,664,1751,4 +19868,664,7811,2 +19869,664,326,1 +19870,664,6680,4 +19871,664,5320,2 +19872,664,4278,2 +19873,665,8713,3 +19874,665,6286,1 +19875,665,9368,1 +19876,665,7632,3 +19877,665,337,3 +19878,665,8000,1 +19879,665,8710,5 +19880,665,1561,5 +19881,665,5925,5 +19882,665,6922,4 +19883,665,7078,5 +19884,665,9510,1 +19885,665,8435,1 +19886,665,4925,1 +19887,665,8334,2 +19888,665,3635,5 +19889,665,2288,2 +19890,665,8114,3 +19891,665,4958,5 +19892,665,1078,3 +19893,665,4583,3 +19894,665,3172,1 +19895,665,5678,1 +19896,665,3770,2 +19897,665,1851,2 +19898,665,1047,3 +19899,665,4484,5 +19900,666,4837,2 +19901,666,9948,2 +19902,666,2758,5 +19903,666,4169,4 +19904,666,4888,1 +19905,666,895,3 +19906,666,207,5 +19907,666,7050,1 +19908,666,2760,2 +19909,666,6003,3 +19910,666,8406,3 +19911,666,634,2 +19912,666,8381,1 +19913,666,2632,4 +19914,666,3920,2 +19915,666,9457,1 +19916,666,4561,1 +19917,666,9203,2 +19918,666,5887,5 +19919,666,6171,2 +19920,666,9859,4 +19921,666,9068,2 +19922,666,7468,5 +19923,666,3293,3 +19924,666,1629,5 +19925,666,857,1 +19926,666,5095,5 +19927,666,4295,3 +19928,666,6053,4 +19929,666,5611,3 +19930,666,3077,5 +19931,666,4199,2 +19932,666,210,5 +19933,666,4537,5 +19934,666,7231,4 +19935,666,1534,3 +19936,666,3294,3 +19937,666,2892,3 +19938,666,3145,2 +19939,666,2930,2 +19940,666,5166,5 +19941,666,3967,2 +19942,666,7975,2 +19943,666,5859,2 +19944,667,4516,5 +19945,667,2977,5 +19946,667,7627,3 +19947,667,3553,3 +19948,667,4984,4 +19949,667,2999,3 +19950,667,3862,1 +19951,667,4060,5 +19952,667,5777,4 +19953,667,5742,3 +19954,667,1432,5 +19955,667,6580,3 +19956,667,3302,1 +19957,667,2372,1 +19958,667,1043,1 +19959,667,558,1 +19960,667,3498,5 +19961,667,5982,4 +19962,667,4761,3 +19963,667,2092,4 +19964,667,6965,2 +19965,667,2856,5 +19966,667,8056,1 +19967,667,3116,3 +19968,667,3723,2 +19969,667,4553,5 +19970,667,3790,5 +19971,667,46,3 +19972,667,8641,5 +19973,667,4652,3 +19974,667,3186,5 +19975,667,5690,2 +19976,667,8539,2 +19977,667,914,4 +19978,667,3007,1 +19979,667,7666,4 +19980,667,9542,3 +19981,667,9600,3 +19982,667,7008,3 +19983,667,7348,3 +19984,668,8174,3 +19985,668,3545,2 +19986,668,1565,1 +19987,668,3357,2 +19988,668,3228,3 +19989,668,9167,4 +19990,668,9779,5 +19991,668,6206,4 +19992,668,5361,4 +19993,668,2234,1 +19994,668,4240,3 +19995,668,499,3 +19996,668,1532,2 +19997,668,447,4 +19998,668,8073,2 +19999,668,6348,3 +20000,668,8859,4 +20001,668,5440,4 +20002,668,4753,4 +20003,668,7764,2 +20004,668,7676,1 +20005,668,640,3 +20006,668,5765,2 +20007,668,85,3 +20008,668,7414,3 +20009,668,3446,1 +20010,668,2781,1 +20011,668,4141,5 +20012,668,6454,5 +20013,668,5560,2 +20014,668,2187,5 +20015,668,2639,3 +20016,668,9591,4 +20017,668,8346,3 +20018,668,7473,1 +20019,668,7394,3 +20020,668,6830,2 +20021,668,2061,5 +20022,668,4083,2 +20023,669,1448,4 +20024,669,8680,2 +20025,669,9241,1 +20026,669,3658,3 +20027,669,5253,4 +20028,669,5802,3 +20029,669,899,5 +20030,669,299,1 +20031,669,7577,5 +20032,669,2250,3 +20033,669,4025,2 +20034,669,1234,4 +20035,669,1792,5 +20036,669,356,5 +20037,669,4883,1 +20038,669,1232,2 +20039,669,3025,5 +20040,669,2216,3 +20041,669,5162,3 +20042,669,8040,3 +20043,669,5896,5 +20044,669,2395,4 +20045,669,5248,2 +20046,669,2264,1 +20047,669,1102,3 +20048,669,591,1 +20049,669,4350,1 +20050,669,7609,4 +20051,669,9261,4 +20052,669,2351,1 +20053,669,7764,1 +20054,669,1133,3 +20055,669,2545,5 +20056,669,4183,5 +20057,669,1358,2 +20058,669,4033,1 +20059,669,4904,3 +20060,669,5765,3 +20061,669,7297,3 +20062,669,5917,1 +20063,669,5726,5 +20064,669,3503,2 +20065,669,2514,2 +20066,670,8696,3 +20067,670,5137,3 +20068,670,3165,1 +20069,670,7896,1 +20070,670,592,3 +20071,670,2998,1 +20072,670,1364,5 +20073,670,4022,2 +20074,670,2149,2 +20075,670,8222,2 +20076,670,4296,3 +20077,670,4658,5 +20078,670,3887,1 +20079,670,252,2 +20080,670,4324,5 +20081,670,3510,5 +20082,670,1723,1 +20083,670,6631,2 +20084,670,632,3 +20085,670,7118,5 +20086,670,8701,1 +20087,670,9641,2 +20088,670,6643,2 +20089,670,2241,4 +20090,670,7525,2 +20091,670,7743,5 +20092,670,1220,1 +20093,670,8334,1 +20094,670,5562,5 +20095,670,8088,5 +20096,670,2961,5 +20097,670,5897,5 +20098,670,6504,1 +20099,670,3937,4 +20100,670,9313,5 +20101,670,1463,1 +20102,670,9912,5 +20103,670,3183,3 +20104,670,690,4 +20105,670,7337,5 +20106,671,4949,2 +20107,671,5750,4 +20108,671,1077,5 +20109,671,7050,1 +20110,671,6757,4 +20111,671,2332,1 +20112,671,8962,1 +20113,671,536,3 +20114,671,2564,4 +20115,671,4091,3 +20116,671,2188,2 +20117,671,6746,1 +20118,671,7459,2 +20119,671,5855,2 +20120,671,3071,1 +20121,671,4720,4 +20122,671,4823,1 +20123,671,7915,1 +20124,671,8736,3 +20125,671,9708,2 +20126,671,3618,2 +20127,671,7548,4 +20128,671,5520,1 +20129,671,4320,4 +20130,671,4607,1 +20131,671,7719,3 +20132,671,5078,3 +20133,671,3856,4 +20134,671,3590,2 +20135,671,4359,1 +20136,671,9248,4 +20137,671,6415,3 +20138,671,2093,1 +20139,671,6401,4 +20140,671,6575,2 +20141,672,3290,4 +20142,672,4612,4 +20143,672,5596,2 +20144,672,3299,4 +20145,672,3698,2 +20146,672,3803,1 +20147,672,9904,3 +20148,672,5847,3 +20149,672,7761,4 +20150,672,1615,1 +20151,672,9302,2 +20152,672,9230,1 +20153,672,6735,4 +20154,672,2562,2 +20155,672,893,3 +20156,672,3065,5 +20157,672,9639,4 +20158,672,8679,3 +20159,672,519,2 +20160,672,4847,5 +20161,672,7426,1 +20162,672,5162,3 +20163,672,7846,2 +20164,672,5258,1 +20165,672,4183,1 +20166,672,1300,2 +20167,672,3370,2 +20168,672,7591,1 +20169,672,7420,1 +20170,672,6305,2 +20171,672,1078,2 +20172,672,4000,2 +20173,672,7050,4 +20174,672,3273,3 +20175,672,8245,5 +20176,672,9926,5 +20177,672,6952,3 +20178,672,1663,2 +20179,673,8952,4 +20180,673,6045,5 +20181,673,3718,5 +20182,673,2565,3 +20183,673,7255,3 +20184,673,4880,5 +20185,673,6761,3 +20186,673,5976,2 +20187,673,9526,4 +20188,673,9637,3 +20189,673,5509,2 +20190,673,5127,1 +20191,673,751,4 +20192,673,6961,5 +20193,673,6423,3 +20194,673,8653,3 +20195,673,94,5 +20196,673,8549,2 +20197,673,8231,5 +20198,673,2107,3 +20199,673,3449,2 +20200,673,8252,1 +20201,673,8116,4 +20202,673,6988,4 +20203,673,2496,2 +20204,673,5579,5 +20205,673,5438,5 +20206,673,292,1 +20207,674,7035,3 +20208,674,1820,5 +20209,674,2042,4 +20210,674,5309,2 +20211,674,4557,5 +20212,674,4411,1 +20213,674,7796,1 +20214,674,1895,2 +20215,674,504,5 +20216,674,9546,3 +20217,674,8973,5 +20218,674,413,4 +20219,674,2645,4 +20220,675,1607,4 +20221,675,1342,5 +20222,675,1155,3 +20223,675,6986,4 +20224,675,553,1 +20225,675,4260,2 +20226,675,833,4 +20227,675,5958,4 +20228,675,170,3 +20229,675,1311,4 +20230,675,5869,3 +20231,675,3386,4 +20232,675,1298,4 +20233,675,1442,2 +20234,675,3104,2 +20235,675,8258,5 +20236,675,5875,5 +20237,675,2518,3 +20238,675,1790,5 +20239,675,1279,1 +20240,675,3411,5 +20241,675,565,3 +20242,675,400,2 +20243,675,7016,4 +20244,675,8731,5 +20245,675,8278,1 +20246,675,8852,1 +20247,675,7959,5 +20248,675,8127,4 +20249,675,2341,3 +20250,675,475,5 +20251,675,7713,4 +20252,675,9988,5 +20253,675,34,3 +20254,675,8463,4 +20255,675,946,4 +20256,675,4267,4 +20257,675,4171,4 +20258,675,7371,3 +20259,675,1153,1 +20260,675,7153,1 +20261,675,7416,3 +20262,675,1989,3 +20263,675,4314,3 +20264,676,630,5 +20265,676,1895,5 +20266,676,1204,1 +20267,676,3987,3 +20268,676,3264,5 +20269,676,634,1 +20270,676,1330,2 +20271,676,810,5 +20272,676,5029,1 +20273,676,5910,5 +20274,676,5086,1 +20275,676,7163,4 +20276,676,6793,3 +20277,676,518,5 +20278,676,3418,3 +20279,676,3184,3 +20280,676,1911,5 +20281,676,3341,2 +20282,676,4456,1 +20283,676,3715,4 +20284,676,5652,3 +20285,676,7167,2 +20286,676,8911,1 +20287,676,9601,5 +20288,676,3615,4 +20289,676,2942,1 +20290,676,9744,1 +20291,676,8665,1 +20292,676,2208,3 +20293,676,5637,5 +20294,676,9775,4 +20295,676,1281,1 +20296,676,5163,3 +20297,676,1594,1 +20298,676,7864,5 +20299,676,9315,1 +20300,676,7046,3 +20301,676,7292,5 +20302,676,4657,1 +20303,676,1293,5 +20304,676,1270,3 +20305,676,8804,1 +20306,676,6831,5 +20307,676,4588,5 +20308,677,1822,2 +20309,677,6073,4 +20310,677,5762,4 +20311,677,5201,2 +20312,677,7209,4 +20313,677,7692,5 +20314,677,2853,1 +20315,677,8114,2 +20316,677,1327,4 +20317,677,6356,1 +20318,677,3450,2 +20319,677,4300,4 +20320,677,2420,1 +20321,677,5407,4 +20322,677,6727,2 +20323,677,6868,5 +20324,677,174,4 +20325,677,4542,3 +20326,677,2264,4 +20327,677,9166,4 +20328,677,1301,5 +20329,677,4167,2 +20330,677,238,4 +20331,677,6986,3 +20332,677,9677,2 +20333,678,4542,5 +20334,678,3093,5 +20335,678,5117,1 +20336,678,9572,4 +20337,678,7078,2 +20338,678,5163,2 +20339,678,781,5 +20340,678,3481,3 +20341,678,3765,1 +20342,678,4080,1 +20343,678,1503,3 +20344,678,2958,1 +20345,678,8022,1 +20346,678,2396,3 +20347,678,8379,1 +20348,678,4139,3 +20349,678,932,1 +20350,678,1956,2 +20351,678,8412,3 +20352,678,33,1 +20353,678,9468,2 +20354,678,1139,4 +20355,678,3153,1 +20356,678,722,2 +20357,678,2988,2 +20358,678,4601,3 +20359,678,200,4 +20360,678,9704,2 +20361,678,7529,5 +20362,678,9387,3 +20363,678,998,4 +20364,678,8791,1 +20365,678,9092,3 +20366,678,939,4 +20367,678,9726,5 +20368,678,793,2 +20369,678,5080,1 +20370,678,8077,5 +20371,678,4405,5 +20372,678,5165,2 +20373,678,6732,3 +20374,678,6827,1 +20375,678,9927,2 +20376,678,6301,1 +20377,679,7937,2 +20378,679,340,5 +20379,679,9238,1 +20380,679,9634,3 +20381,679,3275,2 +20382,679,6236,4 +20383,679,5261,1 +20384,679,85,3 +20385,679,8154,2 +20386,679,1908,3 +20387,679,206,3 +20388,679,6936,5 +20389,679,2335,4 +20390,679,2673,4 +20391,679,8878,1 +20392,679,8143,1 +20393,680,7683,1 +20394,680,7979,3 +20395,680,7237,3 +20396,680,6017,4 +20397,680,31,5 +20398,680,384,2 +20399,680,215,5 +20400,680,3537,1 +20401,680,1808,2 +20402,680,8612,1 +20403,680,3823,4 +20404,680,3507,2 +20405,680,838,4 +20406,680,8840,1 +20407,680,6825,1 +20408,680,7088,4 +20409,680,2937,2 +20410,680,5191,2 +20411,680,9506,1 +20412,680,2665,1 +20413,680,6644,5 +20414,681,7624,1 +20415,681,4343,5 +20416,681,1261,4 +20417,681,6649,5 +20418,681,7978,4 +20419,681,811,5 +20420,681,3499,5 +20421,681,7041,5 +20422,681,823,3 +20423,681,8212,4 +20424,681,5833,1 +20425,681,3410,4 +20426,681,3945,1 +20427,681,7015,2 +20428,681,8873,2 +20429,682,2190,5 +20430,682,5107,4 +20431,682,5490,5 +20432,682,9125,1 +20433,682,4056,1 +20434,682,8494,2 +20435,682,4353,1 +20436,682,8097,4 +20437,682,3515,4 +20438,682,5349,5 +20439,682,1584,2 +20440,682,4327,2 +20441,682,966,4 +20442,682,4066,3 +20443,682,5406,5 +20444,682,5625,1 +20445,682,2099,4 +20446,682,6133,3 +20447,682,9913,1 +20448,682,7290,3 +20449,682,5141,4 +20450,682,5749,2 +20451,682,92,1 +20452,682,7663,5 +20453,682,7182,3 +20454,682,6263,1 +20455,682,7116,1 +20456,682,3183,2 +20457,682,8533,5 +20458,682,2660,2 +20459,682,3671,2 +20460,682,2652,4 +20461,682,9158,2 +20462,682,5181,4 +20463,683,5616,1 +20464,683,1297,5 +20465,683,3836,4 +20466,683,2224,5 +20467,683,3949,3 +20468,683,5162,5 +20469,683,8477,4 +20470,683,3433,1 +20471,683,2774,1 +20472,683,5733,3 +20473,683,6414,1 +20474,683,1693,2 +20475,683,5045,3 +20476,683,287,5 +20477,683,9484,1 +20478,683,9284,2 +20479,683,853,2 +20480,683,6624,1 +20481,683,9169,1 +20482,683,8468,2 +20483,683,2872,5 +20484,683,753,3 +20485,683,5265,3 +20486,683,5373,5 +20487,683,1807,5 +20488,683,2562,2 +20489,683,1296,3 +20490,683,6722,2 +20491,683,9141,1 +20492,683,4604,5 +20493,683,1027,1 +20494,683,8587,1 +20495,683,311,1 +20496,683,9778,5 +20497,683,7483,2 +20498,683,7105,5 +20499,683,5946,5 +20500,683,5495,5 +20501,684,9079,1 +20502,684,208,2 +20503,684,2527,3 +20504,684,2001,2 +20505,684,392,2 +20506,684,1662,1 +20507,684,956,5 +20508,684,9773,4 +20509,684,2763,3 +20510,684,332,2 +20511,684,6280,5 +20512,684,7195,1 +20513,684,4889,2 +20514,684,4525,5 +20515,684,8039,3 +20516,684,4719,1 +20517,684,5929,5 +20518,684,1163,5 +20519,684,67,5 +20520,684,3178,4 +20521,684,259,3 +20522,684,2616,2 +20523,684,7411,4 +20524,684,3643,4 +20525,684,7388,1 +20526,684,3227,5 +20527,684,6028,5 +20528,684,2966,2 +20529,684,8482,2 +20530,684,1838,2 +20531,684,4247,4 +20532,684,9158,1 +20533,684,1360,3 +20534,684,3177,1 +20535,684,5050,3 +20536,684,7654,3 +20537,684,4787,3 +20538,684,6689,3 +20539,684,2982,3 +20540,684,4891,3 +20541,684,2695,2 +20542,684,3725,3 +20543,684,2063,2 +20544,684,6936,3 +20545,684,941,1 +20546,684,2623,3 +20547,684,784,1 +20548,685,2494,1 +20549,685,5853,4 +20550,685,9043,1 +20551,685,8374,2 +20552,685,9661,2 +20553,685,598,3 +20554,685,5479,4 +20555,685,4624,2 +20556,685,4117,3 +20557,685,8388,2 +20558,685,8223,4 +20559,685,702,4 +20560,685,858,2 +20561,685,2343,1 +20562,685,3548,3 +20563,685,8619,1 +20564,685,1172,4 +20565,685,314,5 +20566,685,8884,1 +20567,685,8417,3 +20568,685,2652,4 +20569,685,6048,2 +20570,685,3804,4 +20571,685,2837,2 +20572,685,3835,3 +20573,685,6847,1 +20574,685,4232,2 +20575,685,9968,5 +20576,685,4687,1 +20577,685,9442,4 +20578,685,5737,2 +20579,685,1104,4 +20580,685,4489,3 +20581,685,6688,4 +20582,685,1130,1 +20583,685,8058,1 +20584,685,5421,5 +20585,685,8766,2 +20586,685,2905,2 +20587,686,2398,2 +20588,686,608,5 +20589,686,3654,2 +20590,686,2022,5 +20591,686,3695,1 +20592,686,9097,4 +20593,686,1927,3 +20594,686,7800,2 +20595,686,1753,2 +20596,686,4837,3 +20597,686,7241,4 +20598,686,8871,1 +20599,686,3140,3 +20600,686,3094,1 +20601,686,8572,5 +20602,686,3714,4 +20603,686,3486,3 +20604,686,5186,4 +20605,686,3775,1 +20606,686,6194,1 +20607,686,1218,1 +20608,687,6389,5 +20609,687,4806,3 +20610,687,8182,1 +20611,687,5746,1 +20612,687,4411,1 +20613,687,8076,1 +20614,687,2571,3 +20615,687,9643,4 +20616,687,9306,2 +20617,687,2936,4 +20618,687,9866,4 +20619,687,3129,2 +20620,687,6440,4 +20621,687,6160,5 +20622,688,9926,5 +20623,688,6310,2 +20624,688,1362,5 +20625,688,8282,1 +20626,688,7595,2 +20627,688,7086,5 +20628,688,7965,5 +20629,688,74,1 +20630,688,7490,1 +20631,688,2975,2 +20632,688,5720,5 +20633,688,4734,1 +20634,688,3666,4 +20635,688,8018,1 +20636,688,8876,1 +20637,688,5640,1 +20638,688,5782,3 +20639,688,4556,5 +20640,688,2075,3 +20641,688,9758,5 +20642,688,3422,1 +20643,688,5275,3 +20644,688,1999,4 +20645,688,229,1 +20646,688,1169,5 +20647,688,3077,1 +20648,688,6313,3 +20649,689,5330,4 +20650,689,1965,1 +20651,689,3731,2 +20652,689,6953,5 +20653,689,9754,2 +20654,689,5196,5 +20655,689,8265,5 +20656,689,1144,3 +20657,689,474,1 +20658,689,1173,2 +20659,689,8329,4 +20660,689,6502,3 +20661,689,8214,4 +20662,689,793,1 +20663,689,7115,2 +20664,689,8147,5 +20665,689,7730,3 +20666,689,2874,3 +20667,689,4204,2 +20668,689,6710,3 +20669,689,6982,4 +20670,689,8510,1 +20671,689,9224,1 +20672,689,3398,5 +20673,689,9436,5 +20674,689,6703,5 +20675,689,693,1 +20676,689,8549,1 +20677,690,9160,1 +20678,690,2638,2 +20679,690,3786,5 +20680,690,8964,5 +20681,690,6849,4 +20682,690,1255,2 +20683,690,355,3 +20684,690,8699,2 +20685,690,4592,3 +20686,690,5341,1 +20687,690,1874,5 +20688,690,55,2 +20689,690,2433,1 +20690,690,5545,2 +20691,690,7282,1 +20692,690,8885,3 +20693,690,3157,2 +20694,690,4638,3 +20695,690,834,5 +20696,690,9142,3 +20697,690,9098,3 +20698,690,6124,4 +20699,690,5596,4 +20700,691,3825,5 +20701,691,1761,3 +20702,691,3209,1 +20703,691,4614,5 +20704,691,4085,2 +20705,691,9520,2 +20706,691,3497,1 +20707,691,6072,1 +20708,691,4461,3 +20709,691,4489,4 +20710,691,1616,2 +20711,691,8450,5 +20712,691,8922,4 +20713,691,4922,2 +20714,691,7088,5 +20715,691,3430,4 +20716,691,2136,1 +20717,691,5646,2 +20718,691,1484,3 +20719,691,2769,4 +20720,691,2540,5 +20721,691,2084,3 +20722,691,3649,4 +20723,691,2315,3 +20724,691,1332,1 +20725,691,7391,2 +20726,692,8652,5 +20727,692,3382,5 +20728,692,8087,1 +20729,692,1824,5 +20730,692,8894,5 +20731,692,1587,4 +20732,692,6625,2 +20733,692,2777,1 +20734,692,7249,4 +20735,692,2320,4 +20736,692,6383,4 +20737,692,200,4 +20738,692,8922,3 +20739,692,516,1 +20740,692,79,2 +20741,692,930,5 +20742,692,9022,3 +20743,692,3374,5 +20744,692,4623,5 +20745,692,7031,1 +20746,692,1589,3 +20747,692,5106,3 +20748,692,1766,1 +20749,692,4431,2 +20750,692,5603,1 +20751,692,4603,4 +20752,692,8545,3 +20753,692,7810,1 +20754,692,4840,4 +20755,692,9372,2 +20756,692,5875,1 +20757,692,872,4 +20758,692,2315,3 +20759,692,1778,2 +20760,692,861,5 +20761,692,4579,3 +20762,692,1370,5 +20763,692,3756,3 +20764,692,8176,4 +20765,692,7114,4 +20766,692,4259,1 +20767,692,6341,1 +20768,692,9115,1 +20769,692,3746,5 +20770,693,7775,5 +20771,693,1910,2 +20772,693,2574,1 +20773,693,7558,1 +20774,693,6428,2 +20775,693,8799,3 +20776,693,2335,3 +20777,693,9858,2 +20778,693,3516,3 +20779,693,1514,5 +20780,693,1269,3 +20781,693,9669,2 +20782,693,4095,4 +20783,693,8365,3 +20784,693,6843,4 +20785,693,4428,4 +20786,693,6769,4 +20787,693,6596,5 +20788,693,7467,2 +20789,693,3893,3 +20790,693,3344,2 +20791,693,3214,3 +20792,693,1227,5 +20793,694,5271,1 +20794,694,5083,3 +20795,694,6523,1 +20796,694,8628,5 +20797,694,1811,5 +20798,694,747,1 +20799,694,4843,3 +20800,694,5583,4 +20801,694,9622,1 +20802,694,7070,2 +20803,694,719,5 +20804,694,6187,4 +20805,695,772,1 +20806,695,2558,5 +20807,695,6031,4 +20808,695,2971,4 +20809,695,1234,3 +20810,695,7108,4 +20811,695,2649,1 +20812,695,6370,4 +20813,695,5228,1 +20814,695,3211,4 +20815,695,3330,1 +20816,695,243,5 +20817,695,6673,3 +20818,695,158,5 +20819,695,7880,3 +20820,695,2886,2 +20821,695,9288,1 +20822,695,9300,5 +20823,695,7295,2 +20824,695,789,5 +20825,695,1699,1 +20826,695,7710,5 +20827,695,7725,5 +20828,695,3768,1 +20829,695,4514,4 +20830,696,698,4 +20831,696,3765,1 +20832,696,5190,2 +20833,696,7461,2 +20834,696,8177,1 +20835,696,5649,4 +20836,696,9219,5 +20837,696,7435,4 +20838,696,243,4 +20839,696,2973,1 +20840,696,9401,4 +20841,696,8661,3 +20842,696,207,3 +20843,696,5130,4 +20844,696,261,4 +20845,696,3191,1 +20846,696,8034,4 +20847,696,5585,4 +20848,696,6573,3 +20849,696,6635,2 +20850,696,6273,1 +20851,696,9460,1 +20852,696,5864,2 +20853,696,5948,5 +20854,696,9783,1 +20855,696,9895,1 +20856,696,8239,3 +20857,696,9322,3 +20858,696,5150,4 +20859,696,7589,2 +20860,696,9787,4 +20861,696,2110,3 +20862,696,1785,1 +20863,696,9694,4 +20864,696,9324,5 +20865,696,3615,1 +20866,696,5377,2 +20867,697,531,4 +20868,697,4746,2 +20869,697,4608,5 +20870,697,7942,2 +20871,697,6952,1 +20872,697,3070,2 +20873,697,5541,5 +20874,697,2130,5 +20875,697,2342,3 +20876,697,9277,4 +20877,697,5291,5 +20878,697,9497,4 +20879,697,1709,5 +20880,697,7497,1 +20881,697,1455,1 +20882,697,660,3 +20883,697,5034,5 +20884,697,4950,3 +20885,697,1734,1 +20886,697,5153,1 +20887,697,8101,5 +20888,697,9586,2 +20889,697,8318,2 +20890,697,8941,4 +20891,698,3976,3 +20892,698,932,4 +20893,698,272,3 +20894,698,8279,4 +20895,698,5641,1 +20896,698,8862,3 +20897,698,3793,1 +20898,698,4564,2 +20899,698,8483,5 +20900,698,2222,3 +20901,698,7603,2 +20902,698,2284,3 +20903,698,2734,4 +20904,698,9793,3 +20905,698,5780,1 +20906,698,5955,3 +20907,698,1580,3 +20908,698,9740,4 +20909,698,7359,5 +20910,698,7534,5 +20911,698,6278,4 +20912,698,3386,1 +20913,698,2682,2 +20914,698,7711,1 +20915,698,2383,3 +20916,698,8801,4 +20917,698,1678,5 +20918,698,8235,1 +20919,698,9882,3 +20920,698,5829,3 +20921,698,4408,1 +20922,698,1705,2 +20923,698,2972,5 +20924,698,5772,2 +20925,698,5032,4 +20926,698,5686,2 +20927,698,5203,4 +20928,698,2659,5 +20929,698,707,5 +20930,698,3571,2 +20931,698,2246,2 +20932,699,3282,4 +20933,699,8890,4 +20934,699,2643,3 +20935,699,5100,2 +20936,699,7524,5 +20937,699,1940,2 +20938,699,1342,5 +20939,699,9002,4 +20940,699,8668,1 +20941,699,6025,5 +20942,699,6427,3 +20943,699,3922,5 +20944,699,9972,4 +20945,699,74,1 +20946,699,6204,5 +20947,699,528,4 +20948,699,2560,3 +20949,699,9419,1 +20950,699,4888,2 +20951,699,8853,5 +20952,699,6153,3 +20953,699,7443,5 +20954,699,7236,3 +20955,699,7842,2 +20956,699,9615,5 +20957,699,1911,2 +20958,699,8307,3 +20959,699,8215,3 +20960,699,8864,5 +20961,699,5761,3 +20962,699,6726,5 +20963,699,9552,5 +20964,699,9177,3 +20965,699,1769,2 +20966,699,4,3 +20967,699,9989,1 +20968,699,8645,4 +20969,699,3313,5 +20970,699,6896,3 +20971,699,5709,5 +20972,699,2639,4 +20973,699,4763,1 +20974,699,2488,3 +20975,699,1585,2 +20976,699,8510,3 +20977,699,3852,3 +20978,699,7437,5 +20979,699,8643,1 +20980,700,3000,3 +20981,700,9822,3 +20982,700,9715,2 +20983,700,2728,2 +20984,700,6220,3 +20985,700,6200,1 +20986,700,7447,5 +20987,700,3912,5 +20988,700,7020,1 +20989,700,9419,1 +20990,700,4054,3 +20991,700,1326,1 +20992,700,2544,2 +20993,700,1991,1 +20994,700,8454,3 +20995,700,4689,5 +20996,700,6893,3 +20997,700,9726,2 +20998,700,2,3 +20999,700,7203,3 +21000,700,4931,4 +21001,700,1009,1 +21002,700,6126,2 +21003,700,2157,5 +21004,700,9786,3 +21005,700,6037,5 +21006,700,8711,3 +21007,700,2367,4 +21008,701,3845,3 +21009,701,326,3 +21010,701,8881,1 +21011,701,5436,1 +21012,701,7405,1 +21013,701,4581,2 +21014,701,3441,1 +21015,701,2096,5 +21016,701,5596,2 +21017,701,6968,2 +21018,701,5691,3 +21019,701,400,2 +21020,701,7922,1 +21021,701,8549,1 +21022,702,7169,5 +21023,702,8718,2 +21024,702,6297,3 +21025,702,1163,1 +21026,702,3296,3 +21027,702,1038,3 +21028,702,1281,1 +21029,702,5242,2 +21030,702,1477,1 +21031,702,9307,3 +21032,702,9665,4 +21033,702,2447,1 +21034,702,4722,2 +21035,702,8491,3 +21036,702,5054,1 +21037,702,9720,5 +21038,702,5700,2 +21039,702,2152,5 +21040,702,2848,4 +21041,702,6739,2 +21042,702,8643,5 +21043,702,6088,3 +21044,702,4704,3 +21045,702,9432,3 +21046,702,7172,1 +21047,702,3794,3 +21048,702,2897,1 +21049,702,9058,2 +21050,702,8430,3 +21051,702,6187,4 +21052,702,909,1 +21053,702,8542,3 +21054,702,9673,3 +21055,702,562,4 +21056,702,3250,1 +21057,702,873,2 +21058,702,6127,5 +21059,702,2743,4 +21060,702,3903,4 +21061,702,3164,2 +21062,703,9623,2 +21063,703,5691,2 +21064,703,3293,1 +21065,703,2815,4 +21066,703,5266,2 +21067,703,2491,1 +21068,703,4377,3 +21069,703,505,4 +21070,703,7888,1 +21071,703,3798,2 +21072,703,3036,3 +21073,703,8604,4 +21074,703,9690,1 +21075,703,3784,3 +21076,704,9462,4 +21077,704,6104,3 +21078,704,5379,4 +21079,704,7347,2 +21080,704,1275,2 +21081,704,9832,2 +21082,704,8995,4 +21083,704,6097,4 +21084,704,511,1 +21085,704,1438,2 +21086,704,4257,4 +21087,704,6809,5 +21088,704,294,1 +21089,704,6363,2 +21090,704,5871,1 +21091,704,5538,5 +21092,704,8734,4 +21093,704,9258,1 +21094,704,1134,4 +21095,704,8747,5 +21096,704,9728,1 +21097,704,5812,4 +21098,704,2346,3 +21099,704,1245,3 +21100,704,1324,3 +21101,704,1671,2 +21102,704,9731,2 +21103,705,6258,1 +21104,705,1355,1 +21105,705,4259,2 +21106,705,4453,4 +21107,705,1349,5 +21108,705,8175,5 +21109,705,1563,2 +21110,705,135,5 +21111,705,8129,1 +21112,705,7737,3 +21113,705,3832,4 +21114,705,4002,5 +21115,705,3602,4 +21116,705,1197,3 +21117,705,7594,1 +21118,705,1672,2 +21119,705,5376,2 +21120,705,3580,2 +21121,705,8676,5 +21122,705,9308,4 +21123,705,2693,2 +21124,705,5737,2 +21125,705,3581,5 +21126,705,2737,1 +21127,705,529,2 +21128,705,8188,3 +21129,705,3308,3 +21130,705,7088,5 +21131,705,870,1 +21132,705,6143,1 +21133,705,9143,4 +21134,705,8921,5 +21135,705,2980,5 +21136,705,9300,1 +21137,705,8050,1 +21138,705,9337,3 +21139,705,1281,3 +21140,705,9483,5 +21141,705,5663,1 +21142,705,4430,1 +21143,705,7803,4 +21144,705,3707,5 +21145,705,9199,1 +21146,705,401,3 +21147,705,8651,4 +21148,705,2677,2 +21149,705,4786,5 +21150,705,5642,5 +21151,706,6344,1 +21152,706,4481,3 +21153,706,718,1 +21154,706,2813,2 +21155,706,8695,4 +21156,706,1211,4 +21157,706,1904,2 +21158,706,1306,4 +21159,706,4521,2 +21160,706,8419,4 +21161,706,4084,3 +21162,706,4290,4 +21163,706,9716,3 +21164,706,546,2 +21165,706,9999,4 +21166,706,6707,5 +21167,706,5620,2 +21168,706,4464,2 +21169,706,9858,3 +21170,706,3972,1 +21171,706,493,3 +21172,706,9899,1 +21173,706,8458,2 +21174,706,8793,5 +21175,706,6936,3 +21176,706,3429,2 +21177,706,507,4 +21178,706,2695,3 +21179,706,2574,5 +21180,706,6303,3 +21181,706,3665,5 +21182,706,416,4 +21183,706,6775,5 +21184,706,5983,2 +21185,707,6626,2 +21186,707,2081,1 +21187,707,4413,5 +21188,707,1355,2 +21189,707,8715,5 +21190,707,9477,5 +21191,707,6721,2 +21192,707,3000,4 +21193,707,9748,4 +21194,707,7813,3 +21195,707,5744,4 +21196,707,698,4 +21197,707,1349,3 +21198,707,1756,1 +21199,707,286,2 +21200,707,5951,5 +21201,707,8315,2 +21202,707,8181,3 +21203,707,2613,5 +21204,707,8669,5 +21205,707,8535,5 +21206,707,7064,3 +21207,707,7789,1 +21208,707,3766,2 +21209,707,6160,4 +21210,707,640,3 +21211,707,3408,5 +21212,707,173,5 +21213,707,8675,3 +21214,707,7498,2 +21215,707,8935,1 +21216,707,8805,3 +21217,708,5206,2 +21218,708,1330,2 +21219,708,7054,4 +21220,708,264,5 +21221,708,42,4 +21222,708,2488,2 +21223,708,8655,4 +21224,708,5077,5 +21225,708,4253,5 +21226,708,8115,2 +21227,708,3452,1 +21228,708,9589,3 +21229,708,8313,5 +21230,709,983,5 +21231,709,4525,1 +21232,709,694,3 +21233,709,4354,2 +21234,709,8112,2 +21235,709,5636,4 +21236,709,9173,2 +21237,709,2103,5 +21238,709,7694,4 +21239,709,364,4 +21240,709,5192,3 +21241,709,7447,3 +21242,709,4883,3 +21243,709,2911,1 +21244,709,3446,3 +21245,709,9434,3 +21246,709,5487,3 +21247,709,6568,3 +21248,709,6883,4 +21249,709,4608,2 +21250,709,1700,1 +21251,709,6926,4 +21252,709,9472,4 +21253,709,2890,5 +21254,709,4968,4 +21255,709,8966,3 +21256,709,6444,3 +21257,709,1637,1 +21258,709,6393,5 +21259,710,1409,1 +21260,710,2506,5 +21261,710,9370,1 +21262,710,6987,1 +21263,710,1728,2 +21264,710,4891,2 +21265,710,255,5 +21266,710,4260,5 +21267,710,7258,3 +21268,710,216,4 +21269,710,6849,5 +21270,710,8380,3 +21271,710,7362,1 +21272,710,339,3 +21273,710,1343,1 +21274,710,825,1 +21275,710,884,3 +21276,710,1382,3 +21277,710,5530,1 +21278,710,9196,2 +21279,710,1844,1 +21280,710,7474,4 +21281,710,1664,4 +21282,710,8582,5 +21283,710,9011,3 +21284,710,7256,2 +21285,710,6131,4 +21286,710,3483,4 +21287,710,7546,2 +21288,710,3529,2 +21289,710,9789,2 +21290,710,462,5 +21291,710,2313,5 +21292,710,4644,4 +21293,710,3682,4 +21294,710,3127,2 +21295,711,6979,4 +21296,711,8952,1 +21297,711,9128,1 +21298,711,5315,5 +21299,711,8341,5 +21300,711,846,1 +21301,711,9075,1 +21302,711,3239,3 +21303,711,1820,5 +21304,711,9985,1 +21305,712,3788,5 +21306,712,6006,2 +21307,712,7002,4 +21308,712,3707,1 +21309,712,7646,1 +21310,712,14,2 +21311,712,6037,1 +21312,712,3063,1 +21313,712,4278,2 +21314,712,500,2 +21315,712,2710,3 +21316,712,2106,1 +21317,712,8087,1 +21318,712,64,1 +21319,712,5689,4 +21320,712,6265,1 +21321,712,760,1 +21322,712,5468,5 +21323,712,8663,5 +21324,712,4488,2 +21325,712,5347,1 +21326,712,3429,4 +21327,712,4364,2 +21328,712,3752,4 +21329,712,1813,5 +21330,712,6545,4 +21331,712,6704,2 +21332,712,3092,5 +21333,712,9042,5 +21334,712,2089,2 +21335,712,3313,3 +21336,713,6933,3 +21337,713,7568,1 +21338,713,9215,2 +21339,713,1827,2 +21340,713,8678,4 +21341,713,7170,5 +21342,713,6529,5 +21343,713,8199,4 +21344,713,9471,1 +21345,713,9030,2 +21346,713,972,4 +21347,713,7510,2 +21348,713,2593,5 +21349,713,5511,3 +21350,713,4794,4 +21351,713,3111,4 +21352,713,9154,4 +21353,713,60,5 +21354,713,6133,5 +21355,713,691,5 +21356,713,8754,2 +21357,713,8043,3 +21358,713,3519,3 +21359,713,8197,2 +21360,714,9797,5 +21361,714,6420,4 +21362,714,5834,3 +21363,714,8771,4 +21364,714,8502,2 +21365,714,3786,4 +21366,714,2912,1 +21367,714,2400,3 +21368,714,9316,5 +21369,714,6254,4 +21370,714,3867,3 +21371,714,7711,5 +21372,714,9885,1 +21373,715,3162,1 +21374,715,505,1 +21375,715,8450,2 +21376,715,8256,3 +21377,715,5560,5 +21378,715,828,3 +21379,715,4201,3 +21380,715,4730,5 +21381,715,8181,2 +21382,715,6857,1 +21383,715,3375,1 +21384,715,3570,4 +21385,715,7162,4 +21386,715,20,4 +21387,715,924,2 +21388,715,6786,4 +21389,715,4734,2 +21390,715,4620,4 +21391,715,4267,3 +21392,715,269,5 +21393,715,614,2 +21394,715,7218,1 +21395,715,5670,1 +21396,715,3470,5 +21397,715,7192,3 +21398,715,5130,3 +21399,715,9393,4 +21400,715,5364,5 +21401,715,6650,1 +21402,715,1027,5 +21403,715,2742,5 +21404,715,7154,3 +21405,715,1697,4 +21406,715,9645,4 +21407,715,7448,1 +21408,716,7631,5 +21409,716,3889,3 +21410,716,1462,2 +21411,716,7185,3 +21412,716,2244,3 +21413,716,5478,4 +21414,716,2054,1 +21415,716,2103,1 +21416,716,7664,4 +21417,716,46,2 +21418,716,5052,3 +21419,716,2072,2 +21420,716,5540,2 +21421,716,3285,5 +21422,716,7533,2 +21423,716,6063,3 +21424,716,2423,4 +21425,716,5233,5 +21426,717,609,3 +21427,717,2789,2 +21428,717,2756,1 +21429,717,1427,1 +21430,717,9287,4 +21431,717,7191,5 +21432,717,4350,2 +21433,717,1016,5 +21434,717,7297,5 +21435,717,3291,4 +21436,717,4745,4 +21437,717,388,2 +21438,717,7703,2 +21439,717,4456,2 +21440,717,7861,4 +21441,717,3786,3 +21442,717,7055,3 +21443,717,4884,3 +21444,717,2883,2 +21445,717,4032,1 +21446,717,7172,4 +21447,717,4100,4 +21448,717,8239,4 +21449,717,2808,1 +21450,717,1439,1 +21451,717,8987,5 +21452,717,4424,3 +21453,717,9932,2 +21454,717,7417,3 +21455,717,816,2 +21456,717,2712,3 +21457,717,4214,5 +21458,717,9129,2 +21459,717,1717,5 +21460,717,9048,1 +21461,717,9054,4 +21462,717,5289,2 +21463,717,9726,2 +21464,717,4912,5 +21465,717,9489,4 +21466,717,3263,4 +21467,717,2644,3 +21468,717,4302,4 +21469,717,502,2 +21470,717,3715,5 +21471,718,1796,2 +21472,718,1517,2 +21473,718,4785,2 +21474,718,4769,2 +21475,718,6741,3 +21476,718,2470,3 +21477,718,7699,5 +21478,718,7959,3 +21479,718,5805,4 +21480,718,9871,3 +21481,718,6301,1 +21482,719,2427,2 +21483,719,7045,4 +21484,719,9555,4 +21485,719,8501,4 +21486,719,7736,5 +21487,719,1579,1 +21488,719,4001,2 +21489,719,5899,2 +21490,719,2885,1 +21491,719,2925,2 +21492,719,5316,4 +21493,719,9285,1 +21494,719,654,4 +21495,719,4834,1 +21496,719,299,3 +21497,719,8742,3 +21498,719,4123,1 +21499,719,1738,4 +21500,719,2849,4 +21501,719,934,1 +21502,719,9978,4 +21503,719,8384,2 +21504,719,6733,4 +21505,719,136,3 +21506,719,372,3 +21507,719,8093,2 +21508,719,5947,1 +21509,719,3180,5 +21510,719,2356,1 +21511,719,7175,5 +21512,719,8898,2 +21513,719,8337,4 +21514,719,2394,2 +21515,719,9131,2 +21516,719,470,2 +21517,719,9360,3 +21518,719,4511,4 +21519,719,2313,1 +21520,719,3268,4 +21521,719,6153,3 +21522,719,6777,5 +21523,719,4828,2 +21524,719,8846,3 +21525,719,4466,5 +21526,719,7412,2 +21527,719,5740,3 +21528,719,6879,2 +21529,719,8230,5 +21530,719,5124,3 +21531,720,4034,2 +21532,720,2410,4 +21533,720,1808,3 +21534,720,4497,3 +21535,720,5583,5 +21536,720,1838,2 +21537,720,220,1 +21538,720,6835,5 +21539,720,9412,4 +21540,720,8995,1 +21541,720,8640,5 +21542,720,1270,1 +21543,720,3848,5 +21544,720,7221,5 +21545,720,4782,2 +21546,720,1114,3 +21547,720,8063,3 +21548,720,5623,5 +21549,720,7343,4 +21550,720,5304,1 +21551,720,5283,3 +21552,720,9315,2 +21553,720,7767,3 +21554,720,7599,3 +21555,720,7922,3 +21556,720,6713,2 +21557,720,9840,3 +21558,720,1091,3 +21559,720,7516,1 +21560,720,1440,2 +21561,720,7427,1 +21562,720,5010,2 +21563,720,9751,5 +21564,720,1941,2 +21565,720,2493,4 +21566,720,4589,2 +21567,720,9594,4 +21568,720,8219,5 +21569,720,7667,5 +21570,720,8110,3 +21571,720,6080,5 +21572,720,6653,3 +21573,720,5805,3 +21574,720,5131,4 +21575,721,4771,1 +21576,721,94,4 +21577,721,6132,3 +21578,721,1963,3 +21579,721,5511,1 +21580,721,3288,2 +21581,721,2884,3 +21582,721,8432,1 +21583,721,755,4 +21584,721,9018,5 +21585,721,8994,3 +21586,721,8100,2 +21587,722,9408,4 +21588,722,9005,3 +21589,722,482,1 +21590,722,8944,3 +21591,722,6144,5 +21592,722,2894,3 +21593,722,7406,1 +21594,722,6350,4 +21595,722,2560,4 +21596,722,1942,1 +21597,722,9497,3 +21598,722,1228,3 +21599,722,2816,4 +21600,722,9998,1 +21601,722,4750,3 +21602,722,242,2 +21603,722,7584,4 +21604,722,4720,2 +21605,722,6621,2 +21606,722,1038,5 +21607,722,7212,3 +21608,722,9390,1 +21609,722,3320,2 +21610,722,9618,5 +21611,722,394,5 +21612,722,1530,5 +21613,722,4747,4 +21614,723,5912,4 +21615,723,1025,2 +21616,723,1472,5 +21617,723,4882,1 +21618,723,1832,5 +21619,723,2607,5 +21620,723,5564,4 +21621,723,5726,5 +21622,723,8022,2 +21623,723,6604,2 +21624,723,2922,2 +21625,723,3499,5 +21626,723,4003,3 +21627,723,4824,5 +21628,723,8258,3 +21629,723,4421,2 +21630,723,4734,4 +21631,723,3284,2 +21632,723,7734,1 +21633,723,3098,2 +21634,723,9727,2 +21635,723,9952,2 +21636,723,212,4 +21637,724,2527,2 +21638,724,8211,4 +21639,724,2546,3 +21640,724,7326,5 +21641,724,9485,3 +21642,724,5271,5 +21643,724,5378,5 +21644,724,7157,1 +21645,724,2386,3 +21646,724,4926,2 +21647,724,458,1 +21648,724,4634,3 +21649,724,8396,3 +21650,724,8760,3 +21651,724,7295,2 +21652,724,3542,1 +21653,724,8221,2 +21654,724,8627,3 +21655,724,4254,1 +21656,724,7584,5 +21657,724,6287,1 +21658,724,6178,5 +21659,724,9134,4 +21660,724,9058,1 +21661,724,3187,1 +21662,724,9769,5 +21663,724,6257,3 +21664,724,129,4 +21665,724,120,4 +21666,724,8059,1 +21667,724,4225,5 +21668,724,5672,4 +21669,724,4762,2 +21670,724,8210,5 +21671,724,793,4 +21672,724,693,3 +21673,724,3156,4 +21674,724,1408,5 +21675,725,7719,2 +21676,725,6298,5 +21677,725,2176,4 +21678,725,2345,5 +21679,725,7111,5 +21680,725,9212,5 +21681,725,9039,5 +21682,725,7720,5 +21683,725,6092,5 +21684,725,5391,4 +21685,725,2938,3 +21686,725,793,2 +21687,725,6606,5 +21688,725,5349,2 +21689,725,8270,4 +21690,725,2417,4 +21691,726,2538,3 +21692,726,1546,4 +21693,726,2930,2 +21694,726,2406,3 +21695,726,8336,5 +21696,726,1936,4 +21697,726,8823,4 +21698,726,8927,4 +21699,726,5558,4 +21700,726,3779,2 +21701,726,3739,3 +21702,726,6337,5 +21703,726,8344,3 +21704,726,6553,3 +21705,726,607,3 +21706,726,709,4 +21707,726,167,3 +21708,726,6642,2 +21709,726,6893,5 +21710,726,5858,3 +21711,726,2222,1 +21712,726,456,1 +21713,726,6085,4 +21714,726,5608,1 +21715,726,8267,4 +21716,726,3028,3 +21717,726,7795,4 +21718,726,2432,4 +21719,726,4199,1 +21720,726,4371,5 +21721,726,8707,1 +21722,726,4155,5 +21723,726,7957,5 +21724,726,3155,4 +21725,726,592,4 +21726,727,5570,4 +21727,727,666,2 +21728,727,1219,5 +21729,727,1772,3 +21730,727,7171,3 +21731,727,8586,3 +21732,727,2377,4 +21733,727,6933,1 +21734,727,5480,5 +21735,727,8934,1 +21736,727,6012,3 +21737,727,1462,4 +21738,727,7402,3 +21739,727,4129,1 +21740,728,4300,5 +21741,728,9600,1 +21742,728,7890,2 +21743,728,6314,5 +21744,728,3420,4 +21745,728,6567,1 +21746,728,7558,3 +21747,728,7051,1 +21748,728,9186,2 +21749,728,7388,5 +21750,728,7464,1 +21751,728,7792,1 +21752,728,3997,1 +21753,728,5524,1 +21754,728,9515,1 +21755,728,4815,1 +21756,729,9140,4 +21757,729,2360,1 +21758,729,6365,4 +21759,729,5977,3 +21760,729,5662,3 +21761,729,4295,2 +21762,729,8216,1 +21763,729,5286,3 +21764,729,5500,3 +21765,729,154,4 +21766,729,4681,2 +21767,729,6425,2 +21768,729,7149,5 +21769,729,4832,5 +21770,729,5486,2 +21771,729,7672,5 +21772,729,8349,2 +21773,729,7878,5 +21774,729,236,1 +21775,729,8047,4 +21776,729,9279,5 +21777,729,3889,4 +21778,729,6902,3 +21779,729,3043,5 +21780,729,3590,1 +21781,730,1581,1 +21782,730,2743,3 +21783,730,5661,2 +21784,730,2650,3 +21785,730,6919,4 +21786,730,8275,3 +21787,730,2093,5 +21788,730,6178,4 +21789,730,1422,3 +21790,730,1130,1 +21791,730,9853,3 +21792,730,8529,1 +21793,730,1645,4 +21794,730,147,1 +21795,730,2835,5 +21796,730,4326,5 +21797,730,1436,1 +21798,730,1719,4 +21799,730,4029,1 +21800,730,3687,1 +21801,730,4753,5 +21802,730,9037,3 +21803,730,3626,4 +21804,730,6199,4 +21805,730,8788,2 +21806,730,5726,2 +21807,730,2332,3 +21808,730,2190,1 +21809,730,4382,3 +21810,730,301,5 +21811,730,2812,2 +21812,730,6354,1 +21813,730,4103,1 +21814,730,4006,4 +21815,730,1099,5 +21816,730,2060,5 +21817,730,402,4 +21818,730,1089,4 +21819,730,1833,3 +21820,730,4900,3 +21821,731,1274,4 +21822,731,1356,1 +21823,731,2522,5 +21824,731,1179,5 +21825,731,9659,2 +21826,731,6619,2 +21827,731,6736,1 +21828,731,8932,5 +21829,731,9548,5 +21830,731,7266,3 +21831,731,7068,3 +21832,731,9828,3 +21833,731,5888,1 +21834,731,4395,2 +21835,731,3961,3 +21836,731,9919,3 +21837,731,837,5 +21838,731,4954,2 +21839,732,9135,1 +21840,732,1447,3 +21841,732,1253,5 +21842,732,727,2 +21843,732,9242,5 +21844,732,4709,3 +21845,732,6072,3 +21846,732,9153,2 +21847,732,6922,4 +21848,732,629,1 +21849,733,1958,1 +21850,733,717,5 +21851,733,629,5 +21852,733,6138,2 +21853,733,3667,4 +21854,733,7716,1 +21855,733,3108,4 +21856,733,1225,3 +21857,733,7004,5 +21858,733,2540,2 +21859,733,5477,1 +21860,733,4912,1 +21861,733,2181,1 +21862,733,8058,1 +21863,733,6628,1 +21864,733,1975,1 +21865,733,8952,1 +21866,734,4682,5 +21867,734,3802,4 +21868,734,7186,1 +21869,734,1477,4 +21870,734,7398,2 +21871,734,9062,2 +21872,734,1698,5 +21873,734,2227,5 +21874,734,8167,4 +21875,734,3135,5 +21876,734,9499,1 +21877,734,1385,4 +21878,734,1290,4 +21879,734,4548,5 +21880,734,2714,3 +21881,734,6587,4 +21882,734,3727,1 +21883,734,151,4 +21884,734,7709,2 +21885,734,1749,5 +21886,734,4026,1 +21887,734,4450,2 +21888,734,9153,3 +21889,734,7093,2 +21890,734,7577,2 +21891,734,318,1 +21892,734,9965,5 +21893,734,5483,2 +21894,734,9566,3 +21895,734,3312,2 +21896,735,2659,3 +21897,735,9215,2 +21898,735,2467,3 +21899,735,6397,4 +21900,735,4662,2 +21901,735,3082,5 +21902,735,2697,5 +21903,735,2663,1 +21904,735,4809,1 +21905,735,5171,2 +21906,735,7853,3 +21907,735,4833,4 +21908,735,6820,3 +21909,735,752,1 +21910,735,5991,3 +21911,735,8452,3 +21912,735,449,4 +21913,735,1094,4 +21914,735,8359,1 +21915,735,7893,5 +21916,735,7924,1 +21917,735,7381,2 +21918,735,9357,1 +21919,735,5881,5 +21920,735,9087,3 +21921,735,200,2 +21922,735,3153,3 +21923,735,2822,5 +21924,735,6425,5 +21925,735,5988,5 +21926,735,7605,5 +21927,735,5402,3 +21928,735,5813,2 +21929,735,5439,5 +21930,735,8791,3 +21931,735,7682,4 +21932,735,7919,4 +21933,735,6147,2 +21934,735,5499,4 +21935,735,551,4 +21936,735,3334,5 +21937,735,1525,4 +21938,735,6346,4 +21939,735,2374,5 +21940,735,7429,1 +21941,735,1263,2 +21942,735,8131,2 +21943,735,3185,3 +21944,735,1941,5 +21945,736,7055,4 +21946,736,5170,2 +21947,736,3167,1 +21948,736,5013,4 +21949,736,4134,5 +21950,736,3902,1 +21951,736,1310,3 +21952,736,613,3 +21953,736,5098,5 +21954,736,3530,3 +21955,736,4705,5 +21956,736,5279,4 +21957,736,646,1 +21958,736,6497,2 +21959,736,2009,3 +21960,736,8279,2 +21961,736,6085,4 +21962,736,6642,2 +21963,736,9034,1 +21964,736,9653,4 +21965,736,2046,4 +21966,736,6559,4 +21967,736,7410,5 +21968,736,3284,4 +21969,736,7610,3 +21970,737,2348,2 +21971,737,3312,4 +21972,737,3308,3 +21973,737,9903,1 +21974,737,5914,5 +21975,737,3461,3 +21976,737,9202,3 +21977,737,5693,3 +21978,737,4974,5 +21979,737,4581,2 +21980,737,5726,5 +21981,737,9057,3 +21982,737,2268,1 +21983,737,9617,5 +21984,737,6578,5 +21985,737,6855,5 +21986,737,7477,1 +21987,737,8881,1 +21988,737,8246,3 +21989,737,7199,4 +21990,737,3916,5 +21991,737,202,1 +21992,737,9730,1 +21993,737,3488,5 +21994,737,1400,2 +21995,737,793,1 +21996,737,2872,2 +21997,737,2936,4 +21998,737,5715,4 +21999,737,5784,5 +22000,737,4910,4 +22001,738,8156,2 +22002,738,3432,4 +22003,738,2185,2 +22004,738,3152,2 +22005,738,3039,5 +22006,738,7695,5 +22007,738,2052,4 +22008,738,3795,2 +22009,738,8862,2 +22010,738,7025,1 +22011,738,7630,5 +22012,738,9108,2 +22013,738,489,3 +22014,738,3860,2 +22015,738,6971,3 +22016,738,8424,5 +22017,738,8971,2 +22018,738,1445,4 +22019,738,606,5 +22020,738,3720,4 +22021,738,4092,1 +22022,738,8406,4 +22023,738,2445,3 +22024,738,7991,1 +22025,738,7822,4 +22026,738,1706,3 +22027,738,5381,2 +22028,738,2751,4 +22029,738,8310,1 +22030,738,6701,5 +22031,738,4392,2 +22032,738,8079,1 +22033,738,6161,3 +22034,738,4939,5 +22035,738,4531,2 +22036,738,8055,5 +22037,738,1452,1 +22038,738,9865,3 +22039,738,4548,2 +22040,738,8559,1 +22041,738,1745,2 +22042,738,148,1 +22043,738,7970,4 +22044,738,9535,1 +22045,739,8886,4 +22046,739,8261,2 +22047,739,4061,3 +22048,739,8125,3 +22049,739,2076,5 +22050,739,9348,5 +22051,739,8607,1 +22052,739,1459,4 +22053,739,8626,4 +22054,739,7328,1 +22055,739,2065,1 +22056,739,4285,5 +22057,739,6153,1 +22058,739,5225,1 +22059,739,4660,1 +22060,739,4270,4 +22061,739,9113,5 +22062,739,638,3 +22063,739,5917,1 +22064,740,4809,2 +22065,740,5499,5 +22066,740,4571,3 +22067,740,2806,2 +22068,740,1613,1 +22069,740,4424,2 +22070,740,4972,1 +22071,740,6374,2 +22072,740,3861,2 +22073,740,1582,1 +22074,740,9249,3 +22075,740,2940,5 +22076,740,795,4 +22077,740,5854,3 +22078,740,6962,4 +22079,740,720,5 +22080,741,6753,4 +22081,741,4630,3 +22082,741,304,5 +22083,741,1770,2 +22084,741,8349,4 +22085,741,5871,4 +22086,741,9729,3 +22087,741,4369,3 +22088,741,8208,3 +22089,741,3905,5 +22090,741,2307,3 +22091,741,2737,4 +22092,741,5949,2 +22093,741,684,2 +22094,741,1347,3 +22095,741,5360,1 +22096,741,1945,1 +22097,741,8962,5 +22098,741,8451,3 +22099,741,1300,1 +22100,741,231,5 +22101,741,9315,2 +22102,741,2864,1 +22103,741,5058,3 +22104,741,1590,2 +22105,741,7217,3 +22106,741,7308,1 +22107,741,1681,5 +22108,741,7548,1 +22109,742,6347,3 +22110,742,5332,1 +22111,742,8151,2 +22112,742,4648,5 +22113,742,9871,1 +22114,742,9801,2 +22115,742,743,5 +22116,742,7842,3 +22117,742,684,5 +22118,742,2850,4 +22119,742,3607,1 +22120,743,8719,1 +22121,743,1470,4 +22122,743,921,3 +22123,743,7083,5 +22124,743,7813,3 +22125,743,6366,3 +22126,743,2595,4 +22127,743,4887,2 +22128,743,6858,4 +22129,743,2511,1 +22130,743,1626,1 +22131,743,4867,1 +22132,743,8641,4 +22133,743,3854,4 +22134,743,4082,3 +22135,743,7331,3 +22136,743,9812,2 +22137,743,7255,2 +22138,744,2681,3 +22139,744,3984,5 +22140,744,4322,2 +22141,744,2204,4 +22142,744,820,2 +22143,744,3591,1 +22144,744,9828,5 +22145,744,4009,5 +22146,744,103,4 +22147,744,7367,1 +22148,744,4809,2 +22149,744,5282,4 +22150,744,2410,4 +22151,744,6149,4 +22152,744,6235,1 +22153,744,742,5 +22154,745,6068,4 +22155,745,4034,4 +22156,745,8216,4 +22157,745,1131,2 +22158,745,399,2 +22159,745,475,4 +22160,745,6748,4 +22161,745,670,5 +22162,745,6408,2 +22163,745,8304,3 +22164,745,8137,4 +22165,745,532,2 +22166,745,6203,3 +22167,745,4881,1 +22168,745,4416,5 +22169,745,1752,1 +22170,745,3631,4 +22171,745,1154,5 +22172,745,3361,2 +22173,745,8892,2 +22174,745,5586,4 +22175,745,4214,5 +22176,745,2108,5 +22177,745,9058,3 +22178,745,2809,3 +22179,745,4521,4 +22180,745,5337,3 +22181,745,980,1 +22182,745,7870,2 +22183,745,1854,4 +22184,745,66,4 +22185,746,226,1 +22186,746,3656,2 +22187,746,895,5 +22188,746,6775,2 +22189,746,9284,1 +22190,746,5601,5 +22191,746,8838,4 +22192,746,7555,5 +22193,746,3736,4 +22194,746,9946,1 +22195,746,9744,4 +22196,746,8376,5 +22197,746,2673,2 +22198,746,1047,3 +22199,746,4601,4 +22200,746,2925,4 +22201,746,2954,4 +22202,746,649,5 +22203,746,3713,4 +22204,746,3918,1 +22205,746,8677,5 +22206,746,7092,3 +22207,746,2768,2 +22208,746,1241,2 +22209,746,3591,3 +22210,746,9765,2 +22211,746,6536,3 +22212,747,9037,4 +22213,747,3457,2 +22214,747,756,2 +22215,747,1012,4 +22216,747,5959,4 +22217,747,9997,2 +22218,747,8248,4 +22219,747,7589,1 +22220,747,9844,5 +22221,747,7531,4 +22222,747,3025,1 +22223,747,142,3 +22224,747,7003,1 +22225,747,2872,3 +22226,747,1991,4 +22227,747,4251,5 +22228,747,8654,2 +22229,747,619,5 +22230,747,7957,2 +22231,747,8712,4 +22232,747,1640,5 +22233,748,9689,4 +22234,748,68,4 +22235,748,8840,4 +22236,748,3745,2 +22237,748,6429,5 +22238,748,3091,3 +22239,748,8968,1 +22240,748,3168,2 +22241,748,4772,3 +22242,748,7299,5 +22243,748,9952,5 +22244,748,2059,1 +22245,748,6701,2 +22246,748,6203,5 +22247,748,5741,2 +22248,748,2217,1 +22249,748,8086,1 +22250,748,3667,1 +22251,748,9082,4 +22252,748,3082,1 +22253,748,155,2 +22254,748,3806,5 +22255,748,4391,2 +22256,748,9721,2 +22257,748,9075,2 +22258,749,4291,2 +22259,749,3448,4 +22260,749,4298,4 +22261,749,5035,4 +22262,749,7182,1 +22263,749,9833,1 +22264,749,4992,1 +22265,749,4735,4 +22266,749,1658,3 +22267,749,6807,3 +22268,749,8253,3 +22269,749,578,1 +22270,749,8863,5 +22271,749,9743,2 +22272,749,1200,1 +22273,749,5954,3 +22274,749,2088,2 +22275,749,322,1 +22276,749,594,1 +22277,749,3575,5 +22278,749,6816,5 +22279,749,4905,4 +22280,749,6093,4 +22281,749,924,3 +22282,749,2115,1 +22283,749,3023,2 +22284,749,2512,2 +22285,749,8050,5 +22286,749,6724,1 +22287,749,7017,4 +22288,749,4849,4 +22289,749,3969,3 +22290,749,8972,5 +22291,749,5985,5 +22292,750,9841,2 +22293,750,7269,1 +22294,750,935,3 +22295,750,5779,5 +22296,750,5797,3 +22297,750,3982,4 +22298,750,6558,5 +22299,750,1064,5 +22300,750,2352,4 +22301,750,7264,1 +22302,751,2281,2 +22303,751,4050,2 +22304,751,3657,3 +22305,751,6392,3 +22306,751,5700,4 +22307,751,6023,2 +22308,751,6672,2 +22309,751,2171,3 +22310,751,4728,1 +22311,751,3532,1 +22312,751,1496,3 +22313,751,4319,3 +22314,751,9416,3 +22315,751,5570,4 +22316,751,8805,2 +22317,751,725,2 +22318,751,4210,4 +22319,751,2347,2 +22320,751,7458,3 +22321,751,9781,3 +22322,751,2899,3 +22323,751,8167,5 +22324,751,1956,5 +22325,751,9215,3 +22326,751,441,2 +22327,751,1834,1 +22328,752,1244,1 +22329,752,1964,2 +22330,752,6897,1 +22331,752,2323,1 +22332,752,9240,5 +22333,752,4515,2 +22334,752,109,5 +22335,752,6693,3 +22336,752,8741,2 +22337,752,5476,1 +22338,752,979,5 +22339,752,6387,3 +22340,752,137,5 +22341,752,2139,2 +22342,752,7167,2 +22343,752,1434,1 +22344,752,7925,2 +22345,753,792,4 +22346,753,3314,5 +22347,753,147,1 +22348,753,2832,1 +22349,753,1481,2 +22350,753,6343,2 +22351,753,1705,4 +22352,753,2876,3 +22353,753,1266,2 +22354,753,8938,3 +22355,753,2261,3 +22356,753,8159,1 +22357,753,3724,2 +22358,753,4774,1 +22359,753,2562,3 +22360,753,303,3 +22361,753,8976,5 +22362,753,2214,5 +22363,753,4810,2 +22364,753,3641,5 +22365,753,9926,5 +22366,753,9650,5 +22367,753,3363,2 +22368,753,7529,4 +22369,753,1132,1 +22370,753,4821,2 +22371,753,582,2 +22372,753,3672,3 +22373,753,1347,2 +22374,753,5452,3 +22375,753,7392,4 +22376,753,7795,2 +22377,753,7615,5 +22378,754,1492,3 +22379,754,3058,4 +22380,754,6281,3 +22381,754,3699,1 +22382,754,6776,3 +22383,754,8044,4 +22384,754,7148,5 +22385,754,4642,5 +22386,754,3884,2 +22387,754,2017,5 +22388,754,8551,2 +22389,755,8853,3 +22390,755,7959,4 +22391,755,5055,5 +22392,755,5321,4 +22393,755,9252,3 +22394,755,226,1 +22395,755,8277,2 +22396,755,7932,4 +22397,755,5881,5 +22398,755,667,5 +22399,755,7533,5 +22400,755,3966,1 +22401,755,7986,5 +22402,755,17,2 +22403,755,659,1 +22404,755,530,5 +22405,755,2604,5 +22406,755,9116,2 +22407,755,6116,4 +22408,755,2040,1 +22409,755,5012,2 +22410,755,4884,4 +22411,755,1871,4 +22412,755,7659,4 +22413,755,22,5 +22414,755,6800,1 +22415,755,7799,5 +22416,755,324,5 +22417,755,3474,1 +22418,756,1381,4 +22419,756,8993,1 +22420,756,5393,5 +22421,756,5479,1 +22422,756,2598,3 +22423,756,1892,2 +22424,756,3945,4 +22425,756,8592,1 +22426,756,6549,4 +22427,756,4974,4 +22428,756,2549,5 +22429,756,8267,2 +22430,756,2623,5 +22431,756,1105,3 +22432,756,4312,1 +22433,756,8122,3 +22434,756,2620,3 +22435,756,8490,1 +22436,756,8957,1 +22437,756,5989,5 +22438,756,266,3 +22439,756,71,5 +22440,756,3467,3 +22441,756,9259,1 +22442,756,9762,1 +22443,756,8296,1 +22444,756,1323,1 +22445,756,4949,4 +22446,757,7811,3 +22447,757,667,5 +22448,757,3461,1 +22449,757,1129,4 +22450,757,9042,2 +22451,757,9703,1 +22452,757,5884,5 +22453,757,4040,1 +22454,757,9996,4 +22455,757,710,5 +22456,757,7689,1 +22457,757,832,4 +22458,757,1495,1 +22459,757,4226,1 +22460,757,3762,1 +22461,757,9128,2 +22462,757,5741,3 +22463,757,9764,3 +22464,757,1482,2 +22465,757,9353,1 +22466,758,2418,4 +22467,758,2588,5 +22468,758,9201,2 +22469,758,1970,1 +22470,758,3146,1 +22471,758,9184,2 +22472,758,3876,3 +22473,758,5134,5 +22474,758,4433,1 +22475,758,6163,2 +22476,758,1127,3 +22477,758,1354,1 +22478,758,6402,3 +22479,758,5096,2 +22480,758,814,1 +22481,758,8473,2 +22482,758,5892,2 +22483,758,961,1 +22484,758,7518,4 +22485,758,885,2 +22486,759,4908,4 +22487,759,762,3 +22488,759,3918,5 +22489,759,6639,2 +22490,759,8319,1 +22491,759,8419,3 +22492,759,1154,5 +22493,759,2119,5 +22494,759,6373,2 +22495,759,1588,5 +22496,759,5658,3 +22497,759,938,2 +22498,759,975,2 +22499,759,9012,3 +22500,759,4293,5 +22501,759,3731,3 +22502,759,4728,5 +22503,759,5496,5 +22504,759,3470,4 +22505,759,4849,1 +22506,759,5174,1 +22507,759,5419,4 +22508,759,3990,1 +22509,759,9181,5 +22510,759,1736,1 +22511,759,391,3 +22512,759,760,5 +22513,759,3780,3 +22514,759,2095,4 +22515,759,5732,4 +22516,759,2386,3 +22517,759,9593,1 +22518,759,3082,4 +22519,759,7659,2 +22520,759,1341,5 +22521,759,906,2 +22522,760,8728,1 +22523,760,3254,5 +22524,760,4163,4 +22525,760,2429,4 +22526,760,8235,4 +22527,760,4892,5 +22528,760,8115,3 +22529,760,5875,3 +22530,760,1540,2 +22531,760,5113,2 +22532,760,3595,5 +22533,760,7754,2 +22534,760,447,2 +22535,760,1963,3 +22536,760,6265,4 +22537,760,2934,2 +22538,760,3822,4 +22539,760,9624,2 +22540,760,1922,3 +22541,760,806,1 +22542,760,3604,3 +22543,760,3889,2 +22544,760,7106,1 +22545,760,8413,4 +22546,760,5500,1 +22547,760,1465,5 +22548,760,606,5 +22549,760,1707,1 +22550,760,2737,1 +22551,760,4121,1 +22552,760,2926,4 +22553,760,9551,2 +22554,760,4873,4 +22555,760,1501,4 +22556,760,2055,5 +22557,760,3884,4 +22558,760,7840,1 +22559,760,1433,1 +22560,760,9446,2 +22561,761,1122,2 +22562,761,6876,2 +22563,761,5902,4 +22564,761,4895,5 +22565,761,8830,4 +22566,761,719,4 +22567,761,7571,4 +22568,761,3436,5 +22569,761,5648,3 +22570,761,2817,1 +22571,761,8880,1 +22572,761,3806,5 +22573,761,5273,2 +22574,762,2855,3 +22575,762,7282,4 +22576,762,5620,2 +22577,762,3382,1 +22578,762,4318,1 +22579,762,5042,4 +22580,762,9817,4 +22581,762,1704,3 +22582,762,9614,4 +22583,762,5796,5 +22584,762,6296,3 +22585,762,6790,2 +22586,762,7279,3 +22587,762,9432,2 +22588,762,2910,5 +22589,762,1676,5 +22590,762,1122,3 +22591,762,8784,1 +22592,762,5392,1 +22593,762,9025,5 +22594,762,5435,5 +22595,762,8232,2 +22596,762,1108,2 +22597,762,9883,4 +22598,762,7239,2 +22599,762,968,3 +22600,762,286,1 +22601,762,7223,2 +22602,762,2479,3 +22603,762,2395,2 +22604,762,5457,2 +22605,762,3167,2 +22606,762,4771,2 +22607,762,6010,5 +22608,762,9980,4 +22609,763,4231,1 +22610,763,8514,5 +22611,763,3625,5 +22612,763,6843,5 +22613,763,8790,4 +22614,763,6529,1 +22615,763,9196,3 +22616,763,835,4 +22617,763,7798,1 +22618,763,6193,2 +22619,763,4005,1 +22620,763,585,3 +22621,764,5741,5 +22622,764,7738,1 +22623,764,9003,5 +22624,764,7404,3 +22625,764,7470,5 +22626,764,8941,1 +22627,764,7642,3 +22628,764,888,1 +22629,764,4533,2 +22630,764,3959,2 +22631,764,4280,3 +22632,764,3415,1 +22633,764,9807,1 +22634,764,1657,3 +22635,764,836,4 +22636,764,966,5 +22637,764,2964,5 +22638,764,4479,4 +22639,764,1885,4 +22640,764,6177,4 +22641,764,1650,5 +22642,764,3035,4 +22643,764,5877,4 +22644,764,8121,1 +22645,764,6417,4 +22646,764,9183,2 +22647,764,3201,3 +22648,764,4628,1 +22649,764,1277,5 +22650,764,3397,4 +22651,764,7451,1 +22652,764,5153,4 +22653,764,5085,3 +22654,764,8400,5 +22655,764,9032,5 +22656,764,3582,2 +22657,764,6593,2 +22658,764,8987,1 +22659,764,42,5 +22660,764,1853,5 +22661,764,6504,2 +22662,764,2643,1 +22663,764,8731,1 +22664,764,8248,3 +22665,764,808,5 +22666,764,2665,5 +22667,765,207,3 +22668,765,7503,5 +22669,765,85,2 +22670,765,4433,3 +22671,765,6640,1 +22672,765,8558,5 +22673,765,3335,4 +22674,765,5805,5 +22675,765,5658,3 +22676,765,1700,3 +22677,765,1080,1 +22678,765,9647,1 +22679,765,4507,1 +22680,765,4984,1 +22681,765,512,1 +22682,765,2982,2 +22683,765,5312,3 +22684,765,2448,3 +22685,765,7057,4 +22686,765,8796,3 +22687,765,6198,5 +22688,765,1532,2 +22689,765,6672,2 +22690,765,253,3 +22691,765,7582,5 +22692,765,3331,2 +22693,766,7546,5 +22694,766,4295,1 +22695,766,9311,2 +22696,766,6638,5 +22697,766,9684,2 +22698,766,3888,1 +22699,766,1305,2 +22700,766,1919,4 +22701,766,4464,4 +22702,766,8848,4 +22703,766,6682,1 +22704,766,4032,5 +22705,766,1205,1 +22706,766,1422,3 +22707,766,2845,2 +22708,766,2881,3 +22709,766,1233,1 +22710,766,9704,4 +22711,766,3441,3 +22712,766,4556,1 +22713,766,4374,2 +22714,766,3546,4 +22715,766,3058,3 +22716,766,3223,3 +22717,766,6720,5 +22718,766,8316,1 +22719,766,9830,5 +22720,766,3189,3 +22721,766,2239,4 +22722,766,8821,4 +22723,766,9472,5 +22724,767,913,5 +22725,767,9151,5 +22726,767,9835,5 +22727,767,2934,4 +22728,767,977,3 +22729,767,5999,3 +22730,767,5144,4 +22731,767,9962,1 +22732,767,4179,3 +22733,767,7177,3 +22734,767,1564,5 +22735,767,4581,3 +22736,767,8450,4 +22737,767,288,5 +22738,768,8155,5 +22739,768,6144,3 +22740,768,941,2 +22741,768,9114,5 +22742,768,3797,3 +22743,768,2080,4 +22744,768,9652,2 +22745,768,7705,2 +22746,768,7663,1 +22747,768,7249,3 +22748,768,9840,3 +22749,768,9346,5 +22750,768,7522,3 +22751,768,6401,2 +22752,768,244,3 +22753,768,5041,4 +22754,768,581,5 +22755,768,8013,5 +22756,768,257,2 +22757,768,1220,3 +22758,768,4386,3 +22759,768,4794,2 +22760,768,8974,2 +22761,768,2346,1 +22762,768,2447,3 +22763,769,507,2 +22764,769,6162,1 +22765,769,5544,1 +22766,769,8204,1 +22767,769,1879,3 +22768,769,6969,3 +22769,769,2934,4 +22770,769,8380,4 +22771,769,8800,3 +22772,769,3262,1 +22773,769,7990,4 +22774,769,2519,5 +22775,769,5554,4 +22776,769,3915,5 +22777,769,7212,4 +22778,769,3337,1 +22779,769,8483,4 +22780,769,7340,2 +22781,769,2243,5 +22782,769,4590,5 +22783,770,6800,3 +22784,770,6515,1 +22785,770,8960,5 +22786,770,7686,2 +22787,770,4887,5 +22788,770,5962,2 +22789,770,8883,2 +22790,770,1279,5 +22791,770,5895,2 +22792,770,6456,4 +22793,770,9608,2 +22794,770,1592,5 +22795,770,1606,3 +22796,770,9955,1 +22797,770,8340,4 +22798,770,7203,1 +22799,770,3070,4 +22800,770,4269,2 +22801,770,3536,1 +22802,770,4872,4 +22803,770,6278,5 +22804,770,935,4 +22805,770,9880,2 +22806,770,1607,5 +22807,770,4978,2 +22808,770,9971,1 +22809,770,5833,5 +22810,770,4262,3 +22811,770,3097,4 +22812,770,3047,5 +22813,770,6130,5 +22814,770,8493,4 +22815,770,7217,1 +22816,771,1562,5 +22817,771,3344,4 +22818,771,5559,4 +22819,771,8832,5 +22820,771,3684,1 +22821,771,9178,1 +22822,771,6461,3 +22823,771,698,1 +22824,771,1454,2 +22825,771,316,1 +22826,771,6750,3 +22827,771,1728,3 +22828,771,932,2 +22829,771,5493,4 +22830,771,5713,4 +22831,771,3375,1 +22832,771,5833,2 +22833,771,6408,4 +22834,771,5089,4 +22835,771,9858,4 +22836,771,4009,4 +22837,771,990,2 +22838,771,3863,4 +22839,771,5570,1 +22840,771,1484,4 +22841,771,5106,3 +22842,771,3119,1 +22843,771,7575,1 +22844,771,610,3 +22845,771,5459,4 +22846,771,2165,2 +22847,771,5220,2 +22848,772,1647,2 +22849,772,8382,4 +22850,772,5145,1 +22851,772,4324,1 +22852,772,434,1 +22853,772,6070,1 +22854,772,5843,3 +22855,772,8924,5 +22856,772,449,5 +22857,772,7769,2 +22858,772,2310,1 +22859,772,4271,4 +22860,772,3082,4 +22861,772,8602,3 +22862,772,6658,3 +22863,772,4771,3 +22864,772,6979,2 +22865,772,4345,5 +22866,772,8934,2 +22867,772,1467,2 +22868,772,3579,4 +22869,772,3541,3 +22870,772,2069,4 +22871,772,3796,3 +22872,772,1995,1 +22873,772,4929,4 +22874,772,1618,1 +22875,772,6797,3 +22876,772,9068,1 +22877,772,5175,1 +22878,773,1015,5 +22879,773,201,5 +22880,773,4189,1 +22881,773,9587,1 +22882,773,3920,2 +22883,773,8543,1 +22884,773,75,1 +22885,773,4689,4 +22886,773,2380,5 +22887,773,266,1 +22888,773,2018,2 +22889,773,3989,5 +22890,773,7386,4 +22891,773,1741,1 +22892,773,4093,3 +22893,773,9712,2 +22894,773,861,2 +22895,773,1020,3 +22896,773,623,3 +22897,773,7647,2 +22898,773,8340,3 +22899,773,6848,5 +22900,773,9173,3 +22901,773,3353,3 +22902,774,8465,4 +22903,774,4455,4 +22904,774,1406,4 +22905,774,1530,4 +22906,774,4179,4 +22907,774,5159,1 +22908,774,2751,5 +22909,774,5241,3 +22910,774,1358,5 +22911,774,1865,1 +22912,774,5807,4 +22913,774,6344,5 +22914,775,2913,5 +22915,775,4420,3 +22916,775,6366,3 +22917,775,8628,3 +22918,775,72,4 +22919,775,4927,3 +22920,775,8239,1 +22921,775,7261,5 +22922,775,9531,3 +22923,775,3353,5 +22924,775,162,4 +22925,775,2560,4 +22926,776,5740,2 +22927,776,6080,1 +22928,776,1018,5 +22929,776,7887,3 +22930,776,9577,3 +22931,776,9469,2 +22932,776,7872,4 +22933,776,2047,3 +22934,776,7237,4 +22935,776,244,5 +22936,776,9924,1 +22937,776,1081,2 +22938,776,2080,2 +22939,776,271,3 +22940,776,2139,4 +22941,776,7494,3 +22942,776,759,4 +22943,776,2518,1 +22944,776,2315,1 +22945,776,7067,4 +22946,776,3830,5 +22947,776,2807,2 +22948,776,9658,2 +22949,776,1984,5 +22950,776,7082,1 +22951,776,9195,1 +22952,776,1146,1 +22953,776,7899,1 +22954,776,7146,1 +22955,776,1028,1 +22956,776,3116,3 +22957,776,514,1 +22958,776,85,1 +22959,776,1199,4 +22960,776,8871,3 +22961,776,5865,4 +22962,776,9905,3 +22963,776,8152,1 +22964,776,9985,4 +22965,776,2332,3 +22966,776,5631,2 +22967,776,327,1 +22968,776,6980,2 +22969,776,9250,3 +22970,776,9990,3 +22971,776,1451,5 +22972,776,899,2 +22973,777,3194,3 +22974,777,8514,2 +22975,777,4189,5 +22976,777,4236,5 +22977,777,3995,5 +22978,777,5738,4 +22979,777,629,5 +22980,777,2779,2 +22981,777,7268,1 +22982,777,4383,2 +22983,777,5219,2 +22984,777,9973,5 +22985,777,5131,3 +22986,777,8001,1 +22987,777,8757,3 +22988,777,2625,5 +22989,777,939,1 +22990,777,6769,5 +22991,777,953,4 +22992,777,3764,4 +22993,777,3119,5 +22994,778,3133,1 +22995,778,4441,5 +22996,778,9466,4 +22997,778,750,2 +22998,778,258,3 +22999,778,6199,5 +23000,778,5153,2 +23001,778,3042,3 +23002,778,1714,1 +23003,778,3965,3 +23004,778,9366,5 +23005,778,1611,1 +23006,778,2911,1 +23007,778,7012,1 +23008,778,485,4 +23009,778,8693,5 +23010,778,3362,2 +23011,778,7229,4 +23012,778,9218,5 +23013,778,5126,1 +23014,778,1679,4 +23015,778,1319,1 +23016,778,6787,5 +23017,778,5168,1 +23018,778,7100,2 +23019,778,2595,4 +23020,778,6090,3 +23021,778,7101,4 +23022,778,7778,4 +23023,779,3161,1 +23024,779,6534,5 +23025,779,9006,2 +23026,779,9131,3 +23027,779,5989,3 +23028,779,2279,1 +23029,779,2735,2 +23030,779,8498,1 +23031,779,359,5 +23032,779,3100,3 +23033,779,4727,2 +23034,779,6760,5 +23035,779,3398,4 +23036,779,9041,1 +23037,779,9234,4 +23038,779,6539,3 +23039,779,7032,1 +23040,779,1624,2 +23041,779,8210,4 +23042,779,2969,5 +23043,780,457,1 +23044,780,9435,4 +23045,780,1609,4 +23046,780,9349,4 +23047,780,7014,3 +23048,780,9849,5 +23049,780,7338,5 +23050,780,9898,1 +23051,780,7099,4 +23052,780,4024,4 +23053,780,9922,4 +23054,780,638,1 +23055,780,3611,1 +23056,780,4267,3 +23057,780,8673,2 +23058,780,3079,2 +23059,780,1848,3 +23060,780,5002,2 +23061,780,1480,2 +23062,780,861,4 +23063,780,9460,3 +23064,780,9758,2 +23065,780,8778,3 +23066,780,2520,5 +23067,780,8020,4 +23068,780,7206,5 +23069,780,8213,3 +23070,780,6345,4 +23071,780,6134,2 +23072,780,7160,2 +23073,780,3317,2 +23074,780,9728,5 +23075,780,4297,5 +23076,780,1481,3 +23077,780,8651,3 +23078,780,6243,2 +23079,780,1401,5 +23080,780,659,5 +23081,780,4556,5 +23082,780,1564,3 +23083,780,3127,3 +23084,780,733,3 +23085,780,5764,4 +23086,780,1881,3 +23087,781,5371,5 +23088,781,8886,5 +23089,781,7263,4 +23090,781,6312,5 +23091,781,6754,3 +23092,781,1513,2 +23093,781,5375,1 +23094,781,4889,3 +23095,781,4377,3 +23096,781,6566,4 +23097,781,1285,4 +23098,781,936,4 +23099,781,472,4 +23100,781,5837,5 +23101,781,3307,2 +23102,781,5292,4 +23103,781,9626,1 +23104,781,3069,1 +23105,781,13,1 +23106,781,1786,4 +23107,781,7006,3 +23108,781,1357,4 +23109,781,1189,4 +23110,781,1131,5 +23111,781,1402,3 +23112,781,3884,3 +23113,781,1704,5 +23114,781,4482,5 +23115,781,4727,4 +23116,781,1742,5 +23117,781,1307,5 +23118,781,2819,2 +23119,781,1522,4 +23120,781,3006,2 +23121,781,5537,5 +23122,781,171,5 +23123,782,4325,4 +23124,782,1716,1 +23125,782,2967,1 +23126,782,6924,5 +23127,782,2785,1 +23128,782,7617,3 +23129,782,3989,4 +23130,782,3040,3 +23131,782,8411,1 +23132,782,3441,2 +23133,782,2048,3 +23134,782,3778,4 +23135,782,4521,5 +23136,782,9914,5 +23137,782,7319,2 +23138,782,183,2 +23139,782,3468,1 +23140,782,9435,3 +23141,782,4715,5 +23142,782,9037,2 +23143,782,2621,3 +23144,782,721,3 +23145,782,5502,5 +23146,782,867,1 +23147,782,8779,4 +23148,782,1340,4 +23149,783,7518,5 +23150,783,5084,2 +23151,783,3487,3 +23152,783,1204,5 +23153,783,964,5 +23154,783,4811,2 +23155,783,5545,3 +23156,783,8454,5 +23157,783,7065,1 +23158,783,6306,1 +23159,783,3276,3 +23160,783,8031,1 +23161,783,1328,2 +23162,783,6265,5 +23163,783,9506,3 +23164,783,5741,1 +23165,783,6947,3 +23166,783,4002,4 +23167,783,1079,1 +23168,783,798,3 +23169,783,3845,3 +23170,783,8439,3 +23171,783,9398,3 +23172,783,3415,5 +23173,783,7579,2 +23174,783,7264,2 +23175,783,1393,5 +23176,783,5342,1 +23177,783,2313,1 +23178,783,9979,1 +23179,783,2613,5 +23180,783,69,2 +23181,783,2491,1 +23182,783,4696,3 +23183,783,1068,2 +23184,783,2630,5 +23185,783,6906,5 +23186,783,5466,4 +23187,783,4118,3 +23188,783,512,3 +23189,783,2099,4 +23190,783,9317,4 +23191,783,7025,2 +23192,783,3645,1 +23193,783,2009,3 +23194,784,5464,2 +23195,784,2095,3 +23196,784,7901,1 +23197,784,9834,4 +23198,784,4796,3 +23199,784,154,2 +23200,784,6249,2 +23201,784,6347,5 +23202,784,5694,2 +23203,784,8138,1 +23204,784,4628,1 +23205,784,3900,1 +23206,784,7254,1 +23207,784,3975,3 +23208,784,706,3 +23209,784,5106,2 +23210,784,2455,2 +23211,784,4001,4 +23212,784,4504,4 +23213,784,8189,1 +23214,784,5155,1 +23215,784,4393,5 +23216,784,5036,2 +23217,784,9991,4 +23218,784,748,3 +23219,784,1150,1 +23220,784,3549,5 +23221,784,2943,5 +23222,784,3566,2 +23223,784,619,5 +23224,785,3465,5 +23225,785,2029,3 +23226,785,5472,4 +23227,785,8102,5 +23228,785,5711,5 +23229,785,2705,2 +23230,785,941,3 +23231,785,2774,1 +23232,785,504,1 +23233,785,9812,1 +23234,785,8727,3 +23235,785,379,4 +23236,785,3688,1 +23237,785,905,3 +23238,785,377,3 +23239,785,8404,1 +23240,785,9398,4 +23241,785,2791,2 +23242,785,1707,3 +23243,785,7605,5 +23244,785,4617,1 +23245,785,3261,1 +23246,785,3866,5 +23247,785,2894,5 +23248,785,6889,3 +23249,785,9860,2 +23250,785,2205,3 +23251,785,8327,5 +23252,785,4757,3 +23253,785,8266,4 +23254,785,707,5 +23255,785,3623,4 +23256,785,164,2 +23257,785,3948,3 +23258,785,4011,5 +23259,785,4935,4 +23260,785,6357,3 +23261,785,5650,5 +23262,785,7313,4 +23263,785,8281,4 +23264,785,9665,5 +23265,785,7757,3 +23266,785,4667,3 +23267,786,8398,1 +23268,786,9896,3 +23269,786,7528,2 +23270,786,2305,4 +23271,786,8111,1 +23272,786,5066,3 +23273,786,4174,4 +23274,786,7011,1 +23275,786,5827,4 +23276,786,5055,1 +23277,786,4004,4 +23278,786,4237,3 +23279,786,493,1 +23280,786,1688,4 +23281,786,5474,2 +23282,786,7220,4 +23283,786,1767,3 +23284,786,5903,4 +23285,786,2179,3 +23286,786,9624,5 +23287,786,9592,4 +23288,786,5083,2 +23289,786,1151,4 +23290,786,4513,2 +23291,786,7594,1 +23292,786,3946,1 +23293,786,4543,1 +23294,786,417,4 +23295,786,1689,5 +23296,786,1289,3 +23297,786,9246,2 +23298,787,1235,3 +23299,787,9731,4 +23300,787,5817,2 +23301,787,1385,4 +23302,787,2309,3 +23303,787,2200,2 +23304,787,7940,5 +23305,787,2750,1 +23306,787,8655,2 +23307,787,8867,1 +23308,787,9184,3 +23309,787,6546,2 +23310,787,514,3 +23311,787,8862,4 +23312,787,8530,3 +23313,787,5231,2 +23314,787,4232,5 +23315,787,7894,3 +23316,787,5416,3 +23317,787,7856,5 +23318,787,823,5 +23319,787,6113,5 +23320,787,814,1 +23321,787,1731,4 +23322,787,3026,1 +23323,787,7151,1 +23324,787,3521,5 +23325,787,7076,5 +23326,787,258,1 +23327,787,7439,1 +23328,787,5068,1 +23329,787,2795,2 +23330,787,1044,5 +23331,787,9636,2 +23332,787,8687,4 +23333,787,3329,1 +23334,787,6168,2 +23335,787,5948,5 +23336,787,1382,2 +23337,787,5614,5 +23338,787,6677,1 +23339,787,6994,3 +23340,787,9132,2 +23341,787,327,3 +23342,787,7637,2 +23343,787,1293,3 +23344,787,1994,3 +23345,787,7389,3 +23346,787,1568,4 +23347,787,8910,2 +23348,788,659,2 +23349,788,7964,4 +23350,788,199,4 +23351,788,1482,1 +23352,788,5078,5 +23353,788,8486,4 +23354,788,698,1 +23355,788,3835,1 +23356,788,6132,3 +23357,788,5857,3 +23358,788,3845,5 +23359,788,6614,2 +23360,788,8251,5 +23361,788,4622,4 +23362,788,3348,5 +23363,788,3494,3 +23364,788,4383,4 +23365,788,6893,5 +23366,788,4535,3 +23367,788,8842,3 +23368,788,2245,5 +23369,788,4377,3 +23370,788,2928,2 +23371,788,1489,3 +23372,789,8592,3 +23373,789,7155,4 +23374,789,9327,1 +23375,789,2278,3 +23376,789,5749,3 +23377,789,7424,1 +23378,789,8348,1 +23379,789,8596,1 +23380,789,1237,2 +23381,789,8198,3 +23382,789,2917,1 +23383,789,8917,3 +23384,789,5034,4 +23385,789,3601,3 +23386,789,1159,4 +23387,789,9330,3 +23388,789,4818,4 +23389,789,9588,2 +23390,789,1506,2 +23391,789,4825,3 +23392,789,128,2 +23393,789,7771,4 +23394,789,8620,2 +23395,789,3464,4 +23396,789,1037,3 +23397,789,7042,5 +23398,789,8608,1 +23399,790,1749,1 +23400,790,6917,2 +23401,790,2528,1 +23402,790,4976,4 +23403,790,3352,3 +23404,790,9398,4 +23405,790,8693,5 +23406,790,3368,3 +23407,790,776,2 +23408,790,2439,4 +23409,790,6873,4 +23410,790,8897,5 +23411,790,7046,4 +23412,790,2407,5 +23413,790,5321,4 +23414,790,6157,5 +23415,790,5048,4 +23416,790,957,2 +23417,790,2190,5 +23418,790,4654,5 +23419,790,9588,3 +23420,790,6362,4 +23421,790,2842,5 +23422,790,947,5 +23423,790,3034,3 +23424,790,3762,5 +23425,790,9589,4 +23426,790,4208,1 +23427,790,9680,1 +23428,790,6139,2 +23429,790,110,4 +23430,790,4183,1 +23431,790,2217,1 +23432,790,5433,2 +23433,791,8918,5 +23434,791,6822,4 +23435,791,8852,3 +23436,791,6940,1 +23437,791,391,2 +23438,791,1146,2 +23439,791,8235,2 +23440,791,8644,4 +23441,791,2389,5 +23442,791,9927,3 +23443,791,8985,3 +23444,791,5858,5 +23445,791,3574,2 +23446,791,6937,1 +23447,791,83,5 +23448,791,8601,2 +23449,792,8479,5 +23450,792,4931,2 +23451,792,1220,1 +23452,792,3190,5 +23453,792,1316,5 +23454,792,4558,5 +23455,792,1912,2 +23456,792,8636,4 +23457,792,1733,5 +23458,792,9425,2 +23459,792,7762,4 +23460,792,4495,5 +23461,792,8502,5 +23462,792,2835,2 +23463,792,471,3 +23464,792,2909,1 +23465,792,4607,1 +23466,792,7066,5 +23467,792,5891,4 +23468,792,7983,2 +23469,792,9467,2 +23470,792,1223,2 +23471,792,6419,2 +23472,792,6968,3 +23473,792,3617,4 +23474,792,9736,5 +23475,792,9033,3 +23476,792,5431,4 +23477,792,3246,3 +23478,792,6718,5 +23479,792,1293,3 +23480,792,2941,4 +23481,792,6500,4 +23482,792,4835,3 +23483,792,6569,3 +23484,792,3286,1 +23485,792,288,3 +23486,792,6910,2 +23487,793,2703,2 +23488,793,5151,3 +23489,793,1462,4 +23490,793,2567,3 +23491,793,827,2 +23492,793,1127,5 +23493,793,4799,2 +23494,793,6161,1 +23495,793,9720,4 +23496,793,5982,1 +23497,793,9385,4 +23498,793,4552,4 +23499,793,4483,3 +23500,793,7091,3 +23501,793,9471,3 +23502,793,5075,3 +23503,793,2884,5 +23504,793,3305,5 +23505,793,1651,5 +23506,793,9317,4 +23507,793,2996,5 +23508,793,6214,1 +23509,793,9440,5 +23510,793,4031,4 +23511,793,3647,1 +23512,793,6476,1 +23513,793,160,2 +23514,793,6178,4 +23515,793,2564,1 +23516,793,9654,5 +23517,793,7411,3 +23518,794,7525,1 +23519,794,4917,3 +23520,794,1094,1 +23521,794,7620,3 +23522,794,3994,5 +23523,794,5016,4 +23524,794,8290,3 +23525,794,4516,3 +23526,794,9187,3 +23527,794,8712,3 +23528,794,6329,2 +23529,794,4243,4 +23530,794,476,1 +23531,794,4139,1 +23532,795,2736,2 +23533,795,1193,2 +23534,795,4480,2 +23535,795,8841,3 +23536,795,2901,5 +23537,795,7974,4 +23538,795,2810,5 +23539,795,2638,4 +23540,795,2512,4 +23541,795,6157,3 +23542,795,1081,3 +23543,795,1520,3 +23544,795,61,2 +23545,795,7285,1 +23546,795,9702,1 +23547,795,5206,5 +23548,795,3691,2 +23549,795,7323,4 +23550,795,6364,2 +23551,795,758,4 +23552,795,6996,5 +23553,795,3873,4 +23554,795,8510,2 +23555,795,4348,1 +23556,796,8415,1 +23557,796,479,4 +23558,796,5782,4 +23559,796,963,5 +23560,796,9742,3 +23561,796,5656,1 +23562,796,5382,3 +23563,796,9571,3 +23564,796,2848,4 +23565,796,7286,3 +23566,796,521,1 +23567,796,7261,1 +23568,796,6587,3 +23569,796,3388,5 +23570,796,5653,3 +23571,796,4235,4 +23572,796,6139,4 +23573,796,7894,5 +23574,796,2676,4 +23575,796,5586,1 +23576,796,7874,5 +23577,796,4660,4 +23578,796,7438,1 +23579,796,8714,3 +23580,796,5062,3 +23581,796,183,2 +23582,797,5619,4 +23583,797,6864,2 +23584,797,3033,1 +23585,797,3963,1 +23586,797,3482,3 +23587,797,623,5 +23588,797,7472,3 +23589,797,2612,5 +23590,797,893,3 +23591,797,5021,5 +23592,797,5475,4 +23593,797,9502,1 +23594,797,9586,1 +23595,797,2322,4 +23596,797,2576,2 +23597,797,3723,4 +23598,797,3309,4 +23599,797,9664,5 +23600,797,7674,3 +23601,797,4686,5 +23602,797,6641,1 +23603,797,7841,2 +23604,797,3336,1 +23605,797,4396,1 +23606,797,9688,4 +23607,797,6458,4 +23608,797,9905,4 +23609,797,5437,4 +23610,797,2613,1 +23611,797,761,1 +23612,797,8593,1 +23613,797,9212,2 +23614,797,873,1 +23615,798,1296,1 +23616,798,8115,4 +23617,798,6010,5 +23618,798,322,2 +23619,798,2431,4 +23620,798,5946,3 +23621,798,8272,4 +23622,798,5617,3 +23623,798,7401,3 +23624,798,6492,3 +23625,798,4601,1 +23626,798,8359,3 +23627,798,583,1 +23628,798,3098,2 +23629,798,3345,5 +23630,798,5836,1 +23631,798,3939,5 +23632,798,6285,2 +23633,798,7686,2 +23634,798,1260,5 +23635,798,8181,5 +23636,798,1742,5 +23637,798,9013,3 +23638,798,7050,3 +23639,798,6171,5 +23640,798,6736,2 +23641,798,160,1 +23642,798,4908,4 +23643,798,2730,2 +23644,798,5488,1 +23645,798,6172,1 +23646,798,7959,4 +23647,798,7658,1 +23648,798,2345,2 +23649,799,2218,1 +23650,799,3189,2 +23651,799,9603,2 +23652,799,9805,2 +23653,799,4280,4 +23654,799,1859,4 +23655,799,5702,4 +23656,799,1305,5 +23657,799,9061,1 +23658,799,721,4 +23659,799,8607,3 +23660,799,9697,3 +23661,799,7868,3 +23662,799,3834,1 +23663,799,5817,2 +23664,799,7443,4 +23665,799,7089,1 +23666,799,7235,1 +23667,799,9300,5 +23668,799,2097,1 +23669,799,8874,4 +23670,799,87,2 +23671,799,8464,3 +23672,799,3744,2 +23673,799,5645,3 +23674,799,9727,3 +23675,799,8967,2 +23676,799,7617,3 +23677,799,1829,3 +23678,799,5791,4 +23679,799,9571,1 +23680,799,7929,2 +23681,799,8841,1 +23682,799,4665,2 +23683,799,1522,1 +23684,799,4184,3 +23685,799,7208,3 +23686,799,3128,5 +23687,800,9041,1 +23688,800,2615,2 +23689,800,1300,2 +23690,800,8889,1 +23691,800,3006,4 +23692,800,8879,1 +23693,800,3237,2 +23694,800,5531,5 +23695,800,7704,4 +23696,800,9359,5 +23697,800,1953,2 +23698,800,271,3 +23699,800,6148,1 +23700,800,3474,4 +23701,800,9714,5 +23702,800,6255,3 +23703,800,6861,1 +23704,800,1174,2 +23705,800,2544,2 +23706,800,3335,3 +23707,800,8196,1 +23708,800,1639,3 +23709,800,6308,5 +23710,800,1346,5 +23711,800,3143,3 +23712,800,5289,5 +23713,800,4157,5 +23714,800,2315,5 +23715,800,8898,5 +23716,800,1975,2 +23717,800,2890,3 +23718,800,7164,3 +23719,800,7913,3 +23720,800,159,2 +23721,800,901,5 +23722,801,828,3 +23723,801,3439,3 +23724,801,5816,4 +23725,801,5483,1 +23726,801,4498,5 +23727,801,2657,4 +23728,801,264,1 +23729,801,162,5 +23730,801,3921,3 +23731,801,1138,3 +23732,801,8609,2 +23733,801,5558,5 +23734,802,1173,4 +23735,802,7531,5 +23736,802,5274,1 +23737,802,5961,4 +23738,802,7806,3 +23739,802,4887,2 +23740,802,2453,4 +23741,802,9567,4 +23742,802,790,3 +23743,802,9485,2 +23744,802,3672,4 +23745,802,578,2 +23746,803,7431,5 +23747,803,776,5 +23748,803,3590,5 +23749,803,512,2 +23750,803,9748,5 +23751,803,1757,1 +23752,803,6001,3 +23753,803,7930,5 +23754,803,1928,5 +23755,803,7392,5 +23756,803,8352,1 +23757,803,4315,4 +23758,804,2135,1 +23759,804,8607,5 +23760,804,3824,5 +23761,804,7722,2 +23762,804,4141,5 +23763,804,8208,1 +23764,804,8897,1 +23765,804,4506,5 +23766,804,6892,4 +23767,804,3034,2 +23768,804,879,4 +23769,804,2065,4 +23770,804,8048,3 +23771,804,6851,5 +23772,804,9530,3 +23773,804,1126,4 +23774,804,3284,4 +23775,804,1548,5 +23776,804,4200,4 +23777,804,8246,1 +23778,804,3423,3 +23779,804,2694,1 +23780,804,5473,3 +23781,804,6048,4 +23782,804,2188,4 +23783,805,9772,2 +23784,805,9739,1 +23785,805,6876,3 +23786,805,9269,3 +23787,805,9674,5 +23788,805,7445,5 +23789,805,1667,4 +23790,805,92,3 +23791,805,1187,2 +23792,805,980,2 +23793,805,9339,5 +23794,805,5657,5 +23795,805,8262,1 +23796,805,1123,1 +23797,805,2550,1 +23798,805,3365,2 +23799,805,8011,4 +23800,805,6110,3 +23801,805,4263,5 +23802,805,1170,3 +23803,805,6929,2 +23804,805,870,1 +23805,805,7545,3 +23806,805,5845,2 +23807,805,3773,4 +23808,805,7590,4 +23809,805,5945,2 +23810,805,2892,5 +23811,805,4138,4 +23812,805,679,3 +23813,805,1871,1 +23814,805,5067,5 +23815,805,735,2 +23816,805,5862,2 +23817,805,6857,2 +23818,806,9070,3 +23819,806,1033,4 +23820,806,9844,4 +23821,806,7707,5 +23822,806,5298,3 +23823,806,2407,5 +23824,806,6291,3 +23825,806,9794,3 +23826,806,7490,4 +23827,806,8956,1 +23828,806,592,4 +23829,806,4210,5 +23830,806,8289,3 +23831,806,206,4 +23832,806,2583,1 +23833,806,3759,3 +23834,806,6532,5 +23835,806,2975,5 +23836,806,2398,3 +23837,807,1309,4 +23838,807,1643,1 +23839,807,3984,1 +23840,807,1317,5 +23841,807,9289,5 +23842,807,9631,1 +23843,807,9306,2 +23844,807,1657,2 +23845,807,8174,1 +23846,807,3375,5 +23847,807,9579,2 +23848,808,6687,1 +23849,808,9270,4 +23850,808,5182,2 +23851,808,808,5 +23852,808,4447,3 +23853,808,6924,4 +23854,808,4465,5 +23855,808,1722,3 +23856,808,2628,5 +23857,808,4449,1 +23858,808,152,4 +23859,808,8544,5 +23860,808,9334,3 +23861,808,9577,3 +23862,808,5549,4 +23863,808,6226,4 +23864,808,7251,3 +23865,808,1463,5 +23866,808,3165,1 +23867,808,8298,5 +23868,808,6905,1 +23869,808,2077,4 +23870,808,8950,5 +23871,808,6452,4 +23872,808,9564,1 +23873,808,630,1 +23874,808,8043,2 +23875,808,8903,1 +23876,808,25,2 +23877,808,5554,4 +23878,808,8629,5 +23879,808,5026,1 +23880,808,9053,5 +23881,808,6649,3 +23882,808,8149,3 +23883,808,2971,1 +23884,808,6593,2 +23885,808,2884,4 +23886,808,8294,2 +23887,808,7423,1 +23888,808,9561,3 +23889,808,4272,5 +23890,808,3865,4 +23891,808,4591,3 +23892,808,7468,3 +23893,808,7789,2 +23894,809,7377,2 +23895,809,1185,5 +23896,809,8681,4 +23897,809,9610,3 +23898,809,2960,5 +23899,809,6973,2 +23900,809,5276,2 +23901,809,9609,4 +23902,809,4147,5 +23903,809,9156,3 +23904,809,6418,5 +23905,809,7317,5 +23906,809,6558,4 +23907,809,1520,3 +23908,809,6770,1 +23909,809,3330,5 +23910,809,4290,5 +23911,809,4744,3 +23912,809,7549,5 +23913,809,2401,2 +23914,809,7611,2 +23915,809,5132,4 +23916,809,4525,4 +23917,809,6222,2 +23918,809,4994,2 +23919,809,8316,3 +23920,809,1458,4 +23921,809,9613,4 +23922,809,7340,2 +23923,809,8638,1 +23924,809,2022,4 +23925,809,7548,1 +23926,809,4254,2 +23927,809,4937,1 +23928,809,8319,5 +23929,810,2357,1 +23930,810,5468,1 +23931,810,3608,3 +23932,810,7029,1 +23933,810,2945,1 +23934,810,4500,2 +23935,810,4254,4 +23936,810,520,1 +23937,810,9622,3 +23938,810,4572,2 +23939,810,7641,3 +23940,810,8994,1 +23941,810,9354,1 +23942,810,3375,4 +23943,810,8052,2 +23944,810,4064,4 +23945,810,8705,4 +23946,810,7003,3 +23947,810,2062,4 +23948,810,485,4 +23949,810,1652,3 +23950,810,4807,3 +23951,810,5028,2 +23952,810,2524,3 +23953,810,4243,1 +23954,810,6925,1 +23955,810,2141,2 +23956,810,7322,4 +23957,810,5307,3 +23958,810,5593,3 +23959,810,9900,3 +23960,810,2713,5 +23961,810,9562,4 +23962,810,2964,1 +23963,810,6606,5 +23964,810,7989,2 +23965,810,2211,4 +23966,810,993,3 +23967,810,3186,1 +23968,810,902,2 +23969,810,5955,1 +23970,810,1806,5 +23971,810,3488,2 +23972,810,7741,3 +23973,810,3198,5 +23974,810,8418,1 +23975,811,4775,2 +23976,811,7120,3 +23977,811,516,2 +23978,811,3841,1 +23979,811,2657,3 +23980,811,1159,3 +23981,811,1187,5 +23982,811,2656,2 +23983,811,3648,3 +23984,811,337,5 +23985,811,167,2 +23986,811,7469,4 +23987,811,9485,3 +23988,811,1240,2 +23989,811,7179,4 +23990,811,6402,2 +23991,811,7033,5 +23992,811,2854,5 +23993,811,9075,5 +23994,811,4341,5 +23995,811,1568,5 +23996,811,9874,4 +23997,811,7917,5 +23998,811,5173,2 +23999,811,1349,1 +24000,811,5392,3 +24001,811,2621,1 +24002,811,508,1 +24003,811,4176,2 +24004,811,8509,1 +24005,811,7190,3 +24006,811,4082,1 +24007,811,8941,2 +24008,811,9352,4 +24009,811,1245,3 +24010,811,2064,4 +24011,811,3702,4 +24012,811,7731,3 +24013,811,8987,5 +24014,811,9857,5 +24015,812,2629,2 +24016,812,305,2 +24017,812,8017,3 +24018,812,7999,4 +24019,812,1706,4 +24020,812,1433,3 +24021,812,2853,5 +24022,812,4052,1 +24023,812,9982,1 +24024,812,9828,1 +24025,812,5828,5 +24026,812,4130,2 +24027,812,2789,1 +24028,812,895,2 +24029,812,525,4 +24030,812,4883,3 +24031,812,1370,4 +24032,812,4162,3 +24033,812,9809,5 +24034,812,2405,3 +24035,812,4842,1 +24036,812,6615,3 +24037,812,3640,2 +24038,812,4861,2 +24039,813,1131,3 +24040,813,4534,4 +24041,813,3818,3 +24042,813,3717,3 +24043,813,5930,2 +24044,813,1998,4 +24045,813,2138,4 +24046,813,4320,3 +24047,813,3453,2 +24048,813,3402,5 +24049,813,6361,4 +24050,813,4035,1 +24051,813,6835,2 +24052,813,5636,1 +24053,813,111,3 +24054,813,7861,4 +24055,813,5906,1 +24056,813,8846,1 +24057,813,4713,5 +24058,813,9249,4 +24059,813,471,2 +24060,813,5607,2 +24061,813,3919,3 +24062,813,4569,2 +24063,813,1838,4 +24064,813,5040,2 +24065,813,9551,5 +24066,813,3243,3 +24067,813,3307,2 +24068,813,9693,4 +24069,813,3172,1 +24070,813,5693,2 +24071,813,7602,5 +24072,814,8962,3 +24073,814,7752,5 +24074,814,4872,2 +24075,814,3740,3 +24076,814,6474,4 +24077,814,2352,5 +24078,814,2919,1 +24079,814,7552,2 +24080,814,7911,1 +24081,814,4775,3 +24082,814,2839,4 +24083,814,7260,2 +24084,814,2973,5 +24085,814,2504,5 +24086,814,528,1 +24087,814,8215,5 +24088,814,9542,5 +24089,814,9739,1 +24090,814,9848,3 +24091,814,43,5 +24092,814,6971,1 +24093,814,5626,2 +24094,814,8466,3 +24095,814,278,4 +24096,814,1360,3 +24097,814,131,4 +24098,814,4153,4 +24099,814,5292,2 +24100,814,9660,2 +24101,814,9415,3 +24102,814,1494,2 +24103,814,570,1 +24104,814,9320,3 +24105,814,8942,1 +24106,814,9989,1 +24107,814,2294,5 +24108,814,546,5 +24109,814,6791,1 +24110,814,6682,1 +24111,814,5409,4 +24112,814,7564,4 +24113,814,7041,2 +24114,814,5141,3 +24115,814,1429,2 +24116,814,5499,4 +24117,815,818,5 +24118,815,2494,4 +24119,815,7557,5 +24120,815,6795,2 +24121,815,7041,3 +24122,815,2046,4 +24123,815,130,2 +24124,815,9937,1 +24125,815,4441,3 +24126,815,9675,3 +24127,815,2237,4 +24128,815,7702,2 +24129,815,3770,3 +24130,815,331,3 +24131,815,259,3 +24132,815,5273,4 +24133,815,3236,2 +24134,815,7461,3 +24135,815,7593,1 +24136,815,6557,5 +24137,815,2134,5 +24138,815,2636,3 +24139,815,7530,2 +24140,815,2627,1 +24141,816,1659,2 +24142,816,1231,5 +24143,816,2661,1 +24144,816,6390,5 +24145,816,7248,3 +24146,816,3095,4 +24147,816,6378,1 +24148,816,3720,5 +24149,816,3235,3 +24150,816,4341,3 +24151,816,7853,3 +24152,816,3556,2 +24153,816,1596,4 +24154,816,7334,5 +24155,817,5966,1 +24156,817,6197,1 +24157,817,4088,5 +24158,817,6497,5 +24159,817,3468,2 +24160,817,7156,4 +24161,817,2623,1 +24162,817,3694,2 +24163,817,2273,1 +24164,817,1699,5 +24165,817,4838,2 +24166,817,8809,2 +24167,817,3748,2 +24168,817,6968,5 +24169,817,6510,4 +24170,817,2603,5 +24171,817,3178,1 +24172,817,1163,2 +24173,817,441,3 +24174,818,4402,5 +24175,818,7803,4 +24176,818,4620,3 +24177,818,6244,5 +24178,818,2323,5 +24179,818,3885,1 +24180,818,4691,2 +24181,818,5736,5 +24182,818,6097,4 +24183,818,4215,5 +24184,818,8595,2 +24185,818,89,1 +24186,818,3621,1 +24187,818,6964,4 +24188,818,1192,4 +24189,819,5906,1 +24190,819,4327,5 +24191,819,1423,3 +24192,819,8272,3 +24193,819,339,5 +24194,819,347,1 +24195,819,344,1 +24196,819,9032,2 +24197,819,4821,5 +24198,819,1296,4 +24199,819,3853,2 +24200,820,6999,3 +24201,820,1918,2 +24202,820,2385,3 +24203,820,6927,4 +24204,820,6675,2 +24205,820,3736,5 +24206,820,5328,4 +24207,820,3458,2 +24208,820,9759,3 +24209,820,6392,1 +24210,820,4366,3 +24211,820,1851,1 +24212,820,8656,1 +24213,820,225,5 +24214,820,7666,2 +24215,820,4108,4 +24216,820,492,5 +24217,820,2220,5 +24218,820,6456,4 +24219,820,7350,5 +24220,820,7029,2 +24221,820,350,1 +24222,820,704,5 +24223,820,3032,2 +24224,820,9376,3 +24225,820,4627,3 +24226,820,9372,2 +24227,820,1507,4 +24228,820,1726,3 +24229,820,2736,4 +24230,820,7762,5 +24231,820,811,2 +24232,820,1974,1 +24233,820,6803,5 +24234,820,3437,3 +24235,820,1021,4 +24236,820,9321,1 +24237,820,6964,4 +24238,820,8310,5 +24239,820,4215,2 +24240,820,1393,3 +24241,820,592,3 +24242,820,1903,5 +24243,820,7734,3 +24244,820,1041,5 +24245,820,1584,4 +24246,820,8638,2 +24247,820,1426,4 +24248,821,2112,5 +24249,821,5184,1 +24250,821,5755,3 +24251,821,3810,4 +24252,821,2324,2 +24253,821,8941,5 +24254,821,4001,1 +24255,821,9786,2 +24256,821,4945,4 +24257,821,2275,1 +24258,821,5423,1 +24259,821,2056,4 +24260,821,6843,2 +24261,821,6915,5 +24262,821,3703,2 +24263,821,6832,3 +24264,821,3864,1 +24265,821,4291,2 +24266,821,5886,4 +24267,821,1692,3 +24268,821,5319,3 +24269,821,9661,4 +24270,821,7944,5 +24271,821,3566,3 +24272,821,8528,1 +24273,821,3653,3 +24274,821,2306,4 +24275,821,615,3 +24276,821,7358,5 +24277,821,8020,1 +24278,821,7621,2 +24279,821,1622,5 +24280,821,5574,1 +24281,821,6333,5 +24282,821,4274,5 +24283,821,6612,2 +24284,821,4367,3 +24285,821,8206,3 +24286,821,9127,2 +24287,821,3189,2 +24288,821,7727,4 +24289,821,346,1 +24290,821,9814,2 +24291,821,9116,3 +24292,821,8978,5 +24293,822,1075,5 +24294,822,6538,5 +24295,822,3236,1 +24296,822,1964,5 +24297,822,786,3 +24298,822,7956,3 +24299,822,584,3 +24300,822,1354,3 +24301,822,4630,2 +24302,822,8801,2 +24303,822,4528,4 +24304,823,3403,2 +24305,823,1549,3 +24306,823,2132,5 +24307,823,702,3 +24308,823,3158,2 +24309,823,8816,2 +24310,823,2629,3 +24311,823,1715,1 +24312,823,8981,3 +24313,823,1928,5 +24314,823,431,5 +24315,823,828,5 +24316,823,6775,2 +24317,823,3398,4 +24318,823,2337,1 +24319,823,958,1 +24320,824,5739,3 +24321,824,4126,3 +24322,824,2449,2 +24323,824,7885,2 +24324,824,1776,1 +24325,824,6347,5 +24326,824,7461,1 +24327,824,8236,5 +24328,824,4127,3 +24329,824,1822,4 +24330,824,4718,2 +24331,824,6703,3 +24332,824,8860,4 +24333,824,4581,4 +24334,824,6411,4 +24335,824,3854,4 +24336,824,7477,1 +24337,824,9435,3 +24338,824,5432,1 +24339,824,6872,4 +24340,824,4864,5 +24341,824,6351,5 +24342,824,9723,1 +24343,824,5619,4 +24344,824,4791,3 +24345,824,5689,5 +24346,824,4976,5 +24347,824,9315,2 +24348,824,7401,2 +24349,824,6024,2 +24350,824,803,4 +24351,824,6479,3 +24352,824,1093,2 +24353,824,8601,2 +24354,824,6332,4 +24355,825,4729,3 +24356,825,9360,1 +24357,825,1078,4 +24358,825,8473,4 +24359,825,8410,5 +24360,825,1614,2 +24361,825,2741,3 +24362,825,2411,2 +24363,825,5519,3 +24364,825,5886,2 +24365,825,8158,4 +24366,825,4256,1 +24367,825,7029,1 +24368,825,4500,1 +24369,825,4283,1 +24370,825,3542,5 +24371,825,8376,1 +24372,825,7742,5 +24373,825,5348,4 +24374,825,3360,2 +24375,825,2981,1 +24376,825,5678,1 +24377,825,432,2 +24378,825,1467,1 +24379,825,7869,2 +24380,825,8221,2 +24381,825,7452,2 +24382,825,4696,5 +24383,825,5498,5 +24384,825,8240,2 +24385,825,2996,3 +24386,825,5310,3 +24387,825,6523,3 +24388,825,4076,3 +24389,825,2867,4 +24390,825,9954,5 +24391,825,9028,2 +24392,825,2671,3 +24393,825,1538,5 +24394,825,5453,2 +24395,825,7949,5 +24396,826,4950,1 +24397,826,9448,3 +24398,826,3475,5 +24399,826,6311,4 +24400,826,6801,2 +24401,826,6192,3 +24402,826,1312,4 +24403,826,6880,2 +24404,826,3789,4 +24405,826,5720,3 +24406,826,8630,2 +24407,826,5153,2 +24408,826,2399,5 +24409,827,5045,2 +24410,827,8313,1 +24411,827,3743,3 +24412,827,1852,5 +24413,827,2952,3 +24414,827,608,5 +24415,827,4458,3 +24416,827,6693,5 +24417,827,4351,1 +24418,827,5645,4 +24419,827,5736,5 +24420,827,4575,3 +24421,827,4319,1 +24422,827,9063,1 +24423,827,8590,2 +24424,827,992,5 +24425,827,5438,2 +24426,827,7834,5 +24427,827,3491,2 +24428,827,8297,4 +24429,827,8569,4 +24430,827,4691,1 +24431,827,9418,5 +24432,827,3686,2 +24433,827,5584,2 +24434,827,7264,4 +24435,827,255,1 +24436,827,2921,2 +24437,827,1339,1 +24438,827,1387,1 +24439,827,2471,4 +24440,827,118,3 +24441,827,4420,2 +24442,827,4674,1 +24443,827,2169,4 +24444,827,2200,1 +24445,827,6173,3 +24446,828,5879,4 +24447,828,4521,3 +24448,828,4885,4 +24449,828,2864,3 +24450,828,316,4 +24451,828,4307,1 +24452,828,6166,2 +24453,828,4073,2 +24454,828,7217,4 +24455,828,5746,2 +24456,828,3275,4 +24457,828,6385,2 +24458,828,844,4 +24459,828,7309,4 +24460,828,7105,4 +24461,828,8311,4 +24462,828,4508,5 +24463,828,2092,3 +24464,828,3763,3 +24465,828,229,5 +24466,828,7187,5 +24467,828,1400,3 +24468,828,7646,3 +24469,828,6370,3 +24470,828,1761,2 +24471,828,4601,4 +24472,828,5072,1 +24473,828,9095,3 +24474,828,7764,3 +24475,828,7689,3 +24476,828,1717,4 +24477,828,6447,1 +24478,828,7355,1 +24479,828,5298,5 +24480,828,7224,3 +24481,828,6561,4 +24482,828,6425,5 +24483,828,8691,3 +24484,828,365,3 +24485,828,3736,5 +24486,828,1079,1 +24487,828,7256,1 +24488,829,6109,5 +24489,829,3565,3 +24490,829,7030,3 +24491,829,7277,2 +24492,829,904,4 +24493,829,20,4 +24494,829,3849,5 +24495,829,8890,3 +24496,829,1162,3 +24497,829,3366,4 +24498,829,3104,1 +24499,829,4586,3 +24500,829,91,2 +24501,829,4986,1 +24502,829,7251,4 +24503,829,8380,2 +24504,829,9719,5 +24505,829,4652,4 +24506,829,1221,3 +24507,829,3385,2 +24508,829,1354,5 +24509,829,490,5 +24510,829,218,3 +24511,829,2693,2 +24512,829,7790,4 +24513,829,4537,2 +24514,829,3247,4 +24515,829,7526,4 +24516,829,5079,4 +24517,829,2458,2 +24518,829,2656,4 +24519,829,7186,3 +24520,829,8167,2 +24521,829,9841,3 +24522,830,7220,5 +24523,830,4377,3 +24524,830,5037,1 +24525,830,4224,3 +24526,830,3034,4 +24527,830,2047,1 +24528,830,5384,1 +24529,830,5575,4 +24530,830,2699,4 +24531,830,5279,1 +24532,830,1700,2 +24533,830,1925,1 +24534,830,1991,3 +24535,830,5158,3 +24536,830,983,2 +24537,830,1635,4 +24538,830,7650,5 +24539,830,3384,1 +24540,830,4799,4 +24541,830,5125,3 +24542,830,7193,4 +24543,830,2173,1 +24544,830,3686,5 +24545,830,5245,5 +24546,830,5546,2 +24547,830,3568,2 +24548,830,9689,2 +24549,830,9859,1 +24550,830,153,4 +24551,830,7533,3 +24552,830,9917,3 +24553,831,3401,5 +24554,831,2064,2 +24555,831,2905,5 +24556,831,6018,1 +24557,831,4776,5 +24558,831,1158,2 +24559,831,9638,5 +24560,831,4251,5 +24561,831,1929,4 +24562,831,516,2 +24563,831,627,5 +24564,831,2152,4 +24565,831,30,5 +24566,831,5676,3 +24567,831,4057,3 +24568,831,4748,2 +24569,831,552,2 +24570,831,8063,2 +24571,831,4613,3 +24572,831,6509,2 +24573,831,6835,5 +24574,831,4544,5 +24575,831,5267,3 +24576,831,2405,1 +24577,831,393,5 +24578,831,3560,4 +24579,831,7243,4 +24580,831,9381,1 +24581,831,5692,2 +24582,831,6243,4 +24583,831,9639,1 +24584,831,1871,2 +24585,831,2217,1 +24586,831,3056,5 +24587,831,5212,1 +24588,831,2800,4 +24589,831,9199,4 +24590,831,5181,5 +24591,831,8563,3 +24592,831,3982,5 +24593,831,2507,5 +24594,831,6459,4 +24595,831,432,4 +24596,831,583,5 +24597,831,63,2 +24598,831,6439,2 +24599,831,118,3 +24600,831,7245,1 +24601,831,5041,5 +24602,832,9525,3 +24603,832,8535,5 +24604,832,9429,1 +24605,832,3630,2 +24606,832,9115,5 +24607,832,4905,2 +24608,832,609,3 +24609,832,3787,5 +24610,832,2944,1 +24611,832,8890,2 +24612,832,1607,1 +24613,832,2081,4 +24614,832,3673,4 +24615,832,1514,4 +24616,832,2998,4 +24617,832,4621,4 +24618,832,112,1 +24619,832,4552,5 +24620,832,5995,1 +24621,832,4805,5 +24622,832,8118,1 +24623,832,3036,4 +24624,832,1971,2 +24625,832,4982,2 +24626,832,2708,1 +24627,832,5827,3 +24628,832,6657,2 +24629,833,7330,1 +24630,833,8411,1 +24631,833,4952,4 +24632,833,9002,1 +24633,833,3780,2 +24634,833,2146,1 +24635,833,6997,1 +24636,833,2104,2 +24637,833,6720,3 +24638,833,6048,4 +24639,833,955,4 +24640,833,3686,1 +24641,833,459,4 +24642,833,4585,2 +24643,833,1170,3 +24644,833,7913,2 +24645,833,4179,1 +24646,833,2175,4 +24647,833,2569,3 +24648,833,6362,4 +24649,833,114,1 +24650,833,8387,2 +24651,833,8920,3 +24652,833,1369,3 +24653,833,5240,1 +24654,833,6165,4 +24655,833,6716,4 +24656,833,8914,4 +24657,833,4066,1 +24658,833,7562,4 +24659,833,8938,5 +24660,833,6211,1 +24661,833,5366,3 +24662,833,7138,1 +24663,833,9214,2 +24664,834,3393,5 +24665,834,4773,3 +24666,834,9103,1 +24667,834,4886,1 +24668,834,8520,2 +24669,834,5274,4 +24670,834,3129,2 +24671,834,4687,4 +24672,834,6080,5 +24673,834,6515,3 +24674,834,6606,5 +24675,834,1306,5 +24676,834,4491,1 +24677,834,8628,3 +24678,834,7765,3 +24679,834,6351,4 +24680,835,8492,2 +24681,835,5771,5 +24682,835,5171,3 +24683,835,8342,5 +24684,835,1900,5 +24685,835,5926,4 +24686,835,2296,4 +24687,835,1929,5 +24688,835,281,1 +24689,835,9235,5 +24690,835,7070,3 +24691,835,8841,2 +24692,835,4,4 +24693,835,4240,5 +24694,835,9406,1 +24695,835,9200,2 +24696,835,4012,3 +24697,835,3660,4 +24698,835,8228,4 +24699,835,1690,2 +24700,835,9711,1 +24701,835,4713,1 +24702,835,4812,5 +24703,835,2990,5 +24704,835,6457,1 +24705,835,5462,1 +24706,835,2420,3 +24707,835,7023,1 +24708,835,9552,1 +24709,835,7949,5 +24710,836,7272,4 +24711,836,6914,3 +24712,836,635,2 +24713,836,5726,5 +24714,836,2205,5 +24715,836,7186,2 +24716,836,436,5 +24717,836,9952,1 +24718,836,6469,5 +24719,836,2632,5 +24720,836,4961,2 +24721,836,2293,1 +24722,836,8972,4 +24723,836,8760,3 +24724,836,5948,1 +24725,836,7411,3 +24726,836,8970,2 +24727,836,8860,5 +24728,836,1504,1 +24729,836,4731,2 +24730,836,2369,5 +24731,836,1899,3 +24732,836,8871,2 +24733,836,7259,3 +24734,836,3292,5 +24735,836,6198,4 +24736,836,9461,2 +24737,836,4851,2 +24738,836,4227,3 +24739,836,8202,2 +24740,836,433,5 +24741,836,7446,2 +24742,836,5422,4 +24743,836,7007,1 +24744,836,3230,5 +24745,836,5192,2 +24746,836,9061,3 +24747,836,2768,3 +24748,836,6716,3 +24749,836,9749,1 +24750,836,1635,2 +24751,836,7236,4 +24752,836,47,2 +24753,836,7828,1 +24754,836,1748,1 +24755,837,6470,1 +24756,837,4781,3 +24757,837,78,1 +24758,837,3083,1 +24759,837,523,3 +24760,837,6191,1 +24761,837,3905,4 +24762,837,7390,1 +24763,837,3023,2 +24764,837,6565,3 +24765,837,3135,3 +24766,837,2504,1 +24767,837,6388,2 +24768,837,2435,5 +24769,837,5046,1 +24770,837,6859,3 +24771,837,6366,5 +24772,837,7316,5 +24773,837,3734,2 +24774,837,4058,4 +24775,837,3842,5 +24776,837,9006,2 +24777,837,1602,2 +24778,837,2739,5 +24779,837,1695,3 +24780,837,6501,1 +24781,837,186,2 +24782,837,384,1 +24783,837,7221,1 +24784,837,7500,5 +24785,837,6396,4 +24786,837,1673,1 +24787,837,4728,2 +24788,837,7562,4 +24789,837,7085,5 +24790,837,538,2 +24791,837,1314,2 +24792,837,414,3 +24793,837,9056,1 +24794,837,3890,4 +24795,837,1261,1 +24796,837,7452,1 +24797,838,2724,4 +24798,838,2095,1 +24799,838,1062,4 +24800,838,8009,2 +24801,838,7918,5 +24802,838,2116,5 +24803,838,2566,2 +24804,838,4799,4 +24805,838,6987,2 +24806,838,7535,4 +24807,838,283,4 +24808,838,498,2 +24809,838,7215,1 +24810,838,2128,2 +24811,838,1173,4 +24812,838,8095,3 +24813,838,8863,5 +24814,838,1085,3 +24815,838,1684,2 +24816,838,1360,2 +24817,838,8571,5 +24818,838,7047,2 +24819,838,4680,1 +24820,838,2867,2 +24821,838,3461,3 +24822,838,1354,4 +24823,838,4769,2 +24824,838,1140,5 +24825,838,9701,5 +24826,838,2999,4 +24827,838,2340,4 +24828,838,8538,3 +24829,838,8727,1 +24830,838,9790,4 +24831,838,3100,1 +24832,838,4024,5 +24833,838,3341,5 +24834,838,3937,5 +24835,838,4806,1 +24836,838,4857,4 +24837,838,1888,4 +24838,838,3999,1 +24839,838,501,1 +24840,838,9230,1 +24841,838,4493,1 +24842,838,4731,3 +24843,838,1110,4 +24844,839,9538,5 +24845,839,5463,5 +24846,839,3223,5 +24847,839,3469,4 +24848,839,9559,1 +24849,839,9615,2 +24850,839,3915,5 +24851,839,1485,1 +24852,839,9410,4 +24853,839,1618,5 +24854,839,3427,3 +24855,839,7573,5 +24856,839,3988,5 +24857,839,4615,2 +24858,839,3497,5 +24859,839,9831,3 +24860,839,5503,4 +24861,839,5816,1 +24862,839,3824,3 +24863,839,8103,4 +24864,839,9093,5 +24865,839,7090,1 +24866,839,5348,5 +24867,839,1223,1 +24868,839,6192,5 +24869,839,2675,3 +24870,839,2301,1 +24871,839,3846,3 +24872,839,2672,1 +24873,839,4745,5 +24874,839,7679,5 +24875,840,3591,4 +24876,840,3341,1 +24877,840,7893,3 +24878,840,6540,5 +24879,840,775,2 +24880,840,1984,4 +24881,840,7408,2 +24882,840,6882,3 +24883,840,2689,1 +24884,840,8576,1 +24885,840,6777,5 +24886,840,6301,4 +24887,840,1609,5 +24888,840,4023,5 +24889,840,7731,4 +24890,840,9005,4 +24891,840,2072,4 +24892,840,6213,1 +24893,840,3446,4 +24894,840,9301,2 +24895,841,4380,2 +24896,841,7572,5 +24897,841,9936,2 +24898,841,9196,5 +24899,841,7522,3 +24900,841,5776,3 +24901,841,6656,1 +24902,841,6686,4 +24903,841,5805,3 +24904,841,4339,5 +24905,841,3707,3 +24906,841,4824,2 +24907,841,863,5 +24908,841,8790,3 +24909,841,9114,3 +24910,841,1908,2 +24911,841,6898,5 +24912,841,211,3 +24913,841,5975,2 +24914,841,1890,3 +24915,841,3770,1 +24916,841,8409,3 +24917,841,7955,3 +24918,841,7592,5 +24919,841,4427,4 +24920,841,8950,1 +24921,841,6275,5 +24922,841,1837,5 +24923,841,1187,1 +24924,841,1932,4 +24925,841,8467,1 +24926,841,9098,5 +24927,841,2775,5 +24928,841,535,1 +24929,841,256,5 +24930,841,9527,3 +24931,841,1441,1 +24932,841,8867,1 +24933,841,8961,5 +24934,841,2078,4 +24935,841,8314,1 +24936,841,4246,4 +24937,842,8919,3 +24938,842,352,5 +24939,842,4003,3 +24940,842,9630,3 +24941,842,1959,1 +24942,842,7845,4 +24943,842,1997,3 +24944,842,4647,3 +24945,842,8836,4 +24946,842,751,4 +24947,842,2231,1 +24948,842,2915,1 +24949,842,8842,1 +24950,842,7326,3 +24951,842,6014,5 +24952,842,4229,3 +24953,842,7837,1 +24954,842,6913,5 +24955,842,2872,4 +24956,842,9852,3 +24957,842,9002,5 +24958,842,4084,2 +24959,842,7818,3 +24960,842,2933,3 +24961,842,2639,3 +24962,843,64,5 +24963,843,9299,4 +24964,843,1930,4 +24965,843,8309,5 +24966,843,6280,2 +24967,843,8525,1 +24968,843,4015,5 +24969,843,5027,4 +24970,843,3919,3 +24971,843,9773,5 +24972,843,7030,4 +24973,843,1123,5 +24974,843,1501,1 +24975,843,8186,2 +24976,843,4001,3 +24977,843,2683,4 +24978,843,1958,4 +24979,843,4786,2 +24980,843,6622,2 +24981,843,4833,5 +24982,843,7202,5 +24983,843,2909,1 +24984,843,7404,1 +24985,843,8471,4 +24986,843,9829,3 +24987,843,5658,2 +24988,843,1687,4 +24989,843,3158,2 +24990,843,9175,3 +24991,843,1346,5 +24992,843,0,1 +24993,843,6261,3 +24994,843,6587,5 +24995,843,4969,2 +24996,843,6003,2 +24997,843,7023,5 +24998,843,1105,3 +24999,843,8736,3 +25000,843,8766,2 +25001,843,6557,5 +25002,843,1712,4 +25003,843,2763,1 +25004,843,3699,4 +25005,843,8782,4 +25006,843,1984,1 +25007,843,6841,2 +25008,843,1316,3 +25009,843,2109,4 +25010,844,8335,2 +25011,844,5093,3 +25012,844,3320,1 +25013,844,2342,1 +25014,844,2914,2 +25015,844,5775,5 +25016,844,9992,1 +25017,844,2273,1 +25018,844,6345,3 +25019,844,492,3 +25020,844,975,5 +25021,844,4291,3 +25022,844,8043,4 +25023,845,6476,1 +25024,845,2692,2 +25025,845,1708,2 +25026,845,151,2 +25027,845,8261,5 +25028,845,852,1 +25029,845,7262,2 +25030,845,690,5 +25031,845,336,5 +25032,845,9208,4 +25033,845,7570,3 +25034,845,5187,3 +25035,845,477,4 +25036,845,4588,4 +25037,845,1576,4 +25038,845,2373,1 +25039,845,7994,3 +25040,845,2566,4 +25041,845,7841,3 +25042,845,4749,4 +25043,845,8981,2 +25044,845,9874,2 +25045,845,366,4 +25046,845,192,1 +25047,845,3147,5 +25048,845,590,3 +25049,845,2388,5 +25050,845,928,2 +25051,845,4472,4 +25052,845,2784,4 +25053,845,7551,5 +25054,845,7728,4 +25055,845,199,5 +25056,845,5764,5 +25057,845,8354,5 +25058,845,2742,4 +25059,845,158,2 +25060,845,1628,2 +25061,845,2367,5 +25062,845,3045,4 +25063,845,8052,5 +25064,845,703,2 +25065,845,9158,2 +25066,845,284,4 +25067,845,9892,5 +25068,845,3107,2 +25069,845,9557,3 +25070,845,3207,4 +25071,845,6088,2 +25072,845,6134,1 +25073,846,2534,1 +25074,846,3217,5 +25075,846,3523,1 +25076,846,7095,3 +25077,846,9037,3 +25078,846,9094,1 +25079,846,1540,5 +25080,846,1403,2 +25081,846,8025,3 +25082,846,1959,5 +25083,846,593,2 +25084,846,7703,5 +25085,846,2496,5 +25086,846,9852,2 +25087,846,6474,3 +25088,846,1073,3 +25089,846,733,2 +25090,846,443,3 +25091,846,2640,5 +25092,846,6404,2 +25093,846,6265,1 +25094,846,9965,3 +25095,846,2681,4 +25096,846,945,2 +25097,846,4396,3 +25098,846,3151,4 +25099,846,4379,5 +25100,846,7319,4 +25101,846,602,1 +25102,846,6436,5 +25103,846,9389,4 +25104,846,2369,5 +25105,846,2908,3 +25106,846,1071,4 +25107,846,518,2 +25108,846,3827,3 +25109,846,9554,4 +25110,846,6086,1 +25111,846,4671,5 +25112,847,5700,5 +25113,847,1229,3 +25114,847,9413,1 +25115,847,8102,1 +25116,847,7868,3 +25117,847,5787,1 +25118,847,2751,3 +25119,847,8346,4 +25120,847,4613,1 +25121,847,4165,1 +25122,847,9421,4 +25123,847,6728,1 +25124,847,5245,5 +25125,847,9915,4 +25126,847,4253,2 +25127,847,5021,4 +25128,847,7778,5 +25129,847,2273,1 +25130,847,5121,4 +25131,847,9610,5 +25132,847,7056,5 +25133,847,3136,2 +25134,847,9436,1 +25135,847,2733,1 +25136,847,8793,3 +25137,847,840,5 +25138,847,150,3 +25139,847,730,4 +25140,847,4183,1 +25141,847,5705,4 +25142,847,5679,4 +25143,847,2187,4 +25144,847,4531,3 +25145,847,297,1 +25146,847,4641,4 +25147,847,7634,5 +25148,847,2973,5 +25149,847,6883,2 +25150,847,6980,4 +25151,847,2481,4 +25152,847,6481,4 +25153,847,5587,3 +25154,848,960,3 +25155,848,9001,2 +25156,848,5906,1 +25157,848,7913,4 +25158,848,8878,5 +25159,848,3285,1 +25160,848,7027,5 +25161,848,8427,3 +25162,848,9509,3 +25163,848,7080,3 +25164,848,3971,2 +25165,848,4103,3 +25166,848,8712,4 +25167,848,7630,5 +25168,848,9071,5 +25169,848,5588,4 +25170,848,7916,1 +25171,848,3931,4 +25172,848,1272,1 +25173,848,2346,2 +25174,848,2868,1 +25175,848,9923,1 +25176,848,5797,2 +25177,848,9218,5 +25178,848,9362,2 +25179,848,9662,1 +25180,848,4298,5 +25181,848,2852,4 +25182,848,2466,3 +25183,848,5888,2 +25184,848,5525,2 +25185,849,6816,4 +25186,849,3578,2 +25187,849,571,3 +25188,849,4207,2 +25189,849,2884,3 +25190,849,2683,2 +25191,849,8889,3 +25192,849,4306,5 +25193,849,3961,5 +25194,849,4615,2 +25195,849,3217,1 +25196,849,7381,2 +25197,849,6864,1 +25198,849,8771,1 +25199,849,778,4 +25200,849,8685,2 +25201,849,9034,3 +25202,849,5695,1 +25203,849,1639,2 +25204,849,3419,5 +25205,849,7708,1 +25206,849,7070,5 +25207,849,3841,1 +25208,849,2003,5 +25209,849,5889,1 +25210,849,6558,4 +25211,849,2777,3 +25212,849,4505,4 +25213,849,1739,3 +25214,849,610,5 +25215,849,2100,3 +25216,849,4640,2 +25217,849,1538,3 +25218,849,8571,4 +25219,849,8799,5 +25220,849,718,5 +25221,849,3755,1 +25222,849,1573,3 +25223,849,3922,3 +25224,849,6688,2 +25225,849,9257,3 +25226,849,8229,4 +25227,849,1987,1 +25228,849,2533,3 +25229,849,5192,2 +25230,849,580,5 +25231,850,6058,2 +25232,850,3608,3 +25233,850,75,2 +25234,850,2961,3 +25235,850,6445,5 +25236,850,2886,2 +25237,850,5067,4 +25238,850,4562,2 +25239,850,8996,1 +25240,850,3900,2 +25241,850,566,4 +25242,850,2356,1 +25243,850,3183,3 +25244,850,7722,3 +25245,850,1427,3 +25246,850,2253,3 +25247,850,5622,1 +25248,850,2676,4 +25249,850,4004,5 +25250,850,2582,3 +25251,850,4228,5 +25252,850,1714,5 +25253,850,3915,1 +25254,850,6573,2 +25255,850,4092,3 +25256,850,6122,5 +25257,850,8197,4 +25258,850,8471,4 +25259,850,6192,3 +25260,850,6937,2 +25261,850,1311,5 +25262,850,2109,2 +25263,850,8390,4 +25264,850,9964,5 +25265,850,8226,3 +25266,850,5132,2 +25267,851,4723,3 +25268,851,9434,1 +25269,851,6679,4 +25270,851,191,3 +25271,851,2147,2 +25272,851,6176,3 +25273,851,5781,1 +25274,851,3231,1 +25275,851,1508,3 +25276,851,7793,3 +25277,851,9095,4 +25278,851,1202,4 +25279,851,4058,2 +25280,851,373,4 +25281,851,2397,5 +25282,851,500,5 +25283,851,2154,5 +25284,851,5799,2 +25285,851,7095,5 +25286,851,9893,4 +25287,851,2101,1 +25288,851,1886,4 +25289,851,4256,2 +25290,851,609,3 +25291,851,9319,2 +25292,851,2209,2 +25293,851,4178,3 +25294,851,4106,5 +25295,851,7466,4 +25296,851,4656,1 +25297,851,2007,5 +25298,851,9934,1 +25299,851,9978,3 +25300,851,2315,4 +25301,851,4632,3 +25302,851,2749,5 +25303,851,5896,1 +25304,851,20,1 +25305,851,6159,5 +25306,851,8648,3 +25307,852,8879,4 +25308,852,4405,2 +25309,852,6046,1 +25310,852,7668,1 +25311,852,4374,3 +25312,852,1231,1 +25313,852,8056,5 +25314,852,7870,1 +25315,852,2625,4 +25316,852,5937,4 +25317,852,5489,5 +25318,853,8138,3 +25319,853,4263,5 +25320,853,9151,2 +25321,853,1346,3 +25322,853,5327,1 +25323,853,3373,2 +25324,853,281,5 +25325,853,9599,1 +25326,853,6075,4 +25327,853,4795,4 +25328,853,8433,5 +25329,853,4366,1 +25330,853,5656,5 +25331,853,6526,3 +25332,853,1303,5 +25333,853,6365,2 +25334,853,813,4 +25335,853,1968,3 +25336,853,4778,5 +25337,853,552,2 +25338,853,5084,4 +25339,853,447,4 +25340,853,7223,5 +25341,853,9271,5 +25342,853,3324,3 +25343,853,139,1 +25344,853,6617,1 +25345,853,7975,4 +25346,853,7407,5 +25347,853,921,2 +25348,853,178,2 +25349,853,9085,2 +25350,853,3449,1 +25351,853,3701,4 +25352,853,1658,4 +25353,853,1147,2 +25354,853,8896,1 +25355,853,7236,3 +25356,853,2795,5 +25357,853,5380,4 +25358,853,5944,3 +25359,854,976,4 +25360,854,5760,1 +25361,854,4195,4 +25362,854,6039,1 +25363,854,1731,2 +25364,854,3558,1 +25365,854,6559,5 +25366,854,9554,4 +25367,854,6611,5 +25368,854,4448,3 +25369,854,7130,1 +25370,854,1664,4 +25371,855,7503,5 +25372,855,8428,1 +25373,855,5425,3 +25374,855,6327,3 +25375,855,5211,5 +25376,855,9030,5 +25377,855,9754,5 +25378,855,1192,5 +25379,855,5906,4 +25380,855,620,4 +25381,855,521,1 +25382,855,4997,2 +25383,855,3701,3 +25384,855,8737,2 +25385,855,7012,3 +25386,855,4063,1 +25387,855,6505,5 +25388,855,6108,3 +25389,855,600,5 +25390,855,184,1 +25391,855,1520,2 +25392,855,6381,2 +25393,855,1133,3 +25394,855,5152,4 +25395,855,7943,5 +25396,855,8271,5 +25397,855,5159,2 +25398,855,714,4 +25399,855,9298,4 +25400,855,9652,1 +25401,855,9031,3 +25402,856,6099,2 +25403,856,353,2 +25404,856,7879,1 +25405,856,6973,2 +25406,856,2574,1 +25407,856,7715,2 +25408,856,1347,5 +25409,856,3315,2 +25410,856,3620,5 +25411,856,7923,2 +25412,856,1121,4 +25413,856,9152,1 +25414,856,8320,2 +25415,856,2984,2 +25416,856,3217,1 +25417,856,8884,4 +25418,856,1633,3 +25419,856,9124,5 +25420,856,953,3 +25421,856,7192,3 +25422,856,6470,1 +25423,856,2766,2 +25424,856,3755,4 +25425,856,5746,2 +25426,856,1,2 +25427,856,5490,5 +25428,856,7704,2 +25429,856,6300,2 +25430,856,7490,1 +25431,856,9538,3 +25432,856,4986,2 +25433,856,4669,3 +25434,856,7678,5 +25435,856,3756,1 +25436,856,1653,3 +25437,856,9542,5 +25438,856,5350,3 +25439,856,2125,5 +25440,857,6356,1 +25441,857,1305,1 +25442,857,5021,3 +25443,857,1364,1 +25444,857,1111,1 +25445,857,1604,5 +25446,857,7425,1 +25447,857,9092,3 +25448,857,8068,4 +25449,857,9225,1 +25450,857,2884,5 +25451,857,5931,3 +25452,857,3012,2 +25453,857,11,1 +25454,857,5410,2 +25455,857,2981,5 +25456,857,1670,1 +25457,857,6607,4 +25458,857,3502,4 +25459,857,6883,5 +25460,857,4522,3 +25461,857,1813,5 +25462,857,673,1 +25463,857,9835,1 +25464,857,3497,3 +25465,857,5780,3 +25466,857,7103,2 +25467,857,1214,4 +25468,857,6097,5 +25469,857,2948,3 +25470,857,5952,2 +25471,857,787,5 +25472,857,9563,3 +25473,857,911,2 +25474,857,4166,4 +25475,857,3261,1 +25476,857,1433,5 +25477,857,5856,2 +25478,857,2528,5 +25479,857,7509,4 +25480,857,2141,2 +25481,857,774,4 +25482,857,1977,1 +25483,857,6609,3 +25484,857,1912,1 +25485,858,2334,3 +25486,858,1157,3 +25487,858,1110,5 +25488,858,9426,5 +25489,858,1085,5 +25490,858,9171,4 +25491,858,4728,3 +25492,858,9640,2 +25493,858,963,3 +25494,858,2682,2 +25495,858,2687,5 +25496,858,9817,5 +25497,858,6780,2 +25498,858,1476,3 +25499,858,2895,4 +25500,858,3837,5 +25501,858,9552,2 +25502,858,710,3 +25503,859,1536,5 +25504,859,3662,1 +25505,859,4291,3 +25506,859,8642,2 +25507,859,8182,2 +25508,859,9047,4 +25509,859,8315,5 +25510,859,8159,2 +25511,859,8071,4 +25512,859,7729,1 +25513,859,2457,4 +25514,859,5285,2 +25515,859,872,3 +25516,859,3539,3 +25517,859,9576,3 +25518,859,3561,4 +25519,859,6524,3 +25520,859,3750,2 +25521,859,3672,5 +25522,859,1659,1 +25523,859,1896,2 +25524,859,7154,2 +25525,859,4705,2 +25526,859,2243,3 +25527,859,58,3 +25528,859,5827,2 +25529,859,1397,2 +25530,859,5047,5 +25531,859,1782,2 +25532,859,4444,3 +25533,859,913,1 +25534,859,4805,4 +25535,859,7757,4 +25536,859,1387,4 +25537,859,7183,1 +25538,859,4944,5 +25539,859,8589,5 +25540,859,9110,1 +25541,860,6637,3 +25542,860,3219,5 +25543,860,6554,3 +25544,860,5270,5 +25545,860,9536,2 +25546,860,4983,4 +25547,860,5031,4 +25548,860,780,4 +25549,860,2813,1 +25550,860,752,1 +25551,860,6162,3 +25552,860,5443,2 +25553,860,3857,2 +25554,860,133,5 +25555,860,3727,3 +25556,860,5550,1 +25557,860,968,5 +25558,860,7329,1 +25559,860,2763,2 +25560,860,681,4 +25561,860,6172,3 +25562,860,6083,2 +25563,860,1710,2 +25564,860,935,4 +25565,860,1277,3 +25566,860,7805,5 +25567,860,8485,4 +25568,860,4259,2 +25569,860,643,2 +25570,860,9668,5 +25571,860,4304,5 +25572,860,2312,2 +25573,860,1843,4 +25574,860,522,2 +25575,860,6988,3 +25576,860,4112,5 +25577,860,5071,1 +25578,860,3197,1 +25579,860,2004,1 +25580,860,5755,5 +25581,860,615,4 +25582,860,693,1 +25583,860,5134,5 +25584,860,8610,3 +25585,860,9115,4 +25586,860,5826,3 +25587,860,2762,1 +25588,860,6730,3 +25589,860,6434,3 +25590,861,7436,4 +25591,861,1606,2 +25592,861,3477,1 +25593,861,8948,1 +25594,861,905,3 +25595,861,8590,1 +25596,861,1323,1 +25597,861,1091,4 +25598,861,4820,3 +25599,861,1399,2 +25600,861,5607,3 +25601,861,9216,2 +25602,861,3493,5 +25603,861,7659,5 +25604,861,308,1 +25605,861,3558,3 +25606,861,6476,2 +25607,861,1436,2 +25608,861,1780,2 +25609,861,2860,1 +25610,861,6611,5 +25611,861,6008,3 +25612,861,7506,4 +25613,861,435,3 +25614,861,4379,1 +25615,861,9189,2 +25616,861,201,3 +25617,861,8930,4 +25618,861,2684,1 +25619,861,8798,5 +25620,861,7870,5 +25621,861,1476,1 +25622,861,9973,5 +25623,861,7992,1 +25624,861,7507,5 +25625,861,9215,5 +25626,861,3621,5 +25627,861,8980,4 +25628,861,8005,2 +25629,861,6542,4 +25630,861,1145,5 +25631,862,148,2 +25632,862,3754,1 +25633,862,2060,2 +25634,862,7872,4 +25635,862,505,5 +25636,862,9948,2 +25637,862,6882,1 +25638,862,5520,4 +25639,862,998,5 +25640,862,2752,4 +25641,862,460,3 +25642,862,3319,2 +25643,862,9727,1 +25644,862,5738,4 +25645,862,2210,1 +25646,863,7414,2 +25647,863,7675,5 +25648,863,8819,3 +25649,863,4924,1 +25650,863,3502,4 +25651,863,147,5 +25652,863,8131,1 +25653,863,1284,2 +25654,863,7342,5 +25655,863,8878,1 +25656,863,1622,4 +25657,863,2949,4 +25658,863,6098,1 +25659,863,8830,2 +25660,863,3454,2 +25661,863,8781,5 +25662,863,3312,1 +25663,863,7538,4 +25664,863,2837,3 +25665,863,3095,3 +25666,863,2959,4 +25667,863,2997,3 +25668,863,9604,5 +25669,863,1763,2 +25670,863,1079,5 +25671,863,1807,3 +25672,863,675,2 +25673,863,162,1 +25674,863,5743,4 +25675,863,8884,4 +25676,863,6275,5 +25677,863,8020,1 +25678,864,198,1 +25679,864,881,1 +25680,864,8594,2 +25681,864,2148,1 +25682,864,1839,3 +25683,864,345,3 +25684,864,5715,3 +25685,864,2879,2 +25686,864,9167,4 +25687,864,9638,4 +25688,864,7708,5 +25689,864,2659,5 +25690,864,9408,5 +25691,864,4871,5 +25692,864,587,2 +25693,864,8463,1 +25694,864,855,4 +25695,864,3009,1 +25696,864,3017,4 +25697,864,2744,2 +25698,864,7133,1 +25699,864,7738,5 +25700,864,2437,5 +25701,864,9789,4 +25702,864,8796,5 +25703,865,9675,3 +25704,865,1109,1 +25705,865,9395,3 +25706,865,1367,2 +25707,865,3307,3 +25708,865,2905,3 +25709,865,5622,1 +25710,865,6453,2 +25711,865,4599,5 +25712,865,1877,5 +25713,865,4644,3 +25714,865,1073,5 +25715,865,5217,4 +25716,865,9489,3 +25717,865,9470,1 +25718,865,5402,4 +25719,865,8738,2 +25720,865,2083,4 +25721,865,8596,3 +25722,865,9562,2 +25723,865,42,3 +25724,865,8073,5 +25725,865,9408,4 +25726,865,9009,3 +25727,865,8572,5 +25728,865,4677,4 +25729,865,2009,4 +25730,865,7362,2 +25731,866,3792,5 +25732,866,9997,2 +25733,866,2376,4 +25734,866,4601,1 +25735,866,5601,5 +25736,866,9751,2 +25737,866,1727,2 +25738,866,5559,5 +25739,866,4347,5 +25740,866,2948,2 +25741,866,2016,3 +25742,866,5421,5 +25743,866,8756,1 +25744,866,8634,3 +25745,866,4594,3 +25746,866,3758,5 +25747,866,8940,3 +25748,866,9342,3 +25749,866,7725,3 +25750,866,4507,4 +25751,866,2619,5 +25752,866,3241,5 +25753,866,2273,3 +25754,866,2743,2 +25755,866,7447,3 +25756,866,1114,1 +25757,866,8743,4 +25758,866,9546,5 +25759,866,932,1 +25760,866,573,3 +25761,866,9382,3 +25762,866,7788,4 +25763,866,6929,5 +25764,866,6278,2 +25765,867,5606,2 +25766,867,7223,3 +25767,867,8387,1 +25768,867,7785,3 +25769,867,212,5 +25770,867,9828,4 +25771,867,7543,3 +25772,867,7289,1 +25773,867,8344,2 +25774,867,7537,1 +25775,867,6229,5 +25776,867,5639,3 +25777,867,7617,2 +25778,867,7945,1 +25779,867,1493,5 +25780,867,7177,1 +25781,867,326,1 +25782,867,2183,1 +25783,867,1986,4 +25784,867,8180,1 +25785,868,3063,2 +25786,868,4651,1 +25787,868,1420,1 +25788,868,3041,4 +25789,868,8754,3 +25790,868,3155,5 +25791,868,4701,1 +25792,868,9203,1 +25793,868,2308,3 +25794,868,2920,5 +25795,868,3864,3 +25796,868,515,3 +25797,868,5304,4 +25798,868,2183,3 +25799,868,3622,5 +25800,868,8997,5 +25801,868,6948,4 +25802,868,8870,2 +25803,868,2092,4 +25804,868,4324,2 +25805,868,6321,2 +25806,868,1264,1 +25807,868,2659,4 +25808,868,7845,3 +25809,868,4034,4 +25810,868,8527,3 +25811,868,4948,4 +25812,868,2178,2 +25813,868,4710,4 +25814,868,1764,2 +25815,868,2657,5 +25816,868,141,4 +25817,868,5088,1 +25818,868,8582,5 +25819,868,5838,4 +25820,868,34,5 +25821,868,7184,1 +25822,868,9527,5 +25823,868,9745,4 +25824,868,8147,3 +25825,868,4810,4 +25826,868,6666,5 +25827,868,2706,4 +25828,868,1394,5 +25829,868,4313,1 +25830,868,4012,3 +25831,869,8230,5 +25832,869,6578,2 +25833,869,3029,3 +25834,869,1531,2 +25835,869,4730,4 +25836,869,3490,4 +25837,869,5816,5 +25838,869,6667,1 +25839,869,2646,4 +25840,869,8711,2 +25841,869,1004,1 +25842,869,2546,5 +25843,869,5089,5 +25844,869,4908,3 +25845,869,4046,2 +25846,869,9317,1 +25847,869,2767,2 +25848,869,4818,2 +25849,869,3939,4 +25850,869,1853,4 +25851,869,5788,1 +25852,869,2376,1 +25853,869,3243,3 +25854,869,3205,5 +25855,869,7627,3 +25856,869,5784,4 +25857,869,2210,5 +25858,869,1018,2 +25859,869,9748,2 +25860,869,1433,2 +25861,869,2429,4 +25862,869,4459,3 +25863,869,8657,1 +25864,869,1324,4 +25865,869,1476,5 +25866,869,9066,1 +25867,869,7018,4 +25868,869,6859,1 +25869,869,1993,5 +25870,870,5154,3 +25871,870,1692,1 +25872,870,9591,4 +25873,870,6939,4 +25874,870,9922,3 +25875,870,9125,5 +25876,870,8345,3 +25877,870,7631,1 +25878,870,8324,2 +25879,870,2712,5 +25880,870,7091,3 +25881,870,4384,2 +25882,870,4880,5 +25883,870,6258,3 +25884,870,3345,1 +25885,870,5750,3 +25886,870,968,4 +25887,870,7030,3 +25888,871,9214,4 +25889,871,5930,1 +25890,871,5690,2 +25891,871,7229,4 +25892,871,408,2 +25893,871,3637,1 +25894,871,647,4 +25895,871,728,2 +25896,871,2562,4 +25897,871,1276,1 +25898,871,6508,1 +25899,871,1849,5 +25900,871,3726,3 +25901,871,9967,3 +25902,871,564,2 +25903,871,8459,3 +25904,871,3039,2 +25905,871,4986,3 +25906,871,9235,3 +25907,871,1418,1 +25908,871,2745,2 +25909,871,3981,4 +25910,871,2538,3 +25911,871,8112,1 +25912,871,3142,3 +25913,871,9021,1 +25914,871,1265,5 +25915,871,2086,5 +25916,871,9082,2 +25917,871,3020,2 +25918,871,5539,4 +25919,871,4712,1 +25920,871,1131,2 +25921,871,4509,3 +25922,871,5327,1 +25923,871,2148,5 +25924,871,9281,3 +25925,871,7781,2 +25926,871,7056,4 +25927,871,2146,3 +25928,871,8064,1 +25929,871,5996,5 +25930,871,5898,3 +25931,871,4540,1 +25932,871,3472,2 +25933,871,4817,4 +25934,872,7824,2 +25935,872,643,5 +25936,872,8569,3 +25937,872,5267,3 +25938,872,9455,3 +25939,872,9002,3 +25940,872,8825,3 +25941,872,811,2 +25942,872,7425,2 +25943,872,5602,4 +25944,872,1524,5 +25945,873,1195,3 +25946,873,5512,4 +25947,873,2318,3 +25948,873,6285,2 +25949,873,2649,2 +25950,873,8090,1 +25951,873,2829,4 +25952,873,4779,2 +25953,873,4077,4 +25954,873,4021,4 +25955,873,1155,3 +25956,873,9720,4 +25957,873,9651,1 +25958,873,6130,1 +25959,873,1045,1 +25960,873,8257,1 +25961,873,205,5 +25962,873,1842,3 +25963,873,9103,5 +25964,873,5282,3 +25965,873,1123,2 +25966,873,3614,5 +25967,873,9380,5 +25968,873,5248,3 +25969,873,5754,3 +25970,873,2871,2 +25971,873,4914,4 +25972,873,4013,5 +25973,873,2306,2 +25974,873,5450,5 +25975,873,5963,1 +25976,873,9915,3 +25977,873,4663,5 +25978,873,6450,3 +25979,873,867,1 +25980,873,9345,4 +25981,873,9169,2 +25982,873,7536,4 +25983,873,6649,4 +25984,873,182,3 +25985,873,5453,5 +25986,873,1406,3 +25987,873,2226,4 +25988,873,5040,3 +25989,873,7708,2 +25990,873,8755,1 +25991,873,6781,4 +25992,873,5472,2 +25993,873,2684,1 +25994,873,769,1 +25995,874,11,1 +25996,874,4594,3 +25997,874,3918,1 +25998,874,3487,2 +25999,874,53,1 +26000,874,4728,4 +26001,874,3065,3 +26002,874,3719,2 +26003,874,3922,5 +26004,874,3421,3 +26005,874,1267,5 +26006,874,4193,5 +26007,874,8823,5 +26008,874,8844,1 +26009,874,6399,5 +26010,874,9048,4 +26011,874,6505,3 +26012,874,3439,2 +26013,874,95,4 +26014,875,3681,1 +26015,875,6780,3 +26016,875,9888,5 +26017,875,4768,5 +26018,875,1063,1 +26019,875,7304,3 +26020,875,4205,2 +26021,875,2241,1 +26022,875,7248,1 +26023,875,3992,3 +26024,875,2874,3 +26025,875,8063,5 +26026,875,6889,1 +26027,875,6008,4 +26028,875,1961,5 +26029,876,6455,3 +26030,876,6546,4 +26031,876,2164,3 +26032,876,8793,4 +26033,876,5759,1 +26034,876,756,3 +26035,876,5779,2 +26036,876,4504,3 +26037,876,7697,4 +26038,876,4558,3 +26039,876,8188,1 +26040,876,5843,2 +26041,876,1825,4 +26042,876,1041,3 +26043,876,599,1 +26044,876,8287,3 +26045,876,565,5 +26046,877,1643,1 +26047,877,2161,4 +26048,877,5501,1 +26049,877,2,4 +26050,877,1034,3 +26051,877,8261,2 +26052,877,9312,5 +26053,877,7285,1 +26054,877,6751,2 +26055,877,852,3 +26056,877,4585,5 +26057,877,6684,3 +26058,877,9602,1 +26059,877,4994,5 +26060,877,4659,3 +26061,877,4347,2 +26062,877,5119,2 +26063,877,580,3 +26064,877,801,2 +26065,877,6461,5 +26066,877,4015,5 +26067,877,6827,2 +26068,877,7512,4 +26069,877,8072,1 +26070,877,8126,4 +26071,877,8786,2 +26072,877,4612,1 +26073,877,2009,2 +26074,877,3526,1 +26075,877,7384,1 +26076,877,8996,2 +26077,877,5288,5 +26078,877,1511,1 +26079,877,3506,2 +26080,877,9092,5 +26081,877,2729,5 +26082,877,5103,3 +26083,877,8262,3 +26084,877,6116,2 +26085,877,9450,1 +26086,877,6884,5 +26087,877,5821,4 +26088,877,9743,2 +26089,877,2806,2 +26090,877,5168,3 +26091,877,2281,2 +26092,877,6460,5 +26093,877,4456,2 +26094,877,6739,1 +26095,877,6306,3 +26096,878,8849,1 +26097,878,7368,3 +26098,878,8257,2 +26099,878,4138,4 +26100,878,6034,5 +26101,878,630,3 +26102,878,1774,4 +26103,878,5297,1 +26104,878,6463,2 +26105,878,7489,5 +26106,878,6372,4 +26107,878,7725,3 +26108,878,6211,3 +26109,878,8115,1 +26110,878,7421,3 +26111,878,6380,2 +26112,878,9445,3 +26113,878,4528,2 +26114,878,3707,4 +26115,878,979,2 +26116,878,9672,2 +26117,878,3659,4 +26118,878,8841,3 +26119,879,1339,3 +26120,879,998,2 +26121,879,6737,3 +26122,879,1447,1 +26123,879,6100,1 +26124,879,6461,1 +26125,879,9206,2 +26126,879,9384,1 +26127,879,4523,3 +26128,879,4454,1 +26129,880,8001,3 +26130,880,8072,4 +26131,880,3029,2 +26132,880,8920,2 +26133,880,7647,5 +26134,880,7564,3 +26135,880,9344,4 +26136,880,6584,5 +26137,880,2349,4 +26138,880,1315,1 +26139,880,6626,2 +26140,880,5750,1 +26141,880,7427,2 +26142,880,2020,1 +26143,880,7547,3 +26144,880,4631,5 +26145,880,7712,1 +26146,880,7735,5 +26147,880,4734,5 +26148,880,614,2 +26149,880,3840,2 +26150,880,6461,5 +26151,880,6958,5 +26152,880,9521,1 +26153,880,3558,3 +26154,880,8292,1 +26155,881,636,5 +26156,881,3906,5 +26157,881,7637,1 +26158,881,2869,3 +26159,881,876,3 +26160,881,213,4 +26161,881,3476,1 +26162,881,7106,2 +26163,881,7662,4 +26164,881,2000,3 +26165,881,979,1 +26166,881,8366,5 +26167,881,3300,4 +26168,881,832,3 +26169,881,1285,1 +26170,881,8704,1 +26171,881,1333,5 +26172,881,9739,2 +26173,881,8103,5 +26174,881,4321,5 +26175,881,5841,5 +26176,881,3685,5 +26177,881,4221,1 +26178,881,6993,4 +26179,881,6628,1 +26180,881,1794,2 +26181,881,705,1 +26182,881,5405,1 +26183,881,2865,5 +26184,881,915,1 +26185,881,3443,2 +26186,881,4866,1 +26187,881,3746,1 +26188,882,3743,2 +26189,882,3752,5 +26190,882,34,1 +26191,882,9827,5 +26192,882,8379,4 +26193,882,7205,1 +26194,882,199,2 +26195,882,9989,3 +26196,882,541,3 +26197,882,4071,1 +26198,882,9094,4 +26199,882,4523,3 +26200,882,1810,1 +26201,882,8824,4 +26202,882,2179,3 +26203,882,1593,3 +26204,882,6049,1 +26205,882,663,5 +26206,882,8129,5 +26207,882,2878,4 +26208,882,7063,5 +26209,882,4197,5 +26210,882,7633,2 +26211,882,7356,1 +26212,882,6335,1 +26213,882,4338,2 +26214,882,1419,2 +26215,882,8121,3 +26216,882,6403,3 +26217,882,8610,3 +26218,882,2263,5 +26219,882,645,5 +26220,882,5485,3 +26221,882,6184,2 +26222,882,1138,3 +26223,882,5010,4 +26224,882,3682,5 +26225,882,6237,5 +26226,882,2875,3 +26227,882,4164,3 +26228,882,6436,2 +26229,882,8834,2 +26230,882,8155,5 +26231,882,3009,3 +26232,882,6286,2 +26233,883,43,1 +26234,883,5321,3 +26235,883,9507,1 +26236,883,4506,4 +26237,883,7186,1 +26238,883,6083,4 +26239,883,9783,1 +26240,883,4471,5 +26241,883,7589,5 +26242,883,6964,1 +26243,883,3972,2 +26244,883,410,1 +26245,883,9640,2 +26246,883,8159,5 +26247,883,9060,3 +26248,883,5901,2 +26249,883,3057,3 +26250,883,7520,2 +26251,883,4840,2 +26252,883,5171,2 +26253,883,3615,4 +26254,883,4657,3 +26255,883,1652,3 +26256,883,8791,5 +26257,883,2153,1 +26258,883,9559,4 +26259,883,2952,4 +26260,883,6865,2 +26261,883,9108,1 +26262,883,3102,2 +26263,884,8754,4 +26264,884,3242,4 +26265,884,8607,5 +26266,884,3216,5 +26267,884,9897,5 +26268,884,6618,4 +26269,884,3261,2 +26270,884,2674,4 +26271,884,5785,3 +26272,884,9661,3 +26273,884,8757,2 +26274,884,7219,5 +26275,884,9407,1 +26276,884,7675,1 +26277,884,8436,3 +26278,884,2181,5 +26279,884,7215,3 +26280,884,5566,4 +26281,884,3507,1 +26282,884,3771,2 +26283,884,5735,4 +26284,884,9170,1 +26285,884,989,1 +26286,885,2534,5 +26287,885,7057,2 +26288,885,8215,3 +26289,885,6561,5 +26290,885,4594,5 +26291,885,8676,4 +26292,885,5999,4 +26293,885,5392,5 +26294,885,1375,1 +26295,885,3677,1 +26296,885,4688,1 +26297,885,9385,2 +26298,885,2701,1 +26299,885,8963,1 +26300,885,3823,4 +26301,885,1845,4 +26302,885,7711,4 +26303,885,7091,5 +26304,885,6557,2 +26305,885,5038,5 +26306,885,1985,5 +26307,885,8062,1 +26308,885,7282,4 +26309,885,7780,5 +26310,886,8446,2 +26311,886,1149,4 +26312,886,6807,2 +26313,886,4583,2 +26314,886,3551,5 +26315,886,7774,1 +26316,886,4252,3 +26317,886,9582,3 +26318,886,8580,1 +26319,886,469,4 +26320,886,458,2 +26321,886,6542,3 +26322,886,9863,2 +26323,886,2050,5 +26324,886,9348,5 +26325,886,2071,2 +26326,886,5459,2 +26327,886,9908,3 +26328,886,2617,2 +26329,886,7187,5 +26330,886,5334,2 +26331,886,4676,2 +26332,886,1437,1 +26333,886,3375,1 +26334,887,3222,2 +26335,887,1399,4 +26336,887,5567,1 +26337,887,2821,1 +26338,887,1566,2 +26339,887,1757,1 +26340,887,2286,5 +26341,887,6518,3 +26342,887,3883,2 +26343,887,7921,4 +26344,887,9237,4 +26345,887,209,4 +26346,887,7978,2 +26347,887,2449,1 +26348,887,481,5 +26349,887,3399,1 +26350,887,6357,4 +26351,887,3172,2 +26352,887,6680,1 +26353,887,8544,3 +26354,887,9117,2 +26355,887,3031,5 +26356,887,2208,4 +26357,887,8135,4 +26358,888,6383,5 +26359,888,706,1 +26360,888,9381,2 +26361,888,1756,4 +26362,888,411,1 +26363,888,2540,2 +26364,888,3509,3 +26365,888,4776,2 +26366,888,7139,4 +26367,888,4104,1 +26368,888,4694,2 +26369,889,9421,2 +26370,889,1731,5 +26371,889,3328,5 +26372,889,8318,4 +26373,889,9372,1 +26374,889,1302,2 +26375,889,2507,1 +26376,889,9303,4 +26377,889,1048,2 +26378,889,4700,1 +26379,889,1523,4 +26380,889,4568,2 +26381,889,9338,1 +26382,889,2003,2 +26383,889,6245,2 +26384,889,5067,1 +26385,889,4307,3 +26386,889,3969,1 +26387,889,1273,2 +26388,889,7640,3 +26389,889,4564,4 +26390,889,4386,3 +26391,889,7867,2 +26392,889,1191,1 +26393,889,4632,3 +26394,889,1323,5 +26395,889,2860,4 +26396,889,567,4 +26397,889,1925,1 +26398,889,478,4 +26399,889,4900,3 +26400,889,2224,1 +26401,889,7781,1 +26402,889,995,5 +26403,889,8526,4 +26404,889,197,5 +26405,889,9723,4 +26406,889,3234,2 +26407,889,2187,2 +26408,889,3781,3 +26409,889,3464,3 +26410,889,5376,1 +26411,890,1863,5 +26412,890,6371,2 +26413,890,1517,1 +26414,890,6672,2 +26415,890,6410,5 +26416,890,2926,5 +26417,890,2651,1 +26418,890,4345,2 +26419,890,3547,4 +26420,890,2090,3 +26421,890,1466,2 +26422,890,6111,4 +26423,890,9074,5 +26424,890,861,2 +26425,890,3764,4 +26426,890,5020,5 +26427,890,6931,4 +26428,890,3381,3 +26429,890,8690,1 +26430,890,5864,1 +26431,890,2598,4 +26432,890,2276,4 +26433,890,7241,2 +26434,890,913,2 +26435,890,6406,5 +26436,890,3227,4 +26437,890,4289,4 +26438,890,9425,5 +26439,890,1809,3 +26440,890,7851,5 +26441,890,4678,5 +26442,890,4296,5 +26443,890,2290,2 +26444,890,6255,5 +26445,890,69,3 +26446,890,9494,1 +26447,890,8978,3 +26448,890,706,3 +26449,890,7577,2 +26450,890,1705,1 +26451,890,4210,1 +26452,890,2957,2 +26453,890,5288,3 +26454,890,2509,2 +26455,890,758,2 +26456,890,2736,5 +26457,891,1593,2 +26458,891,5446,2 +26459,891,401,3 +26460,891,8545,3 +26461,891,696,5 +26462,891,564,5 +26463,891,3686,1 +26464,891,6418,5 +26465,891,193,4 +26466,891,1325,1 +26467,891,1642,4 +26468,891,6174,5 +26469,891,4509,1 +26470,891,5316,3 +26471,891,1637,4 +26472,891,9183,1 +26473,891,3276,3 +26474,891,1039,2 +26475,891,6345,4 +26476,891,9563,5 +26477,891,3963,2 +26478,891,5151,5 +26479,891,3599,3 +26480,891,5795,2 +26481,891,2870,5 +26482,892,6658,2 +26483,892,4203,5 +26484,892,8504,5 +26485,892,8053,4 +26486,892,3621,4 +26487,892,5148,1 +26488,892,4595,4 +26489,892,8223,4 +26490,892,9500,5 +26491,892,7382,5 +26492,892,3161,2 +26493,892,279,1 +26494,892,9594,3 +26495,892,8458,5 +26496,892,583,4 +26497,892,9430,4 +26498,892,9083,3 +26499,892,6213,4 +26500,892,8858,4 +26501,892,8470,3 +26502,892,3746,3 +26503,893,228,5 +26504,893,9405,1 +26505,893,3771,2 +26506,893,5027,4 +26507,893,2846,1 +26508,893,1801,5 +26509,893,9279,5 +26510,893,3549,2 +26511,893,8329,4 +26512,893,5875,1 +26513,893,6020,5 +26514,893,4269,2 +26515,893,5330,3 +26516,893,8078,2 +26517,893,501,4 +26518,893,1486,3 +26519,893,9853,2 +26520,893,551,1 +26521,893,800,3 +26522,893,708,3 +26523,893,8147,1 +26524,893,7914,4 +26525,893,2743,3 +26526,893,478,4 +26527,893,8136,4 +26528,893,1339,2 +26529,893,9357,3 +26530,893,5050,4 +26531,893,8840,3 +26532,893,3010,3 +26533,893,9562,2 +26534,893,713,5 +26535,893,2996,3 +26536,893,8228,1 +26537,893,197,1 +26538,893,972,5 +26539,893,8483,3 +26540,893,3814,1 +26541,893,4418,3 +26542,893,742,1 +26543,893,5423,1 +26544,893,6632,5 +26545,893,7331,3 +26546,893,3785,5 +26547,894,9494,1 +26548,894,3572,5 +26549,894,6341,3 +26550,894,3102,4 +26551,894,1525,1 +26552,894,5118,3 +26553,894,7271,3 +26554,894,1126,1 +26555,894,4083,1 +26556,894,7390,4 +26557,894,7429,4 +26558,894,8241,2 +26559,894,4597,1 +26560,894,9212,4 +26561,894,8970,4 +26562,894,2616,5 +26563,894,7603,4 +26564,894,5374,3 +26565,894,490,2 +26566,894,4758,4 +26567,894,4030,3 +26568,894,1957,1 +26569,894,2648,1 +26570,894,256,3 +26571,894,5714,2 +26572,894,8683,1 +26573,894,5046,3 +26574,894,3884,5 +26575,894,8067,1 +26576,894,2969,2 +26577,894,1510,4 +26578,894,8504,1 +26579,894,6580,3 +26580,894,5392,3 +26581,894,526,4 +26582,894,3988,3 +26583,894,410,5 +26584,894,9724,1 +26585,894,7367,1 +26586,894,1684,3 +26587,895,1936,2 +26588,895,7056,3 +26589,895,102,5 +26590,895,3688,2 +26591,895,3657,1 +26592,895,2827,4 +26593,895,1257,4 +26594,895,3252,1 +26595,895,3192,2 +26596,895,5734,1 +26597,895,467,4 +26598,895,6414,1 +26599,895,2751,4 +26600,895,8645,1 +26601,895,357,4 +26602,895,7632,4 +26603,895,1281,3 +26604,895,2949,2 +26605,895,1746,5 +26606,895,9964,1 +26607,895,3806,5 +26608,895,2473,5 +26609,895,4232,3 +26610,895,6658,2 +26611,895,9478,4 +26612,895,8251,1 +26613,895,9892,2 +26614,895,6975,5 +26615,895,6040,3 +26616,895,6510,2 +26617,895,460,2 +26618,895,6521,4 +26619,895,4113,2 +26620,895,77,4 +26621,895,211,2 +26622,895,7384,4 +26623,895,3114,4 +26624,895,1778,1 +26625,895,3444,3 +26626,895,9956,5 +26627,895,3962,2 +26628,896,6217,1 +26629,896,4577,3 +26630,896,3843,5 +26631,896,116,1 +26632,896,7550,4 +26633,896,9911,3 +26634,896,3272,3 +26635,896,6878,5 +26636,896,7718,3 +26637,896,7478,5 +26638,896,6681,2 +26639,896,1434,3 +26640,896,2627,3 +26641,896,4925,4 +26642,896,7984,5 +26643,896,2763,1 +26644,896,1263,4 +26645,896,5796,5 +26646,896,8761,2 +26647,896,369,4 +26648,896,616,4 +26649,896,2985,5 +26650,896,4126,2 +26651,896,8872,2 +26652,896,8108,3 +26653,896,8904,5 +26654,896,1377,2 +26655,896,3495,3 +26656,896,7082,3 +26657,896,4599,1 +26658,896,8999,1 +26659,896,5209,2 +26660,896,6807,4 +26661,896,9555,5 +26662,896,9324,1 +26663,896,3065,4 +26664,896,2665,5 +26665,896,539,1 +26666,896,7804,5 +26667,896,1821,5 +26668,896,2206,1 +26669,896,2334,4 +26670,896,9792,5 +26671,896,5876,3 +26672,897,9739,2 +26673,897,3122,4 +26674,897,7366,1 +26675,897,2442,2 +26676,897,3439,4 +26677,897,5146,3 +26678,897,4918,1 +26679,897,5162,5 +26680,897,650,2 +26681,897,8578,4 +26682,897,3663,3 +26683,897,5945,2 +26684,897,4558,3 +26685,897,9651,5 +26686,897,9653,4 +26687,897,4018,5 +26688,897,4853,3 +26689,897,1056,1 +26690,898,830,2 +26691,898,1939,4 +26692,898,5653,4 +26693,898,3214,4 +26694,898,2886,5 +26695,898,7197,3 +26696,898,7592,1 +26697,898,6639,5 +26698,898,5912,2 +26699,898,7465,1 +26700,898,9843,1 +26701,898,9705,5 +26702,898,8499,2 +26703,898,4892,1 +26704,898,808,3 +26705,898,466,3 +26706,898,9469,2 +26707,898,1348,4 +26708,898,6834,1 +26709,899,9851,4 +26710,899,8590,5 +26711,899,387,4 +26712,899,3302,4 +26713,899,9932,5 +26714,899,8787,3 +26715,899,6877,1 +26716,899,5211,3 +26717,899,5815,4 +26718,899,9856,4 +26719,899,9294,1 +26720,899,2026,4 +26721,899,9108,4 +26722,899,2301,2 +26723,899,3760,3 +26724,899,7569,3 +26725,899,7914,1 +26726,899,8117,5 +26727,899,4187,5 +26728,899,9400,1 +26729,899,386,1 +26730,899,8755,1 +26731,899,9407,3 +26732,899,8188,2 +26733,899,3214,5 +26734,899,7993,1 +26735,899,4398,3 +26736,899,3735,4 +26737,899,5999,4 +26738,900,1905,3 +26739,900,9878,4 +26740,900,4071,5 +26741,900,4857,2 +26742,900,9514,5 +26743,900,5148,4 +26744,900,7467,2 +26745,900,7607,2 +26746,900,7433,4 +26747,900,4641,3 +26748,900,5776,2 +26749,900,1429,5 +26750,900,9111,5 +26751,900,3784,3 +26752,900,3533,2 +26753,900,8038,2 +26754,900,9911,4 +26755,900,5755,3 +26756,900,4777,2 +26757,900,7405,2 +26758,900,6781,1 +26759,900,3309,4 +26760,900,9789,2 +26761,900,4462,3 +26762,900,5673,3 +26763,900,2047,4 +26764,900,9186,1 +26765,900,82,4 +26766,900,7409,4 +26767,900,2118,5 +26768,900,7352,4 +26769,900,3392,2 +26770,900,2231,5 +26771,900,7872,3 +26772,901,5795,3 +26773,901,2444,1 +26774,901,9419,2 +26775,901,4290,1 +26776,901,1824,3 +26777,901,7911,3 +26778,901,6439,1 +26779,901,3812,3 +26780,901,9064,5 +26781,901,5806,2 +26782,901,1624,5 +26783,901,757,3 +26784,901,6827,1 +26785,901,8187,4 +26786,901,3887,5 +26787,901,8969,5 +26788,901,4371,2 +26789,901,1362,4 +26790,901,2581,3 +26791,901,3430,5 +26792,901,5731,4 +26793,901,3294,1 +26794,901,3220,5 +26795,902,4258,1 +26796,902,164,4 +26797,902,7780,4 +26798,902,5511,5 +26799,902,9765,2 +26800,902,1062,2 +26801,902,288,2 +26802,902,7284,3 +26803,902,8834,3 +26804,902,1487,2 +26805,902,7344,3 +26806,902,3428,4 +26807,902,1857,2 +26808,902,1730,5 +26809,902,6662,4 +26810,902,7517,2 +26811,902,9330,1 +26812,902,3186,5 +26813,902,6918,5 +26814,903,8647,5 +26815,903,9059,4 +26816,903,4167,2 +26817,903,5224,2 +26818,903,6753,1 +26819,903,7474,2 +26820,903,3982,5 +26821,903,4,2 +26822,903,9851,4 +26823,903,9563,3 +26824,903,8197,1 +26825,903,1360,3 +26826,903,8628,4 +26827,903,5701,2 +26828,903,9850,4 +26829,903,7909,1 +26830,903,2016,1 +26831,903,8866,1 +26832,903,8205,2 +26833,903,7431,3 +26834,903,6814,4 +26835,903,4761,5 +26836,903,5005,3 +26837,903,8578,4 +26838,903,4411,2 +26839,903,7132,4 +26840,903,4925,1 +26841,903,1551,2 +26842,903,3463,1 +26843,903,6703,3 +26844,903,357,1 +26845,903,2182,3 +26846,903,7933,5 +26847,903,9688,1 +26848,903,3903,5 +26849,903,2019,4 +26850,903,3775,2 +26851,903,721,3 +26852,903,6409,3 +26853,903,313,3 +26854,903,8790,5 +26855,903,4980,1 +26856,903,5573,3 +26857,903,2524,4 +26858,903,4343,5 +26859,904,5439,4 +26860,904,9668,1 +26861,904,9929,1 +26862,904,3576,3 +26863,904,3377,5 +26864,904,369,5 +26865,904,1413,5 +26866,904,4864,1 +26867,904,752,2 +26868,904,654,1 +26869,904,8278,3 +26870,904,8213,2 +26871,904,6681,1 +26872,904,1515,3 +26873,904,7460,5 +26874,904,8578,3 +26875,904,3258,3 +26876,904,4162,4 +26877,905,7282,4 +26878,905,8177,1 +26879,905,4013,5 +26880,905,6551,4 +26881,905,1112,2 +26882,905,5834,5 +26883,905,8923,1 +26884,905,7461,1 +26885,905,8660,3 +26886,905,144,4 +26887,905,5514,3 +26888,905,4063,1 +26889,905,7217,3 +26890,905,5930,3 +26891,905,3098,4 +26892,905,6888,3 +26893,906,8920,3 +26894,906,957,3 +26895,906,9009,3 +26896,906,3446,1 +26897,906,8969,1 +26898,906,3055,1 +26899,906,3991,1 +26900,906,8019,3 +26901,906,4803,5 +26902,906,4544,3 +26903,906,464,4 +26904,906,4095,4 +26905,906,298,2 +26906,906,6142,3 +26907,906,5067,4 +26908,906,4234,3 +26909,906,2591,5 +26910,906,3764,2 +26911,906,4221,3 +26912,906,7801,3 +26913,906,3356,5 +26914,906,2973,5 +26915,906,838,4 +26916,906,4229,3 +26917,906,8392,3 +26918,906,9862,2 +26919,906,8942,4 +26920,906,322,2 +26921,906,2528,1 +26922,906,6051,4 +26923,906,7493,4 +26924,906,155,2 +26925,906,5739,1 +26926,906,3087,4 +26927,906,3872,1 +26928,906,4591,5 +26929,906,5707,2 +26930,906,1988,5 +26931,906,5730,5 +26932,906,5120,5 +26933,906,9197,1 +26934,906,3912,2 +26935,906,3463,3 +26936,906,8068,4 +26937,906,9194,4 +26938,906,4030,3 +26939,906,6627,2 +26940,906,7350,1 +26941,906,6037,1 +26942,906,1438,3 +26943,907,4127,5 +26944,907,7849,3 +26945,907,3366,1 +26946,907,1455,4 +26947,907,7160,4 +26948,907,4255,4 +26949,907,580,1 +26950,907,668,2 +26951,907,6024,5 +26952,907,1397,3 +26953,907,2198,4 +26954,907,2274,5 +26955,907,481,2 +26956,907,2927,3 +26957,907,5630,5 +26958,907,1135,2 +26959,907,5794,5 +26960,907,808,1 +26961,907,3655,3 +26962,907,2367,4 +26963,907,5998,2 +26964,907,8621,5 +26965,907,1646,1 +26966,907,3928,1 +26967,907,3497,5 +26968,907,4104,1 +26969,907,4995,3 +26970,907,3496,3 +26971,907,6422,2 +26972,907,4268,4 +26973,907,9005,2 +26974,907,1486,2 +26975,907,1410,2 +26976,907,38,3 +26977,907,7077,5 +26978,907,1003,3 +26979,907,9462,1 +26980,907,2451,5 +26981,907,3273,4 +26982,907,340,2 +26983,908,5177,2 +26984,908,593,1 +26985,908,9600,3 +26986,908,9726,1 +26987,908,8029,2 +26988,908,9655,1 +26989,908,7439,1 +26990,908,4745,2 +26991,908,8793,3 +26992,908,6852,4 +26993,908,2615,1 +26994,908,3740,5 +26995,908,4500,5 +26996,908,8997,4 +26997,908,681,1 +26998,908,8633,3 +26999,908,4066,4 +27000,908,9882,1 +27001,908,8022,3 +27002,908,5681,2 +27003,908,4071,3 +27004,908,2465,3 +27005,908,7023,3 +27006,908,159,4 +27007,908,6371,5 +27008,908,7471,3 +27009,908,4111,4 +27010,908,3151,2 +27011,908,1589,1 +27012,908,3694,5 +27013,908,9824,3 +27014,908,1775,5 +27015,908,5485,1 +27016,908,1336,2 +27017,908,8180,1 +27018,908,2436,3 +27019,908,2407,3 +27020,909,1476,4 +27021,909,8387,4 +27022,909,1045,4 +27023,909,9322,1 +27024,909,476,2 +27025,909,5332,4 +27026,909,819,1 +27027,909,5323,4 +27028,909,4207,1 +27029,909,2925,4 +27030,909,822,4 +27031,909,3869,2 +27032,909,402,5 +27033,909,1334,1 +27034,909,8040,5 +27035,909,3405,1 +27036,909,6455,4 +27037,909,6431,3 +27038,909,8427,1 +27039,909,131,5 +27040,909,6296,4 +27041,909,7099,2 +27042,909,7162,3 +27043,909,7057,4 +27044,909,1729,3 +27045,909,5228,1 +27046,909,5899,5 +27047,909,2130,5 +27048,909,7693,2 +27049,909,7167,5 +27050,909,8955,5 +27051,909,1486,5 +27052,909,307,5 +27053,909,1073,1 +27054,909,9163,1 +27055,910,7673,2 +27056,910,6089,2 +27057,910,8547,5 +27058,910,2848,3 +27059,910,5553,2 +27060,910,8748,2 +27061,910,3198,4 +27062,910,7782,4 +27063,910,138,1 +27064,910,7565,1 +27065,910,3011,1 +27066,910,2017,3 +27067,910,9971,1 +27068,910,4796,4 +27069,910,9676,2 +27070,910,406,3 +27071,910,4729,1 +27072,910,4579,4 +27073,910,9015,4 +27074,910,7792,1 +27075,910,1054,2 +27076,910,6028,3 +27077,910,5399,3 +27078,910,3781,5 +27079,910,6304,3 +27080,910,2659,4 +27081,910,2157,4 +27082,910,1462,1 +27083,910,2771,4 +27084,910,6883,2 +27085,910,6791,2 +27086,910,9659,5 +27087,910,124,5 +27088,911,4243,3 +27089,911,1131,3 +27090,911,9692,2 +27091,911,2947,1 +27092,911,4189,4 +27093,911,5141,3 +27094,911,1012,5 +27095,911,994,3 +27096,911,3390,4 +27097,911,8392,2 +27098,911,1621,4 +27099,911,3708,3 +27100,911,4886,3 +27101,912,4595,2 +27102,912,9203,5 +27103,912,634,4 +27104,912,463,4 +27105,912,7761,3 +27106,912,2830,1 +27107,912,3552,1 +27108,912,6945,5 +27109,912,8105,4 +27110,912,9535,2 +27111,912,7063,5 +27112,912,7119,1 +27113,912,6174,5 +27114,912,7178,1 +27115,912,1759,4 +27116,912,8383,3 +27117,912,2152,1 +27118,912,5830,5 +27119,912,9736,1 +27120,913,418,4 +27121,913,2925,1 +27122,913,7549,3 +27123,913,6934,1 +27124,913,8246,5 +27125,913,6304,5 +27126,913,388,4 +27127,913,2214,5 +27128,913,964,4 +27129,913,9577,3 +27130,913,9320,1 +27131,913,7805,2 +27132,913,9464,3 +27133,913,6566,2 +27134,913,9687,3 +27135,913,4144,2 +27136,913,251,5 +27137,913,7380,2 +27138,913,6630,2 +27139,913,2951,4 +27140,913,9115,3 +27141,913,2996,1 +27142,913,3374,5 +27143,913,4752,1 +27144,913,477,5 +27145,913,8080,1 +27146,913,3686,5 +27147,913,2742,4 +27148,914,3259,1 +27149,914,6699,4 +27150,914,6200,2 +27151,914,5521,5 +27152,914,973,4 +27153,914,743,3 +27154,914,9665,5 +27155,914,5364,4 +27156,914,4923,2 +27157,914,7947,1 +27158,914,4686,4 +27159,915,7400,3 +27160,915,5799,5 +27161,915,343,4 +27162,915,3808,3 +27163,915,9585,3 +27164,915,4547,2 +27165,915,6490,3 +27166,915,7939,4 +27167,915,7156,4 +27168,915,5603,2 +27169,915,8420,2 +27170,915,4003,2 +27171,915,1323,4 +27172,915,6241,4 +27173,915,6539,4 +27174,915,2294,5 +27175,915,5977,5 +27176,915,9380,1 +27177,915,5481,3 +27178,915,2594,2 +27179,915,7780,1 +27180,915,6823,4 +27181,915,7234,1 +27182,915,2142,1 +27183,915,1415,4 +27184,915,112,2 +27185,915,1865,5 +27186,915,2209,5 +27187,915,486,5 +27188,915,3570,1 +27189,915,8781,4 +27190,915,4456,5 +27191,915,7289,5 +27192,915,3802,2 +27193,915,2860,3 +27194,915,6579,1 +27195,916,8886,5 +27196,916,4956,2 +27197,916,4584,4 +27198,916,9176,5 +27199,916,5045,1 +27200,916,5383,4 +27201,916,5730,5 +27202,916,4411,5 +27203,916,7486,5 +27204,916,3364,3 +27205,916,1995,5 +27206,916,365,5 +27207,916,4221,4 +27208,916,9594,1 +27209,916,3560,2 +27210,916,4819,1 +27211,916,7719,1 +27212,916,2757,2 +27213,916,4779,4 +27214,916,9411,1 +27215,916,4065,2 +27216,916,4802,3 +27217,916,1332,3 +27218,916,8185,1 +27219,916,451,2 +27220,916,7044,5 +27221,916,3843,2 +27222,916,335,2 +27223,916,8811,1 +27224,916,2045,5 +27225,916,3757,3 +27226,916,588,1 +27227,916,1681,1 +27228,916,7301,4 +27229,916,1345,5 +27230,916,9772,1 +27231,916,3072,3 +27232,916,5887,1 +27233,917,6030,3 +27234,917,702,2 +27235,917,560,5 +27236,917,4640,4 +27237,917,9762,3 +27238,917,7037,5 +27239,917,9281,3 +27240,917,4441,3 +27241,917,3325,4 +27242,917,1425,2 +27243,917,9652,4 +27244,917,2364,5 +27245,917,7321,3 +27246,917,2088,2 +27247,917,4049,5 +27248,917,1749,4 +27249,917,5188,3 +27250,917,8290,3 +27251,917,3423,3 +27252,917,4995,4 +27253,917,5180,3 +27254,917,5288,3 +27255,917,8901,3 +27256,917,8939,3 +27257,917,3888,5 +27258,917,8724,5 +27259,917,7984,5 +27260,917,4457,3 +27261,917,7683,1 +27262,917,1595,4 +27263,917,534,5 +27264,917,7997,4 +27265,917,6294,3 +27266,917,6800,1 +27267,918,3433,2 +27268,918,8218,4 +27269,918,385,2 +27270,918,9940,1 +27271,918,7121,4 +27272,918,7176,5 +27273,918,1065,5 +27274,918,4200,1 +27275,918,7365,4 +27276,918,2126,2 +27277,918,3492,4 +27278,918,7771,5 +27279,918,597,4 +27280,918,2806,3 +27281,918,7996,4 +27282,918,3983,5 +27283,918,8061,5 +27284,918,5094,1 +27285,918,1463,1 +27286,918,5721,1 +27287,918,2771,3 +27288,918,1385,4 +27289,918,1767,3 +27290,918,8303,3 +27291,918,2717,5 +27292,918,8566,4 +27293,918,2515,3 +27294,918,6511,2 +27295,918,4454,1 +27296,918,7660,3 +27297,918,5273,1 +27298,919,6473,2 +27299,919,4899,5 +27300,919,9132,3 +27301,919,6729,2 +27302,919,3699,1 +27303,919,5533,1 +27304,919,1497,2 +27305,919,9216,5 +27306,919,8618,4 +27307,919,1818,3 +27308,919,4866,3 +27309,919,1805,3 +27310,919,6188,3 +27311,919,5505,4 +27312,919,9774,4 +27313,919,5953,5 +27314,919,40,5 +27315,919,1216,5 +27316,919,2556,1 +27317,919,3931,4 +27318,919,8194,2 +27319,919,6304,5 +27320,919,5051,4 +27321,919,3512,4 +27322,919,1170,2 +27323,919,9454,5 +27324,919,1851,1 +27325,919,6644,5 +27326,919,2198,4 +27327,919,2926,4 +27328,919,4062,5 +27329,919,4533,3 +27330,919,5638,2 +27331,919,4287,3 +27332,919,8715,1 +27333,919,2338,4 +27334,919,1687,4 +27335,919,3475,2 +27336,919,8631,1 +27337,919,59,5 +27338,919,2905,3 +27339,919,8682,4 +27340,919,8940,5 +27341,919,5752,3 +27342,920,8162,1 +27343,920,7448,1 +27344,920,6737,3 +27345,920,3525,3 +27346,920,2864,2 +27347,920,3351,2 +27348,920,9511,3 +27349,920,9181,2 +27350,920,3832,5 +27351,920,5662,2 +27352,920,4437,4 +27353,920,6193,4 +27354,920,7973,2 +27355,920,9056,3 +27356,920,6777,1 +27357,920,8068,5 +27358,920,1276,4 +27359,920,3774,3 +27360,920,7140,3 +27361,920,5715,3 +27362,920,7916,1 +27363,920,8090,4 +27364,920,5800,5 +27365,921,1377,5 +27366,921,7243,5 +27367,921,250,4 +27368,921,8469,5 +27369,921,1301,1 +27370,921,2178,1 +27371,921,7878,1 +27372,921,5698,5 +27373,921,5069,4 +27374,921,1593,3 +27375,921,6134,5 +27376,921,2181,4 +27377,921,3967,4 +27378,921,3403,1 +27379,921,7699,1 +27380,921,7925,3 +27381,921,452,2 +27382,921,4155,1 +27383,921,4769,4 +27384,921,9376,1 +27385,921,3808,2 +27386,921,9167,3 +27387,921,5370,3 +27388,921,7458,5 +27389,921,1096,5 +27390,921,4979,5 +27391,921,1521,5 +27392,921,247,5 +27393,921,6518,3 +27394,921,9017,3 +27395,921,3949,4 +27396,921,8202,1 +27397,922,3166,5 +27398,922,179,5 +27399,922,2886,2 +27400,922,6687,1 +27401,922,7185,3 +27402,922,581,4 +27403,922,1324,5 +27404,922,1157,4 +27405,922,1020,2 +27406,922,1423,4 +27407,922,6544,5 +27408,922,8485,4 +27409,922,2269,1 +27410,923,2572,1 +27411,923,1075,1 +27412,923,7897,4 +27413,923,612,1 +27414,923,5452,5 +27415,923,9989,4 +27416,923,4603,1 +27417,923,8101,2 +27418,923,3353,4 +27419,923,2307,5 +27420,923,3559,1 +27421,923,7420,5 +27422,923,6447,5 +27423,923,2835,5 +27424,923,1269,3 +27425,923,6078,5 +27426,923,9498,5 +27427,923,9280,1 +27428,923,5672,2 +27429,923,9240,3 +27430,923,7753,1 +27431,923,3685,3 +27432,923,5514,4 +27433,923,2803,3 +27434,923,4139,2 +27435,924,195,2 +27436,924,8806,5 +27437,924,9514,2 +27438,924,4641,3 +27439,924,6377,4 +27440,924,414,5 +27441,924,6141,4 +27442,924,9738,1 +27443,924,3926,1 +27444,924,5881,2 +27445,924,3837,4 +27446,924,3466,4 +27447,924,3531,3 +27448,925,1411,3 +27449,925,83,3 +27450,925,6859,1 +27451,925,9254,3 +27452,925,6148,1 +27453,925,7615,3 +27454,925,3832,4 +27455,925,1663,3 +27456,925,888,2 +27457,925,8375,5 +27458,925,3424,1 +27459,925,8157,3 +27460,925,6416,5 +27461,925,3707,3 +27462,925,4883,5 +27463,925,3976,2 +27464,925,8241,4 +27465,925,7226,1 +27466,925,1384,3 +27467,925,8012,2 +27468,925,5202,1 +27469,925,6357,5 +27470,925,4708,4 +27471,925,9405,3 +27472,925,693,4 +27473,925,5160,4 +27474,925,137,4 +27475,925,8814,5 +27476,925,7308,1 +27477,925,8978,5 +27478,925,9104,2 +27479,925,7395,5 +27480,925,8432,4 +27481,926,2546,3 +27482,926,4937,3 +27483,926,4916,5 +27484,926,1240,4 +27485,926,3286,4 +27486,926,3973,5 +27487,926,9389,3 +27488,926,413,4 +27489,926,8331,2 +27490,926,2218,1 +27491,926,906,4 +27492,926,5150,3 +27493,926,4649,1 +27494,926,8990,5 +27495,926,5858,3 +27496,926,3021,4 +27497,926,726,1 +27498,926,7396,1 +27499,926,3889,5 +27500,926,8050,2 +27501,926,8226,2 +27502,926,2781,2 +27503,926,3535,3 +27504,926,6668,3 +27505,926,3701,2 +27506,926,6740,3 +27507,926,1033,3 +27508,926,3726,4 +27509,926,5257,1 +27510,926,5743,4 +27511,926,6119,5 +27512,926,5018,3 +27513,926,1498,3 +27514,926,1938,2 +27515,926,5172,1 +27516,926,104,4 +27517,926,6700,5 +27518,926,8022,3 +27519,926,456,5 +27520,927,734,2 +27521,927,8305,1 +27522,927,3906,5 +27523,927,4633,3 +27524,927,780,2 +27525,927,2304,3 +27526,927,6820,2 +27527,927,8741,2 +27528,927,1202,5 +27529,927,1317,2 +27530,927,7012,4 +27531,927,9707,4 +27532,927,2509,2 +27533,927,9211,5 +27534,927,5251,2 +27535,927,8041,2 +27536,928,5473,4 +27537,928,7592,3 +27538,928,398,5 +27539,928,9688,3 +27540,928,3691,3 +27541,928,3501,5 +27542,928,4771,1 +27543,928,1682,1 +27544,928,8494,4 +27545,928,1613,3 +27546,928,2786,5 +27547,928,7761,5 +27548,928,8483,2 +27549,928,5726,2 +27550,928,6969,1 +27551,928,6730,4 +27552,928,9344,2 +27553,928,125,4 +27554,928,6227,4 +27555,928,3929,2 +27556,928,2465,1 +27557,928,5224,2 +27558,928,2278,1 +27559,928,7081,1 +27560,928,5496,4 +27561,928,9123,3 +27562,928,1444,3 +27563,928,6576,4 +27564,928,1552,2 +27565,929,9069,3 +27566,929,9023,4 +27567,929,782,2 +27568,929,3676,5 +27569,929,4408,2 +27570,929,1521,1 +27571,929,5349,1 +27572,929,8645,5 +27573,929,2410,3 +27574,929,5976,4 +27575,930,8817,2 +27576,930,8021,3 +27577,930,2834,5 +27578,930,3225,2 +27579,930,6403,4 +27580,930,5470,5 +27581,930,6157,1 +27582,930,4749,5 +27583,930,673,1 +27584,930,1283,1 +27585,930,4912,2 +27586,930,4082,1 +27587,930,5747,1 +27588,930,5082,5 +27589,931,5896,5 +27590,931,8863,5 +27591,931,9138,2 +27592,931,4799,4 +27593,931,6444,3 +27594,931,2155,2 +27595,931,6738,3 +27596,931,1083,3 +27597,931,4191,2 +27598,931,7461,4 +27599,931,4705,3 +27600,931,2182,4 +27601,931,2539,5 +27602,931,1021,5 +27603,931,2893,4 +27604,931,2213,1 +27605,931,5977,2 +27606,931,5901,5 +27607,931,2889,3 +27608,931,839,3 +27609,931,4032,3 +27610,931,8925,4 +27611,931,1024,5 +27612,931,414,4 +27613,931,823,1 +27614,931,79,1 +27615,931,2484,2 +27616,931,2499,4 +27617,931,9904,3 +27618,931,9800,4 +27619,931,2737,2 +27620,931,6254,2 +27621,931,3015,2 +27622,931,4372,5 +27623,931,8915,4 +27624,931,8561,5 +27625,931,3682,4 +27626,932,3630,1 +27627,932,8163,1 +27628,932,7592,4 +27629,932,8915,5 +27630,932,6334,2 +27631,932,5679,2 +27632,932,8918,3 +27633,932,6621,3 +27634,932,535,2 +27635,932,4344,2 +27636,932,3286,1 +27637,932,2914,4 +27638,932,7837,3 +27639,932,2380,5 +27640,932,5689,3 +27641,932,5467,1 +27642,932,3916,4 +27643,932,1981,4 +27644,932,4930,1 +27645,932,7728,5 +27646,932,8185,2 +27647,932,9487,5 +27648,932,1021,4 +27649,932,7342,1 +27650,932,2826,1 +27651,932,4664,1 +27652,932,969,2 +27653,932,6153,3 +27654,932,903,1 +27655,932,9690,4 +27656,932,922,2 +27657,932,2558,3 +27658,932,4708,2 +27659,932,4217,1 +27660,932,5783,5 +27661,932,6085,1 +27662,932,3360,1 +27663,932,2696,3 +27664,932,1984,3 +27665,932,9991,1 +27666,932,6701,1 +27667,932,4141,1 +27668,932,9435,4 +27669,932,9196,4 +27670,933,9995,5 +27671,933,859,2 +27672,933,8357,2 +27673,933,2564,3 +27674,933,8194,4 +27675,933,2214,5 +27676,933,1304,4 +27677,933,2979,5 +27678,933,2426,5 +27679,933,8247,2 +27680,933,4822,4 +27681,933,6967,1 +27682,933,1344,5 +27683,933,4,1 +27684,933,7696,5 +27685,933,5391,4 +27686,933,5245,5 +27687,933,8102,5 +27688,933,7214,3 +27689,933,1740,2 +27690,933,7872,2 +27691,933,6925,5 +27692,933,1012,2 +27693,934,7567,5 +27694,934,7502,4 +27695,934,612,2 +27696,934,2265,3 +27697,934,6946,5 +27698,934,1286,1 +27699,934,282,2 +27700,934,8549,4 +27701,934,3539,1 +27702,934,7796,1 +27703,934,5931,1 +27704,934,1805,4 +27705,934,6687,1 +27706,934,5350,1 +27707,934,152,4 +27708,934,5786,2 +27709,934,9741,3 +27710,934,4252,1 +27711,934,3357,1 +27712,934,6936,3 +27713,934,4238,5 +27714,934,1066,4 +27715,934,5656,4 +27716,934,2015,1 +27717,934,6912,5 +27718,935,5050,3 +27719,935,7577,4 +27720,935,3326,5 +27721,935,2816,3 +27722,935,6461,3 +27723,935,9598,1 +27724,935,6207,5 +27725,935,5220,5 +27726,935,3020,2 +27727,935,426,1 +27728,935,9756,2 +27729,935,4626,1 +27730,935,7927,4 +27731,935,9449,3 +27732,935,8284,2 +27733,935,659,3 +27734,935,1386,3 +27735,935,8238,1 +27736,935,199,2 +27737,935,4909,3 +27738,935,913,2 +27739,935,5238,2 +27740,935,5086,5 +27741,935,8989,2 +27742,935,8827,2 +27743,935,4694,4 +27744,936,4658,4 +27745,936,3057,3 +27746,936,5871,3 +27747,936,1052,2 +27748,936,1315,3 +27749,936,3168,5 +27750,936,4955,5 +27751,936,8224,4 +27752,936,238,4 +27753,936,6444,4 +27754,936,3602,2 +27755,936,8906,1 +27756,936,7431,1 +27757,936,6218,3 +27758,936,4097,5 +27759,936,1542,5 +27760,936,7101,5 +27761,936,8118,3 +27762,936,9202,3 +27763,936,5154,5 +27764,936,5468,5 +27765,936,9178,2 +27766,936,56,5 +27767,936,7980,5 +27768,936,3120,1 +27769,936,3086,2 +27770,936,4202,1 +27771,936,382,2 +27772,936,9367,3 +27773,936,9353,4 +27774,936,5598,5 +27775,936,999,4 +27776,937,592,4 +27777,937,3103,5 +27778,937,6481,4 +27779,937,4587,1 +27780,937,3647,3 +27781,937,5048,1 +27782,937,3224,2 +27783,937,8553,1 +27784,937,3288,1 +27785,937,4505,2 +27786,937,6326,3 +27787,937,2472,5 +27788,937,1622,1 +27789,937,4889,1 +27790,937,2975,2 +27791,937,8678,4 +27792,937,5397,1 +27793,937,1791,2 +27794,937,2068,2 +27795,937,5972,3 +27796,937,8599,1 +27797,937,9331,2 +27798,937,2960,5 +27799,937,85,3 +27800,937,5136,4 +27801,937,5977,3 +27802,937,6218,1 +27803,937,4396,4 +27804,937,8951,3 +27805,937,6961,3 +27806,937,3546,3 +27807,937,9543,5 +27808,937,1525,5 +27809,937,5492,5 +27810,937,6154,4 +27811,937,1539,1 +27812,937,5198,1 +27813,937,1880,2 +27814,937,9117,1 +27815,937,7875,2 +27816,937,7558,4 +27817,937,2196,5 +27818,937,6275,4 +27819,937,2759,2 +27820,937,4828,1 +27821,937,5674,5 +27822,937,1645,4 +27823,938,5634,1 +27824,938,3882,1 +27825,938,4452,5 +27826,938,8123,4 +27827,938,1005,2 +27828,938,1184,4 +27829,938,3076,4 +27830,938,654,5 +27831,938,639,2 +27832,938,8493,4 +27833,938,7758,1 +27834,938,5805,3 +27835,938,9968,1 +27836,938,6563,2 +27837,938,9761,3 +27838,938,9873,4 +27839,938,9231,1 +27840,938,2295,5 +27841,938,9094,5 +27842,938,3199,4 +27843,938,1238,1 +27844,938,3827,1 +27845,938,1454,5 +27846,938,5187,3 +27847,938,1941,3 +27848,938,1958,5 +27849,938,3489,1 +27850,938,1541,5 +27851,938,6138,2 +27852,938,2573,4 +27853,938,6543,5 +27854,938,7022,2 +27855,938,3871,2 +27856,938,5061,5 +27857,938,3474,5 +27858,938,7224,5 +27859,938,8717,5 +27860,938,3696,3 +27861,938,5549,1 +27862,938,6794,5 +27863,938,2370,4 +27864,938,1395,4 +27865,938,1679,1 +27866,938,9396,5 +27867,938,4595,3 +27868,938,4032,5 +27869,938,5682,2 +27870,938,1306,1 +27871,938,7901,2 +27872,939,797,1 +27873,939,5009,5 +27874,939,2755,3 +27875,939,8082,3 +27876,939,9610,2 +27877,939,5680,2 +27878,939,2395,4 +27879,939,8435,3 +27880,939,9167,1 +27881,939,2697,2 +27882,939,4746,2 +27883,939,3733,1 +27884,939,7157,3 +27885,939,411,3 +27886,939,1190,4 +27887,939,6972,3 +27888,939,4966,3 +27889,939,8586,2 +27890,939,1839,2 +27891,939,2009,2 +27892,939,2426,4 +27893,939,1508,1 +27894,939,2393,5 +27895,939,1556,3 +27896,939,203,4 +27897,939,7273,5 +27898,939,6411,2 +27899,939,843,1 +27900,939,602,3 +27901,939,728,5 +27902,939,7509,5 +27903,939,275,4 +27904,939,2969,3 +27905,939,6668,3 +27906,939,3437,1 +27907,939,1892,5 +27908,939,7503,1 +27909,939,5379,4 +27910,939,9259,3 +27911,939,5141,5 +27912,939,2232,2 +27913,939,2089,4 +27914,939,1667,2 +27915,939,745,4 +27916,939,1234,5 +27917,939,6721,2 +27918,939,5191,5 +27919,939,9541,4 +27920,939,5501,5 +27921,939,6420,3 +27922,940,5241,2 +27923,940,4704,3 +27924,940,3906,5 +27925,940,2246,2 +27926,940,6417,4 +27927,940,8348,3 +27928,940,6517,2 +27929,940,2446,5 +27930,940,9332,3 +27931,940,165,3 +27932,940,6993,1 +27933,940,9090,1 +27934,940,6025,2 +27935,940,1566,5 +27936,940,3899,2 +27937,940,5415,5 +27938,940,4156,5 +27939,940,3709,3 +27940,941,2611,3 +27941,941,2639,5 +27942,941,3996,5 +27943,941,665,2 +27944,941,5713,3 +27945,941,1522,5 +27946,941,3796,1 +27947,941,4655,1 +27948,941,3334,2 +27949,941,4188,3 +27950,941,7743,2 +27951,941,3342,3 +27952,941,1250,2 +27953,941,7313,5 +27954,941,6415,2 +27955,941,6820,1 +27956,941,3558,3 +27957,941,2773,5 +27958,941,6057,2 +27959,941,4478,1 +27960,941,7106,3 +27961,941,9023,2 +27962,941,3309,2 +27963,941,8956,2 +27964,941,1045,5 +27965,941,2421,2 +27966,941,102,3 +27967,941,9335,5 +27968,941,9221,4 +27969,941,5453,1 +27970,942,2013,4 +27971,942,4576,2 +27972,942,6266,5 +27973,942,1771,3 +27974,942,899,1 +27975,942,8351,3 +27976,942,7992,5 +27977,942,2156,4 +27978,942,3215,2 +27979,942,3258,5 +27980,942,5310,2 +27981,942,1015,4 +27982,942,5601,4 +27983,942,3951,4 +27984,942,6181,2 +27985,942,8877,5 +27986,942,9969,1 +27987,942,5194,2 +27988,942,7874,2 +27989,942,5416,4 +27990,942,1043,1 +27991,942,8718,4 +27992,942,5694,1 +27993,942,2126,5 +27994,942,7220,4 +27995,942,3654,3 +27996,942,970,4 +27997,942,173,5 +27998,942,4560,4 +27999,942,3226,2 +28000,943,7434,5 +28001,943,2333,2 +28002,943,8611,3 +28003,943,7502,4 +28004,943,6518,3 +28005,943,2875,1 +28006,943,6315,2 +28007,943,5264,5 +28008,943,8389,1 +28009,943,3529,1 +28010,943,1089,5 +28011,943,4664,1 +28012,943,5301,1 +28013,943,7857,1 +28014,943,3112,4 +28015,943,3481,3 +28016,943,4610,4 +28017,943,861,4 +28018,943,1996,5 +28019,943,1018,3 +28020,943,6089,5 +28021,943,3883,1 +28022,943,6535,1 +28023,943,4572,5 +28024,943,9322,1 +28025,943,958,1 +28026,943,8243,1 +28027,943,3235,3 +28028,943,5182,2 +28029,943,7389,3 +28030,943,5683,5 +28031,943,1873,2 +28032,943,6936,2 +28033,943,3811,1 +28034,943,6402,1 +28035,943,9705,1 +28036,943,5996,4 +28037,943,4630,1 +28038,943,1275,5 +28039,943,8584,1 +28040,944,6855,2 +28041,944,7283,5 +28042,944,6921,1 +28043,944,8705,1 +28044,944,7542,1 +28045,944,9121,5 +28046,944,4256,2 +28047,944,8415,2 +28048,944,1496,3 +28049,944,1059,4 +28050,944,9224,2 +28051,944,5290,2 +28052,944,7820,1 +28053,944,6850,2 +28054,944,1276,3 +28055,944,7247,5 +28056,944,9400,5 +28057,944,9965,4 +28058,944,5627,5 +28059,944,1247,5 +28060,944,8425,4 +28061,944,3929,4 +28062,944,1931,3 +28063,944,1660,4 +28064,944,8623,3 +28065,944,637,3 +28066,944,463,2 +28067,944,809,1 +28068,944,2988,4 +28069,944,2864,2 +28070,944,9596,4 +28071,944,7522,4 +28072,944,4400,1 +28073,944,7468,5 +28074,944,8878,1 +28075,944,8138,4 +28076,944,8937,3 +28077,944,4302,3 +28078,944,5484,5 +28079,944,3032,4 +28080,944,851,1 +28081,944,4742,4 +28082,944,2246,4 +28083,944,2045,5 +28084,944,6731,4 +28085,944,9926,5 +28086,944,1380,1 +28087,944,3961,5 +28088,945,147,1 +28089,945,6953,3 +28090,945,2571,1 +28091,945,3817,2 +28092,945,5420,5 +28093,945,4594,3 +28094,945,9108,5 +28095,945,2126,1 +28096,945,3679,1 +28097,945,355,2 +28098,945,6380,3 +28099,945,6416,4 +28100,945,7941,5 +28101,945,5162,4 +28102,945,3099,4 +28103,945,7240,4 +28104,945,8274,5 +28105,945,8933,2 +28106,945,5414,3 +28107,945,3160,5 +28108,945,884,1 +28109,945,4500,5 +28110,945,3083,1 +28111,946,9731,2 +28112,946,3491,4 +28113,946,4826,5 +28114,946,5814,4 +28115,946,4558,4 +28116,946,6155,4 +28117,946,7620,1 +28118,946,9768,4 +28119,946,8076,1 +28120,946,5669,2 +28121,946,9792,2 +28122,946,956,3 +28123,946,6848,5 +28124,946,2457,3 +28125,946,6124,5 +28126,946,9066,1 +28127,946,3482,4 +28128,946,5322,1 +28129,946,3977,3 +28130,946,8691,1 +28131,946,4322,3 +28132,946,3164,2 +28133,946,1926,3 +28134,946,8790,2 +28135,946,2590,3 +28136,946,5822,2 +28137,946,3877,4 +28138,946,9471,3 +28139,946,2549,3 +28140,946,2197,2 +28141,946,6943,2 +28142,946,7736,5 +28143,946,6968,3 +28144,946,6295,5 +28145,946,5737,5 +28146,946,9155,4 +28147,946,7576,5 +28148,946,4504,5 +28149,946,2053,3 +28150,946,4068,2 +28151,946,6136,1 +28152,946,37,5 +28153,947,4589,3 +28154,947,229,1 +28155,947,6248,3 +28156,947,6340,5 +28157,947,9274,1 +28158,947,3274,5 +28159,947,2429,1 +28160,947,6598,3 +28161,947,6680,2 +28162,947,2558,5 +28163,947,710,2 +28164,947,789,3 +28165,947,8494,2 +28166,947,8186,5 +28167,947,4663,4 +28168,947,667,4 +28169,947,1256,3 +28170,947,5035,5 +28171,947,3282,5 +28172,947,449,2 +28173,947,7273,2 +28174,947,7604,4 +28175,947,9793,1 +28176,947,27,2 +28177,947,8139,3 +28178,947,7948,4 +28179,947,4195,2 +28180,947,528,5 +28181,947,6928,1 +28182,947,7105,5 +28183,947,3582,3 +28184,947,2337,1 +28185,947,4071,4 +28186,947,4396,1 +28187,947,5398,4 +28188,947,7506,3 +28189,947,420,2 +28190,948,9602,3 +28191,948,3048,4 +28192,948,4480,4 +28193,948,5700,3 +28194,948,220,5 +28195,948,693,4 +28196,948,2107,5 +28197,948,4617,3 +28198,948,8731,1 +28199,948,1536,4 +28200,948,26,1 +28201,948,1608,2 +28202,948,4547,5 +28203,948,7084,4 +28204,948,6286,3 +28205,948,6333,1 +28206,948,1437,4 +28207,948,7125,5 +28208,948,3720,1 +28209,948,1597,3 +28210,948,1167,4 +28211,948,7681,4 +28212,948,385,3 +28213,948,748,2 +28214,948,7410,3 +28215,948,1598,1 +28216,948,1267,1 +28217,948,1784,3 +28218,948,36,4 +28219,948,9251,5 +28220,948,603,5 +28221,948,4212,3 +28222,948,9695,3 +28223,948,3194,3 +28224,948,1962,3 +28225,948,4800,5 +28226,948,7186,5 +28227,948,9714,5 +28228,948,255,3 +28229,948,1166,2 +28230,948,3056,2 +28231,948,173,1 +28232,948,9910,1 +28233,949,3756,5 +28234,949,692,1 +28235,949,1106,4 +28236,949,9016,3 +28237,949,1070,3 +28238,949,4784,1 +28239,949,562,5 +28240,949,3662,5 +28241,949,1717,3 +28242,949,3341,5 +28243,949,576,5 +28244,949,1667,5 +28245,949,1146,1 +28246,949,5341,1 +28247,949,8403,5 +28248,949,4859,3 +28249,949,3546,2 +28250,949,7461,1 +28251,949,2629,5 +28252,949,2884,1 +28253,949,2704,4 +28254,949,3484,2 +28255,949,3805,3 +28256,949,2992,5 +28257,949,2255,5 +28258,949,6103,5 +28259,949,3766,3 +28260,949,1575,5 +28261,949,4933,2 +28262,949,6721,3 +28263,949,91,3 +28264,949,6802,1 +28265,949,8234,5 +28266,949,3737,5 +28267,949,3072,2 +28268,949,6773,4 +28269,949,2075,5 +28270,949,1456,5 +28271,949,7050,5 +28272,950,1060,3 +28273,950,492,3 +28274,950,375,2 +28275,950,306,3 +28276,950,1247,4 +28277,950,888,4 +28278,950,8535,3 +28279,950,342,4 +28280,950,9934,4 +28281,950,4392,3 +28282,950,2470,4 +28283,950,1372,5 +28284,950,7261,5 +28285,950,9447,2 +28286,950,1186,1 +28287,950,5077,2 +28288,950,6969,3 +28289,951,39,3 +28290,951,4540,3 +28291,951,8937,4 +28292,951,1366,2 +28293,951,3782,5 +28294,951,702,1 +28295,951,1614,2 +28296,951,6582,4 +28297,951,2514,5 +28298,951,6057,5 +28299,951,6913,4 +28300,951,8039,4 +28301,951,4615,5 +28302,951,8548,4 +28303,951,312,2 +28304,951,70,3 +28305,951,6323,4 +28306,951,1915,2 +28307,951,4136,3 +28308,951,981,3 +28309,951,5028,2 +28310,951,8848,4 +28311,951,5720,5 +28312,951,1089,3 +28313,952,8522,5 +28314,952,4825,3 +28315,952,5607,1 +28316,952,3200,3 +28317,952,6272,5 +28318,952,2959,5 +28319,952,7524,3 +28320,952,5703,1 +28321,952,3071,3 +28322,952,2981,3 +28323,952,8779,3 +28324,952,6937,5 +28325,952,1529,2 +28326,952,3158,1 +28327,952,5094,2 +28328,952,3324,5 +28329,952,175,1 +28330,952,4437,5 +28331,952,4609,2 +28332,952,6916,4 +28333,952,2821,3 +28334,952,4656,5 +28335,952,4544,2 +28336,952,5417,2 +28337,952,2489,3 +28338,952,2669,1 +28339,952,39,5 +28340,952,6679,2 +28341,952,2479,4 +28342,952,8869,4 +28343,952,371,2 +28344,952,7501,1 +28345,952,8408,1 +28346,952,3182,3 +28347,952,5359,1 +28348,952,4473,1 +28349,952,7226,1 +28350,952,4297,3 +28351,952,8263,2 +28352,952,4890,2 +28353,952,5293,4 +28354,952,505,3 +28355,952,5356,3 +28356,952,1301,5 +28357,952,2053,4 +28358,952,2650,1 +28359,952,8477,2 +28360,952,4390,5 +28361,953,4461,3 +28362,953,6098,1 +28363,953,9041,5 +28364,953,4516,4 +28365,953,9126,4 +28366,953,5795,1 +28367,953,9870,4 +28368,953,6600,4 +28369,953,3976,1 +28370,953,2758,3 +28371,953,8825,2 +28372,953,2686,5 +28373,953,2166,2 +28374,953,4847,3 +28375,953,8318,3 +28376,953,164,2 +28377,953,3179,2 +28378,953,8680,1 +28379,953,2600,4 +28380,953,6668,5 +28381,953,5964,5 +28382,954,7001,4 +28383,954,4563,5 +28384,954,2714,4 +28385,954,7477,3 +28386,954,4370,1 +28387,954,9598,3 +28388,954,7978,4 +28389,954,7471,1 +28390,954,6361,2 +28391,954,3933,4 +28392,954,5900,1 +28393,954,9545,5 +28394,954,80,4 +28395,954,9757,5 +28396,954,6511,5 +28397,954,7597,3 +28398,954,6823,1 +28399,954,5479,5 +28400,954,3887,5 +28401,955,638,2 +28402,955,8587,5 +28403,955,4280,1 +28404,955,5498,3 +28405,955,6590,4 +28406,955,1548,4 +28407,955,8051,1 +28408,955,9319,5 +28409,955,5751,1 +28410,955,229,5 +28411,955,9810,5 +28412,955,3652,5 +28413,955,660,3 +28414,955,8766,4 +28415,955,2673,5 +28416,955,4332,4 +28417,955,801,2 +28418,955,811,4 +28419,955,3172,4 +28420,955,8322,1 +28421,955,5268,5 +28422,955,3525,3 +28423,955,5100,5 +28424,955,7973,2 +28425,955,8213,3 +28426,955,5291,5 +28427,955,475,5 +28428,955,8060,4 +28429,955,2758,2 +28430,956,1327,5 +28431,956,4664,2 +28432,956,3674,1 +28433,956,8622,4 +28434,956,5339,5 +28435,956,2573,1 +28436,956,9606,3 +28437,956,9411,1 +28438,956,8987,2 +28439,956,5766,4 +28440,956,777,5 +28441,956,6888,3 +28442,956,416,1 +28443,956,6691,3 +28444,956,6785,5 +28445,956,9895,3 +28446,957,2110,2 +28447,957,6880,1 +28448,957,9500,1 +28449,957,5029,4 +28450,957,9611,1 +28451,957,6764,5 +28452,957,8634,1 +28453,957,796,2 +28454,957,6185,2 +28455,957,9815,2 +28456,957,7219,1 +28457,957,6855,1 +28458,957,1621,1 +28459,957,5501,2 +28460,957,4982,2 +28461,957,655,4 +28462,957,2723,3 +28463,957,9809,1 +28464,957,4007,2 +28465,958,9575,1 +28466,958,4180,4 +28467,958,2354,5 +28468,958,8499,3 +28469,958,4039,2 +28470,958,9109,2 +28471,958,974,5 +28472,958,775,4 +28473,958,3503,2 +28474,958,3672,5 +28475,958,9620,5 +28476,958,8340,4 +28477,958,3194,2 +28478,958,9167,3 +28479,958,8482,5 +28480,958,4107,4 +28481,958,9428,1 +28482,958,1487,4 +28483,958,5910,1 +28484,958,6069,3 +28485,958,2659,2 +28486,958,8273,1 +28487,958,8941,4 +28488,958,6854,5 +28489,958,7943,5 +28490,958,8035,3 +28491,958,8325,1 +28492,958,5548,1 +28493,958,7121,2 +28494,958,4051,5 +28495,958,2629,5 +28496,958,2053,1 +28497,958,4035,2 +28498,958,7491,4 +28499,958,2417,1 +28500,958,8250,4 +28501,959,2199,2 +28502,959,1181,5 +28503,959,8214,4 +28504,959,6597,5 +28505,959,8957,2 +28506,959,4861,4 +28507,959,5054,3 +28508,959,6740,1 +28509,959,4084,5 +28510,959,4296,1 +28511,959,5642,1 +28512,959,9599,4 +28513,959,8461,2 +28514,959,3441,5 +28515,959,6821,1 +28516,959,2544,4 +28517,959,6837,4 +28518,959,9789,5 +28519,959,4720,5 +28520,959,8190,4 +28521,959,4290,5 +28522,959,3278,4 +28523,959,506,1 +28524,959,8786,2 +28525,960,5760,1 +28526,960,4540,5 +28527,960,7614,4 +28528,960,8805,2 +28529,960,2154,1 +28530,960,8072,2 +28531,960,4117,2 +28532,960,564,4 +28533,960,8384,2 +28534,960,8167,4 +28535,960,549,1 +28536,960,3376,3 +28537,960,2903,3 +28538,960,9326,5 +28539,960,6891,5 +28540,960,7056,5 +28541,960,4190,2 +28542,960,5111,5 +28543,960,6705,5 +28544,960,3699,3 +28545,960,1,4 +28546,960,9612,5 +28547,960,410,4 +28548,960,5998,5 +28549,960,4,4 +28550,960,4554,4 +28551,960,9948,1 +28552,961,9313,4 +28553,961,1428,1 +28554,961,3071,5 +28555,961,372,2 +28556,961,4334,3 +28557,961,3993,5 +28558,961,1163,4 +28559,961,6722,1 +28560,961,5207,1 +28561,961,7185,5 +28562,961,1847,4 +28563,961,9581,1 +28564,961,6437,5 +28565,961,5542,2 +28566,961,5279,2 +28567,961,4672,5 +28568,961,3125,1 +28569,961,4961,5 +28570,961,8634,4 +28571,961,5926,5 +28572,961,5069,5 +28573,961,4329,4 +28574,961,3456,3 +28575,961,7898,5 +28576,961,2003,3 +28577,961,1363,1 +28578,961,7392,4 +28579,961,1245,3 +28580,961,6212,3 +28581,962,9185,3 +28582,962,2988,2 +28583,962,6969,2 +28584,962,4513,5 +28585,962,7221,3 +28586,962,4012,5 +28587,962,5386,2 +28588,962,6650,5 +28589,962,638,2 +28590,962,2306,2 +28591,962,5294,4 +28592,962,7769,4 +28593,962,3098,3 +28594,962,5002,2 +28595,962,6959,1 +28596,962,1488,5 +28597,962,7972,2 +28598,962,9450,3 +28599,962,506,2 +28600,962,1047,3 +28601,962,1602,5 +28602,962,1399,2 +28603,962,2681,5 +28604,962,8855,3 +28605,962,4225,5 +28606,962,1980,1 +28607,962,9944,5 +28608,962,9263,5 +28609,962,5547,1 +28610,962,2314,2 +28611,962,4154,2 +28612,962,2838,1 +28613,962,2255,2 +28614,962,3445,5 +28615,962,8740,1 +28616,962,1537,2 +28617,962,2559,3 +28618,962,1749,1 +28619,962,9836,2 +28620,962,8684,2 +28621,962,426,5 +28622,962,9652,1 +28623,963,4581,2 +28624,963,8411,1 +28625,963,1877,1 +28626,963,2446,5 +28627,963,5700,4 +28628,963,8717,3 +28629,963,4240,4 +28630,963,2641,2 +28631,963,5225,1 +28632,963,5822,1 +28633,963,5048,1 +28634,963,7835,4 +28635,963,9399,4 +28636,963,830,2 +28637,963,9760,3 +28638,963,3537,2 +28639,963,1032,2 +28640,963,7599,2 +28641,963,2561,3 +28642,963,4956,5 +28643,963,2885,1 +28644,963,8048,2 +28645,963,6428,1 +28646,963,2611,2 +28647,963,1128,3 +28648,963,1545,2 +28649,963,37,4 +28650,963,6180,5 +28651,963,2992,5 +28652,963,1986,4 +28653,963,8570,1 +28654,963,4231,5 +28655,963,5291,2 +28656,963,8755,1 +28657,963,7664,4 +28658,963,948,4 +28659,963,2435,3 +28660,963,1905,2 +28661,963,2688,3 +28662,963,4362,1 +28663,964,1847,4 +28664,964,6209,1 +28665,964,9702,4 +28666,964,7070,3 +28667,964,7537,4 +28668,964,5492,2 +28669,964,6564,5 +28670,964,7594,1 +28671,964,3390,1 +28672,964,5056,5 +28673,964,9446,5 +28674,964,4097,3 +28675,964,3074,1 +28676,964,1173,4 +28677,964,4140,5 +28678,964,851,2 +28679,964,467,5 +28680,964,8942,5 +28681,964,4773,4 +28682,964,1127,1 +28683,964,417,3 +28684,964,6484,2 +28685,964,7353,5 +28686,964,1873,3 +28687,964,5638,2 +28688,964,1002,5 +28689,964,6903,3 +28690,964,5700,3 +28691,964,7831,3 +28692,964,5218,3 +28693,964,5141,1 +28694,964,9590,3 +28695,964,1575,3 +28696,964,8509,5 +28697,964,8569,3 +28698,964,5529,4 +28699,964,7294,5 +28700,964,4297,1 +28701,964,6409,2 +28702,964,4871,3 +28703,964,9505,1 +28704,964,4700,2 +28705,964,7769,3 +28706,964,7501,4 +28707,964,1809,3 +28708,965,6805,1 +28709,965,2210,3 +28710,965,8837,4 +28711,965,6421,5 +28712,965,3631,3 +28713,965,5260,1 +28714,965,2665,2 +28715,965,4332,5 +28716,965,4708,4 +28717,965,3390,4 +28718,965,8276,1 +28719,965,8835,5 +28720,965,9670,1 +28721,965,5560,5 +28722,965,7921,1 +28723,965,7114,2 +28724,965,331,3 +28725,965,1246,3 +28726,965,8691,2 +28727,965,319,2 +28728,965,1656,4 +28729,965,6933,1 +28730,965,7746,5 +28731,965,6415,1 +28732,965,1874,5 +28733,965,9629,3 +28734,965,733,4 +28735,965,5739,4 +28736,965,3353,4 +28737,965,8649,2 +28738,965,3858,1 +28739,965,2060,1 +28740,965,7711,1 +28741,965,9834,2 +28742,965,1928,5 +28743,965,5483,5 +28744,965,2021,4 +28745,965,5394,3 +28746,965,5263,4 +28747,965,9411,1 +28748,965,8947,1 +28749,966,8399,2 +28750,966,7025,5 +28751,966,11,5 +28752,966,1312,2 +28753,966,3836,5 +28754,966,3225,4 +28755,966,5972,3 +28756,966,2652,3 +28757,966,6217,2 +28758,966,8021,2 +28759,966,5039,1 +28760,966,2935,4 +28761,966,4688,3 +28762,966,2526,1 +28763,966,7474,5 +28764,966,5444,3 +28765,966,2235,2 +28766,966,9902,3 +28767,966,7870,5 +28768,966,8243,5 +28769,966,9197,5 +28770,966,4463,2 +28771,966,3368,5 +28772,966,1759,1 +28773,966,4945,3 +28774,966,2015,4 +28775,966,7360,2 +28776,966,8135,3 +28777,966,9384,1 +28778,966,6560,3 +28779,966,683,2 +28780,967,2777,2 +28781,967,2061,2 +28782,967,2761,5 +28783,967,1460,5 +28784,967,5428,3 +28785,967,7377,4 +28786,967,7768,3 +28787,967,9141,1 +28788,967,5610,4 +28789,967,3895,1 +28790,967,840,3 +28791,967,3875,5 +28792,967,9885,2 +28793,967,8114,2 +28794,967,9167,1 +28795,967,6707,2 +28796,967,7621,2 +28797,967,9532,2 +28798,967,7479,5 +28799,967,1851,4 +28800,967,9808,5 +28801,967,3035,1 +28802,967,4070,4 +28803,967,237,5 +28804,967,1727,5 +28805,967,5351,3 +28806,967,8339,3 +28807,967,5042,2 +28808,967,6574,1 +28809,967,1193,1 +28810,967,9951,2 +28811,967,5994,3 +28812,967,7999,2 +28813,967,250,5 +28814,967,6443,5 +28815,967,8331,3 +28816,967,9457,4 +28817,967,7222,5 +28818,967,629,2 +28819,967,3667,5 +28820,967,6636,5 +28821,967,9735,3 +28822,967,2029,4 +28823,968,9610,3 +28824,968,126,4 +28825,968,1171,4 +28826,968,1327,4 +28827,968,3521,4 +28828,968,1779,1 +28829,968,5214,1 +28830,968,1758,1 +28831,968,2765,5 +28832,968,3573,1 +28833,968,5380,1 +28834,968,3511,4 +28835,969,9268,1 +28836,969,1068,4 +28837,969,5831,1 +28838,969,6204,3 +28839,969,6132,3 +28840,969,1981,1 +28841,969,7919,3 +28842,969,3022,4 +28843,969,1515,2 +28844,969,1305,1 +28845,969,1539,4 +28846,969,6547,1 +28847,969,9511,4 +28848,969,4053,1 +28849,969,9280,2 +28850,969,6074,4 +28851,969,4216,3 +28852,969,7803,3 +28853,969,3663,3 +28854,969,6386,3 +28855,969,29,4 +28856,970,9135,4 +28857,970,3801,5 +28858,970,947,1 +28859,970,1550,4 +28860,970,4627,2 +28861,970,6378,5 +28862,970,3105,3 +28863,970,6727,2 +28864,970,7429,1 +28865,970,3325,1 +28866,970,973,3 +28867,970,6797,4 +28868,970,2455,3 +28869,970,3248,2 +28870,970,5012,4 +28871,970,8162,1 +28872,970,7968,4 +28873,970,8277,5 +28874,970,8786,5 +28875,970,1234,4 +28876,970,5955,4 +28877,970,7781,3 +28878,970,2789,2 +28879,970,7830,2 +28880,970,2962,4 +28881,971,2308,2 +28882,971,4300,5 +28883,971,9565,3 +28884,971,555,2 +28885,971,7097,3 +28886,971,1780,1 +28887,971,7658,2 +28888,971,971,2 +28889,971,4831,2 +28890,971,3167,5 +28891,971,1283,3 +28892,971,9590,1 +28893,971,8632,4 +28894,971,9,5 +28895,971,4883,3 +28896,971,4590,3 +28897,971,1179,3 +28898,971,6975,5 +28899,971,8522,5 +28900,971,8837,4 +28901,971,1669,1 +28902,971,2373,5 +28903,971,8365,3 +28904,971,7771,4 +28905,972,4356,2 +28906,972,6915,4 +28907,972,3766,1 +28908,972,8381,5 +28909,972,9460,4 +28910,972,5635,5 +28911,972,8153,5 +28912,972,1642,3 +28913,972,5857,2 +28914,972,1839,1 +28915,972,6469,2 +28916,972,4717,3 +28917,972,4097,2 +28918,972,1415,5 +28919,972,6798,3 +28920,972,8597,2 +28921,972,3080,2 +28922,972,3777,5 +28923,972,2135,4 +28924,972,9720,5 +28925,972,2012,4 +28926,972,4199,3 +28927,972,7036,2 +28928,972,4648,2 +28929,972,3094,1 +28930,972,6989,2 +28931,972,6905,1 +28932,972,7636,2 +28933,972,7508,2 +28934,972,2304,3 +28935,972,5321,3 +28936,972,7446,2 +28937,972,1332,5 +28938,972,8275,2 +28939,972,349,5 +28940,972,878,1 +28941,972,1658,1 +28942,973,5633,3 +28943,973,2065,3 +28944,973,1570,1 +28945,973,5409,3 +28946,973,6150,3 +28947,973,3031,5 +28948,973,8932,2 +28949,973,3137,1 +28950,973,8558,4 +28951,973,2973,2 +28952,973,5383,1 +28953,973,2092,2 +28954,973,8007,3 +28955,973,2083,5 +28956,973,3177,4 +28957,973,3481,2 +28958,973,2340,1 +28959,973,3753,1 +28960,973,4993,4 +28961,973,1028,2 +28962,973,7485,1 +28963,973,6307,4 +28964,973,7134,5 +28965,973,7378,4 +28966,973,5398,2 +28967,973,3566,2 +28968,973,8887,2 +28969,973,9954,3 +28970,973,3126,1 +28971,973,9178,1 +28972,973,213,5 +28973,973,7817,1 +28974,973,4630,3 +28975,974,9145,2 +28976,974,5383,5 +28977,974,5369,3 +28978,974,6051,2 +28979,974,4585,5 +28980,974,1863,5 +28981,974,6007,5 +28982,974,5797,5 +28983,974,6559,3 +28984,974,9758,3 +28985,974,5241,4 +28986,974,5448,1 +28987,974,6681,2 +28988,974,6252,3 +28989,974,7760,1 +28990,974,4522,1 +28991,974,7009,5 +28992,974,4072,5 +28993,974,2497,4 +28994,974,2398,2 +28995,974,3043,3 +28996,974,4174,4 +28997,974,7630,5 +28998,974,4605,3 +28999,974,4026,2 +29000,974,5738,5 +29001,974,5089,4 +29002,974,2836,2 +29003,974,517,5 +29004,974,5262,5 +29005,974,78,4 +29006,974,794,4 +29007,974,2151,2 +29008,974,2253,3 +29009,974,4889,2 +29010,974,1538,5 +29011,974,4786,1 +29012,974,3030,1 +29013,974,8533,5 +29014,974,781,4 +29015,974,1593,5 +29016,974,1298,4 +29017,974,5018,1 +29018,974,1474,1 +29019,974,7859,4 +29020,974,493,5 +29021,974,4327,1 +29022,974,9293,4 +29023,974,5764,3 +29024,974,4437,3 +29025,975,9855,5 +29026,975,6892,3 +29027,975,8153,1 +29028,975,7008,3 +29029,975,5610,5 +29030,975,1662,1 +29031,975,5050,1 +29032,975,4190,1 +29033,975,7406,4 +29034,975,8376,4 +29035,976,7890,2 +29036,976,1821,5 +29037,976,887,4 +29038,976,2481,5 +29039,976,1241,5 +29040,976,823,5 +29041,976,136,3 +29042,976,9809,1 +29043,976,7266,5 +29044,976,698,2 +29045,977,51,5 +29046,977,3130,2 +29047,977,3550,1 +29048,977,6269,5 +29049,977,7532,1 +29050,977,4553,3 +29051,977,8664,1 +29052,977,3303,4 +29053,977,1203,2 +29054,977,26,4 +29055,977,7046,5 +29056,977,7104,4 +29057,977,591,5 +29058,977,2067,5 +29059,977,716,1 +29060,977,5945,3 +29061,977,468,1 +29062,977,6861,5 +29063,977,9681,1 +29064,977,1278,3 +29065,977,9430,4 +29066,977,3234,3 +29067,977,6353,3 +29068,977,3381,1 +29069,977,9398,2 +29070,977,8030,3 +29071,977,8676,4 +29072,977,8266,3 +29073,977,1959,4 +29074,977,8976,5 +29075,978,6011,4 +29076,978,8621,3 +29077,978,3438,2 +29078,978,2379,4 +29079,978,5234,1 +29080,978,8668,5 +29081,978,2372,4 +29082,978,4498,2 +29083,978,7134,5 +29084,978,1846,3 +29085,978,4325,2 +29086,979,4008,3 +29087,979,7953,2 +29088,979,2412,4 +29089,979,1421,1 +29090,979,3921,2 +29091,979,2867,3 +29092,979,4847,5 +29093,979,7381,3 +29094,979,537,5 +29095,979,8054,5 +29096,979,565,2 +29097,979,1156,4 +29098,979,1246,1 +29099,979,937,1 +29100,979,7311,3 +29101,979,3271,4 +29102,979,4895,3 +29103,979,8874,3 +29104,979,7639,2 +29105,979,8417,3 +29106,979,8407,1 +29107,979,1135,4 +29108,979,7736,4 +29109,979,8461,4 +29110,979,6919,2 +29111,979,2608,2 +29112,979,5840,5 +29113,979,9787,1 +29114,979,3646,3 +29115,979,3383,4 +29116,979,8718,5 +29117,979,4731,2 +29118,979,5083,1 +29119,979,7009,3 +29120,979,3048,1 +29121,979,8377,3 +29122,979,1357,3 +29123,979,3767,5 +29124,979,3471,3 +29125,979,8692,3 +29126,979,7452,2 +29127,979,6681,2 +29128,979,3233,5 +29129,979,8729,3 +29130,979,632,4 +29131,979,5313,4 +29132,980,3418,5 +29133,980,9611,2 +29134,980,1615,3 +29135,980,7745,5 +29136,980,9308,2 +29137,980,2535,3 +29138,980,862,2 +29139,980,3347,4 +29140,980,9198,4 +29141,980,694,1 +29142,981,9581,2 +29143,981,6736,1 +29144,981,5841,3 +29145,981,7181,3 +29146,981,3340,1 +29147,981,524,1 +29148,981,5787,4 +29149,981,2291,2 +29150,981,4790,3 +29151,981,3373,3 +29152,981,367,4 +29153,981,3000,2 +29154,981,1776,2 +29155,981,3741,4 +29156,981,8515,1 +29157,981,5702,3 +29158,981,7236,4 +29159,981,2169,3 +29160,981,4441,1 +29161,981,5360,2 +29162,981,1223,2 +29163,981,1968,4 +29164,981,4909,1 +29165,981,4144,3 +29166,981,8378,2 +29167,981,1760,1 +29168,981,882,4 +29169,981,8969,2 +29170,981,9056,5 +29171,981,7923,2 +29172,981,3942,1 +29173,981,6784,2 +29174,981,4456,3 +29175,981,6863,2 +29176,981,4580,5 +29177,981,5577,5 +29178,981,8996,3 +29179,981,9476,3 +29180,981,7103,3 +29181,981,2534,5 +29182,982,5895,1 +29183,982,4163,1 +29184,982,1967,4 +29185,982,1630,5 +29186,982,1284,4 +29187,982,70,1 +29188,982,1302,2 +29189,982,6713,3 +29190,982,314,4 +29191,982,2474,5 +29192,982,2169,2 +29193,982,4928,1 +29194,982,7531,2 +29195,982,863,4 +29196,982,6242,5 +29197,982,3793,1 +29198,982,4906,5 +29199,982,5693,1 +29200,982,8400,4 +29201,982,9231,2 +29202,983,7237,3 +29203,983,5203,2 +29204,983,3558,2 +29205,983,8102,4 +29206,983,4943,3 +29207,983,1727,3 +29208,983,8713,2 +29209,983,2789,3 +29210,983,7358,2 +29211,983,465,2 +29212,983,7405,5 +29213,983,899,1 +29214,983,5799,1 +29215,983,9794,3 +29216,983,5484,4 +29217,983,4471,2 +29218,983,6405,5 +29219,983,5181,5 +29220,983,1441,1 +29221,983,2700,4 +29222,983,2163,3 +29223,983,8384,3 +29224,983,8764,2 +29225,983,5798,1 +29226,983,1550,5 +29227,983,9238,3 +29228,983,7035,1 +29229,983,9245,3 +29230,983,9094,5 +29231,983,9005,3 +29232,983,4678,5 +29233,984,3997,3 +29234,984,3476,1 +29235,984,3961,2 +29236,984,2448,5 +29237,984,4440,3 +29238,984,63,4 +29239,984,9100,2 +29240,984,6807,4 +29241,984,8283,4 +29242,984,4150,3 +29243,984,6884,1 +29244,984,5660,4 +29245,984,9457,5 +29246,984,1835,3 +29247,984,8203,4 +29248,984,8973,4 +29249,984,8744,1 +29250,984,6893,4 +29251,984,7308,5 +29252,984,9537,3 +29253,984,5938,5 +29254,984,9324,2 +29255,984,4350,5 +29256,984,5793,5 +29257,984,7697,4 +29258,984,8560,2 +29259,984,9494,2 +29260,984,9671,4 +29261,984,6231,3 +29262,984,5883,5 +29263,984,606,5 +29264,984,2493,5 +29265,984,1177,5 +29266,984,3715,5 +29267,984,3801,5 +29268,984,3184,4 +29269,984,3411,1 +29270,985,8093,3 +29271,985,7173,4 +29272,985,9902,2 +29273,985,6524,4 +29274,985,2907,1 +29275,985,9916,2 +29276,985,731,1 +29277,985,5336,1 +29278,985,9937,2 +29279,985,5741,1 +29280,985,7160,4 +29281,985,8152,3 +29282,985,4189,5 +29283,985,4859,4 +29284,985,5713,4 +29285,985,1806,5 +29286,985,774,2 +29287,985,5111,4 +29288,985,9847,1 +29289,985,9718,4 +29290,985,8811,4 +29291,985,4489,5 +29292,985,9234,1 +29293,985,526,5 +29294,985,9522,5 +29295,985,8151,5 +29296,985,3314,3 +29297,985,1945,3 +29298,985,1851,2 +29299,985,9091,1 +29300,985,8755,2 +29301,985,1418,5 +29302,985,5036,1 +29303,985,8170,4 +29304,985,6428,2 +29305,985,6455,4 +29306,985,3015,1 +29307,985,3426,2 +29308,985,8253,1 +29309,985,8825,4 +29310,985,3867,4 +29311,986,7889,2 +29312,986,1887,2 +29313,986,9724,3 +29314,986,3785,2 +29315,986,7677,1 +29316,986,9925,4 +29317,986,893,2 +29318,986,3870,2 +29319,986,6056,2 +29320,986,7197,2 +29321,986,2681,4 +29322,986,6393,4 +29323,986,9406,3 +29324,986,9484,5 +29325,986,8490,2 +29326,986,5395,1 +29327,986,6538,5 +29328,986,2608,3 +29329,986,3800,5 +29330,986,1289,2 +29331,986,1901,5 +29332,986,559,2 +29333,986,468,4 +29334,986,907,5 +29335,986,3786,3 +29336,986,5267,4 +29337,986,8695,3 +29338,986,3744,1 +29339,986,9273,3 +29340,987,9787,5 +29341,987,1962,1 +29342,987,315,2 +29343,987,4320,1 +29344,987,990,2 +29345,987,1339,4 +29346,987,3333,1 +29347,987,341,2 +29348,987,1516,2 +29349,987,6289,2 +29350,987,6578,5 +29351,987,1934,2 +29352,987,8212,1 +29353,987,124,5 +29354,987,6834,5 +29355,987,1535,5 +29356,987,6058,1 +29357,987,3750,4 +29358,987,6598,1 +29359,987,7942,2 +29360,987,8577,3 +29361,987,6021,2 +29362,987,7956,3 +29363,987,6377,5 +29364,987,4175,1 +29365,987,3653,5 +29366,987,704,5 +29367,987,5099,1 +29368,987,1784,4 +29369,987,2468,4 +29370,987,8678,5 +29371,987,9656,2 +29372,987,8779,3 +29373,987,4185,5 +29374,987,7692,4 +29375,987,5468,2 +29376,987,6135,3 +29377,987,3311,4 +29378,987,7218,2 +29379,987,1145,1 +29380,987,7255,1 +29381,987,9718,1 +29382,987,7499,2 +29383,987,7491,1 +29384,987,5501,1 +29385,987,7793,2 +29386,988,865,2 +29387,988,5941,4 +29388,988,2014,4 +29389,988,3007,5 +29390,988,4426,5 +29391,988,4907,5 +29392,988,1277,5 +29393,988,2258,3 +29394,988,8718,4 +29395,988,314,3 +29396,988,8152,4 +29397,988,7318,1 +29398,988,4906,2 +29399,988,5250,5 +29400,988,3132,4 +29401,988,6591,3 +29402,989,5168,2 +29403,989,569,2 +29404,989,5554,1 +29405,989,6372,5 +29406,989,7971,1 +29407,989,337,3 +29408,989,6041,2 +29409,989,829,1 +29410,989,6998,4 +29411,989,440,2 +29412,989,8824,1 +29413,989,8980,5 +29414,989,5827,2 +29415,989,6605,3 +29416,989,94,1 +29417,989,5308,3 +29418,989,3262,5 +29419,989,6960,5 +29420,989,2955,5 +29421,989,9356,2 +29422,989,6321,1 +29423,989,1999,2 +29424,989,2542,2 +29425,989,5657,2 +29426,989,5067,1 +29427,990,6517,4 +29428,990,1145,2 +29429,990,3671,4 +29430,990,7998,5 +29431,990,9209,2 +29432,990,1063,2 +29433,990,1900,3 +29434,990,3501,5 +29435,990,8048,1 +29436,990,2202,1 +29437,990,609,3 +29438,990,3646,4 +29439,990,5493,5 +29440,990,4952,1 +29441,990,547,4 +29442,990,9907,1 +29443,990,7405,2 +29444,990,7773,5 +29445,990,1989,5 +29446,990,7399,3 +29447,990,6298,1 +29448,990,8756,2 +29449,990,1454,5 +29450,990,1390,5 +29451,990,4181,5 +29452,990,9820,1 +29453,990,5889,1 +29454,990,2546,3 +29455,990,2059,3 +29456,990,930,3 +29457,990,5579,5 +29458,990,1267,1 +29459,990,2632,4 +29460,990,6881,3 +29461,990,5431,5 +29462,990,5552,2 +29463,990,3106,4 +29464,990,6664,3 +29465,990,5023,2 +29466,990,7159,4 +29467,990,5515,1 +29468,990,8717,4 +29469,990,9028,2 +29470,990,1908,1 +29471,991,9416,1 +29472,991,5922,3 +29473,991,1790,5 +29474,991,8593,4 +29475,991,3833,5 +29476,991,1158,3 +29477,991,5592,1 +29478,991,1602,5 +29479,991,5103,2 +29480,991,8305,4 +29481,991,8454,4 +29482,991,8820,5 +29483,991,6700,4 +29484,991,9770,2 +29485,991,2660,3 +29486,991,7898,3 +29487,991,1800,4 +29488,991,2333,3 +29489,991,851,1 +29490,991,7080,2 +29491,992,734,5 +29492,992,7920,4 +29493,992,2153,3 +29494,992,1569,3 +29495,992,3478,2 +29496,992,6227,1 +29497,992,221,1 +29498,992,9390,2 +29499,992,8890,2 +29500,992,5747,1 +29501,992,6991,5 +29502,992,9397,1 +29503,992,7204,5 +29504,992,5340,2 +29505,992,7297,1 +29506,992,3398,5 +29507,992,9075,2 +29508,992,3648,2 +29509,992,1637,1 +29510,992,3782,3 +29511,992,1904,4 +29512,993,5704,2 +29513,993,6949,4 +29514,993,1409,4 +29515,993,7139,4 +29516,993,4825,1 +29517,993,4760,3 +29518,993,1156,4 +29519,993,7067,2 +29520,993,6388,3 +29521,993,7403,1 +29522,993,7902,2 +29523,993,2995,2 +29524,993,2112,1 +29525,993,4096,2 +29526,993,2701,5 +29527,993,432,3 +29528,993,6149,4 +29529,993,8712,4 +29530,993,2206,5 +29531,993,4238,2 +29532,993,8003,4 +29533,993,9284,4 +29534,993,6860,2 +29535,993,4322,1 +29536,993,7340,5 +29537,993,6658,1 +29538,993,3861,2 +29539,993,6121,5 +29540,993,3933,2 +29541,993,2326,1 +29542,993,4544,1 +29543,993,3607,5 +29544,993,7916,4 +29545,993,2868,5 +29546,993,5206,5 +29547,993,1553,4 +29548,993,5574,4 +29549,994,7916,2 +29550,994,1531,4 +29551,994,9957,3 +29552,994,6969,5 +29553,994,3115,5 +29554,994,1522,5 +29555,994,6942,1 +29556,994,8719,3 +29557,994,4972,5 +29558,994,4274,5 +29559,994,8093,5 +29560,994,604,4 +29561,994,14,4 +29562,994,5766,4 +29563,994,8081,4 +29564,994,7145,3 +29565,994,6104,1 +29566,994,668,4 +29567,994,3686,2 +29568,994,8355,4 +29569,995,885,3 +29570,995,2562,3 +29571,995,8099,3 +29572,995,7221,4 +29573,995,8874,2 +29574,995,184,1 +29575,995,3628,4 +29576,995,3701,3 +29577,995,4631,3 +29578,995,7711,3 +29579,995,3874,2 +29580,995,596,3 +29581,995,1199,5 +29582,996,4706,5 +29583,996,152,3 +29584,996,1342,1 +29585,996,2202,5 +29586,996,1298,1 +29587,996,3517,2 +29588,996,8394,2 +29589,996,9102,3 +29590,996,5250,5 +29591,996,5234,3 +29592,996,8038,2 +29593,997,2076,5 +29594,997,2716,5 +29595,997,4083,4 +29596,997,2356,5 +29597,997,680,1 +29598,997,1870,1 +29599,997,489,5 +29600,997,8993,4 +29601,997,3042,4 +29602,997,6339,3 +29603,997,3108,4 +29604,997,1166,3 +29605,997,3917,2 +29606,997,2571,5 +29607,997,8886,4 +29608,997,4645,4 +29609,997,3327,1 +29610,997,2345,3 +29611,997,8861,3 +29612,997,6835,3 +29613,997,8251,3 +29614,997,1178,3 +29615,997,1676,5 +29616,997,8497,4 +29617,997,1364,1 +29618,997,3919,3 +29619,997,2162,4 +29620,997,292,1 +29621,997,3571,3 +29622,998,3052,1 +29623,998,8443,2 +29624,998,497,1 +29625,998,1016,4 +29626,998,7555,1 +29627,998,1111,5 +29628,998,4677,1 +29629,998,813,2 +29630,998,8763,4 +29631,998,8812,5 +29632,998,8890,4 +29633,998,7490,4 +29634,998,197,2 +29635,999,9355,3 +29636,999,5803,3 +29637,999,2458,1 +29638,999,7456,1 +29639,999,9142,4 +29640,999,7946,3 +29641,999,8024,2 +29642,999,2824,2 +29643,999,3485,3 +29644,999,6584,3 +29645,999,7388,4 +29646,999,9805,2 +29647,999,9398,2 +29648,999,2257,1 +29649,999,5991,4 +29650,999,1860,2 +29651,999,7818,5 +29652,999,7608,4 +29653,999,9360,2 +29654,999,5046,2 +29655,999,3194,2 +29656,999,3883,4 +29657,999,3602,1 +29658,999,3974,3 +29659,999,8868,4 +29660,999,4822,1 +29661,999,6645,1 +29662,999,4774,5 +29663,999,1016,5 +29664,999,6122,2 +29665,999,425,1 +29666,999,8349,4 +29667,999,6385,5 +29668,999,347,4 +29669,999,119,4 +29670,999,8168,3 +29671,999,2564,4 +29672,999,9743,4 +29673,999,2915,5 +29674,999,1962,5 +29675,999,6675,4 +29676,999,744,1 +29677,999,4651,3 +29678,999,5170,3 +29679,999,7427,3 +29680,999,5473,2 +29681,999,6873,3 diff --git a/example_datasets/Songs/top_10000_1950-now (1).csv b/example_datasets/Songs/top_10000_1950-now (1).csv new file mode 100644 index 0000000..715df63 --- /dev/null +++ b/example_datasets/Songs/top_10000_1950-now (1).csv @@ -0,0 +1,10001 @@ +,Track URI,Track Name,Artist URI(s),Artist Name(s),Album URI,Album Name,Album Artist URI(s),Album Artist Name(s),Album Release Date,Album Image URL,Disc Number,Track Number,Track Duration (ms),Track Preview URL,Explicit,Popularity,ISRC,Added By,Added At,Artist Genres,Danceability,Energy,Key,Loudness,Mode,Speechiness,Acousticness,Instrumentalness,Liveness,Valence,Tempo,Time Signature,Album Genres,Label,Copyrights,song_id +0,spotify:track:0vNPJrUrBnMFdCs8b2MTNG,Fader,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,spotify:album:0V59MMtgoruvEqMv18KAOH,Conditions (Tour Edition),spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,2009,https://i.scdn.co/image/ab67616d0000b273f86ae86dfa3919c5acba68f0,1,6,192373,https://p.scdn.co/mp3-preview/14264bd1501d27236aaa250633253911b2f3de50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBZUZ0900014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern rock,shimmer pop",0.532,0.76,11.0,-7.123,0.0,0.0353,0.000101,0.69,0.0752,0.158,134.974,4.0,,Liberation Records,"C 2010 Liberation Music, P 2010 Liberation Music",0 +1,spotify:track:0NpvdCO506uO58D4AbKzki,Sherry,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,spotify:album:0NUEQILaBzavnzcMEs4buZ,The Very Best of Frankie Valli & The 4 Seasons,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,2003-01-14,https://i.scdn.co/image/ab67616d0000b273b96c21e15c091eb98a6c88a4,1,1,152160,https://p.scdn.co/mp3-preview/e3f765262ebc349e663182d0e19bb24766314f39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USRH10175197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,lounge,northern soul,rock-and-roll,rockabilly",0.703,0.478,7.0,-8.062,1.0,0.0441,0.626,0.0,0.113,0.734,117.562,4.0,,Rhino,"C © 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products, P ℗ 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products",1 +2,spotify:track:1MtUq6Wp1eQ8PC6BbPCj8P,I Took A Pill In Ibiza - Seeb Remix,"spotify:artist:2KsP6tYLJlTBvSUxnwlVWa, spotify:artist:5iNrZmtVMtYev5M9yoWpEq","Mike Posner, Seeb",spotify:album:1Tz3Ai1guEFf4hV3d9i17K,"At Night, Alone.",spotify:artist:2KsP6tYLJlTBvSUxnwlVWa,Mike Posner,2016-05-06,https://i.scdn.co/image/ab67616d0000b273a19be7aca4a1fcd6e8a42c62,1,13,197933,https://p.scdn.co/mp3-preview/7bae6aac6d699135151854e9e3e5ae78f1a244f5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,63,USUM71509342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop dance,pop rap,pop dance",0.664,0.714,7.0,-6.645,0.0,0.111,0.0353,8.42e-06,0.0843,0.71,101.969,4.0,,"Monster Mountain, LLC / Island","C © 2016 Island Records, a division of UMG Recordings, Inc., P ℗ 2016 Island Records, a division of UMG Recordings, Inc.",2 +3,spotify:track:59lq75uFIqzUZcgZ4CbqFG,Let Go for Tonight,spotify:artist:7qRll6DYV06u2VuRPAVqug,Foxes,spotify:album:5AQ7uKRSpAv7SNUl4j24ru,Glorious (Deluxe),spotify:artist:7qRll6DYV06u2VuRPAVqug,Foxes,2014-05-12,https://i.scdn.co/image/ab67616d0000b273ae5c7d20a58c6071b4571eff,1,5,238413,https://p.scdn.co/mp3-preview/84a003d72f9f146831bbfa39587ebc50ee76e0f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBARL1301249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,metropopolis,uk pop",0.543,0.808,9.0,-6.615,0.0,0.0632,0.0429,1.64e-06,0.326,0.299,140.064,4.0,,Sign Of The Times Records,P (P) 2014 Sign Of The Times Limited under exclusive licence to Sony Music Entertainment UK Limited,3 +4,spotify:track:7KdcZQ3GJeGdserhK61kfv,The Way I Want To Touch You,spotify:artist:7BEfMxbaqx6dOpbtlEqScm,Captain & Tennille,spotify:album:3GUxesVyOehInaxJyCTh6d,Love Will Keep Us Together,spotify:artist:7BEfMxbaqx6dOpbtlEqScm,Captain & Tennille,1975-01-01,https://i.scdn.co/image/ab67616d0000b273e21a289d04d5f3d623807bee,1,3,163586,https://p.scdn.co/mp3-preview/9e7a4a7b7dc56dc3f08e1c9d84e78b52ddefb5cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USAM10110025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock,yacht rock",0.664,0.585,0.0,-7.062,0.0,0.0248,0.624,0.000112,0.343,0.597,111.29,4.0,,A&M,"C © 1975 A&M Records, P This Compilation ℗ 1975 A&M Records",4 +5,spotify:track:000xQL6tZNLJzIrtIgxqSl,Still Got Time (feat. PARTYNEXTDOOR),"spotify:artist:5ZsFI1h6hIdQRw2ti0hz81, spotify:artist:2HPaUgqeutzr3jx5a9WyDV","ZAYN, PARTYNEXTDOOR",spotify:album:2kGUeTGnkLOYlinKRJe47G,Still Got Time (feat. PARTYNEXTDOOR),spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,2017-03-23,https://i.scdn.co/image/ab67616d0000b2733bfd914f72da2ed8822a634f,1,1,188490,https://p.scdn.co/mp3-preview/765e08c9b8930c6d0338c2d3d75c5b1c3efff338?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC11700675,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop,r&b,rap,urban contemporary",0.748,0.627,7.0,-6.029,1.0,0.0639,0.131,0.0,0.0852,0.524,120.963,4.0,,RCA Records Label,"P (P) 2017 RCA Records, a division of Sony Music Entertainment",5 +6,spotify:track:46xkXPGjR9Ig9BcaTUNus3,Your Song,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:6Vn8F3hERVHYYz5RfKmsAN,Phoenix (Deluxe Edition),spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2018-11-23,https://i.scdn.co/image/ab67616d0000b273f1b136eb0388414a8225a348,1,5,180160,https://p.scdn.co/mp3-preview/d57008f417a1466ac0ab02020560d4d61d904e80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAHT1700323,spotify:user:bradnumber1,2021-11-17T22:21:05Z,"dance pop,pop,uk pop",0.853,0.571,1.0,-5.845,1.0,0.0543,0.133,0.0,0.0564,0.958,117.991,4.0,,Atlantic Records UK,"C © 2018 Atlantic Records UK except Track 9 (P) 2018 Asylum/Atlantic Records UK. Tracks 1 & 5 (P) 2017 Atlantic Records UK. Track 4 (P) 2017 Avicii Music AB under exclusive licence to Universal Music AB. Track 8 (P) 2018 Universal Studios, Atlantic Records UK, Capitol Records, a division of Universal Music Operations Limited. Asylum/Atlantic Records UK are divisions of Warner Music UK Limited., P ℗ 2018 Atlantic Records UK except Track 9 (P) 2018 Asylum/Atlantic Records UK. Tracks 1 & 5 (P) 2017 Atlantic Records UK. Track 4 (P) 2017 Avicii Music AB under exclusive licence to Universal Music AB. Track 8 (P) 2018 Universal Studios, Atlantic Records UK, Capitol Records, a division of Universal Music Operations Limited. Asylum/Atlantic Records UK are divisions of Warner Music UK Limited.",6 +7,spotify:track:7LVHVU3tWfcxj5aiPFEW4Q,Fix You,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:4E7bV0pzG0LciBSWTszra6,X&Y,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2005-06-07,https://i.scdn.co/image/ab67616d0000b2734e0362c225863f6ae2432651,1,4,295533,https://p.scdn.co/mp3-preview/4ee64ea0fcfc1e6142d3b1e76464e95834fa87dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,GBAYE0500605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.209,0.417,3.0,-8.74,1.0,0.0338,0.164,0.00196,0.113,0.124,138.178,4.0,,Parlophone Records Limited,"C © 2005 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2005 Parlophone Records Ltd, a Warner Music Group Company",7 +8,spotify:track:1s2khOWzC99udpUaPICLJI,There You'll Be - 2007 Remaster,spotify:artist:25NQNriVT2YbSW80ILRWJa,Faith Hill,spotify:album:7fvl3dOnDrv9rq5IBmLbAa,The Hits,spotify:artist:25NQNriVT2YbSW80ILRWJa,Faith Hill,2007,https://i.scdn.co/image/ab67616d0000b2733ee43d5dbf7da3e65be844b3,1,7,220840,https://p.scdn.co/mp3-preview/a3b43c90cfdf09ed61c5b1622f4a4e6a1f6a00a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USWB10704273,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country road",0.325,0.532,8.0,-7.208,1.0,0.0308,0.496,0.0,0.134,0.162,129.021,4.0,,Warner Records/Nashville,"C © 2007 Warner Records Inc., P ℗ 1994, 1995, 1998, 1999, 2001, 2002, 2005, 2007 Warner Records Inc.; 2007 Curb Records, Inc.",8 +9,spotify:track:2sXp9Qmvc7mRaDBjBgcGGi,Every Breath You Take - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:7yDxJXFPl88Dt9kBo0dDD6,Synchronicity,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1983-06-01,https://i.scdn.co/image/ab67616d0000b273e7b53d0f9fb616521cdbfc03,1,7,253886,https://p.scdn.co/mp3-preview/92d7997134bb18b99eb5fdc65926e4ef613f9781?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAAM0201110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.813,0.46,1.0,-9.78,1.0,0.0346,0.56,0.0105,0.0724,0.729,117.387,4.0,,A&M,"C © 2003 A&M Records, P ℗ 2003 A&M Records",9 +10,spotify:track:6d7PQZtTbHbcYqaygOW7vs,You're the Inspiration - 2009 Remaster,spotify:artist:3iDD7bnsjL9J4fO298r0L0,Chicago,spotify:album:3kkAB63Am6POYuMTisinaa,Chicago 17 (Expanded Edition),spotify:artist:3iDD7bnsjL9J4fO298r0L0,Chicago,1984-05-14,https://i.scdn.co/image/ab67616d0000b27307ba5bdcf5ca1a9628dadc93,1,7,229426,https://p.scdn.co/mp3-preview/da2133abe8aa91b9fdcb911bfb6a2bda3fe293b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USWB10905052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,soft rock,yacht rock",0.578,0.606,11.0,-6.402,1.0,0.0282,0.377,0.0,0.317,0.357,73.912,4.0,,Rhino/Warner Records,"C © 1984 Warner Records Inc., P ℗ 2010 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",10 +11,spotify:track:0Lg4ckCFjFUeyHOeSozcWS,"The Key, The Secret",spotify:artist:1QYMj6ouUhi6yis1HE8M68,Urban Cookie Collective,spotify:album:6IjQa4ZCnkSa9cnUvA3yJG,The Very Best Of,spotify:artist:1QYMj6ouUhi6yis1HE8M68,Urban Cookie Collective,2004,https://i.scdn.co/image/ab67616d0000b273213d4607bc4ec16c452b153d,1,1,222666,https://p.scdn.co/mp3-preview/3da82e509c756338a79089a61bcb8439718aff29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBBLG0400734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,hip house",0.702,0.796,10.0,-6.99,1.0,0.0315,0.0759,0.00253,0.109,0.607,129.878,4.0,,Demon,"C (C) 2004 Amazon Records Limited, P (P) 2004 Amazon Records Limited",11 +12,spotify:track:5Q41NLTmGbVPozwHKK7bk2,Paradise City,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:5JKFiC2WVi9HtvJEm8CUB8,Appetite For Destruction,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1987-07-21,https://i.scdn.co/image/ab67616d0000b273c8e5391a619e9e8ea2162073,1,6,406306,https://p.scdn.co/mp3-preview/6c99e08ad1885d08023354ac96b546ffe3dee44b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USGF18714806,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.274,0.949,11.0,-8.642,1.0,0.0896,0.0214,0.00778,0.218,0.497,100.346,4.0,,Interscope,"C © 1987 Geffen Records, P ℗ 1987 Geffen Records",12 +13,spotify:track:5sgVguJJlA7thC8ybAFOo5,Tonight I'm Yours (Don't Hurt Me),spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:6gDOvRUvES84YOBkMEQTbD,Tonight I'm Yours - Expanded Edition,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1981,https://i.scdn.co/image/ab67616d0000b273abc644f6ad5483eb22acd51f,1,1,251866,https://p.scdn.co/mp3-preview/162ced11bcc44aba0660912ece34e6abf716f304?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USWB10807933,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.68,0.826,9.0,-4.958,1.0,0.0671,0.0683,0.444,0.0861,0.963,158.314,4.0,,Rhino/Warner Records,"C © 1981 WEA Records B.V., P ℗ 2009 WEA Records B.V. Marketed by Warner Music Group Company.",13 +14,spotify:track:43wMcgNk8o3Qx7jxg3Lkfo,You Were On My Mind,spotify:artist:1XICntAIOLc3OPozkykv39,We Five,spotify:album:7C3qjtVKjkSSaxdW07RdhP,The Very Best Of,spotify:artist:1XICntAIOLc3OPozkykv39,We Five,2011-03-01,https://i.scdn.co/image/ab67616d0000b273abebb380cdd43ea2eac542ba,1,1,156640,https://p.scdn.co/mp3-preview/217b818c56d595818b5c4c0aa85bdd2127d1178f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USA371229623,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat",0.533,0.533,1.0,-7.92,0.0,0.064,0.293,0.0,0.0996,0.638,140.494,4.0,,Master Classics Records,C 2011 Master Classics Records,14 +15,spotify:track:2Foc5Q5nqNiosCNqttzHof,Get Lucky (Radio Edit) [feat. Pharrell Williams and Nile Rodgers],"spotify:artist:4tZwfgrHOc3mvqYlEYSvVi, spotify:artist:2RdwBSPQiwcmiDo9kixcl8, spotify:artist:3yDIp0kaq9EFKe07X1X2rz","Daft Punk, Pharrell Williams, Nile Rodgers",spotify:album:2ePFIvZKMe8zefATp9ofFA,Get Lucky (Radio Edit) [feat. Pharrell Williams and Nile Rodgers],"spotify:artist:4tZwfgrHOc3mvqYlEYSvVi, spotify:artist:2RdwBSPQiwcmiDo9kixcl8, spotify:artist:3yDIp0kaq9EFKe07X1X2rz","Daft Punk, Pharrell Williams, Nile Rodgers",2013-04-19,https://i.scdn.co/image/ab67616d0000b2731d5cf960a92bb8b03fc2be7f,1,1,248413,https://p.scdn.co/mp3-preview/9b7eaf7fb5cab29251df52e9a4f46fad14e29aa1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USQX91300809,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electro,filter house,rock,dance pop,pop,disco",0.794,0.811,6.0,-8.966,0.0,0.038,0.0426,1.07e-06,0.101,0.862,116.047,4.0,,Columbia,"P (P) 2013 Daft Life Limited under exclusive license to Columbia Records, a Division of Sony Music Entertainment",15 +16,spotify:track:6LZOgBvntXL1egqIHHPnhn,Party,spotify:artist:0VyhYyWWF5yYomHQR4hCMl,Christine Anu,spotify:album:5aAUULuBofq0pQXbvQt6g4,Stylin' Up,spotify:artist:0VyhYyWWF5yYomHQR4hCMl,Christine Anu,1995,https://i.scdn.co/image/ab67616d0000b27383f1760b296c770872f11776,1,7,194533,https://p.scdn.co/mp3-preview/36827067c6d3fa27e82be16932e15c3439fc4fe6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUMU09500006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian rock",0.734,0.923,11.0,-8.189,1.0,0.0561,0.0495,1.29e-05,0.0612,0.847,109.661,4.0,,WM Australia,"C © 1995 Mushroom Records, P ℗ 1995 Mushroom Records",16 +17,spotify:track:5ma71INSTL8sY1HzjVBj2g,Riptide,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:1TIkCvpgUWCpjKOuMVaGZD,Dream Your Life Away,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2014-09-05,https://i.scdn.co/image/ab67616d0000b273bcf5a4f38fba7a4bceef0591,1,4,201733,https://p.scdn.co/mp3-preview/d2a7f46a047a571376722c395eeb8e44dd0611b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01385760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.502,0.719,1.0,-6.649,1.0,0.0349,0.46,0.0,0.114,0.438,101.609,4.0,,Liberation Records,"C 2014 Liberation Music, P 2014 Liberation Music",17 +18,spotify:track:2SBQBV1atDy4tbEfGicT7u,Heartaches By The Number,spotify:artist:1YAtBHWaWzZnkaoSFHGTBV,Guy Mitchell,spotify:album:3sNFBXnLNjwcsKEZGnaz1G,Heartaches By The Number,spotify:artist:1YAtBHWaWzZnkaoSFHGTBV,Guy Mitchell,2009-10-19,https://i.scdn.co/image/ab67616d0000b273ee642915bf7d424d4ad73548,1,1,153901,https://p.scdn.co/mp3-preview/2ff3470357bdc73a6308129edd834f90fa38e95f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,GBQRF0832786,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.518,0.556,5.0,-13.264,1.0,0.0479,0.526,3e-06,0.0853,0.736,171.496,4.0,,Vision 21 OMP,C 2009 One Media Publishing,18 +19,spotify:track:5AhRNIjYPBleR1lfHphcrE,The Edge of Heaven,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,spotify:album:099le4PQZ57X2LY9xVNOpc,Music From The Edge Of Heaven,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,1986-07-01,https://i.scdn.co/image/ab67616d0000b27347a1c7bc033eaab417db698b,1,1,270800,https://p.scdn.co/mp3-preview/52a96c7043d7a2d9a83f55b88b7dab1bc5934786?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBBBN0009290,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock",0.493,0.665,9.0,-13.817,0.0,0.0424,0.117,0.0,0.159,0.877,152.644,4.0,,Columbia,P 1984-1986 CBS Records,19 +20,spotify:track:2RiJYFyzmE4a5xYV7n7sgI,Should’ve Been Us,spotify:artist:1vSN1fsvrzpbttOYGsliDr,Tori Kelly,spotify:album:7cd41qBONvfjaQI6r8MCGp,Unbreakable Smile,spotify:artist:1vSN1fsvrzpbttOYGsliDr,Tori Kelly,2015-06-23,https://i.scdn.co/image/ab67616d0000b273813b123f5b37b2c80f6eefbd,1,5,186477,https://p.scdn.co/mp3-preview/e81eff876738b140889a2819a8a2fc8f8c8d1390?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71505910,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.65,0.766,6.0,-5.443,0.0,0.119,0.00408,6.69e-06,0.0759,0.467,89.974,4.0,,EMI Recorded Music Australia Pty Ltd,"C (C) 2015 Capitol Records & Schoolboy Records, P (P) 2015 Capitol Records & Schoolboy Records",20 +21,spotify:track:7g7OshelYRRnOSEMmisJVI,Clap Your Hands,spotify:artist:7keGfmQR4X5w0two1xKZ7d,Kungs,spotify:album:2Uxn2xBab5Sjo3gnfuir7q,Clap Your Hands,spotify:artist:7keGfmQR4X5w0two1xKZ7d,Kungs,2022-02-18,https://i.scdn.co/image/ab67616d0000b2739f93d1c32d39d12312d25a68,1,1,189880,https://p.scdn.co/mp3-preview/ceebad9013abe7d7c1628ab811fb05b490f649b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,FR9W12139309,spotify:user:bradnumber1,2023-05-14T10:59:17Z,"edm,pop dance,uk dance",0.878,0.875,1.0,-4.923,1.0,0.0658,0.0507,3.42e-05,0.356,0.84,124.006,4.0,,Universal Music Division Island Def Jam,"C © 2022 Val Production / Island Def Jam, P ℗ 2022 Val Production / Island Def Jam",21 +22,spotify:track:1t4I9xuq9Mgdq4SR5hV8p5,Good Clean Fun,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:1XpsJZsZD42yllg4Xg6dXF,"The Monkees Present: Micky, David & Michael",spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,1969-10-01,https://i.scdn.co/image/ab67616d0000b27336b4638f70c2c6e52f2c3154,1,2,135800,https://p.scdn.co/mp3-preview/0e98a942daddf82423b8ac5785b42d23c36c437d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USRH10281213,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.582,0.836,11.0,-9.3,0.0,0.0559,0.129,1.81e-06,0.248,0.915,110.563,4.0,,Rhino,"C © 1994 Rhino Records Inc., P ℗ 1994 Rhino Records Inc.",22 +23,spotify:track:6ER7Wg69KVV8Vrb1Bln3Cr,Teach Me How to Fly,"spotify:artist:5lcXivnykIkBmcmaD2Vi99, spotify:artist:7BHRujdBRmwb704u4Iv4JC","Jeff St John, The Copperwine",spotify:album:36HAfPYsx7cPglngjKbRSa,70 Hits of the '70s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-04,https://i.scdn.co/image/ab67616d0000b273a6f173ddeeeca55fc54cddf3,1,32,248640,https://p.scdn.co/mp3-preview/043caba9159e32b7de21975acf6551d61c8508ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUFE07000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hammond organ,0.466,0.82,2.0,-6.089,1.0,0.0689,0.0503,0.0448,0.294,0.718,139.581,4.0,,WM Australia,"C © 2016 Warner Music Australia Pty Ltd, P ℗ 2016 Warner Music Australia Pty Ltd",23 +24,spotify:track:7zCaXeBaRwCSQ9JJvop7OL,Together We Are One - Radio Mix,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:6KE4Ofd01fwm7cuJNsS5NZ,Together We Are One,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2006-04-01,https://i.scdn.co/image/ab67616d0000b273a1cc359c41d495f5aad8176f,1,1,254626,https://p.scdn.co/mp3-preview/2232a1599a41fd2f41ab9ea08ac3f6f7d891d775?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUBM00600111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.455,0.621,9.0,-3.828,1.0,0.0294,0.0535,0.0,0.109,0.16,134.015,4.0,,Epic,P (P) 2006 Sony Music Entertainment Australia Pty Ltd,24 +25,spotify:track:656xZ2pwfA1J59EMussJOK,No Secrets,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:6WWq4QGRPcBEWpeB9w4qJR,Greatest Hits,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,2011-10-28,https://i.scdn.co/image/ab67616d0000b273826a430afccd21d8c8bfa3ee,1,10,258959,https://p.scdn.co/mp3-preview/079d5ca7ad61eaa819513d96b56ca4481f74bd17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00515860,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.445,0.719,7.0,-5.147,1.0,0.0285,0.000163,8.36e-06,0.217,0.551,142.02,4.0,,Bloodlines,"C 2011 Bloodlines, P 2011 Bloodlines",25 +26,spotify:track:2skmOCFU64Bg7Ytkgwliwe,All For You,spotify:artist:7m60UAnbgFFNuJbmS6OxTk,Sister Hazel,spotify:album:2lHGAzINLOdD0505xdjpyZ,...Somewhere More Familiar,spotify:artist:7m60UAnbgFFNuJbmS6OxTk,Sister Hazel,1997-01-01,https://i.scdn.co/image/ab67616d0000b273ec9714658411bb44e6bbf798,1,3,218706,https://p.scdn.co/mp3-preview/83364250663e320011b339875d40f3a7768c28dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USUR10000469,spotify:user:bradnumber1,2021-10-20T22:25:44Z,"neo mellow,pop rock,post-grunge",0.633,0.754,8.0,-6.497,1.0,0.0382,0.0316,2.49e-05,0.091,0.641,137.049,4.0,,Universal Records,"C © 1997 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1997 Universal Records, a Division of UMG Recordings, Inc.",26 +27,spotify:track:7nQqn8ZyaQdlBQPZ6KbT24,Special,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,spotify:album:2DHNIBnnf8KBVmqIbnUYEd,Absolute Garbage,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,2012-07-23,https://i.scdn.co/image/ab67616d0000b273784e24a8187974037ecd4b45,1,9,226493,https://p.scdn.co/mp3-preview/62ea26de2fe0cd2d2ce9805d3faca7a51dd59705?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USAL19800026,spotify:user:bradnumber1,2022-08-26T01:26:59Z,"alternative rock,dance rock,electronic rock,permanent wave",0.433,0.943,0.0,-4.467,0.0,0.0434,1.4e-05,0.144,0.138,0.398,131.643,4.0,,Liberator Music,"C 2012 STUNVOLUME, P 2012 STUNVOLUME",27 +28,spotify:track:5qnqVH96GFq3Qo71lEkFT5,Saturday Sun,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:3S9ZdKgCTuobkoIWUK2gH0,Nation of Two,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2018-02-23,https://i.scdn.co/image/ab67616d0000b2730301c4c2b4fc7299df04cbf6,1,4,214746,https://p.scdn.co/mp3-preview/47204eb241dee5c510728f25ba9cb723c3ed95d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21705384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.628,0.869,8.0,-4.339,1.0,0.0489,0.497,0.0,0.169,0.701,99.97,4.0,,Liberation Records,"C 2018 Liberation Records, P 2018 Liberation Records",28 +29,spotify:track:6TBUBqz21JmF2hkeRbnwme,Montego Bay,spotify:artist:7iH90f18JHtgA6f4hjJpo2,Bobby Bloom,spotify:album:5kdm7tgxEgY7rYpQ3Bvg4y,The Bobby Bloom Album,spotify:artist:7iH90f18JHtgA6f4hjJpo2,Bobby Bloom,1970-01-01,https://i.scdn.co/image/ab67616d0000b2732c457d4d053065310063d791,1,11,176466,https://p.scdn.co/mp3-preview/2ef5849fcf4f33fe021fc5d3223dbaf346d004dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USPR37007123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.765,0.586,7.0,-10.332,1.0,0.0367,0.734,0.00218,0.113,0.943,105.567,4.0,,Universal Records,"C © 1970 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1970 Universal Records, a Division of UMG Recordings, Inc.",29 +30,spotify:track:5qNh5WtzMbfpSj2jLlBkoD,Your Power,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,spotify:album:7H3vJa2HHgxb7qqclOdfJ3,Your Power,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,2021-04-29,https://i.scdn.co/image/ab67616d0000b273ba4cad4533efdd06fa843a39,1,1,245896,https://p.scdn.co/mp3-preview/a615fa9703894f6d2cff922b4e0f8346ac65c758?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM72105934,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.634,0.285,9.0,-14.007,0.0,0.0807,0.937,0.000359,0.232,0.203,129.65,4.0,,Darkroom/Interscope Records,"C © 2021 Darkroom/Interscope Records, P ℗ 2021 Darkroom/Interscope Records",30 +31,spotify:track:3u5vKV8Jr3XON1QWz1lUbP,Talk of the Town,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4Zm7KcV47uD0sHageJyq2h,One Voice,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,2003-10-20,https://i.scdn.co/image/ab67616d0000b2733a1db30857beb481aa6e5345,2,6,224266,https://p.scdn.co/mp3-preview/da0c9cbee69e9c88d9f125c382dc32c2e9afadd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUBM09341002,spotify:user:bradnumber1,2021-11-20T11:22:47Z,"australian pop,australian rock",0.679,0.892,7.0,-9.401,1.0,0.0512,0.492,0.028,0.116,0.933,92.529,4.0,,BMG Music,P (P) 2003 BMG Australia Limited,31 +32,spotify:track:7MXVkk9YMctZqd1Srtv4MB,Starboy,"spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ, spotify:artist:4tZwfgrHOc3mvqYlEYSvVi","The Weeknd, Daft Punk",spotify:album:2ODvWsOgouMbaA5xf0RkJe,Starboy,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2016-11-25,https://i.scdn.co/image/ab67616d0000b2734718e2b124f79258be7bc452,1,1,230453,https://p.scdn.co/mp3-preview/57c1238d183c40da3157c2892346f58445b1377c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,88,USUG11600976,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop,electro,filter house,rock",0.679,0.587,7.0,-7.015,1.0,0.276,0.141,6.35e-06,0.137,0.486,186.003,4.0,,Universal Republic Records,"C © 2016 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc., P ℗ 2016 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.",32 +33,spotify:track:3J19l4hOfwFFIF715BwVcG,Anthem for the Year 2000,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:10bobqzP8mtragmflBolOM,Neon Ballroom,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,1999-03-08,https://i.scdn.co/image/ab67616d0000b27302629081ad3b70375352dd19,1,2,247786,https://p.scdn.co/mp3-preview/6e9e16c09ac0ffdb00c3a49577c89fc29e30128f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUSM09800224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.325,0.768,2.0,-7.51,1.0,0.0491,0.0426,4.04e-06,0.27,0.454,176.6,4.0,,Sony Music Entertainment,P (P) 1999 Sony Music Entertainment Australia Pty Ltd,33 +34,spotify:track:39C5FuZ8C8M0QI8CrMsPkR,Foreplay / Long Time,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,spotify:album:2QLp07RO6anZHmtcKTEvSC,Boston,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,1976,https://i.scdn.co/image/ab67616d0000b2738c1fadcc997a65384f34d694,1,3,467640,https://p.scdn.co/mp3-preview/eabd2479930dced0472b26d62224f49274f7820b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM17600873,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.435,0.657,5.0,-8.868,1.0,0.0545,0.00983,0.00748,0.0923,0.209,118.704,4.0,,Epic/Legacy,"P (P) 1976, 2006 Epic Records, a division of Sony Music Entertainment",34 +35,spotify:track:3KhIpPRbkjr3p1eJkD51dj,New Romantics,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:3GT1SFfrltwpfWM2FB7zV4,1989 (Deluxe),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-10-27,https://i.scdn.co/image/ab67616d0000b273eb4ef60f82fdc4b489ac1950,1,16,230466,https://p.scdn.co/mp3-preview/8abfa84aa6b12e5aabf724ba36d404e5d2ad2251?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1431449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.633,0.889,5.0,-5.87,1.0,0.0715,0.00463,0.000458,0.0658,0.584,121.956,4.0,,Universal Music Group,"C © 2014 Big Machine Records, LLC, P ℗ 2014 Big Machine Records, LLC",35 +36,spotify:track:2l1GIxmkts2O0qYrlwGwF0,She - Original Stereo Version; 2006 Remaster,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:50zHjIiTOZM232gnWvOydX,More of The Monkees (Deluxe Edition),spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,1967-01-09,https://i.scdn.co/image/ab67616d0000b273360a1ae790aa71a0aac4983e,1,1,158960,https://p.scdn.co/mp3-preview/f618e29ac35f117a58f1cafbf734afacafe9728e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USRH10651267,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.506,0.669,6.0,-6.755,0.0,0.0391,0.241,2e-06,0.116,0.763,119.267,4.0,,Rhino,"C © 2006 Rhino Entertainment Company, P ℗ 2006 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Manufactured & Marketed by Rhino Entertainment Company",36 +37,spotify:track:1EuI95kVxZYLbENy8d6AOI,I'm Good?,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,spotify:album:5W3YMp8HlxyU6XtKsq9sxm,I'm Good?,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2020-05-01,https://i.scdn.co/image/ab67616d0000b273a8d3c84f750d5fff1745217c,1,1,160186,https://p.scdn.co/mp3-preview/48aee5dda4d2b7d616758aadea7ca7e1e93853fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUHT01800391,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.901,0.761,4.0,-5.986,0.0,0.0704,0.311,0.0,0.065,0.96,119.984,4.0,,Universal Music Australia Pty. Ltd.,"C © 2020 Universal Music Australia Pty Ltd., P ℗ 2020 Universal Music Australia Pty Ltd.",37 +38,spotify:track:7Dm3dV3WPNdTgxoNY7YFnc,The Chain - 2004 Remaster,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:1bt6q2SruMsBtcerNVtpZB,Rumours,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1977-02-04,https://i.scdn.co/image/ab67616d0000b27357df7ce0eac715cf70e519a7,1,7,269813,https://p.scdn.co/mp3-preview/93de8b97f51f60e086c141c9d27622ab37944cc3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USWB10400053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.522,0.755,9.0,-6.95,1.0,0.0524,0.0517,6.63e-05,0.0781,0.637,151.796,4.0,,Rhino/Warner Records,"C © 2004 Warner Records Inc., P ℗ 2004 Warner Records Inc.",38 +39,spotify:track:0Pu71wxadDlB8fJXfjIjeJ,Shoop,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,spotify:album:2W2EmEpud13QHlhCFS9P8g,Very Necessary,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,1993-10-12,https://i.scdn.co/image/ab67616d0000b27331ac4ea81876d18519e4b6eb,1,7,248573,https://p.scdn.co/mp3-preview/4a88a15552524cf0f1a79184073de290ce60605a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USWWW0126118,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop",0.939,0.674,0.0,-7.232,1.0,0.212,0.091,0.0,0.0565,0.792,96.918,4.0,,Mercury Records,"C © 1993 UMG Recordings Inc., P ℗ 1993 UMG Recordings Inc.",39 +40,spotify:track:5PLC7cNlxWIMAZvXrtqsZm,Trouble,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:0fyXhpRRZOQkNP734QsnNm,Try This,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2003-10-08,https://i.scdn.co/image/ab67616d0000b273e3804561af7c7d89f084a207,1,1,193600,https://p.scdn.co/mp3-preview/50b3720a9d02c097443243182ef24704614441a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR10301058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.575,0.933,7.0,-2.719,1.0,0.051,0.00822,0.0,0.244,0.848,135.5,4.0,,Arista,"P (P) 2003 Arista Records, Inc.",40 +41,spotify:track:4stNldZRtgwvHvb34INX5y,You Got Me,spotify:artist:5DYAABs8rkY9VhwtENoQCz,Gavin DeGraw,spotify:album:0vOZevXSlfFuRrC4LLW49W,You Got Me,spotify:artist:5DYAABs8rkY9VhwtENoQCz,Gavin DeGraw,2014-07-28,https://i.scdn.co/image/ab67616d0000b273a87067e5e25b863774b0691c,1,1,227485,https://p.scdn.co/mp3-preview/fc87fb7dedb60de55af0319ad0ee31e6b7d0b87b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USRC11401788,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock",0.323,0.462,6.0,-8.898,1.0,0.0294,0.0531,4.45e-05,0.08,0.188,105.995,4.0,,RCA Records Label,"P (P) 2014 RCA Records, a division of Sony Music Entertainment",41 +42,spotify:track:5LenBcq9xeHLC00Gn7AyYv,I Am the Beat,spotify:artist:5eytiLIJP1kOyllcpWTxea,The Look,spotify:album:1uZGQ394ykJhCIiEJeugre,The Look,spotify:artist:5eytiLIJP1kOyllcpWTxea,The Look,1981,https://i.scdn.co/image/ab67616d0000b2734e0efdc61ac73da80122fb4b,1,7,180547,https://p.scdn.co/mp3-preview/46344317a54388d705a1a3eb32ef63046c461ded?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,FR6V81663643,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.429,0.657,8.0,-9.708,1.0,0.0788,0.262,6.05e-05,0.0506,0.784,174.984,4.0,,Rdeg,"C 2013 Rdeg, P 1981 MCA Records",42 +43,spotify:track:0K1ddNp1ev0zdik1EzuxkT,Well Hello,spotify:artist:0jwZXCdmqh8Ox5p2tOZF55,Yellowstone And Voice,spotify:album:0Z5RLckeah58f6J9vjBYWs,The Best of Red Bus Collection,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-06-10,https://i.scdn.co/image/ab67616d0000b2732663a0ec722e8cd0a8d0b7f6,1,12,174040,https://p.scdn.co/mp3-preview/229de6c06935943702089c4cb2b86c2b7fa3e423?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBXS1506746,spotify:user:bradnumber1,2021-08-08T09:26:31Z,beatlesque,0.473,0.697,3.0,-6.253,1.0,0.03,0.0229,0.0,0.0396,0.894,77.181,4.0,,R.B Nostalgia,"C 2016, R.B Nostalgia, P 2016, R.B Nostalgia",43 +44,spotify:track:1A4a167Yf7bXEkVOqon1HK,Twistin' Matilda (And the Channel),spotify:artist:7k4MYPtpz3fAViMuuLi9ry,Jimmy Soul,spotify:album:4LIwkxPEGbxwvq8Ut6XFYg,I You Wanna Be Happy,spotify:artist:7k4MYPtpz3fAViMuuLi9ry,Jimmy Soul,2013-12-02,https://i.scdn.co/image/ab67616d0000b273373e69d19b4c7c07690bf176,1,3,174933,https://p.scdn.co/mp3-preview/395bbe792264e99455e4159e5755dcc29fb01fff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMBZ91305574,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.535,0.775,7.0,-7.606,1.0,0.155,0.715,0.0,0.228,0.847,141.424,4.0,,Black Sheep Music,C (C) 2013 Entertain Me Europe LTD,44 +45,spotify:track:34sAPj9hCZr4f814I3MWEy,Nothing Can Divide Us,spotify:artist:5bnNgwp3nooah9yHAHsnR4,Jason Donovan,spotify:album:6rL0xfZj23qRaFrGiTmvPP,Greatest Hits,spotify:artist:5bnNgwp3nooah9yHAHsnR4,Jason Donovan,2007-02-06,https://i.scdn.co/image/ab67616d0000b273cd12dd55b0c00f57c56571eb,1,1,226200,https://p.scdn.co/mp3-preview/bf99006fe32f957c34e7771eb6ea950c655149ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUMU08800142,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,europop,new wave pop",0.702,0.788,7.0,-11.54,1.0,0.0423,0.0263,2.42e-06,0.0436,0.852,120.1,4.0,,WM Australia,"C © 1991 Mushroom Records, P ℗ 1991 Mushroom Records",45 +46,spotify:track:1HXaX12pA7jVuwUczy5UOd,Its Only the Beginning,spotify:artist:3l1Tuoqd0JXoaOrAiOyrB0,Deborah Conway,spotify:album:3uJt66Vz0jymlFZxedk63k,String Of Pearls,spotify:artist:3l1Tuoqd0JXoaOrAiOyrB0,Deborah Conway,1991,https://i.scdn.co/image/ab67616d0000b2733c15e7f740f33a81922b80f5,1,2,281640,https://p.scdn.co/mp3-preview/0e535704f5582f9881ff1346e525c3efd8bab18b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUMU09400043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.562,0.692,4.0,-9.996,1.0,0.0361,0.0275,1.16e-06,0.276,0.653,137.921,4.0,,WM Australia,"C © 1991 Mushroom Records Pty Limited, P ℗ 1991 Mushroom Records Pty Limited",46 +47,spotify:track:2gGxroCYEruO4Bco35RnGU,S.O.S.,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,spotify:album:3HEkMpWdo3cWS6wWfQV63a,Jonas Brothers (Standard French Version),spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,2007-01-01,https://i.scdn.co/image/ab67616d0000b273b5e240a13ba238ad4a053fff,1,1,153346,https://p.scdn.co/mp3-preview/e3537232f9b07c5a790914c932050b713bbd85e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR10723189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.587,0.697,7.0,-3.836,1.0,0.0682,0.000749,0.0,0.182,0.702,137.088,4.0,,Universal Music AS,"C © 2008 Hollywood Records, Inc., Under Exclusive License to Universal Music International BV., P ℗ 2007 Hollywood Records, Inc., Under Exclusive License to Universal Music International BV.",47 +48,spotify:track:0cVyQfDyRnMJ0V3rjjdlU3,Lil Boo Thang,spotify:artist:4zoRNhOhsGX3w8yBAnFSQ8,Paul Russell,spotify:album:1j5AROUr8rq5xb2CXDIH1c,Lil Boo Thang,spotify:artist:4zoRNhOhsGX3w8yBAnFSQ8,Paul Russell,2023-08-18,https://i.scdn.co/image/ab67616d0000b273811b8a1d3649f63af1d5fb65,1,1,114233,https://p.scdn.co/mp3-preview/79f29532b707e2bd12e311d7dce2591b4d57437e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USAR12300323,spotify:user:bradnumber1,2023-12-17T02:27:20Z,indie r&b,0.85,0.699,0.0,-3.292,1.0,0.0776,0.152,0.0,0.32,0.915,114.481,4.0,,Arista Records,"P (P) 2023 Paul Russell under exclusive license to Arista Records, a division of Sony Music Entertainment",48 +49,spotify:track:2NELtMgQ8HSdrGrYQPLnC3,Piece by Piece,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:7oKtXc3FkeOZTCB88YugON,Piece By Piece (Deluxe Version),spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2015-02-27,https://i.scdn.co/image/ab67616d0000b2738612619562d9e86624479ec8,1,5,257746,https://p.scdn.co/mp3-preview/f628a42dac2688f5c149768b0b2ee3a20f49fc3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBCTA1500005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.59,0.808,1.0,-6.728,1.0,0.0408,0.000953,1.53e-06,0.0918,0.601,106.029,4.0,,RCA Records Label,P (P) 2015 19 Recordings Limited under exclusive license to RCA Records,49 +50,spotify:track:6vVfNqiMSku4FrqsqhurBK,Glamorous,"spotify:artist:3r17AfJCCUqC9Lf0OAc73G, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi","Fergie, Ludacris",spotify:album:5jMAEt7ZLjqi5tSlf7EBQg,The Dutchess,spotify:artist:3r17AfJCCUqC9Lf0OAc73G,Fergie,2006-09-13,https://i.scdn.co/image/ab67616d0000b2734c62f163f672735dda3357e2,1,7,246600,https://p.scdn.co/mp3-preview/ba1380303365ab2106f43e1647c7a09e2eef35fc?cid=9950ac751e34487dbbe027c4fd7f8e99,True,62,USUM70609119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap",0.81,0.76,0.0,-6.447,1.0,0.232,0.301,0.0,0.103,0.56,130.991,4.0,,Will I Am / Fergie LP1,"C © 2006 A&M Records, P ℗ 2006 A&M Records",50 +51,spotify:track:2vG1yrWSMiL6egg6w4e9ma,Free Your Mind,spotify:artist:5fikk4h5qbEebqK2Fc6e48,En Vogue,spotify:album:7d2qNq4zap02SoWdvr0caA,Funky Divas,spotify:artist:5fikk4h5qbEebqK2Fc6e48,En Vogue,1992-03-24,https://i.scdn.co/image/ab67616d0000b27350638bf4b6a49dce27bc4ff5,1,4,293105,https://p.scdn.co/mp3-preview/1534e3c452634d8b73c9c1fd498910cd9090fed6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USEW19900116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,girl group,hip pop,new jack swing,r&b,urban contemporary",0.765,0.831,7.0,-6.522,1.0,0.0565,0.0894,0.0,0.393,0.809,100.026,4.0,,Rhino Atlantic,"C © 1992 Elektra Entertainment for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1992 Elektra Entertainment for the United States and WEA International Inc. for the world outside of the United States.",51 +52,spotify:track:6ZQIKSFLoonDStQchogVdC,Untouchable (Originally Performed by Taylor Swift) [Vocal Version],spotify:artist:1Lc0W6fVtIyzVXEOV6BbYi,Musical Creations Karaoke,spotify:album:6f6OwuxVOEd0Xdle3G98v5,Untouchable (Originally Performed by Taylor Swift) [Karaoke Version],spotify:artist:1Lc0W6fVtIyzVXEOV6BbYi,Musical Creations Karaoke,2014-07-21,https://i.scdn.co/image/ab67616d0000b273c475f58b18b4687242702a48,1,1,316212,https://p.scdn.co/mp3-preview/90823f0c8beb0461ddaf2e8ed0610ef4cf435bee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,US8K21206705,spotify:user:bradnumber1,2021-08-08T09:26:31Z,karaoke,0.539,0.344,5.0,-11.118,1.0,0.0421,0.568,0.0,0.101,0.452,199.942,4.0,,Musical Creations,C (C) 2014 Musical Creations Karaoke,52 +53,spotify:track:74Hy0E0huf9VS853otOC0m,From The Sea,spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,spotify:album:0Q2I3pfKvD9w65qULwIxwW,From The Sea,spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,2004,https://i.scdn.co/image/ab67616d0000b2737e9073816e61ccb4dcb72421,1,1,203146,https://p.scdn.co/mp3-preview/56abd5af47f5763c6d2d8c691484c26092635997?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUMU00400051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,perth indie",0.582,0.939,8.0,-3.305,0.0,0.0342,0.0628,4.49e-05,0.0855,0.273,130.023,4.0,,WM Australia,"C © 2004 Mushroom Records, P ℗ 2004 Mushroom Records",53 +54,spotify:track:2NjO87HyT80fsgejd3PLYW,Dance To This (feat. Ariana Grande),"spotify:artist:3WGpXCj9YhhfX11TToZcXP, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR","Troye Sivan, Ariana Grande",spotify:album:3MYJYd73u0SatCnRVvRJ3M,Bloom,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2018-08-31,https://i.scdn.co/image/ab67616d0000b273aae542061ac42ee04779fb2f,1,6,231846,https://p.scdn.co/mp3-preview/f1d24e8a12e82dba75f9dd181d623bcb97879868?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,AUUM71800523,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,viral pop,pop",0.736,0.756,11.0,-7.099,1.0,0.047,0.00632,0.00569,0.106,0.712,117.015,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2019 Universal Music Australia Pty Ltd., P ℗ 2019 Universal Music Australia Pty Ltd.",54 +55,spotify:track:1ESxXEaYZ3CvkVqBdSHZiS,Into The Dark,spotify:artist:06y1hH4hu3rcTUXHJevPCf,Ben Lee,spotify:album:0C8dhLSMjGZI2dSCiRrVNN,Awake Is the New Sleep,spotify:artist:06y1hH4hu3rcTUXHJevPCf,Ben Lee,2005-02-22,https://i.scdn.co/image/ab67616d0000b273b77411b9680509da42f83ddc,1,7,166893,https://p.scdn.co/mp3-preview/a90d9f32a863055afca2f50e2424e4e65fe3de34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,US27Q0460707,spotify:user:bradnumber1,2022-02-03T10:00:53Z,"australian alternative rock,australian pop,australian rock",0.779,0.719,7.0,-7.004,1.0,0.0279,0.0989,0.0,0.111,0.936,125.996,4.0,,WM Australia,"C © 2005 Ten Finger Records, Inc., P ℗ 2005 Ten Finger Records, Inc., under exclusive licence to Warner Music Australia Pty Limited",55 +56,spotify:track:1Xhz8EjC4GChCe46aR0MFy,Happenin' All Over Again - Radio,spotify:artist:3KT9AeoTUPHKnntwQxlP9S,Young Divas,spotify:album:6uMZgyfpavnYnGa9pOWA70,Young Divas,spotify:artist:3KT9AeoTUPHKnntwQxlP9S,Young Divas,2006-11-14,https://i.scdn.co/image/ab67616d0000b2736b39fff29de478c2a2e8b189,1,5,208346,https://p.scdn.co/mp3-preview/5ac654a40a8d77e805c0d703152e5eded192de15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUBM00600794,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.617,0.752,8.0,-9.907,1.0,0.0547,0.000957,7.51e-06,0.305,0.856,124.038,4.0,,Sony BMG Music Entertainment,P (P) 2006 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,56 +57,spotify:track:6UqKslmiLujULn7mpfbpaC,You've Never Been This Far Before,spotify:artist:7gi3jmwpUpNWdswT8eEprF,Conway Twitty,spotify:album:6LxTxevkTD8O8kiAtCqaAc,Hello Darlin' 15 #1 Hits,spotify:artist:7gi3jmwpUpNWdswT8eEprF,Conway Twitty,2005-04-21,https://i.scdn.co/image/ab67616d0000b273e37e2e917f39d60c7f8bfb57,1,15,192893,https://p.scdn.co/mp3-preview/a21c22b31b117f6a99e637118b923f9d88c6019d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USDMG0514715,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,classic country pop,country,country rock",0.702,0.339,10.0,-14.214,1.0,0.0359,0.679,0.0,0.103,0.672,133.315,4.0,,"Dualtone Music Group, Inc.","C 2005 Dualtone Music Group, Inc., P 2005 Dualtone Music Group, Inc.",57 +58,spotify:track:2yWyFT6bW1Rd9cjVvYi4v8,Superstylin',spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,spotify:album:1bS1J4OVGrpu6e2U2pHge6,Goodbye Country (Hello Nightclub),spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2001-07-11,https://i.scdn.co/image/ab67616d0000b2730d6e6cc2e426ab9f3b33fbcc,1,2,360426,https://p.scdn.co/mp3-preview/d46a238e623762ef595367c5099d018e9d0bb788?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAHK0100089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,nu skool breaks,trip hop",0.742,0.798,9.0,-8.263,1.0,0.0558,0.00346,0.00131,0.259,0.928,128.967,4.0,,Jive Electro,P (P) 2001 Zomba Records Limited,58 +59,spotify:track:7rojor07Wzc7w3zXOxex80,Halfway Gone,spotify:artist:5PokPZn11xzZXyXSfnvIM3,Lifehouse,spotify:album:6TmElNgwnE9vBmYCLbwikX,Smoke & Mirrors (International Version),spotify:artist:5PokPZn11xzZXyXSfnvIM3,Lifehouse,2010-01-01,https://i.scdn.co/image/ab67616d0000b27340969b349ac21efdcb16f43f,1,4,195306,https://p.scdn.co/mp3-preview/2e609017bbfad350a1f0f50c71c9e26ffea87989?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USUM70903932,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.543,0.919,1.0,-4.831,0.0,0.0415,0.000441,0.0,0.238,0.498,125.017,4.0,,Geffen,"C © 2010 Geffen Records, P ℗ 2010 Geffen Records",59 +60,spotify:track:39umHdGKfpnjY4TFtnoQ51,Too Much (feat. Usher),"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj, spotify:artist:23zg3TcAtWQy7J6upgbUnj","Marshmello, Imanbek, USHER",spotify:album:6lObxQq82f6xitLI8xZQyz,Too Much (feat. Usher),"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj, spotify:artist:23zg3TcAtWQy7J6upgbUnj","Marshmello, Imanbek, USHER",2020-10-23,https://i.scdn.co/image/ab67616d0000b27377d85d6688b7010ce154fe0a,1,1,165704,https://p.scdn.co/mp3-preview/81cd8f86d708c9aa9f35489fd3ae3f191e5f8850?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRC12003396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,edm,pop,progressive electro house,electro house,pop dance,slap house,atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.712,0.891,6.0,-2.76,0.0,0.0401,0.00415,0.0,0.258,0.735,126.012,4.0,,Joytime Collective/RCA Records/Effective Records,"P (P) 2020 Joytime Collective, under exclusive license to RCA Records",60 +61,spotify:track:3g2zKo9K0MymRmkn6fXWcr,Polaroid,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,spotify:album:6XuKNFu7uue9cj04W3x4Gt,Polaroid,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,2020-04-24,https://i.scdn.co/image/ab67616d0000b273c0ec309aaaf1913aa78e28c0,1,1,150206,https://p.scdn.co/mp3-preview/18258a73147f10e7eed6de32a6d587b01136065b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USUG12000582,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road",0.791,0.744,8.0,-5.294,1.0,0.0549,0.598,0.0,0.163,0.836,117.057,4.0,,Capitol Records Nashville,"C © 2020 Hit Red Records, under exclusive license to UMG Recordings, Inc., P ℗ 2020 Hit Red Records, under exclusive license to UMG Recordings, Inc.",61 +62,spotify:track:0iyFZC2XuPdLpfQpUeli4H,Walk Right In,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,spotify:album:0UQeeHZSz95cijW6o07wib,Completely Hooked,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,1992-01-01,https://i.scdn.co/image/ab67616d0000b2738d4bfca049780d5b87323e09,1,7,187066,https://p.scdn.co/mp3-preview/f711b62dff4e559d3ba7e7e01bc1998f6f24a33e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USCA28700078,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,mellow gold,soft rock",0.796,0.867,2.0,-10.568,1.0,0.037,0.0742,0.00195,0.226,0.881,114.87,4.0,,Capitol Records,"C © 1992 Capitol Records Inc., P This Compilation ℗ 1992 Capitol Records Inc.",62 +63,spotify:track:4rRRVHoBP8v42QdOivhhfj,Two Strong Hearts,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4Zm7KcV47uD0sHageJyq2h,One Voice,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,2003-10-20,https://i.scdn.co/image/ab67616d0000b2733a1db30857beb481aa6e5345,2,2,212840,https://p.scdn.co/mp3-preview/22aef9beb14c26366f0b8bb47a4e6bc228ce457e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM08841001,spotify:user:bradnumber1,2021-11-20T11:23:14Z,"australian pop,australian rock",0.61,0.78,2.0,-9.393,1.0,0.0316,0.0212,0.0,0.309,0.841,109.856,4.0,,BMG Music,P (P) 2003 BMG Australia Limited,63 +64,spotify:track:4tCtwWceOPWzenK2HAIJSb,Work from Home (feat. Ty Dolla $ign),"spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt, spotify:artist:7c0XG5cIJTrrAgEC3ULPiq","Fifth Harmony, Ty Dolla $ign",spotify:album:0pF0oyuPNdOObniB1Ng0kW,7/27 (Deluxe),spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt,Fifth Harmony,2016-05-27,https://i.scdn.co/image/ab67616d0000b273d03fa6f4e758282b7920b5c8,1,2,214480,https://p.scdn.co/mp3-preview/58fd9aa04f6972b8302f497dc6bb6160941c1e58?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USSM11600251,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,hip hop,pop rap,r&b,southern hip hop,trap,trap soul",0.803,0.585,8.0,-5.861,1.0,0.0432,0.103,3.94e-06,0.0644,0.593,105.017,4.0,,Syco Music/Epic,"P (P) 2016 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",64 +65,spotify:track:40rOKDgEB0PoedLUQELRFi,Hidden Agenda - New Mix,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,spotify:album:35ikpiYIj4Mtl6wp1zzDtb,Greatest Hits (French Standard DMD),spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2008-11-24,https://i.scdn.co/image/ab67616d0000b273a407867b5c9f81b349e3312c,1,13,252600,https://p.scdn.co/mp3-preview/149191b47ed5595f41bf751e0480aa67947bc796?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHT0800579,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.705,0.727,0.0,-6.237,1.0,0.0516,0.252,0.0,0.0795,0.616,96.071,4.0,,WM UK,"C 2008 Teacup, P 2008 Teacup",65 +66,spotify:track:6F5c58TMEs1byxUstkzVeM,Roar,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:5MQBzs5YlZlE28mD9yUItn,PRISM (Deluxe),spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2013-10-18,https://i.scdn.co/image/ab67616d0000b27347f930accd8ac01686401fa2,1,1,223546,https://p.scdn.co/mp3-preview/d72636d23beb0e3c283ec8150b8f50f9b5b0d8a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USUM71308669,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.671,0.771,7.0,-4.821,0.0,0.0316,0.00492,7.28e-06,0.354,0.436,90.003,4.0,,Capitol Records (CAP),"C © 2013 Capitol Records, LLC, P ℗ 2013 Capitol Records, LLC",66 +67,spotify:track:5tzbM8m70V977Ezpfk8IPS,Time After Time,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,spotify:album:2aZG65CSBMeTKr0YNfsFMe,She's So Unusual,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,1983,https://i.scdn.co/image/ab67616d0000b27332c62ff86bb7deeafed2d423,1,4,241333,https://p.scdn.co/mp3-preview/36937f5e84f627d9b6b2380cb715e6ead0ecf52b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM18300650,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,permanent wave,soft rock",0.726,0.449,0.0,-9.206,1.0,0.0286,0.487,1.34e-06,0.0824,0.294,130.388,4.0,,Epic/Legacy,"P (P) 1983, 1984, 2000 Sony Music Entertainment Inc.",67 +68,spotify:track:6W21LNLz9Sw7sUSNWMSHRu,Freak On a Leash,spotify:artist:3RNrq3jvMZxD9ZyoOZbQOD,Korn,spotify:album:0gsiszk6JWYwAyGvaTTud4,Follow The Leader,spotify:artist:3RNrq3jvMZxD9ZyoOZbQOD,Korn,1998-08-18,https://i.scdn.co/image/ab67616d0000b27350d216aebaf98e8ac9947fd5,1,2,255733,https://p.scdn.co/mp3-preview/1748e7fff0689e02eed3deebaf7837afabbe8657?cid=9950ac751e34487dbbe027c4fd7f8e99,True,78,USSM19801755,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,hard rock,nu metal,post-grunge,rap metal,rock",0.353,0.898,2.0,-5.877,1.0,0.052,2.23e-05,0.105,0.39,0.525,103.299,4.0,,Immortal/Epic,"P (P) 1998 Epic Records, a division of Sony Music Entertainment",68 +69,spotify:track:5YDP1MSGDD5k0pm7j5KjMM,Chulu Chululu,spotify:artist:7bzzp2TDqSg6rXfOv501Eb,Bill & Boyd,spotify:album:5WEaHbpKLGHGCEnmhLdOZ0,Songs For A Cloudy Summer Afternoon,spotify:artist:7bzzp2TDqSg6rXfOv501Eb,Bill & Boyd,1964-01-01,https://i.scdn.co/image/ab67616d0000b27336a0e97c79096a2bd520026e,1,14,127680,https://p.scdn.co/mp3-preview/2495df2c487a6d880676c51e4f57eb8dced20570?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,NZUM71400330,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic australian country,classic nz pop",0.449,0.95,9.0,-6.473,1.0,0.0886,0.359,0.00325,0.661,0.878,157.736,4.0,,Universal Music New Zealand Limited,"C © 1964 Philips New Zealand Ltd, P ℗ 1964 Philips New Zealand Ltd",69 +70,spotify:track:6t1FIJlZWTQfIZhsGjaulM,Video Killed The Radio Star,spotify:artist:057gc1fxmJ2vkctjQJ7Tal,The Buggles,spotify:album:5KKpKvLOS4tCV7cSOwIOWF,The Age Of Plastic,spotify:artist:057gc1fxmJ2vkctjQJ7Tal,The Buggles,1980-01-10,https://i.scdn.co/image/ab67616d0000b27370b6cfff0487d653a8c7ce01,1,2,253800,https://p.scdn.co/mp3-preview/0d0dbf059733ddc5252c7867827fa4e76961fd5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBAAN7900013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"early synthpop,new wave pop,zolo",0.675,0.61,1.0,-13.811,1.0,0.085,0.0852,0.0188,0.159,0.344,131.037,4.0,,Island Records,"C © 1980 The Island Def Jam Music Group, P ℗ 1980 The Island Def Jam Music Group",70 +71,spotify:track:1mVTTCmWniYZrjHwHRqWyw,Lay Down (Candles In The Rain) - Long Version,"spotify:artist:6sOP8RUFR0q0nBOBOXGdBK, spotify:artist:0lEzfSVcNRLDUKdI7fBDD3","Melanie, The Edwin Hawkins Singers",spotify:album:6A52tOKufZUBoHqui2fnNj,The Very Best Of,spotify:artist:6sOP8RUFR0q0nBOBOXGdBK,Melanie,1998-02-18,https://i.scdn.co/image/ab67616d0000b2736585cbc734f525c1b91dc55b,1,20,469933,https://p.scdn.co/mp3-preview/21160aa7c9423549e4a490a12eb501ce471eb37a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USBR17000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk,persian pop",0.286,0.66,7.0,-13.243,1.0,0.0617,0.112,0.197,0.1,0.66,92.113,4.0,,RCA Camden,P This Compilation (P) 1998 BMG Entertainment International UK & Ireland Ltd.,71 +72,spotify:track:1QV6tiMFM6fSOKOGLMHYYg,Poker Face,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:1qwlxZTNLe1jq3b0iidlue,The Fame,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2008-01-01,https://i.scdn.co/image/ab67616d0000b273e691217483df8798445c82e2,1,4,237200,https://p.scdn.co/mp3-preview/36abf77572983417d63a3aed8923d00e07167efa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USUM70824409,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.851,0.806,4.0,-4.618,1.0,0.0787,0.119,1.72e-06,0.121,0.774,119.001,4.0,,Streamline/Interscope,"C © 2008 Interscope Records, P ℗ 2008 Interscope Records",72 +73,spotify:track:7K5u9x1qd2WyEkTN7ntm1A,Vegas Girl,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,spotify:album:5oWAiNeY4ImqhSzdXqDcMK,Vegas Girl,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,2012-07-20,https://i.scdn.co/image/ab67616d0000b2731dbee6afbd1db38172180328,1,1,171826,https://p.scdn.co/mp3-preview/e22b059524ab51a6c051efdc584efe1198f8015e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GBAYE1200794,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,uk pop,viral pop",0.567,0.72,1.0,-6.227,1.0,0.0504,0.00189,0.0,0.0829,0.241,176.015,4.0,,Parlophone UK,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",73 +74,spotify:track:41on8RwRh22IHcChAN2gm8,American Boy (feat. Kanye West),"spotify:artist:5T0MSzX9RC5NA6gAI6irSn, spotify:artist:5K4W6rqBFWDnAN6FQUkS6x","Estelle, Kanye West",spotify:album:4nAIqmKELnBEXEkYg1pMic,Shine,spotify:artist:5T0MSzX9RC5NA6gAI6irSn,Estelle,2008-03-28,https://i.scdn.co/image/ab67616d0000b2735288f048b151164b4cbf9f50,1,3,284733,https://p.scdn.co/mp3-preview/6f51d610e0fcdf1a2452dde184f2c3c1a761885f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USAT20706210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,r&b,chicago rap,hip hop,rap",0.727,0.729,0.0,-2.99,1.0,0.326,0.171,0.0,0.07,0.512,117.932,4.0,,Homeschool/Atlantic,"C 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",74 +75,spotify:track:4V9JDRqKjN8F2HWdlEDxvI,Harder To Breathe,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:5zClcGCSWj926AMjvBNSLc,Songs About Jane: 10th Anniversary Edition,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2002,https://i.scdn.co/image/ab67616d0000b27392f2d790c6a97b195f66d51e,1,1,173693,https://p.scdn.co/mp3-preview/025d7fa6f3ddf30be6ff1c18bfd508869a2182fe?cid=9950ac751e34487dbbe027c4fd7f8e99,True,64,USJAY0300079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.662,0.908,1.0,-4.764,0.0,0.0449,0.0506,0.0,0.0508,0.967,149.941,4.0,,Interscope Records*,"C © 2012 A&M/Octone Records, P ℗ 2012 A&M/Octone Records",75 +76,spotify:track:7IhsLJMqdxoo7YAZjaSMru,Dead And Gone,"spotify:artist:4OBJLual30L7gRl5UkeRcT, spotify:artist:31TPClRtHm23RisEBtV3X7","T.I., Justin Timberlake",spotify:album:5PfepkNWgRR2DI02Y8AawC,Paper Trail,spotify:artist:4OBJLual30L7gRl5UkeRcT,T.I.,2008-09-07,https://i.scdn.co/image/ab67616d0000b273b6d4478c6f91f1cb2d326c78,1,16,299746,https://p.scdn.co/mp3-preview/a282d070d34ad7e8c0608d9a426617f6cd96c11f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,USAT20803689,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,gangster rap,hip hop,pop rap,rap,southern hip hop,trap,dance pop,pop",0.713,0.746,0.0,-4.99,1.0,0.259,0.0402,0.0,0.601,0.47,135.021,4.0,,"Grand Hustle, LLC","C 2008 Grand Hustle, LLC | Cinq Recordings, P 2008 Grand Hustle, LLC | Cinq Recordings",76 +77,spotify:track:0t414ewhjcIiuPVF3QECz2,If,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:7qIuZgsMkRuh7rzi4qVcpg,Janet,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1993-05-18,https://i.scdn.co/image/ab67616d0000b273e63518d50aff63f57d2b8ead,1,6,271640,https://p.scdn.co/mp3-preview/9eb625d8043c780e1e536678d81c3506b27104d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAAA9300172,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.653,0.976,11.0,-5.173,0.0,0.0797,0.0374,0.00173,0.561,0.447,105.575,4.0,,Virgin Records,"C © 1993 Black Doll Inc, P ℗ 1993 Virgin Records Limited",77 +78,spotify:track:2DJpq0JJbGiBuQ3S5TDpPD,Truth Hurts,spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,spotify:album:6Rct4zM36bjIH5kF2PZ5nj,Cuz I Love You (Deluxe),spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,2019-04-18,https://i.scdn.co/image/ab67616d0000b27368e9160f7c5496107c576157,1,13,173306,https://p.scdn.co/mp3-preview/3e65edc0284eeb937793404c4d8c4bd94de3f26b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USAT21905494,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"escape room,minnesota hip hop,pop,trap queen",0.713,0.626,4.0,-2.891,0.0,0.124,0.111,0.0,0.126,0.39,158.08,4.0,,Nice Life/Atlantic,"C © 2019 Nice Life Recording Company and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2019 Nice Life Recording Company and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",78 +79,spotify:track:4zCWUhwXEgXrUY2C0hBfl2,Be Mine!,spotify:artist:6UE7nl9mha6s8z0wFQFIZ2,Robyn,spotify:album:7ib5tmnBERvWGFhsRBPdm1,Robyn,spotify:artist:6UE7nl9mha6s8z0wFQFIZ2,Robyn,2007-04-02,https://i.scdn.co/image/ab67616d0000b2732757897b2cb4ae27c24f260e,1,6,206600,https://p.scdn.co/mp3-preview/937a26765ef0d3e111d849f0cd9aaa264543e056?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEWKZ0500101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo-synthpop,scandipop,swedish electropop,swedish pop",0.706,0.728,9.0,-4.551,1.0,0.0909,0.302,0.0,0.0495,0.964,157.972,4.0,,Konichiwa Records / Inertia Music,"C 2017 Konichiwa Records / Inertia Music, P 2017 Konichiwa Records / Inertia Music",79 +80,spotify:track:6ZyNjT2hYvfV5PuW84dp1E,1 Thing,spotify:artist:08rMCq2ek1YjdDBsCPVH2s,Amerie,spotify:album:7w2MdUz4qr0477ZtEY10pl,Playlist: The Very Best Of Amerie,spotify:artist:08rMCq2ek1YjdDBsCPVH2s,Amerie,2008,https://i.scdn.co/image/ab67616d0000b27393a57795b11381004fc81c8f,1,3,238746,https://p.scdn.co/mp3-preview/cef2e21106063ac165efc52161cf06afce34e2db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USSM10507441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,neo soul,r&b,urban contemporary",0.636,0.946,10.0,-4.683,0.0,0.332,0.115,3.75e-05,0.0416,0.891,125.085,5.0,,Columbia/Legacy,"P (P) 2002, 2003, 2005, 2007 SONY BMG MUSIC ENTERTAINMENT",80 +81,spotify:track:44x9GdJsYmbaYRBm8ROyfL,One Way Ticket,spotify:artist:5r1bdqzhgRoHC3YcCV6N5a,The Darkness,spotify:album:1XQdof8z0wTG0HaBoc1PHL,One Way Ticket to Hell... and Back,spotify:artist:5r1bdqzhgRoHC3YcCV6N5a,The Darkness,2005-11-28,https://i.scdn.co/image/ab67616d0000b273545ea5786e54271e27cb7f7e,1,1,266973,https://p.scdn.co/mp3-preview/68fc9e1bf02ebe8b2dc995d1866b174e607429b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBAHS0500483,spotify:user:bradnumber1,2023-01-31T06:46:46Z,"glam metal,hard rock",0.506,0.761,11.0,-5.603,1.0,0.0973,0.0122,6.87e-06,0.086,0.491,132.436,4.0,,Atlantic Records,"C © 2005 Warner Music UK Ltd, P ℗ 2005 Warner Music UK Ltd",81 +82,spotify:track:3YKQqwURGKQnxk9TKfq1gE,Two Faces Have I,spotify:artist:5bLcI9Jo6RyrrHzG9veVyn,Lou Christie,spotify:album:0KEz9QGxUgb2kcpx5bdwgC,Two Faces Have I,spotify:artist:5bLcI9Jo6RyrrHzG9veVyn,Lou Christie,2014-01-10,https://i.scdn.co/image/ab67616d0000b273b3e071c31c313540a2ccdcb9,1,1,169157,https://p.scdn.co/mp3-preview/5a63f763117074a739deca59f8d37a56e6bad6a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR6V82158585,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,doo-wop,merseybeat",0.613,0.519,5.0,-12.796,1.0,0.0362,0.717,0.426,0.112,0.964,139.564,4.0,,JB Production,"C JB Production, P JB Production",82 +83,spotify:track:0PhU6i6Kei6x0CH3jocvA3,Freedom,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,spotify:album:02f3y3NTsddjdUMoNiBppI,Make It Big,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,1984-10-23,https://i.scdn.co/image/ab67616d0000b273a2fc41b0dd6ce4f0d16a4c46,1,5,302200,https://p.scdn.co/mp3-preview/57ebb2b980fe5ced3ccda0f8fe90dc7b5639ce7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBBBN0009302,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock",0.591,0.651,0.0,-12.882,1.0,0.0424,0.42,1.94e-06,0.129,0.824,132.538,4.0,,Columbia,P (P) 1984 Sony Music Entertainment (UK) Limited,83 +84,spotify:track:2NtqZmfRIDkXJ2YvY2Kv1F,Lido Shuffle,spotify:artist:46njgd2Rq9tZc4ZjeQMgbh,Boz Scaggs,spotify:album:7DysI4j6UqK00RTfETKXqs,Silk Degrees,spotify:artist:46njgd2Rq9tZc4ZjeQMgbh,Boz Scaggs,1976,https://i.scdn.co/image/ab67616d0000b27394676ce6aa5288318b4ca52a,1,9,221613,https://p.scdn.co/mp3-preview/8fde29ce9823e64e56225ce0d882cc6c888d4203?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USSM17500569,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.593,0.783,10.0,-4.716,1.0,0.0358,0.0165,7.26e-05,0.167,0.646,141.345,4.0,,Columbia/Legacy,"P (P) 1976, 2006 SONY BMG MUSIC ENTERTAINMENT",84 +85,spotify:track:2DLkQzNRBgaAbCX4MscyTC,Slice of Heaven,spotify:artist:5bYfbDXaMVCxEt7hOAvEWc,Dave Dobbyn,spotify:album:6PtsG1TZhAWMz4Vl28cuES,Beside You,spotify:artist:5bYfbDXaMVCxEt7hOAvEWc,Dave Dobbyn,2009-10-30,https://i.scdn.co/image/ab67616d0000b273e01d1e29118f48c4eafb6077,1,18,277266,https://p.scdn.co/mp3-preview/c1f376811babf8078aaefd749e2a09500190535e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZSM08800412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,classic nz pop,kiwi rock,nz singer-songwriter",0.799,0.819,0.0,-4.363,1.0,0.0382,0.198,0.0,0.37,0.971,122.153,4.0,,Epic,P (P) 2009 Sony Music Entertainment New Zealand Limited,85 +86,spotify:track:10pSiR20z5pY7a80uysJ3P,Stone,spotify:artist:6tVsUWjip0Tnp1EyCRX5XH,Cyrus Villanueva,spotify:album:2IItyyD14pMv9NNgqjcZrv,Cyrus,spotify:artist:6tVsUWjip0Tnp1EyCRX5XH,Cyrus Villanueva,2015-12-08,https://i.scdn.co/image/ab67616d0000b2732a93bc89130a70a501dc83d5,1,1,212155,https://p.scdn.co/mp3-preview/b400cc821253efae91653a1207f00b933ad3db8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUBM01500490,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.61,0.659,7.0,-3.972,1.0,0.0295,0.0242,0.0,0.0664,0.345,97.001,4.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,86 +87,spotify:track:1jeWrScZZuhw3b55T1fv4O,Tell Him (Duet with Barbra Streisand),"spotify:artist:7jmTilWYlKOuavFfmQAcu6, spotify:artist:4S9EykWXhStSc15wEx8QFK","Barbra Streisand, Céline Dion",spotify:album:3SwxRkHbAarf3wWlInRTzA,Let's Talk About Love,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1997-10-24,https://i.scdn.co/image/ab67616d0000b273a626e7f7249adfbf2a839954,1,6,291160,https://p.scdn.co/mp3-preview/a5567de09980de38abd28dca6b78ecc45baad6ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAC229700109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,operatic pop,soft rock,canadian pop",0.261,0.38,4.0,-9.148,1.0,0.0491,0.623,0.0,0.105,0.0793,74.463,4.0,,Columbia,P 1997 Sony Music Entertainment (Canada) Inc.,87 +88,spotify:track:0uOKq55dztn2zNxpORp9F2,The Nips Are Getting Bigger,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:7aoAGNmLcBUoBCWhcWGJhb,Get Wet,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,1979-11-01,https://i.scdn.co/image/ab67616d0000b27354b6fdc4237aac6a36984065,1,1,200666,https://p.scdn.co/mp3-preview/26fc68896f19891d692015e02ed759819c678b0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUFE00000016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.825,0.689,7.0,-10.808,1.0,0.106,0.0369,0.0466,0.121,0.965,150.122,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Syray Music, P ℗ 1979 Syray Music",88 +89,spotify:track:1XNvUrCop20hAWfROW1CoV,Dance Wiv Me - Radio Edit,"spotify:artist:0gusqTJKxtU1UTmNRMHZcv, spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:5afDPnkidHjc6e43K9bSKn","Dizzee Rascal, Calvin Harris, Chrom3",spotify:album:5EKQI8I9axhDzVABDLAHKY,Dance Wiv Me,"spotify:artist:0gusqTJKxtU1UTmNRMHZcv, spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:5afDPnkidHjc6e43K9bSKn","Dizzee Rascal, Calvin Harris, Chrom3",2008,https://i.scdn.co/image/ab67616d0000b27380091af1428436cf905a9d70,1,1,203571,https://p.scdn.co/mp3-preview/20be0efb3ea6d05ca51b7fbad5280ad4fb194853?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBWHS0800003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grime,instrumental grime,dance pop,edm,electro house,house,pop,progressive house,uk dance",0.887,0.66,11.0,-6.116,1.0,0.0419,0.0486,1.14e-06,0.123,0.693,112.01,4.0,,Universal-Island Records Ltd.,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",89 +90,spotify:track:0LzeivEHO16a8eBQGlpVkE,Love Shack - Edit; 2019 Remaster,spotify:artist:3gdbcIdNypBsYNu3iiCjtN,The B-52's,spotify:album:3ueq8HNaKowofxk69MuDQs,Cosmic Thing (30th Anniversary Expanded Edition),spotify:artist:3gdbcIdNypBsYNu3iiCjtN,The B-52's,1989-06-27,https://i.scdn.co/image/ab67616d0000b273a26d957cb5eb9e27cef57217,1,12,262586,https://p.scdn.co/mp3-preview/f662aaccb02e76391d41af15b6700010f147cf0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRH11901970,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,new romantic,new wave,new wave pop,permanent wave,post-punk,rock,zolo",0.704,0.828,5.0,-7.304,0.0,0.0514,0.11,0.0,0.747,0.866,133.496,4.0,,Rhino/Warner Records,"C © 2019 Warner Records Inc., P ℗ 2019 Warner Records Inc. Marketed by Rhino Entertainment Company, A Warner Music Group Company.",90 +91,spotify:track:5pZrTiyyerSGHUJExDCOxZ,Country Grammar (Hot Shit),spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,spotify:album:2ixev48xYzspaWS6mxTPRU,Country Grammar,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2000-06-27,https://i.scdn.co/image/ab67616d0000b2733bb75f3881099847e140020b,1,4,287000,https://p.scdn.co/mp3-preview/477e81c7439a989179b38848490ba915c4edd6b8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10080452,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.865,0.664,2.0,-6.822,1.0,0.108,0.00689,0.0,0.142,0.565,162.831,4.0,,Universal Music Group,"C © 2000 Universal Records Inc., P ℗ 2000 Universal Motown Records, a division of UMG Recordings, Inc.",91 +92,spotify:track:2cGxRwrMyEAp8dEbuZaVv6,Instant Crush (feat. Julian Casablancas),"spotify:artist:4tZwfgrHOc3mvqYlEYSvVi, spotify:artist:1rAv1GhTQ2rmG94p9lU3rB","Daft Punk, Julian Casablancas",spotify:album:4m2880jivSbbyEGAKfITCa,Random Access Memories,spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,2013-05-20,https://i.scdn.co/image/ab67616d0000b2739b9b36b0e22870b9f542d937,1,5,337560,https://p.scdn.co/mp3-preview/a52d000457fc91fdb18bfaa1f690c82bf7b1a036?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USQX91300105,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electro,filter house,rock,indie rock",0.775,0.585,10.0,-9.516,0.0,0.0271,0.0422,0.619,0.077,0.518,109.942,4.0,,Columbia,"P (P) 2013 Daft Life Limited under exclusive license to Columbia Records, a Division of Sony Music Entertainment",92 +93,spotify:track:1ezeinbhS1HhWzA8yQIzA7,Michelle,spotify:artist:6CZ47nllxoNELmf1dScwPh,The Overlanders,spotify:album:0OFTdFceJ8clEpDlxq5hi8,Original Hits: 1966,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-05-04,https://i.scdn.co/image/ab67616d0000b2736695125f1e02be3808cf313f,1,11,141663,https://p.scdn.co/mp3-preview/0c35530eef4a4a589d49238e669aec9e3e484cb0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6600142,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.528,0.507,6.0,-7.558,0.0,0.0269,0.771,0.0,0.191,0.486,61.007,4.0,,Sanctuary Records,"C © 2015 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2015 Sanctuary Records Group Ltd., a BMG Company",93 +94,spotify:track:56zrJ2upO5VssMnqowOZOH,Things That Make You Go Hmmm,"spotify:artist:7krx6UBDKLwE0q3s3fesqF, spotify:artist:08MVPakTEdRJimQNV61NFR","C & C Music Factory, Freedom Williams",spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,13,325120,https://p.scdn.co/mp3-preview/fc46d84a2a9b8b416ccdd844e71379e4859065ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19000852,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,freestyle,hip house,hip house",0.808,0.931,1.0,-7.462,1.0,0.053,0.117,0.000151,0.356,0.97,113.331,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",94 +95,spotify:track:2H9CKpZiLDF223BbwehpDF,Hush Hush; Hush Hush / I Will Survive - Medley,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,spotify:album:760FDehnzYHkDsDqfE1KkU,Hush Hush; Hush Hush,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2009-01-01,https://i.scdn.co/image/ab67616d0000b273a8856c66d4453e3c7f8774df,1,1,252093,https://p.scdn.co/mp3-preview/331b0dac276291c8b9a55f5ddd66607841728d8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUM70963699,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.613,0.778,10.0,-3.933,0.0,0.0689,0.0985,0.0,0.356,0.626,129.483,4.0,,Pussycat Dolls LP2 / Timbaland,"C © 2009 Pussycat Dolls, LLC, P ℗ 2009 Pussycat Dolls, LLC",95 +96,spotify:track:1kj3ASwCuqDnzehRd3WIz3,Second Solution,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:4NrwcdtcWnfQvMxqQwF8x7,The Living End,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,1999-01-15,https://i.scdn.co/image/ab67616d0000b273049c676bbe6d94b46e4d9b6e,1,3,178733,https://p.scdn.co/mp3-preview/c7c6801472320106427a383a6773a75e0bf437f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUMPO9800006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,australian ska",0.228,0.942,7.0,-4.602,1.0,0.0442,0.00657,0.0,0.176,0.942,203.898,4.0,,Reprise,"C © 1999 Reprise Records, P ℗ 1998, 1999 Reprise Records",96 +97,spotify:track:0SZIQOLgjT6awjwInBsSjV,You're The Best Thing,spotify:artist:3loflELg7MzgrOyNqERolN,The Style Council,spotify:album:6tF9nPl6x7ACsKZ8alL1he,Cafe Bleu,spotify:artist:3loflELg7MzgrOyNqERolN,The Style Council,1984-01-01,https://i.scdn.co/image/ab67616d0000b2739b0908b5b716dab57c2d0005,1,10,340626,https://p.scdn.co/mp3-preview/378c4115cf348a68f0f4da57982925ffaa0340b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW8400002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,sophisti-pop",0.604,0.723,1.0,-6.458,0.0,0.0358,0.432,3.96e-05,0.102,0.68,83.455,4.0,,Universal Music Group,"C © 1984 Polydor Ltd. (UK), P ℗ 1984 Polydor Ltd. (UK)",97 +98,spotify:track:2QLEN3RVunMas7j0PHjeAT,C'mon N' Ride It (The Train),spotify:artist:4mar1GMMEhvGyJdWagu6KS,Quad City DJ's,spotify:album:1xipzu4eNAdr8oBnqP0eaS,Get On Up And Dance,spotify:artist:4mar1GMMEhvGyJdWagu6KS,Quad City DJ's,1996-06-18,https://i.scdn.co/image/ab67616d0000b273f6eb72342d4ff41658c37193,1,1,451440,https://p.scdn.co/mp3-preview/b6cdc9bcc2dca7a828691afd84abcdba8adf6e75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USAT20103455,spotify:user:bradnumber1,2021-08-08T09:26:31Z,miami bass,0.843,0.959,6.0,-4.933,0.0,0.0914,0.0913,0.0,0.408,0.923,135.988,4.0,,Big Beat Records/Atlantic,"C © 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States and Canada., P ℗ 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States and Canada.",98 +99,spotify:track:4AGkYEPy8SPf0JADQNsw2q,Super Love,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:2PCEQRUPOjYYW3qCT8PLgc,Heart Beats,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2014-10-14,https://i.scdn.co/image/ab67616d0000b2730138717dc69fa031dae80a4d,1,1,204986,https://p.scdn.co/mp3-preview/89be8698dcce79c1e19395c3c8d68c1c9389504f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUBM01400099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.584,0.734,8.0,-5.033,1.0,0.0323,0.0129,0.0,0.147,0.481,127.044,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,99 +100,spotify:track:3c4OULLWwgRqBfA2dJtRuY,Love Is In The Air,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,spotify:album:28L7sCuuF8Zt6dW1FuZqRh,I Hate the Music,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,2009-09-18,https://i.scdn.co/image/ab67616d0000b273c6cd995a8ad657da9a0c10f4,1,12,210293,https://p.scdn.co/mp3-preview/232f9f979ad1c8a70315eca897524b25d708cbc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,AUAP07800004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,classic uk pop",0.557,0.791,0.0,-7.201,1.0,0.0389,0.0254,0.000269,0.0603,0.89,122.337,4.0,,Albert Productions,"C © 2009 BMG AM Pty Ltd., P ℗ 2009 BMG AM Pty Ltd.",100 +101,spotify:track:3tFECpGckFpp0HpQje78gi,Forever Young,spotify:artist:51K48NCxjB11t9eqUWWoIq,Youth Group,spotify:album:7JgWdCGMBwJkYb91oiFzxd,Casino Twilight Dogs,spotify:artist:51K48NCxjB11t9eqUWWoIq,Youth Group,2007-01-30,https://i.scdn.co/image/ab67616d0000b273afe44166f2ba6223a0ed85b6,1,8,239120,https://p.scdn.co/mp3-preview/6dd8feeb953297968da0e4f270f5264f648a0ece?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USEP40638108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.379,0.664,11.0,-6.863,1.0,0.0307,0.0167,0.000679,0.0915,0.301,115.272,4.0,,Anti/Epitaph,"C 2007 Epitaph, P 2007 Epitaph",101 +102,spotify:track:66xn6tB8s3l8uhj02OGneE,For You (Fifty Shades Freed) (& Rita Ora),"spotify:artist:5pUo3fmmHT8bhCyHE52hA6, spotify:artist:5CCwRZC6euC8Odo6y9X8jr","Liam Payne, Rita Ora",spotify:album:4w0N1CaZwQ5RPIuawqlYyy,Fifty Shades Freed (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-02-09,https://i.scdn.co/image/ab67616d0000b2736cd9798b6ace10ff98d1abdd,1,2,245453,https://p.scdn.co/mp3-preview/7dfa7d8a0ee05272ee21b880654dd3c74285f902?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USQ4E1703341,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,pop,uk pop",0.542,0.787,2.0,-4.618,0.0,0.0331,0.0167,0.0,0.157,0.2,112.999,4.0,,Republic/Universal/FSF,"C © 2018 Universal Studios and Republic Records, a division of UMG Recordings, Inc., P This Compilation ℗ 2018 Universal Studios and Republic Records, a division of UMG Recordings, Inc.",102 +103,spotify:track:070QivFOnOdtVznpnrUMCO,Bad Habits,spotify:artist:72TwyCcvk2jm4gZSGEPjhb,Billy Field,spotify:album:7hAICaEutBvl4BOVKIaJ7J,Underbelly - A Tale of Two Cities,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-03-19,https://i.scdn.co/image/ab67616d0000b2735e5a4f7174a63752a5a578de,1,15,208253,https://p.scdn.co/mp3-preview/18cc0d7105176bb58c64818f5368b2b97768a15b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUCW00600204,spotify:user:bradnumber1,2020-03-05T09:20:32Z,australian rock,0.565,0.601,10.0,-6.218,1.0,0.0378,0.295,0.0,0.147,0.776,164.981,4.0,,Level Two Music,P (P) 2009 Level Two Music,103 +104,spotify:track:0a75KbBW12Hc8QtrD1gwAJ,I Wanna Do It with You,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,spotify:album:28L7sCuuF8Zt6dW1FuZqRh,I Hate the Music,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,2009-09-18,https://i.scdn.co/image/ab67616d0000b273c6cd995a8ad657da9a0c10f4,1,5,181906,https://p.scdn.co/mp3-preview/392bc263884451f83b54b067a7038db2380ae32e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,classic uk pop",0.745,0.892,1.0,-5.817,1.0,0.0452,0.759,0.00793,0.362,0.923,129.423,4.0,,Albert Productions,"C © 2009 BMG AM Pty Ltd., P ℗ 2009 BMG AM Pty Ltd.",104 +105,spotify:track:3RauEVgRgj1IuWdJ9fDs70,The Man,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1NAmidJlEaVgA3MpcPFYGq,Lover,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2019-08-23,https://i.scdn.co/image/ab67616d0000b273e787cffec20aa2a396a61647,1,4,190360,https://p.scdn.co/mp3-preview/8eed78d771b1fc7b51cfe4bcf198611ac243acec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USUG11901474,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.777,0.658,0.0,-5.191,1.0,0.054,0.0767,0.0,0.0901,0.633,110.048,4.0,,Taylor Swift,"C © 2019 Taylor Swift, P ℗ 2019 Taylor Swift",105 +106,spotify:track:1ofagnzl7oj7z1MtwGesHX,Maria,spotify:artist:3g4Os4LNZvOQUaokeSLCwG,P.J. Proby,spotify:album:096XgmUiVnM8055Jebhyzx,In Town / Enigma,spotify:artist:3g4Os4LNZvOQUaokeSLCwG,P.J. Proby,1994,https://i.scdn.co/image/ab67616d0000b273635a9b3b57f504a59361a36e,1,11,217573,https://p.scdn.co/mp3-preview/93852f6f67ebcd2e90d5b978e2cc292751776a99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBVVQ1700070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"merseybeat,rock-and-roll",0.214,0.223,2.0,-13.371,1.0,0.0307,0.915,0.0,0.136,0.181,100.065,3.0,,See For Miles,"C 1994 See For Miles Records Ltd, P 1994 See For Miles Records Ltd",106 +107,spotify:track:3iA4foXIFpekwHyma7pRs1,Overkill,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,spotify:album:4GDchmJ8oESRJ58cDXvnE0,Cargo,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,1983,https://i.scdn.co/image/ab67616d0000b273d6484fa762c216ccb6b0dd45,1,2,229466,https://p.scdn.co/mp3-preview/b9844114dd6b25047e659f75649a12ac10790281?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM18200071,spotify:user:bradnumber1,2023-06-30T13:03:06Z,"album rock,australian rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,rock,soft rock",0.646,0.809,1.0,-3.99,0.0,0.0282,0.0854,0.0,0.0806,0.588,139.2,4.0,,Columbia/Legacy,"P (P) 1982, 1983, 2003 SONY BMG MUSIC ENTERTAINMENT",107 +108,spotify:track:6XrWIKoIwqomse4ZmBnjQd,Life Goes On,spotify:artist:7ASucWaI33cepJbo74Hlo0,E^ST,spotify:album:4R9XQ0jz7PgVJ82UtIZFaM,Life Goes On,spotify:artist:7ASucWaI33cepJbo74Hlo0,E^ST,2017-09-29,https://i.scdn.co/image/ab67616d0000b273f937fcfe85c48f3939f886af,1,1,210455,https://p.scdn.co/mp3-preview/88c6f0caea375b26e8b0c6ec40503ab6de806d11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUWA01700192,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.701,0.605,0.0,-6.024,1.0,0.0297,0.653,0.0,0.0753,0.505,106.968,4.0,,WM Australia,"C © 2017 Warner Music Australia Pty Limited, P ℗ 2017 Warner Music Australia Pty Limited",108 +109,spotify:track:27L8sESb3KR79asDUBu8nW,Stacy's Mom,spotify:artist:1pgtr4nhBQjp9oCUBPyYWh,Fountains Of Wayne,spotify:album:6TZp52tXShLQbq8yNMxqNT,Welcome Interstate Managers,spotify:artist:1pgtr4nhBQjp9oCUBPyYWh,Fountains Of Wayne,2003-01-01,https://i.scdn.co/image/ab67616d0000b273079e826265dffc3a8a26bac5,1,3,197986,https://p.scdn.co/mp3-preview/7413b51c07234686ff22b18a5627492a0d7b017a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USESC0300016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,power pop",0.774,0.75,11.0,-4.927,0.0,0.0412,0.00207,1.78e-05,0.0808,0.927,118.015,4.0,,S-Curve Records,"C © 2003 S-Curve 2, P ℗ 2003 EMI Music North America",109 +110,spotify:track:0ZUjPkZKjzRi6bgIuJovfY,How Can We Be Lovers,spotify:artist:6YHEMoNPbcheiWS2haGzkn,Michael Bolton,spotify:album:5g9LXOhTPW9Iow6GZPRg2D,Soul Provider,spotify:artist:6YHEMoNPbcheiWS2haGzkn,Michael Bolton,1989-06-27,https://i.scdn.co/image/ab67616d0000b273e29b51efdf81e17c63880ef0,1,5,235626,https://p.scdn.co/mp3-preview/e09a7628f701828fe551bc4811dff5186e028822?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM18900017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.399,0.708,0.0,-10.541,0.0,0.0387,0.118,0.0,0.179,0.688,207.424,4.0,,Columbia,P (P) 1989 Sony Music Entertainment Inc.,110 +111,spotify:track:46LTPfvrxlgNLyIGBup4O2,Teenage Crime,spotify:artist:5kp9Qhzri9LrDkzrtjt5Sh,Adrian Lux,spotify:album:3PkihmRbn1fBM07FHktcvf,Adrian Lux,spotify:artist:5kp9Qhzri9LrDkzrtjt5Sh,Adrian Lux,2012-01-01,https://i.scdn.co/image/ab67616d0000b273fbb35fef34df7e6d7bb4fc41,1,3,168920,https://p.scdn.co/mp3-preview/f30603a52180e33a597bafba6177742a7e2a3a1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBKCF1000152,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.647,0.843,2.0,-4.801,1.0,0.0364,0.0192,0.686,0.104,0.328,128.015,4.0,,Ministry Of Sound,"C © 2012 Ultra Records Inc., P ℗ 2012 Ultra Records Inc., under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd",111 +112,spotify:track:2a1o6ZejUi8U3wzzOtCOYw,Danza Kuduro,"spotify:artist:33ScadVnbm2X8kkUqOkC6Z, spotify:artist:5bv5RplEOwdCvhq0EILh9E","Don Omar, Lucenzo",spotify:album:6mGDfbDErYIJsmSewvccWm,Meet The Orphans,spotify:artist:33ScadVnbm2X8kkUqOkC6Z,Don Omar,2010-01-01,https://i.scdn.co/image/ab67616d0000b2734640a26eb27649006be29a94,1,12,198773,https://p.scdn.co/mp3-preview/233463331fb88a8868992fa066f06d26d389c9ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USUM71020778,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin hip hop,puerto rican pop,reggaeton,trap latino,urbano latino,reggaeton",0.4,0.915,0.0,-4.89,1.0,0.279,0.083,0.0,0.0503,0.871,89.006,3.0,,UMLE - Machete,"C © 2010 Machete Music, P ℗ 2010 Machete Music",112 +113,spotify:track:1iola53QSlUVnceCbxr15K,Buy Me A Pony,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,spotify:album:2Nj9YgW5fgFbnGv8xO6tek,Greatest Hits,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,2005-01-01,https://i.scdn.co/image/ab67616d0000b273b3a1594c9b9187a6a07e79d3,1,10,105200,https://p.scdn.co/mp3-preview/efdcc482d41760e89c56f266fbaf2dba5470a700?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUPO09620230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.485,0.935,7.0,-3.62,1.0,0.0414,0.00183,0.873,0.0915,0.97,158.427,4.0,,Universal Music Group,"C © 2005 Universal Music Australia Pty Ltd., P ℗ 2005 Universal Music Australia Pty Ltd.",113 +114,spotify:track:3PfERRzizJqTx0fuRmBgtH,You're so Vain,spotify:artist:31Qm8tlnFdAbGPok6Rfhz3,Chocolate Starfish,spotify:album:4djRLJLSGUAkT6MMiorGLX,Chocolate Starfish,spotify:artist:31Qm8tlnFdAbGPok6Rfhz3,Chocolate Starfish,2017-04-11,https://i.scdn.co/image/ab67616d0000b273d7523cde1c32f5ecd7447b6c,1,7,249160,https://p.scdn.co/mp3-preview/ad3f93e7c933fe96b255466d5543f70043471a83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,uscgj1784433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.674,0.844,0.0,-7.473,1.0,0.0727,0.116,0.00524,0.0805,0.595,107.888,4.0,,Chocolate Starfish,"C 2017 Chocolate Starfish, P 2017 Chocolate Starfish",114 +115,spotify:track:0C3nGIOCvSsRwc0zpAJ9Db,Got to Get It,spotify:artist:0BZ3BHzfYwpd3k5TDnvAz8,Culture Beat,spotify:album:4dButnBmVJox87ObbC9vTr,Serenity,spotify:artist:0BZ3BHzfYwpd3k5TDnvAz8,Culture Beat,1993,https://i.scdn.co/image/ab67616d0000b27355fce527065d0f792af677b9,1,3,321426,https://p.scdn.co/mp3-preview/d8a8883051f52e3d922f4a0bee187e9b5408b2e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEPT99300134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,german techno,hip house",0.668,0.909,9.0,-9.925,0.0,0.0397,0.000705,0.0448,0.235,0.541,132.865,4.0,,Abfahrt Media,"C 2012 Abfahrt Media GmbH, P 2012 Abfahrt Media GmbH",115 +116,spotify:track:0QdePZJfBpRIBautuT4FSx,Angels Like You,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:0BCjAmbM8ryCM9gxy5yW7h,Plastic Hearts,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2020-11-27,https://i.scdn.co/image/ab67616d0000b27350061ccded678a361a2009ec,1,3,196453,https://p.scdn.co/mp3-preview/4db8314199c0d49e95c786792ecd06eadae9f510?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USRC12003754,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.672,0.642,5.0,-4.035,1.0,0.0313,0.0981,0.0,0.1,0.494,121.981,4.0,,RCA Records Label,"P (P) 2020 RCA Records, a division of Sony Music Entertainment",116 +117,spotify:track:2EnaF6Nll7GTSAyaXvd2qW,Circles on the Water,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,spotify:album:3p56kf3Vm4ejOOgGkIzrI3,Circles on the Water,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,2017-05-26,https://i.scdn.co/image/ab67616d0000b273fbbb74fb0b223bb7146eb58e,1,1,219865,https://p.scdn.co/mp3-preview/8800174efeceacaed5dac403a2d31b2d62edee00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUBM01700492,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.611,0.583,1.0,-8.529,1.0,0.316,0.113,3.41e-05,0.125,0.263,114.967,4.0,,Sony Music Entertainment,P (P) 2017 Sony Music Entertainment Australia Pty Ltd,117 +118,spotify:track:3xgKCfRwbqie54nHtSLnhM,Playboy,spotify:artist:0MponVSpW81oLvJZ53vYZH,The Marvelettes,spotify:album:4lQGx8rNgekiFN6Zk9BV7y,Playboy,spotify:artist:0MponVSpW81oLvJZ53vYZH,The Marvelettes,1962-01-01,https://i.scdn.co/image/ab67616d0000b273279d61161b1f748218184488,1,1,164840,https://p.scdn.co/mp3-preview/c782a625147734cb3ff0ca4fec1fca6644c0e224?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16270001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,motown,soul,southern soul",0.867,0.702,0.0,-5.625,1.0,0.0531,0.356,0.0,0.06,0.939,123.842,4.0,,Universal Music Group,"C © 1962 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1962 Motown Records, a Division of UMG Recordings, Inc.",118 +119,spotify:track:0ErrsvDylBWZeAUYbqLllv,Part-Time Lover,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:7JfvlSXZufIMTzPdwRqyPH,In Square Circle,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1985-09-13,https://i.scdn.co/image/ab67616d0000b27320d7b5c90865bf7465180896,1,1,252560,https://p.scdn.co/mp3-preview/77257eb3b4801647b278a2b5c32714b6adf93626?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18500543,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.662,0.624,10.0,-13.606,0.0,0.0417,0.165,0.0,0.0674,0.961,174.513,4.0,,Universal Music Group,"C © 1985 The Motown Record Company LP, P ℗ 1985 The Motown Record Company LP",119 +120,spotify:track:5lm8SfB4FoPbUcSDKTO8c4,Night of My Life,spotify:artist:5XVcYaeSTGZXwxd63aY9Tv,Damien Leith,spotify:album:0wNiJEdRcrsry9vzn3L45x,Night Of My Life,spotify:artist:5XVcYaeSTGZXwxd63aY9Tv,Damien Leith,2006-12-02,https://i.scdn.co/image/ab67616d0000b27318587c14aac2e0800278b1dc,1,1,214613,https://p.scdn.co/mp3-preview/9ad2cf29e5f4552aada9bd960bd4ecc5dc2ace92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUBM00600967,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.416,0.559,0.0,-5.787,1.0,0.0267,0.00341,0.0,0.2,0.282,168.142,4.0,,Sony BMG Music Entertainment,P (P) 2006 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,120 +121,spotify:track:6qI0MU175Dk2DeoUjlrOpy,911,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:05c49JgPmL4Uz2ZeqRx5SP,Chromatica,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2020-05-29,https://i.scdn.co/image/ab67616d0000b2736040effba89b9b00a6f6743a,1,8,172133,https://p.scdn.co/mp3-preview/4f4548f7f1abd44a15b02e859b130539bff7719a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USUM72004307,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.789,0.813,5.0,-4.563,1.0,0.0374,0.0294,2.07e-06,0.519,0.42,116.007,4.0,,Interscope,"C © 2020 Interscope Records, P ℗ 2020 Interscope Records",121 +122,spotify:track:3Pas9u4vk4hKEIa5OtKRFF,Total Eclipse of the Heart,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,spotify:album:2W3smztLjzbuAQTIme3Pkp,4 Hits,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,2011-09-16,https://i.scdn.co/image/ab67616d0000b27313f1437bb5d4e6788b113229,1,1,270546,https://p.scdn.co/mp3-preview/42af1cbc20498d5e7de081f39b218ab035c9a57a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBN8300025,spotify:user:bradnumber1,2021-08-08T09:27:48Z,"europop,new wave pop,soft rock",0.428,0.644,8.0,-7.582,1.0,0.0628,0.205,0.0,0.119,0.113,129.432,4.0,,Sony Music UK,P This Compilation (P) 2011 Sony Music Entertainment UK Limited,122 +123,spotify:track:7L4NzRGuukFbw4pRylIjlN,Don't Pay The Ferryman,spotify:artist:2RpHsROrX075xfIwHn6B2U,Chris de Burgh,spotify:album:3azZV6V1yvATlE05bmWMCR,The Getaway,spotify:artist:2RpHsROrX075xfIwHn6B2U,Chris de Burgh,1982-01-01,https://i.scdn.co/image/ab67616d0000b273855a98cce5aa258db61ef9a3,1,1,231333,https://p.scdn.co/mp3-preview/29841ec0fede85051e81fef7cb63fffb6fdf4f79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM8201059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.535,0.721,4.0,-10.823,0.0,0.0402,0.123,0.000185,0.665,0.793,151.996,4.0,,Virgin EMI,"C © 1982 A&M Records Ltd., P ℗ 1982 A&M Records Ltd.",123 +124,spotify:track:1LeWIs2hP2r5yOQnVuYoI5,Ain't No Mountain High Enough,"spotify:artist:3koiLjNrgRTNbOwViDipeA, spotify:artist:75jNCko3SnEMI5gwGqrbb8","Marvin Gaye, Tammi Terrell",spotify:album:67Eq3nfl1km9s5ig76Cc8B,United,"spotify:artist:3koiLjNrgRTNbOwViDipeA, spotify:artist:75jNCko3SnEMI5gwGqrbb8","Marvin Gaye, Tammi Terrell",1967-08-29,https://i.scdn.co/image/ab67616d0000b27396e0b7befe3ba88f5a7d5a3f,1,1,151666,https://p.scdn.co/mp3-preview/7301aee11d8646c25071e0825b0794aa609092db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16700534,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,neo soul,northern soul,quiet storm,soul,classic soul,motown,soul,southern soul",0.663,0.6,7.0,-10.87,1.0,0.032,0.43,0.0,0.184,0.8,129.991,4.0,,Motown (Capitol),"C © 1967 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1967 Motown Records, a Division of UMG Recordings, Inc.",124 +125,spotify:track:6XZpVCFrDf2XMtyaX1Wst0,It's Too Late,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,spotify:album:15rNvcWvKVyqKsXtjUfmvS,Dreams,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,2004-09-24,https://i.scdn.co/image/ab67616d0000b27326f117ac50bc8e66ae1b78b5,1,2,235333,https://p.scdn.co/mp3-preview/c7a88c74a31efafae04f72e51a0c58f84248e699?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA00413730,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,kiwi rock",0.539,0.714,8.0,-4.925,0.0,0.0278,0.0489,0.000594,0.17,0.592,139.055,4.0,,WEA,"C © 2004 Evermore Music, P ℗ 2004 Evermore Music",125 +126,spotify:track:2DUbzMIzQz7k28KKF2fpgo,You Don't Have to Say You Love Me,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:4GV0xppHWngvgnPgAqvGxA,The Essential Elvis Presley 3.0,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2007,https://i.scdn.co/image/ab67616d0000b2736c913d9774adb30adab567ad,3,8,150533,https://p.scdn.co/mp3-preview/6d40f63d6c9032deed1bd0ea00df3c9183b91b05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC19808586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.321,0.563,5.0,-10.637,0.0,0.0496,0.589,0.00387,0.348,0.687,115.813,3.0,,RCA/Legacy,P (P) 2007 Sony Music Entertainment,126 +127,spotify:track:6IiCb4PCrDgqLuDWgHhFi7,Inside Out (feat. Griff),"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:5RJFJWYgtgWktosLrUDzff","Zedd, Griff",spotify:album:4eAf9fHtOj0mVTSV3cB2km,Inside Out (feat. Griff),"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:5RJFJWYgtgWktosLrUDzff","Zedd, Griff",2020-10-23,https://i.scdn.co/image/ab67616d0000b273c0144e6a8931844424c1d2f0,1,1,186245,https://p.scdn.co/mp3-preview/b0d3e3ba3016c508f10c9dbf557af84ccb96e6a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USUM72019501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,alt z,uk pop",0.64,0.683,2.0,-4.309,1.0,0.0434,0.169,0.0,0.109,0.4,146.058,4.0,,Interscope Records,"C © 2020 Interscope Records, P ℗ 2020 Interscope Records",127 +128,spotify:track:0Oc2t0ffBfnFKthTFB87zZ,Fingertips - Original Studio Version,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:59kGZJG2VznHMuQReabL55,The Jazz Soul Of Little Stevie,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1962-09-01,https://i.scdn.co/image/ab67616d0000b27312972ed2d0264bfd6e728d23,1,1,176040,https://p.scdn.co/mp3-preview/e9ee20126c7a17b62c5244c4ec9dadcba1d319dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO10300405,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.521,0.696,5.0,-9.317,1.0,0.0285,0.597,4.96e-05,0.367,0.856,79.941,4.0,,Universal Music Group,"C © 1962 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1962 Motown Records, a Division of UMG Recordings, Inc.",128 +129,spotify:track:4Q0aYLHFOadFypiCpv4Rb7,Another Man (feat. Megan Joy) (feat. Megan Joy),"spotify:artist:0TAITmVrG10TK5kngOwpPr, spotify:artist:49viEfjH2H3YgB52Cj0IZH","Itch, Megan Joy",spotify:album:41Wm88AxOWl6JK2LaM6Q1F,Another Man (feat. Megan Joy) (feat. Megan Joy),spotify:artist:0TAITmVrG10TK5kngOwpPr,Itch,2014-08-01,https://i.scdn.co/image/ab67616d0000b273247a9e7f03dfab17aa93fdbe,1,1,188166,https://p.scdn.co/mp3-preview/a21f2fb653071f07a7762249546e98a01f1150bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USP6L1300131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,idol,0.536,0.941,11.0,-3.8,0.0,0.117,0.0082,0.0,0.246,0.799,148.06,4.0,,Red Bull Records,"P (P) 2013 Red Bull Records, Inc.",129 +130,spotify:track:4vHMbItY3W8VfxFuH2kQn6,I Go To Rio,spotify:artist:6748v9yNrbb4PPJuvfoMRa,Peter Allen,spotify:album:2TEO7y7MfqIGogslg9Jm9j,At His Best,spotify:artist:6748v9yNrbb4PPJuvfoMRa,Peter Allen,1993-01-01,https://i.scdn.co/image/ab67616d0000b2731b51b668c70033f14e859173,1,17,383933,https://p.scdn.co/mp3-preview/1a13c5505cd6b3ae986d0a140de80cd17a85630e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM17700337,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep soft rock,0.549,0.902,10.0,-6.898,1.0,0.0531,0.107,0.0582,0.959,0.767,136.449,4.0,,Universal Music Group,"C © 1993 A&M Records, P ℗ 1993 A&M Records",130 +131,spotify:track:79hJaqmVdohltPBNN6BULM,"Stayin' Alive - From ""Saturday Night Fever"" Soundtrack",spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:5DDYh6LgANWIVRo0k3MGyv,Tales From The Brothers Gibb,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1990-10-01,https://i.scdn.co/image/ab67616d0000b273c7fc603f96d9a75ea2bfdffa,3,9,281666,https://p.scdn.co/mp3-preview/e585ea463bd758c453633508f203a643dbfd37b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,NLF057790034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.708,0.567,10.0,-15.539,0.0,0.0355,0.07,0.00105,0.152,0.955,103.606,4.0,,Bee Gees Catalog,"C © 1990 UMG Recordings, Inc., P This Compilation ℗ 1990 UMG Recordings, Inc.",131 +132,spotify:track:0nbXyq5TXYPCO7pr3N8S4I,The Box,spotify:artist:757aE44tKEUQEqRuT6GnEB,Roddy Ricch,spotify:album:52u4anZbHd6UInnmHRFzba,Please Excuse Me for Being Antisocial,spotify:artist:757aE44tKEUQEqRuT6GnEB,Roddy Ricch,2019-12-06,https://i.scdn.co/image/ab67616d0000b273600adbc750285ea1a8da249f,1,2,196652,https://p.scdn.co/mp3-preview/6306fda4df77cbcaf47c8b9fa3575ce457504c9c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,82,USAT21906978,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"melodic rap,rap,trap",0.896,0.586,10.0,-6.687,0.0,0.0559,0.104,0.0,0.79,0.642,116.971,4.0,,Atlantic Records,"C © 2019 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2019 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",132 +133,spotify:track:3OalxlWH0v14kyBcNBMINt,Mercy,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:0S9QJQiRmG9JYYfJfKqhDF,Illuminate (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2016-09-23,https://i.scdn.co/image/ab67616d0000b2738a24ed638eedd60514a789ef,1,2,208733,https://p.scdn.co/mp3-preview/7814718df164c0b2e3543430b3482b4b6f6f5717?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71603531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.562,0.681,11.0,-4.934,0.0,0.0871,0.113,0.0,0.11,0.357,148.064,4.0,,Universal Music Group,"C © 2016 Island Records, a division of UMG Recordings, Inc., P ℗ 2016 Island Records, a division of UMG Recordings, Inc.",133 +134,spotify:track:1OFKUn2VLafrHj7ybnap0Q,Only Wanna Be With You,spotify:artist:08ct2eZF5lUPdJpHwNKWof,Hootie & The Blowfish,spotify:album:5AYmpTfdv1OoASUJ5rZB7K,Cracked Rear View,spotify:artist:08ct2eZF5lUPdJpHwNKWof,Hootie & The Blowfish,1994-07-01,https://i.scdn.co/image/ab67616d0000b273820d2376b2fb84aa99823903,1,4,229586,https://p.scdn.co/mp3-preview/1914feba3e47c85f20858ea8438190be7b405b91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT29400023,spotify:user:bradnumber1,2022-08-26T01:29:14Z,"pop rock,post-grunge",0.49,0.873,6.0,-5.861,1.0,0.0355,0.107,5.19e-06,0.118,0.513,103.272,4.0,,Atlantic Records,"C © 1994 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved. Made in U.S.A. Warning: Unauthorized reproduction of this recording is prohibited by Federal law and subject to criminal prosecution. 82613-2, P ℗ 1994 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved. Made in U.S.A. Warning: Unauthorized reproduction of this recording is prohibited by Federal law and subject to criminal prosecution. 82613-2",134 +135,spotify:track:0TJRfA2MIIRd3tTDK9tPPf,Angels Cry Remix - Remix,"spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:21E3waRsmPlU7jZsS13rcj","Mariah Carey, Ne-Yo",spotify:album:3SxgnytOcu80ARVznoU6P0,Angels Cry Remix feat. Ne-Yo,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2010-01-01,https://i.scdn.co/image/ab67616d0000b273778ca59df3643b42abb96d45,1,1,233746,https://p.scdn.co/mp3-preview/50ab946032b6860ab6027406f86e81006174f08d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USUM71001657,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,dance pop,pop,r&b,urban contemporary",0.368,0.53,0.0,-7.242,1.0,0.102,0.0814,0.0,0.377,0.325,85.381,4.0,,Def Jam Recordings,"C © 2010 Mariah Carey, P ℗ 2010 The Island Def Jam Music Group and Mariah Carey",135 +136,spotify:track:7rGOWzo4evAQQ2FzrSKp0B,Tell Him - Single Version,spotify:artist:2GF1B0GIaFrLFLdfH6ufRO,The Exciters,spotify:album:1i2c4K7HnASzLOo6cagJVg,Tell Him,spotify:artist:2GF1B0GIaFrLFLdfH6ufRO,The Exciters,2012-01-01,https://i.scdn.co/image/ab67616d0000b273134320d50562d6b2dfbdd2a9,1,1,156160,https://p.scdn.co/mp3-preview/5a6a2a4837570bec4d1cc0adb34e72d9ed4c7ec9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USEM39100180,spotify:user:bradnumber1,2023-02-14T22:29:38Z,"classic girl group,northern soul",0.708,0.616,5.0,-10.827,1.0,0.198,0.445,0.0,0.299,0.908,177.061,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",136 +137,spotify:track:6UaRii9AH6Zss9xNMEQ2M9,Love The Way You Lie,"spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Eminem, Rihanna",spotify:album:3PogVmhNucYNfyywZvTd7F,Recovery,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2010-06-18,https://i.scdn.co/image/ab67616d0000b273f20b0a39716f7958ddda8c16,1,15,263373,https://p.scdn.co/mp3-preview/3824afd426e7ebbba4e107f811f7506ea3416db0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,1,USUM71015397,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap,barbadian pop,pop,urban contemporary",0.746,0.922,10.0,-5.014,1.0,0.236,0.246,0.0,0.515,0.638,86.961,4.0,,Universal Music Group,"C © 2010 Aftermath Records, P ℗ 2010 Aftermath Records",137 +138,spotify:track:1RxSnx3hSCwX2DcG9tvpbD,Gonna See My Baby Tonight,spotify:artist:6LUNCFwAUUaWSDtaOcTpJH,The La De Da's,spotify:album:4VwYQoCQ0InDib6evYGRD9,Legend,spotify:artist:6LUNCFwAUUaWSDtaOcTpJH,The La De Da's,1975-01-01,https://i.scdn.co/image/ab67616d0000b273561e570ae6839e8f2b1c7f62,1,1,197266,https://p.scdn.co/mp3-preview/bcaa9a7ab302d02da0057914da69a5dd62a3da56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,NZUM71700146,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic nz pop,0.688,0.651,7.0,-10.397,1.0,0.112,0.0816,5.27e-06,0.103,0.661,120.943,4.0,,Universal Music New Zealand Limited,"C © 1975 EMI Australia Ltd., P ℗ 1975 EMI Australia Ltd.",138 +139,spotify:track:7xx8JqaauSj5Ay8Efnm0hr,Broken (feat. Amy Lee),"spotify:artist:6B5c4sch27tWHAGdarpPaW, spotify:artist:0fGVuq5ed21pM7iWwTcMyk","Seether, Amy Lee",spotify:album:0Txt9JXCp8TXBfEIuLxl9z,Seether: 2002 - 2013,spotify:artist:6B5c4sch27tWHAGdarpPaW,Seether,2013-09-29,https://i.scdn.co/image/ab67616d0000b273c86d3f10ca1cf144edc3710b,1,4,258516,https://p.scdn.co/mp3-preview/10797f1b597731900a2d8c76649e3ea90dee109c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU31300101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,south african rock,hel",0.436,0.584,3.0,-3.728,0.0,0.0343,0.00919,0.000257,0.172,0.184,123.777,4.0,,Cooking Vinyl,"C 2013 Wind-Up Records LLC under exclusive licence to Cooking Vinyl Limited, P 2013 Wind-Up Records LLC under exclusive licence to Cooking Vinyl Limited",139 +140,spotify:track:1tOT50hl9UG9kGif08Fan5,Higher,"spotify:artist:7dlqUnjoF2U2DkNDMhcgG4, spotify:artist:4sOcMLlr0hMwrLXScjAgoq","Hilltop Hoods, James Chatburn",spotify:album:4ijUWjOHZ5VnUADcOsL1vS,"Drinking From The Sun, Walking Under Stars Restrung",spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2016-02-19,https://i.scdn.co/image/ab67616d0000b273eb0652df7fe1fddc6673d161,1,3,269720,https://p.scdn.co/mp3-preview/604c237be1468a92108fce36c894ef715d70505d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUHT01503043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian r&b",0.737,0.669,11.0,-9.127,0.0,0.0483,0.281,0.0151,0.11,0.621,111.99,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P ℗ 2015 Universal Music Australia Pty Ltd.",140 +141,spotify:track:1qk9ujVgudgU8CyhKOx8ji,Somebody That I Used To Know,"spotify:artist:2AsusXITU8P25dlRNhcAbG, spotify:artist:6hk7Yq1DU9QcCCrz9uc0Ti","Gotye, Kimbra",spotify:album:6EMxWaM803hd4sPsJ6PkcA,Making Mirrors,spotify:artist:2AsusXITU8P25dlRNhcAbG,Gotye,2011-01-01,https://i.scdn.co/image/ab67616d0000b2731ba0ff466c68a0977a0039bc,1,3,244893,https://p.scdn.co/mp3-preview/8721423c664c8ec64df22cd2a85711437431a98c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,AUZS21100040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,bergen indie,electropop,nz pop",0.864,0.515,0.0,-6.967,1.0,0.0367,0.571,7.92e-05,0.0947,0.755,129.048,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Samples 'n' Seconds Records, under exclusive license to Eleven: A Music Company. Distributed in Australia by Universal Music Australia Pty Ltd under exclusive license, P ℗ 2011 Samples 'n' Seconds Records, under exclusive license to Eleven: A Music Company. Distributed in Australia by Universal Music Australia Pty Ltd under exclusive license",141 +142,spotify:track:3APXBFJM1OTXvbsx10TgG3,Ain't Telling The Truth,spotify:artist:7sCcPQQft3sSxcJaB30dlb,Bluejuice,spotify:album:5yegnN64UF97qcdooZ3xKw,Head of The Hawk,spotify:artist:7sCcPQQft3sSxcJaB30dlb,Bluejuice,2009-01-01,https://i.scdn.co/image/ab67616d0000b273e24e3354bbcc703ef09aea24,1,5,163186,https://p.scdn.co/mp3-preview/ba1a91e6884506193e014119cca5c2522fd8b665?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUUM70901634,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.588,0.665,3.0,-5.861,1.0,0.049,0.274,1.21e-05,0.0681,0.697,178.025,4.0,,Dew Process,"C © 2009 Dew Process/Universal Music Australia, P ℗ 2009 Dew Process/Universal Music Australia",142 +143,spotify:track:3ZHfX6kbiY7JVsB63lLOLu,The Only Exception,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:3CaQTJU2Cpx7GXTgenmb2r,Brand New Eyes,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2009-09-22,https://i.scdn.co/image/ab67616d0000b273b9abbedc516dd297039977bd,1,6,267653,https://p.scdn.co/mp3-preview/4526a38e355a6dd4c2f987f4cd4a51d88335373b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAT20902323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.452,0.563,4.0,-6.607,1.0,0.0272,0.144,0.0,0.143,0.209,137.715,3.0,,Fueled By Ramen/Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",143 +144,spotify:track:2dC0Rl8OfpULkMvagGUwPi,Cats In The Cradle,spotify:artist:3XsgWn63EnA4wYZBjVyxjf,Ugly Kid Joe,spotify:album:01KB6ccwWZ1iVufgXMoOuX,True Power-Ballads / 3CD set,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b273d55b1200685266bb972c1596,1,6,241346,https://p.scdn.co/mp3-preview/25e432636041f3d95a8466a2d233abb74178132b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG19290051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk metal,funk rock,glam metal,hard rock",0.386,0.466,8.0,-10.773,1.0,0.0379,0.165,1.12e-05,0.0797,0.416,74.802,4.0,,Universal Music,"C © 2007 Spectrum Music, P ℗ 2007 Spectrum Music",144 +145,spotify:track:0939D7aT18uBDS2MTjWzct,Higher Power,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:6wiPmk3powmcz3G7zr6krg,Higher Power,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2021-05-07,https://i.scdn.co/image/ab67616d0000b273b1092c02972b0bfd91703f75,1,1,211294,https://p.scdn.co/mp3-preview/53a3f14e6e624bcd50d057a86dc54d7419216e6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBAYE2100379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.507,0.828,10.0,-6.023,1.0,0.0449,0.00711,2.44e-05,0.261,0.489,178.032,4.0,,Parlophone UK,"C Under exclusive licence to Parlophone Records Limited., © 2021 Coldplay, P Under exclusive licence to Parlophone Records Limited, ℗ 2021 Coldplay",145 +146,spotify:track:6LoSKNsYkRQbyuiReooMjG,Sister Christian,spotify:artist:1Ha0Fz4i0d4gu5fZbhBCtH,Night Ranger,spotify:album:4HUntZg0YV0qCvRxmIhq2U,Boogie Nights / Music From The Original Motion Picture,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1997-01-01,https://i.scdn.co/image/ab67616d0000b273a4a3752f48cf0bb54e1dffc1,1,10,300066,https://p.scdn.co/mp3-preview/c430fe7fea146edaec7877b2454ad5872fb9eb8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USMC18314773,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,soft rock",0.444,0.575,5.0,-8.342,1.0,0.0439,0.135,3.71e-06,0.122,0.21,177.358,4.0,,Capitol Records,"C © 1997 Capitol Records, LLC, P This Compilation ℗ 1997 Capitol Records, LLC",146 +147,spotify:track:0l37J5l4eJfIdd7cea1Cl5,Everything About You,spotify:artist:3XsgWn63EnA4wYZBjVyxjf,Ugly Kid Joe,spotify:album:3uN1oiR3KIuj642PscLiAQ,America's Least Wanted,spotify:artist:3XsgWn63EnA4wYZBjVyxjf,Ugly Kid Joe,1992-01-01,https://i.scdn.co/image/ab67616d0000b2731b62da8cad32fecd70215c1b,1,11,260506,https://p.scdn.co/mp3-preview/5637d32a6fca2ba453f15778e68951b034381e41?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USMR19130361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk metal,funk rock,glam metal,hard rock",0.516,0.783,1.0,-7.895,1.0,0.0646,0.0117,1.08e-06,0.142,0.775,122.603,4.0,,Universal Music Group,"C © 1992 The Island Def Jam Music Group, P ℗ 1992 The Island Def Jam Music Group",147 +148,spotify:track:6wmazwwzaTNFnKcyQFZsuq,Like Sister and Brother,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,spotify:album:1imTGKx9Ak5kaPpZLC9DGg,Legends,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,2004-09-25,https://i.scdn.co/image/ab67616d0000b273b339cdeae56adef848d8ac2c,1,4,203013,https://p.scdn.co/mp3-preview/4f19ee63ba61bf3d3a0797c54992ec956dea0080?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBARK7300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,doo-wop,rock-and-roll,rockabilly,soul",0.563,0.665,7.0,-8.161,1.0,0.0301,0.322,8.47e-06,0.468,0.732,81.092,4.0,,BMG Music,P (P) This compilation P 2004 BMG UK & Ireland Ltd.,148 +149,spotify:track:0FeCO85RKW8fDRytwXof2x,Go Your Own Way,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:63k57x0qOkUWEMR0dkMivh,Rumours,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1977-02-04,https://i.scdn.co/image/ab67616d0000b2735e66bc0df2bd18e746dbb823,1,5,218400,https://p.scdn.co/mp3-preview/26ba8ef966c08f5116fd5ab94efc7a8671e640f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB19900181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.597,0.812,5.0,-12.062,1.0,0.0315,0.0219,0.00106,0.102,0.823,135.68,4.0,,Warner Bros.,"C 1977 Warner Bros. Records Inc. for the U.S. and WEA International Inc. for the world outside of the U.S., P 1977 Warner Bros. Records Inc. for the U.S. and WEA International Inc. for the world outside of the U.S.",149 +150,spotify:track:4O3HRDIBChh0quFPhfDXd1,Jump,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:1ciAVKFdlpLi2eGDlXv6Bo,Unapologetic - Deluxe,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2012-12-10,https://i.scdn.co/image/ab67616d0000b2737061b3d179b8b7363ffe1a50,1,6,264453,https://p.scdn.co/mp3-preview/4dff11d9cf1c31e1993e059760a7080882f9e056?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USUM71214744,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.644,0.824,0.0,-6.169,1.0,0.231,0.221,0.0072,0.171,0.424,81.055,4.0,,Def Jam Recordings,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",150 +151,spotify:track:7EmGUiUaOSGDnUUQUDrOXC,Wolves,"spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx, spotify:artist:64KEffDW9EtZ1y2vBYgq8T","Selena Gomez, Marshmello",spotify:album:2pABD3sfXVajKVXw83WMvT,Wolves,"spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx, spotify:artist:64KEffDW9EtZ1y2vBYgq8T","Selena Gomez, Marshmello",2017-10-25,https://i.scdn.co/image/ab67616d0000b27310368f28dac3b838770f985c,1,1,197993,https://p.scdn.co/mp3-preview/0eebdcc767fd0df22da5331489287d46e2050769?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71712103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop,brostep,edm,pop,progressive electro house",0.715,0.802,11.0,-4.647,0.0,0.0394,0.139,0.0,0.177,0.327,124.989,4.0,,Universal Music Group,"C © 2017 Interscope Records, P ℗ 2017 Interscope Records",151 +152,spotify:track:4HQ9gXAtONKs8NCM0MFUTu,Turn Up The Love,"spotify:artist:698hF4vcwHwPy8ltmXermq, spotify:artist:4jbcqKzc4Wuy6MivHhzPrP","Far East Movement, Cover Drive",spotify:album:7L4wBF41PvzPCQbPoXNfPs,Dirty Bass (Spotify International Version),spotify:artist:698hF4vcwHwPy8ltmXermq,Far East Movement,2012-01-01,https://i.scdn.co/image/ab67616d0000b2737ebcf6afbf5e9a252767a7f7,1,4,195960,https://p.scdn.co/mp3-preview/3ffb29f39a596fbcdd3bef748907b573bdc80cd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USUM71204292,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"asian american hip hop,dance pop,pop rap,barbadian pop,talent show",0.751,0.872,6.0,-4.186,1.0,0.115,0.12,0.0,0.235,0.679,123.887,4.0,,Cherrytree Records/Kierszenbaum 33%,"C © 2012 Interscope Records, P ℗ 2012 Interscope Records",152 +153,spotify:track:6q92eTIDGRb2gMc9qYSxrn,Soul Revival,spotify:artist:0Nlg1HCtb8dpeVpxQojDiq,Johnny Diesel & The Injectors,spotify:album:36LFffxVAnwu4Hz6juT1uW,Complete Eighties,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-06-25,https://i.scdn.co/image/ab67616d0000b27312ef7561b5faa6610438fb7c,1,93,243226,https://p.scdn.co/mp3-preview/296a521f79d9cd5041c8c35251ec37c2b07aa549?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM08900041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.367,0.946,9.0,-5.214,1.0,0.105,0.00312,2.41e-05,0.156,0.457,131.934,4.0,,EMI Music Australia,"C Artwork (C) 2010 EMI Music Australia Pty Ltd., P This compilation was first published in 2010 and any and all copyright in this compilation is owned by EMI Music Australia Pty Ltd.",153 +154,spotify:track:0tgVpDi06FyKpA1z0VMD4v,Perfect,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:3T4tUhGYeRNVUGevb0wThu,÷ (Deluxe),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2017-03-03,https://i.scdn.co/image/ab67616d0000b273ba5db46f4b838ef6027e6f96,1,5,263400,https://p.scdn.co/mp3-preview/4e30857a3c7da3f8891483643e310bb233afadd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,GBAHS1700024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.599,0.448,8.0,-6.312,1.0,0.0232,0.163,0.0,0.106,0.168,95.05,3.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company.",154 +155,spotify:track:3wqoAzrr5htxSZ7KzxhLHg,Oh Sherrie,spotify:artist:5xQKoGD7Ql92fWd1uWwKkf,Steve Perry,spotify:album:17PNvuwxQ9gmeYkoq9Vo93,Greatest Hits + Five Unreleased,spotify:artist:5xQKoGD7Ql92fWd1uWwKkf,Steve Perry,1998-12-01,https://i.scdn.co/image/ab67616d0000b273b94e3ee28e36575492d171bb,1,1,228800,https://p.scdn.co/mp3-preview/ea95562bd8c925f98e29300b42c1a58cce6667e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM18400070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,mellow gold,new wave pop,soft rock,yacht rock",0.577,0.665,5.0,-5.572,1.0,0.0285,0.312,8.89e-05,0.138,0.305,101.807,4.0,,Columbia,"P (P) 1984, 1994, 1998 Sony Music Entertainment Inc.",155 +156,spotify:track:6KPMiBhU6O9RBImTQXQNCe,Get Down (You're the One for Me) - LP Edit No Rap,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:1oWxRkI4V9d3hH3PqWpx9H,Backstreet Boys,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1996-05-06,https://i.scdn.co/image/ab67616d0000b2733d16809ca253f0f476195941,1,3,230386,https://p.scdn.co/mp3-preview/5d16e06fa4f4670e92de9a0834dc97111f8c9b71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBAHK9600025,spotify:user:bradnumber1,2022-01-09T22:04:29Z,"boy band,dance pop,pop",0.777,0.94,8.0,-5.315,0.0,0.0407,0.0736,0.0,0.135,0.749,113.015,4.0,,Jive,P (P) 1996 Sony Music Entertainment,156 +157,spotify:track:0XQHz5C8PknyrEhyrKxVKa,Down (feat. Gucci Mane),"spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt, spotify:artist:13y7CgLHjMVRMDqxdx0Xdo","Fifth Harmony, Gucci Mane",spotify:album:506tSgFO28YCEALMLihVPB,Fifth Harmony,spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt,Fifth Harmony,2017-10-29,https://i.scdn.co/image/ab67616d0000b2737698096fb3a8beeeca3c6087,1,1,165200,https://p.scdn.co/mp3-preview/784a41848771e46ac69e0dabade9af2f0009ca49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USSM11704732,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,atl hip hop,dirty south rap,hip hop,pop rap,rap,southern hip hop,trap",0.53,0.512,8.0,-7.094,1.0,0.133,0.0162,7.04e-05,0.128,0.401,196.121,4.0,,Syco Music/Epic,"P (P) 2017 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",157 +158,spotify:track:0XIvZ82aDF7JiSi3ZE320u,Rock You Like A Hurricane,spotify:artist:27T030eWyCQRmDyuvr1kxY,Scorpions,spotify:album:6d4dgGamepehj0WwsYXTKi,Love At First Sting,spotify:artist:27T030eWyCQRmDyuvr1kxY,Scorpions,1984-05-04,https://i.scdn.co/image/ab67616d0000b273ac6c2cc344c1a1990c251539,1,2,252493,https://p.scdn.co/mp3-preview/94097c18140b8d7567af17eb406a49acaa7e2899?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR38430331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,german hard rock,german metal,german rock,hard rock,rock",0.482,0.601,7.0,-12.846,1.0,0.0486,0.00853,0.000187,0.249,0.774,125.619,4.0,,Universal/Island Def Jam,"P ℗ 1984 UMG Recordings, Inc.",158 +159,spotify:track:2QZvMncP3hoLfHJXq4218n,Sugar Shack,"spotify:artist:6Vg8U5m1yHwqRyQMi87tay, spotify:artist:6Rboxwjnvu3wLcwzhlnaSO","Jimmy Gilmer, The Fireballs",spotify:album:11EMdtFL51DToiX7mDlg3K,Sugar Shack,"spotify:artist:6Vg8U5m1yHwqRyQMi87tay, spotify:artist:6Rboxwjnvu3wLcwzhlnaSO","Jimmy Gilmer, The Fireballs",2014-03-10,https://i.scdn.co/image/ab67616d0000b2732c5e3e3e5eb8fb4560fee8a1,1,1,120084,https://p.scdn.co/mp3-preview/0a38299ff097b6c6eb7537fc9d0a4138b2aeda34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,QMDA71497771,spotify:user:bradnumber1,2021-08-08T09:26:31Z,surf music,0.792,0.737,7.0,-12.668,1.0,0.0549,0.397,7.42e-05,0.0628,0.952,133.931,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,159 +160,spotify:track:3ZffCQKLFLUvYM59XKLbVm,Wake Me up When September Ends,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:5dN7F9DV0Qg1XRdIgW8rke,American Idiot,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,2004-09-21,https://i.scdn.co/image/ab67616d0000b27308a1b1e0674086d3f1995e1b,1,7,285653,https://p.scdn.co/mp3-preview/acf215c01932347394d036999c4f0f12e9fcb66a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USRE10400992,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.546,0.814,7.0,-5.146,1.0,0.0314,0.023,0.0,0.0972,0.146,104.98,4.0,,Reprise,"C © 2004 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2004 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",160 +161,spotify:track:1gaebx506AU20bCJKEQUy9,I Won't Back Down,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:1jdLbCgZFGrJV5HFwPJIKJ,Anthology: Through The Years,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,2000-10-31,https://i.scdn.co/image/ab67616d0000b273457eecb06829fc2dede39562,2,10,175493,https://p.scdn.co/mp3-preview/2efef1deacda363a01f8d713502bef6674c3cee4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC18925675,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.767,0.756,7.0,-4.788,1.0,0.0287,0.0643,7.88e-06,0.256,0.934,113.906,4.0,,Universal Music Group,"C © 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc.",161 +162,spotify:track:5qtwzv99vOr5UTwnTixn7j,Know Your Enemy,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:1AHZd3C3S8m8fFrhFxyk79,21st Century Breakdown,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,2009-05-15,https://i.scdn.co/image/ab67616d0000b273c2ced39899b0d67cd5a724fa,1,3,190986,https://p.scdn.co/mp3-preview/fdbd09a4a00b22127850ea9dd130b38a744443ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRE10900522,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.56,0.958,11.0,-3.245,1.0,0.0412,0.0016,4.96e-05,0.0643,0.961,129.984,4.0,,Reprise,"C © 2009 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2009 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",162 +163,spotify:track:0iVXKGnD23wIulXZRit20N,All I Need Is A Miracle,spotify:artist:2yTUYhIf8fxptTIy3KLuJD,Mike + The Mechanics,spotify:album:5BrUyKkJIavGjRwYzKrF84,Mike + The Mechanics,spotify:artist:2yTUYhIf8fxptTIy3KLuJD,Mike + The Mechanics,1985-10-05,https://i.scdn.co/image/ab67616d0000b27358322a33d8f69aae6d760ba2,1,2,249826,https://p.scdn.co/mp3-preview/9824b9ef111a8daf408c46ab77c0f5b770b22f94?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBHJD8500003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,mellow gold,new romantic,new wave,new wave pop,soft rock",0.612,0.876,0.0,-7.836,1.0,0.0339,0.0967,4.41e-05,0.0764,0.971,135.106,4.0,,BMG Rights Management (UK) Ltd,"C © 1985 Michael Rutherford Limited, under exclusive licence to BMG Rights Management (UK) Limited, P ℗ 1985 Michael Rutherford Limited, under exclusive licence to BMG Rights Management (UK) Limited",163 +164,spotify:track:4oW1lGOw5Q5OLvoJv92qoE,I Can Help,spotify:artist:6nNkKMkPl1qBCEW3Al9eVV,Billy Swan,spotify:album:5fjc7x9genFjAynvs3g1oi,The Best Of Billy Swan,spotify:artist:6nNkKMkPl1qBCEW3Al9eVV,Billy Swan,1998-01-18,https://i.scdn.co/image/ab67616d0000b273d6c066b8cb1cf84f7f9a8ace,1,1,238333,https://p.scdn.co/mp3-preview/67f2ad8777cf571495bea2e50aa64cf7d911a1e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM17400216,spotify:user:bradnumber1,2021-08-08T09:26:31Z,swamp pop,0.471,0.675,0.0,-9.07,1.0,0.0513,0.511,0.019,0.232,0.53,125.313,4.0,,Epic/Legacy,"P (P) 1974, 1975, 1976, 1981, 1982, 1993 Sony Music Entertainment Inc. WARNING: All rights reserved. Unauthorized duplication is a violation of applicable laws.",164 +165,spotify:track:4TTxKh1FnnGEeGWK2s8xBa,Am I Ever Gonna See Your Face Again - Live,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:4wO2qaJkdsmNyZrJ4OmTCN,Liveline,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,1988-01-01,https://i.scdn.co/image/ab67616d0000b273590cb28ef55326e8ad3a7d11,1,15,249733,https://p.scdn.co/mp3-preview/ad055d809715c554c29aa61ebe77a639677cf213?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AULI00623550,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.209,0.945,9.0,-6.306,1.0,0.0589,0.00141,2.28e-05,0.9,0.386,184.197,4.0,,Bloodlines,"C 1998 Bloodlines, P 1998 Bloodlines",165 +166,spotify:track:06C1afLEMNO4hii8mbX6sq,I Like it Like That - 2019 - Remaster,spotify:artist:2HBbky0Z08ZcCKVsXWbNE4,The Dave Clark Five,spotify:album:5b2A8trHABO53urxYLhG14,I Like It Like That (2019 - Remaster),spotify:artist:2HBbky0Z08ZcCKVsXWbNE4,The Dave Clark Five,1965-09-06,https://i.scdn.co/image/ab67616d0000b27364d1bf8a622aa77923f5e99d,1,1,97946,https://p.scdn.co/mp3-preview/3f311399acee21b2683058bc710dc536f437d289?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB5KW1901743,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,merseybeat",0.495,0.85,9.0,-6.884,1.0,0.121,0.2,0.0,0.227,0.9,140.059,4.0,,BMG Rights Management (UK) Limited,"C © 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Limited, P ℗ 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Limited",166 +167,spotify:track:0KAiuUOrLTIkzkpfpn9jb9,Drive By,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:5zseibu9WEsPaZmkJUMkz1,California 37,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2012-04-17,https://i.scdn.co/image/ab67616d0000b273bde344cc54eedc35050f4c61,1,2,195973,https://p.scdn.co/mp3-preview/04a4331f6e25d0bd2c6de9c1202ad719f24b1cef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USSM11106876,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.765,0.837,1.0,-3.113,0.0,0.032,0.00107,1.06e-05,0.0801,0.721,122.028,4.0,,Columbia,"P (P) 2012 Columbia Records, a Division of Sony Music Entertainment",167 +168,spotify:track:7ikgdP2UytKecFM0AXSHxy,This Is Who I Am,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,spotify:album:0QqO8gwHZ3pMMyCH2avhjA,Hazardous,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,2009-01-01,https://i.scdn.co/image/ab67616d0000b2733c067733e9a98f81880ac2a9,1,1,205560,https://p.scdn.co/mp3-preview/10d7b32c3a070054a002142c469502cbcfebfafd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70902461,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.583,0.959,9.0,-2.057,1.0,0.118,0.0435,0.0,0.131,0.564,146.071,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Universal Music Australia Pty Ltd., P This Compilation ℗ 2009 Universal Music Australia Pty Ltd.",168 +169,spotify:track:5J2CHimS7dWYMImCHkEFaJ,A Hard Day's Night - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:6wCttLq0ADzkPgtRnUihLV,A Hard Day's Night (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1964-07-10,https://i.scdn.co/image/ab67616d0000b273e230f303815e82a86713eedd,1,1,154200,https://p.scdn.co/mp3-preview/b564b172bd88dec2a6919a579ae96b2164666605?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAYE0601438,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.59,0.805,0.0,-6.481,1.0,0.0371,0.137,0.0,0.0996,0.797,138.514,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",169 +170,spotify:track:2FiceoWDJ67rrmb5tGBpgE,Ghost,spotify:artist:7nDsS0l5ZAzMedVRKPP8F1,Ella Henderson,spotify:album:6MAEuDumUgxsWaEWA6lddg,Ghost,spotify:artist:7nDsS0l5ZAzMedVRKPP8F1,Ella Henderson,2014-06-08,https://i.scdn.co/image/ab67616d0000b273512ff4274abb1477e82ffab1,1,1,216106,https://p.scdn.co/mp3-preview/8b140a154b2f880ba34a39ac185490a6255c094f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBHMU1400029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop dance,talent show,uk pop",0.682,0.836,9.0,-3.777,1.0,0.0424,0.0464,3.13e-06,0.0797,0.486,104.984,4.0,,Syco Music,P (P) 2014 Simco Limited,170 +171,spotify:track:0hfVBwMwUL5rVXaczWERTm,Get That Jive - 2006 Remaster,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,spotify:album:1TxG8XGSYdrCZAIMbbUi9c,The Essential,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,2007-04-07,https://i.scdn.co/image/ab67616d0000b273a4b0aceea43b2f3d5f945a33,1,7,167266,https://p.scdn.co/mp3-preview/e99d9b2f9d91f85ec4960f7b60691666fba1c8ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUBM00601047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,kiwi rock",0.841,0.748,2.0,-6.279,1.0,0.0424,0.248,0.0,0.0526,0.872,120.859,4.0,,Columbia,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,171 +172,spotify:track:1XAZlnVtthcDZt2NI1Dtxo,Justified & Ancient - Stand by the Jams,spotify:artist:6dYrdRlNZSKaVxYg5IrvCH,The KLF,spotify:album:4MC0ZjNtVP1nDD5lsLxFjc,Songs Collection,spotify:artist:6dYrdRlNZSKaVxYg5IrvCH,The KLF,1992-08-03,https://i.scdn.co/image/ab67616d0000b27355346bc1f268730f607f9544,1,3,216270,,False,0,QMARG1760056,spotify:user:bradnumber1,2020-03-05T09:20:39Z,"acid house,ambient house,big beat,hip house",0.617,0.872,8.0,-12.305,1.0,0.048,0.0158,0.112,0.408,0.504,111.458,4.0,,Jams Communications,"C 1992 Copyright Control, P 1992 Jams Communications",172 +173,spotify:track:4F7whFNLTeLFUU73o8yO5u,Only You Can Love Me This Way,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,spotify:album:41sBXDAGXQpwnI2uIkSrM5,Only You Can Love Me This Way,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,2009-01-01,https://i.scdn.co/image/ab67616d0000b273208fddc6c7dec0bec4dad790,1,1,247680,https://p.scdn.co/mp3-preview/4e60117b7f72f802fbe436f995fd19f1f978bfa2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USCN10900128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road",0.566,0.429,2.0,-9.478,1.0,0.0286,0.457,3.38e-05,0.173,0.325,147.957,4.0,,Capitol Nashville,"C © 2009 Capitol Records Nashville, P ℗ 2009 Capitol Records Nashville",173 +174,spotify:track:51FpzuGkRYXFgsE2zXt9av,When a Man Loves a Woman,spotify:artist:3rRmDmzPcAFwcUDvG5gBqO,Percy Sledge,spotify:album:0lj5tDBUt1i1b1Llobu23M,When a Man Loves a Woman,spotify:artist:3rRmDmzPcAFwcUDvG5gBqO,Percy Sledge,1966,https://i.scdn.co/image/ab67616d0000b2730c8a01bf197adb9859044775,1,1,173866,https://p.scdn.co/mp3-preview/1c17133c13efb6f81e032f983bc90085b11281ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USAT29902050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,rock-and-roll,soul,southern soul",0.516,0.15,1.0,-20.41,1.0,0.0272,0.13,0.0755,0.122,0.205,97.398,3.0,,Rhino Atlantic,"C © 2004 Atlantic Recording Corp. Manufactured and Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured and Marketed by Warner Strategic Marketing",174 +175,spotify:track:1J2tfINpEHRhCP8CUS15lE,The Message,spotify:artist:5hQCwevTf03u1rECrRMeop,Grandmaster Flash & The Furious Five,spotify:album:27nbxiTBXjPktVWud25VlD,The Message - EP,spotify:artist:5hQCwevTf03u1rECrRMeop,Grandmaster Flash & The Furious Five,1982-01-01,https://i.scdn.co/image/ab67616d0000b2730c8cb362dfe988de65fdda58,1,2,193000,https://p.scdn.co/mp3-preview/009cf3fc57e6524424fdc469bb53d1cbc86a8154?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE0609113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bronx hip hop,old school hip hop",0.926,0.816,2.0,-7.072,1.0,0.221,0.042,0.0,0.114,0.777,100.757,4.0,,Sanctuary Records,"C © 2000 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2000 Sanctuary Records Group Ltd., a BMG Company",175 +176,spotify:track:72yP0DUlWPyH8P7IoxskwN,Hold Me Closer,"spotify:artist:3PhoLpVuITZKcymswpck5b, spotify:artist:26dSoYclwsYLMAKD3tpOr4","Elton John, Britney Spears",spotify:album:4QQWpCEX4BxMXwRQmtkKY6,Hold Me Closer,"spotify:artist:3PhoLpVuITZKcymswpck5b, spotify:artist:26dSoYclwsYLMAKD3tpOr4","Elton John, Britney Spears",2022-08-26,https://i.scdn.co/image/ab67616d0000b2735d872e7b0c1ba964541f07e8,1,1,202245,https://p.scdn.co/mp3-preview/49c34ce9f351cb5b5402f91886df6b720d149beb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBUM72205030,spotify:user:bradnumber1,2022-08-26T05:41:55Z,"glam rock,mellow gold,piano rock,rock,dance pop,pop",0.667,0.75,0.0,-4.602,1.0,0.0906,0.0746,0.000198,0.197,0.486,126.041,4.0,,EMI,"C © 2022 WAB Recording Limited, under exclusive licence to Mercury Records Limited, P ℗ 2022 WAB Recording Limited, under exclusive licence to Mercury Records Limited",176 +177,spotify:track:6ZUHky4ifmhzZmdt1Z2f3x,Goodbye,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,spotify:album:3POXlpDv0cikb180eu6k5j,Sneaky Sound System,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,2006,https://i.scdn.co/image/ab67616d0000b2731e54836b82f6407233f06197,1,7,294133,https://p.scdn.co/mp3-preview/b28ac5a5632d26d7a460c80b8a16c80816db1cbc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUQK00600020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,funktronica",0.728,0.912,9.0,-4.725,0.0,0.0486,0.0695,0.00796,0.229,0.687,119.991,4.0,,Whack Records,"C 2006 Whack Records, P 2006 Whack Records",177 +178,spotify:track:5a3L9h9YfI96BMs4QaKJ67,Music To My Heart,"spotify:artist:0repuWOrxA3wK6vdP99hoZ, spotify:artist:1aXgASMjQp7OqVFWYE4RKZ","Shab, Martinez Twins",spotify:album:7tkBdkUlfzphtKxAC0tCZm,Music To My Heart,spotify:artist:0repuWOrxA3wK6vdP99hoZ,Shab,2021-07-23,https://i.scdn.co/image/ab67616d0000b273499fea60752371fa22445b89,1,1,176282,https://p.scdn.co/mp3-preview/102265c34849116db9d7bc1a56c60a0981abecc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,QZK6P2120757,spotify:user:bradnumber1,2021-08-08T09:26:31Z,social media pop,0.755,0.796,4.0,-7.017,0.0,0.0505,0.00773,0.00031,0.0502,0.509,116.877,4.0,,Shabnam Music LLC,"C 2021 Shabnam Music LLC, P 2021 Shabnam Music LLC",178 +179,spotify:track:7K3BhSpAxZBznislvUMVtn,Last Night,spotify:artist:4oUHIQIBe0LHzYfvXNW4QM,Morgan Wallen,spotify:album:6i7mF7whyRJuLJ4ogbH2wh,One Thing At A Time,spotify:artist:4oUHIQIBe0LHzYfvXNW4QM,Morgan Wallen,2023-03-03,https://i.scdn.co/image/ab67616d0000b273705079df9a25a28b452c1fc9,1,2,163854,https://p.scdn.co/mp3-preview/48760562c770591058c71d16a5ac81d3833e72d2?cid=9950ac751e34487dbbe027c4fd7f8e99,True,81,USUG12300802,spotify:user:bradnumber1,2023-05-07T11:59:25Z,contemporary country,0.492,0.673,6.0,-5.431,1.0,0.0347,0.413,0.0,0.137,0.488,203.812,4.0,,Big Loud Records / Mercury Records / Republic Records,"C © 2023 Big Loud Records, under exclusive license to Mercury Records/Republic Records, a division of UMG Recordings, Inc., P ℗ 2023 Big Loud Records, under exclusive license to Mercury Records/Republic Records, a division of UMG Recordings, Inc.",179 +180,spotify:track:5Ee3eEEutXbUsMYGD2rbTT,Hold Me Now,spotify:artist:27rXetqqGSi2spXzggwehc,Johnny Logan,spotify:album:6gqFJdUfnnDx0PttSUlGFh,4 Hits,spotify:artist:27rXetqqGSi2spXzggwehc,Johnny Logan,2011-09-16,https://i.scdn.co/image/ab67616d0000b27398c25bc79dab56d03dc7b47b,1,1,183960,https://p.scdn.co/mp3-preview/a82dd4c315c159ad72fc20398014c3d4e09b5870?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBBBM8700015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dansktop,0.433,0.28,5.0,-12.781,1.0,0.0378,0.678,0.0,0.094,0.263,149.519,4.0,,Sony Music UK,P This Compilation (P) 2011 Sony Music Entertainment UK Limited,180 +181,spotify:track:0TMrV95mP7sDlvbE4iVfKP,Be-Bop-A-Lula,spotify:artist:7lKaTIgVek1R2lqpCulQmq,Gene Vincent & His Blue Caps,spotify:album:6NtLwlr1uXEOWDLjZzI4qu,The Rock N' Roll Collection,spotify:artist:5VAHm7V5mnsxvQrWw3KHmx,Gene Vincent,1996-01-01,https://i.scdn.co/image/ab67616d0000b2739bfc8d8afee215b2dff3a242,1,26,157206,https://p.scdn.co/mp3-preview/70772872ddd46fcf38f505c2be1b81c0f95cc3c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USCA28800076,spotify:user:bradnumber1,2024-01-02T05:24:17Z,"rock-and-roll,rockabilly",0.607,0.561,9.0,-10.099,1.0,0.0425,0.421,0.0,0.298,0.841,127.638,3.0,,EMI Gold,"C © 2004 EMI Records Ltd, P This Compilation ℗ 1996 EMI Records Ltd",181 +182,spotify:track:2O2n8eF4e7qfeUGcFwWQFp,The Dead Heart,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:4tSyLb9l1xuqGBxjv1jiLn,Diesel And Dust,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1987-06-22,https://i.scdn.co/image/ab67616d0000b273fa49ec77079f6b25edaebd32,1,6,310893,https://p.scdn.co/mp3-preview/1ac7d350d16ace12bb4c647d68e45c1803756161?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUSM09800195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.628,0.6,11.0,-16.276,0.0,0.03,0.0293,0.000136,0.0653,0.692,136.225,4.0,,Columbia,P (P) 1987 Midnight Oil,182 +183,spotify:track:4YBIuDWPsVy9pXLCUBORZN,The Living Years,spotify:artist:2yTUYhIf8fxptTIy3KLuJD,Mike + The Mechanics,spotify:album:2Ip0kyHG3zLfmlPJWZsfLB,Living Years,spotify:artist:2yTUYhIf8fxptTIy3KLuJD,Mike + The Mechanics,1988-10-28,https://i.scdn.co/image/ab67616d0000b273500b8a5da9e1eb7507f11404,1,2,332333,https://p.scdn.co/mp3-preview/c148a0f35898494fe03236181269b93abcb7a893?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBHJD8800002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,mellow gold,new romantic,new wave,new wave pop,soft rock",0.527,0.429,8.0,-12.431,1.0,0.0321,0.655,0.0,0.0865,0.277,97.893,4.0,,BMG Rights Management (UK) Ltd,"C © 1988 Michael Rutherford Limited, under exclusive licence to BMG Rights Management (UK) Limited, P ℗ 1988 Michael Rutherford Limited, under exclusive licence to BMG Rights Management (UK) Limited",183 +184,spotify:track:3EfugazgSddQvzZpkof5I4,Ciao Adios,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,spotify:album:7BaS787qIlgKTMOFR2e91E,Ciao Adios,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,2017-02-10,https://i.scdn.co/image/ab67616d0000b27319f06fd0fc43d3ebed4f041d,1,1,200104,https://p.scdn.co/mp3-preview/34a82f1ffa581dcab005deed60a44ffdb779b8ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAHS1700195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.698,0.882,4.0,-3.078,0.0,0.0863,0.127,0.0,0.15,0.445,106.083,4.0,,Atlantic Records UK,"C © 2017 Major Tom's / Asylum Records, a division of Warner Music UK Limited, P ℗ 2017 Major Tom's / Asylum Records, a division of Warner Music UK Limited",184 +185,spotify:track:748mdHapucXQri7IAO8yFK,Kiss Me More (feat. SZA),"spotify:artist:5cj0lLjcoR7YOSnhnX0Po5, spotify:artist:7tYKF4w9nC0nq9CsPZTHyP","Doja Cat, SZA",spotify:album:1OnzqJTL9bwe4kvaLxRYxt,Kiss Me More (feat. SZA),"spotify:artist:5cj0lLjcoR7YOSnhnX0Po5, spotify:artist:7tYKF4w9nC0nq9CsPZTHyP","Doja Cat, SZA",2021-04-09,https://i.scdn.co/image/ab67616d0000b2736c031afd210aed3084f80956,1,1,208866,https://p.scdn.co/mp3-preview/e3ea7622ca746e1e96c3dac7d7e07b7ccfdeb3f1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,72,USRC12100543,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop,r&b,rap",0.762,0.701,8.0,-3.541,1.0,0.0286,0.235,0.000158,0.123,0.742,110.968,4.0,,Kemosabe Records/RCA Records,P (P) 2021 Kemosabe Records/RCA Records,185 +186,spotify:track:6v3KW9xbzN5yKLt9YKDYA2,Señorita,"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF","Shawn Mendes, Camila Cabello",spotify:album:0xzScN8P3hQAz3BT3YYX5w,Shawn Mendes (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2019-06-19,https://i.scdn.co/image/ab67616d0000b273c820f033bd82bef4355d1563,1,1,190799,https://p.scdn.co/mp3-preview/cf6ae4e497f91c285cc57ec2be36bbad2133af47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USUM71911283,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop,dance pop,pop",0.759,0.548,9.0,-6.049,0.0,0.0289,0.0379,0.0,0.0828,0.75,116.963,4.0,,Island Records,"C © 2019 Island Records, a division of UMG Recordings, Inc., P ℗ 2019 Island Records, a division of UMG Recordings, Inc.",186 +187,spotify:track:4msPRe3NEDVL6dsBcE7AhL,Get Down Tonight,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,spotify:album:6ufis2iWp3hrox9QJfg5Jq,KC & the Sunshine Band... and More,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,1994-12-13,https://i.scdn.co/image/ab67616d0000b273c15e8983eef55e19f9b73ff3,1,3,317106,https://p.scdn.co/mp3-preview/f13d677d6b6aa588fe2c4c9c13606453f98025a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USRH10175351,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new wave pop,soft rock,soul",0.669,0.754,10.0,-12.223,1.0,0.0279,0.134,0.0069,0.46,0.906,112.683,4.0,,Rhino,"C © 2004 Warner Strategic Marketing., P ℗ 2004 Warner Strategic Marketing.",187 +188,spotify:track:6vXZs9rEQF7Nd6O8Ue7NrT,Are You Lonesome Tonight,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:5Iec810oL6PorbyBVjLnmD,"Elvis' Golden Records, Vol. 3",spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1963-08-11,https://i.scdn.co/image/ab67616d0000b273a22455d1ff7031adeaa90a40,1,7,187026,https://p.scdn.co/mp3-preview/588debdf394dba1797e627e3c2de04385aa0c7d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USRC16005290,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.355,0.0922,7.0,-17.747,1.0,0.0515,0.918,0.000702,0.106,0.191,65.952,3.0,,RCA/Legacy,P (P) 1963 Sony Music Entertainment,188 +189,spotify:track:0lxt6J01WBpovNFVF87Yqa,Friday I'm In Love,spotify:artist:7bu3H8JO7d0UbMoVzbo70s,The Cure,spotify:album:093amtf9s8VkIdUtvd2Tap,Greatest Hits,spotify:artist:7bu3H8JO7d0UbMoVzbo70s,The Cure,2001-01-01,https://i.scdn.co/image/ab67616d0000b273041dc87f77396196f0f41c64,1,14,214400,https://p.scdn.co/mp3-preview/cec1354528994036af2867729ecdccc2af61068d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBALB9200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave,permanent wave,rock,uk post-punk",0.553,0.946,7.0,-4.249,0.0,0.0383,0.00106,0.000655,0.368,0.458,135.977,4.0,,Polydor Records,"C © 2001 Polydor Ltd. (UK), P This Compilation ℗ 2001 Fiction Records Ltd.",189 +190,spotify:track:59qPP8coY8EWIQ9nQDThui,Give It 2 Me,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:1Ms3J8LcSCMH29tG5bSKLu,Hard Candy,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2008-04-19,https://i.scdn.co/image/ab67616d0000b273ca17b707a24b6ccae72e3a15,1,3,287906,https://p.scdn.co/mp3-preview/f5937e3a63a29606ffce664d58fc243953864420?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USWB10800779,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.837,0.954,8.0,-3.512,0.0,0.0414,0.0933,0.000405,0.143,0.972,127.019,4.0,,Warner Records,"C 2008 Warner Records Inc., P 2008 Warner Records Inc.",190 +191,spotify:track:0TK2YIli7K1leLovkQiNik,Señorita,"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF","Shawn Mendes, Camila Cabello",spotify:album:2ZaX1FdZCwchXl1QZiD4O4,Señorita,"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF","Shawn Mendes, Camila Cabello",2019-06-21,https://i.scdn.co/image/ab67616d0000b273e6095c382c2853667c1623eb,1,1,190960,https://p.scdn.co/mp3-preview/04d8cbecae212d9c0ade5ae9c9b7227b101c99b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USUM71911283,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop,dance pop,pop",0.759,0.54,9.0,-6.039,0.0,0.0287,0.037,0.0,0.0945,0.75,116.947,4.0,,Island Records,"C © 2019 Island Records, a division of UMG Recordings, Inc., P ℗ 2019 Island Records, a division of UMG Recordings, Inc.",191 +192,spotify:track:3LLeJjCRRkTLmkQIUJuHCT,Feelin' Alright,spotify:artist:6Q8cPPtM6vgTZO2iaVOjEk,E.Y.C.,spotify:album:4RMTObzJkGFe2YrQLgZdCT,Express Yourself Clearly (U.S. Version),spotify:artist:6Q8cPPtM6vgTZO2iaVOjEk,E.Y.C.,1993-01-01,https://i.scdn.co/image/ab67616d0000b2730d4a9b5b99ead017938e4f78,1,1,250106,https://p.scdn.co/mp3-preview/16cba1b28e2b21f55105b7a3d3e03d8d46e4fbbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USGA19239693,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.754,0.81,11.0,-9.779,0.0,0.0741,0.00277,6.17e-06,0.914,0.783,111.484,4.0,,Geffen,"C © 1993 UMG Recordings, Inc., P ℗ 1993 UMG Recordings, Inc.",192 +193,spotify:track:09TpJe9jnom4mB2DDhZKkB,Do You Want To,spotify:artist:0XNa1vTidXlvJ2gHSsRi4A,Franz Ferdinand,spotify:album:4aJKZKk3jb1oz7wb0OKLTw,You Could Have It So Much Better,spotify:artist:0XNa1vTidXlvJ2gHSsRi4A,Franz Ferdinand,2005-10-03,https://i.scdn.co/image/ab67616d0000b273216ecd248fb9acb4bb8cf19f,1,2,215000,https://p.scdn.co/mp3-preview/4a6b19820cda3b99e6111bcc0383d5ed3f126e7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEL0500855,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,indie rock,modern rock,rock,scottish rock",0.414,0.939,0.0,-2.887,1.0,0.047,0.0884,0.000612,0.81,0.748,123.091,4.0,,Domino Records,"C 2005 Domino Recording co, P 2005 Domino Recording Co",193 +194,spotify:track:4tmzLB4caxMSZDgWujR7sH,Can't Get Enough of Your Love,spotify:artist:32lVGr0fSRGT6okLKHiP68,Taylor Dayne,spotify:album:1wSk4NvNUF3BB9jju2S6Qk,Greatest Hits,spotify:artist:32lVGr0fSRGT6okLKHiP68,Taylor Dayne,1995-11-06,https://i.scdn.co/image/ab67616d0000b27379330c9bab1cb934df07b969,1,4,266533,https://p.scdn.co/mp3-preview/01bf8a229a644c6b8f775d8a0cf7163d2b53e163?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USAR19300010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hi-nrg,new romantic,new wave pop,soft rock,synthpop",0.689,0.743,5.0,-8.483,1.0,0.0337,0.0215,9.47e-05,0.106,0.644,108.179,4.0,,Arista,"P (P) 1995 Arista Records, Inc.",194 +195,spotify:track:7hJBjMGJHHQ4cR4Jhzp1d1,"It Ain't Me, Babe (with June Carter Cash)","spotify:artist:6kACVPfCOnqzgfEF5ryl0x, spotify:artist:0ZnY6mQmgr2yZarjry68td","Johnny Cash, June Carter Cash",spotify:album:4E2eUhFHqTG2pu9MN1NDIF,The Essential Johnny Cash,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,2002-02-12,https://i.scdn.co/image/ab67616d0000b273c17beab3e27f18af397a00b2,2,1,182960,https://p.scdn.co/mp3-preview/ad3fd33eff1e72a7c308f11f399a7a6fef1b6193?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM19901956,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,outlaw country,rock,country",0.634,0.587,2.0,-6.595,1.0,0.03,0.271,0.0,0.165,0.623,105.642,4.0,,Columbia/Legacy,P This compilation (P) 2002 Sony Music Entertainment,195 +196,spotify:track:663iGCIjbc3DfpGOooKvDR,Remember The Name (feat. Eminem & 50 Cent),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:3q7HBObVc0L8jNeTe5Gofh","Ed Sheeran, Eminem, 50 Cent",spotify:album:5oUZ9TEZR3wOdvqzowuNwl,No.6 Collaborations Project,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2019-07-12,https://i.scdn.co/image/ab67616d0000b273d154d078766c19a437520f15,1,8,206443,https://p.scdn.co/mp3-preview/e23ac8cb8d62b3a9211e9c82645bcd3175ee5773?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAHS1900965,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop,detroit hip hop,hip hop,rap,east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap",0.863,0.649,11.0,-7.194,0.0,0.156,0.196,0.0,0.782,0.76,91.018,4.0,,Atlantic Records UK,"C © 2019 Warner Music UK Limited., P ℗ 2019 An Asylum Records UK release, a division of Atlantic Records UK; ℗ 2019 Warner Music UK Limited except track 6 ℗ 2019 Warner Music UK / Def Jam Recordings, a division of UMG Recordings, Inc",196 +197,spotify:track:2PzU4IB8Dr6mxV3lHuaG34,(I Can't Get No) Satisfaction - Mono Version,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:2Q5MwpTmtjscaS34mJFXQQ,Out Of Our Heads,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1965-07-30,https://i.scdn.co/image/ab67616d0000b27305c5be85b64eaff732f7cb0b,1,7,222813,https://p.scdn.co/mp3-preview/22782e4be2eb4daa12edd8882a894ffda3601b43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USA176510160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.723,0.863,2.0,-7.89,1.0,0.0338,0.0383,0.0317,0.128,0.931,136.302,4.0,,"ABKCO Music and Records, Inc.","C © 2002 ABKCO Music & Records Inc., P This Compilation ℗ 2002 ABKCO Music & Records Inc.",197 +198,spotify:track:2sqV4WwUD6Rydqciys8jtn,Million Man,spotify:artist:2hrWpLNoJcs1EnWSXvB6JI,The Rubens,spotify:album:7avCH7Vpo5bCwY6ny2rY7e,Million Man,spotify:artist:2hrWpLNoJcs1EnWSXvB6JI,The Rubens,2017-10-27,https://i.scdn.co/image/ab67616d0000b27302b953f3e51720ae6b883db7,1,1,192106,https://p.scdn.co/mp3-preview/b879297ba10705a130de8084773391d0b9f79822?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01713610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.472,0.544,9.0,-5.611,1.0,0.0997,0.203,0.0,0.0986,0.312,98.873,4.0,,Ivy League Records,"C 2017 Ivy League Records, P 2017 Ivy League Records",198 +199,spotify:track:4p4dnZ9OYGueoEEgSVxuSp,Woke Up Late (feat. Hailee Steinfeld),"spotify:artist:6S0IvKlvPMX1RtAYtVpUV8, spotify:artist:5p7f24Rk5HkUZsaS3BLG5F","Drax Project, Hailee Steinfeld",spotify:album:1uBbqmHrxYPojH0nmgkfxB,Woke Up Late (feat. Hailee Steinfeld),spotify:artist:6S0IvKlvPMX1RtAYtVpUV8,Drax Project,2019-01-21,https://i.scdn.co/image/ab67616d0000b273ef635be4ae36861e339b4acf,1,1,181859,https://p.scdn.co/mp3-preview/0248b8fc994b24cb13e23a0f406897c85180554e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,QMCE31801829,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"nz pop,pop",0.698,0.66,2.0,-5.429,0.0,0.083,0.043,0.0,0.186,0.351,119.214,4.0,,EMI Recorded Music Australia Pty Ltd (Distribution),"C © 2019 Drax Project Limited, P ℗ 2019 Drax Project Limited",199 +200,spotify:track:4ULXog8YFsG5RFPwr1ukAT,Better in Time,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,spotify:album:3upijI443B2Al8Q0gqmRX2,Spirit,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,2008-01-28,https://i.scdn.co/image/ab67616d0000b273e7baad992ac4008772c8a069,1,4,234600,https://p.scdn.co/mp3-preview/7bcfb35c4462c88e69dfde3a2568b84cf26d0510?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,GBHMU0700069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,dance pop,pop,talent show",0.585,0.707,6.0,-4.207,1.0,0.0511,0.525,3.19e-05,0.144,0.518,163.962,4.0,,Syco Music UK,P (P) 2007 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,200 +201,spotify:track:3uHHFUxskdOEs5P5xPdmcz,Fortune Teller - Mono,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:5nKpMsduwp5xqCKq2IbSKv,The Rolling Stones In Mono (Remastered 2016),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1966-01-01,https://i.scdn.co/image/ab67616d0000b2738d1570a03b9354518f0b618b,15,5,139800,https://p.scdn.co/mp3-preview/3166a339a2ec24740c6aa926c61b8affc6c64814?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,USA171610133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.475,0.937,1.0,-7.53,0.0,0.102,0.19,1.3e-06,0.0722,0.516,172.566,4.0,,"ABKCO Music & Records, Inc.","C © 2016 ABKCO Music & Records, Inc., P ℗ 2016 This compilation ABKCO Music & Records, Inc.",201 +202,spotify:track:608xszaAxVh4m7NcKJiAbF,One of These Nights - 2013 Remaster,spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,spotify:album:0F77QekrNe8vVAjU2sepja,One of These Nights (2013 Remaster),spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,1975-06-10,https://i.scdn.co/image/ab67616d0000b2735d0a8e54aba5181c79593b94,1,1,291685,https://p.scdn.co/mp3-preview/076bad35fd16728e29c5f0a33a7363745c775345?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USEE11300344,spotify:user:bradnumber1,2022-08-26T01:21:49Z,"album rock,classic rock,heartland rock,mellow gold,rock,soft rock,yacht rock",0.655,0.606,7.0,-10.385,1.0,0.0285,0.0603,0.0789,0.0757,0.765,110.061,4.0,,Rhino/Elektra,"C © 1975 Asylum Records, P ℗ 1975 Asylum Records. Marketed by Warner Strategic Marketing, a Warner Music Group Company.",202 +203,spotify:track:0dPfKBYyPmoSfoLJqeKAs4,Don't Worry,spotify:artist:0Xi59sEw38vRvwleSAVqoo,Marty Robbins,spotify:album:74rRdoFP8aO3ZhY8MeZK0m,The Story Of My Life: The Best Of Marty Robbins 1952-1965,spotify:artist:0Xi59sEw38vRvwleSAVqoo,Marty Robbins,1996-03-12,https://i.scdn.co/image/ab67616d0000b273de6a96b9d62a611e4ffc7756,1,12,194160,https://p.scdn.co/mp3-preview/900638bb8f3c65a8ab80761ba4df458487575672?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USSM16000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"cowboy western,nashville sound",0.648,0.165,4.0,-16.446,1.0,0.0348,0.879,0.000216,0.13,0.435,99.585,4.0,,Columbia/Legacy,P (P) 1996 SONY BMG MUSIC ENTERTAINMENT,203 +204,spotify:track:6OGogr19zPTM4BALXuMQpF,Take My Breath - Single Version,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:6DmXKM13nNgIIby2FdK0f8,Take My Breath,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2021-08-06,https://i.scdn.co/image/ab67616d0000b2733c041e53cb5c38b6de03e758,1,1,220196,https://p.scdn.co/mp3-preview/fa1192d045a0f096c4a0cea296ab9d25ab22e29e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USUG12102076,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.748,0.74,8.0,-6.01,1.0,0.0484,0.0107,2.18e-05,0.101,0.518,121.004,4.0,,XO / Republic Records,"C © 2021 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc., P ℗ 2021 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.",204 +205,spotify:track:1ohbjkuczl6hEoYEo931PH,Sing Hallelujah!,spotify:artist:6BkcAbUkfIBM4XudxieMq8,Dr. Alban,spotify:album:5YPI9qfm2uuMxlq4CEUOFu,One Love (2nd Edition),spotify:artist:6BkcAbUkfIBM4XudxieMq8,Dr. Alban,1992-05-04,https://i.scdn.co/image/ab67616d0000b273a00ecc3de0f1456c5b79d532,1,4,240933,https://p.scdn.co/mp3-preview/7a3d1affa0fbca517e889c126a9a9bc5ffe3bfb6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEA819200295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,hip house",0.759,0.822,5.0,-7.268,0.0,0.0367,0.00136,0.0167,0.131,0.94,124.713,4.0,,Ariola-Logic,P 1992 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,205 +206,spotify:track:2DNdEpV9UnsYjL6w1Dp1aS,That's Not My Name,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,spotify:album:1aWIPcWf3fDEZT6geXjCfU,We Started Nothing,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,2008-07-29,https://i.scdn.co/image/ab67616d0000b273ec6fe061998b64d43e81987c,1,2,310573,https://p.scdn.co/mp3-preview/7581d37ad411cfa1c671605798429c2adc0c3052?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBARL0800038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,electropop,neo-synthpop,new rave",0.755,0.901,9.0,-3.152,1.0,0.0893,0.0451,0.0373,0.363,0.959,145.042,4.0,,Columbia,"P (P) 2007, 2008 Sony BMG Music Entertainment (UK) Limited",206 +207,spotify:track:70on8632PmtkPhed7jLKWN,Someone,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:2puALR81qCmKmbOyuHAI94,Piece By Piece (Deluxe Version),spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2016-03-04,https://i.scdn.co/image/ab67616d0000b27314e69bc0f311b329601b279a,1,3,219880,https://p.scdn.co/mp3-preview/7e5d5e69043a4e5edd5712d1af7311302c1555b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBCTA1500003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.578,0.651,8.0,-6.924,1.0,0.0424,0.368,0.0,0.103,0.0931,127.967,4.0,,RCA Records Label,P (P) 2016 19 Recordings Limited under exclusive license to RCA Records,207 +208,spotify:track:5NUXE8W12lWcUXgJRCjeEw,One Too Many,"spotify:artist:0u2FHSq3ln94y5Q57xazwf, spotify:artist:1KCSPY1glIKqW2TotWuXOR","Keith Urban, P!nk",spotify:album:5j5ngp5GBH7zW3RhHljRK9,One Too Many,"spotify:artist:0u2FHSq3ln94y5Q57xazwf, spotify:artist:1KCSPY1glIKqW2TotWuXOR","Keith Urban, P!nk",2020-09-16,https://i.scdn.co/image/ab67616d0000b273f2a428f109f825ec22c64656,1,1,203893,https://p.scdn.co/mp3-preview/de7ed8fbb2d5de82553d1daadc6c2728a9a30a40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USUG12002935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road,dance pop,pop",0.697,0.535,4.0,-6.504,1.0,0.068,0.247,0.0,0.569,0.594,82.959,4.0,,Keith Urban LP11,"C © 2020 Hit Red Records, under exclusive license to UMG Recordings, Inc., P ℗ 2020 Hit Red Records, under exclusive license to UMG Recordings, Inc.",208 +209,spotify:track:2h0HkReHGCQPOEDZXEMcTO,Special Needs,spotify:artist:6RZUqkomCmb8zCRqc9eznB,Placebo,spotify:album:4fUDor6o5gw0b18iYKEaRq,Sleeping With Ghosts,spotify:artist:6RZUqkomCmb8zCRqc9eznB,Placebo,2003-03-24,https://i.scdn.co/image/ab67616d0000b2736745a70abfc25f45612c4d32,1,8,315986,https://p.scdn.co/mp3-preview/0a5e1d1a5d84cc8dce350c204d10b666ee32a38a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAA0201210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,britpop,permanent wave,rock",0.301,0.571,8.0,-10.152,0.0,0.0332,0.00082,0.8,0.0851,0.0412,178.084,4.0,,Elevator Lady Ltd,"C 2015 Elevator Lady Ltd, P 2003 Elevator Lady Ltd",209 +210,spotify:track:2bfsHVgRsnSANN3SJ4sPt2,Oh Boy!,"spotify:artist:3wYyutjgII8LJVVOLrGI0D, spotify:artist:4r7JUeiYy24L7BuzCq9EjR","Buddy Holly, The Crickets",spotify:album:1tTTDe47X0rTO4q7RidIan,The Definitive Collection,spotify:artist:3wYyutjgII8LJVVOLrGI0D,Buddy Holly,2006-04-18,https://i.scdn.co/image/ab67616d0000b273988665e0435d5283cfd38b1d,1,9,126986,https://p.scdn.co/mp3-preview/cc163587bafd9252199847625c4f876ae84ed3a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USMC15703179,spotify:user:bradnumber1,2022-01-12T23:09:11Z,"classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,doo-wop,rock-and-roll,rockabilly",0.528,0.638,9.0,-7.193,1.0,0.0369,0.661,0.0,0.265,0.816,96.63,4.0,,Geffen,"C © 2006 UMG Recordings, Inc., P This Compilation ℗ 2006 UMG Recordings, Inc.",210 +211,spotify:track:1KU5EHSz04JhGg3rReGJ0N,Black Velvet,spotify:artist:6IYnSXO40Bh7Zdqhf6rQoj,Alannah Myles,spotify:album:1Ghv7iViywM23K8BRFggQv,Alannah Myles,spotify:artist:6IYnSXO40Bh7Zdqhf6rQoj,Alannah Myles,1989-03-14,https://i.scdn.co/image/ab67616d0000b27340d7d779d24a56af1ad59e41,1,3,287440,https://p.scdn.co/mp3-preview/cad3957d658a646ba1f80547eee34b44017858cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USAT20103053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic canadian rock,0.75,0.366,8.0,-10.07,1.0,0.0321,0.271,9.57e-05,0.106,0.477,91.138,4.0,,Atlantic Records,"C © 1989 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States., P ℗ 1989 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States.",211 +212,spotify:track:7aWLRQCKhQ18syTAXtLKn6,Would You Raise Your Hands?,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:5o8IrQOjfnuWNpQtzvZEOP,The Sound Of Drums,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2003,https://i.scdn.co/image/ab67616d0000b273ebec5ce374c862d77327d614,2,2,205866,https://p.scdn.co/mp3-preview/0239c7c5dd2af1ce3f47303d1fd5e9017cd5f7fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUBM01000067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.527,0.907,7.0,-3.549,1.0,0.202,0.0325,0.0,0.551,0.238,159.946,4.0,,Sony Music Entertainment,"P (P) 2011 Sony Music Entertainment Australia Pty Ltd. except tracks 2 & 9 (P) 2010 & (P) 2009, and tracks/(P) 2011 Sony Music Entertainment Australia Pty Ltd. except tracks 2 & 9 (P) 2010 & (P) 2009, and tracks 10, 13 & 14 (P) 2003 Vicious Recordings Pty Ltd Australia",212 +213,spotify:track:4nHpy4mMRGXsD5RrhXwoko,The Forgotten,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:7DTQvbITKXlZRT9UX9sPSj,Twilight 'Forever' Love Songs From the Twilight Saga,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-02-07,https://i.scdn.co/image/ab67616d0000b2739498f05d5189dc1bcc2d70ca,1,7,298333,https://p.scdn.co/mp3-preview/46505bcca86b798b36d139bd881c77db69aaa418?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRE11200547,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.507,0.429,9.0,-6.576,1.0,0.0268,0.145,0.0,0.141,0.0788,131.899,4.0,,Rhino,"C 2014 Rhino UK, a division of Warner Music UK Ltd. Licensed from Motion Picture Artwork TM & (c) 2014 Summit Entertainment, LLC., P 2014 Rhino UK, a division of Warner Music UK Ltd.",213 +214,spotify:track:0lIoY4ZQsdn5QzhraM9o9u,Because the Night,spotify:artist:0vYkHhJ48Bs3jWcvZXvOrP,Patti Smith,spotify:album:1p6cWoueuunhpgy6131zAd,Easter,spotify:artist:0vYkHhJ48Bs3jWcvZXvOrP,Patti Smith,1978,https://i.scdn.co/image/ab67616d0000b273a28eabe111f67a386e75a31a,1,3,204800,https://p.scdn.co/mp3-preview/9803a684e4d2af90d8fec47f95390ee8ace8f2d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAR17800008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art punk,permanent wave,protopunk,singer-songwriter",0.466,0.763,11.0,-7.748,0.0,0.0391,0.0542,0.0,0.119,0.473,123.539,4.0,,Arista,"P (P) 1978,1996 Arista Records, Inc.",214 +215,spotify:track:2oSpQ7QtIKTNFfA08Cy0ku,It's The End Of The World As We Know It (And I Feel Fine),spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,spotify:album:6gMv3MgFlieOM6Uz5GZBzy,Document (R.E.M. No. 5),spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,1987-09-01,https://i.scdn.co/image/ab67616d0000b273a7c7f94cfccd5ab6de233916,1,6,246933,https://p.scdn.co/mp3-preview/266077dc633486cdeafecc9da0656b6af04f305e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USIR38700037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,athens indie,permanent wave,rock",0.381,0.894,7.0,-8.638,1.0,0.037,0.0258,0.0,0.0251,0.797,205.528,4.0,,IRS,"C © 1987 Capitol Records Inc., P ℗ 1987 Capitol Records Inc.",215 +216,spotify:track:0AQqrtK1pULuwZUXhwaaDz,All By Myself,spotify:artist:2ekjTXgjxbWwBX5lTAj4DU,Eric Carmen,spotify:album:3Faeb8KPVk4ntMz0GBGlJO,Eric Carmen,spotify:artist:2ekjTXgjxbWwBX5lTAj4DU,Eric Carmen,1975-01-01,https://i.scdn.co/image/ab67616d0000b2738b62f896e8d3ca8dad7588e7,1,4,430000,https://p.scdn.co/mp3-preview/8391176094d4a27563b2006555869f0451cacbda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAR10400530,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock,yacht rock",0.376,0.373,7.0,-9.184,0.0,0.0305,0.827,0.832,0.15,0.111,116.074,4.0,,Arista/Legacy,P (P) 1975 Arista Records LLC,216 +217,spotify:track:5LEQdlGJ44WnhaxnDg8GHf,Home Entertainment System,spotify:artist:6HGeVgbCIyLs0cD7SVykwQ,Lazaro's Dog,spotify:album:4a9wAQAuhDfUrc1NnWl4QO,Triple Platinum,spotify:artist:6HGeVgbCIyLs0cD7SVykwQ,Lazaro's Dog,2005-07-12,https://i.scdn.co/image/ab67616d0000b2738f850b56ad32c85790d67566,1,2,132173,https://p.scdn.co/mp3-preview/31755b36132ae18800f85dfba461ffee7671690c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USA560572011,spotify:user:bradnumber1,2021-11-20T11:42:34Z,adelaide punk,0.509,0.888,0.0,-5.853,1.0,0.148,0.263,0.0,0.211,0.827,167.586,4.0,,Origin Music,C 2004 Origin Music,217 +218,spotify:track:5TpNKy3cNoLnMNEyP2L0Ox,Friday On My Mind,spotify:artist:23wr9RJZg0PmYvVFyNkQ4j,Gary Moore,spotify:album:7HSONsw7mumBE5q0e7KJW2,Wild Frontier,spotify:artist:23wr9RJZg0PmYvVFyNkQ4j,Gary Moore,1987,https://i.scdn.co/image/ab67616d0000b27325fbfe01ca17e9984362f805,1,6,251600,https://p.scdn.co/mp3-preview/055bf32b3bea795a2548529dbadc32a21a341e93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBAAA9820652,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,british blues,electric blues",0.471,0.905,9.0,-11.798,1.0,0.0593,0.0319,0.482,0.115,0.541,160.255,4.0,,Virgin Records,"C © 1989 Virgin Records Limited, P This Compilation ℗ 1989 Virgin Records Limited",218 +219,spotify:track:53KmqHPNbgziMAKoHzeSeo,Warrior,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,spotify:album:0ibakzajBLU1z7AQM7miwT,Warrior,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,2013-01-01,https://i.scdn.co/image/ab67616d0000b273a96d4533e77ebb2f39fc9045,1,1,226295,https://p.scdn.co/mp3-preview/195eb75e6a1f4d3d7f267aa9c9ef81b8cf5afcfb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71301159,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.757,0.543,11.0,-6.602,0.0,0.0363,0.0383,0.000194,0.313,0.194,140.027,4.0,,Universal Music Australia Pty. Ltd.,"C (C) 2013 Island Records Australia / Universal Music Australia, P (P) 2013 Island Records Australia / Universal Music Australia",219 +220,spotify:track:0gmbgwZ8iqyMPmXefof8Yf,How You Remind Me,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:5fKL7vMTXvhR9tov8Kqt3u,Silver Side Up,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2001-09-11,https://i.scdn.co/image/ab67616d0000b273699a422d25adc550dc5aa11c,1,2,223840,https://p.scdn.co/mp3-preview/94fd201045f5b682935957a8206075638dc4622d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,NLA320119533,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.446,0.764,10.0,-5.042,1.0,0.033,0.00135,0.0,0.099,0.543,172.094,4.0,,Roadrunner Records,"C © 2001 The All Blacks B.V., P ℗ 2001 The All Blacks B.V.",220 +221,spotify:track:7vGuf3Y35N4wmASOKLUVVU,Silence,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Marshmello, Khalid",spotify:album:2bw00gRKNKbTFOqCkohbSh,Silence,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Marshmello, Khalid",2017-08-11,https://i.scdn.co/image/ab67616d0000b273f33ba583059dc2f7d08bf2b8,1,1,180822,https://p.scdn.co/mp3-preview/26ea0841d3e1dd4eec371df3c79fbcc4a6aed42d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USRC11701901,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,edm,pop,progressive electro house,pop,pop r&b",0.52,0.761,4.0,-3.093,1.0,0.0853,0.256,4.96e-06,0.17,0.286,141.971,4.0,,Joytime Collective/RCA Records,"P (P) 2017 Joytime Collective, under exclusive license to RCA Records",221 +222,spotify:track:2wtqBurDM5kxuH6WhxwIJr,Man Overboard,spotify:artist:0aRJShMkUsHVCyCw5Klxj3,Do Re Mi,spotify:album:6yxaSq8tPCIyg1XxXrQBg9,Domestic Harmony,spotify:artist:0aRJShMkUsHVCyCw5Klxj3,Do Re Mi,1985-08-01,https://i.scdn.co/image/ab67616d0000b273712349fcafdb2dce6268aaf1,1,6,250866,https://p.scdn.co/mp3-preview/3b194c9f601fd71ccbfb81e9ede25087f7dd28f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA2P1671124,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.581,0.514,0.0,-10.812,1.0,0.0652,0.31,0.00701,0.376,0.69,89.026,4.0,,Laneway Music,"C 1985 Laneway Music, P 1985 Laneway Music",222 +223,spotify:track:2McbI8WrvqqK6Ew5VgllX3,Kiss Me,spotify:artist:0lJlKQvuM2Sd9DPPyUXcHg,Sixpence None The Richer,spotify:album:4lsQp3EEpwSUYNr6NHlKR5,Return of the 90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-11-16,https://i.scdn.co/image/ab67616d0000b27353fb0f20812d2550750dd500,1,6,206400,https://p.scdn.co/mp3-preview/3d12e73912650703fb1cc8c800b00d60b10d10e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE11200775,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,pop rock",0.523,0.714,3.0,-7.17,1.0,0.0269,0.0264,2.09e-06,0.0568,0.428,100.007,4.0,,WM UK,"C 2012 Rhino UK, a division of Warner Music UK Ltd., P 2012 Rhino UK, a division of Warner Music UK Ltd.",223 +224,spotify:track:3kg05HyeoiSfxuEoyQa0xk,All I Ask,spotify:artist:4NOVe4Wki1UYTaKdC9OBOt,Chase Martin,spotify:album:1Pk2Ke05iwRqHS9FHsZBWt,All I Ask,spotify:artist:4NOVe4Wki1UYTaKdC9OBOt,Chase Martin,2015-12-06,https://i.scdn.co/image/ab67616d0000b273f9542fe0cc3df05d6375f4b0,1,1,277706,https://p.scdn.co/mp3-preview/155c16159d7b68de9db2e11eee04adb2b600042b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCACK1553297,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.422,0.318,0.0,-6.692,1.0,0.0303,0.74,0.0,0.11,0.305,140.689,4.0,,AGE,"C 2015 AGE, P 2015 AGE",224 +225,spotify:track:0QC6QMN85EQZzfJ39HNO5h,Higher,"spotify:artist:01pKrlgPJhm5dB4lneYAqS, spotify:artist:2feDdbD5araYcm6JhFHHw7","Sigma, Labrinth",spotify:album:3qqNK0vVuCtPUYR7PNAkOF,Higher,spotify:artist:01pKrlgPJhm5dB4lneYAqS,Sigma,2015-02-23,https://i.scdn.co/image/ab67616d0000b27375499a2c380e1070bc7e7b7b,1,1,181052,https://p.scdn.co/mp3-preview/accb713271a3ee6de183638e1940b13950048e29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBSXS1500006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dancefloor dnb,house,pop dance,uk dance,indie poptimism,pop",0.45,0.877,11.0,-2.284,0.0,0.0828,0.0837,0.0,0.141,0.452,85.409,4.0,,Universal Music Group,"C © 2015 3 Beat Productions Ltd, under exclusive licence to All Around The World Limited, P ℗ 2015 3 Beat Productions Ltd, under exclusive licence to All Around The World Limited",225 +226,spotify:track:00iCRJ7pk3onHablkLyVH1,"Today's The Day - From ""The Ellen DeGeneres Show""",spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:4nka5RtqtC17gwfl4bjFs8,"Today's The Day (From ""The Ellen DeGeneres Show"")",spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2015-09-10,https://i.scdn.co/image/ab67616d0000b2732e7c36c5659940447dbda182,1,1,224826,https://p.scdn.co/mp3-preview/3e1d3eefa69220d7c46fd79a3de2a0d480078157?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USRC11502058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.497,0.922,0.0,-4.674,0.0,0.139,0.0363,0.0,0.0702,0.496,124.036,4.0,,RCA Records Label,"P (P) 2015 RCA Records, a division of Sony Music Entertainment",226 +227,spotify:track:5VJlvaPufnazmTvt2sHQqc,How Do I Live,spotify:artist:2d3VHzlOEwXvmBdS4pzOPL,LeAnn Rimes,spotify:album:6mcwghwWeSp1Ol1IpsYDOM,Greatest Hits,spotify:artist:2d3VHzlOEwXvmBdS4pzOPL,LeAnn Rimes,2003-11-18,https://i.scdn.co/image/ab67616d0000b27336bd0d3776cbbf5f409b89c5,1,2,266733,https://p.scdn.co/mp3-preview/5e704fd1bfd34cd66d310881c4002dd8ff5eec85?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCRB9700025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,country dawn,country road",0.578,0.426,2.0,-9.171,1.0,0.0289,0.117,0.0,0.0772,0.275,128.319,4.0,,Curb Records,"C (p) 2003 Curb Records, Inc., P (p) 2003 Curb Records, Inc.",227 +228,spotify:track:2ZIzyHDYsXIHUojfr6bAbO,Don't Lose My Number - 2016 Remaster,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:1rVhockt4RAiZFaK3M3zPB,No Jacket Required (2016 Remaster),spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1985-01-25,https://i.scdn.co/image/ab67616d0000b273441084621edb7c53ef303090,1,6,288546,https://p.scdn.co/mp3-preview/b6bf60f8b11c3b1d3eccf4297862d7d41cc80b14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USRH11600248,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.585,0.832,5.0,-5.016,0.0,0.0814,0.168,5.09e-05,0.0634,0.952,80.614,4.0,,Rhino,"C © 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company, P ℗ 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company",228 +229,spotify:track:6gBv6ujrI1Ta5wE8FtgMFX,Ave Mary A,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:21tsMIrRLUKFwfvX9oxQZR,Funhouse,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2008-10-24,https://i.scdn.co/image/ab67616d0000b2737ec845b0eb9caba945adc96b,1,11,195946,https://p.scdn.co/mp3-preview/6dd8c3f4a12cb03211980ac6d23217f74174f3a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USLF20800190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.61,0.914,5.0,-4.132,1.0,0.0424,0.0035,1.09e-05,0.0781,0.508,119.912,4.0,,LaFace Records,"P (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",229 +230,spotify:track:32F14OcdAGM9jQm9XxR5qv,Last Thing on My Mind,spotify:artist:17UkABEasVRlCcIFZ3wHb7,Steps,spotify:album:3tnk5ETPqbPL37gMekGKk7,Step One,spotify:artist:17UkABEasVRlCcIFZ3wHb7,Steps,2000,https://i.scdn.co/image/ab67616d0000b27359b651ccc94624a9f79c2793,1,4,185666,https://p.scdn.co/mp3-preview/d5f1e30ae357ed1bf4b814af8d93590d37f638fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK9800069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,europop,talent show",0.712,0.927,9.0,-3.493,1.0,0.0347,0.209,0.11,0.0933,0.511,130.295,4.0,,Jive,"P (P) 1997, 1998, 1999 Zomba Records Ltd.",230 +231,spotify:track:7DJ0MFT63UDe5gzD7VFYJ6,When Will I Be Loved,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,spotify:album:2Lj9mbgsyKozGGbHmF1EB8,Greatest and Original Hits,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,2017-09-15,https://i.scdn.co/image/ab67616d0000b273609aa1b335282c3e3ac4ac73,1,53,118773,https://p.scdn.co/mp3-preview/71479d6f80cccccd965b253e6a7eb6194115f57f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,DEG320704360,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,folk rock,mellow gold,rock-and-roll,rockabilly,sunshine pop",0.521,0.712,4.0,-4.44,1.0,0.0385,0.311,0.0,0.384,0.812,118.029,4.0,,10TEN MEDIA,"C 2017 10TEN MEDIA, P 2017 10TEN MEDIA",231 +232,spotify:track:2C3RaGRcUWBlgKoLzQvRDS,Miss Sarajevo,"spotify:artist:4GCWiBjgcpUciB55iT5bel, spotify:artist:0Y8KmFkKOgJybpVobn1onU","Passengers, Luciano Pavarotti",spotify:album:40i4U8691CTAUVKSEQ5wcy,Original Soundtracks 1,spotify:artist:4GCWiBjgcpUciB55iT5bel,Passengers,1995-01-01,https://i.scdn.co/image/ab67616d0000b273d0ecf203dca1ebd6979cc6d5,1,7,340466,https://p.scdn.co/mp3-preview/a9b81d090d270ad1d6d2dcce9047d7ac9199cca6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN9500157,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ambient pop,canzone napoletana,classical tenor,italian tenor,opera,operatic pop",0.217,0.451,4.0,-10.432,1.0,0.0293,0.157,0.804,0.339,0.161,99.821,4.0,,Mercury,"C © 1995 Universal International Music B.V., P ℗ 1995 Universal International Music B.V.",232 +233,spotify:track:1SWmFiFSIBoDbQJjNKC7SR,Against The Wind,spotify:artist:485uL27bPomh29R4JmQehQ,Bob Seger,spotify:album:2Go2GZ8qMznHdAoLO1cG4W,Against The Wind,spotify:artist:485uL27bPomh29R4JmQehQ,Bob Seger,1980-02-25,https://i.scdn.co/image/ab67616d0000b27399b37676fbae815424b4b1a4,1,6,333720,https://p.scdn.co/mp3-preview/1e60ab5208f717d744329d7e883d7f17c934a16b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USCA20300155,spotify:user:bradnumber1,2022-06-29T07:15:57Z,"album rock,classic rock,country rock,detroit rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.674,0.771,7.0,-5.612,1.0,0.0246,0.28,0.0318,0.133,0.718,109.618,4.0,,Bob Seger,"C © 1980 Hideout Records & Distributors, Inc., under exclusive license to Capitol Records, P ℗ 1980 Hideout Records & Distributors, Inc., under exclusive license to Capitol Records",233 +234,spotify:track:31UBcyZkwJRy2ZV5XpMlxh,Lady Bump,spotify:artist:2EqPo7BwJq5UJsE5nWqgrk,Penny McLean,spotify:album:6kzmZYoPgcFMjdEjnngIaH,Lady Bump,spotify:artist:2EqPo7BwJq5UJsE5nWqgrk,Penny McLean,1975,https://i.scdn.co/image/ab67616d0000b273dee73bcf887b424fa43c5178,1,1,226640,https://p.scdn.co/mp3-preview/6fae96eedc3cd6446f88fb0a903370c24ef26d89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USRDC7520050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.831,0.511,2.0,-14.578,0.0,0.115,0.00343,0.000686,0.0519,0.965,122.038,4.0,,Butterfly Productions,"C (C) 1975 Butterfly Productions, P (P) 1975 Butterfly Productions",234 +235,spotify:track:4anehmsEuhkXRjm6HAocaj,Jump In The Pool,spotify:artist:3mZqziCJj4pq3P2VBpmK6p,Friendly Fires,spotify:album:6o5Da716CH8m1im2XiaeE1,Friendly Fires,spotify:artist:3mZqziCJj4pq3P2VBpmK6p,Friendly Fires,2009-08-30,https://i.scdn.co/image/ab67616d0000b273aaa41b6989ea856f87581b5b,1,1,217040,https://p.scdn.co/mp3-preview/cd63f863b4dcd4e0b06d4561d8b26362b8153859?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS0800398,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance rock,dance-punk,electrofox,indietronica,neo-synthpop,new rave,nu disco",0.419,0.924,9.0,-4.404,1.0,0.116,0.00883,0.0229,0.313,0.362,139.977,4.0,,XL,"C 2008 XL Recordings Ltd., P 2008 XL Recordings Ltd.",235 +236,spotify:track:357A5woJFJjhOLjHbUr2AU,Help Yourself,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,spotify:album:17nsjQSGPKvpv3K4xHC90w,50 Reasons To Love: Tom Jones,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,2010-01-01,https://i.scdn.co/image/ab67616d0000b273a9ad5616f5a390f411f2755b,1,4,173106,https://p.scdn.co/mp3-preview/a8edff66bf8f887c1dd55e0852430ec97a68ec31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF076820070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion",0.62,0.76,4.0,-7.196,1.0,0.0568,0.555,2.26e-05,0.674,0.909,90.914,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Universal Music Australia Pty Ltd., P This Compilation ℗ 2010 Universal Music Australia Pty Ltd.",236 +237,spotify:track:55lX3vm1G35mUpawXHK5Te,Every Heartbeat,spotify:artist:72Nhcx7prNk2ZCxhx0Y5es,Amy Grant,spotify:album:6YbWlg2x8aIHASDTunWF8H,Heart In Motion,spotify:artist:72Nhcx7prNk2ZCxhx0Y5es,Amy Grant,1991,https://i.scdn.co/image/ab67616d0000b2735092211df603ccb499ccfd5b,1,3,213733,https://p.scdn.co/mp3-preview/dfeb14ba75dbd3c64b02a1f522e5f8e2cebbf57a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USSP30765180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,christian music,0.648,0.89,2.0,-3.834,1.0,0.0429,0.288,0.0,0.119,0.808,126.956,4.0,,Amy Grant (AGG),"C © 2007 Amy Grant Productions, P ℗ 2007 Amy Grant Productions",237 +238,spotify:track:0Wl42CUb1phIU9O2aR1wXI,Disarm,spotify:artist:40Yq4vzPs9VNUrIBG5Jr2i,The Smashing Pumpkins,spotify:album:1cUnNrx2TxvrpwPRtvpGwn,(Rotten Apples) The Smashing Pumpkins Greatest Hits,spotify:artist:40Yq4vzPs9VNUrIBG5Jr2i,The Smashing Pumpkins,2001-01-01,https://i.scdn.co/image/ab67616d0000b273c48f42fdafcffcedbdbce025,1,6,198466,https://p.scdn.co/mp3-preview/90718caa11886a9294ccd2adada731c538d04191?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USVI29300030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,permanent wave,rock,spacegrunge",0.515,0.426,4.0,-9.267,0.0,0.0278,0.0482,0.737,0.121,0.195,129.3,4.0,,Virgin Records,"C © 2001 Virgin Records, P ℗ 2001 Virgin Records",238 +239,spotify:track:2bS8qFEEsbBht032fzVPZ5,Sexy Love,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:77zVSjHqlt9OkcyqIDRhkZ,Kiss Me Once,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2014-03-14,https://i.scdn.co/image/ab67616d0000b273efb7e3e7c4a83e1e58d3872a,1,4,211745,https://p.scdn.co/mp3-preview/9318310ce4995b6dcd61fdb0bd19653cb5aa70ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBAYE1400064,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.673,0.906,0.0,-2.891,1.0,0.0624,0.0242,0.0247,0.0993,0.952,116.969,4.0,,WM Australia,"C © 2014 KDB Pty Limited, P ℗ 2014 KDB Pty Limited",239 +240,spotify:track:4SOwSwa3vvq6B6Za84N5kh,You're the One,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,spotify:album:5t7Bn5XfE7yj2rqydVq0Ue,True Romance,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,2013-04-12,https://i.scdn.co/image/ab67616d0000b273c004413fd98fe52ea4991fbb,1,11,195320,https://p.scdn.co/mp3-preview/b5cc21653ec9d0da4eb86bc364484401c7ed7250?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAHS1300105,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,candy pop,metropopolis,pop,uk pop",0.561,0.771,11.0,-3.965,1.0,0.0385,0.00189,0.000223,0.115,0.365,90.972,4.0,,Asylum,"C © 2013 Warner Music UK Limited, P ℗ 2013 Warner Music UK Limited",240 +241,spotify:track:3BliUWoxPngMNAQKCR8sRi,Have I Told You Lately,spotify:artist:2hrfuB0LtVmFZ6MvPMIHTK,Russell Watson,spotify:album:7GDBREGjcXA8ufBeKJPiya,Popera - Essential Classical Crossover,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-12-09,https://i.scdn.co/image/ab67616d0000b2731ffa78122a610ad6f99ede35,1,11,274480,https://p.scdn.co/mp3-preview/f3dbe5f777fd43d972c1ca7c0a009352f19e0497?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBA0742080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,operatic pop,0.399,0.206,5.0,-12.763,1.0,0.0309,0.786,0.0,0.0948,0.117,136.713,4.0,,U-5,"C 2014 U-5, P 2014 U-5",241 +242,spotify:track:1ZvS1DmW1cF0oknYGCVNK7,Candle In The Wind,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:6T9u7scKy8yDe6V1QmXpoJ,Elton John's Greatest Hits,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1990-01-01,https://i.scdn.co/image/ab67616d0000b273ecee84684fcb612c2fe12035,1,8,228000,https://p.scdn.co/mp3-preview/c6b70f7e5f1e45efb9f4d677cb8ba3c041caa39a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMB9500056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.6,0.414,4.0,-13.182,1.0,0.0291,0.172,5.91e-06,0.264,0.588,124.43,4.0,,Universal/Island Def Jam,"C © 1990 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1990 Universal Records, a Division of UMG Recordings, Inc.",242 +243,spotify:track:04FuQwYgBdeYxdnv6Ve9mK,I Knew I Loved You,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:7zkjepWAvcH8fN5eisBZJk,Affirmation,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,2000-06-12,https://i.scdn.co/image/ab67616d0000b2735a7997b1322919a9d346fe9c,1,3,252000,https://p.scdn.co/mp3-preview/db499cbd0f6f66de3f17369eb3f7aff8e662eb24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09900167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop rock",0.554,0.494,9.0,-9.875,1.0,0.029,0.312,8.73e-05,0.0806,0.738,169.923,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P This Compilation ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",243 +244,spotify:track:5RC9olve1FVs1bnIneatm8,Free,spotify:artist:1cK2Abwkni7m51wJCSGllN,Ultra Naté,spotify:album:5k8evXM0YJNZpCQ0dMXGCJ,Situation:Critical,spotify:artist:1cK2Abwkni7m51wJCSGllN,Ultra Naté,1998-04-27,https://i.scdn.co/image/ab67616d0000b27304c1faeef7c47782df8d53d0,1,3,353360,https://p.scdn.co/mp3-preview/72121b48199901803c3abb3b2eec8a6df31a24d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBDVG1133103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,garage house,vocal house",0.757,0.905,5.0,-6.771,0.0,0.0338,0.00252,0.00117,0.0357,0.624,125.001,4.0,,Strictly Rhythm,"C © 2011 Strictly Rhythm Records, P ℗ 1998 BMG Rights Management (US) LLC",244 +245,spotify:track:2ctY9KP7zLgfmf1GnKxMBq,Feels So Right,spotify:artist:1MYRPpeCETOc6MOoowNM3y,Sunset City,spotify:album:5g1jvinBToCvzFAYa20MO1,Feels So Right,spotify:artist:1MYRPpeCETOc6MOoowNM3y,Sunset City,2020-01-17,https://i.scdn.co/image/ab67616d0000b2734e7c18b4bff9ce6605358561,1,1,207561,https://p.scdn.co/mp3-preview/b842c842cb8dbd5701c4877a57119bfa83883629?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUCN31900434,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian electropop,0.735,0.747,7.0,-4.227,1.0,0.0614,0.026,1.73e-06,0.3,0.638,118.051,4.0,,Universal Music Australia (Distribution),"C © 2020 Central Station Records, P ℗ 2020 Central Station Records",245 +246,spotify:track:1orVKbp6vqtfAPOmvRofVq,Rock'n Me,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,spotify:album:0fjJOLqG3v7vXRYhz2wxPC,Fly Like An Eagle,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,1976-01-01,https://i.scdn.co/image/ab67616d0000b2732fc23e78e87d793054bba090,1,8,187066,https://p.scdn.co/mp3-preview/845fea63f1fa358c71a3da5ef0a233751d300e04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USCA28700297,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.695,0.582,4.0,-11.35,1.0,0.0651,0.297,0.0,0.123,0.892,122.433,4.0,,CAPITOL CATALOG MKT (C92),"C © 1976 Capitol Records, LLC, P ℗ 1976 Capitol Records, LLC",246 +247,spotify:track:5MhsZlmKJG6X5kTHkdwC4B,I'm an Albatraoz,"spotify:artist:5vCOdeiQt9LyzdI87kt5Sh, spotify:artist:1KYt3TMGpa1LtVi0m2A0F9","AronChupa, Little Sis Nora",spotify:album:1qHVYbxQ6IS8YRviorKDJI,I'm an Albatraoz,"spotify:artist:5vCOdeiQt9LyzdI87kt5Sh, spotify:artist:1KYt3TMGpa1LtVi0m2A0F9","AronChupa, Little Sis Nora",2014-08-08,https://i.scdn.co/image/ab67616d0000b2734676cbf99a56d53dc494abfb,1,1,166848,https://p.scdn.co/mp3-preview/74753a1f98b8e4e674c02a0058d0c1e711bd00e4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,70,SEYOK1406001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"swedish pop,melbourne bounce international",0.883,0.817,0.0,-5.414,1.0,0.235,0.601,0.00449,0.11,0.595,128.078,4.0,,Aron Ekberg,P (P) 2014 Aron Ekberg under exclusive license to Sony Music Entertainment Sweden AB,247 +248,spotify:track:5wzEaFZ87acfJNVlIDoZE8,Victims,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,spotify:album:0VgBqlPrvUQsOqSwzA0fET,Colour By Numbers,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,1983-10-01,https://i.scdn.co/image/ab67616d0000b273784f3d22b1b28313311acd2a,1,10,293426,https://p.scdn.co/mp3-preview/60ac9e1089640d7eba579c293c9dcaaaed3b093c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBAAA8300011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock,synthpop",0.426,0.278,8.0,-15.283,1.0,0.0359,0.618,0.0,0.0773,0.343,125.195,4.0,,Virgin Catalogue,"C © 1983 Virgin Records Limited, P ℗ 1983 Virgin Records Limited",248 +249,spotify:track:0FExfsU24F7hO8f1UOtApd,Love Letters,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,spotify:album:4Tzok4AlxCpo8YVFRWKk3a,It's All Happening - 23 Original Hits (1964-1975),spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,1995-01-01,https://i.scdn.co/image/ab67616d0000b2732a0a7bf57031f91316bb840a,1,15,194880,https://p.scdn.co/mp3-preview/f580e37c4580ee664ca2f57a916aec1930537562?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06500043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.379,0.494,10.0,-6.817,1.0,0.0271,0.685,6.33e-06,0.204,0.231,142.342,3.0,,Albert Productions,"C © 1995 BMG AM Pty Ltd., P ℗ 1995 BMG AM Pty Ltd.",249 +250,spotify:track:7Kf8vPW2GYpnzdbtpl4bEz,This Ain't A Love Song,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:4onS9G9K30nXbgjKWNI0tX,These Days (Remastered),spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1995-06-27,https://i.scdn.co/image/ab67616d0000b27309bacda399c5915867226b10,1,3,306240,https://p.scdn.co/mp3-preview/b388343a5c85fc6d7aed1b1c0e81852bf2465c22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19505102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.348,0.635,4.0,-6.836,1.0,0.0386,0.0932,0.0,0.126,0.144,87.974,3.0,,Universal Music Group,"C © 1995 The Island Def Jam Music Group, P ℗ 1995 UMG Recordings, Inc.",250 +251,spotify:track:43qSGIUGX1Ox07xPJ9AT9o,Memphis Tennessee,spotify:artist:0wPdF6oU9sRm16BNvWfyRR,Dave Berry,spotify:album:686IZNlCdkQASiRCcBiYUB,Dave Berry,spotify:artist:0wPdF6oU9sRm16BNvWfyRR,Dave Berry,1964-01-01,https://i.scdn.co/image/ab67616d0000b273251c954105aed4f75ad889eb,1,9,145066,https://p.scdn.co/mp3-preview/8c023f9e799747b9dcff3fb03185c1aecc9d4797?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBBBA1500009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.756,0.843,9.0,-6.22,1.0,0.0584,0.225,0.0,0.0742,0.916,103.675,4.0,,Decca Music Group Ltd.,"C © 1964 Decca Music Group Limited, P ℗ 1964 Decca Music Group Limited",251 +252,spotify:track:5icOoE6VgqFKohjWWNp0Ac,Here With Me,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:3CjlHNtplJyTf9npxaPl5w","Marshmello, CHVRCHES",spotify:album:6NHS3hV16MZyfcp0nSHdrd,Here With Me,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:3CjlHNtplJyTf9npxaPl5w","Marshmello, CHVRCHES",2019-03-08,https://i.scdn.co/image/ab67616d0000b273a8ac314161aef0f4b5769344,1,1,156346,https://p.scdn.co/mp3-preview/e5e14f6a15fef74cfdab27f117a83a7b955ff839?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUG11900610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,edm,pop,progressive electro house,indietronica,metropopolis,neo-synthpop,shimmer pop",0.791,0.565,5.0,-3.933,0.0,0.0439,0.0623,0.0,0.156,0.181,99.961,4.0,,Marshmello/Republic,"C © 2019 Joytime Collective, under exclusive license to UMG Recordings, Inc., P ℗ 2019 Joytime Collective, under exclusive license to UMG Recordings, Inc.",252 +253,spotify:track:67aeyMdt7cgb8l9zg53Pfm,I Believe in You,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:2OXZJLXxM8jrY3gBoVNfmz,Nobody but Me (Deluxe),spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2016-10-21,https://i.scdn.co/image/ab67616d0000b273576629f3c4631eb55612a7c7,1,1,201813,https://p.scdn.co/mp3-preview/c7a78d72ed22ffc9308858602879459f734e5e7b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USRE11600454,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.612,0.744,8.0,-5.671,1.0,0.033,0.125,2.57e-06,0.0978,0.527,113.009,4.0,,Reprise,"C © 2016 Reprise Records, P ℗ 2016 Reprise Records",253 +254,spotify:track:6DzbmjkVZpz1mrDobAoJI8,Shimmer,spotify:artist:0EyuKHE1AeE9lWUF8mzKVp,Fuel,spotify:album:5CmgNXCwdGuqn6EPzfb4Tq,The Best of Fuel,spotify:artist:0EyuKHE1AeE9lWUF8mzKVp,Fuel,2005,https://i.scdn.co/image/ab67616d0000b273ecba48295193b82f13cd560f,1,3,214040,https://p.scdn.co/mp3-preview/bd10d216c5d69f0ae9ed4957dfb9acff08cc595e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USSM19702935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge",0.263,0.784,7.0,-6.514,1.0,0.054,0.00192,0.0,0.15,0.385,114.671,4.0,,Epic,"P (P) 1998, 2000, 2002, 2003 Sony Music Entertainment",254 +255,spotify:track:40tnMfqlJ5PTNJFlx1U2RL,If It's Lovin' That You Want,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:2Pr6XAzfBObBUTgiSXmr3n,Music Of The Sun,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2005-08-29,https://i.scdn.co/image/ab67616d0000b2734a8c869f3bd4d0d4519a8c50,1,3,208106,https://p.scdn.co/mp3-preview/c6a591111552f6496b350afd7b7f73a2876315e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70501130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.745,0.694,8.0,-7.519,1.0,0.128,0.0962,0.0,0.0454,0.74,95.924,4.0,,Universal Music Group,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",255 +256,spotify:track:7rESBzoqp0FGxElzjRuMDB,Are You With Me - Radio Edit,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,spotify:album:0kS2szm8kFZf5frFsV32If,Are You With Me,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,2008,https://i.scdn.co/image/ab67616d0000b273acc729dad4244e3ab31af2eb,1,1,219833,https://p.scdn.co/mp3-preview/a87fd3b3660066b0df8f680ad59b3cfdea98d776?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUNV01500323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian house",0.57,0.881,7.0,-5.223,1.0,0.0516,0.00376,1.15e-06,0.546,0.356,128.078,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Hussle Recordings, a division of Ministry Of Sound Australia Pty Ltd, P ℗ 2008 Hussle Recordings, a division of Ministry Of Sound Australia Pty Ltd",256 +257,spotify:track:6aXKbU2QGsOms8UT3eUOg1,Catch the Wind,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,spotify:album:3lpCSdIUmTWkb3BrAxDZSR,What's Bin Did and What's Bin Hid,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,1965-05-14,https://i.scdn.co/image/ab67616d0000b273359e44fe4d628897a65e3250,1,2,173813,https://p.scdn.co/mp3-preview/adc85d12b0912ea45432035b4644481fca1dbc43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70817533,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british folk,british invasion,classic rock,folk,folk rock,glam rock,psychedelic folk,psychedelic rock,scottish singer-songwriter,singer-songwriter",0.385,0.305,3.0,-12.167,1.0,0.0296,0.452,7.69e-06,0.128,0.547,173.377,3.0,,Sanctuary Records,"C © 2001 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2001 Sanctuary Records Group Ltd., a BMG Company",257 +258,spotify:track:30Na9W2WrBLGrRoKlEiwbh,Don't Wanna Let You Go - Radio Edit,"spotify:artist:6rEzedK7cKWjeQWdAYvWVG, spotify:artist:7KUri7klyLaIFXLcuuOMCd","Five, Stargate",spotify:album:5jSAkaiC1BBKZQSZ7wFYOY,Greatest Hits,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,2003-06-02,https://i.scdn.co/image/ab67616d0000b27310df926bec224d743644ea3e,1,11,217533,https://p.scdn.co/mp3-preview/940869984658f0d5695cd6cad71fc2b23fa233de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GBARL9900165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,norwegian pop",0.744,0.952,0.0,-2.902,0.0,0.0476,0.223,3.4e-06,0.126,0.945,103.232,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,258 +259,spotify:track:6HMvJcdw6qLsyV1b5x29sa,Hello,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,spotify:album:5U0NU0T1JKIJwgq2ZDWb2T,Can't Slow Down,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,1983-01-01,https://i.scdn.co/image/ab67616d0000b2732166b28714239e31b48aeb17,1,8,246933,https://p.scdn.co/mp3-preview/da1264ce9267751a2194138d15f722b3fa72e041?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USMO18390012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.424,0.222,9.0,-15.053,0.0,0.0391,0.646,0.0,0.148,0.0606,61.648,4.0,,Motown,"C © 1983 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1983 Motown Records, a Division of UMG Recordings, Inc.",259 +260,spotify:track:3QUzJqgkcjvsLhgqVos6ha,Cloudy Day,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,spotify:album:5fzx5p8CnKO8ZFrluq8xAi,Cloudy Day,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,2021-06-10,https://i.scdn.co/image/ab67616d0000b2737060b604602090f2143b64ed,1,1,185303,https://p.scdn.co/mp3-preview/2a83368527612d74e79e5fcc6cfd626d2e6bc436?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USAT22101787,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.705,0.773,4.0,-6.094,1.0,0.0443,0.0691,2.07e-06,0.0245,0.358,116.013,4.0,,Sony Music Entertainment,P (P) 2021 Bad Batch Records,260 +261,spotify:track:5spfJMqDpBvM0YNgAQGqxD,If We Ever Meet Again (Featuring Katy Perry),spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ,Timbaland,spotify:album:0oLeI4xFJnOBMbQJH6TgEs,Shock Value II (International Deluxe version),spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ,Timbaland,2009-01-01,https://i.scdn.co/image/ab67616d0000b2737e00fd13c89c5eadf130e951,1,9,292706,https://p.scdn.co/mp3-preview/50f2ebffaa46fa5c5462dbaffa7cb591b1a91691?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70913828,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.652,0.605,8.0,-7.371,1.0,0.0393,0.00481,0.0,0.0605,0.394,126.091,4.0,,Universal Music Group,"C © 2009 Blackground Records/Interscope Records, P ℗ 2009 Blackground Records/Interscope Records",261 +262,spotify:track:0vYyK3kdY62SBplhh2iNJO,Free (feat. Emeli Sandé & Nas),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:7sfgqEdoeBTjd8lQsPT3Cy, spotify:artist:20qISvAhX20dpIbOOzGK3q","Rudimental, Emeli Sandé, Nas",spotify:album:4wYFuEE0p1aRlQ0NAa8oCi,Free (feat. Emeli Sandé),spotify:artist:4WN5naL3ofxrVBgFpguzKo,Rudimental,2013-11-15,https://i.scdn.co/image/ab67616d0000b2736fb520fdcb93cdc9cfba67de,1,1,270883,https://p.scdn.co/mp3-preview/1d2aef3fef45e6bd5a3db07ba0d04240bd084400?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAHS1300483,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,r&b,talent show,uk pop,conscious hip hop,east coast hip hop,gangster rap,hardcore hip hop,hip hop,queens hip hop,rap",0.642,0.496,0.0,-10.922,1.0,0.0851,0.122,0.00789,0.113,0.157,110.003,4.0,,Asylum,"C © 2013 Warner Music UK Limited., P ℗ 2013 Warner Music UK Limited.",262 +263,spotify:track:4YzJxZBPeudi2QsJiVLVCa,Don't Start Now - Dom Dolla Remix,"spotify:artist:6M2wZ9GZgrQXHCFfjv46we, spotify:artist:205i7E8fNVfojowcQSfK9m","Dua Lipa, Dom Dolla",spotify:album:4bFD3e4YDki1tu4EQCfSdt,Don't Start Now (Remixes),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-01-10,https://i.scdn.co/image/ab67616d0000b273e45e2fd04f2653205ebd09a4,1,1,210879,https://p.scdn.co/mp3-preview/69142c4ee2f0b15b8e8b1637fbf6574ff2b4389c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAHT1901164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,australian house,deep groove house,house",0.862,0.897,2.0,-5.444,1.0,0.0365,0.0664,0.00548,0.263,0.603,123.999,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",263 +264,spotify:track:70C4NyhjD5OZUMzvWZ3njJ,Piano Man,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:69wjSAZXZiD2EBia3b3gxL,Piano Man (Legacy Edition),spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1973-11-07,https://i.scdn.co/image/ab67616d0000b273aff4aef671b2510be7c115b3,1,2,339000,https://p.scdn.co/mp3-preview/15c3badbac17e832e321cfb0be8f53f92708021b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USSM17300504,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.331,0.55,0.0,-6.483,1.0,0.0272,0.605,3.96e-06,0.192,0.429,177.734,3.0,,Columbia/Legacy,"P (P) 1973 Columbia Records, a division of Sony Music Entertainment/(P) 2010 Columbia Records, a division of Sony Music Entertainment",264 +265,spotify:track:2IWYi4NJyJvhpJVjVs2pm8,Stop,"spotify:artist:3gvT4Mc7kn54IUy08Y0Tr5, spotify:artist:67OKa82otrQqKDsfTDfSYA","Sam Brown, Pete Brown",spotify:album:1Co1PfkD3RSirfxw6h2KfJ,Stop!,spotify:artist:3gvT4Mc7kn54IUy08Y0Tr5,Sam Brown,1988-01-01,https://i.scdn.co/image/ab67616d0000b2736d47d9c46ea3da302dddb812,1,3,295906,https://p.scdn.co/mp3-preview/ae9398b72dfff56ee03f0b5a7f2075034775524f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAAM8800004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.326,0.3,9.0,-13.671,1.0,0.0454,0.443,0.0,0.139,0.391,185.63,3.0,,EMI,"C © 1988 A&M Records Limited, P ℗ 1988 A&M Records Limited",265 +266,spotify:track:1FRP8d6l2jm3DS5f78ZrhK,Route 66,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:0bJMFJ2XQwpO5nKTrYdUtX,The Rolling Stones,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1964-04-16,https://i.scdn.co/image/ab67616d0000b273e5bd9c16543752620815ebdc,1,1,140400,https://p.scdn.co/mp3-preview/060ee6c04e37fed29612d8ff94f9d283999b7fbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USA176410020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.671,0.725,2.0,-10.065,1.0,0.065,0.296,0.00022,0.0889,0.956,85.27,4.0,,ABKCO (US),"C © 2010 ABKCO Music & Records, Inc., P ℗ 1964 ABKCO Music & Records, Inc.",266 +267,spotify:track:4AIazttPmHpd7p7pwJw692,Neutron Star Collision (Love Is Forever) - Soundtrack Version,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,spotify:album:2tJXza5ryx9DKIsmAI8neb,Neutron Star Collision [Love Is Forever],spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,2010-05-17,https://i.scdn.co/image/ab67616d0000b27397f1e459b475d83d8fee569d,1,1,230256,https://p.scdn.co/mp3-preview/a01bbfe6ee4aaf059bf1161842447abe5f737f81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAT21001022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern rock,permanent wave,rock",0.287,0.9,1.0,-5.852,1.0,0.0932,0.00379,1.48e-05,0.0876,0.132,127.997,4.0,,Chop Shop/Atlantic,"C © 2010 Warner Music U.K. Ltd., P ℗ 2010 Warner Music U.K. Ltd.",267 +268,spotify:track:7AJSeWSVBBLAQ6xfGyCssC,Automatic (Album Version),spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,spotify:album:3zGFU1Eq1SCPkmYGmuCCxB,Dance Vault Remixes,spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,2006-05-30,https://i.scdn.co/image/ab67616d0000b273220598299a46f3020759af42,1,7,292360,https://p.scdn.co/mp3-preview/024f257d00e2663ea3a53c042f8bd18e47fefc39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USRC19901793,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,girl group,hi-nrg,motown,new wave pop,soft rock",0.827,0.553,5.0,-10.84,1.0,0.0553,0.128,0.0,0.0736,0.918,110.605,4.0,,RCA Records Label,"P (P) 2006 RCA Records, a unit of SONY BMG MUSIC ENTERTAINMENT",268 +269,spotify:track:6A6qBFJHid4WutQu6HHEZt,Walking On A Dream,spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,spotify:album:1GoqBRUPZzBKvMKZxSQ1mp,Walking On A Dream (Special Edition),spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,2009-01-01,https://i.scdn.co/image/ab67616d0000b273fffbc6bb8f405c2dacf8d64b,1,2,198440,https://p.scdn.co/mp3-preview/7b3e099a5fa998619afa9556249a805712ea72a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,AUEI10800039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,dance rock,indietronica,neo-synthpop",0.87,0.699,5.0,-5.541,0.0,0.0459,0.245,6.76e-06,0.0588,0.726,126.967,4.0,,Capitol Records,"C © 2009 The Sleepy Jackson Pty Ltd and Nick Littlemore, P ℗ 2009 The Sleepy Jackson Pty Ltd and Nick Littlemore",269 +270,spotify:track:7Al0ADUt8SCPiQIBbTcNdR,Spin the Black Circle - Remastered,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:5pd9B3KQWKshHw4lnsSLNy,Vitalogy,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,1994-11-22,https://i.scdn.co/image/ab67616d0000b273f0f6b8bc425633e6ed6369c4,1,2,167613,https://p.scdn.co/mp3-preview/c94ec7b5c50d9f09c825003fbc24a13cb630632d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM11100228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.236,0.99,2.0,-4.719,0.0,0.095,0.00063,0.0586,0.407,0.141,217.913,4.0,,Epic/Legacy,"P (P) 1994, 2011 Sony Music Entertainment",270 +271,spotify:track:2T4u39au5RJzsulMUpRuVr,Meet Me Halfway,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:5lNzygOpCmzRx4N301icBB,THE E.N.D. (THE ENERGY NEVER DIES) [International Version],spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2009-01-01,https://i.scdn.co/image/ab67616d0000b27349ed7a0ea23c40c730f6bb37,1,3,284373,https://p.scdn.co/mp3-preview/6b7763e13fc62647845a304f025b5723f8867618?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70967700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.798,0.629,11.0,-6.857,0.0,0.0735,0.00474,2.17e-05,0.324,0.4,130.0,4.0,,Universal Music Group,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",271 +272,spotify:track:3koCCeSaVUyrRo3N2gHrd8,Let's Groove,spotify:artist:4QQgXkCYTt3BlENzhyNETg,"Earth\, Wind & Fire",spotify:album:1hj1SYbJYdXloRiSjsCLXg,Raise!,spotify:artist:4QQgXkCYTt3BlENzhyNETg,"Earth\, Wind & Fire",1981-11-14,https://i.scdn.co/image/ab67616d0000b273b30c8b93cef6fa26f8a7f17a,1,1,339320,https://p.scdn.co/mp3-preview/12ad0800feab7ef7620c36168b603842378ebacd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USSM18100641,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,jazz funk,motown,soul",0.869,0.648,11.0,-8.698,0.0,0.0633,0.121,2.17e-05,0.126,0.9,125.035,4.0,,Legacy Recordings,"P (P) 1981 Columbia Records, a divisoin of Sony Music Entertainment",272 +273,spotify:track:5bitEcj72xFL3yv9ZS5fkE,The Time (Dirty Bit),spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:5zwp1Sa7v6Mjp9CNZLZ7RO,The Beginning,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2010-01-01,https://i.scdn.co/image/ab67616d0000b27348caf395c71e325a242b092e,1,1,307640,https://p.scdn.co/mp3-preview/16511f133ac729ed0d843174393348e2ea428c4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71026190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.828,0.794,6.0,-7.751,0.0,0.0699,0.0816,5.34e-06,0.614,0.509,127.987,4.0,,Universal Music Group,"C © 2010 Interscope Records, P ℗ 2010 Interscope Records",273 +274,spotify:track:7fb22pjF62S9r1s1pian5K,Happy Nation,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,spotify:album:5UwIyIyFzkM7wKeGtRJPgB,The Sign,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,1993-12-24,https://i.scdn.co/image/ab67616d0000b273fda5556cb6981c3113df6175,1,9,255413,https://p.scdn.co/mp3-preview/cb305ced36ceac1cae575c03f7d371f5dc030002?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEVJH0803407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,new wave pop",0.67,0.867,1.0,-5.136,1.0,0.0368,0.00123,0.00472,0.0796,0.67,96.049,4.0,,Playground Music,"C 2014 Mega Records, a Division of Playground Music Scandinavia AB, P 1993 Mega Records, a Division of Playground Music Scandinavia AB",274 +275,spotify:track:1Hb1IJ9bBCa6wo3fRtexnJ,Shake Me Down,spotify:artist:26T3LtbuGT1Fu9m0eRq5X3,Cage The Elephant,spotify:album:0WizSRN8LuMWhliou9PFlg,Thank You Happy Birthday,spotify:artist:26T3LtbuGT1Fu9m0eRq5X3,Cage The Elephant,2011-01-10,https://i.scdn.co/image/ab67616d0000b2735f1590fb5d2f9e1bed8bb2e8,1,4,211373,https://p.scdn.co/mp3-preview/756b029cf64aaa9f7a7fa60881b71bce2ee7f174?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USJI11000232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern alternative rock,modern rock,pov: indie,punk blues,rock",0.457,0.613,9.0,-5.756,1.0,0.0295,0.00463,0.000406,0.0711,0.132,105.111,4.0,,Jive,"P (P) 2011 JIVE Records, a unit of Sony Music Entertainment",275 +276,spotify:track:5Ih40KFkj3cSzxgisQxBvX,For What It's Worth,spotify:artist:6sN51vEARnAAdBw1IKZ8Q9,Liam Gallagher,spotify:album:2V3WS9tlPYmscBNWHHYu9X,As You Were (Deluxe Edition),spotify:artist:6sN51vEARnAAdBw1IKZ8Q9,Liam Gallagher,2017-10-06,https://i.scdn.co/image/ab67616d0000b273d1e28a5de3822046bc27d8ae,1,5,251631,https://p.scdn.co/mp3-preview/344cb9fd20e0d9544cc530ddf0da2db9cfe47f08?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAHT1700415,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,britpop revival,solo wave",0.489,0.835,0.0,-4.448,1.0,0.0332,0.00746,0.0,0.146,0.444,145.885,4.0,,Warner Records,"C © 2017 Warner Records Inc. UK, a Warner Music Group Company, P ℗ 2017 Warner Records Inc. UK, a Warner Music Group Company",276 +277,spotify:track:3W8KQQD2FZPLVqflvYYyjT,Total Eclipse of the Heart,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,spotify:album:5cXPuSJTCxftUGheHpv4bC,Heaven & Hell,"spotify:artist:7dnB1wSxbYa8CejeVg98hz, spotify:artist:0SD4eZCN4Kr0wQk56hCdh2","Meat Loaf, Bonnie Tyler",1989,https://i.scdn.co/image/ab67616d0000b273e12075d9109147a241e04884,1,6,270040,https://p.scdn.co/mp3-preview/a037b3a3ca7088e649fd3e4a41d13007ead8211e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBBBN8300002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,new wave pop,soft rock",0.435,0.56,8.0,-11.359,1.0,0.0685,0.213,0.0,0.0912,0.176,130.162,4.0,,Columbia,P (P) 2004 SONY BMG MUSIC ENTERTAINMENT,277 +278,spotify:track:2hcPE11xSLCNHt5PYidj5U,Say You Love Me,spotify:artist:5Mq7iqCWBzofK39FBqblNc,Jessie Ware,spotify:album:5ibkHQmhFSGfaCqMT0z7QR,Say You Love Me,spotify:artist:5Mq7iqCWBzofK39FBqblNc,Jessie Ware,2014-01-01,https://i.scdn.co/image/ab67616d0000b273229d25d1cb40ece19eec573f,1,1,257483,https://p.scdn.co/mp3-preview/87c6b6848e29879dda70e53e8d094d714a60b4be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71402589,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,electropop,neo soul,pop soul,uk pop",0.387,0.413,7.0,-8.95,1.0,0.0559,0.162,1.56e-05,0.262,0.249,173.73,3.0,,Island,"C © 2014 Island Records, a division of Universal Music Operations Limited, P ℗ 2014 Island Records, a division of Universal Music Operations Limited",278 +279,spotify:track:57rCNFS9Cfdg09dNHSAuwM,Don't Hang Up,spotify:artist:7JSIM5U7TZym5M3Q1AFG80,The Orlons,spotify:album:7fL1Feod61MWVEFHptltGs,The Best Of The Orlons,spotify:artist:7JSIM5U7TZym5M3Q1AFG80,The Orlons,2005-10-18,https://i.scdn.co/image/ab67616d0000b273d46f17ebbf8644bbb5c22780,1,3,137066,https://p.scdn.co/mp3-preview/cda1a324404e8f2bcac8b9c10706dbd3fab69196?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USA176240610,spotify:user:bradnumber1,2021-09-16T21:50:16Z,"classic girl group,doo-wop,rhythm and blues",0.769,0.696,7.0,-6.233,1.0,0.0368,0.323,1.57e-06,0.108,0.97,112.842,4.0,,"ABKCO Music and Records, Inc.","C © 2005 ABKCO Music & Records, Inc., P This Compilation ℗ 2005 ABKCO Music & Records, Inc.",279 +280,spotify:track:1KizDBQAlmAMfy4enfwhUf,Shadows,spotify:artist:5JmeloS88DjYXJulG7qgwF,The Getaway Plan,spotify:album:3NsslLpsdANxC2pqG44UNL,"Other Voices, Other Rooms",spotify:artist:5JmeloS88DjYXJulG7qgwF,The Getaway Plan,2008,https://i.scdn.co/image/ab67616d0000b2739eaae4a2a55a38caf533ef09,1,6,223053,https://p.scdn.co/mp3-preview/1a7fdb2a4e3e5b67a3d1cd5227fd473a0bb41bb9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBV10800005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian alternative rock,0.547,0.856,0.0,-5.285,0.0,0.0337,0.00351,0.0,0.124,0.331,119.012,4.0,,WM Australia,"C © 2008 We Are Unified, P ℗ 2008 We Are Unified",280 +281,spotify:track:4u8IPU322yG7mNrqv89GGL,Hey Sexy Lady,"spotify:artist:5EvFsr3kj42KNv97ZEnqij, spotify:artist:0hXfXDhsiayeNFG98qOPHs","Shaggy, Brian & Tony Gold",spotify:album:4JYMeEAVnEVnJhXe1VZS2b,Lucky Day,spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,2002-10-29,https://i.scdn.co/image/ab67616d0000b2739791e400bf42ca4130a11ae9,1,4,199893,https://p.scdn.co/mp3-preview/f616bf78889bc80e7073e3ecde6be4a0cb5b8c66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USMC10201202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,reggae fusion",0.957,0.554,3.0,-6.618,0.0,0.0669,0.00529,0.00179,0.249,0.642,101.784,4.0,,Geffen,"C © 2002 UMG Recordings, Inc., P ℗ 2002 UMG Recordings, Inc.",281 +282,spotify:track:00U0pedRUMEzREpyRqbVT6,I'll Remember (Theme from the Motion Picture With Honors),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:7kUiJdXqLkMTkpY0PmXUv5,Something to Remember,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1995-11-17,https://i.scdn.co/image/ab67616d0000b27326f6bb4664640bfa48391cf4,1,2,263813,https://p.scdn.co/mp3-preview/cf735e287eb03ee1e9b56b1bc024ec1d0bd7f239?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USWB19903141,spotify:user:bradnumber1,2022-06-14T11:14:07Z,"dance pop,pop",0.691,0.598,7.0,-9.699,1.0,0.043,0.625,0.0174,0.0709,0.842,167.797,4.0,,Warner Records,"C © 1995 Warner Records Inc., P ℗ 1995 Warner Records Inc.",282 +283,spotify:track:7kUyEpjTz8Q1loiC1xlF07,Rhinestone Cowboy,spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,spotify:album:7GbDnYwauvhJLmfs8fLGwQ,Essential,spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,1987-01-01,https://i.scdn.co/image/ab67616d0000b2735591c41819e71e2a3a2377ba,1,1,197826,https://p.scdn.co/mp3-preview/53b3aad5a0831ce67ecd12d964799f76015f5440?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USCN18600038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,arkansas country,classic country pop,folk rock,mellow gold,nashville sound,singer-songwriter,soft rock",0.687,0.438,0.0,-13.461,1.0,0.0287,0.189,8.2e-05,0.0762,0.74,114.97,4.0,,EMI Trade Marketing,"C © 2003 EMI Records Ltd, P This Compilation ℗ 1987 Capitol Records Inc.",283 +284,spotify:track:02V0fopGouDF5GbDHftv4S,Rockin’,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:4AdZV63ycxFLF6Hcol0QnB,Starboy,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2016-11-24,https://i.scdn.co/image/ab67616d0000b273a048415db06a5b6fa7ec4e1a,1,5,232880,https://p.scdn.co/mp3-preview/d36a122df33e82561dcbeda06f4a0d29811b88f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USUG11600983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.736,0.883,9.0,-5.595,0.0,0.214,0.0117,0.0,0.0734,0.797,112.92,4.0,,Universal Republic Records,"C © 2016 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc., P ℗ 2016 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.",284 +285,spotify:track:4pCSXZwffXEmxYuHAzVIXQ,Shoop Shoop Diddy Wop Cumma Cumma Wang Dang,spotify:artist:5MJAppfS5mnKHGtfQIjJI4,Monte Video,spotify:album:2YI0nSvfqdSmRteWw26PDE,Monte Video,spotify:artist:5MJAppfS5mnKHGtfQIjJI4,Monte Video,1983-12-01,https://i.scdn.co/image/ab67616d0000b273338fc7f81d0d15b3e31e95fd,1,1,159184,https://p.scdn.co/mp3-preview/aa5b45093725e8863f1f947253aeadf8e081f3df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,NZWM02000127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.706,0.695,2.0,-10.526,1.0,0.411,0.226,0.0,0.0496,0.972,181.337,4.0,,WM New Zealand,"C © 1983 Mushroom Records New Zealand, P ℗ 1983 Mushroom Records New Zealand",285 +286,spotify:track:1rUu58wEd44nEzIbF2CYil,Blue Eyes - Remastered 2003,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:2IK2faEYu07GxN2mhZW0F4,Jump Up! (Remastered 2003),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1982-04-09,https://i.scdn.co/image/ab67616d0000b273874dea40aa8af3f387234bfb,1,6,206266,https://p.scdn.co/mp3-preview/a7dafee08ae5a9a7176e17c91aed4a406319020d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALX8200008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.518,0.229,7.0,-17.18,0.0,0.027,0.575,0.00363,0.123,0.159,106.665,3.0,,Universal Music Group,"C © 2003 Mercury Records Limited, P ℗ 2003 Mercury Records Limited",286 +287,spotify:track:5e4SLbkh2S1Y9t1S14xlkW,All to Myself,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:5mrXvDnW1MK275vDsplMIF,Like It Like That,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2009-10-23,https://i.scdn.co/image/ab67616d0000b273b156fa49f0e23495db026fc9,1,2,273120,https://p.scdn.co/mp3-preview/7706876d6248c4452738319460be125123292493?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUBM00900388,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.641,0.866,11.0,-3.981,1.0,0.0434,0.1,0.0,0.112,0.671,118.941,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd.,287 +288,spotify:track:6HzkBoUMX1kQWizJgP1Uvy,I Can't Help Myself,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,spotify:album:5fpOmAuZaVyEXPlQ4oOqJ6,The Supremes A' Go-Go (Expanded Edition),spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,1966-08-25,https://i.scdn.co/image/ab67616d0000b273a16ea5e673cc4c6e8f91d5ca,1,19,156360,https://p.scdn.co/mp3-preview/0e8197450b99bcde533ee568aee2de3061882bb8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USMO10001096,spotify:user:bradnumber1,2023-02-14T22:22:36Z,"adult standards,classic girl group,classic soul,disco,motown,soul",0.689,0.599,2.0,-9.938,1.0,0.0302,0.0952,0.000243,0.0723,0.967,125.359,4.0,,UNI/MOTOWN,"C © 2017 Motown Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 2017 Motown Records, a Division of UMG Recordings, Inc.",288 +289,spotify:track:0p0FOf4FocnvE8hVJMFBvw,Caught In The Crowd,spotify:artist:6sfUgwUTFjy1SNF2uWOcPp,Kate Miller-Heidke,spotify:album:4MfZuQLc3X8SwngAcD6OLD,Curiouser,spotify:artist:6sfUgwUTFjy1SNF2uWOcPp,Kate Miller-Heidke,2008-10-18,https://i.scdn.co/image/ab67616d0000b273070a426fe63d5f2fa2ea55ac,1,3,213133,https://p.scdn.co/mp3-preview/d98e78fe5b58e4760653e0316716e65bc906b840?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUBM00800477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian singer-songwriter,lilith,piano rock",0.611,0.638,9.0,-5.086,1.0,0.0409,0.431,0.0,0.104,0.424,169.92,4.0,,Sony Music Entertainment,P (P) 2008 SONY BMG Music Entertainment (Australia) Pty Limited,289 +290,spotify:track:3unwRUV5qbjMmH3NJtaODy,Shadow Dancing,spotify:artist:4YPqbAiLzBg5DIfsgQZ8QK,Andy Gibb,spotify:album:3Ru1PEQBFI88kBIWcPGGS8,Shadow Dancing,spotify:artist:4YPqbAiLzBg5DIfsgQZ8QK,Andy Gibb,1978-04-04,https://i.scdn.co/image/ab67616d0000b273cea5214a35f661633cd5a978,1,1,276000,https://p.scdn.co/mp3-preview/91b9681ed3a661c16e6fdeba326ed5df7e111a4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,NLF057890050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.74,0.598,7.0,-9.658,0.0,0.0321,0.15,0.0,0.0664,0.952,101.933,4.0,,Andy Gibb,"C © 1978 Peta Gibb, P ℗ 1978 Peta Gibb",290 +291,spotify:track:50qbYQXLOw8KO18BNLP7VC,Living Without You,"spotify:artist:1IueXOQyABrMOprrzwQJWN, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:1rvnJJghrxl1xakJZct08m","Sigala, David Guetta, Sam Ryder",spotify:album:6OU7EFtbj258KWnSd0SJFo,Every Cloud - Silver Linings,spotify:artist:1IueXOQyABrMOprrzwQJWN,Sigala,2023-03-02,https://i.scdn.co/image/ab67616d0000b27385238385beaf482e034abc68,1,4,184103,https://p.scdn.co/mp3-preview/574a838b95855d0f8130d7f90b486f79e389dd3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBCEN2200078,spotify:user:bradnumber1,2023-06-09T21:24:15Z,"dance pop,edm,pop dance,uk dance,big room,dance pop,edm,pop,pop dance,uk pop",0.57,0.89,11.0,-2.049,0.0,0.0625,0.0407,0.0,0.677,0.563,125.003,4.0,,Ministry of Sound Recordings,P (P) 2023 Ministry of Sound Recordings Limited/B1 Recordings GmbH. a Sony Music Entertainment Company,291 +292,spotify:track:0k02zKPakEmfvvgMsRX3Pw,Those Oldies But Goodies,spotify:artist:0AOfW8WQA50p9xVrK58lDz,Little Cesar & The Romans,spotify:album:0uBV7PHIBOTOGJwxX674F9,Doo Wop Rock,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-09-27,https://i.scdn.co/image/ab67616d0000b273c38c1d097e506e9dfd68294d,1,9,195613,https://p.scdn.co/mp3-preview/3736b55516810bdf7acb18763b4bdfbdc65e3dc7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB4FJ0910612,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.201,0.434,7.0,-10.706,1.0,0.038,0.946,0.0,0.308,0.4,198.108,3.0,,Orange Leisure,C (C) 2010 Orange Leisure,292 +293,spotify:track:2BstRQGodshjGpeDGQiNgo,Do It Again,spotify:artist:6P7H3ai06vU1sGvdpBwDmE,Steely Dan,spotify:album:4Gh6pRaXqXTtJx4plAJbBw,Can't Buy A Thrill,spotify:artist:6P7H3ai06vU1sGvdpBwDmE,Steely Dan,1972-01-01,https://i.scdn.co/image/ab67616d0000b2735a9b9e265814a9c9636a71a4,1,1,356733,https://p.scdn.co/mp3-preview/130e24ed87404b70023239e950a17d58278c941d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USMC17347179,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,mellow gold,rock,soft rock,yacht rock",0.682,0.537,2.0,-10.254,0.0,0.0323,0.218,3.07e-05,0.0556,0.963,124.574,4.0,,Geffen*,"C © 1998 MCA Records Inc., P ℗ 1972 UMG Recordings, Inc.",293 +294,spotify:track:5QwhBTS2W6mmCOZ6W5MSHd,"Twist, Twist Senora",spotify:artist:1Qw8MHpjYxm9Xf0O1ZfPiX,Gary U.S. Bonds,spotify:album:4qBBv8SzOnlzjZtpcsuhv7,The Very Best Of Gary U.S. Bonds (The Original Legrand Masters),spotify:artist:1Qw8MHpjYxm9Xf0O1ZfPiX,Gary U.S. Bonds,1998-11-08,https://i.scdn.co/image/ab67616d0000b2734ba256fe0a2e5b5d35381661,1,9,157893,https://p.scdn.co/mp3-preview/aabce422884afd04ca58221cc198880d0612a2ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US3M59893809,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rhythm and blues,0.504,0.815,10.0,-7.649,1.0,0.0576,0.657,0.0097,0.853,0.877,186.68,4.0,,Varese Sarabande,"C © 1998 Varese Sarabande Records, P ℗ 1998 Varese Sarabande Records",294 +295,spotify:track:2rMU6GxYqIaJUmHhbfLFHR,My Way - Produced By Rudimental,spotify:artist:3PAjYEQ8KpL6u0fNDR0p1v,Thandi Phoenix,spotify:album:46fJn6rTgJJqt2LMFSy6EP,My Way (Produced By Rudimental),spotify:artist:3PAjYEQ8KpL6u0fNDR0p1v,Thandi Phoenix,2018-03-23,https://i.scdn.co/image/ab67616d0000b2731907ef498a9bde1f35e7164e,1,1,236242,https://p.scdn.co/mp3-preview/78d8816465cb0f421b94e6528fbd13d69176d451?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUNE31700056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian electropop,0.377,0.866,6.0,-3.3,0.0,0.0768,0.0587,0.0,0.107,0.226,168.968,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Motto Beats, P ℗ 2018 Motto Beats",295 +296,spotify:track:2RzWl7MCWqwQbTkA3vwGUk,Just Lose It,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:4F1k3oxk5iTQKenjkBpDe4,Encore,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2004-11-12,https://i.scdn.co/image/ab67616d0000b273edc3b754981904bae77321f9,1,13,248680,https://p.scdn.co/mp3-preview/30020c4a92e2ed13c4d11e099f2362fb9a3ea3ba?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10400682,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.94,0.633,8.0,-3.56,1.0,0.0467,0.0581,4.04e-05,0.281,0.962,121.003,4.0,,Universal Music Group,"C © 2004 Aftermath Entertainment/Interscope Records, P ℗ 2004 Aftermath Entertainment/Interscope Records",296 +297,spotify:track:2pZzO1Aim3SMWABlcvPvxv,Permission To Shine,spotify:artist:4KQNF34GIZZWL10tS3XNTk,Bachelor Girl,spotify:album:2OXfToevYybLCxNmm6bap7,Waiting For The Day,spotify:artist:4KQNF34GIZZWL10tS3XNTk,Bachelor Girl,1998,https://i.scdn.co/image/ab67616d0000b273d395d4d912fd9b998eea760d,1,13,256200,https://p.scdn.co/mp3-preview/92948d52e8e2eddaf1c9aabcf325140bca41f0a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUBM09931206,spotify:user:bradnumber1,2022-02-03T09:58:58Z,"australian pop,australian rock",0.474,0.796,9.0,-6.29,1.0,0.0394,0.0791,0.0,0.147,0.711,164.033,4.0,,Gotham,P (P) 1998 Sony Music Entertainment Australia Pty Ltd,297 +298,spotify:track:5knuzwU65gJK7IF5yJsuaW,Rockabye (feat. Sean Paul & Anne-Marie),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:3Isy6kedDrgPYoTS1dazA9, spotify:artist:1zNqDE7qDGCsyzJwohVaoX","Clean Bandit, Sean Paul, Anne-Marie",spotify:album:3meZFplbMmji648oWUNEfQ,Rockabye (feat. Sean Paul & Anne-Marie),spotify:artist:6MDME20pz9RveH9rEXvrOM,Clean Bandit,2016-10-21,https://i.scdn.co/image/ab67616d0000b2731431c3bdf16aa99f71799d95,1,1,251088,https://p.scdn.co/mp3-preview/e2ffc646cf90e4e5b71e277394e093c3fbe49357?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBAHS1600363,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,dance pop,dancehall,pop,pop rap,pop",0.72,0.763,9.0,-4.068,0.0,0.0523,0.406,0.0,0.18,0.742,101.965,4.0,,Atlantic Records UK,"C © 2016 Atlantic Records UK, a Warner Music Group company, P ℗ 2016 Atlantic Records UK, a Warner Music Group company",298 +299,spotify:track:4Tv1rpYwKwVyQLVTpxbubq,The Show Must Go On - 2010 Remastered Version,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,spotify:album:3IL4csX1tS2G3u3SYvciqg,The Greatest Hits,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,2010-08-20,https://i.scdn.co/image/ab67616d0000b27323e5d02c62b8f0514c54f854,1,10,173760,https://p.scdn.co/mp3-preview/dc15d7e67ea862ae531db8c527cd517483bf267e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUWA01000204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.681,0.851,5.0,-6.817,1.0,0.0489,0.464,1.22e-05,0.199,0.438,100.724,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Limited, P ℗ 2010 Silverbird (Australia) PTY LTD, under exclusive license to Warner Music Australia Pty Limited",299 +300,spotify:track:5moYqbxxP6dNwRSbzJ0C6n,Silhouette,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,spotify:album:2uNFpEVey5RsxzTdoDmjiz,Beautiful Lies (Deluxe),spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,2016-03-25,https://i.scdn.co/image/ab67616d0000b273ceb1cccb864424fc5c2bc1e7,1,7,250360,https://p.scdn.co/mp3-preview/89e744ae12dbf4b76838d2ba7651402b6239f93b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBAHS1600025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,uk pop,viral pop",0.506,0.468,1.0,-7.653,0.0,0.0281,0.635,1.24e-05,0.113,0.193,84.023,4.0,,Atlantic Records UK,"C © 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company, P ℗ 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company",300 +301,spotify:track:3jOBL79jV8RAEBQMSBzBvV,Blinded By The Light - Single edit,spotify:artist:2utNxkLhreF1oIfO8kQT3q,Manfred Mann's Earth Band,spotify:album:1qVP93dewrI7bukJAFPIvV,The Roaring Silence,spotify:artist:2utNxkLhreF1oIfO8kQT3q,Manfred Mann's Earth Band,1976,https://i.scdn.co/image/ab67616d0000b273a9029d18d0fd90f8bfa72687,1,9,228986,https://p.scdn.co/mp3-preview/53e2dabc528dca231ac26ccd85797f9e653bf050?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBBXM7610009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,blues rock,british blues,classic rock,folk rock,hard rock,mellow gold,progressive rock,soft rock,symphonic rock",0.593,0.56,5.0,-11.749,1.0,0.0653,0.572,0.00369,0.0719,0.577,140.511,4.0,,East Central One,"C 1976 East Central One Limited, P 1976 East Central One Limited",301 +302,spotify:track:6lInGDo3m5Mmk5iWAv5Zix,The Unguarded Moment,spotify:artist:2ZfogSsOWP4mVfEqfpLXCt,The Church,spotify:album:0N8jRSYEExgQXm03UnlwE1,The Best of Acoustic (Volume 1),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2006-01-01,https://i.scdn.co/image/ab67616d0000b273c524070e935535978ae53a50,1,6,213053,https://p.scdn.co/mp3-preview/84b607494d662ec5d2e9362c51cce503a3fbb5bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00403950,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,dream pop,new romantic,new wave",0.616,0.396,0.0,-11.618,1.0,0.0376,0.122,0.00855,0.113,0.263,99.235,4.0,,Bloodlines,"C 2006 Bloodlines, P 2006 Bloodlines",302 +303,spotify:track:0Zbbxnx4SGGHoIow4PpISP,Stargazing,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:1QDrz3DMMaz3TB1cm0PGDu","Kygo, Justin Jesso",spotify:album:2sPYPyDFwgi1jrRTGhoxq2,Stargazing - EP,spotify:artist:23fqKkggKUBHNkbKtXEls4,Kygo,2017-09-21,https://i.scdn.co/image/ab67616d0000b273a333559091297eda04eba27c,1,1,236853,https://p.scdn.co/mp3-preview/4a365dd471d768a355d3d879e4d08803b03b43de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,SEBGA1700242,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,singer-songwriter pop",0.677,0.497,5.0,-5.763,1.0,0.0809,0.152,0.0,0.0911,0.419,99.137,4.0,,Kygo,"P (P) 2017 Kygo AS under exclusive license to Sony Music Entertainment International Ltd / Ultra Records, LLC",303 +304,spotify:track:3ENWRrJdDtGLmM2Zn8EqPp,The Greatest Mistakes,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:5Fj4MZgHpGVHrm6dX79tgq,The Greatest Mistakes,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2019-09-13,https://i.scdn.co/image/ab67616d0000b27325fd8802cffca63c22ec77f1,1,1,156975,https://p.scdn.co/mp3-preview/96872371d39cbc92f6603cb3f8abcc29794f9948?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUYO01700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.632,0.849,7.0,-2.686,1.0,0.0265,0.004,0.0,0.111,0.698,99.99,4.0,,EMI Recorded Music Australia Pty Ltd (Distribution),"C © 2019 Birds Of Tokyo Pty Ltd, P ℗ 2019 Birds Of Tokyo Pty Ltd, manufactured and distributed by Universal Music Australia Pty Limited",304 +305,spotify:track:6cjCsM1Lc7rg1jL4PmTtju,For You,spotify:artist:3jmxkI8Jhv8bHOd2qSiU9j,Serena Ryder,spotify:album:4TWIqhVD3WZkaAxMrpjsX3,Harmony,spotify:artist:3jmxkI8Jhv8bHOd2qSiU9j,Serena Ryder,2015-03-13,https://i.scdn.co/image/ab67616d0000b27372315bf563806472d293c38d,1,6,243165,https://p.scdn.co/mp3-preview/5679b5610459a71bb061812e39a2117d1d586cab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAEZ11200128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian indie,canadian pop,canadian singer-songwriter,ontario indie,pop quebecois",0.578,0.724,6.0,-6.161,1.0,0.0335,0.0307,0.000306,0.182,0.466,112.452,3.0,,ABC Music,"C (C) 2015 Serenader Source Inc. Exclusively licensed to Australian Broadcasting Corporation., P (P) 2015 Serenader Source Inc. Exclusively licensed to Australian Broadcasting Corporation.",305 +306,spotify:track:1fidCEsYlaVE3pHwKCvpFZ,Am I Wrong,spotify:artist:0awl5piYwO0CDTHEkCjUhn,Nico & Vinz,spotify:album:6zXb9FQMzawvY2Au8Kxky3,Black Star Elephant,spotify:artist:0awl5piYwO0CDTHEkCjUhn,Nico & Vinz,2014,https://i.scdn.co/image/ab67616d0000b273eb3c078694b007169dab4a4f,1,2,245866,https://p.scdn.co/mp3-preview/7a4173d114136b1018144dcc767945f9ecc149e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USWB11304681,spotify:user:bradnumber1,2021-08-08T09:26:31Z,afrobeats,0.729,0.675,8.0,-6.003,1.0,0.0312,0.175,1.58e-06,0.55,0.779,119.968,4.0,,Warner Records,"C © 2014 Warner Records Inc., P ℗ 2014 Warner Records Inc.",306 +307,spotify:track:3fGFvMNkKDw7ZRB7IKnOOQ,White Silver Sands,spotify:artist:4Vm2YhEoOSnOLqDPmHbUSh,Bill Blacks Combo,spotify:album:7aQvBoJlYmuzViAW9CaSdz,White Silver Sands,spotify:artist:4Vm2YhEoOSnOLqDPmHbUSh,Bill Blacks Combo,2010-12-28,https://i.scdn.co/image/ab67616d0000b27370a66bfc1b50cf4f0b3649a6,1,1,159843,https://p.scdn.co/mp3-preview/d1c8fdc14d27d9b7465d2ea0572c28556fa44fa3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBGQH0604038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.868,0.481,0.0,-13.239,1.0,0.0432,0.522,0.393,0.0727,0.963,116.66,4.0,,Replay Records,,307 +308,spotify:track:49sMsFUxaaGDlaKZNBfVSd,The Ketchup Song (Asereje) - Spanish Version,spotify:artist:1e8GEl48ktvfDpruMKB6Oe,Las Ketchup,spotify:album:3Aod8ev2Xu4swkRslc26tl,Hijas Del Tomate,spotify:artist:1e8GEl48ktvfDpruMKB6Oe,Las Ketchup,2002-07-30,https://i.scdn.co/image/ab67616d0000b2734ab679d1775d3e41382c0979,1,1,211893,https://p.scdn.co/mp3-preview/2d8f8773d6efa9d960ddc3cf6d2137c8b76056b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLML61300009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,flamenco electronica,0.587,0.905,6.0,-8.608,1.0,0.11,0.00973,0.000379,0.122,0.898,184.931,4.0,,Altra Moda Music,"C 2002 Altra Moda Music (www.altramoda.nl), P 2002 Altra Moda Music (www.altramoda.nl)",308 +309,spotify:track:6QItKCBOKzTSYbLNVCo6GT,Everything's Alright,"spotify:artist:1QxaPWG1POM8Ul6WwsHq4y, spotify:artist:2SpBHedVhtdmYRQM1lvBm2, spotify:artist:30QTFUH0b7B75FCX7cC9ea, spotify:artist:4Lwkfwwvx9G7CJqFdXBwy2","John Farnham, ""Jesus Christ Superstar"" 1992 Australian Cast, Jon Stevens, Kate Cebrano",spotify:album:0IN0AoTV2RX0qaSiWx5Tmz,Jesus Christ Superstar (1992 Australian Cast Recording Highlights),spotify:artist:2SpBHedVhtdmYRQM1lvBm2,"""Jesus Christ Superstar"" 1992 Australian Cast",2014-06-30,https://i.scdn.co/image/ab67616d0000b2734e26a6b01e533161ff496fe8,1,4,286293,https://p.scdn.co/mp3-preview/158aabf7257f738dc06a1a3edef801fa1465d9a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUV401403110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,australian rock",0.446,0.419,9.0,-12.618,1.0,0.0568,0.419,0.0,0.0895,0.447,130.097,5.0,,Wheatley Records,"C 2014 Wheatley Records, P 2014 Wheatley Records",309 +310,spotify:track:0oYqvXzdmRi7sip7s6vluY,Absolutely Fabulous - 7'' Mix; 2001 Remastered Version,spotify:artist:03wx6Q0Osk88eyEyZjCk6e,Absolutely Fabulous,spotify:album:0i8KtV7c40Al4vDEXMiPT4,Very: Further Listening 1992-1994,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,1993-09-27,https://i.scdn.co/image/ab67616d0000b273d51990d0add718f3f47e0d3f,2,12,226973,https://p.scdn.co/mp3-preview/8cb05b088feb8d0856b975197a35192b77ba02d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB01A0100040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.633,0.926,7.0,-5.352,1.0,0.0769,0.00513,3.49e-05,0.313,0.951,131.835,4.0,,Parlophone UK,"C 2001 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd, P 2001 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd",310 +311,spotify:track:2IQIamD6WUEpsBDM8lp9Wl,From The Music,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,spotify:album:2tZRoBOqmLy64lHwds1Kkl,Destination Now,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738387b53a693aba5553ef3175,1,5,191546,https://p.scdn.co/mp3-preview/b1e94c305513d1e7048a179e4b59987e87cb34ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC01107110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian house",0.549,0.636,7.0,-4.709,0.0,0.0423,0.00228,0.0,0.312,0.475,127.85,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Vicious Recordings Pty Ltd, P ℗ 2011 Vicious Recordings Pty Ltd",311 +312,spotify:track:4vvK7kQ42AAXabZAXiGsDH,Sonnet,spotify:artist:2cGwlqi3k18jFpUyTrsR84,The Verve,spotify:album:2okCg9scHue9GNELoB8U9g,Urban Hymns,spotify:artist:2cGwlqi3k18jFpUyTrsR84,The Verve,1997-09-29,https://i.scdn.co/image/ab67616d0000b2738f0a8a62487542fef319d20a,1,2,261440,https://p.scdn.co/mp3-preview/6f746778ad772bd716c55419a281f056e008f44b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAA9710062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,permanent wave,rock,shoegaze",0.425,0.706,0.0,-8.01,1.0,0.0254,0.173,0.00015,0.209,0.319,88.04,4.0,,Hut,"C (C) 1997 Virgin Records LtdThis label copy information is the subject of copyright protection. All rights reserved.(C) 1997 Virgin Records Ltd, P (P) 1997 The copyright in this sound recording is owned by Virgin Records Ltd",312 +313,spotify:track:6lMPQ6y52HaXkFwRSF9Kwc,Great DJ,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,spotify:album:1b9KEBOO7A5awr16aCd6VP,We Started Nothing,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,2007,https://i.scdn.co/image/ab67616d0000b2735a478451a8e3cbd1b11679dc,1,1,202813,https://p.scdn.co/mp3-preview/83b6ae3b19cbcb6ba20f17d8dce62078232063e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBARL0701283,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,electropop,neo-synthpop,new rave",0.787,0.899,9.0,-2.014,0.0,0.034,0.104,0.00181,0.126,0.48,125.009,4.0,,Columbia,P Track 1 (P) 2007; all other tracks (P) 2008 Sony Music Entertainment UK,313 +314,spotify:track:77NNZQSqzLNqh2A9JhLRkg,Don't Stop Believin',spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,spotify:album:5pfpXvoJtSIFrbPIoBEv3R,The Essential Journey,spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,2001-10-16,https://i.scdn.co/image/ab67616d0000b2730f6ce5c138493ac768d9afc8,1,2,248906,https://p.scdn.co/mp3-preview/05062466007cbd34ebeecec6f7302e88448c5a9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USSM18100116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,rock,soft rock",0.491,0.802,4.0,-7.106,1.0,0.0392,0.25,0.0,0.387,0.472,119.25,4.0,,Columbia,P This compilation (P) 2001 Sony Music Entertainment,314 +315,spotify:track:0RK0RqDtnBU804PGxN2d8G,Take It Back,spotify:artist:0OUKObtDiU0yOxyns51bpb,Matter Of Mind,spotify:album:6yKrAEvGAE404FX6uN888k,Take It Back,spotify:artist:0OUKObtDiU0yOxyns51bpb,Matter Of Mind,2021-07-30,https://i.scdn.co/image/ab67616d0000b273b95565cddbc793d3b10c7383,1,1,173386,https://p.scdn.co/mp3-preview/5cd95c3a77cddb98b32b10444a66d910e2fe6161?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKPL2156478,spotify:user:bradnumber1,2021-08-08T09:26:31Z,manchester indie,0.5,0.939,0.0,-3.508,1.0,0.0766,0.000966,0.0,0.313,0.373,126.655,4.0,,Matter Of Mind,"C 2021 Matter Of Mind, P 2021 Matter Of Mind",315 +316,spotify:track:65i1UPsUtPlEVzewEZR6sY,Don't Say You Love Me,spotify:artist:0ZzYDST6Dib7iYd8hmcLcH,M2M,spotify:album:64qpmVqrwUlBihBMhZDyJj,Shades of Purple,spotify:artist:0ZzYDST6Dib7iYd8hmcLcH,M2M,2000-02-15,https://i.scdn.co/image/ab67616d0000b273ae31a2f91db0455c6d63306d,1,1,225200,https://p.scdn.co/mp3-preview/0f9536316f17ee57b05b67ba5696efeefaffd2a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAT29901534,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,girl group,norwegian pop",0.627,0.723,1.0,-6.241,0.0,0.0341,0.0141,3.66e-05,0.118,0.596,97.555,4.0,,Atlantic Records,"C © 2000 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2000 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",316 +317,spotify:track:6crBy2sODw2HS53xquM6us,Tribute,spotify:artist:1XpDYCrUJnvCo9Ez6yeMWh,Tenacious D,spotify:album:1AckkxSo39144vOBrJ1GkS,Tenacious D,spotify:artist:1XpDYCrUJnvCo9Ez6yeMWh,Tenacious D,2001-09-25,https://i.scdn.co/image/ab67616d0000b273ee0285c63a334af9b91fa12b,1,3,248053,https://p.scdn.co/mp3-preview/0b516801ec0a770edee38f4436ae26cbbc3c0e5f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,62,USSM10108746,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,comedy rock,comic,comic metal,parody",0.365,0.767,9.0,-6.185,0.0,0.0681,0.181,0.000856,0.0942,0.422,94.174,4.0,,Epic,P (P) 2001 Sony Music Entertainment Inc.,317 +318,spotify:track:0PM0RK2mbtiEdHhNJHc1Ch,Hit and Run,spotify:artist:063AxhAs6zx8UYdPahb5Gi,Jo Jo Zep and The Falcons,spotify:album:5jJGqtrbPWZuAdXIe9GCmc,Screaming Targets (Expanded Edition),spotify:artist:063AxhAs6zx8UYdPahb5Gi,Jo Jo Zep and The Falcons,2014-10-24,https://i.scdn.co/image/ab67616d0000b2730e6fa728e0f1a08b2a09bfbe,1,1,281533,https://p.scdn.co/mp3-preview/44fe2d757e7e2d6b9a5a258001b43bfe589e9949?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUWA01400351,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.662,0.828,0.0,-3.629,1.0,0.0302,0.014,0.0037,0.185,0.768,105.845,4.0,,WM Australia,"C © 2014 Warner Music Australia Pty Ltd, P ℗ 2014 Warner Music Australia Pty Ltd",318 +319,spotify:track:0SyGrL0xMbRTCaMvBfjs6P,Just Got Started,"spotify:artist:3vn7rk7VNMfDhuZNB9sDYP, spotify:artist:0nqejKHUiWWMRltB0Cx5xq","360, PEZ",spotify:album:6j0ZByTaV8Uirtm0PaXFZl,Falling & Flying (Platinum Edition),spotify:artist:3vn7rk7VNMfDhuZNB9sDYP,360,2012-08-24,https://i.scdn.co/image/ab67616d0000b273c6e20219c8481ef24c1b6f47,1,3,193026,https://p.scdn.co/mp3-preview/ba46ce441367f4dc0f5b77e55a50ffed3b35c56c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUSR21000074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian trap,australian underground hip hop",0.773,0.663,6.0,-7.503,0.0,0.0583,0.0135,0.00119,0.118,0.92,122.555,4.0,,Soulmate Records,"C © 2012 Soulmate Records Pty Limited, P ℗ 2011 Soulmate Records Pty Limited, Except Tracks 15-18 ℗ 2012 Australian Broadcasting Corporation.",319 +320,spotify:track:3BsaRV5QIulYz2lV9WWa8T,Show Me the Meaning of Being Lonely,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:5ySxm9hxBNss01WCL7GLyQ,Millennium,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1999-05-18,https://i.scdn.co/image/ab67616d0000b2732160c02bc56f192df0f4986b,1,3,234960,https://p.scdn.co/mp3-preview/3a280234ede5287adb00dcfa4613be29692d36ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USJI19910621,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.63,0.625,6.0,-5.088,0.0,0.0252,0.231,0.0,0.0765,0.683,167.998,4.0,,Jive,P (P) 1999 Zomba Recording LLC,320 +321,spotify:track:6yZv0Nl6BXABbXoPVpfF5y,SOS,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1kM6xcSYO5ASJaWgygznL7,Abba,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1975,https://i.scdn.co/image/ab67616d0000b27392d0747a634fcc351c6ac3c2,1,4,202386,https://p.scdn.co/mp3-preview/541410a57ed8a86f4e7829245683530230dbe169?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,SEAYD7501040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.415,0.713,5.0,-5.55,1.0,0.0278,0.251,0.00197,0.289,0.579,125.056,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",321 +322,spotify:track:2ajUl8lBLAXOXNpG4NEPMz,Sway,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:3rpSksJSFdNFqk5vne8at2,Michael Bublé,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2003,https://i.scdn.co/image/ab67616d0000b273b732a522a686bb304a5d3fdf,1,10,188066,https://p.scdn.co/mp3-preview/39732c76bb3185ef06d76b5b521326ca5750bf0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USRE10201551,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.713,0.639,2.0,-5.529,0.0,0.0313,0.753,0.0,0.0878,0.737,125.959,4.0,,143/Reprise,"C © 2002 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S., P ℗ 2002 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S.",322 +323,spotify:track:3idqWaBn3mRdsIodCU6uBi,Roll Over Beethoven - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:1aYdiJk6XKeHWGO3FzHHTr,With The Beatles (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1963-11-22,https://i.scdn.co/image/ab67616d0000b273608a63ad5b18e99da94a3f73,1,8,165466,https://p.scdn.co/mp3-preview/52f99bc0246dbee764c165c70525e9b3691d96c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAYE0601431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.351,0.749,2.0,-9.435,1.0,0.0628,0.289,0.0,0.0952,0.967,160.673,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",323 +324,spotify:track:3Sd2jRQ94Jcd1ml3yi2lJK,Last Time,spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,spotify:album:6PBBbXmYV7dKnaik0fjkOI,Electronic Earth (Expanded Edition),spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,2012-04-02,https://i.scdn.co/image/ab67616d0000b273d9370e27abe3de676c56873a,1,3,263893,https://p.scdn.co/mp3-preview/0c91bbf31a18c44ded6eb79890905adcc29e5576?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBHMU1200005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie poptimism,pop",0.597,0.758,1.0,-3.826,0.0,0.0426,0.189,0.0,0.36,0.385,122.87,4.0,,Syco Music UK,P (P) 2012 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,324 +325,spotify:track:247PtUni9B4UI4da7JH2Uu,One More Night,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:7hV0YSxAQSng8H0zMR0HBf,...Hits,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1998-09-25,https://i.scdn.co/image/ab67616d0000b273c8860dfcdadefb529bf29757,1,11,286360,https://p.scdn.co/mp3-preview/741d6e841a1b05b31e69ab018d45e260b7522dad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWI19600224,spotify:user:bradnumber1,2023-10-17T23:17:50Z,"rock drums,soft rock",0.54,0.41,3.0,-10.782,1.0,0.0308,0.765,5.87e-05,0.115,0.323,136.265,4.0,,Atlantic Records,"C 1998 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",325 +326,spotify:track:0BRHnOFm6sjxN1i9LJrUDu,The Anthem,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:5CTygC3aONv7l0klY4k3hc,The Young and The Hopeless,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2002-10-04,https://i.scdn.co/image/ab67616d0000b273a9bae94ddb20a71f573931c0,1,2,175093,https://p.scdn.co/mp3-preview/8cd4772687e7c1ffcd4429c1f8dc73629f63e67c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USSM10209827,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.494,0.939,1.0,-3.127,1.0,0.126,0.00666,0.0,0.139,0.893,177.751,4.0,,Epic/Daylight,"P (P) 2002 Epic Records, a division of Sony Music Entertainment",326 +327,spotify:track:6vXHaWpqkbuvzIDvR3LnKd,Papercuts (feat. Vera Blue),"spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt, spotify:artist:5ujrA1eZLDHR7yQ6FZa2qA","Illy, Vera Blue",spotify:album:4MzuH8NMoERebcxL4x9EdR,Two Degrees,spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt,Illy,2016-11-11,https://i.scdn.co/image/ab67616d0000b2733722d6fdc17682df548827d8,1,5,255889,https://p.scdn.co/mp3-preview/f8442c0ad6dc945d825b957c4100d48e1473b7eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUWA01600211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian trap,australian indie,australian pop",0.369,0.618,6.0,-6.304,0.0,0.249,0.161,0.0,0.257,0.467,191.863,4.0,,WM Australia,"C © 2016 ONETWO, P ℗ 2016 ONETWO. Marketed and distributed by Warner Music Australia Pty Ltd under exclusive license",327 +328,spotify:track:287sY3xneZHgr0qKMhGOYR,Freedom of Choice - 2009 Remaster,spotify:artist:0UKfenbZb15sqhfPC6zbt3,DEVO,spotify:album:5oCDYNOxLUuF0NSRBzPXBw,Freedom of Choice (2009 Remaster; Deluxe Edition),spotify:artist:0UKfenbZb15sqhfPC6zbt3,DEVO,1980,https://i.scdn.co/image/ab67616d0000b2737db75d51d8069c86127e8354,1,6,208986,https://p.scdn.co/mp3-preview/66e72c2c7748166cd16a1c183eed8a5f5a90293f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USWB10903965,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art punk,dance rock,new romantic,new wave,new wave pop,post-punk,synth punk,synthpop,zolo",0.823,0.945,0.0,-8.342,1.0,0.0331,0.284,0.013,0.0702,0.96,140.262,4.0,,Warner Records,"C 1978 © 2009 Devo, Inc./Warner Records Inc. for the U.S. and Devo, Inc./WEA International for the world outside the U.S., P 1978 ℗ 2009 Warner Records Inc.",328 +329,spotify:track:6xdLJrVj4vIXwhuG8TMopk,Crazy Little Thing Called Love - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:58alCatewkjNm9IM1Ucj67,The Game (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1980-06-27,https://i.scdn.co/image/ab67616d0000b273056e90910cbaf5c5b892aeba,1,5,163373,https://p.scdn.co/mp3-preview/26fc1b3bff36b451ff297175fcdbf94fd145f09a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBUM71029612,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.599,0.761,0.0,-6.887,1.0,0.0421,0.713,4.74e-06,0.349,0.712,77.015,4.0,,EMI,"C © 2011 Raincloud Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Raincloud Productions Ltd. under exclusive licence to Universal International Music BV",329 +330,spotify:track:42ojLX3UYsp4XhaX0sx29E,Blue Moon,spotify:artist:1JQYskbOoudT9cylam24a3,The Marcels,spotify:album:5LNSdmCEtpQEGkNk652yjF,The Best Of The Marcels,spotify:artist:1JQYskbOoudT9cylam24a3,The Marcels,1990-06-11,https://i.scdn.co/image/ab67616d0000b273d42cbb433cdc04f7337d8fdb,1,1,138360,https://p.scdn.co/mp3-preview/f66dbf5c9917a216d46f4a494dfd23aba32477f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAYE6100123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues,rock-and-roll",0.624,0.432,7.0,-11.132,1.0,0.0344,0.656,0.0,0.0785,0.935,127.69,4.0,,Parlophone UK,"C © 1990 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1990 Parlophone Records Ltd, a Warner Music Group Company",330 +331,spotify:track:2VmA7bm5ECiYZfw7x4Nzku,Runaway,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:1xn54DMo2qIqBuMqHtUsFd,x (Deluxe Edition),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2014-06-21,https://i.scdn.co/image/ab67616d0000b27313b3e37318a0c247b550bccd,1,9,205133,https://p.scdn.co/mp3-preview/60f35de886cf0049e302526231ef0f8f623a703b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAHS1400097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.767,0.449,8.0,-7.158,0.0,0.0364,0.024,0.000299,0.151,0.908,95.03,4.0,,Atlantic Records UK,"C © 2014 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 Asylum Records UK, a Warner Music UK Company, except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",331 +332,spotify:track:1EZhWJQFf85g6d055Gji8c,Candy,spotify:artist:2LJxr7Pt3JnP60eLxwbDOu,Mandy Moore,spotify:album:551186Jr75bHrh58ZdEMhW,The Best of Mandy Moore,spotify:artist:2LJxr7Pt3JnP60eLxwbDOu,Mandy Moore,2004-11-16,https://i.scdn.co/image/ab67616d0000b273799f7be1146fe51116221e20,1,1,234373,https://p.scdn.co/mp3-preview/4328623c5b6b7bdec939e4d376f73aa113b0e83c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USSM19901378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hollywood,neo mellow,post-teen pop",0.818,0.849,7.0,-4.185,1.0,0.0905,0.164,4.36e-05,0.165,0.638,100.503,4.0,,Epic,"P (P) 1999, 2000, 2001, 2002, 2003 SONY BMG MUSIC ENTERTAINMENT",332 +333,spotify:track:0j0n5CUS1g3QSwDWg8r5qq,Keeps Gettin' Better,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:2019iQx5MmA6byqYqdK7zS,Keeps Gettin' Better: A Decade of Hits,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2008-11-12,https://i.scdn.co/image/ab67616d0000b2736a0405c9625e4763137aa7e0,1,12,181946,https://p.scdn.co/mp3-preview/49f2c8195f7f62a49c6a5389d318a790e276b749?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USRC10800384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.645,0.697,5.0,-4.733,0.0,0.0285,0.0739,0.000842,0.575,0.25,130.001,4.0,,RCA Records Label,P (P) 2008 Sony Music Entertainment,333 +334,spotify:track:2GyH5rvdnfkjzsTFaWrrov,On the Road Again,spotify:artist:5W5bDNCqJ1jbCgTxDD0Cb3,Willie Nelson,spotify:album:4QQfWSR8uMbTye3EjCAea2,Willie Nelson The Collection,spotify:artist:5W5bDNCqJ1jbCgTxDD0Cb3,Willie Nelson,1988-01-01,https://i.scdn.co/image/ab67616d0000b27382030f7e260701d69652447e,1,1,154360,https://p.scdn.co/mp3-preview/ab83ca185e451c4599692eea01279e9d44473e38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM17900054,spotify:user:bradnumber1,2022-08-31T00:07:30Z,"classic country pop,classic texas country,country,country rock,nashville sound,outlaw country,singer-songwriter",0.714,0.658,4.0,-11.342,1.0,0.0375,0.654,0.0914,0.778,0.85,110.97,4.0,,Columbia/Legacy,P (P) 2004 Sony Music Entertainment (UK) Ltd.,334 +335,spotify:track:1HaZ5x3c3HXRrLLHfsjO5p,Family Portrait,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:03pT16iWbhVKpDodI37D8b,M!ssundaztood,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2001-11-16,https://i.scdn.co/image/ab67616d0000b2730516080f83d31290bcd9773e,1,7,296426,https://p.scdn.co/mp3-preview/032fa87ff71442e95b17287f7b1e80c6386eaf80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR10100720,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.761,0.687,0.0,-5.346,0.0,0.0487,0.0217,2.99e-06,0.562,0.779,91.808,4.0,,Arista,"P (P) 2001 RCA/JIVE Label Group, a unit of Sony Music Entertainment",335 +336,spotify:track:5eTNdkstwKaNahHf41fJ9u,Hotter Than Hell,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:01sfgrNbnnPUEyz6GZYlt9,Dua Lipa (Deluxe),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2017-06-02,https://i.scdn.co/image/ab67616d0000b273838698485511bd9108fadadc,1,3,187957,https://p.scdn.co/mp3-preview/6191edd3b29db7a40f6fc30f0b5e7f32e8af6a45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBAHT1600182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.532,0.868,3.0,-4.23,0.0,0.0908,0.011,0.0,0.0584,0.529,110.127,4.0,,Warner Records,"C © 2017 Dua Lipa Limited under exclusive license to Warner Music UK Limited, P ℗ 2017 Dua Lipa Limited under exclusive license to Warner Music UK Limited. Tracks 3, 6, 7, 8, 9, 13, 14 (P) 2016 Warner Music UK Limited. Tracks 4, 15, 17 (P) 2015 Warner Music UK Limited.",336 +337,spotify:track:4shAPHxVTgxzq9MfdfYeX7,Humpin' Around - Radio Edit,spotify:artist:62sPt3fswraiEPnKQpAbdE,Bobby Brown,spotify:album:67ma4XvpbAfD4UpUPRwRN4,RnB Fridays Vol. 3,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-04-21,https://i.scdn.co/image/ab67616d0000b2730e545611e016c993b81bbbce,1,14,322413,https://p.scdn.co/mp3-preview/920a16d2329bbd75727edce7a7834ff161b422a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USMC19238734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing,r&b,urban contemporary",0.74,0.923,10.0,-2.717,0.0,0.048,0.0142,0.00655,0.0483,0.686,110.088,4.0,,Universal Music Australia Pty. Ltd.,"C © 2017 Universal Music Australia Pty Ltd., P This Compilation ℗ 2017 Universal Music Australia Pty Ltd.",337 +338,spotify:track:0CokSRCu5hZgPxcZBaEzVE,Glorious (feat. Skylar Grey),"spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4utLUGcTvOJFr6aqIJtYWV","Macklemore, Skylar Grey",spotify:album:72qA6s4fjF8Y2VX1UDMfp2,GEMINI,spotify:artist:3JhNCzhSMTxs9WLGJJxWOY,Macklemore,2017-09-22,https://i.scdn.co/image/ab67616d0000b2732e94b668c60b06deb1c3a05c,1,2,220454,https://p.scdn.co/mp3-preview/d5955286b6e230880c24b0b8c8eab30162eaeca7?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,QZ8TY1700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop,piano rock,viral pop",0.731,0.794,0.0,-5.126,0.0,0.0522,0.0323,2.59e-05,0.112,0.356,139.994,4.0,,Bendo LLC,"C © 2017, Bendo LLC, P ℗ 2017, Bendo LLC",338 +339,spotify:track:6i1pTt7tsEmn0KTboxWZSV,Love Grows (Where My Rosemary Goes) - Re-Recorded,spotify:artist:1NRzxuPpdGushT8YmF5NAa,Edison Lighthouse,spotify:album:0uxkg9zX78ireqJTggQKnb,One Hit Wonders (Re-Recorded Versions),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-08-01,https://i.scdn.co/image/ab67616d0000b2735429764c5c6070a01db56955,1,47,153626,https://p.scdn.co/mp3-preview/1a06d261287a6b60294cd20a113d34d1bceea3e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USA560833573,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.566,0.668,9.0,-10.345,1.0,0.0299,0.0064,0.0,0.228,0.639,117.724,4.0,,Silverphonic Records,"C (C) 2008 Goldenlane Records, P (P) 2008 Goldenlane Records",339 +340,spotify:track:2gE95JskwQ1pCACTpGe1Db,Down On The Corner,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:31q47gQszFt0CddSyMksgO,Willy And The Poor Boys (Expanded Edition),spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1969-11-02,https://i.scdn.co/image/ab67616d0000b2739f39192f9f8ca1c90847b3e5,1,1,166280,https://p.scdn.co/mp3-preview/66b818b52dc530d2bad51e11d74f68099f115059?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USC4R0817613,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.858,0.544,0.0,-9.289,1.0,0.0751,0.583,0.00109,0.0707,0.874,108.217,4.0,,Craft Recordings,"C © 2008 Concord Music Group, Inc., P ℗ 2008 Concord Music Group, Inc.",340 +341,spotify:track:0smsQNRjaMKjacESbRb3wZ,"Show Me Heaven - From ""Days Of Thunder"" Soundtrack",spotify:artist:30GIF9g2UJ1ifn45kSMTFf,Maria McKee,spotify:album:3GO384bB5SvHoaqnA5y5NZ,Drivetime,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2003-01-01,https://i.scdn.co/image/ab67616d0000b273cb16019e5d4db22070009621,1,7,222866,https://p.scdn.co/mp3-preview/fe9369ed7d0b2d45b9a8daf026db915f33cd13c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10000625,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.522,0.495,8.0,-9.096,1.0,0.0263,0.105,0.000176,0.0537,0.513,155.884,4.0,,Universal Music,"C © 2003 Universal International Music B.V., P ℗ 2003 Universal International Music B.V.",341 +342,spotify:track:6Tt1P5CLUrl59oSOTVxON0,Joy,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,spotify:album:2QzbL1DICo4xZnWr8Sw4fF,Doom Days,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,2019-06-14,https://i.scdn.co/image/ab67616d0000b273a16f3f34c52cbba368ef6210,1,11,192681,https://p.scdn.co/mp3-preview/f4ffd66aaf0c52479fa38e8bdb428a5c8907b97f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBUM71900904,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop",0.555,0.923,6.0,-4.748,0.0,0.161,0.197,0.0,0.0778,0.363,118.007,4.0,,EMI (Virgin),"C © 2019 Virgin Records Limited, P ℗ 2019 Virgin Records Limited",342 +343,spotify:track:25khomWgBVamSdKw7hzm3l,The Hills,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:28ZKQMoNBB0etKXZ97G2SN,Beauty Behind The Madness,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2015-08-28,https://i.scdn.co/image/ab67616d0000b273aac98daa18e4edf54d7a0a70,1,5,242253,https://p.scdn.co/mp3-preview/30a8d26fa2b2e9a5a01007d71783510180e677ab?cid=9950ac751e34487dbbe027c4fd7f8e99,True,2,USUG11500737,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.356,0.567,0.0,-7.011,0.0,0.0798,0.0861,0.0,0.137,0.109,135.553,5.0,,Universal Music Group,"C © 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc., P ℗ 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.",343 +344,spotify:track:3850dYVgOFIXJh5U4BFEWH,Hung Up,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:1hg0pQJLE9dzfT1kgZtDPr,Confessions on a Dance Floor,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2005-11-11,https://i.scdn.co/image/ab67616d0000b273aaa9d84415623c1e790cd07b,1,1,337733,https://p.scdn.co/mp3-preview/dffaf6d378f42c2ec6311d17fadc5fc26eb84bf8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USWB10504319,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.649,0.647,9.0,-7.695,0.0,0.0452,0.0039,0.161,0.0686,0.405,125.02,4.0,,Warner Records,"C © 2005 Warner Records Inc., P ℗ 2005 Warner Records Inc.",344 +345,spotify:track:2tNE4DP5nL85XUJv1glO0a,This Ain't a Love Song,spotify:artist:2wpJOPmf1TIOzrB9mzHifd,Scouting For Girls,spotify:album:62j2ag19WoiNtbSxhAk9r7,Ten Add Ten: The Very Best of Scouting For Girls,spotify:artist:2wpJOPmf1TIOzrB9mzHifd,Scouting For Girls,2017-10-13,https://i.scdn.co/image/ab67616d0000b273d8f774b6f54ad165d4d2ebf9,1,2,210680,https://p.scdn.co/mp3-preview/5b4298848b5c28acb112537139bef21517952cb0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBARL0901410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,talent show,0.458,0.905,0.0,-4.157,1.0,0.0451,0.000431,0.0,0.378,0.553,176.667,4.0,,Sony Music CG,P (P) 2017 Sony Music Entertainment UK Limited,345 +346,spotify:track:7y9iMe8SOB6z3NoHE2OfXl,Bad At Love,spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,spotify:album:7GjG91tyHQNGEHzKJaqOi0,hopeless fountain kingdom (Deluxe),spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,2017-06-02,https://i.scdn.co/image/ab67616d0000b2730f7ad6d8d829906c17cae210,1,11,181279,https://p.scdn.co/mp3-preview/21c6d1604217d9a06d79a77904c03b67ed8d7c31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USUM71702220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,etherpop,indie poptimism,pop",0.675,0.751,0.0,-3.539,1.0,0.0296,0.0604,0.0,0.0893,0.612,118.384,4.0,,Astralwerks (ASW),"C © 2017 Astralwerks, P ℗ 2017 Astralwerks",346 +347,spotify:track:6KTv0Z8BmVqM7DPxbGzpVC,Rock And Roll All Nite,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,spotify:album:1YCC4oZXg2zGn7pVSKVlGF,Dressed To Kill,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,1975-03-19,https://i.scdn.co/image/ab67616d0000b27365a7b0a6969f0efcde4b5aca,1,10,168840,https://p.scdn.co/mp3-preview/e9bee4e5f3f3073b17b5b691ff82b4c2b0cb98d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USPR37509157,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,hard rock,rock",0.654,0.929,1.0,-5.906,1.0,0.0998,0.0474,0.0,0.0538,0.902,144.769,4.0,,Casablanca Records,"C © 1997 Kiss Catalog, Ltd., P ℗ 1975 The Island Def Jam Music Group",347 +348,spotify:track:3KZcrZ36LW9RnChK1iIkth,Send My Love (To Your New Lover),spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7uwTHXmFa1Ebi5flqBosig,25,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2015-11-20,https://i.scdn.co/image/ab67616d0000b2735ffbbc3dca25d5c81491af1f,1,2,223078,https://p.scdn.co/mp3-preview/454f693eeb9b383539f5d26ecdc7cd44c6d20292?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1500215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.688,0.532,6.0,-8.361,0.0,0.0875,0.0356,3.08e-06,0.172,0.565,164.068,4.0,,XL Recordings,"C 2015 XL Recordings Limited., P 2015 XL Recordings Limited.",348 +349,spotify:track:4HUtl3utOjpVEEXiXJmXVj,She Works Hard For The Money,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,spotify:album:1sdF7zMEhHVWBSfuK5sXli,She Works Hard For The Money,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,1983-01-01,https://i.scdn.co/image/ab67616d0000b273c1e0941231a7d513d8b71461,1,1,320840,https://p.scdn.co/mp3-preview/3be3091d6a853ffb7235bf01564100d7aeed02bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402405,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg,new wave pop,soft rock",0.762,0.626,8.0,-12.998,0.0,0.0382,0.00587,0.0144,0.116,0.987,136.497,4.0,,Universal Music Group,"C © 1983 The Island Def Jam Music Group, P ℗ 1983 The Island Def Jam Music Group",349 +350,spotify:track:2imODXRKECBRLw1RqRJo4L,Amigos Para Siempre - Friends for Life,"spotify:artist:1ahGKezyX9Rl7GuEF2tc15, spotify:artist:7Ead768rc4ShGxnqtqccU5","José Carreras, Sarah Brightman",spotify:album:2HfevweVGn5pSg1uaZSEma,José Carreras Sings Hits Of Andrew Lloyd Webber,spotify:artist:1ahGKezyX9Rl7GuEF2tc15,José Carreras,1992-07-20,https://i.scdn.co/image/ab67616d0000b27316869d50cfed9199110c1b1c,1,13,276133,https://p.scdn.co/mp3-preview/b02a96902b58b46c28a9dfbb2973bd82f5e573c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,DEA619250580,spotify:user:bradnumber1,2022-11-16T01:55:25Z,"classical tenor,opera,operatic pop,operatic pop",0.51,0.469,10.0,-11.671,1.0,0.0421,0.7,8.05e-06,0.163,0.361,110.23,4.0,,EastWest Germany,"C © 1996 eastwest records gmbh, P ℗ 1996 Warner Music Netherlands B.V.",350 +351,spotify:track:4DYp1pEg6ebDJkChzvxjOi,The Legend Of Xanadu,spotify:artist:3tKmZgJAXrog8SnYpzWSbe,"Dave Dee\, Dozy\, Beaky\, Mick & Tich",spotify:album:5QHfZYyGgyQZrbNJYlOARB,If No-One Sang,spotify:artist:3tKmZgJAXrog8SnYpzWSbe,"Dave Dee\, Dozy\, Beaky\, Mick & Tich",1968-05-31,https://i.scdn.co/image/ab67616d0000b273bdfd941b38d27b6ddc3e7cd0,1,9,216373,https://p.scdn.co/mp3-preview/37dce6c6c345f9bb3f1b9fb7eb15232a6806812c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBF086800061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.403,0.902,9.0,-4.829,1.0,0.049,0.0118,0.00776,0.0975,0.687,76.758,4.0,,UMC (Universal Music Catalogue),"C © 1968 Mercury Records Limited, P ℗ 1968 Mercury Records Limited",351 +352,spotify:track:4yUgj0i6ttqorcmQYmkQIF,Rhythm Is A Dancer,spotify:artist:2FrKQPjJe4pVMZOgm0ESOx,SNAP!,spotify:album:7w2Tq5jV5IZzHxNsX9rcKP,The Madman's Return,spotify:artist:2FrKQPjJe4pVMZOgm0ESOx,SNAP!,1992,https://i.scdn.co/image/ab67616d0000b273c14494bf5b3ad5c80c644b1d,1,6,332226,https://p.scdn.co/mp3-preview/cd175446f724556dd48a0a2225f920ff42eb39ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DET189200600,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,german techno,hip house",0.756,0.656,9.0,-14.853,0.0,0.0338,0.21,0.218,0.0889,0.876,124.364,4.0,,Bookmark,"C 1991 Anzilotti&Münzing, P 1991 Anzilotti&Münzing",352 +353,spotify:track:1CvhKmrutTAta5awpJcFDn,Watch Me (Whip / Nae Nae),spotify:artist:7juKTDFlPesGeWQ1GmjmOv,Silentó,spotify:album:5KpPYX8443nXEn6tvOKAjQ,Watch Me (Whip / Nae Nae),spotify:artist:7juKTDFlPesGeWQ1GmjmOv,Silentó,2015-05-04,https://i.scdn.co/image/ab67616d0000b27304bf441dac6f8f81f43942dc,1,1,185131,https://p.scdn.co/mp3-preview/4587cbb1a0d96133b997051e940e590517f785ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71506622,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago bop,pinoy hip hop",0.819,0.768,8.0,-8.522,1.0,0.134,0.234,0.0,0.334,0.964,139.982,4.0,,Universal Music Group,"C © 2015 Capitol Records, LLC, P ℗ 2015 Capitol Records, LLC",353 +354,spotify:track:64UioB4Nmwgn2f4cbIpAkl,It's Still Rock and Roll to Me,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:5sztejERqpktXEdemlUvU5,Glass Houses,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1980-03-12,https://i.scdn.co/image/ab67616d0000b27322d5199692d318c28d6c7d9b,1,4,176440,https://p.scdn.co/mp3-preview/27cc47b0bc14385f7bffd0dce8133b958cd9de37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM18000211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.752,0.684,0.0,-7.599,1.0,0.15,0.0994,0.0,0.0897,0.539,141.075,4.0,,Columbia,"P (P) 1980 Columbia Records, a division of Sony Music Entertainment",354 +355,spotify:track:1yasf88oA9PsxAnyTTEUJa,Versace on the Floor,spotify:artist:2yYwj3KocGouUipLjS8yKr,Britney Holmes,spotify:album:6kN8WGQgqYqd4aBPNXnNtf,Versace on the Floor,spotify:artist:2yYwj3KocGouUipLjS8yKr,Britney Holmes,2016-11-17,https://i.scdn.co/image/ab67616d0000b27353748a5df3241b2adadcf5d4,1,1,264827,https://p.scdn.co/mp3-preview/cdbc8bf5e9237479ec895d4f133701f08f06c2fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,TCACT1680769,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.594,0.378,2.0,-7.05,1.0,0.0256,0.68,0.0,0.0859,0.386,87.025,4.0,,Britney Holmes,"C 2016 Britney Holmes, P 2016 Britney Holmes",355 +356,spotify:track:36XJWjuNKBax6KqdzpH7Wb,Homosapien,spotify:artist:7r2lG8Ui6vGHAgsKlE8Hd8,Pete Shelley,spotify:album:2ADodHRpsTpPnd8PASc4i8,Homosapien,spotify:artist:7r2lG8Ui6vGHAgsKlE8Hd8,Pete Shelley,1981,https://i.scdn.co/image/ab67616d0000b27303b0c9be44b71556297b899a,1,1,275840,https://p.scdn.co/mp3-preview/631725b50288d33ca02cc6a1420d450c936490d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBVDE0800014,spotify:user:bradnumber1,2020-03-05T09:20:32Z,"solo wave,synthpop,uk post-punk",0.603,0.872,2.0,-7.358,1.0,0.0577,0.00121,4.69e-06,0.754,0.686,132.82,4.0,,Western Songs Ltd,"C (C) 2006 Licensed by Pete Shelley to Western Songs Limited., P (P) 2006 Pete Shelly",356 +357,spotify:track:0cdBZlTYh1UVs18QqR2Hq8,Say So,spotify:artist:1uU7g3DNSbsu0QjSEqZtEd,Masked Wolf,spotify:album:4XDJ1ndSi1ZOUKshTiz1By,Say So,spotify:artist:1uU7g3DNSbsu0QjSEqZtEd,Masked Wolf,2021-07-09,https://i.scdn.co/image/ab67616d0000b273d7f965f409e74468071aad67,1,1,120880,https://p.scdn.co/mp3-preview/38f007c9003313725756ca7f765b7cc9218aae53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT22102747,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.778,0.606,1.0,-6.849,1.0,0.0359,0.0932,0.0,0.05,0.601,107.987,4.0,,Teamwrk,"C © 2021 Teamwrk Records., P ℗ 2021 Teamwrk Records. Distributed by ADA, a division of Warner Music Australia Pty Ltd",357 +358,spotify:track:6DkXLzBQT7cwXmTyzAB1DJ,What's My Name?,"spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:3TVXtAsR1Inumwj472S9r4","Rihanna, Drake",spotify:album:5QG3tjE5L9F6O2vCAPph38,Loud (Japan Version),spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2010-01-01,https://i.scdn.co/image/ab67616d0000b27331548865f7c729290b96c794,1,2,263173,https://p.scdn.co/mp3-preview/bcdc0d6de3ed6309976290d58a0137033b5ef167?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,USUM71025031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary,canadian hip hop,canadian pop,hip hop,pop rap,rap",0.688,0.784,2.0,-2.972,1.0,0.0747,0.182,0.0,0.0843,0.563,100.003,4.0,,Def Jam Recordings,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",358 +359,spotify:track:5xmZDSLfUKwgTxfEqVv7g0,Don't You Want Me - Edit,spotify:artist:6iRRErKYy1iojOaJoq6Ltk,Felix,spotify:album:6odcotWv2xd7NP7RrGBS5b,90s 100 Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-11-28,https://i.scdn.co/image/ab67616d0000b273b212e660aec81b60a425d4f1,1,33,189773,https://p.scdn.co/mp3-preview/5ac1f163032ffa46a67f62a10e83db9e7d298108?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBARL9200055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hardcore techno,hip house,rave",0.562,0.802,9.0,-12.423,0.0,0.0318,0.0096,0.662,0.0919,0.316,127.964,4.0,,Legacy Recordings,P This compilation (P) 2014 Sony Music Entertainment,359 +360,spotify:track:1l9QbAyljv9kW0xrF8xqHq,Rock$tar,spotify:artist:6pjod8SsOOGf6GW9tfEnH1,Reece Mastin,spotify:album:6sIfbR83sneqztk788UGmO,Beautiful Nightmare,spotify:artist:6pjod8SsOOGf6GW9tfEnH1,Reece Mastin,2012-10-22,https://i.scdn.co/image/ab67616d0000b27372c475607cb622b7cf8d5941,1,2,181733,https://p.scdn.co/mp3-preview/686d492076388bcce7b9531b975052b1ebdb5b13?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUBM01200341,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.547,0.842,10.0,-2.753,0.0,0.135,0.0127,0.0,0.0379,0.88,175.996,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,360 +361,spotify:track:0Zxswuv5xzIhxDnsKJLq82,Mercy,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:5yYFrOnqG8cEciKnsxHz2r,Illuminate (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2017-04-20,https://i.scdn.co/image/ab67616d0000b273f9cbd0c07513a7232cd6b9a7,1,3,208733,https://p.scdn.co/mp3-preview/7814718df164c0b2e3543430b3482b4b6f6f5717?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71603531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.561,0.674,4.0,-4.882,0.0,0.0818,0.118,0.0,0.111,0.383,148.127,4.0,,Universal Music Group,"C © 2016 Island Records, a division of UMG Recordings, Inc., P ℗ 2017 Island Records, a division of UMG Recordings, Inc.",361 +362,spotify:track:0ezTev2AFh8ugKYHLdvytD,It's a Game,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,spotify:album:7scUggwmOi2aHRjFHlPpCl,It's A Game,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,1977-03-07,https://i.scdn.co/image/ab67616d0000b2733cd9b3ec0c481f010a7e11ad,1,1,178493,https://p.scdn.co/mp3-preview/ad85ebc84406097257c171d6bf80b7708ea5e154?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USAR10000017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.571,0.924,0.0,-5.079,1.0,0.0651,0.0127,0.0899,0.114,0.508,129.599,4.0,,Arista,"P (P) 1977 Arista Records,LLC",362 +363,spotify:track:31CdEosqM8rE89xGGYt1tm,According To My Heart,spotify:artist:3aAUu37qACrKr6h9eQyNVj,The Reels,spotify:album:0kqiF9ZW8JkbMH0ij9nmDp,Reel To Reel: 1978 - 1992,spotify:artist:3aAUu37qACrKr6h9eQyNVj,The Reels,2007-09-15,https://i.scdn.co/image/ab67616d0000b273ef00b378d4555a01c13c3d98,1,4,192773,https://p.scdn.co/mp3-preview/dadb0485b81e4917c2d185e2f43fef3ec3a98d57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00736470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.831,0.534,5.0,-8.348,1.0,0.0308,0.455,0.00161,0.331,0.941,119.78,4.0,,Bloodlines,"C 2007 Bloodlines, P 2007 Bloodlines",363 +364,spotify:track:32wGJJaVWYtJ23DQ9hL4jp,Gamble Everything for Love,spotify:artist:06y1hH4hu3rcTUXHJevPCf,Ben Lee,spotify:album:6k8le4iJjm9yd1pv2qhtE4,Awake Is the New Sleep (10th Anniversary Edition),spotify:artist:06y1hH4hu3rcTUXHJevPCf,Ben Lee,2005-02-22,https://i.scdn.co/image/ab67616d0000b273f259e2805be38048f89b1cce,1,2,201560,https://p.scdn.co/mp3-preview/9a2b624d35a49117cfd0b010b6f3df8567fbdbfc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,US27Q1563412,spotify:user:bradnumber1,2022-02-03T10:00:41Z,"australian alternative rock,australian pop,australian rock",0.765,0.441,9.0,-9.754,0.0,0.0698,0.299,0.0,0.07,0.884,162.946,4.0,,WM Australia,"C © 2005 Ten Finger Records, Inc., P This edition, ℗ 2015 Ten Finger Records, Inc., under exclusive licence to Warner Music Australia Pty Limited",364 +365,spotify:track:0W4Kpfp1w2xkY3PrV714B7,Ho Hey,spotify:artist:16oZKvXb6WkQlVAjwo2Wbg,The Lumineers,spotify:album:6NWYmlHxAME5KXtxrTlUxW,The Lumineers,spotify:artist:16oZKvXb6WkQlVAjwo2Wbg,The Lumineers,2012-04-03,https://i.scdn.co/image/ab67616d0000b27355b094b01ca58e4d1800a402,1,5,163133,https://p.scdn.co/mp3-preview/c33540bb4add6e78feca6e0cf121fbd0d3b9e6dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USDMG1260805,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock,neo mellow,stomp and holler",0.685,0.466,0.0,-9.074,1.0,0.0304,0.791,2.06e-06,0.0914,0.353,79.936,4.0,,Dualtone Music Group,"C 2012 Dualtone Music Group, a division of MNRK Records, P 2012 Dualtone Music Group, a division of MNRK Records",365 +366,spotify:track:6VQYCU0hlch2Mzb0CTXvVg,Have A Look,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,spotify:album:010ZuyybZC9uyh1uInGxyK,The Best Of Vanessa Amorosi,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,2005-11-24,https://i.scdn.co/image/ab67616d0000b2730c2f52db42f1a2610cc477e7,1,2,217653,https://p.scdn.co/mp3-preview/e548da80b18c69c93be7ade374ad142398ecb39a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUV401421263,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.666,0.9,9.0,-6.199,1.0,0.197,0.278,0.0,0.8,0.808,95.031,4.0,,CBK Productions,"C 2015 CBK Productions, P 2015 CBK Productions",366 +367,spotify:track:5r4RqhXlclyOBImN8I57R0,"American Woman - 7"" Single Version",spotify:artist:0cQuYRSzlItquYxsQKDvVc,The Guess Who,spotify:album:3pMKq24IfepNoAm9nMxwxQ,The Best Of The Guess Who,spotify:artist:0cQuYRSzlItquYxsQKDvVc,The Guess Who,1971,https://i.scdn.co/image/ab67616d0000b2731e24453d2ed2f9e4918d10fb,1,5,232693,https://p.scdn.co/mp3-preview/8c1e5c2fab079ce2692fe5c193c4d685d8d3a2bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USRC16908370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic canadian rock,classic rock,country rock,folk rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.556,0.743,9.0,-10.077,1.0,0.0458,0.217,0.000109,0.442,0.763,92.93,4.0,,RCA/Legacy,P Originally released 1971. All rights reserved by Sony Music Entertainment,367 +368,spotify:track:5kfULXiL55wntC8Dmbok9h,Try to Remember,spotify:artist:3C5hjzfOs3mSIhWhLl5Tni,Des O'Connor,spotify:album:1zpf66nTXmW1azpCIFYD7J,Anytime,spotify:artist:3C5hjzfOs3mSIhWhLl5Tni,Des O'Connor,1990,https://i.scdn.co/image/ab67616d0000b273603a133371019f1746f183fb,1,21,204106,https://p.scdn.co/mp3-preview/968880fb1099a89bc863831c6e6eeb296fd7a3dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,GBAYE6800205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,merseybeat",0.469,0.183,0.0,-15.102,1.0,0.0323,0.902,0.104,0.105,0.182,93.086,3.0,,Parlophone UK,"C © 1990 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1990 Parlophone Records Ltd, a Warner Music Group Company",368 +369,spotify:track:6zL3A4Oq1nRvDPZQYK0KHI,I Did What I Did For Maria,spotify:artist:7KK6M2jPylHa6gLbMBI6V0,Tony Christie,spotify:album:04ieWmbQ7Vha7taSmHaOKG,The Tony Christie Love Collection,spotify:artist:7KK6M2jPylHa6gLbMBI6V0,Tony Christie,2006-01-01,https://i.scdn.co/image/ab67616d0000b27353eb0fe7f9bd3835686247dd,1,2,205653,https://p.scdn.co/mp3-preview/6a006d6fdfe5e5e0f3cc4c5772469e8ba640e266?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USMC10200220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.616,0.878,7.0,-4.353,1.0,0.0546,0.179,0.0,0.844,0.788,120.781,4.0,,Spectrum,"C © 2006 Spectrum Music, P This Compilation ℗ 2006 Spectrum Music",369 +370,spotify:track:0kixPmoSCDt7zLYqxDtaXw,Rising Sun,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:1Htwv3I81HU6YUWWs0ommZ,The Best of Cold Chisel - All for You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b27306dc40069e45da5e5d9f90e6,1,7,207078,https://p.scdn.co/mp3-preview/99cc900e32f0e36e46af72a8a48c1eb4231b4e63?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABB1158219,spotify:user:bradnumber1,2024-07-16T14:17:58Z,australian rock,0.518,0.989,2.0,-1.797,1.0,0.0784,0.188,0.00122,0.0782,0.512,96.782,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",370 +371,spotify:track:2Rwux3fRY1xxl167muIo93,I Ran (So Far Away) - Single Edit,spotify:artist:0uAjBatvB4ubpd4kCfjmNt,A Flock Of Seagulls,spotify:album:1A8LZSjPvRpcCJ3Jw4coZe,Grand Theft Auto Vice City OST (Greatest Hits),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2002-11-26,https://i.scdn.co/image/ab67616d0000b27367f94edad740366b0523ffee,1,6,219906,https://p.scdn.co/mp3-preview/45349a1628f37a8b9cb86b9d1d6c6f58f1527f2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK0500042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop",0.537,0.815,2.0,-6.208,1.0,0.0348,0.000418,0.807,0.194,0.691,145.424,4.0,,Epic,P (P) Compilation 2002 Sony Music Entertainment Inc.,371 +372,spotify:track:7gSQv1OHpkIoAdUiRLdmI6,I Won't Back Down,spotify:artist:2UZMlIwnkgAEDBsw1Rejkn,Tom Petty,spotify:album:5d71Imt5CIb7LpQwDMQ093,Full Moon Fever,spotify:artist:2UZMlIwnkgAEDBsw1Rejkn,Tom Petty,1989-01-01,https://i.scdn.co/image/ab67616d0000b27336572e6726714544f5bed456,1,2,178360,https://p.scdn.co/mp3-preview/2efef1deacda363a01f8d713502bef6674c3cee4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USMC18925675,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.766,0.478,7.0,-13.487,1.0,0.0329,0.0513,2.49e-06,0.165,0.965,114.02,4.0,,Tom Petty P&D,"C © 1989 MCA Records Inc., P ℗ 1989 Geffen Records",372 +373,spotify:track:7hMK0MRa9X5NzUd4cSFsWn,A Song For You,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,spotify:album:7MQcpWmGqxDm3XRntiGDSe,A Song For You,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,1972-01-01,https://i.scdn.co/image/ab67616d0000b27305ec3f3735024dcfd5089d3b,1,1,282026,https://p.scdn.co/mp3-preview/3ab09183dd205e100d18abdbc6a90011e667aaf6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM17200542,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock",0.439,0.205,5.0,-11.16,1.0,0.0342,0.826,4.43e-05,0.105,0.149,127.902,4.0,,Universal Music Group,"C © 1972 A&M Records, P ℗ 1972 UMG Recordings, Inc.",373 +374,spotify:track:2wvMC5EyaaYQwBfiwwY2xE,Life's Been Good,spotify:artist:5bDxAyJiTYBat1YnFJhvEK,Joe Walsh,spotify:album:5yqBTSoJqE9EfApl2Pptva,"But Seriously, Folks...",spotify:artist:5bDxAyJiTYBat1YnFJhvEK,Joe Walsh,1978-06-01,https://i.scdn.co/image/ab67616d0000b273d6627cd5a3fb6403c70471be,1,8,536226,https://p.scdn.co/mp3-preview/4220b4db522c301195461f9aaaa099ca0a4536b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USEE10901062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock,southern rock",0.505,0.476,2.0,-12.897,1.0,0.0711,0.25,0.00915,0.113,0.542,99.31,4.0,,Rhino/Elektra,"C © 1978 Elektra Entertainment., P ℗ 1978 Elektra Entertainment Company Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",374 +375,spotify:track:1e1oPDrzCWHapxh9GD6vNw,Put Yourself in My Place,"spotify:artist:4RVnAU35WRWra6OZ3CbbMA, spotify:artist:4C6ePhnXoaH3iz2Av2X6PF","Kylie Minogue, Ronin",spotify:album:1g7UibEq6u73nf5gr5w3WD,Kylie Minogue,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,1994-09-19,https://i.scdn.co/image/ab67616d0000b2731bfc7d91a7c07db7532d82bc,1,5,251840,https://p.scdn.co/mp3-preview/43bd342d9fe4238de6068b545931b5bd22466dcf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBARL9400227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.564,0.81,3.0,-6.287,1.0,0.0296,0.0176,0.467,0.155,0.713,76.957,4.0,,WM Australia,"C © 1994 Mushroom Records, P ℗ 1994 Mushroom Records",375 +376,spotify:track:2LEF1A8DOZ9wRYikWgVlZ8,Good Feeling,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,spotify:album:7eLwoxxWs6lfkVYJGkGNbk,Wild Ones,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2012-06-22,https://i.scdn.co/image/ab67616d0000b273871d85943145dde548f4ae09,1,4,248133,https://p.scdn.co/mp3-preview/5c8193af1f76fc8fc05cabbcabb0318e8608a29a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USAT21101961,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap",0.706,0.89,1.0,-4.444,0.0,0.0688,0.0588,0.00286,0.306,0.684,128.011,4.0,,Poe Boy/Atlantic,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",376 +377,spotify:track:0Cp7pkYwl4WCGRHhrfcsrg,Here I Go Again - 1987 Version; 2017 Remaster,spotify:artist:3UbyYnvNIT5DFXU4WgiGpP,Whitesnake,spotify:album:6ujO2Xzt247YCYIpAmcb4r,Whitesnake (30th Anniversary Edition),spotify:artist:3UbyYnvNIT5DFXU4WgiGpP,Whitesnake,1987-04-07,https://i.scdn.co/image/ab67616d0000b273eb93565b56b7d1aea022983d,1,5,275693,https://p.scdn.co/mp3-preview/677c7e338b471082ab932141cfabf14d08768fa5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GB01A1700005,spotify:user:bradnumber1,2022-08-31T00:18:45Z,"album rock,british blues,classic rock,glam metal,hard rock,metal,rock",0.384,0.846,7.0,-5.591,1.0,0.0365,0.151,7.73e-05,0.0913,0.272,90.172,4.0,,Parlophone UK,"C © 1987, 2017 Whitesnake Productions (Overseas) Ltd. under exclusive license to Parlophone Records Ltd, a Warner Music Group Company for World ex US, Canada & Japan / 1987, 2017 Saltburn, LLC, under exclusive license to Rhino Entertainment, a Warner Music Group Company for US, Canada & Japan, P ℗ 1987, 2017 Whitesnake Productions (Overseas) Ltd. under exclusive license to Parlophone Records Ltd, a Warner Music Group Company for World ex US, Canada & Japan / 1987, 2017 Saltburn, LLC, under exclusive license to Rhino Entertainment, a Warner Music Group Company for US, Canada & Japan",377 +378,spotify:track:7MapZTlRqFfUteNcghsTwf,Keep Your Head Up,spotify:artist:2oX42qP5ineK3hrhBECLmj,Andy Grammer,spotify:album:6XytvZqOIfnUlCerrbOMMo,Andy Grammer,spotify:artist:2oX42qP5ineK3hrhBECLmj,Andy Grammer,2011-01-01,https://i.scdn.co/image/ab67616d0000b2735d6ee0cc74a8cd744e5106bf,1,1,190480,https://p.scdn.co/mp3-preview/fd5299422caa209306c3a0acc7d477631be7a8a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USKFE1000058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,post-teen pop",0.666,0.78,7.0,-5.177,1.0,0.0404,0.044,0.0,0.128,0.795,90.004,4.0,,S-Curve Records,"C © 2011 S-Curve Records, P ℗ 2011 S-Curve Records",378 +379,spotify:track:0k73nWaD6RPx2sHFEkGPcn,Feel the Love (feat. John Newman),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:34v5MVKeQnIo0CWYMbbrPf","Rudimental, John Newman",spotify:album:2AOpbitJNMvKhSbsi2YD4F,Home,spotify:artist:4WN5naL3ofxrVBgFpguzKo,Rudimental,2013-04-26,https://i.scdn.co/image/ab67616d0000b2731468dc3911c9abea1dcf9676,1,2,245186,https://p.scdn.co/mp3-preview/9ea1885baab7620b0ffc5f805750bab82311c620?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBAHS1200174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,dance pop",0.385,0.705,1.0,-6.849,1.0,0.0601,0.0026,0.000184,0.686,0.24,179.948,4.0,,Asylum,"C © 2013 Warner Music UK Limited., P ℗ 2013 Warner Music UK Limited except tracks 2 & 5 (p) 2013 Black Butter Records under exclusive licence to Warner Music UK Limited",379 +380,spotify:track:4hepyFFOO9I7oZCNn3T2sz,"More, More, More",spotify:artist:3GHovBcEWpbnwCZDPF9GpM,Andrea True Connection,spotify:album:4xQKeiJzX2EmCXt5XdGiTN,"More, More, More",spotify:artist:3GHovBcEWpbnwCZDPF9GpM,Andrea True Connection,2007-01-01,https://i.scdn.co/image/ab67616d0000b2739c761505b9a5a7823af47d50,1,1,183007,https://p.scdn.co/mp3-preview/1dfd0f5940e78684ee812b46f50226fad6821426?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USA560619706,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.74,0.835,9.0,-5.625,0.0,0.038,0.0694,4.67e-05,0.149,0.886,103.029,4.0,,Cleopatra,"C (C) 2007 Cleopatra Records, P (P) 2007 Cleopatra Records",380 +381,spotify:track:2PpruBYCo4H7WOBJ7Q2EwM,Hey Ya!,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,spotify:album:1UsmQ3bpJTyK6ygoOOjG1r,Speakerboxxx/The Love Below,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,2003,https://i.scdn.co/image/ab67616d0000b2736e88eb6508fd94cd1b745ce2,2,9,235213,https://p.scdn.co/mp3-preview/d24b3c4135ced9157b0ea3015a6bcc048e0c2e3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USAR10300924,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,hip hop,old school atlanta hip hop,rap,southern hip hop",0.727,0.974,4.0,-2.261,0.0,0.0664,0.103,0.000532,0.174,0.965,79.526,4.0,,Arista,P (P) 2003 Arista Records LLC,381 +382,spotify:track:6epq8bnMeajvyPnmXNJ1cY,Your Love - Radio Edit,spotify:artist:4Jv9I6DAbcjDa8HGFAjv94,The Aston Shuffle,spotify:album:3Lx7mtLFnrACDddNDoLnPE,Your Love,spotify:artist:4Jv9I6DAbcjDa8HGFAjv94,The Aston Shuffle,2010-01-01,https://i.scdn.co/image/ab67616d0000b273e7518a2181fabc5c10f1d566,1,1,196905,https://p.scdn.co/mp3-preview/bfc9b246dfb6d6cee324b1afcff3d22eeacbde3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUNV01000352,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house",0.61,0.696,1.0,-4.999,0.0,0.036,0.000708,0.0341,0.42,0.487,126.011,4.0,,Ministry Of Sound,"C © 2010 Downright Music, under exclusive license to Ministry of Sound Australia Pty Ltd, P ℗ 2010 Downright Music, under exclusive license to Ministry of Sound Australia Pty Ltd",382 +383,spotify:track:6De3rSBc6FC1EdpC0pRRwd,Don't Hold Your Breath,spotify:artist:40xbWSB4JPdOkRyuTDy1oP,Nicole Scherzinger,spotify:album:45QBZnAVDMJkdYH1ggKOgX,Don't Hold Your Breath (UK Version),spotify:artist:40xbWSB4JPdOkRyuTDy1oP,Nicole Scherzinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b2737bc4c7bf394a6c9737608b8a,1,1,198093,https://p.scdn.co/mp3-preview/8ff475999cb1c458e211595f5e446f9723570a70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USUM71029856,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.662,0.838,5.0,-5.232,0.0,0.0259,0.0079,7.04e-05,0.137,0.667,110.964,4.0,,Nicole Scherzinger Solo,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",383 +384,spotify:track:5LGqFIVBf3ZUeFBpc87CFS,Life,spotify:artist:73ZPfpfg1LBVvDEArK4l5B,Des'ree,spotify:album:3SwBajIGtIPylPqzWS9V1i,Supernatural,spotify:artist:73ZPfpfg1LBVvDEArK4l5B,Des'ree,1998-06-29,https://i.scdn.co/image/ab67616d0000b273df5db9751cfa58ceadbed9a0,1,3,216040,https://p.scdn.co/mp3-preview/1b4bdabcc149d526c7b37cc54fb160ad34f95701?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBBBL9802010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.721,0.74,1.0,-5.453,1.0,0.0413,0.113,4.07e-05,0.0847,0.716,104.812,4.0,,S2,"P (P) 1998 Sony Music Entertainment (UK) Ltd, except track 11 (P) 1994 Sony Music Entertainment (UK) Ltd.",384 +385,spotify:track:1SLxVWqXo9zNrrDKRa3m1G,Viva La Vida,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:4Uo9tGSEkAUYHWfVGHhhZm,Viva La Vida or Death and All His Friends,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2008-06-19,https://i.scdn.co/image/ab67616d0000b273adcc90bbf8ffa384c25c4478,1,7,242373,https://p.scdn.co/mp3-preview/fb9f4a9b0887326776b4fb7c6d331acd167a7778?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAYE0800265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.486,0.617,5.0,-7.115,0.0,0.0287,0.0954,3.23e-06,0.109,0.417,138.015,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",385 +386,spotify:track:0dMheXAeJbArzgLQP6R8qU,Blame It on the Weatherman,spotify:artist:72eP0W3rIhkxd0NHGg4w4u,B*Witched,spotify:album:1zrWYaf1JGvFpRLfp8nDyn,C'est la Vie: The Collection,spotify:artist:72eP0W3rIhkxd0NHGg4w4u,B*Witched,1998-03-25,https://i.scdn.co/image/ab67616d0000b273d304bce5fa67ae430a9ac558,1,4,214626,https://p.scdn.co/mp3-preview/829d3e8ce53f96ac2df6a3e7d9890bb2704a7433?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBBBM9802105,spotify:user:bradnumber1,2021-11-11T04:16:57Z,"australian pop,europop,girl group",0.497,0.739,7.0,-7.275,1.0,0.0355,0.211,0.0,0.58,0.308,90.031,4.0,,Sony Music CG,P (P) 1998 Sony Music Entertainment UK Limited,386 +387,spotify:track:1C79CxJdMHjk9RkwX04DRh,,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,,spotify:album:535qZk6ycJqQaa5qFPmq3k,,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,0000,,1,15,0,,False,0,,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.67,0.787,7.0,-4.277,0.0,0.0519,0.0228,1.74e-06,0.125,0.713,139.906,4.0,,,,387 +388,spotify:track:65n57JYdR4UZR81FOkMHcA,Warm Ride,spotify:artist:5eygg59PhcYgy4ekBgbDA1,Graham Bonnet,spotify:album:6bIyMIpHP8hcVpahpMORkv,Graham Bonnet / No Bad Habits (Expanded Deluxe Edition),spotify:artist:5eygg59PhcYgy4ekBgbDA1,Graham Bonnet,2016-05-13,https://i.scdn.co/image/ab67616d0000b273b034e04db33f6dd33ec536c2,2,3,202373,https://p.scdn.co/mp3-preview/58d69e8e7a7e9a12d4c6ea0c7a8a1695f67bfe3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBLY1601182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.521,0.895,0.0,-7.989,0.0,0.0465,0.254,0.0,0.208,0.799,111.765,4.0,,Hear No Evil,"C (C) 2016 Cherry Red Records, P (P) 2016 HNE Recordings",388 +389,spotify:track:3O3F0ZKmxxMdgYm1rw0jaN,Nobody To Love - Extended Mix,spotify:artist:01pKrlgPJhm5dB4lneYAqS,Sigma,spotify:album:3CwO5BgcD6FfZASieKajQs,Nobody To Love,spotify:artist:01pKrlgPJhm5dB4lneYAqS,Sigma,2014-01-01,https://i.scdn.co/image/ab67616d0000b2738e981b5c0466987f3e55adcc,1,1,252342,https://p.scdn.co/mp3-preview/e0bb8033e0b1ddb4e4db92b2d6d33d2422f7c164?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBCFZ1400054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dancefloor dnb,house,pop dance,uk dance",0.441,0.954,8.0,-3.702,1.0,0.059,0.000464,0.000332,0.0529,0.146,175.027,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 3Beat Productions Limited, P ℗ 2014 3Beat Productions Limited",389 +390,spotify:track:1XE1UGRpvvkaFEeqe1OJpw,Don't Wanna Try,spotify:artist:3sMYEBy0CZFxedcnm9i9hf,Frankie J,spotify:album:3S2InZkyQQfQ16oSQOsGGn,The One,spotify:artist:3sMYEBy0CZFxedcnm9i9hf,Frankie J,2003,https://i.scdn.co/image/ab67616d0000b273d30e826126529af620988c4b,1,11,245293,https://p.scdn.co/mp3-preview/2338dd46748ba5d8da11134cbcdc3caa70033cc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM10303819,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop rap,southern hip hop,urban contemporary",0.655,0.433,5.0,-7.577,0.0,0.0348,0.444,0.0,0.221,0.199,130.127,4.0,,Columbia,"P (P) 2003 Universal Records, a Division of UMG Recordings, Inc., 2003, 2004, 2005 SONY BMG MUSIC ENTERTAINMENT",390 +391,spotify:track:2Af6yE62PwymxZV0962qul,Norman,spotify:artist:4KCnuZQWRl9FEwAcduZhP9,Sue Thompson,spotify:album:7yJzSeLuyRbgtE35OMXdzq,Essential Sue Thompson,spotify:artist:4KCnuZQWRl9FEwAcduZhP9,Sue Thompson,2011-12-08,https://i.scdn.co/image/ab67616d0000b273e82eff0514f9b38a302c8c3f,1,2,141026,https://p.scdn.co/mp3-preview/406c56d03971a2d95ee4399db1bdc2211c523083?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USJGN0802841,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.713,0.523,9.0,-9.446,1.0,0.0323,0.817,1.18e-06,0.104,0.965,127.254,4.0,,Hickory Records (2009 Deal),C (C) 2011 Sony ATV,391 +392,spotify:track:5y0YreEOnQiKFAnCrcFIXz,(Just Like) Starting Over - Remastered 2010,spotify:artist:4x1nvY2FN8jxqAFA0DA02H,John Lennon,spotify:album:15q7N7Wo307mfjqR29NpjF,Double Fantasy: Stripped Down,"spotify:artist:4x1nvY2FN8jxqAFA0DA02H, spotify:artist:2s4tjL6W3qrblOe0raIzwJ","John Lennon, Yoko Ono",1980-11-17,https://i.scdn.co/image/ab67616d0000b2736eac0f2b77d85a59f0cf9b3e,2,1,236546,https://p.scdn.co/mp3-preview/a79a8808230f4ded0af7074d5f472dee77f6881f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USTO11000015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,rock",0.701,0.794,9.0,-6.16,1.0,0.0757,0.301,5.68e-05,0.179,0.409,99.104,4.0,,Capitol Records,"C © 2010 Yoko Ono Lennon, under exclusive license to Capitol Records Inc., P ℗ 2010 Lenono Music, under exclusive license to Capitol Records Inc.",392 +393,spotify:track:5WAXGE1NZtdgnVAGTsslr8,Too Fake,spotify:artist:0UaUeprRolTdlmZVU4yzPS,Hockey,spotify:album:5NY8oSj9wE0G0bYzd36OlA,Too Fake,spotify:artist:0UaUeprRolTdlmZVU4yzPS,Hockey,2009-01-01,https://i.scdn.co/image/ab67616d0000b273a0dcac1d7bef6308f4253b3a,1,1,249946,https://p.scdn.co/mp3-preview/ab0a271a15f04a5fa069d8808452208cfc1a3fee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA20900064,spotify:user:bradnumber1,2021-08-08T09:26:31Z,portland indie,0.668,0.648,1.0,-7.755,1.0,0.0464,0.0211,6e-05,0.108,0.506,138.475,4.0,,Capitol Records,"C © 2009 Capitol Records, LLC, P ℗ 2009 Capitol Records, LLC",393 +394,spotify:track:3u1Er1rkjn1oSz1xdZH3ZD,Call It What You Want,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,spotify:album:7Kmmw7Z5D2UD5MVwdm10sT,Torches,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,2011-05-23,https://i.scdn.co/image/ab67616d0000b273121d5f92cf90576907dfb1e5,1,3,238786,https://p.scdn.co/mp3-preview/6fadfae86412a51fe3e759595a579d695bd5b7dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM11101700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern alternative rock,modern rock,rock",0.641,0.967,5.0,-4.289,0.0,0.0601,0.0483,0.000276,0.442,0.725,113.017,4.0,,Columbia,"P (P) 2010, 2011 Sony Music Entertainment",394 +395,spotify:track:7jaSSARL6ZLVuD4NePLHlo,Mr. Saxobeat - Radio Edit,spotify:artist:0BmLNz4nSLfoWYW1cYsElL,Alexandra Stan,spotify:album:4yAYmGd2VOyNw6sblQKoJt,Mr. Saxobeat,spotify:artist:0BmLNz4nSLfoWYW1cYsElL,Alexandra Stan,2011-01-01,https://i.scdn.co/image/ab67616d0000b27351d7cf4dcf12aa62c1121581,1,1,195105,https://p.scdn.co/mp3-preview/11c1bc8c78126bb103cf0c8eaf62373d8173b5e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ROCRP1002864,spotify:user:bradnumber1,2021-08-08T09:26:31Z,romanian pop,0.72,0.925,4.0,-4.165,0.0,0.0511,0.0276,0.000238,0.14,0.781,127.004,4.0,,Ministry Of Sound,"C © 2011 MediaPro Music Entertainment, Romania, under exclusive license to Central Station Records, P ℗ 2011 MediaPro Music Entertainment, Romania, under exclusive license to Central Station Records",395 +396,spotify:track:4alHo6RGd0D3OUbTPExTHN,Just What I Needed,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:4tJPWT4r4FSKwy784Qs1Fq,The Cars,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,1978-06-06,https://i.scdn.co/image/ab67616d0000b273f725bc7907dcf15aa2c6e7b7,1,3,225626,https://p.scdn.co/mp3-preview/2bb7589a2ef19bc8cb2d198048f729ea7240b813?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USEE17500009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.62,0.579,4.0,-9.307,1.0,0.0473,0.0152,6.4e-05,0.0858,0.691,127.215,4.0,,Elektra Records,"C © 1978 Elektra Records for the United States and WEA International for the world outside of the United States., P ℗ 1978 Elektra Entertainment, a division of Warner Communications, Inc. for the United States and WEA International Inc. for the world outside of the United States.",396 +397,spotify:track:7MeniYdHjzvKEn8BWzFNI1,Therapy,spotify:artist:4hOb2WdQMQWyG6RQAhR7iE,Budjerah,spotify:album:58SF72zVryflAg0WvepRzb,Therapy,spotify:artist:4hOb2WdQMQWyG6RQAhR7iE,Budjerah,2023-02-08,https://i.scdn.co/image/ab67616d0000b273a16bce82dfd150ceba562f68,1,1,192103,https://p.scdn.co/mp3-preview/8c5c5d2d6307c46f974105325dd92e85289da17d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUWA02201938,spotify:user:bradnumber1,2023-05-13T05:16:48Z,"australian indigenous music,australian r&b",0.61,0.611,0.0,-4.652,0.0,0.0297,0.0129,0.0,0.174,0.417,104.943,3.0,,WM Australia,"C © 2023 Warner Music Australia Pty Limited, P ℗ 2023 Warner Music Australia Pty Limited",397 +398,spotify:track:3OHDuFSDsStzbhwq0aXXwa,Abracadabra,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,spotify:album:7dozvTLsiqIMNfa2p0tJZc,Steve Miller Band,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,1973-01-01,https://i.scdn.co/image/ab67616d0000b273005fc60e7f4e860eadb647fa,2,15,307400,https://p.scdn.co/mp3-preview/4202f6549cc02d4d24b85b7cfe41b22153a66e54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA28500258,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.79,0.537,9.0,-13.272,0.0,0.036,0.0775,3.01e-06,0.173,0.964,127.511,4.0,,Universal Music Ltd.,"C (C) 1994 Capitol Records, LLC, P (P) 1994 Capitol Records, LLC",398 +399,spotify:track:3GpbwCm3YxiWDvy29Uo3vP,Right Round,"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:6LqNN22kT3074XbTVUrhzX","Flo Rida, Kesha",spotify:album:2vBLKFrI1rZqB7VtGxcsR5,R.O.O.T.S. (Route of Overcoming the Struggle),spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2009-03-23,https://i.scdn.co/image/ab67616d0000b27318aa5d7e6d484b832cd5d03f,1,5,204640,https://p.scdn.co/mp3-preview/aa6819dace2539d3cb23bfdc55c8e7e30865ab53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USAT20900156,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,dance pop,pop",0.72,0.672,7.0,-6.852,1.0,0.0551,0.009,0.0,0.232,0.705,124.986,4.0,,Poe Boy/Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",399 +400,spotify:track:6JNJERZGJwDVgkmbohBw7u,Self Control,spotify:artist:4463nfFMmK1cwAWBQDwT5e,Laura Branigan,spotify:album:5cwUCXPFFfNsnk4qipc40D,Self Control,spotify:artist:4463nfFMmK1cwAWBQDwT5e,Laura Branigan,1984,https://i.scdn.co/image/ab67616d0000b2731310670cbb82f06474372cfd,1,2,246440,https://p.scdn.co/mp3-preview/736e6e3bcc1d3a45042ba36a96734cd6a2a897e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USAT20903047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock,synthpop",0.814,0.686,6.0,-12.172,0.0,0.0342,0.219,0.00382,0.155,0.778,106.679,4.0,,Rhino Atlantic,"C © 1984 Atlantic Recording Corp., P ℗ 1984 Atlantic Recording Corp. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",400 +401,spotify:track:3aIhJDHxr1kgTSnutJxPTH,Peanut Butter Jelly,spotify:artist:4sTQVOfp9vEMCemLw50sbu,Galantis,spotify:album:4QcXq4vTVN7dFb7bZa9jG2,Pharmacy,spotify:artist:4sTQVOfp9vEMCemLw50sbu,Galantis,2015-06-05,https://i.scdn.co/image/ab67616d0000b2732b517912fd69652ff10d8e11,1,9,203133,https://p.scdn.co/mp3-preview/0151e8ec1524618f7b7dac72a9d1de07b4a63ada?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT21500650,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,progressive electro house",0.708,0.945,5.0,-3.247,0.0,0.234,0.00104,0.0803,0.227,0.545,127.96,4.0,,Big Beat Records/Atlantic,"C © 2015 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States. A Warner Music Group Company, P ℗ 2015 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States. A Warner Music Group Company",401 +402,spotify:track:0ltBH1JNzSvQJPjJpvTu9B,Whistle,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,spotify:album:355RqMyXhDoOD0l4qMUxeT,Whistle,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2012-04-24,https://i.scdn.co/image/ab67616d0000b2738fff33d4cece7b62bda3a2a5,1,1,225000,https://p.scdn.co/mp3-preview/ea7012e8d63798a9bd4ec40e566cb81c5955d18f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAT21201745,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap",0.754,0.933,0.0,-5.786,1.0,0.0448,0.0199,0.0,0.297,0.75,103.992,4.0,,Poe Boy/Atlantic,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",402 +403,spotify:track:6QLO02TAXSUqgk0wNXywuz,Come On Over,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,spotify:album:0vOj0JVKv2bobFBBUTjgQF,Come On Over,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,1997,https://i.scdn.co/image/ab67616d0000b273e651d6dd8cc3af4288bf77b4,1,7,173506,https://p.scdn.co/mp3-preview/53c18772e8d50be6280fb730c239240b199e4a9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19787378,spotify:user:bradnumber1,2022-01-11T11:19:37Z,"canadian country,canadian pop,contemporary country,country,country dawn",0.618,0.92,11.0,-4.529,1.0,0.0457,0.112,0.0,0.691,0.966,76.512,4.0,,Strategic Marketing,"C © 2009 Mercury Records, P ℗ 2009 Mercury Records",403 +404,spotify:track:62kxmzRvbB99isOPA3Jsea,Sexcrime (Nineteen Eighty-Four),"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",spotify:album:1moeActSxQQhEdAVIClRBm,Greatest Hits,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",1991-03-01,https://i.scdn.co/image/ab67616d0000b273a27a49c3ac1c50a02dd50820,1,12,233306,https://p.scdn.co/mp3-preview/5dad818780c6c308cb3e2fffcffd09b7cdbf9a2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAAA8400008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard",0.673,0.701,2.0,-12.632,1.0,0.0491,0.0303,3.65e-06,0.163,0.558,119.091,4.0,,RCA Records Label,P (P) 1991 SONY BMG MUSIC ENTERTAINMENT (UK) Limited,404 +405,spotify:track:2SWmfd8iv4CiBOztWJebux,I Can't Stand the Rain,spotify:artist:3R6f1aBWwde7ZqGv7hf4dY,Eruption,spotify:album:26BHqKni1MTqwIcdSUFLRm,4 Hits: Eruption,spotify:artist:3R6f1aBWwde7ZqGv7hf4dY,Eruption,2011-07-15,https://i.scdn.co/image/ab67616d0000b27316460173acaa68e9bc62fd98,1,2,185733,https://p.scdn.co/mp3-preview/5df8644045eb11263a6c7e99af63155aafee3507?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,DED167700034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.708,0.693,11.0,-9.557,1.0,0.0917,0.211,0.000515,0.162,0.892,108.319,4.0,,MCI,P (P) 2011 Sony Music Entertainment Germany GmbH,405 +406,spotify:track:6DcDdDevI94Dh4vc5anXBE,Wild Wild Love (feat. G.R.L.),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:3Yl4nkmEa8BSuGWbwhdLDq","Pitbull, G.R.L.",spotify:album:5guseY8dOt96Ji3n9TVSwA,Wild Wild Love (feat. G.R.L.),spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2014-02-25,https://i.scdn.co/image/ab67616d0000b2732bd43fc62791bf472a8bfb5d,1,1,202197,https://p.scdn.co/mp3-preview/7ad7b4082aaa6e4b57acc8dd1c3296fce79c0e45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USRC11400456,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,girl group,post-teen pop,talent show",0.645,0.732,2.0,-5.874,1.0,0.0482,0.0136,0.0,0.513,0.336,120.06,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2014 RCA Records, a division of Sony Music Entertainment",406 +407,spotify:track:210g0ApTMDQvGFTWSnioAA,Easy,spotify:artist:6twIAGnYuIT1pncMAsXnEm,Commodores,spotify:album:4mDGyVthoID64WAcff0HxR,The Commodores: The Definitive Collection,spotify:artist:6twIAGnYuIT1pncMAsXnEm,Commodores,2009-01-01,https://i.scdn.co/image/ab67616d0000b2732a177dddad63ff1c7c1e3c6d,1,7,256545,https://p.scdn.co/mp3-preview/10044c94985e802666a02616d3ef63117dd105fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USMO17700543,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,disco,funk,mellow gold,motown,quiet storm,soft rock,soul",0.568,0.575,10.0,-7.769,0.0,0.029,0.126,0.0001,0.114,0.333,133.093,4.0,,UNI/MOTOWN,"C © 2009 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2009 Motown Records, a Division of UMG Recordings, Inc.",407 +408,spotify:track:6yraFyhgbavO2amB2lhpfi,Waiting All Night (feat. Ella Eyre),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:66TrUkUZ3RM29dqeDQRgyA","Rudimental, Ella Eyre",spotify:album:2AOpbitJNMvKhSbsi2YD4F,Home,spotify:artist:4WN5naL3ofxrVBgFpguzKo,Rudimental,2013-04-26,https://i.scdn.co/image/ab67616d0000b2731468dc3911c9abea1dcf9676,1,11,292586,https://p.scdn.co/mp3-preview/7e490be7ba1c9e03b867e12f8cb51bb767c45dcc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBAHS1200493,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,dance pop,talent show,uk dance,uk pop",0.543,0.729,6.0,-5.357,0.0,0.0498,0.00265,0.01,0.427,0.282,174.982,4.0,,Asylum,"C © 2013 Warner Music UK Limited., P ℗ 2013 Warner Music UK Limited except tracks 2 & 5 (p) 2013 Black Butter Records under exclusive licence to Warner Music UK Limited",408 +409,spotify:track:5CR95JVlItpP3WaAIJUskm,Just A Kiss,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,spotify:album:7MMV5o5BBYxMK4ycvhVnul,Own The Night,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,2011-01-01,https://i.scdn.co/image/ab67616d0000b273e539e2698052c39ba7f6132d,1,2,214440,https://p.scdn.co/mp3-preview/9f10af291d8df8e5674ef44ab54606fe075d3086?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCN11100172,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country pop,country road",0.564,0.623,1.0,-7.248,1.0,0.0318,0.399,0.0,0.0914,0.307,145.047,4.0,,Capitol Nashville,"C © 2011 Capitol Records Nashville, P ℗ 2011 Capitol Records Nashville",409 +410,spotify:track:5ecZWU5uQOiCVSnPxBZNmT,7 Things - Single Version,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:0Yu3czJNOQ68fZgkvpjuHL,Breakout,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2008-01-01,https://i.scdn.co/image/ab67616d0000b273e345458751c029f411db3d5b,1,2,213453,https://p.scdn.co/mp3-preview/c72ced8af5595168702ef098027459ce210fb4b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USHR10823877,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.59,0.903,1.0,-4.478,0.0,0.0363,0.0232,0.0,0.0786,0.542,107.023,4.0,,Hollywood Records,"C © 2008 Hollywood Records, Inc., P ℗ 2008 Hollywood Records, Inc.",410 +411,spotify:track:78RIER8V6EhrqVPOBi2GYa,Here Comes the Rain Again - Remastered Version,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",spotify:album:4pGwe5BW8GVtIP8ruoa1jB,Touch (Reissue - Deluxe Edition),"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",1983-11-14,https://i.scdn.co/image/ab67616d0000b273a29ca418b2a64e80002a86e3,1,1,294586,https://p.scdn.co/mp3-preview/47181a1bad1b058e3cb6382cd2a036f66d606b80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBARL0300600,spotify:user:bradnumber1,2022-01-12T23:05:36Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard",0.648,0.755,0.0,-7.901,1.0,0.03,0.0139,0.000253,0.225,0.607,126.341,4.0,,RCA Records Label,P (P) 2005 Sony Music Entertainment Germany GmbH,411 +412,spotify:track:5p9XWUdvbUzmPCukOmwoU3,Suddenly I See,spotify:artist:5zzrJD2jXrE9dZ1AklRFcL,KT Tunstall,spotify:album:3j70PDKieTWQAwas3bPHRZ,Eye To The Telescope,spotify:artist:5zzrJD2jXrE9dZ1AklRFcL,KT Tunstall,2005-01-01,https://i.scdn.co/image/ab67616d0000b273183730e8038fa632b2c227da,1,9,201706,https://p.scdn.co/mp3-preview/45ba3b5723cc57375698956fda70e267199e24d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBGLM0400069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ectofolk,lilith,neo mellow,pop rock,scottish singer-songwriter",0.587,0.767,0.0,-5.713,1.0,0.0449,0.225,0.0,0.112,0.664,100.38,4.0,,Relentless/Virgin,"C © 2005 Universal Music Operations Limited, P ℗ 2005 Universal Music Operations Limited",412 +413,spotify:track:0FsKQ04gn6CHHOq2ISEm0H,Say So,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,spotify:album:3n5Coa56i6foIGITrYGX7o,Hot Pink,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,2019-11-07,https://i.scdn.co/image/ab67616d0000b2736274ace7cd4e262c13f6f93c,1,5,237893,https://p.scdn.co/mp3-preview/0f1582e554885f388a797bcf7727ab101a1c2ef1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USRC11903455,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.804,0.672,11.0,-4.614,0.0,0.122,0.256,1.02e-05,0.0906,0.778,111.023,4.0,,Kemosabe Records/RCA Records,P (P) 2019 Kemosabe Records/RCA Records,413 +414,spotify:track:0upLyFR8Rr52ZpMp5esQoq,You Really Got Me - 2015 Remaster,spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,spotify:album:7DdEbYFPKTZ8KB4z6L4UnQ,Van Halen (Remastered),spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,1978-02-10,https://i.scdn.co/image/ab67616d0000b27317dd812df38fed44d6d2036e,1,3,156146,https://p.scdn.co/mp3-preview/5ea4566225b76e5899597d8d820ba001db0292be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USWB11403670,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.454,0.946,1.0,-5.978,0.0,0.13,0.0223,0.0,0.173,0.647,138.18,4.0,,Rhino/Warner Records,"C © 1978 Warner Records Inc., P ℗ 1978 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",414 +415,spotify:track:0INUNNYfsp4qr6kJdY46mY,Travelin' Band,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:4GLxEXWI3JiRKp6H7bfTIK,Cosmo's Factory (Expanded Edition),spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1970-07-25,https://i.scdn.co/image/ab67616d0000b27361834aa14b97a7d9c693134f,1,3,127493,https://p.scdn.co/mp3-preview/c04e3213c1d34fda13e1010aaf83e32e8cb28fa5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USC4R0817628,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.513,0.92,6.0,-6.664,1.0,0.0511,0.0166,0.0282,0.178,0.963,166.186,4.0,,Craft Recordings,"C © 2008 Concord Music Group, Inc., P ℗ 2008 Concord Music Group, Inc.",415 +416,spotify:track:2LA4v20vokK9Uaj7WEEMaf,Losing Grip,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:3zXjR3y2dUWklKmmp6lEhy,Let Go,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2002-06-04,https://i.scdn.co/image/ab67616d0000b273f7ec724fbf97a30869d06240,1,1,233760,https://p.scdn.co/mp3-preview/c6303dfbc5094cdee8d6f130cae0edc99844162e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USAR10200222,spotify:user:bradnumber1,2024-02-27T01:36:45Z,"canadian pop,candy pop,dance pop,pop",0.534,0.888,8.0,-4.667,0.0,0.0972,0.00128,6.15e-06,0.0772,0.582,158.368,4.0,,Arista,"P (P) 2002 Arista Records, LLC",416 +417,spotify:track:3Zb7q3OoEbRJIl7cIgW1se,Big World,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,spotify:album:5NPUViV7mLNEGSsRBsdhpe,LIFE,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,2019-05-17,https://i.scdn.co/image/ab67616d0000b2735c32a35c0d1b0982b718a833,1,4,235706,https://p.scdn.co/mp3-preview/942d758b89bdb091c2079f6820c428506794e2f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM01900016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.629,0.559,5.0,-5.184,0.0,0.0761,0.0839,0.0,0.113,0.457,75.888,3.0,,Sony Music Entertainment,P (P) 2019 Conrad Sewell under exclusive license to Sony Music Entertainment Australia Pty Ltd,417 +418,spotify:track:3BLewreWlYMr2MbVUBfBS2,Almost With You - 2002 Digital Remaster,spotify:artist:2ZfogSsOWP4mVfEqfpLXCt,The Church,spotify:album:37FcNkuAMrcTjGLyg5MmiJ,The Blurred Crusade,spotify:artist:2ZfogSsOWP4mVfEqfpLXCt,The Church,1982-02-25,https://i.scdn.co/image/ab67616d0000b273bd30df930d82dfe540e2acf2,1,1,254360,https://p.scdn.co/mp3-preview/14f83092c6b11bdc05c97ef58772abf6391fa16e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUEM00200043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,dream pop,new romantic,new wave",0.366,0.816,0.0,-5.135,1.0,0.0331,0.000112,0.021,0.136,0.608,152.085,4.0,,EMI Music Australia,"C © 2010 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2010 Sony/ATV Northern Productions Pty Limited",418 +419,spotify:track:0dKTjE2FJQUBYWVYvzLacl,Changed The Way You Kissed Me (Radio Edit),spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,spotify:album:6MUCSpXHRLnfUsJS26oNNG,Pump It Vol. 5,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-04-06,https://i.scdn.co/image/ab67616d0000b27388e4d5d2393aa009a1a597b2,1,9,192627,https://p.scdn.co/mp3-preview/89a9ffbf2b566d7aee2e4802ed7944ca984bf168?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,GBCEN1101218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,uk dance",0.576,0.843,4.0,-3.727,0.0,0.0403,0.00614,0.00123,0.162,0.233,127.012,4.0,,LNG Music,P 2012 LNG Music,419 +420,spotify:track:6eyexh0sBYUn6xuAAuhGh9,Forever Until Tomorrow,spotify:artist:2l35CQqtYRh3d8ZIiBep4v,MKTO,spotify:album:6hcPm6dCD58O5UI6xv019r,MKTO,spotify:artist:2l35CQqtYRh3d8ZIiBep4v,MKTO,2014,https://i.scdn.co/image/ab67616d0000b2737b31a5efb42a0cc696369c3a,1,6,226733,https://p.scdn.co/mp3-preview/9b48c43b0aeedd4c6b2b6f792857216a104d9ece?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM11305989,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.519,0.819,1.0,-4.947,1.0,0.125,0.0993,0.0,0.0476,0.713,119.998,3.0,,Columbia/M2V,"P (P) 2012, 2013 Columbia Records, a Division of Sony Music Entertainment",420 +421,spotify:track:26gceVsA1ybT8qsX3aYLEn,Thunder,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:57lkUmA6WunanwJRN1RsGD,Evolve,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2017-06-23,https://i.scdn.co/image/ab67616d0000b273ee138477bb382419f3f165c5,1,10,187146,https://p.scdn.co/mp3-preview/ef62eb257ada5dd10002ebb8aa6ba2889a96dde4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71704167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.605,0.813,0.0,-4.785,1.0,0.0448,0.00702,0.114,0.145,0.238,167.997,4.0,,Universal Music Group,"C © 2018 KIDinaKORNER/Interscope Records, P ℗ 2018 KIDinaKORNER/Interscope Records",421 +422,spotify:track:77kwkHJdqneMyMZfbP3sNJ,Boom Sha La La Lo,spotify:artist:56ly3P0zXm2iYdDqFqE5ml,Hans Poulsen,spotify:album:7fuTry78vKGlCuOGzaJ5si,Lost Hits of the 70s and 80s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2019-01-15,https://i.scdn.co/image/ab67616d0000b273e5efbf411504d7501ec3593f,1,12,174200,https://p.scdn.co/mp3-preview/f5faa2336f10d5369faf93f16af29ff86a28e181?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AULB41800631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.526,0.637,7.0,-7.453,1.0,0.0316,0.219,1.8e-06,0.199,0.564,123.048,4.0,,Fanfare Records,"C 2018 Ambition Entertainment Pty Ltd, P 2018 Ambition Entertainment Pty Ltd",422 +423,spotify:track:13BRH2RILNifFRNTXbLUka,The Rascal King,spotify:artist:5uYXMC13cIUulobh204QuK,The Mighty Mighty Bosstones,spotify:album:5yBYSnmpRANjb99msqeCee,Let's Face It,spotify:artist:5uYXMC13cIUulobh204QuK,The Mighty Mighty Bosstones,1997-01-01,https://i.scdn.co/image/ab67616d0000b27381703eef6202ecf509d2cf55,1,2,166133,https://p.scdn.co/mp3-preview/62e7aed3676562b1be5f257bb8ff93c5c261dd10?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19780100,spotify:user:bradnumber1,2023-06-09T21:01:43Z,"boston punk,boston rock,punk,ska,ska punk,skate punk",0.544,0.846,1.0,-5.52,1.0,0.0389,0.00846,2.77e-06,0.192,0.969,88.187,4.0,,Island Mercury,"C © 1997 The Island Def Jam Music Group Inc., P ℗ 1997 The Island Def Jam Music Group",423 +424,spotify:track:6vKqtvGOPnJPQTfb34KJX3,(The Man Who Shot) Liberty Valance,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,spotify:album:6gJ1d3KgMLwEKeck53FYxc,The Best Of Gene Pitney,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,2019-04-17,https://i.scdn.co/image/ab67616d0000b273fb4c46e199dfc54f5400ba69,1,4,176240,https://p.scdn.co/mp3-preview/4bc96b41c676b9d89537264a3679d21f2d49bafd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,merseybeat,rock-and-roll,rockabilly",0.625,0.435,1.0,-12.653,0.0,0.0667,0.591,0.0,0.113,0.744,88.879,4.0,,Musicor Records,"C 1984 Gusto Records Inc., P 1984 Gusto Records Inc.",424 +425,spotify:track:2KP2670rcQA5XRZyQcVhDK,Everybody Dance (feat. Nile Rodgers),"spotify:artist:4Wjf8diP59VmPG7fi4y724, spotify:artist:4bU685oayr3KvaP4qdoYdu, spotify:artist:3yDIp0kaq9EFKe07X1X2rz","Cedric Gervais, Franklin, Nile Rodgers",spotify:album:4vcuBBBPLCegTTJWF2p2hb,Everybody Dance (feat. Nile Rodgers),"spotify:artist:4Wjf8diP59VmPG7fi4y724, spotify:artist:4bU685oayr3KvaP4qdoYdu, spotify:artist:3yDIp0kaq9EFKe07X1X2rz","Cedric Gervais, Franklin, Nile Rodgers",2020-11-20,https://i.scdn.co/image/ab67616d0000b27354659859cecbdeb33ede1c6c,1,1,168289,https://p.scdn.co/mp3-preview/b2a96db5ed68dace79d6c291a662cfa123528339?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UK8E21904101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch house,edm,electro house,pop dance,progressive electro house,disco",0.628,0.928,0.0,-3.698,0.0,0.0621,0.00862,0.713,0.0651,0.68,123.953,4.0,,DGTLBEATS,"C 2020 DGTLBEATS, P 2020 DGTLBEATS",425 +426,spotify:track:1Awjfqkj1OIXbY2GzPTvml,Mountain,spotify:artist:31Qm8tlnFdAbGPok6Rfhz3,Chocolate Starfish,spotify:album:7xbTUgTUiKi49xBKZ0ukJE,6 Pack Of Hits,spotify:artist:31Qm8tlnFdAbGPok6Rfhz3,Chocolate Starfish,2013-05-14,https://i.scdn.co/image/ab67616d0000b27388a2e86e4744bfaa39b77fb2,1,2,297133,https://p.scdn.co/mp3-preview/3bdad49fe958634d3d25c5ec76e2a40fc1ade016?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUV401105226,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.488,0.795,7.0,-6.356,1.0,0.0345,0.118,1.42e-05,0.632,0.685,151.201,4.0,,Independent,"C 2013 Chocolate Starfish, P 2013 Chocolate Starfish",426 +427,spotify:track:1bOJQnJsFW5LZOgGp4K2mb,If You Could Read My Mind,"spotify:artist:1cK2Abwkni7m51wJCSGllN, spotify:artist:6uGKydhYXrVOEXM6QbVzyH, spotify:artist:5hgxMFtaWAhh6LDHdVBZLB","Ultra Naté, Amber, Jocelyn Enriquez",spotify:album:3a5kW3sm7yn7HTXc5lXvCW,If You Could Read My Mind,"spotify:artist:1cK2Abwkni7m51wJCSGllN, spotify:artist:6uGKydhYXrVOEXM6QbVzyH, spotify:artist:5hgxMFtaWAhh6LDHdVBZLB","Ultra Naté, Amber, Jocelyn Enriquez",1998-07-16,https://i.scdn.co/image/ab67616d0000b2730cd60e9486d4a69ee9e56629,1,1,206773,https://p.scdn.co/mp3-preview/01db73ed66d5913f342909192c43a645c3f40103?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USTB10300876,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,garage house,vocal house,dutch pop,vocal house,freestyle",0.609,0.88,3.0,-7.407,1.0,0.0742,0.0405,0.0,0.284,0.389,126.981,4.0,,"Tommy Boy Music, LLC","C 1998 Tommy Boy Music, LLC, P 1998 Tommy Boy Music, LLC",427 +428,spotify:track:623FjLu3438Wk5urTsN4sS,One Last Breath,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,spotify:album:72wsQyk1EzDuXa7bRlHv1x,Weathered,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,2001-01-01,https://i.scdn.co/image/ab67616d0000b2731243bd32b70de6cf1c60fe79,1,5,238240,https://p.scdn.co/mp3-preview/20dd8d3794a1715078dd9c7767ad8aa53f9c8260?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU30107505,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.39,0.702,2.0,-5.825,1.0,0.036,0.00883,0.00207,0.342,0.195,125.686,4.0,,Universal Music Group,"C © 2001 The Bicycle Music Company, P ℗ 2001 The Bicycle Music Company",428 +429,spotify:track:1NlJv9YBuvgbb9pO51vqOY,To Cut a Long Story Short - 2010 Remaster,spotify:artist:2urZrEdsq72kx0UzfYN8Yv,Spandau Ballet,spotify:album:6SeOw1xyjKM6CbEstaGzqd,Journeys to Glory (Special Edition),spotify:artist:2urZrEdsq72kx0UzfYN8Yv,Spandau Ballet,1981-02-27,https://i.scdn.co/image/ab67616d0000b273442c32e5a9b3c30abe858d89,1,1,199693,https://p.scdn.co/mp3-preview/c03b92da4bdfe11519de30111cec8d8c73fa3869?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAYK1000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,sophisti-pop,synthpop",0.577,0.893,2.0,-5.113,1.0,0.087,0.147,0.802,0.0864,0.86,142.424,4.0,,Parlophone UK,"C © 2010 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2010 Parlophone Records Ltd, a Warner Music Group Company",429 +430,spotify:track:2PIOlWMIzxx3PsacCQ6Jj1,Love Is in the Air - Ballroom Mix,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,spotify:album:5Jgq70OfiSQTsNB0h6Mc4b,Strictly Ballroom,spotify:artist:7DKeGG5kGOYH4fT8xD4jqi,Strictly Ballroom (Original Soundtrack),1992-09-24,https://i.scdn.co/image/ab67616d0000b273467b5c612cdd086ed596ffd2,1,1,253293,https://p.scdn.co/mp3-preview/d665edf496eacc0a3dfc489680f4e8db0a455cfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP09200003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,classic uk pop",0.72,0.827,0.0,-9.534,1.0,0.0446,0.0185,0.0013,0.0899,0.735,120.958,4.0,,Columbia,P (P) 1992 J. Albert & Son Pty. Ltd.,430 +431,spotify:track:54OR1VDpfkBuOY5zZjhZAY,YMCA - Original Version 1978,spotify:artist:0dCKce6tJJdHvlWnDMwzPW,Village People,spotify:album:3I3YSq7ArvlwK3l49pq4oE,YMCA,spotify:artist:0dCKce6tJJdHvlWnDMwzPW,Village People,1978-01-01,https://i.scdn.co/image/ab67616d0000b273dbf223dbb6abdffa642eb287,1,1,286800,https://p.scdn.co/mp3-preview/142396c7030fbc1c499e193a8f383d78725b430b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,FR6V80878846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,new wave pop,soft rock",0.723,0.969,6.0,-4.516,1.0,0.142,0.0643,0.0,0.115,0.728,126.653,4.0,,Scorpio Music,"C 1978 Can't Stop Productions NYC, P Can't Stop Productions NYC 1978",431 +432,spotify:track:3vsRxFJl2Q1sw4sLH9Okzs,Gone Away,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:1VjxGLvRuhTF6ebqWXYOrO,Ixnay On The Hombre,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,1997-02-04,https://i.scdn.co/image/ab67616d0000b27342221bd027b8a0fd1791662b,1,7,268608,https://p.scdn.co/mp3-preview/d764706a543bbb30c826a27a592d36991fe26af4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLB390400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.445,0.951,3.0,-4.008,1.0,0.0744,0.00851,0.00801,0.0825,0.316,111.273,4.0,,Epitaph,"C 1997 Epitaph Europe, P 1997 Epitaph Europe",432 +433,spotify:track:2zSdgx103Hs0inwa6VlhEC,I Think I Love You,"spotify:artist:0isDnZYMWbwDz7hzw0XRjt, spotify:artist:7u1mqP3ykglpCB2c1p1p5I","David Cassidy, The Partridge Family",spotify:album:5IktHIcBQBjI2Bh6zRx7HX,Could It Be Forever...The Greatest Hits,spotify:artist:0isDnZYMWbwDz7hzw0XRjt,David Cassidy,2006-11-13,https://i.scdn.co/image/ab67616d0000b273f75087b58c47731bda929023,1,4,171226,https://p.scdn.co/mp3-preview/1baa1fda4c47f9778d2fa0ce359f0ee9d51863d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USAR19901026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,bubblegum pop",0.376,0.492,3.0,-14.129,1.0,0.0441,0.38,0.0,0.244,0.796,203.578,4.0,,Arista,P (P) 2006 SONY BMG MUSIC ENTERTAINMENT (UK) Limited.,433 +434,spotify:track:11fNLqDB47gMKj7BHhR2Qr,Wake up Little Susie,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,spotify:album:4lmdDGcU5u1xk3GCcVJSYT,The Very Best of The Everly Brothers,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,1964-08-01,https://i.scdn.co/image/ab67616d0000b273e9a522d43a304d4d433ff251,1,3,123520,https://p.scdn.co/mp3-preview/dad94ca5005c094a9b81d005374044f67ebda6d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USWB19903263,spotify:user:bradnumber1,2023-02-14T22:20:21Z,"adult standards,folk rock,mellow gold,rock-and-roll,rockabilly,sunshine pop",0.709,0.62,2.0,-9.382,1.0,0.034,0.318,0.0,0.0426,0.936,93.723,4.0,,Rhino/Warner Records,"C © 2008 Rhino Entertainment Company, a Warner Music Group Company., P ℗ 2008 Warner Records Inc. Manufactured and marketed by Rhino Entertainment Company. All rights reserved.",434 +435,spotify:track:1Qrdlkgg9I4J7r3P4kZNwr,Missing You,spotify:artist:2TPyCsRoh2tjeZLTQ2ojlj,John Waite,spotify:album:65Uo74eW8L3zXUxSOlSm6H,No Brakes,spotify:artist:2TPyCsRoh2tjeZLTQ2ojlj,John Waite,1984-01-01,https://i.scdn.co/image/ab67616d0000b273f7730f46da78d52e66bd6f65,1,2,269760,https://p.scdn.co/mp3-preview/7f98fac8de52abb07b4996c4058299c9d5219deb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USEM38800236,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,mellow gold,new romantic,new wave,new wave pop,soft rock",0.552,0.552,11.0,-9.736,0.0,0.0364,0.052,0.0,0.046,0.593,208.571,4.0,,Capitol Records,"C © 1984 Capitol Records, LLC, P ℗ 1984 Capitol Records, LLC",435 +436,spotify:track:5u0YB9bpmgEPS2bPhwfRFV,arms,spotify:artist:7H55rcKCfwqkyDFH9wpKM6,Christina Perri,spotify:album:3XNK8vPk3O1rjhDZyOMJ6n,lovestrong.,spotify:artist:7H55rcKCfwqkyDFH9wpKM6,Christina Perri,2011-05-10,https://i.scdn.co/image/ab67616d0000b27326a2f5224465a369f8abbf88,1,2,261213,https://p.scdn.co/mp3-preview/ddd237a50878608d4ad57c1b408be1beabc329fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAT21100375,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.463,0.755,4.0,-7.244,1.0,0.0634,0.11,4.89e-06,0.103,0.252,145.319,4.0,,Atlantic Records,"C © 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",436 +437,spotify:track:0eRs6SGN3HsETmKTm1h4Xs,Love Will Find A Way,spotify:artist:3Y5abCLsMxsOLaZ8rYusSR,Pablo Cruise,spotify:album:4HgKVZnOQKslna00lwVNoe,It's Good to Be Live,spotify:artist:3Y5abCLsMxsOLaZ8rYusSR,Pablo Cruise,2011-11-08,https://i.scdn.co/image/ab67616d0000b273b030c50ca64328e2196a16e0,1,8,374360,https://p.scdn.co/mp3-preview/d0767a3dbe75354d3414ccfe2bee89ef22234fba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USXMM1100031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"soft rock,yacht rock",0.653,0.837,11.0,-5.424,1.0,0.0666,0.103,0.00211,0.798,0.632,124.678,4.0,,G&K Entertainment,C (C) 2011 G&K Entertainment,437 +438,spotify:track:1xkEYEogekBKpwHPnWIDcW,Volare,spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,spotify:album:3ctSJWU9smZ8GlLj45inBY,Home in Your Arms,spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,2016-10-31,https://i.scdn.co/image/ab67616d0000b2736c8a79c3a960b645deeb2980,1,6,147546,https://p.scdn.co/mp3-preview/8c604f4c92fd1436731901e06339cf1513ee9e76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM4TX1613949,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,merseybeat,rock-and-roll",0.506,0.661,9.0,-6.377,0.0,0.0333,0.564,0.0,0.0773,0.863,129.615,4.0,,Newport Music,C (C) 2016 Newport Music,438 +439,spotify:track:2u2udGmop1z67EPpr91km7,Man in the Mirror,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:3OBhnTLrvkoEEETjFA3Qfk,"HIStory - PAST, PRESENT AND FUTURE - BOOK I",spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1995-06-16,https://i.scdn.co/image/ab67616d0000b273d0593178c6c2594693ee34b7,1,8,319306,https://p.scdn.co/mp3-preview/92b8855a93a08a851004df5477f6fe5ab17411a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM18700004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.794,0.798,8.0,-5.639,1.0,0.0366,0.429,1.16e-05,0.118,0.265,100.338,4.0,,Epic,"P (P) 1979, 1982, 1987, 1988, 1991, 1995 MJJ Productions Inc.",439 +440,spotify:track:4xSrLrL3N7dDenrJ4cplzw,Tennessee Bird Walk,"spotify:artist:5euFVjMHgVfUUaaFD2zYl1, spotify:artist:4iukgoDYPYloiRAXegzb1I","Jack Blanchard & Misty Morgan, Misty Morgen",spotify:album:5QDSoqrJ5ME8KQ36mpGUYw,Life And Death (And Almost Everything Else).,spotify:artist:5euFVjMHgVfUUaaFD2zYl1,Jack Blanchard & Misty Morgan,2005-01-01,https://i.scdn.co/image/ab67616d0000b27321903a3e0919c973cb3c9f32,1,1,171800,https://p.scdn.co/mp3-preview/79f671c053fbb1d626c6066756b4beabb77a8fc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUPH10700191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.711,0.819,0.0,-7.166,1.0,0.0335,0.092,5.3e-05,0.0699,0.88,130.224,4.0,,The Omni Recording Corporation,C (C) 2007 The Omni Recording Corporation,440 +441,spotify:track:0odIT9B9BvOCnXfS0e4lB5,Bette Davis Eyes,spotify:artist:5PN2aHIvLEM98XIorsPMhE,Kim Carnes,spotify:album:3iMwQk5yE0UDDKbLCdcxZA,Mistaken Identity,spotify:artist:5PN2aHIvLEM98XIorsPMhE,Kim Carnes,1981-01-01,https://i.scdn.co/image/ab67616d0000b2738ccc17f29764d812062204a8,1,1,228000,https://p.scdn.co/mp3-preview/a4f997fc2efeacdc204502993a620ba8015d785b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USCA28100081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock",0.675,0.649,5.0,-10.271,1.0,0.0319,0.0204,0.0,0.0959,0.596,116.62,4.0,,Capitol Records,"C © 1981 Capitol Records Inc., P ℗ 1981 Capitol Records Inc.",441 +442,spotify:track:0qrRc6Fv3CUUiTOjqxHmWP,Not Over,spotify:artist:6fXEqmGQEt6ONuqVmwrN46,Bag Raiders,spotify:album:1HPUrRUr6dg34UHoqUQx6a,Bag Raiders (Deluxe),spotify:artist:6fXEqmGQEt6ONuqVmwrN46,Bag Raiders,2011-01-01,https://i.scdn.co/image/ab67616d0000b273273d3dfbf1d03268805e53b6,1,7,239946,https://p.scdn.co/mp3-preview/324877bafe03d0ecd1363fe1632088cfc0401874?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71001521,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,indietronica,nu disco",0.598,0.94,9.0,-3.352,0.0,0.0321,0.00245,2.38e-05,0.19,0.73,114.024,4.0,,Modular,"C © 2011 Modular Recordings, P ℗ 2011 Modular Recordings",442 +443,spotify:track:6qyiEronCcndBsvCQbWAEX,The Land of Make Believe,spotify:artist:5ZfzzHE7rxONfoksJsLXrX,Bucks Fizz,spotify:album:014iVuewM9Vd09Yew27dDv,Are You Ready?,spotify:artist:5ZfzzHE7rxONfoksJsLXrX,Bucks Fizz,1982,https://i.scdn.co/image/ab67616d0000b273ebaa5a16fbc1289600293a78,1,10,228440,https://p.scdn.co/mp3-preview/7dd0493c35101835c69db1a4d162d5d2d3e943d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBARL8100036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.562,0.687,0.0,-12.745,1.0,0.0727,0.0969,0.00215,0.151,0.813,170.386,4.0,,Sony BMG Music UK,P (P) 2004 BMG UK & Ireland Ltd.,443 +444,spotify:track:7hBkTfYpTqsa7DkWhin2Sb,I Don't Like It,spotify:artist:1JAZUvzwY3L4SjbPrUPPJE,Pauline Pantsdown,spotify:album:0g2BZaclrC0iZtEGBvJNPA,I Don't Like It,spotify:artist:1JAZUvzwY3L4SjbPrUPPJE,Pauline Pantsdown,1998-08-01,https://i.scdn.co/image/ab67616d0000b273fc08d04c81a52f86a6afa6d6,1,1,202493,https://p.scdn.co/mp3-preview/3c5aee273ad23fb2572903ab71dafad6a761e949?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,TCAAS1002144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,parody,0.945,0.824,1.0,-7.182,1.0,0.241,0.0591,0.000753,0.129,0.704,125.241,4.0,,Caring Potato,"C 1998 Caring Potato, P 1998 Caring Potato",444 +445,spotify:track:3x6wVKXfCm85Pw7gYo0rqq,That's Amore,"spotify:artist:49e4v89VmlDcFCMyDv9wQ9, spotify:artist:0liyb0PPDyu3pfG7WZtsxO","Dean Martin, Dick Stabile And His Orchestra",spotify:album:31Mwr76okDPhxDxK6OaL1N,The Capitol Years,spotify:artist:49e4v89VmlDcFCMyDv9wQ9,Dean Martin,1989-01-01,https://i.scdn.co/image/ab67616d0000b27375120bfb3b80e157d4615518,1,1,188266,https://p.scdn.co/mp3-preview/66e2d2f7d12015daa9ac6f4c51bc4204c044bf08?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USCA25300027,spotify:user:bradnumber1,2024-01-02T03:28:41Z,"adult standards,easy listening,lounge,vocal jazz",0.407,0.17,10.0,-13.409,1.0,0.0341,0.76,0.0,0.0737,0.577,124.047,4.0,,Capitol Records,"C © 1989 Capitol Records Inc., P This Compilation ℗ 1989 Capitol Records Inc.",445 +446,spotify:track:2LG0s0LxEoAvqXpDm9SDTx,Rome Wasn't Built in a Day,spotify:artist:6bWxFw65IEJzBYjx3SxUXd,Morcheeba,spotify:album:2pMV9IcGdjDqM8TLSEIRIJ,Rome Wasn't Built in a Day,spotify:artist:6bWxFw65IEJzBYjx3SxUXd,Morcheeba,2000,https://i.scdn.co/image/ab67616d0000b273018b26b0976aa697700b8d99,1,1,214719,https://p.scdn.co/mp3-preview/6000e01453c429e2a7779958885d1cdc0f6c04fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAHS0004193,spotify:user:bradnumber1,2021-11-20T11:08:40Z,"downtempo,electronica,trip hop",0.61,0.807,5.0,-4.997,1.0,0.0305,0.0769,2.64e-06,0.376,0.689,112.031,4.0,,Atlantic Records UK,"C © 2000 China Records Ltd, P ℗ 2000 China Records Ltd",446 +447,spotify:track:0xImO2GMlFLYSg4eDFcz1p,Our Day Will Come - Single Version,spotify:artist:7y0ngZzIllkP8ZOqgTKQFc,Ruby And The Romantics,spotify:album:0Bjfl9cg1g8j3Mx72g0Na5,Our Day Will Come: The Very Best Of Ruby And The Romantics,spotify:artist:7y0ngZzIllkP8ZOqgTKQFc,Ruby And The Romantics,2002-03-07,https://i.scdn.co/image/ab67616d0000b27338fbd750f418e0d1e1b076a8,1,4,150586,https://p.scdn.co/mp3-preview/7cd660e0cb1207ee929970afbf34721c125d3030?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16219974,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rhythm and blues,0.466,0.455,5.0,-9.531,0.0,0.0269,0.756,1.45e-06,0.148,0.644,93.123,3.0,,Universal Music Group,"C © 2002 UMG Recordings, Inc., P A Geffen Records Release; ℗ 2002 UMG Recordings, Inc.",447 +448,spotify:track:2mc3KhEpFAh8saVFVNb1hC,Don't Stop Movin',spotify:artist:0HNGrIbq1ZNO2mTp3tMW4L,S Club,spotify:album:1JXF1JKw7WPhqvBO8t8oPl,Sunshine,spotify:artist:0HNGrIbq1ZNO2mTp3tMW4L,S Club,2001-01-01,https://i.scdn.co/image/ab67616d0000b2739b9307a5f9457fea11799613,1,1,235626,https://p.scdn.co/mp3-preview/27a965d70596a7c7b3e404a39a7951eafa0358aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCVL0100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,dance pop,europop,talent show",0.828,0.676,7.0,-6.132,1.0,0.032,0.0358,0.0,0.0513,0.901,117.041,4.0,,Universal Music Group,"C © 2001 Polydor Ltd. (UK), P ℗ 2001 S Club Ltd.",448 +449,spotify:track:3aXuXjIXG5B2jtlsWKLd1l,Everybody's Got To Learn Sometime,spotify:artist:69zRcOlNdSZ17VfIZe4VU3,The Korgis,spotify:album:4aO46CyOYUGvNDG46rDdtj,Don't Look Back: The Very Best of The Korgis,spotify:artist:69zRcOlNdSZ17VfIZe4VU3,The Korgis,2003-08-05,https://i.scdn.co/image/ab67616d0000b273bdf5cfe94ebc4b4f16e858ff,1,11,258665,https://p.scdn.co/mp3-preview/4713917b455948c0bcb5a432a6df16a5322e0f04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE8000325,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.369,0.238,1.0,-14.994,0.0,0.0269,0.554,0.0425,0.125,0.0578,73.899,4.0,,Castle Communications,"C © 2003 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2003 Sanctuary Records Group Ltd., a BMG Company",449 +450,spotify:track:1f44RQK9175FmceEJmDMQq,Do The Bird,spotify:artist:2NtGOVTuHBMDfR5PMNPBGT,Dee Dee Sharp,spotify:album:2nj3xRuvLlSDlEFPy5kZ6k,It's Mashed Potato Time/Do The Bird,spotify:artist:2NtGOVTuHBMDfR5PMNPBGT,Dee Dee Sharp,1962-01-01,https://i.scdn.co/image/ab67616d0000b273898ebc3172e6f22606ee58d1,1,19,132880,https://p.scdn.co/mp3-preview/905d33b0488666740cc600519de9a13df24699c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176340310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,doo-wop,motown,philly soul,rhythm and blues,southern soul",0.649,0.688,2.0,-5.316,1.0,0.0449,0.188,0.0,0.0471,0.945,79.157,4.0,,ABKCO (US),"C © 2010 ABKCO Music & Records, Inc., P ℗ 2010 ABKCO Music & Records, Inc.",450 +451,spotify:track:6q2TZbqEnDh5elzJlQEWwv,A Song For You,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,spotify:album:1nA6Exnq2mWD8678q3E4Ov,A Song For You,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,1972,https://i.scdn.co/image/ab67616d0000b27375fc0e961ba2028df4787966,1,1,282026,https://p.scdn.co/mp3-preview/3ab09183dd205e100d18abdbc6a90011e667aaf6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAM17200542,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock",0.439,0.205,5.0,-11.16,1.0,0.0342,0.826,4.43e-05,0.105,0.149,127.905,4.0,,A&M,"C © 1972 UMG Recordings, Inc., P ℗ 1972 UMG Recordings, Inc.",451 +452,spotify:track:1cmjxqobVTrgAiJ0btAleN,A Whiter Shade of Pale - Original Single Version,spotify:artist:0GbqW5TJr7n4is453VOY4C,Procol Harum,spotify:album:16cvzyvunqoYiyr6j34ICO,A Whiter Shade of Pale,spotify:artist:0GbqW5TJr7n4is453VOY4C,Procol Harum,1967-05-12,https://i.scdn.co/image/ab67616d0000b2734721b751021dc90a24c65ccf,1,1,248946,https://p.scdn.co/mp3-preview/591373b10611d4c2cdf98a1cb2f8db6cc6bb18e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GBBWX0701000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,blues rock,british invasion,classic rock,country rock,folk rock,mellow gold,progressive rock,psychedelic rock,singer-songwriter,symphonic rock",0.249,0.66,0.0,-6.905,1.0,0.0342,0.504,0.0026,0.0891,0.435,149.813,4.0,,Fly Records,"C (C) 2017 Bucks Records Limited, P (P) 2017 Bucks Records Limited",452 +453,spotify:track:4OoYfejHABzYe2mG8p5s8b,Higher (feat. iann dior),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:6ASri4ePR7RlsvIQgWPJpS","Clean Bandit, iann dior",spotify:album:78MU91n8U1OTN0Co9OgQHw,Higher (feat. iann dior),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:6ASri4ePR7RlsvIQgWPJpS","Clean Bandit, iann dior",2021-01-29,https://i.scdn.co/image/ab67616d0000b2734628636f03999328ba098839,1,1,203953,https://p.scdn.co/mp3-preview/00bfc5aa665bb7c97fea3d7bbab921b67f8720fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAHS2001165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,melodic rap",0.716,0.736,1.0,-5.18,0.0,0.0363,0.336,1.4e-05,0.137,0.542,104.018,4.0,,Atlantic Records UK,"C An Atlantic Records UK release, © 2021 Warner Music UK Limited., P An Atlantic Records UK release., ℗ 2021 Warner Music UK Limited.",453 +454,spotify:track:4JHIOQE4nAtUSfGuzDLjYa,Send My Love (To Your New Lover),spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:1vlKTObVibnwWkJXWXIcH3,Send My Love (To Your New Lover),spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2016-05-16,https://i.scdn.co/image/ab67616d0000b2734942f98715376ba6648dd082,1,1,223078,https://p.scdn.co/mp3-preview/454f693eeb9b383539f5d26ecdc7cd44c6d20292?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1500215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.688,0.532,6.0,-8.361,0.0,0.0875,0.0356,3.08e-06,0.172,0.565,164.068,4.0,,XL Recordings,"C 2016 XL Recordings Limited., P 2016 XL Recordings Limited.",454 +455,spotify:track:0385HqYimoTQaHZP17KwG1,We Found Love (feat. Rihanna),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Calvin Harris, Rihanna",spotify:album:7w19PFbxAjwZ7UVNp9z0uT,18 Months,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2012-10-29,https://i.scdn.co/image/ab67616d0000b273dcef905cb144d4867119850b,1,4,215520,https://p.scdn.co/mp3-preview/3067667dfd88c43dbe49d977a03d7158cd02a06b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1201387,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,barbadian pop,pop,urban contemporary",0.738,0.776,1.0,-4.808,1.0,0.0392,0.0234,0.0018,0.0775,0.608,127.984,4.0,,Columbia,P (P) 2012 Sony Music Entertainment UK Limited,455 +456,spotify:track:7DjHbZFUdDtuklH6nfXoaL,What's Love Got To Do With It,"spotify:artist:2B4ZHz4QDWJTXPFPgO5peE, spotify:artist:266SmBZTt4zRzaKEANWbfQ","Warren G, Adina Howard",spotify:album:59JiwsQ9p5dJWWcBEGB5Np,Take A Look Over Your Shoulder (Reality),spotify:artist:2B4ZHz4QDWJTXPFPgO5peE,Warren G,1997-03-25,https://i.scdn.co/image/ab67616d0000b273f785821a6fee83079b99062b,1,16,255040,https://p.scdn.co/mp3-preview/b37582e54078aa5bc72652773affb461591ea322?cid=9950ac751e34487dbbe027c4fd7f8e99,True,46,USRL19700026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hardcore hip hop,hip hop,west coast rap,contemporary r&b,r&b",0.887,0.547,1.0,-9.474,1.0,0.264,0.205,0.0,0.176,0.592,96.847,4.0,,RAL (Rush Associated Label),"C © 1997 Mercury Records Limited, P ℗ 1997 UMG Recordings, Inc.",456 +457,spotify:track:5CKHhg31HcYYhwUeeGqvhq,I Wish I Knew How It Would Feel to Be Free,spotify:artist:7G1GBhoKtEPnP86X2PvEYO,Nina Simone,spotify:album:2miVfa78vOd0o8Vbsgd7g3,Silk & Soul (Expanded Edition),spotify:artist:7G1GBhoKtEPnP86X2PvEYO,Nina Simone,1967,https://i.scdn.co/image/ab67616d0000b2730cf2e3d1e85c5bd6d7bedee0,1,6,188613,https://p.scdn.co/mp3-preview/b6cb6b1dfca83eee8f7e852143b8fe6084027164?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRC10503463,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"jazz blues,neo soul,soul,soul jazz,torch song,vocal jazz",0.687,0.51,10.0,-8.501,1.0,0.076,0.745,0.0,0.117,0.666,122.253,4.0,,RCA/Legacy,P Originally Recorded 1967 & 1969. All rights reserved by Sony Music Entertainment; Compilation (P) 2006 Sony Music Entertainment,457 +458,spotify:track:4FSm0Ca6Hzd7Vx7TpSfcSy,Arabella,spotify:artist:7Ln80lUS6He07XvHI8qqHH,Arctic Monkeys,spotify:album:6645HGh7ZOZSUTpqW9iYLR,AM,spotify:artist:7Ln80lUS6He07XvHI8qqHH,Arctic Monkeys,2013-01-01,https://i.scdn.co/image/ab67616d0000b2730acf7f2eefe5bd36efbc26b4,1,4,207356,https://p.scdn.co/mp3-preview/974bb8b08005bbc3c38a3b1389debf8e51fa1f20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEL1300365,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,permanent wave,rock,sheffield indie",0.579,0.558,2.0,-6.986,1.0,0.0895,0.0202,1.26e-06,0.212,0.506,179.949,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2013 Domino Recording Company Ltd, P ℗ 2013 Domino Recording Company Ltd, under exclusive licence to EMI Recorded Music Australia Pty Ltd",458 +459,spotify:track:0DIcd7djiVGT4RYbTIlsoJ,Wasn't Expecting That,spotify:artist:1jhdZdzOd4TJLAHqQdkUND,Jamie Lawson,spotify:album:0xgnGJbAUWGc89cevj0NUh,Jamie Lawson,spotify:artist:1jhdZdzOd4TJLAHqQdkUND,Jamie Lawson,2015-10-09,https://i.scdn.co/image/ab67616d0000b273c981a537f52d545aa8658e94,1,1,201295,https://p.scdn.co/mp3-preview/b88057a968c652439c5f83c10079f7af1992cb88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBAHS1500140,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"devon indie,indie anthem-folk",0.683,0.367,6.0,-7.865,1.0,0.0626,0.712,4.6e-06,0.105,0.339,91.006,4.0,,Gingerbread Man Records,"C © 2015 Gingerbread Man Records, an Atlantic Records UK / Warner Music Group Company, P ℗ 2015 Gingerbread Man Records, an Atlantic Records UK / Warner Music Group Company",459 +460,spotify:track:14Hj66f28iP94FpQp8i20J,In A Big Country,spotify:artist:1h8YIw9HLr6E8gdXVDRbVJ,Big Country,spotify:album:5zXljJAoxFJzdKytvGomea,The Crossing,spotify:artist:1h8YIw9HLr6E8gdXVDRbVJ,Big Country,1983-07-15,https://i.scdn.co/image/ab67616d0000b2733eaf9bb7860de8e393b06144,1,1,285200,https://p.scdn.co/mp3-preview/c901903325a90d8ffc91be8df18a563dbcac09f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088300765,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,scottish new wave,scottish rock",0.617,0.724,4.0,-9.067,1.0,0.0354,0.00253,0.00529,0.0594,0.827,126.378,4.0,,Universal Music Group,"C © 1996 Mercury Records Limited, P ℗ 1996 Mercury Records Limited",460 +461,spotify:track:11Hzn4toShJ4U57Jrj4H0y,Be Good Johnny,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,spotify:album:6GYIy1SuhPDrugCZ5yNeQy,The Best Of Men At Work: Contraband,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,1996-02-01,https://i.scdn.co/image/ab67616d0000b273d6a1f7a12629154fa274631f,1,11,213573,https://p.scdn.co/mp3-preview/a0bb8a099ca5a4abaab70d25c948eaf7dd84efed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USSM18100059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,rock,soft rock",0.596,0.827,7.0,-6.037,1.0,0.0736,0.0788,0.00699,0.122,0.508,151.588,4.0,,Columbia,P (P) 1996 Sony Music Entertainment Inc.,461 +462,spotify:track:4yrM5BVyJzy5Ed4GPO6e8j,I Wanna Be Your Lover,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:6k7RVZ7bSL9ryReb8RLYRI,Prince,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1979-10-19,https://i.scdn.co/image/ab67616d0000b273039b95b846d039d78a2ca6a1,1,1,347666,https://p.scdn.co/mp3-preview/b30b1d3d4c6b6856d2b2f473b008990b90f47944?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USWB19903516,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.812,0.507,1.0,-8.825,0.0,0.0452,0.0399,0.0831,0.0671,0.729,114.832,4.0,,Warner Records,"C © 1979 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1979 NPG Records, Inc. under exclusive license to Warner Records Inc.",462 +463,spotify:track:27u7t9d7ZQoyjsCROHuZJ3,Tick Tock (feat. 24kGoldn),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:4ilhzwc5QbNIGlLQfLUZWP, spotify:artist:6fWVd57NKTalqvmjRd2t8Z","Clean Bandit, Mabel, 24kGoldn",spotify:album:3tuAs968COA2vxKjiLvmxr,Tick Tock (feat. 24kGoldn),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:4ilhzwc5QbNIGlLQfLUZWP, spotify:artist:6fWVd57NKTalqvmjRd2t8Z","Clean Bandit, Mabel, 24kGoldn",2020-08-21,https://i.scdn.co/image/ab67616d0000b2733ec9036a9f7289e924194bec,1,1,178373,https://p.scdn.co/mp3-preview/3b192e9c71335d01feafa82f2e28664f34c17a79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAHS2000775,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,cali rap,pop rap",0.779,0.705,0.0,-3.895,1.0,0.0344,0.369,7.91e-06,0.124,0.946,101.022,4.0,,Atlantic Records UK,"C An Atlantic Records UK release, © 2020 Warner Music UK Limited., P An Atlantic Records UK release., ℗ 2020 Warner Music UK Limited.",463 +464,spotify:track:36DztiNpSIH5ZHTwmqthHW,Only When I Sleep,spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,spotify:album:1z8ikMQ0VmMJDPmeiKY3o5,Talk on Corners,spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,1998-10-17,https://i.scdn.co/image/ab67616d0000b2736d00cb42d7c7dec2487157ec,1,1,261413,https://p.scdn.co/mp3-preview/0f9dcfdd751728634b5d0f76824f9d61da269824?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USAT29800216,spotify:user:bradnumber1,2022-01-13T01:21:29Z,"celtic rock,europop,pop rock",0.495,0.769,9.0,-4.581,1.0,0.0282,0.0753,0.0,0.284,0.442,145.031,4.0,,Atlantic Records,"C © 1998 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",464 +465,spotify:track:4ghQhwbA3zWM4SBnx2VVEd,"Freedom Come, Freedom Go",spotify:artist:4GpIeE34rBNFppvYsWle9c,The Fortunes,spotify:album:1vkEZx1N6nFb47LGiwfRgr,Storm In A Teacup,spotify:artist:4GpIeE34rBNFppvYsWle9c,The Fortunes,1972-01-01,https://i.scdn.co/image/ab67616d0000b273f9a73bbb7be68a7e33e2cde3,1,6,201973,https://p.scdn.co/mp3-preview/c21fb3166ac22645c2a19c8cfae7655c22957fa8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USCA29200235,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.802,0.7,10.0,-9.316,0.0,0.0789,0.134,0.00104,0.0649,0.974,83.617,4.0,,Capitol Records,"C © 1972 Capitol Records, LLC, P ℗ 1972 Capitol Records, LLC",465 +466,spotify:track:3VEFybccRTeWSZRkJxDuNR,Peaches,spotify:artist:1lZvg4fNAqHoj6I9N8naBM,The Presidents Of The United States Of America,spotify:album:5xxeAo8AVneH1OKO5vR604,The Presidents of The United States of America: Ten Year Super Bonus Special Anniversary Edition,spotify:artist:1lZvg4fNAqHoj6I9N8naBM,The Presidents Of The United States Of America,1995,https://i.scdn.co/image/ab67616d0000b273a82d10a00b1821ce323645c0,1,6,171693,https://p.scdn.co/mp3-preview/6c67c3506bdab4bb150e9869886e1fdf004ab553?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,US35G0400026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,pop rock",0.417,0.849,1.0,-4.199,0.0,0.0481,0.0146,0.000387,0.0673,0.594,94.267,4.0,,PUSA Music,"C (C) 2004 PUSA Music, P (P) 2004 PUSA Music",466 +467,spotify:track:2RTZ2xrCv92odRAHdpN1IB,Side To Side,"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","Ariana Grande, Nicki Minaj",spotify:album:2ZUhCoeloo6Kd6w0HK9En6,Dangerous Woman,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2016-05-20,https://i.scdn.co/image/ab67616d0000b273edb929261567beb0a6f5d096,1,5,226160,https://p.scdn.co/mp3-preview/b38a4dc53cf3f6018994ef6f6800499e10a0a9b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71603410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,hip pop,pop,queens hip hop,rap",0.645,0.725,6.0,-5.816,0.0,0.184,0.0415,0.0,0.165,0.67,159.169,4.0,,Universal Records,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",467 +468,spotify:track:2PJq8Fr5i2S0OkcmFsTC1P,Push Up,spotify:artist:0zg9mF9dX2knvdTKnL22T1,Freestylers,spotify:album:35FjWueXGCUxGAOIface7O,Raw As F**k,spotify:artist:0zg9mF9dX2knvdTKnL22T1,Freestylers,2004-03-26,https://i.scdn.co/image/ab67616d0000b2735f2f359ef02665ac26599ba4,1,6,279053,https://p.scdn.co/mp3-preview/833045a2117cc93f44ec5da902add224b19fc8e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,NLML61400043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,breakbeat",0.844,0.779,0.0,-5.375,1.0,0.0572,0.0067,0.0064,0.0268,0.963,134.973,4.0,,Altra Moda Music,"C 2004 Altra Moda Music, P 2004 Altra Moda Music",468 +469,spotify:track:1L5tZi0izXsi5Kk5OJf4W0,Rehab,spotify:artist:6Q192DXotxtaysaqNPy5yR,Amy Winehouse,spotify:album:097eYvf9NKjFnv4xA9s2oV,Back To Black,spotify:artist:6Q192DXotxtaysaqNPy5yR,Amy Winehouse,2006-10-27,https://i.scdn.co/image/ab67616d0000b2738f52f321140e4a76ea720c52,1,1,213760,https://p.scdn.co/mp3-preview/c1a264a37f40d74a960a796ea8eff68ee9c2717f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBUM70603730,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,neo soul",0.434,0.872,0.0,-2.974,1.0,0.0702,0.0473,1.83e-06,0.396,0.732,71.515,4.0,,Universal-Island Records Ltd.,"C © 2006 Universal Island Records Ltd. A Universal Music Company., P ℗ 2006 Universal Island Records Ltd. A Universal Music Company.",469 +470,spotify:track:52FlwUMMDnTK8TGkCag9Jd,Stop! In The Name Of Love,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,spotify:album:2maj3yWtoFnr0g7TlNao7A,More Hits By The Supremes,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,1965-07-23,https://i.scdn.co/image/ab67616d0000b273f784c1334630d76b06a0d1b3,1,4,172906,https://p.scdn.co/mp3-preview/9543938092507efb120fde2a6e3d15f265e3309b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USMO16500288,spotify:user:bradnumber1,2023-02-14T22:21:30Z,"adult standards,classic girl group,classic soul,disco,motown,soul",0.612,0.444,0.0,-12.752,1.0,0.0293,0.531,0.0,0.126,0.503,114.961,4.0,,Motown,"C © 2004 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2004 Motown Records, a Division of UMG Recordings, Inc.",470 +471,spotify:track:1gpiDC5mM82mU87vDQGKhr,When You Say You Love Me,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:0vJhgag3YAnGjhQelH5LqM,When You Say You Love Me,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,2004-04-09,https://i.scdn.co/image/ab67616d0000b273538763bd3a300607b0a1f761,1,1,242986,https://p.scdn.co/mp3-preview/5ff8573fff25056f74637e7bf50377880ff70ff5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUSM00400026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,boy band",0.645,0.702,9.0,-5.003,1.0,0.0336,0.259,0.0,0.0402,0.89,128.044,4.0,,Columbia,P (P) 2004 Sony Music Entertainment (Australia) Limited,471 +472,spotify:track:5SWFrvyXvVyQwuXN2ifqdX,Wouldn't Change a Thing,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:7FfyAlMb6eoZbUTZ7V2tBG,Kylie Greatest Hits,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2006-08-05,https://i.scdn.co/image/ab67616d0000b2730dd530f4c8e2424f3d31679a,1,9,194826,https://p.scdn.co/mp3-preview/9d13195b70732003805c0664cceab6736ed7ed19?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,GBAHK0200210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.672,0.937,10.0,-4.913,1.0,0.0513,0.104,0.158,0.0522,0.844,110.167,4.0,,WM Australia,"C © 1997 Mushroom Records, P ℗ 1997 Mushroom Records",472 +473,spotify:track:48d3pHjOvfhKraYZVZ11rH,Baby Makes Her Blue Jeans Talk,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,spotify:album:4z6lzPnxVfkCibGIbPuIuu,Timeless,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,2015-04-17,https://i.scdn.co/image/ab67616d0000b273eff2b78ab68ae2e8bd8655b3,1,38,236656,https://p.scdn.co/mp3-preview/40096f7e8d4e3ac96bc33d5adcdf82a3a4dd4f11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,NLF058290004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,mellow gold,soft rock",0.787,0.638,7.0,-10.26,1.0,0.0314,0.0576,4.38e-05,0.0515,0.923,120.074,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",473 +474,spotify:track:2BOqDYLOJBiMOXShCV1neZ,Dancing On My Own,spotify:artist:6ydoSd3N2mwgwBHtF6K7eX,Calum Scott,spotify:album:6Vip5A5NmEazvKuxj6GLYf,Only Human (Deluxe),spotify:artist:6ydoSd3N2mwgwBHtF6K7eX,Calum Scott,2018-03-09,https://i.scdn.co/image/ab67616d0000b273f2d671c22b70e01b78a618a8,1,7,260285,https://p.scdn.co/mp3-preview/57dcf5872dc4e4a37f7a8761f09ae865728048cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,UK6KW1500205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.681,0.174,1.0,-8.745,1.0,0.0315,0.837,3.35e-05,0.0983,0.231,112.672,4.0,,Capitol Records (US1A),"C © 2018 Capitol Records, P ℗ 2018 Capitol Records",474 +475,spotify:track:179SfVFJ0ZN41toTxnpgRD,The Glamorous Life,spotify:artist:6OQrOpxSIfPai3cFaN4v4P,Sheila E.,spotify:album:2fv3CMkuVgYRtQVnhv1rQW,The Glamorous Life,spotify:artist:6OQrOpxSIfPai3cFaN4v4P,Sheila E.,1984,https://i.scdn.co/image/ab67616d0000b273a1d3d9b674a0955ae6b66233,1,6,543560,https://p.scdn.co/mp3-preview/5575847f260fd42ddd69e7741f7149c20d494a2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB19903240,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,freestyle,funk,minneapolis sound,new jack swing,quiet storm,rock drums,urban contemporary",0.759,0.675,3.0,-14.366,0.0,0.0422,0.0261,0.0341,0.431,0.866,127.522,4.0,,Rhino/Warner Records,"C © 2004 Warner Records Inc. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Warner Records Inc. Manufactured & Marketed by Warner Strategic Marketing",475 +476,spotify:track:0brOu1fSXgLdLOYusEGuZ5,Bootie Call,spotify:artist:5TDVKqW9uhqGjwwwKGuma4,All Saints,spotify:album:73aw7T2ZpoDvcPe2uSlWxF,All Saints,spotify:artist:5TDVKqW9uhqGjwwwKGuma4,All Saints,1997,https://i.scdn.co/image/ab67616d0000b2734245f996f39eb4e9b2eefef8,1,2,215533,https://p.scdn.co/mp3-preview/6d61ccfb0f4bbc7bf33048a618de901470850891?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBAAP9700143,spotify:user:bradnumber1,2022-09-01T07:30:09Z,"dance pop,europop,girl group,new wave pop",0.742,0.516,5.0,-10.356,0.0,0.0474,0.595,0.00142,0.151,0.689,93.008,4.0,,London Records,"C 1998 Warner Music UK Limited, © 1998 Warner Music UK Limited, P 1998 Warner Music UK Limited, ℗ 1998 Warner Music UK Limited",476 +477,spotify:track:0MjT9xQqJrQlNrkWKZgFbQ,I'm Alright,spotify:artist:3ltFy7g6KKQPPttsdOMlq3,Jo Dee Messina,spotify:album:4UuS4hlOMP5akz21glTQCL,I'm Alright,spotify:artist:3ltFy7g6KKQPPttsdOMlq3,Jo Dee Messina,1998-03-17,https://i.scdn.co/image/ab67616d0000b273e6781c9c7dd274d9d58abd94,1,1,199040,https://p.scdn.co/mp3-preview/47a9c1f242345e1cd9b9e4192ceb87f0da39a720?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USCRB0101075,spotify:user:bradnumber1,2024-01-30T13:12:32Z,"country,country dawn,country road",0.676,0.733,0.0,-7.745,1.0,0.0294,0.191,0.0,0.192,0.591,98.234,3.0,,Curb Records,"C 1998 Curb Records, Inc., P 1998 Curb Records, Inc.",477 +478,spotify:track:4iQZi2sMZlbTpcUlo5YGBf,Midnight Blue,spotify:artist:7CnmC3gRgLev4I609BrSxj,Lou Gramm,spotify:album:6fR5edAXR1JVbrN5F6R68D,Ready Or Not,spotify:artist:7CnmC3gRgLev4I609BrSxj,Lou Gramm,1987-03-03,https://i.scdn.co/image/ab67616d0000b273ed1fcf783a8dcad986a64d8d,1,3,234693,https://p.scdn.co/mp3-preview/b1392fd6b153adf0e165076e32d1000d1e5c0e3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT20103592,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,mellow gold,soft rock",0.641,0.836,0.0,-7.155,1.0,0.0284,0.105,0.0335,0.0714,0.659,113.758,4.0,,Atlantic Records,"C © 1987 Atlantic Recording Corporation, P ℗ 1987 Atlantic Recording Corporation",478 +479,spotify:track:306LQdB2k5yBGsiIV2oeC3,When You Say Nothing At All,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,spotify:album:1aYzN2EJMOgjFzuiDEiuEP,Ronan,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,2000-01-01,https://i.scdn.co/image/ab67616d0000b273ec7ef4332ddb3f8313c91e53,1,6,258226,https://p.scdn.co/mp3-preview/d1ba92cd21629c1e088338b883e854578e843be3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW9900139,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.567,0.452,7.0,-10.647,1.0,0.023,0.166,1.2e-06,0.0869,0.352,86.969,4.0,,Universal Music Group,"C © 2000 Polydor Ltd. (UK), P ℗ 2000 Polydor Ltd. (UK)",479 +480,spotify:track:5fnA9mkIfScSqHIpeDyvck,Prayer in C - Robin Schulz Radio Edit,"spotify:artist:50OApTJurDusIo9dGTqSU4, spotify:artist:3t5xRXzsuZmMDkQzgOX35S","Lilly Wood and The Prick, Robin Schulz",spotify:album:6Ps0kbvAjuz75uK0uuZzWa,Prayer in C,"spotify:artist:50OApTJurDusIo9dGTqSU4, spotify:artist:3t5xRXzsuZmMDkQzgOX35S","Lilly Wood and The Prick, Robin Schulz",2014-05-16,https://i.scdn.co/image/ab67616d0000b2730538d5d965798a403219a470,1,1,189413,https://p.scdn.co/mp3-preview/decf568095bab0c78ac54ce42546580800251802?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,DEA621400286,spotify:user:bradnumber1,2022-11-16T13:20:36Z,"french indie pop,french rock,deep euro house,deep house,edm,german dance,pop dance,tropical house",0.763,0.875,9.0,-5.797,0.0,0.0262,0.024,5.41e-06,0.599,0.8,123.013,4.0,,WM Germany,"C © 2014 Choke Industry / Tonspiel under exclusive license to Warner Music Group Germany Holding GmbH, P ℗ 2014 Choke Industry / Tonspiel under exclusive license to Warner Music Group Germany Holding GmbH",480 +481,spotify:track:0Eg4qP0GJUirsZtP1pTV6R,Almost Unreal,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:1nQK4dpultSS3YeHfYrgEW,A Collection of Roxette Hits! Their 20 Greatest Songs!,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,2006-10-18,https://i.scdn.co/image/ab67616d0000b2739357cebbe215e97c287012ae,1,11,234813,https://p.scdn.co/mp3-preview/878d873a7bc1884c84b3484d1356c614263d3aaf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,SEAMA9301160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.542,0.613,4.0,-5.724,1.0,0.025,0.0808,0.0,0.126,0.267,92.035,4.0,,Parlophone Sweden,"C © 2006 Parlophone Music Sweden AB/Roxette Recordings under exclusive licence to Parlophone Music Sweden AB, a Warner Music Group Company., P ℗ 2006 Parlophone Music Sweden AB/Roxette Recordings under exclusive licence to Parlophone Music Sweden AB, a Warner Music Group Company.",481 +482,spotify:track:1ljijVo7rDHSuXIhydPpNl,Don't Sleep in the Subway,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,spotify:album:4pvPAWiVRHdnVXkOt49sKk,The Ultimate Petula Clark,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,2003-04-11,https://i.scdn.co/image/ab67616d0000b273d1cd25e9c9599e0735e60342,1,13,175373,https://p.scdn.co/mp3-preview/c63bed819c56d16f74d60787671d9701ef7aa5ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FRZ196700560,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,folk rock,merseybeat,rock-and-roll,rockabilly",0.394,0.486,10.0,-9.742,1.0,0.0366,0.627,0.0,0.167,0.427,133.685,4.0,,BMG Heritage,P (P) 2003 BMG Heritage,482 +483,spotify:track:3yOlyBJuViE2YSGn3nVE1K,My Oh My (feat. DaBaby),"spotify:artist:4nDoRrQiYLoBzwC5BhVJzF, spotify:artist:4r63FhuTkUYltbVAg5TQnk","Camila Cabello, DaBaby",spotify:album:3Vsbl0diFGw8HNSjG8ue9m,Romance,spotify:artist:4nDoRrQiYLoBzwC5BhVJzF,Camila Cabello,2019-12-06,https://i.scdn.co/image/ab67616d0000b2735f53c0dbe5190a0af0fa28f3,1,4,170746,https://p.scdn.co/mp3-preview/ea3ba7014fbff5a201d98ddab8d94e13fe56bb16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM11914257,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,hip hop,north carolina hip hop,pop rap,rap,trap",0.724,0.491,8.0,-6.024,1.0,0.0296,0.018,1.29e-05,0.0887,0.383,105.046,4.0,,Syco Music/Epic,"P (P) 2019 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",483 +484,spotify:track:0mel2N9Ws9r4yLQn5QE21Y,Too Good At Goodbyes - Edit,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:7oiRNdTfUWmsx6DAjEe7DB,Too Good At Goodbyes,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2017-09-08,https://i.scdn.co/image/ab67616d0000b2730a5b25f2ae0690285b4b1508,1,1,201000,https://p.scdn.co/mp3-preview/2e2100af8cd386f628684caafb50662b67656de0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71704089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.653,0.378,5.0,-8.273,1.0,0.0533,0.658,0.0,0.177,0.54,91.835,4.0,,Universal Music Group,"C © 2017 Universal Music Operations Limited, P A Capitol Records UK release; ℗ 2017 Universal Music Operations Limited",484 +485,spotify:track:3d4I2tQUz16S8gesU2pLSM,She's Like the Wind,"spotify:artist:6dH5I8Q7HhXu74cBXkP0LD, spotify:artist:2oSO8nxMHKOJKj7v8l0zWh","Patrick Swayze, Wendy Fraser",spotify:album:03HVo5MVOWQ4kilTtF1Czg,Dirty Dancing,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1987-07-10,https://i.scdn.co/image/ab67616d0000b273741a375f2292fbe848ef27e8,1,3,232240,https://p.scdn.co/mp3-preview/3276109718ed1ca9b9420efc8fd7e700e7d29584?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBMG0100040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,yacht rock,0.596,0.349,4.0,-14.097,0.0,0.0295,0.273,2.38e-05,0.167,0.228,124.932,4.0,,RCA Records Label,"P (P) 1987 Vestron Pictures, Inc.",485 +486,spotify:track:7M4U1nT033JyjFNmqu1o6p,Bring Me Some Water,spotify:artist:01Ppu7N8uYJI8SAONo2YZA,Melissa Etheridge,spotify:album:2e4dBdMQypTg53lsxOYj5M,Greatest Hits - The Road Less Traveled,spotify:artist:01Ppu7N8uYJI8SAONo2YZA,Melissa Etheridge,2005,https://i.scdn.co/image/ab67616d0000b2730e2a04b8d774fa397654c084,1,4,234560,https://p.scdn.co/mp3-preview/33c1d09d989b3fcfdb913a141cf266b39f09003d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR28800053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ectofolk,heartland rock,lilith,pop rock,singer-songwriter",0.663,0.868,2.0,-4.547,1.0,0.0366,0.0147,0.0,0.1,0.717,125.818,4.0,,Island Records,"C © 2007 The Island Def Jam Music Group, P ℗ 2007 The Island Def Jam Music Group",486 +487,spotify:track:4tyrRF6QhW7muNqwwXzLfp,Stay,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,spotify:album:6AHKwe8On9u6oU3XWV3Sb3,Winter Songs,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,2009-01-01,https://i.scdn.co/image/ab67616d0000b27321bf581899b242569b967d6b,1,2,276760,https://p.scdn.co/mp3-preview/c1d706c8116bf0d8410b9626abe498cf425c6cdd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70911939,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.618,0.37,9.0,-9.021,1.0,0.0362,0.748,0.0,0.133,0.31,69.991,4.0,,Universal Music Group,"C © 2009 Polydor Ltd. (UK), P ℗ 2009 Polydor Ltd. (UK)",487 +488,spotify:track:4u8Rsnp8Pzvui3WaTWasyY,Rush - Single Version,spotify:artist:7hqZBHSgDs1odG9aupMzEI,Big Audio Dynamite,spotify:album:3KwVr850vZfjrKJb72lQnU,Planet Bad Greatest Hits,spotify:artist:7hqZBHSgDs1odG9aupMzEI,Big Audio Dynamite,1995-09-12,https://i.scdn.co/image/ab67616d0000b273afb29a8125ee709d5a375c97,1,11,188373,https://p.scdn.co/mp3-preview/3245c2a2b27cf1090b6c443ba7acb2a4a4c43d7c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USSM19100039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop",0.777,0.88,9.0,-10.057,1.0,0.0546,0.0916,0.0,0.332,0.71,124.037,4.0,,Columbia,"P (P) 1985, 1986, 1988, 1989, 1990, 1991, 1994, 1995 SONY BMG MUSIC ENTERTAINMENT,1995 Radioactive Records",488 +489,spotify:track:78TTtXnFQPzwqlbtbwqN0y,FourFiveSeconds,"spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:4STHEaNw4mPZ2tzheohgXB","Rihanna, Kanye West, Paul McCartney",spotify:album:7yBl4uFyJzH48Vy6tPieXL,FourFiveSeconds,"spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:4STHEaNw4mPZ2tzheohgXB","Rihanna, Kanye West, Paul McCartney",2015-01-24,https://i.scdn.co/image/ab67616d0000b27336a9ed72b45e54ff307641be,1,1,188238,https://p.scdn.co/mp3-preview/6fdd4470dabeaf54e72b566a4f8f2d064236927f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USJMT1500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary,chicago rap,hip hop,rap,classic rock,mellow gold,rock,soft rock",0.582,0.272,2.0,-5.662,1.0,0.0501,0.875,0.0,0.13,0.354,205.846,4.0,,Roc Nation / Rihanna,"C © 2015 Westbury Road Entertainment, Distributed by Roc Nation Records, P ℗ 2015 Westbury Road Entertainment, Distributed by Roc Nation Records",489 +490,spotify:track:5OUxpgFmz54y95OZVeyP8z,The Rockafeller Skank - Short Edit,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,spotify:album:7vVjgY4U7n4ZwGEKUBOIU7,Rockafeller Skank,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,1998-06-01,https://i.scdn.co/image/ab67616d0000b2735b85b30d9d148cc6570817b2,1,4,241466,https://p.scdn.co/mp3-preview/9066ddb0db284cf4184bf660e09c994613eb74c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBBMQ9800051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica",0.585,0.983,7.0,-6.271,1.0,0.256,0.00483,0.00636,0.293,0.15,152.573,4.0,,Skint Records,"C © 1998 Skint Records Limited, a BMG Company, P ℗ 1998 Skint Records Limited, a BMG Company",490 +491,spotify:track:39TkaDl80vWwjjYNlsJEva,Drop The Pilot,spotify:artist:1bdAJUX6JPsnYHbTl5jbk6,Joan Armatrading,spotify:album:46Qcpewjrwf94yHfFCvmia,Willow:The Joan Armatrading Collection,spotify:artist:1bdAJUX6JPsnYHbTl5jbk6,Joan Armatrading,2007-01-01,https://i.scdn.co/image/ab67616d0000b273dcc2234cc7af324b40637dcf,2,4,209320,https://p.scdn.co/mp3-preview/603b963d1fd07697ce9bbba423d9532d37169006?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USAM18300070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk,singer-songwriter",0.656,0.652,1.0,-10.031,1.0,0.0342,0.0241,9.34e-06,0.0574,0.963,128.075,4.0,,UMC (Universal Music Catalogue),"C © 2007 Spectrum Music, P This Compilation ℗ 2007 Spectrum Music",491 +492,spotify:track:5YhAAlelWek228jZzxgEfr,Honestly,spotify:artist:6jTnHxhb6cDCaCu4rdvsQ0,Hot Chelle Rae,spotify:album:0UkgnXc0w7qiRE2X086BdN,Whatever,spotify:artist:6jTnHxhb6cDCaCu4rdvsQ0,Hot Chelle Rae,2011-11-25,https://i.scdn.co/image/ab67616d0000b2733b97f1c9a0273bfbdc6bd791,1,3,201506,https://p.scdn.co/mp3-preview/94a3dd92cf9e1858b138bd47eb8d0f3463cca01d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USRC11100857,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,neon pop punk,post-teen pop",0.641,0.787,0.0,-4.271,1.0,0.0375,0.0268,0.0,0.11,0.916,93.01,4.0,,RCA Records Label,"P (P) 2011 RCA Records, a division of Sony Music Entertainment",492 +493,spotify:track:3gdewACMIVMEWVbyb8O9sY,"Rocket Man (I Think It's Going To Be A Long, Long Time)",spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:2ei2X6ghPnw7YRwQtAH075,Honky Chateau,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1972-05-19,https://i.scdn.co/image/ab67616d0000b2733009007708ab5134936a58b3,1,5,281613,https://p.scdn.co/mp3-preview/c7316d016815fab0bb5ecb309da33e57d4da69c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBAMB7200006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.601,0.532,10.0,-9.119,1.0,0.0286,0.433,5.95e-06,0.0925,0.342,136.576,4.0,,EMI,"C © 1995 Mercury Records Limited, P This Compilation ℗ 1972 This Record Company Ltd.",493 +494,spotify:track:1oolfqNpJhtO9KquFkHOX2,Johnny Run Away,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,spotify:album:7kOSEfgKVKQv5uHjjpE1lu,Johnny Run Away,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,2019-03-01,https://i.scdn.co/image/ab67616d0000b273dbfe09cc0110282bbe6b8dea,1,1,193450,https://p.scdn.co/mp3-preview/09ab7b29d81546e7aaf173b306f318c6b9201d3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZDA51983220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.817,0.375,2.0,-10.21,1.0,0.151,0.734,0.00831,0.105,0.497,92.476,4.0,,Bad Batch Records,"C 2019 Bad Batch Records, P 2019 Bad Batch Records",494 +495,spotify:track:4urcG6Nfubqsuqy3juMjBi,Brokenhearted,spotify:artist:4M0DLz8te9Q1lNIXBBwvfG,Karmin,spotify:album:7FbPwQGriWa8IT4u6RxjWK,Hello,spotify:artist:4M0DLz8te9Q1lNIXBBwvfG,Karmin,2012-05-07,https://i.scdn.co/image/ab67616d0000b273cc50268bd94de0934dad0ca0,1,2,227146,https://p.scdn.co/mp3-preview/dd677b59ccc526811ab460ed83cd128e5bcc861e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM11200212,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,viral pop",0.765,0.765,1.0,-2.732,0.0,0.0585,0.00765,3.82e-06,0.0527,0.886,120.001,4.0,,Epic,"P (P) 2012 Epic Records, a division of Sony Music Entertainment",495 +496,spotify:track:02TXU8U4OJBEVo5XO3k8mi,Love...Thy Will Be Done - Single Version,spotify:artist:40enFxfEXXsEXKOt1vgx0k,Martika,spotify:album:0aKOU8WgU7c8rpb69O1Y1V,More Than You Know - The Best Of Martika,spotify:artist:40enFxfEXXsEXKOt1vgx0k,Martika,1997,https://i.scdn.co/image/ab67616d0000b2738e6b5c0cf02a020ff0697840,1,6,264960,https://p.scdn.co/mp3-preview/508a14477e9829e727e20866c3eacb3ca0ae9fa9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19100500,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"minneapolis sound,new romantic,new wave pop",0.721,0.372,2.0,-11.352,1.0,0.028,0.315,0.00268,0.102,0.514,91.541,4.0,,Columbia,P (P) 1997 Sony Music Entertainment (UK) Ltd.,496 +497,spotify:track:5eYwDBLucWfWI5KsV7oYX2,Mary Jane's Last Dance,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:7ait6chB3O3C1fMGUDJhtu,Anthology: Through The Years,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,2000-01-01,https://i.scdn.co/image/ab67616d0000b2736cfd76ded516a7f12768a4b2,2,15,272266,https://p.scdn.co/mp3-preview/be0def4ad5842afde18b1d54891020564b235db2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19341704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.402,0.814,10.0,-4.954,1.0,0.14,0.0383,1.19e-06,0.266,0.516,170.02,4.0,,Interscope,"C © 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc.",497 +498,spotify:track:20JcxdRw8gvqTY1EEpYxHb,Misty Blue,spotify:artist:3KQOgtRIeQVHdYFcNHKavs,Dorothy Moore,spotify:album:3Zduho0YRag4bzsjSVGF0t,Misty Blue,spotify:artist:3KQOgtRIeQVHdYFcNHKavs,Dorothy Moore,1976-03-01,https://i.scdn.co/image/ab67616d0000b2737a1d1b24d9e53e8729d63578,1,5,222400,https://p.scdn.co/mp3-preview/db58902544f7576c1ebb7ddd52df78edb2f58505?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USMR50470409,spotify:user:bradnumber1,2021-08-08T09:26:31Z,southern soul,0.394,0.243,3.0,-14.664,1.0,0.0302,0.658,0.00603,0.085,0.504,173.365,3.0,,Malaco Records,"C 1976 Malaco Records, Inc., P 1976 Malaco Records, Inc.",498 +499,spotify:track:76Je5Wklky23mVoxiRszcN,Walk,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:5lnQLEUiVDkLbFJHXHQu9m,Wasting Light,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2011-04-12,https://i.scdn.co/image/ab67616d0000b273cdac19bbaee5cc123edcc26f,1,11,255960,https://p.scdn.co/mp3-preview/6ec14f5fa6505d107e5ce786a5a77105d309b8af?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USRW31100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.234,0.865,9.0,-5.131,1.0,0.0516,3.62e-05,0.000532,0.289,0.194,137.107,4.0,,RCA Records Label,"P (P) 2011 Roswell Records, Inc. under license to RCA Records, a unit of Sony Music Entertainment",499 +500,spotify:track:1G5tWc6ban5YXM8zeudnOA,Weir,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,spotify:album:3Mb6ZsLgwJvTtN3C5vYcC5,Reflector,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,2000,https://i.scdn.co/image/ab67616d0000b2737f361459e0043a6deb2d342c,1,2,244866,https://p.scdn.co/mp3-preview/2b2ee683f0829a921b0179d6f3561162d76d04ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBEC1701084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.32,0.697,2.0,-6.623,1.0,0.0463,0.136,1.4e-05,0.303,0.634,156.067,4.0,,Independent,"C 2000 Wah Wah Music, P 2000 Wah Wah Music",500 +501,spotify:track:5isqZr4tHv9tJjiyoDuRMo,Ruby Baby,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,spotify:album:0cXtsSbj6Yr01tMuvkB9qO,Ruby Baby,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,2014-03-10,https://i.scdn.co/image/ab67616d0000b27322ac91b17fbe0a2691c3c964,1,1,157675,https://p.scdn.co/mp3-preview/6ed3e54b8f0e3db9e24bc3c57db245f6a6115cf2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,QMDA71497760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rock-and-roll,rockabilly",0.656,0.718,4.0,-9.638,1.0,0.1,0.611,0.0,0.075,0.663,121.854,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,501 +502,spotify:track:1Zi2ezNOqt9y9irC11xYpN,Eve Of Destruction,spotify:artist:6xdkfNRMtBzeu7t4wyum2X,Barry McGuire,spotify:album:1ue4XKSgfovqJp8wgoyaOX,Eve Of Destruction,spotify:artist:6xdkfNRMtBzeu7t4wyum2X,Barry McGuire,1965-01-01,https://i.scdn.co/image/ab67616d0000b273d33bff23ded3e4ec3149429f,1,1,215826,https://p.scdn.co/mp3-preview/d5be4f7e3b037412aff51838f281dfcae00c6af1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USMC16500802,spotify:user:bradnumber1,2021-08-08T09:26:31Z,folk rock,0.613,0.307,2.0,-17.385,1.0,0.0414,0.387,4.52e-06,0.087,0.789,117.305,4.0,,Geffen,"C © 1965 Geffen Records, P ℗ 1965 Geffen Records",502 +503,spotify:track:3NjN67McMXpFykke8bQDuO,Time to Wander,spotify:artist:54xBWCXYw0pydXBknIdiC6,GATC,spotify:album:1OilKlEbVfBaEJEfkFX8Lo,Gilgamesh,spotify:artist:54xBWCXYw0pydXBknIdiC6,GATC,2010-10-04,https://i.scdn.co/image/ab67616d0000b273b634bf67662f9291f3e71732,1,1,234746,https://p.scdn.co/mp3-preview/77388b5c9ff83ac4dbe4a62d43ba7d4bf23996ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1000830,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,shimmer pop",0.548,0.876,2.0,-4.51,1.0,0.0535,0.00191,0.0979,0.0672,0.11,135.008,4.0,,RCA Records Label,P (P) 2010 Sony Music Entertainment UK Limited,503 +504,spotify:track:7AfqTpdtRHEm5qLt3zKtDN,Home - feat. Michael Bublé,"spotify:artist:1UTPBmNbXNTittyMJrNkvw, spotify:artist:1GxkXlMwML1oSg5eLPiAz3","Blake Shelton, Michael Bublé",spotify:album:5JfiJ4oEv1EifTvX9vkTFk,"Cheers, it's Christmas.",spotify:artist:1UTPBmNbXNTittyMJrNkvw,Blake Shelton,2012-10-02,https://i.scdn.co/image/ab67616d0000b2730e748c1ba9f209a984069c83,1,7,227040,https://p.scdn.co/mp3-preview/c10d2f3eefc70e013bee49219f18e48e2eb3b450?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB11202090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic oklahoma country,contemporary country,country,country road,adult standards,canadian pop,jazz pop,lounge",0.576,0.455,7.0,-7.587,1.0,0.0267,0.583,2.73e-05,0.0912,0.206,127.856,4.0,,Warner Bros.,"C 2012 Ten Point Productions, Inc. under exclusive license to Warner Bros. Records Inc., P 2012 Ten Point Productions, Inc. under exclusive license to Warner Bros. Records Inc.",504 +505,spotify:track:3y3brCCecHC3Db18aIOnny,"Carry On (from the Original Motion Picture ""POKÉMON Detective Pikachu"")","spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:5CCwRZC6euC8Odo6y9X8jr","Kygo, Rita Ora",spotify:album:1Z7WbPmn7QFoJ2DrNfEehz,"Carry On (from the Original Motion Picture ""POKÉMON Detective Pikachu"")","spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:5CCwRZC6euC8Odo6y9X8jr","Kygo, Rita Ora",2019-04-19,https://i.scdn.co/image/ab67616d0000b2735c13911ce0c8e0b65c341a4c,1,1,215315,https://p.scdn.co/mp3-preview/602c2151b36320f44255d18dc045a7de5af0ab59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USRC11900838,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,dance pop,pop,uk pop",0.591,0.705,9.0,-6.519,0.0,0.079,0.381,0.000116,0.131,0.27,121.799,4.0,,Palm Tree Records/RCA Records,"P (P) 2019 RCA Records, a division of Sony Music Entertainment",505 +506,spotify:track:55VzNhbcf0Gxf6qRCUAV01,Little Bad Girl (feat. Taio Cruz & Ludacris),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi, spotify:artist:6MF9fzBmfXghAz953czmBC","David Guetta, Ludacris, Taio Cruz",spotify:album:4bTjdxhRRUiWfwj200f9Kl,Nothing but the Beat (Ultimate Edition),spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2012-12-07,https://i.scdn.co/image/ab67616d0000b2735c8cfe4b2c4aa89c9c92108e,1,11,192275,https://p.scdn.co/mp3-preview/8e95b6e3d3f0064b0c8a28ed6b4008742df7abd7?cid=9950ac751e34487dbbe027c4fd7f8e99,True,58,GB28K1100020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap,dance pop,pop,pop rap",0.668,0.829,11.0,-2.748,0.0,0.0334,0.00572,0.0,0.358,0.648,127.0,4.0,,Parlophone (France),"C © 2012 What A Music Ltd., licence exclusive Parlophone Music France, P ℗ 2012 What A Music Ltd., licence exclusive Parlophone Music France",506 +507,spotify:track:345fmYC4plFCcpZsbDomR3,I Only Want To Be With You - Mono,spotify:artist:5zaXYwewAXedKNCff45U5l,Dusty Springfield,spotify:album:1nqFVeqOlIVan8xkKX0O6j,Complete A And B Sides 1963 - 1970,spotify:artist:5zaXYwewAXedKNCff45U5l,Dusty Springfield,2006-01-01,https://i.scdn.co/image/ab67616d0000b2731f64431de67310e745c5e327,1,1,156386,https://p.scdn.co/mp3-preview/0c77c55e129b7e2491a214ccbf7b3db62cea691b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBF086300133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion,folk rock,soul,vocal jazz",0.585,0.759,7.0,-6.257,1.0,0.0295,0.0867,0.0,0.07,0.945,132.913,4.0,,UMC (Universal Music Catalogue),"C © 2006 Mercury Records Limited, P This Compilation ℗ 2006 Mercury Records Limited",507 +508,spotify:track:1rG2EZw9GJuBPleLhS64sn,Loverboy,spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,spotify:album:7n4OT3zEZaEiyKKd6mFAhi,The Very Best of Billy Ocean,spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,2010-04-26,https://i.scdn.co/image/ab67616d0000b27399ee23dac7128cb5754f593c,1,9,249360,https://p.scdn.co/mp3-preview/aeb5ba04be753fe3d4fe8ec382b28fcc871f285c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAHK9700115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new romantic,new wave pop,soft rock,yacht rock",0.734,0.71,6.0,-9.164,0.0,0.0389,0.0915,2.28e-05,0.0635,0.715,107.901,4.0,,Sony Music UK,P This compilation (P) 2010 Sony Music Entertainment UK Limited,508 +509,spotify:track:7yCPwWs66K8Ba5lFuU2bcx,All The Small Things,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:5qt11cWjSs5Gbqj2Wyfu38,Enema Of The State,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,1999-01-01,https://i.scdn.co/image/ab67616d0000b273645606c85724da85f15f6dee,1,8,168000,https://p.scdn.co/mp3-preview/b1447b8d76183737ea2ebd10f70da6292904f833?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USMC19959123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.439,0.891,0.0,-4.764,1.0,0.057,0.0122,0.0,0.547,0.695,148.599,4.0,,Interscope,"C © 1999 Geffen Records, P ℗ 1999 Geffen Records",509 +510,spotify:track:2e7wjEPtvn1b3RAnwzkEnu,Stupid Girl,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,spotify:album:7nxUo7X1Z1vSBxn7XoF8js,Garbage,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,1995,https://i.scdn.co/image/ab67616d0000b273c392b0bc0cf5659e2ccb7731,1,8,258533,https://p.scdn.co/mp3-preview/3522dd3618545ca835a0608520da8b36fdda2d26?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19500408,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,electronic rock,permanent wave",0.617,0.721,11.0,-6.889,1.0,0.0305,0.00548,0.000637,0.0645,0.765,119.961,4.0,,Liberator Music,"C 2012 STUNVOLUME, P 2012 STUNVOLUME",510 +511,spotify:track:66S14BkJDxgkYxLl5DCqOz,I'm Gonna Be (500 Miles),spotify:artist:1A92IAcd7A6npCA33oGM5i,The Proclaimers,spotify:album:7hPq9fDWwXPo1tT0oi3XcM,Finest,spotify:artist:1A92IAcd7A6npCA33oGM5i,The Proclaimers,2003-09-01,https://i.scdn.co/image/ab67616d0000b273b0c0201a8796d8a536253a61,1,1,219466,https://p.scdn.co/mp3-preview/42b4d0af211d3a2ad254c010254a1957297f3f24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBAYK8800055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,scottish rock",0.851,0.551,4.0,-5.177,1.0,0.0396,0.151,0.0,0.0827,0.807,131.922,4.0,,Parlophone UK,"C © 2003 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2003 Parlophone Records Ltd, a Warner Music Group Company",511 +512,spotify:track:7BfW1eoDh27W69nxsmRicb,Buffalo Soldier,spotify:artist:2QsynagSdAqZj3U9HgDzjD,Bob Marley & The Wailers,spotify:album:5Rg4ZSwf1LPCuAMr0msdun,Confrontation,spotify:artist:2QsynagSdAqZj3U9HgDzjD,Bob Marley & The Wailers,1983-05-23,https://i.scdn.co/image/ab67616d0000b2737e0b5fe0454234229e52a491,1,2,255840,https://p.scdn.co/mp3-preview/bbcdea432c1ebfc3c859780ea0b08c43b7756602?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USIR28300004,spotify:user:bradnumber1,2022-09-20T01:07:07Z,"reggae,roots reggae",0.929,0.463,9.0,-8.651,1.0,0.308,0.143,5.3e-06,0.0634,0.755,124.084,4.0,,Island Records,"C © 1983 Island Records Inc., P ℗ 2001 The Island Def Jam Music Group",512 +513,spotify:track:29SRvYOKbMLOZeOubNGtLb,Is She Really Going Out With Him?,spotify:artist:6KOqPxwfNAmZPkiCnDE9yT,Joe Jackson,spotify:album:6Bt6KjNfoCp6UbYVFGH4FH,Look Sharp!,spotify:artist:6KOqPxwfNAmZPkiCnDE9yT,Joe Jackson,1979-01-05,https://i.scdn.co/image/ab67616d0000b2735f40be7506754451d1e61e16,1,3,215066,https://p.scdn.co/mp3-preview/4e54c1bd5bcb9b76013aba18c2328e9ebd851efc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAAM7801002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,new romantic,new wave,new wave pop,permanent wave,singer-songwriter,sophisti-pop",0.874,0.318,3.0,-6.869,1.0,0.0454,0.0353,1.69e-05,0.217,0.919,116.117,4.0,,A&M,"C © 2001 A&M Records Inc., P This Compilation ℗ 2001 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",513 +514,spotify:track:1qOLh0tI7trd1zdDKxYZTe,Starving,"spotify:artist:5p7f24Rk5HkUZsaS3BLG5F, spotify:artist:4lDBihdpMlOalxy1jkUbPl, spotify:artist:2qxJFvFYMEDqd7ui6kSAcq","Hailee Steinfeld, Grey, Zedd",spotify:album:3Nuw6arrA8kVwhIvyGbiku,HAIZ,spotify:artist:5p7f24Rk5HkUZsaS3BLG5F,Hailee Steinfeld,2016-07-15,https://i.scdn.co/image/ab67616d0000b273612495ee5769c99125031be2,1,6,181880,https://p.scdn.co/mp3-preview/df1e954d4a1cc8c1a677a6066b53bbebb6c7442a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71606368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop edm,complextro,edm,german techno,pop,pop dance",0.636,0.633,4.0,-4.23,1.0,0.126,0.371,0.0,0.102,0.512,99.721,4.0,,Universal Music Group,"C (C) 2016 Republic Records, a division of UMG Recordings, Inc., P (P) 2016 Republic Records, a division of UMG Recordings, Inc.",514 +515,spotify:track:1V1krdOmDBlvCEwVJPR2Cv,Woman - Tyler Stone Summer Chill Mix,"spotify:artist:41ITYFOUrXrzWhudmBYC0X, spotify:artist:0MwiZ2D17CWZMtHPvKgVHH","Louie Austen, Tyler Stone",spotify:album:4H7ktUkvZ7JknbddLa98mo,Woman (Tyler Stone Summer Chill Mix),"spotify:artist:41ITYFOUrXrzWhudmBYC0X, spotify:artist:0MwiZ2D17CWZMtHPvKgVHH","Louie Austen, Tyler Stone",2021-07-02,https://i.scdn.co/image/ab67616d0000b27319f9b9149a5c5993e9511f0c,1,1,220646,https://p.scdn.co/mp3-preview/f302fc04150d5ce52f19dbc551d423a9944eb622?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,DEZC62107943,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electro jazz,0.575,0.779,4.0,-6.916,0.0,0.0305,0.0305,0.0651,0.177,0.394,93.002,4.0,,R&B Music,"C 2021 R&B Music, P 2021 R&B Music",515 +516,spotify:track:7zbDSQelDmlaEhUDnLMViZ,All Of The Lights - Album Version (Edited),spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,spotify:album:6klUp8sQyRXGuJhqZu4PG3,My Beautiful Dark Twisted Fantasy,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2010-01-01,https://i.scdn.co/image/ab67616d0000b273baf2a68126739ff553f2930a,1,5,299600,https://p.scdn.co/mp3-preview/c381c01f5839bda335a55a90ad7744c438b479f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM71027274,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap",0.547,0.794,1.0,-3.28,1.0,0.0596,0.0632,4.88e-05,0.196,0.243,142.138,4.0,,Roc-A-Fella,"C © 2010 UMG Recordings, Inc., P ℗ 2010 UMG Recordings, Inc.",516 +517,spotify:track:6eK6eWG03zxQFW8P4OE4Cb,Crawl Back In,spotify:artist:502ZZTWlqgS1Ht62ewubEJ,Dead By Sunrise,spotify:album:34Zz8qH5QJgD2uTXDuZ2J9,Out Of Ashes,spotify:artist:502ZZTWlqgS1Ht62ewubEJ,Dead By Sunrise,2009-09-30,https://i.scdn.co/image/ab67616d0000b2733cea3f53137fcb2cc86a481c,1,2,182760,https://p.scdn.co/mp3-preview/e2d18ce5202b1bda8bc330eef7b06e0e6f45444f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USWB10902978,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electronic rock,0.501,0.975,2.0,-3.361,1.0,0.0941,0.000422,1.53e-06,0.364,0.348,127.964,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 Warner Records Inc.",517 +518,spotify:track:4gXKQnK7G429gieHHY4Y7z,Chemical Heart,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,spotify:album:3AIbG814zChhFMAsCvt96L,New Detention,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,2002-01-01,https://i.scdn.co/image/ab67616d0000b273361ec570b867570158079107,1,5,279506,https://p.scdn.co/mp3-preview/d40d65c7a158edadad1753e42649b2beed7191c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,AUUM00130067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian psych,australian rock",0.47,0.612,0.0,-7.413,1.0,0.028,0.00668,0.0,0.14,0.382,153.926,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",518 +519,spotify:track:0fcWIzRDyYZXIbAF18VOXa,Paris Is Burning,spotify:artist:5TfnQ0Ai1cEbKY5katFK14,Ladyhawke,spotify:album:31AFNVRlzhlhqX9LCwPfHF,Ladyhawke (Deluxe Edition),spotify:artist:5TfnQ0Ai1cEbKY5katFK14,Ladyhawke,2009-04-10,https://i.scdn.co/image/ab67616d0000b2730000e47a4e869d4323ad0e3d,1,8,227986,https://p.scdn.co/mp3-preview/e217342faf30ed5b2b434c680e0c3f1f2141afa1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBUM70808467,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,metropopolis,neo-synthpop",0.601,0.881,9.0,-3.592,0.0,0.0532,0.0224,0.0,0.135,0.769,122.958,4.0,,Modular,"C © 2009 Modular Recordings, P ℗ 2009 Modular Recordings",519 +520,spotify:track:3s9XQlCba54MLXFRivr5y5,Comeback,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,spotify:album:5aMNLhPwUGBlVUS1gU9yAm,Six to Midnight,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,2009-01-01,https://i.scdn.co/image/ab67616d0000b273c72174a0b4e18e61f882575b,1,3,186733,https://p.scdn.co/mp3-preview/38f142898a7d3a0f9933ab67672877f78f8e8b18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70902190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian psych,australian rock",0.536,0.776,4.0,-4.59,1.0,0.0332,0.00432,0.0,0.129,0.467,108.031,4.0,,Universal Music Australia (Distribution),"C © 2009 CHKCHKBOOM REKKORDS/ UNIVERSAL 2009, P ℗ 2009 CHKCHKBOOM REKKORDS/ UNIVERSAL 2009",520 +521,spotify:track:6NT8VAZify97bFRF6xotFC,Stay Wild,spotify:artist:3h18aXqdmm2F13t6LIbTpq,Little Birdy,spotify:album:1E5fWDTBTMXFeSICLvdpH5,Confetti,spotify:artist:3h18aXqdmm2F13t6LIbTpq,Little Birdy,2009-01-01,https://i.scdn.co/image/ab67616d0000b273c55108e9f5c714bbeac183ea,1,4,248746,https://p.scdn.co/mp3-preview/e4f68578d18146a136afc4bbba2877cf3589dcc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUEL00900004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian rock,perth indie",0.596,0.524,1.0,-5.218,0.0,0.0259,0.0404,1.14e-05,0.0707,0.348,120.017,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Little Birdy under exclusive license to Eleven: A Music Company, P ℗ 2009 Little Birdy under exclusive license to Eleven: A Music Company",521 +522,spotify:track:1f3yAtsJtY87CTmM8RLnxf,Smells Like Teen Spirit,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,spotify:album:2uEf3r9i2bnxwJQsxQ0xQ7,Nevermind (Deluxe Edition),spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,1991-09-26,https://i.scdn.co/image/ab67616d0000b27328a90d00a2819504364880e4,1,1,301920,https://p.scdn.co/mp3-preview/91219ebc0d0505a1001c4b854f8b2451fcec95b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,USGF19942501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,permanent wave,rock",0.502,0.912,1.0,-4.556,1.0,0.0564,2.55e-05,0.000173,0.106,0.72,116.761,4.0,,Geffen,"C © 2011 Geffen Records, P This Compilation ℗ 2011 Geffen Records",522 +523,spotify:track:65nCVhtlWYUzNvcM1MYp4l,Landslide,spotify:artist:25IG9fa7cbdmCIy3OnuH57,The Chicks,spotify:album:31St5diPbTZoCjOwWXSMWD,The Essential The Chicks,spotify:artist:25IG9fa7cbdmCIy3OnuH57,The Chicks,2010,https://i.scdn.co/image/ab67616d0000b27359b1593459fed5f25c7067fc,1,11,228480,https://p.scdn.co/mp3-preview/1efbe935d22e60c5db07726a070fd690e7c18b2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM10209587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn",0.574,0.4,2.0,-8.387,1.0,0.0273,0.569,6.19e-06,0.164,0.512,146.018,4.0,,Columbia/Legacy,"P This compilation (P) 2010 Columbia Records, a division of Sony Music Entertainment",523 +524,spotify:track:1KQdOoOg4WnnaYySdafBuI,The Hard Way,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,spotify:album:72ofNtyCnr54WRoZa6K289,Slideshows,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,2007-04-21,https://i.scdn.co/image/ab67616d0000b273db4c552ec0434ae0b7bc091a,1,3,262840,https://p.scdn.co/mp3-preview/293336208fb65a69dc37c6663e143798e838496a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUWA00606120,spotify:user:bradnumber1,2022-02-03T10:24:42Z,"australian pop,australian rock",0.41,0.76,7.0,-4.629,1.0,0.0366,0.063,0.0,0.141,0.43,139.998,4.0,,WM Australia,"C © 2007 Warner Music Australia Pty Limited, P ℗ 2007 Warner Music Australia Pty Limited",524 +525,spotify:track:0uWG5H5PrBOI4e46neKfhB,"Hold Me, Thrill Me, Kiss Me, Kill Me - From 'Batman Forever'",spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:5bnxl1t9burd9a9YLBy4Ig,The Best Of 1990-2000,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2002-10-31,https://i.scdn.co/image/ab67616d0000b273e40e578a3c74d87abbc25e34,1,13,285160,https://p.scdn.co/mp3-preview/b8d9cc6a84004bff2c65d9825744dd6d3f2b038e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN0201228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.367,0.838,10.0,-6.977,0.0,0.0423,7.67e-05,0.219,0.179,0.336,171.674,4.0,,Universal Music Group,"C © 2002 Universal International Music B.V., P ℗ 2002 Universal International Music B.V.",525 +526,spotify:track:6hW2XKfZJDTImLOGlqM1pC,What We Talkin' About,"spotify:artist:3nFkdlSjzX9mRTtwJOzDYB, spotify:artist:0CliOhi161ZCRIVw60prp0","JAY-Z, Luke Steele",spotify:album:1g3Ek21j6qDWt2CtravhrX,The Blueprint 3,spotify:artist:3nFkdlSjzX9mRTtwJOzDYB,JAY-Z,2009-09-08,https://i.scdn.co/image/ab67616d0000b2734b328c297d151d432c7b1aa3,1,1,244080,https://p.scdn.co/mp3-preview/3d2b6ae4c2c2d75901851786b3bf7363041bf93d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USJZ10900016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,rap",0.483,0.975,9.0,-1.333,0.0,0.356,0.333,0.0,0.878,0.266,95.439,4.0,,Roc Nation / Jay-Z,"C © 2009 S. Carter Enterprises, LLC., Distributed by Roc Nation, P ℗ 2009 S. Carter Enterprises, LLC., Distributed by Roc Nation",526 +527,spotify:track:6IIjmqaDdO6vdEBasXsCve,Sweet Disposition,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,spotify:album:0LiajiUXzLDuQ21geqi4v4,Sweet Disposition,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,2009-08-02,https://i.scdn.co/image/ab67616d0000b2739d20b50e52fc0972dafdc39e,1,1,234680,https://p.scdn.co/mp3-preview/33ce5626082462723530869b723dba228256ec66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBZUZ0900013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern rock,shimmer pop",0.531,0.805,2.0,-7.127,1.0,0.0433,0.0783,0.0926,0.116,0.349,129.107,4.0,,Infectious,"C 2009 LIBERATION MUSIC LTD PTY, P 2009 INFECTIOUS MUSIC LTD",527 +528,spotify:track:3Z8FwOEN59mRMxDCtb8N0A,Be Kind (with Halsey),"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:26VFTg2z8YR0cCuwLzESi2","Marshmello, Halsey",spotify:album:1eleCBhP2R8TXEDquvybwC,Be Kind (with Halsey),"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:26VFTg2z8YR0cCuwLzESi2","Marshmello, Halsey",2020-05-01,https://i.scdn.co/image/ab67616d0000b273fdf2e993e10e67396b3bf759,1,1,172761,https://p.scdn.co/mp3-preview/37d51f0f989fc7af03e9f1cec548fde3b4fb01ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USUG12001567,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,edm,pop,progressive electro house,electropop,etherpop,indie poptimism,pop",0.63,0.633,4.0,-7.088,1.0,0.0457,0.00776,0.0,0.0541,0.452,93.992,4.0,,Astralwerks,"C © 2020 Joytime Collective, under exclusive license to UMG Recordings, Inc., P ℗ 2020 Joytime Collective, under exclusive license to UMG Recordings, Inc.",528 +529,spotify:track:7EPK7kVLTFoRrPuZ0UpdUP,In These Arms,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0Bkb9wdEeOPBJnLYmQqVR2,Bon Jovi Greatest Hits - The Ultimate Collection (Int'l Deluxe Package),spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273dccc2df90ecd877a3bb7c999,1,14,319293,https://p.scdn.co/mp3-preview/d2ebf978b85257537f619e8999fc41f1326c22b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG19290092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.507,0.913,4.0,-2.937,1.0,0.0555,0.00987,2.28e-05,0.23,0.511,123.305,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",529 +530,spotify:track:3DTqHfTGj1c6y2gDXsTez4,Regardless,"spotify:artist:5KKpBU5eC2tJDzf0wmlRp2, spotify:artist:4WN5naL3ofxrVBgFpguzKo","RAYE, Rudimental",spotify:album:7u2byARDMi8YgqSVhKArYB,Euphoric Sad Songs,spotify:artist:5KKpBU5eC2tJDzf0wmlRp2,RAYE,2020-11-20,https://i.scdn.co/image/ab67616d0000b2734c9971e21d5137f503388f5f,1,3,197573,https://p.scdn.co/mp3-preview/86e7bdabeef13380d7d527c83cfd69444f618861?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBUM72005576,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"uk contemporary r&b,uk pop,pop dance,uk dance,uk funky",0.749,0.82,7.0,-6.114,1.0,0.0478,0.0205,0.000685,0.0775,0.534,120.066,4.0,,Polydor Records,"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",530 +531,spotify:track:1yxq9qEfCssIhQGWJVS2rF,Fake It,spotify:artist:3dmuXOSgI3EMfcKhufthu3,Sore,spotify:album:3wIeX2V8JhCZaEbCui2X2V,Fake It,spotify:artist:3dmuXOSgI3EMfcKhufthu3,Sore,2021-07-16,https://i.scdn.co/image/ab67616d0000b273d17d45978ff01dba8cc1d349,1,1,147857,https://p.scdn.co/mp3-preview/62fbd12d15274cc56eaf028ff343beb94af8d54e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ROCRP2105616,spotify:user:bradnumber1,2021-08-08T09:26:31Z,romanian pop,0.768,0.795,5.0,-5.569,1.0,0.141,0.231,0.00613,0.173,0.718,112.059,4.0,,Universal Music Romania,"C © 2021 MediaPro Music, a division of Universal Music Romania, P ℗ 2021 MediaPro Music, a division of Universal Music Romania",531 +532,spotify:track:53QhPsIbjSd6mKdNMOTfE5,Last Night,spotify:artist:4UGMQyNcbGHYg5CDMKkSw3,Az Yet,spotify:album:3ChG0pQjLzXun4DNbqnDfp,90s R&B,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-09-26,https://i.scdn.co/image/ab67616d0000b273defddcc1c5b525859b81ebc8,1,43,267640,https://p.scdn.co/mp3-preview/d341851a4c2ecc5411469d18647dcd512a687216?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USLF29600017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,contemporary r&b,0.618,0.474,3.0,-10.574,0.0,0.0238,0.399,0.0,0.0882,0.385,82.036,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment,532 +533,spotify:track:1KcnJTiXJXAqW5bB7zpkBC,SummerThing!,"spotify:artist:4D75GcNG95ebPtNvoNVXhz, spotify:artist:30ejUciK31BCg0IVCbt1dW","AFROJACK, Mike Taylor",spotify:album:0MRRBtUQH6706AqLBYHkZI,SummerThing!,spotify:artist:4D75GcNG95ebPtNvoNVXhz,AFROJACK,2015-06-21,https://i.scdn.co/image/ab67616d0000b273179f08b16d968517d1ead2aa,1,1,235344,https://p.scdn.co/mp3-preview/b5d17a5aa1db5016ce1145b04ff1347eba7f8325?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,CYA221500045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,dutch house,edm,electro house,pop dance",0.707,0.782,0.0,-5.463,1.0,0.0613,0.0541,0.0,0.297,0.79,130.036,4.0,,Wall Recordings,"C © 2015 Wall Recordings, distributed by UM_ID, a division of Universal International Music B.V., P ℗ 2015 Wall Recordings, distributed by UM_ID, a division of Universal International Music B.V.",533 +534,spotify:track:4IC7QVcYO9Vuu35Oj5eQuM,Let's Talk About Sex,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,spotify:album:0H8s4eKxfgsAWQy7uKha1w,Blacks' Magic,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,1990-01-01,https://i.scdn.co/image/ab67616d0000b273f494b25ebfabd88ea2e1c3f8,1,10,213266,https://p.scdn.co/mp3-preview/a5b1559f9bb17a1bdb21767179f28cd5d26d8a7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20180412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop",0.862,0.533,6.0,-13.566,1.0,0.15,0.0501,0.0,0.227,0.777,106.928,4.0,,Universal Music Group,"C © 1990 The Island Def Jam Music Group, The Island Def Jam Music Group, P ℗ 1990 The Island Def Jam Music Group, The Island Def Jam Music Group",534 +535,spotify:track:1mP9bVQYDSUPDqUdMzm5nN,Country Bumpkin (Rerecorded),spotify:artist:3yFnqoyp1e54tZEY4ykvNB,Cal Smith,spotify:album:16f3MXNFnykQH35swewZyz,Cal Smith - His Very Best,spotify:artist:3yFnqoyp1e54tZEY4ykvNB,Cal Smith,2008-06-06,https://i.scdn.co/image/ab67616d0000b273fc050bae83ff756899090313,1,1,203773,https://p.scdn.co/mp3-preview/e40d4cce423c89ddc8e6c2d0d9bde0a1cbc9b262?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USDEI8304055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,classic oklahoma country",0.557,0.345,7.0,-14.07,1.0,0.0287,0.383,0.0046,0.334,0.518,98.442,4.0,,K-Tel,,535 +536,spotify:track:6PtXobrqImYfnpIxNsJApa,Bad (feat. Vassy) - Radio Edit,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:3gk0OYeLFWYupGFRHqLSR7, spotify:artist:7HqEmV7FeCi16bQyHMpIrF","David Guetta, Showtek, VASSY",spotify:album:6CvEd1L1KJZ8g3wIwCZYvF,Bad (feat. Vassy) [Radio Edit],"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:3gk0OYeLFWYupGFRHqLSR7, spotify:artist:7HqEmV7FeCi16bQyHMpIrF","David Guetta, Showtek, VASSY",2014-04-06,https://i.scdn.co/image/ab67616d0000b273ce9ffe310aa206be81d03bb6,1,1,170625,https://p.scdn.co/mp3-preview/febdb0afbc31ab7afe87a58c42f4bde6d5f7f044?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GB28K1400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,classic hardstyle,dutch house,edm,electro house,euphoric hardstyle,melbourne bounce,pop dance,progressive electro house,australian dance",0.614,0.972,5.0,-3.927,0.0,0.088,0.00125,0.0186,0.328,0.411,127.966,4.0,,Parlophone (France),"C © 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company, P ℗ 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company",536 +537,spotify:track:3Klfd4rsRO53fYpxmdQmYV,Heaven For Everyone - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:391ScNR3xKywWSpfDwP3n0,Made In Heaven - 2011 Remaster,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1995-11-06,https://i.scdn.co/image/ab67616d0000b2735f8c271d01157fdb59478f14,1,7,336160,https://p.scdn.co/mp3-preview/5a6d83268ab39da895d44843f77b1a411ec76fdd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBUM71106227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.593,0.425,0.0,-9.775,1.0,0.0288,0.29,1.34e-06,0.167,0.268,110.208,4.0,,EMI,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",537 +538,spotify:track:0wuTyhnC1JXVFLPoKSJm38,Gypsy Woman,spotify:artist:6YROFUbu5zRCHi2xkir5pk,Brian Hyland,spotify:album:1bj1joKg4WzJB2R1OZff7D,The Very Best Of Brian Hyland,spotify:artist:6YROFUbu5zRCHi2xkir5pk,Brian Hyland,1993-01-01,https://i.scdn.co/image/ab67616d0000b273f97a301c850b31cb9d54ad09,1,12,155266,https://p.scdn.co/mp3-preview/bbe25b3cf18820c599b4822a559916b5daf7ae15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USMC17047805,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,doo-wop,merseybeat,rock-and-roll",0.624,0.432,8.0,-16.069,0.0,0.0318,0.24,0.00181,0.228,0.913,107.064,4.0,,Geffen,"C © 1993 UMG Recordings, Inc., P This Compilation ℗ 1993 UMG Recordings, Inc.",538 +539,spotify:track:58mFu3oIpBa0HLNeJIxsw3,Heaven Is A Place On Earth,spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,spotify:album:4PLM698gAODdpx7Wy3LNPj,Heaven On Earth,spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,1987-10-05,https://i.scdn.co/image/ab67616d0000b273a50fa51325803da5ddb48659,1,1,247293,https://p.scdn.co/mp3-preview/814a22098ab3e9c01a74591c26051a3fde06bbcc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USMC18723313,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock",0.64,0.81,4.0,-10.19,1.0,0.033,0.031,2.22e-06,0.0492,0.804,122.868,4.0,,Geffen*,"C © 1987 MCA Records Inc., P ℗ 1987 UMG Recordings, Inc.",539 +540,spotify:track:2x0cu3RrmO7qPFRl13Cp2C,Dancing,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:74YHxVqwMmKwHfnxJ6Y9OU,Dancing,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2018-01-26,https://i.scdn.co/image/ab67616d0000b2735d98d1374cccd4d7d4ff1dc2,1,1,178880,https://p.scdn.co/mp3-preview/f74c88530191d68ab95d1cef8feb337a721be285?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB5KW1703925,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.497,0.706,6.0,-4.554,1.0,0.0371,0.0084,0.000165,0.325,0.528,110.038,4.0,,Liberator Music,"C 2018 Kylie Minogue/Darenote Limited under exclusive licence to BMG Rights Management (UK) Limited, P 2018 Kylie Minogue/Darenote Limited under exclusive licence to BMG Rights Management (UK) Limited",540 +541,spotify:track:3oXqk2a4oF0o1ZgnGxoEzW,Little Bad Girl,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:6MF9fzBmfXghAz953czmBC, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi","David Guetta, Taio Cruz, Ludacris",spotify:album:6gb2ElTs9F0IYPoW3XXo7B,TY.O,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,2011-01-01,https://i.scdn.co/image/ab67616d0000b273d7ed9ada47a0f517143771cd,1,11,193146,https://p.scdn.co/mp3-preview/78340034d11895d4dd8f3c6ac68b3968db489d17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GB28K1100020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,dance pop,pop,pop rap,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap",0.73,0.75,11.0,-4.878,0.0,0.0314,0.00595,0.0,0.31,0.514,127.005,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Universal Island Records, a division of Universal Music Operations Limited",541 +542,spotify:track:4DbUk1qwcz9KKcUY4t8f8u,Batdance,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:2FwzHgJ4XaPhC19Y0uL6SK,Batman,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1989-06-20,https://i.scdn.co/image/ab67616d0000b273dd64809bbf416dde80e80f99,1,9,373733,https://p.scdn.co/mp3-preview/d59e3db48ef61252362a1cfe125ef875fafd38a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USWB19900683,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.594,0.702,1.0,-9.894,1.0,0.0842,0.168,0.109,0.142,0.466,135.406,4.0,,Warner Records,"C © 1989 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1989 NPG Records, Inc. under exclusive license to Warner Records Inc.",542 +543,spotify:track:0byOqNZN9ailhoORv5Ps0Z,I Am a Rock,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,spotify:album:07RAGILF28QweYQSZasr5k,Sounds Of Silence,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,1966-01-17,https://i.scdn.co/image/ab67616d0000b27344a8aa7ac5c2e2defbfd702b,1,11,169520,https://p.scdn.co/mp3-preview/921718f3294dac1d6d4d9716bb185e4058472180?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM16501154,spotify:user:bradnumber1,2022-09-25T11:32:59Z,"classic rock,folk,folk rock,melancholia,mellow gold,rock,soft rock",0.66,0.611,0.0,-10.309,1.0,0.0392,0.423,1.11e-05,0.107,0.749,113.898,4.0,,Columbia,"P (P) Originally released 1966. All rights reserved by Columbia Records, a division of Sony Music Entertainment",543 +544,spotify:track:2CVBUIOpqAkOGDlRORvSYK,Listen People,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,spotify:album:4mK6pUS5somF93tMDs1HAZ,The Very Best Of Herman's Hermits,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,1996-03-06,https://i.scdn.co/image/ab67616d0000b27374d90041a4345681464be920,1,8,151066,https://p.scdn.co/mp3-preview/87eda689383d54c0b1da81e48b92550df166004f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,GBAYE6600132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock,rock-and-roll,singer-songwriter",0.499,0.156,9.0,-13.523,1.0,0.0429,0.783,0.0,0.351,0.439,119.553,4.0,,Parlophone UK,"C © 1997 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1997 Parlophone Records Ltd, a Warner Music Group Company",544 +545,spotify:track:4QMvxtZGcmvwWtmmoiRs5B,Will You Love Me Tomorrow,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,spotify:album:13MaoinwLDJqTHPMEr0efZ,Will You Still Love Me Tomorrow,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,2005,https://i.scdn.co/image/ab67616d0000b273181a4d84af4657a577c64799,1,1,160320,https://p.scdn.co/mp3-preview/9d453033b0eec2e9ecd5a396e85d4d4353b53f36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USACU0500004,spotify:user:bradnumber1,2022-06-30T00:56:21Z,"classic girl group,classic soul,doo-wop,motown,rock-and-roll,soul",0.513,0.379,0.0,-9.679,1.0,0.0314,0.686,2.62e-05,0.417,0.509,135.756,4.0,,Gusto Records,"C 2005 Gusto Records Inc, P 2005 Gusto Records Inc",545 +546,spotify:track:4ohEI9gzIH5mSK6R6aUssT,What It Feels Like for a Girl,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:1V342k6sinWc4y4R2iReOu,Music,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2000-09-19,https://i.scdn.co/image/ab67616d0000b273ae80b0a207008fe96637032c,1,8,283893,https://p.scdn.co/mp3-preview/b84cb29f237582a9ad51a41ab698b54416e160e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USWB10002378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.67,0.627,8.0,-9.497,1.0,0.0478,0.201,0.00161,0.154,0.582,104.988,4.0,,Warner Records,"C © 2000 Warner Records Inc., P ℗ 2000 Warner Records Inc.",546 +547,spotify:track:26VzOzsJvbFwSwwRFsIWDc,Takin' Care Of Business,spotify:artist:5q4AzEtCoYJyXjMMoEkSU5,Bachman-Turner Overdrive,spotify:album:6Cf2G7s7QbnNS6LWPGF1AB,20th Century Masters: The Millennium Collection: Best Of Bachman Turner Overdrive,spotify:artist:5q4AzEtCoYJyXjMMoEkSU5,Bachman-Turner Overdrive,2000-01-01,https://i.scdn.co/image/ab67616d0000b27325b149324f9f587fe8c5ae89,1,3,291733,https://p.scdn.co/mp3-preview/083f1b16036f2b8b2687cd5fb1c4c9a6bfb18dbc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUMG9900508,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic canadian rock,classic rock,country rock,folk rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.731,0.921,5.0,-5.69,1.0,0.05,0.0543,0.0,0.183,0.961,130.19,4.0,,Universal Strategic Marketing,"C © 2000 The Island Def Jam Music Group A Universal Company, P ℗ 2000 The Island Def Jam Music Group",547 +548,spotify:track:1eOJAiCKFuMda0fPRvjcuc,Hold My Hand,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,spotify:album:2xVeccmEU0zklK4XSKiDCW,I Cry When I Laugh,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,2015,https://i.scdn.co/image/ab67616d0000b27339588f221861ee72b40b755c,1,2,227343,https://p.scdn.co/mp3-preview/7ad362f24fbb6544eff31bada8e53ce43352853a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBAHS1500049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.65,0.823,0.0,-5.717,1.0,0.0289,0.00159,0.0,0.0776,0.432,123.018,4.0,,Atlantic Records UK,"C © 2015 Atlantic Records UK Ltd, a Warner Music Group Company, P ℗ 2015 Atlantic Records UK Ltd, a Warner Music Group Company, except track 9 2013 Atlantic Records UK Ltd and track 13 2015 Disturbing London Records Limited under exclusive licence to Parlophone Records Limited",548 +549,spotify:track:5l4tFsZoMrQ8uDTGy699m7,Confide in Me - Radio Mix,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:4oaGBehVCW8w4Ekf8sTbqb,The Best of Kylie Minogue,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2012-05-28,https://i.scdn.co/image/ab67616d0000b2732775ed6b5267d46354f4476a,1,15,265826,https://p.scdn.co/mp3-preview/9b826ce3c8c4121083f70c85b2beb470c5cabd2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBARL9400209,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.578,0.738,10.0,-6.83,0.0,0.0398,0.0345,0.0347,0.0778,0.535,102.863,4.0,,WM Australia,"C © 2014 KDB Pty Limited, P ℗ 2014 KDB Pty Limited",549 +550,spotify:track:29q1zXU2JcoBSV9lNIkgnw,Strong - High Contrast Remix,"spotify:artist:3Bd1cgCjtCI32PYvDC3ynO, spotify:artist:0bxHci3JIhhKA53n8rH3tT","London Grammar, High Contrast",spotify:album:6eePUhCGgrqu1Fh9cE2J3c,Strong,spotify:artist:3Bd1cgCjtCI32PYvDC3ynO,London Grammar,2013-01-01,https://i.scdn.co/image/ab67616d0000b273bcd93e80a8b8fcc6e369f485,1,2,330173,https://p.scdn.co/mp3-preview/8137249baf6a010aa52727dc098102c753e52344?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBCEN1300619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,nottingham indie,drum and bass,uk dance,uk dnb",0.405,0.938,10.0,-3.259,1.0,0.0382,0.00271,0.113,0.118,0.18,173.001,4.0,,Dew Process,"C © 2013 Metal & Dust Recordings Ltd / Ministry of Sound Recordings Ltd., P ℗ 2013 Metal & Dust Recordings Ltd / Ministry of Sound Recordings Ltd., Marketed and distributed under exclusive license by Dew Process/Universal Music Australia Pty Ltd",550 +551,spotify:track:31H6au3jhblhr6MMJiXnCq,"Hungry Eyes - From ""Dirty Dancing"" Soundtrack",spotify:artist:2ekjTXgjxbWwBX5lTAj4DU,Eric Carmen,spotify:album:02CxAhdSRhzcm6XQ8m5RNp,The Definitive Collection,spotify:artist:2ekjTXgjxbWwBX5lTAj4DU,Eric Carmen,1997,https://i.scdn.co/image/ab67616d0000b27356daa802ddbaedf04e8123cc,1,17,251066,https://p.scdn.co/mp3-preview/54a8016e755e79be5b84fbeafe61685e48b18e22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USRC19708312,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock,yacht rock",0.712,0.549,5.0,-9.484,1.0,0.0254,0.011,0.0,0.118,0.552,109.882,4.0,,Arista,"P This compilation (P) 1997 Arista Records LLC, a division of Sony Music Entertainment",551 +552,spotify:track:4591VqUIXysNlmI5NcAIUd,My Guy,spotify:artist:1cjZk1xXn3YCToNg3uJpA7,Mary Wells,spotify:album:6pUoPt9A6P1G8YJ5vw6GBP,Mary Wells Sings My Guy,spotify:artist:1cjZk1xXn3YCToNg3uJpA7,Mary Wells,1964,https://i.scdn.co/image/ab67616d0000b2735b50e493598153b926ded824,1,3,174440,https://p.scdn.co/mp3-preview/cbfba1287bde67cc96ee13d550d43a947ac2f8f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USMO16400486,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,soul,southern soul",0.691,0.581,10.0,-7.85,1.0,0.065,0.557,4.62e-05,0.147,0.91,126.615,4.0,,UNI/MOTOWN,"C © 1964 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2014 Motown Records, a Division of UMG Recordings, Inc.",552 +553,spotify:track:5ZHOiRqKOzgFMfMAu8cwzp,(You're My) Soul And Inspiration,spotify:artist:4b0WsB47XCa9F83BmwQ7WX,The Righteous Brothers,spotify:album:5CFmNamq1ceXn8RFJ9i7p6,The Very Best Of The Righteous Brothers - Unchained Melody,spotify:artist:4b0WsB47XCa9F83BmwQ7WX,The Righteous Brothers,1990,https://i.scdn.co/image/ab67616d0000b2731682e25596b8ecccb47644d1,1,3,201253,https://p.scdn.co/mp3-preview/58a810ebaa5396fd6d5ccadfc74adbffa817d353?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USPG19090024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,folk rock,mellow gold,motown,rock-and-roll,rockabilly",0.17,0.387,11.0,-12.791,1.0,0.0436,0.781,0.0,0.243,0.246,187.468,4.0,,Verve,"C © 1990 The Verve Music Group, a Division of UMG Recordings, Inc., P This Compilation ℗ 1965 The Verve Music Group, a Division of UMG Recordings, Inc.",553 +554,spotify:track:5WNF8VIyabNOd3mVKVKtfL,Tennis Court,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,spotify:album:3Ywlsvgu3H6L3q9NHydNR3,Pure Heroine,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,2013-01-01,https://i.scdn.co/image/ab67616d0000b27387d0bed9a1173c7fdc6f85c4,1,1,198907,https://p.scdn.co/mp3-preview/7ca6e3b780c6c1ad469b9cec692f85cc2cf7fe80?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,NZUM71300023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,metropopolis,nz pop,pop",0.762,0.552,0.0,-8.632,1.0,0.0594,0.0144,0.000242,0.236,0.414,90.003,4.0,,Universal Music Group,"C © 2013 Universal Music NZ Ltd., P ℗ 2013 Universal Music NZ Ltd.",554 +555,spotify:track:7COfe3P7KgfwDwIRB8LIDw,Mi Gente,"spotify:artist:1vyhD5VmyZ7KMfW5gqLgo5, spotify:artist:4RSyJzf7ef6Iu2rnLdabNq","J Balvin, Willy William",spotify:album:5kprdYds6oZb4iSldfflOT,Vibras,spotify:artist:1vyhD5VmyZ7KMfW5gqLgo5,J Balvin,2018-05-25,https://i.scdn.co/image/ab67616d0000b273dda2b86297d3bfb519f8b785,1,2,185040,https://p.scdn.co/mp3-preview/4bc3ca199b153f55091c04cd90df12f20a555489?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,FR22F1701790,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggaeton,reggaeton colombiano,trap latino,urbano latino,pop dance",0.548,0.703,11.0,-4.838,0.0,0.0772,0.0168,2.38e-05,0.143,0.286,104.666,4.0,,UMLE - Latino,"C © 2018 UMG Recordings, Inc., P ℗ 2018 UMG Recordings, Inc.",555 +556,spotify:track:1sTsuZTdANkiFd7T34H3nb,Human,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,spotify:album:0Ug5scDXUIgGN8yanDBLQw,Day & Age - Bonus Tracks,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,2008-11-18,https://i.scdn.co/image/ab67616d0000b273a43cd43ef4f3b2d5413b17f9,1,2,245373,https://p.scdn.co/mp3-preview/6e31b363a737687aa5800c9ca1a378b95b37b84c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USUM70837367,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,modern rock,permanent wave,rock",0.557,0.8,10.0,-8.477,1.0,0.0601,0.00132,0.0012,0.0906,0.582,135.47,4.0,,Island Records,"C © 2008 UMG Recordings, Inc., P ℗ 2008 UMG Recordings, Inc.",556 +557,spotify:track:6YR2MkzMhojHBmW1TbXtZO,Here I Am (Come And Take Me),spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,spotify:album:05owfigVGpgPe7RKJG1hum,The Very Best Of,spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,2000,https://i.scdn.co/image/ab67616d0000b273f1dd69d7399290cc25324706,1,2,242093,https://p.scdn.co/mp3-preview/10578b2cb4dc9278173de4e169632f793655f0f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAAA9000459,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,uk reggae",0.802,0.621,5.0,-7.932,0.0,0.0377,0.0975,0.0256,0.0627,0.81,95.906,4.0,,Virgin Records,"C © 2000 Virgin Records America, Inc., P This Compilation ℗ 2000 Virgin Records America, Inc.",557 +558,spotify:track:3BOsfVWlwYhXvzO4WJExEa,Envy,"spotify:artist:2aMAN8kMJ7eUOAuPUYOwI7, spotify:artist:52qKfVcIV4GS8A8Vay2xtt","Twiztid, Ice Nine Kills",spotify:album:2Tv66dVGxgIR7EuXmtpPnS,Envy,"spotify:artist:2aMAN8kMJ7eUOAuPUYOwI7, spotify:artist:52qKfVcIV4GS8A8Vay2xtt","Twiztid, Ice Nine Kills",2021-05-28,https://i.scdn.co/image/ab67616d0000b273021b19c80e16cc0c7d6413d6,1,1,237862,https://p.scdn.co/mp3-preview/681f949aac906f2d93fcb4587525d552471df3d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USA2P2113589,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"horrorcore,rap rock,metalcore",0.64,0.917,7.0,-4.98,1.0,0.0473,0.000111,1.59e-05,0.137,0.405,124.964,4.0,,Majik Ninja Entertainment,"C © 2021 Majik Ninja Entertainment, P ℗ 2021 Majik Ninja Entertainment",558 +559,spotify:track:32lF1rsInDTdK6Av3KdfaY,You Get What You Give,spotify:artist:0Grjlu7ncIuCaSYvCs9fcd,New Radicals,spotify:album:2AbdLTMFF9UaDoEdJPva4g,Maybe You've Been Brainwashed Too,spotify:artist:0Grjlu7ncIuCaSYvCs9fcd,New Radicals,1998-01-01,https://i.scdn.co/image/ab67616d0000b27387e512c79842c7ed2a8f2035,1,2,300773,https://p.scdn.co/mp3-preview/f60a92f1f0759c66eb1092cd6cd09aab791a6518?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19858327,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.621,0.901,2.0,-5.396,1.0,0.0302,0.17,0.0,0.0875,0.744,113.967,4.0,,Geffen,"C © 1998 MCA Records Inc., P ℗ 1998 UMG Recordings, Inc.",559 +560,spotify:track:5MXXbGYNmRHR7ULMvZYo5R,Every 1's a Winner - Single Version,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,spotify:album:2MdCe2CS9EcdJ9V20TKzxo,Every 1's a Winner,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,1978,https://i.scdn.co/image/ab67616d0000b273b179d40cdaa53d103df29e28,1,1,289266,https://p.scdn.co/mp3-preview/16c1c840b15580565b261ef1449dbc2c58add861?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBAYE0900555,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.727,0.548,10.0,-7.393,1.0,0.0291,0.0621,0.516,0.133,0.929,107.826,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",560 +561,spotify:track:1cV2ZlkzRvW3cXkW4mTduE,Fishin' in the Dark,spotify:artist:7y70dch6JuuuNnwlsOQvwW,Nitty Gritty Dirt Band,spotify:album:3d1juyGb4yIxMQ8Sh8UP7B,More Great Dirt: The Best of the Nitty Gritty Dirt Band,spotify:artist:7y70dch6JuuuNnwlsOQvwW,Nitty Gritty Dirt Band,1989-01-06,https://i.scdn.co/image/ab67616d0000b273a1b330ff81a5bbe2aa35d30a,1,6,202786,https://p.scdn.co/mp3-preview/5646b7a32792d3033b8c51a627662bfedf62338d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USWB10101477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,country rock,0.771,0.283,2.0,-16.326,1.0,0.0444,0.198,0.0,0.0888,0.906,77.756,4.0,,Warner Records,"C © 1989 Warner Records Inc., P ℗ 1989 Warner Records Inc.",561 +562,spotify:track:4kbj5MwxO1bq9wjT5g9HaA,Shut Up and Dance,spotify:artist:6DIS6PRrLS3wbnZsf7vYic,WALK THE MOON,spotify:album:3mNoFlD1wsoXfkljfFzExT,TALKING IS HARD,spotify:artist:6DIS6PRrLS3wbnZsf7vYic,WALK THE MOON,2014-12-02,https://i.scdn.co/image/ab67616d0000b27343294cfa2688055c9d821bf3,1,3,199080,https://p.scdn.co/mp3-preview/4309fadd9a0d573c1fafcca507e024b3bb51266b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,USRC11401949,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,modern alternative rock,modern rock,neo mellow,pop rock",0.578,0.866,1.0,-3.804,1.0,0.0619,0.00701,0.0,0.257,0.619,128.038,4.0,,RCA Records Label,"P (P) 2014 RCA Records, a division of Sony Music Entertainment",562 +563,spotify:track:4X8KnalmdKJE4C0vMb8CmD,Homecoming,spotify:artist:6we2CCxymhh4v30lZRhhpa,Hey Monday,spotify:album:5BNmZXVJX3h8WbtXyRTRln,Hold On Tight,spotify:artist:6we2CCxymhh4v30lZRhhpa,Hey Monday,2008-10-07,https://i.scdn.co/image/ab67616d0000b273dd1d9e19cfe34dac93983739,1,3,238733,https://p.scdn.co/mp3-preview/7ed0314db4d00d664e339aecad532e5d4d87cb77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USSM10803206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,neon pop punk,pixie,pop emo,pop punk",0.393,0.958,2.0,-2.102,1.0,0.0871,0.00966,0.0,0.214,0.323,150.074,4.0,,Decaydance/Columbia,P (P) 2008 SONY BMG MUSIC ENTERTAINMENT,563 +564,spotify:track:762B4bOcXF7I2Y8UlKTyTy,Chiquitita,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:7iLuHJkrb9KHPkMgddYigh,Voulez-Vous,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1979,https://i.scdn.co/image/ab67616d0000b273aa22899360d8ba6704732dec,1,8,326320,https://p.scdn.co/mp3-preview/4bcd305c73b4f060989624769b1b3c9cd4223eb6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,SEAYD7901080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.5,0.554,9.0,-8.108,1.0,0.0354,0.734,3.72e-06,0.312,0.372,84.229,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",564 +565,spotify:track:3Y0VSWTyXPeOevtxyLSoYl,"Someday, Someday - Single Version",spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,spotify:album:072utlEOllVDlIr9hSsqR7,"Someday, Someday",spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,2005-11-02,https://i.scdn.co/image/ab67616d0000b2734c2b9e09c361737d3f2f4eec,1,1,221680,https://p.scdn.co/mp3-preview/a65d4f0c18e52d5e40c803cab0d738d5ad3cee42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUWA00413591,spotify:user:bradnumber1,2022-02-03T10:23:28Z,"australian pop,australian rock",0.565,0.56,7.0,-5.257,1.0,0.0268,0.00945,1.21e-06,0.305,0.289,91.967,4.0,,WM Australia,"C © 2004 Warner Music Australia Pty Limited, P ℗ 2004 Warner Music Australia",565 +566,spotify:track:42ydLwx4i5V49RXHOozJZq,Scars To Your Beautiful,spotify:artist:2wUjUUtkb5lvLKcGKsKqsR,Alessia Cara,spotify:album:2AGNF8r2y8HL85yVk2bwmS,Know-It-All (Deluxe),spotify:artist:2wUjUUtkb5lvLKcGKsKqsR,Alessia Cara,2016-03-11,https://i.scdn.co/image/ab67616d0000b2730a48794d471447a030998815,1,10,230226,https://p.scdn.co/mp3-preview/da7510a6987187086774a17a3f79cf6752ff1f87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USUM71506811,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.319,0.739,0.0,-5.74,1.0,0.272,0.0285,0.0,0.111,0.449,194.169,4.0,,"EP Entertainment, LLC / Def Jam","C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",566 +567,spotify:track:2TjfpzoOp8Ruc23G1iZ5Kv,Love You So,spotify:artist:0orxtneN4LcJWNxbLXtMZu,Ron Holden,spotify:album:1Md2YPIE7laoiqIqKBW5MH,Love You So..,spotify:artist:0orxtneN4LcJWNxbLXtMZu,Ron Holden,2012-11-01,https://i.scdn.co/image/ab67616d0000b273c86f8baced71d684dcf1c2c1,1,1,207840,https://p.scdn.co/mp3-preview/0de562849140fcb852c2b490297c54b25fa61ae0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USA561450342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.446,0.399,3.0,-6.531,1.0,0.0519,0.837,7.37e-06,0.0982,0.56,88.805,3.0,,Vintage Masters Inc.,C (C) 2012 Vintage Masters Inc.,567 +568,spotify:track:2bvzxeD1hPWEYotw40Euq9,Wishing Well,spotify:artist:6RGxLsQUoGk5PLyMVwb3yE,Sananda Maitreya,spotify:album:0nw38yniBfbluS93FdYcbE,Introducing The Hardline According To Sananda Maitreya,spotify:artist:6RGxLsQUoGk5PLyMVwb3yE,Sananda Maitreya,1987-07-06,https://i.scdn.co/image/ab67616d0000b273e4297423c8f4d8adfd3b7f12,1,3,210466,https://p.scdn.co/mp3-preview/c2514f616ada1a8e4c3db11c4fbe028384fca9cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBBBN8702033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.855,0.461,10.0,-13.096,0.0,0.0564,0.0965,0.0,0.201,0.833,104.963,4.0,,Columbia,P (P) 1987 Sony Music Entertainment (UK) Ltd.,568 +569,spotify:track:439nrLtmKb4iAZPNJXWfkX,Shiny Shiny,spotify:artist:5CwI4SjmuQ6T3d3pYG1LL3,Haysi Fantayzee,spotify:album:5PYXzoDdweL7klEc4kSCxW,Battle Hymns For Children Singing,spotify:artist:5CwI4SjmuQ6T3d3pYG1LL3,Haysi Fantayzee,1982,https://i.scdn.co/image/ab67616d0000b273a522a5ca6aab75cffe76c444,1,1,222546,https://p.scdn.co/mp3-preview/9f92e2681df891a83d0cfc8ac7792e6cbe6a1a4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USRC18307996,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.816,0.885,5.0,-5.135,1.0,0.0957,0.229,2.19e-06,0.028,0.964,100.018,4.0,,Sony Music UK,P Tracks 1-15 & 17 (P) 1982; Tracks 16 & 18 (P) 1983 Sony Music Entertainment UK Limited,569 +570,spotify:track:0827eActpDYORuhgvWB0oY,Brand New Me,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,spotify:album:3qqhNVbjLFNdLviBFrFwCa,Girl On Fire,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2012-11-26,https://i.scdn.co/image/ab67616d0000b2739f76cf235d4b3c3403cbbf5b,1,2,233560,https://p.scdn.co/mp3-preview/6412e8e8e8a63c22423d5912fa125da23bee1814?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USRC11201314,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b",0.383,0.328,0.0,-12.604,1.0,0.0605,0.739,0.000105,0.152,0.154,145.222,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",570 +571,spotify:track:749yLlMl2L5WBPU04vfEgA,Touch It,spotify:artist:7peqq4aACFkBwIWGG0YRJ9,Monifah,spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,29,285293,https://p.scdn.co/mp3-preview/1cc34ece85dee6005b9c74f739b5a1bf73936ef9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR19801497,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing,r&b",0.859,0.508,8.0,-9.101,0.0,0.0746,0.0388,0.0434,0.115,0.812,115.46,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",571 +572,spotify:track:2GRnDQCkcN6BoujfUgywOW,Steal My Sunshine,spotify:artist:48myrQPAhsexXZVSN5YpL6,Len,spotify:album:2jDYpkR8306SzqpZzzNVZr,GO Music From The Motion Picture,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1999,https://i.scdn.co/image/ab67616d0000b2736e74f5fa891ae07c7c2da59c,1,2,248466,https://p.scdn.co/mp3-preview/ec41191a654f0fedd87c196e6f95e23a474fec22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM19900189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.412,0.953,4.0,-8.103,1.0,0.533,0.457,0.0,0.232,0.553,191.718,4.0,,Work/Sony Music Soundtrax,P (P) 1999 Sony Music Entertainment Inc.,572 +573,spotify:track:6sl4KgYIxVKiGOTZxtjcpj,4 In The Morning,spotify:artist:4yiQZ8tQPux8cPriYMWUFP,Gwen Stefani,spotify:album:5I878Pc5RZzi5mRNyXv2Mp,The Sweet Escape (UK Only Version),spotify:artist:4yiQZ8tQPux8cPriYMWUFP,Gwen Stefani,2006-01-01,https://i.scdn.co/image/ab67616d0000b27370085aea85056dde8570c88d,1,6,291106,https://p.scdn.co/mp3-preview/6fa5a97b2feca8dba0d7ef75760479c93257d62c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70618695,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.698,0.826,10.0,-6.261,1.0,0.031,0.2,0.00013,0.114,0.502,92.409,4.0,,Universal Music Australia Pty. Ltd.,"C (C) 2006 Interscope Records, P (P) 2006 Interscope Records",573 +574,spotify:track:2jRGnaJc5ttlJFgGN0dBY9,(You're The) Devil In Disguise,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:7mxsNoS5WUrhkW5gPYLFHo,Elvis Forever: The Best of Elvis Presley,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2017-07-27,https://i.scdn.co/image/ab67616d0000b273cf6eb0034792801734305e5b,2,2,140306,https://p.scdn.co/mp3-preview/9b74743d059f5ae161f6bfa48b72a9b6abf5c898?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC16305834,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.483,0.604,5.0,-13.413,1.0,0.126,0.542,0.000401,0.301,0.877,122.606,4.0,,RCA/Legacy,"P This compilation (P) 2017 RCA Records, a division of Sony Music Entertainment",574 +575,spotify:track:67HxeUADW4H3ERfaPW59ma,Love Me Two Times,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,spotify:album:6v5IVMmY1IvWtbfnQoiFSf,Strange Days,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,1967-09-25,https://i.scdn.co/image/ab67616d0000b27386339e6cd71cc2a167451ee5,1,3,195106,https://p.scdn.co/mp3-preview/82a5c91eac12bf97658f420cd3b4dba06a5b0141?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USEE19900736,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,classic rock,hard rock,psychedelic rock,rock",0.684,0.698,9.0,-6.219,1.0,0.041,0.332,5.16e-06,0.122,0.839,132.846,4.0,,Rhino/Elektra,"C © 2006 Elektra Entertainment Co., P ℗ 2006 Elektra Entertainment Co.",575 +576,spotify:track:6AKwq3GXDJbLQ1wkBlDf3T,Walking On Air,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:4lFDt4sVpCni9DRHRmDjgG,PRISM (Deluxe),spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2013-01-01,https://i.scdn.co/image/ab67616d0000b273078cfcd17022e7fac7f59a1d,1,4,222448,https://p.scdn.co/mp3-preview/587684fa4789494b55c6e8b891129724f62d64bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71311294,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.634,0.906,6.0,-4.834,0.0,0.0397,0.00165,0.0,0.198,0.829,128.015,4.0,,Universal Music Group,"C © 2013 Capitol Records, LLC, P ℗ 2013 Capitol Records, LLC",576 +577,spotify:track:5619Ojc6t9evEEs3B7Drhe,Shake It,spotify:artist:7vXwfZyDp3spzIVNXDaTPN,Metro Station,spotify:album:2tZnyjZ6Orm55gE8bqJ3UG,Metro Station,spotify:artist:7vXwfZyDp3spzIVNXDaTPN,Metro Station,2007-09-18,https://i.scdn.co/image/ab67616d0000b273bcd25f2bbe505682863c3df2,1,4,179946,https://p.scdn.co/mp3-preview/e292fb1b5afa7fb1c6e528ae4427e2a56de8872b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM10702537,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropowerpop,neon pop punk,pixie,pop punk",0.618,0.955,4.0,-3.836,1.0,0.0798,0.00221,3.09e-06,0.486,0.79,150.034,4.0,,Red Ink,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT,577 +578,spotify:track:2Cb2l4UoXynCHCeCYHRZN8,Stand By Your Man,spotify:artist:1LFKKuzn302wp15dYH28id,Tammy Wynette,spotify:album:1m4lP2IzV8Z1oEUYMHMClr,Stand By Your Man,spotify:artist:1LFKKuzn302wp15dYH28id,Tammy Wynette,1968,https://i.scdn.co/image/ab67616d0000b2738c66ab65968b335b7847a202,1,1,157893,https://p.scdn.co/mp3-preview/42baa8a0b5d16114cdc5825fa48740f660590d8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USSM16801333,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,country dawn,nashville sound",0.563,0.331,9.0,-9.681,1.0,0.0283,0.776,0.000846,0.125,0.608,105.779,4.0,,Epic/Legacy,"P Originally recorded 1968, originally released 1968 (P) 1999 SONY BMG MUSIC ENTERTAINMENT",578 +579,spotify:track:3MjUtNVVq3C8Fn0MP3zhXa,...Baby One More Time,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:3WNxdumkSMGMJRhEgK80qx,...Baby One More Time (Digital Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,1999-01-12,https://i.scdn.co/image/ab67616d0000b2738e49866860c25afffe2f1a02,1,1,211066,https://p.scdn.co/mp3-preview/174e01719c3b06ee1437cb13f892e539df14b6d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USJI19810404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.759,0.699,0.0,-5.745,0.0,0.0307,0.202,0.000131,0.443,0.907,92.96,4.0,,Jive,P (P) 1999 Zomba Recording LLC,579 +580,spotify:track:51PgB7XHoLwTRA4hUaqrqU,Stairway to Heaven - Remastered,spotify:artist:5N6GwJzOcOY5kv8p0NjhYL,Neil Sedaka,spotify:album:4LEVq549JUbYQmzma1NzEl,The Very Best Of Neil Sedaka,spotify:artist:5N6GwJzOcOY5kv8p0NjhYL,Neil Sedaka,2001-08-06,https://i.scdn.co/image/ab67616d0000b273ac2be6ed6b32bfad5f140df5,1,4,159773,https://p.scdn.co/mp3-preview/8555ee019895a09dad25fef77291992aca731fd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,USRC10100023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,bubblegum pop,easy listening,rockabilly,soft rock",0.5,0.727,5.0,-7.531,1.0,0.0327,0.658,0.0,0.249,0.898,127.927,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment,580 +581,spotify:track:5JGEAz15LkPoOtFHttDtVs,With Or Without You - Remastered 2007,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:4mULDK6YXrFXTfSwvwm4M3,The Joshua Tree,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1987-03-10,https://i.scdn.co/image/ab67616d0000b273e2e8f804c2cdd5b3815adbf9,1,3,295520,https://p.scdn.co/mp3-preview/9985838e7b86eba6cf5ffe3c72b1b4dd3ada5eee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBUM70709792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.538,0.432,2.0,-11.882,1.0,0.0295,0.000185,0.309,0.139,0.116,110.181,4.0,,Universal-Island Records Ltd.,"C © 2007 Universal-Island Records Ltd., P ℗ 2007 Universal-Island Records Ltd.",581 +582,spotify:track:5TvjCpzwTMoySxj6kHcbo4,Old Me,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:5Fwa26r9uopk0xRjnUnnQO,Old Me,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2020-02-21,https://i.scdn.co/image/ab67616d0000b27381ed664c19da24979e5a3ca9,1,1,184666,https://p.scdn.co/mp3-preview/8f7620dd91bd51c14ed8730246b216aa1d0b7815?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG12000295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.726,0.62,0.0,-3.752,1.0,0.0469,0.316,0.0,0.279,0.466,127.9,4.0,,5 Seconds of Summer/Interscope Records,"C © 2020 5 Seconds of Summer, under exclusive license to Interscope Records, P ℗ 2020 5 Seconds of Summer, under exclusive license to Interscope Records",582 +583,spotify:track:07Oz5StQ7GRoygNLaXs2pd,Good as Hell (feat. Ariana Grande) - Remix,"spotify:artist:56oDRnqbIiwx4mymNEv7dS, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR","Lizzo, Ariana Grande",spotify:album:1k1HuvFs562Z3CCiSYhtc1,Good as Hell (feat. Ariana Grande) [Remix],"spotify:artist:56oDRnqbIiwx4mymNEv7dS, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR","Lizzo, Ariana Grande",2016,https://i.scdn.co/image/ab67616d0000b27383689afe01c228ceeef579c5,1,1,159011,https://p.scdn.co/mp3-preview/d2fa400836011c983e5447560d45b024e5d8efc7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USAT21906086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"escape room,minnesota hip hop,pop,trap queen,pop",0.668,0.892,5.0,-3.001,0.0,0.0645,0.298,0.0,0.735,0.478,95.927,4.0,,Nice Life/Atlantic,"C 2016 © 2019 Nice Life Recording Company and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P 2016 ℗ 2019 Nice Life Recording Company and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",583 +584,spotify:track:24s6yppvGO5he6wRwCaGrr,That Girl,"spotify:artist:3aTuTR5Nf6pVW3837q2ZL7, spotify:artist:5EvFsr3kj42KNv97ZEnqij","Maxi Priest, Shaggy",spotify:album:7pQBEwqMuSDCzqCiEOBDIi,The Best Of Shaggy,spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,2008-01-01,https://i.scdn.co/image/ab67616d0000b2735e6613d5189af7fe64118add,1,4,240946,https://p.scdn.co/mp3-preview/ecf2db5212d60dac004e5924bade5871635796b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USVI29600012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lovers rock,reggae,reggae fusion,dance pop,pop rap,reggae fusion",0.667,0.698,5.0,-7.35,0.0,0.119,0.056,0.0,0.335,0.662,138.654,4.0,,Virgin Records,"C © 2008 Virgin Records America, Inc., P This Compilation ℗ 2008 Virgin Records America, Inc.",584 +585,spotify:track:4bp2iZy7UiNoOeJaJNl0H6,Wind It Up,spotify:artist:4yiQZ8tQPux8cPriYMWUFP,Gwen Stefani,spotify:album:5I878Pc5RZzi5mRNyXv2Mp,The Sweet Escape (UK Only Version),spotify:artist:4yiQZ8tQPux8cPriYMWUFP,Gwen Stefani,2006-01-01,https://i.scdn.co/image/ab67616d0000b27370085aea85056dde8570c88d,1,1,189586,https://p.scdn.co/mp3-preview/2ec8464a8d695fea06c90d1f834ee34a1f5fe66c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70614830,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.961,0.9,8.0,-6.874,1.0,0.0678,0.309,0.000199,0.354,0.95,120.006,4.0,,Universal Music Australia Pty. Ltd.,"C (C) 2006 Interscope Records, P (P) 2006 Interscope Records",585 +586,spotify:track:0BYCOtoq9BOcsqH4eqpotO,Homesick,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,spotify:album:5ZvaQq8cnyHgYzPOkgMLR7,From The Inside Out,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,2010-08-23,https://i.scdn.co/image/ab67616d0000b2739acfbc65fc1d5a47a7c5bff0,1,4,208573,https://p.scdn.co/mp3-preview/5dd9f9b621ef7b9a8d01e97bb564a93d1a7395db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUBM01000197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,nz christian,nz pop",0.694,0.753,5.0,-3.659,1.0,0.0355,0.02,0.0,0.166,0.374,114.971,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd. except track 13 (P) 2010 Move The Crowd Records,586 +587,spotify:track:0qOnSQQF0yzuPWsXrQ9paz,Stereo Hearts (feat. Adam Levine),"spotify:artist:4IJczjB0fJ04gs4uvP0Fli, spotify:artist:4bYPcJP5jwMhSivRcqie2n","Gym Class Heroes, Adam Levine",spotify:album:2mumCpGmuE9iDeOvMx6XrB,The Papercut Chronicles II,spotify:artist:4IJczjB0fJ04gs4uvP0Fli,Gym Class Heroes,2011-11-11,https://i.scdn.co/image/ab67616d0000b27318b8088fe0c3dbf78398b55a,1,4,210960,https://p.scdn.co/mp3-preview/a62b535109dff39bdcc859c6fd2160e927d4b1c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USAT21101071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,deep talent show",0.646,0.795,9.0,-3.293,1.0,0.0976,0.0319,0.0,0.267,0.796,89.99,4.0,,Decaydance/Fueled By Ramen,"C © 2011 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2011 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States.",587 +588,spotify:track:0PGwM5vdr5fMejx0IIAYXj,I Want You Back,spotify:artist:2iE18Oxc8YSumAU232n4rW,The Jackson 5,spotify:album:2oJRp9GV4zpFzpnneGZqZH,20th Century Masters: The Millennium Collection: Best Of The Jackson 5,spotify:artist:2iE18Oxc8YSumAU232n4rW,The Jackson 5,1999-01-01,https://i.scdn.co/image/ab67616d0000b273ea76a3da8040ff4dd01c4a86,1,1,180893,https://p.scdn.co/mp3-preview/504a5a3f9e28a41907c91d82a811017559e3c0d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO19400306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.674,0.584,8.0,-8.204,1.0,0.0318,0.466,0.00195,0.187,0.96,98.293,4.0,,Motown,"C © 1999 Motown Record Company L.P., P This Compilation ℗ 1999 Universal Motown Records, a division of UMG Recordings, Inc.",588 +589,spotify:track:6fS0rs4tiEgBMEB2Ln586G,LoveStoned / I Think She Knows - Radio Edit,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:1tze7ApbUfn71mNcaixlX6,LoveStoned,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2007-06-29,https://i.scdn.co/image/ab67616d0000b2739c42ec2f2148d3c62ac9887c,1,1,325866,https://p.scdn.co/mp3-preview/97d025620c689506bf57f29294762323806b1575?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USJI10700464,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.827,0.66,10.0,-6.443,0.0,0.0529,0.379,1.65e-05,0.277,0.854,121.236,4.0,,Jive,P (P) 2007 Zomba Recording LLC,589 +590,spotify:track:4c4jJJoaiY21t2TyRZgdWS,Magic Carpet Ride,spotify:artist:1WRM9i067hd2ujxxi8FI3m,Steppenwolf,spotify:album:2Y5GORWYwVAZ8msuEuh5FN,The Second,spotify:artist:1WRM9i067hd2ujxxi8FI3m,Steppenwolf,1968-10-01,https://i.scdn.co/image/ab67616d0000b273626d1849afa1bc27a8743dfe,1,7,271573,https://p.scdn.co/mp3-preview/46f4acfeccc879951d729c37777b6c8779e69c90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USMC16819955,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,blues rock,classic canadian rock,classic rock,hard rock,proto-metal,rock,singer-songwriter,soft rock",0.64,0.651,4.0,-14.981,0.0,0.0517,0.142,0.28,0.0341,0.801,111.676,4.0,,Geffen*,"C © 1968 Geffen Records, P ℗ 1968 Geffen Records",590 +591,spotify:track:0qkHoRTBCcbDoxrbj9tQrI,Shop Around,spotify:artist:6TqQLejnHXMGr7KcegxUND,The Miracles,spotify:album:0jUGD14lMvjph6nODpnyXQ,Hi We're The Miracles,spotify:artist:6TqQLejnHXMGr7KcegxUND,The Miracles,1961-01-01,https://i.scdn.co/image/ab67616d0000b273e7ac537510967ab9eb6598df,1,4,170760,https://p.scdn.co/mp3-preview/cb66206ab8e01ed634514e6afc680443c0664b20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16000264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,motown,quiet storm,rhythm and blues,soul,southern soul",0.556,0.701,7.0,-4.535,1.0,0.0295,0.795,0.0,0.807,0.896,132.172,4.0,,Universal Music Group,"C © 1961 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1961 Motown Records, a Division of UMG Recordings, Inc.",591 +592,spotify:track:3WwnlVO4V8C73sAS5uoBWj,Well...All Right,spotify:artist:3wYyutjgII8LJVVOLrGI0D,Buddy Holly,spotify:album:1tTTDe47X0rTO4q7RidIan,The Definitive Collection,spotify:artist:3wYyutjgII8LJVVOLrGI0D,Buddy Holly,2006-04-18,https://i.scdn.co/image/ab67616d0000b273988665e0435d5283cfd38b1d,1,17,132800,https://p.scdn.co/mp3-preview/324e0b36d40f8474fefe2a6ecd2a7912bc015df6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USMC15804739,spotify:user:bradnumber1,2022-01-12T23:09:34Z,"classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter",0.728,0.487,11.0,-11.768,1.0,0.0424,0.441,0.00134,0.24,0.922,124.544,4.0,,Geffen,"C © 2006 UMG Recordings, Inc., P This Compilation ℗ 2006 UMG Recordings, Inc.",592 +593,spotify:track:39QlSLkqq5shnpAXchT9sI,Are You With Me,spotify:artist:7f5Zgnp2spUuuzKplmRkt7,Lost Frequencies,spotify:album:63zsZVaIMUW10wP6QanS42,Are You With Me,spotify:artist:7f5Zgnp2spUuuzKplmRkt7,Lost Frequencies,2014-08-21,https://i.scdn.co/image/ab67616d0000b2733cfe68887b539afa3e20479e,1,1,138013,https://p.scdn.co/mp3-preview/b35aeeb23f7bea0cfdd3d1b8c1b787f4a99231f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,NLF711403495,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"belgian edm,edm,pop dance,tropical house",0.763,0.608,5.0,-8.1,0.0,0.035,0.262,2.5e-05,0.12,0.394,121.02,4.0,,The Bearded Man (Armada),"C 2014 Armada Music B.V., P 2014 Armada Music B.V.",593 +594,spotify:track:37D7gMMpfvxBtfyaXqbHEX,Fussy,spotify:artist:5eZMLzpKYU5n4qAt5z4T13,End Of Fashion,spotify:album:3zpoBw795920X2kDDguKsB,Book Of Lies,spotify:artist:5eZMLzpKYU5n4qAt5z4T13,End Of Fashion,2008-01-01,https://i.scdn.co/image/ab67616d0000b273aad54f4301e9cbc8b9e80bc9,1,7,257226,https://p.scdn.co/mp3-preview/8f9355a12cffe9a6e4f256ebbc4a7fe60b0cb6bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUEM00800053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,perth indie",0.38,0.915,7.0,-3.712,1.0,0.0455,0.0111,0.0,0.311,0.587,179.913,4.0,,Virgin Records,"C © 2008 EMI Recorded Music Australia Pty Ltd., P ℗ 2008 EMI Recorded Music Australia Pty Ltd.",594 +595,spotify:track:0vR2rIVORmgeKiGIgNT0fV,By Your Side (feat. Tom Grennan),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:5SHxzwjek1Pipl1Yk11UHv","Calvin Harris, Tom Grennan",spotify:album:6Z6QdCXb3IBonAUSwLP4iB,By Your Side (feat. Tom Grennan),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:5SHxzwjek1Pipl1Yk11UHv","Calvin Harris, Tom Grennan",2021-06-04,https://i.scdn.co/image/ab67616d0000b27326ab76de7cfa7b953e58caee,1,1,189671,https://p.scdn.co/mp3-preview/6b7a69680870dd0556ccd8d8e7dd5143277f2e80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBARL2100439,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,uk pop",0.733,0.96,7.0,-3.597,1.0,0.0295,0.0514,0.00199,0.287,0.811,124.01,4.0,,Columbia,P (P) 2021 Sony Music Entertainment UK Limited,595 +596,spotify:track:65Wspymr1UkFIT0WRyVJnI,Love Theme from St. Elmo's Fire - Instrumental,spotify:artist:0SgQK24WzZf2pXBXYqHJYF,David Foster,spotify:album:61nRYw38onfZeQ2pjlrYp5,David Foster,spotify:artist:0SgQK24WzZf2pXBXYqHJYF,David Foster,1986-06-11,https://i.scdn.co/image/ab67616d0000b2732c6fc345cd9830580b4bf62a,1,1,209400,https://p.scdn.co/mp3-preview/9d686aa397e30e48d2cf3ae44af2a88c9613e6ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USAT20103399,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.57,0.404,8.0,-13.761,1.0,0.0361,0.501,0.668,0.104,0.312,125.201,4.0,,Atlantic Records,"C © 1986 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1986 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",596 +597,spotify:track:5AG3LHmg3FyVbRESspoPAD,Save Your Tears,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:03NCvBIGqzLPhLoi4pDb3L,After Hours,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2020-03-20,https://i.scdn.co/image/ab67616d0000b27381a3bb9348718b9703364c1c,1,11,215626,https://p.scdn.co/mp3-preview/4bb5ee4441a2342502372f80f78a92cf3fe22549?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USUG12000669,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.679,0.825,0.0,-5.487,1.0,0.0309,0.0212,1.21e-05,0.543,0.644,118.049,4.0,,Republic Records,"C © 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.",597 +598,spotify:track:3OdFCHEuek9W7NRMFf0LQh,On a Mission,spotify:artist:5v2GEv1pQaCp6oeOQROdKE,Gabriella Cilmi,spotify:album:3p3tR1vCkAdLmcpzLYbGin,Ten (Standard),spotify:artist:5v2GEv1pQaCp6oeOQROdKE,Gabriella Cilmi,2010-03-19,https://i.scdn.co/image/ab67616d0000b27324312199d35f42ea856680e3,1,1,182186,https://p.scdn.co/mp3-preview/16dd5388d7186bfafc8de1c4d5cf5f13b4614c32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GBUM70915202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian r&b",0.587,0.939,5.0,-3.908,0.0,0.153,0.0177,0.0,0.168,0.6,180.014,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Limited for Australia and New Zealand, P ℗ 2010 Warner Music Australia Pty Limited for Australia and New Zealand",598 +599,spotify:track:7wXO1tOp5sPfMrMSdwmegh,Down Boy - Radio Edit,spotify:artist:7gRmesSjINzb4xXApfMV5E,Holly Valance,spotify:album:0canrrqYujUeehzkS9sUZV,Footprints,spotify:artist:7gRmesSjINzb4xXApfMV5E,Holly Valance,2002-01-01,https://i.scdn.co/image/ab67616d0000b2737d1cd39fae733ff67c5645d1,1,3,205933,https://p.scdn.co/mp3-preview/e78bdc62034a6a235d150af4732475dfc1a690bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBAAP0200404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,bubblegum dance,europop,talent show",0.679,0.766,7.0,-6.684,1.0,0.128,0.0598,2.62e-05,0.231,0.646,160.961,4.0,,London Music Stream/Because Music,"C © 2002 London Records Ltd, P ℗ 2002 London Records Ltd",599 +600,spotify:track:6kvoHl80mfCVTv7XnZkjQn,"It Must Have Been Love - From the Film ""Pretty Woman""",spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:3dWX1xFUaalRlaaVpe4EPF,It Must Have Been Love,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,1990-05-20,https://i.scdn.co/image/ab67616d0000b2733351044c5cdf6937161fdb4d,1,1,258786,https://p.scdn.co/mp3-preview/361fd8946cd20110a0267af87ef5b98ac1c6e7a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,SEAMA8777131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.52,0.652,5.0,-6.655,1.0,0.0274,0.339,6.14e-05,0.256,0.722,80.61,4.0,,WM Sweden,"C © 2015 Parlophone Music Sweden AB, a Warner Music Group Company, P ℗ 2015 Parlophone Music Sweden AB, a Warner Music Group Company",600 +601,spotify:track:4OxHUNlHmODIt5cH7A7Gip,Getting Away With It (All Messed Up) - Vandalism Radio Edit,"spotify:artist:13tMCI0sh9jqRaiNfeD1ou, spotify:artist:5eAaeNnPoRSxsGHkfs8oyp","Sean Quinn, Gus Cullen",spotify:album:68Rpmao4E5VH60jAO3z0Hw,Getting Away With It (All Messed Up),"spotify:artist:13tMCI0sh9jqRaiNfeD1ou, spotify:artist:5eAaeNnPoRSxsGHkfs8oyp","Sean Quinn, Gus Cullen",2009-01-01,https://i.scdn.co/image/ab67616d0000b273506aa48f560e9049ef35f6e6,1,1,225213,https://p.scdn.co/mp3-preview/a6c3b3f704200152250a2d5e98493ba9aa88bbf9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC00900620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.6,0.893,0.0,-4.433,1.0,0.0376,0.000129,2.33e-05,0.245,0.167,127.007,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Vicious Pty Ltd, P ℗ 2009 Vicious Pty Ltd",601 +602,spotify:track:5yR9u8QiOt8hJaddv32oo7,I Feel for You,spotify:artist:6mQfAAqZGBzIfrmlZCeaYT,Chaka Khan,spotify:album:08yanJqA75TPyDowCXvvPU,I Feel for You,spotify:artist:6mQfAAqZGBzIfrmlZCeaYT,Chaka Khan,1984,https://i.scdn.co/image/ab67616d0000b2738be5f9356ee08a1f9e67ff87,1,6,343400,https://p.scdn.co/mp3-preview/6a8b1729d428584eaecd2f4e60d5fc6807a2f65d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USWB18400025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,neo soul,quiet storm,soul",0.698,0.912,11.0,-8.993,1.0,0.0675,0.0145,0.0225,0.279,0.797,124.917,4.0,,Rhino/Warner Records,"C © 1984 Warner Records Inc., P ℗ 1984 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",602 +603,spotify:track:0TLdsdxFpWlidrBHBTJcRK,Acquainted,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:7pEjIA5ibscPhsvfwX1ZPT,The Highlights,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2021-02-05,https://i.scdn.co/image/ab67616d0000b2737f2ad807a1247ce2b1c4ae38,1,15,348882,https://p.scdn.co/mp3-preview/a71f7bf87d1430cbbde426d3f9b311118fcb8ed6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USUG11500920,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.386,0.497,7.0,-9.934,0.0,0.0511,0.445,0.0,0.0909,0.239,105.921,4.0,,Universal Republic Records,"C © 2021 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc., P This Compilation ℗ 2021 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.",603 +604,spotify:track:2E2ZVy2fxslpAUgbb4zu84,Abracadabra,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,spotify:album:0afS7TjKOoq8LzTx9CgOnu,Abracadabra,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,1982-06-15,https://i.scdn.co/image/ab67616d0000b273b80d7868e6e0275d12102508,1,2,308373,https://p.scdn.co/mp3-preview/4202f6549cc02d4d24b85b7cfe41b22153a66e54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USCA28500258,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.791,0.534,9.0,-13.261,0.0,0.0355,0.0749,1.99e-06,0.156,0.963,127.488,4.0,,Capitol Records,"C © 1982 Sailor Records, P ℗ 1982 Sailor Records",604 +605,spotify:track:2lJOKQmXQ5yiRyCTE5FyDE,Tears In Heaven,spotify:artist:6PAt558ZEZl0DmdXlnjMgD,Eric Clapton,spotify:album:1GQCluFc8ODQis5kvcDVKF,Unplugged,spotify:artist:6PAt558ZEZl0DmdXlnjMgD,Eric Clapton,1992-08-25,https://i.scdn.co/image/ab67616d0000b2732e195935baff4d0e37da1f68,1,4,276866,https://p.scdn.co/mp3-preview/75b509c1396246c1c3a3c048c4abd35904f95c05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRE19900122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,electric blues,mellow gold,rock,singer-songwriter,soft rock",0.705,0.324,9.0,-11.217,1.0,0.0246,0.842,0.00386,0.201,0.494,79.051,4.0,,Reprise,"C 1992 Reprise Records, P 1992 Reprise Records",605 +606,spotify:track:6ZzBqEYylrDYgeiJBTWKVP,Cartoon Heroes - Radio Edit,spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,spotify:album:72vnV24LNyeGeCqTrGFAwU,Hits'n'Kids,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2005-01-01,https://i.scdn.co/image/ab67616d0000b2736089149472039ec9a51fe745,1,1,218493,https://p.scdn.co/mp3-preview/9461335c1174c65c5f48f68a105d8b72cdf9d3ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,DKBKA0000101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,eurodance,europop",0.68,0.988,1.0,-4.016,1.0,0.0545,0.0218,0.0,0.0681,0.764,127.982,4.0,,Universal Music A/S,"C © 2005 Universal Music (Denmark) A/S, P This Compilation ℗ 2005 Universal Music (Denmark) A/S",606 +607,spotify:track:38yBBH2jacvDxrznF7h08J,Slow Hands,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,spotify:album:3QLB5s0MY7ERTwh4GpNMkf,Flicker (Deluxe),spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,2017-10-20,https://i.scdn.co/image/ab67616d0000b27394fde6afa9cbf073e5b6445a,1,4,188174,https://p.scdn.co/mp3-preview/f47a9e84206ed56916d5cb4e2b583fc467c8c855?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11700631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.734,0.418,0.0,-6.678,1.0,0.0425,0.0129,0.0,0.0579,0.868,85.909,4.0,,Universal Music Group,"C © 2017 Neon Haze Music Ltd, Under Exclusive License To Capitol Records, P ℗ 2017 Neon Haze Music Ltd, Under Exclusive License To Capitol Records",607 +608,spotify:track:4zoZQvmST8gliv9S9L8lUw,Please Don't Go,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,spotify:album:3veSKEBvveTdMZk35f6QBs,Do You Wanna Go Party,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,1979,https://i.scdn.co/image/ab67616d0000b2736332e2da57a38ffee8e8fb41,1,4,230440,https://p.scdn.co/mp3-preview/38c10f40fd8f7328fedcb3077d85dbe0cfa411b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBAYE7900015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new wave pop,soft rock,soul",0.445,0.75,6.0,-7.159,1.0,0.035,0.00805,0.0,0.0358,0.466,95.957,4.0,,Rhino,"C © 1979 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1979 Parlophone Records Ltd, a Warner Music Group Company",608 +609,spotify:track:55S2PQgSMYAhgoTCcGCDfw,Youngblood,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:16Qs4jnIyXe7jprnMNRddy,Youngblood,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2018-04-12,https://i.scdn.co/image/ab67616d0000b273240353172d4b7f2feb8a3e2c,1,1,203417,https://p.scdn.co/mp3-preview/87357ede3ba123385a24c959696a6512b878430c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBUM71800366,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.597,0.854,7.0,-5.114,0.0,0.463,0.0169,0.0,0.124,0.152,120.276,4.0,,Capitol,"C © 2018 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited, P ℗ 2018 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited",609 +610,spotify:track:0AYw1CBLLNu0umIuCoq77M,Like It's Her Birthday,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:08utRHYjRSDcceEsjFRFX0,Cardiology,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2010-01-01,https://i.scdn.co/image/ab67616d0000b273fab23a7730496d05987df477,1,5,210506,https://p.scdn.co/mp3-preview/c283bf4e5c3da6ae0e809908c373feb26e9fd74b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USCA21001876,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.592,0.868,11.0,-2.983,1.0,0.0679,0.00884,0.0,0.144,0.815,109.985,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",610 +611,spotify:track:5RWcE4Poc4Un93zzhwKvrK,Unchained Melody,spotify:artist:4b0WsB47XCa9F83BmwQ7WX,The Righteous Brothers,spotify:album:4DqpBtVog6v7Tfg904kHNF,The Very Best Of The Righteous Brothers - Unchained Melody,spotify:artist:4b0WsB47XCa9F83BmwQ7WX,The Righteous Brothers,1990,https://i.scdn.co/image/ab67616d0000b273d06422e547cf0b9a17aabd55,1,2,215840,https://p.scdn.co/mp3-preview/6bf5e54931ce622e2e5b402b2d5959353de8cb10?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG16590023,spotify:user:bradnumber1,2021-08-08T09:27:55Z,"adult standards,brill building pop,folk rock,mellow gold,motown,rock-and-roll,rockabilly",0.376,0.199,0.0,-16.679,1.0,0.0288,0.535,0.0,0.598,0.247,98.97,3.0,,Polydor,"C © 1990 The Verve Music Group, a Division of UMG Recordings, Inc., P ℗ 1965 The Verve Music Group, a Division of UMG Recordings, Inc.",611 +612,spotify:track:1lkvpmrCaXK8QtliFDcHBO,Bubbly,spotify:artist:6aZyMrc4doVtZyKNilOmwu,Colbie Caillat,spotify:album:7a8mrq83VEf0PoFh6pvtsb,Coco,spotify:artist:6aZyMrc4doVtZyKNilOmwu,Colbie Caillat,2007-01-01,https://i.scdn.co/image/ab67616d0000b273c4a7e933ef7fbb7e6485b73a,1,4,196226,https://p.scdn.co/mp3-preview/92b71fd3381144c904213a9ee373d50df666ccc6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USUM70736197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop",0.688,0.477,9.0,-6.684,1.0,0.036,0.594,0.0,0.115,0.257,127.866,4.0,,Universal Records,"C © 2007 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2007 Universal Records, a Division of UMG Recordings, Inc.",612 +613,spotify:track:4tRLfSHpbjlIjV97RPWr9Y,Sex,"spotify:artist:7DMveApC7UnC2NPfPvlHSU, spotify:artist:4LcUpNlXFEleaLlelmkv2R","Cheat Codes, Kris Kross Amsterdam",spotify:album:180JCsfKIupc7PHG5CQfz7,Sex,"spotify:artist:7DMveApC7UnC2NPfPvlHSU, spotify:artist:4LcUpNlXFEleaLlelmkv2R","Cheat Codes, Kris Kross Amsterdam",2016-02-05,https://i.scdn.co/image/ab67616d0000b273bdd8fb1bf980553f866ee418,1,1,228361,https://p.scdn.co/mp3-preview/be9d0b058f87818d90f2f0d17692f220369fd548?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLZ541600026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,dutch house,dutch pop",0.51,0.692,0.0,-5.825,1.0,0.171,0.00451,0.0,0.138,0.209,102.42,4.0,,Spinnin' Records,"C 2016 Spinnin' Records, P 2016 Spinnin' Records",613 +614,spotify:track:6LDxWdORX4w771ueKNiiVm,Chain Reaction,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:5jnIkqro2uzzkqKe67UiPT,Chain Reaction,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1990-09-24,https://i.scdn.co/image/ab67616d0000b273bc42a3c1798a35d10a72b052,1,7,192173,https://p.scdn.co/mp3-preview/98fc65f1adad9d175b31d57f2f13992bfb415bee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUBM09041002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.502,0.874,9.0,-9.664,1.0,0.0476,0.65,9.32e-05,0.0775,0.932,200.027,4.0,,BMG Music,P (P) 1990 BMG Arista/Ariola Limited,614 +615,spotify:track:20uBdCmVtlUuYsvxysoito,Little Lion Man,spotify:artist:3gd8FJtBJtkRxdfbTu19U2,Mumford & Sons,spotify:album:1c2Ee269Rj9w8wn8s3qQu9,Sigh No More,spotify:artist:3gd8FJtBJtkRxdfbTu19U2,Mumford & Sons,2009-01-01,https://i.scdn.co/image/ab67616d0000b273ff8fd758310f8dcd96e99a43,1,7,247000,https://p.scdn.co/mp3-preview/a976b10c455d628d3f962c0724e33cbad26ca867?cid=9950ac751e34487dbbe027c4fd7f8e99,True,64,GBUM70909097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern folk rock,modern rock,neo mellow,stomp and holler,uk americana",0.525,0.503,5.0,-7.974,1.0,0.0272,0.0211,2.47e-05,0.091,0.453,138.856,4.0,,Universal-Island Records Ltd.,"C © 2009 Universal Island Records Ltd. A Universal Music Company., P ℗ 2009 Mumford & Sons, Under exclusive license to Universal Island Records Ltd. A Universal Music Company",615 +616,spotify:track:5MWKU5MnIuv5uQez4n0byz,Cream - Without Rap Monologue,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:6dRctIZQKuZCSSoR6QBBv9,Diamonds and Pearls,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1991-10-01,https://i.scdn.co/image/ab67616d0000b27399e49fe1e935d3d724627211,1,4,253373,https://p.scdn.co/mp3-preview/816cd14d151cc5d97772d0e1c4abc9e85f306fee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USWB19900665,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.852,0.591,5.0,-8.668,0.0,0.0675,0.103,0.421,0.0468,0.826,115.592,4.0,,Warner Records,"C © 1991 Warner Records Inc., P ℗ 1991 Warner Records Inc.",616 +617,spotify:track:23ptCokVUhZvYYidENipbj,Touch The Sky - Radio Edit,"spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:01QTIT5P1pFP3QnnFSdsJf","Kanye West, Lupe Fiasco",spotify:album:5xLxlrkwSh0gMp6LhpvzsC,Touch The Sky,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2006-01-01,https://i.scdn.co/image/ab67616d0000b27341324b28296150c4a81e5363,1,1,236760,https://p.scdn.co/mp3-preview/e85f4ddd0ad0aec50f4e0f2a4493b3d249f8a4a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USUM70504749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap,chicago rap,conscious hip hop,hip hop,political hip hop,pop rap,rap,southern hip hop",0.614,0.829,9.0,-5.042,1.0,0.339,0.0122,0.0,0.325,0.608,106.297,4.0,,Roc-A-Fella,"C © 2006 UMG Recordings, Inc., P ℗ 2006 UMG Recordings, Inc.",617 +618,spotify:track:1c7MunM8WUiqhV56aDyBXs,Do You Want to Dance - 2008 Remaster,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,spotify:album:2aBNewGpx5XIAdSFKvEKGw,The Best Bette,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,2008-09-22,https://i.scdn.co/image/ab67616d0000b27315133de91124398b0b7489e9,1,13,164493,https://p.scdn.co/mp3-preview/0d7225de47cd343a38f19f96435a113603f4ee2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USAT20706104,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,new wave pop,soft rock",0.396,0.416,7.0,-8.134,0.0,0.0332,0.531,1.22e-05,0.0694,0.554,158.832,4.0,,Rhino,"C © 2009 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Manufactured & Marketed by Rhino Entertainment Company., P ℗ 2009 Rhino Entertainment Company, a Warner Music Group Company.",618 +619,spotify:track:2VvrHkjxwsLvouNMsUHykT,Hold On,spotify:artist:5zzrJD2jXrE9dZ1AklRFcL,KT Tunstall,spotify:album:4XpXkww6Q6KLFOaFmZ6IxX,Drastic Fantastic,spotify:artist:5zzrJD2jXrE9dZ1AklRFcL,KT Tunstall,2007-01-01,https://i.scdn.co/image/ab67616d0000b2738cbde90d6b5153d4e8e2079c,1,5,177613,https://p.scdn.co/mp3-preview/1b5af0c539ce578f16efd3f478e96527d91e3f96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBGLM0700045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ectofolk,lilith,neo mellow,pop rock,scottish singer-songwriter",0.664,0.936,4.0,-5.158,0.0,0.094,0.322,1.04e-06,0.19,0.803,105.569,4.0,,Relentless/Virgin,"C © 2007 Universal Music Operations Limited, P ℗ 2007 Universal Music Operations Limited",619 +620,spotify:track:6nHqns54LRqDNjeqKDF3v8,Glad You Came,spotify:artist:2NhdGz9EDv2FeUw6udu2g1,The Wanted,spotify:album:1ZdpJmpbaY2tMseayf4tVL,Battleground,spotify:artist:2NhdGz9EDv2FeUw6udu2g1,The Wanted,2011-01-01,https://i.scdn.co/image/ab67616d0000b273b49216c081b8de8f0b5a78d4,1,1,197935,https://p.scdn.co/mp3-preview/cf4bff1624c8c72cb9f5e18bb240f6ac2491b464?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71104495,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop,post-teen pop",0.562,0.857,7.0,-3.926,0.0,0.0801,0.0383,0.0,0.11,0.539,126.883,4.0,,Universal Music Group,"C © 2011 Global Talent Records Limited, under exclusive licence to Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Global Talent Records Limited, under exclusive licence to Universal Island Records, a division of Universal Music Operations Limited",620 +621,spotify:track:1zSsGyYIwmuNyocvrHdt9r,Talk Like That,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:5ramB76eNmvFlL1cJ8mw2s,Apocalypso,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2009-01-01,https://i.scdn.co/image/ab67616d0000b2733318282bfa1b2c5c7ed36274,1,6,221066,https://p.scdn.co/mp3-preview/6cbfad2f14ce1da85fe7c4c7446c5aaecf8a0024?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70800157,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.573,0.941,6.0,-3.46,0.0,0.0315,0.0013,4.06e-05,0.18,0.864,135.017,4.0,,Modular,"C © 2009 Modular Recordings, P ℗ 2009 Modular Recordings",621 +622,spotify:track:4dASQiO1Eoo3RJvt74FtXB,"Sucker for Pain (with Wiz Khalifa, Imagine Dragons, Logic & Ty Dolla $ign feat. X Ambassadors)","spotify:artist:55Aa2cqylxrFIXC767Z865, spotify:artist:137W8MRPWKqSmrBGDBFSop, spotify:artist:53XhwfbYqKCa1cC15pYq2q, spotify:artist:3NPpFNZtSTHheNBaWC82rB, spotify:artist:4xRYI6VqpkE3UwrDrAZL8L, spotify:artist:7c0XG5cIJTrrAgEC3ULPiq","Lil Wayne, Wiz Khalifa, Imagine Dragons, X Ambassadors, Logic, Ty Dolla $ign",spotify:album:704GHNtZhEe9TBgleCNNGv,Sucker for Pain (with Logic & Ty Dolla $ign feat. X Ambassadors),"spotify:artist:55Aa2cqylxrFIXC767Z865, spotify:artist:137W8MRPWKqSmrBGDBFSop, spotify:artist:53XhwfbYqKCa1cC15pYq2q","Lil Wayne, Wiz Khalifa, Imagine Dragons",2016-06-24,https://i.scdn.co/image/ab67616d0000b2737d8dfcfd507069d7f2062caf,1,1,243490,https://p.scdn.co/mp3-preview/b606811412cc3e1a52fc34c44d7bebe633efc1b9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,USAT21601893,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,new orleans rap,pop rap,rap,trap,hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap,modern rock,pop,rock,modern alternative rock,modern rock,stomp pop,conscious hip hop,hip hop,pop rap,rap,hip hop,pop rap,r&b,southern hip hop,trap,trap soul",0.502,0.786,9.0,-4.378,0.0,0.317,0.255,0.0,0.65,0.739,169.021,4.0,,Atlantic Records,"C © 2016 Atlantic Recording Corporation & Warner Bros. Entertainment Inc., P ℗ 2016 Atlantic Recording Corporation & Warner Bros. Entertainment Inc.",622 +623,spotify:track:6trzHhvr6xqYJkNnbWwXz2,We're Going To Ibiza!,spotify:artist:0cwmNvclzPd8mQnoHuIksj,Vengaboys,spotify:album:2hy9sLDt7IVAvJRGVdzZnx,The Party Album!,spotify:artist:0cwmNvclzPd8mQnoHuIksj,Vengaboys,1999-06-04,https://i.scdn.co/image/ab67616d0000b27350fcab12b2e2e0ee0019ac53,1,5,217539,https://p.scdn.co/mp3-preview/6e365faabfceec5a9afc91f171092a2acbc268e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,NLC529811170,spotify:user:bradnumber1,2023-11-28T13:22:32Z,"eurodance,europop",0.786,0.876,1.0,-4.899,1.0,0.0362,0.0114,0.000784,0.0796,0.966,103.983,4.0,,"Universal Music, a division of Universal International Music BV","C © 1999 Violent Music B.V., licensed to Universal Music, a division of Universal International Music B.V., P ℗ 1999 Universal International Music B.V.",623 +624,spotify:track:4LddAerqROEdlx1GF1bcVd,The Hippy Hippy Shake,spotify:artist:5gNduPlUGHsgy1w7f71obH,The Swinging Blue Jeans,spotify:album:3gcGSUiJx8zOB57o5IwGmj,The EMI Years: Best of the Swinging Blue Jeans,spotify:artist:5gNduPlUGHsgy1w7f71obH,The Swinging Blue Jeans,1992-05-18,https://i.scdn.co/image/ab67616d0000b273721b795fe613b36b18d1c90e,1,3,106066,https://p.scdn.co/mp3-preview/1128a42f089a4dabd45f1466cccc4fcd2943f35f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE6300043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,merseybeat",0.551,0.686,4.0,-11.969,1.0,0.0536,0.346,0.0,0.33,0.982,70.959,4.0,,Chrysalis Records,"C 1992 Chrysalis Records Limited, P 1992 Chrysalis Records Limited",624 +625,spotify:track:2OkTun2CrfoG8NX7aUJ6fR,Mama Didn't Lie,spotify:artist:4tPAbp9qF8nR9becfJGQCZ,Jan Bradley,spotify:album:56MGjaJPQjHkQiLgIkrj2s,Mama Didn't Lie,spotify:artist:4tPAbp9qF8nR9becfJGQCZ,Jan Bradley,2014-03-12,https://i.scdn.co/image/ab67616d0000b273ef6de1c14aee9cdc19318584,1,1,121312,https://p.scdn.co/mp3-preview/0a25a8c24359699ddfd20a16290e115b5c2d0b33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,QMFME1412409,spotify:user:bradnumber1,2021-08-08T09:26:31Z,chicago soul,0.741,0.595,11.0,-7.24,1.0,0.0517,0.794,1.39e-06,0.221,0.931,124.675,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,625 +626,spotify:track:0Gi17qCJh9e9RJxLaYkm9l,Dark Times,"spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","The Weeknd, Ed Sheeran",spotify:album:28ZKQMoNBB0etKXZ97G2SN,Beauty Behind The Madness,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2015-08-28,https://i.scdn.co/image/ab67616d0000b273aac98daa18e4edf54d7a0a70,1,12,260640,https://p.scdn.co/mp3-preview/d88d30260e39718b7904ea7adbdbefa3b4d28b81?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUG11500929,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop,pop,singer-songwriter pop,uk pop",0.585,0.421,7.0,-9.593,1.0,0.0707,0.106,9.54e-06,0.14,0.24,132.986,3.0,,Universal Music Group,"C © 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc., P ℗ 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.",626 +627,spotify:track:64ZMsONgsN2YTF3OaCqbt9,Rocksteady,spotify:artist:32okPFmVcEJ9DiKLRqFVMr,Slip-On Stereo,spotify:album:2ou3Nau5RxsJ4N8rOedDdb,Rocksteady,spotify:artist:32okPFmVcEJ9DiKLRqFVMr,Slip-On Stereo,2015-01-27,https://i.scdn.co/image/ab67616d0000b2735de1e721ff06b876d9dfa084,1,1,204478,https://p.scdn.co/mp3-preview/256693a02add7ff490de3fd884c79f04cec7d77e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,uscgh1516674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indigenous music,0.806,0.717,6.0,-5.089,1.0,0.0498,0.00319,0.0,0.107,0.892,100.03,4.0,,Slip On Stereo,"C 2015 Slip On Stereo, P 2015 Slip On Stereo",627 +628,spotify:track:6gVcCug2JayEzj2FvGTTch,The Animal Song,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:3gMHTmJc4Wk3OhDDjNiDWF,The Singles,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,2015-06-12,https://i.scdn.co/image/ab67616d0000b2738b4de2671f8629427712ccdc,1,9,280947,https://p.scdn.co/mp3-preview/1f8dfea7df0dcb8d27ea554250fb8857e1f5780b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09900171,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop rock",0.656,0.637,6.0,-8.728,1.0,0.0372,0.0757,1.74e-06,0.0778,0.839,116.08,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",628 +629,spotify:track:1viauTfFqDTTRTRv8QBbeh,Think About Tomorrow Today,spotify:artist:0Yk7KdGevnSCqZgg9K8n6b,The Master's Apprentices,spotify:album:7mBGrObxUKfcqjU9aClgZa,Greatest Hits,spotify:artist:0Yk7KdGevnSCqZgg9K8n6b,The Master's Apprentices,1995-01-01,https://i.scdn.co/image/ab67616d0000b273c27ad1915dbdc4ceb06aa42a,1,11,202840,https://p.scdn.co/mp3-preview/3b4c5093befafb5cdc9b26c049e7f384ce3d8419?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUEM00700081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.346,0.828,9.0,-4.514,1.0,0.0617,0.682,0.0259,0.324,0.597,135.836,4.0,,EMI Music Australia,"C © 1995 EMI Recorded Music Australia Pty Ltd., P ℗ 1995 EMI Recorded Music Australia Pty Ltd.",629 +630,spotify:track:3eRsSIhorhBnLrsy2uhM8r,Whatta Man,"spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ, spotify:artist:5fikk4h5qbEebqK2Fc6e48","Salt-N-Pepa, En Vogue",spotify:album:5NcKbAFzrAJ71Pq2y4QGNC,Very Necessary,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,1993-10-12,https://i.scdn.co/image/ab67616d0000b2730cd991c8eb380b58a5b19341,1,4,308360,https://p.scdn.co/mp3-preview/818f31f22df61703d4798e9cd9a29933ef29cdbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20300399,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop,contemporary r&b,girl group,hip pop,new jack swing,r&b,urban contemporary",0.753,0.545,2.0,-10.685,0.0,0.21,0.162,4.7e-05,0.241,0.917,173.227,4.0,,Universal Music Group,"C © 1993 The Island Def Jam Music Group, P ℗ 1993 The Island Def Jam Music Group",630 +631,spotify:track:2VpdG2QLhVv6qAPdDt9Ipr,Lambada - Original Radio Edit,spotify:artist:1LsXqDdYVyONhrjAORENbu,Kaoma,spotify:album:3RWIENzO8frYhajwCHl7SL,World Beat,spotify:artist:1LsXqDdYVyONhrjAORENbu,Kaoma,1989,https://i.scdn.co/image/ab67616d0000b2736369dbebc592ecad70b7f7d5,1,1,208840,https://p.scdn.co/mp3-preview/b67caf049ad3f0470d6b7a84b273d1fa33f3661f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,FR6V80939969,spotify:user:bradnumber1,2021-08-08T09:26:31Z,zouk,0.753,0.588,5.0,-12.454,1.0,0.0331,0.228,0.00103,0.0449,0.97,118.915,4.0,,Lambada,"C 1989 KP&P – Lambada, P 1989 KP&P – Lambada",631 +632,spotify:track:4DHcnVTT87F0zZhRPYmZ3B,Flowers,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:0HiZ8fNXwJOQcrf5iflrdz,Endless Summer Vacation,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2023-03-10,https://i.scdn.co/image/ab67616d0000b27358039b5147731b6e52202e46,1,1,200600,https://p.scdn.co/mp3-preview/5184d19d1b7fcc3e7c067e38af45a7cc80851440?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USSM12209777,spotify:user:bradnumber1,2023-05-07T12:01:13Z,pop,0.706,0.691,0.0,-4.775,1.0,0.0633,0.0584,6.99e-05,0.0232,0.632,118.048,4.0,,Columbia,"P (P) 2023 Smiley Miley, Inc. under exclusive license to Columbia Records, a Division of Sony Music Entertainment",632 +633,spotify:track:2QVHmiFTjFsHyxONRdbkcq,How Do You Talk To An Angel?,spotify:artist:3VvCoGaJ64OBTnhiqta7XL,The Heights,spotify:album:1aF9JPXdMLYIBOSDbPYdBD,The Heights,spotify:artist:3VvCoGaJ64OBTnhiqta7XL,The Heights,1992-01-01,https://i.scdn.co/image/ab67616d0000b2738c0c73bc9a116afeed80d3ed,1,4,227266,https://p.scdn.co/mp3-preview/35db2fea52c1dc99e59086eb1077c4b73b0211e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USCA29200234,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.404,0.51,9.0,-11.353,1.0,0.0321,0.281,6.32e-06,0.0789,0.526,80.643,4.0,,Capitol Records,"C © 1992 Capitol Records Inc., P ℗ 1992 Capitol Records Inc.",633 +634,spotify:track:0XSqEI5S1PGOiDWkr2mGbl,Child's Play,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:2jmqR9W54z9VIZN4qAQv1Y,Anthology,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,2008-10-11,https://i.scdn.co/image/ab67616d0000b273d3f56b11a56d0b0f192da1a7,1,16,198613,https://p.scdn.co/mp3-preview/4b2edb34896a39ab490d196f130af9e44396a2ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00621370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.608,0.751,7.0,-7.832,1.0,0.0408,0.0779,0.00143,0.321,0.59,124.028,4.0,,Bloodlines,"C 2008 Bloodlines, P 2008 Bloodlines",634 +635,spotify:track:5DDpX8eMjCCvVGu5sboZs1,Uptight Downtown,spotify:artist:3K2zB87GZv1krx031en5VA,La Roux,spotify:album:5iLwH8imGCQvvGQuAvp0vr,Trouble In Paradise,spotify:artist:3K2zB87GZv1krx031en5VA,La Roux,2014-01-01,https://i.scdn.co/image/ab67616d0000b2737407960dce25dbbe8b40d1e9,1,1,262000,https://p.scdn.co/mp3-preview/6383ddbd9ec2960e8086a6b4f3cfae79a47a8cba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71402150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,electropop,indietronica,neo-synthpop",0.752,0.731,0.0,-7.884,1.0,0.028,0.00138,0.00851,0.208,0.961,123.217,4.0,,Universal Music Group,"C © 2014 Polydor Ltd. (UK), P ℗ 2014 Polydor Ltd. (UK)",635 +636,spotify:track:3ICdPHubhqTJ4Lm9NEb2W3,She,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:2hyDesSAYNefikDJXlqhPE,5,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2014-06-20,https://i.scdn.co/image/ab67616d0000b2732fec3ad10ab2f3a637e7a127,3,5,244653,https://p.scdn.co/mp3-preview/97c9405ff306d4f75b3702a5a1f5fd13ec2bfa7b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GB6S41000012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.573,0.344,9.0,-10.91,1.0,0.0361,0.811,0.0,0.13,0.377,157.783,3.0,,Gingerbread Man Records,"C © 2014 Warner Music UK LImited, P ℗ 2014 Warner Music UK LImited",636 +637,spotify:track:3hQ9KSM719y8RnkXpUius8,Would You Lay With Me (In A Field Of Stone),spotify:artist:2mHjbkUsmvclGtpjr5t00u,Judy Stone,spotify:album:0HohjkVPFOOuys8JoKGE9q,Aussie Country,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-01,https://i.scdn.co/image/ab67616d0000b27314097743377735e9f3739dc4,1,6,216333,https://p.scdn.co/mp3-preview/3487bd3cd9dd8c66bdfb3fa500844a055f90e5b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUV401434349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic australian country,0.367,0.674,10.0,-9.252,1.0,0.043,0.385,0.00063,0.104,0.73,168.021,4.0,,The Music Factory,P 2016 V&H Holdings Pty Ltd,637 +638,spotify:track:6RJK553YhstRzyKA4mug09,The Letter,spotify:artist:3KGQvnOoqUHi3KxKQMZtXr,The Box Tops,spotify:album:08mPxuP35Db56jUUgRvGFs,The Letter/Neon Rainbow,spotify:artist:3KGQvnOoqUHi3KxKQMZtXr,The Box Tops,1967,https://i.scdn.co/image/ab67616d0000b2735f4604aff952dc7b0a8e511e,1,1,112800,https://p.scdn.co/mp3-preview/44939f2cbd7bd56f11ab82d22ec6cf560654e28d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAR17200009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,folk rock,merseybeat,psychedelic rock,rock-and-roll",0.638,0.428,9.0,-12.156,0.0,0.0687,0.252,0.0,0.132,0.901,139.434,4.0,,Arista/Legacy,P (P) 2000 Sundazed Music Inc.,638 +639,spotify:track:2AceGjiX9isUbXmMZa0Dl1,Floating Through Space,"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Sia, David Guetta",spotify:album:0BE9HxEf6RRDyni3SSvM6t,Floating Through Space,"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Sia, David Guetta",2021-02-04,https://i.scdn.co/image/ab67616d0000b2739ad7b6d6069896719edfbf58,1,1,177800,https://p.scdn.co/mp3-preview/31957e13c9e7b33cc12b9c30bef0c8e8d5d1e40a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USAT22007180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,big room,dance pop,edm,pop,pop dance",0.575,0.844,6.0,-4.89,0.0,0.072,0.00172,0.0,0.114,0.277,104.914,4.0,,Monkey Puzzle/Atlantic,"C under exclusive license to Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States., © 2021 Monkey Puzzle Music, Inc., P under exclusive license to Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States., ℗ 2021 Monkey Puzzle Music, Inc.",639 +640,spotify:track:0SxFyA4FqmEQqZVuAlg8lf,The First Time Ever I Saw Your Face,spotify:artist:0W498bDDNlJIrYMKXdpLHA,Roberta Flack,spotify:album:2ARWEOvaUgm4FSj25MpY6F,First Take,spotify:artist:0W498bDDNlJIrYMKXdpLHA,Roberta Flack,1969,https://i.scdn.co/image/ab67616d0000b273685f8851f3be611c386c7cc0,1,6,260666,https://p.scdn.co/mp3-preview/8bf2a77413b80565b79b10d1f212e434cfd2af1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USAT20107944,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,disco,quiet storm,soft rock,soul,vocal jazz",0.311,0.0264,0.0,-21.644,1.0,0.037,0.731,0.00205,0.156,0.139,120.653,4.0,,Atlantic Records,"C © 1995 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1995 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",640 +641,spotify:track:53haw5BnbMjfQ7zLXK8OSN,Sarah,spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,spotify:album:4PXy3cBCNeY0ZVKTOGi9Cw,"Black Fingernails, Red Wine",spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,2006-06-10,https://i.scdn.co/image/ab67616d0000b27394e91cb353f83a901f97c6d6,1,7,209413,https://p.scdn.co/mp3-preview/de7dffa643f9b99f107de84917896ae23accf069?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUWA00601150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,perth indie",0.632,0.846,8.0,-4.03,0.0,0.0498,0.0337,8.61e-06,0.153,0.502,130.044,4.0,,WM Australia,"C © 2006 Mushroom Records Pty Limited, P ℗ 2006 Mushroom Records Pty Limited",641 +642,spotify:track:2ONRkpOJ6X91GMXMthtT0M,Ride It - Jonas Blue Remix,"spotify:artist:4ofCBoyEiGSePFAG500xev, spotify:artist:1HBjj22wzbscIZ9sEb5dyf","Regard, Jonas Blue",spotify:album:6DPGJNJf9crOOe2pyRjF6S,Ride It (Jonas Blue Remix),"spotify:artist:4ofCBoyEiGSePFAG500xev, spotify:artist:1HBjj22wzbscIZ9sEb5dyf","Regard, Jonas Blue",2019-11-01,https://i.scdn.co/image/ab67616d0000b2731c9a96f6bcd340434a77f61c,1,1,182400,https://p.scdn.co/mp3-preview/9ca080d50c84816dc3350351b4fe06b763dfab25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBCEN1900080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,pop edm,slap house,uk dance,pop,pop dance,tropical house,uk dance",0.689,0.946,7.0,-3.814,0.0,0.0397,0.00658,0.00189,0.262,0.392,125.037,4.0,,Ministry of Sound Recordings,P (P) 2019 Ministry of Sound Recordings Limited,642 +643,spotify:track:6OEolOOk9Gh9bqkdpfIOl0,Ridin' Solo,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:0DEsmIQ5ir7tz52Nkf4i1K,Jason Derulo (International),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2010-02-26,https://i.scdn.co/image/ab67616d0000b273293e8055dd8814fcdf4742f7,1,2,215746,https://p.scdn.co/mp3-preview/11c9df3536cef3c826b018fdf1025d0d5bf2b7fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USWB10905329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.442,0.83,9.0,-4.02,1.0,0.146,0.128,0.0,0.129,0.578,89.338,4.0,,Beluga Heights/Warner Records,"C © 2010 Warner Records Inc., P ℗ 2010 Warner Records Inc.",643 +644,spotify:track:1DFD5Fotzgn6yYXkYsKiGs,Piece Of Your Heart,"spotify:artist:0xRXCcSX89eobfrshSVdyu, spotify:artist:2nm38smINjms1LtczR0Cei","MEDUZA, Goodboys",spotify:album:0cqRGWD3uc5Lggpducn5nD,Piece Of Your Heart,"spotify:artist:0xRXCcSX89eobfrshSVdyu, spotify:artist:2nm38smINjms1LtczR0Cei","MEDUZA, Goodboys",2019-02-01,https://i.scdn.co/image/ab67616d0000b273ead13021d0f2957958081f28,1,1,152913,https://p.scdn.co/mp3-preview/2fdaf3e3a10c4e2afe40928fbf27f6c207736636?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,DEUM71807719,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,pop house,uk dance,pop dance,uk dance",0.677,0.744,10.0,-6.806,0.0,0.0295,0.0404,0.00016,0.074,0.631,124.08,4.0,,Virgin,"C © 2019 Meduza, under exclusive license to Universal Music GmbH, P ℗ 2019 Meduza, under exclusive license to Universal Music GmbH",644 +645,spotify:track:1yyvZbzPQzRx8OqEuUsRin,I'm The Leader Of The Gang (I Am),spotify:artist:61zv3hX7l838ZyhaDyAx8S,Gary Glitter,spotify:album:6Ck7kqCXreu6gH9CgdsFLO,Glitter,spotify:artist:61zv3hX7l838ZyhaDyAx8S,Gary Glitter,1973,https://i.scdn.co/image/ab67616d0000b27320a1f5b13c13e633c1b4f37e,1,13,208626,https://p.scdn.co/mp3-preview/c71e49b3ace58174855122feaa20a082edd83778?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBCQV7200003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.249,0.939,2.0,-9.152,1.0,0.259,0.000123,4.24e-06,0.214,0.233,156.994,4.0,,Snapper Music,"C (C) 2009 Snapper Music, P (P) 1973 Snapper Music",645 +646,spotify:track:08fMRujpKhEDTanKN9l2ud,Another Chance,spotify:artist:1HT9k1ZSUL9IczSstOAgWJ,Roger Sanchez,spotify:album:6qu9ns8pdYAWJphzLszkny,First Contact,spotify:artist:1HT9k1ZSUL9IczSstOAgWJ,Roger Sanchez,2000-07-23,https://i.scdn.co/image/ab67616d0000b273b986d179cf5150857a2fdef5,1,3,452906,https://p.scdn.co/mp3-preview/9f9088285fd17d941a04e9a69bea84551e22bbd3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBCPZ0100350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,diva house,tribal house",0.61,0.82,3.0,-10.029,1.0,0.0312,0.000211,0.146,0.138,0.45,127.993,4.0,,Sine Direct Signings,C (P) 2001 Sony Music Entertainment (UK) Ltd.,646 +647,spotify:track:3RsDFwMBisZYziyJS9s6pc,Daylight (feat. Travis McCoy),"spotify:artist:3AuMNF8rQAKOzjYppFNAoB, spotify:artist:46voK5iyMXDdkDpxDgfj2B","Kelly Rowland, Travis McCoy",spotify:album:6mwFFBME5LCvDKyD9B0jZt,Ms. Kelly: Deluxe Edition,spotify:artist:3AuMNF8rQAKOzjYppFNAoB,Kelly Rowland,2007,https://i.scdn.co/image/ab67616d0000b273d843f1649dbd644a5610f722,1,2,209760,https://p.scdn.co/mp3-preview/ee617b51f5c11d32c046fd76bd3c82acfdcfbaeb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USSM10705163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dance pop,hip pop,r&b,urban contemporary",0.697,0.926,11.0,-4.16,0.0,0.0991,0.036,0.0,0.0971,0.879,102.988,4.0,,Music World Music/Columbia,"P (P) 2006, 2007, 2008 Sony Music Entertainment",647 +648,spotify:track:2p6zmKJRv7dXShA1Sq4rqF,20 Miles,spotify:artist:0lmRxVVpx9hSmeQv9jGYYR,Ray Brown And The Whispers,spotify:album:7eZzdwhXvWOmGGe3C2SpPF,Miles Of Hits,spotify:artist:0lmRxVVpx9hSmeQv9jGYYR,Ray Brown And The Whispers,1988,https://i.scdn.co/image/ab67616d0000b27321c645d42f6e5681a523a966,1,1,137560,https://p.scdn.co/mp3-preview/e67a587063dea6f81b7be498e5571610912f63d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUFE06500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.6,0.637,8.0,-11.011,1.0,0.0302,0.202,0.0,0.025,0.974,129.699,4.0,,WM Australia,"C © 1988 Festival Records, P ℗ 1988 Festival Records",648 +649,spotify:track:6rPO02ozF3bM7NnOV4h6s2,Despacito - Remix,"spotify:artist:4V8Sr092TqfHkfAA5fXXqG, spotify:artist:4VMYDCV2IEDYJArk749S6m, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Luis Fonsi, Daddy Yankee, Justin Bieber",spotify:album:3Gq2Dme9nesdgoqNNlcN8O,Despacito Feat. Justin Bieber (Remix),"spotify:artist:4V8Sr092TqfHkfAA5fXXqG, spotify:artist:4VMYDCV2IEDYJArk749S6m","Luis Fonsi, Daddy Yankee",2017-04-17,https://i.scdn.co/image/ab67616d0000b273a6a335d613d151c626895a83,1,1,228826,https://p.scdn.co/mp3-preview/c590292029e985515f7063e8d5d291d677694eb9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USUM71703825,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,puerto rican pop,latin hip hop,reggaeton,trap latino,urbano latino,canadian pop,pop",0.653,0.816,2.0,-4.353,1.0,0.167,0.228,0.0,0.0967,0.816,178.085,4.0,,Republic/UMLE,"C © 2017 Universal Music Latin Entertainment, under exclusive license to Republic Records (RBMG/Def Jam Recordings), P ℗ 2017 Universal Music Latin Entertainment, under exclusive license to Republic Records (RBMG/Def Jam Recordings)",649 +650,spotify:track:4OwJLlshqNeVMp4AHESHkO,Looking Through the Eyes of a Beautiful Girl,spotify:artist:7nb3bQbrTAzmdR2NUKRVZ0,Autumn,spotify:album:0bXEnjUQjdusL60V3hy8VR,Song to Raymondo,spotify:artist:7nb3bQbrTAzmdR2NUKRVZ0,Autumn,1971,https://i.scdn.co/image/ab67616d0000b273696380b413d8af19bd7c46e7,1,4,198533,https://p.scdn.co/mp3-preview/c539cdf411fb1fce0ca4050f885776759a5eaef5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41300006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.675,0.92,0.0,-7.076,1.0,0.0315,0.436,3.25e-06,0.347,0.967,121.116,4.0,,Southern Cross Music Pty Limited,"C 1971 Chart Records, P 1971 Chart Records",650 +651,spotify:track:6NPVjNh8Jhru9xOmyQigds,Happy,spotify:artist:2RdwBSPQiwcmiDo9kixcl8,Pharrell Williams,spotify:album:5l3zEmMrOhOzG8d8s83GOL,Despicable Me 2 (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-06-18,https://i.scdn.co/image/ab67616d0000b27399140a62d43aec760f6172a2,1,4,233305,https://p.scdn.co/mp3-preview/5e0c8e5d899dea532d697fb20a851450e9614cfc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USQ4E1300686,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.652,0.757,1.0,-6.819,1.0,0.153,0.286,0.0,0.0886,0.962,159.911,4.0,,Back Lot Music,"C 2013 Back Lot Music, P 2013 Back Lot Music",651 +652,spotify:track:4IyDlKobNAzDkl6USG7rO2,Drive,spotify:artist:3YcBF2ttyueytpXtEzn1Za,Incubus,spotify:album:2Khc1QMbYbStcXLlHZ6gMz,Monuments And Melodies,spotify:artist:3YcBF2ttyueytpXtEzn1Za,Incubus,2009-06-11,https://i.scdn.co/image/ab67616d0000b273fa96578dd1caff14e356ba69,1,2,232760,https://p.scdn.co/mp3-preview/7948a397a8d6e2e9d37ea4827235fbe254463b66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19911007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,funk metal,funk rock,modern rock,nu metal,post-grunge,rock",0.645,0.835,4.0,-5.975,0.0,0.0372,0.0597,0.0139,0.158,0.661,90.56,4.0,,Epic/Immortal,C (P) 2009 Sony Music Entertainment,652 +653,spotify:track:6mFkJmJqdDVQ1REhVfGgd1,Wish You Were Here,spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,spotify:album:0bCAjiUamIFqKJsekOYuRw,Wish You Were Here,spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,1975-09-12,https://i.scdn.co/image/ab67616d0000b2731a84d71391df7469c5ab8539,1,4,334743,https://p.scdn.co/mp3-preview/e3d046771206da9115d0a619ede2210b610dc9f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBN9Y1100088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,progressive rock,psychedelic rock,rock,symphonic rock",0.481,0.262,7.0,-15.73,1.0,0.0414,0.735,0.0114,0.832,0.375,122.861,4.0,,Pink Floyd Records,"P (P) 2016 The copyright in this sound recording is owned by Pink Floyd Music Ltd., marketed and distributed by Sony Music Entertainment",653 +654,spotify:track:5YuXb6weZi7qAaylFiiSpI,Zorba's Dance - Radio Edit,spotify:artist:4lt3B5bsS8d1cfk49gkn9r,LCD,spotify:album:7DsOKkcNUQBdiP0HaV2PxN,Zorba's Dance,spotify:artist:4lt3B5bsS8d1cfk49gkn9r,LCD,2008-10-06,https://i.scdn.co/image/ab67616d0000b273cf0d4c0b62307087756ac907,1,1,179666,https://p.scdn.co/mp3-preview/976d4297a14dc7e13afb3601f52ee8e8e5583906?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBEXG0810002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.674,0.9,5.0,-6.701,1.0,0.0612,0.0595,0.874,0.0965,0.673,165.903,4.0,,Square Biz Records Ltd,"C (C) 2008 Sujiro Productions Ltd, P (P) 2008 Square Biz Records Ltd",654 +655,spotify:track:0NSeXLBOh16zjbENkAu0P6,Black Dog - 1990 Remaster,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,spotify:album:1Ugdi2OTxKopVVqsprp5pb,Led Zeppelin IV,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,1971-11-08,https://i.scdn.co/image/ab67616d0000b273cd25ce73e3eddeedb995fcee,1,1,294000,https://p.scdn.co/mp3-preview/78dd352fdbe8d2a867b72c5a71ac44ef6a462ab4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT29900608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.432,0.848,4.0,-8.095,0.0,0.0878,0.274,0.0344,0.233,0.743,81.201,4.0,,Rhino Atlantic,"C © 1971 Swan Song Inc., P ℗ 1971 Atlantic Recording Corp., a Warner Music Group company",655 +656,spotify:track:4IDfVjI1TlB1UwlC01T4Bm,Decode - Twilight Soundtrack Version,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:3CaQTJU2Cpx7GXTgenmb2r,Brand New Eyes,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2009-09-22,https://i.scdn.co/image/ab67616d0000b273b9abbedc516dd297039977bd,1,12,261959,https://p.scdn.co/mp3-preview/da276bb82ad6800f85b825b6f901b29d340f3cdc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT20804057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.282,0.866,10.0,-4.223,0.0,0.0588,0.000705,0.0055,0.101,0.277,163.987,4.0,,Fueled By Ramen/Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",656 +657,spotify:track:5E5S9we7D25v9Viz6fvBZL,Go Away Little Girl,spotify:artist:271pvVqDFiREx6PqzwOX8p,Steve Lawrence,spotify:album:0mMWnpu6exWueTy3vmvQtl,Go Away Little Girl,spotify:artist:271pvVqDFiREx6PqzwOX8p,Steve Lawrence,2014-03-12,https://i.scdn.co/image/ab67616d0000b273d661de031e8438ce563c7e32,1,1,136124,https://p.scdn.co/mp3-preview/18a72f8b41de07cb18fb05a4cc2737860969503c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,QMFME1412441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.399,0.307,0.0,-15.324,1.0,0.0347,0.733,0.0,0.118,0.67,108.028,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,657 +658,spotify:track:2uTGX4wxnRGS3i0FSOMGCQ,Three Times A Lady,spotify:artist:6twIAGnYuIT1pncMAsXnEm,Commodores,spotify:album:01xiIydpf1MyOg7DWDRF2N,Natural High,spotify:artist:6twIAGnYuIT1pncMAsXnEm,Commodores,1978-01-01,https://i.scdn.co/image/ab67616d0000b2731d1869ab51e0d5fb38efb83c,1,4,398506,https://p.scdn.co/mp3-preview/c24f1989ff8ff25e0eccf07cda3886a366f2da8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USMO17800286,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,disco,funk,mellow gold,motown,quiet storm,soft rock,soul",0.487,0.094,8.0,-19.555,1.0,0.0274,0.834,0.000224,0.172,0.0788,74.857,3.0,,Motown,"C © 1978 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1978 Motown Records, a Division of UMG Recordings, Inc.",658 +659,spotify:track:4vnYwFOZCVl0bmerWyuzRw,Country House,spotify:artist:7MhMgCo0Bl0Kukl93PZbYS,Blur,spotify:album:1bgkxe4t0HNeLn9rhrx79x,Blur: The Best Of,spotify:artist:7MhMgCo0Bl0Kukl93PZbYS,Blur,2000-10-23,https://i.scdn.co/image/ab67616d0000b27334cbf7013afccc7df67fa43f,1,13,237733,https://p.scdn.co/mp3-preview/3c0279fbcb88c9a43ab1bb9c939631b47bb15202?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAYE9500168,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,britpop,madchester,permanent wave,rock",0.341,0.895,9.0,-6.66,1.0,0.076,0.147,0.0,0.0741,0.677,174.987,4.0,,Parlophone UK,"C © 2000 Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 2000 Parlophone Records Ltd, P ℗ 2000 The copyright in this compilation is owned by Parlophone Records Ltd",659 +660,spotify:track:4hTZNimQzSOpFI1NljSFEA,Ms. Jackson - Radio Mix,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,spotify:album:0QhwxYDUougJiVDtyN4Lhm,"R&B - 100 Hits - The Greatest R n B album - 100 R & B Classics featuring Usher, Pitbull and Justin Timberlake",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-06-24,https://i.scdn.co/image/ab67616d0000b2731c3fd856b637a87c675d2f29,1,50,238826,https://p.scdn.co/mp3-preview/3c729580d64b6d8b1ddfbfe1894a0ca9f7dc552a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USLF20000517,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,hip hop,old school atlanta hip hop,rap,southern hip hop",0.831,0.827,11.0,-4.008,0.0,0.274,0.194,0.0,0.0886,0.678,95.039,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment,660 +661,spotify:track:6hmhG1b4LEyNuashVvuIAo,Never Forget You,"spotify:artist:1Xylc3o4UrD53lo9CvFvVg, spotify:artist:7uMh23xWiuR7zsNkuNcm2G","Zara Larsson, MNEK",spotify:album:5YLRVHDVRw3QqWbeTGpC5B,So Good,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,2017-03-17,https://i.scdn.co/image/ab67616d0000b2739e1683774b22648f4f178ed3,1,7,213427,https://p.scdn.co/mp3-preview/ee5474924adea2b97280f2000afdf50eda3f6e4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,SEWEE1500801,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,scandipop,swedish electropop,swedish pop,house,pop dance,uk contemporary r&b,uk dance,uk pop",0.583,0.732,11.0,-5.729,0.0,0.0459,0.00315,9.57e-06,0.269,0.277,146.005,4.0,,Epic/Record Company TEN,"P (P) 2017 Record Company TEN, exclusively licensed by Epic Records, a division of Sony Music Entertainment",661 +662,spotify:track:51AjDFaNRMWIOkn9PNCcpQ,Highway to Hell,spotify:artist:7D7R9UL0A4ngSASP5yW9ZQ,Back In Black,spotify:album:76VDwh1H6aDqirqL4y1ABx,Back in Black,spotify:artist:7D7R9UL0A4ngSASP5yW9ZQ,Back In Black,2012-06-14,https://i.scdn.co/image/ab67616d0000b2733ad5858333ae0ddaae61e5df,1,2,207797,https://p.scdn.co/mp3-preview/cd272e3c18cac4d81e702100dc9303db130cfa5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUUS00606437,spotify:user:bradnumber1,2021-08-08T09:26:31Z,britcore,0.463,0.874,4.0,-1.72,0.0,0.0923,0.00745,2.65e-06,0.076,0.603,115.706,4.0,,Rachelle Productions,C 2012 Rachelle Productions,662 +663,spotify:track:5QWQ9ChSbNDTSx1iZp961C,Wooden Heart,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0QVoYzGd1p8Z3ohEaM0lsc,Elvis 30 #1 Hits,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2002-09-24,https://i.scdn.co/image/ab67616d0000b273a0b8a1ce10fddbba6879262e,1,17,121600,https://p.scdn.co/mp3-preview/406f21825d9439d5e61eced616be2d5a46e783ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USRC10200083,spotify:user:bradnumber1,2022-01-12T23:14:35Z,"rock-and-roll,rockabilly",0.647,0.336,3.0,-8.517,1.0,0.0645,0.8,0.0,0.0719,0.905,164.249,4.0,,RCA Records Label,P This Compilation (P) 2002 Sony Music Entertainment,663 +664,spotify:track:4QjrLPqpSYSlLV6mqELvVg,On the Rebound,spotify:artist:6DQ6mdEhxCgHPqfX1niZZK,Floyd Cramer,spotify:album:1P4nnFm1S5OqHSfXlggBEV,The Essential Floyd Cramer,spotify:artist:6DQ6mdEhxCgHPqfX1niZZK,Floyd Cramer,1995,https://i.scdn.co/image/ab67616d0000b2730bb20cdc414670f85b75f850,1,10,127400,https://p.scdn.co/mp3-preview/6e4eaf854466a1b2896a9c70c86bc3c3d6843e35?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USRN19400115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"easy listening,honky-tonk piano,nashville sound",0.573,0.687,9.0,-11.829,1.0,0.034,0.29,0.00385,0.122,0.962,151.025,4.0,,RCA Records Label Nashville,P (P) 1995 BMG Entertainment,664 +665,spotify:track:3629vOzMNZRvR4pr0Hr59R,Coalman,spotify:artist:3tsvlpzINrKBjitq8YDz0D,Ronnie Burns,spotify:album:2z9yGKAr797mK8fe21MuOO,This Is,spotify:artist:3tsvlpzINrKBjitq8YDz0D,Ronnie Burns,2019-09-20,https://i.scdn.co/image/ab67616d0000b273ce3cec5f386d1342341bda16,1,1,172384,https://p.scdn.co/mp3-preview/12da4bb560ac5426392eab46e1543360f25b983a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBBLY1903429,spotify:user:bradnumber1,2021-08-08T09:26:31Z,beatlesque,0.488,0.908,7.0,-2.882,1.0,0.0533,0.0206,1.26e-05,0.377,0.761,135.305,4.0,,WM Australia,"C © 2019 Warner Music Australia Pty. Ltd., P ℗ 2019 The Compilation Warner Music Australia Pty. Ltd.",665 +666,spotify:track:2Mpj1Ul5OFPyyP4wB62Rvi,Survivor,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,spotify:album:2HcjLD0ButtKsQYqzoyOx9,Survivor,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,2001-05-01,https://i.scdn.co/image/ab67616d0000b273163cdae7f1e2c82786a84e3e,1,2,254026,https://p.scdn.co/mp3-preview/a0cbac2664d8cc005454d3a5b2e27878a62e1edd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM10019326,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary",0.514,0.911,1.0,-2.027,0.0,0.41,0.0559,0.0,0.775,0.619,161.109,4.0,,Columbia,"P (P) 2000, 2001 Sony Music Entertainment Inc.",666 +667,spotify:track:064SVQsmWl5EF0zahmzkQk,Let Your Love Flow,spotify:artist:5iB5AWIa7qreioi0AF3Bxa,The Bellamy Brothers,spotify:album:77EM0wkGevYQcBo1AJt7B0,Bellamy Brothers,spotify:artist:5iB5AWIa7qreioi0AF3Bxa,The Bellamy Brothers,1976-07-01,https://i.scdn.co/image/ab67616d0000b273dc0b5f94d9ee21d0eb209d81,1,6,196826,https://p.scdn.co/mp3-preview/5b748fccc2bf6ae74f992c3a19273eae7c37f5cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USCRB0101211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,country rock",0.596,0.897,3.0,-5.224,1.0,0.0402,0.0367,0.0,0.151,0.853,108.194,4.0,,Curb Records,"C 1976 Curb Records, Inc., P 1976 Curb Records, Inc.",667 +668,spotify:track:5itOtNx0WxtJmi1TQ3RuRd,Giant (with Rag'n'Bone Man),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:4f9iBmdUOhQWeP7dcAn1pf","Calvin Harris, Rag'n'Bone Man",spotify:album:4PwXTHenZZx7ebgsnTM65K,Giant (with Rag'n'Bone Man),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:4f9iBmdUOhQWeP7dcAn1pf","Calvin Harris, Rag'n'Bone Man",2019-01-11,https://i.scdn.co/image/ab67616d0000b273a9a9d8a16c0b4146fb707c02,1,1,229184,https://p.scdn.co/mp3-preview/5b1a4dd1d2707b17c9115dcb62ed4a4525e69d9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBARL1801703,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,neo soul",0.807,0.887,1.0,-4.311,0.0,0.0361,0.016,0.000503,0.0811,0.606,122.015,4.0,,Columbia,P (P) 2019 Sony Music Entertainment UK Limited,668 +669,spotify:track:27vTihlWXiz9f9lJM3XGVU,Slow Hands,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,spotify:album:6nkXOiymyczxK1XCZW5HEk,Slow Hands,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,2017-05-04,https://i.scdn.co/image/ab67616d0000b2730451d291f083ee7c166bea17,1,1,188174,https://p.scdn.co/mp3-preview/118b1c6fa70f8ef37db58d0c026dbe744df3afd0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUG11700631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.735,0.423,0.0,-6.652,1.0,0.0459,0.011,0.0,0.0553,0.851,85.899,4.0,,Capitol Records (US1A),"C © 2017 Neon Haze Music Ltd, under exclusive license to Capitol Records, P ℗ 2017 Neon Haze Music Ltd, under exclusive license to Capitol Records",669 +670,spotify:track:3DUcaEvPO72PijivCjtZcU,Candle In The Wind 1997,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:3g61rwvRs1NPeVBxuAMmHZ,Candle In The Wind 1997 / Something About ...,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1997-01-01,https://i.scdn.co/image/ab67616d0000b27352a56df14c3a5e318925787c,1,2,250106,https://p.scdn.co/mp3-preview/90ce5b4405d94ec5bb6cad78150967888b77bc5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAMS9700016,spotify:user:bradnumber1,2022-01-13T01:15:46Z,"glam rock,mellow gold,piano rock,rock",0.45,0.311,4.0,-8.175,1.0,0.0314,0.977,0.00713,0.167,0.367,125.648,4.0,,EMI,"C © 1997 Mercury Records Limited, P This Compilation ℗ 1997 Mercury Records Limited",670 +671,spotify:track:1uC9wG8ii0S4lK21TWUUAP,I'm A Boy - Mono Version,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:6Evh8ovUQhDp6qoOmeqozb,Maximum As & Bs,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,2017-10-27,https://i.scdn.co/image/ab67616d0000b27318a44a0cf0cfed69d7992c72,2,4,161440,https://p.scdn.co/mp3-preview/86ee79d525393baf26f8567aed844a444dc2ffaf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,GBUM71406119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.469,0.78,9.0,-6.704,1.0,0.037,0.0163,0.0124,0.0657,0.501,131.899,4.0,,UMC (Universal Music Catalogue),"C © 2017 Polydor Ltd. (UK), P This Compilation ℗ 2017 Polydor Ltd. (UK)",671 +672,spotify:track:6QicTxeiSaRkPnkGDUvYOs,Pretty Girls,"spotify:artist:26dSoYclwsYLMAKD3tpOr4, spotify:artist:5yG7ZAZafVaAlMTeBybKAL","Britney Spears, Iggy Azalea",spotify:album:76LmTxakuFgfAmvUvEXz5S,Pretty Girls,"spotify:artist:26dSoYclwsYLMAKD3tpOr4, spotify:artist:5yG7ZAZafVaAlMTeBybKAL","Britney Spears, Iggy Azalea",2015-05-04,https://i.scdn.co/image/ab67616d0000b273f28d6d9035fae9d4c93f0e6a,1,1,163960,https://p.scdn.co/mp3-preview/2c80228d5a3e849aed27c539186a9d755b357fc6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USRC11500679,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,australian hip hop,dance pop,pop",0.834,0.831,7.0,-6.061,0.0,0.0745,0.00799,0.0,0.217,0.788,103.009,4.0,,RCA Records Label,"P (P) 2015 RCA Records, a division of Sony Music Entertainment",672 +673,spotify:track:5932kbyNt445gDTT2chRUS,One More Try - Remastered,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:34K1Kvskt9arWy8E1Gz3Lw,Faith,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1987-10-30,https://i.scdn.co/image/ab67616d0000b273b7a9a6a2bf311630d3fc6956,1,4,350666,https://p.scdn.co/mp3-preview/2217e2ae73ab3569c1aa3c61034171f4c8073b6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBARL1000858,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.551,0.291,5.0,-12.544,1.0,0.0283,0.434,3.78e-05,0.11,0.0823,119.005,3.0,,Epic,P (P) 2010 Sony Music Entertainment UK Limited,673 +674,spotify:track:2ihCaVdNZmnHZWt0fvAM7B,Little Talks,spotify:artist:4dwdTW1Lfiq0cM8nBAqIIz,Of Monsters and Men,spotify:album:4p9dVvZDaZliSjTCbFRhJy,My Head Is An Animal,spotify:artist:4dwdTW1Lfiq0cM8nBAqIIz,Of Monsters and Men,2012-01-01,https://i.scdn.co/image/ab67616d0000b273cb3f67e8026e2e493a1e8262,1,6,266600,https://p.scdn.co/mp3-preview/a5dad05d521739606a83da0f00d3dc48344c6d77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USUM71119106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,metropopolis,modern rock,stomp and holler",0.457,0.757,1.0,-5.177,1.0,0.032,0.0206,0.0,0.146,0.417,102.961,4.0,,Universal Records,"C © 2012 SKRIMSL ehf, nder exclusive license to Universal Republic Records, a Division of UMG Recordings, Inc., P ℗ 2012 SKRIMSL ehf, nder exclusive license to Universal Republic Records, a Division of UMG Recordings, Inc.",674 +675,spotify:track:39DpseSbLd1y7kKY9IiJNj,Casanova,spotify:artist:1xu0cZR2dde8ZY9mztZ6Eq,Ultimate Kaos,spotify:album:4fBkQZNw215NjxBKmK4P4j,Urban R&B Party - 20 R&B/Soul Grooves,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-01-22,https://i.scdn.co/image/ab67616d0000b27310e6535d71c7cb7d2970c580,1,9,261040,https://p.scdn.co/mp3-preview/c08d3f3bade078dc369bda4d09bb3ad8697dccb5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDNT0200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new jack swing,0.716,0.727,4.0,-5.801,0.0,0.0764,0.0363,3.34e-05,0.0593,0.802,106.024,4.0,,Dome,"C 2009 Dome Records Ltd, P 2009 Dome Records Ltd",675 +676,spotify:track:16Cs9KsHzgunxaEfGrXysG,Play Hard (feat. Ne-Yo & Akon) - New Edit,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:0z4gvV4rjIZ9wHck67ucSV, spotify:artist:21E3waRsmPlU7jZsS13rcj","David Guetta, Akon, Ne-Yo",spotify:album:2RjYiccB99aFRJ8C0QxDf7,Play Hard (feat. Ne-Yo & Akon) [New Edit],spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2013-03-15,https://i.scdn.co/image/ab67616d0000b2737f9e5fda879c2f5c95a4f771,1,1,208845,https://p.scdn.co/mp3-preview/95fc31febcb4489cfd3586c38016c8e8a2fd8c90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GB28K1300010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,dance pop,dance pop,pop,r&b,urban contemporary",0.723,0.87,8.0,-3.013,0.0,0.0435,0.035,0.0,0.656,0.678,129.952,4.0,,Parlophone (France),"C © 2013 What A Music Ltd, Licence exclusive Parlophone Music France, P ℗ 2013 What A Music Ltd, Licence exclusive Parlophone Music France",676 +677,spotify:track:31vF1iGX0S3Dtv0rQfEksJ,Wings of a Dove,"spotify:artist:0szj7Sxtyluyjc2Arj0njB, spotify:artist:46Unp6DY3Zmy7QS1Fx47yq","Ferlin Husky, Hank Locklin",spotify:album:2c86eWBIqma55IMkTPAKZM,Country Greats,"spotify:artist:0szj7Sxtyluyjc2Arj0njB, spotify:artist:46Unp6DY3Zmy7QS1Fx47yq","Ferlin Husky, Hank Locklin",2013-08-13,https://i.scdn.co/image/ab67616d0000b273c19b3d4d432262b7e9ec97be,1,1,142906,https://p.scdn.co/mp3-preview/3a52b809717225e727cd6e7873d33bc2927b8048?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,US6X81300120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"nashville sound,nashville sound",0.5,0.319,4.0,-15.735,1.0,0.039,0.497,0.0,0.101,0.646,177.489,3.0,,Jerden,C (C) 2013 SoundWorks USA,677 +678,spotify:track:2Y7TfYvqdCjWxpPytltqaR,Baby Don't Hurt Me,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:6AMd49uBDJfhf30Ak2QR5s","David Guetta, Anne-Marie, Coi Leray",spotify:album:3otXcI1sFgHLjoDLhMCvlT,Best Night of Your Life,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2023-05-31,https://i.scdn.co/image/ab67616d0000b273ccca7fdee5215e6ad8146f00,1,2,140017,https://p.scdn.co/mp3-preview/a8f2e176e17e0f6298b42ef8e96118318fdd2b89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,UKWLG2300016,spotify:user:bradnumber1,2023-07-05T22:55:55Z,"big room,dance pop,edm,pop,pop dance,pop,new jersey underground rap,trap queen",0.602,0.91,7.0,-3.404,1.0,0.0308,0.00126,0.000174,0.12,0.228,127.944,4.0,,Copyright in this compilation EP is Warner Music UK Limited,"C 2023 Copyright in this compilation EP is Warner Music UK Limited, P 2023 Copyright in this compilation EP is Warner Music UK Limited",678 +679,spotify:track:4nGHNki2prAaoPWnKKNMpl,Ready 2 Go,"spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:0LsO2x5E0KNdMxkWh0EmE0","Martin Solveig, Kele",spotify:album:4HRpy93zKbFppMl79lfFS1,Smash,spotify:artist:1bj5GrcLom5gZFF5t949Xl,Martin Solveig,2011-01-01,https://i.scdn.co/image/ab67616d0000b273a991b1e9a11bafa3dd4c56f1,1,2,264932,https://p.scdn.co/mp3-preview/65b11b5599be40a45f2d6a75771aedb2ad4e5497?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,FR2PA1100020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,edm,electro house,filter house,house,pop dance,vocal house,new rave",0.545,0.866,8.0,-4.515,1.0,0.044,0.013,0.0,0.044,0.288,128.062,4.0,,Ministry Of Sound,"C © 2011 Temps D'Avance, P ℗ 2011 Temps D'Avance, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd",679 +680,spotify:track:2hkFpRMz0t9oYjDgtm4VuT,Passengers,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:7jKGIW8OzSkaHUuEINdGE3,Breaking Hearts (Remastered),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1984-07-09,https://i.scdn.co/image/ab67616d0000b2737844a9fc2426c608db2ff03f,1,6,203253,https://p.scdn.co/mp3-preview/4d2f185d538d216b7a4498ecc9b869005b5dd413?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALX0080005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.703,0.5,0.0,-12.776,1.0,0.0456,0.334,4.89e-05,0.112,0.935,121.205,4.0,,Universal Music Group,"C © 2003 Mercury Records Limited, P ℗ 1984 Mercury Records Limited",680 +681,spotify:track:4eTIe5eqds88bA9ua6p5p6,Fine Again,spotify:artist:6B5c4sch27tWHAGdarpPaW,Seether,spotify:album:5u0UdiircjbveLg8cs39iw,Disclaimer,spotify:artist:6B5c4sch27tWHAGdarpPaW,Seether,2002-01-01,https://i.scdn.co/image/ab67616d0000b2731085abdeea4d93b7c1d39554,1,3,243640,https://p.scdn.co/mp3-preview/88c943a91feee6e0775948fa376cc6bbe956287d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USWU30200015,spotify:user:bradnumber1,2023-01-31T06:41:13Z,"alternative metal,nu metal,post-grunge,south african rock",0.442,0.855,6.0,-2.985,0.0,0.0288,0.00049,0.0137,0.273,0.363,175.543,4.0,,Fantasy Records,"C © 2002 The Bicycle Music Company, P ℗ 2002 The Bicycle Music Company",681 +682,spotify:track:0nJW01T7XtvILxQgC5J7Wh,When I Was Your Man,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:58ufpQsJ1DS5kq4hhzQDiI,Unorthodox Jukebox,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2012-12-07,https://i.scdn.co/image/ab67616d0000b273926f43e7cce571e62720fd46,1,6,213826,https://p.scdn.co/mp3-preview/159fc05584217baa99581c4821f52d04670db6b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,88,USAT21206701,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.612,0.28,0.0,-8.648,1.0,0.0434,0.932,0.0,0.088,0.387,72.795,4.0,,Atlantic Records,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",682 +683,spotify:track:45s88Xopo6KvHc0PQ05aGg,My Generation - Mono Version,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:4upv5ZjkKMIUBjFNthFQih,The Who Sings My Generation - U.S. Version,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1966-04-01,https://i.scdn.co/image/ab67616d0000b273cbee7274742b0471f39bb8c8,1,6,198866,https://p.scdn.co/mp3-preview/4af9d31844d993ba290f1f755b1b56d880cbf2a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAKW6500004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.299,0.787,0.0,-7.93,0.0,0.069,0.14,0.0,0.292,0.716,94.798,4.0,,Geffen*,"C © 1965 Geffen Records, P ℗ 1965 Geffen Records",683 +684,spotify:track:2BFVqNyOjCNfPcUbtjXHLQ,Dreams - 2004 Remaster,spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,spotify:album:4RJcoQhc3aupccH9YnZ69o,The Very Best of Van Halen (UK Release),spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,2007-05-14,https://i.scdn.co/image/ab67616d0000b273c55701722ddba5ee3663ab3d,1,8,292333,https://p.scdn.co/mp3-preview/11d5e2e54f9d604f41a3a701a166f2ed62e2adb1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USWB10401736,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.418,0.939,0.0,-3.061,1.0,0.0638,0.203,0.0,0.0991,0.363,141.14,4.0,,Rhino/Warner Records,"C © 2004 Rhino Entertainment Company, a Warner Music Group company, P ℗ 2004 Warner Music Inc., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group company, for the US and WEA International for outside the United States",684 +685,spotify:track:3wjamuSoK5AwJUU2VIpx0L,Burn For You,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:5iRDO2cnFmb95rjzpiVJrT,The Very Best,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b27361720ec9790c8d7a64698ac7,2,6,297733,https://p.scdn.co/mp3-preview/e77de426320936196cd61fb0c2d69b4dfad1b58b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF050190182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.796,0.746,7.0,-8.182,1.0,0.0397,0.23,0.126,0.0826,0.346,115.733,4.0,,Universal Music Group,"C © 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",685 +686,spotify:track:4cqYUqmKMcb3q1tdImVpGW,Weightless,spotify:artist:46gyXjRIvN1NL1eCB8GBxo,All Time Low,spotify:album:5WoRLOCwzWVCGqFXLBghGx,Nothing Personal (Deluxe Version),spotify:artist:46gyXjRIvN1NL1eCB8GBxo,All Time Low,2009-07-07,https://i.scdn.co/image/ab67616d0000b273bd7374cabcaa20422ac046ad,1,1,198000,https://p.scdn.co/mp3-preview/aab5bfe6b71b19dfd9f2fe1b43fa33a95c444ac3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR20947001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,neon pop punk,pop punk",0.497,0.923,2.0,-4.512,1.0,0.137,0.00282,0.0,0.158,0.667,181.075,4.0,,Hopeless Records,"C 2009 Hopeless Records, Inc., P 2009 Hopeless Records, Inc.",686 +687,spotify:track:6PuaQbH3oPmj9XojS0SRaO,The Hardest Thing,spotify:artist:6V03b3Y36lolYP2orXn8mV,98º,spotify:album:16oW7he0sWe3dBxV2XaQx6,98 Degrees And Rising,spotify:artist:6V03b3Y36lolYP2orXn8mV,98º,1998-01-01,https://i.scdn.co/image/ab67616d0000b2738096e88dab9ff1a66541eb0f,1,12,274600,https://p.scdn.co/mp3-preview/be3882fc3d702b32d6a1fa2db073e4c61925b9d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USMO19883537,spotify:user:bradnumber1,2023-07-26T09:07:18Z,boy band,0.721,0.498,10.0,-7.43,1.0,0.0274,0.182,0.0,0.0769,0.558,88.007,4.0,,Motown,"C © 1998 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1998 Motown Records, a Division of UMG Recordings, Inc.",687 +688,spotify:track:2J3TcdKkdU42R9zWqWi6LJ,Dreams,"spotify:artist:00Ja3YjvU4DYCHWt6cPs42, spotify:artist:1LLc1LysYwIKPmcDVfrdMn","Jolyon Petch, Reigan",spotify:album:2wvHFdSUM3Q6Dtu7dowYpf,Dreams,"spotify:artist:00Ja3YjvU4DYCHWt6cPs42, spotify:artist:1LLc1LysYwIKPmcDVfrdMn","Jolyon Petch, Reigan",2021-04-16,https://i.scdn.co/image/ab67616d0000b27314c59f9b948853ee13b33260,1,1,198629,https://p.scdn.co/mp3-preview/d5eca7c86a3d69d2dd6b73f5a5877068909d8a0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUNV02100085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian house,deep tropical house,australian pop",0.781,0.672,0.0,-5.913,1.0,0.0337,0.151,0.0155,0.165,0.961,123.982,4.0,,Hussle Recordings AU,"C (C) 2021 Hussle Recordings a division of TMRW Music Pty Ltd, P (P) 2021 Hussle Recordings a division of TMRW Music Pty Ltd",688 +689,spotify:track:2a8JZE48aoLlL2BbWLDZQI,N Dey Say - Album Version / Explicit,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,spotify:album:2OngzqI3AHJL8k3XlTWEam,Suit,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2004-09-14,https://i.scdn.co/image/ab67616d0000b27348b2f89ee6cbefd0f889da25,1,6,217080,https://p.scdn.co/mp3-preview/55210e6ee086f85229651b9800bf55febc885549?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10400786,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.866,0.771,0.0,-4.032,1.0,0.0385,0.232,0.0,0.182,0.719,97.656,4.0,,Universal Music Group,"C © 2004 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2004 Universal Records, a Division of UMG Recordings, Inc.",689 +690,spotify:track:5acSb48zFAcXTdL5Wsk8xx,Lean On Me,"spotify:artist:7DMveApC7UnC2NPfPvlHSU, spotify:artist:0NIIxcxNHmOoyBx03SfTCD","Cheat Codes, Tinashe",spotify:album:5NXJVouKAFjwszJA8FxUY7,"HELLRAISERS, Part 1",spotify:artist:7DMveApC7UnC2NPfPvlHSU,Cheat Codes,2021-05-07,https://i.scdn.co/image/ab67616d0000b2737e38b56a37ff4ef73ab562b6,1,2,149856,https://p.scdn.co/mp3-preview/421b4b88d2c08a722f9d9d4cab17b4caddbe5da6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,US3DF2110919,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,alternative r&b,dance pop,metropopolis,pop,r&b",0.686,0.738,9.0,-5.802,1.0,0.287,0.0703,0.0,0.0505,0.45,101.829,4.0,,Cheat Codes LLC,"C 2021 Cheat Codes LLC under exclusive license to DashGo, P 2021 Cheat Codes LLC under exclusive license to DashGo",690 +691,spotify:track:1UQUJlTPbdufUmBU3RQ83q,Hook Me Up,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:6aL2SwYj5kSEvIcYORHP37,Hook Me Up,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2007-10-30,https://i.scdn.co/image/ab67616d0000b2730f3819fd1601ca0421194d32,1,2,175906,https://p.scdn.co/mp3-preview/ab083a105289959bccbef813031725a3dc459bf6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USWB10703749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.755,0.937,8.0,-3.04,1.0,0.0719,0.0425,0.121,0.0561,0.776,133.972,4.0,,Sire/Warner Records,"C © 2007 Sire Records for the U.S. Marketed by Warner Records Inc., A Warner Music Group Company., P ℗ 2007, 2008 Sire Records. Marketed by Warner Records Inc., A Warner Music Group Company",691 +692,spotify:track:0vswnzoKvhNkT1ehc0Tt19,From This Moment On - Pop On-Tour Version,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,spotify:album:02SQS3hERbgOjnZc0hmWKk,Greatest Hits,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,2004-01-01,https://i.scdn.co/image/ab67616d0000b273e47667214dddedc5095afc11,1,7,235106,https://p.scdn.co/mp3-preview/86c204a40e4316f2910199d1d9c4f7e9f23c0e0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USMR10400188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian country,canadian pop,contemporary country,country,country dawn",0.459,0.505,9.0,-5.487,1.0,0.0266,0.42,0.0,0.134,0.22,135.752,4.0,,Mercury Nashville,"C © 2004 Mercury Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 2004 Mercury Records, a Division of UMG Recordings, Inc.",692 +693,spotify:track:3R47BVunpwXhQbLWrClD94,Lights,spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,spotify:album:5pfpXvoJtSIFrbPIoBEv3R,The Essential Journey,spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,2001-10-16,https://i.scdn.co/image/ab67616d0000b2730f6ce5c138493ac768d9afc8,1,9,190666,https://p.scdn.co/mp3-preview/ff29338c2027f4bb5f35d9090d50a7940f56d330?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USSM17800103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,rock,soft rock",0.188,0.61,7.0,-7.665,1.0,0.0453,0.0985,0.00141,0.278,0.411,205.586,3.0,,Columbia,P This compilation (P) 2001 Sony Music Entertainment,693 +694,spotify:track:2Uak7fGdGpwsgbIQWA8iCQ,Leave Me Alone (Ruby Red Dress),spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,spotify:album:2CGgJ9PpKXTDCEvJ6qS9AV,Helen Reddy's Greatest Hits (And More),spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,1987-01-01,https://i.scdn.co/image/ab67616d0000b273823351ac09824d25f3b09db8,1,3,207533,https://p.scdn.co/mp3-preview/f1620773b03975f64bfbdd1856206036c0ed5434?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USCA28700186,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,mellow gold,soft rock",0.655,0.626,7.0,-11.386,1.0,0.0467,0.134,2.3e-05,0.0586,0.874,134.071,4.0,,Capitol Records,"C © 1987 Capitol Records, LLC, P This Compilation ℗ 1987 Capitol Records, LLC",694 +695,spotify:track:1n8iXuVlwWZOG8qBITvhkV,All I Hear,spotify:artist:77TQ5Xo9760Kft1sIEPGPS,Kate Alexa,spotify:album:7u2F6RDoq5eoYHr14wokic,Broken & Beautiful,spotify:artist:77TQ5Xo9760Kft1sIEPGPS,Kate Alexa,2006-01-01,https://i.scdn.co/image/ab67616d0000b273183e1e206434a20dc6c662f2,1,2,207720,https://p.scdn.co/mp3-preview/445a9fc55c72f3f25913a8b442f20b3cac6e799e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00625840,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.597,0.811,1.0,-4.278,1.0,0.034,0.00754,0.0,0.22,0.897,128.536,4.0,,Bloodlines,"C 2006 Bloodlines, P 2006 Bloodlines",695 +696,spotify:track:4kSKacywUJHdhyst4PL6pl,Somethin' Stupid,"spotify:artist:2HcwFjNelS49kFbfvMxQYw, spotify:artist:0ExYzTb7raTAfsXPtiI5vq","Robbie Williams, Nicole Kidman",spotify:album:3eWoVPAUtBO8JpwOkWpvnw,Swing When You're Winning,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2001-11-19,https://i.scdn.co/image/ab67616d0000b273a1fec51b4d321f10723fa14a,1,3,170493,https://p.scdn.co/mp3-preview/a6970e8ce32e34093e58f36de1b3a7b24f9fd698?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAYK0100176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop,hollywood",0.654,0.515,0.0,-12.185,1.0,0.0261,0.429,5.62e-06,0.174,0.677,106.191,4.0,,Chrysalis UK,"C © 2013 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2013 Universal Island Records, a division of Universal Music Operations Limited",696 +697,spotify:track:11Y3qwzKxzyOrKZx3BgnWD,The World I Used to Know,spotify:artist:7bKOOOKEkE918wKOQEhYnp,Jimmie Rodgers,spotify:album:2mNxmv5IcoHvwkU7TIAcSI,Kisses Sweeter Than Wine,spotify:artist:7bKOOOKEkE918wKOQEhYnp,Jimmie Rodgers,2017-03-16,https://i.scdn.co/image/ab67616d0000b273a0832ff85ddd8618cd776560,1,9,150080,https://p.scdn.co/mp3-preview/72301b0d5d5e89ec564bad8eb27e46e1fc63f714?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,UKDNQ1520820,spotify:user:bradnumber1,2021-08-08T09:26:31Z,yodeling,0.388,0.277,5.0,-14.011,0.0,0.0464,0.978,0.0007,0.169,0.355,80.824,4.0,,Westmill,"C 2017 Westside, P 2017 Westside",697 +698,spotify:track:6l8EbYRtQMgKOyc1gcDHF9,Bridge Over Troubled Water,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,spotify:album:0JwHz5SSvpYWuuCNbtYZoV,Bridge Over Troubled Water,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,1970-01-26,https://i.scdn.co/image/ab67616d0000b273ba7fe7dd76cd4307e57dd75f,1,1,293120,https://p.scdn.co/mp3-preview/e80a149b25c33d4e44579f7096b509fe379b0bc7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USSM16900808,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,melancholia,mellow gold,rock,soft rock",0.149,0.206,3.0,-13.888,1.0,0.0323,0.822,0.000649,0.115,0.264,79.764,4.0,,Columbia,"P (P) Originally released 1970. All rights reserved by Columbia Records, a division of Sony Music Entertainment",698 +699,spotify:track:3Aimpqxpvmz7jhJlNnEd5c,Swing The Mood,spotify:artist:4GzIiGnHYrOnq2LUiD6zdo,Jive Bunny and the Mastermixers,spotify:album:0ZtoKNv75D3PvB2i0vPrIP,Jive Bunny And The Mastermixers The Biggest Party On The Planet,spotify:artist:4GzIiGnHYrOnq2LUiD6zdo,Jive Bunny and the Mastermixers,2009-10-19,https://i.scdn.co/image/ab67616d0000b273ef5f2fdfe8678924e35acad4,3,11,259573,https://p.scdn.co/mp3-preview/25f27c56054f889e5bb61f36f4a369a777104c72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBCMJ9905669,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.865,0.512,8.0,-13.376,1.0,0.0521,0.049,0.0173,0.201,0.879,92.512,4.0,,Box Tree Music,C 2009 Music Factory Entertainment Group,699 +700,spotify:track:3u1S1OmAUhx5DRlLrXqyp3,Rise,"spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:1INuLZXjjVbcJRyWvD1iSq","Jonas Blue, Jack & Jack",spotify:album:3KjCdhPbjbLptyJzviKu4P,Rise,"spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:1INuLZXjjVbcJRyWvD1iSq","Jonas Blue, Jack & Jack",2018-05-25,https://i.scdn.co/image/ab67616d0000b273ffe7d26c10ff0a32aeea2dc3,1,1,194407,https://p.scdn.co/mp3-preview/091e564ad1cc6ee5b08bac2c9e88d3002be0485e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBUM71802109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop dance,tropical house,uk dance,pop,teen pop",0.69,0.784,1.0,-4.653,1.0,0.032,0.323,0.0,0.203,0.669,106.066,4.0,,Positiva,"C © 2018 Universal Music Operations Limited, P ℗ 2018 Universal Music Operations Limited",700 +701,spotify:track:5T0VoskNbpJIqm2RSPU2Xt,Think Twice,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:6Po5zdKMIH5Xk99vjXyQpC,The Colour Of My Love,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1993-11-09,https://i.scdn.co/image/ab67616d0000b27363e07c2dbc7450974a146e96,1,3,288000,https://p.scdn.co/mp3-preview/f90b2cef1708eee39eefe1a561eeae0b57dd428d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,CAC229900138,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.547,0.397,2.0,-10.463,0.0,0.0271,0.387,0.0,0.14,0.277,134.346,4.0,,Columbia,P (P) 1993 Sony Music Entertainment (Canada) Inc.,701 +702,spotify:track:5Rx7IkXVP4Z1AoOgPACGKj,Why Does It Always Rain on Me?,spotify:artist:3bUwxJgNakzYKkqAVgZLlh,Travis,spotify:album:18NWKHHNIupWIvXxsG9vHh,Singles,spotify:artist:3bUwxJgNakzYKkqAVgZLlh,Travis,2004-11-01,https://i.scdn.co/image/ab67616d0000b273fd8b0984f3f6aa56a0be7614,1,4,264826,https://p.scdn.co/mp3-preview/83a9cd942e9b42eb7a662a2cc025e04f7ee19f67?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBPF9900287,spotify:user:bradnumber1,2021-08-08T09:26:31Z,britpop,0.453,0.559,4.0,-8.121,1.0,0.0283,0.0877,0.000323,0.0788,0.448,108.408,4.0,,Independiente,"C 2016 Independiente Limited, P 2004 Independiente Limited",702 +703,spotify:track:5wJ0BL1beppAHQO3DtlEqh,Sex On The Radio,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:08utRHYjRSDcceEsjFRFX0,Cardiology,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2010-01-01,https://i.scdn.co/image/ab67616d0000b273fab23a7730496d05987df477,1,7,196586,https://p.scdn.co/mp3-preview/91e00c58f5040f766649494c8059675c9f0e63a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USCA21002628,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.548,0.815,9.0,-4.555,1.0,0.0662,0.0985,0.0,0.0175,0.867,151.97,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",703 +704,spotify:track:0WYsybfHELTUWBH0zb0ADF,When the War Is Over,spotify:artist:0pcFlG7v2bPuExwKqTYSPu,Cosima De Vito,spotify:album:6UfJgMH4OIg7ANc1azFZYG,When the War Is Over,spotify:artist:0pcFlG7v2bPuExwKqTYSPu,Cosima De Vito,2012-06-17,https://i.scdn.co/image/ab67616d0000b2735f99d3530a73179eaf4b38f0,1,1,228560,https://p.scdn.co/mp3-preview/787d4c7f08373178e4dd90fe2ca02e868a8938cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUQOZ2000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.564,0.435,11.0,-5.549,1.0,0.0245,0.458,1.01e-05,0.16,0.132,86.946,4.0,,independent,"C 2012 independent, P 2012 independent",704 +705,spotify:track:23M7cQkNJLiddeubvVgaQl,The Wild Boys,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:7xbWtTByfdMWFfxXmeFFl0,Greatest,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1998-11-09,https://i.scdn.co/image/ab67616d0000b2738fb8aca87001515a6945b9b7,1,12,257600,https://p.scdn.co/mp3-preview/743477853ac06a55c6e1063cf9548eb0235e7c45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAYE8400060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.741,0.837,11.0,-7.622,0.0,0.0638,0.404,0.0,0.138,0.583,115.69,4.0,,Parlophone UK,"C © 1998 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1998 Parlophone Records Ltd, a Warner Music Group Company",705 +706,spotify:track:7xT0GApaXGNVMUdRx2taZv,Hide Away,spotify:artist:6Dd3NScHWwnW6obMFbl1BH,Daya,spotify:album:1txlKAEVt0FL3dLOAX6pZj,Daya,spotify:artist:6Dd3NScHWwnW6obMFbl1BH,Daya,2015-11-27,https://i.scdn.co/image/ab67616d0000b273981e46bcaafccaa551ec5013,1,5,192381,https://p.scdn.co/mp3-preview/75db3fa8425153819a2f46794a403854f9a45dce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM4ZV1500057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,pop",0.884,0.826,11.0,-3.672,0.0,0.0854,0.222,2.29e-06,0.0719,0.466,94.997,4.0,,Z-Entertainment,"C (C) 2015 ARTBEATZ. Distributed by Sony Music Entertainment, P (P) 2015 ARTBEATZ. Distributed by Sony Music Entertainment",706 +707,spotify:track:3a0Qs1ZqkjTVne2XJuSGQw,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:2PzvfJGK74FgwPrvMB0qOh,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2008-11-17,https://i.scdn.co/image/ab67616d0000b2732e14e3c145c0cac92a12feac,1,2,228786,https://p.scdn.co/mp3-preview/98f9e1dd28db31360716b0419ee860bff938ff44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUBM00800490,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.677,0.684,9.0,-4.377,0.0,0.0428,0.149,0.0,0.0451,0.783,113.996,4.0,,Sony BMG Music Entertainment,P (P) 2008 SONY BMG Music Entertainment (Australia) Pty Limited,707 +708,spotify:track:6Ac4NVYYl2U73QiTt11ZKd,Hooked On A Feeling,"spotify:artist:0UpuH5U4nZ3UGGUJi0Zfbp, spotify:artist:1Ek3VdZ8EPmcvgRIqnHlrF","Blue Swede, Björn Skifs",spotify:album:6fBMaH0IiymemwFKmn18Ze,Hooked On A Feeling,"spotify:artist:0UpuH5U4nZ3UGGUJi0Zfbp, spotify:artist:1Ek3VdZ8EPmcvgRIqnHlrF","Blue Swede, Björn Skifs",1973-04-01,https://i.scdn.co/image/ab67616d0000b273b2439940aedd2801c9ae2e5b,1,1,172866,https://p.scdn.co/mp3-preview/349b959f3339c75b269ab47a0f576c5f39ba46cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,SEAMA7343050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic swedish pop,classic swedish pop",0.547,0.82,8.0,-6.728,1.0,0.0805,0.261,0.0,0.3,0.933,118.208,4.0,,Parlophone Sweden,"C © 1973 Parlophone Music Sweden, a division of Warner Music Sweden AB, P ℗ 1973 Parlophone Music Sweden, a division of Warner Music Sweden AB",708 +709,spotify:track:2rJojRundKuKFgbvmCAYva,Me And My Broken Heart,spotify:artist:0kkxsdcaWmWU2yWAqclDh4,Rixton,spotify:album:7aC4UlUmofbGlAX7j9X79V,Me And My Broken Heart,spotify:artist:0kkxsdcaWmWU2yWAqclDh4,Rixton,2014-01-01,https://i.scdn.co/image/ab67616d0000b273bd2a1ebe3961801fd678cefa,1,1,193826,https://p.scdn.co/mp3-preview/92a1dd5814d88c95933f7170200e6dbaf9c3b7b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71401800,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,teen pop,viral pop",0.545,0.775,5.0,-4.325,0.0,0.0349,0.00636,0.0,0.192,0.516,174.086,4.0,,Universal Music Group,"C © 2014 School Boy/Giant Little Man/Mad Love/Interscope Records, P ℗ 2014 School Boy/Giant Little Man/Mad Love/Interscope Records",709 +710,spotify:track:0Jy2S50dmRT3te5OeCEARx,The Beautiful People,spotify:artist:2VYQTNDsvvKN9wmU5W7xpj,Marilyn Manson,spotify:album:6R5TqxpmUg1KhHORpsp9Ho,Lest We Forget (The Best Of) [International Version (Explicit)],spotify:artist:2VYQTNDsvvKN9wmU5W7xpj,Marilyn Manson,2004-01-01,https://i.scdn.co/image/ab67616d0000b273307693f81df21543fcbb0437,1,16,222773,https://p.scdn.co/mp3-preview/83ea8b4bb1e933b883b42c768916a04c477ce757?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR19601008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,hard rock,industrial,industrial metal,industrial rock,nu metal,post-grunge,rock",0.61,0.948,9.0,-4.938,1.0,0.113,0.00404,0.0978,0.042,0.786,144.036,4.0,,Universal Music Group,"C © 2004 Interscope Records, P ℗ 2004 Interscope Records",710 +711,spotify:track:3towKHKVOXCCcL1fHv6xFO,Capital Letters,"spotify:artist:5p7f24Rk5HkUZsaS3BLG5F, spotify:artist:1okJ4NC308qbtY9LyHn6DO","Hailee Steinfeld, BloodPop®",spotify:album:2nmhzJgbpV1eJ5lvtZ7Z1c,"Capital Letters [From ""Fifty Shades Freed (Original Motion Picture Soundtrack)""]","spotify:artist:5p7f24Rk5HkUZsaS3BLG5F, spotify:artist:1okJ4NC308qbtY9LyHn6DO","Hailee Steinfeld, BloodPop®",2018-01-12,https://i.scdn.co/image/ab67616d0000b273f6630162a999e1cf78afbbae,1,1,219386,https://p.scdn.co/mp3-preview/411ad87495ab0cd6b1d6eaa1df9e73cc4c1c2423?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQ4E1703340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,electropop",0.672,0.82,0.0,-5.473,1.0,0.0767,0.0342,6.67e-06,0.0921,0.463,100.069,4.0,,Universal Music Group,"C © 2018 Universal Studios, P ℗ 2018 Universal Studios",711 +712,spotify:track:18CODOzJ5DWzWh6kAeKiSC,Let's Get Married (feat. Run) - ReMarqable Remix,"spotify:artist:7Aq8lpLMSt1Zxu56pe9bmp, spotify:artist:2qFXvV0t7QXlF7Tdc9YTie, spotify:artist:6eZD2i7kAelKt5z1ytH0Me","Jagged Edge, RUN, Lamarquis Jefferson",spotify:album:72phYQZz7SLAT9xwK6LMO6,The Hits,spotify:artist:7Aq8lpLMSt1Zxu56pe9bmp,Jagged Edge,2006-11-21,https://i.scdn.co/image/ab67616d0000b2731577830e09fc0acee2e43793,1,9,249040,https://p.scdn.co/mp3-preview/14249d1478a3764839bbe13a128993279810c8cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM10009558,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,r&b,urban contemporary",0.852,0.694,1.0,-6.765,1.0,0.0653,0.0121,0.0,0.126,0.789,109.906,4.0,,Sony Urban Music/Columbia,"P This compilation (P) 2006 Columbia Records, a division of Sony Music Entertainment",712 +713,spotify:track:62BxlOvQCjLNQA5ARA4Dug,Runaways,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,spotify:album:3bvS3DlTwV35j2qwFhDvxx,Battle Born,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,2012-09-17,https://i.scdn.co/image/ab67616d0000b273f555f994cd61c8d017f53a27,1,2,243786,https://p.scdn.co/mp3-preview/bbe22c953fac556f6b5b0871332fa4f9255570f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USUM71206893,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,modern rock,permanent wave,rock",0.409,0.837,1.0,-4.043,1.0,0.0406,0.00116,0.00651,0.0855,0.199,121.757,4.0,,Island Records,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",713 +714,spotify:track:0eH2eHURaXUP15D8gQlfjx,LoveGame,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:1qwlxZTNLe1jq3b0iidlue,The Fame,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2008-01-01,https://i.scdn.co/image/ab67616d0000b273e691217483df8798445c82e2,1,2,216333,https://p.scdn.co/mp3-preview/c20e999d7df1103e0a9a047b088b40cdff5943d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUM70824404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.894,0.678,6.0,-5.611,0.0,0.0523,0.00569,2.43e-06,0.317,0.844,105.029,4.0,,Streamline/Interscope,"C © 2008 Interscope Records, P ℗ 2008 Interscope Records",714 +715,spotify:track:1NrbnHlR2BFREcyWXHIHip,When I'm Sixty Four - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:6QaVfG1pHYl1z15ZxkvVDW,Sgt. Pepper's Lonely Hearts Club Band (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1967-06-01,https://i.scdn.co/image/ab67616d0000b27334ef8f7d06cf2fc2146f420a,1,9,157666,https://p.scdn.co/mp3-preview/50d2ef3eab081ff7f73d41068ae0fe15567bbbee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBAYE0601515,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.704,0.241,1.0,-13.258,1.0,0.0476,0.625,2.8e-05,0.0868,0.661,140.411,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",715 +716,spotify:track:2AQjnvUZetDyd7YRB7QQQL,YOU'RE GONNA LOVE THIS,spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,spotify:album:5KImn49DLeciedq247qZ50,OMENS,spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,2013-06-14,https://i.scdn.co/image/ab67616d0000b27381ff424a9efaf8be00d94e14,1,3,211700,https://p.scdn.co/mp3-preview/a1f56d3b78fbfb2e4d8c7b60c967aa706dd8c9bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USAT21202845,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropowerpop,pop punk,pop rap,post-teen pop",0.664,0.876,0.0,-4.179,1.0,0.185,0.122,1.05e-06,0.133,0.55,130.06,4.0,,Photo Finish,"C © 2012 Photo Finish Records, LLC. All Rights Reserved. Manufactured and Distributed by Atlantic Recording Corporation, a Warner Music Group Company, P ℗ 2012 Photo Finish Records, LLC. All Rights Reserved. Manufactured and Distributed by Atlantic Recording Corporation, a Warner Music Group Company",716 +717,spotify:track:6kBU9uWqar0Fw2Ws0he11A,You Were Meant For Me,spotify:artist:6FbDoZnMBTdhhhLuJBOOqP,Jewel,spotify:album:6t0qVXx77kMCVyxHejzJsP,Pieces Of You,spotify:artist:6FbDoZnMBTdhhhLuJBOOqP,Jewel,1995,https://i.scdn.co/image/ab67616d0000b2733ee723db532524d6a22d26af,1,10,254480,https://p.scdn.co/mp3-preview/1391f657536744de665e3ff060edde0c5f651c44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20100948,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alaska indie,ectofolk,lilith,permanent wave,pop rock,singer-songwriter",0.582,0.33,6.0,-7.928,1.0,0.0347,0.791,1.48e-06,0.105,0.407,111.873,4.0,,Concord Music Group,"C 1994 Concord Music Group, Inc., P 1994 Concord Music Group, Inc.",717 +718,spotify:track:6bOTe8T116DNpwp2H6Hxgh,Money For Nothing,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,spotify:album:0eB4vHv83yYk1pMim2NIar,The Best of Dire Straits & Mark Knopfler - Private Investigations (Limited Edition),"spotify:artist:0FI0kxP0BWurTz8cB8BBug, spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T","Mark Knopfler, Dire Straits",2005-11-07,https://i.scdn.co/image/ab67616d0000b27311cd3607f236dd71b56b1029,1,8,504200,https://p.scdn.co/mp3-preview/4802f596f787c2fd99f7614083092993b66c7327?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088500674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock",0.644,0.776,7.0,-6.803,0.0,0.0376,0.037,0.000107,0.0591,0.604,134.199,4.0,,Mercury Records Limited,"C (C) 2005 Mercury Records Limited, P (P) 2005 Mercury Records Limited",718 +719,spotify:track:7gozgbG5EBTukCFWToTRA5,I Still Haven't Found What I'm Looking For - Remastered 2007,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:2qKmY7yt0kXdzSQxYAu9eZ,The Joshua Tree (Deluxe Edition Remastered),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1987-03-10,https://i.scdn.co/image/ab67616d0000b2732e5cea3a0e09cccb3d1568e8,1,2,277480,https://p.scdn.co/mp3-preview/977c8d1d535253a9a4e1061cf4585b624dd205c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70709783,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.565,0.764,1.0,-9.43,1.0,0.0351,0.0139,0.00488,0.079,0.686,100.891,4.0,,Universal Music Group,"C © 2007 Universal-Island Records Ltd., P ℗ 2007 Universal-Island Records Ltd.",719 +720,spotify:track:1aKsg5b9sOngINaQXbB0P7,Love Me Harder,"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ","Ariana Grande, The Weeknd",spotify:album:5AMOKSM1ftb3opIbGT2d4q,My Everything (Deluxe),spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2014-08-22,https://i.scdn.co/image/ab67616d0000b273be58cd5a2dbe92c2b43cc713,1,9,236133,https://p.scdn.co/mp3-preview/16f1d643c2378d5f2911042bacb5bb00aba766e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71409728,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,canadian contemporary r&b,canadian pop,pop",0.472,0.714,1.0,-4.389,0.0,0.0334,0.00937,0.0,0.0764,0.24,98.992,4.0,,Universal Music Group,"C © 2014 Republic Records, a division of UMG Recordings, Inc., P ℗ 2014 Republic Records, a division of UMG Recordings, Inc.",720 +721,spotify:track:39NlYZyFXdYF4V4BVoOfNd,NYC Beat,spotify:artist:3cQA9WH8liZfeja1DxcDYE,Armand Van Helden,spotify:album:7y6AaxphLkaL6BoAVJtIyS,NYC Beat,spotify:artist:3cQA9WH8liZfeja1DxcDYE,Armand Van Helden,2007-05-27,https://i.scdn.co/image/ab67616d0000b27385027eefb81d259e6bcb101c,1,1,197373,https://p.scdn.co/mp3-preview/357511e6615168b1f16345af2705b0f4178bf02f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBEFR0701015,spotify:user:bradnumber1,2023-11-28T13:16:55Z,"big beat,classic house,deep house,disco house,filter house,house,speed garage,uk dance,vocal house",0.74,0.915,8.0,-4.838,1.0,0.0526,0.000462,6.84e-05,0.454,0.539,129.99,5.0,,Southern Fried Records,"C 2007 - Southern Fried Records, P 2007 - Southern Fried Records",721 +722,spotify:track:1CnN9udhDokm7lARZjMji2,Killer Queen - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:2mEAmmRoZrvhBh1Vic03fZ,Sheer Heart Attack (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1974-11-08,https://i.scdn.co/image/ab67616d0000b27354454f6a276d3494b7450674,1,2,179600,https://p.scdn.co/mp3-preview/dc1934095edc10c4cb96f84bf74af82bc8abe62f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71029606,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.535,0.651,10.0,-6.326,1.0,0.0544,0.391,0.0,0.133,0.612,117.218,4.0,,Universal Music Group,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",722 +723,spotify:track:38Q8bp8VfCzCWWa0lPzCnB,Down With The Trumpets,spotify:artist:2ajhZ7EA6Dec0kaWiKCApF,Rizzle Kicks,spotify:album:6AAvPJl1CCwaRog3GoLBr0,Stereo Typical,spotify:artist:2ajhZ7EA6Dec0kaWiKCApF,Rizzle Kicks,2011-01-01,https://i.scdn.co/image/ab67616d0000b2732cbcb97c690cdbbaa2d71551,1,4,186851,https://p.scdn.co/mp3-preview/a82fd5749c42616ec5024e89c38bd4960b29d435?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71103914,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk hip hop,0.754,0.877,4.0,-4.59,0.0,0.079,0.0876,0.0,0.219,0.771,115.021,4.0,,Universal Music Group,"C © 2011 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Universal Island Records, a division of Universal Music Operations Limited",723 +724,spotify:track:7mtxlSJQej3cCBXySgEjlY,Boyfriend,spotify:artist:1MIVXf74SZHmTIp4V4paH4,Mabel,spotify:album:1lf8oA3lANa6trf3iPho22,Boyfriend,spotify:artist:1MIVXf74SZHmTIp4V4paH4,Mabel,2020-02-26,https://i.scdn.co/image/ab67616d0000b2739a0fd838ca0d5f0ee7ddfd8f,1,1,225266,https://p.scdn.co/mp3-preview/c30bab81f449351f455276393ff3a23f2be77552?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBUM72000031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.799,0.847,11.0,-3.022,0.0,0.0541,0.0597,0.0,0.044,0.67,99.991,4.0,,Polydor Records,"C © 2020 Mabel McVey, under exclusive licence to Universal Music Operations Limited, P ℗ 2020 Mabel McVey, under exclusive licence to Universal Music Operations Limited",724 +725,spotify:track:6wn61Fzx9XMxQmieLpoIhW,White Horse,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:2dqn5yOQWdyGwOpOIi9O4x,Fearless,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2008-11-11,https://i.scdn.co/image/ab67616d0000b2737b25c072237f29ee50025fdc,1,5,234426,https://p.scdn.co/mp3-preview/530a6659bb8c0628fb7f11c97ad0eafe20980786?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USCJY0803264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.578,0.34,0.0,-8.027,1.0,0.0264,0.305,0.0,0.104,0.223,92.702,4.0,,"Big Machine Records, LLC","C © 2008 Apollo A-1 LLC, P ℗ 2008 Apollo A-1 LLC",725 +726,spotify:track:4rJTwIvqbJLhvO5sKGOpgJ,Sunday Morning,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:7ERPhrxdBWkGo4HN1SuJSr,Songs About Jane: 10th Anniversary Edition,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2012-06-05,https://i.scdn.co/image/ab67616d0000b273d5056d7ed504d47262e8bfe6,1,8,244880,https://p.scdn.co/mp3-preview/41f14a5612da8fdf53a11d03fb2e705ef3ba2084?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJAY0300086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.609,0.779,0.0,-5.213,1.0,0.0519,0.0748,0.0,0.0702,0.786,88.036,4.0,,Universal Music Group,"C © 2012 A&M/Octone Records, P ℗ 2012 A&M/Octone Records",726 +727,spotify:track:3LlAyCYU26dvFZBDUIMb7a,Demons,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:6htgf3qv7vGcsdxLCDxKp8,Night Visions,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273b2b2747c89d2157b0b29fb6a,1,4,175200,https://p.scdn.co/mp3-preview/dffa47dbbfe06cff32e8b676e66e7d50ad358ca7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USUM71201071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.5,0.71,3.0,-3.015,1.0,0.0339,0.19,0.00025,0.329,0.419,89.929,4.0,,Kid Ina Korner / Interscope,"C © 2012 KIDinaKORNER/Interscope Records, P ℗ 2012 KIDinaKORNER/Interscope Records",727 +728,spotify:track:78oVENjkS4tIEnmdmK0lhT,If I Were a Carpenter,spotify:artist:5IukvMjujEz3crLaC6SW1T,Swanee,spotify:album:4VBGwrvT60WaYRadVwMG65,Heart & Soul,spotify:artist:5IukvMjujEz3crLaC6SW1T,Swanee,1983-10-18,https://i.scdn.co/image/ab67616d0000b2739fd894a8c15b5685bfae39f1,1,12,213906,https://p.scdn.co/mp3-preview/6e92649ae5d4facaa239dbdba53327a809b4400c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUGZD1300052,spotify:user:bradnumber1,2020-03-05T09:20:32Z,australian rock,0.516,0.792,7.0,-5.388,1.0,0.0339,0.0906,4.27e-05,0.27,0.496,106.939,4.0,,John Swan Music,"C 1983 John Swan Music, P 1983 John Swan Music",728 +729,spotify:track:1QBbha91z5mL9lesOCjHG6,Percolator (Twist),spotify:artist:7oiJO2QWnUdEyZdkYmIu3z,Billy Joe & The Checkmates,spotify:album:72sfuuKyPPD0oeSk5ABC1L,Lights Out The Dore Records Story 1958-1962,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-07-01,https://i.scdn.co/image/ab67616d0000b273ae49e3ad3fa4e2e113908e79,1,18,133041,https://p.scdn.co/mp3-preview/e08fa5507d422513ac3b3d49272dd5a153d9d97d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,BEDO61516969,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.701,0.53,6.0,-10.681,1.0,0.0976,0.729,0.0362,0.084,0.801,150.464,4.0,,Crazy Warthog Media,"C 2015 Crazy Warthog Media, P 2015 Crazy Warthog Media",729 +730,spotify:track:7DFawVSjI88xR9mjnWwURg,If You Don't Know Me by Now - 2008 Remaster,spotify:artist:1fa0cOhromAZdq2xRA4vv8,Simply Red,spotify:album:0R8Pl54TXSwXWtAEVaP7ew,A New Flame (Expanded Version),spotify:artist:1fa0cOhromAZdq2xRA4vv8,Simply Red,1989,https://i.scdn.co/image/ab67616d0000b2738f8dc242b396ddc31c01d36c,1,9,204000,https://p.scdn.co/mp3-preview/0c6cd273031aef9c142b6eaeb56ea470ceb7e1a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBCRL0800110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,new romantic,new wave,new wave pop,soft rock,sophisti-pop",0.638,0.352,10.0,-9.266,1.0,0.0268,0.492,0.0,0.105,0.204,94.173,3.0,,Rhino/Elektra,"C © 2008 Warner Music UK Ltd. / Simplyred.com Ltd., P ℗ 2008 Warner Music UK Ltd. / Simplyred.com Ltd. Marketed by Rhino Entertainment Company, a Warner Music Group Company",730 +731,spotify:track:5yMZU1xolje7E1xGmezcuj,Cleanin' Out My Closet,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:1ftvBBcu7jYIvXyt3JWB8S,The Eminem Show,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2002-05-26,https://i.scdn.co/image/ab67616d0000b273ccdb1982626f299b3b1d3efd,1,4,297933,https://p.scdn.co/mp3-preview/ccfd4b1431ecb301db1ba7f51f47c52c200c391e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10211054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.908,0.762,9.0,-4.773,0.0,0.153,0.0658,0.0,0.104,0.869,148.016,4.0,,Universal Music Group,"C © 2002 Aftermath Records, P ℗ 2002 Aftermath Records",731 +732,spotify:track:2Inz7gGPGgieN0CTw9TOOs,September Song,spotify:artist:4kYGAK2zu9EAomwj3hXkXy,JP Cooper,spotify:album:1aTPXL4h5bDOBlPR9xbETc,Raised Under Grey Skies (Deluxe),spotify:artist:4kYGAK2zu9EAomwj3hXkXy,JP Cooper,2017-10-06,https://i.scdn.co/image/ab67616d0000b273ae6146395e4628a4b31b537a,1,2,220290,https://p.scdn.co/mp3-preview/b8e8c410338c32877548c196d484ffddf3774a28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71604513,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk pop,0.622,0.609,0.0,-6.702,0.0,0.038,0.0455,0.0,0.0903,0.398,95.955,4.0,,Universal Music Group,"C © 2017 Island Records, a division of Universal Music Operations Limited, P ℗ 2017 Island Records, a division of Universal Music Operations Limited",732 +733,spotify:track:41gi9iAWpFW3ps8Tvii6z0,Not Fair,spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,spotify:album:4zZKTqu7DkowQnO9Bcx4KX,"It's Not Me, It's You (Special Edition)",spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,2008-12-02,https://i.scdn.co/image/ab67616d0000b27340c8d7aaf779b7a715dba250,1,3,202546,https://p.scdn.co/mp3-preview/035fb6f3e1540c8b40af4a6fd1218c750e54216a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,58,GBAYE0802261,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo mellow",0.718,0.806,5.0,-9.191,1.0,0.0376,0.052,0.0137,0.0932,0.929,121.488,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",733 +734,spotify:track:5d81CyB1uGBwEw98fhBazI,Can You Feel,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,spotify:album:6FLX6wPZ49m4mLfX9sYRse,Imaginate,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,1999-10-18,https://i.scdn.co/image/ab67616d0000b273629d9b0ec5d43b4167128da5,1,1,197626,https://p.scdn.co/mp3-preview/1b8498fb6539b6a7f5548528784b533191895814?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUWA09900340,spotify:user:bradnumber1,2022-04-20T22:23:09Z,"australian pop,australian rock",0.608,0.727,8.0,-7.164,1.0,0.03,0.0017,7.35e-05,0.172,0.389,113.973,4.0,,WM Australia,"C © 1999 WARNER MUSIC AUSTRALIA PTY LIMITED, P ℗ 1999 WARNER MUSIC AUSTRALIA PTY LIMITED",734 +735,spotify:track:06iMqWThw4w8fTFyccvOwr,Ride Wit Me,"spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:3L2SIGZah4QZSvN4wC8rHl","Nelly, City Spud",spotify:album:2HWBPvQoaMFBF6krXyzpOv,Country Grammar,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2000-06-27,https://i.scdn.co/image/ab67616d0000b273dcbcf12cbd20a8b5bd3b5d8b,1,7,291781,https://p.scdn.co/mp3-preview/b7babc9e267faa4bc66b9c479bbf96595bf4c33d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10000183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.854,0.692,7.0,-6.625,1.0,0.0479,0.0668,0.0,0.247,0.753,101.865,4.0,,Universal/Island Def Jam,"C © 2000 Universal Records Inc., P ℗ 2000 Universal Motown Records, a division of UMG Recordings, Inc.",735 +736,spotify:track:73XQBWHSVLL1939hb8cQTm,Georgy Girl,spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,spotify:album:3vMmPXoijRRhpE9lPpUyq4,The Seekers,spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,1989-01-30,https://i.scdn.co/image/ab67616d0000b273e517ee64fd625057c25108fc,1,13,140440,https://p.scdn.co/mp3-preview/45e02f0978aa396678202eee6e3075b69d91bfa3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAYE6600112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.515,0.496,4.0,-7.446,1.0,0.0324,0.265,0.0,0.182,0.651,153.582,4.0,,Parlophone UK,"C © 1990 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1990 Parlophone Records Ltd, a Warner Music Group Company",736 +737,spotify:track:5BedTJm2867aDyCXCZGbfm,The Pushbike Song,spotify:artist:3uPSzsWGSzQZfihkPkAvfN,The Mixtures,spotify:album:21gWnRaQDXFufaTuhv2PUJ,In the Summertime,spotify:artist:3uPSzsWGSzQZfihkPkAvfN,The Mixtures,1970,https://i.scdn.co/image/ab67616d0000b2730828aef993b282a5e6c1d585,1,7,150933,https://p.scdn.co/mp3-preview/a0a53004582085258c5da9f2cfd7911cee98e255?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700124,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.622,0.498,2.0,-12.957,1.0,0.15,0.272,2.94e-06,0.05,0.969,169.314,4.0,,Fable Records,"C 1970 Southern Cross Music Pty Limited, P 1970 Fable Records. Under exclusive license to Southern Cross Music Pty Limited.",737 +738,spotify:track:7jw0hu5zFqCTCznb01TpBU,"Closer - Original Song from the TV Series ""The Secret Daughter""",spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:26qCxSTqoqXXXQ5qvrECi8,The Secret Daughter (Songs from the Original TV Series),spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2016,https://i.scdn.co/image/ab67616d0000b27364f72dc41389e464da4dbfe3,1,13,215667,https://p.scdn.co/mp3-preview/239b1ae9c840fa4001dfffb266f081e4569b81d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01600284,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.549,0.654,1.0,-5.542,0.0,0.0359,0.107,0.0,0.316,0.3,77.457,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd / Screentime Pty Limited / Seven Network (Operations) Limited,738 +739,spotify:track:1UxisKljksGRNwJBPp4Tri,Valerie (feat. Amy Winehouse) - Version Revisited,"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:6Q192DXotxtaysaqNPy5yR","Mark Ronson, Amy Winehouse",spotify:album:1nojrwBYMmq5jY1gJYtywa,Version Digital Edition,spotify:artist:3hv9jJF3adDNsBSIQDqcjp,Mark Ronson,2007-06-22,https://i.scdn.co/image/ab67616d0000b273c8bf8ee51d2b007ae80749c0,1,5,219413,https://p.scdn.co/mp3-preview/7c1f773fee487c3fdc15fd8b0ee6a3a388b341d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBARL0700173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,british soul,neo soul",0.699,0.83,1.0,-4.898,1.0,0.0633,0.00243,0.00024,0.0995,0.889,105.809,4.0,,Columbia,P (P) 2007 Mark Ronson under exclusive license to SONY BMG MUSIC ENTERTAINMENT (UK) Limited except Track 9 (P) 2006 Rapster Records / BBE Records,739 +740,spotify:track:6LaBWjwBedgvm4dBnxqs3X,True Tears Of Joy,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,spotify:album:7n0fvADfxHxfAcovh4EC8t,Cut,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,1992,https://i.scdn.co/image/ab67616d0000b2734c75574b3f389b1d7d4de7ac,1,4,273480,https://p.scdn.co/mp3-preview/cdeff12e7b0b60e52d559656399516849d724ad5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00508740,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.643,0.771,11.0,-5.652,0.0,0.0351,0.0979,8.22e-05,0.0611,0.807,101.756,4.0,,Bloodlines,"C 1992 C 1992 Human Frailty Pty Ltd, P 1992 P 1992 Human Frailty Pty Ltd",740 +741,spotify:track:3ciED4jwJzGzGeCxgxQSkK,Love and Kisses,spotify:artist:2CiKl2xJiNEEUbUO5FpeDI,Dannii,spotify:album:6UVHPqgR2xaiHhi6dfu2Wm,The Singles,spotify:artist:2CiKl2xJiNEEUbUO5FpeDI,Dannii,1998,https://i.scdn.co/image/ab67616d0000b273bed20ae0a546c9173358836f,1,1,224506,https://p.scdn.co/mp3-preview/951a03c093b70adbd00806cd0117df93c5e5d4b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUMU09000166,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.785,0.644,1.0,-15.407,1.0,0.0457,0.00772,0.0115,0.176,0.721,112.675,4.0,,WM Australia,"C © 1998 Mushroom Records, P ℗ 1998 Mushroom Records",741 +742,spotify:track:1we6fKUZmxDbVxqs2n2qjw,Blue Eyes,spotify:artist:21R50WhyQI5HxWOTr6MyY1,Cary Brothers,spotify:album:6jJ3eH077keCTpesV4WWlj,Who You Are,spotify:artist:21R50WhyQI5HxWOTr6MyY1,Cary Brothers,2007-05-29,https://i.scdn.co/image/ab67616d0000b2730974037629defcc6a2dca1ba,1,12,259306,https://p.scdn.co/mp3-preview/f356044fc1f84c5498cfbc20bb24da8b8d4d1004?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US3k20600102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,la indie",0.635,0.398,4.0,-7.893,1.0,0.0262,0.282,2.71e-06,0.086,0.398,112.329,3.0,,Procrastination Music,"C 2007 Procrastination Music, P 2007 Procrastination Music",742 +743,spotify:track:7y2YUIyCuVhBidENVT0068,"Love Me Like You Do - From ""Fifty Shades Of Grey""",spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:2YLHkrwyRBsjBgSAySg0es,"Love Me Like You Do (From ""Fifty Shades Of Grey"")",spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2015-01-07,https://i.scdn.co/image/ab67616d0000b2737e3e34dcefc6f62b01b7d3f0,1,1,252538,https://p.scdn.co/mp3-preview/af7a33094ec0c2743a50e007c66acb07ded6b3ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71406823,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.258,0.631,5.0,-6.617,0.0,0.0541,0.281,0.0,0.127,0.266,189.583,4.0,,Universal Music Group,"C © 2015 Polydor Ltd. (UK), P ℗ 2015 Polydor Ltd. (UK)",743 +744,spotify:track:2YlZnw2ikdb837oKMKjBkW,Like I'm Gonna Lose You (feat. John Legend),"spotify:artist:6JL8zeS1NmiOftqZTRgdTz, spotify:artist:5y2Xq6xcjJb2jVM54GHK3t","Meghan Trainor, John Legend",spotify:album:5W98Ab4VvQEuFEE4TIe5fE,Title (Deluxe),spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2015-01-09,https://i.scdn.co/image/ab67616d0000b2733b11178cccd78ec77fc12dbc,1,6,225053,https://p.scdn.co/mp3-preview/c8c3a28c1a4c578714b1e56f83c70461e9243838?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USSM11408374,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,neo soul,pop,pop soul,urban contemporary",0.63,0.53,0.0,-7.259,1.0,0.0434,0.4,0.0,0.177,0.417,108.038,3.0,,Epic,"P (P) 2014, 2015 Epic Records, a division of Sony Music Entertainment",744 +745,spotify:track:7j7tJanUWBzqBcRrGta92C,It's Not Easy - 2015 Remaster,spotify:artist:5c9HsNOWkLSqCduVHX8iyO,Normie Rowe,spotify:album:3a7JXyIuAl4LZ4niKhEf2W,Frenzy! The 50th Anniversary Collection,spotify:artist:5c9HsNOWkLSqCduVHX8iyO,Normie Rowe,2015-06-05,https://i.scdn.co/image/ab67616d0000b273221b1558078e41a184f29a9e,1,24,189120,https://p.scdn.co/mp3-preview/489ff3616f4b914f0233397763e216196068eef9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUWA01500187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.328,0.595,3.0,-7.417,1.0,0.0309,0.487,1.27e-06,0.106,0.348,93.325,4.0,,WM Australia,"C © 2015 Warner Music Australia Pty Ltd, P ℗ 2015 Warner Music Australia Pty Ltd",745 +746,spotify:track:4JehYebiI9JE8sR8MisGVb,Halo,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:39P7VD7qlg3Z0ltq60eHp7,I AM...SASHA FIERCE,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2008-11-17,https://i.scdn.co/image/ab67616d0000b273801c4d205accdba0a468a10b,1,2,261640,https://p.scdn.co/mp3-preview/6fd951cef00937cd2b7165a14f10d5e69239e5f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM10804556,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.508,0.72,11.0,-5.908,0.0,0.0628,0.272,0.0,0.0563,0.472,79.983,4.0,,Music World Music/Columbia,P (P) 2008 Sony Music Entertainment,746 +747,spotify:track:0ikz6tENMONtK6qGkOrU3c,Wake Me Up Before You Go-Go,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,spotify:album:02f3y3NTsddjdUMoNiBppI,Make It Big,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,1984-10-23,https://i.scdn.co/image/ab67616d0000b273a2fc41b0dd6ce4f0d16a4c46,1,1,231333,https://p.scdn.co/mp3-preview/48ce25ff385552880371a3c460f0b90ecbcfceea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBBBN0009712,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock",0.62,0.573,0.0,-11.893,1.0,0.0423,0.271,0.0,0.0607,0.897,81.548,4.0,,Columbia,P (P) 1984 Sony Music Entertainment (UK) Limited,747 +748,spotify:track:3M7Ab3IGSb7vNoLWqDbXVF,Goodbye My Lover,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,spotify:album:1wklsLLbGIZg1RDpoJovrb,Back to Bedlam,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,2005-10-04,https://i.scdn.co/image/ab67616d0000b2739489b7675f782feada134658,1,4,258653,https://p.scdn.co/mp3-preview/1c0e9e04da74c069fb87ab15d25356e35dbf84e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USAT20401590,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.432,0.261,4.0,-12.591,1.0,0.0512,0.953,0.00342,0.0903,0.273,89.567,4.0,,Atlantic Records,"C An Atlantic Records Release, © 2005 Warner Music UK Limited, P An Atlantic Records Release, ℗ 2005 Warner Music UK Limited",748 +749,spotify:track:5nCthAh3jt4xKuLJAifAaR,Harleys In Hawaii,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:30UjBkRwwBeCdspCGPBB8V,Harleys In Hawaii,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2019-10-16,https://i.scdn.co/image/ab67616d0000b273f36563773a882c66e3fca58e,1,1,185815,https://p.scdn.co/mp3-preview/b5ee6f9b55ab5daaa020b50d84b416506725bde2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM71919682,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.722,0.756,10.0,-6.207,0.0,0.132,0.183,6.78e-06,0.126,0.725,140.092,4.0,,Capitol Records,"C © 2019 Capitol Records, LLC, P ℗ 2019 Capitol Records, LLC",749 +750,spotify:track:5qGwqO0lkbBXw4xNfzT7SF,Spice Up Your Life,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:3sr6lAuO3nmB1u8ZuQgpiX,Spiceworld,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,1997-01-01,https://i.scdn.co/image/ab67616d0000b273f660420bcef3b16b4c7e5f2b,1,1,173666,https://p.scdn.co/mp3-preview/2f6ebdd76c0d1d2c11c65a240133170df782ef58?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBAAA9710052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.555,0.993,1.0,-5.067,1.0,0.0462,0.0106,0.0318,0.403,0.683,124.018,4.0,,Virgin Records,"C © 1997 Virgin Records Limited, P ℗ 1997 Virgin Records Limited",750 +751,spotify:track:5fqcIHU6DhQtFKVO5XSdQs,Roam,spotify:artist:3gdbcIdNypBsYNu3iiCjtN,The B-52's,spotify:album:5BAzAODqIwttjj7wxmlNMS,Cosmic Thing,spotify:artist:3gdbcIdNypBsYNu3iiCjtN,The B-52's,1989-06-23,https://i.scdn.co/image/ab67616d0000b27393bf4c5e67f6a72149d94c94,1,6,295133,https://p.scdn.co/mp3-preview/e0b1bd7144bd7756998bb96d159d546af6488b40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRE18900031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,new romantic,new wave,new wave pop,permanent wave,post-punk,rock,zolo",0.636,0.939,9.0,-5.551,1.0,0.0837,0.0485,6.69e-06,0.271,0.694,134.937,4.0,,Warner Records,"C © 1989 Reprise Records, P ℗ 1989 Reprise Records",751 +752,spotify:track:3Zwu2K0Qa5sT6teCCHPShP,Thnks fr th Mmrs,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,spotify:album:0hHopYqXhuvYSHtVyrcb1g,Infinity On High,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2007-01-01,https://i.scdn.co/image/ab67616d0000b273da071ae7564949fbbfc6904d,1,7,203506,https://p.scdn.co/mp3-preview/efc79db86b5ce942f8cb8f693a42bf1da6a5bf30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USUM70700326,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop,rock",0.46,0.892,10.0,-5.046,0.0,0.0619,0.0051,0.0,0.106,0.59,154.844,4.0,,Island Records,"C © 2007 The Island Def Jam Music Group, P ℗ 2007 The Island Def Jam Music Group",752 +753,spotify:track:6vrUTGn5p8IrfTZ0J6sIVM,Iris,spotify:artist:2sil8z5kiy4r76CRTXxBCA,The Goo Goo Dolls,spotify:album:0UccZZgelTAbbk3OSPZymO,Greatest Hits Volume One - The Singles,spotify:artist:2sil8z5kiy4r76CRTXxBCA,The Goo Goo Dolls,2007-11-06,https://i.scdn.co/image/ab67616d0000b273d54c4b12c9242bda37f4bb25,1,14,289906,https://p.scdn.co/mp3-preview/4ddebcc2b833ae58999b4dfbef76a97a0a1db2e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USWB10704707,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,permanent wave,pop rock,post-grunge",0.291,0.79,11.0,-5.683,0.0,0.0363,0.00133,5.61e-06,0.0811,0.513,155.667,3.0,,Warner Records,"C © 2007 Warner Records Inc., P ℗ 2007 Warner Records Inc.",753 +754,spotify:track:3SdTKo2uVsxFblQjpScoHy,Stand By Me,spotify:artist:3plJVWt88EqjvtuB4ZDRV3,Ben E. King,spotify:album:18Fj7coTfyMi7mEPXIweN7,Don't Play That Song (Mono),spotify:artist:3plJVWt88EqjvtuB4ZDRV3,Ben E. King,1962-08-20,https://i.scdn.co/image/ab67616d0000b2731813ea8f590a0aab2820f922,1,7,180055,https://p.scdn.co/mp3-preview/88493701fe90b75e7e559ee5eefd9d7d0c272467?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USAT21402270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,soul",0.65,0.306,9.0,-9.443,1.0,0.0393,0.57,7.07e-06,0.0707,0.605,118.068,4.0,,Rhino Atlantic,"C © 1962 Atco Records, P ℗ 1962 Atco Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",754 +755,spotify:track:2Rb4Dey8TXM6A2R3QQaJPn,I Love Me,spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,spotify:album:61xfoPf6PkIv1sQRv559ma,I Love Me,spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,2020-03-06,https://i.scdn.co/image/ab67616d0000b27375abd42139a0a97907145712,1,1,203672,https://p.scdn.co/mp3-preview/6077c65f7ffcf755fad0fc1e557bf9b79711b276?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USUM72003025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.661,0.554,11.0,-7.032,1.0,0.0543,0.00242,0.0,0.0698,0.686,150.033,4.0,,Island Records,"C © 2020 Island Records, a division of UMG Recordings, Inc., P ℗ 2020 Island Records, a division of UMG Recordings, Inc.",755 +756,spotify:track:40XXjm2pU6LGZkLq5VmkaQ,Everlasting Love,spotify:artist:7aXDGr3cUBmH2Kx1yBC7Ux,Love Affair,spotify:album:2BX02XIupm6Sw7cdaT7gVX,The Everlasting Love Affair,spotify:artist:7aXDGr3cUBmH2Kx1yBC7Ux,Love Affair,1968-03-04,https://i.scdn.co/image/ab67616d0000b273d4218ae9ecae02a4f8fbd9d0,1,1,182666,https://p.scdn.co/mp3-preview/5f86f0b5bfe85b355f740bc73cad3e889e4f9c89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBBBN6700001,spotify:user:bradnumber1,2023-02-14T22:24:06Z,"classic uk pop,merseybeat,rock-and-roll",0.497,0.569,9.0,-10.632,1.0,0.0386,0.266,0.0,0.336,0.811,120.531,4.0,,Columbia,P (P) 1968 Sony Music Entertainment (UK) Ltd.,756 +757,spotify:track:2gpWyfu7eZ01zzncHpxOtA,Moth To A Flame (with The Weeknd),"spotify:artist:1h6Cn3P4NGzXbaXidqURXs, spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ","Swedish House Mafia, The Weeknd",spotify:album:3udIvIqyBG1RrHxXrUZDoK,Moth To A Flame,"spotify:artist:1h6Cn3P4NGzXbaXidqURXs, spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ","Swedish House Mafia, The Weeknd",2021-10-22,https://i.scdn.co/image/ab67616d0000b2732751f15ff6c8174e540b6fb4,1,1,234000,https://p.scdn.co/mp3-preview/1115f3c666a5ec714e6c3a29121c863720c4059c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,USUG12105524,spotify:user:bradnumber1,2021-11-20T11:36:22Z,"edm,pop dance,progressive electro house,canadian contemporary r&b,canadian pop,pop",0.542,0.659,8.0,-7.289,1.0,0.0389,0.00279,0.0,0.105,0.109,120.122,4.0,,Republic Records,"C © 2021 SSA Recording, LLP, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2021 SSA Recording, LLP, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",757 +758,spotify:track:2JIEe9P3bFoI6yQz0CfeG4,French Kissin In The U.S.A.,spotify:artist:7FxMjqH6DH056sdsstGeVl,Debbie Harry,spotify:album:3KqhlIxtnXfWJfi445kI8X,Once More Into The Bleach,"spotify:artist:4tpUmLEVLCGFr93o8hFFIB, spotify:artist:7FxMjqH6DH056sdsstGeVl","Blondie, Debbie Harry",1988,https://i.scdn.co/image/ab67616d0000b27356909c25577a5c5fcfbf7d1d,1,10,314133,https://p.scdn.co/mp3-preview/6dfe474ef6e4cb56d52c9a13e01cb75570151355?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK8600008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.63,0.612,0.0,-12.3,1.0,0.0306,0.281,2.78e-05,0.0713,0.769,97.374,4.0,,Chrysalis\EMI Records (USA),"C © 2003 Capitol Records, LLC, P This Compilation ℗ 2003 Capitol Records, LLC",758 +759,spotify:track:0osvOdeD3YXZiWkT8MKolJ,Lifestyle (feat. Adam Levine),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:4bYPcJP5jwMhSivRcqie2n","Jason Derulo, Adam Levine",spotify:album:0SNj1uja6FAoffAMOTdlLy,Lifestyle (feat. Adam Levine),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:4bYPcJP5jwMhSivRcqie2n","Jason Derulo, Adam Levine",2021-01-21,https://i.scdn.co/image/ab67616d0000b273faffb078d11eaf63de4d2b6e,1,1,153865,https://p.scdn.co/mp3-preview/64f142f238ad531763e4a70b34eddea3d7ec2558?cid=9950ac751e34487dbbe027c4fd7f8e99,True,54,USAT22100064,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,deep talent show",0.749,0.674,10.0,-5.128,0.0,0.0366,0.0209,0.0,0.169,0.711,123.055,4.0,,"Future History/Artist Partner Group, Inc.","C © 2021 Future History/Artist Partner Group, Inc. for the world, under exclusive license to Atlantic Recording Corporation for the United States, Germany, Austria, Switzerland, the United Kingdom, and Norway., P ℗ 2021 Future History/Artist Partner Group, Inc. for the world, under exclusive license to Atlantic Recording Corporation for the United States, Germany, Austria, Switzerland, the United Kingdom, and Norway.",759 +760,spotify:track:5zx2S6qPUMoJuwjffjd9En,Midnight Run,spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,spotify:album:4BH8GVrYe0h7oiGWkDq3yq,#hits,spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,2012-01-01,https://i.scdn.co/image/ab67616d0000b2736243967eb3178b8ccd9332ab,1,9,240627,https://p.scdn.co/mp3-preview/918f7f5fc98c2dbd2691bc9b85dcc4421e00050c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,GBCEN1101224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,uk dance",0.536,0.863,5.0,-3.607,0.0,0.0982,0.156,0.0,0.0695,0.464,134.868,4.0,,Hussle,"C © 2012 Ministry of Sound Ltd, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd., P This Compilation ℗ 2012 Ministry of Sound Ltd, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd.",760 +761,spotify:track:7rPNyuPXnhKUF1t7d4nZkQ,Obsession,spotify:artist:6eQHjJJa52LUGjBKP5UPos,Animotion,spotify:album:3WUxg12FX0gnWPob8NTwmX,True 80's Love,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-01-01,https://i.scdn.co/image/ab67616d0000b273b042024486ac026dfa56b636,1,13,234506,,False,0,USPR38530022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.724,0.66,7.0,-9.228,1.0,0.138,0.00459,0.478,0.0809,0.422,114.808,4.0,,Universal Music,"C © 2008 Spectrum Music, P ℗ 2008 Spectrum Music",761 +762,spotify:track:6C5IC9bZ0q6mI16Hay23gB,I'm Gonna Knock on Your Door,spotify:artist:3JJYPOCM13Id9iZHtkwkI5,Eddie Hodges,spotify:album:7frXOPUyftNx3e0GJLeh6n,Hit Singles - EP,spotify:artist:3JJYPOCM13Id9iZHtkwkI5,Eddie Hodges,2010-04-20,https://i.scdn.co/image/ab67616d0000b273bf10bfee0221bc249f0d14f5,1,1,126266,https://p.scdn.co/mp3-preview/721a0e5e08cfaa630c245c10bb68da5061637925?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USZZM1010529,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.767,0.87,2.0,-6.756,1.0,0.034,0.814,0.0037,0.0641,0.991,126.293,4.0,,Cadence Records,"C (C) 2010 Cadence Records, P (P) 2010 Cadence Records",762 +763,spotify:track:0w1cshxOoZvM0ZembJEEca,Shine,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,spotify:album:2PYf4m3Bgu4ljRACdnfMCZ,The Power (15 Year Anniversary Re-Issue),spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,2004-04-03,https://i.scdn.co/image/ab67616d0000b2736d3e26f9fff8d30245519b11,1,3,234733,https://p.scdn.co/mp3-preview/d76672a4dafdb50d5a86f70d1f794d402a26f4ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUV401421329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.488,0.721,4.0,-6.62,1.0,0.036,0.63,2.87e-05,0.333,0.715,181.844,4.0,,CBK Productions,"C 1915 CBK Productions, P 2015 CBK Productions",763 +764,spotify:track:4o7ZPI2fmEi3piRe0Hrfpy,Hey Jealousy,spotify:artist:6kXp61QMZFPcKMcRPqoiVj,Gin Blossoms,spotify:album:484pzryEPqn6KSMLtP2c4f,New Miserable Experience,spotify:artist:6kXp61QMZFPcKMcRPqoiVj,Gin Blossoms,1992-01-01,https://i.scdn.co/image/ab67616d0000b273e3100bdcdc758b5fab7e4894,1,2,236626,https://p.scdn.co/mp3-preview/3281918fd8d95aa0c077054e83006f82899ce63f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAM19201246,spotify:user:bradnumber1,2021-11-11T04:15:14Z,"permanent wave,pop rock,post-grunge,tempe indie",0.471,0.797,6.0,-8.407,0.0,0.0389,0.000179,6.49e-06,0.299,0.497,152.903,4.0,,A&M,"C © 1992 A&M Records Inc., P ℗ 1992 UMG Recordings, Inc.",764 +765,spotify:track:6onLnWywmbSnXDFPVY1mM6,Genie in a Bottle,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:0VtMlmn7rAcWwxS3QOJo2h,Christina Aguilera,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,1999-07-15,https://i.scdn.co/image/ab67616d0000b273b05da72c2d1ba1ef79cf5931,1,1,217133,https://p.scdn.co/mp3-preview/06d1b4ae1b631b29bbfd8b9a66a37f18dd73713a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC19900032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.633,0.792,1.0,-6.968,1.0,0.149,0.185,0.000185,0.152,0.918,175.795,4.0,,RCA Records Label,P (P) 2000 BMG Entertainment,765 +766,spotify:track:19CLG4DCbRTIRCoNyn1teP,We Can Get Together,spotify:artist:1Ic7597AdNZRVWP8Lwoa36,Flowers,spotify:album:6EeThAxf8vbW0GiXpyyQBU,Icehouse (30th Anniversary Edition),spotify:artist:1Ic7597AdNZRVWP8Lwoa36,Flowers,1982-09-06,https://i.scdn.co/image/ab67616d0000b2733551712979f1043329b41c3e,1,2,226973,https://p.scdn.co/mp3-preview/f3b051f812eb245281f446fa3b592b0d13b7236b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUWA00207221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.656,0.843,7.0,-6.594,1.0,0.113,0.000264,0.000357,0.111,0.647,145.039,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Diva Records, Manufactured and distributed by Universal Music Australia Pty Ltd, P ℗ 2011 Diva Records, Manufactured and distributed by Universal Music Australia Pty Ltd",766 +767,spotify:track:18W92Zm1KjLCbUIszOhpkD,I Wanna Know (feat. Bea Miller),"spotify:artist:5jAMCwdNHWr7JThxtMuEyy, spotify:artist:1o2NpYGqHiCq7FoiYdyd1x","NOTD, Bea Miller",spotify:album:2xqSl9X8ulJayI0KxABaLV,I Wanna Know (feat. Bea Miller),"spotify:artist:5jAMCwdNHWr7JThxtMuEyy, spotify:artist:1o2NpYGqHiCq7FoiYdyd1x","NOTD, Bea Miller",2018-03-16,https://i.scdn.co/image/ab67616d0000b273aba940d3db8ff59443876bc4,1,1,197938,https://p.scdn.co/mp3-preview/353af4532eba19c91b37fd53efa9f786fdc84225?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,SEUM71800123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,electropop,pop dance,pop edm,alt z,pop,talent show",0.661,0.725,6.0,-4.859,1.0,0.0563,0.0253,0.0,0.123,0.605,119.927,4.0,,Universal Music AB,"C © 2018 NOTD AB, Under exclusive license to Universal Music AB, P ℗ 2018 NOTD AB, Under exclusive license to Universal Music AB",767 +768,spotify:track:6CGf2aPvKj7497cZ6JMmGT,Remedy,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7uwTHXmFa1Ebi5flqBosig,25,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2015-11-20,https://i.scdn.co/image/ab67616d0000b2735ffbbc3dca25d5c81491af1f,1,5,245426,https://p.scdn.co/mp3-preview/7e821552ce5f5c448058c55a5a2ce647d6269e20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1500218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.403,0.3,2.0,-6.475,1.0,0.0427,0.894,0.0,0.154,0.234,162.874,3.0,,XL Recordings,"C 2015 XL Recordings Limited., P 2015 XL Recordings Limited.",768 +769,spotify:track:7hVhRCDV100Jq26NGR7adw,Good Times Roll,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:4tJPWT4r4FSKwy784Qs1Fq,The Cars,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,1978-06-06,https://i.scdn.co/image/ab67616d0000b273f725bc7907dcf15aa2c6e7b7,1,1,225853,https://p.scdn.co/mp3-preview/722456cfb08dea0cccafa7ce3bdc09641b61ee55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USEE10170463,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.607,0.662,4.0,-9.456,1.0,0.0278,0.0951,8.22e-05,0.125,0.629,107.646,4.0,,Elektra Records,"C © 1978 Elektra Records for the United States and WEA International for the world outside of the United States., P ℗ 1978 Elektra Entertainment, a division of Warner Communications, Inc. for the United States and WEA International Inc. for the world outside of the United States.",769 +770,spotify:track:4D40ZlFAWsvX7lua1Kablh,Jet - 2010 Remaster,"spotify:artist:4STHEaNw4mPZ2tzheohgXB, spotify:artist:3sFhA6G1N0gG1pszb6kk1m","Paul McCartney, Wings",spotify:album:257oomaawruFknt5wYCPDh,Band On The Run (Standard),"spotify:artist:4STHEaNw4mPZ2tzheohgXB, spotify:artist:3sFhA6G1N0gG1pszb6kk1m","Paul McCartney, Wings",1973-12-05,https://i.scdn.co/image/ab67616d0000b273be7a3a1e2d663eea2918e5a3,1,2,248360,https://p.scdn.co/mp3-preview/2711d794b28f6b120c5c0d70a56516a1f0e6a927?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBCCS1000005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,mellow gold,rock,soft rock,album rock,art rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.503,0.739,9.0,-7.265,1.0,0.0316,0.018,0.0798,0.0949,0.414,128.917,4.0,,Paul McCartney Catalog,"C © 2010 MPL Communications Inc/Ltd, P ℗ 1973 MPL Communications Inc/Ltd",770 +771,spotify:track:0b7ilDLShQaEBvTeoVVyS8,BIG LOVE,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:6CAEwxPrcGI50ZcIyOQbEC,BIG LOVE,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2018-09-12,https://i.scdn.co/image/ab67616d0000b273de81bb08b2bc6fd21d79580a,1,1,277173,https://p.scdn.co/mp3-preview/b1ff6671d92401e742294c85d886980274a18b82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71812570,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.759,0.455,7.0,-10.319,1.0,0.0457,0.0488,0.0134,0.25,0.134,92.02,4.0,,UMGRI Interscope,"C © 2018 Interscope Records, P ℗ 2018 Interscope Records",771 +772,spotify:track:6OylYIXrIH2E3hgg7Dqz5M,You'll Never Find Another Love Like Mine,spotify:artist:1zJBFCev9UwOMcrZsLi2od,Lou Rawls,spotify:album:3JWeH3xgkigYvXdNQCFx1m,All Things In Time,spotify:artist:1zJBFCev9UwOMcrZsLi2od,Lou Rawls,1976,https://i.scdn.co/image/ab67616d0000b273994c7fa375ca7606a6538cfd,1,2,266200,https://p.scdn.co/mp3-preview/21f5682d94e6b10574d141a96b16ccf8b8785085?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM17601189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,motown,philly soul,quiet storm,soul,soul blues",0.691,0.718,2.0,-8.457,1.0,0.0317,0.148,4.81e-05,0.108,0.934,110.623,4.0,,Legacy Recordings,P (P) 1976 Sony Music Entertainment,772 +773,spotify:track:0GO8y8jQk1PkHzS31d699N,Tongue Tied,spotify:artist:3kVUvbeRdcrqQ3oHk5hPdx,GROUPLOVE,spotify:album:3oylWMc9TTC6Nx4I6U3axc,Never Trust a Happy Song,spotify:artist:3kVUvbeRdcrqQ3oHk5hPdx,GROUPLOVE,2011-09-02,https://i.scdn.co/image/ab67616d0000b273d84a9bbcba91cb6a4a212b1b,1,2,218013,https://p.scdn.co/mp3-preview/6082516f3c05520cc2cf8cecd17e4ce8667c459e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USAT21101334,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,la indie,modern alternative rock,modern rock,pov: indie",0.56,0.936,3.0,-5.835,1.0,0.0439,0.00847,0.0,0.161,0.371,112.96,4.0,,Canvasback/ATL,"C © 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",773 +774,spotify:track:6miUySWi347iIJyz7ETo6m,Got My Mind Set On You - Extended Version,spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,spotify:album:1nbq8GgaVdINI3PulXvPUq,Cloud Nine,spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,1987-11-02,https://i.scdn.co/image/ab67616d0000b2737b13e5323813ed4c441100ff,1,14,317289,https://p.scdn.co/mp3-preview/aa52ecafd019ef3df58628f02485d1ff09e97cb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEXP0700004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.797,0.814,11.0,-7.229,1.0,0.0382,0.426,3.94e-05,0.581,0.874,149.42,4.0,,Parlophone,"C © 2007 Umlaut Corp, P ℗ 2007 Umlaut Corp",774 +775,spotify:track:226EXK5tPVsqaZ2y9RACR0,Elusive Butterfly,spotify:artist:5W6gs1V54kOPUgBxBLkY1z,Bob Lind,spotify:album:55vRv2NsC7lwxF1IWJzBSO,Best Of,spotify:artist:5W6gs1V54kOPUgBxBLkY1z,Bob Lind,1993-01-01,https://i.scdn.co/image/ab67616d0000b273dfd117aa3b7e5a1729fdcc47,1,1,168533,https://p.scdn.co/mp3-preview/fef1d5a1f6fe5a99e855d25403c973952b9a730b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USEM39000493,spotify:user:bradnumber1,2021-08-08T09:26:31Z,psychedelic folk rock,0.577,0.621,3.0,-8.217,1.0,0.0262,0.099,0.0,0.0945,0.78,94.982,4.0,,Blue Note Records,"C © 2006 EMI Catalog, P ℗ 1993 Capitol Records, LLC",775 +776,spotify:track:7IjdIp3WlQtEnN2BXjr7ov,The Kids Aren't Alright,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:4R2blKzIP9cEhgz7bMsRSt,Americana,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,1998-11-16,https://i.scdn.co/image/ab67616d0000b27340185614b0846b156d253f43,1,5,179600,https://p.scdn.co/mp3-preview/cba307a1db5d09d3c95b58b4a8b44a207d3486e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19804363,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.522,0.945,1.0,-4.196,1.0,0.0337,0.00599,4.97e-05,0.0495,0.808,99.603,4.0,,Columbia,P (P) 1998 Sony Music Entertainment Inc.,776 +777,spotify:track:2doTn2LWTKN1Z0lZJG2WQw,UNHEALTHY (feat. Shania Twain),"spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:5e4Dhzv426EvQe3aDb64jL","Anne-Marie, Shania Twain",spotify:album:6QEbEpz7fWR5N3HoIiSHFo,UNHEALTHY (feat. Shania Twain),"spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:5e4Dhzv426EvQe3aDb64jL","Anne-Marie, Shania Twain",2023-05-18,https://i.scdn.co/image/ab67616d0000b273953c933cfb1b66b4dd1577d0,1,1,149653,https://p.scdn.co/mp3-preview/6eefd709a67b55b828467a607c8a28b764ea1f44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBAHS2300345,spotify:user:bradnumber1,2023-07-28T05:59:32Z,"pop,canadian country,canadian pop,contemporary country,country,country dawn",0.621,0.66,11.0,-6.208,0.0,0.0366,0.00526,0.0,0.072,0.407,119.937,4.0,,Atlantic Records UK,"C A Major Toms / Asylum Records release, © 2023 Warner Music UK Limited., P A Major Toms / Asylum Records release, ℗ 2023 Warner Music UK Limited.",777 +778,spotify:track:0Q91cgw4SYxKrXvTh6FRxc,Set It Off,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,spotify:album:2tbVb2SlU8ovbP2sx7CsSF,Timomatic,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,2012-08-24,https://i.scdn.co/image/ab67616d0000b2732f6060ca84e503e4e06d6284,1,6,198733,https://p.scdn.co/mp3-preview/bcdc23aebbc66944ca8b634c100b1c2a229d1b3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM01100618,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.691,0.889,0.0,-2.25,1.0,0.0558,0.0012,0.0,0.166,0.868,123.972,4.0,,Sony Music Entertainment,P All tracks (P) 2012 Sony Music Entertainment Australia Pty Ltd except track 6. (P) 2011 Sony Music Entertainment Australia Pty Ltd.,778 +779,spotify:track:3fUO5xaBs4B0tfepi7fh7p,Stuck on You,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:23pRNErmpV3y4RDwmTbasL,The 50 Greatest Hits,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2000-11-18,https://i.scdn.co/image/ab67616d0000b273db83602b37005e262d9b4f1f,1,23,139666,https://p.scdn.co/mp3-preview/7cf39281a0b522f20831ad5f0f6ccaa04ce62edb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC16005826,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.669,0.528,7.0,-11.462,1.0,0.0381,0.786,0.00034,0.123,0.942,131.897,4.0,,RCA Records Label,P (P) 2000 Sony Music Entertainment,779 +780,spotify:track:3NLnwwAQbbFKcEcV8hDItk,Perfect,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:1gMxiQQSg5zeu4htBosASY,Made In The A.M. - Deluxe Edition,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2015-11-13,https://i.scdn.co/image/ab67616d0000b273241e4fe75732c9c4b49b94c3,1,3,230333,https://p.scdn.co/mp3-preview/ba309a7db943a8cc2445d1f744685d1d30bb47ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,GBHMU1500104,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.648,0.822,11.0,-5.231,0.0,0.0749,0.0598,0.0,0.119,0.397,99.933,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,780 +781,spotify:track:5DydMbw2U5Oh1OckJIsniN,All We Ever Do Is Say Goodbye,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:1V5vQRMWTNGmqwxY8jMVou,Battle Studies,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2009-11-13,https://i.scdn.co/image/ab67616d0000b2731e3dbe4453ed61633c472fbe,1,2,275266,https://p.scdn.co/mp3-preview/63d7960914d1a5c887363da40a3be6f65c8ce1ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USSM10905700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.559,0.51,5.0,-8.294,0.0,0.0247,0.288,5.31e-05,0.242,0.327,129.881,4.0,,Columbia,P (P) 2009 Sony Music Entertainment,781 +782,spotify:track:4dim8F8t01qimHOmr6S3Gd,Hello Walls,spotify:artist:6uvq6FeVsmhOWfJHxVNeBL,Faron Young,spotify:album:26KWAh3Wvw9LjeyxjTEZqa,The Complete Capitol Hits Of Faron Young,spotify:artist:6uvq6FeVsmhOWfJHxVNeBL,Faron Young,2000-01-01,https://i.scdn.co/image/ab67616d0000b27331ad98dc9bfa9bed6bda112a,2,15,146840,https://p.scdn.co/mp3-preview/eb2c97cd286efddbae193fcc473bc70c021a37cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USCA29500514,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,honky tonk,traditional country,western swing",0.62,0.406,0.0,-10.421,1.0,0.0281,0.722,6.73e-06,0.114,0.695,101.489,4.0,,Capitol Nashville,"C © 2000 Capitol Records Nashville, P This Compilation ℗ 2000 Capitol Records Nashville",782 +783,spotify:track:5IVuqXILoxVWvWEPm82Jxr,Crazy In Love (feat. Jay-Z),"spotify:artist:6vWDO969PvNqNYHIOW5v0m, spotify:artist:3nFkdlSjzX9mRTtwJOzDYB","Beyoncé, JAY-Z",spotify:album:6oxVabMIqCMJRYN1GqR3Vf,Dangerously In Love,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2003-06-24,https://i.scdn.co/image/ab67616d0000b27345680a4a57c97894490a01c1,1,1,236133,https://p.scdn.co/mp3-preview/023ccc9c406cafc5a3e3b4dd524b9092b45dacbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USSM10305425,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b,east coast hip hop,gangster rap,hip hop,pop rap,rap",0.646,0.77,2.0,-6.596,0.0,0.226,0.00249,0.0,0.0715,0.681,99.165,4.0,,Columbia,"P (P) 2003 J Records, 2003 Sony Music Entertainment Inc.",783 +784,spotify:track:4LHfbj11Teq1fK57UUAsCT,Bony Moronie,spotify:artist:7o0zXmlrHW4OT3AZCUHMaW,Hush,spotify:album:1J35cqfY6NGaHIfyLXMR3o,The Best of,spotify:artist:7o0zXmlrHW4OT3AZCUHMaW,Hush,1974,https://i.scdn.co/image/ab67616d0000b273737e26826392eda0b19729e7,1,1,191293,https://p.scdn.co/mp3-preview/ce7fb9606270b35e820bf7489503830eee727112?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUBM07560204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.258,0.899,6.0,-5.91,1.0,0.0615,0.0109,0.0,0.104,0.946,168.598,4.0,,RCA Camden,"P (P) 1974, 1975, 1976, 1977 Sony Music Entertainment Australia Pty Ltd",784 +785,spotify:track:12q3V8ShACq2PSWINMc2rC,It's Too Late,spotify:artist:319yZVtYM9MBGqmSQnMyY6,Carole King,spotify:album:12n11cgnpjXKLeqrnIERoS,Tapestry,spotify:artist:319yZVtYM9MBGqmSQnMyY6,Carole King,1971,https://i.scdn.co/image/ab67616d0000b27323350feac07f56d8b96f33d5,1,3,233173,https://p.scdn.co/mp3-preview/65a393c68256deeac86336dbba44691fee268702?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM17100509,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.45,0.442,9.0,-12.718,0.0,0.0353,0.493,0.00564,0.134,0.812,208.282,4.0,,Ode/Epic/Legacy,"P Originally released 1971. All rights reserved by Ode Records. Originally released 1961, 1971. All rights reserved by Sony Music Entertainment. (P) 2007, 2008 Sony Music Entertainment.",785 +786,spotify:track:0t1kP63rueHleOhQkYSXFY,Dynamite,spotify:artist:3Nrfpe0tUJi4K4DXYWgMUX,BTS,spotify:album:6K4chJALBBMYmXjwgvqahx,Dynamite (DayTime Version),spotify:artist:3Nrfpe0tUJi4K4DXYWgMUX,BTS,2020-08-28,https://i.scdn.co/image/ab67616d0000b273755995e9ff2b1b0c753f5eb8,1,1,199053,https://p.scdn.co/mp3-preview/98e266fea9df84fa3e5ca84934c513211e89489b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,QM7282022872,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"k-pop,k-pop boy group,pop",0.746,0.765,6.0,-4.41,0.0,0.0993,0.0112,0.0,0.0936,0.737,114.044,4.0,,BIGHIT MUSIC / HYBE,"C (C) 2020 BIGHIT MUSIC / HYBE, P (P) 2020 BIGHIT MUSIC / HYBE",786 +787,spotify:track:2DWO9x9rhszjJsabuPqp8P,Happy,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,spotify:album:2zL05F00c8OnJuAd765hEQ,Echo,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,2009-11-16,https://i.scdn.co/image/ab67616d0000b27337b275c061b61657a619edfd,1,1,242093,https://p.scdn.co/mp3-preview/2eb1c05952b96bde6a6c0877ff9c191a5b05a35c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBHMU0900046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,dance pop,pop,talent show",0.492,0.641,0.0,-5.296,1.0,0.0448,0.459,0.0,0.0809,0.235,76.07,4.0,,Syco Music UK,P (P) 2009 Simco Limited Under Exclusive License To Sony Music Entertainment UK Limited,787 +788,spotify:track:3BUdRr4VGmNajx2wLWlGzl,What About Me,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:5wAoxrSVetP84EXgr4Tp3z,That's What I'm Talking About,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2004-02-02,https://i.scdn.co/image/ab67616d0000b273b924aec7c8f9c0a6a7dc7a06,1,3,201773,https://p.scdn.co/mp3-preview/cd97ea72da62c443c7ffc6e502638cec7f9641a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,AUBM00447806,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,australian pop,australian rock",0.611,0.438,4.0,-6.046,1.0,0.0295,0.675,0.0,0.114,0.264,128.097,4.0,,BMG Music,P (P) 2004 BMG Australia Limited,788 +789,spotify:track:0cnHixDlrP7fk0smV0wOtC,Cheap Wine,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:1Htwv3I81HU6YUWWs0ommZ,The Best of Cold Chisel - All for You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b27306dc40069e45da5e5d9f90e6,1,5,205480,https://p.scdn.co/mp3-preview/f559cc359ba8e315006a8d07f3c8c76c06ac18e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABB1158217,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.679,0.891,0.0,-3.565,1.0,0.036,0.185,0.0,0.243,0.846,123.66,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",789 +790,spotify:track:34SVMYbQAA41ddkcGPJUvy,Living Doll - 2000 Remastered Version,spotify:artist:1yAdL4L8voXQspjN6rdj4b,Cliff Richard & The Drifters,spotify:album:5w17pj3zlrjJ96g64lChMG,Frankie & Benny's The Classic Years - Classic Number 1s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-07-08,https://i.scdn.co/image/ab67616d0000b2730afff4ee83e124e1376cd4cf,1,3,161093,https://p.scdn.co/mp3-preview/6c12bd4cf5dfed5901b1ae3ce73b7239387b7fab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE0001115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rock-and-roll,0.552,0.322,9.0,-13.527,1.0,0.0597,0.491,0.0,0.0915,0.778,62.693,4.0,,Parlophone UK,"C 2011 Parlophone Records Ltd, a Warner Music Group Company, P 2011 Parlophone Records Ltd, a Warner Music Group Company",790 +791,spotify:track:4jyVtsexyS1kY6X3X3gmAw,Written in the Scars,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:3W9NClLDhTHyRmy8ZLfoJf,Freedom Child,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2017-09-01,https://i.scdn.co/image/ab67616d0000b2735409d6da4f0a9aa86edd4ef4,1,12,227173,https://p.scdn.co/mp3-preview/3e8123a482a453af4c54869f961a4338f97da5b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBARL1701340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.597,0.624,10.0,-9.018,0.0,0.128,0.0198,0.0,0.0893,0.631,166.201,4.0,,Columbia,P (P) 2017 Sony Music Entertainment UK Limited,791 +792,spotify:track:6xBUWSz8INNHO6wFYuPtQl,Queen Of Hearts,spotify:artist:4L1z1IcfK7lbqx8izGHaw5,Juice Newton,spotify:album:0fSvQOkU8rRgcsW6MerdVw,Juice Newton's Greatest Hits,spotify:artist:4L1z1IcfK7lbqx8izGHaw5,Juice Newton,1988-10-19,https://i.scdn.co/image/ab67616d0000b27399a6a7a4b4fe71d5362d16b7,1,8,206866,https://p.scdn.co/mp3-preview/708d36dd60622263a76e7f36b9b495b5c4cb1941?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USCN18100033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country dawn,soft rock",0.669,0.779,2.0,-11.522,1.0,0.0533,0.211,8.98e-05,0.132,0.975,169.478,4.0,,Capitol Nashville,"C © 1998 Capitol Records Nashville, P This Compilation ℗ 1998 Capitol Records Nashville",792 +793,spotify:track:6smYfKpqsvpmqBXkLjYGJo,Power,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:1X6by3LWYlECdYOiyk3S3j,Power,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2020-05-21,https://i.scdn.co/image/ab67616d0000b273174fbf520362d9228577a05d,1,1,191333,https://p.scdn.co/mp3-preview/4eecc0cdf867d6e5ddf9070b06b59b67ac498643?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBUM72000889,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.535,0.648,10.0,-4.479,1.0,0.159,0.0962,0.0,0.118,0.511,162.084,4.0,,Polydor Records,"C © 2020 Polydor Limited, P ℗ 2020 Polydor Limited",793 +794,spotify:track:2xCOfyky8TlzvuU1UdmqHl,Keep The Faith,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0Bkb9wdEeOPBJnLYmQqVR2,Bon Jovi Greatest Hits - The Ultimate Collection (Int'l Deluxe Package),spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273dccc2df90ecd877a3bb7c999,2,6,343493,https://p.scdn.co/mp3-preview/a750abadcf4066416da4f58af110f34b4693051d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG19290090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.58,0.968,5.0,-3.606,0.0,0.05,0.0015,0.00152,0.202,0.593,117.784,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",794 +795,spotify:track:0LVghzBGRulc2TX9HFLYBl,Kiss Me Thru The Phone,"spotify:artist:6GMYJwaziB4ekv1Y6wCDWS, spotify:artist:4p07QU02SrLsaORo25h2Lg","Soulja Boy, Sammie",spotify:album:0QvBnezKARnv2SzgW5Le1t,iSouljaBoyTellem,spotify:artist:6GMYJwaziB4ekv1Y6wCDWS,Soulja Boy,2008-01-01,https://i.scdn.co/image/ab67616d0000b2732ce32f0eb5168aa10fe39c26,1,6,193386,https://p.scdn.co/mp3-preview/d34545f442d5a3861c61afd164d7927b00c06531?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70848200,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,chicago bop,dance pop,pop rap,rap,southern hip hop,trap,contemporary r&b,hip pop,r&b,urban contemporary",0.757,0.719,7.0,-3.797,1.0,0.108,0.0192,0.0,0.084,0.814,150.011,4.0,,Universal Music Group,"C © 2008 ColliPark Music/Interscope Records, P ℗ 2008 ColliPark Music/Interscope Records",795 +796,spotify:track:3zxklD2EGecZre9MjEEvIU,Blue Bayou,spotify:artist:1sXbwvCQLGZnaH0Jp2HTVc,Linda Ronstadt,spotify:album:15lJi5fAnWPltCKBTUbTry,Simple Dreams,spotify:artist:1sXbwvCQLGZnaH0Jp2HTVc,Linda Ronstadt,1977,https://i.scdn.co/image/ab67616d0000b27331acb630eebcccc76943237f,1,6,239399,https://p.scdn.co/mp3-preview/770acce4f374d75b8462602ae70e268338090ba5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USEA20100040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,folk,folk rock,heartland rock,mellow gold,singer-songwriter,soft rock",0.732,0.161,11.0,-12.817,1.0,0.0306,0.739,0.000379,0.105,0.5,95.21,4.0,,Rhino/Elektra,"C © 2006 Rhino Entertaiment Company, a Warner Music Group company, P ℗ 2006 Rhino Entertaiment Company, a Warner Music Group company",796 +797,spotify:track:3aphZHgE73kSPFKiPJRNpk,Cherish,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,spotify:album:52ZOtET6twyVA0ZBlDG2RP,The Very Best Of Kool & The Gang,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,1999-01-01,https://i.scdn.co/image/ab67616d0000b27344111e317a882e00b730dcf4,1,9,238933,https://p.scdn.co/mp3-preview/749fa23bd2f30ae5b0473904911421fe4c6e69e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,soft rock,soul",0.639,0.596,10.0,-8.145,0.0,0.0225,0.331,0.0,0.296,0.427,95.186,4.0,,Universal Music Group,"C © 1999 The Island Def Jam Music Group, P ℗ 1999 The Island Def Jam Music Group",797 +798,spotify:track:7ojYFwgT2X4wITo4D9E58Q,Megamix - Radio Version,spotify:artist:2Cd98zHVdZeOCisc6Gi2sB,Technotronic,spotify:album:6nqizbBgkRug5YRnP1YWiO,Best Of,spotify:artist:2Cd98zHVdZeOCisc6Gi2sB,Technotronic,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738be38136da239f2300038b3a,1,14,255493,https://p.scdn.co/mp3-preview/1cd05fc74cbe70b69970c2b74356e3c807b3aae9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BED019000494,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house,new beat,synthpop",0.798,0.963,1.0,-7.451,1.0,0.0517,0.00106,0.000672,0.14,0.714,123.349,4.0,,Universal Music Group,"C © 2011 ARS Entertainment Belgium (A Division Of Universal Music Belgium), P ℗ 2011 ARS Entertainment Belgium (A Division Of Universal Music Belgium)",798 +799,spotify:track:1hQFF33xi8ruavZNyovtUN,"December, 1963 (Oh What a Night!)",spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,spotify:album:7fbHVufa1ZvEWWpDppEXHU,Who Loves You,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,1975,https://i.scdn.co/image/ab67616d0000b273206e2e76c3a706e4734d18ab,1,6,197146,https://p.scdn.co/mp3-preview/a92fa5140f2248a7f8669ab6620ca901528c6231?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USRH10175221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,lounge,northern soul,rock-and-roll,rockabilly",0.737,0.495,1.0,-13.489,1.0,0.027,0.0588,9.12e-06,0.0542,0.967,104.409,4.0,,Rhino,"C © 1965 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Rhino Entertainment Company. All Rights Reserved., P ℗ 1965 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Rhino Entertainment Company. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",799 +800,spotify:track:36CKza28wMxYdjdzji7ine,I Started A Joke,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:3LcOOTBvHj22Nl90AuRsro,Idea (Deluxe Edition),spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1968-08-11,https://i.scdn.co/image/ab67616d0000b273d40610074e9816f2a2004336,1,11,188306,https://p.scdn.co/mp3-preview/ef5193fd3e79731043a405a4b5eb369105fb118f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAKW6801012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.31,0.464,7.0,-8.755,1.0,0.0275,0.156,8.17e-06,0.132,0.431,144.775,4.0,,Bee Gees Catalog,"C © 1968 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 2008 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",800 +801,spotify:track:7dS5EaCoMnN7DzlpT6aRn2,Take Me To Church,spotify:artist:2FXC3k01G6Gw61bmprjgqS,Hozier,spotify:album:7HW03Zew4rnOhy5uwskRSz,Hozier (Deluxe),spotify:artist:2FXC3k01G6Gw61bmprjgqS,Hozier,2014-05-20,https://i.scdn.co/image/ab67616d0000b2736a452516b66b53f65a3e4b33,1,1,241688,https://p.scdn.co/mp3-preview/d6170162e349338277c97d2fab42c386701a4089?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,IEACJ1300031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish singer-songwriter,modern rock,pop,pov: indie",0.566,0.664,4.0,-5.303,0.0,0.0464,0.634,0.0,0.116,0.437,128.945,4.0,,Universal Music Ltd.,"C (C) 2014 Rubyworks Limited, under assignment to Island Records, a division of Universal Music Operations Limited, P (P) 2014 Rubyworks Limited, under assignment to Island Records, a division of Universal Music Operations Limited",801 +802,spotify:track:7F1MfYFvrXgywSQdmxCkZR,Lightning's Girl,spotify:artist:3IZrrNonYELubLPJmqOci2,Nancy Sinatra,spotify:album:7dC9EutCtygeEpefdcjWTL,How Does That Grab You?,spotify:artist:3IZrrNonYELubLPJmqOci2,Nancy Sinatra,1966-01-01,https://i.scdn.co/image/ab67616d0000b273e4f002bc0e64b7a5e6591caf,1,14,176053,https://p.scdn.co/mp3-preview/f192d831142ea560974aec68599059095f535d21?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USASE0500029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lounge,sunshine pop",0.56,0.647,9.0,-3.862,1.0,0.0287,0.647,0.0,0.127,0.54,92.194,4.0,,"Boots Enterprises, Inc.","C (C) 1966 Boots Enterprises, Inc.",802 +803,spotify:track:4k0bXm9Q4RaTuYi09i4lKK,Jump (For My Love),spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,spotify:album:091NaILFpszQchbFnIFiIX,Fire! The Very Best of The Pointer Sisters,spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,1989-09-21,https://i.scdn.co/image/ab67616d0000b273c9190bba22c5eb5767cc2b88,2,6,263440,https://p.scdn.co/mp3-preview/280bb4dcd634b1fdef04c0768e586d9c0deeb1b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USRC18303288,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,girl group,hi-nrg,motown,new wave pop,soft rock",0.86,0.705,10.0,-12.514,0.0,0.0894,0.107,8.87e-06,0.149,0.854,134.395,4.0,,RCA Records Label,P (P)1996 BMG Entertainment/This Compilation (P)1996 BMG Entertainment,803 +804,spotify:track:7pLPpTvMosiIheeOOr13TZ,Little Green Bag - Single Edit,spotify:artist:2MGJBRRGEj9m6MxJIq7fLn,George Baker Selection,spotify:album:5YKFdp4rB34KOsF8RlvhaI,Golden Years Of Dutch Pop Music,spotify:artist:2MGJBRRGEj9m6MxJIq7fLn,George Baker Selection,2016-04-08,https://i.scdn.co/image/ab67616d0000b27306bf4da537909ace8e5fdeb8,1,1,201640,https://p.scdn.co/mp3-preview/0e66f56a5b492017f39b5acc033464d96144eeaa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,NLA279400901,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nederpop,0.698,0.701,7.0,-7.629,1.0,0.0288,0.173,9.16e-06,0.0768,0.899,103.026,4.0,,"Universal Music, a division of Universal International Music BV","C © 2016 Universal International Music B.V., P This Compilation ℗ 2016 Universal International Music B.V.",804 +805,spotify:track:45Eu7eyjDICs8qRlMgWOMi,One In A Million,spotify:artist:6zQ7KnAtU38PVWG4aqTAhM,Bosson,spotify:album:394cToWPKrTPRxDXRTpv1C,One in a million,spotify:artist:6zQ7KnAtU38PVWG4aqTAhM,Bosson,2001-01-01,https://i.scdn.co/image/ab67616d0000b2735ec894dce7e70b5147589123,1,1,214720,https://p.scdn.co/mp3-preview/36ac707491467122fc5c1916b8858154e0c5d454?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,SELAA0008020,spotify:user:bradnumber1,2024-06-11T07:12:03Z,,0.646,0.83,2.0,-5.724,0.0,0.0319,0.0341,2.05e-06,0.169,0.714,99.985,4.0,,MNW Music AB,"C © 2001 MNW Music AB, P ℗ 2001 MNW Music AB",805 +806,spotify:track:1C4yOUEjCUyPkxRDwwFksG,Forever Young - Fast Version,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,spotify:album:3gYbjd76d8T5Ct5WxCxX5R,Planet Waves,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,1974-01-17,https://i.scdn.co/image/ab67616d0000b2734042ca1eaf2d769794da7930,1,7,168733,https://p.scdn.co/mp3-preview/15d435fa39bef012a82e07a2f212350377940efb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USSM10015197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,rock,roots rock,singer-songwriter",0.637,0.763,8.0,-7.572,1.0,0.11,0.66,0.00286,0.181,0.9,95.999,4.0,,Columbia,P (P) 1974 Sony Music Entertainment Inc.,806 +807,spotify:track:3FYDkfPfPwFREohfO9uUel,Home Among the Gumtrees,spotify:artist:5kPsbSWuadXAb2wheoVRkf,John Williamson,spotify:album:2N3uKW1fQpsk7R33wHXsaC,J.W.'s Family Album,spotify:artist:5kPsbSWuadXAb2wheoVRkf,John Williamson,1990,https://i.scdn.co/image/ab67616d0000b273c008ef85518923c2c3b3b1be,1,16,170213,https://p.scdn.co/mp3-preview/f2f1ebffa79bf986b552eff1c79480b9de326e12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUEQ09000012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian children's music,australian country,australian rock,bush ballad",0.831,0.38,0.0,-12.83,1.0,0.347,0.565,0.0,0.346,0.867,117.683,4.0,,WM Australia,"C © 1990 Emusic Pty. Ltd., P ℗ 1990 Emusic Pty. Ltd.",807 +808,spotify:track:1tjY4H0X706ZH03SXa1DFh,Where Have You Been,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:0MYABBSxz6JqujXq2JBvsF,Talk That Talk (Deluxe),spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2012-07-18,https://i.scdn.co/image/ab67616d0000b273d2a528faf70452ecff59db4c,1,2,242680,https://p.scdn.co/mp3-preview/71c35cb0c63e46f1a8c62135283cb2723c675ecf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71118074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.719,0.847,0.0,-6.34,0.0,0.0916,0.00201,0.0204,0.223,0.444,127.963,4.0,,Universal Music Group,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",808 +809,spotify:track:1MQWtVcs0PKsY4PA6ZvLiy,Dance to the Music,spotify:artist:5m8H6zSadhu1j9Yi04VLqD,Sly & The Family Stone,spotify:album:2j9rvROPPJGn3xaRztD1rX,Dance To The Music,spotify:artist:5m8H6zSadhu1j9Yi04VLqD,Sly & The Family Stone,1968-04-27,https://i.scdn.co/image/ab67616d0000b27357b9caec6f92ab2e42816a68,1,1,179426,https://p.scdn.co/mp3-preview/dfe24ea42446836ec2314112e635202af42c150d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM19602683,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,funk,funk rock,p funk,psychedelic soul,soul,southern soul",0.703,0.529,7.0,-11.112,1.0,0.1,0.0168,0.00057,0.911,0.772,128.059,4.0,,Epic/Legacy,P Originally released 1968. All rights reserved Sony Music Entertainment,809 +810,spotify:track:4eLSCSELtKxZwXnFbNLXT5,On Top Of The World,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:1vAEF8F0HoRFGiYOEeJXHW,Night Visions (Deluxe),spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273dee648abe19dd6e10902c4ae,1,5,189840,https://p.scdn.co/mp3-preview/63c233fd86794fed3c0b3a3ba5e1e4916e1a23bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71201073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.507,0.923,0.0,-5.581,1.0,0.173,0.0818,4.63e-06,0.0951,0.768,99.252,4.0,,Universal Music Group,"C © 2013 KIDinaKORNER/Interscope Records, P ℗ 2013 KIDinaKORNER/Interscope Records",810 +811,spotify:track:7pmadO2gKHQTKU2jKhjXyK,Blame It on the Bossa Nova,spotify:artist:6HnHBbeScFiQKXt3sUQA3Z,Eydie Gormé,spotify:album:7lSNJl7pdny22tU7AAe4l8,Blame It on the Bossa Nova,spotify:artist:6HnHBbeScFiQKXt3sUQA3Z,Eydie Gormé,2006-01-20,https://i.scdn.co/image/ab67616d0000b273b7f1ee4ed6298054b87f5791,1,6,148023,https://p.scdn.co/mp3-preview/62f21dfe97b8d2a07f4e0938902b3f576b4fac68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,ZA42A1714818,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.681,0.442,1.0,-10.199,1.0,0.0365,0.56,2.13e-05,0.278,0.848,80.171,4.0,,TP4 Music,"C 2017 TP4 Music, P 2017 TP4 Music",811 +812,spotify:track:39shmbIHICJ2Wxnk1fPSdz,Should I Stay or Should I Go - Remastered,spotify:artist:3RGLhK1IP9jnYFH4BRFJBS,The Clash,spotify:album:1ZH5g1RDq3GY1OvyD0w0s2,Combat Rock (Remastered),spotify:artist:3RGLhK1IP9jnYFH4BRFJBS,The Clash,1982,https://i.scdn.co/image/ab67616d0000b27325a4df452a3c42ccc2e9288b,1,3,188986,https://p.scdn.co/mp3-preview/30dfcd239fdb4a9ee277ff3a214a4f6771bd8cb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBARL1200670,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,permanent wave,punk,rock",0.743,0.836,2.0,-6.465,1.0,0.116,0.0804,0.0,0.384,0.82,113.375,4.0,,Sony Music UK,P (P) 2013 Sony Music Entertainment UK Limited,812 +813,spotify:track:4IWLawtdMznqdOnbOR9cWW,Legacy - Radio Edit,"spotify:artist:5ChF3i92IPZHduM7jN3dpg, spotify:artist:0Cd6nHYwecCNM1sVEXKlYr","Nicky Romero, Krewella",spotify:album:1HbbLX5HgVZS3l3JADKBg7,Legacy,"spotify:artist:5ChF3i92IPZHduM7jN3dpg, spotify:artist:0Cd6nHYwecCNM1sVEXKlYr","Nicky Romero, Krewella",2013-09-12,https://i.scdn.co/image/ab67616d0000b273907d7ef5f29a8b7a5cd8a7ff,1,1,195706,https://p.scdn.co/mp3-preview/ca7a72be4896fd9f4a92e41109e740b346fff9d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,NLUW21300051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dutch edm,dutch house,edm,electro house,pop dance,progressive electro house,edm,electra,electro house,pop dance",0.586,0.707,0.0,-3.671,0.0,0.0456,0.0605,0.0,0.12,0.187,127.961,4.0,,"Ultra Records, LLC",P (P) 2013 Protocol Recordings & Ultra Records,813 +814,spotify:track:1Fb0tZ4jWZC9qCnJtVBxgO,Candy Shop,"spotify:artist:3q7HBObVc0L8jNeTe5Gofh, spotify:artist:5YBSzuCs7WaFKNr7Bky0Uf","50 Cent, Olivia",spotify:album:2eVeRZTU84r5D7m3uIczxe,The Massacre,spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,2005-03-03,https://i.scdn.co/image/ab67616d0000b2738f2de9b0aa16fce1776d9085,1,7,208973,https://p.scdn.co/mp3-preview/c344639e444c4ba68ac6b29c585a1af14743397f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USIR10500071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap",0.615,0.568,11.0,-8.026,1.0,0.465,0.0284,4.92e-05,0.387,0.753,127.11,5.0,,Aftermath/Shady,"C © 2005 Shady Records/Aftermath Records/Interscope Records, P ℗ 2005 Shady Records/Aftermath Records/Interscope Records",814 +815,spotify:track:7b7VFaKRzHCQ3weeSmrTI8,Love Hurts,spotify:artist:1XIbUq7y7kiMUhmp5dywGx,Jim Capaldi,spotify:album:01KB6ccwWZ1iVufgXMoOuX,True Power-Ballads / 3CD set,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b273d55b1200685266bb972c1596,2,8,206413,https://p.scdn.co/mp3-preview/1f03b203c3dec0b2df5ba3187d93b5f85f195422?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN7500043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british blues,0.457,0.685,10.0,-6.988,1.0,0.0521,0.274,0.0,0.233,0.507,111.949,4.0,,Universal Music,"C © 2007 Spectrum Music, P ℗ 2007 Spectrum Music",815 +816,spotify:track:7aJZxI6TVdIvQSuWxQ4rqp,I Can See Clearly Now,spotify:artist:3rJ3m1tM6vUgiWLjfV8sRf,Jimmy Cliff,spotify:album:0g0F1l0hQ1nZTelBbmlmB5,We All Are One: The Best Of Jimmy Cliff,spotify:artist:3rJ3m1tM6vUgiWLjfV8sRf,Jimmy Cliff,2002-06-11,https://i.scdn.co/image/ab67616d0000b27301676d2605aa96da23c059b4,1,5,196000,https://p.scdn.co/mp3-preview/3f5fdf6e888883f0e35ce6f3744d7ca46a15cdd3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM19303258,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae,roots reggae",0.799,0.662,7.0,-8.585,1.0,0.0347,0.00482,0.000505,0.0484,0.717,120.082,4.0,,Columbia/Legacy,"P Originally Released 1969, 1970, 1971 Island Records Inc., (P) 1982,1983,1985,1986,1988,1993,2002 Sony Music Entertainment Inc.",816 +817,spotify:track:0cfn5OBGafl32fEsc3z4GE,Gett Off,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:6dRctIZQKuZCSSoR6QBBv9,Diamonds and Pearls,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1991-10-01,https://i.scdn.co/image/ab67616d0000b27399e49fe1e935d3d724627211,1,7,272640,https://p.scdn.co/mp3-preview/0055867f9174d341ea414992dfcac5c559297413?cid=9950ac751e34487dbbe027c4fd7f8e99,True,41,USWB19900677,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.677,0.76,10.0,-7.659,0.0,0.0962,0.00257,0.000766,0.303,0.57,99.795,4.0,,Warner Records,"C © 1991 Warner Records Inc., P ℗ 1991 Warner Records Inc.",817 +818,spotify:track:0YVlMTY2kaQc2fxu2ezlI6,The Mountain's High,spotify:artist:6TLwl6BCLZ5D1jwn4l2KGh,Dick & Dee Dee,spotify:album:5n3yhXw0DNTRIpSfRE98tT,Lost Hits Of The 60's (All Original Artists & Versions),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b273f8c554e3aabe57f9d5cba30e,1,2,135706,https://p.scdn.co/mp3-preview/931d1cba12120b7d4da3a55b1c22c30515e902b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USEM39100242,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep adult standards,doo-wop,rhythm and blues",0.686,0.771,1.0,-8.764,1.0,0.0594,0.683,0.137,0.333,0.94,118.176,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P This Compilation ℗ 2010 Capitol Records, LLC",818 +819,spotify:track:0V1mggDCn07qTgF1g5ETXH,Popsicles And Icicles,spotify:artist:0ZVvRLbxQEcphvO7G8x3c8,The Murmaids,spotify:album:3esoavM0NsTLjJah4yQgOs,Popsicles and Icicles: the Best of the Murmaids,spotify:artist:0ZVvRLbxQEcphvO7G8x3c8,The Murmaids,2011-01-04,https://i.scdn.co/image/ab67616d0000b273db00ab512754156104ce6054,1,13,155400,https://p.scdn.co/mp3-preview/92dcb60c15b4e6965219402ed64778e7214e0029?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USXTN1038610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic girl group,0.641,0.209,3.0,-15.404,1.0,0.0354,0.597,0.0,0.127,0.666,124.013,4.0,,Classic Music International,"C 2011 Classic Music International, P 2011 Classic Music International",819 +820,spotify:track:0Kqm6ILdnk7oyoV9k2vW1m,Single,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:1nv3KEXZPmcwOXMoLTs1vn,Year Of The Gentleman,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2008-01-01,https://i.scdn.co/image/ab67616d0000b273959de80fd6bb69f3609fa31a,1,3,257933,https://p.scdn.co/mp3-preview/a317c172369dbd604d5e44ee42d66479f1df3d8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70833541,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.701,0.908,0.0,-5.67,1.0,0.0713,0.0617,1.35e-06,0.108,0.236,134.019,4.0,,Universal Music Group,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",820 +821,spotify:track:5bhvrqUcsa3SnxhgLNxybU,Night,spotify:artist:4VnomLtKTm9Ahe1tZfmZju,Jackie Wilson,spotify:album:26a7VabhR3ztDKPA77soyR,"A Woman, A Lover, A Friend",spotify:artist:4VnomLtKTm9Ahe1tZfmZju,Jackie Wilson,1960,https://i.scdn.co/image/ab67616d0000b273aae1119b2f41ea8bb75ff3ec,1,7,174720,https://p.scdn.co/mp3-preview/3a74beda3cc7b48c977e60c54cd991238bae661c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USBWC0110038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago soul,classic soul,quiet storm,rock-and-roll,soul",0.222,0.383,3.0,-9.673,1.0,0.0326,0.851,0.00295,0.135,0.325,101.473,4.0,,Brunswick Records,"C 1960 Brunswick Record Corp., P 1960 Brunswick Record Corp.",821 +822,spotify:track:1ixphys4A3NEXp6MDScfih,Be the One,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:27BxsWgarjLePdql0KzOLP,Be the One,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2015-10-30,https://i.scdn.co/image/ab67616d0000b273e314ae1248044b8b84842c3c,1,1,202914,https://p.scdn.co/mp3-preview/63f74b93242c7a4f1794f387413742ac5532ce38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAHT1500573,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.661,0.651,7.0,-3.771,0.0,0.0499,0.117,1.32e-05,0.056,0.368,87.46,4.0,,Dua Lipa Limited,"C © 2015 Dua Lipa Limited, P ℗ 2015 Dua Lipa Limited",822 +823,spotify:track:1q8yOvrVNiZtMuEujDuSPP,Respectable,spotify:artist:4k7b3DWqBnYpobDWbNWLdM,Mel & Kim,spotify:album:6mrIxuwdKXXao4SOgte0Lv,F.L.M. (Deluxe Edition),spotify:artist:4k7b3DWqBnYpobDWbNWLdM,Mel & Kim,1987,https://i.scdn.co/image/ab67616d0000b273d4d964b7969f4a8f236a9fe1,1,3,202640,https://p.scdn.co/mp3-preview/7261b4d1eb47d4018e4753d8399bd1ed30d761bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAYE8700095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop",0.697,0.971,0.0,-5.093,1.0,0.0428,0.00377,2.79e-05,0.138,0.89,122.274,4.0,,Cherry Red Records,"C (C) 2011 Cherry Red Records Ltd, P (P) 2011 Cherry Red Records Ltd",823 +824,spotify:track:2kyVQg00pphEufGT59M2XH,(They Long To Be) Close To You,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,spotify:album:5z8MFnoVUIfVo6MQW0uIul,Close To You,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,1970-01-01,https://i.scdn.co/image/ab67616d0000b273f33f1738a2764489750e3535,1,6,273933,https://p.scdn.co/mp3-preview/4d4e5b3219e81e16f5e9e624ae1037f69711ab65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USAM17000373,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock",0.528,0.233,8.0,-15.362,1.0,0.0346,0.726,0.000108,0.122,0.208,89.044,4.0,,UMC (Universal Music Catalogue),"C © 1970 A&M Records, P ℗ 1970 UMG Recordings, Inc.",824 +825,spotify:track:6cj8s9tWTahcd0XmnM2tVj,Right Now (Na Na Na),spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,spotify:album:2EPsQyatLP7uIoT7sOEaWm,Freedom (Int'l Version),spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,2008-01-01,https://i.scdn.co/image/ab67616d0000b273716b780c63154a82498d1c46,1,1,240746,https://p.scdn.co/mp3-preview/9afbca2abc9ae3b395de39d11635d975af9093a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70837868,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.832,0.87,8.0,-4.2,0.0,0.166,0.269,0.0,0.415,0.577,137.998,4.0,,Universal Music Ltd.,"C © 2008 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2008 Universal Records & SRC Records Inc., a division of UMG Recordings",825 +826,spotify:track:2Ywft2Thbf7mPyoD2ntadi,Suspicious Minds,spotify:artist:20p5D2KrE8CGuOjHtxsyTp,Fine Young Cannibals,spotify:album:7KQgihtbLnpyr3KVk9OqYB,Fine Young Cannibals,spotify:artist:20p5D2KrE8CGuOjHtxsyTp,Fine Young Cannibals,1985-01-01,https://i.scdn.co/image/ab67616d0000b273ece7b2be744039740c1fcb5c,1,5,237466,https://p.scdn.co/mp3-preview/e8170fd1c1376a7a4c082ee01e3463a77dfaf2bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBAMY8500224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,synthpop",0.397,0.949,7.0,-4.741,1.0,0.12,0.0575,0.000388,0.215,0.589,129.368,4.0,,London Music Stream,"C © 1985 London Records Ltd, P ℗ 1985 London Records Ltd",826 +827,spotify:track:67RGlVKzHjkY1InvIFiqYV,Love And Other Bruises,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,spotify:album:4XQBtVjam1VjPqDysAn6kZ,The Ultimate Collection,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,2012-01-01,https://i.scdn.co/image/ab67616d0000b27371826e198db6e5192202c153,1,1,223866,https://p.scdn.co/mp3-preview/b73b8967f320d6ee8d42d14263526768a6fd68d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,AUSM00000414,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.447,0.765,9.0,-4.305,1.0,0.0307,0.341,0.0,0.0779,0.129,115.509,4.0,,EMI Music Australia,"C © 2012 EMI Recorded Music Australia Pty Ltd., P ℗ 2012 EMI Recorded Music Australia Pty Ltd.",827 +828,spotify:track:1ulXmqjktxSdrdT1bzc69H,Hot N Cold,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:1vFFZPioAu0vrJRcGoyGX8,One Of The Boys,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2008,https://i.scdn.co/image/ab67616d0000b27331cc26681b0164332fa26634,1,7,220226,https://p.scdn.co/mp3-preview/d351664a0032b1a966fda7beb8bcfd9eed299430?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USCA20802544,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.706,0.842,7.0,-3.956,1.0,0.0417,7.73e-05,0.0,0.0688,0.861,132.032,4.0,,Capitol Records,"C © 2009 Capitol Records, LLC, P ℗ 2009 Capitol Records, LLC",828 +829,spotify:track:2oq7025OFUrarY3WyQ9XmM,Like It Loud,spotify:artist:0Ota2YaOfxcUqhWjnEBcOG,Cassie Davis,spotify:album:50ohLcH9K98ZMfMDif7HIp,Differently,spotify:artist:0Ota2YaOfxcUqhWjnEBcOG,Cassie Davis,2009-08-14,https://i.scdn.co/image/ab67616d0000b2739702f3b08025fc437dd56829,1,2,186320,https://p.scdn.co/mp3-preview/316f4a504b060819e4d14a1707e9451ea8317d77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00800673,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.609,0.781,10.0,-4.651,0.0,0.0415,0.000209,0.165,0.11,0.671,149.98,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd.,829 +830,spotify:track:1CUVN2kn7mW5FjkqXTR2W1,Perfect Strangers,"spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:4kYGAK2zu9EAomwj3hXkXy","Jonas Blue, JP Cooper",spotify:album:163nFrWkhj8FwiwJ11Gu93,Perfect Strangers,spotify:artist:1HBjj22wzbscIZ9sEb5dyf,Jonas Blue,2016-06-03,https://i.scdn.co/image/ab67616d0000b27379882e87678a76bc1d895e94,1,1,196613,https://p.scdn.co/mp3-preview/99b97634d18a161489f2a8a4d5efe5399dc3774c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71602437,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop dance,tropical house,uk dance,uk pop",0.742,0.819,1.0,-5.307,1.0,0.0487,0.372,0.0,0.277,0.709,117.986,4.0,,Universal Music Group,"C © 2016 Jonas Blue Music, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd, P ℗ 2016 Jonas Blue Music, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd",830 +831,spotify:track:2fykwqa2RQzI6nBCwhTfqD,Love Me Like You,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:2BTYDZEWcHgCxCnDM4ribC,Love Me Like You,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2015-09-25,https://i.scdn.co/image/ab67616d0000b273a076b4e4c1653eddd26eedfc,1,1,197800,https://p.scdn.co/mp3-preview/2cc18c0196d3775e80d46828b7575e26a4eafffb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1500047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.783,0.67,7.0,-3.935,1.0,0.0432,0.199,0.0,0.274,0.842,106.05,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,831 +832,spotify:track:44Btht5msS0IQ7o2DZuFdu,If I Had a Hammer,spotify:artist:5FlTKgucbhHvlJVf0pnvOv,Trini Lopez,spotify:album:0njpKtai2m3jKLzsiLSGWI,Rhino Hi-Five: Trini Lopez,spotify:artist:5FlTKgucbhHvlJVf0pnvOv,Trini Lopez,2005-12-20,https://i.scdn.co/image/ab67616d0000b27315db2ff6d45cc0ccfac9ecdc,1,1,179400,https://p.scdn.co/mp3-preview/3cdf633ed103699b05976c1d3702cca7d367c108?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRE10101217,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.468,0.933,11.0,-8.937,0.0,0.0852,0.623,0.0,0.952,0.867,85.505,4.0,,Rhino/Warner Records,"C © 2005 Rhino Entertainment, P ℗ 2005 Rhino Entertainment",832 +833,spotify:track:3TsyC7TEuzHH8D7k0snkcU,I Should've Never Let You Go,spotify:artist:6jaSo7MeMbXQCUOrNCF8tj,Bardot,spotify:album:3lBBB7gJFwcxn6EKQpB4A3,Bardot,spotify:artist:6jaSo7MeMbXQCUOrNCF8tj,Bardot,2000-05-01,https://i.scdn.co/image/ab67616d0000b273f5fc7efa0a85a9e2db49b4bc,1,2,267066,https://p.scdn.co/mp3-preview/a1598ebb014423ec97e78d305aff7ba2413efbc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNHG1900057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.755,0.572,4.0,-5.508,0.0,0.0267,0.499,5.73e-05,0.195,0.889,95.983,4.0,,LilliPilli IP,"C 2000 LilliPilli IP, P 2000 LilliPilli IP",833 +834,spotify:track:6UUzt6LPtVNwy8l6jqu9C9,You're The One That I Want - From “Grease”,"spotify:artist:4hKkEHkaqCsyxNxXEsszVH, spotify:artist:4BoRxUdrcgbbq1rxJvvhg9","John Travolta, Olivia Newton-John",spotify:album:24xwaPVl6xkUunl6lEWwje,Gold,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2005-01-01,https://i.scdn.co/image/ab67616d0000b273f24a708b3a02f314c0e4b46d,1,17,167613,https://p.scdn.co/mp3-preview/e40c2ef7fd8bb3ba548682058005672f8ee91184?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057890004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,adult standards,australian dance,disco,mellow gold,soft rock",0.743,0.774,0.0,-5.916,1.0,0.0941,0.256,5.03e-05,0.155,0.833,106.564,4.0,,Universal Strategic Marketing,"C © 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc.",834 +835,spotify:track:6S3JlDAGk3uu3NtZbPnuhS,Baby Blue - Remastered 2010,spotify:artist:4pJCawaKSZ40EnxN0YEYw3,Badfinger,spotify:album:0BWOueFZKxQrQWNRt20Lvc,Straight Up (Remastered 2010 / Deluxe Edition),spotify:artist:4pJCawaKSZ40EnxN0YEYw3,Badfinger,1971-12-13,https://i.scdn.co/image/ab67616d0000b273e2dd29cdaa3fadbdc26d59c4,1,2,217346,https://p.scdn.co/mp3-preview/d7e2ae28bafe7cba2626d7717932773e6dc0d4b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBDCE1000031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,country rock,folk rock,jangle pop,mellow gold,power pop,singer-songwriter,soft rock",0.623,0.876,11.0,-7.788,1.0,0.066,0.0189,0.0134,0.0728,0.515,124.431,4.0,,EMI Catalogue,"C © 2010 Apple Corps Ltd, P ℗ 2010 Apple Corps Ltd",835 +836,spotify:track:2BO8KWwoED1420THvmk3ZH,Art of Love (feat. Jordin Sparks),"spotify:artist:5PjekOABtfU2Kwo0AHVmci, spotify:artist:2AQjGvtT0pFYfxR3neFcvz","Guy Sebastian, Jordin Sparks",spotify:album:5mrXvDnW1MK275vDsplMIF,Like It Like That,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2009-10-23,https://i.scdn.co/image/ab67616d0000b273b156fa49f0e23495db026fc9,1,3,238786,https://p.scdn.co/mp3-preview/b04bf161118453e361f97d67feccf718295becf2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUBM00900390,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,dance pop,pop,post-teen pop,urban contemporary",0.541,0.724,4.0,-3.966,1.0,0.0402,0.024,0.0,0.133,0.532,137.971,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd.,836 +837,spotify:track:22HYEJveCvykVDHDiEEmjZ,Tubthumping,spotify:artist:0TcYeHEK9sBtv7xPbKhzHz,Chumbawamba,spotify:album:5yaumQgV6xGqCy014aOREt,Tubthumper,spotify:artist:0TcYeHEK9sBtv7xPbKhzHz,Chumbawamba,1997-09-01,https://i.scdn.co/image/ab67616d0000b2736cfc470251e23a7bb6a38d66,1,1,278778,https://p.scdn.co/mp3-preview/135ed2e5aff4240f7a3ee668a303eb87c2c01898?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,DEA349700542,spotify:user:bradnumber1,2021-08-08T09:26:31Z,anarcho-punk,0.348,0.88,2.0,-7.366,1.0,0.0978,0.128,0.0,0.357,0.606,101.185,4.0,,EMI,"C © 2006 EMI GERMANY, P ℗ 2006 EMI GERMANY",837 +838,spotify:track:0FcWutmFaffgmSchemHj4h,All I Want,spotify:artist:75jU2q0uEWzSIlqRJtedJV,Sarah Blasko,spotify:album:2irmzJu4CDZifv7NquPDGM,As Day Follows Night,spotify:artist:75jU2q0uEWzSIlqRJtedJV,Sarah Blasko,2009-07-10,https://i.scdn.co/image/ab67616d0000b2739a1c2b0f4f9b6040eaa19a3e,1,2,233960,https://p.scdn.co/mp3-preview/1ae7312f2811be03237bab148e839372bd2c65fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUUM70900346,spotify:user:bradnumber1,2022-11-09T06:56:29Z,"australian alternative rock,australian indie,australian singer-songwriter",0.604,0.622,7.0,-7.782,1.0,0.0469,0.0943,0.00577,0.204,0.424,126.238,4.0,,Dew Process,"C © 2020 Dew Process/Universal Music Australia, P ℗ 2020 Dew Process/Universal Music Australia",838 +839,spotify:track:2U2aFdIusTy3JetFPjHZkx,Whatever Will Be,"spotify:artist:2ACthmbrw4aqsQ4qUvTo8k, spotify:artist:1PMhT7Dp8ZvHbucEoh9xwO","Tammin Sursok, Ray Hedges",spotify:album:09g8M43qxbSxiLopHCrRLJ,Whatever Will Be,spotify:artist:2ACthmbrw4aqsQ4qUvTo8k,Tammin Sursok,2005-05-20,https://i.scdn.co/image/ab67616d0000b27393d52cfa4613fd04387939a5,1,3,227413,https://p.scdn.co/mp3-preview/32f831e9dad5f841c4abc75e672f64f50de0063a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUSM00500003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.51,0.709,11.0,-5.22,0.0,0.0286,0.00729,0.0,0.129,0.243,135.993,4.0,,Columbia,P (P) 2005 Sony Music Entertainment Australia Pty Ltd,839 +840,spotify:track:1I7zHEdDx8Ny5RxzYPqsU2,Reelin' In The Years,spotify:artist:6P7H3ai06vU1sGvdpBwDmE,Steely Dan,spotify:album:4Gh6pRaXqXTtJx4plAJbBw,Can't Buy A Thrill,spotify:artist:6P7H3ai06vU1sGvdpBwDmE,Steely Dan,1972-01-01,https://i.scdn.co/image/ab67616d0000b2735a9b9e265814a9c9636a71a4,1,6,275466,https://p.scdn.co/mp3-preview/08fcfd47f12bef5b57ec18eb4a9e4b11481392c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USMC17347184,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,mellow gold,rock,soft rock,yacht rock",0.523,0.758,2.0,-9.81,1.0,0.0403,0.133,0.0,0.0952,0.766,135.437,4.0,,Geffen*,"C © 1998 MCA Records Inc., P ℗ 1972 UMG Recordings, Inc.",840 +841,spotify:track:5RBx3tM9hmVJAOnSUHIWkn,Rock & Roll,spotify:artist:39x8gyJjTHiBQklFgVJSV4,Eric Hutchinson,spotify:album:5XEF3r3rrj8lxoEWKSBnke,Sounds Like This,spotify:artist:39x8gyJjTHiBQklFgVJSV4,Eric Hutchinson,2008,https://i.scdn.co/image/ab67616d0000b27302c7226597f9e4da440764cf,1,5,240320,https://p.scdn.co/mp3-preview/b5e376a7e683d002c41eb5c455023a7f27b90cd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB10800447,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,neo mellow",0.462,0.767,10.0,-5.038,1.0,0.0686,0.0395,0.0,0.728,0.901,201.064,4.0,,Warner Records,"C © 2008 Warner Records Inc., P ℗ 2008 Warner Records Inc.",841 +842,spotify:track:1z7FW0nlEBGtQWQ19kz7qp,I Got It From My Mama,spotify:artist:085pc2PYOi8bGKj0PNjekA,will.i.am,spotify:album:54QnPX7chtQZtmtTYH5oq1,Songs About Girls,spotify:artist:085pc2PYOi8bGKj0PNjekA,will.i.am,2007-01-01,https://i.scdn.co/image/ab67616d0000b273f0a6041d3ab38beba5aa9f70,1,3,241520,https://p.scdn.co/mp3-preview/a69230ada197cc2927533d44ccc7bccc1ce51468?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USUM70745336,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.888,0.777,6.0,-6.262,1.0,0.0505,0.0961,3.14e-05,0.0514,0.876,118.998,4.0,,Interscope,"C © 2007 Interscope Records, P ℗ 2007 Interscope Records",842 +843,spotify:track:41ajhawyqdwhewwhk7bqxd,Your Time Will Come - Remastered Version,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",spotify:album:1tpBcNFC8Wxy4Ci3woWwTx,In The Garden,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",1981-10-16,https://i.scdn.co/image/ab67616d0000b273087cb0ddd6be76929baa941f,1,5,271813,https://p.scdn.co/mp3-preview/c0482f7e1d0b1152034d31da65621db6b1a09229?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,GBARL0300573,spotify:user:bradnumber1,2022-01-12T23:06:41Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard",0.305,0.681,7.0,-5.737,0.0,0.0287,0.000735,0.000197,0.374,0.178,177.136,4.0,,RCA Records Label,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,843 +844,spotify:track:4sjOSErZILpIu0cOlCFOIg,Stop Crying Your Heart Out,spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,spotify:album:6XhC5jFMDxZFSAlSGxTEpY,Heathen Chemistry,spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,2002-06-20,https://i.scdn.co/image/ab67616d0000b27349b6d51648f7f82f54865ffc,1,4,303133,https://p.scdn.co/mp3-preview/b329fbcd52d68d8ea532d0b36c07e1e4c86a8ce2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBBQY0202057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,britpop,madchester,permanent wave,rock",0.38,0.572,2.0,-5.334,1.0,0.03,0.0768,2.4e-06,0.0776,0.0878,74.987,4.0,,Epic,P (P) 2002 Sony Music Entertainment (UK) Ltd.,844 +845,spotify:track:2LAtELE0xGyMKcvNlxiyF3,1 Day 2 Nights,spotify:artist:28y6CyJNkGNjJQKrlx4AmN,HRVY,spotify:album:4QKRzndxnaFsUKGLAQb4Ou,1 Day 2 Nights,spotify:artist:28y6CyJNkGNjJQKrlx4AmN,HRVY,2021-06-11,https://i.scdn.co/image/ab67616d0000b273e96aa4078a6a5f6fc46977b4,1,1,138200,https://p.scdn.co/mp3-preview/c351cbb145a0a7e1f5cfdae44de2593347e36f02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB5KW2101382,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.747,0.749,0.0,-6.337,1.0,0.0558,0.0798,1.79e-06,0.318,0.914,121.964,4.0,,BMG Rights Management (UK) Ltd,"C © 2021 BMG Rights Management (UK) Limited, P ℗ 2021 BMG Rights Management (UK) Limited",845 +846,spotify:track:44V6EzbUSYgyfsNiP0FrlA,Visiting Hours,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:3Pl0yCO51uGkr5tFlD6bWN,Visiting Hours,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2021-08-19,https://i.scdn.co/image/ab67616d0000b273b775d9e0b2d6d2279a0a7373,1,1,215506,https://p.scdn.co/mp3-preview/548b143d7735d44ad093cb5ad26d62330cc2a93e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAHS2100680,spotify:user:bradnumber1,2021-11-19T23:19:24Z,"pop,singer-songwriter pop,uk pop",0.471,0.396,8.0,-6.654,1.0,0.0336,0.77,0.0,0.0729,0.263,149.609,4.0,,Atlantic Records/Asylum,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2021 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2021 Warner Music UK Limited",846 +847,spotify:track:3r2EtAEybamz9jJm8W47lA,S Club Party,spotify:artist:0HNGrIbq1ZNO2mTp3tMW4L,S Club,spotify:album:6QanSklvTjKC0M7CTQb3t6,S Club,spotify:artist:0HNGrIbq1ZNO2mTp3tMW4L,S Club,1999-01-01,https://i.scdn.co/image/ab67616d0000b2737f3e01076cca00e318afec5c,1,4,210400,https://p.scdn.co/mp3-preview/198d81aaa0159be7f4ca52b1236feae5ff9838f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCVL9900006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,dance pop,europop,talent show",0.643,0.879,6.0,-6.579,0.0,0.0435,0.0681,0.0,0.313,0.774,101.984,4.0,,Polydor,"C © 1999 Polydor Ltd. (UK), P ℗ 1999 S Club Ltd.",847 +848,spotify:track:3J90DxBYXJR2G60Hlro76Q,Butterfly,spotify:artist:66i0Q1q4YuRe6N0jnYi5BR,Matt Flinders,spotify:album:3AWhIpddYaPjzRPniXfi5F,The Best of Matt Flinders,spotify:artist:66i0Q1q4YuRe6N0jnYi5BR,Matt Flinders,1974,https://i.scdn.co/image/ab67616d0000b2739ea8820ac0387457a634bbd2,1,9,175813,https://p.scdn.co/mp3-preview/1cf21bba0da0448d27a4f4ee1cf84abfd7cd19a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700381,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.219,0.239,7.0,-14.215,1.0,0.0297,0.854,0.596,0.0742,0.446,76.682,4.0,,Fable Records,"C 1974 Fable records, P 2017 Southern Cross Music Pty Limited",848 +849,spotify:track:2Yd464ldxdOVmjiRFC1sbh,Hella Good,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,spotify:album:5WlbY14UMg8LXybSB1q57G,Rock Steady [UK Version (Ltd.)],spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,2001-12-11,https://i.scdn.co/image/ab67616d0000b273f7813a0b5b427af37ce884d3,1,2,242586,https://p.scdn.co/mp3-preview/8b7fd190e2319bf05d70bd26ee5fca5922b9fc02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10120439,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dance rock,permanent wave,pop rock,rock",0.776,0.671,8.0,-3.966,1.0,0.0352,0.017,0.0123,0.0824,0.824,115.138,4.0,,Universal Music Group,"C © 2002 Interscope Records, P ℗ 2002 Interscope Records",849 +850,spotify:track:56wziL2jbJ7rmb9MWycZ2G,You're Not Sorry (Originally Performed By Taylor Swift) [Full Vocal Version],spotify:artist:0BpBoQZruEAcRfpqym754s,Chart Collective,spotify:album:2dZBMXqe5jLqjGkG5B8VOh,"Karaoke Taylor Swift, Vol. 1",spotify:artist:0BpBoQZruEAcRfpqym754s,Chart Collective,2014-07-01,https://i.scdn.co/image/ab67616d0000b273a966baf3ca281db9756afcd9,1,9,262112,https://p.scdn.co/mp3-preview/aa652a9b30469185a89020b4249fb1d86bc59511?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBJSS1413177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.627,0.4,6.0,-6.024,1.0,0.0273,0.35,0.0,0.048,0.22,134.189,4.0,,Switch Records,"C 2014 Switch Records Ltd, P 2014 Switch Records Ltd",850 +851,spotify:track:7jDe24vXWUNX8Jl2hZHrIS,High Hopes,spotify:artist:4BxCuXFJrSWGi1KHcVqaU4,Kodaline,spotify:album:3YHf7ooFmrTOsp4jPM3aFj,In A Perfect World (Deluxe),spotify:artist:4BxCuXFJrSWGi1KHcVqaU4,Kodaline,2013-06-14,https://i.scdn.co/image/ab67616d0000b27374b1285d420d4d8494c72df5,1,4,230266,https://p.scdn.co/mp3-preview/a5dd20f0ba725852659f05d83b98a489ba18e611?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDVX1200014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish pop,modern rock,neo mellow",0.488,0.487,4.0,-6.371,1.0,0.0305,0.577,0.0,0.193,0.219,77.278,4.0,,B-Unique/RCA,P (P) 2013 B-Unique records (UK) Limited under exclusive License to Sony Music Entertainment UK limited; Tracks 2 & 10 (P) 2012;,851 +852,spotify:track:4DWFSrNnZXow1aB96gByho,Elenore,spotify:artist:2VIoWte1HPDbZ2WqHd2La7,The Turtles,spotify:album:155OAoTAYR4Uu0LpSMvy5W,The Turtles Present The Battle of the Bands,spotify:artist:2VIoWte1HPDbZ2WqHd2La7,The Turtles,1968,https://i.scdn.co/image/ab67616d0000b273f3126c1147d95ab91a85bbc3,1,3,151306,https://p.scdn.co/mp3-preview/cf2bb3a9ad1faed6ab0265f4b7f9ab0b054483ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USA560587951,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic rock,folk rock,merseybeat,psychedelic rock,rock-and-roll,rockabilly",0.63,0.625,4.0,-8.407,1.0,0.0375,0.6,1.52e-05,0.24,0.887,122.504,4.0,,"Flo & Eddie, Inc.","C 1968 Flo & Eddie, Inc.",852 +853,spotify:track:0wsXdby1T3PWLauIkGUZzg,Hula Hoop,spotify:artist:5MouCg6ta7zAxsfMEbc1uh,OMI,spotify:album:7cVXH4slEYzGjDh498OFyL,Me 4 U,spotify:artist:5MouCg6ta7zAxsfMEbc1uh,OMI,2015-10-16,https://i.scdn.co/image/ab67616d0000b27385ca00029c70d6b5b8372e96,1,5,205474,https://p.scdn.co/mp3-preview/a68da5a2468a120b489aad5f55c750a5793bc85f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUS11500000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,reggae fusion,0.673,0.842,10.0,-4.666,0.0,0.039,0.0248,0.0,0.294,0.508,121.986,4.0,,"Ultra Records, LLC","P (P) 2015 Ultra Records, LLC",853 +854,spotify:track:5NIPsWpDjJTFBoPxCUUeXp,Welcome To The Jungle,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:5JKFiC2WVi9HtvJEm8CUB8,Appetite For Destruction,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1987-07-21,https://i.scdn.co/image/ab67616d0000b273c8e5391a619e9e8ea2162073,1,1,273600,https://p.scdn.co/mp3-preview/4625797f3517e8945e9b191119bcc0b67491cfd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USGF18714801,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.445,0.955,8.0,-8.027,1.0,0.0856,0.0326,0.284,0.317,0.336,123.343,4.0,,Interscope,"C © 1987 Geffen Records, P ℗ 1987 Geffen Records",854 +855,spotify:track:0PBPO8rmYjmehH4j4ymOxl,How Deep Is Your Love,spotify:artist:1255GTUKNCLCTvH9ctD4cT,Dru Hill,spotify:album:1kbWhB5qEyUDaHPtXYiA2m,Enter The Dru,spotify:artist:1255GTUKNCLCTvH9ctD4cT,Dru Hill,1998-10-27,https://i.scdn.co/image/ab67616d0000b2736d8f41c56578cdf8f800a6bc,1,3,243360,https://p.scdn.co/mp3-preview/88ac9cbaf64cc5aaebf14f794dd9816d9742ad6d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR29800354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,r&b,urban contemporary",0.725,0.446,3.0,-9.097,0.0,0.077,0.0354,1.51e-05,0.312,0.774,94.403,4.0,,Island Records,"C © 1998 Island Records Inc., P ℗ 1998 UMG Recordings, Inc.",855 +856,spotify:track:6rT0BKAbg4y35tukHcfk4N,Untitled (How Could This Happen to Me?),spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,spotify:album:6RSpKXfvVzCqtLi6VySxsU,Still Not Getting Any,spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,2004-10-25,https://i.scdn.co/image/ab67616d0000b2736cb8cbc645eebdfc0ebffa72,1,11,239813,https://p.scdn.co/mp3-preview/1b8ce727349286d672b9895bf74f253189d1bf97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAT20402500,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop punk,canadian punk,canadian rock,modern rock,neon pop punk,pop punk,pop rock",0.208,0.342,6.0,-8.702,1.0,0.0327,0.875,3e-06,0.0908,0.135,186.162,4.0,,143/Atlantic Entertainment,"C © 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States excluding Australia and New Zealand., P ℗ 2004 Lava Records LLC for the United States and WEA International Inc. for the world outside of the United States",856 +857,spotify:track:1AJ5F0FMTC3yFU3ocjy1gE,Surfer Girl - Remastered 2001,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:1AhsZr98dNCfhO1XC4Ht7C,Surfer Girl (Remastered),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1963-09-16,https://i.scdn.co/image/ab67616d0000b2733149dcf7671f99b4b52f8b91,1,1,148533,https://p.scdn.co/mp3-preview/8a7fecba9558ff539cb167ac36e87a5714ed1204?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USCA20001588,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.522,0.372,2.0,-8.364,1.0,0.0253,0.659,0.0,0.142,0.652,105.826,3.0,,Capitol Records,"C © 1963 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",857 +858,spotify:track:11qRXl8wHp2oRk4nK9e3xk,Spin,spotify:artist:3gqd8JFMvQdzK2o9h1944d,Cassette Kids,spotify:album:23clvopWJ328MFDdELfz4m,Nothing On TV,spotify:artist:3gqd8JFMvQdzK2o9h1944d,Cassette Kids,2010-04-19,https://i.scdn.co/image/ab67616d0000b2734aad02652fe72097910b396a,1,2,217013,https://p.scdn.co/mp3-preview/817a59bc4034657af5420424a9b061a4acf37545?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01000016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.566,0.853,9.0,-3.46,1.0,0.0366,0.000335,0.000166,0.409,0.691,135.005,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd.,858 +859,spotify:track:5psEZhQu6lukjhavJo4AbC,SO DONE,spotify:artist:2tIP7SsRs7vjIcLrU85W8J,The Kid LAROI,spotify:album:5fyH2H1o23bLNIxGu9JcMq,SO DONE,spotify:artist:2tIP7SsRs7vjIcLrU85W8J,The Kid LAROI,2020-10-23,https://i.scdn.co/image/ab67616d0000b273e59aad3262c3ca9107ca5c2f,1,1,126521,https://p.scdn.co/mp3-preview/3e676279d46de5354ffc51b2b4f956893fa38d87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM12005922,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.719,0.598,9.0,-6.254,1.0,0.077,0.232,0.0,0.115,0.303,142.592,4.0,,Columbia,"P (P) 2020 Columbia Records, a Division of Sony Music Entertainment",859 +860,spotify:track:3iKuIfvoU50eww6EVzNqHo,Padam Padam,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:0OHc8STurn45gpk3dyIiw5,Padam Padam,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2023-05-19,https://i.scdn.co/image/ab67616d0000b2730536a87c690530562f30d493,1,1,166266,https://p.scdn.co/mp3-preview/da6d6574b173df077e03eacb5249fa49d94d4d88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GB5KW2301017,spotify:user:bradnumber1,2023-07-25T11:57:02Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.744,0.62,5.0,-7.93,1.0,0.246,0.214,0.00116,0.103,0.711,128.103,4.0,,Liberator Music,"C 2023 Kylie Minogue/Darenote under exclusive license to BMG Rights Management (UK) Limited, P 2023 Kylie Minogue/Darenote under exclusive license to BMG Rights Management (UK) Limited",860 +861,spotify:track:0XQ9Dc7uHYoalDtpnuQw6G,Crimson and Clover,spotify:artist:1Fmb52lZ6Jv7FMWXXTPO3K,Joan Jett & the Blackhearts,spotify:album:5H2zpf9FVjTuFp5jJKvV1G,I Love Rock 'N Roll,spotify:artist:1Fmb52lZ6Jv7FMWXXTPO3K,Joan Jett & the Blackhearts,2013-02-05,https://i.scdn.co/image/ab67616d0000b2734114ce0bd9713b931c13857e,1,5,197426,https://p.scdn.co/mp3-preview/02df570a4f7f9df90a7b5bbf0df7e5bba406a94f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBH18100122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam punk,rock",0.181,0.745,0.0,-5.241,1.0,0.0359,0.0483,0.000571,0.113,0.656,166.232,4.0,,Liberator Music,"C 2013 Blackheart Records, P 2013 Blackheart Records",861 +862,spotify:track:11ZnVkr0UJiTM14qAa8MW1,Grease,spotify:artist:3CDKmzJu6uwEGnPLLZffpD,Frankie Valli,spotify:album:0NUEQILaBzavnzcMEs4buZ,The Very Best of Frankie Valli & The 4 Seasons,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,2003-01-14,https://i.scdn.co/image/ab67616d0000b273b96c21e15c091eb98a6c88a4,1,20,201866,https://p.scdn.co/mp3-preview/d9ca396315f6cc4b206004207d97ab27e38474f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRH10450941,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,lounge",0.81,0.474,11.0,-8.697,1.0,0.0467,0.218,0.0,0.083,0.87,109.335,4.0,,Rhino,"C © 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products, P ℗ 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products",862 +863,spotify:track:3iU9nRZHD5tLx2As8aiUQN,Can't Get Used to Losing You,spotify:artist:4sj6D0zlMOl25nprDJBiU9,Andy Williams,spotify:album:21n0NU4iyxyiTvtKSpa9x8,The Essential Andy Williams,spotify:artist:4sj6D0zlMOl25nprDJBiU9,Andy Williams,2013-05-13,https://i.scdn.co/image/ab67616d0000b273ff31aec892b192b2032ebaf2,1,6,141786,https://p.scdn.co/mp3-preview/03ed92e8109bf951f7d426e98a42ddac65802bd0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USSM10212749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.435,0.256,0.0,-9.473,1.0,0.0385,0.897,4.86e-05,0.0707,0.821,180.205,4.0,,Columbia/Legacy,"P This Compilation (P) 2013 Columbia Records, a division of Sony Music Entertainment",863 +864,spotify:track:4Kjssb0NSAWhcikMCYyV4e,Hey Baby,"spotify:artist:0cQbJU1aAzvbEmTuljWLlF, spotify:artist:6UuT0BJZ9vF8Y1sxXnJl2s","No Doubt, Bounty Killer",spotify:album:5UboUMYc2I41ROlQrY1Qcb,The Singles Collection,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,2003-01-01,https://i.scdn.co/image/ab67616d0000b2738ad024d639850a10776a1a61,1,3,206760,https://p.scdn.co/mp3-preview/fcda4453320e91971a98a388c039cd2157739e6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10120513,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dance rock,permanent wave,pop rock,rock,dancehall,jamaican hip hop,reggae fusion",0.597,0.86,11.0,-3.959,0.0,0.205,0.0588,0.0,0.266,0.759,187.338,4.0,,Interscope,"C © 2003 Interscope Records, P ℗ 2003 Interscope Records",864 +865,spotify:track:4rr67zXmEYf9ykLigeEsbv,Don't Dream It's Over,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:0Vw2BOifLhBx5mvnepOGVf,Crowded House,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1986,https://i.scdn.co/image/ab67616d0000b27376177060a17476581dbe276e,1,4,236933,https://p.scdn.co/mp3-preview/79d24cbed581bdbb12b224e95cfd473947924739?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA28600048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.439,0.422,8.0,-17.227,1.0,0.0409,0.0148,4.84e-05,0.0697,0.551,81.833,4.0,,Capitol Records,"C (C) 1986 Capitol Records, Inc.. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Capitol Records, Inc., 1750 North Vine Street, Hollywood, CA 90028., P (P) 2005 Capitol Records, Inc.. All rights reserved.",865 +866,spotify:track:4C76SOnBa9eQDwOwe11hPz,Walk Like a Man,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,spotify:album:21nYbsqCxRcKE1gOB9f98a,Big Girls Don't Cry and 12 Other Hits,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,1963-02-01,https://i.scdn.co/image/ab67616d0000b27378b61a8ac95e0f48922b6990,1,1,137933,https://p.scdn.co/mp3-preview/040694dde5ccd079f96be6ecc644b26cfc3ad07a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRH10175200,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,lounge,northern soul,rock-and-roll,rockabilly",0.681,0.64,3.0,-10.364,1.0,0.0346,0.605,0.0,0.0641,0.966,117.884,4.0,,Rhino,"C © 1963 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Rhino Entertainment Company. All Rights Reserved., P ℗ 1963 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Rhino Entertainment Company. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",866 +867,spotify:track:15f8Cv8RXUlOOCIf2oaceN,Underneath Your Clothes,spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,spotify:album:4DyMK9x2gnmRkRa16zHaEV,Laundry Service,spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,2001-11-13,https://i.scdn.co/image/ab67616d0000b2731f400a1f4d821b00824cf58f,1,2,224066,https://p.scdn.co/mp3-preview/2d69bcd2dee6fac93590ccb98ad9ce373f9f4ab8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,NLB630100361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"colombian pop,dance pop,latin pop,pop",0.616,0.597,8.0,-5.328,1.0,0.0415,0.691,0.0,0.104,0.362,165.508,4.0,,Epic,P (P) 2001 Sony Music Entertainment (Holland) B.V.,867 +868,spotify:track:5CdJveJgiGXoGwDFqF6afp,Freak Me,spotify:artist:3Z71jEhwoPE4xzzUNhKKGD,Silk,spotify:album:1ujRHjYVLKXK7do7CnahUQ,Lose Control,spotify:artist:3Z71jEhwoPE4xzzUNhKKGD,Silk,1992,https://i.scdn.co/image/ab67616d0000b273efd26d83666ecba2ca4fc1c5,1,5,274533,https://p.scdn.co/mp3-preview/803307a12f903566a9ead3652b8edfcf799e13ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USEE10900542,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.697,0.608,4.0,-10.976,0.0,0.0463,0.0295,0.0,0.276,0.725,133.879,4.0,,Rhino/Elektra,"C © 1992 Elektra Entertainment Company., P ℗ 1992 Elektra Entertainment Company. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",868 +869,spotify:track:5FmJaSEaRRj4F5yap1N7RH,Judy's Turn To Cry,spotify:artist:08b2PA6eFyugsWAk41eQKZ,Lesley Gore,spotify:album:3RalzESrvhANXmHJ1ge5Sr,I'll Cry If I Want To,spotify:artist:08b2PA6eFyugsWAk41eQKZ,Lesley Gore,1963-06-01,https://i.scdn.co/image/ab67616d0000b273f3d8a8133fb703d56b2753f5,1,7,131000,https://p.scdn.co/mp3-preview/6964586a9460cde094f259483a8ce271133ab627?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR36309025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,bubblegum pop,classic girl group",0.738,0.563,11.0,-12.406,0.0,0.0605,0.577,0.0,0.0713,0.967,129.089,4.0,,Universal Music Group,"C © 1963 Mercury Records, a Division of UMG Recordings, Inc., P ℗ 1963 Mercury Records, a Division of UMG Recordings, Inc.",869 +870,spotify:track:4QCwoRBXJBX7H13StC3zFU,The Old Man Down The Road,spotify:artist:5ujCegv1BRbEPTCwQqFk6t,John Fogerty,spotify:album:34sjmOXwo0n4OcQMIpINlD,Centerfield - 25th Anniversary,spotify:artist:5ujCegv1BRbEPTCwQqFk6t,John Fogerty,1985,https://i.scdn.co/image/ab67616d0000b273db3d54779e6bc5faeaf16472,1,1,213750,https://p.scdn.co/mp3-preview/e9b9eb44d2ae35f8be098a5f9acebaaa45cee258?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10110136,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,folk rock,heartland rock,mellow gold,singer-songwriter,soft rock,southern rock,swamp rock",0.768,0.809,9.0,-5.816,1.0,0.0289,0.0271,0.000633,0.0608,0.737,133.838,4.0,,Universal Music Group,"C © 2010 John Fogerty, P ℗ 2010 John Fogerty, Manufactured by Geffen Records",870 +871,spotify:track:3zKST4nk4QJE77oLjUZ0Ng,Hey Brother,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:02h9kO2oLKnLtycgbElKsw,True,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d20bacc84d203cc330a5df75,1,3,255093,https://p.scdn.co/mp3-preview/b0f7ab0efb90d7df8535784a2187034e70d0ab24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,CH3131340084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.545,0.78,7.0,-4.867,0.0,0.0436,0.0309,4.64e-05,0.0828,0.458,125.014,4.0,,Universal Music Group,"C © 2013 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2013 Avicii Music AB, under exclusive license to Universal Music AB",871 +872,spotify:track:4iEuVk3bKkZcu8vcv7gR4I,Little Sister,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:34EYk8vvJHCUlNrpGxepea,Elvis 75 - Good Rockin' Tonight,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2009-12-28,https://i.scdn.co/image/ab67616d0000b273ce6894c3bddac8c5b6aff298,2,24,151586,https://p.scdn.co/mp3-preview/b0fedcac86ef28f35908cb84d9cf6ef79c45ddd3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC16105830,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.6,0.622,9.0,-11.936,1.0,0.0751,0.432,0.0,0.223,0.924,139.501,4.0,,RCA/Legacy,P (P) 2009 Sony Music Entertainment,872 +873,spotify:track:1p80LdxRV74UKvL8gnD7ky,Blank Space,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:2QJmrSgbdM35R67eoGQo4j,1989,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-10-27,https://i.scdn.co/image/ab67616d0000b2739abdf14e6058bd3903686148,1,2,231826,https://p.scdn.co/mp3-preview/a4930adb3f973bf4b162940844b8ccc46277dc16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USCJY1431309,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.753,0.678,5.0,-5.421,1.0,0.0644,0.085,1.64e-06,0.13,0.583,96.006,4.0,,"Big Machine Records, LLC","C © 2014 Apollo A-1 LLC, P ℗ 2014 Apollo A-1 LLC",873 +874,spotify:track:1r299qCKBLgUS9XJ9m1kEx,Moves Like Jagger,"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS","Maroon 5, Christina Aguilera",spotify:album:5NdkVAsSvgUfe3cD8LwSTD,Singles,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2015-09-25,https://i.scdn.co/image/ab67616d0000b273c5e1cecaedcd413599e4e866,1,5,202640,https://p.scdn.co/mp3-preview/44d118a53add8cd2be19d510a601939c208a6be3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM71109132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,pop",0.72,0.751,11.0,-4.485,0.0,0.0461,0.0113,0.0,0.353,0.599,128.017,4.0,,Interscope Records*,"C © 2015 Interscope Records, P This Compilation ℗ 2015 Interscope Records",874 +875,spotify:track:2PZqXcvQUhKxSvXgimwGrl,Futon Couch,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,spotify:album:1g09BbZFCIQTWUPt3vM4Oa,Futon Couch,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,2018-02-08,https://i.scdn.co/image/ab67616d0000b273884b77f858235affd0bd4ef1,1,1,205160,https://p.scdn.co/mp3-preview/a2a60463e6eafb85ab4db4b525cce3076284b9f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUEL01800003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop",0.711,0.525,7.0,-6.53,1.0,0.0589,0.207,0.0,0.314,0.517,93.923,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Missy Higgins Productions., under exclusive license to Eleven: A Music Company Pty Ltd Distributed in Australia by Universal Music Australia Pty Ltd under exclusive license, P ℗ 2018 Missy Higgins Productions., under exclusive license to Eleven: A Music Company Pty Ltd",875 +876,spotify:track:3aGSPIajblPEakmYivNbSt,Bang-Shang-a-Lang,spotify:artist:33QmoCkSqADuQEtMCysYLh,The Archies,spotify:album:3tbhENR84ePnmNDUm9ynAF,The Archies,spotify:artist:33QmoCkSqADuQEtMCysYLh,The Archies,1968-02-16,https://i.scdn.co/image/ab67616d0000b2736c32f73552c750162d6622bd,1,12,152502,https://p.scdn.co/mp3-preview/ee25643127ce427460ffbc74a224baef679c6719?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,QMDA61874607,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic canadian rock,rock-and-roll",0.623,0.403,8.0,-10.238,1.0,0.0485,0.00449,0.0,0.0295,0.883,113.904,4.0,,Calendar Records,"C (C) 1968 © Calendar Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",876 +877,spotify:track:4BWBbJ9MKpnt30SFYEomzJ,Lighters,"spotify:artist:77IURH5NC56Jn09QHi76is, spotify:artist:0du5cEVh5yTK9QJze8zA0C","Bad Meets Evil, Bruno Mars",spotify:album:7CWSLPmiMIHXfETjpdOVT6,Hell: The Sequel (Deluxe),spotify:artist:77IURH5NC56Jn09QHi76is,Bad Meets Evil,2011-01-01,https://i.scdn.co/image/ab67616d0000b273ae15e7cdf7ae858e4f90d9c2,1,7,303813,https://p.scdn.co/mp3-preview/d1fad81dabecaa24e69f8a2a11b74638f9aea82b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71108179,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,dance pop,pop",0.643,0.663,0.0,-8.237,1.0,0.265,0.351,0.0,0.127,0.181,90.079,4.0,,Universal Music Group,"C © 2011 Shady Records/Interscope Records, P ℗ 2011 Shady Records/Interscope Records",877 +878,spotify:track:2cKJmkbLEg5zcar0QpioUw,Go Crazy,"spotify:artist:7bXgB6jMjp9ATFy66eO08Z, spotify:artist:50co4Is1HCEo8bhOyUWKpn","Chris Brown, Young Thug",spotify:album:4ZfPehLCNr9bxpugRRiUyM,Slime & B,"spotify:artist:7bXgB6jMjp9ATFy66eO08Z, spotify:artist:50co4Is1HCEo8bhOyUWKpn","Chris Brown, Young Thug",2020-05-05,https://i.scdn.co/image/ab67616d0000b2730788566129e42887b3baeb5f,1,2,176960,https://p.scdn.co/mp3-preview/229d2d550ab273f3c534ac2fdc1dabc4f2ae35b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USRC12001480,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap,atl hip hop,atl trap,gangster rap,hip hop,melodic rap,rap,trap",0.766,0.572,0.0,-8.902,0.0,0.17,0.347,0.0,0.197,0.556,94.063,4.0,,Chris Brown Entertainment/300 Entertainment/RCA Records,"P (P) 2020 Chris Brown Entertainment, LLC, under exclusive license to RCA Records",878 +879,spotify:track:3neyGirQlZcdCdghb19rXw,If I Know You,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:5ramB76eNmvFlL1cJ8mw2s,Apocalypso,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2009-01-01,https://i.scdn.co/image/ab67616d0000b2733318282bfa1b2c5c7ed36274,1,8,268426,https://p.scdn.co/mp3-preview/0f9f1c9cc2abd8571f80c55b8ce4b18e2d8d73e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70800166,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.679,0.672,9.0,-4.742,0.0,0.0417,0.263,1.2e-06,0.0828,0.335,129.0,4.0,,Modular,"C © 2009 Modular Recordings, P ℗ 2009 Modular Recordings",879 +880,spotify:track:7ElF5zxOwYP4qVSWVvse3W,Break Your Heart,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,spotify:album:0eGvq1J5Ke7VlLLOYIlY4k,The Rokstarr Hits Collection,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,2010-01-01,https://i.scdn.co/image/ab67616d0000b27366c3eb32692a0ae487079cf1,1,2,201546,https://p.scdn.co/mp3-preview/c6363106816b05ddd83a0467c0e17591ecafcadd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBUM70908662,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.607,0.934,3.0,-4.217,1.0,0.0314,0.0328,0.0,0.0906,0.568,122.003,4.0,,Universal-Island Records Ltd.,"C © 2010 Universal Island Records Ltd. A Universal Music Company., P ℗ 2010 Universal Island Records Ltd. A Universal Music Company.",880 +881,spotify:track:5FOAptZGxeMAO0BJSQh2fc,Blended Family (What You Do For Love) (feat. A$AP Rocky),"spotify:artist:3DiDSECUqqY1AuBP8qtaIa, spotify:artist:13ubrt8QOOCPljQ2FL1Kca","Alicia Keys, A$AP Rocky",spotify:album:5M31iLPzYuYxkpSO5tBOMN,HERE,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2016-11-04,https://i.scdn.co/image/ab67616d0000b273c2b8088bf48953a269f7a1fd,1,9,211546,https://p.scdn.co/mp3-preview/d166b6231887ee04e42c33add8044a02d1d29218?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USRC11602268,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b,east coast hip hop,hip hop,rap",0.722,0.52,9.0,-7.618,1.0,0.0748,0.065,0.000107,0.069,0.218,96.988,4.0,,RCA Records Label,"P (P) 2016 RCA Records, a divsion of Sony Music Entertainment",881 +882,spotify:track:7990Xs9HQx7FXVIDVPEwj9,Rock And Roll All Nite,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,spotify:album:2hMjDSywkwY2HxjmWObpoI,Dressed To Kill (Remastered Version),spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,1975-03-19,https://i.scdn.co/image/ab67616d0000b273f33dfb2da14d313d36ecdaa5,1,10,168733,https://p.scdn.co/mp3-preview/e9bee4e5f3f3073b17b5b691ff82b4c2b0cb98d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR37509157,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,hard rock,rock",0.656,0.931,1.0,-5.827,1.0,0.0976,0.046,0.0,0.0543,0.909,144.747,4.0,,Universal Music Group,"C © 1997 Kiss Catalog, Ltd., P ℗ 1975 The Island Def Jam Music Group",882 +883,spotify:track:6GDsiYn5LvddnJjkJ2H0p5,I Got You,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,spotify:album:4PV25yINyoxdyK8GIJNZoh,True Colours,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,1980,https://i.scdn.co/image/ab67616d0000b27303ca850b7b784c38aaa3a836,1,2,209440,https://p.scdn.co/mp3-preview/9407fe9a4f0bb8f7ad8be48af328f1c2ecfe300c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUWA00602220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,kiwi rock,zolo",0.676,0.581,2.0,-9.289,1.0,0.0373,0.0687,0.000904,0.152,0.827,126.298,4.0,,WM Australia,"C © 2006 Warner Music Australia Pty Limited, P ℗ 2006 Warner Music Australia",883 +884,spotify:track:11IIIe2IeEKR3IdV4s84Nm,Jungle Love,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,spotify:album:5hLazW5a3Ysgy3dncwGgUn,Greatest Hits 1974-78,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,1978-01-01,https://i.scdn.co/image/ab67616d0000b273632b907273dba6a6062fb780,1,2,189293,https://p.scdn.co/mp3-preview/f5c0a06d2fcf457e2b3fa1098730efbf26b451ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USCA28700783,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.481,0.689,5.0,-11.629,1.0,0.214,0.167,0.00153,0.739,0.782,144.851,4.0,,CAPITOL CATALOG MKT (C92),"C © 1978 Capitol Records, LLC, P ℗ 1978 Capitol Records, LLC",884 +885,spotify:track:1D3ODoXHBLpdxolZRHWV1j,By Your Side,"spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2","Jonas Blue, RAYE",spotify:album:6IJVWErYhvWqG41NnLSGMM,By Your Side,spotify:artist:1HBjj22wzbscIZ9sEb5dyf,Jonas Blue,2016-10-28,https://i.scdn.co/image/ab67616d0000b273bd4b658f3aead04637924c28,1,1,201254,https://p.scdn.co/mp3-preview/e5c014daeff6c5093276ac6fd6140597cf4f0fa0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71605281,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop dance,tropical house,uk dance,uk contemporary r&b,uk pop",0.696,0.743,6.0,-3.838,1.0,0.0331,0.0778,0.0,0.0581,0.644,122.978,4.0,,Universal Music Group,"C © 2016 Jonas Blue Music, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd, P ℗ 2016 Jonas Blue Music, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd",885 +886,spotify:track:7r2eD36gY52DRiVECunCmN,Romeo And Juliet,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,spotify:album:0eB4vHv83yYk1pMim2NIar,The Best of Dire Straits & Mark Knopfler - Private Investigations (Limited Edition),"spotify:artist:0FI0kxP0BWurTz8cB8BBug, spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T","Mark Knopfler, Dire Straits",2005-11-07,https://i.scdn.co/image/ab67616d0000b27311cd3607f236dd71b56b1029,1,4,360000,https://p.scdn.co/mp3-preview/3dbadc92542ce3bb1caf0436078ccc175a7a12dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088000675,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock",0.605,0.455,5.0,-10.571,1.0,0.0284,0.497,0.00533,0.141,0.422,87.469,4.0,,Mercury Records Limited,"C (C) 2005 Mercury Records Limited, P (P) 2005 Mercury Records Limited",886 +887,spotify:track:5ydeCNaWDmFbu4zl0roPAH,Groovejet (If This Ain't Love) [feat. Sophie Ellis-Bextor],"spotify:artist:4bmymFwDu9zLCiTRUmrewb, spotify:artist:2cBh5lVMg222FFuRU7EfDE","Spiller, Sophie Ellis-Bextor",spotify:album:20Q3pGpYiyicF32x5L8ppH,Groovejet (If This Ain't Love) [feat. Sophie Ellis-Bextor],spotify:artist:4bmymFwDu9zLCiTRUmrewb,Spiller,2000-08-14,https://i.scdn.co/image/ab67616d0000b27342781a91264b1d60b43b754c,1,1,227619,https://p.scdn.co/mp3-preview/4240667eea46663f08d8754bc37bd86c06ba4474?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBCPZ0019728,spotify:user:bradnumber1,2023-07-16T09:39:17Z,"disco house,vocal house,dance pop,europop,new wave pop",0.719,0.806,9.0,-6.802,0.0,0.0389,0.000132,0.0889,0.361,0.626,123.037,4.0,,Defected Records,"C © 2021 Defected Records Limited, P ℗ 2021 Defected Records Limited",887 +888,spotify:track:4ReVjXSiFM92lmjAncPtZW,Physical,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:4LZhAy9UsJ0EiqqeKyrlts,Hopelessly Devoted: The Hits,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2018-06-08,https://i.scdn.co/image/ab67616d0000b273ea73235699dcf414d1e1adae,1,1,220942,https://p.scdn.co/mp3-preview/722620d23644b145a23831a4725fe61fc210edc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USONJ0200112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.831,0.744,4.0,-8.232,0.0,0.0403,0.0994,0.000151,0.173,0.885,123.876,4.0,,Sony Music Entertainment,"P (P) 2018 ONJ Productions, Ltd. under exclusive licence to Sony Music Entertainment Australia Pty Ltd",888 +889,spotify:track:5RBPXlIiZVrr8hab7LpRJB,Love Action (I Believe In Love),spotify:artist:1aX2dmV8XoHYCOQRxjPESG,The Human League,spotify:album:3ls7tE9D2SIvjTmRuEtsQY,Dare!,spotify:artist:1aX2dmV8XoHYCOQRxjPESG,The Human League,1981,https://i.scdn.co/image/ab67616d0000b2735579d8a505c727349a203074,1,9,301826,https://p.scdn.co/mp3-preview/80ddf9b86a77f2a9e9bc62aaf71c40b83baae9d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAAA0200923,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,sophisti-pop,synthpop",0.702,0.588,0.0,-9.739,1.0,0.0321,0.0805,0.0193,0.184,0.728,121.738,4.0,,Virgin Records,"C © 2003 Virgin Records Limited, P ℗ 2003 Virgin Records Limited",889 +890,spotify:track:3iD2CCv5bsJRIaqJRYD0uJ,Yesterday - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:6126O4XLYAfzU3961ziahP,The Beatles 1962 - 1966 (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1973-04-01,https://i.scdn.co/image/ab67616d0000b2735ef4660298ae29ee18799fc2,1,13,125533,https://p.scdn.co/mp3-preview/b944a4331b5bba613ebbc81c063b5de81d649762?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBAYE0601477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.399,0.162,5.0,-12.44,1.0,0.0292,0.879,0.0,0.0882,0.343,96.272,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P This Compilation ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",890 +891,spotify:track:3L9Zhb5aHwj4f5A0BwLPTI,Cruel - Remastered,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:1xN9jGFs73atuQ02PrazLf,Here And Now - The Best Of Human Nature,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,2001-10-30,https://i.scdn.co/image/ab67616d0000b273c26c16c6b599a919c482d01d,1,9,317426,https://p.scdn.co/mp3-preview/96cc0b54b616b959ee1f5fca9d3ac61c172f27d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUSM00100177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,boy band",0.527,0.566,2.0,-4.623,1.0,0.0272,0.0516,0.0,0.0711,0.13,145.646,4.0,,Sony Music Entertainment,P (P) 2001 Sony Music Entertainment Australia Pty Ltd,891 +892,spotify:track:6sEYUXCqNNZUxAxFxXZCjc,Losing You,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,spotify:album:2osc6a2FfmXGPcsr1ptY7b,Classic Brenda Lee - The Universal Masters Collection,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,2000-01-01,https://i.scdn.co/image/ab67616d0000b27306a3b68a8db6eedc8d10c3ae,1,11,152706,https://p.scdn.co/mp3-preview/a2074f84461142dba81ae2c3a7cf7ad41921af93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16313199,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rockabilly",0.308,0.198,4.0,-13.791,1.0,0.031,0.786,0.0,0.404,0.363,77.777,4.0,,Geffen,"C © 2000 MCA Nashville, P ℗ 2000 MCA Nashville",892 +893,spotify:track:0DnGfA1r8pAssJCuq4ojla,Still Got The Blues,spotify:artist:23wr9RJZg0PmYvVFyNkQ4j,Gary Moore,spotify:album:5yrouz3mmUWSsCufl1tLUJ,Still Got The Blues,spotify:artist:23wr9RJZg0PmYvVFyNkQ4j,Gary Moore,1990-01-01,https://i.scdn.co/image/ab67616d0000b273b586fc87d8bde3ba953f233a,1,4,370866,https://p.scdn.co/mp3-preview/37671e4a4721c71c476c2dc9c25b8ff990848ad7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAAA9000090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,british blues,electric blues",0.189,0.39,9.0,-14.497,0.0,0.0353,0.257,0.000152,0.122,0.32,169.563,3.0,,Virgin Records,"C © 1990 Virgin Records Limited, P ℗ 1990 Virgin Records Limited",893 +894,spotify:track:5A0FYOZ5mFvHzXLoc8SR9B,Call Me,spotify:artist:7bKupnlF7XOfR1En3K8oAL,Go West,spotify:album:3Xobf92h7QUoTyN8eVwLt9,Aces and Kings: The Best Of,spotify:artist:7bKupnlF7XOfR1En3K8oAL,Go West,1993-10-04,https://i.scdn.co/image/ab67616d0000b27338452b87c568dd0642aa89c3,1,4,252973,https://p.scdn.co/mp3-preview/041e0bb1f07d4656377ad5739401710c8eb63e31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK8500071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.559,0.865,8.0,-8.871,1.0,0.0365,0.398,7.09e-06,0.0388,0.925,162.736,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1993 Chrysalis Records Limited",894 +895,spotify:track:1DOWiYTT3pJD9mRRjx8BO0,Neutron Dance,spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,spotify:album:3Zd4MI3Ja55JvK4Obzl6lV,Beverly Hills Cop - Music From The Motion Picture Soundtrack,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1984-01-01,https://i.scdn.co/image/ab67616d0000b273592aac5c14972ae94013746a,1,5,254026,https://p.scdn.co/mp3-preview/ecc90dc9ab3dcba08a429a5a2127ee36fa1f0cb5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USRC18303292,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,girl group,hi-nrg,motown,new wave pop,soft rock",0.724,0.684,9.0,-12.361,1.0,0.0532,0.0234,0.000599,0.153,0.812,104.318,4.0,,Geffen,"C © 1984 Geffen Records, P This Compilation ℗ 1984 Geffen Records",895 +896,spotify:track:7HKez549fwJQDzx3zLjHKC,Start Me Up - Remastered 2009,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:15XNBzVWARPMlu0sEbfBjJ,Tattoo You (2009 Re-Mastered),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1981-08-24,https://i.scdn.co/image/ab67616d0000b27308fc42e575043a753f60d675,1,1,213066,https://p.scdn.co/mp3-preview/6b6f57d8c70b98d05ac1566144506874ef67ee6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBUM70909474,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.631,0.932,5.0,-4.142,1.0,0.0354,0.0429,0.137,0.0918,0.971,122.431,4.0,,Polydor Records,"C © 2009 Promotone B.V., under exclusive licence to Universal International Music B.V., P ℗ 2009 Promotone B.V., under exclusive licence to Universal International Music B.V.",896 +897,spotify:track:3Vo4wInECJQuz9BIBMOu8i,Finesse - Remix; feat. Cardi B,"spotify:artist:0du5cEVh5yTK9QJze8zA0C, spotify:artist:4kYSro6naA4h99UJvo89HB","Bruno Mars, Cardi B",spotify:album:3mumK2ar9b4JPhVOZR0V2p,Finesse (Remix) [feat. Cardi B],"spotify:artist:0du5cEVh5yTK9QJze8zA0C, spotify:artist:4kYSro6naA4h99UJvo89HB","Bruno Mars, Cardi B",2017-12-20,https://i.scdn.co/image/ab67616d0000b27347e522adf030a78615cdea06,1,1,217288,https://p.scdn.co/mp3-preview/142595a5594e3ffec7c8a4ccd13bd1cb96fd9769?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USAT21705441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop,rap",0.704,0.859,5.0,-4.877,0.0,0.0996,0.0185,0.0,0.0215,0.926,105.115,4.0,,Atlantic Records,"C © 2018 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2018 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",897 +898,spotify:track:6b062GcCjarzvOLKkCEoGB,Beautiful Lies,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,spotify:album:2uNFpEVey5RsxzTdoDmjiz,Beautiful Lies (Deluxe),spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,2016-03-25,https://i.scdn.co/image/ab67616d0000b273ceb1cccb864424fc5c2bc1e7,1,14,170720,https://p.scdn.co/mp3-preview/5ed43b5da01b68e04077f30bf018cadc6c68d412?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBAHS1600032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,uk pop,viral pop",0.51,0.133,4.0,-12.726,0.0,0.0638,0.917,0.0,0.316,0.3,85.218,4.0,,Atlantic Records UK,"C © 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company, P ℗ 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company",898 +899,spotify:track:21Ed654mg06PW1w7xYvrXl,Tie a Yellow Ribbon Round the Ole Oak Tree (feat. Tony Orlando),"spotify:artist:1vjeJ712UQutRhn6WJI4sF, spotify:artist:6PNZ6ZfwWLiUA2BrranFl3","Dawn, Tony Orlando",spotify:album:1k7WkNHGPNPnri2tsowvtg,70s 100 Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-03-01,https://i.scdn.co/image/ab67616d0000b273871ab8561721e8967eda8269,1,43,207600,https://p.scdn.co/mp3-preview/7d3172dddd2e5acffabf9656e1da476330577e49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USAR17500007,spotify:user:bradnumber1,2022-09-16T07:01:20Z,,0.558,0.646,5.0,-11.165,1.0,0.0497,0.239,0.0,0.0457,0.643,88.226,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment,899 +900,spotify:track:4RepvCWqsP6zBuzvwYibAS,I Feel It Coming,"spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ, spotify:artist:4tZwfgrHOc3mvqYlEYSvVi","The Weeknd, Daft Punk",spotify:album:09fggMHib4YkOtwQNXEBII,Starboy,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2016-11-25,https://i.scdn.co/image/ab67616d0000b2730c8599cbde51245c128bcea9,1,18,269186,https://p.scdn.co/mp3-preview/e6e4b349ff5605d875fb7aad3846f5fdfe6aa19c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUG11601012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop,electro,filter house,rock",0.769,0.813,0.0,-5.9,0.0,0.143,0.429,0.0,0.0952,0.567,92.985,4.0,,Universal Music Group,"C © 2016 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc., P ℗ 2016 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.",900 +901,spotify:track:331yCUzz2vctjIEZQjPpRl,Asshole,spotify:artist:1dHjpeh9OKBf1Jfg8dmO1T,Denis Leary,spotify:album:0ZRKCObdKtmr8IZgDO5SSk,No Cure For Cancer,spotify:artist:1dHjpeh9OKBf1Jfg8dmO1T,Denis Leary,1993-01-01,https://i.scdn.co/image/ab67616d0000b2735827e234828dc29991fba81a,1,1,266173,https://p.scdn.co/mp3-preview/9bc41afc042e6165b8f1c641e69483c61c6342e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19301223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"comedy,comic",0.378,0.664,2.0,-10.652,1.0,0.249,0.554,0.0,0.154,0.649,172.866,3.0,,A&M,"C © 1993 A&M Records, P ℗ 1993 A&M Records",901 +902,spotify:track:5XYb6UnDIUvulbuiAKImNa,Better Than,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,spotify:album:4J3pXm5ARFn6qiUePyJsqw,Grand National,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,2007-03-24,https://i.scdn.co/image/ab67616d0000b2730dc4ad96d668d867f7ddc114,1,1,209333,https://p.scdn.co/mp3-preview/351a3c32ff20c5c357bd2e174bb2091c62d8ee6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USAT20700498,spotify:user:bradnumber1,2021-08-08T09:26:31Z,banjo,0.627,0.801,7.0,-5.627,1.0,0.0253,0.0274,7.07e-05,0.159,0.772,108.227,4.0,,Jarrah Records,"C 2007 Jarrah Records, P 2007 Jarrah Records",902 +903,spotify:track:2Ltm1hcqVSFt0Nh4dD7Z5R,And We Danced,spotify:artist:7uhvDINTTiD0XBrP9fquN1,The Hooters,spotify:album:7JzIXVgUC8W6dZVhqsmXBr,Nervous Night,spotify:artist:7uhvDINTTiD0XBrP9fquN1,The Hooters,1985-07-01,https://i.scdn.co/image/ab67616d0000b273e8924ee9fcbbdf8d48569944,1,1,228106,https://p.scdn.co/mp3-preview/305e10826bf5cff9ff65e43ce9dea735a61e4ab3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USSM10105640,spotify:user:bradnumber1,2021-08-08T09:26:31Z,philly indie,0.582,0.868,9.0,-11.566,1.0,0.0354,0.24,0.0,0.262,0.767,145.949,4.0,,Columbia,P (P) 1985 Sony Music Entertainment Inc.,903 +904,spotify:track:6P38u9UhJL9OJdeKuIpDvg,The Fixer,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:2Z5fT2rNll9sW0PAYy9tWO,The Fixer,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,2009-01-01,https://i.scdn.co/image/ab67616d0000b27309071e75928454060345a4d9,1,1,177960,https://p.scdn.co/mp3-preview/0edf08b54b6bcc63f262aa37ff859023a62eda13?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA320900003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.516,0.937,11.0,-5.085,0.0,0.0386,7.71e-05,0.00319,0.313,0.909,152.267,3.0,,Universal Music,"C © 2009 Monkeywrench, Inc., Under exclusive license to Universal international music BV, P ℗ 2009 Monkeywrench, Inc., Under exclusive license to Universal international music BV",904 +905,spotify:track:2b9czDPSLTI88694CIqCy3,Sound of Silence,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:4v6nXxsfpkBpUA9PEAh7nj,Sound of Silence,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2016-03-11,https://i.scdn.co/image/ab67616d0000b273b1565b4199851b396523f603,1,1,195479,https://p.scdn.co/mp3-preview/aa03bf8cc5b3f49d54de16e33c35e8de05cd57b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUBM01600056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.523,0.818,4.0,-4.062,0.0,0.071,0.344,0.0,0.098,0.32,135.56,4.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,905 +906,spotify:track:77TT8Xvx637TpzV8kKGkUw,Titanium (feat. Sia),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","David Guetta, Sia",spotify:album:08DAekBeqPRCsn3XHDwj6b,Nothing but the Beat,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2011-08-31,https://i.scdn.co/image/ab67616d0000b273b234aeff6eedc8276fe0333a,1,13,245040,https://p.scdn.co/mp3-preview/6c3e9bbcebdbfa7875c6a56c2bb4da2a870c250b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GB28K1100036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,pop",0.604,0.788,0.0,-3.673,0.0,0.103,0.0678,0.153,0.127,0.301,126.06,4.0,,Parlophone (France),"C © 2011 What A Music Ltd, Licence exclusive Parlophone Music France, P ℗ 2011 What A Music Ltd, Licence exclusive Parlophone Music France",906 +907,spotify:track:2xEyclHzLJU0CwKiQ4DwJ4,VALENTINO - Imanbek Remix,"spotify:artist:6fWVd57NKTalqvmjRd2t8Z, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj","24kGoldn, Imanbek",spotify:album:7LeJArzmSx9V4ax6C0o2rF,VALENTINO (Imanbek Remix),"spotify:artist:6fWVd57NKTalqvmjRd2t8Z, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj","24kGoldn, Imanbek",2020-06-10,https://i.scdn.co/image/ab67616d0000b273a7c7ebd9439bd2a801ce87bb,1,1,177975,https://p.scdn.co/mp3-preview/d783daab0957d84238b0b7e76073e7a3b827bf86?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USQX92002467,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"cali rap,pop rap,electro house,pop dance,slap house",0.785,0.825,4.0,-4.78,1.0,0.037,0.0133,0.0,0.393,0.966,124.061,4.0,,Records/Columbia,"P (P) 2020 Records Label, LLC / Columbia for US, under exclusive license to Effective Records/B1 Recordings for rest of world",907 +908,spotify:track:6WrI0LAC5M1Rw2MnX2ZvEg,Don't Start Now,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:0ix3XtPV1LwmZADsprKxcp,Don't Start Now,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2019-10-31,https://i.scdn.co/image/ab67616d0000b273c35ea649223a519a9ad51ccf,1,1,183290,https://p.scdn.co/mp3-preview/87258da8a9eb8d0a0d53071e06612955e6d3b28f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBAHT1901121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.794,0.793,11.0,-4.521,0.0,0.0842,0.0125,0.0,0.0952,0.677,123.941,4.0,,Warner Records,"C © 2019 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2019 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",908 +909,spotify:track:1Va4OMy6jEFNy5oFtmbNoa,Duke of Earl,spotify:artist:52uMkSFt2RVO6XxTEt5VeW,Gene Chandler,spotify:album:6reyriDMRqFX045ti8Ie6r,Classic and Collectable: Gene Chandler - Duke of Earl,spotify:artist:52uMkSFt2RVO6XxTEt5VeW,Gene Chandler,2015-04-25,https://i.scdn.co/image/ab67616d0000b2736fa1433f3c19371c4d03bf4c,1,1,147800,https://p.scdn.co/mp3-preview/1598a0ed90699d51d2fdf86338fd8b8c2ed9a246?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,QM4TX1564958,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago soul,classic soul,northern soul,rhythm and blues,southern soul",0.565,0.334,5.0,-8.919,1.0,0.03,0.83,0.0,0.259,0.453,105.338,4.0,,Fidelity Masters,"C (C) 2015 Fidelity Masters, P (P) 2015 Famous Flames Recording Company Limited",909 +910,spotify:track:1lvpicn5ni5RLhJrPVunGm,I Don't Want To Be With Nobody But You (feat. Wendy Matthews),"spotify:artist:4TTQ0hJMOvs7I1zS9x4liI, spotify:artist:67PiUcvCvLFNUNBiKagzQm","Absent Friends, Wendy Matthews",spotify:album:4oMFuJ32wCKgSJNCExwXlP,Here's Looking Up Your Address,spotify:artist:4TTQ0hJMOvs7I1zS9x4liI,Absent Friends,1990-12-19,https://i.scdn.co/image/ab67616d0000b273c5d2b58c5b9b305fc665996c,1,6,286693,https://p.scdn.co/mp3-preview/8d948bd57705889ae8501ae3219a690dd6b22dcc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUBM08923206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.539,0.502,4.0,-10.115,1.0,0.0316,0.0367,0.0,0.103,0.466,80.639,4.0,,rooArt,P (P) 1990 Sony Music Entertainment Australia Pty Ltd,910 +911,spotify:track:12VzulX6U34ea0LXm6zGGf,Predictable,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:26h1O5W89WLiEzxTztbGfu,Innocent Eyes,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2003-03-21,https://i.scdn.co/image/ab67616d0000b273da57f76f2fc20c1ed0bede9b,1,6,218933,https://p.scdn.co/mp3-preview/6b4830463bc5f168dc7c8e74601250208fd9aa57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUSM00300028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.74,0.605,4.0,-5.987,0.0,0.0276,0.463,0.0,0.116,0.641,105.079,4.0,,Epic,P (P) 2002/2003 Sony Music Entertainment (Australia) Limited,911 +912,spotify:track:4Ow5x7P5NAAR1jPoskudoA,OMG,"spotify:artist:23zg3TcAtWQy7J6upgbUnj, spotify:artist:085pc2PYOi8bGKj0PNjekA","USHER, will.i.am",spotify:album:6VcmQHzfMZHopdJIDGDXi9,Raymond v Raymond,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2010-03-29,https://i.scdn.co/image/ab67616d0000b273b9d589dcd719093d397ff728,1,6,269493,https://p.scdn.co/mp3-preview/774414157422bb8786dcdcafa86c74b2f65e630d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF20900103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary,dance pop,pop",0.781,0.745,4.0,-5.81,0.0,0.0332,0.198,1.14e-05,0.36,0.326,129.998,4.0,,LaFace Records,"P (P) 2010 LaFace Records, a unit of Sony Music Entertainment",912 +913,spotify:track:2hdNya0b6Cc2YJ8IyaQIWp,Livin' Thing,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:7a35UzxXYuKQGMGImyB0Un,A New World Record,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1976-09-01,https://i.scdn.co/image/ab67616d0000b273ee5b1065368b0981e3cb0a33,1,6,212306,https://p.scdn.co/mp3-preview/c64deb9aeb099b25204e70db5ea0f4f7657e8811?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM17800853,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.549,0.651,0.0,-7.097,1.0,0.0323,0.583,0.0,0.121,0.368,122.818,4.0,,Epic/Legacy,"P (P) 1976 Epic Records, a division of Sony Music Entertainment",913 +914,spotify:track:0dnZHqjtKEdxoOm1MjDUHK,Dirty Creature,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,spotify:album:0VzEBmxy3fwUztnKnwyGvk,Time And Tide,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,1982,https://i.scdn.co/image/ab67616d0000b27376f83b42683606166059828c,1,1,242173,https://p.scdn.co/mp3-preview/39bf3d55e1a64927bded2d8b5b65e90434eb55a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUWA00601460,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,kiwi rock,zolo",0.608,0.851,4.0,-5.743,0.0,0.0465,0.0961,0.00201,0.326,0.892,108.192,4.0,,WM Australia,"C © 2006 Warner Music Australia Pty Limited, P ℗ 2006 Warner Music Australia",914 +915,spotify:track:7KokYm8cMIXCsGVmUvKtqf,Karma,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:151w1FgRZfnKZA9FEcg9Z3,Midnights,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2022-10-21,https://i.scdn.co/image/ab67616d0000b273bb54dde68cd23e2a268ae0f5,1,11,204852,https://p.scdn.co/mp3-preview/31e410e6e408754b4f1fb190c72f559b8f636831?cid=9950ac751e34487dbbe027c4fd7f8e99,True,77,USUG12205717,spotify:user:bradnumber1,2023-07-28T04:35:42Z,pop,0.64,0.619,8.0,-7.108,1.0,0.065,0.062,0.0,0.475,0.121,90.008,4.0,,Taylor Swift,"C © 2022 Taylor Swift, P ℗ 2022 Taylor Swift",915 +916,spotify:track:5Vrczz39CvlD3OGCa6utoA,Grease - 2007 Remaster,spotify:artist:3CDKmzJu6uwEGnPLLZffpD,Frankie Valli,spotify:album:0o2oPAxKGui4tvrrNgDtkc,Frankie Valli...Is The Word,spotify:artist:3CDKmzJu6uwEGnPLLZffpD,Frankie Valli,1978,https://i.scdn.co/image/ab67616d0000b273a10a214d4d4935347e8079b4,1,1,207306,https://p.scdn.co/mp3-preview/da975747812078628a690188c6531723a7a6058a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRH10720957,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,lounge",0.82,0.464,11.0,-8.45,1.0,0.0481,0.156,0.0,0.101,0.872,109.374,4.0,,Rhino,"C © 1978 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership by arrangement with Rhino Entertainment Company, a Warner Music Group Company., P ℗ 1978 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership by arrangement with Rhino Entertainment Company, a Warner Music Group Company.",916 +917,spotify:track:7efTNoBgYZ3IsB8wpP1f7R,Spectrum,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,spotify:album:19J2iqK89BCrNG4El2FRi5,Ceremonials (Original Deluxe Version),spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2011-01-01,https://i.scdn.co/image/ab67616d0000b2736a8c1075f751a78e0b7799c7,1,10,311533,https://p.scdn.co/mp3-preview/e827381c0ff2a4288e301638d218ca349b8fc013?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBUM71107576,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop",0.57,0.879,11.0,-5.571,0.0,0.0511,0.0685,0.000522,0.101,0.119,123.079,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Universal Island Records, a division of Universal Music Operations Limited",917 +918,spotify:track:0kN8xEmgMW9mh7UmDYHlJP,Versace on the Floor,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:4PgleR09JVnm3zY1fW3XBA,24K Magic,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2016-11-17,https://i.scdn.co/image/ab67616d0000b273232711f7d66a1e19e89e28c5,1,5,261240,https://p.scdn.co/mp3-preview/6984bfcc42ba35e566625853e20d6fccf7b8348e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USAT21602949,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.578,0.574,2.0,-6.209,1.0,0.0454,0.196,0.0,0.083,0.301,174.152,4.0,,Atlantic Records,"C © 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",918 +919,spotify:track:2CtaTmkRB7csW9XAZbWHDq,If I Never See Your Face Again,"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Maroon 5, Rihanna",spotify:album:3JSWZWeTHF4HDGt5Eozdy7,Good Girl Gone Bad: Reloaded,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2008-06-02,https://i.scdn.co/image/ab67616d0000b273f9f27162ab1ed45b8d7a7e98,1,15,198240,https://p.scdn.co/mp3-preview/dde9d5ba8903f5ca4a54d5e864d875dc6ecbbe44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USUM70813040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,barbadian pop,pop,urban contemporary",0.763,0.78,6.0,-3.718,1.0,0.0357,0.00469,4.81e-06,0.116,0.913,106.015,4.0,,Def Jam Recordings,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",919 +920,spotify:track:0W1uTK6I97CbjFKAVtRGfK,Too Much Love Will Kill You - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:391ScNR3xKywWSpfDwP3n0,Made In Heaven - 2011 Remaster,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1995-11-06,https://i.scdn.co/image/ab67616d0000b2735f8c271d01157fdb59478f14,1,8,259213,https://p.scdn.co/mp3-preview/f6f29771aa65078ca909e69f8b7f2a139a525a00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBUM71103755,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.385,0.395,7.0,-7.602,1.0,0.0313,0.58,6.31e-05,0.159,0.21,72.933,4.0,,EMI,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",920 +921,spotify:track:1QKLA8sbvHG4vr62HZ9OxC,When I Was Young,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,spotify:album:1cgByxzwepKYpKOx0BEOJ5,Songs of The Animals featuring Eric Burdon,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,2005-12-02,https://i.scdn.co/image/ab67616d0000b273e9f5ddbe5b4f22b676598d29,1,10,183760,https://p.scdn.co/mp3-preview/7d7a97a6036c545221c578d4cbe5e62346a89f39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,DEA370504299,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock",0.651,0.72,5.0,-9.453,0.0,0.033,0.219,0.000114,0.151,0.522,128.079,4.0,,Baierle Records,"C 2005 Baierle Records, P 2005 Baierle Records",921 +922,spotify:track:6MceyyDH3TSSTS7dcQMlz9,Dizzy,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,spotify:album:3WT6Pmpij6wE5mQX3oVdD6,Tommy Roe,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,1977-01-01,https://i.scdn.co/image/ab67616d0000b27321d1b13d67bf7e8f942f1fed,1,3,170401,https://p.scdn.co/mp3-preview/0e100088aa4c3d505dff6d61d5c044f674c6d0ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,AUJYA1203188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,rock-and-roll",0.794,0.434,5.0,-10.112,1.0,0.0397,0.00763,0.24,0.127,0.67,101.703,4.0,,San Juan Music,"C 2013 San Juan Music, P 1977 ABKCO Music Inc / Mother Bertha Music Inc / Trio Music Co Inc / Universal Songs Of Polygram International Inc",922 +923,spotify:track:7p9dd71JR2ucoAuO1Sy0VZ,When You're Gone,"spotify:artist:3Z02hBLubJxuFJfhacLSDc, spotify:artist:60vX3zLcdKRXvKLITVh5Df","Bryan Adams, Melanie C",spotify:album:1xF1nKu3UL84l7CofB4QBV,On A Day Like Today,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1998-01-01,https://i.scdn.co/image/ab67616d0000b2735e9ba297f543a91ae5209ce8,1,8,204893,https://p.scdn.co/mp3-preview/712f2e3a3ec57f60feb8840a21595f394d70ff40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USAM19800328,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock,dance pop,europop,talent show",0.546,0.931,0.0,-6.344,1.0,0.0341,0.000299,2.92e-05,0.11,0.643,125.495,4.0,,A&M,"C © 1998 Badman Ltd., P ℗ 1998 UMG Recordings, Inc.",923 +924,spotify:track:6jWkZvd1URGktyTTwcpPpB,My Girl,spotify:artist:3RwQ26hR2tJtA8F9p2n7jG,The Temptations,spotify:album:7C4vMPQR8KcbZv4e2ZI0lc,The Temptations Sing Smokey,spotify:artist:3RwQ26hR2tJtA8F9p2n7jG,The Temptations,1965-01-01,https://i.scdn.co/image/ab67616d0000b27329b5c592db812fb819f605a3,1,3,165000,https://p.scdn.co/mp3-preview/a38a2f0fc30ffe90ecae49b9789517338c5ea193?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16400263,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,memphis soul,motown,soul",0.579,0.419,0.0,-10.72,1.0,0.0346,0.625,0.0,0.0981,0.673,104.564,4.0,,Uni/Motown,"C © 1965 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1998 Motown Records, a Division of UMG Recordings, Inc.",924 +925,spotify:track:1DhWqmdt5dYKQqjngEAGKU,"Eye Level (Original Theme from ""Van Der Valk"")","spotify:artist:3U1Gu3BvvE6jGyCH5XrAug, spotify:artist:2CIYXJTMc2WH7XVlqZ5IrC","The Simon Park Orchestra, De Wolfe Music",spotify:album:65qhrQ2itQXOdI7o4JUh55,Eye Level,spotify:artist:3U1Gu3BvvE6jGyCH5XrAug,The Simon Park Orchestra,1973-03-01,https://i.scdn.co/image/ab67616d0000b2737fc9beea2b8470b26cbd147e,1,1,140948,https://p.scdn.co/mp3-preview/d064262e2369f05f5118994f02e3b21907fbb3be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UKATG1501083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,library music,0.576,0.262,3.0,-12.591,1.0,0.0345,0.819,0.26,0.103,0.408,116.48,4.0,,De Wolfe Ltd,"C 1973 De Wolfe Ltd, P 1973 De Wolfe Ltd",925 +926,spotify:track:6oamuJZeT7F13iLwACdQ4X,Misty - 1975 #3Country; #14Pop Billboard chart hit,spotify:artist:7MpUvihmfilIxyN20kXwQj,Ray Stevens,spotify:album:5jkht8yh5lhm0LYOtEHJun,Misty,spotify:artist:7MpUvihmfilIxyN20kXwQj,Ray Stevens,1975,https://i.scdn.co/image/ab67616d0000b273eac6cc1db593e6e037ee927f,1,1,175933,https://p.scdn.co/mp3-preview/5bdbb65bc326e355909a10b710af1fdd93a45379?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USZZM0710262,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,novelty",0.591,0.551,2.0,-13.72,1.0,0.0286,0.187,0.000652,0.0749,0.877,100.326,4.0,,Barnaby Records,"C (C) 1975 Barnaby Records, Inc., P (P) 1975 Barnaby Records, Inc.",926 +927,spotify:track:3JDrBrCEq9a1x6P7eXzeB6,Sunshine on a Rainy Day,spotify:artist:0VyhYyWWF5yYomHQR4hCMl,Christine Anu,spotify:album:7HNUG2wb8PPVdjyud73lvw,Come My Way,spotify:artist:0VyhYyWWF5yYomHQR4hCMl,Christine Anu,2000,https://i.scdn.co/image/ab67616d0000b2731630bce1df0887cce53997ba,1,3,226626,https://p.scdn.co/mp3-preview/ae5bdba97d27bf8668e49f9760ac3eef212bbacb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUMU00000423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian rock",0.618,0.674,7.0,-8.823,1.0,0.0328,0.0548,3.11e-05,0.151,0.52,96.994,4.0,,WM Australia,"C © 2000 Mushroom Records, P ℗ 2000 Mushroom Records",927 +928,spotify:track:5KVll4Si4pL02nmrUvAHrc,Voodoo Child,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:5o8IrQOjfnuWNpQtzvZEOP,The Sound Of Drums,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2003,https://i.scdn.co/image/ab67616d0000b273ebec5ce374c862d77327d614,1,1,237720,https://p.scdn.co/mp3-preview/25fecedc647cdf2c431f759fb1fd563db334d121?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,AUBM00599402,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.652,0.959,4.0,-5.047,1.0,0.0375,0.00172,0.000325,0.115,0.803,132.453,4.0,,Sony Music Entertainment,"P (P) 2011 Sony Music Entertainment Australia Pty Ltd. except tracks 2 & 9 (P) 2010 & (P) 2009, and tracks/(P) 2011 Sony Music Entertainment Australia Pty Ltd. except tracks 2 & 9 (P) 2010 & (P) 2009, and tracks 10, 13 & 14 (P) 2003 Vicious Recordings Pty Ltd Australia",928 +929,spotify:track:43tXphvUlXym54Z0cg1rjd,Don't Let The Rain Come Down (Crooked Little Man),spotify:artist:60mbIWU4hFqNwuTFE1jPku,The Serendipity Singers,spotify:album:5R21xIroitblcsnPKDbial,Don't Let The Rain Come Down: The Best Of The Serendipity Singers,spotify:artist:60mbIWU4hFqNwuTFE1jPku,The Serendipity Singers,1998-03-17,https://i.scdn.co/image/ab67616d0000b2730e883b742a2d1b3a1fe673c9,1,1,166360,https://p.scdn.co/mp3-preview/d26dbc0e98f5932daeede532a0284efbb5b924c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USPR36407335,spotify:user:bradnumber1,2023-01-05T11:48:36Z,american folk revival,0.785,0.34,2.0,-15.593,1.0,0.192,0.752,0.0,0.107,0.652,129.007,4.0,,Mercury Records,"C © 1998 The Island Def Jam Music Group, P This Compilation ℗ 2014 The Island Def Jam Music Group",929 +930,spotify:track:07j5RLJHwsm4cUb3GGoW3w,9 to 5,spotify:artist:32vWCbZh0xZ4o9gkz4PsEU,Dolly Parton,spotify:album:2AxzB3w4ri21tjE7Xr9H1l,Dolly,spotify:artist:32vWCbZh0xZ4o9gkz4PsEU,Dolly Parton,2009-10-30,https://i.scdn.co/image/ab67616d0000b27303a7a35b83130bea20a62746,4,2,165653,https://p.scdn.co/mp3-preview/6384764199bf3d44f69085d62e10a076855ac8c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRN19600170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,country dawn",0.557,0.615,6.0,-10.638,1.0,0.0418,0.5,0.0,0.487,0.82,104.475,4.0,,RLG/Legacy,P This Compilation (P) 2009 Sony Music Entertainment,930 +931,spotify:track:29Ns3avs48iQhNQgrHMEkm,"See You Again, Love Me Like You Do, Sugar - Acoustic Mashup",spotify:artist:09kCHZp9iFO2FJNb9lR6G5,Megan Davies,spotify:album:598yk60jws90rsCDHU4lkl,"See You Again, Love Me Like You Do, Sugar (Acoustic Mashup)",spotify:artist:09kCHZp9iFO2FJNb9lR6G5,Megan Davies,2015-05-15,https://i.scdn.co/image/ab67616d0000b27376e05ea670eb1fd573f2b84a,1,1,231965,https://p.scdn.co/mp3-preview/460e65af52548552faf8d96ce4f13952bd4366b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,QM4DW1505881,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic cover,viral pop",0.393,0.207,10.0,-11.865,1.0,0.0392,0.877,0.0,0.104,0.262,163.99,4.0,,560877 Records DK,"C 2015 560877 Records DK, P 2015 560877 Records DK",931 +932,spotify:track:0Pbz3hrYfXNJsPKdHXhh0r,How Am I Supposed to Live without You,spotify:artist:4463nfFMmK1cwAWBQDwT5e,Laura Branigan,spotify:album:2bfvV9aRLN1BseXz4FbVnW,The Best of Branigan,spotify:artist:4463nfFMmK1cwAWBQDwT5e,Laura Branigan,1995-06-06,https://i.scdn.co/image/ab67616d0000b273f0f7c1d151ae7ad826643e2f,1,8,263320,https://p.scdn.co/mp3-preview/d8de4eddd199aaec117cfca5b3f5b1c53943cb91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USAT28300017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock,synthpop",0.546,0.469,10.0,-8.26,1.0,0.035,0.813,8.33e-05,0.134,0.185,139.334,4.0,,Atlantic Records,"C © 1995 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1995 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",932 +933,spotify:track:5ZBeML7Lf3FMEVviTyvi8l,Twist And Shout - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:3KzAvEXcqJKBF97HrXwlgf,Please Please Me (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1963-03-22,https://i.scdn.co/image/ab67616d0000b273dbeec63ad914c973e75c24df,1,14,155226,https://p.scdn.co/mp3-preview/9a1f08b072f0254df1968fafcaed7c8d60fa90f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBAYE0601423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.482,0.849,2.0,-9.198,1.0,0.0452,0.641,7.74e-06,0.0414,0.937,124.631,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",933 +934,spotify:track:2ORrgw8M0ZbrFlm5cpaKCv,True Colors,"spotify:artist:6xfqnpe2HnLVUaYXs2F8YS, spotify:artist:31TPClRtHm23RisEBtV3X7","Anna Kendrick, Justin Timberlake",spotify:album:7M83W7iXqtZ2qjYCOXvgWj,True Colors,"spotify:artist:6xfqnpe2HnLVUaYXs2F8YS, spotify:artist:31TPClRtHm23RisEBtV3X7","Anna Kendrick, Justin Timberlake",2016-09-16,https://i.scdn.co/image/ab67616d0000b2738f00f06afe95022f6266ba65,1,1,243720,https://p.scdn.co/mp3-preview/e7cae182f05b492a217685b8945fcbad0ad9bc89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USRC11601602,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,movie tunes,dance pop,pop",0.29,0.261,4.0,-9.163,1.0,0.0277,0.66,0.0,0.155,0.0999,143.598,4.0,,Villa 40/RCA Records,P (P) 2016 DreamWorks Animation LLC,934 +935,spotify:track:1xznGGDReH1oQq0xzbwXa3,One Dance,"spotify:artist:3TVXtAsR1Inumwj472S9r4, spotify:artist:3tVQdUvClmAT7URs9V3rsp, spotify:artist:77DAFfvm3O9zT5dIoG0eIO","Drake, Wizkid, Kyla",spotify:album:3hARKC8cinq3mZLLAEaBh9,Views,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,2016-05-06,https://i.scdn.co/image/ab67616d0000b273726abca207567d5e41cb9667,1,12,173986,https://p.scdn.co/mp3-preview/0ee5843f6060102ce4ac239c856c452439e3d9d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USCM51600028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian hip hop,canadian pop,hip hop,pop rap,rap,afrobeats,afropop,azonto,nigerian hip hop,nigerian pop,uk funky",0.791,0.619,1.0,-5.886,1.0,0.0532,0.00784,0.00423,0.351,0.371,103.989,4.0,,Universal Music Group,"C © 2016 Young Money Entertainment/Cash Money Records, P ℗ 2016 Young Money Entertainment/Cash Money Records",935 +936,spotify:track:57trQKFZdJxHia4sMJioWk,Sister Christian,spotify:artist:1Ha0Fz4i0d4gu5fZbhBCtH,Night Ranger,spotify:album:0XSzjoQ6rMkWeoOQdQAWRs,Midnight Madness,spotify:artist:1Ha0Fz4i0d4gu5fZbhBCtH,Night Ranger,1983-01-01,https://i.scdn.co/image/ab67616d0000b27354aafca9cc0f52a7ea059fd2,1,4,302933,https://p.scdn.co/mp3-preview/020f9178489234da3d180fc852a5be4466f63731?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USMC18314773,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,soft rock",0.448,0.35,5.0,-16.239,1.0,0.0393,0.147,2.27e-06,0.0842,0.234,177.279,4.0,,Geffen*,"C © 1983 MCA Records Inc., P ℗ 1983 UMG Recordings, Inc.",936 +937,spotify:track:1gmdTQbEgRZoCbVqSLEJj5,I'll Be There for You (Friends Theme),spotify:artist:7CQwac16i1W5ej8YpuL3dv,Boyce Avenue,spotify:album:6olVyDyIS9W67adbR23ypX,"New Acoustic Sessions, Vol. 4",spotify:artist:7CQwac16i1W5ej8YpuL3dv,Boyce Avenue,2012-07-20,https://i.scdn.co/image/ab67616d0000b2739cc3f5c33c6b60f783fccff7,1,10,138201,https://p.scdn.co/mp3-preview/8535f82324cd05b6bf1ca2af1fbf365882fb0ac3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USM951200027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic cover,neo mellow,viral pop",0.473,0.303,11.0,-8.48,0.0,0.031,0.835,0.0,0.109,0.536,81.153,4.0,,3 Peace Records,"C 2013 3 Peace Records, P 2013 3 Peace Records",937 +938,spotify:track:6iAQHemp1D2VSSPk74Dor3,Trouble,"spotify:artist:5yG7ZAZafVaAlMTeBybKAL, spotify:artist:35GL8Cu2GKTcHzKGi75xl5","Iggy Azalea, Jennifer Hudson",spotify:album:4z4Pgh0fNUQkmGP4K1XxDb,Reclassified,spotify:artist:5yG7ZAZafVaAlMTeBybKAL,Iggy Azalea,2014-10-01,https://i.scdn.co/image/ab67616d0000b273addae77268e3b66b310c8296,1,6,166317,https://p.scdn.co/mp3-preview/4c1a8043693a2496bcd0f1f5d75586fda4c082ea?cid=9950ac751e34487dbbe027c4fd7f8e99,True,47,GBUM71405575,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,dance pop,pop,dance pop,r&b,urban contemporary",0.96,0.699,7.0,-3.804,1.0,0.133,0.0931,0.0,0.0812,0.669,106.01,4.0,,EMI,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",938 +939,spotify:track:2ccUQnjjNWT0rsNnsBpsCA,Surrender,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,spotify:album:5w20U3G3GyWiPvvDeVzkhN,Heaven Tonight,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,1978-04,https://i.scdn.co/image/ab67616d0000b27361e605b2786f724b37f0176d,1,1,253733,https://p.scdn.co/mp3-preview/c5c316a4b47eacfa1e9a4fe34ca337d10ec435e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM19802566,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,glam metal,glam rock,hard rock,mellow gold,power pop,rock,singer-songwriter,soft rock",0.524,0.955,0.0,-7.081,1.0,0.0411,0.00717,8.77e-06,0.659,0.869,133.849,4.0,,Epic/Legacy,"P (P) 1978 Epic Records, a division of Sony Music Entertainment",939 +940,spotify:track:2mdxJLJHzFmiiYdTZ8JcyH,I Fall Apart,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,spotify:album:7J0uECwRkAFLiZljgYFq1w,Stoney,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2016-12-09,https://i.scdn.co/image/ab67616d0000b27309a51bd361845073cbd501b7,1,7,223346,https://p.scdn.co/mp3-preview/2add5c025df9c2208c4b2c3b0357661f2d95eda5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71614475,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap",0.565,0.55,8.0,-5.357,0.0,0.0397,0.0782,0.0,0.196,0.302,143.927,4.0,,Universal Music Group,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",940 +941,spotify:track:0r4SsYcwvd8URat6AS2m6f,Lush Life,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,spotify:album:6x3lObhgC3H0KpOfePojFG,Lush Life,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,2015-06-09,https://i.scdn.co/image/ab67616d0000b2736eaa0691ac9d790b41d21a91,1,1,201122,https://p.scdn.co/mp3-preview/2f14e67d9660815897317b300241b228e40bcd97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEWEE1500509,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,scandipop,swedish electropop,swedish pop",0.694,0.712,7.0,-3.923,0.0,0.046,0.133,0.0,0.211,0.799,98.022,4.0,,Epic/Record Company TEN,"P (P) 2015 Record Company TEN, exclusively distributed by Epic Records, a division of Sony Music Entertainment",941 +942,spotify:track:7rSn37L6jGaPnOOLBbEwXX,Happy Up Here,spotify:artist:5nPOO9iTcrs9k6yFffPxjH,Röyksopp,spotify:album:6vQMbwthchxuSioACn2hcE,Junior,spotify:artist:5nPOO9iTcrs9k6yFffPxjH,Röyksopp,2009-03-18,https://i.scdn.co/image/ab67616d0000b273061dfbdfdd7d963d1eac3194,1,1,163666,https://p.scdn.co/mp3-preview/d544d482b71b1ffc6f93e252b1669472835ae9fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,FRZ110802634,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,electronica,indietronica,neo-synthpop,trip hop",0.676,0.877,10.0,-3.847,1.0,0.133,0.0102,0.186,0.255,0.685,103.538,4.0,,Parlophone (France),"C © 2009 Parlophone Music France, under exclusive licence to Wall of Sound for UK/Eire, P ℗ 2009 Parlophone Music France, under exclusive licence to Wall of Sound for UK/Eire",942 +943,spotify:track:66s45uMhk7Y4z0xUgESdm3,Unwell - 2007 Remaster,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:07cWSvrkFTgaQGYh7M1cCt,Exile on Mainstream (International),spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2007-09-29,https://i.scdn.co/image/ab67616d0000b273e6a0874e7f0b2471102d0a62,1,17,237266,https://p.scdn.co/mp3-preview/e25a4d260cee5d19bf12f6abfc88670d1704474a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT20704548,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.442,0.793,9.0,-5.152,1.0,0.0347,0.0456,0.0,0.328,0.437,80.985,4.0,,Atlantic Records,"C © 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",943 +944,spotify:track:51qLYVFdJarwwQ2NbfxqnF,Buses and Trains - Radio Edit,spotify:artist:4KQNF34GIZZWL10tS3XNTk,Bachelor Girl,spotify:album:57lMcOFmvLPpOLKiejKvUg,Loved & Lost: The Best Of Bachelor Girl,spotify:artist:4KQNF34GIZZWL10tS3XNTk,Bachelor Girl,2011-04-18,https://i.scdn.co/image/ab67616d0000b273221f462529a2bdc73e188bfa,1,1,219160,https://p.scdn.co/mp3-preview/43f39494861403991dae8ff6d69d4110468474fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUBM09831208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.457,0.745,2.0,-6.209,1.0,0.0356,0.0374,0.0,0.124,0.751,167.648,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,944 +945,spotify:track:3V7rLiHskOPhXj6ECYnq7n,Twisted,spotify:artist:5ny07v4RRsvdv1uQVplMry,Brian McFadden,spotify:album:6Zh0B7BnlxwlRmZPU1WH4z,Set In Stone,spotify:artist:5ny07v4RRsvdv1uQVplMry,Brian McFadden,2008-01-01,https://i.scdn.co/image/ab67616d0000b2737b38bb7a5d2e7158419745b5,1,1,235080,https://p.scdn.co/mp3-preview/7b45736ebc323a0d346c41192cf98adb3612b745?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUUM70800124,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.55,0.903,4.0,-6.658,1.0,0.0355,0.182,7.14e-05,0.424,0.666,125.973,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 BMF Records, under exclusive license to Universal Music Australia, P ℗ 2008 BMF Records, under exclusive license to Universal Music Australia",945 +946,spotify:track:7iIeylfGVAwY6hwpTnDQCR,Witch Queen,spotify:artist:27jbY7PPKoVMVzpMBTUsaN,Chantoozies,spotify:album:1z9k1w40R9Mg21i9HQCOe8,Chantoozies,spotify:artist:27jbY7PPKoVMVzpMBTUsaN,Chantoozies,1988,https://i.scdn.co/image/ab67616d0000b2738be4b95a2586d7662c33fea6,1,9,258973,https://p.scdn.co/mp3-preview/435239b2348188200149324efb583a4825b402db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUFE08800081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.785,0.771,8.0,-10.782,1.0,0.0365,0.123,0.273,0.0613,0.937,126.949,4.0,,WM Australia,"C © 1988 Mushroom Records Pty Limited, P ℗ 1988 Mushroom Records Pty Limited",946 +947,spotify:track:5DJl3SxRVCxKgmwlNb3d1s,Cool World - Digitally Remastered,spotify:artist:0f7ChwXkRvmj2ViLbEQwYK,Mondo Rock,spotify:album:4Iu6eJb8nC0kUpTv5KZLnp,The Greatest Hits,spotify:artist:0f7ChwXkRvmj2ViLbEQwYK,Mondo Rock,2017-01-27,https://i.scdn.co/image/ab67616d0000b27381edc13ef7439ae806502d84,1,4,213680,https://p.scdn.co/mp3-preview/b4871ea8f95e2139ba893af0cdd09fe22142b388?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUMF08100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.592,0.675,4.0,-6.327,1.0,0.0425,0.0622,0.000184,0.0848,0.458,124.145,4.0,,Bloodlines,"C 2016 Bloodlines, P 2016 Bloodlines",947 +948,spotify:track:3pU3mRumn5rWii1rKNu1eV,Bulletproof,spotify:artist:3K2zB87GZv1krx031en5VA,La Roux,spotify:album:0jBkrUrXIxtaMrfAkHjXoZ,La Roux,spotify:artist:3K2zB87GZv1krx031en5VA,La Roux,2009,https://i.scdn.co/image/ab67616d0000b2731ea4804c178ed97c2c1a0241,1,4,205733,https://p.scdn.co/mp3-preview/4d9caf7ea55671eed03692cb37990c259a395e92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBUM70903779,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,electropop,indietronica,neo-synthpop",0.674,0.882,3.0,-2.771,0.0,0.0477,0.000441,6.47e-05,0.068,0.682,123.016,4.0,,Polydor,"C © 2008 Polydor Ltd. (UK), P ℗ 2008 Polydor Ltd. (UK)",948 +949,spotify:track:6tvQzeCPwOytDlBYCIOY0n,Breathe,"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:7hssUdpvtY5oiARaUDgFZ3","Jax Jones, Ina Wroldsen",spotify:album:6m8i2mJRlqvarXe9Vi1MzS,Breathe,"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:7hssUdpvtY5oiARaUDgFZ3","Jax Jones, Ina Wroldsen",2017-12-01,https://i.scdn.co/image/ab67616d0000b273242e97b0767265f5c3cf0277,1,1,207629,https://p.scdn.co/mp3-preview/993bbecd6512638aff44afa4688f4990a5184c34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71706192,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,house,pop dance,uk dance,norwegian pop",0.722,0.744,11.0,-5.52,0.0,0.0363,0.0234,0.000157,0.143,0.686,125.985,4.0,,Universal Music Group,"C © 2017 Universal Music Operations Limited, P A Polydor Records release; ℗ 2017 Universal Music Operations Limited",949 +950,spotify:track:3GYlQmwfBDo7imFyGPhrl7,Say My Name,"spotify:artist:73jBynjsVtofjRpdpRAJGk, spotify:artist:4ofCBoyEiGSePFAG500xev, spotify:artist:2HkAI0YrEcgoR8QdaURqhO","Dimitri Vegas & Like Mike, Regard, Dimitri Vegas",spotify:album:4r6DqAydqQCcOs1JiVmRSZ,Say My Name,"spotify:artist:73jBynjsVtofjRpdpRAJGk, spotify:artist:4ofCBoyEiGSePFAG500xev, spotify:artist:2HkAI0YrEcgoR8QdaURqhO","Dimitri Vegas & Like Mike, Regard, Dimitri Vegas",2020-07-24,https://i.scdn.co/image/ab67616d0000b273dea3da3e0ff677f4c895ee46,1,1,159535,https://p.scdn.co/mp3-preview/9479101435c5604680e17bcb08267ffa9b58955c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,BEG852000012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"belgian dance,belgian edm,big room,dutch house,edm,electro house,pop dance,progressive electro house,pop dance,pop edm,slap house,uk dance,belgian edm,pop dance",0.729,0.788,10.0,-4.832,0.0,0.0908,0.0703,0.0,0.115,0.857,118.039,4.0,,Epic Amsterdam,"P (P) 2020 Smash The House, under exclusive license to Epic Amsterdam, a division of Sony Music Entertainment Netherlands B.V.",950 +951,spotify:track:3zrYNl1aMdFrQkcOjKVr5u,I Cry,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,spotify:album:0wmVf2KCcKnQbAYclahHYb,Wild Ones,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2012-06-22,https://i.scdn.co/image/ab67616d0000b27387be2cd7396e138e74cb347c,1,8,223800,https://p.scdn.co/mp3-preview/677818325ecfeb591d3e91779d54c7974c0d3d39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT21202584,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap",0.693,0.822,4.0,-5.441,0.0,0.0439,0.00616,1.79e-06,0.315,0.763,126.035,4.0,,Atlantic Records,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",951 +952,spotify:track:51H2y6YrNNXcy3dfc3qSbA,When Doves Cry,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:7nXJ5k4XgRj5OLg9m8V3zc,Purple Rain,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1984-06-25,https://i.scdn.co/image/ab67616d0000b273d52bfb90ee8dfeda8378b99b,1,6,352906,https://p.scdn.co/mp3-preview/f7110b93ffc4b3746092e331c2e7188cfc283800?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USWB10001877,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.729,0.989,9.0,-4.613,0.0,0.049,0.0102,4.45e-05,0.443,0.84,126.47,4.0,,Rhino/Warner Records,"C © 1984 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1984 NPG Records, Inc. under exclusive license to Warner Records Inc.",952 +953,spotify:track:6wJNPpHDQB6eZzVnO2Ydqy,Love & Devotion - Club Mix,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,spotify:album:4SJ6x0Hlml18n0Ur9hnWNU,Another Night,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,1995-04-10,https://i.scdn.co/image/ab67616d0000b273fd06c1a7292da1064f45c1ca,1,7,274880,https://p.scdn.co/mp3-preview/7e3f1cbee48952165d8a6e2bbc6dedc16e2cf884?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,DEC739500142,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,german techno,hip house",0.784,0.647,10.0,-9.307,0.0,0.243,0.0121,0.000549,0.0873,0.631,102.171,4.0,,Hansa Local,P (P)1995 BMG Berlin Musik GmbH,953 +954,spotify:track:2bNrvWD9d5Zn9tS8XvcaMk,I Could Be The One (Avicii Vs. Nicky Romero) - Nicktim / Radio Edit,"spotify:artist:1vCWHaC5f2uS3yhpwWbIA6, spotify:artist:5ChF3i92IPZHduM7jN3dpg","Avicii, Nicky Romero",spotify:album:0z7Mr85v0hPSX0VOUxP51W,I Could Be The One [Avicii vs Nicky Romero],"spotify:artist:1vCWHaC5f2uS3yhpwWbIA6, spotify:artist:5ChF3i92IPZHduM7jN3dpg","Avicii, Nicky Romero",2012-01-01,https://i.scdn.co/image/ab67616d0000b2735ccb34ad80069d7eef97f1a1,1,1,208316,https://p.scdn.co/mp3-preview/f86b63a3fb643dc427eff698d7f2b6f74604992c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEUM71201601,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,big room,dutch edm,dutch house,edm,electro house,pop dance,progressive electro house",0.509,0.79,6.0,-3.782,0.0,0.0374,0.332,6.67e-05,0.316,0.638,127.946,4.0,,Universal Music Group,"C © 2013 Avicii Music AB, P ℗ 2012 Avicii Music AB",954 +955,spotify:track:3pDiNbqY2sRSNApqrS8td7,Silver Moon,"spotify:artist:5Tic1bWAbmRoLrqaJ5SxU2, spotify:artist:08xBftDfAD7CMC51uxUuZF","Michael Nesmith, The First National Band",spotify:album:1k7WkNHGPNPnri2tsowvtg,70s 100 Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-03-01,https://i.scdn.co/image/ab67616d0000b273871ab8561721e8967eda8269,1,92,190333,https://p.scdn.co/mp3-preview/9bc6ea4ee4d98fc2620f200e6ad7ed9bd931f561?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USRC17007906,spotify:user:bradnumber1,2021-08-08T09:26:31Z,country rock,0.561,0.68,5.0,-12.674,1.0,0.0372,0.143,3.28e-06,0.227,0.703,127.511,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment,955 +956,spotify:track:7yBl8YmvcgwwYlazJcvowE,Fame,spotify:artist:3oZa8Xs6IjlIUGLAhVyK4G,Irene Cara,spotify:album:2nE5WmbSq3qbyDrOpSTlnq,Fame: The Original Soundtrack from the Motion Picture,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1980-05-16,https://i.scdn.co/image/ab67616d0000b273e5fc82fcd77a8f95a9bbcf5a,1,1,316066,https://p.scdn.co/mp3-preview/06447f8e6dfbef1e8850dd60398c367a908421ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USNLR1200531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,new romantic,new wave pop,soft rock",0.7,0.73,0.0,-8.763,0.0,0.0311,0.132,0.0,0.133,0.961,130.519,4.0,,WaterTower Music,"C 1980 2012 Turner Entertainment, P 1980 2012 Turner Entertainment",956 +957,spotify:track:69WE3fnKao5bHp4zTVoQCn,Walk On The Wild Side,spotify:artist:5GXruybcLmXPjR9rKKFyS6,Jimmy Smith,spotify:album:5gsmWIvyUaxmkk0AUPvlGH,Jazz Masters 29: Jimmy Smith,spotify:artist:5GXruybcLmXPjR9rKKFyS6,Jimmy Smith,1994-01-01,https://i.scdn.co/image/ab67616d0000b2732e22154be9270d22c8eea519,1,10,356973,https://p.scdn.co/mp3-preview/b50c5aa74b551d2de68f27f1b8010d1ddb17f6a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR36200010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bebop,contemporary post-bop,hammond organ,hard bop,jazz,jazz blues,jazz funk,jazz organ,soul jazz",0.379,0.417,5.0,-12.944,1.0,0.0391,0.476,0.0816,0.109,0.504,69.016,4.0,,Verve,"C © 1994 The Verve Music Group, a Division of UMG Recordings, Inc., P ℗ 1994 The Verve Music Group, a Division of UMG Recordings, Inc.",957 +958,spotify:track:3kf3t1i8fwaeqg3V25RNjc,Jackson,"spotify:artist:3IZrrNonYELubLPJmqOci2, spotify:artist:2aVHDjRHRM7dcFkGwahXLG","Nancy Sinatra, Lee Hazlewood",spotify:album:7I7z6Lfwyc1nghsFImEhYq,Nancy & Lee,"spotify:artist:3IZrrNonYELubLPJmqOci2, spotify:artist:2aVHDjRHRM7dcFkGwahXLG","Nancy Sinatra, Lee Hazlewood",1968-01-01,https://i.scdn.co/image/ab67616d0000b2732a3c0fda11b85a7b00bc2c70,1,7,169013,https://p.scdn.co/mp3-preview/63fc5e8311298f85302a966af927c86d9efdf4b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USASE0510171,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lounge,sunshine pop,baroque pop,classic oklahoma country,singer-songwriter",0.601,0.854,9.0,-5.837,1.0,0.0656,0.308,0.0,0.0947,0.936,141.395,4.0,,"Boots Enterprises, Inc.","C (C) 1968 Boots Enterprises, Inc., P (P) 2006 Boots Enterprises, Inc.",958 +959,spotify:track:0dc1kYrVpq3dqn1ubblOXz,Sunshine After The Rain,spotify:artist:4Xn6fPXDrarY8LxXWqlE2M,Elkie Brooks,spotify:album:3jJ3ZxG1qKayjweuDmJEDF,Pearls,spotify:artist:4Xn6fPXDrarY8LxXWqlE2M,Elkie Brooks,1981-01-01,https://i.scdn.co/image/ab67616d0000b2730262144b991d8d11af027cf8,1,4,203826,https://p.scdn.co/mp3-preview/19e79ced9403eedd3025dbb7b08e09bdac7eeb79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,GBAAM7701001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.649,0.265,3.0,-18.213,1.0,0.032,0.819,0.0,0.0808,0.184,106.523,4.0,,EMI,"C © 1985 A&M Records Limited, P This Compilation ℗ 1981 A&M Records Limited",959 +960,spotify:track:3pKUJpGUIVBwP8wZUNZztq,Hear My Name - Radio Edit,spotify:artist:3cQA9WH8liZfeja1DxcDYE,Armand Van Helden,spotify:album:3u7Mwa1FJgRlbz1iTBgxLF,Hear My Name,spotify:artist:3cQA9WH8liZfeja1DxcDYE,Armand Van Helden,2005,https://i.scdn.co/image/ab67616d0000b2731c3f508c5cff657c805ef925,1,1,211800,https://p.scdn.co/mp3-preview/d46e0cad2914dd139a60234413af4e390c28e3e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEFR0300186,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,classic house,deep house,disco house,filter house,house,speed garage,uk dance,vocal house",0.729,0.487,11.0,-15.766,1.0,0.0333,0.0043,0.000751,0.0688,0.889,131.024,4.0,,Liberator Music,"C 2005 Southern Fried Records, P 2005 Southern Fried Records",960 +961,spotify:track:3YqH26H4kyG3usFtOc8v4P,She's Got That Vibe,"spotify:artist:2mxe0TnaNL039ysAj51xPQ, spotify:artist:02JTFUpX3CgLWXNKEXIvcb","R. Kelly, Public Announcement",spotify:album:0WkL3JulvpTfRsSJ7crh5S,Born Into The 90's,spotify:artist:2mxe0TnaNL039ysAj51xPQ,R. Kelly,1992-01-13,https://i.scdn.co/image/ab67616d0000b273ddf956e37e76de0c4d2a9b92,1,2,274133,https://p.scdn.co/mp3-preview/83e5ac201651c6c3cb73091fe3755b2dbdab6fd0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USJI19100010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing",0.801,0.693,1.0,-10.239,1.0,0.073,0.0504,0.0,0.168,0.742,113.137,4.0,,Jive,P (P) 1992 Zomba Recording LLC,961 +962,spotify:track:6YJUNqM5ZomJTrC5peDFXT,Ain't Got Far to Go,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,spotify:album:2xVeccmEU0zklK4XSKiDCW,I Cry When I Laugh,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,2015,https://i.scdn.co/image/ab67616d0000b27339588f221861ee72b40b755c,1,3,203498,https://p.scdn.co/mp3-preview/a9220cbdf01554af1ffd7ed343c40fc9e9266048?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAHS1500225,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.49,0.841,5.0,-4.698,0.0,0.0765,0.0033,0.0,0.548,0.615,143.964,4.0,,Atlantic Records UK,"C © 2015 Atlantic Records UK Ltd, a Warner Music Group Company, P ℗ 2015 Atlantic Records UK Ltd, a Warner Music Group Company, except track 9 2013 Atlantic Records UK Ltd and track 13 2015 Disturbing London Records Limited under exclusive licence to Parlophone Records Limited",962 +963,spotify:track:76ZnyGfjQZSM8GPfR7OqiJ,Good Thing,spotify:artist:20p5D2KrE8CGuOjHtxsyTp,Fine Young Cannibals,spotify:album:59R6wpHlRk6Ui19e7qAgo1,The Raw And The Cooked,spotify:artist:20p5D2KrE8CGuOjHtxsyTp,Fine Young Cannibals,1988,https://i.scdn.co/image/ab67616d0000b273781b821ca96e39298d24d9b5,1,2,201866,https://p.scdn.co/mp3-preview/57b0f78a924e232eeca82a7c3a606e7e6726df43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRH10901908,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,synthpop",0.747,0.586,9.0,-10.119,0.0,0.0299,0.0708,8e-05,0.0427,0.893,164.718,4.0,,Rhino/London-Sire,"C 1989 London/Sire Records., P 1989 London/Sire Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",963 +964,spotify:track:0AMbhbWHeVEL0XxiIonjCM,Dream Baby,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:39L39Zc1OmLrQOY4P0xhhG,The Monument Singles Collection,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2011-04-25,https://i.scdn.co/image/ab67616d0000b273c8e397651625a503f15f26b3,1,10,151813,https://p.scdn.co/mp3-preview/263e98c2ae398147539ca5deb954ddc0c4448a0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USSM10700299,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.456,0.554,5.0,-9.659,1.0,0.035,0.345,0.000764,0.0882,0.841,154.661,4.0,,Monument/Orbison Records/Legacy,P This Compilation (P) 2011 Sony Music Entertainment,964 +965,spotify:track:0wb21I1NV5uVUolRXIqlJF,Come And Get It - Remastered 2010,spotify:artist:4pJCawaKSZ40EnxN0YEYw3,Badfinger,spotify:album:6uA2hir5o45vrILeqQVTbr,Magic Christian Music (Remastered 2010 / Deluxe Edition),spotify:artist:4pJCawaKSZ40EnxN0YEYw3,Badfinger,1970-01-09,https://i.scdn.co/image/ab67616d0000b273555e940b9bbbe0d8ad5254cf,1,1,143213,https://p.scdn.co/mp3-preview/fbb8c82fd1da02823d2047f2510b0a360cdf3fb2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBDCE1000010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,country rock,folk rock,jangle pop,mellow gold,power pop,singer-songwriter,soft rock",0.616,0.629,8.0,-6.9,1.0,0.0263,0.0285,1.32e-06,0.208,0.606,94.004,4.0,,EMI Catalogue,"C © 2010 Apple Corps Ltd, P This Compilation ℗ 2010 Apple Corps Ltd",965 +966,spotify:track:1ywIgK3fqOJF6H1G3PigPE,Midnight Midnight,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,spotify:album:2tZRoBOqmLy64lHwds1Kkl,Destination Now,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738387b53a693aba5553ef3175,1,4,161213,https://p.scdn.co/mp3-preview/79a7d00aa0ce0b2cada8f4f7779ffee427a65627?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC01100631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian house",0.739,0.896,1.0,-2.396,1.0,0.214,0.0853,0.0,0.183,0.8,128.046,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Vicious Recordings Pty Ltd, P ℗ 2011 Vicious Recordings Pty Ltd",966 +967,spotify:track:3FjumHp7tXtjiTexQNNoxx,No Roots,spotify:artist:7f0OLhGgBMX9fUjm1dcPip,Alice Merton,spotify:album:60mOHNf97T4qT38HzXZRRU,No Roots,spotify:artist:7f0OLhGgBMX9fUjm1dcPip,Alice Merton,2017-11-17,https://i.scdn.co/image/ab67616d0000b273b7aabc150b63574a68ab3a5a,1,1,235813,https://p.scdn.co/mp3-preview/7a2b44ba28afe5075845c0eaf67b075fe415e569?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEVQ71600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.863,0.657,7.0,-7.295,1.0,0.105,0.264,0.00619,0.0713,0.829,115.958,4.0,,Alice Merton,"C (C) 2017 Paper Plane Records International, distributed in Australia and New Zealand by UNIFIED Music Group Pty Ltd, P (P) 2017 Paper Plane Records International, distributed in Australia and New Zealand by UNIFIED Music Group Pty Ltd",967 +968,spotify:track:0VJwAzffgIdB2JseOFnwzU,You Get What You Give,spotify:artist:0Grjlu7ncIuCaSYvCs9fcd,New Radicals,spotify:album:5husr53zVT1yb0vBRsjYK5,Maximum Edge - '90s Modern Rock,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2000-04-20,https://i.scdn.co/image/ab67616d0000b2738673e90d43a668751d916d0a,1,1,300600,https://p.scdn.co/mp3-preview/f60a92f1f0759c66eb1092cd6cd09aab791a6518?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USI4R1052722,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.622,0.858,2.0,-7.454,1.0,0.0301,0.15,0.0,0.0913,0.707,113.975,4.0,,Metacom Music,"C (C) 2000 Metacom Music, P (P) 2000 Metacom Music",968 +969,spotify:track:3GCdLUSnKSMJhs4Tj6CV3s,All The Stars (with SZA),"spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg, spotify:artist:7tYKF4w9nC0nq9CsPZTHyP","Kendrick Lamar, SZA",spotify:album:3pLdWdkj83EYfDN6H2N8MR,Black Panther The Album Music From And Inspired By,"spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg, spotify:artist:7tYKF4w9nC0nq9CsPZTHyP","Kendrick Lamar, SZA",2018-02-09,https://i.scdn.co/image/ab67616d0000b273c027ad28821777b00dcaa888,1,2,232186,https://p.scdn.co/mp3-preview/330c6d6e5bfcc1bc831b6948b57ce9c98e7558bf?cid=9950ac751e34487dbbe027c4fd7f8e99,True,85,USUM71713947,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"conscious hip hop,hip hop,rap,west coast rap,pop,r&b,rap",0.695,0.633,8.0,-4.946,1.0,0.0599,0.0612,0.000195,0.0926,0.557,96.782,4.0,,Black Panther (TDE/DMG) PS,"C © 2018 Aftermath Records, P ℗ 2018 Aftermath Records",969 +970,spotify:track:00MI0oGDVJYM1qWbyUOIhH,867-5309 / Jenny (Rerecorded),spotify:artist:1n2LWYgwtGp7EzDapUoniE,Tommy Tutone,spotify:album:6lqQzf2MGsTQ577cGXIfcK,867-5309 / Jenny (Rerecorded),spotify:artist:1n2LWYgwtGp7EzDapUoniE,Tommy Tutone,2008-04-09,https://i.scdn.co/image/ab67616d0000b27312a569cbcd9a3a2773ef7d10,1,1,231080,https://p.scdn.co/mp3-preview/d33001c886ab73d4657dcb64c8738e6bbaa208ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USDEI0002653,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.73,0.785,2.0,-7.201,1.0,0.0456,0.0418,0.00669,0.123,0.724,137.639,4.0,,K-Tel,"C © 2008 K-Tel, P ℗ 2008 K-Tel",970 +971,spotify:track:2pp1JD85KtFxRz94efpQj8,I'll Be Gone,spotify:artist:5SKKlvQaTiiLuJhC8xiWR9,Spectrum,spotify:album:0Mbqmg85EmlREW992gBvSm,"Tribute To Lobby Loyde, Billy Thorpe and Pete Wells",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-12-06,https://i.scdn.co/image/ab67616d0000b273f3562d56aba6bde321e188b7,1,3,268280,https://p.scdn.co/mp3-preview/4322e43cba9fcf8ea6a9020eb93c99298cfe2183?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUGM00800045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.523,0.802,9.0,-5.942,1.0,0.0984,0.194,7.93e-06,0.337,0.413,73.978,4.0,,Chugg Entertainment,"C 2008 Chugg Entertainment, P 2008 Chugg Entertainment",971 +972,spotify:track:5vz2J2kP3vV7mZE9UxnFcG,Cream,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:0qcgEPOg67XnxGizdAAcGa,Diamonds and Pearls,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1991-10-01,https://i.scdn.co/image/ab67616d0000b273a64900d67d089e189f651d24,1,4,253066,https://p.scdn.co/mp3-preview/816cd14d151cc5d97772d0e1c4abc9e85f306fee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB19900286,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.861,0.604,5.0,-8.44,0.0,0.0719,0.0974,0.358,0.0467,0.853,115.588,4.0,,Warner Records,"C © 1991 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1991 NPG Records, Inc. under exclusive license to Warner Records Inc.",972 +973,spotify:track:5AO8v8yr6eXj0zA9vNlKJk,Buttons - Final Edit Version,"spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ, spotify:artist:7hJcb9fa4alzcOq3EaNPoG","The Pussycat Dolls, Snoop Dogg",spotify:album:1ZHSCIHyzvzNon8s1iUKAi,Buttons,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2006-01-01,https://i.scdn.co/image/ab67616d0000b273e86e961e9d12396bbc11e06d,1,1,232160,https://p.scdn.co/mp3-preview/fd84fba1a1c0614e2b31bd12bd5b4eb5a61522dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USUM70602496,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,g funk,gangster rap,hip hop,pop rap,rap,west coast rap",0.499,0.814,2.0,-4.235,1.0,0.343,0.222,0.0,0.357,0.535,210.78,4.0,,Pussycat Dolls,"C © 2006 Pussycat Dolls, LLC, P ℗ 2006 Pussycat Dolls, LLC",973 +974,spotify:track:2QfiRTz5Yc8DdShCxG1tB2,Johnny B. Goode,spotify:artist:293zczrfYafIItmnmM3coR,Chuck Berry,spotify:album:6eedtCtCjibu80yOhylSGL,Berry Is On Top,spotify:artist:293zczrfYafIItmnmM3coR,Chuck Berry,1959-07-01,https://i.scdn.co/image/ab67616d0000b273a496dc8c33ca6d10668b3157,1,6,161560,https://p.scdn.co/mp3-preview/214ca11106cbcdfe07ccd2d839c67c9b8949a5e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USMC15719963,spotify:user:bradnumber1,2024-01-02T03:28:09Z,"blues,blues rock,classic rock,rock,rock-and-roll,rockabilly,soul",0.534,0.803,10.0,-9.129,1.0,0.0743,0.741,6.07e-05,0.307,0.969,167.983,4.0,,Geffen,"C © 1959 UMG Recordings, Inc., P ℗ 1959 UMG Recordings, Inc.",974 +975,spotify:track:1smChL3Aq1U9DZA83LuDtp,I Wanna Be Around...,spotify:artist:2lolQgalUvZDfp5vvVtTYV,Tony Bennett,spotify:album:11KbbI91LeZUkXALWALytD,I Wanna Be Around,spotify:artist:2lolQgalUvZDfp5vvVtTYV,Tony Bennett,1963-02-18,https://i.scdn.co/image/ab67616d0000b273eefffb2d5a482f7b5b6c7318,1,3,131226,https://p.scdn.co/mp3-preview/70823f02fc0f649f306964c2c6e2b14744a4987a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USSM16200010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,vocal jazz",0.498,0.266,10.0,-13.425,1.0,0.0348,0.768,0.0,0.0828,0.376,69.601,4.0,,Columbia/Legacy,"P Originally released 1963. All rights reserved by Columbia Records, a division of Sony Music Entertainment",975 +976,spotify:track:3ESURCQuDWDui99W8IFdoN,Unforgettable - Mariah Carey Acoustic Remix,"spotify:artist:6vXTefBL93Dj5IqAWq6OTv, spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:1zNqQNIdeOUZHb8zbZRFMX","French Montana, Mariah Carey, Swae Lee",spotify:album:4Nkq2k3PFRCKISQRA3W6EE,Unforgettable (Mariah Carey Acoustic Remix),"spotify:artist:6vXTefBL93Dj5IqAWq6OTv, spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ","French Montana, Mariah Carey",2017-08-25,https://i.scdn.co/image/ab67616d0000b273eec7bd02bcdfa141401e7ff6,1,1,244135,https://p.scdn.co/mp3-preview/25c370340bea2de669cd55695988c608400ee8db?cid=9950ac751e34487dbbe027c4fd7f8e99,True,27,USSM11705529,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap,rap,southern hip hop,trap,dance pop,pop,urban contemporary,melodic rap,rap,trap",0.637,0.533,11.0,-8.736,1.0,0.0324,0.689,1.11e-06,0.107,0.661,102.989,4.0,,Bad Boy Entertainment/Epic Records,"P (P) 2017 Bad Boy Entertainment / Epic Records, a division of Sony Music Entertainment",976 +977,spotify:track:0i7O5MtSTXvR4BEY7stpjF,Hang On Sloopy,spotify:artist:6etIM3JbzGPxTdfNWWfsVH,The McCoys,spotify:album:17dRh7ma3OpZSdmWc5LT1H,Hang On Sloopy: The Best Of The McCoys,spotify:artist:6etIM3JbzGPxTdfNWWfsVH,The McCoys,1995-06-06,https://i.scdn.co/image/ab67616d0000b27324ac443ef49ebcbb172d03ea,1,2,231800,https://p.scdn.co/mp3-preview/724575ae701334c556f63bd66cc7e523f7966284?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM16501203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,doo-wop,merseybeat,rock-and-roll",0.765,0.516,7.0,-12.099,1.0,0.0334,0.167,0.0,0.0723,0.936,115.248,4.0,,Legacy/Epic Associated,P (P) 1995 Sony Music Entertainment Inc.,977 +978,spotify:track:4sjLcE0GQ6urc4iUXsUPe9,Kings And Queens,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,spotify:album:6OlCoydaNFUU7v1Xo5ZJPx,This Is War,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,2009-01-01,https://i.scdn.co/image/ab67616d0000b27364219d797874eecfd69f2458,1,3,347666,https://p.scdn.co/mp3-preview/99f66616f1a804486b53a7045a24aac2adba6990?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USVI20900397,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,post-grunge",0.293,0.817,8.0,-5.432,1.0,0.0852,0.0401,3.4e-05,0.13,0.145,165.0,4.0,,Virgin Records,"C © 2009 Virgin Records America, Inc., P ℗ 2009 Virgin Records America, Inc.",978 +979,spotify:track:2SSYLcSiT7oImgsS8cPyQu,Hot Right Now (feat. RITA ORA) - Radio Edit,"spotify:artist:6r20qOqY7qDWI0PPTxVMlC, spotify:artist:5CCwRZC6euC8Odo6y9X8jr","DJ Fresh, Rita Ora",spotify:album:5IqZHG6yO5SL6biWicPG3Y,Nextlevelism,spotify:artist:6r20qOqY7qDWI0PPTxVMlC,DJ Fresh,2012-09-28,https://i.scdn.co/image/ab67616d0000b273f36e1963b8fdcd13c531235b,1,2,182333,https://p.scdn.co/mp3-preview/29d78cc4f453d895e88ac5e748aa071423edc25c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBCEN1102199,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dancefloor dnb,drum and bass,uk dance,dance pop,pop,uk pop",0.524,0.972,4.0,-1.569,0.0,0.0431,0.00656,0.00058,0.224,0.476,175.017,4.0,,Ministry of Sound Recordings,P (P) 2012 Ministry of Sound Recordings Limited,979 +980,spotify:track:12axV6NUqaYH3yFUWwArzr,Losing My Religion,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,spotify:album:5PHng5BLIYSwmFfrihOeOi,In Time: The Best Of R.E.M. 1988-2003,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,2003-10-27,https://i.scdn.co/image/ab67616d0000b2734cef297681ea8e64a1fe4dc6,1,6,269000,https://p.scdn.co/mp3-preview/184d86f6c2b531830190011f00c5780fa7a2e1f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB19901521,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,athens indie,permanent wave,rock",0.671,0.849,9.0,-5.963,0.0,0.0283,0.0879,0.0,0.0971,0.801,125.429,4.0,,Universal Music Group,"C © 2003 R.E.M./Athens L.L.C., under exclusive license to Concord Music Group, Inc., P ℗ 2003 R.E.M./Athens L.L.C., under exclusive license to Concord Music Group, Inc.",980 +981,spotify:track:7CHi4DtfK4heMlQaudCuHK,Lose Control,"spotify:artist:0xRXCcSX89eobfrshSVdyu, spotify:artist:4EPJlUEBy49EX1wuFOvtjK, spotify:artist:2nm38smINjms1LtczR0Cei","MEDUZA, Becky Hill, Goodboys",spotify:album:1qSOaTvsCOyFJya3v1UzkP,Lose Control,"spotify:artist:0xRXCcSX89eobfrshSVdyu, spotify:artist:4EPJlUEBy49EX1wuFOvtjK, spotify:artist:2nm38smINjms1LtczR0Cei","MEDUZA, Becky Hill, Goodboys",2019-10-11,https://i.scdn.co/image/ab67616d0000b273d43c59e52d6a8032a4e27fc4,1,1,168387,https://p.scdn.co/mp3-preview/977b21196edb8ae28c53894d7bbea92f32db3b42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,DEUM71905792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,pop house,uk dance,pop dance,pop house,uk dance,uk pop,pop dance,uk dance",0.598,0.527,10.0,-8.659,0.0,0.0415,0.129,0.0,0.14,0.53,123.943,4.0,,Virgin,"C © 2019 Meduza, under exclusive license to Universal Music GmbH, P ℗ 2019 Meduza, under exclusive license to Universal Music GmbH",981 +982,spotify:track:2sONTfhCCMMWJ70f7dbriR,Hopelessly Devoted To You - From “Grease” Soundtrack,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:5ySc9ZwyyZlFGIHuEij8oz,Gold,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2005-01-01,https://i.scdn.co/image/ab67616d0000b27325b4d20048c691c41dc38bba,1,15,185026,https://p.scdn.co/mp3-preview/6280980219425f18098ed42c3ea8a9fe0cea78d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057890003,spotify:user:bradnumber1,2021-08-08T09:27:55Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.375,0.481,9.0,-7.67,1.0,0.0278,0.205,0.00144,0.135,0.38,110.368,3.0,,Universal Music Group,"C © 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc.",982 +983,spotify:track:6WIxgIAMT9zYRLfIFcDYxd,I'll Put You Together Again,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,spotify:album:2MdCe2CS9EcdJ9V20TKzxo,Every 1's a Winner,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,1978,https://i.scdn.co/image/ab67616d0000b273b179d40cdaa53d103df29e28,1,13,232920,https://p.scdn.co/mp3-preview/88551445d1c9e674f617f10c9d8fc2c2f4e0bf64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAYE7800086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.435,0.298,7.0,-8.688,1.0,0.0268,0.917,0.0158,0.124,0.261,104.877,3.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",983 +984,spotify:track:0E29BKKGCJHcb7b9oIWgGB,Calling All Angels,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:3gQ2rh7TxfCgpfj40Eo8D1,My Private Nation,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2003-06-03,https://i.scdn.co/image/ab67616d0000b2737ee0e0e83730306ce40970ad,1,1,242200,https://p.scdn.co/mp3-preview/dde28b43fc78fa6fdf11535f2d9f29251e418acc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USSM10304440,spotify:user:bradnumber1,2021-11-17T22:20:31Z,"dance pop,neo mellow,pop,pop rock",0.454,0.839,3.0,-5.368,1.0,0.0441,0.0746,0.0,0.279,0.529,166.166,4.0,,Columbia,"P (P) 2003 Columbia Records, a division of Sony Music Entertainment",984 +985,spotify:track:0RiRZpuVRbi7oqRdSMwhQY,Sunflower - Spider-Man: Into the Spider-Verse,"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:1zNqQNIdeOUZHb8zbZRFMX","Post Malone, Swae Lee",spotify:album:4g1ZRSobMefqF6nelkgibi,Hollywood's Bleeding,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2019-09-06,https://i.scdn.co/image/ab67616d0000b2739478c87599550dd73bfa7e02,1,12,157560,https://p.scdn.co/mp3-preview/3c0788c6aba94192edcb497d9a02075bf76c5400?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USUM71814888,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,melodic rap,rap,trap",0.755,0.522,2.0,-4.368,1.0,0.0575,0.533,0.0,0.0685,0.925,89.96,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",985 +986,spotify:track:0smyCrJiibi2uwCiq5R1vj,Save Tonight,spotify:artist:3ngKsDXZAssmljeXCvEgOe,Eagle-Eye Cherry,spotify:album:0zS5fFa2I679lrdhSPAyIe,Desireless,spotify:artist:3ngKsDXZAssmljeXCvEgOe,Eagle-Eye Cherry,1998-01-01,https://i.scdn.co/image/ab67616d0000b27395127975447a26eb7e31668b,1,1,242733,https://p.scdn.co/mp3-preview/92ede2b4283630cbfd4cbf508b22cc248ffc740f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBAKW9800044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.547,0.707,0.0,-8.74,1.0,0.0338,8.14e-05,0.000149,0.285,0.654,119.576,4.0,,Polydor Records,"C © 1998 Polydor Ltd. (UK), P ℗ 1998 Superstudio/Diesel Music AB",986 +987,spotify:track:7FNcb05eBgScWaEEvJRKiw,Lights On (feat. Ms Dynamite) - Single Mix,"spotify:artist:5EUdiv20t58GCS09VMKk7M, spotify:artist:42qLC3FgtazA9AvaIoiP62","Katy B, Ms. Dynamite",spotify:album:6KV9kNSuC1mmzrXKx6p6vV,On A Mission,spotify:artist:5EUdiv20t58GCS09VMKk7M,Katy B,2011-04-04,https://i.scdn.co/image/ab67616d0000b2732ff1f1e4e1a2777c6ccaa588,1,9,204026,https://p.scdn.co/mp3-preview/028205e16842590a8f3439dce0ceddbc838e80c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBARL1001491,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,uk funky,uk garage,uk funky,uk garage",0.852,0.858,5.0,-3.759,0.0,0.0795,0.113,0.0,0.224,0.824,127.983,4.0,,Rinse / Columbia,"P All tracks (P) 2011 Ammunition Promotions Limited under exclusive licence to Sony Music Entertainment UK Limited, except track 9 - 'Lights On' 2010 Ammunition Promotions Limited under exclusive licence to Sony Music Entertainment UK Limited",987 +988,spotify:track:072ll8KhlLdt5aIGeyftDO,Same Old Love,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:6e8zAQUevvIBtne8748xVU,Same Old Love,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2015-01-01,https://i.scdn.co/image/ab67616d0000b273d279faec23ceca0ca378088f,1,1,229013,https://p.scdn.co/mp3-preview/59629fb443149d25a6577e7990cc8fd790352f90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71510437,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.672,0.573,11.0,-3.973,0.0,0.0307,0.021,0.0,0.147,0.428,98.043,4.0,,Universal Music Ltd.,"C (C) 2015 Interscope Records, P (P) 2015 Interscope Records",988 +989,spotify:track:71CgN6BVkaXFNB5xPnvY9o,Que Sera,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,spotify:album:4kc6vrABh87kQ4onFSDPLq,Live By The Words,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,2012,https://i.scdn.co/image/ab67616d0000b2732ea0791fdc5445eb5a9cd4be,1,2,212800,https://p.scdn.co/mp3-preview/4237abb7e6c676998de620a39df190dc80d64fd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUBM01400097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.582,0.796,8.0,-4.017,1.0,0.0563,0.0253,0.0,0.211,0.547,100.02,4.0,,Sony Music Entertainment,P All tracks (P) 2014 Sony Music Entertainment Australia Pty Ltd. except tracks 6 & 8 (P) 2012 & track 10 (P) 2013 Sony Music Entertainment Australia Pty Ltd.,989 +990,spotify:track:6HSXNV0b4M4cLJ7ljgVVeh,Knockin' On Heaven's Door,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,spotify:album:2Pj2kZM5XpyIeyFBTAVulL,Pat Garrett & Billy The Kid (Soundtrack From The Motion Picture),spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,1973-07-13,https://i.scdn.co/image/ab67616d0000b2736c86683d20c72e3874c11c6d,1,7,149880,https://p.scdn.co/mp3-preview/b1fb2e0d90764724242501e5a0c3c2393698d499?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USSM11304547,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,rock,roots rock,singer-songwriter",0.513,0.396,7.0,-13.061,1.0,0.0299,0.251,0.177,0.11,0.229,140.208,4.0,,Columbia/Legacy,"P (P) 1973 Columbia Records, a division of Sony Music Entertainment",990 +991,spotify:track:3Id8znxIUtTYNhZsak8Unb,Cindy's Birthday,spotify:artist:48QdHdRanCXdBt6lygsDES,Johnny Crawford,spotify:album:3VNpShZrCWsR61aBORHSgh,A Young Man's Fancy,spotify:artist:48QdHdRanCXdBt6lygsDES,Johnny Crawford,2006-01-24,https://i.scdn.co/image/ab67616d0000b273f12b539fbf41584b74393114,1,1,128453,https://p.scdn.co/mp3-preview/68da133c552e30acb6bfad3aff3afb1991a2b625?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USRH10551371,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.61,0.316,7.0,-12.6,1.0,0.0335,0.755,0.000218,0.121,0.708,110.0,4.0,,Rhino,"C © 2006 Rhino Entertainment, P ℗ 2006 Rhino Entertainment",991 +992,spotify:track:6h6Ccbgvhibl2XQ0SQNR70,Say What You Want,spotify:artist:5JsdVATHNPE0XdMFMRoSuf,Texas,spotify:album:6BVlA2NLGg3OKYemGJgo2v,White On Blonde,spotify:artist:5JsdVATHNPE0XdMFMRoSuf,Texas,1997-03-02,https://i.scdn.co/image/ab67616d0000b273713f955ef0222d3558682084,1,2,233866,https://p.scdn.co/mp3-preview/8983ed38661e164a1a96be5d6f7e1c899d37221b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBF089607481,spotify:user:bradnumber1,2023-05-18T09:30:48Z,"new romantic,new wave pop,scottish rock",0.633,0.841,4.0,-5.932,1.0,0.0706,0.2,0.0,0.396,0.803,95.894,4.0,,[PIAS] Recordings Catalogue,"C 1997 [PIAS] Recordings, P 1997 [PIAS] Recordings",992 +993,spotify:track:6skcBKtH4WObFyasu9w4Ie,Like This (feat. Eve),"spotify:artist:3AuMNF8rQAKOzjYppFNAoB, spotify:artist:4d3yvTptO48nOYTPBcPFZC","Kelly Rowland, Eve",spotify:album:11lAZtJRp076xsMWQ0Eiun,Ms. Kelly,spotify:artist:3AuMNF8rQAKOzjYppFNAoB,Kelly Rowland,2006,https://i.scdn.co/image/ab67616d0000b2731e566d1543e956dd878bb0a8,1,1,215853,https://p.scdn.co/mp3-preview/73983243f25324ab8ec7d6a70ef4883ab42a1c62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USSM10700599,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dance pop,hip pop,r&b,urban contemporary,contemporary r&b,dance pop,hip pop,philly rap,r&b,urban contemporary",0.672,0.724,1.0,-5.972,1.0,0.299,0.00225,0.0,0.0481,0.521,178.103,4.0,,Music World Music/Columbia,"P (P) 2006, 2007 SONY BMG MUSIC ENTERTAINMENT",993 +994,spotify:track:3v4yDypfo94dachEvmjQdj,Miss Independent,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:4txPGNHsUtjgBickDa5mOe,Thankful,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2003-09-29,https://i.scdn.co/image/ab67616d0000b273ef290d6f387d2abce08aecb2,1,2,214773,https://p.scdn.co/mp3-preview/afde09468fe8353b77e27474c903b4b58ae87aa4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USRC10300799,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.656,0.615,11.0,-6.359,0.0,0.137,0.0769,0.000415,0.0706,0.592,175.943,4.0,,RCA Records Label,P (P) 2003 19 Recordings Limited,994 +995,spotify:track:0BmT0BVnYYggf7V4NCtx2B,For Your Entertainment,spotify:artist:6prmLEyn4LfHlD9NnXWlf7,Adam Lambert,spotify:album:0cUNjl7p6LYZJkKXJWzqP0,For Your Entertainment,spotify:artist:6prmLEyn4LfHlD9NnXWlf7,Adam Lambert,2009-11-23,https://i.scdn.co/image/ab67616d0000b273fe0d9870d6d8e18c3a00c658,1,2,215160,https://p.scdn.co/mp3-preview/63734948125ba859b260a3e9f8687d4d75dd6f8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBCTA0900399,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,idol,pop,post-teen pop",0.654,0.872,1.0,-3.824,1.0,0.11,0.0411,0.0,0.0808,0.612,130.023,4.0,,RCA Records Label,"P (P) 2009 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",995 +996,spotify:track:68rcszAg5pbVaXVvR7LFNh,One Day / Reckoning Song (Wankelmut Remix) - Radio Edit,"spotify:artist:7t51dSX8ZkKC7VoKRd0lME, spotify:artist:5abaNg0SJPEF7EST0RjY9F, spotify:artist:01e2lCvLZ4fLUIRy68nptH","Asaf Avidan, The Mojos, Wankelmut",spotify:album:6ZtATnsRYU8ZP4JD0dH0fs,One Day / Reckoning Song (Wankelmut Remix),"spotify:artist:7t51dSX8ZkKC7VoKRd0lME, spotify:artist:5abaNg0SJPEF7EST0RjY9F, spotify:artist:01e2lCvLZ4fLUIRy68nptH","Asaf Avidan, The Mojos, Wankelmut",2012-08-03,https://i.scdn.co/image/ab67616d0000b2738546b5bb49e3e4c80cf6b6b0,1,1,215186,https://p.scdn.co/mp3-preview/5f9da78704e738812fe9c2c51c713697721cfd7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,DEQ321200132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"israeli pop,israeli rock,deep euro house",0.826,0.668,3.0,-6.329,0.0,0.0571,0.223,6.92e-05,0.167,0.534,118.99,4.0,,10879,"C (C) 2012 FOUR MUSIC PRODUCTIONS GmbH a Sony Music Entertainment company, P (P) 2012 Columbia Berlin distributed by The Orchard, a Sony Music Entertainment company",996 +997,spotify:track:30xa49phgSAa0MCAcH6O44,What If I,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:7m2Gzfu5nMgHTiMbNDwPr7,Title (Expanded Edition),spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2015-01-09,https://i.scdn.co/image/ab67616d0000b2730753a386572b590eb0728227,1,10,198493,https://p.scdn.co/mp3-preview/fe5f748f5f8cc1bfba7adc856a61a3d42a9cc979?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USSM11408377,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop",0.336,0.515,3.0,-8.404,1.0,0.0438,0.447,0.0,0.338,0.27,185.454,3.0,,Epic,"P (P) 2015 Epic Records, a division of Sony Music Entertainment",997 +998,spotify:track:4R6TWBDqFeJBQnBtha4zDh,If I Go,spotify:artist:66TrUkUZ3RM29dqeDQRgyA,Ella Eyre,spotify:album:3LfVVimEZr5YefjHZvlDzP,Feline (Deluxe),spotify:artist:66TrUkUZ3RM29dqeDQRgyA,Ella Eyre,2015-08-14,https://i.scdn.co/image/ab67616d0000b2735fe7ef6f2a7ac1c43d00d13d,1,2,183266,https://p.scdn.co/mp3-preview/5afa8e469084a7b17ae4d38b941d2f8463770aa9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBUM71401947,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,talent show,uk dance,uk pop",0.535,0.786,7.0,-4.152,0.0,0.043,0.0117,0.0,0.177,0.568,147.885,4.0,,Virgin Records Ltd,"C © 2015 Virgin Records Limited, P ℗ 2015 Virgin Records Limited",998 +999,spotify:track:47oS7xB31QQUyPCgHpM3VZ,Canned Heat,spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,spotify:album:17XrgcYNbKz2oTNm6kwVwv,Synkronized,spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,1999-06-08,https://i.scdn.co/image/ab67616d0000b2734ccb64f022a53d3e8ec84a20,1,1,331760,https://p.scdn.co/mp3-preview/17bed183741cd92a306cc7b129514b972ba54c89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBBBL9902068,spotify:user:bradnumber1,2024-05-07T06:49:26Z,dance pop,0.7,0.865,9.0,-5.827,0.0,0.133,0.0136,7.71e-05,0.0718,0.78,128.043,4.0,,Sony Music CG,P (P) 2021 Sony Music Entertainment UK Limited,999 +1000,spotify:track:5XQ3w5zARt0bheJGH3OdA0,What You Need,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:5iRDO2cnFmb95rjzpiVJrT,The Very Best,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b27361720ec9790c8d7a64698ac7,1,16,214386,https://p.scdn.co/mp3-preview/2ef82493aadf9c0f85f8107b6f67c3a65bfc357e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMX8500010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.661,0.899,11.0,-4.586,1.0,0.106,0.0421,0.00494,0.155,0.491,115.941,4.0,,Universal Music Group,"C © 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",1000 +1001,spotify:track:2ZOTtG7v1OrSNs6EINIGb4,Black Betty,spotify:artist:6FITmSxIMsk6TfulFiCIIz,Ram Jam,spotify:album:6s1bwzTzWK3u9I4YPjp3lr,The Very Best Of Ram Jam,spotify:artist:6FITmSxIMsk6TfulFiCIIz,Ram Jam,1990-02-27,https://i.scdn.co/image/ab67616d0000b273ed4989dcb7cfb1887be9d250,1,1,237893,https://p.scdn.co/mp3-preview/b493836316172223fb5b3fac80e2da4b978b0314?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM10105935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,southern rock,0.465,0.865,11.0,-9.573,0.0,0.098,0.018,0.00135,0.0769,0.677,117.528,4.0,,Epic/Legacy,P (P) 1990 SONY BMG MUSIC ENTERTAINMENT,1001 +1002,spotify:track:0qeKzbUsW0V4ZWRJrHNiD3,Bad Boys (Theme from COPS),spotify:artist:5os0Ltvz8Q8BvXOPOd1frx,Inner Circle,spotify:album:0zLd8jpRt4m6FWCu81Fb9n,Blazzin' Fire,spotify:artist:5os0Ltvz8Q8BvXOPOd1frx,Inner Circle,2010-12-14,https://i.scdn.co/image/ab67616d0000b273cd07cdbe4b041324103c0f08,1,1,229374,https://p.scdn.co/mp3-preview/7e6dad378302780e8881509db07e07b4ffc2610d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USA2P1004784,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae,reggae fusion",0.781,0.722,7.0,-8.376,1.0,0.0667,0.236,0.000398,0.077,0.533,87.858,4.0,,DubShot Records/Sound Bwoy Entertainment,"C 2010 DubShot Records/Soundbwoy Entertainment, P 2010 DubShot Records/Soundbwoy Entertainment",1002 +1003,spotify:track:2PsHIonOTmX6bSrzIJSjyS,Nobody Knows,spotify:artist:7uwPrVdjss0FyCCTzpLx5A,The Tony Rich Project,spotify:album:5r6mhWWkCitNZmhiSIYbCT,Words,spotify:artist:7uwPrVdjss0FyCCTzpLx5A,The Tony Rich Project,1996-01-16,https://i.scdn.co/image/ab67616d0000b27391450f3087b074b43772b94e,1,2,306933,https://p.scdn.co/mp3-preview/f4562cab6d86b1b5515dfc0ec9935275ba5926ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USLF20000512,spotify:user:bradnumber1,2021-08-08T09:26:31Z,contemporary r&b,0.64,0.433,5.0,-9.432,1.0,0.0375,0.509,5.16e-06,0.103,0.25,176.088,4.0,,Arista/LaFace Records,P (P) 1996 LaFace Records LLC,1003 +1004,spotify:track:6zSpb8dQRaw0M1dK8PBwQz,Cold Heart - PNAU Remix,"spotify:artist:3PhoLpVuITZKcymswpck5b, spotify:artist:6M2wZ9GZgrQXHCFfjv46we, spotify:artist:6n28c9qs9hNGriNa72b26u","Elton John, Dua Lipa, PNAU",spotify:album:5D8Rdb09BkmHscEGSWAlA6,Cold Heart (PNAU Remix),"spotify:artist:3PhoLpVuITZKcymswpck5b, spotify:artist:6M2wZ9GZgrQXHCFfjv46we, spotify:artist:6n28c9qs9hNGriNa72b26u","Elton John, Dua Lipa, PNAU",2021-08-13,https://i.scdn.co/image/ab67616d0000b2739f5cce8304c42d3a5463fd23,1,1,202735,https://p.scdn.co/mp3-preview/2b3e7aadb75891a4ceccb69d54d60d0fb5178500?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBUM72104705,spotify:user:bradnumber1,2021-11-19T23:17:41Z,"glam rock,mellow gold,piano rock,rock,dance pop,pop,uk pop,alternative dance,aussietronica,australian dance,australian electropop",0.796,0.798,1.0,-6.312,1.0,0.0317,0.034,4.19e-05,0.0952,0.942,116.032,4.0,,EMI,"C © 2021 Mercury Records Limited, P ℗ 2021 Mercury Records Limited",1004 +1005,spotify:track:2oZGpVkUrvh7uDOgXwBliN,Enjoy the Silence - 2006 - Remaster,spotify:artist:762310PdDnwsDxAQxzQkfX,Depeche Mode,spotify:album:6gHRLG5Gbjk3vwtgmadx1g,The Best Of Depeche Mode - Volume One,spotify:artist:762310PdDnwsDxAQxzQkfX,Depeche Mode,2006,https://i.scdn.co/image/ab67616d0000b2736053aba3ff517ecbd80a6d93,1,4,254853,https://p.scdn.co/mp3-preview/52914be143f0dac1fad0f9bf11b079487bbac6f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJH0602198,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,permanent wave,rock,synthpop",0.65,0.777,0.0,-8.1,0.0,0.0272,0.0837,6.32e-05,0.103,0.75,112.93,4.0,,Mute,"C (C) 2006 Venusnote Limited under exclusive licence to Mute Records LimitedThis label copy information is the subject of copyright protection. All rights reserved.(C) Mute Records Limited, P (P) 2006 The copyright in this compilation is owned by Venusnote Limited under exclusive licence to Mute Records Limited",1005 +1006,spotify:track:1OxcIUqVmVYxT6427tbhDW,Fly Away,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,spotify:album:6MCNMOCRsh6nxs7PNzc0zN,5,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,1998-05-12,https://i.scdn.co/image/ab67616d0000b273f1157b7dcd21bae0c2c75d89,1,8,221332,https://p.scdn.co/mp3-preview/5e270afe066326be1f62e4701999df85ca4235af?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USVI29800169,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,rock",0.587,0.872,7.0,-5.066,1.0,0.0484,0.018,0.0,0.622,0.735,159.925,4.0,,Virgin Records,"C © 1999 Virgin Records America, Inc., P ℗ 1999 Virgin Records America, Inc.",1006 +1007,spotify:track:4OL4l0rlwGZUohB1e09BF0,New in Town,spotify:artist:0MoXIHcFwhIWnFgBfdvQ30,Little Boots,spotify:album:1SxlVyf7bCGblH0jQYfL9Z,Hands (Standard DMD),spotify:artist:0MoXIHcFwhIWnFgBfdvQ30,Little Boots,2008-06-08,https://i.scdn.co/image/ab67616d0000b2732e5d8574ecf63ba75fe8268f,1,1,199133,https://p.scdn.co/mp3-preview/51967284228d9b8f83c5807863804dcb6b69e099?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBFFS0900004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,neo-synthpop",0.683,0.743,9.0,-5.775,0.0,0.0369,0.000308,0.517,0.0871,0.531,99.958,4.0,,679 Recordings UK. Ltd.,"C © 2009 679 Recordings Ltd., P ℗ 2009 679 Recordings Ltd.",1007 +1008,spotify:track:7IFuc1WMYFE2OvINz6w5MU,California Blue,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:4EpWWMjlTMRrZi0zLH1SwX,The Ultimate Collection,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2016-10-28,https://i.scdn.co/image/ab67616d0000b2734281735dab01dc1dcca9ae2f,1,14,236040,https://p.scdn.co/mp3-preview/3b852948bc0f4413814ad97ad21109fb66c17d41?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USV128900006,spotify:user:bradnumber1,2022-06-30T00:05:22Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.65,0.627,2.0,-11.797,1.0,0.0271,0.659,8.31e-06,0.384,0.701,105.656,4.0,,Legacy Recordings,P This compilation (P) 2016 Sony Music Entertainment,1008 +1009,spotify:track:10rChmECwPcvTTj4w07hq4,Welcome to My Life,spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,spotify:album:6RSpKXfvVzCqtLi6VySxsU,Still Not Getting Any,spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,2004-10-25,https://i.scdn.co/image/ab67616d0000b2736cb8cbc645eebdfc0ebffa72,1,2,206773,https://p.scdn.co/mp3-preview/be4b0844582e85c419bd57f80abab2d84a333129?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT20402001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop punk,canadian punk,canadian rock,modern rock,neon pop punk,pop punk,pop rock",0.421,0.858,1.0,-4.535,1.0,0.0963,0.0134,0.0,0.067,0.491,173.255,4.0,,143/Atlantic Entertainment,"C © 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States excluding Australia and New Zealand., P ℗ 2004 Lava Records LLC for the United States and WEA International Inc. for the world outside of the United States",1009 +1010,spotify:track:2cdzutoqFK6sfW6exi7oXh,Return to Sender,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0QVoYzGd1p8Z3ohEaM0lsc,Elvis 30 #1 Hits,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2002-09-24,https://i.scdn.co/image/ab67616d0000b273a0b8a1ce10fddbba6879262e,1,23,128306,https://p.scdn.co/mp3-preview/21c7009a5b9826912bc8993ecec959141a307bd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USRC10200077,spotify:user:bradnumber1,2022-01-12T23:14:42Z,"rock-and-roll,rockabilly",0.838,0.617,8.0,-6.502,1.0,0.0429,0.575,0.0,0.0785,0.971,131.719,4.0,,RCA Records Label,P This Compilation (P) 2002 Sony Music Entertainment,1010 +1011,spotify:track:2Y74aRKMI7soFFrQYC088t,Do You Want My Love,spotify:artist:3ioHf138TiMxYRCWmC8yJX,CoCo Lee,spotify:album:2nJQyqtmt5VjiiqFA68jER,Just No Other Way,spotify:artist:3ioHf138TiMxYRCWmC8yJX,CoCo Lee,1999-11-04,https://i.scdn.co/image/ab67616d0000b273394526a2e1a4394442b4e8e6,1,1,275360,https://p.scdn.co/mp3-preview/7f9d13c800f6d7a6507d054c996efc9f600aad43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,NLB639970002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mandopop,taiwan pop",0.699,0.949,4.0,-3.278,0.0,0.128,0.0696,0.0,0.278,0.722,104.003,4.0,,Epic,P 1999 Sony Music Entertainment (Holland) B.V.,1011 +1012,spotify:track:7BYyb7UHvt6XG2Tb4dbvwg,Shadow Boxer,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:4GS4lOodhAiD4RiVSeRusH,40 Years of Rock - Vol. 1: 40 Greatest Studio Hits,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,2014-05-02,https://i.scdn.co/image/ab67616d0000b27333076ba0dca338af801d7d4b,1,13,161837,https://p.scdn.co/mp3-preview/fc554fc3cf6ba9a03af305ba04614c3ebcbf19e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07900003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.281,0.853,7.0,-5.518,1.0,0.0319,2.23e-05,4.78e-06,0.216,0.739,157.322,4.0,,Bloodlines,"C 2014 Bloodlines, P 2014 Bloodlines",1012 +1013,spotify:track:3CY7wjLc1CaAIrp9buEWhG,Simple Kind Of Life,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,spotify:album:6O35YawqZFdtOhL9smKmh7,Return Of Saturn,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,2000,https://i.scdn.co/image/ab67616d0000b273a1465b7e3e52023a873124d7,1,2,256933,https://p.scdn.co/mp3-preview/ee02176407102e741080d55f7fc1666d552450a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USIR10000094,spotify:user:bradnumber1,2022-01-12T23:24:41Z,"dance pop,dance rock,permanent wave,pop rock,rock",0.576,0.849,0.0,-5.199,1.0,0.0355,0.0678,0.0,0.278,0.482,119.999,4.0,,Interscope,"C © 2010 Interscope Records, P ℗ 2010 Interscope Records",1013 +1014,spotify:track:0WVTQp3SOCuMr08jh1jweV,Bring It On Home to Me,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,spotify:album:3Seie4YIVLWtPw2hQrouNY,The Man Who Invented Soul,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,2000-09-26,https://i.scdn.co/image/ab67616d0000b273cdea00c6905f588e1f72ccad,3,9,162533,https://p.scdn.co/mp3-preview/1f8afae400753d3627febb59a66c4187ff20b736?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRC16206739,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,soul,vocal jazz",0.523,0.402,0.0,-8.233,1.0,0.0305,0.778,0.0,0.432,0.675,70.863,4.0,,RCA Records Label,"P (P) Compilation 2000 RCA Records, a division of Sony Music Entertainment",1014 +1015,spotify:track:2zoNNEAyPK2OGDfajardlY,Rushing Back,"spotify:artist:6nxWCVXbOlEVRexSbLsTer, spotify:artist:5ujrA1eZLDHR7yQ6FZa2qA","Flume, Vera Blue",spotify:album:4d2YOjyPDopVhOkksaALJj,Rushing Back,spotify:artist:6nxWCVXbOlEVRexSbLsTer,Flume,2019-09-27,https://i.scdn.co/image/ab67616d0000b273683d659e308221da35d3c0ca,1,1,231663,https://p.scdn.co/mp3-preview/bcd9674686014037831c02fb9f47f837737e372d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,AUFF01900128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,australian indie,downtempo,edm,indietronica,australian indie,australian pop",0.574,0.612,0.0,-4.741,1.0,0.0781,0.357,0.0,0.158,0.368,136.046,3.0,,Future Classic,"C 2019 Future Classic, P 2019 Future Classic",1015 +1016,spotify:track:7oz5kTUYEeLV0sMV3dYwhO,Lift,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:314DEYqtr3bYNvSPtZpVFE,What Matters The Most,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2009-05-01,https://i.scdn.co/image/ab67616d0000b273d81b8b0252c200994b2cfd0a,1,4,236120,https://p.scdn.co/mp3-preview/fd9f094c40ee8dddc71929950cb7ee0b6baa828a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUBM00599384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,australian pop,australian rock",0.49,0.83,3.0,-3.869,1.0,0.0317,7.26e-05,0.0,0.0717,0.38,93.019,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2009 Sony Music Entertainment Australia Pty Ltd.,1016 +1017,spotify:track:1piKQrJZ18Mrx7Zen6HrpB,Please Don't Leave Me,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2MqP4akeOQpLkq7jpQqlHT,Funhouse: The Tour Edition,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2008,https://i.scdn.co/image/ab67616d0000b273faef39535383dcf65ab03f02,1,5,231560,https://p.scdn.co/mp3-preview/838581cc1d837f1b316edd3f6ba5f72c597414ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF20800182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.59,0.841,6.0,-4.503,1.0,0.0376,0.0091,0.0,0.266,0.75,138.02,4.0,,LaFace Records,"P (P) 2008, 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",1017 +1018,spotify:track:5zz33Ev3mwKnpXI9IZ3a8K,Run This Town,"spotify:artist:3nFkdlSjzX9mRTtwJOzDYB, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:5K4W6rqBFWDnAN6FQUkS6x","JAY-Z, Rihanna, Kanye West",spotify:album:1g3Ek21j6qDWt2CtravhrX,The Blueprint 3,spotify:artist:3nFkdlSjzX9mRTtwJOzDYB,JAY-Z,2009-09-08,https://i.scdn.co/image/ab67616d0000b2734b328c297d151d432c7b1aa3,1,4,267506,https://p.scdn.co/mp3-preview/52fc5b531dfde9b631cc50d940e2c51c048ffb96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USJZ10900011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,rap,barbadian pop,pop,urban contemporary,chicago rap,hip hop,rap",0.657,0.92,1.0,-1.836,1.0,0.275,0.267,0.0,0.365,0.457,86.771,4.0,,Roc Nation / Jay-Z,"C © 2009 S. Carter Enterprises, LLC., Distributed by Roc Nation, P ℗ 2009 S. Carter Enterprises, LLC., Distributed by Roc Nation",1018 +1019,spotify:track:2whjNFHvoyxPPIioy8oO87,One Word,spotify:artist:2DaDoR6WXStRctDQDWWQpI,Baby Animals,spotify:album:1qD1JGw8Q5WKBW4fsgHFYh,Baby Animals / Shaved & Dangerous,spotify:artist:2DaDoR6WXStRctDQDWWQpI,Baby Animals,2008-01-19,https://i.scdn.co/image/ab67616d0000b27397fc8034722824df1f51b23f,1,6,235880,https://p.scdn.co/mp3-preview/42fc592784ceb8b21ac15a7b6fd8b75a43b49aad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00743450,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.536,0.876,1.0,-2.95,1.0,0.0375,0.000403,0.000428,0.0787,0.568,112.984,4.0,,Bloodlines,"C 2007 (P) 2007 Imago Recording Company. Under exclusive license to Liberation Music for Australia And New Zealand, P 2007 (P) 2007 Imago Recording Company. Under exclusive license to Liberation Music for Australia And New Zealand",1019 +1020,spotify:track:0cHkeSotcFG5tExiaqutKr,Way Back Home - Original,spotify:artist:6fXEqmGQEt6ONuqVmwrN46,Bag Raiders,spotify:album:6zVi5jNALX1GeD3MxiFmqo,Bag Raiders (Deluxe),spotify:artist:6fXEqmGQEt6ONuqVmwrN46,Bag Raiders,2011-01-01,https://i.scdn.co/image/ab67616d0000b27350b5922bdf87ba4213b25234,1,11,256613,https://p.scdn.co/mp3-preview/3d848da1f9a137f99617a22dc077ea044cd9e677?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUUM71001525,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,indietronica,nu disco",0.543,0.777,11.0,-5.772,0.0,0.0837,0.0965,0.0089,0.161,0.445,126.0,4.0,,Modular,"C © 2011 Modular Recordings, P ℗ 2011 Modular Recordings",1020 +1021,spotify:track:6GC6lcKgjCdsdIz5OiCUw5,Pon de Replay,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:2Pr6XAzfBObBUTgiSXmr3n,Music Of The Sun,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2005-08-29,https://i.scdn.co/image/ab67616d0000b2734a8c869f3bd4d0d4519a8c50,1,1,246960,https://p.scdn.co/mp3-preview/1d6c8df71869eb2b4dd469061d7b7f80ba101087?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20500331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.779,0.64,7.0,-8.415,1.0,0.159,0.000155,0.00077,0.101,0.498,99.019,4.0,,Universal Music Group,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",1021 +1022,spotify:track:5oLyUnHXzkgBzcEr73hiaC,Same Love (feat. Mary Lambert),"spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:5Z2NUZiY3FA00HKu5WTMhA","Macklemore & Ryan Lewis, Mary Lambert",spotify:album:0CoiTAUBiO70lic9p9Lboq,The Heist (Deluxe Edition),spotify:artist:5BcAKTbp20cv7tC5VqPFoC,Macklemore & Ryan Lewis,2012-10-09,https://i.scdn.co/image/ab67616d0000b2730dff053a2ffb550d25184999,1,5,320034,https://p.scdn.co/mp3-preview/1aadd3243ddfba29bc916b776ff12a874b0d54df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GMM881200005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop,neo mellow",0.56,0.475,8.0,-9.05,1.0,0.173,0.718,2.18e-05,0.0994,0.308,84.899,4.0,,Macklemore,"C © 2012 Macklemore, LLC., P ℗ 2012 Macklemore, LLC.",1022 +1023,spotify:track:5D2NYyN0w00pzJbUGTLOwx,Good Days Bad Days,spotify:artist:0LbLWjaweRbO4FDKYlbfNt,Kaiser Chiefs,spotify:album:3b2BSh5Tj5ZzS4EbHGbDYM,Off with Their Heads,spotify:artist:0LbLWjaweRbO4FDKYlbfNt,Kaiser Chiefs,2008-10-20,https://i.scdn.co/image/ab67616d0000b27388381e4837d636c3c2bce2cd,1,6,173813,https://p.scdn.co/mp3-preview/c5d65eaef67c18b7dcf530fb5874acbd7dd0929b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDVX0800081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,modern rock,0.621,0.884,4.0,-5.534,1.0,0.0522,0.000143,7.38e-06,0.113,0.798,112.053,4.0,,B Unique UK Ltd,"C 2008 Hipgnosis Songs Fund Limited, P 2008 Hipgnosis Songs Fund Limited",1023 +1024,spotify:track:0lFsdfJay6AM4m23hJYGEG,The Buzz,"spotify:artist:3fmMaLC5jjf2N4EC2kTx0u, spotify:artist:6JW55AQgf9M9SZgzZou2NQ, spotify:artist:0MH2SnPBynNlz9HRqC84ZK","Hermitude, Mataya, Young Tapz",spotify:album:4qWHwJCpjIOPTwYgwjOwTO,Dark Night Sweet Light,spotify:artist:3fmMaLC5jjf2N4EC2kTx0u,Hermitude,2015-05-15,https://i.scdn.co/image/ab67616d0000b273502f674f67727ebc97b57b75,1,7,222234,https://p.scdn.co/mp3-preview/93101aece58a16482542ed57176b12efc7f9e257?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEF01500827,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian indie,downtempo,escape room",0.557,0.581,0.0,-6.481,0.0,0.239,0.338,0.00502,0.288,0.46,141.082,4.0,,Elefant Traks,"C 2015 Elefant Traks, P 2015 Elefant Traks",1024 +1025,spotify:track:4nBzre6D0UrQFj1s8z45e1,To Be A Lover,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,spotify:album:6oXV5HeLjIKQJE6iecEIGc,Whiplash Smile,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,1986-10-20,https://i.scdn.co/image/ab67616d0000b27334721ab182245de5a6b80ca7,1,2,232386,https://p.scdn.co/mp3-preview/f81e8d5b4133cd0d93e72542227fd1887d989087?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USCH38800025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,hard rock,new romantic,new wave,new wave pop,rock,soft rock",0.562,0.767,5.0,-8.025,1.0,0.0474,0.234,0.00817,0.0828,0.526,184.363,4.0,,CAPITOL CATALOG MKT (C92),"C © 2017 Capitol Records, LLC, P ℗ 2017 Capitol Records, LLC",1025 +1026,spotify:track:3O2BmoiQEioFx43ta2etW8,Kick,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:303WS9fT5qqGo9KlnImdZG,Kick 25 (Deluxe Edition),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2012-01-01,https://i.scdn.co/image/ab67616d0000b2735999577a1d188f37b2a6a60b,1,10,194280,https://p.scdn.co/mp3-preview/c0469c5038e5a1b016fd14dd9c66c53743f80fa6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF050190188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.511,0.861,4.0,-5.109,1.0,0.0482,0.00188,0.139,0.352,0.93,156.651,4.0,,Universal Music Group,"C © 2012 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2012 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",1026 +1027,spotify:track:5OQGeJ1ceykovrykZsGhqL,Breathless,spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,spotify:album:3F8v4omWXxDHrqntA83WJY,In Blue,spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,2000-07-17,https://i.scdn.co/image/ab67616d0000b2735320a1b471ae75632ef787e5,1,1,207506,https://p.scdn.co/mp3-preview/218e1c5e032355f5b2afd0f40ec24c0d05f3ccb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USAT20001907,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,europop,pop rock",0.607,0.82,11.0,-7.754,1.0,0.0597,0.0541,6.8e-05,0.269,0.768,126.988,4.0,,Atlantic Records,"C © 2000 143 Records/Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Lyrics reprinted by permission. All Rights REserved. Printed in U.S.A., P ℗ 2000 143 Records/Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved. Unauthorized duplication is a violation of applicable laws. Made in U.S.A. by WEA Maufacturing Inc. A Time Warner Company. 83352-2",1027 +1028,spotify:track:1eUtfbmI6Qq7Oj6okQ2ktT,Scarborough Fair / Canticle,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,spotify:album:4Em5W5HgYEvhpc2elrpKES,Greatest Hits,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,1972-06-14,https://i.scdn.co/image/ab67616d0000b2739a8a66a79fbf93928f897c9b,1,7,190093,https://p.scdn.co/mp3-preview/bcacdabc08c5e41787f1f8589572a3ed37c0f048?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM16600723,spotify:user:bradnumber1,2022-09-25T11:33:18Z,"classic rock,folk,folk rock,melancholia,mellow gold,rock,soft rock",0.356,0.261,2.0,-14.963,1.0,0.0315,0.689,0.0,0.112,0.279,128.551,3.0,,Legacy Recordings,"P (P) 1972 Columbia Records, a division of Sony Music Entertainment",1028 +1029,spotify:track:0Q0IVlqMV64kNLlwjPj0Hl,Killing Me Softly With His Song,"spotify:artist:2WKdxPFRD7IqZvlIAvhMgY, spotify:artist:2Mu5NfyYm8n5iTomuKAEHl","Fugees, Ms. Lauryn Hill",spotify:album:18XFe4CPBgVezXkxZP6rTb,The Score (Expanded Edition),"spotify:artist:2WKdxPFRD7IqZvlIAvhMgY, spotify:artist:2Mu5NfyYm8n5iTomuKAEHl, spotify:artist:7aBzpmFXB4WWpPl2F7RjBe","Fugees, Ms. Lauryn Hill, Wyclef Jean",1996-02-13,https://i.scdn.co/image/ab67616d0000b2735b7865be7f7fcc05faec6137,1,8,298666,https://p.scdn.co/mp3-preview/7a931688bc452843a89fbd4d83fe2986a95c182e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,76,USSM19600055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hip hop,neo soul,new jersey rap,alternative r&b,conscious hip hop,hip hop,neo soul,new jersey rap,r&b",0.765,0.289,4.0,-17.125,0.0,0.147,0.0268,1.77e-06,0.562,0.501,92.413,4.0,,Columbia,"P (P) 1996 Columbia Records, a division of Sony Music Entertainment",1029 +1030,spotify:track:23oxJmDc1V9uLUSmN2LIvx,Ocean Avenue,spotify:artist:3zxKH0qp3nBCuPZCZT5Vaf,Yellowcard,spotify:album:24IBCzEJlHBI0ioxlSuSPA,Ocean Avenue,spotify:artist:3zxKH0qp3nBCuPZCZT5Vaf,Yellowcard,2003-01-01,https://i.scdn.co/image/ab67616d0000b273d1fd8f264564d9eef7617a45,1,3,198266,https://p.scdn.co/mp3-preview/a6f4ef75a4d5fcb7211f978ba900ab46171793da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USCA20300233,spotify:user:bradnumber1,2023-07-07T00:43:17Z,"alternative metal,pop punk,post-grunge,socal pop punk",0.486,0.904,6.0,-3.751,0.0,0.0638,3.43e-05,2.83e-05,0.0947,0.786,173.734,4.0,,Capitol Records,"C © 2003 Capitol Records Inc., P ℗ 2003 Capitol Records Inc.",1030 +1031,spotify:track:1mCsF9Tw4AkIZOjvZbZZdT,Break My Stride,spotify:artist:3bmFPbLMiLxtR9tFrTcKcP,Matthew Wilder,spotify:album:2coqGqbnSCAy740mClWesA,I Don't Speak The Language,spotify:artist:3bmFPbLMiLxtR9tFrTcKcP,Matthew Wilder,1983-03-19,https://i.scdn.co/image/ab67616d0000b2739824c6e084b02d24b2e22e94,1,1,184480,https://p.scdn.co/mp3-preview/a6f4fb656706819a5a6baf3cf76735c760ab0650?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM18300576,spotify:user:bradnumber1,2022-08-31T00:11:56Z,new wave pop,0.917,0.588,10.0,-11.047,1.0,0.0607,0.195,0.0,0.0914,0.828,110.077,4.0,,Legacy Recordings,P (P) 1983 Sony Music Entertainment,1031 +1032,spotify:track:5yMnj6Shf9diZ3wScLL7rk,Take Me To Your Heart - Remastered Version,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",spotify:album:1tpBcNFC8Wxy4Ci3woWwTx,In The Garden,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",1981-10-16,https://i.scdn.co/image/ab67616d0000b273087cb0ddd6be76929baa941f,1,3,213373,https://p.scdn.co/mp3-preview/7ddcd1664c06eddc6fa2b38d5b2e2caf00cdf42e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,GBARL0300571,spotify:user:bradnumber1,2022-01-12T23:06:30Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard",0.63,0.626,5.0,-8.416,0.0,0.0257,0.0171,0.0334,0.123,0.82,132.648,4.0,,RCA Records Label,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,1032 +1033,spotify:track:3xqF04FdMK7gpIPG3SPFpY,It's Time,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:1vAEF8F0HoRFGiYOEeJXHW,Night Visions (Deluxe),spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273dee648abe19dd6e10902c4ae,1,3,237986,https://p.scdn.co/mp3-preview/390931351d05dfaf8a423f0981d1dc754f02a353?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71200987,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.657,0.885,2.0,-4.695,1.0,0.0344,0.0168,0.0,0.147,0.869,105.011,4.0,,Universal Music Group,"C © 2013 KIDinaKORNER/Interscope Records, P ℗ 2013 KIDinaKORNER/Interscope Records",1033 +1034,spotify:track:71IEKZtnuNR9W0Sl2CsvZU,34+35,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:3BSzygCIET0gzTTIs7iB3y,Positions,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2020-10-30,https://i.scdn.co/image/ab67616d0000b2736484dfce3cc12e68d8aa2e55,1,2,173710,https://p.scdn.co/mp3-preview/1819af1e96b22547995c9124bba9de4e271d87d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USUM72020424,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.822,0.577,5.0,-6.449,1.0,0.0693,0.264,0.0,0.265,0.496,110.005,4.0,,Republic Records,"C © 2020 Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Republic Records, a division of UMG Recordings, Inc.",1034 +1035,spotify:track:1cNpxHxZHmZDG8JT981yHf,Days Like This,spotify:artist:4ETXyV9H1p2P1XYgXXTjiO,Busby Marou,spotify:album:2ENxN89jSYgp7Yh9rPX133,Days Like This,spotify:artist:4ETXyV9H1p2P1XYgXXTjiO,Busby Marou,2021-08-20,https://i.scdn.co/image/ab67616d0000b27350d3eea7a647ea8d71997fd1,1,1,186755,https://p.scdn.co/mp3-preview/45b935592e2e499565be21f212b9b193cb3c9922?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUBM02100259,spotify:user:bradnumber1,2021-11-20T11:31:28Z,australian indigenous music,0.667,0.704,7.0,-5.393,1.0,0.0382,0.511,0.0,0.113,0.408,94.951,4.0,,Sony Music Entertainment,P (P) 2021 Sony Music Entertainment Australia Pty Ltd,1035 +1036,spotify:track:14Hbdta0RRZnKqecZ7Picc,Block Rockin' Beats,spotify:artist:1GhPHrq36VKCY3ucVaZCfo,The Chemical Brothers,spotify:album:4sxQXCvYIPduAuYYYFbyXC,Brotherhood,spotify:artist:1GhPHrq36VKCY3ucVaZCfo,The Chemical Brothers,2008-01-01,https://i.scdn.co/image/ab67616d0000b273158dbd0061c4f42edcb01dfc,1,3,294026,https://p.scdn.co/mp3-preview/a32f23aaee2d58bc73dfed282b232bf6e0bc9e51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAAA0300503,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,big beat,breakbeat,electronica,rave,trip hop",0.606,0.977,1.0,-3.642,1.0,0.06,0.0206,0.5,0.179,0.809,109.41,4.0,,Virgin Records,"C © 2008 Virgin Records Limited, P This Compilation ℗ 2008 Virgin Records Limited",1036 +1037,spotify:track:5hRXW7bDPwj08jTI74N3gg,Dressed For Success,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:1iI5YZkqNUV7VmrEi4uOP9,Look Sharp! (2009 Version),spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,1988-10-19,https://i.scdn.co/image/ab67616d0000b273dc9cb1ac37f5131948ddc257,1,2,249840,https://p.scdn.co/mp3-preview/4a68c6a8869d9f1e945eec3a85a4ab9f02987e9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAME8878020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.744,0.67,5.0,-5.305,1.0,0.0298,0.0831,0.0,0.184,0.856,119.706,4.0,,Parlophone Sweden,"C 1988, 2009 Parlophone Music Sweden AB, a Warner Music Group Company, P 1988, 2009 Parlophone Music Sweden AB, a Warner Music Group Company",1037 +1038,spotify:track:70V9otkdkxxiRjrdiHk6CO,"Take a Letter, Maria",spotify:artist:1BdNzKPyPDOhHdFhvwytQt,R.B. Greaves,spotify:album:58F2RoUSdk3GU6do32SuSE,R.B. Greaves,spotify:artist:1BdNzKPyPDOhHdFhvwytQt,R.B. Greaves,1969,https://i.scdn.co/image/ab67616d0000b2736a1f60ec95d64b946494107b,1,3,164520,https://p.scdn.co/mp3-preview/e0e631637c84e08c438948ac9036c6a515f7cd9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USAT20003367,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.582,0.5,2.0,-11.647,1.0,0.0459,0.636,9.71e-06,0.134,0.971,160.414,4.0,,Rhino/Elektra,"C © 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",1038 +1039,spotify:track:1LIbTjMdFP15jIXGkcICSU,Chateau,spotify:artist:4tvKz56Tr39bkhcQUTO0Xr,Angus & Julia Stone,spotify:album:1D7wVgT1HGxwLGqSnLf0lg,Snow,spotify:artist:4tvKz56Tr39bkhcQUTO0Xr,Angus & Julia Stone,2017-09-15,https://i.scdn.co/image/ab67616d0000b2736567f18f9a164a51e933cdad,1,3,273533,https://p.scdn.co/mp3-preview/8c6890fb9940985d201610bf15a2c4edde9fa14f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,CAN111700291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie folk,indie folk",0.661,0.589,5.0,-11.217,1.0,0.0368,0.637,0.863,0.111,0.603,129.987,4.0,,EMI Recorded Music Australia Pty Ltd (Distribution),"C © 2017 Angus & Julia Stone, P ℗ 2017 Angus & Julia Stone",1039 +1040,spotify:track:7IX2e7pEShera9T1QIMvi7,Baby I'm-a Want You,spotify:artist:70ZTdbPEcEugBNay4MvxfL,Bread,spotify:album:5OlNb8PMZXFkhhtSrhLuO5,Baby I'm-a Want You,spotify:artist:70ZTdbPEcEugBNay4MvxfL,Bread,1972,https://i.scdn.co/image/ab67616d0000b27377073761e43f273c60988eaf,1,2,150706,https://p.scdn.co/mp3-preview/021d2036b92c73fb55da90d6858d6feb1845233d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USEE10000090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.613,0.289,8.0,-16.529,1.0,0.0305,0.743,1.57e-06,0.0617,0.553,144.188,4.0,,Elektra Records,"C © 1972 Elektra Entertainment, A Division of Warner Communications Inc., P ℗ 1972 Elektra Entertainment, A Division of Warner Communications Inc.",1040 +1041,spotify:track:2W2vmNmTLERMWT9XBxm35E,Diggin' On You,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,spotify:album:5eg56dCpFn32neJak2vk0f,Crazysexycool,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,1994-11-15,https://i.scdn.co/image/ab67616d0000b273a6125b1964a555892c49ea53,1,4,254560,https://p.scdn.co/mp3-preview/a727fb5dcbdfb6ea7041821fd36d1eac89bcd7f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USLF29400111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,girl group,hip pop,r&b,urban contemporary",0.719,0.631,6.0,-7.411,1.0,0.0451,0.0235,0.702,0.0686,0.456,80.127,4.0,,Arista/LaFace Records,P (P) 1994 LaFace Records LLC,1041 +1042,spotify:track:4MZEZz8MqVgvIMXU6AVP22,Running on Empty,spotify:artist:5lkiCO9UQ8B23dZ1o0UV4m,Jackson Browne,spotify:album:4VqLII6oqVpCj5HjwKKwX9,Running on Empty,spotify:artist:5lkiCO9UQ8B23dZ1o0UV4m,Jackson Browne,1977-12-06,https://i.scdn.co/image/ab67616d0000b273875f14f97413d0438dcc3375,1,1,298093,https://p.scdn.co/mp3-preview/ec73d4482979da543a37b7715acbaf8208088006?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE17700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk,folk rock,heartland rock,mellow gold,piano rock,singer-songwriter,soft rock",0.531,0.948,9.0,-5.438,1.0,0.0568,0.006,0.0117,0.694,0.498,136.891,4.0,,Rhino/Elektra,"C 1978 Asylum Records, P 2004 Elektra Entertainment for the United States and WEA International for the world outside of the United States.",1042 +1043,spotify:track:64VKnOE7xkcDBlShRUpJgd,The Brick Track Versus Gitty Up - Rickidy Raw Hide Radio Mix,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,spotify:album:69XVjCuZz9JiqfqBTEvaS1,The Best Of Salt-N-Pepa,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,1999-11-15,https://i.scdn.co/image/ab67616d0000b273f1067f1fb732fe6ee2883517,1,2,191066,https://p.scdn.co/mp3-preview/809e00be4e71bedc79584d8e618055aef0440bd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAMY9900038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop",0.819,0.67,2.0,-8.509,1.0,0.0421,0.0404,1.18e-06,0.0828,0.664,103.989,4.0,,Mercury Records,"C © 1999 UMG Recordings, Inc., P This Compilation ℗ 1999 UMG Recordings, Inc.",1043 +1044,spotify:track:69RH84na5iUNwrwxpgjC5j,Where Did Our Love Go,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,spotify:album:05pI1Rx1HQ4KA0a0e3PJlV,Where Did Our Love Go,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,1964-08-31,https://i.scdn.co/image/ab67616d0000b273d5ea1215e77c3f7a7c716370,1,1,153333,https://p.scdn.co/mp3-preview/7daf6b40a9edea7c5f032e85fbfd74b792b4226c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USMO19290049,spotify:user:bradnumber1,2023-02-14T22:21:25Z,"adult standards,classic girl group,classic soul,disco,motown,soul",0.567,0.49,0.0,-10.867,1.0,0.0414,0.79,1.42e-05,0.0919,0.847,134.923,4.0,,Motown,"C © 2004 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2004 Motown Records, a Division of UMG Recordings, Inc.",1044 +1045,spotify:track:0qdQUeKVyevrbKhAo0ibxS,My Sweet Lord - Remastered 2014,spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,spotify:album:4I4xtHaIFOzhZfp1NIHkY6,All Things Must Pass (Remastered 2014),spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,1970-11-27,https://i.scdn.co/image/ab67616d0000b273acc11d868a59008935e72299,1,2,281226,https://p.scdn.co/mp3-preview/6a8adb22e3c8f6976f233b184fdbf02a97b954e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,GB77R1400026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.537,0.701,1.0,-8.913,0.0,0.0335,0.0972,0.0,0.0832,0.583,120.919,4.0,,UMC (Universal Music Catalogue),"C © 2014 G.H. Estate Limited under exclusive license to Calderstone Productions Limited (a division of Universal Music Group), P ℗ 2014 G.H. Estate Limited under exclusive license to Calderstone Productions Limited (a division of Universal Music Group)",1045 +1046,spotify:track:600oiqLkQIJ85HvQGIQWvO,The Last Time,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:4BSDAmxxjYJnePMfh8kSJM,Sunsets & Full Moons,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2019-11-08,https://i.scdn.co/image/ab67616d0000b2737f3e1789457ac548018876bf,1,2,196106,https://p.scdn.co/mp3-preview/7d147b16f7a7e9f6b1f5217b2bc8af244522e79b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBARL1901043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.521,0.746,5.0,-3.421,1.0,0.0349,0.0486,0.0,0.236,0.15,132.014,4.0,,Columbia,P (P) 2019 Sony Music Entertainment UK Limited,1046 +1047,spotify:track:18uwL0vNUanqZH0ro2QcOP,comethru,spotify:artist:3gIRvgZssIb9aiirIg0nI3,Jeremy Zucker,spotify:album:6Whp0T7d1SAt4gDUNkWWD1,"summer,",spotify:artist:3gIRvgZssIb9aiirIg0nI3,Jeremy Zucker,2018-09-28,https://i.scdn.co/image/ab67616d0000b273cb16227d90152c2a5022bba1,1,1,181613,https://p.scdn.co/mp3-preview/c4523509311dad00dc70a06f1cfe2b0b358f6698?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USUM71813455,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,electropop,pop",0.796,0.178,0.0,-11.991,1.0,0.0572,0.607,0.0,0.623,0.608,93.976,4.0,,Republic Records,"C © 2018 Republic Records, a division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",1047 +1048,spotify:track:3BG0FJ4wvsHCj1otsNV890,Looking Through Patient Eyes,spotify:artist:5DgjOwTN6o76J5Gf8MzEoL,P.M. Dawn,spotify:album:09FemKMdBBwpN4SiXlYNDu,Recollection,spotify:artist:5DgjOwTN6o76J5Gf8MzEoL,P.M. Dawn,2018-12-07,https://i.scdn.co/image/ab67616d0000b27346c141f75743346a93eaee10,1,4,249666,https://p.scdn.co/mp3-preview/7f7239ede542ee941d090b64d5d3cd45d72a05f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGS20000074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,contemporary r&b,0.786,0.372,8.0,-17.765,1.0,0.0536,0.19,5.9e-06,0.129,0.685,102.237,4.0,,Intersound,"C 2018 Entertainment One US LP, P 2018 Entertainment One US LP",1048 +1049,spotify:track:2LKVqj0hkZsqQTOuWypM1c,I'm On Fire,spotify:artist:4U9FglMGShioV0yV8qcNFd,5000 Volts,spotify:album:2qlmtkBLyoBDkGRVcKh00D,70s Gems,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-03-29,https://i.scdn.co/image/ab67616d0000b2739d6a490cb45234b1ed2463fc,1,4,154426,https://p.scdn.co/mp3-preview/8932760049926e5d5e791d69cc02e42716d65f01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,DEE867500055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.635,0.874,2.0,-5.047,0.0,0.0402,0.317,0.0582,0.243,0.939,138.456,4.0,,Sony Music Catalog,P (P) 2010 Sony Music Entertainment Germany GmbH,1049 +1050,spotify:track:3lLT0h6gDFeg9JvqxCAYIz,So Good - International Version,spotify:artist:1JPP5ORQZqfLYH2SeEHFOi,Bratz,spotify:album:4qRV5VWhGFeaXpFEYKIz4w,Rock Angelz,spotify:artist:1JPP5ORQZqfLYH2SeEHFOi,Bratz,2005-01-01,https://i.scdn.co/image/ab67616d0000b2732d8963d61befa7f427d43fa8,1,1,186453,https://p.scdn.co/mp3-preview/58db8c123e9e8287de22facb6566a2c468c40486?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USUM70500625,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.575,0.823,9.0,-3.789,0.0,0.0332,0.0303,0.0,0.104,0.316,130.008,4.0,,Universal Music Enterprises,"C © 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc.",1050 +1051,spotify:track:1wYJnu1hMrYMNrkXKTVrYd,Gives You Hell,spotify:artist:3vAaWhdBR38Q02ohXqaNHT,The All-American Rejects,spotify:album:3E961jCaL42uhujX1hjMLM,When The World Comes Down,spotify:artist:3vAaWhdBR38Q02ohXqaNHT,The All-American Rejects,2008-01-01,https://i.scdn.co/image/ab67616d0000b273db148353885bab4cdfcf4ab7,1,4,213106,https://p.scdn.co/mp3-preview/d86175c06b0fe2d2b1357774a480cf0994c3a767?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70837368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neo mellow,neon pop punk,pop punk,pop rock,post-grunge",0.718,0.691,4.0,-6.44,1.0,0.0387,0.0159,0.0,0.0627,0.552,100.008,4.0,,Universal Music Group,"C © 2008 DGC/Interscope Records, P ℗ 2008 DGC/Interscope Records",1051 +1052,spotify:track:20QOF5xJItVcHSwCv6CVqz,Pipeline,spotify:artist:4x6kNCpQ9veqQ17vllEJUR,The Chantays,spotify:album:3WprSmWYHdFX1U1KbD6WvG,Pipeline,spotify:artist:4x6kNCpQ9veqQ17vllEJUR,The Chantays,2014-03-10,https://i.scdn.co/image/ab67616d0000b273726cac6baf61742446c135b2,1,1,142785,https://p.scdn.co/mp3-preview/4f8881acc1c23e4a74c8314a5cf761c3bb366f4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,QMDA71497725,spotify:user:bradnumber1,2021-08-08T09:26:31Z,surf music,0.444,0.552,9.0,-16.059,0.0,0.0354,0.676,0.957,0.165,0.805,152.575,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,1052 +1053,spotify:track:49OMJ1prsRA7ZYgrAjz70c,More Than A Woman,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:5YHZaCxCuuK81h4Fimb9rT,Greatest,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1979-01-01,https://i.scdn.co/image/ab67616d0000b27352038992fc6d7868f31d23b7,2,4,197213,https://p.scdn.co/mp3-preview/59dcf7ab85c7a89ce4b5adbf88f6a3aaeab79696?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,NLF057790033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.632,0.683,7.0,-6.434,1.0,0.0385,0.163,0.00013,0.847,0.701,105.959,4.0,,Bee Gees Catalog,"C © 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P This Compilation ℗ 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",1053 +1054,spotify:track:1WCEAGGRD066z2Q89ObXTq,Crazy What Love Can Do,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:4EPJlUEBy49EX1wuFOvtjK, spotify:artist:7nDsS0l5ZAzMedVRKPP8F1","David Guetta, Becky Hill, Ella Henderson",spotify:album:0GnxssqYa2RU9EdWHhZ707,Crazy What Love Can Do,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:4EPJlUEBy49EX1wuFOvtjK, spotify:artist:7nDsS0l5ZAzMedVRKPP8F1","David Guetta, Becky Hill, Ella Henderson",2022-04-08,https://i.scdn.co/image/ab67616d0000b273654c0a1cb2c30dd8e11c0186,1,1,169756,https://p.scdn.co/mp3-preview/fdb85e5b7fa3838d29e9909819ec82ed9da757dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,UKWLG2200001,spotify:user:bradnumber1,2024-07-10T22:58:49Z,"big room,dance pop,edm,pop,pop dance,pop dance,pop house,uk dance,uk pop,dance pop,pop dance,talent show,uk pop",0.601,0.713,4.0,-3.758,0.0,0.0449,0.0282,0.0,0.158,0.464,122.872,4.0,,Parlophone UK,"C Under exclusive licence to What A Music Limited, © 2022 What A DJ Limited and What A Producer Limited, P Under exclusive licence to What A Music Limited, ℗ 2022 What A DJ Limited and What A Producer Limited",1054 +1055,spotify:track:3hRZsdTF5uyGA2uhNqEuhm,Too Much To Ask,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,spotify:album:3gvs9DZKZsUXq8FnbX7Xon,Too Much To Ask,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,2017-09-14,https://i.scdn.co/image/ab67616d0000b273cf3f583f6d3712b50eda13f9,1,1,223043,https://p.scdn.co/mp3-preview/a7172272e2339441c9917588e9e551bcaa640a52?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUG11701396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.517,0.552,0.0,-6.401,1.0,0.039,0.375,0.0,0.106,0.196,153.747,4.0,,Universal Music Group,"C © 2017 Neon Haze Music Ltd, under exclusive license to Capitol Records, P ℗ 2017 Neon Haze Music Ltd, under exclusive license to Capitol Records",1055 +1056,spotify:track:5OpWx8oLKJmeMy1jJrKPgm,Intuition,spotify:artist:6FbDoZnMBTdhhhLuJBOOqP,Jewel,spotify:album:6AIQBilP1zUAkgOQMLTGOv,0304 (European Version- Alternate Enhancement),spotify:artist:6FbDoZnMBTdhhhLuJBOOqP,Jewel,2003-06-03,https://i.scdn.co/image/ab67616d0000b27315dc123bd3fbaed65e56e745,1,3,228893,https://p.scdn.co/mp3-preview/51b5f52b2de0c344c0cb81271d3674ad4ba97cef?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USAT20300598,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alaska indie,ectofolk,lilith,permanent wave,pop rock,singer-songwriter",0.718,0.798,7.0,-4.309,1.0,0.0584,0.00447,0.00629,0.064,0.816,100.031,4.0,,Concord Music Group,"C 2003 Concord Music Group, Inc., P 2003 Concord Music Group, Inc.",1056 +1057,spotify:track:7gSQv1OHpkIoAdUiRLdmI6,I Won't Back Down,spotify:artist:2UZMlIwnkgAEDBsw1Rejkn,Tom Petty,spotify:album:5d71Imt5CIb7LpQwDMQ093,Full Moon Fever,spotify:artist:2UZMlIwnkgAEDBsw1Rejkn,Tom Petty,1989-01-01,https://i.scdn.co/image/ab67616d0000b27336572e6726714544f5bed456,1,2,178360,https://p.scdn.co/mp3-preview/2efef1deacda363a01f8d713502bef6674c3cee4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USMC18925675,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.766,0.478,7.0,-13.487,1.0,0.0329,0.0513,2.49e-06,0.165,0.965,114.02,4.0,,Tom Petty P&D,"C © 1989 MCA Records Inc., P ℗ 1989 Geffen Records",1057 +1058,spotify:track:5Lm8wha7kmEuqyjJ237HNM,Cheers (Drink To That),spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:7vN82vd1Vq44fjlhjfvHJp,Loud,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2010-11-16,https://i.scdn.co/image/ab67616d0000b2732ed326786e4c61c6b1dbf222,1,3,261746,https://p.scdn.co/mp3-preview/d982d304f3b94c05f81bb23f16cf53abb12eacf0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USUM71026595,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.572,0.913,9.0,-3.626,1.0,0.0425,0.018,0.0,0.293,0.724,79.986,4.0,,Def Jam Recordings,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",1058 +1059,spotify:track:3hYctzBStAGPRvahcZmJJF,No One Else Comes Close,spotify:artist:3zTOe1BtyTkwNvYZOxXktX,Joe,spotify:album:7Kb0pU8LBYOoI6hoj7ajHJ,All That I Am,spotify:artist:3zTOe1BtyTkwNvYZOxXktX,Joe,1997-09-23,https://i.scdn.co/image/ab67616d0000b27328b13b7ff456310a4fca24d5,1,8,231066,https://p.scdn.co/mp3-preview/74c6e6b00354aa6e8c0513e78ec35ed9229956ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USJI19710074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,r&b,urban contemporary",0.608,0.531,0.0,-9.549,1.0,0.028,0.534,7.17e-06,0.183,0.328,110.092,4.0,,Jive,P (P) 1997 Zomba Recording LLC,1059 +1060,spotify:track:5CcXy074xYUoCwgACUTqnQ,Too Many Broken Hearts,spotify:artist:5bnNgwp3nooah9yHAHsnR4,Jason Donovan,spotify:album:6rL0xfZj23qRaFrGiTmvPP,Greatest Hits,spotify:artist:5bnNgwp3nooah9yHAHsnR4,Jason Donovan,2007-02-06,https://i.scdn.co/image/ab67616d0000b273cd12dd55b0c00f57c56571eb,1,3,208333,https://p.scdn.co/mp3-preview/41f09d06cd3b9a888f3597a515b9bf747e9bacd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUMU08900171,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,europop,new wave pop",0.66,0.939,9.0,-10.309,0.0,0.0338,0.125,0.0,0.207,0.946,122.337,4.0,,WM Australia,"C © 1991 Mushroom Records, P ℗ 1991 Mushroom Records",1060 +1061,spotify:track:7FgmnYKW9O87uvMoE2ouTF,Burning Down The House,"spotify:artist:1T0wRBO0CK0vK8ouUMqEl5, spotify:artist:1tqZaCwM57UFKjWoYwMLrw","Tom Jones, The Cardigans",spotify:album:5wuDCQ0ETSqaYPRhFvoeDY,Best Of,spotify:artist:1tqZaCwM57UFKjWoYwMLrw,The Cardigans,2008-01-25,https://i.scdn.co/image/ab67616d0000b273bbed791537e764e79ac51791,1,22,218960,https://p.scdn.co/mp3-preview/c21d427b19961865048a6bb2354b353651f2c625?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBRL9970010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion,lilith,new wave pop,permanent wave,pop rock,swedish pop",0.792,0.849,11.0,-4.285,1.0,0.0425,0.0111,0.00146,0.0348,0.829,109.956,4.0,,Universal Music Group,"C © 2008 Universal Music AB, P ℗ 2008 Universal Music AB",1061 +1062,spotify:track:3Fho4rc2dQpS2drA4Y37v2,Candyman,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:6v8bG4qgPgS1YR6TRSBlAZ,Keeps Gettin' Better: A Decade Of Hits,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2008-11-07,https://i.scdn.co/image/ab67616d0000b27325956d8daeb0d6ec51958ad8,1,11,193733,https://p.scdn.co/mp3-preview/3dfcf5849fe0c1911751a8c47e564ee7c2c038d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10600413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.662,0.735,11.0,-4.866,0.0,0.21,0.00529,9.08e-05,0.103,0.622,173.031,4.0,,RCA Records Label,"P (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",1062 +1063,spotify:track:45wUMTmDCuH8VOqG7rDmrH,I'll Be There For You,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0Bkb9wdEeOPBJnLYmQqVR2,Bon Jovi Greatest Hits - The Ultimate Collection (Int'l Deluxe Package),spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273dccc2df90ecd877a3bb7c999,1,8,346386,https://p.scdn.co/mp3-preview/4116eea91e58a98ddaf3d2ebe2462f9909394546?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402229,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.429,0.793,2.0,-3.932,1.0,0.0353,0.0693,0.0,0.108,0.24,72.985,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",1063 +1064,spotify:track:61uXORSNIY7p03t5V7DH7z,Dangerous,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:4rQV5S9FhajZdyzFfcyYw9,Look Sharp! (Extended Version),spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,1988-10-21,https://i.scdn.co/image/ab67616d0000b2737d32e463de3d8d8b39dcac2c,1,8,228866,https://p.scdn.co/mp3-preview/48875c631f434294b99cdadebaf7ce7716054481?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,SEAME8878080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.712,0.898,4.0,-4.893,1.0,0.0336,0.0485,7.76e-06,0.148,0.961,124.409,4.0,,WM Sweden,"C © 1988 Parlophone Music Sweden a division of Warner Music Sweden AB, P ℗ 1988 Parlophone Music Sweden a division of Warner Music Sweden AB",1064 +1065,spotify:track:7gHs73wELdeycvS48JfIos,Faded,spotify:artist:7vk5e3vY1uw9plTHJAMwjN,Alan Walker,spotify:album:5HMjpBO0v78ayq5lreAyDd,Faded,spotify:artist:7vk5e3vY1uw9plTHJAMwjN,Alan Walker,2015-12-04,https://i.scdn.co/image/ab67616d0000b273c4d00cac55ae1b4598c9bc90,1,1,212626,https://p.scdn.co/mp3-preview/633dfd35d836f9b62bab2344510e68270e5e3873?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,NOG841549010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electro house,0.589,0.651,6.0,-5.097,1.0,0.0306,0.0291,3.2e-06,0.111,0.166,90.011,4.0,,Kreatell Music,P (P) 2015 Kreatell Music under exclusive license to Sony Music Entertainment Sweden AB,1065 +1066,spotify:track:6xXEw4y39shgIp6pacKQFH,Make Luv,"spotify:artist:0AEbDFXbsssoSoC3pj91eq, spotify:artist:25MNkA39C5jjxApUl812ic","Room 5, Oliver Cheatham",spotify:album:0RgHM6Ii7TsvTNicfHQ5mH,Music & You,spotify:artist:0AEbDFXbsssoSoC3pj91eq,Room 5,2003-11-24,https://i.scdn.co/image/ab67616d0000b2733e4e6be7009f5481671322e4,1,2,212413,https://p.scdn.co/mp3-preview/6db20353e9992b7473cdb5ddd35c242d94d95980?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,BEP010310109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,vocal house,post-disco",0.881,0.887,1.0,-4.922,1.0,0.114,0.0114,0.663,0.0365,0.654,124.81,4.0,,[PIAS] Recordings Catalogue,"C 2003 PIAS RECORDINGS, P 2003 PIAS RECORDINGS",1066 +1067,spotify:track:3CRDbSIZ4r5MsZ0YwxuEkn,Stressed Out,spotify:artist:3YQKmKGau1PzlVlkL1iodx,Twenty One Pilots,spotify:album:3cQO7jp5S9qLBoIVtbkSM1,Blurryface,spotify:artist:3YQKmKGau1PzlVlkL1iodx,Twenty One Pilots,2015-05-15,https://i.scdn.co/image/ab67616d0000b2732df0d98a423025032d0db1f7,1,2,202333,https://p.scdn.co/mp3-preview/d01bb6b4b9952d95d2609632474cda8e632e044d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USAT21500597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,pov: indie,rock",0.734,0.637,4.0,-5.677,0.0,0.141,0.0462,2.29e-05,0.0602,0.648,169.977,4.0,,Fueled By Ramen,"C © 2015 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2015 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",1067 +1068,spotify:track:4nXkbcTj3nyww1cHkw5RAP,Long Train Runnin',spotify:artist:39T6qqI0jDtSWWioX8eGJz,The Doobie Brothers,spotify:album:0M2KWMbvY5x1sUnIKNpyUt,The Captain and Me,spotify:artist:39T6qqI0jDtSWWioX8eGJz,The Doobie Brothers,1973,https://i.scdn.co/image/ab67616d0000b2737d419ac975423c069995c7bb,1,2,207266,https://p.scdn.co/mp3-preview/1c108781a384f85c036fbeb917c93a1c45c3b731?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USWB19900751,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,mellow gold,rock,singer-songwriter,soft rock,yacht rock",0.575,0.912,7.0,-7.275,0.0,0.0393,0.0916,0.00211,0.0562,0.843,117.399,4.0,,Warner Records,"C © 1973 Warner Records Inc., P ℗ 1973 Warner Records Inc.",1068 +1069,spotify:track:107Vckb6BgV7NI36jxWQJM,You've Really Got A Hold On Me,spotify:artist:6TqQLejnHXMGr7KcegxUND,The Miracles,spotify:album:5UKZIGXuxNMnGGFhkllgoz,The Fabulous Miracles,spotify:artist:6TqQLejnHXMGr7KcegxUND,The Miracles,1963-01-01,https://i.scdn.co/image/ab67616d0000b2739c80af821593c6e19fb8bf02,1,1,177706,https://p.scdn.co/mp3-preview/5493bc03ada214e08916aa851f5d3073df8a89ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16272016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,motown,quiet storm,rhythm and blues,soul,southern soul",0.679,0.441,0.0,-8.441,1.0,0.0293,0.718,0.0,0.22,0.566,118.444,3.0,,Universal Music Group,"C © 1963 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1963 Motown Records, a Division of UMG Recordings, Inc.",1069 +1070,spotify:track:50xwQXPtfNZFKFeZ0XePWc,Yellow Submarine - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:3PRoXYsngSwjEQWR5PsHWR,Revolver (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1966-08-05,https://i.scdn.co/image/ab67616d0000b27328b8b9b46428896e6491e97a,1,6,158880,https://p.scdn.co/mp3-preview/32590950ac6de634cbaec8e4b41317fe076715a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAYE0601498,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.604,0.549,1.0,-9.873,1.0,0.0389,0.531,0.0,0.438,0.696,111.398,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd., P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",1070 +1071,spotify:track:09cipkVDxpgmbgG9HCLYjq,That Word (l.o.v.e.),spotify:artist:5EkpFNNGJTnndTQLzqTFut,Deni Hines,spotify:album:7IgYFMrRiybuW2T85jklrC,Delicious,spotify:artist:5EkpFNNGJTnndTQLzqTFut,Deni Hines,2002,https://i.scdn.co/image/ab67616d0000b273330f98c991dc1d9788db5119,1,6,246080,https://p.scdn.co/mp3-preview/14d0ee9e0ed67dddd76b7be7f90ffe3486585cdc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUMU00200886,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.677,0.584,6.0,-8.741,1.0,0.0477,0.0702,6.89e-06,0.279,0.868,178.141,4.0,,WM Australia,"C © 2002 Mushroom Records, P ℗ 2002 Mushroom Records",1071 +1072,spotify:track:69fhPAXxcjeqs30l5D9oAe,I Want You,spotify:artist:2lGzdlE3VJTdFZBXxb244X,Toni Pearen,spotify:album:6y8hYSmeD7mhmrDexxtjpC,Toni Pearen's Intimate Album,spotify:artist:2lGzdlE3VJTdFZBXxb244X,Toni Pearen,1994-11-28,https://i.scdn.co/image/ab67616d0000b2738fc4dad6abe621da94350b09,1,3,255933,https://p.scdn.co/mp3-preview/a87b398d6a63fced1ad1d656f208f38a1f87d4e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUWA01900554,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.633,0.716,11.0,-7.915,1.0,0.057,0.058,0.0,0.286,0.571,93.252,4.0,,WM Australia,"C © 1994 Mushroom Records Pty Ltd, P ℗ 1994 Mushroom Records Pty Ltd",1072 +1073,spotify:track:4LqWvDlHtl4Kq4rCZ2mrjV,You're Only Human (Second Wind),spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:2ox4dq2HflOZlph8QbpNHD,Greatest Hits Volume I & Volume II,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1985,https://i.scdn.co/image/ab67616d0000b27313fcf07049afc0a92123cacc,2,13,288440,https://p.scdn.co/mp3-preview/71b397941bce7a0e0a3e3546391bfc28088b63bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM18500169,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.759,0.795,3.0,-8.713,1.0,0.062,0.0356,1.12e-05,0.0678,0.877,130.803,4.0,,Columbia,"P This compilation (P) 1985 Columbia Records, a division of Sony Music Entertainment",1073 +1074,spotify:track:6YZAeEUhofehAg6wwJZl5i,"Knock Knock, Who's There?",spotify:artist:2dknbKktpuIxHJUkRjObuE,Liv Maessen,spotify:album:5CLLXFs9WK7hm8epc6uReX,The Best of Liv Maessen,spotify:artist:2dknbKktpuIxHJUkRjObuE,Liv Maessen,1972,https://i.scdn.co/image/ab67616d0000b2739df6d5f477848b62cff7401a,1,1,154333,https://p.scdn.co/mp3-preview/3f1624b2ca2b75936ec3232c61e65efefb1d4c37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41800536,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.634,0.492,5.0,-10.188,1.0,0.0284,0.143,4.22e-05,0.16,0.881,97.02,4.0,,Fable Records,"C 1972 Fable records, P 2018 Southern Cross Music Pty Limited",1074 +1075,spotify:track:6X4JeTWCuKEzKOEHXDtyBo,Little Red Corvette - Single Version,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:7mhrGQKxLFJPY2J4TXtA0A,4Ever,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,2016-11-22,https://i.scdn.co/image/ab67616d0000b27392a29c45954d5d2eb8687dbc,1,2,188613,https://p.scdn.co/mp3-preview/077a6781ebb405cddcac3d3cdf90c17edd51ca5d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USWB11601762,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.777,0.7,1.0,-11.046,1.0,0.0869,0.235,8.02e-06,0.836,0.802,122.941,4.0,,Warner Records,"C © This Compilation C2016 NPG Records Inc. under exclusive license to Warner Records Inc., P ℗ 2016 This Compilation NPG Records Inc. under exclusive license to Warner Records Inc.",1075 +1076,spotify:track:5NIPsWpDjJTFBoPxCUUeXp,Welcome To The Jungle,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:5JKFiC2WVi9HtvJEm8CUB8,Appetite For Destruction,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1987-07-21,https://i.scdn.co/image/ab67616d0000b273c8e5391a619e9e8ea2162073,1,1,273600,https://p.scdn.co/mp3-preview/4625797f3517e8945e9b191119bcc0b67491cfd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USGF18714801,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.445,0.955,8.0,-8.027,1.0,0.0856,0.0326,0.284,0.317,0.336,123.343,4.0,,Interscope,"C © 1987 Geffen Records, P ℗ 1987 Geffen Records",1076 +1077,spotify:track:5VDYXJibFojigwpRRCb19m,Love Hurts,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:14m8svkAlZuLFSsmfcHQsH,Playlist: The Very Best Of Roy Orbison,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2008-05-29,https://i.scdn.co/image/ab67616d0000b273b61c93c736e82ce9ec04bb07,1,3,146146,https://p.scdn.co/mp3-preview/b4f16dad0b9c87b2eca7f2ad643a1270ab9adf8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USSM10414149,spotify:user:bradnumber1,2023-08-04T05:07:29Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.492,0.247,10.0,-10.502,1.0,0.0239,0.711,2.98e-05,0.229,0.414,84.438,4.0,,Orbison Records/Legacy,"P (P) Originally Released 1960, 1961, 1962, 1963, 1964, 1965. All rights reserved by SONY BMG MUSIC ENTERTAINMENT. (P) 1989 Orbison Records, Inc., 2008 SONY BMG MUSIC ENTERTAINMENT",1077 +1078,spotify:track:70GBaX1u4KfwpmXo3b51v4,Cocoon,spotify:artist:7oYWWttOyiltgT19mfoUWi,Love Ghost,spotify:album:1sLw5tCVZZ0D66yB5EhpmY,Cocoon,spotify:artist:7oYWWttOyiltgT19mfoUWi,Love Ghost,2021-06-25,https://i.scdn.co/image/ab67616d0000b273f01e443499aa4152911f37a3,1,1,219428,https://p.scdn.co/mp3-preview/ac33fbf6f9655740f560e576f841bc995ee95f6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,TCAFP2174116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.685,0.541,9.0,-9.805,1.0,0.0475,0.144,0.0,0.106,0.297,140.039,4.0,,Love Ghost,"C 2021 Love Ghost, P 2021 Love Ghost",1078 +1079,spotify:track:1i6N76fftMZhijOzFQ5ZtL,Psycho Killer - 2005 Remaster,spotify:artist:2x9SpqnPi8rlE9pjHBwmSC,Talking Heads,spotify:album:5eqcF7pWzHgWpGdEmHgeSN,Talking Heads '77 (Deluxe Version),spotify:artist:2x9SpqnPi8rlE9pjHBwmSC,Talking Heads,1977-09-16,https://i.scdn.co/image/ab67616d0000b273e71708b667804f6241dd1a59,1,10,261413,https://p.scdn.co/mp3-preview/dc5f37a0150178ec981bfe2c7bd702d0437e9630?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USWB10502860,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art punk,dance rock,funk rock,new wave,permanent wave,post-punk,rock,zolo",0.721,0.521,2.0,-8.123,1.0,0.0613,0.0708,0.00545,0.127,0.942,123.118,4.0,,Rhino/Warner Records,"C © 1977 & 2005 Sire Records Company, P ℗ 1977 & 2005 Sire Records Company",1079 +1080,spotify:track:7boKWlaNVmrhJdX8IbzUdD,Hard to Say I'm Sorry - 2007 Remaster,spotify:artist:3iDD7bnsjL9J4fO298r0L0,Chicago,spotify:album:13etqTFFO9ZKGD3LeRMROL,"The Best of Chicago, 40th Anniversary Edition",spotify:artist:3iDD7bnsjL9J4fO298r0L0,Chicago,2007-10-01,https://i.scdn.co/image/ab67616d0000b273aeb259c3ab7fcbac58f3d799,2,3,223280,https://p.scdn.co/mp3-preview/98470ceeec3aed59232730c1182331a88697c273?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USWB10702882,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,soft rock,yacht rock",0.551,0.416,4.0,-7.94,1.0,0.0274,0.648,2.26e-06,0.312,0.255,72.174,4.0,,Rhino,"C © 2007 Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2007 Rhino Entertainment Company, a Warner Music Group Company",1080 +1081,spotify:track:1CuzzAbJ4q28V5JOLCzQVp,Starstrukk,"spotify:artist:0FWzNDaEu9jdgcYTbcOa4F, spotify:artist:6jJ0s89eD6GaHleKKya26X","3OH!3, Katy Perry",spotify:album:06SY6Ke6mXzZHhURLVU57R,Teenage Dream,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2010-08-24,https://i.scdn.co/image/ab67616d0000b273f619042d5f6b2149a4f5e0ca,1,14,203093,https://p.scdn.co/mp3-preview/60964448b81777ff5e2938d42abd0750a5bb6ed6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20902549,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropowerpop,pop punk,pop rap,post-teen pop,pop",0.605,0.795,11.0,-6.086,0.0,0.0711,0.00153,0.0,0.207,0.263,139.897,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",1081 +1082,spotify:track:1t3DYiDB0hcz5fFtx3jpYh,Show Me the Way,spotify:artist:7DZDByO8dEuOb1V5JcJPfI,Brian Cadd,spotify:album:1er7XbMBLlo14aZRoyiGbQ,The Best of Brian Cadd,spotify:artist:7DZDByO8dEuOb1V5JcJPfI,Brian Cadd,2018-04-13,https://i.scdn.co/image/ab67616d0000b2738f83677912ead6cc4486c952,1,1,241222,https://p.scdn.co/mp3-preview/59d55b139e19123177dc48f88034d18c2bddac6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian americana,australian rock",0.351,0.452,11.0,-7.646,1.0,0.0258,0.366,1.73e-05,0.113,0.466,81.565,4.0,,Fable Records,P (P) 2018 Southern Cross Music,1082 +1083,spotify:track:6BqMDVtK5cVWuCHxSoBVdg,Roll On,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:5S28EQPpZzfvnzYsUToHrN,Roll On,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,2000-11-27,https://i.scdn.co/image/ab67616d0000b273e9fb19f53eeb3871487271b5,1,1,188746,https://p.scdn.co/mp3-preview/f7e9942bf865d186e653d8fbf681f4ba65a80c67?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUMP00000016,spotify:user:bradnumber1,2021-11-11T04:07:29Z,"australian alternative rock,australian rock,australian ska",0.419,0.922,7.0,-4.583,1.0,0.0694,0.00136,0.0,0.11,0.546,146.347,4.0,,BMG Rights Management (Australia) Pty Ltd.,"C © 2018 BMG Rights Management (Australia) Pty Ltd., P ℗ 2018 BMG Rights Management (Australia) Pty Ltd.",1083 +1084,spotify:track:42T2QQv3xgBlpQxaSP7lnK,One Last Breath,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,spotify:album:2ENlJXygQX6en4iziijet6,Weathered,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,2001-01-01,https://i.scdn.co/image/ab67616d0000b273a32f2ae4dade83e0d7a294f4,1,5,238240,https://p.scdn.co/mp3-preview/20dd8d3794a1715078dd9c7767ad8aa53f9c8260?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USWU30107505,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.386,0.677,2.0,-5.83,1.0,0.0346,0.00841,0.00366,0.341,0.195,126.602,4.0,,The Bicycle Music Company,"C © 2001 The Bicycle Music Company, P ℗ 2001 The Bicycle Music Company",1084 +1085,spotify:track:4TFLUXjdQOSK0vyLZ510LT,So Macho,spotify:artist:1nUUfnmwd9mdpTPwMcM1hd,Sinitta,spotify:album:1XrRQCyjiIvrrG9zOLTC4L,Hits+ Collection 86 - 09 Right Back Where We Started From,spotify:artist:1nUUfnmwd9mdpTPwMcM1hd,Sinitta,2009-11-30,https://i.scdn.co/image/ab67616d0000b273e30c91dd94e176b4bcf55260,1,1,205160,https://p.scdn.co/mp3-preview/5fcac638d2fec1c0bd29d651532a0caffa7e1d3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBARK8600048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hi-nrg,0.745,0.883,8.0,-7.191,1.0,0.072,0.0955,5.63e-06,0.394,0.626,129.357,4.0,,Sony Music UK,P (P) 2009 Sony Music Entertainment UK Limited,1085 +1086,spotify:track:2TeiKDPE3RdamZG0pp5okI,Perfect,spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,spotify:album:3rEl0zv6lbVZiB79uHAQ5y,"No Pads, No Helmets...Just Balls",spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,2002-03-19,https://i.scdn.co/image/ab67616d0000b273b7531c90a44e901a41242b69,1,12,277026,https://p.scdn.co/mp3-preview/c93e339eefc83c451c830a04494886655819bb8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20200143,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop punk,canadian punk,canadian rock,modern rock,neon pop punk,pop punk,pop rock",0.494,0.672,3.0,-4.877,1.0,0.0405,0.0273,0.0,0.105,0.557,156.208,4.0,,Lava,"C 2002 Lava Records LLC for the United States and WEA International Inc. for the world outside of the Unitged States., P 2002 Lava Records LLC for the United States and WEA International Inc. for the world outside of the United States.",1086 +1087,spotify:track:244AvzGQ4Ksa5637JQu5Gy,You've Got The Love,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,spotify:album:1rLLyY5p6HXNl2lKzINWp5,Lungs (Deluxe Version),spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2009,https://i.scdn.co/image/ab67616d0000b273003f81b1f4246362638e682d,1,13,168666,https://p.scdn.co/mp3-preview/723c4ccb2319fb8b997c973a37812b586c120f87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,GBUM70900237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop",0.574,0.694,6.0,-4.697,1.0,0.0327,0.00481,0.0,0.102,0.401,109.85,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records Ltd. A Universal Music Company., P ℗ 2011 Universal Island Records Ltd. A Universal Music Company.",1087 +1088,spotify:track:2tn9zXqIZJbgL1swqwOktz,Praise You - Radio Edit,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,spotify:album:5vpSQUagobcDEf6IVcmM1m,Why Try Harder - The Greatest Hits,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,2006-06-18,https://i.scdn.co/image/ab67616d0000b2735881f12ca6d02eb7987dd09b,1,2,227973,https://p.scdn.co/mp3-preview/c0a0d68a0cbe569814c1a02ea0eb0cc5f130c9a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBBMQ0600005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica",0.622,0.884,1.0,-6.715,1.0,0.0467,0.0403,0.371,0.282,0.561,109.722,4.0,,Skint Records,"C © 2006 Skint Records Limited, a BMG Company, P ℗ 2006 Skint Records Limited, a BMG Company",1088 +1089,spotify:track:2lE7oRoKssULAtbWViL385,Hand in My Pocket - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,spotify:album:5Ap3F8CxjjsQKZGASDcHNA,Jagged Little Pill - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,1995,https://i.scdn.co/image/ab67616d0000b273242e643ea07118ecf677a6ef,1,4,222013,https://p.scdn.co/mp3-preview/f251a6512dfff8c96992f631420518fcb5a72185?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USMV21500004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,lilith,neo mellow,pop rock,singer-songwriter",0.657,0.655,0.0,-8.3,1.0,0.0248,0.135,0.00303,0.102,0.668,92.259,4.0,,Rhino/Maverick Records,"C © 1995 Maverick Recording Company. All Rights Reserved, P ℗ 1995 Maverick Recording Company. Marketed by Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",1089 +1090,spotify:track:5kK1Iru9ogP3Iy1zsANU1n,The Power of Love,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:6Po5zdKMIH5Xk99vjXyQpC,The Colour Of My Love,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1993-11-09,https://i.scdn.co/image/ab67616d0000b27363e07c2dbc7450974a146e96,1,1,342400,https://p.scdn.co/mp3-preview/7d88cb368e189a99716a48392e213035d4e0486a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,CAC220003069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.546,0.519,8.0,-9.072,1.0,0.0291,0.36,0.00046,0.24,0.247,140.054,4.0,,Columbia,P (P) 1993 Sony Music Entertainment (Canada) Inc.,1090 +1091,spotify:track:6nvsIcUyV7Td6J6qrdieOe,The Millennium Prayer,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:3RNco8CHfSVh2QtxcWB4po,Cliff at Christmas,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,2003,https://i.scdn.co/image/ab67616d0000b27397ba3f297a4bc977ec4511b1,1,17,281320,https://p.scdn.co/mp3-preview/f9c0a8e55c0d2a1add2b024e7215f0b03b36cac1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBCZ59900015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.252,0.536,2.0,-8.662,1.0,0.037,0.298,0.0,0.102,0.0395,186.329,4.0,,Rhino,"C © 2003 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2003 Parlophone Records Ltd, a Warner Music Group Company",1091 +1092,spotify:track:2qqv9YS09PRXeLc07jFm0B,Lakini's Juice - New Album Version,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,spotify:album:4LoFVGILbwQTveEOoHnFl4,Best Of Live (ANZA Version),spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,2004-01-01,https://i.scdn.co/image/ab67616d0000b27340bc5fd95f6db9f89ca89b3d,1,8,287013,https://p.scdn.co/mp3-preview/0cf8ed6d715b06b29f735d30bb618d66d1a63773?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10400743,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,pop rock,post-grunge",0.381,0.688,1.0,-6.952,1.0,0.0397,4.61e-05,0.045,0.0847,0.405,91.362,4.0,,Universal Music New Zealand Limited,"C (C) 2004 Radioactive Records J.V., P (P) 2004 Radioactive Records J.V.",1092 +1093,spotify:track:5qRhDFx1Om4yu6UQv0WKLh,Hole in My Heart,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,spotify:album:3ob0XVPoKBjrOjg0mf3zN3,True Colors: The Best Of Cyndi Lauper,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,2014-12-11,https://i.scdn.co/image/ab67616d0000b273d26847c68a0002d364b1ca3d,2,14,238293,https://p.scdn.co/mp3-preview/74865a7e42d6c37c272a523fd32e4544677c6dac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USSM18800681,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,permanent wave,soft rock",0.531,0.949,4.0,-5.217,1.0,0.122,0.284,0.00129,0.319,0.708,167.768,4.0,,Legacy Recordings,P This Compilation (P) 2009 Sony Music Entertainment,1093 +1094,spotify:track:0x4GHzCjY5MGQ960CHnVHz,In My Blood,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:6jzir5maJG4oVMFNrTLrJI,In My Blood,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2016-06-10,https://i.scdn.co/image/ab67616d0000b2736e78e95f930644cdf8e5ba87,1,1,200480,https://p.scdn.co/mp3-preview/ba239d9a1a3a102a4ca937e4cceedc772eb69ed8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUBM01600174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.538,0.809,7.0,-6.017,0.0,0.0505,0.00136,0.0,0.406,0.278,120.004,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd,1094 +1095,spotify:track:3fMs6BwLCmoqq47IIOpHvi,I Won't Kneel,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,spotify:album:5g6nzzrlpYo1wmLsqoCoA9,Black Light,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2010,https://i.scdn.co/image/5a9006b4880f62c84a89ab41d5a51fcb6a396713,1,5,275356,https://p.scdn.co/mp3-preview/bbcbe685f1b2fb94c7b6c438dbeab98287d69827?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,GBCEJ0900410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,nu skool breaks,trip hop",0.542,0.813,5.0,-3.764,1.0,0.033,0.00563,2.26e-06,0.113,0.268,120.734,4.0,,Shock Entertainment,C 2010 Ministry of Pies under exclusive license to Cooking Vinyl Ltd.,1095 +1096,spotify:track:7ngEMpkZuzG2o3tDGbUpJl,Something's Burning,spotify:artist:0WjkBDqno4HbjwNDqyMgVa,Kenny Rogers & The First Edition,spotify:album:4ff0P8SRLnL1ST1gXzEcz6,Greatest Hits,spotify:artist:0WjkBDqno4HbjwNDqyMgVa,Kenny Rogers & The First Edition,1996-01-01,https://i.scdn.co/image/ab67616d0000b273ade939773cce382498f68307,1,7,240200,https://p.scdn.co/mp3-preview/ba4a1005c8df57d18ab64ceaafa6cc9b8cacf3d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USMC17016295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,psychedelic rock,0.441,0.397,9.0,-11.124,1.0,0.0337,0.2,0.0102,0.0595,0.463,94.021,4.0,,Hip-O (UC),"C © 1996 Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 1996 Universal Music Enterprises, a Division of UMG Recordings, Inc.",1096 +1097,spotify:track:3eHopQk0VWyMbX13UdcRdO,Sugar,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:2MNwQ0qxvbMlBeWubrDZzX,V,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2014-08-29,https://i.scdn.co/image/ab67616d0000b273f6439e050ccf1891df058582,1,5,235493,https://p.scdn.co/mp3-preview/f35cfb7e7207a1cf27ab3b0e3e07cb95c91440eb?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71410340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.744,0.783,1.0,-7.077,1.0,0.0337,0.0553,0.0,0.086,0.885,120.042,4.0,,Universal Music LLC,"C (C) 2014 Interscope Records, P (P) 2014 Interscope Records",1097 +1098,spotify:track:4EU30QTeXezhyhmnRSMmZW,Heart And Soul,spotify:artist:47qTcvYlqJGAEsCI7BcENC,T'Pau,spotify:album:7qfAtb6H7YD2u5EkYX7wow,Hits,spotify:artist:47qTcvYlqJGAEsCI7BcENC,T'Pau,2005-01-01,https://i.scdn.co/image/ab67616d0000b27389c2fa0aa374284e1c6fdc51,1,2,256973,https://p.scdn.co/mp3-preview/3c755ce5fe9ae3ea452ba5bece8e19082fde8bfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAAA8700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.431,0.693,5.0,-8.354,1.0,0.0391,0.353,0.00078,0.0448,0.696,180.416,4.0,,EMI Marketing,"C © 2005 Virgin Records Limited, P This Compilation ℗ 2005 Virgin Records Limited",1098 +1099,spotify:track:4MAxWahEbzU8m4bD6mSZg9,You're Sixteen (You’re Beautiful And You’re Mine),spotify:artist:6DbJi8AcN5ANdtvJcwBSw8,Ringo Starr,spotify:album:6zjenDV68SpvM3oEhorTDm,Ringo,spotify:artist:6DbJi8AcN5ANdtvJcwBSw8,Ringo Starr,1973-01-01,https://i.scdn.co/image/ab67616d0000b273493bd0f4bc0e1f3732a75c8d,1,6,169693,https://p.scdn.co/mp3-preview/682223ad0e247d36d0432d958a30ed8e80ea77bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAYE7300312,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,rock drums",0.665,0.629,8.0,-12.852,1.0,0.0441,0.0381,1.84e-05,0.0637,0.856,124.265,4.0,,Parlophone,"C © 1973 EMI Records Ltd, P ℗ 1973 EMI Records Ltd",1099 +1100,spotify:track:6MpEfJa8O9EXQphoFTIeJY,Last Night (feat. Snoop Dogg and Bobby Anthony) - Extended Mix,"spotify:artist:2QFXAOEj2ow8a3xVkD8Ntg, spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:03O1y1yKpBpmUbcTtoya3K","Ian Carey, Snoop Dogg, Bobby Anthony",spotify:album:3Pklmqiujuc8pdmrX5c1Wd,Last Night (feat. Snoop Dogg and Bobby Anthony) [Extended Mix],spotify:artist:2QFXAOEj2ow8a3xVkD8Ntg,Ian Carey,2011-01-25,https://i.scdn.co/image/ab67616d0000b2739701c2f13bb4447753507846,1,1,294375,https://p.scdn.co/mp3-preview/ff589715d2310aba4b1e33918231922fc2d298de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,NLC281011733,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,pop rap,rap,west coast rap,deep r&b",0.82,0.875,4.0,-4.383,0.0,0.11,0.0215,3.77e-06,0.0622,0.918,127.994,4.0,,Spinnin' Records,"C © 2011 Spinnin Records, P ℗ 2011 Spinnin Records",1100 +1101,spotify:track:3lgqsGWU3sYio7ekXqL9sq,Tip Of My Tongue,spotify:artist:4rCLXPaqaUjGa1aHDwkviR,Diesel,spotify:album:0V0PWTd6rkVCa9Kk1FRWoy,Hepfidelity,spotify:artist:4rCLXPaqaUjGa1aHDwkviR,Diesel,1992,https://i.scdn.co/image/ab67616d0000b273bba1aab8966389bad14b6886,1,2,254640,https://p.scdn.co/mp3-preview/3815e32d1d802685735ff5b77b41e12e38697be0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM09200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.658,0.67,4.0,-10.092,1.0,0.0315,0.0175,0.0235,0.0867,0.846,97.93,4.0,,EMI Australia,"C Artwork (C) 1992 EMI Music Australia Pty Limited., P All recordings (P) 1992 EMI Music Australia Pty Limited.",1101 +1102,spotify:track:4FXdIM78OBdw7KIY2jeM8D,Accidentally In Love,spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,spotify:album:2XstwYnZ4pC0O99VCOnfSa,Films About Ghosts: The Best Of...,spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,2003-01-01,https://i.scdn.co/image/ab67616d0000b273e19558a22f9dae46b89231e0,1,17,188386,https://p.scdn.co/mp3-preview/d750bcf524baaca7cf26a2cc343775487298603f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10400291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge,rock",0.555,0.926,7.0,-3.613,1.0,0.0363,0.0484,7.67e-06,0.171,0.771,138.017,4.0,,Universal Music Group,"C © 2003 Geffen Records, P ℗ 2003 Geffen Records",1102 +1103,spotify:track:3JLCBkWHjFNDBuUf0qfOkJ,To The Moon And Back,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:2FSVwM8ysmI2tXIPpBJbfs,Savage Garden,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,1997-03-04,https://i.scdn.co/image/ab67616d0000b2736829cf8da7c5706fc42a3852,1,1,341226,https://p.scdn.co/mp3-preview/3fe63b153143c01b8d4e69e3cf84d3ce6c94877e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop rock",0.59,0.77,0.0,-7.363,0.0,0.0345,0.02,1.26e-05,0.0976,0.347,104.115,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P This Compilation ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",1103 +1104,spotify:track:4Hr1kHiUpbM7xrrxp64hHf,Kids Again - Radio Edit,spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,spotify:album:4sxj4Z8g8stVQ7eQKf0nrg,Live Life Living (Deluxe),spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,2014-07-07,https://i.scdn.co/image/ab67616d0000b273d0e45bb296c00440473ae4f4,1,2,192160,https://p.scdn.co/mp3-preview/61bd65b9765c546ebede66fc431dc14bac6cdf34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBARL1301523,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,uk dance",0.512,0.908,0.0,-3.788,0.0,0.0481,0.00849,0.0,0.33,0.482,127.953,4.0,,Epic,P (P) 2014 Sony Music Entertainment UK Limited,1104 +1105,spotify:track:0zgxPpepVRLg7tsADfboLt,Don't Forget About Us,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:2OFEeb1ruGsR1pARO4oM3C,The Emancipation of Mimi (Ultra Platinum Edition),spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2005-01-01,https://i.scdn.co/image/ab67616d0000b273923a022be6dd466f96aa13a0,1,15,233866,https://p.scdn.co/mp3-preview/ef8a5eb0e85047dc56ba8b278414dcf60cfaec0a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70504581,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.7,0.529,10.0,-6.816,0.0,0.0395,0.0422,0.0,0.101,0.386,143.555,4.0,,Universal Music Group,"C © 2005 Mariah Carey, P ℗ 2005 The Island Def Jam Music Group and Mariah Carey",1105 +1106,spotify:track:5EqQMKUPY0urqvM7oUJohu,Ring Ring Ring,spotify:artist:1Z8ODXyhEBi3WynYw0Rya6,De La Soul,spotify:album:2OQDP2F9pA7bQiQi0YXBKP,"Party Is Goin' On, Vol. 1",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1999-07-28,https://i.scdn.co/image/ab67616d0000b273786f84bc75887df1b28c795e,1,10,247240,,False,0,FR8GV1845710,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,golden age hip hop,hip hop,jazz rap",0.511,0.787,5.0,-9.11,0.0,0.371,0.404,0.0,0.408,0.654,207.966,4.0,,HRB,"C 1999 Hrb, P 1999 Hrb",1106 +1107,spotify:track:1Xi84slp6FryDSCbzq4UCD,Arcade,spotify:artist:3klZnJvYGIbWritVwQD434,Duncan Laurence,spotify:album:7BISGeB7QwhqRIadxuLHfG,Arcade,spotify:artist:3klZnJvYGIbWritVwQD434,Duncan Laurence,2019-03-07,https://i.scdn.co/image/ab67616d0000b273a954408e456d4d9d410f448b,1,1,183624,https://p.scdn.co/mp3-preview/5724cfc4a2428a67cb9068a4552bbc4f3874d6de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,NL1TK1900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dutch pop,0.459,0.331,9.0,-12.603,0.0,0.0421,0.817,0.00104,0.135,0.271,72.023,3.0,,"Universal Music, a division of Universal International Music BV","C © 2019 Spark Records B.V., under exclusive license to Universal Music, a division of Universal International Music B.V., P ℗ 2019 Spark Records B.V., under exclusive license to Universal Music, a division of Universal International Music B.V.",1107 +1108,spotify:track:4oC5fewy8XZsJM6ZQRwR2y,Male Stripper,spotify:artist:5mhyYbgxQFdNMPdDFRm9G4,Man 2 Man,spotify:album:1Nap658T6IJFLEFVnIUvUu,Male Stripper (Retrospective 1983-1990),spotify:artist:5mhyYbgxQFdNMPdDFRm9G4,Man 2 Man,2007-09-17,https://i.scdn.co/image/ab67616d0000b2732036f32fb6c83d2256f3719d,1,1,262160,https://p.scdn.co/mp3-preview/ee08435bdb3ba0f4a275c9f974dcc71e9cfe3e8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,usx9p0737183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hi-nrg,0.668,0.96,4.0,-6.513,1.0,0.0363,0.0253,0.0171,0.0773,0.765,130.598,4.0,,Recca Record,"C (C) 2007 Recca Record, P (P) 2007 Paul Zone",1108 +1109,spotify:track:5t3oszlshIPTzpAwcCMqgw,When You're Looking Like That - Single Remix,spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,spotify:album:6P1sBa0T1fRooA0UTAQfOu,Coast To Coast (Expanded Edition),spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,2000,https://i.scdn.co/image/ab67616d0000b27315f19e3b1fbfc5a2f164fb6a,1,5,232826,https://p.scdn.co/mp3-preview/aa18d47a224bd9cea7c122a22ca3a51cea405fdb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBARL0100059,spotify:user:bradnumber1,2021-11-11T04:16:47Z,boy band,0.597,0.945,6.0,-3.845,1.0,0.0497,0.018,0.0,0.0654,0.939,147.908,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,1109 +1110,spotify:track:592nTDJAy8AucV4KKIDCmA,Generator,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:28q2N44ocJECgf8sbHEDfY,There Is Nothing Left To Lose,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,1999-11-02,https://i.scdn.co/image/ab67616d0000b2731759635c92b6314d3d3c9fe9,1,5,227560,https://p.scdn.co/mp3-preview/cced1a74face8d7cf54b525d4ea68fc10defa2a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRW39900006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.468,0.924,9.0,-3.937,1.0,0.041,0.00112,0.0149,0.337,0.593,152.694,4.0,,RCA Records Label,"P (P) 1999 Roswell Records, Inc.",1110 +1111,spotify:track:2meEiZKWkiN28gITzFwQo5,Into You,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:3OZgEywV4krCZ814pTJWr7,Dangerous Woman,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2016-05-20,https://i.scdn.co/image/ab67616d0000b2735f9393fda71e7df39b34defd,1,4,244453,https://p.scdn.co/mp3-preview/12489dbf9e313aa5a42dcf6e1d145df9b04db8dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USUM71601827,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.623,0.734,9.0,-5.948,1.0,0.107,0.0162,1.75e-06,0.145,0.37,107.853,4.0,,Universal Records,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",1111 +1112,spotify:track:1lHtE5JDCas1EwXhQIMOIj,The Reason,spotify:artist:2MqhkhX4npxDZ62ObR5ELO,Hoobastank,spotify:album:7EtK7XiObsZGF6oBKLrvKH,The Reason,spotify:artist:2MqhkhX4npxDZ62ObR5ELO,Hoobastank,2004-04-27,https://i.scdn.co/image/ab67616d0000b273bb67a149bcd737ff3b5d4f1f,1,8,232800,https://p.scdn.co/mp3-preview/31e2a53851fac8e61f947fd27da327c0493721dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USIR20300704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,pop rock,post-grunge",0.447,0.668,4.0,-4.683,1.0,0.0294,0.0127,0.0,0.152,0.0695,82.904,4.0,,Mercury Records,"C © 2004 UMG Recordings Inc., P ℗ 2004 UMG Recordings Inc.",1112 +1113,spotify:track:2V73TUbn12fdxAWYPIo0be,Money,"spotify:artist:4FCzCS0KEgb0rgySWINItO, spotify:artist:49kB9joPdbpdFRj5tGoTXY, spotify:artist:2L9iHIK8h5HvZe6VXb0aOI","CID, Bahary, The Flying Lizards",spotify:album:1S3Vm6Vy3qQyOP3MlpnLyG,Money,"spotify:artist:4FCzCS0KEgb0rgySWINItO, spotify:artist:49kB9joPdbpdFRj5tGoTXY, spotify:artist:2L9iHIK8h5HvZe6VXb0aOI","CID, Bahary, The Flying Lizards",2018-04-20,https://i.scdn.co/image/ab67616d0000b27394ce32bc57cff109c4266e04,1,1,157920,https://p.scdn.co/mp3-preview/0dac2be8cde7104d6e5c4f881aa875da77702801?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBUM71801235,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bass house,deep groove house,dutch house,edm,electro house,house,pop dance,pop edm,progressive electro house,progressive house,tech house,uk dance,zolo",0.772,0.936,1.0,-4.99,1.0,0.0563,0.0218,0.0119,0.304,0.642,124.973,4.0,,Virgin Records,"C © 2018 Virgin Records Limited, P ℗ 2018 Virgin Records Limited",1113 +1114,spotify:track:2YOuBWIyHgyvHnLMpjzBf2,Sunchyme,spotify:artist:3Eo78i1MPfle0XVjMvia8A,Dario G,spotify:album:6TtZuP1WRvIScmqLlUwet2,Sunchyme,spotify:artist:3Eo78i1MPfle0XVjMvia8A,Dario G,2016-12-02,https://i.scdn.co/image/ab67616d0000b273bca2a5e8a179ad3a0b95e6f8,1,1,235850,https://p.scdn.co/mp3-preview/b06c6f0b5b9ea2536358dd7ca309b72c7d4cba2c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBCFZ1600067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dream trance,eurodance,hip house",0.694,0.977,4.0,-4.553,1.0,0.0734,0.0115,0.1,0.0916,0.333,132.994,4.0,,All Around The World,"C © 2016 All Around The World Limited, P ℗ 2016 All Around The World Limited",1114 +1115,spotify:track:6S8ZXzeXsfCj8qi9179McI,As I Lay Me Down,spotify:artist:3gdIwZY6Q3RXhDteYr4ZvC,Sophie B. Hawkins,spotify:album:2oKbwv9ClTQKWHHTKCqN59,Whaler,spotify:artist:3gdIwZY6Q3RXhDteYr4ZvC,Sophie B. Hawkins,1994-07-21,https://i.scdn.co/image/ab67616d0000b273ae165106095e1e8908e49e44,1,4,248893,https://p.scdn.co/mp3-preview/97891f8a3bd10d058045d6b9365a912698c6b643?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USSM10025061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,new wave pop",0.519,0.737,10.0,-8.7,1.0,0.0437,0.645,1.77e-06,0.271,0.668,82.999,4.0,,Columbia,P 1994 Sony Music Entertainment Inc.,1115 +1116,spotify:track:5FUrkyvMhS4RgJJMTNyOzY,"Baby, I’m Gettin’ Better",spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,spotify:album:2DZIOP38phaslClp6w5sYx,Cohesion,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,2010-01-01,https://i.scdn.co/image/ab67616d0000b27363e9deff8c266754fd39d9ac,1,3,197933,https://p.scdn.co/mp3-preview/f28c5ff28296f1dce2f6d467d4015e6f94345713?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71000167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.389,0.951,0.0,-3.852,1.0,0.168,0.00186,0.0821,0.494,0.354,185.962,4.0,,Universal Music Group,"C © 2010 Universal Music Australia Pty Ltd., P ℗ 2010 Universal Music Australia Pty Ltd.",1116 +1117,spotify:track:4vziJcnB2Qyi9o4nIRUeN7,Now And Then,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:2qQP2NgOoH6HqknnbpJmIk,Now And Then,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,2023-11-02,https://i.scdn.co/image/ab67616d0000b273ccf24b5f25d58914b1321357,1,1,248333,https://p.scdn.co/mp3-preview/8bef0d95078b4326397c55c909144f7f25d5ad37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBUM72203947,spotify:user:bradnumber1,2023-11-07T13:14:18Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.447,0.605,9.0,-4.71,0.0,0.0291,0.227,5.4e-05,0.315,0.307,87.191,4.0,,UMC (Universal Music Catalogue),"C © 2023 Calderstone Productions Limited (a division of Universal Music Group), P ℗ 2023 Calderstone Productions Limited (a division of Universal Music Group)",1117 +1118,spotify:track:6pIpG5tY6fbCtRDoMA7LLS,Don't Lie,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:6Gdt5ogiuJ9knp8Q5148ea,Monkey Business,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2005-01-01,https://i.scdn.co/image/ab67616d0000b27377234f29940be7edb73bff87,1,4,219000,https://p.scdn.co/mp3-preview/ba5ca5d419c30b2b1927023c36ac010bece1d7b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10500766,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.662,0.785,9.0,-5.299,1.0,0.186,0.16,0.0,0.0784,0.604,89.885,4.0,,Universal Music Group,"C © 2005 Interscope Records, P ℗ 2005 Interscope Records",1118 +1119,spotify:track:60C8zGPTdAAmDshHnMuyfc,Pinball Wizard,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:5OISW6z3D02yCZn06mR1or,Tommy (Remastered 2013 Super Deluxe Edition),spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1969-05-23,https://i.scdn.co/image/ab67616d0000b273f8a59db5aa6f701d5ce34db0,1,13,180943,https://p.scdn.co/mp3-preview/439aa511879e085d15322ddf2b6a9f95ce9469a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW6900102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.537,0.716,2.0,-8.766,1.0,0.038,0.0192,0.0,0.245,0.452,122.873,4.0,,UMC (Universal Music Catalogue),"C © 2013 Polydor Ltd. (UK), P This Compilation ℗ 2013 Polydor Ltd. (UK)",1119 +1120,spotify:track:10kcfnWl3qEaKJNGP28AKy,Que Sera,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,spotify:album:4hyKX5gbP5cFSnyMGvHDZG,Que Sera,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,2014-05-02,https://i.scdn.co/image/ab67616d0000b27364cf65aa4e53155070d67745,1,1,210920,https://p.scdn.co/mp3-preview/d9434849a9a42f3b7bd61386ee3c1ffe5f99ee77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUBM01400097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.587,0.813,8.0,-3.201,1.0,0.0483,0.0282,0.0,0.398,0.551,99.935,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,1120 +1121,spotify:track:3lPr8ghNDBLc2uZovNyLs9,Supermassive Black Hole,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,spotify:album:0lw68yx3MhKflWFqCsGkIs,Black Holes and Revelations,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,2006-06-19,https://i.scdn.co/image/ab67616d0000b27328933b808bfb4cbbd0385400,1,3,212439,https://p.scdn.co/mp3-preview/f4fe399267e6093182d576a6c84c0e081c81ff90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBAHT0500593,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern rock,permanent wave,rock",0.668,0.921,7.0,-3.727,1.0,0.0439,0.0492,0.00517,0.0877,0.782,120.0,4.0,,Warner Records,"C © 2006 A&E Records Limited, P ℗ 2006 A&E Records Limited",1121 +1122,spotify:track:6nek1Nin9q48AVZcWs9e9D,Paradise,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:2R7iJz5uaHjLEVnMkloO18,Mylo Xyloto,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2011-10-24,https://i.scdn.co/image/ab67616d0000b273de0cd11d7b31c3bd1fd5983d,1,3,278719,https://p.scdn.co/mp3-preview/1039fd50eaca0a268a2378a6c9244bf85c8b961f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,GBAYE1101143,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.449,0.585,5.0,-6.761,1.0,0.0268,0.0509,8.75e-05,0.0833,0.212,139.631,4.0,,Parlophone UK,"C © 2011 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2011 Parlophone Records Ltd, a Warner Music Group Company",1122 +1123,spotify:track:5cQscm1d6XOrBTnm32NXRE,All Of Us,"spotify:artist:6n28c9qs9hNGriNa72b26u, spotify:artist:4TNVwxe6cso3F2sGxA2KLG","PNAU, Ollie Gabriel",spotify:album:1D0ZMABP9fW1ujVbWQNwKu,All Of Us,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,2019-08-27,https://i.scdn.co/image/ab67616d0000b2730df6c409489297c118ed89ce,1,1,182986,https://p.scdn.co/mp3-preview/f03ec386554453092cd61279eb8b516054a9374a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AUNV01900298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,aussietronica,australian dance,australian electropop",0.742,0.904,0.0,-4.603,0.0,0.0939,0.301,0.000919,0.0928,0.322,122.093,4.0,,etcetc AU,"C (C) 2019 etcetc Music Pty Ltd, P (P) 2019 etcetc Music Pty Ltd",1123 +1124,spotify:track:76709jfVPvKWp7ChPQjCk7,"Yes Sir, I Can Boogie",spotify:artist:4dn4KQgTE4P3jrwa3iIVzQ,Baccara,spotify:album:4p1GnIVsPGw6p7Gpc8W2Hh,More Monty,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1998-11-04,https://i.scdn.co/image/ab67616d0000b273c6c0aab777bdccc396baebad,1,10,272000,https://p.scdn.co/mp3-preview/c458132d426f084da790271afa0a5af86c43fa86?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,DEC760000065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.452,0.755,2.0,-8.344,1.0,0.0747,0.113,0.0,0.151,0.508,122.501,4.0,,RCA Victor,"P (P) 1998, BMG Entertainment",1124 +1125,spotify:track:1tMi57U5Nkk6qRZSNwbzQr,So You Win Again,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,spotify:album:2MdCe2CS9EcdJ9V20TKzxo,Every 1's a Winner,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,1978,https://i.scdn.co/image/ab67616d0000b273b179d40cdaa53d103df29e28,1,5,271426,https://p.scdn.co/mp3-preview/a00898d4689c606df72c3bd1f8a081584a2994e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAYE7700037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.706,0.538,9.0,-9.188,1.0,0.0406,0.526,0.14,0.388,0.816,104.9,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",1125 +1126,spotify:track:2eJnuWeovO5DBmPgGo6MEw,Do You Wanna Touch Me? (Oh Yeah!),spotify:artist:61zv3hX7l838ZyhaDyAx8S,Gary Glitter,spotify:album:2owLGCke845WmyLOeGtU6E,Touch Me,spotify:artist:61zv3hX7l838ZyhaDyAx8S,Gary Glitter,1973,https://i.scdn.co/image/ab67616d0000b2733ac5b1ead7ba069910a066b5,1,7,198520,https://p.scdn.co/mp3-preview/0f03ba42a8a499e9878ce062592ecd4b897f1724?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBCQV7200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.523,0.776,4.0,-6.592,1.0,0.175,0.00408,0.000655,0.111,0.524,126.42,4.0,,Snapper Music,"C (C) 2009 Snapper Music, P (P) 1973 Snapper Music",1126 +1127,spotify:track:5M9jOReAKGZ2AttVefFjTY,Don't Look Down (feat. Usher),"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:23zg3TcAtWQy7J6upgbUnj","Martin Garrix, USHER",spotify:album:7e4eCJT5ON1FpJD5Si341e,Don't Look Down (feat. Usher),spotify:artist:60d24wfXkVzDSfLS6hyCjZ,Martin Garrix,2015-03-17,https://i.scdn.co/image/ab67616d0000b273de034bbdbe12c86285356121,1,1,223139,https://p.scdn.co/mp3-preview/210545714e3cca0a42fe62dafcf03e028dc465f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,NLZ541500175,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch edm,edm,pop,pop dance,progressive house,atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.575,0.831,0.0,-5.972,1.0,0.0356,0.00406,0.000449,0.111,0.377,127.991,4.0,,Spinnin' Records/RCA Records,"P (P) 2015 Spinnin' Records, under exclusive license to RCA Records",1127 +1128,spotify:track:0vu0DKEy77Me6DgiHD2TYl,Poison,spotify:artist:6jaSo7MeMbXQCUOrNCF8tj,Bardot,spotify:album:18aXcvMKb48SnyuvlQRdNr,Bardot,spotify:artist:6jaSo7MeMbXQCUOrNCF8tj,Bardot,2000-05-01,https://i.scdn.co/image/ab67616d0000b273f74ea105f856bd0ede5b8bb4,1,4,200200,https://p.scdn.co/mp3-preview/df0987b43a3fda506d07ac0da2e93662c18558d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA00000150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.81,0.795,11.0,-4.485,0.0,0.0591,0.101,0.0,0.0564,0.831,101.051,4.0,,WM Australia,"C 2001 5 DIVAS PTY LTD / WARNER MUSIC AUSTRALIA. A WARNER MUSIC GROUP COMPANY., P 2001 5 DIVAS PTY LTD / WARNER MUSIC AUSTRALIA. A WARNER MUSIC GROUP COMPANY.",1128 +1129,spotify:track:3FtYbEfBqAlGO46NUDQSAt,Electric Feel,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,spotify:album:6mm1Skz3JE6AXneya9Nyiv,Oracular Spectacular,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,2007-12-14,https://i.scdn.co/image/ab67616d0000b2738b32b139981e79f2ebe005eb,1,4,229640,https://p.scdn.co/mp3-preview/b288d1b3245bfa82243267c77fe152dbd696f3c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USSM10702131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,indie rock,indietronica,modern rock,rock",0.763,0.803,1.0,-3.713,1.0,0.0351,0.0709,0.285,0.348,0.561,103.04,3.0,,Red Ink/Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT,1129 +1130,spotify:track:0ydftCuqBxNoFTx3BVtEc2,Just Say So,"spotify:artist:5ny07v4RRsvdv1uQVplMry, spotify:artist:0Chxmm4XMM87mJOHvyiUzL","Brian McFadden, Kevin Rudolf",spotify:album:0QifgeW8s36rg16KJn1Duk,Wall Of Soundz,spotify:artist:5ny07v4RRsvdv1uQVplMry,Brian McFadden,2010-01-01,https://i.scdn.co/image/ab67616d0000b273f06270dab41aa88df55c5533,1,1,196866,https://p.scdn.co/mp3-preview/4cccb65ef401485691bee0eb6d5b7533f036e2f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUUM71000441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,wrestling",0.579,0.866,0.0,-6.345,1.0,0.0331,0.0513,0.0,0.259,0.568,126.083,3.0,,Universal Music Australia Pty. Ltd.,"C © 2010 BMF Records, P ℗ 2010 BMF Records",1130 +1131,spotify:track:07AjyDeE85pDr4Dj8BzgWB,I'm Shakin',spotify:artist:4FZ3j1oH43e7cukCALsCwf,Jack White,spotify:album:6eSJ0lu0uwtiqXkP7Qrrno,Blunderbuss,spotify:artist:4FZ3j1oH43e7cukCALsCwf,Jack White,2012-04-20,https://i.scdn.co/image/ab67616d0000b27331521abf3574d6f66084f366,1,8,180173,https://p.scdn.co/mp3-preview/565f930ad96e1aafe04d125c7a70236a85e0ed08?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USSM11200656,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,blues rock,garage rock,garage rock revival,indie rock,modern blues rock,modern rock,punk blues,rock",0.586,0.781,11.0,-10.052,0.0,0.235,0.0142,0.00105,0.0673,0.755,80.753,4.0,,Third Man Records/Columbia,P (P) 2012 Third Man Records,1131 +1132,spotify:track:18HpAFKulQo3RzTvNxaFIe,Star Trekkin' - Original Radio Version,spotify:artist:0CdjGDoP2UyhV0pXKeSaPU,The Firm,spotify:album:7ABiFaeExzyT992eaBHdEA,Star Trekkin' - Single,spotify:artist:0CdjGDoP2UyhV0pXKeSaPU,The Firm,1986,https://i.scdn.co/image/ab67616d0000b2734c177fea23b31ae354156c08,1,1,215806,,False,0,NLG620544429,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.517,0.634,9.0,-12.302,1.0,0.096,0.0586,1.16e-06,0.303,0.876,146.149,4.0,,Bark Records,"C (C) 1986 Bark Records, P (P) 1987 Bark Records",1132 +1133,spotify:track:38TXeCvUUqf3PeoPvnERV6,Like The Way I Do,spotify:artist:01Ppu7N8uYJI8SAONo2YZA,Melissa Etheridge,spotify:album:2e4dBdMQypTg53lsxOYj5M,Greatest Hits - The Road Less Traveled,spotify:artist:01Ppu7N8uYJI8SAONo2YZA,Melissa Etheridge,2005,https://i.scdn.co/image/ab67616d0000b2730e2a04b8d774fa397654c084,1,3,324760,https://p.scdn.co/mp3-preview/81e5c05aaff0d04af66f222f8d412ece0f4166b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR28800047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ectofolk,heartland rock,lilith,pop rock,singer-songwriter",0.591,0.931,2.0,-4.84,0.0,0.0557,0.0215,0.0,0.122,0.672,101.548,4.0,,Island Records,"C © 2007 The Island Def Jam Music Group, P ℗ 2007 The Island Def Jam Music Group",1133 +1134,spotify:track:09ktDKfoIaTmPbDMIJycYp,Cocoon,spotify:artist:1hzfo8twXdOegF3xireCYs,Milky Chance,spotify:album:3ed4dqaTpnoZHiwAujDizD,Blossom,spotify:artist:1hzfo8twXdOegF3xireCYs,Milky Chance,2017-03-17,https://i.scdn.co/image/ab67616d0000b2735c9ea0bbda92238039ff9a79,1,9,255160,https://p.scdn.co/mp3-preview/502d4a60341c28db949b0cdd7f2a2157e1885114?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEVP21600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german pop,modern rock",0.743,0.659,10.0,-6.755,1.0,0.0343,0.0998,0.00028,0.0622,0.804,114.033,4.0,,Universal Music Australia Pty. Ltd.,"C © 2017 Muggelig Records GmbH, P ℗ 2017 Muggelig Records GmbH",1134 +1135,spotify:track:3WimzuWXQt4bnd4jcv0Gov,Instant Replay,spotify:artist:1HvcqyRLS9nF8hAbTWOqpr,Dan Hartman,spotify:album:3Sv1qO5IxLep7mOBuQ8fi7,Keep The Fire Burnin',spotify:artist:1HvcqyRLS9nF8hAbTWOqpr,Dan Hartman,1994,https://i.scdn.co/image/ab67616d0000b2739f6e31eee21cc9a4c57c2cae,1,9,320333,https://p.scdn.co/mp3-preview/2baab3e0bcb7a7e6f2030600ce066be8041a2bad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USSM17801028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.754,0.724,9.0,-6.058,0.0,0.0656,0.0158,0.000405,0.0611,0.954,128.925,4.0,,Chaos,"P (P) 1978, 1994 SONY BMG MUSIC ENTERTAINMENT/ (P) 1984 MCA Records",1135 +1136,spotify:track:4RhKJtUfmeONyohbtIDrSA,Hammerhead,spotify:artist:4v0Hh2bdIAJnaUqAOipfYs,James Reyne,spotify:album:4E84dVAoEfOP6wdKucheO4,James Reyne,spotify:artist:4v0Hh2bdIAJnaUqAOipfYs,James Reyne,1988,https://i.scdn.co/image/ab67616d0000b2730829c19f73f993c8a933e166,1,2,286840,https://p.scdn.co/mp3-preview/5893d1818d7e8659dc1d70ad12aa0a36e0fb83ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USCA28800461,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.67,0.476,5.0,-11.551,0.0,0.0301,0.0775,0.0,0.147,0.548,120.33,4.0,,Capitol,"C © 2014 Capitol Records, Inc., P ℗ 1988 Capitol Records, Inc.",1136 +1137,spotify:track:17yReVjsDb7Hlvjqz6jhDm,I Don't Want to Be,spotify:artist:5DYAABs8rkY9VhwtENoQCz,Gavin DeGraw,spotify:album:75UQQb5KzyAVOfUUxWBjSe,Chariot,spotify:artist:5DYAABs8rkY9VhwtENoQCz,Gavin DeGraw,2003-01-01,https://i.scdn.co/image/ab67616d0000b273be4d59ea0836a886e2db0410,1,8,219080,https://p.scdn.co/mp3-preview/3ba4b36bf678f7b4c010ca214a348cb124e37739?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USJAY0300148,spotify:user:bradnumber1,2021-11-11T04:16:28Z,"neo mellow,pop rock",0.435,0.887,0.0,-3.934,0.0,0.0846,0.0089,0.0,0.161,0.463,154.451,4.0,,J Records,P (P) 2003 J Records a unit of SONY BMG MUSIC ENTERTAINMENT (UK) Limited.,1137 +1138,spotify:track:0APYlBDN2CGNzXzKbzYlE7,The Greatest Show,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:1oqnHxrKI3Gq8MKgAGDtMr,The Greatest Showman: Reimagined (Deluxe),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-12-08,https://i.scdn.co/image/ab67616d0000b273c4e9d12d9ccdd7e48d2a0329,1,1,174306,https://p.scdn.co/mp3-preview/5e386314978c315a0e57d52d2f74ce2fc27f3ece?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USAT21811534,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.546,0.839,6.0,-5.365,0.0,0.0784,0.00546,0.0,0.382,0.491,77.009,4.0,,Atlantic Records,"C © 2018 This compilation Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation., P ℗ 2018This compilation Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation.",1138 +1139,spotify:track:45S5WTQEGOB1VHr1Q4FuPl,Golden,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,spotify:album:7xV2TzoaVc0ycW7fwBwAml,Fine Line,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,2019-12-13,https://i.scdn.co/image/ab67616d0000b27377fdcfda6535601aff081b6a,1,1,208906,https://p.scdn.co/mp3-preview/9f9a006b49587b8a7a916ea098af0a465e9a5da0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM11912586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.448,0.838,4.0,-5.257,0.0,0.0557,0.21,0.000131,0.131,0.254,139.863,4.0,,Columbia,"P (P) 2019 Erskine Records Limited, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",1139 +1140,spotify:track:5viJfHHj5qnP55zoEWMh97,2step (feat. Budjerah),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:4hOb2WdQMQWyG6RQAhR7iE","Ed Sheeran, Budjerah",spotify:album:3wd91jE2MWmMsHjAP4TA7v,2step (feat. Budjerah),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:4hOb2WdQMQWyG6RQAhR7iE","Ed Sheeran, Budjerah",2022-05-11,https://i.scdn.co/image/ab67616d0000b273a0faae7441418599c90c341c,1,1,153426,https://p.scdn.co/mp3-preview/9cda07d64801124b8f310c033d8a2f1f5ac10b2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAHS2200613,spotify:user:bradnumber1,2022-11-02T00:26:40Z,"pop,singer-songwriter pop,uk pop,australian indigenous music,australian r&b",0.727,0.621,4.0,-4.784,0.0,0.0555,0.212,0.0,0.114,0.565,94.958,4.0,,Atlantic Records UK,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2022 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2022 Warner Music UK Limited",1140 +1141,spotify:track:7pKfPomDEeI4TPT6EOYjn9,Imagine - Remastered 2010,spotify:artist:4x1nvY2FN8jxqAFA0DA02H,John Lennon,spotify:album:0xzaemKucrJpYhyl7TltAk,Imagine,spotify:artist:4x1nvY2FN8jxqAFA0DA02H,John Lennon,1971-09-09,https://i.scdn.co/image/ab67616d0000b27399581550ef9746ca582bb3cc,1,1,187866,https://p.scdn.co/mp3-preview/051f8a21cb606b65a4e1b475cff6733a2297fe9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBAYE1000769,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,rock",0.547,0.257,0.0,-12.358,1.0,0.0252,0.907,0.183,0.0935,0.169,75.752,4.0,,EMI Catalogue,"C © 2010 EMI Records Ltd, P ℗ 2010 EMI Records Ltd",1141 +1142,spotify:track:6imJcLXGERlMIB6dCLUwII,Unpretty - Radio Version,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,spotify:album:6bTUTKQbRd293kWQoy44Bw,The Best Of TLC,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,2007-08-20,https://i.scdn.co/image/ab67616d0000b2738364e785cf146e5076ae98a6,1,15,240133,https://p.scdn.co/mp3-preview/560e9c491253944b92f1d8298010f2369a8c0b01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF29900927,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,girl group,hip pop,r&b,urban contemporary",0.66,0.623,7.0,-6.321,1.0,0.0421,0.00111,0.000399,0.127,0.564,88.683,4.0,,LaFace Records,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (UK) LIMITED,1142 +1143,spotify:track:7yFXSCTzGmwR8AYbCxmtiS,Victims of Love,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:542tacdtTzqDY7BsZ9k11p,Good Morning Revival,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2008-05-20,https://i.scdn.co/image/ab67616d0000b273cbb5aebf323058ff06224338,1,6,225200,https://p.scdn.co/mp3-preview/27f9774481b6e2c82247a59dfba260549a04e17d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USSM10607448,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.654,0.96,1.0,-2.604,0.0,0.0838,0.0511,0.0,0.2,0.522,130.007,4.0,,Epic/Daylight,"P (P) 2007 Epic Records, a division of Sony Music Entertainment",1143 +1144,spotify:track:7clUVcSOtkNWa58Gw5RfD4,Speed of Sound,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:4E7bV0pzG0LciBSWTszra6,X&Y,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2005-06-07,https://i.scdn.co/image/ab67616d0000b2734e0362c225863f6ae2432651,1,7,287906,https://p.scdn.co/mp3-preview/59d768aed0018df7d91e96361f281ec323ce26a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBAYE0500602,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.514,0.898,11.0,-6.765,0.0,0.0577,0.00488,0.0345,0.0746,0.353,123.067,4.0,,Parlophone Records Limited,"C © 2005 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2005 Parlophone Records Ltd, a Warner Music Group Company",1144 +1145,spotify:track:7G4wLX9IWwefQmwru87qB1,Take My Heart,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,spotify:album:2uNFpEVey5RsxzTdoDmjiz,Beautiful Lies (Deluxe),spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,2016-03-25,https://i.scdn.co/image/ab67616d0000b273ceb1cccb864424fc5c2bc1e7,1,9,251960,https://p.scdn.co/mp3-preview/da6e6977a82236e5f5c2c4dc2a5befc2f83a55c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBAHS1600027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,uk pop,viral pop",0.561,0.487,0.0,-7.594,0.0,0.0338,0.525,0.0,0.0867,0.152,119.856,4.0,,Atlantic Records UK,"C © 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company, P ℗ 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company",1145 +1146,spotify:track:5ouMGeOtmeHUfneTwgjNWC,Single Girl,spotify:artist:5Xh0e6sCvMXJUNVa4oynvx,Sandy Posey,spotify:album:3Lzznx139RsWiksHBUR9zH,I Will Follow Him - The Best Of,spotify:artist:5Xh0e6sCvMXJUNVa4oynvx,Sandy Posey,2009-09-01,https://i.scdn.co/image/ab67616d0000b273d14fc1dc1c827c1ea6e8b45c,1,2,147426,https://p.scdn.co/mp3-preview/b4ab70b6f060896c4241d58ddbdf577e254eebe9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USA370946186,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.621,0.429,10.0,-14.69,1.0,0.0296,0.165,0.000155,0.0565,0.861,110.413,4.0,,"Nifty Music, Inc.",C (C) 2009 Goldenlane Records,1146 +1147,spotify:track:0XoTz3HTFkhyji6BHGkjNF,Good Morning Starshine,spotify:artist:3kn0edxse3lzsrrtrNTtyU,Oliver,spotify:album:6TgxGo8P5phqn5Xh8CUSSH,The Dish - Music From The Motion Picture,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2001-01-01,https://i.scdn.co/image/ab67616d0000b2733eb155bcfb588a962e3334c9,1,5,221133,https://p.scdn.co/mp3-preview/69a2bd8acd98825376463f0faa81ce977c0be4ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,US3M50122605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.694,0.541,11.0,-7.91,1.0,0.0288,0.394,1.26e-05,0.0525,0.862,125.012,4.0,,Varese Sarabande,"C © 2001 Warner Bros., P This Compilation ℗ 2001 Warner Bros., under exclusive license to Varese Sarabande Records",1147 +1148,spotify:track:29l9kMr8pFN3Fk2NpvGOb2,Fancy,"spotify:artist:5yG7ZAZafVaAlMTeBybKAL, spotify:artist:25uiPmTg16RbhZWAqwLBy5","Iggy Azalea, Charli xcx",spotify:album:4z4Pgh0fNUQkmGP4K1XxDb,Reclassified,spotify:artist:5yG7ZAZafVaAlMTeBybKAL,Iggy Azalea,2014-10-01,https://i.scdn.co/image/ab67616d0000b273addae77268e3b66b310c8296,1,10,199938,https://p.scdn.co/mp3-preview/077ffd490b5c65dfdcdc9d77b2a4cb607a8563b9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,40,GBUM71400597,spotify:user:bradnumber1,2022-11-16T13:23:24Z,"australian hip hop,dance pop,pop,art pop,candy pop,metropopolis,pop,uk pop",0.912,0.716,10.0,-4.141,0.0,0.0698,0.0904,0.0,0.0491,0.377,94.981,4.0,,EMI,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",1148 +1149,spotify:track:3stnrhzN0lzZFskbaZ5sEw,Scandalous - U.S. Radio Edit,spotify:artist:6csA2rxNLkQJXeEa7lyGXn,Mis-Teeq,spotify:album:7fw8rAhWi3UWw92jgemhbZ,Mis-Teeq,spotify:artist:6csA2rxNLkQJXeEa7lyGXn,Mis-Teeq,2004-07-13,https://i.scdn.co/image/ab67616d0000b273ddd16a8e54ab44bf669364e6,1,1,238840,https://p.scdn.co/mp3-preview/7ceba98390d369914e187aa97810de9ff5e16c3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAWV0403561,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,uk garage",0.734,0.668,0.0,-3.935,0.0,0.0349,0.0526,0.0,0.0925,0.651,99.971,4.0,,Reprise,"C © 2004 Twenty-First Artists Limited, under exclusive license to Reprise Records for the U.S., P ℗ 2004 Twenty-First Artists Limited, under exclusive license to Reprise Records for the U.S.",1149 +1150,spotify:track:6LsAAHotRLMOHfCsSfYCsz,If I Can't Have You,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:1J2BrRxtQjVUa7X9Ne99xD,If I Can't Have You,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2019-05-03,https://i.scdn.co/image/ab67616d0000b273625acd26e0e455312667565f,1,1,190800,https://p.scdn.co/mp3-preview/be4b71dca3d80f25dae916e12dad017f263d5f57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM71907349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.69,0.809,2.0,-4.198,1.0,0.0603,0.524,0.0,0.147,0.864,123.912,4.0,,Island Records,"C © 2019 Island Records, a division of UMG Recordings, Inc., P ℗ 2019 Island Records, a division of UMG Recordings, Inc.",1150 +1151,spotify:track:3a1eJRucXOtKZxNx5BVXMt,Use Somebody,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:71iOOq3JusATRJZxIDzo6N,Only By The Night,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2008-09-23,https://i.scdn.co/image/ab67616d0000b2737a29dcd8a4b8b1537b6ce42b,1,4,230760,https://p.scdn.co/mp3-preview/6b0e4d00b02ff767f436c2c43f9f8b2a12b35472?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10800301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.276,0.715,0.0,-5.356,1.0,0.0432,0.00552,0.000417,0.201,0.173,137.028,4.0,,RCA Records Label,"C (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",1151 +1152,spotify:track:1FK2eVZehS2SzBjwrsQCI5,Midnight In Moscow,spotify:artist:0QyB38XO00qX8Zc0EFzN4w,Kenny Ball,spotify:album:2tHSEmZZ7Zn87QKnpzuqHv,Greatest Hits,spotify:artist:0QyB38XO00qX8Zc0EFzN4w,Kenny Ball,2000-04-11,https://i.scdn.co/image/ab67616d0000b2735fa4b47dca8e26da85cb9361,1,4,180013,https://p.scdn.co/mp3-preview/229576b1755d3ccf416f90aee3029672441db67a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6100033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dixieland,new orleans jazz",0.53,0.402,5.0,-14.117,0.0,0.0338,0.681,0.964,0.283,0.915,166.266,4.0,,Sanctuary Records,"C © 1997 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1997 Sanctuary Records Group Ltd., a BMG Company",1152 +1153,spotify:track:4sUlsy0tPv9n5nqrqeA0lE,Magic Man,spotify:artist:34jw2BbxjoYalTp8cJFCPv,Heart,spotify:album:2N0AgtWbCmVoNUl2GN1opH,Dreamboat Annie,spotify:artist:34jw2BbxjoYalTp8cJFCPv,Heart,1975,https://i.scdn.co/image/ab67616d0000b2738e8c08ca2feb999bb84f05e6,1,1,328360,https://p.scdn.co/mp3-preview/b62b8c45c61ad7ca76f8081aa641bf70b07fe178?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USCA28600005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,new wave pop,rock,singer-songwriter,soft rock",0.435,0.444,0.0,-12.816,1.0,0.0336,0.159,0.000697,0.457,0.734,103.817,4.0,,Capitol Records,"C © 1976 Capitol Records, LLC, P ℗ 1976 Capitol Records, LLC",1153 +1154,spotify:track:4dHRp03oxqJQfjGU8ECo7v,Paint The Town Red,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,spotify:album:5DQOvr3OGVd2Zq7C5H1089,Paint The Town Red,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,2023-08-03,https://i.scdn.co/image/ab67616d0000b2735095063d561e992c06cf1d8c,1,1,231750,https://p.scdn.co/mp3-preview/b66e7f70e9ad3a80087348f964d7e121df32c097?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC12301713,spotify:user:bradnumber1,2023-09-12T21:17:07Z,"dance pop,pop",0.841,0.558,2.0,-8.519,0.0,0.246,0.255,6.5e-06,0.0955,0.746,99.959,4.0,,Kemosabe Records/RCA Records,P (P) 2023 Kemosabe Records/RCA Records,1154 +1155,spotify:track:2hvOsGJc6qll4WzW8Ljqc3,Brass in Pocket - 2006 Remaster,spotify:artist:0GByy3DcfbQwDvXGCWmzv9,Pretenders,spotify:album:4oDYsMBe7KtOu12VNMO75k,Pretenders (Expanded & Remastered),spotify:artist:0GByy3DcfbQwDvXGCWmzv9,Pretenders,1980-01-11,https://i.scdn.co/image/ab67616d0000b273845ac9df560e0c4690a86239,1,10,185960,https://p.scdn.co/mp3-preview/d515eb9a014e53e4e9efa3add6ab24420de21115?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAHT0600747,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,rock,soft rock",0.751,0.703,9.0,-5.687,1.0,0.0287,0.368,0.00123,0.196,0.907,97.931,4.0,,WM UK,"C © 2006 Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2006 Rhino Entertainment Company, a Warner Music Group Company",1155 +1156,spotify:track:69ll8sfAt0jH2978X8lI56,A million little colors,spotify:artist:7fqZEWyLeCpydzNuWdym5L,Vader the Villin,spotify:album:65bg8g2gAxEgDijNwpZCKL,A million little colors,spotify:artist:7fqZEWyLeCpydzNuWdym5L,Vader the Villin,2020-11-09,https://i.scdn.co/image/ab67616d0000b27386267fa2795bdfd3dd385944,1,1,151536,https://p.scdn.co/mp3-preview/472a40940fecf3fa9edc6d074620407adaa22fcd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZNWQ2066232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.725,0.729,6.0,-8.239,0.0,0.0283,0.0226,0.000572,0.363,0.542,128.048,4.0,,710867 Records DK,"C 2020 710867 Records DK, P 2020 710867 Records DK",1156 +1157,spotify:track:3Pnhzf3Knhdsavx0VM2ZmG,Island In The Sun,spotify:artist:3jOstUTkEu2JkjvRdBA5Gu,Weezer,spotify:album:2hDiTEsKePTnDcvKEuLizk,Weezer (Green Album),spotify:artist:3jOstUTkEu2JkjvRdBA5Gu,Weezer,2001-05-15,https://i.scdn.co/image/ab67616d0000b27349052c8767d68e177fb704a0,1,4,200306,https://p.scdn.co/mp3-preview/521139742aef149a3d58924c1e9dd6f1ff6b816a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10110358,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern power pop,modern rock,permanent wave,rock",0.654,0.81,4.0,-6.26,0.0,0.0288,0.00719,0.00251,0.165,0.661,114.623,4.0,,Universal Music Group,"C © 2001 Geffen Records Inc., P ℗ 2001 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",1157 +1158,spotify:track:0Oa9Qtd0FuhcmLi3sWTF9F,Papa Don't Preach,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,22,269573,https://p.scdn.co/mp3-preview/c1bedf63bd43415d1a20d692509e8ed04d62599c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USWB10903619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.796,0.908,5.0,-3.523,0.0,0.0326,0.553,0.0,0.04,0.962,121.975,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",1158 +1159,spotify:track:3JjY2L2bqql54j1SjnjQ23,(Can't Live Without Your) Love And Affection - Remastered 2017,spotify:artist:5jJcbGPjjyEhAoU02ynHaA,Nelson,spotify:album:3bF75h2NG3y918xMulJ2UI,After The Rain (Remastered),spotify:artist:5jJcbGPjjyEhAoU02ynHaA,Nelson,1990-06-26,https://i.scdn.co/image/ab67616d0000b27343e681f8ce71d1cd113d10a9,1,1,236435,https://p.scdn.co/mp3-preview/848ae43a4b5c0e9850d147251d716e9c6d2abddf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USUM71703334,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam metal,0.541,0.904,1.0,-6.384,1.0,0.0404,0.0423,0.0,0.0589,0.833,121.386,4.0,,Geffen,"C © 1990 Geffen Records, P ℗ 2017 Geffen Records",1159 +1160,spotify:track:0wWXcZlRjfetNmJwcfGN5I,Time to Pretend,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,spotify:album:0tn4OkXyDMemo4zWthSdu0,Oracular Spectacular,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,2008-02-11,https://i.scdn.co/image/ab67616d0000b273881c6a903ecc697df91d5d44,1,1,262853,https://p.scdn.co/mp3-preview/cea2d1f0e170d9fa339cf16b78fc07aa6c5d9d43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USSM10705286,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,indie rock,indietronica,modern rock,rock",0.457,0.936,2.0,-3.238,1.0,0.0474,9.31e-05,0.161,0.234,0.47,100.98,3.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT,1160 +1161,spotify:track:5Ug4FDeNl30GHSATrz0shq,Pleasure And Pain,spotify:artist:5t06MTkDD3yr5LVs3YFLQC,Divinyls,spotify:album:4Yz03wMtt5EPE7J29PPB0l,Essential,"spotify:artist:5t06MTkDD3yr5LVs3YFLQC, spotify:artist:2c0pcpdtdPQR43bR4dLh1A","Divinyls, Michael Chapman",1991-01-01,https://i.scdn.co/image/ab67616d0000b2739115764f90ac6f121eb897bc,1,1,232000,https://p.scdn.co/mp3-preview/16e42cad6a833b736b8b4adcd4b0638557c80231?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USCH38500004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new wave pop",0.652,0.766,2.0,-8.556,0.0,0.03,0.16,0.0,0.23,0.774,135.689,4.0,,Chrysalis\EMI Records (USA),"C © 1991 Capitol Records, LLC, P ℗ 1991 Capitol Records, LLC",1161 +1162,spotify:track:4ECNtOnqzxutZkXP4TE3n3,Separate Ways (Worlds Apart),spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,spotify:album:2EFUNYmwxe0AOGxBORrfaw,Frontiers,spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,1983-02-22,https://i.scdn.co/image/ab67616d0000b273b9021ad16733196aacf253c1,1,1,323706,https://p.scdn.co/mp3-preview/9de256f2fe26c2e636c807281e4741f1b0ca9ab7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USSM18300106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,rock,soft rock",0.451,0.962,0.0,-3.947,1.0,0.0739,0.0187,3.19e-06,0.277,0.376,131.438,4.0,,Columbia/Legacy,P (P) 1983 Sony Music Entertainment,1162 +1163,spotify:track:7GCNh1ibQiae8aimaEUOFq,Galveston - Remastered 2001,spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,spotify:album:4KmD4CyCqPJMtJqqX2eysq,Galveston (Remastered),spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,1969,https://i.scdn.co/image/ab67616d0000b27375d9b195228c6bd0586f4236,1,1,161066,https://p.scdn.co/mp3-preview/c7221042d70d06bb12952d41da3b8d297f05ee8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USCN10100748,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,arkansas country,classic country pop,folk rock,mellow gold,nashville sound,singer-songwriter,soft rock",0.526,0.52,5.0,-8.918,1.0,0.0296,0.202,0.000329,0.156,0.675,118.404,4.0,,Capitol Nashville,"C © 2001 Capitol Records Nashville, P ℗ 2001 Capitol Records Nashville",1163 +1164,spotify:track:2vwlzO0Qp8kfEtzTsCXfyE,Wrecking Ball,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:3RDqXDc1bAETps54MSSOW0,Bangerz (Deluxe Version),spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2013-10-04,https://i.scdn.co/image/ab67616d0000b2736b18d0490878750cd69abf2c,1,6,221360,https://p.scdn.co/mp3-preview/e174e5edd688f7ae112ce20b83741e28367d37b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USRC11301214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.53,0.422,5.0,-6.262,1.0,0.0342,0.407,0.0,0.107,0.349,119.964,4.0,,RCA Records Label,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",1164 +1165,spotify:track:5ulWFlVXWeO0Afqf2dyHnY,Lost & Not Found,"spotify:artist:3jNkaOXasoc7RsxdchvEVq, spotify:artist:7qevodTHcV0rtg9O7ih6nn","Chase & Status, Louis Mattrs",spotify:album:5gWfcBhMIrPxudHnnMXSdX,Brand New Machine,spotify:artist:3jNkaOXasoc7RsxdchvEVq,Chase & Status,2013-01-01,https://i.scdn.co/image/ab67616d0000b27300bf4bb8a60094c795be4f1a,1,9,253920,https://p.scdn.co/mp3-preview/ab44609f1cc5f367464456b77d0ecd290e6ae432?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBUM71303574,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dancefloor dnb,drum and bass,uk dance,uk contemporary r&b",0.501,0.933,6.0,-4.611,0.0,0.0397,0.000595,0.00561,0.256,0.171,139.978,4.0,,EMI,"C © 2013 Chase & Status, under exclusive licence to Mercury Records Limited, P ℗ 2013 Chase & Status, under exclusive licence to Mercury Records Limited",1165 +1166,spotify:track:38MbUy2C0FLv6exayPlImu,Midnight (The Hanging Tree),"spotify:artist:3qoTlYFOahAlAh9ee3qnbs, spotify:artist:0L4gqdrMNbRIbNKzgcBXG6, spotify:artist:2KgiNo5JQEyIQdGv2Wyh4R","HOSH, 1979, Jalja",spotify:album:6YzV3Syw4CNX3R9IaTfnSh,Midnight (The Hanging Tree),"spotify:artist:3qoTlYFOahAlAh9ee3qnbs, spotify:artist:0L4gqdrMNbRIbNKzgcBXG6, spotify:artist:2KgiNo5JQEyIQdGv2Wyh4R","HOSH, 1979, Jalja",2020-01-10,https://i.scdn.co/image/ab67616d0000b273e24bf1b4fd2ac2f591f4052c,1,1,178823,https://p.scdn.co/mp3-preview/c3dd819bf52501c7f2032dd1addcde785d93f879?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USQX91903738,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep disco house,hamburg electronic,minimal techno",0.657,0.892,7.0,-5.127,1.0,0.0416,0.0025,0.00871,0.124,0.537,123.997,4.0,,Three Six Zero Recordings/Sony Music Entertainment,"P (P) 2020 Fryhide Records, under exclusive license to Three Six Zero Recordings LLC/Ministry of Sound Recordings Limited",1166 +1167,spotify:track:3TK5wUTKTBJZ8GqhedjTtv,(Dancin’) On A Saturday Night,spotify:artist:6ea0ZyKO8ONgRBNCjrea7d,Barry Blue,spotify:album:12qedoBqTlYcQOYLxjzzkX,Greatest,spotify:artist:6ea0ZyKO8ONgRBNCjrea7d,Barry Blue,2013-01-21,https://i.scdn.co/image/ab67616d0000b2730c736b7fd7d3e64dda77d084,1,1,192466,https://p.scdn.co/mp3-preview/a1bdd76b50a7b660361b961a3fad54548e0ce65b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBBPJ0100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,glam rock",0.709,0.79,9.0,-9.435,1.0,0.0714,0.0531,0.000304,0.167,0.847,124.355,4.0,,Demon Digital,"C (C) 2012 Demon Music Ltd., P (P) 2012 Demon Music Ltd.",1167 +1168,spotify:track:6FdbXoRiZ5wH8x3vf7s9Xh,Let It Go - DJ Boat Remix,"spotify:artist:5iLaZnrGlRUHm2PwZ33dIt, spotify:artist:0Btky5ia7ihAQE8UEXPmbQ","Josefine, DJ Boat",spotify:album:3SSTsbX8nVGRM1EsauN1Nn,Let It Go (DJ Boat Remix),"spotify:artist:5iLaZnrGlRUHm2PwZ33dIt, spotify:artist:0Btky5ia7ihAQE8UEXPmbQ","Josefine, DJ Boat",2021-07-23,https://i.scdn.co/image/ab67616d0000b273e0df750fb5313f5d92ebe078,1,1,224440,,False,23,SE6OO2000102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"scandipop,ghanaian alternative",0.753,0.649,3.0,-7.731,0.0,0.0357,0.0583,0.00619,0.147,0.493,112.026,4.0,,Josefine,"C 2021 Josefine, P 2021 Josefine",1168 +1169,spotify:track:0r4IWIanmyhOueD888Ztwf,Creepin' Up Slowly,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,spotify:album:76hqEMQKrJpYntZVub1wlG,Garage Mahal,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,2002-07-10,https://i.scdn.co/image/ab67616d0000b2731125ed752f65ff13c714ed2e,1,3,235653,https://p.scdn.co/mp3-preview/a858f14e6435c19330c5817693de12b69bafe3ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUWA00206200,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.396,0.814,1.0,-6.508,1.0,0.075,0.00866,0.0,0.0646,0.802,189.073,4.0,,WM Australia,"C © 2002 Warner Music Australia Pty Limited, P ℗ 2002 Warner Music Australia Pty Limited",1169 +1170,spotify:track:7nx6bmfojpAW4SCwoZM13B,C'est La Vie,spotify:artist:4NkLjsRsFnuPu9B4zqzBqq,Robbie Nevil,spotify:album:6bNiLVVFEHzU6ilWL4zuQh,Robbie Nevil,spotify:artist:4NkLjsRsFnuPu9B4zqzBqq,Robbie Nevil,1986-11-01,https://i.scdn.co/image/ab67616d0000b273fbdbb53cce319653883fbe8d,1,5,270306,https://p.scdn.co/mp3-preview/2116a21327be329553f4bc0601012c2367a45fd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USUM71602455,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.726,0.809,7.0,-12.356,1.0,0.0541,0.559,0.00029,0.845,0.552,102.123,4.0,,CAPITOL CATALOG MKT (C92),"C © 1986 Capitol Records, LLC, P ℗ 1986 Capitol Records, LLC",1170 +1171,spotify:track:6PgVDY8GTkxF3GmhVGPzoB,"Hold On, I'm Comin'",spotify:artist:2BVYdY4PyfCF9z4NrkhEB2,Sam & Dave,spotify:album:2PBsbww0MYw9F1JzyYWIEO,"Hold On, I'm Comin'",spotify:artist:2BVYdY4PyfCF9z4NrkhEB2,Sam & Dave,1966,https://i.scdn.co/image/ab67616d0000b27319b9fae8d9f602068a5a5557,1,1,155706,https://p.scdn.co/mp3-preview/6a0de247dff708131154ceca48a5a99061869f12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT20001059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,memphis soul,soul,southern soul",0.803,0.338,6.0,-14.029,1.0,0.0349,0.196,0.038,0.097,0.912,106.841,4.0,,Rhino Atlantic,"C © 2004 Atlantic Recording Corp. Manufactured and Distributed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured and Distributed by Warner Strategic Marketing",1171 +1172,spotify:track:52gqeRlrBE7hqMlRxEsi6y,Livin' It Up,"spotify:artist:1J2VVASYAamtQ3Bt8wGgA6, spotify:artist:5aEWnrN8h3MhuFUPRfaVuy","Ja Rule, Case",spotify:album:2wMavIKnu6feFNOeQ1hVwf,Pain Is Love,spotify:artist:1J2VVASYAamtQ3Bt8wGgA6,Ja Rule,2001-01-01,https://i.scdn.co/image/ab67616d0000b273e37dce36d17a97c3011d1068,1,3,257066,https://p.scdn.co/mp3-preview/67aac99634ea486055b2015116ff30d38393b282?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USDJ20110768,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,gangster rap,hip hop,hip pop,pop rap,queens hip hop,rap,urban contemporary,contemporary r&b,new jack swing,r&b",0.874,0.768,6.0,-4.086,1.0,0.311,0.0554,0.0,0.041,0.636,106.095,4.0,,RAL (Rush Associated Label),"C © 2001 The Island Def Jam Music Group, P ℗ 2001 UMG Recordings, Inc.",1172 +1173,spotify:track:4Pu19svfyXFrCCWcGKLc0W,Who The Hell Are You,spotify:artist:6otgz5gkB40UnWFwTy0VDh,Madison Avenue,spotify:album:7pH7HTn0BEMJqHTbBmfucj,Polyester Embassy,spotify:artist:6otgz5gkB40UnWFwTy0VDh,Madison Avenue,2000-11-07,https://i.scdn.co/image/ab67616d0000b2735a5e99527ba6788b7038f4be,1,2,215093,https://p.scdn.co/mp3-preview/a169310b8af37c5247c15007dcf7c462ad864018?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC00000820,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,vocal house",0.733,0.903,11.0,-4.855,0.0,0.0933,0.000923,0.261,0.363,0.915,127.537,4.0,,Vicious Recordings Pty Ltd,"C 2000 Vicious Recordings Pty Ltd, P 2000 Vicious Recordings Pty Ltd",1173 +1174,spotify:track:6XOINCZBv8Q7RXgNNiTwIN,A Girl Like You,spotify:artist:5Qlt3zQ63Z99mNhuun0JAT,Edwyn Collins,spotify:album:4gIHBmLBXUnDJgWhcPzNDG,Gorgeous George,spotify:artist:5Qlt3zQ63Z99mNhuun0JAT,Edwyn Collins,1994,https://i.scdn.co/image/ab67616d0000b273583f1300f2b356b42dd231b4,1,2,236583,https://p.scdn.co/mp3-preview/890ff4b2dcbe3ad5606972f289c48fb26b0abfb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GB72T1100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,scottish new wave,solo wave",0.619,0.781,5.0,-7.455,0.0,0.0393,0.0243,0.000286,0.402,0.533,126.267,4.0,,AED,"C 2011 Edwyn Collins, P 2011 Edwyn Collins",1174 +1175,spotify:track:7GfKD5B7fVAzUgDvqAIbSL,Can We Pretend (feat. Cash Cash),"spotify:artist:1KCSPY1glIKqW2TotWuXOR, spotify:artist:1LOB7jTeEV14pHai6EXSzF","P!nk, Cash Cash",spotify:album:0hgt3tZlHEGukN56ueTGcL,Hurts 2B Human,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2019-04-25,https://i.scdn.co/image/ab67616d0000b2734d2aa63d361ad07544c68385,1,7,224360,https://p.scdn.co/mp3-preview/2d985ba1fc02c74f6f18bd71781e5c8d4cb2f29f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USRC11803319,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,edm,electro house,electropowerpop,pop dance",0.524,0.806,1.0,-3.447,0.0,0.406,0.197,0.0,0.101,0.45,115.172,4.0,,RCA Records Label,"P (P) 2019 RCA Records, a division of Sony Music Entertainment",1175 +1176,spotify:track:4CU6WHrOTupJ6XgeYAAeCO,Uptown,spotify:artist:7rewR1TVjhisjI6gauUamf,The Crystals,spotify:album:11ho9FxQbJjMbQn1P1yWpm,Da Doo Ron Ron: The Very Best of The Crystals,spotify:artist:7rewR1TVjhisjI6gauUamf,The Crystals,2011-02-22,https://i.scdn.co/image/ab67616d0000b273a93e542069f023c3c9be9b8d,1,3,141226,https://p.scdn.co/mp3-preview/23c6d989e4e6d2672ca1d54a689b734f6ec01f6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USQX91100107,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,doo-wop,rock-and-roll",0.665,0.699,0.0,-7.875,1.0,0.0302,0.372,0.000151,0.146,0.785,112.623,4.0,,Legacy Recordings,"P (P) 2011 Phil Spector Records, Inc. Under exclusive license to EMI Blackwood Music Inc./Sony Music Entertainment",1176 +1177,spotify:track:7oGZAicScQt96OAW4AruYy,Want to Want Me,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:59eUYETmE1zi31ESb3SUkI,Everything Is 4,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2015-05-29,https://i.scdn.co/image/ab67616d0000b273519241bcfc352fc3eaaac5db,1,1,207719,https://p.scdn.co/mp3-preview/41c4fc0c9ed13ba61f99841cfee3182d32976686?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USWB11503046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.775,0.68,0.0,-5.508,0.0,0.0629,0.00906,0.0,0.109,0.656,114.025,4.0,,Beluga Heights/Warner Records,"C © 2015 Warner Records Inc., P ℗ 2015 Warner Records Inc.",1177 +1178,spotify:track:07PIhdmyYIw8dMeDMsx9FU,Words,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:2oeuTgRudy4dVoFa15gf05,Horizontal (Deluxe Version),spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1968-02-01,https://i.scdn.co/image/ab67616d0000b2730038accd6a5c1b5130e3730a,1,28,198453,https://p.scdn.co/mp3-preview/9cdf975756663a4b12fc6405b9a08e8fdea50133?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAKW6801004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.258,0.289,2.0,-10.491,1.0,0.0285,0.14,0.0,0.162,0.246,80.182,4.0,,Bee Gees Catalog,"C © 2006 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, P This Compilation ℗ 2006 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb",1178 +1179,spotify:track:6XysrR8vcCDIXVRfqylrbc,One Fine Day,spotify:artist:05sIdEkXAYDbDDdv3T56Oj,The Chiffons,spotify:album:6iqQVWqQVmLaq1xxAR03e7,The Best Of The Chiffons,spotify:artist:05sIdEkXAYDbDDdv3T56Oj,The Chiffons,1996-01-01,https://i.scdn.co/image/ab67616d0000b27395e71ddc60dffff1b81ff402,1,2,130440,https://p.scdn.co/mp3-preview/8657a104ad94cb18dabf4475cc22cb451d909b0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USLA19000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,classic girl group,doo-wop,rock-and-roll",0.486,0.552,6.0,-9.52,1.0,0.0334,0.468,1.54e-06,0.416,0.896,89.574,4.0,,EMI Gold,"C © 1996 EMI Records Ltd, P This Compilation ℗ 1996 EMI Records Ltd",1179 +1180,spotify:track:1jqLJBQwo7yBCqYQWukLkq,Boombastic,spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,spotify:album:1ObChmQf8QPcervdZ5BxC6,Mr Lover Lover - The Best Of Shaggy... (Part 1),spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,2002-01-01,https://i.scdn.co/image/ab67616d0000b2733c91d328c912c112858e8b94,1,14,247173,https://p.scdn.co/mp3-preview/343ed8902219b641429fbebaf5c0edce0ff78cf0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAAA9500003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,reggae fusion",0.866,0.788,2.0,-8.188,1.0,0.278,0.25,1.97e-05,0.342,0.752,158.412,4.0,,Virgin Records,"C © 2002 Virgin Records Limited, P This Compilation ℗ 2002 Virgin Records Limited",1180 +1181,spotify:track:41c0FBsKGWXqAnQC3ifyzw,Too Much Ain't Enough Love,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:4uewhJyZLIBp4T8b6eU7EX,Freight Train Heart,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1987-11-13,https://i.scdn.co/image/ab67616d0000b273efb3bf84d12adc413d2496b3,1,3,284280,https://p.scdn.co/mp3-preview/02c6ae2f703eb8a6cdfde232b57049c349a52099?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AULI00509960,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.623,0.721,0.0,-10.52,0.0,0.0276,0.302,0.000122,0.0838,0.782,101.431,4.0,,Bloodlines,"C 1987 Bloodlines, P 1987 Bloodlines",1181 +1182,spotify:track:1XsFwPxVyhouqW6Qu71Ygm,Burn,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,spotify:album:3eArVEbkPCtNGoCFkFCftz,Greatest Hits 1994 - 2004,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,2004-11-06,https://i.scdn.co/image/ab67616d0000b273760ffd6240e045b0c0d7e17c,1,3,264146,https://p.scdn.co/mp3-preview/b57c1299f409d0c64149b8a7ff3471c5e651618c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUSM09700057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.451,0.656,7.0,-7.178,1.0,0.0352,0.168,3.04e-06,0.106,0.308,171.477,4.0,,Columbia,P (P) 2004 Sony Music Entertainment Australia Pty Ltd,1182 +1183,spotify:track:6BoueSxgJU2heOvYVDTBuk,I Do (Cherish You),spotify:artist:6V03b3Y36lolYP2orXn8mV,98º,spotify:album:5QmzvShOSXdLds65q3jbxx,98 Degrees And Rising,spotify:artist:6V03b3Y36lolYP2orXn8mV,98º,1998-01-01,https://i.scdn.co/image/ab67616d0000b2737084019f62d98119937ed26e,1,4,228066,https://p.scdn.co/mp3-preview/eeb5a535f834d06d4e8d80f36a9620ac337d5cf0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO19883529,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.573,0.431,8.0,-9.431,1.0,0.0362,0.613,0.0,0.27,0.28,81.013,4.0,,Universal Music LLC,"C (C) 1998 Motown Records, a Division of UMG Recordings, Inc., P (P) 1998 Motown Records, a Division of UMG Recordings, Inc.",1183 +1184,spotify:track:72AO8u6lcjKp0CBeaPZT8I,I Still Haven't Found What I'm Looking For - Remastered 2007,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:4mULDK6YXrFXTfSwvwm4M3,The Joshua Tree,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1987-03-10,https://i.scdn.co/image/ab67616d0000b273e2e8f804c2cdd5b3815adbf9,1,2,277480,https://p.scdn.co/mp3-preview/fb33c9af2a25d72905bdb2f1e9685c6b7382c9e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBUM70709783,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.565,0.764,1.0,-9.43,1.0,0.0351,0.0139,0.00488,0.079,0.686,100.891,4.0,,Universal-Island Records Ltd.,"C © 2007 Universal-Island Records Ltd., P ℗ 2007 Universal-Island Records Ltd.",1184 +1185,spotify:track:6fh6lGvzuQibcFUB076WIR,When I Die,spotify:artist:2tUGlReCZRMoRgl0IS79i3,No Mercy,spotify:album:3tabuqpmg0z2LZiO24V1Vl,Greatest Hits,spotify:artist:2tUGlReCZRMoRgl0IS79i3,No Mercy,2007,https://i.scdn.co/image/ab67616d0000b27382f7f3aabb3bbbec36f28109,1,3,269826,https://p.scdn.co/mp3-preview/87452951159bbf36cd484e20a959006bf49713c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,DED169600126,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,eurodance",0.702,0.495,1.0,-8.73,1.0,0.0608,0.365,8.34e-06,0.124,0.817,147.914,4.0,,MCI,P (P) 2006 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GMBH,1185 +1186,spotify:track:1PTqbs9FV8hSJCS7OOF5OC,Do It Again,"spotify:artist:1BhWF9W2PngtPSyobKg0rP, spotify:artist:7bXgB6jMjp9ATFy66eO08Z, spotify:artist:5LHRHt1k9lMyONurDHEdrp","Pia Mia, Chris Brown, Tyga",spotify:album:4BCxAlQ05BCLPuY1Xh4n7R,Do It Again,spotify:artist:1BhWF9W2PngtPSyobKg0rP,Pia Mia,2015-05-04,https://i.scdn.co/image/ab67616d0000b27377bec9b353eb6fe5ae58a08f,1,1,207746,https://p.scdn.co/mp3-preview/b935048d053fe41c01d828894f3225373bce7f45?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71505606,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,r&b,rap,hip hop,pop rap,rap,southern hip hop,trap",0.713,0.552,8.0,-6.526,1.0,0.0499,0.0298,0.0,0.0879,0.424,95.961,4.0,,Universal Music Group,"C © 2015 Wolfpack/Interscope Records, P ℗ 2015 Wolfpack/Interscope Records",1186 +1187,spotify:track:1Pw5C4N6Fn5E4mGCxmbbVa,Say You Won't Let Go,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:0BL67dR6x0CPU7B7J9P8qC,Say You Won't Let Go,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2016-09-09,https://i.scdn.co/image/ab67616d0000b2731de3cbdb04e475e61acbc33d,1,1,211240,https://p.scdn.co/mp3-preview/4fbb32c6ab859c8d000c2cef7949d06fd71d6b5a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,DEE861600586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.4,0.564,10.0,-7.444,1.0,0.0523,0.693,0.0,0.0863,0.483,99.269,4.0,,Columbia,P (P) 2016 Sony Music Entertainment Germany GmbH,1187 +1188,spotify:track:0fIOacVe000P5pNhaKQlQw,Love Me Like You,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:4bzVI1FElc13HQagFR7S1W,Get Weird (Deluxe),spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2015-11-06,https://i.scdn.co/image/ab67616d0000b2734e977ec3406c06c9401642d5,1,2,197786,https://p.scdn.co/mp3-preview/2cc18c0196d3775e80d46828b7575e26a4eafffb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1500047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.785,0.674,7.0,-3.936,1.0,0.043,0.208,0.0,0.284,0.848,106.058,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,1188 +1189,spotify:track:4aqVJ566auHqnlpwSiYE5N,Back Home Again,spotify:artist:7EK1bQADBoqbYXnT4Cqv9w,John Denver,spotify:album:6IWq54w4j5ZpaXUxro3bsr,Back Home Again,spotify:artist:7EK1bQADBoqbYXnT4Cqv9w,John Denver,1974-06-15,https://i.scdn.co/image/ab67616d0000b273a18c7b36537f7ebd6c5b5e62,1,1,285373,https://p.scdn.co/mp3-preview/2c1be5a0af234e2b6452e12212aba56770259599?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC17403081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.528,0.305,4.0,-11.671,1.0,0.0301,0.837,3.03e-06,0.113,0.549,117.828,4.0,,RCA/Legacy,P (P) 1974 Sony Music Entertainment,1189 +1190,spotify:track:1Up0tMGTc3FKasn7WMrioE,Songbird,spotify:artist:0afemm9P2Bb2LL99xHY32n,Bernard Fanning,spotify:album:2OICen81GDKy8Mds7OdX4I,Tea & Sympathy,spotify:artist:0afemm9P2Bb2LL99xHY32n,Bernard Fanning,2005-01-01,https://i.scdn.co/image/ab67616d0000b27367b17be9ebd5d4315406e1c1,1,4,156280,https://p.scdn.co/mp3-preview/6e10ae01af6230cf1eb1c746df45a8aaa3ccd749?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,AUUM70500069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.58,0.776,6.0,-6.965,0.0,0.0273,0.102,0.000213,0.183,0.866,80.54,4.0,,Universal Music Australia Pty. Ltd.,"C © 2005 Dew Process/Universal Music Australia, P ℗ 2005 Dew Process/Universal Music Australia",1190 +1191,spotify:track:59SHL9A7Tw7yYLWf2MSKRt,I Love It,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,spotify:album:3POXlpDv0cikb180eu6k5j,Sneaky Sound System,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,2006,https://i.scdn.co/image/ab67616d0000b2731e54836b82f6407233f06197,1,1,226986,https://p.scdn.co/mp3-preview/ab74850595258a67134efbb031703f0cdfc226b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUQK00600014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,funktronica",0.688,0.709,4.0,-3.902,0.0,0.0375,0.00326,2.08e-05,0.0582,0.774,124.988,4.0,,Whack Records,"C 2006 Whack Records, P 2006 Whack Records",1191 +1192,spotify:track:02c4wpeXlXxT7Cekkz3kP3,Lean On Me (feat. Robinson),"spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt, spotify:artist:38CvLGTsjtoloDgv3OKQp8","Illy, Robinson",spotify:album:5Qh5mcfh9Z9bSrfaTlDo8V,Lean On Me (feat. Robinson),"spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt, spotify:artist:38CvLGTsjtoloDgv3OKQp8","Illy, Robinson",2019-09-27,https://i.scdn.co/image/ab67616d0000b273d54310f2d51ee39d705ebdb8,1,1,227022,https://p.scdn.co/mp3-preview/03ee0a2d5c7f206fedd2121406f4e56581b601f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUBM01900229,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian trap,alt z,nz pop",0.714,0.531,0.0,-8.023,1.0,0.0484,0.0207,0.0,0.171,0.48,101.004,4.0,,Sony Music Entertainment,P (P) 2019 Illy under exclusive license to Sony Music Entertainment Australia Pty Ltd,1192 +1193,spotify:track:4iLqG9SeJSnt0cSPICSjxv,Attention,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:0t0NkQulrNkxw2oUZZHboA,Attention,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2017-04-20,https://i.scdn.co/image/ab67616d0000b273db21a273452f0637cdbc35aa,1,1,211475,https://p.scdn.co/mp3-preview/db76d34af2f966975e0c1b8b9e43dca882e27229?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21700928,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop",0.774,0.626,3.0,-4.432,0.0,0.0432,0.0969,3.12e-05,0.0848,0.777,100.041,4.0,,Artist Partner,"C 2017 Artist Partner Group, Inc. for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P 2017 Artist Partner Group, Inc. for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",1193 +1194,spotify:track:2K62UFcN2wQpmTaJvrtZZS,Blue (Da Ba Dee),spotify:artist:64rxQRJsLgZwHHyWKB8fiF,Eiffel 65,spotify:album:7wKWrF67f1991520a6B0mu,Europop,spotify:artist:64rxQRJsLgZwHHyWKB8fiF,Eiffel 65,2009-07-04,https://i.scdn.co/image/ab67616d0000b2737ba6ab389365f1894f857e35,1,3,281746,https://p.scdn.co/mp3-preview/bbac41684f243a85862b5c010ec7c38e1a8bef5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUXN20902081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,italian adult pop,italo dance",0.817,0.993,7.0,-6.806,0.0,0.0661,0.385,2.85e-05,0.664,0.771,128.007,4.0,,Central Station Records,"C 2009 Central Station Records, P 2009 Central Station Records",1194 +1195,spotify:track:0HnaqUxvHP5LaWdmWwJpiS,Love Somebody,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:7i1Ej2Ix9aIiLKqhNwAB2l,Overexposed - Deluxe,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2012-01-01,https://i.scdn.co/image/ab67616d0000b2739d41d73f973cb817462e068a,1,6,229813,https://p.scdn.co/mp3-preview/bb0285e00d488c2ec69810d9442ecfbda69caaf9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUM71204774,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.675,0.792,1.0,-6.303,1.0,0.0368,0.145,0.0,0.12,0.395,120.016,4.0,,Interscope Records*,"C © 2012 A&M/Octone Records, P ℗ 2012 Interscope Records",1195 +1196,spotify:track:0DiDStADDVh3SvAsoJAFMk,Only Human,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,spotify:album:1Uf67JAtkVWfdydzFFqNF2,Happiness Begins,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,2019-06-07,https://i.scdn.co/image/ab67616d0000b273de1a3a5eaa0c75bb18e7b597,1,3,183000,https://p.scdn.co/mp3-preview/61e9165458a8ce80be77cb2442026007608c17e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USUG11901281,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.795,0.496,0.0,-5.883,1.0,0.0721,0.107,0.0,0.0645,0.873,94.01,4.0,,Jonas Brothers Recording,"C © 2019 Jonas Brothers Recording, Limited Liability Company, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Jonas Brothers Recording, Limited Liability Company, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",1196 +1197,spotify:track:43NhiKnrtGqztxDqXrcUux,Adam's Song,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:5qt11cWjSs5Gbqj2Wyfu38,Enema Of The State,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,1999-01-01,https://i.scdn.co/image/ab67616d0000b273645606c85724da85f15f6dee,1,7,249753,https://p.scdn.co/mp3-preview/f028a65b6cf91d93e815a5c795c7dc512afce375?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19959122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.514,0.771,0.0,-5.756,1.0,0.0364,0.039,0.0,0.262,0.359,136.058,4.0,,Interscope,"C © 1999 Geffen Records, P ℗ 1999 Geffen Records",1197 +1198,spotify:track:0JyCzNOLbG1oQ93lQpHQ0s,Polygraph Eyes,spotify:artist:6Ad91Jof8Niiw0lGLLi3NW,YUNGBLUD,spotify:album:47tJSVg3jdefuaEg08752f,YUNGBLUD,spotify:artist:6Ad91Jof8Niiw0lGLLi3NW,YUNGBLUD,2018-01-19,https://i.scdn.co/image/ab67616d0000b27347435577241b873f1d95b229,1,4,223043,https://p.scdn.co/mp3-preview/12b014577a41a41967b973e3adff94aefdaf6e07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11800004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british indie rock,modern rock,pov: indie,rock",0.536,0.715,9.0,-6.433,0.0,0.0391,0.009,0.0,0.497,0.414,92.111,4.0,,Universal Music Group,"C © 2018 Locomotion Recordings Limited, under exclusive license to Geffen Records, P A Locomotion/Geffen Records Release; ℗ 2018 Locomotion Recordings Limited, under exclusive license to Geffen Records",1198 +1199,spotify:track:6ThZMk79exIUyB7JIbbOH9,Get Up (Rattle) - Radio Edit,"spotify:artist:1pbHrVayIcVpHI9z97u4bK, spotify:artist:698hF4vcwHwPy8ltmXermq","Bingo Players, Far East Movement",spotify:album:1F0Z2L50CQTv8LgVroATQX,Get Up (Rattle),"spotify:artist:1pbHrVayIcVpHI9z97u4bK, spotify:artist:698hF4vcwHwPy8ltmXermq","Bingo Players, Far East Movement",2013-01-20,https://i.scdn.co/image/ab67616d0000b27345425bf99b1eeca3f6b82cf8,1,1,166932,https://p.scdn.co/mp3-preview/6e5f37dc22af990c98680081c354605d8989b7f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLC281211891,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dutch house,edm,electro house,melbourne bounce,pop dance,progressive electro house,progressive house,asian american hip hop,dance pop,pop rap",0.801,0.985,7.0,-2.69,1.0,0.0647,0.0205,6.86e-06,0.297,0.72,127.99,4.0,,Ministry of Sound Recordings Ltd,"C 2012 Ministry of Sound Recordings Limited, P 2012 Ministry of Sound Recordings Limited",1199 +1200,spotify:track:18GiV1BaXzPVYpp9rmOg0E,Blowin' in the Wind,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,spotify:album:0o1uFxZ1VTviqvNaYkTJek,The Freewheelin' Bob Dylan,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,1963-05-27,https://i.scdn.co/image/ab67616d0000b2737d214af8499aa95ad220f573,1,1,165426,https://p.scdn.co/mp3-preview/669fd8752af0d8d1e75272aefe1e15be7d51c029?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM19900534,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,rock,roots rock,singer-songwriter",0.38,0.0993,2.0,-20.567,1.0,0.0509,0.914,2.32e-05,0.0605,0.44,174.874,4.0,,Columbia,P Originally Released 1963 Sony Music Entertainment Inc.,1200 +1201,spotify:track:0c1gHntWjKD7QShC8s99sq,"I Don't Want to Miss a Thing - From the Touchstone film, ""Armageddon""",spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,spotify:album:616UgaZTc454Gu0aXxVH3K,I Don't Want To Miss A Thing,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,1998-08-18,https://i.scdn.co/image/ab67616d0000b273c895ef2f63f9019c09af2550,1,1,299760,https://p.scdn.co/mp3-preview/86ecdf40da3f39266dc8a44fe6bbac98abe760ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19801053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.39,0.649,2.0,-5.163,1.0,0.0345,0.172,0.0,0.216,0.144,121.16,4.0,,Columbia/Sony Music Soundtrax,"P (P) 1998 Columbia Records, a division of Sony Music Entertainment",1201 +1202,spotify:track:2sXf2JdbB2GlNju00kw9WE,Skate,"spotify:artist:0du5cEVh5yTK9QJze8zA0C, spotify:artist:3jK9MiCrA42lLAdMGUZpwa, spotify:artist:6PvvGcCY2XtUcSRld1Wilr","Bruno Mars, Anderson .Paak, Silk Sonic",spotify:album:4AsebSFI8STBGRcVUJ3Tmo,Skate,"spotify:artist:0du5cEVh5yTK9QJze8zA0C, spotify:artist:3jK9MiCrA42lLAdMGUZpwa, spotify:artist:6PvvGcCY2XtUcSRld1Wilr","Bruno Mars, Anderson .Paak, Silk Sonic",2021-07-30,https://i.scdn.co/image/ab67616d0000b2736adcabaab172f5b8a3f085cb,1,1,203122,https://p.scdn.co/mp3-preview/3e93cbec6eb68471b1c027bd057175cdb7590dfc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT22104222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,escape room,hip hop,indie soul,neo soul,neo soul",0.708,0.598,5.0,-8.365,1.0,0.0291,0.037,0.0,0.17,0.698,112.027,4.0,,Aftermath Entertainment/Atlantic,"C © 2021 Aftermath Entertainment and Atlantic Recording Corporation, P ℗ 2021 Aftermath Entertainment and Atlantic Recording Corporation",1202 +1203,spotify:track:5L2l7mI8J1USMzhsmdjat9,Red Lights,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,spotify:album:4SHlBT6B3kL8bdj6X2xHRp,A Town Called Paradise,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,2014-06-13,https://i.scdn.co/image/ab67616d0000b2734ca8d06b996fb365b62d3d9c,1,1,262200,https://p.scdn.co/mp3-preview/36f55dcb05d4a050a5842d03b79eb3c4cc4115f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,CYA111300030,spotify:user:bradnumber1,2021-11-17T22:21:13Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance",0.654,0.83,10.0,-4.801,1.0,0.0366,0.000629,1.13e-06,0.121,0.548,124.989,4.0,,"Universal Music, a division of Universal International Music BV","C © 2014 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings/Universal Music, a division of Universal International Music B.V., P ℗ 2014 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings/Universal Music, a division of Universal International Music B.V.",1203 +1204,spotify:track:3PPVHus0QPb4EzHZxAuqsu,Good Times,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,spotify:album:6ooKUSkIstQYb21BGec19K,Vigil,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,1968-01-01,https://i.scdn.co/image/ab67616d0000b273b2c9de941bc3cd2c0776c885,1,1,201466,https://p.scdn.co/mp3-preview/c66e7157c464c4a4484d1551a83a351c2a39dd61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06800006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,freakbeat,protopunk,psychedelic rock",0.55,0.934,4.0,-7.876,1.0,0.0885,0.231,0.197,0.289,0.793,81.538,4.0,,Albert Productions,"C © 1968 BMG AM Pty Ltd., P ℗ 1968 BMG AM Pty Ltd.",1204 +1205,spotify:track:40F02fgjd0EIKY5wZsICKQ,Don't Let The Rain Come Down (Crooked Little Man),spotify:artist:60mbIWU4hFqNwuTFE1jPku,The Serendipity Singers,spotify:album:4OdfBP8QkesduTrQivVara,Essential Folk Masters,spotify:artist:60mbIWU4hFqNwuTFE1jPku,The Serendipity Singers,2011-08-01,https://i.scdn.co/image/ab67616d0000b273387c8c71377e3e5a53df4f59,1,1,164733,https://p.scdn.co/mp3-preview/9a0c9321552543e9ef9577da35fd8a24ae592cfb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA371418500,spotify:user:bradnumber1,2021-08-08T09:26:31Z,american folk revival,0.787,0.426,2.0,-12.589,1.0,0.187,0.772,0.0,0.101,0.67,128.914,4.0,,Master Classics Records,C (C) 2011 Master Classics Records,1205 +1206,spotify:track:0QsvXIfqM0zZoerQfsI9lm,Don't Let Me Down,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:6Dd3NScHWwnW6obMFbl1BH","The Chainsmokers, Daya",spotify:album:3ShQFl9FladFKlonwPGZFc,The Chainsmokers- Japan Special Edition,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2016-08-10,https://i.scdn.co/image/ab67616d0000b27308d87fb54859bc9038f7e5e0,1,6,208053,https://p.scdn.co/mp3-preview/4db7d84bd59065908dcbd9d8fa2d7b8f0e392359?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USQX91600011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,alt z,pop",0.542,0.859,11.0,-5.651,1.0,0.197,0.16,0.00466,0.137,0.403,159.797,4.0,,Disruptor Records/Columbia,"P (P) 2015, 2016 Disruptor Records/Columbia Records",1206 +1207,spotify:track:5vlzH0ps6WDyb158oFTAb3,Lionheart (Fearless),"spotify:artist:6DgP9otnZw5z6daOntINxp, spotify:artist:5SHxzwjek1Pipl1Yk11UHv","Joel Corry, Tom Grennan",spotify:album:68U7caniDmdQHifJdnlYFT,Lionheart (Fearless),"spotify:artist:6DgP9otnZw5z6daOntINxp, spotify:artist:5SHxzwjek1Pipl1Yk11UHv","Joel Corry, Tom Grennan",2022-10-21,https://i.scdn.co/image/ab67616d0000b273349945ff530a91a44398bf19,1,1,186689,https://p.scdn.co/mp3-preview/8a3eb3bde05d472a29c87dad9b46dfbf053b0b83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAHS2201155,spotify:user:bradnumber1,2022-12-28T10:16:37Z,"dance pop,pop dance,uk dance,uk pop",0.639,0.968,8.0,-2.482,1.0,0.0545,0.0218,0.00166,0.335,0.382,126.0,4.0,,Atlantic Records UK,"C Under exclusive licence to Warner Music UK Limited. An Asylum Records release, © 2022 Joel Corry Limited, P Under exclusive licence to Warner Music UK Limited. An Asylum Records release, ℗ 2022 Joel Corry Limited",1207 +1208,spotify:track:0PxcoUrgHYxueN01gfbif5,Wake Up,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,spotify:album:44qy89HXAh4e0ab35rlY2J,Wake Up (Deluxe),spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,2015-10-13,https://i.scdn.co/image/ab67616d0000b2735262ec58d9c180434ff7ec14,1,1,193511,https://p.scdn.co/mp3-preview/30d1a2c99497e83f7f63b8f741221f874390a8a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBUM71505474,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.603,0.782,1.0,-6.356,1.0,0.0311,0.00553,1.84e-06,0.0774,0.251,93.984,4.0,,EMI,"C © 2015 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2015 Virgin EMI Records, a division of Universal Music Operations Limited",1208 +1209,spotify:track:5JZcX7TTLx4l0xFIXJ3DBt,What's My Age Again?,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:5qt11cWjSs5Gbqj2Wyfu38,Enema Of The State,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,1999-01-01,https://i.scdn.co/image/ab67616d0000b273645606c85724da85f15f6dee,1,5,148573,https://p.scdn.co/mp3-preview/e73273f1d5a2b8d94dcd54d9f1a90e636e8c24bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USMC19959007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.403,0.956,6.0,-7.376,1.0,0.0732,0.017,7.09e-05,0.0893,0.561,157.706,4.0,,Interscope,"C © 1999 Geffen Records, P ℗ 1999 Geffen Records",1209 +1210,spotify:track:5vr75xhVxVlqPW18AgHqhA,Slipstream,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:2jmqR9W54z9VIZN4qAQv1Y,Anthology,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,2008-10-11,https://i.scdn.co/image/ab67616d0000b273d3f56b11a56d0b0f192da1a7,1,9,180960,https://p.scdn.co/mp3-preview/f6b9648722de1a1e39d41a0b4b60ee6ef23d10c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00621310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.388,0.874,2.0,-8.241,1.0,0.074,0.0236,0.000413,0.119,0.635,136.154,4.0,,Bloodlines,"C 2008 Bloodlines, P 2008 Bloodlines",1210 +1211,spotify:track:0zaP22tOgK5voZkTivyPe6,Life Is A Rollercoaster,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,spotify:album:1aYzN2EJMOgjFzuiDEiuEP,Ronan,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,2000-01-01,https://i.scdn.co/image/ab67616d0000b273ec7ef4332ddb3f8313c91e53,1,1,236826,https://p.scdn.co/mp3-preview/b676eee9b9715aeadcac7370eed508a6ef5f9f39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0000051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.658,0.817,0.0,-8.921,1.0,0.0315,0.0936,0.000151,0.333,0.81,118.959,4.0,,Universal Music Group,"C © 2000 Polydor Ltd. (UK), P ℗ 2000 Polydor Ltd. (UK)",1211 +1212,spotify:track:3TwtrR1yNLY1PMPsrGQpOp,Superman (It's Not Easy),spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,spotify:album:5MqEXYwwyJYjOb3g7vJ9ZY,America Town,spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,2000-09-26,https://i.scdn.co/image/ab67616d0000b273511daec815cea23d82cc5151,1,3,221693,https://p.scdn.co/mp3-preview/520db49fc57b59990bd15f2a250cfbcc2c6e5258?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM10102739,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop rock",0.382,0.416,0.0,-9.303,1.0,0.0302,0.0733,0.0,0.0719,0.125,102.089,4.0,,Aware/Columbia,P (P) 2000 Sony Music Entertainment Inc.,1212 +1213,spotify:track:4RQgqR09VmHn345vRhKQ6T,Sir Duke,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:2HVx2tiZnLX8xeaUthed1e,Songs In The Key Of Life,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1976-09-28,https://i.scdn.co/image/ab67616d0000b273492e424606db3574bf2d8823,1,5,234093,https://p.scdn.co/mp3-preview/5ae5258492617cf3d463b717e8a28fc59243f449?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO17600526,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.576,0.579,6.0,-9.628,1.0,0.0769,0.16,0.0,0.0777,0.947,106.978,4.0,,Universal/Island Def Jam,"C © 1976 Motown Record Company L.P., P ℗ 1976 UMG Recordings, Inc.",1213 +1214,spotify:track:5FMXrphygZ4z3gVDHGWxgl,Copacabana (At the Copa),spotify:artist:3alW3LYQS8K29z8C8NSLIX,Barry Manilow,spotify:album:52Ho5XgGwrNrPARqqXhJ5P,Dance Vault Mixes - Copacabana (At The Copa),spotify:artist:3alW3LYQS8K29z8C8NSLIX,Barry Manilow,2006-09-12,https://i.scdn.co/image/ab67616d0000b273668d9bd8f9a446d3d9e5e4a1,1,1,236760,https://p.scdn.co/mp3-preview/421d87e7b308287f93e1371412c379171bec2ac2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAR10601640,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock,yacht rock",0.606,0.899,7.0,-6.412,0.0,0.0758,0.333,0.000102,0.0754,0.66,116.735,4.0,,Arista,"P (P) 2006 Arista Records, a Unit of SONY BMG MUSIC ENTERTAINMENT",1214 +1215,spotify:track:4h8VwCb1MTGoLKueQ1WgbD,Wake Me Up,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:1s9tU91VJt4sU5owi29GD3,True,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2013-09-13,https://i.scdn.co/image/ab67616d0000b2734cfcceb6f9b1aae8752810e7,1,1,247426,https://p.scdn.co/mp3-preview/231af03bbd2ec7f655575800e54a00633d7d9eac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,SEUM71301326,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.532,0.783,2.0,-5.697,1.0,0.0523,0.0038,0.0012,0.161,0.643,124.08,4.0,,Universal Music AB,"C © 2013 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2013 Avicii Music AB, under exclusive license to Universal Music AB",1215 +1216,spotify:track:2zYzyRzz6pRmhPzyfMEC8s,Highway to Hell,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:10v912xgTZbjAtYfyKWJCS,Highway to Hell,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1979-07-27,https://i.scdn.co/image/ab67616d0000b27351c02a77d09dfcd53c8676d0,1,1,208400,https://p.scdn.co/mp3-preview/e5dde93998c6b622d0ac236ceeaabd49481da078?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,AUAP07900028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.574,0.913,6.0,-4.793,0.0,0.133,0.061,0.00158,0.156,0.423,115.728,4.0,,Columbia,P (P) 1979 Leidseplein Presse B.V. for U.S. and Australian Music Corporation Pty Ltd. for rest of world,1216 +1217,spotify:track:2IQvTnOS1sicZ3plBZL6KR,"Over My Head (Cable Car) - Live at Sirius Radio, NYC, NY - May 2006",spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,spotify:album:0NgiEbNqjo4ZqnSuMApXHz,Over My Head (Cable Car),spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,2005-10-07,https://i.scdn.co/image/ab67616d0000b2738aad1344b1a34ce6735f3451,1,2,230133,https://p.scdn.co/mp3-preview/eb70d32f9cbcff7d81ed751c0700129f77943838?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USSM10603097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop,pop rock",0.6,0.467,8.0,-9.056,1.0,0.0274,0.445,0.0,0.321,0.583,117.121,4.0,,Epic,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT,1217 +1218,spotify:track:2ypT0w7jeCwcEQQvNE5o92,The Bad Touch,spotify:artist:6nDLku5uL3ou60kvCGZorh,Bloodhound Gang,spotify:album:4hirIN3Nve0AgH4pxLo80V,Hooray For Boobies,spotify:artist:6nDLku5uL3ou60kvCGZorh,Bloodhound Gang,1999,https://i.scdn.co/image/ab67616d0000b273ac49f31fd8b2473813638c3b,1,10,260506,https://p.scdn.co/mp3-preview/61e0ed385aa272cbd70dc5f1c0b319933ee713db?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR19902530,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,comic,funk metal,funk rock,nu metal,rap rock",0.827,0.747,0.0,-6.247,0.0,0.0377,0.00355,0.0253,0.101,0.969,122.984,4.0,,Universal Music Group,"C © 2000 Geffen Records, P ℗ 2000 Geffen Records",1218 +1219,spotify:track:4UKe8besA3ozapud4bAOug,Mine,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:7tVkF12ZBdXlyBg76y2vsU,Speak Now,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2010-10-25,https://i.scdn.co/image/ab67616d0000b2734e1f1cde359c6fcd3b307cd5,1,1,230546,https://p.scdn.co/mp3-preview/0d1727618dac13fadadb97a88e6daa74e9f09b98?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71026563,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.696,0.768,7.0,-3.863,1.0,0.0308,0.00461,1.21e-06,0.101,0.692,121.05,4.0,,Universal Music Group,"C © 2010 Big Machine Records, LLC, P ℗ 2010 Big Machine Records, LLC",1219 +1220,spotify:track:5R2pfvbDbgp584poAmGieP,Rio,spotify:artist:5Tic1bWAbmRoLrqaJ5SxU2,Michael Nesmith,spotify:album:7ojx9MEKXXbl4Xbto2fi1S,Infinite Tuesday: Autobiographical Riffs,spotify:artist:5Tic1bWAbmRoLrqaJ5SxU2,Michael Nesmith,2017-04-14,https://i.scdn.co/image/ab67616d0000b273dab67aa433c5c4c1a286080d,1,10,370493,https://p.scdn.co/mp3-preview/13097b430d7eeb57a389f581c6d08e5a6bf07b0d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,US3J20400113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,country rock,0.548,0.684,2.0,-12.627,1.0,0.0551,0.399,1.27e-05,0.534,0.675,92.92,4.0,,Rhino,"C © 2017 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved., P ℗ 2017 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Marketed by Rhino Entertainment Company.",1220 +1221,spotify:track:1DsfSTkmftCG47KbzKOlWR,Don't Kill the Magic,spotify:artist:0DxeaLnv6SyYk2DOqkLO8c,MAGIC!,spotify:album:0RZ4Ct4vegYBmL9g88TBNi,Don't Kill the Magic,spotify:artist:0DxeaLnv6SyYk2DOqkLO8c,MAGIC!,2014-06-25,https://i.scdn.co/image/ab67616d0000b273604f8ac39f15d287e251f193,1,7,217226,https://p.scdn.co/mp3-preview/de56d264824aee9d87b7b84e40ecd90308eee61c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,CAV161400003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,reggae fusion",0.714,0.871,1.0,-5.197,1.0,0.0564,0.00724,1.97e-06,0.339,0.745,130.028,4.0,,Latium Records/RCA Records,P (P) 2014 Sony Music Entertainment International Limited,1221 +1222,spotify:track:7DHjerIyPHNokLIQOmbo9b,Like It Like That,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:5mrXvDnW1MK275vDsplMIF,Like It Like That,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2009-10-23,https://i.scdn.co/image/ab67616d0000b273b156fa49f0e23495db026fc9,1,1,241973,https://p.scdn.co/mp3-preview/5201361a876cfec9fc5da2aaaea7e56171b3a682?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUBM00900190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.585,0.973,2.0,-2.894,1.0,0.0733,0.00676,5.21e-05,0.262,0.958,161.05,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd.,1222 +1223,spotify:track:5ddXMXmXZ2FN4iliTG20nO,Emoji of a Wave,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:0jZFu2tihRJ65iYAo0oOtP,The Search for Everything,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2017-04-14,https://i.scdn.co/image/ab67616d0000b273c6bfaf942ed981d5c4c922e4,1,2,239666,https://p.scdn.co/mp3-preview/596c5b349007d3af887c01bc38bc9972be7e89a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USSM11701557,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.494,0.365,11.0,-8.92,1.0,0.0279,0.772,0.000961,0.139,0.191,165.764,4.0,,Columbia,"P (P) 2017 Columbia Records, a Division of Sony Music Entertainment",1223 +1224,spotify:track:1Dg4dFJr3HW7sbA7vPejre,Eight Days A Week - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:1vANZV20H5B4Fk6yf7Ot9a,Beatles For Sale (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1964-12-04,https://i.scdn.co/image/ab67616d0000b27355612ece447bec5d62c68375,1,8,163600,https://p.scdn.co/mp3-preview/33fdf95d14adbf986bc0eeaed9079ff6ea6908f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBAYE0601458,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.652,0.583,9.0,-7.811,1.0,0.038,0.412,0.0,0.119,0.744,138.134,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",1224 +1225,spotify:track:4fIWvT19w9PR0VVBuPYpWA,Haven't Met You Yet,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:3MXDonOIzrIrCh0HvlACyj,Crazy Love,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2009-10-06,https://i.scdn.co/image/ab67616d0000b273f0cc194252888c6658c706ab,1,5,244586,https://p.scdn.co/mp3-preview/a9b0dffb82b146a24cf005a3ada306bdbb1f81c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USRE10901437,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.615,0.733,8.0,-4.808,1.0,0.0335,0.152,0.0,0.109,0.796,122.58,4.0,,143/Reprise,"C © 2009 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2009 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",1225 +1226,spotify:track:2NOYO042qSc2YMCAnv7sDY,I Still...,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:1Wz9PANLXjaOskUv575hRV,Never Gone,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,2005-06-14,https://i.scdn.co/image/ab67616d0000b273fd2f4308f22fcae9f5c1fa8c,1,5,228720,https://p.scdn.co/mp3-preview/bd7031e6faefa38e81c6e79437677e8ee8279155?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USJI10500257,spotify:user:bradnumber1,2024-03-14T02:36:30Z,"boy band,dance pop,pop",0.541,0.758,5.0,-3.626,1.0,0.0275,0.00126,0.0,0.0763,0.181,102.984,4.0,,Jive,P (P) 2005 Zomba Recording LLC,1226 +1227,spotify:track:3V6i8cMWu7Vd4Vk9BiUOiV,Monster Mash,"spotify:artist:42MRYPhQfcEXqb18dl5ERX, spotify:artist:4frDtYgwXXKkbyQzjOmJG5","Bobby ""Boris"" Pickett, The Crypt-Kickers",spotify:album:1fuhAoWdCjTNFkAf0QyaHC,Halloween Party Songs,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-10-05,https://i.scdn.co/image/ab67616d0000b273d2fa2152828068546135ec69,1,1,191800,https://p.scdn.co/mp3-preview/c0b178585e08669f970c5bdb35732e3c83d21cb7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBBBA7360050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"halloween,novelty",0.68,0.608,11.0,-10.505,0.0,0.343,0.383,0.0,0.387,0.705,69.796,4.0,,Universal Music Enterprises,"C © 2018 UMG Recordings, Inc., P This Compilation ℗ 2018 UMG Recordings, Inc.",1227 +1228,spotify:track:4d6eqRtpDX7tydHJGDZUBQ,She Drives Me Crazy,spotify:artist:20p5D2KrE8CGuOjHtxsyTp,Fine Young Cannibals,spotify:album:6CoeDRu0SmpFtLZMcRTO2F,The Raw & The Cooked,spotify:artist:20p5D2KrE8CGuOjHtxsyTp,Fine Young Cannibals,1988-01-01,https://i.scdn.co/image/ab67616d0000b273c573a4a852f010523c4ba383,1,1,215773,https://p.scdn.co/mp3-preview/f884c44e079a100d543b120f52b89ec0075a5475?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USRH10901907,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,synthpop",0.799,0.687,2.0,-5.682,1.0,0.0431,0.193,0.000188,0.0307,0.965,108.804,4.0,,London Music Stream,"C © 1988 London Records Ltd, P ℗ 1988 London Records Ltd",1228 +1229,spotify:track:2c5tyFBP9Z6YECjtu9URSi,Son of a Gun - Remastered for Fitness Beats,spotify:artist:3Pjm55EQ8msgG4DguAjrjv,JX,spotify:album:41Vv7GOiSTiKl4g0nyYhl9,THE BEST EVER: 90s Dance,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-03-11,https://i.scdn.co/image/ab67616d0000b273dc0cd6a0eea6df0d8a7dea7e,1,6,193481,https://p.scdn.co/mp3-preview/e0f5cf3ec2cb3362f6e78580819c47fcf6f25750?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMY1200006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.71,0.894,2.0,-6.675,1.0,0.0424,0.0081,0.571,0.0656,0.633,129.854,4.0,,Rhino,"C This Compilation 2015 Rhino UK, a division of Warner Music UK Ltd, P This Compilation 2015 Rhino UK, a division of Warner Music UK Ltd",1229 +1230,spotify:track:1amRq1hFKK1vFCj2KNDfJV,Erotica,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,16,270173,https://p.scdn.co/mp3-preview/7983fde2d27f7f8fe169512f9f53927abbc68410?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USWB10903613,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.63,0.821,11.0,-6.726,0.0,0.0467,0.000632,0.479,0.0963,0.271,102.022,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",1230 +1231,spotify:track:6eq79fqEoCZFyH24NmtGFK,Baby,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,spotify:album:4r6fRqJ6wWnlci4hRabi08,PNAU (Tour Edition),spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,2009-01-01,https://i.scdn.co/image/ab67616d0000b27373b70fa58651c155ec3fff3a,1,4,165026,https://p.scdn.co/mp3-preview/b9d6e1ee248a67c01a8b0d40d843a07872c4735a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV00700760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,aussietronica,australian dance,australian electropop",0.66,0.947,8.0,-2.328,0.0,0.0378,0.0442,1.24e-05,0.186,0.673,127.997,4.0,,Ministry Of Sound,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",1231 +1232,spotify:track:5I9sHwLDX28tLtzVgKLtpr,Everybody Loves Somebody,spotify:artist:49e4v89VmlDcFCMyDv9wQ9,Dean Martin,spotify:album:5py1cVI9V82vgizOzh7z1q,Everybody Loves Somebody,spotify:artist:49e4v89VmlDcFCMyDv9wQ9,Dean Martin,1964,https://i.scdn.co/image/ab67616d0000b273ba93cb5d7f8450ac548e04b6,1,1,164546,https://p.scdn.co/mp3-preview/b78cbcf25141cac829c9cff3f52f50078ecc8038?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USQX91301936,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,vocal jazz",0.366,0.391,3.0,-12.322,1.0,0.0425,0.854,0.0,0.352,0.461,119.182,3.0,,Legacy Recordings,P Originally released 1964. All rights reserved by Dean Family Trust,1232 +1233,spotify:track:0Hx249i8UGY4cWLjmo1eIH,Four to the Floor - Thin White Duke Mix; Short Version,spotify:artist:0G8zjE6SsFTlbglCkU8pm3,Starsailor,spotify:album:6UXbFDhwOmwxVBFJPC0L3x,Four To The Floor,spotify:artist:0G8zjE6SsFTlbglCkU8pm3,Starsailor,2004,https://i.scdn.co/image/ab67616d0000b273c4dda44fca5b55b814ca33bc,1,3,280488,https://p.scdn.co/mp3-preview/99f421331d4605b75379e430d3a7e47e0f48699f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAYE0302610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,lancashire indie,piano rock",0.66,0.74,9.0,-6.856,1.0,0.0345,0.00139,0.0879,0.0907,0.62,123.003,4.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",1233 +1234,spotify:track:6ocbgoVGwYJhOv1GgI9NsF,7 rings,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:2fYhqwDWXjbpjaIJPEfKFw,"thank u, next",spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2019-02-08,https://i.scdn.co/image/ab67616d0000b27356ac7b86e090f307e218e9c8,1,10,178626,https://p.scdn.co/mp3-preview/0cfcc895f05ea04c01524612069d8f5c3754c141?cid=9950ac751e34487dbbe027c4fd7f8e99,True,82,USUM71900110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.777,0.317,1.0,-10.732,0.0,0.308,0.591,0.0,0.0881,0.33,139.848,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",1234 +1235,spotify:track:46Ey9Wcr7ULgsOhU2V3Rpk,Put Your Hand Up - Radio Mix,spotify:artist:34piu9Hcy6N5t5FRfhqnhn,Random,spotify:album:3PK7Z2xMqDGWOVulB8dolT,Random,spotify:artist:34piu9Hcy6N5t5FRfhqnhn,Random,2005-10-09,https://i.scdn.co/image/ab67616d0000b273396b2552967ff41e845dfbf4,1,1,208920,https://p.scdn.co/mp3-preview/71f13303e80f48a4b30329d81a9719b631cfe5f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUBM00549101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.834,0.751,9.0,-2.105,0.0,0.0634,0.165,0.0,0.0473,0.865,108.04,4.0,,Sony BMG Music Entertainment,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,1235 +1236,spotify:track:0zxqfxaryaMnbfT8BEm9vk,2012 (It Ain't The End),"spotify:artist:4pADjHPWyrlAF0FA7joK2H, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","Jay Sean, Nicki Minaj",spotify:album:2sGaiPVa3SnfB4TpWMkrhC,2012 (It Ain't The End),spotify:artist:4pADjHPWyrlAF0FA7joK2H,Jay Sean,2010-01-01,https://i.scdn.co/image/ab67616d0000b2738c6940b3e3e7251393ffa4e3,1,1,222200,https://p.scdn.co/mp3-preview/a8dcd0273c3653f8e0800692a7d9456c8beb7c16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCM51000517,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,post-teen pop,hip pop,pop,queens hip hop,rap",0.717,0.792,0.0,-2.703,1.0,0.0393,0.199,0.0,0.423,0.513,126.975,4.0,,Universal Music,"C © 2010 Cash Money Records Inc., Manufactured and Marketed by Universal Records, a Division of UMG Recordings, Inc., 1755 Broadway, New York, NY 10019. Distributed by Universal Music Distribution. All rights reserved. FBI Anti-Piracy Warning: Unauthorized copying is punishable under fede, P ℗ 2010 Cash Money Records Inc., Manufactured and Marketed by Universal Records, a Division of UMG Recordings, Inc., 1755 Broadway, New York, NY 10019. Distributed by Universal Music Distribution. All rights reserved. FBI Anti-Piracy Warning: Unauthorized copying is punishable under fede",1236 +1237,spotify:track:3ClBKQkKoaUQ6UOhe2xlJK,Good News,spotify:artist:4LLpKhyESsyAXpc4laK94U,Mac Miller,spotify:album:4CCaoRnCugI6RsHHBKiMLs,Good News,spotify:artist:4LLpKhyESsyAXpc4laK94U,Mac Miller,2020-01-09,https://i.scdn.co/image/ab67616d0000b2735b8f30bc31faa93986a37d42,1,1,342040,https://p.scdn.co/mp3-preview/b469f44c8cbdf55c5d073e79fae274b9978b6505?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USWB11801008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pittsburgh rap,rap",0.794,0.32,1.0,-12.92,0.0,0.173,0.853,0.134,0.112,0.241,174.088,4.0,,Warner Records,"C © 2020 Warner Records Inc., P ℗ 2020 Warner Records Inc.",1237 +1238,spotify:track:1zHlj4dQ8ZAtrayhuDDmkY,Timber,"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:6LqNN22kT3074XbTVUrhzX","Pitbull, Kesha",spotify:album:3X33e7UII5loqrEgauOKEC,Timber,"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:6LqNN22kT3074XbTVUrhzX","Pitbull, Kesha",2013-10-07,https://i.scdn.co/image/ab67616d0000b27316f7ba31754ea8368bf63186,1,1,204053,https://p.scdn.co/mp3-preview/17787d74a2c5b1a6c4da2269900105799e92332a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC11301695,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,dance pop,pop",0.587,0.965,11.0,-4.106,1.0,0.101,0.0362,0.0,0.138,0.825,129.972,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",1238 +1239,spotify:track:0Yg9xipP8POqZetnhGh8x6,When You Tell Me That You Love Me (with Diana Ross),"spotify:artist:5Z1CCuBsyhEHngq3U5IraY, spotify:artist:3MdG05syQeRYPPcClLaUGl","Westlife, Diana Ross",spotify:album:07sBktUc2CbnzPd8ecePWk,Face To Face,spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,2005-10-31,https://i.scdn.co/image/ab67616d0000b2731d78472931a3c47d66444ee4,1,2,236240,https://p.scdn.co/mp3-preview/4a9a70a3c27d46317a37f4b05dcdbf2075cf45e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBARL0500645,spotify:user:bradnumber1,2022-09-27T03:10:01Z,"boy band,adult standards,disco,motown,quiet storm,soft rock,soul",0.532,0.554,4.0,-5.923,1.0,0.0301,0.295,0.0,0.3,0.107,74.916,4.0,,S Records,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (UK) LIMITED,1239 +1240,spotify:track:33XaLfS6lcitzafRtG2sVg,Don't Waste Your Time,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:4LgTmVlUlNWsfriBJ0jury,My December,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2007,https://i.scdn.co/image/ab67616d0000b2734ded83be3055a4884d131009,1,5,215293,https://p.scdn.co/mp3-preview/0d7b0a3b9df030aec12680b88155e8a5007614de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBCTA0700099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.56,0.927,4.0,-3.821,1.0,0.0471,0.00717,1.62e-06,0.113,0.545,121.938,4.0,,19 Recordings,P (P) 2007 19 Recordings Limited,1240 +1241,spotify:track:5Db9VIdDsN5yu3Eu7CT0i4,Stay With Me,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:2Jg7JZ0ZXOGje1bkq7CVgK,In The Lonely Hour,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2014-01-01,https://i.scdn.co/image/ab67616d0000b2734fb7193968e58e51c3db3ef4,1,3,172723,https://p.scdn.co/mp3-preview/a6673e86dccaf0232ab041314ec716e03e2f34fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71308833,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.479,0.419,0.0,-6.517,1.0,0.0389,0.568,0.000217,0.11,0.186,85.014,4.0,,Capitol Records,"C © 2014 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2014 Capitol Records, a division of Universal Music Operations Limited",1241 +1242,spotify:track:5qq1jQGxAtM1CxAh3FxL6u,Oh L'Amour - 2011 Remaster,spotify:artist:0z5DFXmhT4ZNzWElsM7V89,Erasure,spotify:album:7ym6Dezcz4CbxZLVqJ1Xuk,Wonderland (2011 Expanded Edition),spotify:artist:0z5DFXmhT4ZNzWElsM7V89,Erasure,1986-05-01,https://i.scdn.co/image/ab67616d0000b2733a8732dc49f6886a3ef3c42a,1,10,183920,https://p.scdn.co/mp3-preview/f226dcc1066137e0d4064ed55fb2204581322e69?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAJH1100043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop",0.646,0.82,3.0,-8.066,1.0,0.0286,0.102,0.00183,0.037,0.712,122.43,4.0,,"Mute, a BMG Company","C © 2011 Mute Records Ltd., a BMG Company, P ℗ 2011 Mute Records Ltd., a BMG Company",1242 +1243,spotify:track:0CcQNd8CINkwQfe1RDtGV6,Believer,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:5GlPAy2PRJW06GVFhKwGTl,Evolve,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2017-06-23,https://i.scdn.co/image/ab67616d0000b2737956bd9a3d7a15e4c2e37cc6,1,3,204346,https://p.scdn.co/mp3-preview/7d2f1ec114c44ecfa8b9017ad1c01cb041c8e613?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USUM71700626,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.779,0.787,10.0,-4.305,0.0,0.108,0.0524,0.0,0.14,0.708,124.982,4.0,,Universal Music Group,"C © 2017 KIDinaKORNER/Interscope Records, P ℗ 2017 KIDinaKORNER/Interscope Records",1243 +1244,spotify:track:6kooDsorCpWVMGc994XjWN,Black Betty,spotify:artist:6FITmSxIMsk6TfulFiCIIz,Ram Jam,spotify:album:4z2REZpvRsVMpHFrsIz7PD,Ram Jam,spotify:artist:6FITmSxIMsk6TfulFiCIIz,Ram Jam,1977-06-20,https://i.scdn.co/image/ab67616d0000b273fa5dcfc4b1b99a0598224758,1,1,238973,https://p.scdn.co/mp3-preview/c2be3d98da62f643e634154e835dae936d79bf90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM10211288,spotify:user:bradnumber1,2021-08-08T09:26:31Z,southern rock,0.465,0.907,11.0,-6.404,0.0,0.113,0.0241,0.00118,0.13,0.681,117.293,4.0,,Epic,"P (P) 1977 Epic Records, a division of Sony Music Entertainment",1244 +1245,spotify:track:225xvV8r1yKMHErSWivnow,"I Don't Want to Miss a Thing - From ""Armageddon"" Soundtrack",spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,spotify:album:4f7HKjBnjpMsDBDTHYV890,Armageddon - The Album,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1998-06-23,https://i.scdn.co/image/ab67616d0000b273da8d92affd796f7e20af7375,1,1,298760,https://p.scdn.co/mp3-preview/f02930ba19b2760c7df9abfbd7aca5ba1ea99be9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM19801545,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.383,0.662,2.0,-5.162,1.0,0.0333,0.165,0.0,0.248,0.138,121.154,4.0,,Columbia/Sony Music Soundtrax,"P (P) 1975, 1978, 1998 Sony Music Entertainment Inc., 1994, 1998 Sony Music Entertainment (Canada) Inc., 1974 Warner Bros. Records, Inc., 1982 Capitol Records, Inc., 1998 Mercury Records",1245 +1246,spotify:track:4RzkSrWPVv1DveFOd7gpNG,Hand on Your Heart,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:7FfyAlMb6eoZbUTZ7V2tBG,Kylie Greatest Hits,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2006-08-05,https://i.scdn.co/image/ab67616d0000b2730dd530f4c8e2424f3d31679a,1,8,234066,https://p.scdn.co/mp3-preview/931335096e66c4e23b39ffebaf13608ab637b09b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUWA00600480,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.7,0.846,10.0,-10.273,1.0,0.0536,0.239,0.00192,0.0824,0.87,120.452,4.0,,WM Australia,"C © 1997 Mushroom Records, P ℗ 1997 Mushroom Records",1246 +1247,spotify:track:76D5nfZbYzZYfUZKGy73jy,7 Seconds (feat. Neneh Cherry),"spotify:artist:77zlytAFjPFjUKda8TNIDY, spotify:artist:3JxCEqL9zjKnDJgUhRuRJD","Youssou N'Dour, Neneh Cherry",spotify:album:6Smydx3R0VZPoIdBeOmbFI,7 Seconds: The Best Of Youssou N'Dour,spotify:artist:77zlytAFjPFjUKda8TNIDY,Youssou N'Dour,2004,https://i.scdn.co/image/ab67616d0000b273b27641785cd303ca55c8a5bd,1,4,305773,https://p.scdn.co/mp3-preview/79c9688a2dac55afb65d4f23014cce0c0da543d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USSM10021897,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"afropop,mbalax,world,new wave pop,urban contemporary",0.68,0.702,1.0,-9.621,0.0,0.0267,0.0838,1.79e-06,0.326,0.509,154.198,4.0,,Columbia/Legacy,"P (P) 2000 Sony Music Entertainment (France) SA, 1992, 1994, 1996, 2004 Sony Music Entertainment Inc.",1247 +1248,spotify:track:2SPFC3GXog3hBb24Ww9sFV,Stay,"spotify:artist:7zYGAXxAaq15C9eM29M8Fj, spotify:artist:29tN6dpjDGnlr6QkCSOemd, spotify:artist:6nLM87NFy18fHOOprTtWuS, spotify:artist:7AIqEHSDwom8YR90Mt8CQD","Eternal, P Jervier, Steve Jervier, Wales",spotify:album:0muxkHLB5waGUEAcOlBMYA,Stay: The Essential Eternal Collection,spotify:artist:7zYGAXxAaq15C9eM29M8Fj,Eternal,2001,https://i.scdn.co/image/ab67616d0000b273aa2974f64a08050bb5283b27,1,1,237533,https://p.scdn.co/mp3-preview/28962bf561f1e439e73897e052a220d85d86673d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,GBAYE9300045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,girl group",0.591,0.727,10.0,-8.058,0.0,0.054,0.00411,1.53e-06,0.0289,0.846,98.528,4.0,,Parlophone UK,"C © 2001 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",1248 +1249,spotify:track:2GOZBSkMkbQZQ3Vu1UK3Y2,I Like That,spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl,Bazzi,spotify:album:2EpNS90ocyfiJx6P4PX3qH,I Like That,spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl,Bazzi,2018-04-11,https://i.scdn.co/image/ab67616d0000b2737c5d30cfa8458d48d210dec5,1,1,158024,,False,0,USAT22102089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.671,0.683,6.0,-5.435,0.0,0.07,0.161,0.0,0.189,0.7,74.485,4.0,,Atlantic Records,"C © 2021 Atlantic Records Group LLC, P ℗ 2021 Atlantic Records Group LLC",1249 +1250,spotify:track:1Pg2yx1drvE8uJhMCnIpGN,Calendar Girl - Remastered,spotify:artist:5N6GwJzOcOY5kv8p0NjhYL,Neil Sedaka,spotify:album:4LEVq549JUbYQmzma1NzEl,The Very Best Of Neil Sedaka,spotify:artist:5N6GwJzOcOY5kv8p0NjhYL,Neil Sedaka,2001-08-06,https://i.scdn.co/image/ab67616d0000b273ac2be6ed6b32bfad5f140df5,1,7,156533,https://p.scdn.co/mp3-preview/132e96a459bcb9a8e260eec5cc9e73ae14d17a01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USRC10100026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,bubblegum pop,easy listening,rockabilly,soft rock",0.707,0.643,1.0,-7.46,0.0,0.0303,0.456,0.0,0.281,0.875,123.476,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment,1250 +1251,spotify:track:5AjTZe2LOEXovYmwKffidT,Way Out West,"spotify:artist:0AluwN4mocA305JLqpZytD, spotify:artist:4v0Hh2bdIAJnaUqAOipfYs","James Blundell, James Reyne",spotify:album:5TzRcn21IXTIfUDu8m48pH,I Shall Be Released - The Best Of James Blundell,spotify:artist:0AluwN4mocA305JLqpZytD,James Blundell,2001-01-01,https://i.scdn.co/image/ab67616d0000b273961cb89c8c44074d235f88bc,1,17,242666,https://p.scdn.co/mp3-preview/f4b4a44ac990d0b7f06ee62e8e0f62b9c45e4ab1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUEM09200003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,australian rock",0.625,0.791,7.0,-6.866,1.0,0.0276,0.118,3.39e-05,0.185,0.671,123.093,4.0,,EMI Music Australia,"C © 2001 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2001 EMI Recorded Music Australia Pty Ltd.",1251 +1252,spotify:track:71RVcxj9HH4r6bkxG7spaQ,Never Be the Same,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:0r5gtFG4UsSkDafxSdRuiL,Beautiful,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2013-10-04,https://i.scdn.co/image/ab67616d0000b2731f09965e9d8de6752d8051d7,1,5,232880,https://p.scdn.co/mp3-preview/9f2f747736f441592cfcb729f0bf7e92c8489450?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUBM01300381,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.456,0.95,1.0,-4.249,0.0,0.137,0.03,0.0,0.0859,0.361,78.458,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,1252 +1253,spotify:track:4sz1Ng2Cgidfqqiy0pNL6R,The Reflex - Single Version; 2010 Remaster,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:0jBIq5EY9zRBZJuCE9iuM1,Seven and the Ragged Tiger - Deluxe Edition,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1983-11-21,https://i.scdn.co/image/ab67616d0000b273b66a8f4f3f57f2cc43c88775,2,6,267426,https://p.scdn.co/mp3-preview/666fbb0503da5d10bc10e05f77f00af411c3e620?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAYE1000059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.554,0.888,0.0,-6.664,1.0,0.087,0.107,0.0,0.291,0.82,126.701,4.0,,Parlophone UK,"C © 2010 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2010 Parlophone Records Ltd, a Warner Music Group Company",1253 +1254,spotify:track:28IahcgGKn8QtXyag8SmX8,Baby It's You,spotify:artist:5xuNBZoM7z1Vv8IQ6uM0p6,JoJo,spotify:album:1UIesw6QSRT3VrFN36hwgp,JoJo,spotify:artist:5xuNBZoM7z1Vv8IQ6uM0p6,JoJo,2004-06-22,https://i.scdn.co/image/ab67616d0000b2735afc97ef10f77b2a1492ad71,1,2,191693,https://p.scdn.co/mp3-preview/c698fffdb243abf2de870e6131938db1bb5da869?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USUYG1353153,spotify:user:bradnumber1,2023-02-22T06:09:51Z,"dance pop,pop,post-teen pop",0.899,0.399,1.0,-7.07,1.0,0.195,0.0182,0.00788,0.161,0.689,119.91,3.0,,"Blackground Records, LLC","C 2004 Blackground Records, LLC, P 2004 Blackground Records, LLC",1254 +1255,spotify:track:0RZxn1grDbKTsBzHTHHLfi,Greenfields,spotify:artist:0nd3tsqHVtnAWBCQgwtbIz,The Brothers Four,spotify:album:0yncFm4eYbrZesOF2XqIAf,The Brothers Four,spotify:artist:0nd3tsqHVtnAWBCQgwtbIz,The Brothers Four,2014-01-01,https://i.scdn.co/image/ab67616d0000b27325cdbee8c3f77c62b6e39ad4,1,8,183293,https://p.scdn.co/mp3-preview/b36cc01166e1c7c0bd3bf8783c617401e25f13fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR2X41451910,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"american folk revival,vocal harmony group",0.457,0.181,11.0,-17.446,0.0,0.0385,0.847,0.0,0.114,0.379,109.979,1.0,,"Folk, Blues & Beyond","C 2014 Salt & Pepper, P 2014 Salt & Pepper",1255 +1256,spotify:track:2KzPXNOtIHNDmDzynPzDxr,Standing On The Outside,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:1Htwv3I81HU6YUWWs0ommZ,The Best of Cold Chisel - All for You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b27306dc40069e45da5e5d9f90e6,1,1,175574,https://p.scdn.co/mp3-preview/7c2db9e36a3dc72d8d99e7c930d96e1b9139c944?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABB1158213,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.389,0.959,9.0,-2.34,1.0,0.0573,0.0113,0.000101,0.327,0.65,160.04,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",1256 +1257,spotify:track:2BPfKiV9U0CR1dpUgeUwuH,She Drives Me Crazy,spotify:artist:20p5D2KrE8CGuOjHtxsyTp,Fine Young Cannibals,spotify:album:59R6wpHlRk6Ui19e7qAgo1,The Raw And The Cooked,spotify:artist:20p5D2KrE8CGuOjHtxsyTp,Fine Young Cannibals,1988,https://i.scdn.co/image/ab67616d0000b273781b821ca96e39298d24d9b5,1,1,215773,https://p.scdn.co/mp3-preview/f884c44e079a100d543b120f52b89ec0075a5475?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRH10901907,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,synthpop",0.799,0.687,2.0,-5.682,1.0,0.0431,0.193,0.000188,0.0307,0.965,108.804,4.0,,Rhino/London-Sire,"C 1989 London/Sire Records., P 1989 London/Sire Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",1257 +1258,spotify:track:6JnRLa50GuHzF0ucg9AGMI,Wild Love,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,spotify:album:5c9YBir9B4KdAOJZH4k5xw,Wild Love,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,2018-02-08,https://i.scdn.co/image/ab67616d0000b273c4127961c69cb0bcded4a4db,1,1,197413,https://p.scdn.co/mp3-preview/3e7c42332191de857b12137cf82a736fe8bea4a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71800827,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop,uk pop",0.443,0.608,11.0,-6.708,0.0,0.0669,0.0828,0.000234,0.102,0.23,70.124,4.0,,Universal Music Group,"C © 2018 Republic Records, a division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",1258 +1259,spotify:track:051Au1EyNQqU7FaQAsysrJ,Good Times,"spotify:artist:1k5aZWIOUbUfKcnMxtEivJ, spotify:artist:1eClJfHLoDI4rZe5HxzBFv","Jimmy Barnes, INXS",spotify:album:56Yeyxz8fsjtpJbsoYnJ6V,Mushroom 25 Live,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2002,https://i.scdn.co/image/ab67616d0000b2737e6ea3d3540f1f0f069272b3,1,30,265853,https://p.scdn.co/mp3-preview/eda2c49945de29a5770bc224196fb08c936b5cf5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00202170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.405,0.994,2.0,-2.171,1.0,0.0571,0.00258,0.395,0.596,0.627,156.955,4.0,,Bloodlines,"C 2002 Bloodlines, P 2002 Bloodlines",1259 +1260,spotify:track:3L0mVxjD0YZ2a47CJpz9sI,Space Invaders,spotify:artist:6msUfcWG8ncvGbWfDUeHwD,Player 1,spotify:album:1c0sHG15Zh8J4si9DUMPwM,Space Invaders,spotify:artist:6msUfcWG8ncvGbWfDUeHwD,Player 1,1980,https://i.scdn.co/image/ab67616d0000b273b0c385e6bf71f862adc41485,1,1,344221,https://p.scdn.co/mp3-preview/27cf3a544bb50676c2a8907f7ffcf6e82bea8fd6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUWA01400172,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.816,0.521,0.0,-12.329,1.0,0.0395,0.000736,0.0664,0.0881,0.761,126.096,4.0,,WM Australia,"C 2014 © 1980 WEA Records Pty. Limited, P ℗ 2014 WEA Records Pty. Limited",1260 +1261,spotify:track:5EpYgTYGVPd43FG07Q6WVp,Rockin' for Myself,spotify:artist:1xFPKhNxU5iyrvYDP7EhOp,Motiv8,spotify:album:0JpVbXHKFpNszSRZVsXti6,Hits of the '90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-04,https://i.scdn.co/image/ab67616d0000b273e870de28c112072efbfeb328,1,39,231640,https://p.scdn.co/mp3-preview/4b24c0f1eac132e3d0b9a770289bd88f6f06e9f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHT0900213,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.599,0.955,2.0,-6.103,1.0,0.0378,0.000423,0.931,0.328,0.389,134.0,4.0,,WM Australia,"C 2016 Warner Music Australia, P 2016 Warner Music Australia",1261 +1262,spotify:track:0t5gvCYBnURaGA4YWzEgQ5,Take Me,spotify:artist:5Pb27ujIyYb33zBqVysBkj,RÜFÜS DU SOL,spotify:album:5pXO4QznbiBRF6MB09iZjy,Atlas,spotify:artist:5Pb27ujIyYb33zBqVysBkj,RÜFÜS DU SOL,2013-08-12,https://i.scdn.co/image/ab67616d0000b273297799179dd442f79444d850,1,2,242000,https://p.scdn.co/mp3-preview/823412cd35262b1e6f7517aadfd577befb3bf746?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUDCB1300082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian electropop,indietronica",0.719,0.781,0.0,-7.346,1.0,0.0464,0.166,0.0438,0.104,0.455,124.042,4.0,,Sweat It Out,P (P) 2013 Sweat It Out Music! Distributed in Australia & New Zealand by Sony Music Australia Pty Ltd under exclusive license,1262 +1263,spotify:track:6CdOcSuE9dHBzPAL8obZkj,Old Man Emu,spotify:artist:5kPsbSWuadXAb2wheoVRkf,John Williamson,spotify:album:2N3uKW1fQpsk7R33wHXsaC,J.W.'s Family Album,spotify:artist:5kPsbSWuadXAb2wheoVRkf,John Williamson,1990,https://i.scdn.co/image/ab67616d0000b273c008ef85518923c2c3b3b1be,1,10,191000,https://p.scdn.co/mp3-preview/4677eed656c29d68842e2696e306eaad12d67685?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUEQ09000007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian children's music,australian country,australian rock,bush ballad",0.702,0.358,1.0,-14.212,1.0,0.103,0.702,0.0,0.123,0.92,126.818,4.0,,WM Australia,"C © 1990 Emusic Pty. Ltd., P ℗ 1990 Emusic Pty. Ltd.",1263 +1264,spotify:track:4hrae8atte6cRlSC9a7VCO,Always On Time,"spotify:artist:1J2VVASYAamtQ3Bt8wGgA6, spotify:artist:5rkVyNGXEgeUqKkB5ccK83","Ja Rule, Ashanti",spotify:album:2wMavIKnu6feFNOeQ1hVwf,Pain Is Love,spotify:artist:1J2VVASYAamtQ3Bt8wGgA6,Ja Rule,2001-01-01,https://i.scdn.co/image/ab67616d0000b273e37dce36d17a97c3011d1068,1,5,245133,https://p.scdn.co/mp3-preview/e092bf82bcb5d96acd231028be273e323a8ac010?cid=9950ac751e34487dbbe027c4fd7f8e99,True,3,USDJ20110760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,gangster rap,hip hop,hip pop,pop rap,queens hip hop,rap,urban contemporary,dance pop,hip pop,r&b,urban contemporary",0.839,0.706,5.0,-6.104,0.0,0.199,0.208,0.0,0.242,0.839,96.673,4.0,,RAL (Rush Associated Label),"C © 2001 The Island Def Jam Music Group, P ℗ 2001 UMG Recordings, Inc.",1264 +1265,spotify:track:53Mz9H5UvWMQUXHZnaZYKQ,Babooshka,spotify:artist:1aSxMhuvixZ8h9dK9jIDwL,Kate Bush,spotify:album:4MYtX4Kta7FL4NVUE0FYws,Never for Ever,spotify:artist:1aSxMhuvixZ8h9dK9jIDwL,Kate Bush,1980-09-08,https://i.scdn.co/image/ab67616d0000b273786b6e14d94db2177fe8f9df,1,1,209933,https://p.scdn.co/mp3-preview/4df4efec9a5b7cdb66d9fa521dff3a30d020b165?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBAYE8000069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,art rock,baroque pop,new wave pop,permanent wave,piano rock,singer-songwriter",0.466,0.439,5.0,-8.892,0.0,0.0325,0.741,1.64e-05,0.0707,0.289,107.173,4.0,,Parlophone UK,"C © 1980 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1980 Parlophone Records Ltd, a Warner Music Group Company",1265 +1266,spotify:track:2fSSyRVMrYBUd1MZDYi9Ln,Wrap Me Up - Original Mix,spotify:artist:41VxAgbLRHo2ZYZEq5P1mD,Alex Party,spotify:album:0fYJIhjxCdKwWSYcF8Po99,Alex Party,spotify:artist:41VxAgbLRHo2ZYZEq5P1mD,Alex Party,1995,https://i.scdn.co/image/ab67616d0000b273588d8c367995a84b18cc0587,1,1,334577,https://p.scdn.co/mp3-preview/e4f57ef4bee30b276ef6eb47f757f1ad8ab5f289?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,ITC899500041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,hip house,italo house",0.848,0.749,10.0,-5.717,1.0,0.0397,0.0609,0.0,0.119,0.932,131.953,4.0,,Antibemusic,"C Goodymusic Music Production, P Goodymusic Music Production",1266 +1267,spotify:track:7lL2lMWNtzOcf5HnEudNgn,Everyday People,spotify:artist:5m8H6zSadhu1j9Yi04VLqD,Sly & The Family Stone,spotify:album:4he7R24eqd1EbF9kegiAK8,R&B: From Doo-Wop To Hip-Hop,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1999-10-08,https://i.scdn.co/image/ab67616d0000b273980caf4dd525a15f08f8cb87,1,9,139506,https://p.scdn.co/mp3-preview/a7faa351c9c03000f7950ae67b32acd7b352625e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USSM19900487,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,funk,funk rock,p funk,psychedelic soul,soul,southern soul",0.813,0.619,7.0,-8.203,1.0,0.0294,0.245,0.0151,0.113,0.774,114.58,4.0,,Sony Music Entertainment,"P Originally Released 1969 T-Neck Records, (P) 1979 Capitol Records inc., 1979 MJJ Productions, Inc., 1984 Personal Records Inc., 1985, 1987 Courtesy of Universal Music Special Markets, 1996 Ruthless Records, Originally Released 1950, 1951, 1952, 1955,",1267 +1268,spotify:track:24tO365YW6lcZr1hN4Ukzj,Tomorrow,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:4kp8sfeCDUMm4JKRdrD3aC,Frogstomp (Deluxe Edition) [Remastered],spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,1995-03-27,https://i.scdn.co/image/ab67616d0000b27372c3447a562fc7be1c8e1255,1,2,266280,https://p.scdn.co/mp3-preview/a2b8a3af3004d70311bd67d526db72e554443cfc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,AUBM01500029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.292,0.714,2.0,-4.919,1.0,0.0316,0.000658,0.000109,0.102,0.462,151.412,3.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,1268 +1269,spotify:track:7vFoFDWqTX0mHzLfrF1Cfy,Cheerleader (Felix Jaehn Remix) - Radio Edit,"spotify:artist:5MouCg6ta7zAxsfMEbc1uh, spotify:artist:4bL2B6hmLlMWnUEZnorEtG","OMI, Felix Jaehn",spotify:album:7cVXH4slEYzGjDh498OFyL,Me 4 U,spotify:artist:5MouCg6ta7zAxsfMEbc1uh,OMI,2015-10-16,https://i.scdn.co/image/ab67616d0000b27385ca00029c70d6b5b8372e96,1,1,180565,https://p.scdn.co/mp3-preview/9ef1666d9a28af2e8e531754e1804c736a8e6cec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USUS11202574,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,edm,german dance,pop dance,tropical house,uk dance",0.782,0.685,4.0,-6.237,1.0,0.0309,0.166,1.18e-05,0.16,0.603,118.02,4.0,,"Ultra Records, LLC","P (P) 2015 Ultra Records, LLC",1269 +1270,spotify:track:7kXmJwrZGIhDaLT9sNo3ut,Hey Boy Hey Girl,spotify:artist:1GhPHrq36VKCY3ucVaZCfo,The Chemical Brothers,spotify:album:1QJP73UumgERuzp3yJSXw3,Surrender,spotify:artist:1GhPHrq36VKCY3ucVaZCfo,The Chemical Brothers,1999-01-01,https://i.scdn.co/image/ab67616d0000b27329dc59785f4c767fcbfc9e38,1,9,290493,https://p.scdn.co/mp3-preview/e499b55c4c7593ce09379b8c180a79c72628d111?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBAAA9900303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,big beat,breakbeat,electronica,rave,trip hop",0.632,0.92,2.0,-4.976,1.0,0.0531,0.119,0.508,0.114,0.363,127.001,4.0,,Virgin Records,"C © 1999 Virgin Records Limited, P ℗ 1999 Virgin Records Limited",1270 +1271,spotify:track:5s7xgzXtmY4gMjeSlgisjy,Easy Love,spotify:artist:1IueXOQyABrMOprrzwQJWN,Sigala,spotify:album:5rr0xAQfk01cPi1N37jX11,Brighter Days,spotify:artist:1IueXOQyABrMOprrzwQJWN,Sigala,2018-09-28,https://i.scdn.co/image/ab67616d0000b273681d6da9a0ab5ff23fadf0f9,1,16,229813,https://p.scdn.co/mp3-preview/823240c03fc067a0174f9009c29c23f460638036?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBCEN1500481,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop dance,uk dance",0.68,0.942,9.0,-4.208,1.0,0.0631,0.175,0.0013,0.117,0.647,123.976,4.0,,Ministry of Sound Recordings,P (P) 2018 Ministry of Sound Recordings Ltd./B1 Recordings GmbH. a Sony Music Entertainment Company,1271 +1272,spotify:track:2q95XoeFGixx8b5LNF6Ey1,Greenlight (feat. Flo Rida & LunchMoney Lewis),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:2iUbk5KhZYZt4CRvWbwb7S","Pitbull, Flo Rida, LunchMoney Lewis",spotify:album:4NSmDaKvXiNU02sTbpPtmZ,Greenlight (feat. Flo Rida & LunchMoney Lewis),spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2016-07-22,https://i.scdn.co/image/ab67616d0000b273079cdee961dd5d655a9badce,1,1,244173,https://p.scdn.co/mp3-preview/0ed4bec9616c4d6fcd1e43dcb7d573dc278b801f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC11601270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,dance pop,miami hip hop,pop,pop rap,miami hip hop",0.695,0.837,1.0,-5.617,0.0,0.281,0.245,0.0,0.367,0.639,115.067,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",1272 +1273,spotify:track:3Dy4REq8O09IlgiwuHQ3sk,Waterloo,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:5gSBDA6ufk8UZejT4XR7av,Waterloo,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1974,https://i.scdn.co/image/ab67616d0000b27311c24dc7f5ef909381c0a7d6,1,1,168960,https://p.scdn.co/mp3-preview/080b052681fc89186ce46d77e96032b53e7f0ee8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,SEAYD7415010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.445,0.949,2.0,-4.682,1.0,0.0471,0.395,8.18e-06,0.0902,0.653,147.604,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P ℗ 2001 Polar Music International AB",1273 +1274,spotify:track:1UWnhkOGpKefx0cMBbCzvZ,Sunshine,spotify:artist:7rftfGIYEeZ79sLb58ZBDi,GABRIELLE,spotify:album:7loeQSRUbnvwYLcmgt70D0,Now And Always: 20 Years Of Dreaming,spotify:artist:7rftfGIYEeZ79sLb58ZBDi,GABRIELLE,2013-01-01,https://i.scdn.co/image/ab67616d0000b273830d6d5f0037c8aed27c6859,1,15,251467,https://p.scdn.co/mp3-preview/51309e8b78ab412dcf7d50138ba41651701e7de7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBARA9900036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,new wave pop",0.682,0.623,6.0,-5.858,0.0,0.0232,0.0443,0.0,0.0741,0.642,93.492,4.0,,Universal-Island Records Ltd.,"C © 2013 Go! Discs Ltd., P ℗ 2013 Go! Discs Ltd.",1274 +1275,spotify:track:3j1bxj7MebPlPXVeiBiRnm,He Don't Love You - Remastered,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:1xN9jGFs73atuQ02PrazLf,Here And Now - The Best Of Human Nature,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,2001-10-30,https://i.scdn.co/image/ab67616d0000b273c26c16c6b599a919c482d01d,1,4,191760,https://p.scdn.co/mp3-preview/608f15a17f18344ddf090be433f32020d2e8bde1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUSM00100173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,boy band",0.742,0.974,1.0,-1.09,0.0,0.0841,0.285,0.0,0.382,0.889,94.014,4.0,,Sony Music Entertainment,P (P) 2001 Sony Music Entertainment Australia Pty Ltd,1275 +1276,spotify:track:76rCrPvrlLO4CyqAeaLu4o,Standing In the Way of Control,spotify:artist:3sFTupo9UGgrujjN21BjwR,Gossip,spotify:album:0yj50hXLNjoNbluZJgwMrR,Standing in the Way of Control,spotify:artist:3sFTupo9UGgrujjN21BjwR,Gossip,2005-10-11,https://i.scdn.co/image/ab67616d0000b27387a6c5553a49ee35dfc25cf9,1,2,256399,https://p.scdn.co/mp3-preview/156cc6554d948de693a7c9bea9fb03c58fa9c2e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USKRS0642202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,electroclash,new rave,olympia wa indie",0.697,0.919,7.0,-6.174,1.0,0.029,0.00694,0.0621,0.203,0.943,118.341,4.0,,Kill Rock Stars,"C 2006 Kill Rock Stars, P 2006 Kill Rock Stars",1276 +1277,spotify:track:1SfoXU9q0EZtlgSLlrYBju,Chains,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,spotify:album:3F5UFEwefmWchvdhkvRUcT,Nick Jonas,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,2014-11-10,https://i.scdn.co/image/ab67616d0000b27355aa91fe90af23863bca0f25,1,1,203106,https://p.scdn.co/mp3-preview/97c6ad62e69a2a2e73200c8ab704ade172b57b55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71411120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.534,0.606,0.0,-5.874,0.0,0.0452,0.0137,0.0,0.0725,0.13,151.88,4.0,,Universal Music Group,"C © 2014 Island Records, a division of UMG Recordings, Inc. / Safehouse Records, LLC, P ℗ 2014 Island Records, a division of UMG Recordings, Inc. / Safehouse Records, LLC",1277 +1278,spotify:track:33CdK2WiQfodCIHiXfgoLJ,Changes,"spotify:artist:1ZwdS5xdxEREPySFridCfh, spotify:artist:33JfM2NgTRFT9wMoQvcv6T","2Pac, Talent",spotify:album:3PO9OtQdvCDJN8zDLtZiYd,Greatest Hits,spotify:artist:1ZwdS5xdxEREPySFridCfh,2Pac,1998-01-01,https://i.scdn.co/image/ab67616d0000b273eaea3c8408d2d21c05263d56,2,5,268773,https://p.scdn.co/mp3-preview/580c5e07b46389108cd447c7d9ebec16f447496f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USUM70761163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,rap,west coast rap",0.863,0.675,0.0,-5.998,1.0,0.0727,0.0454,0.0,0.244,0.321,111.101,4.0,,2Pac Greatest Hits,"C © 1998 Death Row Records/Interscope Records, P This Compilation ℗ 1998 Death Row Records/Interscope Records",1278 +1279,spotify:track:7zdScymclyy48QjCvbYjm2,I See You Baby (feat. Gramma Funk),"spotify:artist:67tgMwUfnmqzYsNAtnP6YJ, spotify:artist:09dzhikZDQAWGs8jyIylqj","Groove Armada, Gramma Funk",spotify:album:1KzGIlZIlhRwUIoPlexdax,Vertigo,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2000-02-22,https://i.scdn.co/image/ab67616d0000b273e86fe42a6311a55c0004e720,1,7,281066,https://p.scdn.co/mp3-preview/20ac7ff82f411367ccb5eeb13a6788242361df18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAHK9900065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,nu skool breaks,trip hop",0.82,0.838,6.0,-8.588,1.0,0.057,0.00271,0.149,0.0532,0.654,122.023,4.0,,Jive,P (P) 1999 Zomba Records Ltd.,1279 +1280,spotify:track:7fWSIddv6LJG8ZXJFNVQyi,Nothing Really Matters,spotify:artist:33W1pnW9zScZtYTnAoWnOT,Mr. Probz,spotify:album:3melTGvrnMU9IGdi7EpuuU,Nothing Really Matters,spotify:artist:33W1pnW9zScZtYTnAoWnOT,Mr. Probz,2014-09-27,https://i.scdn.co/image/ab67616d0000b2739cecff556a54c7460634b393,1,1,222041,https://p.scdn.co/mp3-preview/58b52cfd6e64db192029c85e14ab9823603383b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLB8R1400010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop dance,0.404,0.225,4.0,-8.829,1.0,0.0363,0.888,0.0,0.111,0.275,135.075,4.0,,Left Lane Recordings,P (P) 2014 Left Lane Recordings exclusively licensed to Sony Music Entertainment Netherlands B.V. / Ultra Records,1280 +1281,spotify:track:3LRJbFT9rKoKv4aW7PuBJC,Longview,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:4uG8q3GPuWHQlRbswMIRS6,Dookie,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,1994-02-01,https://i.scdn.co/image/ab67616d0000b273db89b08034de626ebee6823d,1,4,233240,https://p.scdn.co/mp3-preview/e98dd82c5fcc52fbbde388cb6b1cad9c94ed7506?cid=9950ac751e34487dbbe027c4fd7f8e99,True,65,USRE19900148,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.381,0.732,10.0,-7.594,0.0,0.0536,0.00834,0.0101,0.0854,0.814,142.504,4.0,,Reprise,"C © 1994 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S., P ℗ 1994 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S.",1281 +1282,spotify:track:4oIdw7pDWySkJd48DMORwt,Let It Be Me,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,spotify:album:2Lj9mbgsyKozGGbHmF1EB8,Greatest and Original Hits,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,2017-09-15,https://i.scdn.co/image/ab67616d0000b273609aa1b335282c3e3ac4ac73,1,14,154000,https://p.scdn.co/mp3-preview/3f66c8a7fb44ca104f07673a32e87153a7f348cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,DEG320704321,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,folk rock,mellow gold,rock-and-roll,rockabilly,sunshine pop",0.319,0.326,7.0,-6.255,1.0,0.0282,0.833,4e-06,0.475,0.284,90.089,4.0,,10TEN MEDIA,"C 2017 10TEN MEDIA, P 2017 10TEN MEDIA",1282 +1283,spotify:track:4V87hYB94wu8DFtd901riK,Satisfied,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,spotify:album:0Zf6FJVyK6qUxmg1WMNruG,Repeat Offender,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,1989-01-01,https://i.scdn.co/image/ab67616d0000b273edc27582d8f5c3a7c56893bf,1,2,254466,https://p.scdn.co/mp3-preview/ca82c3838f0c97fa0e1bffe846abfd5a6014496c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USCA28901056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.572,0.914,8.0,-8.436,1.0,0.0311,0.0717,0.00776,0.319,0.843,108.991,4.0,,Capitol Records,"C © 1989 Capitol Records Inc., P ℗ 1989 Capitol Records Inc.",1283 +1284,spotify:track:3tCwjWLicbjsMCvXhN0WOE,Rude,spotify:artist:0DxeaLnv6SyYk2DOqkLO8c,MAGIC!,spotify:album:2Qm9AzJHWLG9vbJCeXRaAW,Rude,spotify:artist:0DxeaLnv6SyYk2DOqkLO8c,MAGIC!,2013-10-11,https://i.scdn.co/image/ab67616d0000b2730ee3a8b1f9762f0a1e69385d,1,1,224773,https://p.scdn.co/mp3-preview/e97393738862719f5426688bdac00330985f8c4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,CAV161300016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,reggae fusion",0.743,0.807,1.0,-3.78,1.0,0.0364,0.0435,0.0,0.309,0.899,144.062,4.0,,Latium Records/RCA Records,P (P) 2013 Sony Music Entertainment International Limited,1284 +1285,spotify:track:6Yx181fZzA0YE2EkUsYruq,Big Plans,spotify:artist:2jnIB6XdLvnJUeNTy5A0J2,Why Don't We,spotify:album:4XSRrYHawXjGuQ6qEk3Kk5,Big Plans,spotify:artist:2jnIB6XdLvnJUeNTy5A0J2,Why Don't We,2019-01-17,https://i.scdn.co/image/ab67616d0000b2731e73efa2d0bbf457035e873f,1,1,179929,https://p.scdn.co/mp3-preview/8da0069a3f12cc18cd138742ef97791f430ee3aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21813079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.693,0.604,11.0,-5.279,1.0,0.0427,0.0668,0.0,0.114,0.651,75.014,4.0,,Atlantic Records,"C 2019 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world excluding the United States, P 2019 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world excluding the United States",1285 +1286,spotify:track:5znn63OxSBuhiLG5LiB1uv,If I Only Had Time,spotify:artist:40f70JVK5anPhD3fGoXkra,John Rowles,spotify:album:05Ks0UVQcEgQ5g5vL1i1HP,True 60s Love (3CD Set),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2006-01-01,https://i.scdn.co/image/ab67616d0000b273c3711bc21bd6bdc5383927e7,1,2,167426,,False,0,USMC10201342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic nz pop,0.37,0.228,5.0,-14.436,1.0,0.034,0.438,4.82e-06,0.112,0.284,81.223,4.0,,Universal Music,"C © 2006 Spectrum Music, P ℗ 2006 Spectrum Music",1286 +1287,spotify:track:6UYe99X2ZfDPD6h5S6KnPD,Jet Black Heart,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:0D4PrQ0jSANUtiAxh4jdb3,Sounds Good Feels Good (Deluxe),spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2015-10-23,https://i.scdn.co/image/ab67616d0000b273a30f516acb0e7e1f0f224ec1,1,5,221715,https://p.scdn.co/mp3-preview/52716e7f5b4a917267b4e49fbf60a458ca25fbcf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71505155,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.51,0.847,11.0,-4.263,0.0,0.034,0.000158,0.0,0.085,0.551,153.941,4.0,,Universal Music Group,"C © 2015 Capitol Records Ltd., P ℗ 2015 Capitol Records Ltd.",1287 +1288,spotify:track:4lFO4X6ef61SR6M1KXkSRN,Get Used to It,spotify:artist:0AfDBW6x1y3cJ7U8wSasVM,Roger Voudouris,spotify:album:6n44QMNdMbVuBZmS1e5TSN,Radio Dreams,spotify:artist:0AfDBW6x1y3cJ7U8wSasVM,Roger Voudouris,1979,https://i.scdn.co/image/ab67616d0000b27312ac9b54e6b8cb850fed3256,1,1,182120,https://p.scdn.co/mp3-preview/cd5a7ce5eeba6e3bc34f15008771db36261269d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USWB10001537,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep soft rock,yacht rock",0.661,0.842,0.0,-6.893,1.0,0.047,0.0986,0.000124,0.0534,0.899,85.427,4.0,,Rhino/Warner Records,"C © 1979 Warner Records Inc., P ℗ 1979 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",1288 +1289,spotify:track:6Epe685KrDmgqzlUYJHZSg,The Door,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:5MgR5qQCxsusIOui4S2io5,The Best Of - Volume One,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,2000-11-10,https://i.scdn.co/image/ab67616d0000b273b034d912628fb636eedbf7c2,1,8,215533,https://p.scdn.co/mp3-preview/075a3ca8967204ac73b94118a8c638ab5a5c51ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUSM09600250,spotify:user:bradnumber1,2022-05-04T08:44:46Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.197,0.834,7.0,-5.523,1.0,0.0582,0.000395,0.00691,0.203,0.343,184.298,4.0,,Murmur Records,P (P) 2000 Sony Music Entertainment Australia Pty Ltd,1289 +1290,spotify:track:3DWOTqMQGp5q75fnVsWwaN,Hey There Delilah - Bonus Track,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,spotify:album:6MEfS6zFbBYZalRsumJsvs,Every Second Counts,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,2006,https://i.scdn.co/image/ab67616d0000b273596eb3b2abe78e33702b657f,1,13,233280,https://p.scdn.co/mp3-preview/17673c1d00db9b687ef09437da6cd3ee144826b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USHR10622325,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,neo mellow,neon pop punk,pop punk,pop rock",0.522,0.453,2.0,-7.859,1.0,0.0295,0.831,1.21e-06,0.101,0.306,103.879,4.0,,Hollywood Records,"C © 2007 Hollywood Records, Inc., P ℗ 2007 Hollywood Records, Inc.",1290 +1291,spotify:track:1bWh6WbYzSFxsOKzE4EpUu,Good Days,spotify:artist:7tYKF4w9nC0nq9CsPZTHyP,SZA,spotify:album:5JdcspRtnXWhBdvcGlfS3U,Good Days,spotify:artist:7tYKF4w9nC0nq9CsPZTHyP,SZA,2020-12-25,https://i.scdn.co/image/ab67616d0000b2738a8e89f89a2a8e3f9e9f1e0c,1,1,279204,https://p.scdn.co/mp3-preview/948f2829b13f184cedb89f44283cddac68569212?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC12004190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b,rap",0.472,0.655,1.0,-8.392,0.0,0.0561,0.488,1.33e-05,0.688,0.416,120.856,4.0,,Top Dawg Entertainment/RCA Records,"P (P) 2020 Top Dawg Entertainment, under exclusive license to RCA Records",1291 +1292,spotify:track:3FDAd5vW4P7xe1GBNOLyfD,The One That You Love,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,spotify:album:1aEMnQLoZHDjibEDcisTMJ,The One That You Love,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,1981,https://i.scdn.co/image/ab67616d0000b27348224db72657cad2c6cf7c34,1,4,259000,https://p.scdn.co/mp3-preview/e54debcb045c43ed8f630d1e64e632650a39b408?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAR18100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.396,0.479,5.0,-8.072,1.0,0.0268,0.728,9.51e-06,0.102,0.184,109.973,4.0,,Buddha Records,P (P) 2001 Buddha Records,1292 +1293,spotify:track:6UUzt6LPtVNwy8l6jqu9C9,You're The One That I Want - From “Grease”,"spotify:artist:4hKkEHkaqCsyxNxXEsszVH, spotify:artist:4BoRxUdrcgbbq1rxJvvhg9","John Travolta, Olivia Newton-John",spotify:album:24xwaPVl6xkUunl6lEWwje,Gold,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2005-01-01,https://i.scdn.co/image/ab67616d0000b273f24a708b3a02f314c0e4b46d,1,17,167613,https://p.scdn.co/mp3-preview/e40c2ef7fd8bb3ba548682058005672f8ee91184?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057890004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,adult standards,australian dance,disco,mellow gold,soft rock",0.743,0.774,0.0,-5.916,1.0,0.0941,0.256,5.03e-05,0.155,0.833,106.564,4.0,,Universal Strategic Marketing,"C © 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc.",1293 +1294,spotify:track:21YnmkSDhUkmkkni22Svc4,In My Blood,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:6AjREacSERvnQTe6GFTx3c,Shawn Mendes,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2018-05-25,https://i.scdn.co/image/ab67616d0000b2733a2178ae7cf4e68cad643f7e,1,1,211360,https://p.scdn.co/mp3-preview/b5a073a40111e1223cfded8e044fc786d45a098d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71803183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.622,0.709,5.0,-7.32,1.0,0.0669,0.0582,0.0,0.126,0.488,140.018,4.0,,Island Records,"C © 2018 Island Records, a division of UMG Recordings, Inc., P ℗ 2018 Island Records, a division of UMG Recordings, Inc.",1294 +1295,spotify:track:5YKrfw8DX2XO3UpzMafU3m,Endless Love (with Mariah Carey),"spotify:artist:19y5MFBH7gohEdGwKM7QsP, spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ","Luther Vandross, Mariah Carey",spotify:album:6kRdK7cPgLqNfSoI7AMlyj,#1 to Infinity,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2015-05-15,https://i.scdn.co/image/ab67616d0000b2739ad666bef28b02eff5476ddd,1,8,260120,https://p.scdn.co/mp3-preview/20550662840aaa906284e38e9b9b95e2e209e7ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USSM19400684,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"quiet storm,soul,dance pop,pop,urban contemporary",0.228,0.494,10.0,-6.881,1.0,0.0295,0.71,0.0,0.143,0.2,95.923,4.0,,Columbia/Legacy,"P (P) 1990, 1991, 1992, 1993, 1995, 1997, 1999 Columbia Records, a division of Sony Music Entertainment, 2005, 2008 The Island Def Jam Music Group and Mariah Carey, 2015 Epic Records, a division of Sony Music Entertainment",1295 +1296,spotify:track:6ioBgySxoeQKALvAeLEmId,Express Yourself,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,12,239093,https://p.scdn.co/mp3-preview/4a6fc6129cecd10132e4074b98e640aadadd9422?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB10903609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.667,0.93,7.0,-4.585,1.0,0.0608,0.0108,0.0,0.176,0.893,115.572,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",1296 +1297,spotify:track:6Szw3sQC5Zssr15AJsUY9J,Love To Love You Baby,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,spotify:album:210folYgKMSZAz4IiqDnmy,Love To Love You Baby,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,1975-08-27,https://i.scdn.co/image/ab67616d0000b273c51322f54ad592349d3ee847,1,1,1008533,https://p.scdn.co/mp3-preview/6e254933386a539459dc2e87f4dc3c423ac939db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USWWW0125678,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg,new wave pop,soft rock",0.622,0.425,10.0,-16.256,1.0,0.052,0.292,5.73e-05,0.0498,0.417,96.168,4.0,,Island Def Jam,"C © 1975 UMG Recordings, Inc., P ℗ 1975 UMG Recordings, Inc.",1297 +1298,spotify:track:2XZfoXVg9cVsSNGIiPHPPh,Daylight,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:7ezRF0jJQIoSabdkMktfuL,Overexposed,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2012-06-25,https://i.scdn.co/image/ab67616d0000b273205182ba108cdaa51ce6bf86,1,3,225306,https://p.scdn.co/mp3-preview/df5c48d6f507357536167216f400d28f49915ae1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71204771,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.655,0.66,2.0,-5.565,1.0,0.0268,0.00459,0.0,0.177,0.389,119.987,4.0,,Universal Music Taiwan,"C © 2012 A&M/Octone Records, P ℗ 2012 Interscope Records",1298 +1299,spotify:track:4vcfmp43IaxCKxd2auRune,Gonna Make It,spotify:artist:6drRiHUHVW8Fr4sgiefhqG,Vydamo,spotify:album:7uXpLKsHpnTpGQ40dTCfI1,Becoming Human,spotify:artist:6drRiHUHVW8Fr4sgiefhqG,Vydamo,2013-06-28,https://i.scdn.co/image/ab67616d0000b2736d138dda48edc0395af81e9d,1,10,231653,https://p.scdn.co/mp3-preview/84742e503604708b34443e69455900e1b2d8d670?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUBM01200427,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.614,0.975,0.0,-3.073,1.0,0.0977,0.00358,0.00171,0.118,0.575,102.007,4.0,,Sony Music Entertainment,P (P) 2013 Aeronautus under exclusive license to Sony Music Entertainment Australia Pty Ltd,1299 +1300,spotify:track:015IsLQFXbEm0f541N2qoX,Red Lights,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,spotify:album:7we1BNenehBwimeIkK0jL0,A Town Called Paradise,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,2014-06-13,https://i.scdn.co/image/ab67616d0000b2734f4944ceeffac9693cc90e40,1,1,262200,https://p.scdn.co/mp3-preview/36f55dcb05d4a050a5842d03b79eb3c4cc4115f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CYA111300030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance",0.654,0.83,10.0,-4.801,1.0,0.0366,0.000629,1.13e-06,0.121,0.548,124.989,4.0,,Universal Music Group,"C © 2014 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings, a division of Universal Music BV, P ℗ 2014 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings, a division of Universal Music BV",1300 +1301,spotify:track:55c4EJs1SiBApX0mFZ7830,Ahead of Myself,spotify:artist:1jhdZdzOd4TJLAHqQdkUND,Jamie Lawson,spotify:album:0xgnGJbAUWGc89cevj0NUh,Jamie Lawson,spotify:artist:1jhdZdzOd4TJLAHqQdkUND,Jamie Lawson,2015-10-09,https://i.scdn.co/image/ab67616d0000b273c981a537f52d545aa8658e94,1,8,223177,https://p.scdn.co/mp3-preview/913b3fa377ed3cc0986d51238307034eb641e2a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,GBAHS1500350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"devon indie,indie anthem-folk",0.668,0.66,2.0,-5.577,1.0,0.0278,0.122,0.0,0.221,0.429,94.016,4.0,,Gingerbread Man Records,"C © 2015 Gingerbread Man Records, an Atlantic Records UK / Warner Music Group Company, P ℗ 2015 Gingerbread Man Records, an Atlantic Records UK / Warner Music Group Company",1301 +1302,spotify:track:5iLvRrk04Bh6IDjefiEDSN,Am I Ever Gonna See Your Face Again,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:276IuP7BGVWsN19ebQTcRA,Liveline,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,1988-01-01,https://i.scdn.co/image/ab67616d0000b2731958573818cb6d7762f61f13,1,15,249733,https://p.scdn.co/mp3-preview/ad055d809715c554c29aa61ebe77a639677cf213?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00623550,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.209,0.945,9.0,-6.306,1.0,0.0589,0.00141,2.28e-05,0.9,0.386,184.197,4.0,,Bloodlines,"C 1998 Bloodlines, P 1998 Bloodlines",1302 +1303,spotify:track:6nbsaXBPuj2TWFS3GqgI4f,Better Than Love,spotify:artist:3w4VAlllkAWI6m0AV0Gn6a,Hurts,spotify:album:5cZgn1Bqk3msMykasZtZod,Happiness - Deluxe Edition,spotify:artist:3w4VAlllkAWI6m0AV0Gn6a,Hurts,2011-10-28,https://i.scdn.co/image/ab67616d0000b273df3d8fb47baeacc36d7df844,1,8,213120,https://p.scdn.co/mp3-preview/769b9d7a658579ad82eb55a92823b6ca272a7d39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBARL1000780,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,neo-synthpop",0.47,0.765,2.0,-5.65,1.0,0.0484,0.00818,5.16e-05,0.11,0.16,131.971,3.0,,Epic,P (P) 2011 Major Label Limited under exclusive licence to Sony Music Entertainment UK Limited,1303 +1304,spotify:track:2MA3h5MsIglWsU5tVZ2jJD,I Really Don't Want to Know,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:5nFIESxbIeBxoREzNMzzbN,Elvis Country,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1971-01-02,https://i.scdn.co/image/ab67616d0000b2732a78d5257049a45dd242bcb5,1,6,178240,https://p.scdn.co/mp3-preview/072f26d595aa8159b6aa3c2beca0014b4f0e3815?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USRC11000152,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.297,0.337,0.0,-14.401,1.0,0.034,0.679,0.106,0.136,0.328,78.405,3.0,,Legacy Recordings,P (P) 1971 Sony Music Entertainment,1304 +1305,spotify:track:5ZdrNnYV5VZWds4WXKf8kf,Ignorance,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:3CaQTJU2Cpx7GXTgenmb2r,Brand New Eyes,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2009-09-22,https://i.scdn.co/image/ab67616d0000b273b9abbedc516dd297039977bd,1,2,218626,https://p.scdn.co/mp3-preview/87faa996ad4d7c39d9f939811a3186c36c5d9deb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT20902050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.522,0.964,11.0,-2.645,0.0,0.095,0.00109,0.000389,0.0387,0.51,170.944,4.0,,Fueled By Ramen/Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",1305 +1306,spotify:track:3r3XrpjHZVrK8dohg1gksD,Work On It,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,spotify:album:5M31iLPzYuYxkpSO5tBOMN,HERE,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2016-11-04,https://i.scdn.co/image/ab67616d0000b273c2b8088bf48953a269f7a1fd,1,10,214386,https://p.scdn.co/mp3-preview/ee4b911cc6c7e0df4497b60690c6a656a7744fdd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USRC11602386,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b",0.495,0.391,11.0,-9.061,1.0,0.336,0.18,0.0,0.599,0.674,173.599,3.0,,RCA Records Label,"P (P) 2016 RCA Records, a divsion of Sony Music Entertainment",1306 +1307,spotify:track:3rq5w4bQGigXOfdN30ATJt,Do I Wanna Know?,spotify:artist:7Ln80lUS6He07XvHI8qqHH,Arctic Monkeys,spotify:album:6645HGh7ZOZSUTpqW9iYLR,AM,spotify:artist:7Ln80lUS6He07XvHI8qqHH,Arctic Monkeys,2013-01-01,https://i.scdn.co/image/ab67616d0000b2730acf7f2eefe5bd36efbc26b4,1,1,272394,https://p.scdn.co/mp3-preview/006bc465fe3d1c04dae93a050eca9d402a7322b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEL1300362,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,permanent wave,rock,sheffield indie",0.548,0.532,5.0,-7.596,1.0,0.0323,0.186,0.000263,0.217,0.405,85.03,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2013 Domino Recording Company Ltd, P ℗ 2013 Domino Recording Company Ltd, under exclusive licence to EMI Recorded Music Australia Pty Ltd",1307 +1308,spotify:track:1gPZsYflLQSUNSqJzhpbA2,Mendocino,spotify:artist:3A2UXqQgMDJ3YNvLPyX5NW,Sir Douglas Quintet,spotify:album:6GdjH0M4GI3KQG4bzFs6t9,The Best Of Doug Sahm & The Sir Douglas Quintet (1968 - 1975),"spotify:artist:3A2UXqQgMDJ3YNvLPyX5NW, spotify:artist:2PL6uHCPVIWjmr6lK2U9pG","Sir Douglas Quintet, Doug Sahm",1990-08-14,https://i.scdn.co/image/ab67616d0000b273cfa6bf39e92ea1184f099791,1,1,158266,https://p.scdn.co/mp3-preview/b52e05e13bb9f29e20622c7096da01cd8c954fbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USIR20200677,spotify:user:bradnumber1,2021-08-08T09:26:31Z,cosmic american,0.555,0.567,2.0,-11.715,1.0,0.0305,0.581,1.86e-05,0.195,0.969,132.777,4.0,,Mercury Records,"C © 1990 UMG Recordings, Inc., P ℗ 1990 UMG Recordings, Inc.",1308 +1309,spotify:track:7HuAVTtzubdCgGkQCIE1Ke,Sunday Morning,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,spotify:album:4Rvc82pV7HCKZyRHbLWCac,Tragic Kingdom,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,1995-10-10,https://i.scdn.co/image/ab67616d0000b27343ce3d7c5b2b07ce264512ff,1,9,272173,https://p.scdn.co/mp3-preview/ac433b486f894f7a49d206df7d0c32887352a2ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19500278,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dance rock,permanent wave,pop rock,rock",0.579,0.803,4.0,-5.419,1.0,0.0312,0.0099,2.06e-05,0.118,0.793,157.139,4.0,,Universal Music Group,"C © 1995 Interscope Records, P ℗ 1995 Interscope Records",1309 +1310,spotify:track:0d28khcov6AiegSCpG5TuT,Feel Good Inc.,spotify:artist:3AA28KZvwAUcZuOKwyblJQ,Gorillaz,spotify:album:0bUTHlWbkSQysoM3VsWldT,Demon Days,spotify:artist:3AA28KZvwAUcZuOKwyblJQ,Gorillaz,2005-05-23,https://i.scdn.co/image/ab67616d0000b27319d85a472f328a6ed9b704cf,1,6,222640,https://p.scdn.co/mp3-preview/b13a1bb2d8a04132982a49b6efee933cc9d67c7e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,GBAYE0500172,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative hip hop,modern rock,rock",0.818,0.705,6.0,-6.679,1.0,0.177,0.00836,0.00233,0.613,0.772,138.559,4.0,,Parlophone UK,"C © 2005 Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 2005 Parlophone Records Ltd, P ℗ 2005 The copyright in this sound recording is owned by Parlophone Records Ltd",1310 +1311,spotify:track:4P9qbRFA26qtfZNLCwizwH,Itchycoo Park (2012 Mono Remaster),spotify:artist:1YqGsKpdixxSVgpfaL2AEQ,Small Faces,spotify:album:6e4A1dHDymLj2VcX4G45uM,Itchycoo Park,spotify:artist:1YqGsKpdixxSVgpfaL2AEQ,Small Faces,1967,https://i.scdn.co/image/ab67616d0000b273a1cfbaf0e2079ce452f5292f,1,1,166680,https://p.scdn.co/mp3-preview/385d01a2c470a2d53e425337dd4f38ac92fa2c50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GBA7H1244605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,protopunk",0.613,0.555,9.0,-9.801,1.0,0.072,0.58,1.64e-06,0.119,0.556,127.267,4.0,,Charly | Immediate,"C 2018 Charly Acquisitions Ltd., P 1967 Immediate",1311 +1312,spotify:track:48l7PNpT2fBoT4cdLW6EzP,Love Takes Time,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:5SwNGsGw1I8H361DKiYnnn,Mariah Carey,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,1990-06-12,https://i.scdn.co/image/ab67616d0000b2735084c69ed3f70e8fb139e1ea,1,11,229226,https://p.scdn.co/mp3-preview/4764d3751a760d3a61226f26f39129622733369b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USSM19000422,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.403,0.338,8.0,-12.371,0.0,0.0322,0.727,0.0,0.0849,0.233,126.23,4.0,,Columbia,"P (P) 1990 Columbia Records, a division of Sony Music Entertainment",1312 +1313,spotify:track:3zByVQLvdXUaDTubfWkpCk,Sweet Caroline,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:3aLKBtYt2B0XdLaTtBzF2n,Sweet Caroline,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1969,https://i.scdn.co/image/ab67616d0000b27326007318d27552db70e1cb95,1,13,203573,https://p.scdn.co/mp3-preview/02b08ccf7ade7793f7165c3b00f8a3bb6469666c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16991138,spotify:user:bradnumber1,2021-08-08T09:27:38Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.529,0.127,11.0,-16.066,1.0,0.0274,0.611,0.000109,0.237,0.578,63.05,4.0,,Universal Music Group,"C © 1987 Geffen Records, P ℗ 1987 Geffen Records",1313 +1314,spotify:track:5ueyLj6e6oVaTY0KQ6yLaA,All Shook Up,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0C3t1htEDTFKcg7F2rNbek,Elvis' Golden Records,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1958-03-21,https://i.scdn.co/image/ab67616d0000b27320ee3e86e17f17239bef1f76,1,3,117080,https://p.scdn.co/mp3-preview/3313423ac43537ec4608c733cfb71202dfcfaa57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC15705814,spotify:user:bradnumber1,2024-01-02T05:24:10Z,"rock-and-roll,rockabilly",0.624,0.468,10.0,-12.162,1.0,0.132,0.881,6.35e-06,0.144,0.952,74.139,4.0,,RCA Records Label,P (P) 1958 Sony Music Entertainment,1314 +1315,spotify:track:53Y0kdCa1CZ9gRqEuknfwy,Bang My Head (feat. Sia & Fetty Wap),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:6PXS4YHDkKvl1wkIl4V8DL, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","David Guetta, Fetty Wap, Sia",spotify:album:7bpWEp24oHgUs08ImjakfU,Listen Again,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2015-11-27,https://i.scdn.co/image/ab67616d0000b273048f37d7b1bba62b93f1009a,1,15,193333,https://p.scdn.co/mp3-preview/6487652056a04654cca24100cc34b46413c4dd8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GB28K1500110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,new jersey rap,pop rap,rap,southern hip hop,trap,pop",0.599,0.869,0.0,-3.697,1.0,0.0789,0.0525,0.00719,0.103,0.593,108.061,4.0,,Parlophone (France),"C © 2015 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company, P ℗ 2015 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company",1315 +1316,spotify:track:729niU7gAAMpn7UXM5L2aY,You've Not Changed,spotify:artist:5uxkcHbgyNbyzq1nyChvCa,Sandie Shaw,spotify:album:2S2oH3rWCk4jC630QgMiDt,The Very Best Of,spotify:artist:5uxkcHbgyNbyzq1nyChvCa,Sandie Shaw,2019-06-14,https://i.scdn.co/image/ab67616d0000b2739598a1c9fd2c9e6a3323a183,1,14,139733,https://p.scdn.co/mp3-preview/6be729d2fda2d5bde40a2eb81ca75bf9ca72f4f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,GBCXD0400228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.633,0.689,5.0,-7.934,1.0,0.0436,0.247,0.0,0.287,0.746,95.448,4.0,,UMC (Universal Music Catalogue),"C © 2019 Universal Music Operations Limited, P This Compilation ℗ 2019 Universal Music Operations Limited",1316 +1317,spotify:track:3jYRpwbctfqB77uU7T7K3U,Caught Up In You,spotify:artist:3zXw2Eh96iTT51pytzHdZi,38 Special,spotify:album:4vWxauP6oFowwSQeBnFwRW,Special Forces,spotify:artist:3zXw2Eh96iTT51pytzHdZi,38 Special,1982-01-01,https://i.scdn.co/image/ab67616d0000b27330ffb48d5884a64a21e27068,1,1,279333,https://p.scdn.co/mp3-preview/469e7cb21a6ec2ab332cca5b5d014bd5b53f749e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAM18201204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,glam metal,hard rock,mellow gold,rock,soft rock,southern rock",0.425,0.681,1.0,-8.604,0.0,0.0316,0.0229,0.000219,0.0543,0.933,131.011,4.0,,A&M,"C © 1982 A&M Records Inc., P ℗ 1982 UMG Recordings, Inc.",1317 +1318,spotify:track:5kqIPrATaCc2LqxVWzQGbk,7 Years,spotify:artist:25u4wHJWxCA9vO0CzxAbK7,Lukas Graham,spotify:album:4rFrdkSWs0dtj0rWPzOk1v,Lukas Graham,spotify:artist:25u4wHJWxCA9vO0CzxAbK7,Lukas Graham,2016-04-01,https://i.scdn.co/image/ab67616d0000b2732d94d0f04e9a58d1654b760b,1,1,237300,https://p.scdn.co/mp3-preview/9fa9d1f4ac0d0c32c1cd0e6ab8d64fefef55e81d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USWB11506516,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"danish pop,scandipop",0.765,0.473,10.0,-5.829,1.0,0.0514,0.287,0.0,0.391,0.34,119.992,4.0,,Warner Records,"C © 2016 Warner Records Inc., P ℗ 2016 Warner Records Inc.",1318 +1319,spotify:track:29FmGLB6Z3ymju4j2WBO9u,Supalonely,"spotify:artist:0Cp8WN4V8Tu4QJQwCN5Md4, spotify:artist:6sHCvZe1PHrOAuYlwTLNH4","BENEE, Gus Dapperton",spotify:album:7b1r6psEkoGUhKFUAyvkI4,STELLA & STEVE,spotify:artist:0Cp8WN4V8Tu4QJQwCN5Md4,BENEE,2019-11-15,https://i.scdn.co/image/ab67616d0000b273df03c911423883de87b673d3,1,2,223480,https://p.scdn.co/mp3-preview/63a9eb683ccc37dafb11f93ac109e302743e8c61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USUM71922598,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,nz pop,bedroom pop,indie poptimism,pov: indie",0.864,0.617,7.0,-4.699,1.0,0.0589,0.314,1.68e-05,0.124,0.818,128.955,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",1319 +1320,spotify:track:3K4HG9evC7dg3N0R9cYqk4,One Step Closer,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:6hPkbAV3ZXpGZBGUvL6jVM,Hybrid Theory (Bonus Edition),spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2000,https://i.scdn.co/image/ab67616d0000b273e2f039481babe23658fc719a,1,2,157333,https://p.scdn.co/mp3-preview/93915a6ffff1e702717623fe052e781e68bde91b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USWB10002399,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.492,0.969,9.0,-4.419,1.0,0.0491,0.0014,1.32e-06,0.0787,0.538,95.136,4.0,,Warner Records,"C © 2000 Warner Records Inc., P ℗ 2000 Warner Records Inc.",1320 +1321,spotify:track:3dJ1OgvUKWi46HcRF4hiSq,If I Die Young,spotify:artist:75FnCoo4FBxH5K1Rrx0k5A,The Band Perry,spotify:album:1woC5ODCw19RbzP42qJEQz,If I Die Young,spotify:artist:75FnCoo4FBxH5K1Rrx0k5A,The Band Perry,2010-01-01,https://i.scdn.co/image/ab67616d0000b273fb5a44dd859c085acdf09de7,1,1,223333,https://p.scdn.co/mp3-preview/c6072435742c697c07ef1aed89fa909c9dabb0bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71007807,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country road",0.597,0.497,4.0,-6.373,1.0,0.0274,0.36,0.0,0.355,0.338,130.718,4.0,,Big Machine Label Group,"C © 2010 Big Machine Label Group, LLC, P ℗ 2010 Big Machine Label Group, LLC",1321 +1322,spotify:track:6sbj89WozjblBMa5u41orw,Running Scared,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:21REQ6X34DCAcoxtj654TI,Crying,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,1962-01-01,https://i.scdn.co/image/ab67616d0000b2732b150c08d3c57a785b02c578,1,12,132040,https://p.scdn.co/mp3-preview/c30c3ec273deee875bf468dd26746d6309eff6a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM16101222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.572,0.392,9.0,-10.555,1.0,0.0325,0.778,0.000435,0.15,0.381,128.255,3.0,,Columbia Nashville Legacy,P Originally released 1962. All rights reserved by Sony Music Entertainment,1322 +1323,spotify:track:4lDKORchTM8Rd0PFQFXTLX,Baby Baby,spotify:artist:26T6b8maqEVltcmE4kSDUl,Corona,spotify:album:6rrPmmb2lQd5pNRL6HKBZx,The Rhythm of the Night,spotify:artist:26T6b8maqEVltcmE4kSDUl,Corona,1994,https://i.scdn.co/image/ab67616d0000b273f94b2a29ccc364e8faedce10,1,1,228013,https://p.scdn.co/mp3-preview/07b6fc7e2bb1215d97226c595ebe3e3f9c33e868?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,ITA199800034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,europop,hip house",0.639,0.869,7.0,-8.479,1.0,0.0311,0.00336,0.002,0.0576,0.562,133.033,4.0,,DWA Records,"C 1995 Extravaganza Publishing Srl, P 1995 Robyx Srl",1323 +1324,spotify:track:7rpNuuoMbid56XkDsx2FjE,Black And White,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,spotify:album:5gdoRB1AUsGnScCuZ8gmPp,Heartbreak Weather,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,2020-03-13,https://i.scdn.co/image/ab67616d0000b2733d13e91ce05c4e9b3e7201b7,1,2,193089,https://p.scdn.co/mp3-preview/90ebfe37ee6f87709c169acac863c2f72ffe5d42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUG12000226,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.443,0.582,2.0,-6.015,1.0,0.0482,0.0302,0.0,0.127,0.233,147.587,4.0,,Capitol Records,"C © 2020 Neon Haze Music Ltd. and Niall Horan, under exclusive license to UMG Recordings, Inc., P ℗ 2020 Neon Haze Music Ltd. and Niall Horan, under exclusive license to UMG Recordings, Inc.",1324 +1325,spotify:track:3ebYtLVuV4HzEZUDcpZB9p,Lovin' You,spotify:artist:2i1IdHG5w0wiSmJGoqAGlj,Minnie Riperton,spotify:album:3TFzRE2Mm1uZcJeu91UNs9,Perfect Angel,spotify:artist:2i1IdHG5w0wiSmJGoqAGlj,Minnie Riperton,1974,https://i.scdn.co/image/ab67616d0000b2731d3aab58dd4e235e7059b6a1,1,8,223143,https://p.scdn.co/mp3-preview/2496a9152c151903f12e6d3b2ecdb09dcc33b0b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USCA28800360,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,motown,quiet storm,soul",0.387,0.164,9.0,-14.617,1.0,0.085,0.962,0.0,0.0817,0.409,72.029,4.0,,Capitol Records,"C © 2005 Capitol Catalog, P ℗ 2007 Capitol Records, LLC",1325 +1326,spotify:track:248OFOZef6ShXv6DGgbnxU,Saved,spotify:artist:6LuN9FCkKOj5PcnpouEgny,Khalid,spotify:album:6kf46HbnYCZzP6rjvQHYzg,American Teen,spotify:artist:6LuN9FCkKOj5PcnpouEgny,Khalid,2017-04-27,https://i.scdn.co/image/ab67616d0000b273988ede5e1276e758b5f9e577,1,5,206533,https://p.scdn.co/mp3-preview/2d8a01f1bafb079b7a3795b160acb8ca66b64632?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRC11602481,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop r&b",0.739,0.448,10.0,-10.28,0.0,0.138,0.189,0.0,0.118,0.553,81.044,4.0,,"Right Hand Music Group, LLC/RCA Records","P (P) 2017 RCA Records, a division of Sony Music Entertainment",1326 +1327,spotify:track:5MFzQMkrl1FOOng9tq6R9r,Don't Wanna Know,"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg","Maroon 5, Kendrick Lamar",spotify:album:0fvTn3WXF39kQs9i3bnNpP,Don't Wanna Know,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2016-10-11,https://i.scdn.co/image/ab67616d0000b273eec1912bbc2ff74b8203fe5f,1,1,214480,https://p.scdn.co/mp3-preview/7e9c77a2e24e979397d07e24be75e4e3148670e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71609975,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,conscious hip hop,hip hop,rap,west coast rap",0.783,0.623,7.0,-6.126,1.0,0.08,0.338,0.0,0.0975,0.447,100.048,4.0,,Universal Music Group,"C © 2016 Interscope Records (222 Records), P ℗ 2016 Interscope Records (222 Records)",1327 +1328,spotify:track:2TSVJz7sJIUInkzWVJIsCf,I Can Dream About You,spotify:artist:1HvcqyRLS9nF8hAbTWOqpr,Dan Hartman,spotify:album:2FlyqGm8Ol64zNXwHlbF9l,Streets Of Fire,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1984-01-01,https://i.scdn.co/image/ab67616d0000b273e1b7bdd208bcfcd89d2dd1ed,1,8,247800,https://p.scdn.co/mp3-preview/18f5685e32e08e96d2fb8247baf060553e83c2ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC18415537,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.747,0.533,9.0,-12.165,1.0,0.0554,0.1,0.0,0.0344,0.875,112.987,4.0,,Geffen*,"C © 1984 Universal City Studios Inc., P This Compilation ℗ 1984 Geffen Records",1328 +1329,spotify:track:79BTOOl7Wb6swu7zlh6ddL,Spaceman,spotify:artist:3k7uMwc8FLJmH8RHMh2HF8,Babylon Zoo,spotify:album:6DUy5QdkKXI15NFbk3pYAZ,Playlist: 90s Pop,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-04-28,https://i.scdn.co/image/ab67616d0000b2737972a71a8bd676a54d6a564e,1,3,242493,https://p.scdn.co/mp3-preview/787e9820eadda9cd2dd57811973757eab2be0ec6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE9500084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british alternative rock,grebo,spacegrunge",0.46,0.873,0.0,-7.96,1.0,0.0601,0.0161,4.85e-05,0.255,0.485,146.244,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",1329 +1330,spotify:track:5FBaWYaoA8j260ctveOa4a,New York,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:0MeOIA0wwSa6nW79jy8QcZ,x - Wembley Edition,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2015-11-13,https://i.scdn.co/image/ab67616d0000b273407981084d79d283e24d428e,1,19,235960,https://p.scdn.co/mp3-preview/b92a0d16627096d8a66bbd2d7c3a7ace625959db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBAHS1500472,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.728,0.461,6.0,-8.726,1.0,0.0395,0.707,0.0,0.113,0.474,86.014,4.0,,Atlantic Records UK,"C © 2015 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group Company., P ℗ 2014 / 2015 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group Company. Except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn Mayer Pictures Inc.",1330 +1331,spotify:track:3AgY5gLURlcdYBVGv1RVm7,Luck Be A Lady,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,spotify:album:4pA0MHfxB10F9Q8HhoItIh,My Kind Of Broadway,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,1965-11,https://i.scdn.co/image/ab67616d0000b27320280fde86d8cf0fea539b8e,1,3,314133,https://p.scdn.co/mp3-preview/e213f7ea8a51c90cd17e935d2995c89531ccac04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRH10800884,spotify:user:bradnumber1,2023-02-14T22:29:03Z,"adult standards,easy listening,lounge",0.362,0.398,8.0,-13.582,1.0,0.0465,0.737,0.0,0.282,0.5,151.186,4.0,,FRANK SINATRA DIGITAL REPRISE,"C © 1965 Frank Sinatra Enterprises, LLC, P ℗ 2010 Frank Sinatra Enterprises, LLC",1331 +1332,spotify:track:2WfaOiMkCvy7F5fcp2zZ8L,Take on Me,spotify:artist:2jzc5TC5TVFLXQlBNiIUzE,a-ha,spotify:album:1ER3B6zev5JEAaqhnyyfbf,Hunting High and Low,spotify:artist:2jzc5TC5TVFLXQlBNiIUzE,a-ha,1985-06-01,https://i.scdn.co/image/ab67616d0000b273e8dd4db47e7177c63b0b7d53,1,1,225280,https://p.scdn.co/mp3-preview/d1427dd0a300eeccfc53b99a2ebf3c664a67414a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,86,USWB19901214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,synthpop",0.573,0.902,6.0,-7.638,0.0,0.054,0.018,0.00125,0.0928,0.876,84.412,4.0,,Rhino,"C © 1985 Warner Records Inc., P ℗ 1985 Warner Records Inc.",1332 +1333,spotify:track:35zGjsxI020C2NPKp2fzS7,It's Gonna Be Me,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,spotify:album:5hMd4vAfSUT1cbYCnRUako,No Strings Attached,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,2000-03-21,https://i.scdn.co/image/ab67616d0000b273fceb9d92981970dbeea23257,1,2,191040,https://p.scdn.co/mp3-preview/cf9e81bb5eb8e54becbb4e62c6ce33f141fb07a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USJI10000043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.644,0.874,0.0,-4.666,0.0,0.0801,0.0459,2.24e-06,0.0584,0.882,165.09,4.0,,Jive,P (P) 2000 Zomba Recording LLC,1333 +1334,spotify:track:7lPOxMMuMisUcWuIdgIIfg,My Little Girl,spotify:artist:1o711LqmNPfr4wUF9KEJIE,Ted Mulry Gang,spotify:album:36HAfPYsx7cPglngjKbRSa,70 Hits of the '70s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-04,https://i.scdn.co/image/ab67616d0000b273a6f173ddeeeca55fc54cddf3,1,34,217226,https://p.scdn.co/mp3-preview/4db8f0ba3b0329149d573848f2f3c3ac993f125c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUMU07700071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.665,0.71,11.0,-8.979,1.0,0.0311,0.0688,0.00306,0.0899,0.805,129.555,4.0,,WM Australia,"C © 2016 Warner Music Australia Pty Ltd, P ℗ 2016 Warner Music Australia Pty Ltd",1334 +1335,spotify:track:4IRHwIZHzlHT1FQpRa5RdE,Goodbye Yellow Brick Road - Remastered 2014,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:5WupqgR68HfuHt3BMJtgun,Goodbye Yellow Brick Road - Remastered,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1973-10-05,https://i.scdn.co/image/ab67616d0000b273f72f1e38e9bd48f18a17ed9b,1,4,192826,https://p.scdn.co/mp3-preview/2bbb66b8e6b0ffc9d5b0d6be802fabf4053c8a33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,GBUM71304956,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.559,0.473,5.0,-7.712,1.0,0.0279,0.446,0.00141,0.154,0.397,121.227,4.0,,UMC (Universal Music Catalogue),"C © 2014 This Record Company Ltd., P ℗ 2014 This Record Company Ltd.",1335 +1336,spotify:track:1mP8BJQBRZWjSQLVmxQEyG,There'll Be Sad Songs (To Make You Cry),spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,spotify:album:7oUQQI3USlnBTUeN6KXXoo,Love Zone (Expanded Edition),spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,1986,https://i.scdn.co/image/ab67616d0000b27389ec8c852dee33fe4b50bec5,1,4,292680,https://p.scdn.co/mp3-preview/dd618f61b93c9e00b324ca088093b291d74ed5b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAHK9700113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new romantic,new wave pop,soft rock,yacht rock",0.563,0.458,0.0,-7.673,1.0,0.0305,0.748,0.0,0.103,0.259,79.738,4.0,,Sony Music UK,P This compilation (P) 2011 Sony Music Entertainment UK Limited,1336 +1337,spotify:track:6dViIgkYIRccNImPln58rS,Angel,"spotify:artist:5EvFsr3kj42KNv97ZEnqij, spotify:artist:4hB4SmzreXMTGWYj7KQ7QN","Shaggy, Rayvon",spotify:album:6NmFmPX56pcLBOFMhIiKvF,Hot Shot (International Version #2),spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,2000,https://i.scdn.co/image/ab67616d0000b273d6ab2ff415cc6b28ab27ac5d,1,6,235133,https://p.scdn.co/mp3-preview/1a1bf23df980b532eb5e845dbabb89f7ef3160d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USMC19989405,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,reggae fusion,barbadian pop,reggae fusion",0.74,0.766,6.0,-2.939,1.0,0.178,0.116,0.0,0.0406,0.807,170.531,4.0,,Geffen,"C © 2001 MCA Records Inc., P ℗ 2001 Geffen Records",1337 +1338,spotify:track:45tseiRk0tNNZwkejJGwJn,Centerfold,spotify:artist:69Mj3u4FTUrpyeGNSIaU6F,The J. Geils Band,spotify:album:2FZfWyxQuzOcmwzrxlqKRp,Best Of The J. Geils Band,spotify:artist:69Mj3u4FTUrpyeGNSIaU6F,The J. Geils Band,2011-01-01,https://i.scdn.co/image/ab67616d0000b273e46edb67ca8143eda483b22c,1,1,218026,https://p.scdn.co/mp3-preview/71ece42d751323c248267476375f6674dd10bea8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USCA20600378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.677,0.864,0.0,-5.649,1.0,0.0433,0.232,0.0,0.258,0.875,114.328,4.0,,Capitol Records,"C © 2011 Capitol Records, LLC, P This Compilation ℗ 2011 Capitol Records, LLC",1338 +1339,spotify:track:0gVIAgQfc45fa2uA4t94IT,Band of Gold,spotify:artist:0701Axu6yvUIoctaKMbDIZ,Freda Payne,spotify:album:6PUuraVlfNsFZfzWGLqVsT,"Living in the 70s, Vol. 4",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-07-21,https://i.scdn.co/image/ab67616d0000b273c1476a189ffa35a022eacbaa,3,3,174008,https://p.scdn.co/mp3-preview/8ae08a9a6f1a03f105da7ce373e8675756d27cc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBLG7000081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beach music,motown",0.758,0.672,11.0,-7.72,0.0,0.0471,0.069,0.0,0.128,0.919,106.24,4.0,,Sony Music Entertainment,P (P) 2017 Sony Music Entertainment Australia Pty Ltd.,1339 +1340,spotify:track:6tBdTwcyyGq1HU3PXgZK82,All The Things She Said,spotify:artist:2Q3eZMfDQgT8MhPowKFXYO,t.A.T.u.,spotify:album:2Vn3mB6jiBQ2gQ25vvJlEv,200 KM/H In The Wrong Lane (10th Anniversary Edition),spotify:artist:2Q3eZMfDQgT8MhPowKFXYO,t.A.T.u.,2002,https://i.scdn.co/image/ab67616d0000b273c89e1e4a35aadce919f33dac,1,3,214440,https://p.scdn.co/mp3-preview/83c9f53e1a532bd05e3cb088c4112c7fe8c2ffab?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,RUA110100098,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group",0.604,0.831,5.0,-5.72,0.0,0.0387,0.0359,0.00854,0.105,0.447,89.994,4.0,,Universal Music Group,"C © 2012 Universal Music Russia, under exclusive license to Interscope Records., P ℗ 2012 Universal Music Russia, under exclusive license to Interscope Records.",1340 +1341,spotify:track:7BnsbdzyzwT34HjiQPzFBD,Count On Me,spotify:artist:4d7b5lx2ofkLcmzDIfvAI5,Judah Kelly,spotify:album:360waUsDtqCo5p3VEZ4fIt,Count On Me,spotify:artist:4d7b5lx2ofkLcmzDIfvAI5,Judah Kelly,2017-07-28,https://i.scdn.co/image/ab67616d0000b27373231f79c9fd3af169b43a53,1,1,178003,https://p.scdn.co/mp3-preview/625fe4d0f20e65c33c0a48d83f65cc6c4bcddc30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71700528,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.598,0.628,2.0,-3.547,1.0,0.0515,0.0556,0.0,0.0691,0.423,140.028,3.0,,Universal Music Group,"C © 2017 Universal Music Australia Pty Ltd., P ℗ 2017 Universal Music Australia Pty Ltd.",1341 +1342,spotify:track:3MrRksHupTVEQ7YbA0FsZK,The Final Countdown,spotify:artist:7Js6Lde8thlIHXggv2SCBz,Europe,spotify:album:5Jkd47JEaCU1g4DcGBnHm3,The Final Countdown (Expanded Edition),spotify:artist:7Js6Lde8thlIHXggv2SCBz,Europe,1986,https://i.scdn.co/image/ab67616d0000b273f5e30500f0eec7d92b159eae,1,1,310333,https://p.scdn.co/mp3-preview/eaa4589de811f47326f5a15013ed58bd62a9e96a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USSM18600196,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam metal,hard rock,rock,swedish hard rock,swedish melodic rock",0.529,0.843,6.0,-6.908,0.0,0.0616,0.0628,0.000827,0.0608,0.188,117.662,4.0,,Portrait/Epic/Legacy,"P (P) 1986, 1987 Sony Music Entertainment Inc.",1342 +1343,spotify:track:2TtUTMm65xZeqmF721Txfk,Don't Expect Me to Be Your Friend,spotify:artist:1sldhz8tzC100cRAdfnMht,Lobo,spotify:album:5FXBEje9MaN8rSPODQaXAL,The Best Of Lobo,spotify:artist:1sldhz8tzC100cRAdfnMht,Lobo,1993-06-11,https://i.scdn.co/image/ab67616d0000b27311bdb729983420341631a561,1,8,217906,https://p.scdn.co/mp3-preview/3cf6a12d1037fbcd346396ae54f2dfb08dc8400f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USAT20108560,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.513,0.347,1.0,-13.506,1.0,0.029,0.273,0.0417,0.0805,0.52,78.811,4.0,,Rhino Atlantic,"C © 2005 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing., P ℗ 1996 Atlantic Recording Corp. Manufactured & Marketed by Rhino Entertainment",1343 +1344,spotify:track:0mWiuXuLAJ3Brin3Or2x6v,Learn to Fly,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:1zCNrbPpz5OLSr6mSpPdKm,Greatest Hits,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-11-03,https://i.scdn.co/image/ab67616d0000b273136d7250568820409f8fdd60,1,6,234800,https://p.scdn.co/mp3-preview/467d7eddf211aa7ef69fd6558d24cca112d1da32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRW39900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.439,0.931,11.0,-2.59,0.0,0.0473,1.92e-05,1.21e-05,0.193,0.527,135.944,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",1344 +1345,spotify:track:5gmMa8nwzrkcPbHzSW3azN,All Day and All of the Night,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:0fT3ySwzj1bPUWINB07MoI,Kinks (Deluxe Edition),spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,1964-02-02,https://i.scdn.co/image/ab67616d0000b273ac4b34361eb72062755b2d99,1,23,142226,https://p.scdn.co/mp3-preview/8686780c85ed4c4d0cbfd95f1be5d581a33463c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.563,0.915,7.0,-5.062,1.0,0.08,0.247,8.46e-05,0.0613,0.71,136.345,4.0,,Castle Communications,"C 2011 Sanctuary Records Group Ltd., a BMG Company, P 2011 Sanctuary Records Group Ltd., a BMG Company",1345 +1346,spotify:track:6WmiK2assqEPtmqDnn7Dxc,What To Do,spotify:artist:1xBARhKI09ZTmeePVDWMCf,Rotimi,spotify:album:4qWLogv3KFhSOa41Omqigd,What To Do,spotify:artist:1xBARhKI09ZTmeePVDWMCf,Rotimi,2021-06-25,https://i.scdn.co/image/ab67616d0000b273b81911c989ee4179af88c0c7,1,1,144004,https://p.scdn.co/mp3-preview/880e3b5e5ae887c8b18ab8a7fdf6c6c8b0bfc43f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USUYG1373147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop r&b,0.728,0.467,5.0,-6.144,1.0,0.0581,0.281,0.0,0.103,0.339,99.914,4.0,,FrontRo Music Group LLC / EMPIRE,"C 2021 FrontRo Music Group LLC / EMPIRE, P 2021 FrontRo Music Group LLC / EMPIRE",1346 +1347,spotify:track:2qSkIjg1o9h3YT9RAgYN75,Espresso,spotify:artist:74KM79TiuVKeVCqs8QtB0B,Sabrina Carpenter,spotify:album:5quMTd5zeI9yW5UDua8wS4,Espresso,spotify:artist:74KM79TiuVKeVCqs8QtB0B,Sabrina Carpenter,2024-04-12,https://i.scdn.co/image/ab67616d0000b273659cd4673230913b3918e0d5,1,1,175459,https://p.scdn.co/mp3-preview/c4f4406777deb17f09c0237b22044a8b18d986a4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,94,USUM72403305,spotify:user:bradnumber1,2024-08-03T23:23:13Z,pop,0.701,0.76,0.0,-5.478,1.0,0.0285,0.107,6.54e-05,0.185,0.69,103.969,4.0,,Island Records,"C © 2024 Island Records, a division of UMG Recordings, Inc., P ℗ 2024 Island Records, a division of UMG Recordings, Inc.",1347 +1348,spotify:track:2Bi0JWdxDMaKPanNofJSdL,I'm a Man,spotify:artist:2lxX1ivRYp26soIavdG9bX,The Yardbirds,spotify:album:0lYmtEuL0fLXPP4XKr5O8K,The Yardbirds Story - Pt. 3 - 1965/66 - Big Hits & America Calling,spotify:artist:2lxX1ivRYp26soIavdG9bX,The Yardbirds,1965,https://i.scdn.co/image/ab67616d0000b27395670c43925b9ce8a437c9b4,1,20,159866,https://p.scdn.co/mp3-preview/71a3ef75ed452d2ae6dfa7a41886ac4ab7d59532?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAWA0515363,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,british invasion,classic rock,country rock,folk rock,hard rock,psychedelic rock,rock,singer-songwriter",0.388,0.674,7.0,-11.495,1.0,0.0721,0.0342,0.305,0.23,0.758,144.338,4.0,,Charly,"C (C) 2013 Charly Acquisitions Ltd., P (P) 1965 Columbia",1348 +1349,spotify:track:7GJClzimvMSghjcrKxuf1M,Budapest,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,spotify:album:5tF2lAa2rh2kU2xIiBzWia,Wanted on Voyage,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,2014-06-27,https://i.scdn.co/image/ab67616d0000b2732b01e29ac167ad5be48f03ef,1,2,200720,https://p.scdn.co/mp3-preview/03e6f12a87c862370fe965eb330fbcab1f2ee93f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBARL1400477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo-singer-songwriter",0.714,0.451,5.0,-8.268,1.0,0.0276,0.0883,0.0,0.108,0.406,127.787,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,1349 +1350,spotify:track:2MZ8MnTfejq0uEBCApD8tf,Heaven,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,spotify:album:3L5Trg8OhCuCvu0T0brOi4,Birds Of Pray,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,2003-01-01,https://i.scdn.co/image/ab67616d0000b273405030df4cce29a305f4a9be,1,1,229786,https://p.scdn.co/mp3-preview/45674b298e734fd5329285647ac5a466ac441033?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USMC10300215,spotify:user:bradnumber1,2022-09-26T07:33:05Z,"grunge,pop rock,post-grunge",0.394,0.816,8.0,-6.295,1.0,0.0403,0.000553,0.0,0.0775,0.36,184.813,4.0,,Radioactive,"C © 2003 Radioactive Records J.V., P ℗ 2003 Radioactive Records J.V.",1350 +1351,spotify:track:6tS3XVuOyu10897O3ae7bi,California Gurls,"spotify:artist:6jJ0s89eD6GaHleKKya26X, spotify:artist:7hJcb9fa4alzcOq3EaNPoG","Katy Perry, Snoop Dogg",spotify:album:5BvgP623rtvlc0HDcpzquz,Teenage Dream: The Complete Confection,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2012-03-12,https://i.scdn.co/image/ab67616d0000b273937af329667311f4b2831616,1,3,234653,https://p.scdn.co/mp3-preview/584c5e03bdc71c7191fd7b4d88bed152d4b821cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USCA21001135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,g funk,gangster rap,hip hop,pop rap,rap,west coast rap",0.791,0.755,0.0,-3.729,1.0,0.0568,0.00452,0.0,0.163,0.426,125.014,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",1351 +1352,spotify:track:2SAfwYPXsqAolJYlDNiMrM,Breezeblocks,spotify:artist:3XHO7cRUPCLOr6jwp8vsx5,alt-J,spotify:album:4r7s9K1QIm3jtwSMKgzlAO,An Awesome Wave,spotify:artist:3XHO7cRUPCLOr6jwp8vsx5,alt-J,2012-06-08,https://i.scdn.co/image/ab67616d0000b27337e99a048a620b22bc560915,1,4,227080,https://p.scdn.co/mp3-preview/84e571081dc56966aa983be750f54da18689e926?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBZUZ1200067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,indietronica,modern alternative rock,modern rock,rock,shimmer pop",0.609,0.642,5.0,-7.337,1.0,0.0341,0.11,0.000986,0.172,0.296,150.087,4.0,,Liberator Music,"C 2012 Liberator Music, P 2012 Liberator Music",1352 +1353,spotify:track:5nA67Y0XX9JipZwYxX7Gl7,This Town,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,spotify:album:143gTr5lD4xuFizXLs64P2,This Town,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,2016-09-29,https://i.scdn.co/image/ab67616d0000b273cad02035314b784b53570eac,1,1,232600,https://p.scdn.co/mp3-preview/1a8ffe515ce14fe37c044734faf4b4a67454d1f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11601029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.687,0.409,9.0,-7.751,1.0,0.0311,0.71,0.0,0.126,0.16,111.861,4.0,,Universal Music Group,"C © 2016 Neon Haze Music Ltd, Under Exclusive License To Capitol Records, P ℗ 2016 Neon Haze Music Ltd, Under Exclusive License To Capitol Records",1353 +1354,spotify:track:0EPZixF5ti4OsA8lYrerrg,Together We Are Beautiful,spotify:artist:7tqYLHfwfsXiXdFtMIds2K,Fern Kinney,spotify:album:72s8oZlUJivGKedxe6qRHr,Groove Me,spotify:artist:7tqYLHfwfsXiXdFtMIds2K,Fern Kinney,1979-03-15,https://i.scdn.co/image/ab67616d0000b273b388e14b75e639ffd4bb926b,1,5,257213,https://p.scdn.co/mp3-preview/974d850a84f2d860af4c1d1a0d18d283a2187756?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USMR50671008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.761,0.484,10.0,-14.976,1.0,0.0381,0.366,2.81e-05,0.189,0.826,110.45,4.0,,Malaco Records,"C 1979 Malaco Records, Inc., P 1979 Malaco Records, Inc.",1354 +1355,spotify:track:3NdDpSvN911VPGivFlV5d0,"I Don’t Wanna Live Forever (Fifty Shades Darker) - From ""Fifty Shades Darker (Original Motion Picture Soundtrack)""","spotify:artist:5ZsFI1h6hIdQRw2ti0hz81, spotify:artist:06HL4z0CvFAxyc27GXpf02","ZAYN, Taylor Swift",spotify:album:5MxXY7DbFMUiHFTPUabgJJ,I Don’t Wanna Live Forever (Fifty Shades Darker),"spotify:artist:5ZsFI1h6hIdQRw2ti0hz81, spotify:artist:06HL4z0CvFAxyc27GXpf02","ZAYN, Taylor Swift",2016-12-09,https://i.scdn.co/image/ab67616d0000b2732ae921f082ae5db4d3da818f,1,1,245200,https://p.scdn.co/mp3-preview/91604dc22ce61d069ee8b445fa7ab9c18f51f8ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQ4E1602586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop,pop",0.735,0.451,0.0,-8.374,1.0,0.0585,0.0631,1.3e-05,0.325,0.0862,117.973,4.0,,Universal Music Group,"C © 2016 Universal Studios, P ℗ 2016 Universal Studios",1355 +1356,spotify:track:4fixebDZAVToLbUCuEloa2,Womanizer,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:2tve5DGwub1TtbX1khPX5j,Circus (Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2008-12-02,https://i.scdn.co/image/ab67616d0000b27354c6edd554935d73e159e199,1,1,224400,https://p.scdn.co/mp3-preview/b6b0fb78b1205317fc8170a1ba6040f5cc57ec85?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USJI10800838,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.724,0.695,11.0,-5.226,1.0,0.0622,0.073,0.0,0.0889,0.235,139.0,4.0,,Jive,P (P) 2008 Zomba Recording LLC,1356 +1357,spotify:track:2lVDc57IMK6nypg2iuEWVR,Tipsy - Radio Mix,spotify:artist:1Zz5UxfKSSqc6hpa3xJPCw,J-Kwon,spotify:album:5Woeg9DhPiMTP0MwKRqT0t,Tipsy,spotify:artist:1Zz5UxfKSSqc6hpa3xJPCw,J-Kwon,2004-01-25,https://i.scdn.co/image/ab67616d0000b2734e0b9483d75518b04379007b,1,1,243026,https://p.scdn.co/mp3-preview/c1bafb42a79099979416fc1f806400b127b0899d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAR10301218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dirty south rap,southern hip hop",0.925,0.748,11.0,-5.572,0.0,0.278,0.0484,0.0,0.101,0.615,92.978,4.0,,So So Def,"P (P) 2003, 2004 Arista Records, Inc",1357 +1358,spotify:track:6aKxDL6KiKCHYsQyDq7Vgd,Fantasy,spotify:artist:6tsRo8ErXzpHk3tQeH6GBW,Black Box,spotify:album:6r4vIr4aUsK00mGHDiQkrl,Dreamland,spotify:artist:6tsRo8ErXzpHk3tQeH6GBW,Black Box,1990,https://i.scdn.co/image/ab67616d0000b273ae03a889dd876866982b309a,1,4,312986,https://p.scdn.co/mp3-preview/75ce0ba1a1a7e15d3c4fbd3e5bdb48e4b3789270?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBCMX0509002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,hip house,italo house",0.713,0.664,7.0,-9.095,0.0,0.046,0.00692,0.00184,0.163,0.49,98.102,4.0,,Groove Groove Melody,"C © 1990 Groove Groove Melody SaS, P (P) 2006 Groove Groove Melody ltd.",1358 +1359,spotify:track:6SpLc7EXZIPpy0sVko0aoU,Misery Business,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:71rziY9eLo1tA2dBMxrwhc,Riot!,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2007-06-11,https://i.scdn.co/image/ab67616d0000b273bee754528c08d5ff6799a1eb,1,4,211520,https://p.scdn.co/mp3-preview/ba87b3463a795afa81ee18d3fbb116bb7793140e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USAT20702617,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.517,0.906,1.0,-3.677,1.0,0.0735,0.00272,9.26e-06,0.113,0.731,172.977,4.0,,Fueled By Ramen,"C © 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",1359 +1360,spotify:track:1aBO5KPwxqLESNTTJBR6VP,Thank You for the Broken Heart,spotify:artist:5UOLfDoNQJBGlGAKQg9Iwc,J Rice,spotify:album:0KMy4eY3BziwZPkVfFHP5v,12+,spotify:artist:5UOLfDoNQJBGlGAKQg9Iwc,J Rice,2014-02-18,https://i.scdn.co/image/ab67616d0000b2733acc3e0a1fab77551286387d,1,10,231995,https://p.scdn.co/mp3-preview/dd3ecda693cdad49d28068674bac7dc7f820446b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,QMBZ91398378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"antiviral pop,pixel,viral pop",0.704,0.587,8.0,-6.553,1.0,0.0441,0.178,0.0,0.105,0.282,119.933,4.0,,J Rice Music,"C (C) 2014 Josh Rice, P (P) 2014 J Rice",1360 +1361,spotify:track:2YpJpDPchklr9BIs2QBWYe,Do You Wanna Get Funky?,spotify:artist:7krx6UBDKLwE0q3s3fesqF,C & C Music Factory,spotify:album:62PIrgTZUBFvlkvajYmVIN,Anything Goes!,spotify:artist:7krx6UBDKLwE0q3s3fesqF,C & C Music Factory,1994-07-31,https://i.scdn.co/image/ab67616d0000b2737337c22fa55aa8fed623e660,1,3,245933,https://p.scdn.co/mp3-preview/d7002f797ebcb89ad12b37d4dfe81eb07d7f60a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USSM19402054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,freestyle,hip house",0.853,0.836,8.0,-6.195,1.0,0.197,0.0329,0.0,0.31,0.575,103.949,4.0,,Columbia,P 1994 Sony Music Entertainment Inc.,1361 +1362,spotify:track:2K5LRXf7eGH9HzdeNPZc2a,No One Is To Blame,spotify:artist:6loBF9iQdE11WSX29fNKqY,Howard Jones,spotify:album:5yltR2jKRRWoXBcGR6ILix,Action Replay,spotify:artist:6loBF9iQdE11WSX29fNKqY,Howard Jones,1986,https://i.scdn.co/image/ab67616d0000b27315827e069b4e5637e7289a47,1,1,258399,https://p.scdn.co/mp3-preview/a0dc1e3db5674d7af103c1ab131d2dd34be7085d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAHS0800325,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop",0.743,0.354,9.0,-13.619,1.0,0.0285,0.683,4.55e-05,0.0621,0.8,95.123,4.0,,Cherry Red Records,"C (C) 1986 Cherry Red Records Ltd, P (P) 1986 Cherry Red Records Ltd",1362 +1363,spotify:track:3iM9wFGlyR28IBZrXYZK9j,Cold as Ice - 2008 Remaster,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,spotify:album:4VRXqPaa2ZTwC2AG364RWO,No End in Sight: The Very Best of Foreigner,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,2008-07-08,https://i.scdn.co/image/ab67616d0000b273738e5e351defcc02d1fd3774,1,3,200026,https://p.scdn.co/mp3-preview/d0aefc56edb0c1fcb4a74cf6446c5756a260929f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT20802325,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.554,0.708,3.0,-5.318,0.0,0.0271,0.0594,2.68e-06,0.143,0.512,131.159,4.0,,Rhino,"C © 2008 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Marketed by Rhino Entertainment Company, P ℗ 2008 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Marketed by Rhino Entertainment Company",1363 +1364,spotify:track:2RfT1lgI87TDqWFM10dBVa,Roses,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,spotify:album:00XMrHZoOsYLmiyx890axX,Speakerboxxx/The Love Below,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,2003-09-23,https://i.scdn.co/image/ab67616d0000b273b21b359f2d9cb74092780da6,2,10,369320,https://p.scdn.co/mp3-preview/a58d1bc80d322dfdc2abb69853af0170b4270acd?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USAR10301000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,hip hop,old school atlanta hip hop,rap,southern hip hop",0.763,0.703,0.0,-4.69,1.0,0.0586,0.00667,1.2e-05,0.129,0.427,108.963,4.0,,Arista,"P (P) 2003 Arista Records, Inc.",1364 +1365,spotify:track:3eKkMH08IN5qbjp8wv6cV8,If You Wanna Be Happy,spotify:artist:7k4MYPtpz3fAViMuuLi9ry,Jimmy Soul,spotify:album:6tOSOW77BlfuJBvN6Kgh4L,If You Wanna Be Happy,spotify:artist:7k4MYPtpz3fAViMuuLi9ry,Jimmy Soul,2014-03-07,https://i.scdn.co/image/ab67616d0000b273c868873cdd2ab8f0659262b4,1,1,143229,https://p.scdn.co/mp3-preview/f4a469150edb82f47e5f8030d145c7a8bc816fdb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,QMDA71494103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.639,0.875,10.0,-8.231,1.0,0.0413,0.611,1.18e-05,0.204,0.873,93.242,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,1365 +1366,spotify:track:3mQ943gsF69OINypCuYpNT,"Show Me Heaven - From ""Days Of Thunder""",spotify:artist:30GIF9g2UJ1ifn45kSMTFf,Maria McKee,spotify:album:7awjdIA3WuAqaZYKf31PKX,Just The Hits: Love Songs,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2019-10-18,https://i.scdn.co/image/ab67616d0000b2737f1514ddfbb600cc3775783c,1,25,224226,https://p.scdn.co/mp3-preview/f95c252ef60537958fd383056600339b6b67147b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USIR10000625,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.565,0.43,8.0,-7.569,1.0,0.0272,0.807,0.000734,0.445,0.378,80.277,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Universal Music Australia Pty Ltd., P This Compilation ℗ 2019 Universal Music Australia Pty Ltd.",1366 +1367,spotify:track:1yAXEjvYED6s6tgKDH5ZTz,Get Her Back,spotify:artist:0ZrpamOxcZybMHGg1AYtHP,Robin Thicke,spotify:album:6fFNITaBmjhPrFZ55eBwAq,Get Her Back,spotify:artist:0ZrpamOxcZybMHGg1AYtHP,Robin Thicke,2014-05-19,https://i.scdn.co/image/ab67616d0000b273be46fd755b2fe22ec0628289,1,1,212263,https://p.scdn.co/mp3-preview/1e05bb0caccc408286376967e978bd34db32f3e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71406253,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo soul,pop rap,r&b,urban contemporary",0.581,0.293,4.0,-13.626,0.0,0.0787,0.917,0.0,0.0924,0.73,187.832,4.0,,Universal Music Group,"C © 2014 Star Trak, LLC, P ℗ 2014 Star Trak, LLC",1367 +1368,spotify:track:3zkWCteF82vJwv0hRLba76,Stitches,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:0CnQ0JQajNswRjPkNYVG8m,Handwritten,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2015-04-14,https://i.scdn.co/image/ab67616d0000b27375bd5306fb4669a15ee74eff,1,2,206880,https://p.scdn.co/mp3-preview/876dc08f43e2aee97a8ac8fb1d4535f6445f5a79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USUM71500658,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.752,0.754,1.0,-6.684,1.0,0.0615,0.0151,0.0,0.0486,0.755,149.789,4.0,,Island Records,"C © 2015 Island Records, a division of UMG Recordings, Inc., P ℗ 2015 Island Records, a division of UMG Recordings, Inc.",1368 +1369,spotify:track:5i8v4dQ9Lfo0CmG7PU64Z2,Only Wanna Be With You,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:3NrrgM6KcTN5J8dyamGleZ,Only Wanna Be With You,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2022-10-06,https://i.scdn.co/image/ab67616d0000b2739412b979a655de70cd90c374,1,1,190651,https://p.scdn.co/mp3-preview/f382166781d537732dbfd49799c234658caacee3?cid=9950ac751e34487dbbe027c4fd7f8e99,True,42,AUBM02200258,spotify:user:bradnumber1,2022-12-29T23:58:14Z,australian pop,0.527,0.74,9.0,-3.623,1.0,0.0413,0.153,0.00063,0.159,0.498,164.01,4.0,,Wonderlick,P (P) 2022 Wonderlick Recording Company/Marketed & distributed by Sony Music Entertainment Australia Pty Ltd,1369 +1370,spotify:track:1yg7fwwYmx9DQ2TdXUmfpJ,Holding Back the Years - 2008 Remaster,spotify:artist:1fa0cOhromAZdq2xRA4vv8,Simply Red,spotify:album:4pk3tltFMVlT06MLJfmWTT,Picture Book (Expanded Version),spotify:artist:1fa0cOhromAZdq2xRA4vv8,Simply Red,1985,https://i.scdn.co/image/ab67616d0000b273d27f104dd5adb7029d109720,1,7,269840,https://p.scdn.co/mp3-preview/47922f8bc535c85a3f637ac0c3b4adc28b6602b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBCRL0800119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,new romantic,new wave,new wave pop,soft rock,sophisti-pop",0.71,0.514,9.0,-8.885,0.0,0.0278,0.58,0.000159,0.0953,0.517,86.02,4.0,,Rhino/Elektra,"C © 2008 Warner Music UK Ltd. / Simplyred.com Ltd., P ℗ 2008 Warner Music UK Ltd. / Simplyred.com Ltd. Marketed by Rhino Entertainment Company, a Warner Music Group Company",1370 +1371,spotify:track:6ikDZX0oc8EKGj2vdMAEDv,Didn't I,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:02ATSOBqF7ddYG1248wCgH,Didn't I,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2020-03-13,https://i.scdn.co/image/ab67616d0000b27308ac645145d2959e46ae2b7f,1,1,207616,https://p.scdn.co/mp3-preview/274d7fe0198aecc8949dfdbf3331a532dff6ebc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USUM72003826,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.606,0.613,4.0,-6.758,1.0,0.0306,0.0182,0.0,0.125,0.258,123.943,4.0,,Mosley Music/Interscope Records,"C © 2020 Mosley Music/Interscope Records, P ℗ 2020 Mosley Music/Interscope Records",1371 +1372,spotify:track:6RX5iL93VZ5fKmyvNXvF1r,Irreplaceable,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:0Zd10MKN5j9KwUST0TdBBB,B'Day Deluxe Edition,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2007-05-29,https://i.scdn.co/image/ab67616d0000b273026e88f624dfb96f2e1ef10b,1,2,227853,https://p.scdn.co/mp3-preview/766b3a0edabe112d2e7453431234ba9f61a8d44d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USSM10603620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.447,0.694,7.0,-4.637,0.0,0.382,0.0293,5.46e-06,0.167,0.509,175.868,4.0,,Columbia,"P (P) 2006, 2007 SONY BMG MUSIC ENTERTAINMENT",1372 +1373,spotify:track:5D70st7X9fpm7f90RQZXzU,Help,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:6s3xmQxXTZtxsh4ve9WFpn,The Essential 3.0,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,2009-08-20,https://i.scdn.co/image/ab67616d0000b27399ac3eb317ef38d8d1351440,3,4,264480,https://p.scdn.co/mp3-preview/70bdcf9b5c78f797a5faad4b7ea0f744a10e1bc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM08041010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.395,0.479,0.0,-6.336,1.0,0.0314,0.522,0.0,0.121,0.153,116.346,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd.,1373 +1374,spotify:track:2Ng4Z0zer2QqmwcEmKUQGb,Women in Uniform - 1994 Remaster,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,spotify:album:4Ya4DiTGFH2w0xp2AWKlqG,Guilty Until Proven Insane [remastered],spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,1978,https://i.scdn.co/image/ab67616d0000b273e86ca8774f6bce99934d4657,1,1,262560,https://p.scdn.co/mp3-preview/24d054333c2b81e890e771bf85308eec14280527?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUWA00900814,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.334,0.824,2.0,-7.37,1.0,0.0506,0.067,0.00163,0.0362,0.763,178.821,4.0,,WM Australia,"C © 1978 Mushroom Records Pty Limited, P ℗ 1978 Mushroom Records Pty Limited",1374 +1375,spotify:track:4lT65U9u7ghr8gNo04JgzJ,Elastic Heart,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:2k39lnQqeIwKlYYYfTXe8Y,1000 Forms of Fear,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2014-07-04,https://i.scdn.co/image/ab67616d0000b2737125db1c06539ff1ec302648,1,8,257200,https://p.scdn.co/mp3-preview/2bef181d8579dca5a3a83a75f1934cc8d820944c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11301541,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.421,0.789,9.0,-4.998,1.0,0.0493,0.0117,1.45e-05,0.146,0.492,130.082,4.0,,Inertia Music,"C 2014 Monkey Puzzle Records under license to Inertia Music, P 2014 Monkey Puzzle Records under license to Inertia Music",1375 +1376,spotify:track:5uSFGgIfHMT3osrAd9n9ym,Forget Me,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,spotify:album:50IWCes196EP2nWO6i4I67,Forget Me,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,2022-09-09,https://i.scdn.co/image/ab67616d0000b273711fab3ee0bbeddfac44d7d6,1,1,203472,https://p.scdn.co/mp3-preview/449e63537d6c5811a7f50223335a17cbcb138487?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,DEUM72204717,spotify:user:bradnumber1,2022-09-12T00:30:57Z,"pop,uk pop",0.437,0.746,1.0,-3.537,0.0,0.0846,0.255,0.0,0.37,0.688,203.835,4.0,,Vertigo Berlin,"C © 2022 Universal Music GmbH, P ℗ 2022 Universal Music GmbH",1376 +1377,spotify:track:1xQZtbipNLyP0e0hihE5F5,I'd Come for You,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:0GQ9AZBJSj109gmSdSrviC,Dark Horse,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2008-10-28,https://i.scdn.co/image/ab67616d0000b273f74baf63e915712df348e647,1,4,262626,https://p.scdn.co/mp3-preview/b3968dfe9f7e7337496f88fb86f70b2fd278cec8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,NLA320888016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.489,0.748,2.0,-5.488,1.0,0.0311,0.033,0.0,0.144,0.385,147.998,4.0,,Roadrunner Records,"C © 2008 The All Blacks B.V. Issued under license to Roadrunner Records from The All Blacks B.V. Roadrunner Records is a registered trademark of The All Blacks B.V., P ℗ 2008 The All Blacks B.V. Issued under license to Roadrunner Records from The All Blacks B.V. Roadrunner Records is a registered trademark of The All Blacks B.V.",1377 +1378,spotify:track:38iU2jg98IZZEIJPrP7aWD,Till the World Ends,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:0oFBaXLFsUVa2gEmJf4FcJ,Femme Fatale (Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2011-03-28,https://i.scdn.co/image/ab67616d0000b273fda0f2adec40250bea55101b,1,1,237946,https://p.scdn.co/mp3-preview/61148ea7313d49b4d69673aab6d08862d1b49d91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USJI11100074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.693,0.705,8.0,-5.747,1.0,0.0665,0.0228,0.0,0.202,0.45,131.951,4.0,,Jive,"P (P) 2011 JIVE Records, a unit of Sony Music Entertainment",1378 +1379,spotify:track:1joiIJ9KBXA9cTfY5ZR47m,The Love Club,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,spotify:album:5NrFMOprmnMEf4gMnLaHcq,Pure Heroine (Extended),spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,2013-01-01,https://i.scdn.co/image/ab67616d0000b27350e85c229968077c0c0e6da9,1,13,201433,https://p.scdn.co/mp3-preview/40041123c2003367d6ca1ff1147368de4efa86ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZUM71200034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,metropopolis,nz pop,pop",0.793,0.489,5.0,-7.275,1.0,0.0561,0.206,0.0101,0.135,0.629,92.027,4.0,,Universal Music Group,"C © 2013 Universal Music NZ Ltd., P ℗ 2013 Universal Music NZ Ltd.",1379 +1380,spotify:track:2aGH9AjTCvcDJrquKeCjGa,Hangover,"spotify:artist:6MF9fzBmfXghAz953czmBC, spotify:artist:0jnsk9HBra6NMjO2oANoPY","Taio Cruz, Flo Rida",spotify:album:4yaCFkxG3LG3wJJW94RVX0,Workout From Home,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2020-04-10,https://i.scdn.co/image/ab67616d0000b2735a41af5a227d1590a36498f0,1,9,244506,https://p.scdn.co/mp3-preview/e58aa4803e2e0b58f992316c6c20b27626c18b82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,GBUM71108687,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,dance pop,miami hip hop,pop,pop rap",0.604,0.879,0.0,-3.234,0.0,0.0402,0.00789,0.0,0.15,0.618,128.016,4.0,,UME - Global Clearing House,"C © 2020 UMG Recordings, Inc., P ℗ 2020 UMG Recordings, Inc. FP",1380 +1381,spotify:track:6Zn1xsuxtCOaPBSCXG7GzK,Embrace - Radio Edit,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,spotify:album:2j5RXgMXSWK7C5Rdz9HgWz,Embrace,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,2009-01-01,https://i.scdn.co/image/ab67616d0000b273a59c179be298bce84b4a11bd,1,1,214626,https://p.scdn.co/mp3-preview/23ae982b1d0c641b7e5a63b13912498612d6fc94?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUNV00901433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,aussietronica,australian dance,australian electropop",0.637,0.952,6.0,-4.211,0.0,0.0373,0.00175,4.48e-05,0.329,0.43,128.006,4.0,,Universal Music Australia (Distribution),"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",1381 +1382,spotify:track:1JO1xLtVc8mWhIoE3YaCL0,Happy Together,spotify:artist:2VIoWte1HPDbZ2WqHd2La7,The Turtles,spotify:album:2pMxs38Y5A0mmHrcu3twvB,Happy Together,spotify:artist:2VIoWte1HPDbZ2WqHd2La7,The Turtles,1967,https://i.scdn.co/image/ab67616d0000b27372649ad8e79d1e8bdd54c929,1,6,176293,https://p.scdn.co/mp3-preview/8c691e6232f9abae21be72ed15407fd90657a73e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USA560587940,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic rock,folk rock,merseybeat,psychedelic rock,rock-and-roll,rockabilly",0.584,0.367,6.0,-9.638,0.0,0.0328,0.55,1.38e-05,0.0818,0.588,120.175,4.0,,"Flo & Eddie, Inc.","C 1967 Flo & Eddie, Inc.",1382 +1383,spotify:track:2aJ0ZdaL40vOB9dlZ7ZhzL,Jesus Is a Soul Man,spotify:artist:1QUKNp0QR0SOSmYjoROBKR,Lawrence Reynolds,spotify:album:1v8CgU6fjZ9qdC2kZBVl6Q,Jesus Is A Soul Man,spotify:artist:1QUKNp0QR0SOSmYjoROBKR,Lawrence Reynolds,1970,https://i.scdn.co/image/ab67616d0000b273db1fb0fa21e36ce321dfe8f5,1,3,172440,https://p.scdn.co/mp3-preview/9d33f3526cfb8c24669559fefac980eb57194cfe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,USWB10203055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,country gospel,0.699,0.281,7.0,-15.982,1.0,0.0269,0.42,0.0,0.132,0.752,94.804,4.0,,Rhino/Warner Records,"C © 1970 Warner Records Inc., marketed by Rhino Entertainment Company, a Warner Music Group company, P ℗ 1970 Warner Records Inc., marketed by Rhino Entertainment Company, a Warner Music Group company",1383 +1384,spotify:track:0gplL1WMoJ6iYaPgMCL0gX,Easy On Me,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:224jZ4sUX7OhAuMwaxp86S,Easy On Me,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2021-10-14,https://i.scdn.co/image/ab67616d0000b27350dba34377a595e35f81b0e4,1,1,224694,https://p.scdn.co/mp3-preview/a0cd8077c79a4aa3dcaa68bbc5ecdeda46e8d13f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USSM12105970,spotify:user:bradnumber1,2021-11-19T23:17:30Z,"british soul,pop,pop soul,uk pop",0.604,0.366,5.0,-7.519,1.0,0.0282,0.578,0.0,0.133,0.13,141.981,4.0,,Columbia,"P (P) 2021 Melted Stone under exclusive license to Columbia Records, a Division of Sony Music Entertainment",1384 +1385,spotify:track:4IUYyOxm7ujsmNRdDBqXKu,When I Fall in Love,spotify:artist:0gxyHStUsqpMadRV0Di1Qt,Rick Astley,spotify:album:6N9PS4QXF1D0OWPk0Sxtb4,Whenever You Need Somebody,spotify:artist:0gxyHStUsqpMadRV0Di1Qt,Rick Astley,1987-11-12,https://i.scdn.co/image/ab67616d0000b273255e131abc1410833be95673,1,10,183026,https://p.scdn.co/mp3-preview/ce44d724112998ebd7e60bb4b7c0c7d6ba424482?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9300132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock,sophisti-pop,synthpop",0.196,0.123,1.0,-20.322,1.0,0.0344,0.76,0.0122,0.0977,0.142,74.448,4.0,,Sony Music CG,P (P) 1987 Sony Music Entertainment UK Limited under exclusive license to BMG Rights Management (UK) Limited,1385 +1386,spotify:track:2qb9PI9fUr1FymJJowHgT2,Am I That Easy To Forget,spotify:artist:17XXKfRBMCWvLrqGoNkJXm,Engelbert Humperdinck,spotify:album:2iTBNF5cz6e49blj6p41D2,Engelbert Humperdinck - The Greatest Hits And More,spotify:artist:17XXKfRBMCWvLrqGoNkJXm,Engelbert Humperdinck,2007-01-01,https://i.scdn.co/image/ab67616d0000b27379f5683c0dd4515ae9624ab1,1,5,185440,https://p.scdn.co/mp3-preview/c17ea70d1e0dfdcf33664f5cf7ec3e77dae20248?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBF076800430,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.326,0.518,4.0,-8.157,1.0,0.0316,0.252,3.89e-06,0.134,0.336,109.643,4.0,,UMC (Universal Music Catalogue),"C © 2007 Universal Music TV, a division of Universal Music Operations Ltd., P This Compilation ℗ 2007 Universal Music TV, a division of Universal Music Operations Ltd.",1386 +1387,spotify:track:4YGEcpYpEY6IWI49qEdwxT,Gonna Miss You,spotify:artist:2ZW29i2YE4YDQf6WemPJ4W,Paul Mac,spotify:album:55HS4H3fehwCLdzS0ybKic,3000 Feet High,spotify:artist:2ZW29i2YE4YDQf6WemPJ4W,Paul Mac,2001-01-01,https://i.scdn.co/image/ab67616d0000b2736f3192664d94c6334b8955a5,1,5,239866,https://p.scdn.co/mp3-preview/4a679b1c2c2f52c24a3140d9d847e2f4846e311d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUEL00100016,spotify:user:bradnumber1,2023-01-31T06:37:53Z,,0.664,0.502,9.0,-7.783,0.0,0.025,0.0532,2.36e-06,0.333,0.164,95.004,4.0,,Universal Music Australia Pty. Ltd.,"C © 2001 Eleven: A Music Company, P ℗ 2001 Eleven: A Music Company",1387 +1388,spotify:track:44T13PWJ87jb3lFElhVIHx,Growing Up (feat. Ed Sheeran),"spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis, Ed Sheeran",spotify:album:2kqn09pydzvKvB3xWbAxY4,This Unruly Mess I've Made,"spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis",2016-02-26,https://i.scdn.co/image/ab67616d0000b27351245bae78fd3afa47e90453,1,5,305240,https://p.scdn.co/mp3-preview/f48e48ab12ffa0a83ca2022c22afebfa59bd8e6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GMM881600004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop,pop rap,seattle hip hop,pop rap,pop,singer-songwriter pop,uk pop",0.74,0.549,9.0,-7.072,1.0,0.303,0.178,0.0,0.114,0.469,85.16,4.0,,Macklemore,"C © 2016 Macklemore, LLC, P ℗ 2016 Macklemore, LLC",1388 +1389,spotify:track:5uM9zdUz8PpYJME9wZCM4W,Baby Love - Juke Box Single Version,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,spotify:album:3W2FhBKieLAcrS4e9SHtr6,Where Did Our Love Go: 40th Anniversary Edition,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,1964-08-31,https://i.scdn.co/image/ab67616d0000b273285f29b5417922f6e72bc2c7,1,15,156333,https://p.scdn.co/mp3-preview/2f5598c02adad78366b430c2481d761cd335bbec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16400287,spotify:user:bradnumber1,2021-08-08T09:27:55Z,"adult standards,classic girl group,classic soul,disco,motown,soul",0.594,0.698,2.0,-6.524,0.0,0.0365,0.776,0.0,0.237,0.649,135.821,4.0,,Universal Music Group,"C © 2004 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2004 Motown Records, a Division of UMG Recordings, Inc.",1389 +1390,spotify:track:2u8MGAiS2hBVE7GZzTZLQI,I'm So Excited,spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,spotify:album:4ZcnXch8ZI9zlizDVTea1X,Best Of,spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,1989-10-21,https://i.scdn.co/image/ab67616d0000b27354fc938a153a1adb6461e20f,1,1,229466,https://p.scdn.co/mp3-preview/e2e367da33060c835624157396c4af949be14125?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRC18203285,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,girl group,hi-nrg,motown,new wave pop,soft rock",0.685,0.858,8.0,-6.496,1.0,0.0348,0.104,0.000119,0.147,0.692,92.305,4.0,,Ariola,P 1996 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,1390 +1391,spotify:track:5bjOdMWtdnT9KtsrtkFNNz,Magic Number,"spotify:artist:34sQ4BJAwfwQsn9OgJtIzj, spotify:artist:5ndkK3dpZLKtBklKjxNQwT","The Potbelleez, B.o.B",spotify:album:231f2vWyocjJql8Wyv2aZj,Magic Number,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,2013-01-01,https://i.scdn.co/image/ab67616d0000b2738a2aae8d73875a1c17d1194d,1,1,237303,https://p.scdn.co/mp3-preview/f8365da8973bd9f30802a3c199ce6d9526778f61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUNV01301397,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian house,atl hip hop,dance pop,pop rap,rap,southern hip hop",0.54,0.937,11.0,-2.515,0.0,0.064,0.103,0.0,0.153,0.461,177.985,4.0,,Hussle,"C © 2013 Ministry Of Sound Australia Pty Ltd, P ℗ 2013 Ministry Of Sound Australia Pty Ltd",1391 +1392,spotify:track:6nVbUobk6kRlQiMIul2fet,There's Nothing I Won't Do,spotify:artist:0kjCW6i4ba1M9ou8OhgbV0,JX,spotify:album:4lsQp3EEpwSUYNr6NHlKR5,Return of the 90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-11-16,https://i.scdn.co/image/ab67616d0000b27353fb0f20812d2550750dd500,1,30,269720,https://p.scdn.co/mp3-preview/bdf14e693d46afbca438d3eb593af48f32e3aca1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMY1200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hardcore techno,hip house",0.604,0.989,2.0,-5.077,1.0,0.0444,0.00124,0.0763,0.222,0.591,134.631,4.0,,WM UK,"C 2012 Rhino UK, a division of Warner Music UK Ltd., P 2012 Rhino UK, a division of Warner Music UK Ltd.",1392 +1393,spotify:track:3QHONiXGMGU3z68mQInncF,"I'll Be Missing You (feat. Faith Evans, 112)","spotify:artist:59wfkuBoNyhDMQGCljbUbA, spotify:artist:5NDMothbpdpq2xHqSjrrWn, spotify:artist:7urq0VfqxEYEEiZUkebXT4","Diddy, Faith Evans, 112",spotify:album:46JQVqJpOg8opDLUl1qHT1,Bad Boy's 10th Anniversary- The Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2004-03-09,https://i.scdn.co/image/ab67616d0000b2734ad6e5838f15401ff7d62856,1,13,301520,https://p.scdn.co/mp3-preview/7a927e05125e0dad4b1786354f44b6b5cd878bf5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USBB40581044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap,contemporary r&b,hip pop,r&b,urban contemporary,atl hip hop,boy band,contemporary r&b,hip pop,r&b,urban contemporary",0.862,0.479,7.0,-9.199,1.0,0.0645,0.0523,0.00126,0.589,0.924,109.877,4.0,,Bad Boy Records,"C © 2004 Bad Boy Records, Inc., P ℗ 2004 Bad Boy Records, Inc.",1393 +1394,spotify:track:3F3n2V9XBrtb1omqLfcNPe,Love Is on the Way,spotify:artist:1Qt3QdA0ZoOoeWfrJzA12d,Saigon Kick,spotify:album:0nZIjKvxpkli74fs827sAJ,The Lizard,spotify:artist:1Qt3QdA0ZoOoeWfrJzA12d,Saigon Kick,1992,https://i.scdn.co/image/ab67616d0000b273def72c14cd4931b35ff88df9,1,8,264173,https://p.scdn.co/mp3-preview/e35ad66a54b8d1594f38b66210007a5c5e8d4274?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USAT20402685,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam metal,0.576,0.449,1.0,-8.764,0.0,0.0287,0.085,0.0,0.119,0.0552,129.323,4.0,,Rhino Atlantic,"C © 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",1394 +1395,spotify:track:6RRNNciQGZEXnqk8SQ9yv5,You Need To Calm Down,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1NAmidJlEaVgA3MpcPFYGq,Lover,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2019-08-23,https://i.scdn.co/image/ab67616d0000b273e787cffec20aa2a396a61647,1,14,171360,https://p.scdn.co/mp3-preview/3f390d3873b9908ea716bca6e2dcb3ef1283c7d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USUG11901470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.771,0.671,2.0,-5.617,1.0,0.0553,0.00929,0.0,0.0637,0.714,85.026,4.0,,Taylor Swift,"C © 2019 Taylor Swift, P ℗ 2019 Taylor Swift",1395 +1396,spotify:track:4DEcdqqKokU7UAE4wCGQEy,Always Look On The Bright Side Of Life,spotify:artist:5IxfhXIHjAOAqibxl90NZO,Monty Python,spotify:album:57awupvncNEIad7j0lkOuT,Monty Python Sings,spotify:artist:5IxfhXIHjAOAqibxl90NZO,Monty Python,1989-01-01,https://i.scdn.co/image/ab67616d0000b273a012346ea07d0b1d6fc22a87,1,1,215333,https://p.scdn.co/mp3-preview/9400be6771e6e7617a226d146827a3017fdf62cb?cid=9950ac751e34487dbbe027c4fd7f8e99,True,53,GBAAA8900451,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british comedy,comic",0.669,0.535,2.0,-12.36,1.0,0.0972,0.432,0.0,0.208,0.739,120.071,4.0,,Charisma Catalogue,"C © 1989 Virgin Records Limited, P ℗ 1989 Virgin Records Limited",1396 +1397,spotify:track:6lCTs5NDYctSQutADkeEsA,We R Who We R,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:4HD4hyCi2n5gc5yyRVnirU,Animal + Cannibal (Deluxe Edition),spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010-11-19,https://i.scdn.co/image/a03f39f6ae96bde56c4814a90d012d099987b6c2,1,16,204760,https://p.scdn.co/mp3-preview/87e275c268cbc6f76b509f4dd237bcea41d92059?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11000862,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.734,0.802,8.0,-4.893,1.0,0.0411,0.00705,0.0028,0.124,0.671,119.995,4.0,,RCA Records Label,"P (P) 2010 RCA Records, a unit of Sony Music Entertainment",1397 +1398,spotify:track:4sWh622ZgNeokhyhlR7X9e,50 Years,spotify:artist:6jIVYCgMJgMtdqKO8pbMY3,Uncanny X-Men,spotify:album:1ETAlv7O5csLb3WP0KaMKO,Cos Life Hurts,spotify:artist:6jIVYCgMJgMtdqKO8pbMY3,Uncanny X-Men,1985,https://i.scdn.co/image/ab67616d0000b2736b33b5f6e6abd0782e4e0a86,1,9,246160,https://p.scdn.co/mp3-preview/afbf0cdc4c8fdeaee3bbc80fe78426bdb92df589?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUMU08500043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.375,0.543,0.0,-9.634,1.0,0.0271,0.139,0.0,0.0995,0.622,165.319,4.0,,WM Australia,"C 1998 © 1985 Mushroom Records Pty Ltd, P ℗ 1985 Mushroom Records Pty Ltd",1398 +1399,spotify:track:6W2Ef5Ph6ILTUAedoQ3QIv,Like I Love You,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:6QPkyl04rXwTGlGlcYaRoW,Justified,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2002-11-04,https://i.scdn.co/image/ab67616d0000b273346a5742374ab4cf9ed32dee,1,2,283626,https://p.scdn.co/mp3-preview/35dd6b7c6776b10e41ec7f9e546e4be47b817004?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USJI10200248,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.853,0.811,6.0,-4.927,0.0,0.0646,0.0439,0.000307,0.0703,0.9,114.964,4.0,,Jive,P (P) 2002 Zomba Recording LLC,1399 +1400,spotify:track:0Oii8bI6O1ZlhBrOrtJ5GF,I Just Called To Say I Love You,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:6qErkWYP1Xs5BR6cxyMrFF,At The Close Of A Century,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1999-01-01,https://i.scdn.co/image/ab67616d0000b2732b70a418a87d58b53906f0d5,4,5,262240,https://p.scdn.co/mp3-preview/b74be3987a64ad264aabf0acb55f7447c0118e57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUMG9900476,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.746,0.55,1.0,-9.064,1.0,0.0238,0.217,1.95e-06,0.0866,0.632,113.545,4.0,,Universal Music Group,"C © 1999 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1999 Motown Records, a Division of UMG Recordings, Inc.",1400 +1401,spotify:track:2HvrMTzyHBRCeNyoMJfvHP,Signs,spotify:artist:1GjVNyMzPjdBuip6Xanllu,Five Man Electrical Band,spotify:album:2NnWABYlpETx6qc81RaIkL,Class Reunion '71: Greatest Hits Of 1971,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1995-04-16,https://i.scdn.co/image/ab67616d0000b27380f234b445d2b98d956bee25,1,11,185400,https://p.scdn.co/mp3-preview/7a33b2fc710d8d0a3f28894bffe84c167b2a8f73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,CAM190400114,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian psychedelic,classic canadian rock",0.536,0.767,2.0,-8.183,1.0,0.101,0.656,0.0,0.181,0.569,77.266,4.0,,Universal Music Enterprises,"C © 1995 UMG Recordings, Inc., P This Compilation ℗ 1995 UMG Recordings, Inc.",1401 +1402,spotify:track:7uROfa9duYZv0dH85q7ueE,Around the World,spotify:artist:6lOC7lwSO1ql4Gc2Y3QObY,East 17,spotify:album:32hOJkjkdpMwbCvED9tO4y,The Platinum Collection,spotify:artist:6lOC7lwSO1ql4Gc2Y3QObY,East 17,2006-12-11,https://i.scdn.co/image/ab67616d0000b27356f63c44a1ce71c3f8bf7dd5,1,3,273733,https://p.scdn.co/mp3-preview/deca8531e23a5dc7864a802f5a51a6c9e9595c28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBANP9400043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop",0.53,0.789,0.0,-8.457,1.0,0.0384,0.0542,0.000971,0.293,0.709,176.229,4.0,,Rhino,"C 2006 London Records 90 Ltd, P 2006 This compilation: (P) 2006 London Records 90 Ltd",1402 +1403,spotify:track:0gbBzIqrECJOEPvQJIBFs5,Green Light,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,spotify:album:4JeJPyNnsB3tqnHR7RL5v5,Melodrama,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,2017-06-16,https://i.scdn.co/image/ab67616d0000b27328e1139fd3a34626351b9004,1,1,234652,https://p.scdn.co/mp3-preview/4ea9fa151649665d85f266dcb65646e5c716227e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZUM71700063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,metropopolis,nz pop,pop",0.616,0.714,9.0,-7.792,1.0,0.0982,0.0162,1.23e-05,0.0817,0.24,128.924,4.0,,Universal Music Group,"C © 2017 Universal Music New Zealand Limited, P ℗ 2017 Universal Music New Zealand Limited",1403 +1404,spotify:track:7FOcu94jz6V90KW4Y7Vdyc,Wild Side Of Life,spotify:artist:4gIdjgLlvgEOz7MexDZzpM,Status Quo,spotify:album:16MjanaRhBF4JEP9Tn5sho,Blue For You,spotify:artist:4gIdjgLlvgEOz7MexDZzpM,Status Quo,1976,https://i.scdn.co/image/ab67616d0000b273cfa6b9c955b3db0affe40e59,1,12,198493,https://p.scdn.co/mp3-preview/fb9b8c5a4a062e19de1a1f24d32741608c7ef0f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBF087600214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,british blues,glam rock",0.636,0.872,10.0,-5.297,1.0,0.0269,0.158,0.000128,0.329,0.956,141.789,4.0,,UMC (Universal Music Catalogue),"C © 2005 Mercury Records Limited, P This Compilation ℗ 2005 Mercury Records Limited",1404 +1405,spotify:track:1WZ7nC1GSk8rCF3X4cRiOv,Sugar Baby Love,spotify:artist:44ef9VXkdKxbx4XpoNqH39,The Rubettes,spotify:album:122LCDrUADWvBil3bOkGgn,The Very Best Of,spotify:artist:44ef9VXkdKxbx4XpoNqH39,The Rubettes,1998-01-01,https://i.scdn.co/image/ab67616d0000b273582e63007a09a9e38f71f31d,1,1,208693,https://p.scdn.co/mp3-preview/65ffd78d17e68dded4d62d6595c37e5ee9af1894?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAKW7400099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,glam rock",0.424,0.728,0.0,-7.79,1.0,0.0378,0.000126,0.314,0.209,0.756,130.583,4.0,,Spectrum,"C © 1998 Spectrum Music, P This Compilation ℗ 1998 Spectrum Music",1405 +1406,spotify:track:79BKmkYdDjrRSirAXXRxAd,Lucky Me,spotify:artist:4KQNF34GIZZWL10tS3XNTk,Bachelor Girl,spotify:album:2OXfToevYybLCxNmm6bap7,Waiting For The Day,spotify:artist:4KQNF34GIZZWL10tS3XNTk,Bachelor Girl,1998,https://i.scdn.co/image/ab67616d0000b273d395d4d912fd9b998eea760d,1,3,270226,https://p.scdn.co/mp3-preview/97e78e6471368e14b666a63f6e7f0542849bc41b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUBM09931201,spotify:user:bradnumber1,2022-02-03T09:58:42Z,"australian pop,australian rock",0.579,0.861,11.0,-6.35,1.0,0.031,0.00679,0.0,0.181,0.56,119.967,4.0,,Gotham,P (P) 1998 Sony Music Entertainment Australia Pty Ltd,1406 +1407,spotify:track:3BAo1tqi1FF9uj4O41X2Sf,Kiss Me,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:7rucxpwh05xzQfVztHtLmB,Never Been Better (Special Edition),spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2015-11-20,https://i.scdn.co/image/ab67616d0000b2730d7a12dcdcdc2b4b14761725,1,14,199706,https://p.scdn.co/mp3-preview/d94ff14a178d919437343f11dd569b5722ec8e3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1501272,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.749,0.833,9.0,-4.952,0.0,0.0772,0.019,0.0,0.0702,0.297,99.919,4.0,,Epic,P Tracks 1-12 (P) 2014; Tracks 13-18 (P) 2015 Sony Music Entertainment UK Limited; Tracks 19 & 20 (P) 2015 BBC Worldwide,1407 +1408,spotify:track:6KjbNLbRjuoa8rEq5yNA6H,Honest,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,spotify:album:4JPguzRps3kuWDD5GS6oXr,Memories...Do Not Open,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2017-04-07,https://i.scdn.co/image/ab67616d0000b2730c13d3d5a503c84fcc60ae94,1,9,208000,https://p.scdn.co/mp3-preview/1c58ddde6e2bb64422e15c4dd622c7344f68f0c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USQX91700585,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.673,0.514,0.0,-10.772,0.0,0.0465,0.0121,8.5e-05,0.385,0.312,100.035,4.0,,Disruptor Records/Columbia,P (P) 2017 Disruptor Records/Columbia Records,1408 +1409,spotify:track:128S5NIemsBgvr5WCs5wW7,Magic - Single Version,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:5LCtWWIUs8kNOqP5zmhlLR,Magic,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2020-09-25,https://i.scdn.co/image/ab67616d0000b2739cc8968d3e48ae36581cac1b,1,1,214013,https://p.scdn.co/mp3-preview/a4c2bc82984840f68976f875278af4859db7c41a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GB5KW2002875,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.717,0.805,0.0,-4.691,1.0,0.0281,0.0308,9.52e-06,0.111,0.679,106.047,4.0,,Liberator Music,"C 2020 Kylie Minogue/Darenote Limited under exclusive license to BMG Rights Management (UK) Limited, P 2020 Kylie Minogue/Darenote Limited under exclusive license to BMG Rights Management (UK) Limited",1409 +1410,spotify:track:1aiTq20eMuUtW0RS8AaXbS,I Never Liked You,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:4KNj6KCc6cx2bKpkkGJQgl,Better In The Dark,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2007-10-13,https://i.scdn.co/image/ab67616d0000b2732202250be60af68299b09014,1,3,209120,https://p.scdn.co/mp3-preview/6be787a909d8e0d32cd491776b458a53b755494c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM00700787,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.636,0.626,2.0,-5.539,1.0,0.0544,0.0171,0.0,0.0696,0.634,146.008,4.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,1410 +1411,spotify:track:19cxRMqCzpYNU4wXcMj8jA,Always on My Mind,spotify:artist:31ACkQCBFwLQGxN8MwfSrO,Tiki Taane,spotify:album:4GKW1aC6vTDSY6ssYU8Ig3,"Past, Present, Future",spotify:artist:31ACkQCBFwLQGxN8MwfSrO,Tiki Taane,2007-01-01,https://i.scdn.co/image/ab67616d0000b273d7aa8209571f61592ed14f21,1,7,176386,https://p.scdn.co/mp3-preview/cb012d27310d900157bb91cd59de1c9c7112c411?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZDD00700017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nz reggae,0.929,0.301,6.0,-10.877,0.0,0.0547,0.804,0.0,0.0864,0.618,119.963,4.0,,Dirty Dub,"C 2007 Tikidub Productions, P 2007 Tikidub Productions",1411 +1412,spotify:track:1InCpEliLCkWHOBdXW7XSx,Kings & Queens,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,spotify:album:6B1U2tJse7tS9Yi4VJjZAA,Heaven & Hell,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,2020-09-18,https://i.scdn.co/image/ab67616d0000b2732ca6f6a1cf2cb7c43de08db5,1,2,162398,https://p.scdn.co/mp3-preview/dc90347787fa47daa898d4ffbfff36074d184d64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21906943,spotify:user:bradnumber1,2022-02-03T10:28:50Z,pop,0.637,0.69,1.0,-4.057,0.0,0.0405,0.00786,0.0,0.124,0.457,129.857,4.0,,Atlantic Records,"C Atlantic Records, © 2020 Artist Partner Group, Inc., P Atlantic Records, ℗ 2020 Artist Partner Group, Inc.",1412 +1413,spotify:track:0AkQbXGN4KG34TS7xLrM68,Kiss You,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:5SxEsi1PNyo1XfEKDYcFKF,Take Me Home: Yearbook Edition,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2012-11-09,https://i.scdn.co/image/ab67616d0000b27327f49bace8c5a33039bbaa11,1,2,182960,https://p.scdn.co/mp3-preview/e57752b7147ba7a7b3c6d21d185599b695999737?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBHMU1200214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.63,0.934,4.0,-2.559,1.0,0.0589,0.0186,0.0,0.324,0.905,89.992,4.0,,Syco Music UK,P (P) 2012 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,1413 +1414,spotify:track:2wD3LhUzTSWBJjL52TFrc7,My Band,spotify:artist:5Qi4Bb7a8C0a00NZcA77L0,D12,spotify:album:7cXnswCiASthZMBb4jKePJ,D-12 World,spotify:artist:5Qi4Bb7a8C0a00NZcA77L0,D12,2004-01-01,https://i.scdn.co/image/ab67616d0000b273549d4f1a1f1012acb30a11d2,1,6,298773,https://p.scdn.co/mp3-preview/8a50e111700a6883a04d2e15b639fa5dbebeaf5e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10400103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,gangster rap,hip hop",0.848,0.854,6.0,-3.305,0.0,0.0845,0.47,2.29e-06,0.106,0.876,120.024,4.0,,Interscope,"C © 2004 Shady Records/Aftermath Records/Interscope Records, P ℗ 2004 Shady Records/Interscope Records",1414 +1415,spotify:track:5LeDMHIZ5YDZ2b1VOcYVcG,Hot In The City,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,spotify:album:5ebh0MxkqELmk50xHj2b4k,Billy Idol,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,1982-01-01,https://i.scdn.co/image/ab67616d0000b273a20464e6697dc1149d3a5cdc,1,3,219133,https://p.scdn.co/mp3-preview/4cb35a12bf6dac1eb67e225fb4ac1b2f8a8be892?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USCH38400019,spotify:user:bradnumber1,2021-11-11T04:16:51Z,"album rock,classic rock,dance rock,hard rock,new romantic,new wave,new wave pop,rock,soft rock",0.66,0.897,5.0,-5.558,1.0,0.0257,0.00316,2.25e-05,0.116,0.67,111.196,4.0,,CAPITOL CATALOG MKT (C92),"C © 2017 Capitol Records, LLC, P ℗ 2017 Capitol Records, LLC",1415 +1416,spotify:track:0BB9eUBBaaX6GALSYNcEp7,You Spin Me Round (Like a Record),spotify:artist:5WWSL6rElJeUk3Uc1S2RyD,Dead Or Alive,spotify:album:0HEKWtu7St3tKgZDKZsX90,Youthquake,spotify:artist:5WWSL6rElJeUk3Uc1S2RyD,Dead Or Alive,1985-09-05,https://i.scdn.co/image/ab67616d0000b273ddd09dd6bfcad726dbecc701,1,1,196800,https://p.scdn.co/mp3-preview/301d005961b7c4a3738ac0c6ebc44861371f9051?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBM9999987,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hi-nrg,new romantic,new wave pop,synthpop",0.554,0.851,6.0,-10.526,0.0,0.0334,0.006,0.0242,0.405,0.96,128.103,4.0,,Epic,P (P) 1985 Sony Music Entertainment (UK) Limited,1416 +1417,spotify:track:0dRdb2IIRJil2IW0Q9rYZC,I Miss You,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:6s4r39zwdJhpuIH9pLoKTh,blink-182,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,2003-11-01,https://i.scdn.co/image/ab67616d0000b273ec68f6e92aaebbd2d2e00bef,1,3,227250,https://p.scdn.co/mp3-preview/cc5611e3fd54bef22b311e8f689f22d4189164ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10346123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.423,0.714,11.0,-8.295,1.0,0.045,0.00113,6.28e-06,0.0855,0.593,110.017,4.0,,Universal Music Group,"C © 2016 Geffen Records, P ℗ 2016 Geffen Records",1417 +1418,spotify:track:2WthqeuPLwn0CHwCMrlt6L,I Finally Found Someone (feat. Bryan Adams),"spotify:artist:7jmTilWYlKOuavFfmQAcu6, spotify:artist:3Z02hBLubJxuFJfhacLSDc","Barbra Streisand, Bryan Adams",spotify:album:5m0V4PrFdpsqtLXNgsnprE,The Mirror Has Two Faces - Music From The Motion Picture,spotify:artist:7jmTilWYlKOuavFfmQAcu6,Barbra Streisand,1996-10-15,https://i.scdn.co/image/ab67616d0000b273c59a7183e706ba8865d2103b,1,23,221973,https://p.scdn.co/mp3-preview/e0f2aaefdcd4329ca6ff678d53dbca268600d2a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM19603517,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,operatic pop,soft rock,canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.568,0.224,6.0,-15.069,1.0,0.0296,0.677,0.0,0.127,0.0709,138.964,4.0,,Columbia,P 1996 Sony Music Entertainment Inc.,1418 +1419,spotify:track:04THq9ESnlipU969vuvSJx,Close Your Eyes,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:4Yf5LJfqpjgl1a4TBiCi07,To Be Loved,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2013-04-11,https://i.scdn.co/image/ab67616d0000b273051ae642ad4a0c1329b41d99,1,7,213106,https://p.scdn.co/mp3-preview/de67101400003994ba79a4d4557872346c4a524e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRE11300072,spotify:user:bradnumber1,2021-08-08T09:27:48Z,"adult standards,canadian pop,jazz pop,lounge",0.309,0.542,7.0,-6.023,1.0,0.031,0.43,0.0,0.0954,0.237,137.39,4.0,,Reprise,"C © 2013 Reprise Records, P ℗ 2013 Reprise Records",1419 +1420,spotify:track:2HgavVf1bbgYqNlZnUpW6m,Rhymes,spotify:artist:4a8lth8CeT9IQYFWAwXJCx,Rockmelons,spotify:album:4qPGsj7dy4gRpFwSz3qIg5,Tales Of The City,spotify:artist:4a8lth8CeT9IQYFWAwXJCx,Rockmelons,2015-06-26,https://i.scdn.co/image/ab67616d0000b273d5c1e4b1309b9118fd47216d,1,7,283200,https://p.scdn.co/mp3-preview/ea197baf0a546f8f84ec7d3e20f4a2b724c49a04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUUM71500774,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.766,0.693,4.0,-12.204,0.0,0.0416,0.0271,0.00382,0.0752,0.897,107.613,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 The Rockmelons, P ℗ 2015 The Rockmelons",1420 +1421,spotify:track:0Eos5D7dZMxV5zcuFfzlqp,Sly,spotify:artist:023YMawCG3OvACmRjWxLWC,The Cat Empire,spotify:album:0avvtRnA6yIEIFMbqHgSVd,Two Shoes,spotify:artist:023YMawCG3OvACmRjWxLWC,The Cat Empire,2005-08-29,https://i.scdn.co/image/ab67616d0000b2733b4069275ea0d479426eecb3,1,1,227226,https://p.scdn.co/mp3-preview/2fc721686d6a4c5effef931ef93f10c7f20323b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AUTW00500001,spotify:user:bradnumber1,2021-11-20T11:20:13Z,"australian reggae fusion,australian ska,ska jazz",0.558,0.673,9.0,-6.858,1.0,0.0523,0.00746,1.39e-05,0.169,0.826,169.07,4.0,,Two Shoes Pty Ltd,"C 2005 Two Shoes Pty Ltd, P 2005 Two Shoes Pty Ltd",1421 +1422,spotify:track:4LK8ZhlCxIhd5DWap5thpE,Treat Her Right,spotify:artist:30rTY7YT6tAoAUoGJXQBqQ,Roy Head And The Traits,spotify:album:3AS6wGuLUDodZuqqkk5Dk1,The Ultimate Early Rock & Roll Album,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2019-08-30,https://i.scdn.co/image/ab67616d0000b273dd2d3dec097d84c56dd0ffe5,1,9,125893,https://p.scdn.co/mp3-preview/1840b3ee79abc82f5515fe53954184040d8ba31d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USMC16519931,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.6,0.622,0.0,-7.62,1.0,0.0571,0.397,0.00291,0.292,0.961,161.929,4.0,,UME - Global Clearing House,"C © 2019 UMG Recordings, Inc., P ℗ 2019 UMG Recordings, Inc. FP",1422 +1423,spotify:track:569ZjgqzdgsWRAukvVbDBi,Bittersweet Goodbyes,"spotify:artist:2AOZDcU573oPnb1DcROcs6, spotify:artist:0dUM8sw9YnXAq9s4pcjvQT","Ethan Sak, Liz Becker",spotify:album:5RnTRvrwSOufqR1FjZNrB7,Bittersweet Goodbyes,"spotify:artist:2AOZDcU573oPnb1DcROcs6, spotify:artist:0dUM8sw9YnXAq9s4pcjvQT","Ethan Sak, Liz Becker",2021-07-23,https://i.scdn.co/image/ab67616d0000b273b9f20a40a48212f52cad2b77,1,1,287555,https://p.scdn.co/mp3-preview/62f54ba3fb1a5b8e707e9c3fccec4dee8731194b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,US3DF2180051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.594,0.603,6.0,-9.755,0.0,0.0504,0.137,1.21e-05,0.765,0.498,139.943,4.0,,The Color of Music,"C 2021 The Color of Music, P 2021 The Color of Music",1423 +1424,spotify:track:6sFpmdsk4UDMcDWdy4T1Kc,Candy,spotify:artist:33EUXrFKGjpUSGacqEHhU4,Iggy Pop,spotify:album:2Il7QADGDfqLRsJkAx0JY8,Brick By Brick,spotify:artist:33EUXrFKGjpUSGacqEHhU4,Iggy Pop,1990-06-01,https://i.scdn.co/image/ab67616d0000b273f392793e1a8d61a44ecd4727,1,4,253493,https://p.scdn.co/mp3-preview/748015f283885901cfa329229af4eee38d8fe897?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USVI29000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,glam rock,permanent wave,protopunk,rock",0.624,0.585,7.0,-10.812,1.0,0.03,0.0414,2.08e-05,0.0467,0.646,144.251,4.0,,Virgin Records,"C © 1990 Virgin Records America, Inc., P ℗ 1990 Virgin Records America, Inc.",1424 +1425,spotify:track:5c3gybcHUimngXZS7kGHdi,Your Mama Don't Dance,"spotify:artist:7DZDByO8dEuOb1V5JcJPfI, spotify:artist:6VTladttdVHzolv7aq6Q5B","Brian Cadd, The Bootleg Family Band",spotify:album:1er7XbMBLlo14aZRoyiGbQ,The Best of Brian Cadd,spotify:artist:7DZDByO8dEuOb1V5JcJPfI,Brian Cadd,2018-04-13,https://i.scdn.co/image/ab67616d0000b2738f83677912ead6cc4486c952,1,15,179816,https://p.scdn.co/mp3-preview/49526af17010bc423e738c1ed366a1e974103407?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian americana,australian rock",0.621,0.817,0.0,-7.051,1.0,0.0581,0.0775,1.43e-05,0.149,0.966,142.014,4.0,,Fable Records,P (P) 2018 Southern Cross Music,1425 +1426,spotify:track:2RSP1teKYl4q959OinwJeT,City Lights,spotify:artist:46n0cAhBmsRJZiX6GSFmbf,David Essex,spotify:album:4kRaawwPcWlpw33TjpPuiQ,Best Of David Essex,spotify:artist:46n0cAhBmsRJZiX6GSFmbf,David Essex,1996-01-08,https://i.scdn.co/image/ab67616d0000b2737f39354389a634ea4a2fb62b,1,11,340040,https://p.scdn.co/mp3-preview/a5dbae1f0211b6209001c232a288606ab25f62f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GBBBN0102130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.402,0.618,9.0,-11.196,0.0,0.0437,0.00628,0.183,0.157,0.49,114.641,4.0,,Columbia,P (P) 1996 Sony Music Entertainment (UK) Ltd.,1426 +1427,spotify:track:1v0ufp7FLTFcykUGOmFZKa,Daffodils (feat. Kevin Parker),"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:2Lt4GKzyW3WOMf3wvPDszQ","Mark Ronson, Kevin Parker",spotify:album:3vLaOYCNCzngDf8QdBg2V1,Uptown Special,spotify:artist:3hv9jJF3adDNsBSIQDqcjp,Mark Ronson,2015-01-12,https://i.scdn.co/image/ab67616d0000b273e419ccba0baa8bd3f3d7abf2,1,6,298133,https://p.scdn.co/mp3-preview/155722381a6f8383caf96510ce3f529ebecc8680?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBARL1401629,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop soul,0.724,0.538,0.0,-8.041,1.0,0.0381,0.0408,0.0139,0.0343,0.282,108.945,4.0,,Columbia,"P Tracks 3, 4 & 6 (P) 2014, all other tracks (P) 2015 Mark Ronson under exclusive licence to Sony Music Entertainment UK Limited",1427 +1428,spotify:track:1uLwVWTOpMqNkBsjpR1WB8,You Don't Have To Say You Love Me,spotify:artist:5zaXYwewAXedKNCff45U5l,Dusty Springfield,spotify:album:1nqFVeqOlIVan8xkKX0O6j,Complete A And B Sides 1963 - 1970,spotify:artist:5zaXYwewAXedKNCff45U5l,Dusty Springfield,2006-01-01,https://i.scdn.co/image/ab67616d0000b2731f64431de67310e745c5e327,1,9,168466,https://p.scdn.co/mp3-preview/f0a71092d81cc0eddac5be4912f1b4cbaed212de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBF080300974,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion,folk rock,soul,vocal jazz",0.243,0.655,2.0,-4.597,0.0,0.0363,0.659,1.28e-06,0.0821,0.575,111.965,3.0,,UMC (Universal Music Catalogue),"C © 2006 Mercury Records Limited, P This Compilation ℗ 2006 Mercury Records Limited",1428 +1429,spotify:track:0KzAbK6nItSqNh8q70tb0K,Where Is My Mind?,spotify:artist:6zvul52xwTWzilBZl6BUbT,Pixies,spotify:album:2A4zIVdm7JjHaNo9cop985,Death to the Pixies,spotify:artist:6zvul52xwTWzilBZl6BUbT,Pixies,1997-10-06,https://i.scdn.co/image/ab67616d0000b273b17d34882944eaf0695153f2,1,14,229226,https://p.scdn.co/mp3-preview/8414c9d0e363c390f38e74a2fc735bb0bca666cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBAFL9700100,spotify:user:bradnumber1,2022-10-29T03:48:22Z,"alternative rock,boston rock,permanent wave,rock",0.513,0.442,4.0,-13.529,1.0,0.0343,0.00731,0.000838,0.0878,0.243,81.201,4.0,,4AD,"C 1997 4AD Ltd, P 1997 4AD Ltd",1429 +1430,spotify:track:6BhH3NSJEh58az40hZSMgK,Beautiful Goodbye,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:2w3omjUhIFTAUUOVVq1gFM,Overexposed,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2012-01-01,https://i.scdn.co/image/ab67616d0000b2737582f40c3a7837eb2648a8af,1,12,255386,https://p.scdn.co/mp3-preview/968d35db1e7a7eed9395d4ddaf128cbce0073c1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USUM71204790,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.662,0.578,3.0,-2.637,1.0,0.0343,0.002,2.45e-06,0.104,0.404,168.04,4.0,,Interscope Records*,"C © 2012 A&M/Octone Records, P ℗ 2012 Interscope Records",1430 +1431,spotify:track:2hA2Tx7IZNXCcoMUtluKm8,Replay,spotify:artist:6sCbFbEjbYepqswM1vWjjs,Zendaya,spotify:album:7vMrAqaRfrp19XyliHSRUE,Zendaya,spotify:artist:6sCbFbEjbYepqswM1vWjjs,Zendaya,2013-01-01,https://i.scdn.co/image/ab67616d0000b273bf57c88a076f36250d207621,1,1,209186,https://p.scdn.co/mp3-preview/c5f37779072668957be6f3263a27a99a461b0293?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR11334762,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.689,0.726,6.0,-6.655,0.0,0.121,0.0403,8.25e-05,0.29,0.572,140.021,4.0,,Universal Music,"C © 2013 Hollywood Records, Inc., P ℗ 2013 Hollywood Records, Inc.",1431 +1432,spotify:track:7pej5hnsn1bcVsQbFDaOuz,Don't Bet Money Honey,spotify:artist:7KjuI3MbOTaBH29yju4Lr4,Linda Scott,spotify:album:6xMTMaho41v7b8mcc6bCxr,Little Star,spotify:artist:7KjuI3MbOTaBH29yju4Lr4,Linda Scott,1963-03-10,https://i.scdn.co/image/ab67616d0000b27312dd32692626f3c33d0d2662,1,2,150746,https://p.scdn.co/mp3-preview/b110ab1b52f727a20ea24a401ed130bfc6a306dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,QM4TX1767636,spotify:user:bradnumber1,2021-08-08T09:26:31Z,brill building pop,0.248,0.836,2.0,2.769,0.0,0.033,0.882,0.0,0.103,0.649,201.17,3.0,,Poppydisc,"C (C) 2017 Poppydisc, P (P) 2017 PoppyDisc",1432 +1433,spotify:track:4sQhPwjBvctLWpUqqWJBJd,Southern Sky,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:3mKdwZX9yjIAoz13HskR2S,Unbroken,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2018-02-02,https://i.scdn.co/image/ab67616d0000b27393caba649ecf976185650416,1,1,246040,https://p.scdn.co/mp3-preview/4e99d36e109c2b8154d3e61982a5e97591a7959c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUWA01700144,spotify:user:bradnumber1,2022-01-13T01:12:21Z,"australian country,australian pop,australian rock",0.54,0.864,3.0,-2.951,1.0,0.0447,0.00641,0.0,0.151,0.399,122.054,4.0,,WM Australia,"C © 2018 Warner Music Australia Pty Ltd, P ℗ 2018 Warner Music Australia Pty Ltd",1433 +1434,spotify:track:0PvFJmanyNQMseIFrU708S,For The Night (feat. Lil Baby & DaBaby),"spotify:artist:0eDvMgVFoNV3TpwtrVCoTj, spotify:artist:5f7VJjfbwm532GiveGC0ZK, spotify:artist:4r63FhuTkUYltbVAg5TQnk","Pop Smoke, Lil Baby, DaBaby",spotify:album:7e7t0MCrNDcJZsPwUKjmOc,Shoot For The Stars Aim For The Moon,spotify:artist:0eDvMgVFoNV3TpwtrVCoTj,Pop Smoke,2020-07-03,https://i.scdn.co/image/ab67616d0000b27377ada0863603903f57b34369,1,3,190476,https://p.scdn.co/mp3-preview/71bc9111945eb00ee5c3a292f9a393f1f31b1be5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USUM72013355,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brooklyn drill,hip hop,rap,atl hip hop,atl trap,rap,trap,hip hop,north carolina hip hop,pop rap,rap,trap",0.823,0.586,6.0,-6.606,0.0,0.2,0.114,0.0,0.193,0.347,125.971,4.0,,Victor Victor Worldwide,"C © 2020 Republic Records, a division of UMG Recordings, Inc. & Victor Victor Worldwide, P ℗ 2020 Republic Records, a division of UMG Recordings, Inc. & Victor Victor Worldwide",1434 +1435,spotify:track:4PmJXrIWNKfXqQy58qeEqb,Funhouse,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:21tsMIrRLUKFwfvX9oxQZR,Funhouse,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2008-10-24,https://i.scdn.co/image/ab67616d0000b2737ec845b0eb9caba945adc96b,1,7,204626,https://p.scdn.co/mp3-preview/7fe65662818c6b1e40fd96ea24014944413278be?cid=9950ac751e34487dbbe027c4fd7f8e99,True,50,USLF20800184,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.788,0.863,11.0,-3.022,0.0,0.0352,0.00522,3.44e-06,0.0371,0.805,103.98,4.0,,LaFace Records,"P (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",1435 +1436,spotify:track:4UNRqPzaVVim2E5VN7ICwX,Where The Boys Are,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,spotify:album:4Y0FGsHJJbexHT2LPzUGFU,The Very Best Of Connie Francis - Connie 21 Biggest Hits,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,1987-01-12,https://i.scdn.co/image/ab67616d0000b2731a4f6e631c934eef3f045c39,1,15,156906,https://p.scdn.co/mp3-preview/0d39b34c9f8812c8d2358f63eb470166a232e161?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USF096100260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,easy listening,rock-and-roll,rockabilly",0.397,0.316,7.0,-8.632,1.0,0.0302,0.721,0.0,0.221,0.434,72.483,4.0,,Polydor,"C © 1990 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1990 Universal Records, a Division of UMG Recordings, Inc.",1436 +1437,spotify:track:0oJkptRc7sRzp6Fy3lSAib,Carol,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,spotify:album:6eV7zSl70eSrLqFsJoQFlq,Tommy's 22 Big Ones,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,2001-01-01,https://i.scdn.co/image/ab67616d0000b27375d6caa1027c62015ab9703c,1,7,157680,https://p.scdn.co/mp3-preview/67312bb5972fcd3bb3f5f7466d16a090733513f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USUM71614531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,rock-and-roll",0.399,0.888,0.0,-8.487,0.0,0.104,0.018,0.0,0.397,0.831,159.622,4.0,,Geffen,"C © 2020 UMG Recordings, Inc., P This Compilation ℗ 2001 UMG Recordings, Inc.",1437 +1438,spotify:track:3H7QXM59ubkX9yyKD1fEwK,Ebony And Ivory,spotify:artist:4STHEaNw4mPZ2tzheohgXB,Paul McCartney,spotify:album:5KmV008tb0n0xusPf75Kd7,All The Best (UK Version),spotify:artist:4STHEaNw4mPZ2tzheohgXB,Paul McCartney,1987-11-02,https://i.scdn.co/image/ab67616d0000b2734e1cdf95b37a5dad62ee9eec,1,4,221400,https://p.scdn.co/mp3-preview/1efac8e41e630eee0a40f10e2d129ed9a18a29fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCCS8200460,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,mellow gold,rock,soft rock",0.633,0.519,4.0,-12.885,1.0,0.0317,0.144,0.0,0.105,0.823,80.703,4.0,,Universal Music Group,"C © 1987 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 1987 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",1438 +1439,spotify:track:48RP92BBNCGybHpdQ8NuIO,Billy Don’t Be A Hero,spotify:artist:33W24YuaMUEk85MwRX6cRs,Paper Lace,spotify:album:4wcSa3LqH3JOQC7DTVIzpp,Billy Don't Be A Hero,spotify:artist:33W24YuaMUEk85MwRX6cRs,Paper Lace,2008-06-01,https://i.scdn.co/image/ab67616d0000b273f872b58343b6ddbf58255a82,1,1,210120,https://p.scdn.co/mp3-preview/d7f4e15f5cfef5dbba55e38001ef45b5a2898486?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USA560805016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic uk pop",0.758,0.477,0.0,-14.741,1.0,0.138,0.347,0.0,0.122,0.907,119.507,4.0,,Purple Pyramid,C 2008 Purple Pyramid Records,1439 +1440,spotify:track:3qp0q5gUblhkCjtD6fZfFE,Rain,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,spotify:album:3ugzAaAo9ThcmWF31zSNlY,Body And The Beat,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,1984,https://i.scdn.co/image/ab67616d0000b273f6f9aa75c5c97c3607a79c83,1,1,218853,https://p.scdn.co/mp3-preview/9a81c4cb677c9c043be08f7654d4608e974e3698?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,AUUM71000415,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,kiwi rock",0.596,0.462,4.0,-12.598,1.0,0.0315,0.0464,0.000571,0.0788,0.609,156.894,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Universal Music Australia Pty Ltd., P ℗ 2010 Universal Music Australia Pty Ltd.",1440 +1441,spotify:track:1N9JazWqQEGOtcDfL0IAaK,Window Shopper,spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,spotify:album:1ExH71fC9bKxWPM9wFzoTK,Best Of 50 Cent,spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,2017-03-31,https://i.scdn.co/image/ab67616d0000b273f46bc3639791e0ec8b4cb08f,1,10,190293,https://p.scdn.co/mp3-preview/69a4434f730fd39295497f55f5db3861b8c83750?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70504267,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap",0.534,0.63,5.0,-7.048,0.0,0.191,0.0915,0.0,0.489,0.484,174.199,4.0,,Universal Music Group,"C © 2017 Shady Records/Aftermath Records/Interscope Records, P ℗ 2017 Shady Records/Aftermath Records/Interscope Records",1441 +1442,spotify:track:6RxO08wzUmlE1sBc1bNZNW,Best Day Of My Life - Single Version,spotify:artist:0MlOPi3zIDMVrfA9R04Fe3,American Authors,spotify:album:5UWYYI5FapJVmGqwQ8d0iS,"Oh, What A Life",spotify:artist:0MlOPi3zIDMVrfA9R04Fe3,American Authors,2014-01-01,https://i.scdn.co/image/ab67616d0000b2735555496a9c148ed4fbeeea09,1,3,194240,https://p.scdn.co/mp3-preview/caf61e3a88f77f587e097076ac1590f11a590e88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USUM71302187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop rock",0.673,0.902,2.0,-2.392,1.0,0.0346,0.0591,0.000227,0.0558,0.536,100.012,4.0,,Island Records,"C © 2014 The Island Def Jam Music Group, P ℗ 2014 The Island Def Jam Music Group",1442 +1443,spotify:track:6kimfTvK5NrUPfFA6SZBeg,Pick up Your Tricks,spotify:artist:2ZmmVo9SlM8XJH97UWEu7l,Amy Meredith,spotify:album:7H4bMXisoabrMwbeJBUSnY,Maps,spotify:artist:2ZmmVo9SlM8XJH97UWEu7l,Amy Meredith,2013-09-20,https://i.scdn.co/image/ab67616d0000b27354b032005f8ccf7367ef4a5c,1,3,195827,https://p.scdn.co/mp3-preview/fae5a458a0509fad15632947fa057dac56d1595b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,TCABQ1328262,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.512,0.867,7.0,-4.436,1.0,0.0649,0.0118,3.08e-05,0.0984,0.729,104.99,4.0,,Amy Meredith,"C 2013 Amy Meredith, P 2013 Amy Meredith",1443 +1444,spotify:track:1cBxAm8a0fENn2ix3Dfm3u,Precious,spotify:artist:762310PdDnwsDxAQxzQkfX,Depeche Mode,spotify:album:57o8ROknLhGAxhiLKTOwSt,Playing the Angel (Deluxe),spotify:artist:762310PdDnwsDxAQxzQkfX,Depeche Mode,2005-10-13,https://i.scdn.co/image/ab67616d0000b273ed1506834f09438351cf1dc5,1,5,250160,https://p.scdn.co/mp3-preview/a05069bbe64d244dbb51b9c42fd8fe9beb8eae47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAJH0501450,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,permanent wave,rock,synthpop",0.568,0.883,1.0,-4.575,1.0,0.0271,0.0973,0.0476,0.104,0.861,104.987,4.0,,Venusnote Ltd.,P (P) 2005 Venusnote Ltd. under exclusive license to Sony Music Entertainment International Ltd.,1444 +1445,spotify:track:1xvGuRbLxTkpb5UdUG7HME,Could've Been,"spotify:artist:4C3uGP8vRDzxrhJxZiOjTe, spotify:artist:0EvRNpzBThmcwE94F4nokW, spotify:artist:4Omy5P9r7PiXYje9h4jMkz","Tiffany, George Tobin, Bill Smith",spotify:album:0ORrRtBqjERyBBZWSsSw9C,Tiffany,spotify:artist:4C3uGP8vRDzxrhJxZiOjTe,Tiffany,1987-01-01,https://i.scdn.co/image/ab67616d0000b273389fee741b183fc3df0fbf64,1,10,212693,https://p.scdn.co/mp3-preview/0bc937151fffdce422c1edb2fab80979baf8c131?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USMC10000688,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.474,0.238,1.0,-15.595,1.0,0.0271,0.554,3.95e-06,0.107,0.137,99.005,3.0,,Geffen*,"C © 1987 MCA Records Inc., P ℗ 1987 UMG Recordings, Inc.",1445 +1446,spotify:track:6nNvZwiPx3AOf8MyAke9b4,When You Believe - from The Prince of Egypt,"spotify:artist:6XpaIBNiVzIetEPCWDvAFP, spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ","Whitney Houston, Mariah Carey",spotify:album:44mthU2qR57JhTbDeoBcby,The Ultimate Collection,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,2007-10-29,https://i.scdn.co/image/ab67616d0000b2732b8ae85b74e8a7e8d198fc4f,1,8,272453,https://p.scdn.co/mp3-preview/9b6f65f6dafa2dbc37201e6a65ba4447cbe49dee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USAR19800417,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,pop,urban contemporary",0.43,0.428,1.0,-8.228,0.0,0.031,0.528,0.0,0.12,0.155,125.218,4.0,,Arista/Legacy,P (P) 2007 Arista Records LLC,1446 +1447,spotify:track:0UnTaVkntyh3vqvLEvbpQx,In Your Eyes (with Doja Cat) - Remix,"spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ, spotify:artist:5cj0lLjcoR7YOSnhnX0Po5","The Weeknd, Doja Cat",spotify:album:0Jh3A8NAbc9eFpdUfhDedt,In Your Eyes (Remix),"spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ, spotify:artist:5cj0lLjcoR7YOSnhnX0Po5","The Weeknd, Doja Cat",2020-05-21,https://i.scdn.co/image/ab67616d0000b27359612a59ef333109d15faa8d,1,1,237911,https://p.scdn.co/mp3-preview/2be9bae49125388d60010a92d4219b2d86dd896e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USUG12002020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop,dance pop,pop",0.679,0.731,7.0,-5.522,0.0,0.0319,0.00518,0.000127,0.0614,0.727,99.984,4.0,,Republic Records,"C © 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.",1447 +1448,spotify:track:2uEJanMvnA1dXgX1ASnPQm,One Call Away,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:2xxwxdvN2zjplMH7gsy2QM,One Call Away,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2015-08-21,https://i.scdn.co/image/ab67616d0000b273c3fade2af1c66ea4b002ae18,1,1,192075,https://p.scdn.co/mp3-preview/f43776f3699d69a2d5a4da9966520ac264e83831?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USAT21502703,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop",0.665,0.62,1.0,-5.43,1.0,0.035,0.417,0.0,0.113,0.451,91.008,4.0,,Artist Partner,"C © 2015 Artist Partner Group, Inc, P ℗ 2015 Artist Partner Group, Inc",1448 +1449,spotify:track:0MrkZz4D3fGlEkhebjPPrh,MK Ultra,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,spotify:album:0eFHYz8NmK75zSplL5qlfM,The Resistance,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,2009-09-10,https://i.scdn.co/image/ab67616d0000b273b6d4566db0d12894a1a3b7a2,1,7,246093,https://p.scdn.co/mp3-preview/040d9204e8c098b7d0cd7e796f659b5076e5183a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAHT0900326,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern rock,permanent wave,rock",0.39,0.861,9.0,-5.237,0.0,0.041,0.000103,0.00954,0.234,0.35,155.063,4.0,,Warner Records,"C © 2009 Warner Music UK Limited, P ℗ 2009 Warner Music UK Limited",1449 +1450,spotify:track:18ruAkNwQMPx8ldU2tEMZK,Flowers In The Rain,spotify:artist:2BLpGstUHxDc6vHfBEiaXm,The Move,spotify:album:2DHwEud91xwm2gF1Y05i2D,Move (2007 remaster),spotify:artist:2BLpGstUHxDc6vHfBEiaXm,The Move,1968-03-01,https://i.scdn.co/image/ab67616d0000b273fc89fa86d248f35366728f9c,1,6,155200,https://p.scdn.co/mp3-preview/b853363ccb42682774633bf1852fd7b30cf38507?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBWX0701106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,freakbeat,protopunk",0.539,0.926,9.0,-6.94,1.0,0.179,0.0796,0.00011,0.304,0.491,122.884,4.0,,Fly Records,"C (C) 2018 Bucks Records Limited, P (P) 2018 Bucks Records Limited",1450 +1451,spotify:track:1NrbnHlR2BFREcyWXHIHip,When I'm Sixty Four - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:6QaVfG1pHYl1z15ZxkvVDW,Sgt. Pepper's Lonely Hearts Club Band (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1967-06-01,https://i.scdn.co/image/ab67616d0000b27334ef8f7d06cf2fc2146f420a,1,9,157666,https://p.scdn.co/mp3-preview/50d2ef3eab081ff7f73d41068ae0fe15567bbbee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBAYE0601515,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.704,0.241,1.0,-13.258,1.0,0.0476,0.625,2.8e-05,0.0868,0.661,140.411,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",1451 +1452,spotify:track:4YDs7H2OUMyoxbP59y4XMT,Tellin' Everybody,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:2xKkVreE8yp081RclFY3SF,Telling Everybody,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,1996-11-29,https://i.scdn.co/image/ab67616d0000b273b8d41e26d050ba7e9b572ecf,1,1,241760,https://p.scdn.co/mp3-preview/8c5cca86d1a23f404403bc85d71278f8eebcca4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUSM09600089,spotify:user:bradnumber1,2023-01-31T06:23:04Z,"australian pop,australian rock,boy band",0.701,0.683,4.0,-8.507,0.0,0.0668,0.0353,0.0,0.0551,0.71,93.218,4.0,,Sony Music Entertainment,P (P) 1997 Sony Music Entertainment Australia Pty Ltd,1452 +1453,spotify:track:6SFTYQSczxhBNKR5bYjGMD,Save Rock And Roll,"spotify:artist:4UXqAaa6dQYAk18Lv7PEgX, spotify:artist:3PhoLpVuITZKcymswpck5b","Fall Out Boy, Elton John",spotify:album:5jKMfS57mHTHzlSFGfPFxU,Save Rock And Roll,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2013-04-12,https://i.scdn.co/image/ab67616d0000b273483a98632e23f6d2623ab75c,1,11,281080,https://p.scdn.co/mp3-preview/b0bd0038d494c8b3932160ea24eedb974c60a35c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,48,USUM71302621,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop,rock,glam rock,mellow gold,piano rock,rock",0.557,0.776,9.0,-6.286,1.0,0.0649,0.075,4.57e-05,0.1,0.447,144.965,4.0,,Island Records,"C © 2013 The Island Def Jam Music Group, P ℗ 2013 The Island Def Jam Music Group",1453 +1454,spotify:track:2TfSHkHiFO4gRztVIkggkE,"Sugar, We're Goin Down",spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,spotify:album:5nkUSlIhtoJZMOUlB0sNCp,From Under The Cork Tree,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2005-05-03,https://i.scdn.co/image/ab67616d0000b27371565eda831124be86c603d5,1,4,229093,https://p.scdn.co/mp3-preview/3e6e92ee58d4a2ee201d722adbd00cf9e64b97e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USIR20500201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop,rock",0.494,0.842,7.0,-4.784,1.0,0.0843,0.00579,0.0,0.122,0.574,162.011,4.0,,Island Records,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",1454 +1455,spotify:track:2Hxu5SgaAVb65ovr2hCIkP,Antmusic - Remastered,spotify:artist:2DppeCnNtvrLfEobq9Pw5r,Adam & The Ants,spotify:album:0n4C2RpwYAXtMI7vspyZwF,Kings of the Wild Frontier,spotify:artist:2DppeCnNtvrLfEobq9Pw5r,Adam & The Ants,2016-05-20,https://i.scdn.co/image/ab67616d0000b273cc3cbc64d88e11fd55a9c650,1,2,216960,https://p.scdn.co/mp3-preview/d21d6810725c6f2365689fc7b8dfa3a0fe42649a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1500860,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.695,0.806,2.0,-4.119,1.0,0.142,0.101,0.00012,0.37,0.635,81.151,4.0,,Sony Music UK,P (P) 2015 Sony Music Entertainment UK Limited,1455 +1456,spotify:track:33npucdtC2uQou2OM2KmRQ,Just My Type,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,spotify:album:6bJzws56DQdHbGkinVH6VZ,Just My Type,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,2018-06-15,https://i.scdn.co/image/ab67616d0000b2733a94e3bbae6815248ef77cf7,1,1,211360,https://p.scdn.co/mp3-preview/99693cd232910d93b8119fba3b9c26c30e032d9b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBUM71801469,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.61,0.87,2.0,-4.012,0.0,0.0693,0.00299,0.0,0.064,0.523,125.014,4.0,,EMI,"C © 2018 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2018 Virgin EMI Records, a division of Universal Music Operations Limited",1456 +1457,spotify:track:6jA1EDXarBl4yIGlMdHHGe,Runaway Train,spotify:artist:02da1vDJ2hWqfK7aJL6SJm,Soul Asylum,spotify:album:6p995zQT7MDLyOnM5X6khc,Grave Dancers Union,spotify:artist:02da1vDJ2hWqfK7aJL6SJm,Soul Asylum,1993-02-01,https://i.scdn.co/image/ab67616d0000b2736c7144a2a94d2b3ecda27a3e,1,3,266666,https://p.scdn.co/mp3-preview/0fd3098d25337ae427ba099282e22e2055632bfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19200612,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,permanent wave,pop rock,post-grunge",0.614,0.713,0.0,-8.07,1.0,0.0434,0.0143,0.0,0.115,0.561,117.351,4.0,,Columbia,P 1992 Sony Music Entertainment Inc.,1457 +1458,spotify:track:5DF2KFDVeC7wF5CXipl9WN,I Got You,spotify:artist:5EehXjjMktLuJmbRsM7YfB,Disciples,spotify:album:0FETAhMXmt1mnN0sQTzRfX,I Got You,spotify:artist:5EehXjjMktLuJmbRsM7YfB,Disciples,2020-10-02,https://i.scdn.co/image/ab67616d0000b273d3c73fd71e33fa3df0ec8778,1,1,210731,https://p.scdn.co/mp3-preview/0b5c6c36eed94de0a230c2d83e1d923392422203?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBCEN2000095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"house,pop dance,uk dance",0.711,0.876,5.0,-4.144,1.0,0.0551,0.145,0.0,0.116,0.706,122.969,4.0,,Ministry of Sound Recordings,P (P) 2020 Under exclusive licence to Ministry of Sound Recordings Limited,1458 +1459,spotify:track:7ti4bjBWh0KKjBJzC2fOjq,I'm With You - Single Edit,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:4d028S2QDn69ASKyvnoFar,I'm With You,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2018-09-21,https://i.scdn.co/image/ab67616d0000b27374d596603a31838df90ef451,1,1,221137,https://p.scdn.co/mp3-preview/6eb3413c0925de187647594ad9789da3184f45de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21811163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.585,0.672,7.0,-4.337,1.0,0.0298,0.0796,0.0,0.105,0.114,119.0,3.0,,Liberation Records,"C 2018 Liberation Records, P 2018 Liberation Records",1459 +1460,spotify:track:3BFmZVMFN0dIXIHik0fmSD,Drums Of Fate,spotify:artist:2743eaMraDxEkqZTuhbtxc,YellaCatt,spotify:album:3phSvhru6YL3KLCjuLf6xM,Drums Of Fate,spotify:artist:2743eaMraDxEkqZTuhbtxc,YellaCatt,2021-06-24,https://i.scdn.co/image/ab67616d0000b27316d77d7e38c4b3d3bd077612,1,1,258786,https://p.scdn.co/mp3-preview/110f4e7051fc18d853c9d398af10de89fbd23fbe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZBV51900008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.731,0.515,9.0,-6.492,0.0,0.0389,0.33,0.000272,0.112,0.178,140.988,4.0,,Hear Color Music,"C 2021 Hear Color Music, P 2021 Hear Color Music",1460 +1461,spotify:track:1cRNEme8Bp7V8eNIAeyiAk,Hanging By A Moment,spotify:artist:5PokPZn11xzZXyXSfnvIM3,Lifehouse,spotify:album:73VoR62ltV5NrQfdK06CC6,No Name Face,spotify:artist:5PokPZn11xzZXyXSfnvIM3,Lifehouse,2001-03-02,https://i.scdn.co/image/ab67616d0000b27368ab54333fd33f279da0d3ae,1,1,216066,https://p.scdn.co/mp3-preview/45fbd69609c5f8e8eb38868aa22debdb6ba1677d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10022031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.54,0.866,1.0,-4.901,1.0,0.0364,0.00103,0.0,0.0971,0.441,124.595,4.0,,Universal Music Ltd.,"C (C) 2000 SKG Music L.L.C., P (P) 2000 SKG Music L.L.C.",1461 +1462,spotify:track:3lfmqF0ULXRHlWxBeaHo3t,Hit That,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:6mVLRZmHfO3CQIk5e1WXBL,Splinter,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,2003-12-09,https://i.scdn.co/image/ab67616d0000b2732d631767c4043be5539782ee,1,4,169413,https://p.scdn.co/mp3-preview/e9234d7e92048ff3d4873857a4f7dc237c727a18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM10312711,spotify:user:bradnumber1,2021-11-11T04:05:41Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.704,0.809,4.0,-3.045,1.0,0.0321,0.0233,0.0,0.0596,0.962,131.952,4.0,,Round Hill Music (Offspring),"C © 2003 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc., P ℗ 2003 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc.",1462 +1463,spotify:track:4Jpv4zmJPBYhXB9UthTGbG,Moonlighting,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,spotify:album:4LN2An9eJ6fsIJxhZZmgnd,Another Year,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,1975,https://i.scdn.co/image/ab67616d0000b2733edc78b7d51210abe750485e,1,6,253573,https://p.scdn.co/mp3-preview/c60076253fc19dadc614bdf6b3efa1800b36f263?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUWA01000527,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.816,0.523,7.0,-12.823,1.0,0.0552,0.186,0.0,0.0595,0.962,128.308,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Ltd, P ℗ 1975 (Silverbird) Australia Pty Ltd under exclusive licence to Warner Music Australia Pty Ltd",1463 +1464,spotify:track:6FBmHx1FuaSnTnnnaThgbF,Cum on Feel the Noize,spotify:artist:1dLWg6m8RRhizsdqJbhyj3,Quiet Riot,spotify:album:1JSjQhsnC2xElFjTVG3Qhy,Quiet Riot - Greatest Hits,spotify:artist:1dLWg6m8RRhizsdqJbhyj3,Quiet Riot,1996,https://i.scdn.co/image/ab67616d0000b273ec756ca9c2c7e3c438a06aba,1,1,287400,https://p.scdn.co/mp3-preview/c404d9c3c98662463896e925b62607b1192bb85a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM18300031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,metal,rock",0.441,0.908,11.0,-4.627,0.0,0.115,0.000183,0.00328,0.0612,0.632,145.439,4.0,,Epic,"P 1983, 1984, 1986, 1988, 1996 Sony Music Entertainment Inc.",1464 +1465,spotify:track:7ieCsfrxC9ssTGUzCL8BHv,Holy Grail,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,spotify:album:3p24BdyFbIK0vNndBlWeFi,Cut (25th Anniversary Deluxe Version),spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,1992-02-02,https://i.scdn.co/image/ab67616d0000b2734842335ccfee822cfe50b7bd,1,2,227719,https://p.scdn.co/mp3-preview/ef2de51aefa7040be27206d43473e3de55a1bc04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,AULI00508720,spotify:user:bradnumber1,2021-08-24T21:23:48Z,australian rock,0.64,0.958,1.0,-3.982,0.0,0.0404,0.0578,0.0338,0.324,0.713,101.212,4.0,,Bloodlines,"C 2017 Bloodlines, P 2017 Bloodlines",1465 +1466,spotify:track:4BM8yJ0PzBi2ZewpMTOxtx,Fernando,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1V6a99EbTTIegOhWoPxYI9,Arrival,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1976,https://i.scdn.co/image/ab67616d0000b27370f7a1b35d5165c85b95a0e0,1,11,252960,https://p.scdn.co/mp3-preview/403a642e6431f0540aa0afdc28736cda36858a2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,SEAYD7602070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.354,0.535,9.0,-8.876,1.0,0.0303,0.627,2.9e-06,0.0808,0.434,110.821,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",1466 +1467,spotify:track:3qR0txhV0ztr0hNUJGAOG6,Snail,spotify:artist:0Cp8WN4V8Tu4QJQwCN5Md4,BENEE,spotify:album:7sHwSoFWCWTdXe45t0vC27,Snail,spotify:artist:0Cp8WN4V8Tu4QJQwCN5Md4,BENEE,2020-08-10,https://i.scdn.co/image/ab67616d0000b2736b51596a3e50d54a2153176b,1,1,180356,https://p.scdn.co/mp3-preview/e6bedb3f5489ffe9039f4a1450a066a04236d12e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM72014902,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,nz pop",0.835,0.688,7.0,-4.855,1.0,0.0488,0.0552,0.0046,0.0716,0.678,124.038,4.0,,Republic Records,"C © 2020 Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Republic Records, a division of UMG Recordings, Inc.",1467 +1468,spotify:track:0uMMLry3hzWGn3q3loqMkm,La Bamba,spotify:artist:6OWapcJm9xd55ci9CYbAuT,Los Lobos,spotify:album:0FPwLfwQWd91kV5rZTzMlZ,La Bamba / Charlena,spotify:artist:6OWapcJm9xd55ci9CYbAuT,Los Lobos,1987-06-20,https://i.scdn.co/image/ab67616d0000b273c208d60c83e8611195875e13,1,1,174186,https://p.scdn.co/mp3-preview/7d99bed1d9ec6051f7ca9391e4cb79e1b66342b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USRH10802794,spotify:user:bradnumber1,2021-08-08T09:26:31Z,roots rock,0.506,0.764,0.0,-12.239,1.0,0.046,0.144,0.00025,0.247,0.868,156.336,4.0,,Rhino/Slash,"C © 1987 Slash Records., P ℗ 1987 Slash Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",1468 +1469,spotify:track:1VclMTc1N2JvNQ8YEw2inZ,Sexual Healing,spotify:artist:5QpTf4jao06WPoX4HKl5x6,Max-A-Million,spotify:album:7L9Rm9hhDUVluPYw2l6t7D,Take Your Time,spotify:artist:5QpTf4jao06WPoX4HKl5x6,Max-A-Million,1995,https://i.scdn.co/image/ab67616d0000b273ca62796f5ef4082b61d78bb5,1,3,245906,https://p.scdn.co/mp3-preview/3de6483fe84f9f9f4679dcc35010821bf4129414?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,CAU119405717,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.772,0.76,8.0,-7.179,1.0,0.0547,0.0319,0.0,0.25,0.693,99.006,4.0,,Unidisc,"C 1994 Unidisc Music Inc., P 1994 Unidisc Music Inc.",1469 +1470,spotify:track:5KFcz1OYNXyDX7HzSIsNdk,Love Yourself,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:4qlyglewxzSY1mmwtGF4BM,Love Yourself,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-09,https://i.scdn.co/image/ab67616d0000b273e13ab134bdec59e2d0e82290,1,1,233746,https://p.scdn.co/mp3-preview/b750d9609aa454adb23284b1504d962a6ff9bb07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516761,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.762,0.376,4.0,-9.931,1.0,0.363,0.849,0.0,0.205,0.541,100.084,4.0,,Universal Music Group,"C (C) 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P (P) 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",1470 +1471,spotify:track:5XM7yXTFzTN0PVo9L1bkQS,Holy Grail,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,spotify:album:7n0fvADfxHxfAcovh4EC8t,Cut,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,1992,https://i.scdn.co/image/ab67616d0000b2734c75574b3f389b1d7d4de7ac,1,2,230066,https://p.scdn.co/mp3-preview/ef2de51aefa7040be27206d43473e3de55a1bc04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00508720,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.648,0.946,1.0,-4.214,0.0,0.0369,0.125,0.0071,0.337,0.712,100.896,4.0,,Bloodlines,"C 1992 C 1992 Human Frailty Pty Ltd, P 1992 P 1992 Human Frailty Pty Ltd",1471 +1472,spotify:track:5KC5lailJiaY7UI3pewtV7,Million Dollar Riff - 1994 Remaster,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,spotify:album:4BlDclBXClEPB53dajAwOg,Straight In A Gay Gay World [remastered],spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,1976,https://i.scdn.co/image/ab67616d0000b273beee51d1f0d16ac2e3b83842,1,1,230466,https://p.scdn.co/mp3-preview/acf313044569bd142a6caebf3317f1caca032613?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUWA00900792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.59,0.885,9.0,-8.137,1.0,0.0526,0.133,0.173,0.585,0.942,90.266,4.0,,WM Australia,"C © 1976 Mushroom Records Pty Limited, P ℗ 1976 Mushroom Records Pty Limited",1472 +1473,spotify:track:35Y18Dv2pAiJ7v0Zou9gxI,F.U.R.B. (F U Right Back),spotify:artist:01U4snBkRWq0FBrK3P1mwM,Frankee,spotify:album:5NUujDoRxFotxe3cfjXVks,F.U.R.B. (F U Right Back),spotify:artist:01U4snBkRWq0FBrK3P1mwM,Frankee,2004-10-24,https://i.scdn.co/image/ab67616d0000b273ded89b776b677bc7de782aa3,1,1,201866,https://p.scdn.co/mp3-preview/bfa09379ed7474eeb04650f06a5a6b5d466c6a1c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,48,USWR30432403,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.788,0.635,8.0,-2.922,1.0,0.135,0.0993,9.9e-06,0.292,0.601,141.019,4.0,,Marro Records,C (C) 2004 Marro Records / Warlock Records,1473 +1474,spotify:track:4xlrALxuaCf9yZBHJeTSG6,Mama,"spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:5exS0bytCYdixgv02DaCm3","Jonas Blue, William Singe",spotify:album:330R0sGGLnkJiXicee8jTK,Mama,spotify:artist:1HBjj22wzbscIZ9sEb5dyf,Jonas Blue,2017-05-05,https://i.scdn.co/image/ab67616d0000b27300cf56c0f52ed7ff598fa971,1,1,184133,https://p.scdn.co/mp3-preview/4e20032faa6a23161743b71a4b21fa3e69644ae0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71701777,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop dance,tropical house,uk dance,pop r&b,teen pop",0.741,0.79,11.0,-4.086,0.0,0.0469,0.113,0.0,0.0542,0.528,104.043,4.0,,Universal Music Group,"C © 2017 Jonas Blue Music, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd, P ℗ 2017 Jonas Blue Music, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd",1474 +1475,spotify:track:2qLCoKtnmGCzV8fqG6HeR6,Waiting Game,spotify:artist:48sLioddyaXkuhyHXSkpsB,Parson James,spotify:album:6mFi7ayKBXA3tz9ucQ9mb9,The Temple EP,spotify:artist:48sLioddyaXkuhyHXSkpsB,Parson James,2016-02-05,https://i.scdn.co/image/ab67616d0000b273affed0446de9aa5ae0874f90,1,5,232400,https://p.scdn.co/mp3-preview/698bfac86443c08f5179aa99a02816762b386cee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USRC11502055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop soul,0.393,0.307,9.0,-7.797,1.0,0.037,0.879,0.0,0.108,0.275,163.665,3.0,,RCA Records Label,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",1475 +1476,spotify:track:57zF9nlPH4rud6f6zuKSQi,Thursday,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,spotify:album:7GCY1J01hcEpdgeY0vtSsN,Always in Between (Deluxe),spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,2018-10-12,https://i.scdn.co/image/ab67616d0000b273a87cab21419f86b78c338e97,1,4,216239,https://p.scdn.co/mp3-preview/0e3e59ba6cf246aa1791fd292970287284660536?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAHS1800454,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.603,0.554,2.0,-4.381,1.0,0.0646,0.452,0.0,0.0544,0.354,111.99,4.0,,Atlantic Records UK,"C © 2018 Atlantic Records UK, a division of Warner Music UK Limited except for Track 13 (P) 2017 Asylum Records UK, a division of Warner Music UK Limited and Track 14 (P) 2018 Ministry of Sound Recordings Limited under licence to Warner Music UK Limited. And Track 17 (P) 2019 Atlantic Records UK, P ℗ 2018 Atlantic Records UK, a division of Warner Music UK Limited except for Track 13 (P) 2017 Asylum Records UK, a division of Warner Music UK Limited and Track 14 (P) 2018 Ministry of Sound Recordings Limited under licence to Warner Music UK Limited. And Track 17 (P) 2019 Atlantic Records UK",1476 +1477,spotify:track:2kqAtjOtQPAR0OiYUJR43k,Can We Dance,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,spotify:album:12gXA8pXYzj9bycyyKSGAa,Meet The Vamps,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,2014-01-01,https://i.scdn.co/image/ab67616d0000b2739f89b8390933e9ccb3673c89,1,4,192710,https://p.scdn.co/mp3-preview/e5aec7ec9a8640719447e21ddff471360f0440f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBUM71304973,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.643,0.82,1.0,-4.729,0.0,0.0463,0.00307,0.0,0.189,0.583,130.135,4.0,,EMI,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",1477 +1478,spotify:track:0UYit2SshaoGD45cp21LEI,Gold,spotify:artist:2urZrEdsq72kx0UzfYN8Yv,Spandau Ballet,spotify:album:08X2lSUAtVIoWTpG1G8Niu,Spandau Ballet ''The Story'' The Very Best of (Deluxe),spotify:artist:2urZrEdsq72kx0UzfYN8Yv,Spandau Ballet,2014-10-10,https://i.scdn.co/image/ab67616d0000b2732f00876805ab06480899f76a,1,9,231480,https://p.scdn.co/mp3-preview/b9a387286380647cee77e8df8577e6879d173d6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK8300018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,sophisti-pop,synthpop",0.711,0.74,10.0,-7.776,0.0,0.036,0.261,0.0114,0.104,0.638,143.047,4.0,,Rhino,"C 2014 This Compilation, Parlophone Records Ltd, a Warner Music Group Company, P 2014 This Compilation, Parlophone Records Ltd, a Warner Music Group Company",1478 +1479,spotify:track:5YIH6xhcjqeZtL7EfXf1zC,Hey Jealousy,spotify:artist:6kXp61QMZFPcKMcRPqoiVj,Gin Blossoms,spotify:album:7yEbRim3HxXh4nF2UiSzVh,New Miserable Experience,spotify:artist:6kXp61QMZFPcKMcRPqoiVj,Gin Blossoms,1992-01-01,https://i.scdn.co/image/ab67616d0000b27346d4f0d419b51f4af4449c7f,1,2,236440,https://p.scdn.co/mp3-preview/1f98821840f5a41848bb135d478a9cfcbc939b01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USAM19201246,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop rock,post-grunge,tempe indie",0.479,0.787,6.0,-8.438,0.0,0.0405,0.000236,4.2e-06,0.331,0.45,152.875,4.0,,Polydor Associated Labels,"C © 1992 A&M Records Inc., P ℗ 1992 A&M Records Inc.",1479 +1480,spotify:track:6A8llSO9QFF4djCCmuCrNu,Flashback,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,spotify:album:5Zcfw8EsPjQBJZhA0EbcyM,Ready For The Weekend,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2009-08-17,https://i.scdn.co/image/ab67616d0000b27300d6698dffdf81ce656dd26f,1,7,227880,https://p.scdn.co/mp3-preview/164905e14fe02df91cc9fc664378f8525d8d9028?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBARL0900843,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance",0.266,0.95,9.0,-5.646,0.0,0.05,0.00212,0.000991,0.0922,0.158,127.986,4.0,,Columbia,P (P) 2009 Sony Music Entertainment Limited except Track 13 ?Dance Wiv Me? P 2008 Dirtee Stank Recordings Limited under license to Sony Music Entertainment UK Limited,1480 +1481,spotify:track:3llxqT4IdBS7i2CCIPImww,Why Does My Heart Feel so Bad?,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,spotify:album:1xB1tmm50ZhXwrNs89u7Jx,Play,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,1999-05-17,https://i.scdn.co/image/ab67616d0000b27373b063d18cd9be91eb12284a,1,4,263560,https://p.scdn.co/mp3-preview/c966bb4a5074cd0e3e7398f7176aa7e6fa039346?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAJH9900037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,electronica",0.338,0.597,7.0,-8.048,1.0,0.0515,0.00106,0.157,0.0846,0.0393,97.884,4.0,,"Mute, a BMG Company","C © 1999 Mute Records Ltd., a BMG Company, P ℗ 1999 Mute Records Ltd., a BMG Company",1481 +1482,spotify:track:0C80GCp0mMuBzLf3EAXqxv,Shoot to Thrill,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:6mUdeDZCsExyJLMdAfDuwh,Back In Black,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1980-07-25,https://i.scdn.co/image/ab67616d0000b2730b51f8d91f3a21e8426361ae,1,2,317426,https://p.scdn.co/mp3-preview/98123a7d31111d0d9a61c21d4ce6e9215a8f5903?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,AUAP08000042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.457,0.904,2.0,-5.303,1.0,0.0747,0.000239,0.0879,0.396,0.48,141.038,4.0,,Columbia,P (P) 1980 Leidseplein Presse B.V.,1482 +1483,spotify:track:6L89mwZXSOwYl76YXfX13s,Basket Case,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:4uG8q3GPuWHQlRbswMIRS6,Dookie,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,1994-02-01,https://i.scdn.co/image/ab67616d0000b273db89b08034de626ebee6823d,1,7,181533,https://p.scdn.co/mp3-preview/f055a866d726bac8593f15953d772c631505df7e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USRE19900151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.442,0.943,3.0,-3.205,1.0,0.0602,0.00293,8.71e-06,0.091,0.781,85.064,4.0,,Reprise,"C © 1994 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S., P ℗ 1994 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S.",1483 +1484,spotify:track:7MTdv6v3vsmQcVfh7eIaks,Tripping,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:14cUCy4aMykhZbIFTw7dtW,Intensive Care,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2005,https://i.scdn.co/image/ab67616d0000b273d27cb33d2abf0a99cead9033,1,2,276603,https://p.scdn.co/mp3-preview/ed4f2ef36a6151005e88ded54e9b8d546537d9f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBFFG0500004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.666,0.922,2.0,-4.458,0.0,0.0429,0.0381,0.000191,0.0633,0.828,118.014,4.0,,Chrysalis UK,"C © 2005 Robert Williams/The In Good Company Co Ltd, P ℗ 2005 Robert Williams/The In Good Company Co Ltd",1484 +1485,spotify:track:7eu51kQxpMvSYa2YV9KQpY,Turn Up Your Radio,spotify:artist:0Yk7KdGevnSCqZgg9K8n6b,The Master's Apprentices,spotify:album:0VogCwK4hoVaWTe1Upj2Xp,The Very Best Of Masters Apprentices,spotify:artist:0Yk7KdGevnSCqZgg9K8n6b,The Master's Apprentices,1988-01-01,https://i.scdn.co/image/ab67616d0000b2739e1fdf6a5da3ecff511d58d6,1,1,213000,https://p.scdn.co/mp3-preview/f771a19bcd825b03fd624f8e2e145c1ad44d8cb0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUEM07000008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.411,0.717,4.0,-12.598,0.0,0.0868,0.509,0.65,0.46,0.631,82.792,4.0,,Virgin Records,"C © 1988 Virgin Australia, P This Compilation ℗ 1988 Virgin Australia",1485 +1486,spotify:track:6XK62LvrHeg8R7G7A0C0kt,New Boy,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,spotify:album:3gTiWS23VbPUlzrA66HhWg,New Boy,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,2020-11-20,https://i.scdn.co/image/ab67616d0000b273ccdd179d4ed78587b4004757,1,1,195979,https://p.scdn.co/mp3-preview/89216dfea179d480a3494a6a2c02499eeaae51ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUBM02000349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.617,0.456,6.0,-3.665,1.0,0.0634,0.0464,0.00831,0.0471,0.75,104.772,4.0,,Sony Music Entertainment,P (P) 2020 Sony Music Entertainment Australia Pty Ltd,1486 +1487,spotify:track:7e89621JPkKaeDSTQ3avtg,Sweet Home Alabama,spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,spotify:album:54V1ljNtyzAm053oJqi0SH,Second Helping (Expanded Edition),spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,1974-04-15,https://i.scdn.co/image/ab67616d0000b27317e1907923e91181f38290ac,1,1,283800,https://p.scdn.co/mp3-preview/125986ae6eb995983b84776b7e0d368f6a74cbbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USMC17446153,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock,southern rock",0.596,0.606,7.0,-12.145,1.0,0.0255,0.181,0.000327,0.0863,0.886,97.785,4.0,,Geffen*,"C © 1997 Geffen Records, P ℗ 1997 Geffen Records",1487 +1488,spotify:track:61lqNlVRnWYiR9C7BDJw2l,You Give Love A Bad Name,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:3Ad4QdO0EJr1c2livr9cmm,Bon Jovi Greatest Hits,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273f0d41275363a36b5772b49b2,1,2,223146,https://p.scdn.co/mp3-preview/8725d17310a4bb00377f22ef21fe93fc5fbff0da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.53,0.964,0.0,-2.571,0.0,0.0553,0.0528,4.84e-06,0.372,0.823,122.807,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",1488 +1489,spotify:track:0PDUDa38GO8lMxLCRc4lL1,PILLOWTALK,spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,spotify:album:5amj9zNeZ3B2EdpBgXrOZ0,Mind Of Mine (Deluxe Edition),spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,2016-03-25,https://i.scdn.co/image/ab67616d0000b273a15e26d05b7ce776b566579d,1,2,202746,https://p.scdn.co/mp3-preview/79a481c433e9d7681e09bba4d256dd7eadd5f540?cid=9950ac751e34487dbbe027c4fd7f8e99,True,78,USRC11600042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.584,0.7,11.0,-4.275,1.0,0.0456,0.117,0.0,0.0939,0.438,124.944,4.0,,RCA Records Label,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",1489 +1490,spotify:track:2CzWeyC9zlDpIOZPUUKrBW,1234,spotify:artist:6CWTBjOJK75cTE8Xv8u1kj,Feist,spotify:album:7bTdGfczXffzzNE9ssJj4Z,The Reminder,spotify:artist:6CWTBjOJK75cTE8Xv8u1kj,Feist,2007-01-01,https://i.scdn.co/image/ab67616d0000b273b17d3cdd360973516ade9e6d,1,9,183666,https://p.scdn.co/mp3-preview/85b8223e13ea6b40f01bb0374a88c57eddcb2bb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,FRUM70600217,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,canadian indie,canadian pop,chamber pop,indie pop,indie rock",0.71,0.484,2.0,-7.415,1.0,0.049,0.217,3.93e-06,0.0879,0.576,109.951,4.0,,Universal Music Division Decca Records France,"C © 2007 Polydor (France), P ℗ 2007 Polydor (France)",1490 +1491,spotify:track:1uWEioHUYs5BD6yGdAcWZA,Counting Down the Days,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,spotify:album:1PD3hNs0PRMtOeU11DPpim,Counting Down The Days,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,2005-04-04,https://i.scdn.co/image/ab67616d0000b2739751ddaa58bf9b66c4cddc8c,1,4,249253,https://p.scdn.co/mp3-preview/765cd1e7a846f92b7da31fb08859655679a278ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBHKB0500003,spotify:user:bradnumber1,2022-03-20T21:36:13Z,"dance pop,europop,lilith,new wave pop,pop rock",0.38,0.726,10.0,-3.424,1.0,0.0333,0.0805,0.0,0.0965,0.305,95.68,4.0,,Brightside Recordings,P (P) 2005 Brightside Recordings a division of Blue Sky music Ltd under exclusive license to SONY BMG MUSIC ENTERTAINMENT (UK) Limited.,1491 +1492,spotify:track:1tYt8PbpbeTuqsNmprAZYY,Dessert,spotify:artist:46GXASE9LHzyssNqKOInUu,Dawin,spotify:album:4xNCtUWlbfoRilthUHkWR1,Dessert,spotify:artist:46GXASE9LHzyssNqKOInUu,Dawin,2015-03-13,https://i.scdn.co/image/ab67616d0000b273d4758fc1bc49b610c3fbc0a4,1,1,210983,https://p.scdn.co/mp3-preview/3832c25020cdaa3b03fc4aa8ae18cd6eb23f3b62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71502647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nyc pop,0.868,0.679,6.0,-6.941,1.0,0.0397,0.0799,1.22e-06,0.0504,0.75,97.012,4.0,,Universal Music Group,"C © 2015 Republic Records, a division of UMG Recordings, Inc., P ℗ 2015 Republic Records, a division of UMG Recordings, Inc.",1492 +1493,spotify:track:2Ei2r77RvLvkz6X3qlP0qS,Town Without Pity,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,spotify:album:6gJ1d3KgMLwEKeck53FYxc,The Best Of Gene Pitney,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,2019-04-17,https://i.scdn.co/image/ab67616d0000b273fb4c46e199dfc54f5400ba69,1,3,174773,https://p.scdn.co/mp3-preview/8fef3eb753dc337f4545d8cc0c371bf49ea2cd40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,merseybeat,rock-and-roll,rockabilly",0.495,0.417,7.0,-9.993,1.0,0.03,0.668,6.18e-06,0.0644,0.603,119.862,3.0,,Musicor Records,"C 1984 Gusto Records Inc., P 1984 Gusto Records Inc.",1493 +1494,spotify:track:4VUwkH455At9kENOfzTqmF,Beautiful (feat. Camila Cabello),"spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF","Bazzi, Camila Cabello",spotify:album:6hCR3zQtRH0IgookOYt771,Beautiful (feat. Camila Cabello),"spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF","Bazzi, Camila Cabello",2018-08-02,https://i.scdn.co/image/ab67616d0000b27305559264ebef3889709826cf,1,1,180000,https://p.scdn.co/mp3-preview/68869934e36a263274c48611101cf5f1d332a89f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USAT21810504,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,pop",0.638,0.717,2.0,-4.722,1.0,0.0337,0.346,0.0,0.105,0.249,100.027,4.0,,iamcosmic,"C 2018, P 2018",1494 +1495,spotify:track:1g9k5d0JX1RnRIDlG0sKZK,Jellylegs,spotify:artist:05STafdfQBBQIV9duONwod,Children Collide,spotify:album:2I7TbngxphcqDbbP192ll3,Theory Of Everything,spotify:artist:05STafdfQBBQIV9duONwod,Children Collide,2010-01-01,https://i.scdn.co/image/ab67616d0000b273cff4f751a10044ca49baa4de,1,2,218250,https://p.scdn.co/mp3-preview/0073cebd31d6beabfdb1051b087623526463ce20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71001164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian indie rock",0.471,0.949,2.0,-3.475,0.0,0.0555,0.00168,0.000847,0.328,0.36,155.986,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Universal Music Australia Pty Ltd., P ℗ 2010 Universal Music Australia Pty Ltd.",1495 +1496,spotify:track:7BHPfjnhrmPLcnAL3mx6cT,The Hardest Thing,spotify:artist:6V03b3Y36lolYP2orXn8mV,98º,spotify:album:39FfOWdtZLLY1lMn2R3UIm,98º And Rising,spotify:artist:6V03b3Y36lolYP2orXn8mV,98º,1998-01-01,https://i.scdn.co/image/ab67616d0000b273f2307c50983b6e6ac4d0c1c6,1,12,274626,https://p.scdn.co/mp3-preview/be3882fc3d702b32d6a1fa2db073e4c61925b9d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO19883537,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.723,0.48,10.0,-7.503,1.0,0.0282,0.154,0.0,0.0672,0.571,87.99,4.0,,Universal Records,"C © 1998 Motown Record Company L.P., P ℗ 1998 UMG Recordings, Inc.",1496 +1497,spotify:track:1dbt3sOwRmUOLfQZSpSz9O,Truly,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,spotify:album:0gifkJqaeYRF5QDWfrtuOW,Lionel Richie (Expanded Edition),spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,1982,https://i.scdn.co/image/ab67616d0000b2739ab191316eb4f1cea5da5424,1,6,200506,https://p.scdn.co/mp3-preview/4f4bbfe4ed531e4f1703cc6ef7d75d26680ad98c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18200575,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.366,0.238,1.0,-13.853,1.0,0.0381,0.646,1e-05,0.0876,0.131,68.362,4.0,,Universal Music Group,"C © 2003 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2003 Universal Motown Records, a division of UMG Recordings, Inc.",1497 +1498,spotify:track:4PolnByeD51J70KyfwsVTT,Funny Face,spotify:artist:4tIQ6BeFRvYApoAyJmaeVC,Donna Fargo,spotify:album:3PNqqezwbcsphgb7tS5jYj,Donna Fargo,spotify:artist:4tIQ6BeFRvYApoAyJmaeVC,Donna Fargo,2010-01-01,https://i.scdn.co/image/ab67616d0000b2736731182c2f446da8b86bcfdc,1,2,153693,https://p.scdn.co/mp3-preview/b284ec58394de153b95d41cfe4a271218ac2813d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAFM0910998,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic country pop,0.608,0.258,2.0,-15.006,1.0,0.0307,0.723,0.0,0.193,0.38,98.348,3.0,,Suite 102,"C © 2010 Countdown Media, a division of BMG Rights Management (US) LLC, P ℗ 2010 Countdown Media, a division of BMG Rights Management (US) LLC",1498 +1499,spotify:track:1ru7HnyTXzFsY2rq7H2jzt,Bless My Soul,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:1rL8lL8SM3iloFniGoGp4m,Fingerprints - The Best of Powderfinger 1994-2000,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2004-01-01,https://i.scdn.co/image/ab67616d0000b2734e29b1f639d844edcf7d5eb7,1,1,246320,https://p.scdn.co/mp3-preview/588af8309a555f72920ece974e4f8ae0734c6cc7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00430310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.135,0.968,8.0,-3.811,1.0,0.147,4.82e-05,1.5e-05,0.284,0.275,215.537,4.0,,Universal Music Australia Pty. Ltd.,"C © 2004 Universal Music Australia Pty Ltd., P ℗ 2004 Universal Music Australia Pty Ltd.",1499 +1500,spotify:track:4fpxnJGDWFxjGvLJOqPPt8,True Faith,spotify:artist:0yNLKJebCb8Aueb54LYya3,New Order,spotify:album:6iHuSGy6pq4tNGFV3ZVPtl,Substance,spotify:artist:0yNLKJebCb8Aueb54LYya3,New Order,1987-08-17,https://i.scdn.co/image/ab67616d0000b273b213f1c2294fbe92111f6b90,1,12,355066,https://p.scdn.co/mp3-preview/3ee5927e704230ff17f09094f8f9576938d25f0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAAP0001118,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,madchester,new romantic,new wave,permanent wave,post-punk,synthpop,uk post-punk",0.589,0.784,0.0,-13.037,1.0,0.0312,0.175,0.0767,0.132,0.941,116.981,4.0,,Rhino,"C © 1987 Warner Music UK Limited, P ℗ 1987 Warner Music UK Limited",1500 +1501,spotify:track:1mJMD1VIQ7jWTP9DK2zmY0,Kiss Somebody,spotify:artist:6fzQ81ouajOEFqCIB9VwrS,Morgan Evans,spotify:album:2AQJVx5WiteEOyfmrY7Kgx,Kiss Somebody,spotify:artist:6fzQ81ouajOEFqCIB9VwrS,Morgan Evans,2017-07-21,https://i.scdn.co/image/ab67616d0000b27378e026ca0b2c78c530fa05b0,1,1,212445,https://p.scdn.co/mp3-preview/1ebaa80423ec07a7f0a8cf99fb2557304afd297c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USWB11701213,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,contemporary country,country road,modern country rock",0.492,0.681,6.0,-7.038,1.0,0.075,0.143,0.0,0.199,0.511,178.01,4.0,,Warner Records,"C © 2017 Warner Music Nashville LLC, P ℗ 2017 Warner Music Nashville LLC",1501 +1502,spotify:track:1it9umP1j9qSqzKbSLLqqy,Chain Reaction,spotify:artist:3MdG05syQeRYPPcClLaUGl,Diana Ross,spotify:album:1Sj3WCDLJc8N9EYyS6wnLD,Eaten Alive,spotify:artist:3MdG05syQeRYPPcClLaUGl,Diana Ross,1985-09-24,https://i.scdn.co/image/ab67616d0000b273c47451013ad60a659f7f09e3,1,4,230533,https://p.scdn.co/mp3-preview/946a93cabe2540adf681aec34424ef2a595ff4cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAYE8500113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,disco,motown,quiet storm,soft rock,soul",0.794,0.55,11.0,-12.988,1.0,0.0367,0.155,0.000271,0.113,0.744,127.736,4.0,,Parlophone UK,"C © 1985 Diana Ross Enterprises Inc This label copy information is the subject of copyright protection. All rights reserved. (C) 1985 Parlophone Records Ltd, P ℗ 1985 Parlophone Records Ltd, a Warner Music Group Company",1502 +1503,spotify:track:2mNKIuM4xmeTNwe02NOem8,Pictures,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,spotify:album:3POXlpDv0cikb180eu6k5j,Sneaky Sound System,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,2006,https://i.scdn.co/image/ab67616d0000b2731e54836b82f6407233f06197,1,4,196946,https://p.scdn.co/mp3-preview/593528ce81cbfa2855c0bb873ec538e0838cdfdc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUQK00600017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,funktronica",0.788,0.914,4.0,-3.368,0.0,0.0384,0.0539,0.0159,0.0762,0.935,121.982,4.0,,Whack Records,"C 2006 Whack Records, P 2006 Whack Records",1503 +1504,spotify:track:4ofwffwvvnbSkrMSCKQDaC,Shotgun,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,spotify:album:2NaulYO6lGXTyIzWTJvRJj,Staying at Tamara's,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,2018-03-23,https://i.scdn.co/image/ab67616d0000b273103045cd1c29dd16a469f808,1,4,201287,https://p.scdn.co/mp3-preview/3d87ba7cbe8d7c7499cf86e46f7665b2b63639fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBARL1701372,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo-singer-songwriter",0.673,0.735,5.0,-4.733,1.0,0.0457,0.286,0.0,0.242,0.754,115.744,4.0,,Columbia,P (P) 2018 Sony Music Entertainment UK Limited,1504 +1505,spotify:track:44w63XqGr3sATAzOnOySgF,If Everyone Cared,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:69ny9Y7VrjVP7JNK0xhYke,All the Right Reasons - Special Edition,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2005-09-26,https://i.scdn.co/image/ab67616d0000b273105db7f723f33d9273fbf4d8,1,9,218013,https://p.scdn.co/mp3-preview/c5b103fe31f674f806c606f6d5ae872b44f9ac53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,NLA320581341,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.519,0.85,6.0,-4.678,0.0,0.0354,0.000246,0.014,0.279,0.211,132.022,4.0,,Roadrunner Records,"C © 2005, 2007 The All Blacks B.V., P ℗ 2005, 2006, 2007 The All Blacks B.V.",1505 +1506,spotify:track:7jUnwF51o95iu2zPnpnEdW,Going Under,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,spotify:album:5ozEqFzXMZyJkfekXLkUUo,Fallen,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,2003,https://i.scdn.co/image/ab67616d0000b273b452e368a6ab2cff47147b3c,1,1,214946,https://p.scdn.co/mp3-preview/78c3da357d5702d3a226ea8aebba334b808c96b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU30200108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alternative metal,0.371,0.857,11.0,-4.913,0.0,0.0538,0.00921,6.87e-05,0.135,0.442,175.093,4.0,,Wind Up,"C (C) 2003 Wind-Up Records, LLCThis label copy information is the subject of copyright protection. All rights reserved.(C) EMI Music Germany GmbH & Co. KG, P (P) 2003 The copyright in this sound recording is owned by Wind-Up Records, LLC under exclusive licence to EMI Music Germany GmbH & Co. KG",1506 +1507,spotify:track:2bd1FeFKgVACAUhcuyf9cC,Moonlight Shadow - Original Mix,spotify:artist:1yWjNh9SRE7C59A3LDIwVW,Groove Coverage,spotify:album:74sB5OCB9OarVpuRzTCzJl,Moonlight Shadow,spotify:artist:1yWjNh9SRE7C59A3LDIwVW,Groove Coverage,2006,https://i.scdn.co/image/ab67616d0000b273bdd844aeea9d6c57dd12b983,1,9,174773,https://p.scdn.co/mp3-preview/bb9c127e29282b2cf3941fbee2664d1d9222f65a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,DEF910200049,spotify:user:bradnumber1,2022-05-02T07:04:22Z,"eurodance,german techno,hands up",0.566,0.796,11.0,-6.252,0.0,0.0776,0.395,2.28e-05,0.0701,0.307,140.491,4.0,,Suprime Music,"C 2006 Suprime Music GmbH & Co.KG, P 2006 Suprime Music GmbH & Co.KG",1507 +1508,spotify:track:4fuxWe7J9V1CamtzwwQ8yN,Axel F,spotify:artist:4J3wzDMI97AlGimdiVcaLb,Crazy Frog,spotify:album:4QfUmCEKzFHURER9FhPe8m,Crazy Frog pres. Crazy Hits,spotify:artist:4J3wzDMI97AlGimdiVcaLb,Crazy Frog,2005-08-01,https://i.scdn.co/image/ab67616d0000b2739d59ce8b3d00e47cebf1cc53,1,2,168879,https://p.scdn.co/mp3-preview/e674a4d68ae68fa48b5a6b9eb22d000e7cb2df84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DES310500134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.86,0.907,2.0,-3.321,1.0,0.0407,0.279,0.693,0.0648,0.786,138.045,4.0,,Mach 1,"C 2005 Mach 1 Records GmbH, P 2005 Mach 1 Records GmbH",1508 +1509,spotify:track:1QEEqeFIZktqIpPI4jSVSF,More Than a Feeling,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,spotify:album:2QLp07RO6anZHmtcKTEvSC,Boston,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,1976,https://i.scdn.co/image/ab67616d0000b2738c1fadcc997a65384f34d694,1,1,285133,https://p.scdn.co/mp3-preview/4e8704349932ecb754e3c03cdf3b1563309627a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USSM17600941,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.377,0.681,7.0,-8.039,1.0,0.0298,0.00088,0.0023,0.0504,0.285,108.789,4.0,,Epic/Legacy,"P (P) 1976, 2006 Epic Records, a division of Sony Music Entertainment",1509 +1510,spotify:track:5q5gzmbBS5yQzos2BvVr1t,Nights With You,spotify:artist:0bdfiayQAKewqEvaU6rXCv,MØ,spotify:album:0kgy48FPwyVepPIaiO2w7G,Nights With You,spotify:artist:0bdfiayQAKewqEvaU6rXCv,MØ,2017-04-21,https://i.scdn.co/image/ab67616d0000b273bd58d7394f4103d9810c8edf,1,1,197494,https://p.scdn.co/mp3-preview/8303bf028dd94f974cad3e4bd8f7ed2047239a08?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBARL1700537,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,danish pop,electropop,pop dance",0.763,0.671,1.0,-4.029,0.0,0.1,0.401,1.16e-05,0.375,0.602,120.06,4.0,,Chess Club/RCA Victor,P (P) 2017 Sony Music Entertainment UK Limited,1510 +1511,spotify:track:52UWtKlYjZO3dHoRlWuz9S,Thunderstruck,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:4ydl8Ci7OsndhI2ALnrpIv,Iron Man 2,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,2010-04-29,https://i.scdn.co/image/ab67616d0000b273b56115c0e231fbf69d3205c6,1,6,292413,https://p.scdn.co/mp3-preview/1e564720e61b4bd441118f4174289dd607680572?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,AUAP09000014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.495,0.892,4.0,-5.601,1.0,0.0349,0.000128,0.0216,0.207,0.231,133.474,4.0,,Columbia,P (P) Compilation 2010 Australian Music Corporation Pty Ltd./Leidseplein Presse B.V.,1511 +1512,spotify:track:2ABkD5XTJZwGBOye23UjL7,Tweedle Dee Tweedle Dum,spotify:artist:318uZJvyFSaPjaiYGsvjjm,Middle Of The Road,spotify:album:1YEgkibZlxFkSrC5t3RLWk,Best Of,spotify:artist:318uZJvyFSaPjaiYGsvjjm,Middle Of The Road,2002-05-28,https://i.scdn.co/image/ab67616d0000b273b88bde0ba0369433a44ddee2,1,2,191133,https://p.scdn.co/mp3-preview/8bcc4aa0573b833116c02e577aef5519d932e322?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,ITB007000840,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,nederpop",0.625,0.508,3.0,-11.323,1.0,0.307,0.215,0.0,0.279,0.879,111.786,4.0,,RCA Camden,P (P) This compilation 2002 BMG UK & Ireland Ltd.,1512 +1513,spotify:track:5YdPlbnZLbnCjTFyfap1zN,Everybody,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,spotify:album:4kc6vrABh87kQ4onFSDPLq,Live By The Words,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,2012,https://i.scdn.co/image/ab67616d0000b2732ea0791fdc5445eb5a9cd4be,1,10,232306,https://p.scdn.co/mp3-preview/0a19738e0a303628d6d454c8cb4db319cc062a78?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUBM01300404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.698,0.89,6.0,-4.196,0.0,0.0377,0.0399,1.15e-05,0.3,0.8,127.978,4.0,,Sony Music Entertainment,P All tracks (P) 2014 Sony Music Entertainment Australia Pty Ltd. except tracks 6 & 8 (P) 2012 & track 10 (P) 2013 Sony Music Entertainment Australia Pty Ltd.,1513 +1514,spotify:track:57PjISfyOyDcvTPipz16nf,Love Me Again,spotify:artist:34v5MVKeQnIo0CWYMbbrPf,John Newman,spotify:album:7bCDE4ddc9T8Zkw588bN73,Love Me Again,spotify:artist:34v5MVKeQnIo0CWYMbbrPf,John Newman,2013-01-01,https://i.scdn.co/image/ab67616d0000b273acaa16821d39d2954e2f3641,1,1,240288,https://p.scdn.co/mp3-preview/d93764618dc3778f36fb12ae7e6160600506e187?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71301538,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.485,0.915,2.0,-3.469,0.0,0.0544,0.00441,0.00112,0.0987,0.201,126.027,4.0,,Universal Music Group,"C © 2013 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2013 Universal Island Records, a division of Universal Music Operations Limited",1514 +1515,spotify:track:1RLCci3EUAH9t1spVptRWQ,Because I Love You,spotify:artist:1ZcnsSFqWusWlRK01vKE6b,Montaigne,spotify:album:61q9OBizRbAe6z8FlJctgK,Glorious Heights,spotify:artist:1ZcnsSFqWusWlRK01vKE6b,Montaigne,2016-08-05,https://i.scdn.co/image/ab67616d0000b273c60c0a4d39224172a39cefb0,1,4,217618,https://p.scdn.co/mp3-preview/7199ca996abeaa57fdb5b830425b5bd85b98ef32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUBM01600118,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop",0.765,0.833,0.0,-3.461,1.0,0.033,0.11,0.0,0.0306,0.961,118.007,4.0,,Wonderlick,P (P) 2016 Montaigne under exclusive license to the Wonderlick Recording Company / Sony Music Entertainment Australia Pty Ltd.,1515 +1516,spotify:track:4OepLJ2fUvHRmVB8XklIe8,Disease,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:7GHROYaPxZr0dRMYQ7xHHu,The Matchbox Twenty Collection,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2013-11-08,https://i.scdn.co/image/ab67616d0000b273a09220722ea0004d7da146a7,3,2,219360,https://p.scdn.co/mp3-preview/98dcdde0eca3a7494d3ef37e0ea8e0d31a2ded18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USAT20202521,spotify:user:bradnumber1,2021-11-17T22:17:50Z,"neo mellow,pop rock,post-grunge",0.541,0.833,8.0,-4.647,0.0,0.0583,0.0187,0.0,0.143,0.84,115.052,4.0,,Emblem / Atlantic,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",1516 +1517,spotify:track:4WbJfIsqn6Zfn2OCT4aacB,You Shook Me All Night Long,spotify:artist:7D7R9UL0A4ngSASP5yW9ZQ,Back In Black,spotify:album:76VDwh1H6aDqirqL4y1ABx,Back in Black,spotify:artist:7D7R9UL0A4ngSASP5yW9ZQ,Back In Black,2012-06-14,https://i.scdn.co/image/ab67616d0000b2733ad5858333ae0ddaae61e5df,1,6,210335,https://p.scdn.co/mp3-preview/dfdb393336592246744d6450c5cbe205f8b89bd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUUS00606441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,britcore,0.502,0.797,7.0,-5.123,1.0,0.0611,0.00227,2.38e-05,0.375,0.857,127.285,4.0,,Rachelle Productions,C 2012 Rachelle Productions,1517 +1518,spotify:track:29FNeqjOV2kPWGS55qhtGB,"Money, Money, Money",spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:2cKZfaz7GiGtZEeQNj1RyR,ABBA Gold,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,2008-01-01,https://i.scdn.co/image/ab67616d0000b273f7ecaf9daf2c1d5ca89f7312,1,9,186786,https://p.scdn.co/mp3-preview/86b5ea1f3051ed65d0b4a7718cbb01a6ccd091fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,SEAYD7601060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.756,0.741,9.0,-6.426,0.0,0.0364,0.43,0.00113,0.0807,0.691,120.445,4.0,,Polar Music International AB,"C © 2008 Polar Music International AB, P This Compilation ℗ 2008 Polar Music International AB",1518 +1519,spotify:track:1KKpOFUTS8B9pD5x3PevoX,I Choose You,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,spotify:album:41Tj1cy7HlmdSmaOO6f6Tl,D.N.A.,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,2009-10-08,https://i.scdn.co/image/ab67616d0000b2739380a3ac28541aefabe9f76e,1,9,263013,https://p.scdn.co/mp3-preview/325443b47ab3bd482a10f94a1d1c6df739f9d5de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USJAY0900201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,southern hip hop,urban contemporary",0.673,0.628,9.0,-5.192,1.0,0.0683,0.0819,0.0,0.0812,0.708,90.107,4.0,,J Records,"P (P) 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",1519 +1520,spotify:track:2r9LMUnfsxtDqIZF8ByZ8n,The Prayer,spotify:artist:4ajzEXRIqw9kvEQQR4femH,Anthony Callea,spotify:album:3TMFDmGy36fjZ3LePYnU91,Anthony Callea,spotify:artist:4ajzEXRIqw9kvEQQR4femH,Anthony Callea,2005,https://i.scdn.co/image/ab67616d0000b27319739c476619dba7d2e2a9b3,1,1,255360,https://p.scdn.co/mp3-preview/dd9b708392799279806698f70646136fbefb683f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUBM00448803,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.217,0.46,10.0,-5.133,1.0,0.0302,0.768,8.26e-06,0.0847,0.109,138.822,4.0,,BMG Music,P (P) 2005 Sony Music Entertainment Australia Pty Ltd,1520 +1521,spotify:track:5qoxM7ZLKp6LDguvAG4Xe6,Only When You Leave,spotify:artist:2urZrEdsq72kx0UzfYN8Yv,Spandau Ballet,spotify:album:1JaidfYjLaRPc9WQq3g5hx,This Is... 1984,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-08-11,https://i.scdn.co/image/ab67616d0000b273d2644af71f6092e2c4e170c5,1,3,301400,https://p.scdn.co/mp3-preview/00b6df8be399a7b03c6fdf2890238bbe566d8f5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK8400005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,sophisti-pop,synthpop",0.667,0.775,7.0,-6.842,0.0,0.0287,0.355,0.000212,0.0863,0.841,136.91,4.0,,Parlophone UK,"C 2008 Parlophone Records Ltd, a Warner Music Group Company, P 2008 Parlophone Records Ltd, a Warner Music Group Company",1521 +1522,spotify:track:4fazGt0v2v2zkzddQOcDZD,Don't Call Me Baby,spotify:artist:6otgz5gkB40UnWFwTy0VDh,Madison Avenue,spotify:album:5L0SjLio3BQhFfvLxS5Eg7,Don't Call Me Baby,spotify:artist:6otgz5gkB40UnWFwTy0VDh,Madison Avenue,1999-01-01,https://i.scdn.co/image/ab67616d0000b273b8808f12af8bac493f2933bb,1,1,228140,https://p.scdn.co/mp3-preview/a2b5341fc5907b9766d1c821d55e16409fdef428?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,AUVC00700520,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,vocal house",0.808,0.982,3.0,-6.588,0.0,0.0311,0.0585,0.00689,0.35,0.961,124.999,4.0,,Vicious,"C 1999 Vicious, a division of Vicious Recordings Pty Ltd, P 1999 Vicious, a division of Vicious Recordings Pty Ltd",1522 +1523,spotify:track:1F6oGPF75u9RuHH4BGx9Bf,We Are Never Ever Getting Back Together,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:5FerdPFXSHSnCVq4OBy4Ey,Red,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2012-10-22,https://i.scdn.co/image/ab67616d0000b2737d2f918a1b23f98ceb7510fa,1,8,193146,https://p.scdn.co/mp3-preview/d07b7d66c4fa1ae6205a7c683aab466dd0ac2e03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1231018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.624,0.685,7.0,-5.902,1.0,0.12,0.0105,2.22e-05,0.126,0.781,86.059,4.0,,Universal Music Group,"C © 2012 Big Machine Records, LLC., P ℗ 2012 Big Machine Records, LLC.",1523 +1524,spotify:track:3BrmZp9bjwjwAva5rCgW87,You Give Me Something,spotify:artist:3LpLGlgRS1IKPPwElnpW35,James Morrison,spotify:album:7lqr5gDwjKVXAeEHy3AYfV,Undiscovered,spotify:artist:3LpLGlgRS1IKPPwElnpW35,James Morrison,2006-01-01,https://i.scdn.co/image/ab67616d0000b27381553848fa2ca0164ae92234,1,2,213173,https://p.scdn.co/mp3-preview/061f11013e0f4db881a1ba85d43973bcefb409b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBUM70600967,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.559,0.691,0.0,-6.492,1.0,0.121,0.214,0.0,0.0855,0.569,79.741,4.0,,Polydor Records,"C © 2006 Polydor Ltd. (UK), P ℗ 2006 Polydor Ltd. (UK)",1524 +1525,spotify:track:3ScJy88F8KqGDfWu8XJhHx,If I Lose Myself - Alesso vs OneRepublic,"spotify:artist:5Pwc4xIPtQLFEnJriah9YJ, spotify:artist:4AVFqumd2ogHFlRbKIjp1t","OneRepublic, Alesso",spotify:album:42UJjk8i8L0De7lQtu7sqi,Native,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2014-01-01,https://i.scdn.co/image/ab67616d0000b2736f91180b662ca15ad2fb88f0,1,19,215186,https://p.scdn.co/mp3-preview/549c7f2dcd2de342ad09e3f3cd722546eac93e98?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USUM71303190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop,dance pop,edm,pop,pop dance,progressive electro house",0.519,0.754,2.0,-5.689,1.0,0.0402,0.258,3.75e-06,0.139,0.16,125.975,4.0,,Mosley / Interscope,"C © 2014 Mosley Music/Interscope Records, P ℗ 2014 Mosley Music/Interscope Records",1525 +1526,spotify:track:61IBpJ6TymrEwd7bz3oPNp,She's A Rainbow - Full Version / With Intro,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:1Dsx0X79p4owIdoS0kTYgb,"Through The Past, Darkly (Big Hits Vol. 2)",spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1969-09-12,https://i.scdn.co/image/ab67616d0000b27305cacb20d1b13075c99a205d,1,8,251640,https://p.scdn.co/mp3-preview/20570d345d7b163e298b1f47522e8cd6eabc06f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USA176710230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.472,0.75,10.0,-10.434,1.0,0.0371,0.415,0.0206,0.369,0.529,109.251,4.0,,ABKCO (US),"C © 2010 ABKCO Music & Records, Inc., P This Compilation ℗ 2010 ABKCO Music & Records, Inc.",1526 +1527,spotify:track:5ZDL1Ap2Mwhk5xhmQ41Ei2,Boom! Shake the Room,spotify:artist:1mG23iQeR29Ojhq89D5gbh,DJ Jazzy Jeff & The Fresh Prince,spotify:album:2K0qBUFiKwjH9BFpw0xRDp,Code Red,spotify:artist:1mG23iQeR29Ojhq89D5gbh,DJ Jazzy Jeff & The Fresh Prince,1993-10-12,https://i.scdn.co/image/ab67616d0000b27357958103342fb2376c1569b7,1,3,226200,https://p.scdn.co/mp3-preview/435d9bc1abf35fa6566b7730d155cc587097995c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USJI19300024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"golden age hip hop,old school hip hop,philly rap",0.792,0.964,1.0,-5.405,1.0,0.154,0.0698,0.0,0.302,0.621,99.771,4.0,,Jive,P (P) 1993 Zomba Recording LLC,1527 +1528,spotify:track:6gK7ggIMaZUJ4VhaBnMQO6,Girls Can Get It,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,spotify:album:4z6lzPnxVfkCibGIbPuIuu,Timeless,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,2015-04-17,https://i.scdn.co/image/ab67616d0000b273eff2b78ab68ae2e8bd8655b3,1,19,197554,https://p.scdn.co/mp3-preview/4324e862ccf1f7e53d79f34d6a450782e727e042?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,NLF050390071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,mellow gold,soft rock",0.769,0.519,10.0,-11.04,1.0,0.0472,0.435,0.0,0.139,0.848,89.913,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",1528 +1529,spotify:track:0G5F2msfVO77xs7ql2RiTS,Beautiful Day,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7k7aHoW1MGWWQR0KXvswkx,U218 Singles (Deluxe Version),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a589a051c46a5ff41125e9d6,1,1,245706,https://p.scdn.co/mp3-preview/433a88ff2fa9079ef6dfedf02094fb0d849713dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN0000196,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.541,0.914,2.0,-6.727,1.0,0.052,0.0225,0.000441,0.353,0.449,136.282,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",1529 +1530,spotify:track:09eonIb5rHlLO23YIg9NK8,Live With Friends,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,spotify:album:6gtesHG15KmNH5rvdeRIJo,The Very Best Of Russell Morris,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d6067f86a6560ec7ddd00965,1,11,221773,https://p.scdn.co/mp3-preview/39d60fcb1412918d509ce58387b7aca095bb8a99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUEM07200018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.478,0.674,0.0,-6.867,1.0,0.0351,0.225,0.0,0.226,0.634,117.401,4.0,,EMI,"C © 2013 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2013 EMI Recorded Music Australia Pty Ltd.",1530 +1531,spotify:track:6ctr1K7KzKErxbfGAynL8A,I Wanna Know,spotify:artist:3zTOe1BtyTkwNvYZOxXktX,Joe,spotify:album:2hwM2z7y5OWRkCZ9cPaOLq,Greatest Hits,spotify:artist:3zTOe1BtyTkwNvYZOxXktX,Joe,2008-10-14,https://i.scdn.co/image/ab67616d0000b273aaf1ddfbf224888ca1399f15,1,4,296800,https://p.scdn.co/mp3-preview/0993267c96d6dc3d3fd6aceb9e5bc4d9575b09b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USJI10000057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,r&b,urban contemporary",0.724,0.485,6.0,-5.919,1.0,0.0376,0.256,1.35e-05,0.416,0.581,136.057,4.0,,Jive,"P This Compilation (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",1531 +1532,spotify:track:7soJgKhQTO8hLP2JPRkL5O,One Call Away,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:3kndSWeE2IYOrZEToZrHEV,Nine Track Mind,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2016-01-29,https://i.scdn.co/image/ab67616d0000b2734fe297c018e495a97662e5ac,1,1,194453,https://p.scdn.co/mp3-preview/5fce39f8440f1e9a2c2adb986d73492cbd7b6297?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAT21502703,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop",0.667,0.613,1.0,-5.353,1.0,0.0344,0.403,0.0,0.115,0.47,91.024,4.0,,Artist Partner,"C © 2016 Artist Partners for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P ℗ 2016 Artist Partners for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",1532 +1533,spotify:track:73F87Sqh6jQWucOOvz1WFx,Genius,"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN, spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:2feDdbD5araYcm6JhFHHw7, spotify:artist:6IZ4ctovY9dl7bgHClAvKJ","Sia, Diplo, Labrinth, LSD",spotify:album:584bDi8WFob5wKP5XLbJK4,Genius,"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN, spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:2feDdbD5araYcm6JhFHHw7","Sia, Diplo, Labrinth",2018-05-03,https://i.scdn.co/image/ab67616d0000b273f347c65ab0a4d85e7c547cee,1,1,213040,https://p.scdn.co/mp3-preview/32ada5d1cc7461708c1faac1a77350407ce191f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQX91800798,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,edm,electro house,moombahton,pop dance,indie poptimism,pop,dance pop",0.622,0.621,11.0,-4.924,0.0,0.129,0.0864,9.8e-05,0.121,0.567,158.946,4.0,,Records/Columbia,"P (P) 2018 RECORDS, LLC / Columbia",1533 +1534,spotify:track:59DDDWKe1IlDFCiibHDo1J,Life,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:2jmqR9W54z9VIZN4qAQv1Y,Anthology,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,2008-10-11,https://i.scdn.co/image/ab67616d0000b273d3f56b11a56d0b0f192da1a7,1,13,209106,https://p.scdn.co/mp3-preview/7cc869c8e542944975d96d22a4bc8aa953b13af2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00621340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.479,0.628,7.0,-7.68,1.0,0.0528,0.158,0.000284,0.71,0.607,133.527,4.0,,Bloodlines,"C 2008 Bloodlines, P 2008 Bloodlines",1534 +1535,spotify:track:4aKIs5t9TqP59btlCGPrgw,Maneater,spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,spotify:album:5nDQAU3K52JimAaShsZoSn,H2O,spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,1982,https://i.scdn.co/image/ab67616d0000b273cb6fdb35aac14a4dcc437f5b,1,1,271893,https://p.scdn.co/mp3-preview/d689e007e59681c1520d7492aa605e3e5073661d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10301821,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,singer-songwriter,soft rock,yacht rock",0.727,0.685,11.0,-7.159,0.0,0.0398,0.0351,4.43e-05,0.0973,0.812,88.75,4.0,,RCA/BMG Heritage,P This compilation (P) 2004 BMG Music,1535 +1536,spotify:track:5bjb35Y4hHFc7YgcgesdIu,People Everyday,spotify:artist:5Va9LuEmaZxnbk1gMnjMD7,Arrested Development,spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,27,298946,https://p.scdn.co/mp3-preview/cebc2825079569e0c1ab9d8ea507e5fcd432e601?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCH39200012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,conscious hip hop,hip hop,old school atlanta hip hop",0.842,0.514,8.0,-13.729,1.0,0.225,0.00848,1.02e-06,0.55,0.706,91.118,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",1536 +1537,spotify:track:2iuZJX9X9P0GKaE93xcPjk,Sugar,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:2Auw0pTT6EcQdvHNimhLQI,V,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2014-09-02,https://i.scdn.co/image/ab67616d0000b273442b53773d50e1b5369bb16c,1,5,235493,https://p.scdn.co/mp3-preview/f35cfb7e7207a1cf27ab3b0e3e07cb95c91440eb?cid=9950ac751e34487dbbe027c4fd7f8e99,True,78,USUM71410340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.748,0.788,1.0,-7.055,1.0,0.0334,0.0591,0.0,0.0863,0.884,120.076,4.0,,Interscope Records*,"C © 2015 Interscope Records, P ℗ 2015 Interscope Records",1537 +1538,spotify:track:6A5M31nKvt6GYaGL7XpX2w,Miss Murder,spotify:artist:19I4tYiChJoxEO5EuviXpz,AFI,spotify:album:58M3z3OMcaFtWbPJS5Bb0W,DECEMBERUNDERGROUND,spotify:artist:19I4tYiChJoxEO5EuviXpz,AFI,2006-01-01,https://i.scdn.co/image/ab67616d0000b273045ebd8670abc968a34dc9b0,1,3,206586,https://p.scdn.co/mp3-preview/6dc91d48d35ba17b8e6725d51d3b22590a059757?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70602578,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,pop punk,post-grunge,punk,screamo",0.308,0.873,8.0,-4.542,1.0,0.0533,0.00022,0.000729,0.0974,0.686,143.519,4.0,,Universal Music Group,"C © 2006 Interscope Records, P ℗ 2006 Interscope Records",1538 +1539,spotify:track:6qc34bnVOyqGDPni8H5W0U,Amazed,spotify:artist:3qbnxnvUqR14MJ9g8QwZJK,Lonestar,spotify:album:7ykiOoPC4GLrVYSDVdDGq2,Lonely Grill,spotify:artist:3qbnxnvUqR14MJ9g8QwZJK,Lonestar,1999,https://i.scdn.co/image/ab67616d0000b27341d35bfbac1ba0af6180206f,1,3,240866,https://p.scdn.co/mp3-preview/bb2dc2f4c4a12e454d37c0d356c0c3757e9b3bdf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USBN19800111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road",0.561,0.543,1.0,-8.498,1.0,0.0324,0.26,0.0,0.124,0.243,139.803,4.0,,BNA Records Label,P (P) 1999 BMG Entertainment,1539 +1540,spotify:track:4ZA0EXmjnZIYguEMf0Mc88,The Waiting,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:5OO8oMupaMhIZhMrEM8ja3,Hard Promises,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,1981-05-05,https://i.scdn.co/image/ab67616d0000b273cc5ff69ede344df741c46aea,1,1,238493,https://p.scdn.co/mp3-preview/a08b791e21b41bca30ff93dd38f47bd9a406cae1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USMC18011007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.566,0.923,2.0,-4.535,1.0,0.0316,0.0357,0.0,0.354,0.722,119.973,4.0,,Geffen*,"C © 1981 MCA Records Inc., P ℗ 1981 Geffen Records",1540 +1541,spotify:track:6TqG0MJBRGog8Am7pUsrtT,Little Town Flirt,spotify:artist:6bsbqU6d3OFRlSy2fB8gX8,Del Shannon with Orchestra,spotify:album:4CtzfuPmbEpstuMhwJaRPr,Runaway,spotify:artist:6bsbqU6d3OFRlSy2fB8gX8,Del Shannon with Orchestra,2017-05-22,https://i.scdn.co/image/ab67616d0000b273500aacf3d5e8a093d826bae4,1,8,167026,https://p.scdn.co/mp3-preview/37b1403faba988a38a8b279a43742e74129f8404?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DETL61618439,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.597,0.822,6.0,-5.67,1.0,0.0295,0.0464,0.0,0.204,0.93,123.771,4.0,,Rock 'n' Roll Experience,"C 2017 Stars on Fire Records, P 2017 Stars on Fire Records",1541 +1542,spotify:track:5K52YrogiliMuDnh8uYNOc,You Won't Find Another Fool Like Me,spotify:artist:4jrTNltJtTMUfXybDdsHDn,The New Seekers,spotify:album:3eEmD5Akx76Cj1Mnlid4pV,Together (Bonus Track Version),spotify:artist:4jrTNltJtTMUfXybDdsHDn,The New Seekers,1974-01-01,https://i.scdn.co/image/ab67616d0000b273a675e27116ed46073d28ddaa,1,7,192760,https://p.scdn.co/mp3-preview/b9ecd5bcd4a898c6f3e591abdd2915c6ab742bac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBBPJ9800674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic uk pop,merseybeat,rock-and-roll",0.529,0.598,4.0,-7.7,0.0,0.0333,0.0292,0.000232,0.0958,0.787,131.352,4.0,,Crimson,"C (C) 2018 Demon Music Group Ltd., P (P) 1974 Laurence Myers Ltd.",1542 +1543,spotify:track:42bbDWZ8WmXTH7PkYAlGLu,Hold My Girl,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,spotify:album:2NaulYO6lGXTyIzWTJvRJj,Staying at Tamara's,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,2018-03-23,https://i.scdn.co/image/ab67616d0000b273103045cd1c29dd16a469f808,1,8,211763,https://p.scdn.co/mp3-preview/c17499c08f817abdd8ef82f5d79d3d0bd94dbe30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBARL1701376,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo-singer-songwriter",0.614,0.527,10.0,-6.374,1.0,0.0302,0.597,0.0,0.11,0.354,121.941,4.0,,Columbia,P (P) 2018 Sony Music Entertainment UK Limited,1543 +1544,spotify:track:0AKBmfNLV4tlwIph8UadI0,Baby Boy,spotify:artist:0tTPYQGpkJ49RMbtCOQfDY,Big Brovaz,spotify:album:3FjVjhMF7tI5uOLwc0KhR8,Nu Flow,spotify:artist:0tTPYQGpkJ49RMbtCOQfDY,Big Brovaz,2003-01-18,https://i.scdn.co/image/ab67616d0000b273a1ca895687258d2b5fd6221d,1,4,240546,https://p.scdn.co/mp3-preview/ab58a769683ec679b618e9277258332a7e02c49d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBBBM0202106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk garage,0.725,0.585,1.0,-7.616,1.0,0.0607,0.119,0.0,0.0732,0.59,94.023,4.0,,Epic,"P (P) 2002,2003 Riot Records a division of Shalit Global Music under exclusive licence to Sony Music (UK) Ltd.",1544 +1545,spotify:track:283898Lgbl6LidapOraXiN,Absolutely Everybody,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,spotify:album:2PYf4m3Bgu4ljRACdnfMCZ,The Power (15 Year Anniversary Re-Issue),spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,2004-04-03,https://i.scdn.co/image/ab67616d0000b2736d3e26f9fff8d30245519b11,1,2,224600,https://p.scdn.co/mp3-preview/803e0b2d3757f214588df21721da58a8425193b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,AUV401421327,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.67,0.955,1.0,-4.979,1.0,0.0858,0.289,0.0,0.124,0.857,122.975,4.0,,CBK Productions,"C 1915 CBK Productions, P 2015 CBK Productions",1545 +1546,spotify:track:1h04XMpzGzmAudoI6VHBgA,Penny Lane - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:2BtE7qm1qzM80p9vLSiXkj,Magical Mystery Tour (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1967-11-27,https://i.scdn.co/image/ab67616d0000b273692d9189b2bd75525893f0c1,1,9,180893,https://p.scdn.co/mp3-preview/bfb5dbd76a610a079c103c06614b1ddce75cd698?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAYE0601641,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.651,0.488,9.0,-8.22,1.0,0.0316,0.212,0.026,0.136,0.491,113.032,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",1546 +1547,spotify:track:3vmjnUm9K6kXyzIxJHU9xG,I Was Made For Lovin' You,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,spotify:album:51ZY1rpO9IRw3nANb56e2o,Classics,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,2008,https://i.scdn.co/image/ab67616d0000b273b259f54c64a76e857c6b64f1,1,11,270013,https://p.scdn.co/mp3-preview/b1b157ab314c7b457e21318a7035c6a44555f1b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39330175,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,hard rock,rock",0.775,0.825,4.0,-6.337,1.0,0.0396,0.0961,4.86e-05,0.0776,0.881,128.362,4.0,,The Island Def Jam Music Group,"C (C) 2008 The Island Def Jam Music Group, P (P) 2008 The Island Def Jam Music Group",1547 +1548,spotify:track:47HA2S1j9yj34Ff1aIsF5Y,Deal With It (feat. Kelis),"spotify:artist:3PyJHH2wyfQK3WZrk9rpmP, spotify:artist:0IF46mUS8NXjgHabxk2MCM","Ashnikko, Kelis",spotify:album:1zOCX2Lxi1jy7yEQSkjCMb,Deal With It (feat. Kelis),spotify:artist:3PyJHH2wyfQK3WZrk9rpmP,Ashnikko,2021-01-12,https://i.scdn.co/image/ab67616d0000b273b94726ad076addff4850e46c,1,1,191149,https://p.scdn.co/mp3-preview/aab0081dfb094684c61a209cb2190b8596e90210?cid=9950ac751e34487dbbe027c4fd7f8e99,True,42,GBAYE2000707,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,escape room,dance pop,hip pop,neo soul,urban contemporary",0.712,0.689,1.0,-5.286,0.0,0.128,0.141,0.0,0.657,0.49,82.98,4.0,,Parlophone UK,"C © 2021 Parlophone Records Limited., P ℗ 2021 Parlophone Records Limited.",1548 +1549,spotify:track:45kW7SZVsIm8mYfs8BXExE,Mamy Blue,spotify:artist:5FPOgPxk5crRinaeEA5vmP,Joel Daydé,spotify:album:4dlDcUJ8k8U9LTqTSVznMX,J'Aime - Mamy Blue,spotify:artist:5FPOgPxk5crRinaeEA5vmP,Joel Daydé,1970-01-01,https://i.scdn.co/image/ab67616d0000b273f2d21dcea17fdbe8678c193f,1,11,220946,https://p.scdn.co/mp3-preview/5446166af6e6ce7836ace2997a79e209e27ce043?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,FRZ017301740,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rock progressif francais,0.566,0.622,5.0,-9.484,0.0,0.0481,0.452,0.0,0.196,0.631,110.792,4.0,,Universal Music Division Barclay,"C © 2014 Barclay, P ℗ 1970 Barclay",1549 +1550,spotify:track:3HjLooNTW7YtnWNTKjYUcv,Unorthodox - Radio Edit,"spotify:artist:0T2sGLJKge2eaFmZJxX7sq, spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW","Wretch 32, Example",spotify:album:4OnHxf9PlJLyT6QpwGpGTI,Unorthodox,spotify:artist:0T2sGLJKge2eaFmZJxX7sq,Wretch 32,2011-01-01,https://i.scdn.co/image/ab67616d0000b2735557c73ca032494bda99dcf4,1,1,185341,https://p.scdn.co/mp3-preview/5c79619b8a3af1c6c78bee23688df499ba38fabc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEN1100196,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grime,uk hip hop,hip house,uk dance",0.724,0.956,2.0,-3.915,1.0,0.0367,0.00953,9.03e-06,0.167,0.556,112.011,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Ministry of Sound Recordings Ltd., under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd, P ℗ 2011 Ministry of Sound Recordings Ltd., under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd",1550 +1551,spotify:track:5x2TDyeeTpf0riUoQDrvsV,Ride Wit Me,"spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:3L2SIGZah4QZSvN4wC8rHl","Nelly, City Spud",spotify:album:7kL2kX4AeR1eUR9bz2mbNe,Best Of Nelly,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2009-01-01,https://i.scdn.co/image/ab67616d0000b273012c3970d8931c4b566051d5,1,2,291933,https://p.scdn.co/mp3-preview/41bd34ec30037e63eb89b4bfb42656f85b1d0f90?cid=9950ac751e34487dbbe027c4fd7f8e99,True,48,USUR10000183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.85,0.707,7.0,-6.507,1.0,0.0482,0.0638,2.6e-06,0.252,0.725,101.868,4.0,,Motown,"C © 2009 Universal Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 2009 Universal Records, a Division of UMG Recordings, Inc.",1551 +1552,spotify:track:7Fq36hMgjR37VnemOJVt9U,Stronger,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,spotify:album:1LDjTiRmmBD3yqfQnFZnly,Graduation,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2007-09-11,https://i.scdn.co/image/ab67616d0000b273e6ec3b96d448f24facafd376,1,3,312026,https://p.scdn.co/mp3-preview/8cfe8a244e465b63018716cd675a09782ff5f931?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70741329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap",0.617,0.708,1.0,-7.873,1.0,0.15,0.00651,0.0,0.404,0.462,103.96,4.0,,Universal Music Group,"C © 2007 Takashi Murakami/Kaikai Kiki Co., Ltd./Kanye West/Mascotte Holdings, LLC., P ℗ 2007 Roc-A-Fella Records, LLC",1552 +1553,spotify:track:0d8U9eJajtUmiJVXbIO624,Don't It Make My Brown Eyes Blue,spotify:artist:6OheJTrDFGiyZ67F1BBLhc,Crystal Gayle,spotify:album:5aimlnSDRmHRGfVReDwLqa,Crystal Gayle: The Hits,spotify:artist:6OheJTrDFGiyZ67F1BBLhc,Crystal Gayle,2007-01-01,https://i.scdn.co/image/ab67616d0000b2730aee56c811fe828a7572b77f,1,8,157933,https://p.scdn.co/mp3-preview/4930ef46ad4057295bbd9e641cacbdc490662d05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USCN10100635,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,country rock,soft rock",0.675,0.49,6.0,-7.818,1.0,0.0395,0.714,0.000313,0.113,0.353,84.409,4.0,,Capitol Nashville,"C © 2007 Capitol Records Nashville, P This Compilation ℗ 2007 Capitol Records Nashville",1553 +1554,spotify:track:2fLiCh9Fo9yloiB1NlqSgP,Help,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4Zm7KcV47uD0sHageJyq2h,One Voice,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,2003-10-20,https://i.scdn.co/image/ab67616d0000b2733a1db30857beb481aa6e5345,1,7,265506,https://p.scdn.co/mp3-preview/2832fd9c7d5e3cd5c9c3628d6c4cbfb499fbc054?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUBM08041010,spotify:user:bradnumber1,2021-11-20T11:22:10Z,"australian pop,australian rock",0.432,0.334,0.0,-12.112,1.0,0.0337,0.492,0.0,0.111,0.165,117.272,4.0,,BMG Music,P (P) 2003 BMG Australia Limited,1554 +1555,spotify:track:5QRAfvKPyQpwt897Jc0glg,Blue (Da Ba Dee) - Gabry Ponte Ice Pop Radio,"spotify:artist:64rxQRJsLgZwHHyWKB8fiF, spotify:artist:5ENS85nZShljwNgg4wFD7D","Eiffel 65, Gabry Ponte",spotify:album:3j90eFnVFEYzOVt024QCTf,Blue (Da Ba Dee),spotify:artist:64rxQRJsLgZwHHyWKB8fiF,Eiffel 65,1998-11-11,https://i.scdn.co/image/ab67616d0000b273121c39c86d8b05c14022edfe,1,2,283747,https://p.scdn.co/mp3-preview/bbac41684f243a85862b5c010ec7c38e1a8bef5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,ITT019810102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,italian adult pop,italo dance,eurodance,italo dance,slap house",0.822,0.969,7.0,-11.471,0.0,0.0582,0.259,0.000153,0.39,0.765,128.007,4.0,,Hits Only,"C 1998 Bliss Corporation, P 1998 Bliss Corporation",1555 +1556,spotify:track:3v2iU1YTx5cHinrknLX4vp,We're All In This Together,spotify:artist:06y1hH4hu3rcTUXHJevPCf,Ben Lee,spotify:album:0C8dhLSMjGZI2dSCiRrVNN,Awake Is the New Sleep,spotify:artist:06y1hH4hu3rcTUXHJevPCf,Ben Lee,2005-02-22,https://i.scdn.co/image/ab67616d0000b273b77411b9680509da42f83ddc,1,12,279186,https://p.scdn.co/mp3-preview/2a61d0ad48b12cff7641b1d3f869da69b1ce4f4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,US27Q0460712,spotify:user:bradnumber1,2022-02-03T10:00:36Z,"australian alternative rock,australian pop,australian rock",0.778,0.584,1.0,-8.936,0.0,0.0297,0.149,6.06e-05,0.707,0.658,102.001,4.0,,WM Australia,"C © 2005 Ten Finger Records, Inc., P ℗ 2005 Ten Finger Records, Inc., under exclusive licence to Warner Music Australia Pty Limited",1556 +1557,spotify:track:1eDknpmiMTIqdDb7SaYSdf,Crying Out For Me - Main,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,spotify:album:0eVCjyTxbKofAMvf5e51K2,Go,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,2007-10-29,https://i.scdn.co/image/ab67616d0000b2734a098fe8653acebffa707f2c,1,2,288386,https://p.scdn.co/mp3-preview/e64d5efe015e2fd40aed9077d6733c2311f03da7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJAY0700144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,southern hip hop,urban contemporary",0.536,0.712,1.0,-6.939,1.0,0.0772,0.225,0.0,0.332,0.456,130.18,4.0,,J Records,"P (P) 2006, 2007 J Records, a unit of SONY BMG MUSIC ENTERTAINMENT",1557 +1558,spotify:track:43PBE5b3RJgwfi1i9xKtEs,Gold Digger,"spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:7LnaAXbDVIL75IVPnndf7w","Kanye West, Jamie Foxx",spotify:album:4yJqrqT2BpuXLj5BMJlAXR,Late Registration,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2005-08-30,https://i.scdn.co/image/ab67616d0000b273cdcd1e0c30e10686af48baad,1,4,207626,https://p.scdn.co/mp3-preview/5d301311457bcbd3b7da7c7391b57f68f0300bdd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM70502983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap,contemporary r&b,hip pop,pop rap,r&b,southern hip hop,trap,urban contemporary",0.686,0.672,1.0,-6.069,0.0,0.338,0.0144,0.0,0.0653,0.625,92.472,4.0,,Roc-A-Fella,"C © 2005 UMG Recordings, Inc., P ℗ 2005 UMG Recordings, Inc.",1558 +1559,spotify:track:2pKdeTspc5If91jL1v203P,Hello,"spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n","Martin Solveig, Dragonette",spotify:album:4HRpy93zKbFppMl79lfFS1,Smash,spotify:artist:1bj5GrcLom5gZFF5t949Xl,Martin Solveig,2011-01-01,https://i.scdn.co/image/ab67616d0000b273a991b1e9a11bafa3dd4c56f1,1,1,281429,https://p.scdn.co/mp3-preview/90a3b022373a9a1bb1ceec7e56ac5e5b37c1d1ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,FR2PA1000020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,edm,electro house,filter house,house,pop dance,vocal house,canadian electropop,canadian pop,dance rock,electropop,metropopolis,neo-synthpop",0.666,0.93,3.0,-4.201,1.0,0.0314,0.0257,0.012,0.054,0.461,127.978,4.0,,Ministry Of Sound,"C © 2011 Temps D'Avance, P ℗ 2011 Temps D'Avance, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd",1559 +1560,spotify:track:0vWUhCPxpJOJR5urYbZypB,Hypnotized,"spotify:artist:2WBJQGf1bT1kxuoqziH5g4, spotify:artist:4FrXHrpbDLNyO3pbVv8RmF","Purple Disco Machine, Sophie and the Giants",spotify:album:3i75dx8ORmKhhdwKLyZHqM,Hypnotized,"spotify:artist:2WBJQGf1bT1kxuoqziH5g4, spotify:artist:4FrXHrpbDLNyO3pbVv8RmF","Purple Disco Machine, Sophie and the Giants",2020-04-08,https://i.scdn.co/image/ab67616d0000b27397d1c39f7d7e80aab88cbf34,1,1,195657,https://p.scdn.co/mp3-preview/b31ada4d1aa0a60d253c28c47a362e297569d5b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,AUDCB1701555,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep house,house,sheffield indie",0.69,0.813,11.0,-5.084,0.0,0.0997,0.0968,0.000324,0.109,0.704,108.078,4.0,,Columbia Local,P (P) 2020 COLUMBIA - a division of Sony Music Entertainment Germany GmbH,1560 +1561,spotify:track:1XUvMfqkPKGMXo3HzsEHOv,Wake Up,spotify:artist:2S9W9aSAd7e5mp8WqWxN2h,Hilary Duff,spotify:album:3w94bw5d71KiF3NOkxSwPi,Best Of,spotify:artist:2S9W9aSAd7e5mp8WqWxN2h,Hilary Duff,2008-01-01,https://i.scdn.co/image/ab67616d0000b273d8dd6b2282469521bfc4d667,1,6,218640,https://p.scdn.co/mp3-preview/f6ace23ee415278521a78b892ccaea1e4eb06eb0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USHR10521660,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.62,0.86,4.0,-4.141,1.0,0.0659,0.0627,3.12e-06,0.188,0.22,119.985,4.0,,Hollywood Records,"C © 2008 Hollywood Records, Inc., P This Compilation ℗ 2008 Hollywood Records, Inc.",1561 +1562,spotify:track:029NqmIySn1kOY305AAhxT,Sledgehammer,spotify:artist:7C4sUpWGlTy7IANjruj02I,Peter Gabriel,spotify:album:0hQb1KT6L3iEYRkS5u8cjm,So (Remastered),spotify:artist:7C4sUpWGlTy7IANjruj02I,Peter Gabriel,1986-05-19,https://i.scdn.co/image/ab67616d0000b27311bb04f55be562c76d8e8ecf,1,2,313533,https://p.scdn.co/mp3-preview/c40914ea8420f1292cbddbcc5250902530566f4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBCPB1200864,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,mellow gold,new romantic,new wave,permanent wave,progressive rock,rock,singer-songwriter,soft rock",0.657,0.685,1.0,-5.203,1.0,0.0334,0.0246,0.0,0.037,0.424,96.458,4.0,,Real World Productions Ltd.,"C © 2012 Peter Gabriel Ltd, P ℗ 2012 Peter Gabriel Ltd",1562 +1563,spotify:track:4wH4dJgrsxONID6KS2tDQM,Maneater,spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,spotify:album:2yboV2QBcVGEhcRlYuPpDT,Loose,spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a6f439c8957170652f9410e2,1,2,258893,https://p.scdn.co/mp3-preview/bf4f712f43d7f97c5da8a7858de2b36d800c4a8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USUM70601449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian latin,canadian pop,dance pop,pop",0.796,0.778,6.0,-4.81,1.0,0.0397,0.0258,0.000386,0.121,0.789,132.724,4.0,,Mosley / Geffen,"C © 2006 Geffen Records, P ℗ 2006 Geffen Records",1563 +1564,spotify:track:2Aqk8Rup7eQN1PoZZ5Ag0j,I Still Call Australia Home - Single Version,spotify:artist:6748v9yNrbb4PPJuvfoMRa,Peter Allen,spotify:album:3tRf81PtrYddpXd0qCIQnb,The Ultimate Peter Allen,spotify:artist:6748v9yNrbb4PPJuvfoMRa,Peter Allen,2006-01-01,https://i.scdn.co/image/ab67616d0000b2731d436b5cdfc7c85137ff26d9,1,7,237453,https://p.scdn.co/mp3-preview/add73451609cac4a78d77829f76e745b836aad1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USAM10300745,spotify:user:bradnumber1,2021-10-30T21:36:19Z,deep soft rock,0.346,0.325,5.0,-10.551,1.0,0.0279,0.648,0.0,0.117,0.157,89.415,3.0,,Universal Music Australia Pty. Ltd.,"C © 2006 Universal Music Australia Pty Ltd., P This Compilation ℗ 2006 Universal Music Australia Pty Ltd.",1564 +1565,spotify:track:5fPgZkaDR5VfkObCsQfbLv,Money Honey,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,spotify:album:1HG3FGlUe4Q5yQPtnBusYY,Bay City Rollers - The Best Of,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,2004-04-03,https://i.scdn.co/image/ab67616d0000b273aff2c1e541d73118b874324b,1,14,195800,https://p.scdn.co/mp3-preview/0bf440a03d66fc66dfb42fa449fd697e307f7309?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USAR17500120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.637,0.783,0.0,-7.851,1.0,0.0396,0.024,0.000367,0.19,0.739,121.89,4.0,,Arista,P (P) 2004 BMG UK & Ireland Ltd.,1565 +1566,spotify:track:2Za1AlJNvksouPPWbXpR2X,Good Old Days (feat. Kesha),"spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:6LqNN22kT3074XbTVUrhzX","Macklemore, Kesha",spotify:album:72qA6s4fjF8Y2VX1UDMfp2,GEMINI,spotify:artist:3JhNCzhSMTxs9WLGJJxWOY,Macklemore,2017-09-22,https://i.scdn.co/image/ab67616d0000b2732e94b668c60b06deb1c3a05c,1,6,240506,https://p.scdn.co/mp3-preview/c0e1c96502d357facf7ffaf1d143de31bbeb6780?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,QZ8TY1700016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop,dance pop,pop",0.712,0.51,8.0,-8.162,1.0,0.0633,0.446,2.46e-05,0.112,0.268,122.964,4.0,,Bendo LLC,"C © 2017, Bendo LLC, P ℗ 2017, Bendo LLC",1566 +1567,spotify:track:50ZhLFpAf5nWUH9GlCwrWn,Let's Twist Again,spotify:artist:7qQJQ3YtcGlqaLg5tcypN2,Chubby Checker,spotify:album:3t848NFNAVru2orxLI3QOy,Cameo Parkway - The Best Of Chubby Checker (Original Hit Recordings) [International Version],spotify:artist:7qQJQ3YtcGlqaLg5tcypN2,Chubby Checker,1961-01-01,https://i.scdn.co/image/ab67616d0000b27331b14a6be50bdc7e60f9dbac,1,11,136666,https://p.scdn.co/mp3-preview/12cc244762341fea4701c0d41604a7a57b0aa472?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176140170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.605,0.747,8.0,-6.923,1.0,0.158,0.244,0.0,0.16,0.886,83.793,4.0,,Universal Music Group,"C © 2005 ABKCO Records Inc., P ℗ 2005 ABKCO Records Inc.",1567 +1568,spotify:track:1I3ZtkoM19zN8cV62XpbwW,The Greatest View,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:0Zq85Us1Vyb4BhbjvIx9VN,Diorama (U.S. Version),spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,2002-07-29,https://i.scdn.co/image/ab67616d0000b273f3b8847b4ae44d7583d7e65b,1,2,242973,https://p.scdn.co/mp3-preview/d1c1e31bf0c1c75d6aee52117ba58f6f8d1ab125?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USAT20200420,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.318,0.787,9.0,-6.437,1.0,0.0329,9e-05,5.97e-05,0.163,0.347,79.159,4.0,,Atlantic Records,"C © 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the rest of the world (including Japan but excluding the rest of Asia and Australasia)., P ℗ 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the rest of the world (including Japan but excluding the rest of Asia and Australasia).",1568 +1569,spotify:track:4n6qCrHzgjw0qcjg02AWi0,Get Set,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,spotify:album:6FLX6wPZ49m4mLfX9sYRse,Imaginate,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,1999-10-18,https://i.scdn.co/image/ab67616d0000b273629d9b0ec5d43b4167128da5,1,2,193893,https://p.scdn.co/mp3-preview/2ac2dd1b641e85cc3c29aafd0609bc933c5cc085?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUWA09900350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.508,0.812,4.0,-4.762,1.0,0.0378,0.0085,0.0,0.115,0.129,92.008,4.0,,WM Australia,"C © 1999 WARNER MUSIC AUSTRALIA PTY LIMITED, P ℗ 1999 WARNER MUSIC AUSTRALIA PTY LIMITED",1569 +1570,spotify:track:40SBS57su9xLiE1WqkXOVr,Afraid To Feel,spotify:artist:0HxX6imltnNXJyQhu4nsiO,LF SYSTEM,spotify:album:528LrHfHcB7PMAvyp8Obhp,Afraid To Feel,spotify:artist:0HxX6imltnNXJyQhu4nsiO,LF SYSTEM,2022-05-02,https://i.scdn.co/image/ab67616d0000b273ced808ef1567eaf901041438,1,1,177524,https://p.scdn.co/mp3-preview/ef097e0e455e0958ae85f58582eff55537d2a507?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBAHT2200492,spotify:user:bradnumber1,2022-08-28T08:07:11Z,uk dance,0.578,0.912,1.0,-3.929,1.0,0.114,0.0166,0.00362,0.273,0.68,127.87,4.0,,Warner Records,"C © 2022 Warner Music UK Limited, P ℗ 2022 Warner Music UK Limited",1570 +1571,spotify:track:3GpdNg7Krt9vjc6tgDoKe1,Breakfast At Tiffany's,spotify:artist:5N5RfI8FFXk4WQ8kkjE407,Deep Blue Something,spotify:album:0f3MAWN7G0RtC7UT6lj6x9,Home,spotify:artist:5N5RfI8FFXk4WQ8kkjE407,Deep Blue Something,1995-01-01,https://i.scdn.co/image/ab67616d0000b273201a609b75204b825ad98744,1,2,257186,https://p.scdn.co/mp3-preview/7bf57cbf18feec369fe7642170233df65c4c16f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19500177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.624,0.826,2.0,-5.534,1.0,0.0287,0.113,0.0,0.0938,0.526,110.368,4.0,,Interscope,"C © 1995 Interscope Records, P ℗ 1995 Interscope Records",1571 +1572,spotify:track:0QxwQkCU0CjNU86C85wmOz,The Big Hurt,spotify:artist:5pEtyfC9ZeFGakgX4hjhaG,Toni Fisher,spotify:album:0pVfw4rJfCVLPuDnrihWBE,The Big Hurt!,spotify:artist:5pEtyfC9ZeFGakgX4hjhaG,Toni Fisher,2006,https://i.scdn.co/image/ab67616d0000b2738a5eecd63f26d6c6cd1d4ab3,1,7,129105,https://p.scdn.co/mp3-preview/57f25d341670b658db27a41a00c8df13ebac86a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHFB0622507,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.511,0.524,1.0,-14.652,1.0,0.0395,0.875,0.0,0.122,0.284,127.444,4.0,,Harkit Records,"C (C) 2006 Harkit Entertainment Ltd, P (P) 2006 Harkit Entertainment Ltd",1572 +1573,spotify:track:2OpY5KKUvkYAkiY8FEG1Wi,Angel in Blue Jeans,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:00QRaEtUaplb5qxN62o9vd,Angel in Blue Jeans,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2014-06-09,https://i.scdn.co/image/ab67616d0000b2731144e65de6cbcde8a66e0013,1,1,204466,https://p.scdn.co/mp3-preview/af34c960578e68aa1c8bb92db4af526893b992b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM11404307,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.616,0.83,0.0,-4.757,1.0,0.034,0.0151,7.44e-06,0.102,0.732,115.01,4.0,,Columbia,"P (P) 2014 Columbia Records, a Division of Sony Music Entertainment",1573 +1574,spotify:track:2qhASBzpbFhPRtrnZ5lLnz,Unchained Melody,spotify:artist:4b0WsB47XCa9F83BmwQ7WX,The Righteous Brothers,spotify:album:0oeMysdC6eeivvWbvQ9JNm,Just Once In My Life,spotify:artist:4b0WsB47XCa9F83BmwQ7WX,The Righteous Brothers,1965-04-04,https://i.scdn.co/image/ab67616d0000b273cd7530409d09802935c840f9,1,3,218013,https://p.scdn.co/mp3-preview/6bf5e54931ce622e2e5b402b2d5959353de8cb10?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USPG19090023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,folk rock,mellow gold,motown,rock-and-roll,rockabilly",0.339,0.208,0.0,-16.725,1.0,0.0308,0.396,0.000519,0.18,0.288,98.54,3.0,,Universal Records,"C © 1965 UMG Recordings, Inc., P ℗ 1965 UMG Recordings, Inc.",1574 +1575,spotify:track:68O1r5xQADu0JjvBibg9zN,Something's Gotten Hold of My Heart,"spotify:artist:7nBZYpVAH6bD0QlD7Mpil7, spotify:artist:3ap1NzHNV9QA1x1V6z3gSe","Marc Almond, Gene Pitney",spotify:album:3HIPNQXH9gtsvrlt74dUXR,The Stars We Are,spotify:artist:7nBZYpVAH6bD0QlD7Mpil7,Marc Almond,1989-01-30,https://i.scdn.co/image/ab67616d0000b273981e3f79f18646776483e1dc,1,13,280488,https://p.scdn.co/mp3-preview/fef6cf5e0455cff4c9ab9018da00c6e7985c3fb8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAYE8800141,spotify:user:bradnumber1,2024-05-07T06:47:00Z,"new romantic,new wave pop,solo wave,sophisti-pop,synthpop,adult standards,brill building pop,merseybeat,rock-and-roll,rockabilly",0.565,0.492,4.0,-12.548,1.0,0.0254,0.148,0.0,0.0684,0.364,98.247,4.0,,Parlophone UK,"C © 2002 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1988 Parlophone Records Ltd, a Warner Music Group Company",1575 +1576,spotify:track:0wGCqbabpDypLS3rT1t0XI,Another Night On The Road,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:6Z9MQPDWq36gzBtMdFF7od,Sherbet,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,1978,https://i.scdn.co/image/ab67616d0000b27383865ac9788de915ea93f153,1,3,249973,https://p.scdn.co/mp3-preview/eb1b3d0bf1811f7dca5579e1a70af1d7786a16ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01178180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.696,0.636,5.0,-8.837,1.0,0.0695,0.0579,0.00293,0.0944,0.792,128.484,4.0,,Bloodlines,"C 2011 Bloodlines, P 2011 Bloodlines",1576 +1577,spotify:track:0mLAgHQP1BOkoHhDu622BQ,Get Down On It,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,spotify:album:37zC760BSwY1JWNPvSZOik,20th Century Masters: The Millennium Collection: Best Of Kool & The Gang,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,2000-01-01,https://i.scdn.co/image/ab67616d0000b27332d133900c5b7678bc7af274,1,5,213426,https://p.scdn.co/mp3-preview/0759da9804568d6c1028681a1b23ce779977454b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR38100044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,soft rock,soul",0.889,0.646,7.0,-6.366,1.0,0.0668,0.195,3.19e-05,0.0502,0.966,110.842,4.0,,Universal Strategic Marketing,"C © 2000 The Island Def Jam Music Group, P ℗ 2000 The Island Def Jam Music Group",1577 +1578,spotify:track:2KukL7UlQ8TdvpaA7bY3ZJ,BREAK MY SOUL,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:5JgCaA43ECaGeqbPEo6WUP,BREAK MY SOUL,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2022-06-21,https://i.scdn.co/image/ab67616d0000b273ef5c4d1b49aa500905423be3,1,1,278281,https://p.scdn.co/mp3-preview/37fd7166b305199b1216762e7c1abc18ac8cab0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM12206234,spotify:user:bradnumber1,2022-08-26T05:41:22Z,"pop,r&b",0.687,0.887,1.0,-5.04,0.0,0.0826,0.0575,2.21e-06,0.27,0.853,114.941,4.0,,Parkwood Entertainment/Columbia,"P (P) 2022 Parkwood Entertainment LLC, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",1578 +1579,spotify:track:0OASxlnHMLraisQTNk0lCj,Tip Of My Tongue,spotify:artist:4rCLXPaqaUjGa1aHDwkviR,Diesel,spotify:album:3tIMs6DyTq4OisqJI39Y0S,Complete Nineties,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-10-08,https://i.scdn.co/image/ab67616d0000b273c1b6b23fa47ca79fe602bf8d,1,25,240506,https://p.scdn.co/mp3-preview/3815e32d1d802685735ff5b77b41e12e38697be0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM09200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.652,0.876,4.0,-4.977,1.0,0.0408,0.0226,0.0127,0.0872,0.783,97.906,4.0,,EMI Music Australia,"C Artwork (C) 2010 EMI Music Australia Pty Ltd., P This compilation was first published in 2010 and any and all copyright in this compilation is owned by EMI Music Australia Pty Ltd.",1579 +1580,spotify:track:2F3kAASEmMtJevyYoERBPa,Heartbeat,"spotify:artist:7qG3b048QCHVRO5Pv1T5lw, spotify:artist:40xbWSB4JPdOkRyuTDy1oP","Enrique Iglesias, Nicole Scherzinger",spotify:album:2xwpvruPfeNRKx3X78UDd8,Euphoria,spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,2010,https://i.scdn.co/image/ab67616d0000b2735df00610cc25ab4b70b80070,1,4,256226,https://p.scdn.co/mp3-preview/ffa73162a727f4b8da33e81dcfacb5543889b824?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71010010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,latin pop,mexican pop,dance pop,pop,post-teen pop",0.567,0.888,10.0,-3.201,1.0,0.0993,0.0228,0.0,0.279,0.41,129.962,4.0,,Universal Music Group,"C © 2011 Universal International Music B.V., P ℗ 2011 Universal International Music B.V.",1580 +1581,spotify:track:3WSyYBhLZRLbQo2tJgFvSR,Sleeping Satellite,spotify:artist:6EgtYGZoF5jLydCpz43xu1,Tasmin Archer,spotify:album:4W5bJ5C6XGKEGWQNvhsSSY,Great Expectations,spotify:artist:6EgtYGZoF5jLydCpz43xu1,Tasmin Archer,1992-10-19,https://i.scdn.co/image/ab67616d0000b273d64e732971e9eaa113dd2a0f,1,1,281853,https://p.scdn.co/mp3-preview/67600744791418ae40b468431c5213fd58452885?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAYE9200052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.6,0.824,5.0,-9.864,0.0,0.027,0.171,0.000225,0.258,0.749,96.075,4.0,,Parlophone UK,"C © 1992 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1992 Parlophone Records Ltd, a Warner Music Group Company",1581 +1582,spotify:track:0e8nrvls4Qqv5Rfa2UhqmO,THATS WHAT I WANT,spotify:artist:7jVv8c5Fj3E9VhNjxT4snq,Lil Nas X,spotify:album:6pOiDiuDQqrmo5DbG0ZubR,MONTERO,spotify:artist:7jVv8c5Fj3E9VhNjxT4snq,Lil Nas X,2021-09-17,https://i.scdn.co/image/ab67616d0000b273be82673b5f79d9658ec0a9fd,1,4,143901,https://p.scdn.co/mp3-preview/f6958f897e3817fcbb6647d62f66c71ee96d1981?cid=9950ac751e34487dbbe027c4fd7f8e99,True,75,USSM12105732,spotify:user:bradnumber1,2022-04-27T22:11:04Z,lgbtq+ hip hop,0.737,0.846,1.0,-4.51,0.0,0.22,0.00614,0.0,0.0486,0.546,87.981,4.0,,Columbia,"P (P) 2021 Columbia Records, a Division of Sony Music Entertainment",1582 +1583,spotify:track:5UwbnHhjnbinJH8TefuQfN,Long Cool Woman (In a Black Dress) - 1999 Remaster,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:6b5osVLAcVTBvnqwDaPV4w,Distant Light (1999 Remaster),spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1971-10-08,https://i.scdn.co/image/ab67616d0000b273eaaa0a2a94066c69ed93d4ab,1,7,199200,https://p.scdn.co/mp3-preview/718bebe2fac6d26d559b6babee20cbbdd66d5390?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBGYU9900019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.757,0.868,9.0,-9.326,1.0,0.062,0.411,0.00221,0.355,0.815,138.923,4.0,,BMG Rights Management (US) LLC,"C © 2000 BMG Rights Management (US) LLC, P ℗ 1999 BMG Rights Management (US) LLC",1583 +1584,spotify:track:3L7RtEcu1Hw3OXrpnthngx,Don't You Want Me,spotify:artist:1aX2dmV8XoHYCOQRxjPESG,The Human League,spotify:album:3ls7tE9D2SIvjTmRuEtsQY,Dare!,spotify:artist:1aX2dmV8XoHYCOQRxjPESG,The Human League,1981,https://i.scdn.co/image/ab67616d0000b2735579d8a505c727349a203074,1,10,236920,https://p.scdn.co/mp3-preview/37e6049e5c604a5a0b0c0c5ef68208f72e0fed38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBAAA0200924,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,sophisti-pop,synthpop",0.731,0.738,9.0,-8.125,0.0,0.0377,0.184,0.0,0.214,0.958,117.656,4.0,,Virgin Records,"C © 2003 Virgin Records Limited, P ℗ 2003 Virgin Records Limited",1584 +1585,spotify:track:4qew910BqrKhPv5SmmxqzL,Even Better Than The Real Thing,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:1U69hFsxaQxP6fquZmOmNH,Achtung Baby,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1991-11-18,https://i.scdn.co/image/ab67616d0000b273b1bdbab41920011be3f223a7,1,2,221373,https://p.scdn.co/mp3-preview/e6b367bf59d60a0fcec869a814d2d569a2af362b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71106454,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.509,0.747,7.0,-6.774,1.0,0.0305,0.00118,0.00107,0.177,0.637,128.597,4.0,,Universal Music Group,"C © 2011 Universal-Island Records Limited under exclusive licence to Mercury Records Limited in the UK, Interscope Records in the US and Universal Music Group for the rest of the world, P ℗ 2011 Universal-Island Records Limited under exclusive licence to Mercury Records Limited in the UK, Interscope Records in the US and Universal Music Group for the rest of the world",1585 +1586,spotify:track:30Zav1J4qpx9QuX5EXbVUt,All Seats Taken,spotify:artist:1o8xRRDOnvmFZbWxq0hNZu,Bec Cartwright,spotify:album:6FfYZ9Lojul7FPw1NkpL9q,Bec Cartwright,spotify:artist:1o8xRRDOnvmFZbWxq0hNZu,Bec Cartwright,2003-09-12,https://i.scdn.co/image/ab67616d0000b273bc52d7217465c4af9215952d,1,3,212080,https://p.scdn.co/mp3-preview/aafccf65680bdfbe130f6d8f336b1dba7f218822?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUWA00208990,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.744,0.808,2.0,-4.679,1.0,0.0544,0.00801,3.57e-06,0.31,0.714,101.974,4.0,,WM Australia,"C © 2003 Warner Music Australia, P ℗ 2003 Warner Music Australia",1586 +1587,spotify:track:7qmqjzRl72MHAfR89SM4Kb,From New York to L.A. - Radio Edit,spotify:artist:13amDjKz680LMirXzQEqU5,Patsy Gallant,spotify:album:2vHCKNUlQQ7Q3AKV8MIcE9,From New York to L.A.,spotify:artist:13amDjKz680LMirXzQEqU5,Patsy Gallant,1976-01-01,https://i.scdn.co/image/ab67616d0000b273b788677eea03390de2badc89,1,2,222306,https://p.scdn.co/mp3-preview/6590af0a79d030d4e7a7c2a94b740c1c3296a5cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,CAU111403122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.549,0.687,2.0,-7.927,1.0,0.0444,0.156,0.0,0.684,0.665,127.05,4.0,,UNIDISC MUSIC INC.,"C Unidisc Music Inc., P Unidisc Music Inc.",1587 +1588,spotify:track:15yH88kh9MySNZW2XLvdx0,Never Miss Your Water,spotify:artist:4rCLXPaqaUjGa1aHDwkviR,Diesel,spotify:album:1S9ZERe8LYZOptvTA6xVVI,The Lobbyist,spotify:artist:4rCLXPaqaUjGa1aHDwkviR,Diesel,1993-05-07,https://i.scdn.co/image/ab67616d0000b2733d918861e53e68af07b6e554,1,2,236666,https://p.scdn.co/mp3-preview/e292afec81dad56a8d7438ddc11cd0efdfe2817a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AULI01070520,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.813,0.578,0.0,-6.198,1.0,0.0446,0.258,7.77e-06,0.0614,0.819,105.072,4.0,,Bloodlines,"C 2010 Bloodlines, P 2010 Bloodlines",1588 +1589,spotify:track:3TAAbnl5bhDIVBeYkQPbAk,The Bomb! (These Sounds Fall Into My Mind),spotify:artist:1yjuFciXmV3NaPCzwwHclC,The Bucketheads,spotify:album:61BxfS6u08JfsGa9uqCniw,The Bomb! (These Sounds Fall Into My Mind),spotify:artist:1yjuFciXmV3NaPCzwwHclC,The Bucketheads,1994,https://i.scdn.co/image/ab67616d0000b273edfb04ec555e31c493a8e018,1,1,891720,https://p.scdn.co/mp3-preview/91fa94d9da16421190e3c3dac74a2ea77e795dac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUXN21605566,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic house,disco house,vocal house",0.805,0.931,9.0,-2.539,0.0,0.0396,0.00164,0.488,0.366,0.707,125.901,4.0,,Central Station Records,"C 1994 Henry Street Music Under Exclusive License to Central Station Records, P 1994 Henry Street Music Under Exclusive License to Central Station Records",1589 +1590,spotify:track:2m6SU5btiUMkk5vBfXOfIU,Forever,spotify:artist:2uhEmRPgI5Ppg2T3o8VP31,Tina Cousins,spotify:album:7D0xnocXwTZQaVbHq7FQCx,Killing Time,spotify:artist:2uhEmRPgI5Ppg2T3o8VP31,Tina Cousins,2000-06-06,https://i.scdn.co/image/ab67616d0000b273723a1053ab183bc897c48cee,1,5,242080,https://p.scdn.co/mp3-preview/704ff90c5074461329bd008719adfed5a2b3ac9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAHK9800119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,eurodance",0.619,0.886,0.0,-5.83,1.0,0.0328,0.0306,0.0302,0.551,0.399,134.003,4.0,,NITRON media,P (P) 2010 Sony Music Entertainment UK Limited,1590 +1591,spotify:track:5nOhwdYZhXL7ZtqoSGYpDd,Bad Vibes,spotify:artist:0LWBqstmNeW3r6kOswfZ1J,Matt B,spotify:album:7DEjm4SfvD0Rc6DeBtsGp6,EDEN,spotify:artist:0LWBqstmNeW3r6kOswfZ1J,Matt B,2021-03-12,https://i.scdn.co/image/ab67616d0000b27351aaf7e8f5fcdb5e38a29730,1,2,229771,https://p.scdn.co/mp3-preview/a2c3aa430f7b5742683d9d625149ef05e9969d4e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,QZ8G81700024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.759,0.616,5.0,-3.14,0.0,0.116,0.263,0.0,0.0982,0.284,120.085,4.0,,Vitae Records,"C 2021 Vitae Records, P 2021 Vitae Records",1591 +1592,spotify:track:2ZTYlnhhV1UAReg7wIGolx,To Die For,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:2motAeq8jZvHkF4VpbWSHf,To Die For,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2020-02-14,https://i.scdn.co/image/ab67616d0000b273f1819f8c6386cd5b4a215020,1,1,193795,https://p.scdn.co/mp3-preview/aa33161d737c6b6f265d4eca91802b9533ac7a75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBUM71906661,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.482,0.361,0.0,-7.889,1.0,0.0747,0.832,4.28e-06,0.098,0.306,171.665,4.0,,PLG - Capitol,"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",1592 +1593,spotify:track:7H2l6luhrT1wqZ521Sc5vm,Don't Stand So Close To Me,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:5vLIfhDpTmdyQ0YrlnXzSr,The Very Best Of Sting And The Police,"spotify:artist:0Ty63ceoRnnJKVEYP0VQpk, spotify:artist:5NGO30tJxFlKixkPSgXcFE","Sting, The Police",2002-01-01,https://i.scdn.co/image/ab67616d0000b273032ecf340e696eeb51b0e7a3,1,16,237261,https://p.scdn.co/mp3-preview/33fb1e343adb34e507be23ebcfd5f10f9c98d38b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM8000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.796,0.531,2.0,-8.75,1.0,0.0548,0.049,0.0052,0.0412,0.591,140.369,4.0,,Universal Music Group,"C © 2002 A&M Records Inc., P ℗ 2002 A&M Records Inc.",1593 +1594,spotify:track:4M5SqWR8LIgE9N3QzEJlyS,Can I Shower At Yours,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:0fTLP9DCzyRXwn1un2prwj,Can I Shower At Yours,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2023-06-22,https://i.scdn.co/image/ab67616d0000b273f785ec7c6664c5235d31e100,1,1,114004,https://p.scdn.co/mp3-preview/ed6d529d5504a85856e91ff9a697907c7774c445?cid=9950ac751e34487dbbe027c4fd7f8e99,True,45,AUBM02300074,spotify:user:bradnumber1,2023-07-28T04:37:07Z,australian pop,0.848,0.7,4.0,-1.863,1.0,0.062,0.143,0.0,0.0813,0.955,128.103,4.0,,Sony Music Entertainment,P (P) 2023 Amy Shark under exclusive licence to Sony Music Entertainment Australia Pty Ltd,1594 +1595,spotify:track:4DMKwE2E2iYDKY01C335Uw,Carry on Wayward Son,spotify:artist:2hl0xAkS2AIRAu23TVMBG1,Kansas,spotify:album:7MejfRSNnrpcLZIxkeZDqR,Leftoverture (Expanded Edition),spotify:artist:2hl0xAkS2AIRAu23TVMBG1,Kansas,1976,https://i.scdn.co/image/ab67616d0000b2731be40e44db112e123e5e8b51,1,1,323000,https://p.scdn.co/mp3-preview/189d19a38bab3a4ee0e6401f77903e3696bb522e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USSM17600874,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,progressive rock,rock,soft rock",0.482,0.786,7.0,-5.735,1.0,0.032,0.00321,8.88e-05,0.446,0.793,126.755,4.0,,Epic/Legacy,"P (P) 1976, 2001 Epic Records, a division of Sony Music Entertainment",1595 +1596,spotify:track:602rnDrA59nfIEcX5Qrlcx,Walking the Dog - Mono,spotify:artist:3iRSHS3b4NUdjNbnw3Opg8,Rufus Thomas,spotify:album:7hSfW22a8j44vzn9wb2FC6,Walking the Dog (Mono),spotify:artist:3iRSHS3b4NUdjNbnw3Opg8,Rufus Thomas,1963,https://i.scdn.co/image/ab67616d0000b2737bfcbd1d1ab9aeffeb4d5183,1,7,158089,https://p.scdn.co/mp3-preview/9926b721c868c477723db114be33a5dc50a73823?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USAT21403888,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"memphis blues,memphis soul,southern soul",0.803,0.494,8.0,-9.033,1.0,0.0326,0.711,0.000561,0.0623,0.774,115.771,4.0,,Rhino Atlantic,"C © 1963 Atlantic Records, P ℗ 1963 Atlantic Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",1596 +1597,spotify:track:0oKtaLvAcLN1ayWxU3jub6,Save The Best For Last,spotify:artist:75L9s8KVrhCNtBUkZFnDFW,Vanessa Williams,spotify:album:39pfaAzMSvAEBPbFgLcjwQ,Love Songs,spotify:artist:75L9s8KVrhCNtBUkZFnDFW,Vanessa Williams,2003-01-01,https://i.scdn.co/image/ab67616d0000b2737a87c632c45f9c4dc5d8b938,1,12,219146,https://p.scdn.co/mp3-preview/5d8f21e265e7f27d11e0d7c72648c4dd2137d077?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG19190052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,disco,quiet storm,urban contemporary",0.531,0.297,3.0,-12.742,1.0,0.0266,0.648,0.0,0.2,0.225,95.972,4.0,,Island Records,"C © 2003 The Island Def Jam Music Group, P ℗ 2003 The Island Def Jam Music Group",1597 +1598,spotify:track:127QTOFJsJQp5LbJbu3A1y,Toosie Slide,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,spotify:album:3xIwVbGJuAcovYIhzbLO3J,Toosie Slide,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,2020-04-03,https://i.scdn.co/image/ab67616d0000b2736443676b54522a86f6323e65,1,1,247058,https://p.scdn.co/mp3-preview/f0cd0adad3b40f3c20196817c1395d8acc9de1f6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,68,USUG12001281,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian hip hop,canadian pop,hip hop,pop rap,rap",0.834,0.454,1.0,-9.75,0.0,0.201,0.321,6.15e-06,0.114,0.837,81.618,4.0,,OVO,"C © 2020 OVO, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 OVO, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",1598 +1599,spotify:track:2Q7LpkYrS0PBpoq3iCqypa,Ramblin' Man,spotify:artist:4wQ3PyMz3WwJGI5uEqHUVR,Allman Brothers Band,spotify:album:1n9rbMLUmrXBBBJffS7pDj,Brothers And Sisters (Deluxe Edition),spotify:artist:4wQ3PyMz3WwJGI5uEqHUVR,Allman Brothers Band,1973-09,https://i.scdn.co/image/ab67616d0000b273477680eb32457ae31c904de6,1,2,288160,https://p.scdn.co/mp3-preview/8ba7a1b2ae3b1d5d62ee27129a3704464b7584d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA027300020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,folk rock,hard rock,jam band,mellow gold,rock,singer-songwriter,soft rock,southern rock",0.309,0.831,1.0,-8.288,1.0,0.036,0.488,0.00304,0.286,0.934,181.145,4.0,,Universal Music Group,"C © 2013 The Island Def Jam Music Group, P ℗ 2013 The Island Def Jam Music Group",1599 +1600,spotify:track:6PPB04veEoZI33g8O5VsEY,Tell Him I'm Not Home - 2015 Remaster,spotify:artist:7AYAlJS3jjcIj813LTx5rQ,Normie Rowe & The Playboys,spotify:album:3a7JXyIuAl4LZ4niKhEf2W,Frenzy! The 50th Anniversary Collection,spotify:artist:5c9HsNOWkLSqCduVHX8iyO,Normie Rowe,2015-06-05,https://i.scdn.co/image/ab67616d0000b273221b1558078e41a184f29a9e,1,8,134440,https://p.scdn.co/mp3-preview/7095e1df647778f6578bf5d5b0c435e7ae40dde9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,AU3O01100606,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.46,0.868,4.0,-3.95,1.0,0.0566,0.039,7.38e-05,0.175,0.601,124.1,4.0,,WM Australia,"C © 2015 Warner Music Australia Pty Ltd, P ℗ 2015 Warner Music Australia Pty Ltd",1600 +1601,spotify:track:2RtmMC4btQbvQ9w5KxPZpy,Arizona,spotify:artist:7kEOMdsEmZkTHgA4ibDz4h,Mark Lindsay,spotify:album:68uYwNwxQ3jfPSCAnWeIkA,Arizona,spotify:artist:7kEOMdsEmZkTHgA4ibDz4h,Mark Lindsay,1970-03-04,https://i.scdn.co/image/ab67616d0000b2738acbff54caafb785818576e1,1,1,188133,https://p.scdn.co/mp3-preview/b0bbdb5f467e89777d60d71876a7b2fb4af103bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USSM10705022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.479,0.453,3.0,-12.806,1.0,0.0472,0.225,0.00038,0.143,0.756,81.18,4.0,,Legacy Recordings,"P Originally released 1970. All rights reserved by Columbia Records, a division of Sony Music Entertainment",1601 +1602,spotify:track:6fNhZRFEkBfgW39W3wKARJ,Pompeii,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,spotify:album:1jUoeAbO2HCADZ1uiyLYIo,Bad Blood,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,2013-01-01,https://i.scdn.co/image/ab67616d0000b273b89cf022db28fa31376e0ed8,1,1,214147,https://p.scdn.co/mp3-preview/18da10d3596cdce4434dbeebf94fc75790217d50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,GBAAA1200795,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop",0.679,0.715,9.0,-6.383,1.0,0.0407,0.0755,0.0,0.271,0.571,127.435,4.0,,Virgin Records,"C © 2013 Virgin Records Limited, P ℗ 2013 Virgin Records Limited",1602 +1603,spotify:track:3Obu3jvFSfgLF3pSbi64Vj,This Fire,spotify:artist:0XNa1vTidXlvJ2gHSsRi4A,Franz Ferdinand,spotify:album:0vi5ePiEHrGZJF7QhnDW2z,Franz Ferdinand,spotify:artist:0XNa1vTidXlvJ2gHSsRi4A,Franz Ferdinand,2004-02-16,https://i.scdn.co/image/ab67616d0000b27309a90531b85be7899c3234c4,1,7,254693,https://p.scdn.co/mp3-preview/2a70bba206df708c8f36c9eb6166929d222aad06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBCEL0300196,spotify:user:bradnumber1,2022-08-26T01:08:21Z,"alternative rock,dance rock,indie rock,modern rock,rock,scottish rock",0.549,0.87,7.0,-9.453,1.0,0.0543,0.00249,2.08e-06,0.127,0.671,138.078,4.0,,Domino Recording Co,"C 2004 Domino Recording Co Ltd, P 2004 Domino Recording Co Ltd",1603 +1604,spotify:track:4z0sS7hwnTZTRKZVahth6J,Hair,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:4bzVI1FElc13HQagFR7S1W,Get Weird (Deluxe),spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2015-11-06,https://i.scdn.co/image/ab67616d0000b2734e977ec3406c06c9401642d5,1,5,209280,https://p.scdn.co/mp3-preview/2580de8c82e7464687f5e09d896b021540138d61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1500074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.697,0.841,7.0,-4.339,1.0,0.0397,0.00857,4.41e-05,0.661,0.696,153.962,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,1604 +1605,spotify:track:5DPVU9xTKDC2CizYp5WXT2,48 Crash,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,spotify:album:06HJVlWlwBfMKf8BE0eAHW,Suzi Quatro,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,1973-10-01,https://i.scdn.co/image/ab67616d0000b27357d3809ca687051ca8832a24,1,1,233413,https://p.scdn.co/mp3-preview/74754aec6613849e9efe9fe487b6befc5a766ff8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE7300044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.643,0.765,2.0,-8.602,1.0,0.0933,0.00157,0.00977,0.169,0.868,137.979,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1973 Chrysalis Records Limited",1605 +1606,spotify:track:23L5CiUhw2jV1OIMwthR3S,In the Name of Love,"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:64M6ah0SkkRsnPGtGiRAbb","Martin Garrix, Bebe Rexha",spotify:album:1FOJ5IXGXe8dl0cXvCU6wK,In the Name of Love,"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:64M6ah0SkkRsnPGtGiRAbb","Martin Garrix, Bebe Rexha",2016-07-29,https://i.scdn.co/image/ab67616d0000b2738c77bcf5f5a227d270d23370,1,1,195706,https://p.scdn.co/mp3-preview/4ed5a7f1b466a7635d625240b600af899a8e5b51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,NLM5S1600003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch edm,edm,pop,pop dance,progressive house,dance pop,pop",0.501,0.519,4.0,-5.88,0.0,0.0409,0.109,0.0,0.454,0.168,133.99,4.0,,Epic Amsterdam,"P (P) 2016 STMPD RCRDS B.V. exclusively licensed to Epic Amsterdam, a divison of Sony Music Entertainment Netherlands B.V.",1606 +1607,spotify:track:6D186kBHszfjVVWDsWdUig,Little Me,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:06haetPrpbIFCY1FUWzVel,Salute (The Deluxe Edition),spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2013-11-11,https://i.scdn.co/image/ab67616d0000b27398652057b1044167edbe79a6,1,3,235360,https://p.scdn.co/mp3-preview/4e610d5979546bc4c4d8fd7a15e60e4e469a9fba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1300284,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.371,0.795,5.0,-5.092,0.0,0.0785,0.206,0.0,0.181,0.544,79.837,4.0,,Syco Music,P (P) 2013 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,1607 +1608,spotify:track:7g2b2fQ6jv7qbaVOWeSups,Love The Fall,spotify:artist:0mCK5i2RVWTwvL9ZXbzUP0,Michael Paynter,spotify:album:5qKXxzwNt1qfRFCdlAqrqd,Love The Fall,spotify:artist:0mCK5i2RVWTwvL9ZXbzUP0,Michael Paynter,2010-06-18,https://i.scdn.co/image/ab67616d0000b273c5b5545c87cb39ac3249f6b1,1,1,183386,https://p.scdn.co/mp3-preview/476aaee54e622a19b9a1744df7de4b4923deaf76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01000160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.496,0.957,5.0,-2.607,1.0,0.0965,0.0789,0.0,0.106,0.467,152.099,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd.,1608 +1609,spotify:track:0YWUf0FuvbOvAlrOAVaH8S,Keep It Comin' Love,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,spotify:album:1nxHfb1EerQyKdT1aLSXf6,"KC & the Sunshine Band, Pt. 3... and More",spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,2004-10-26,https://i.scdn.co/image/ab67616d0000b273d7749989a3bc4d5b694e8d14,1,8,271493,https://p.scdn.co/mp3-preview/b87959c1f583581bcf382800d829040a2438e70b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USRH10450768,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new wave pop,soft rock,soul",0.773,0.721,3.0,-12.574,1.0,0.0294,0.232,1.61e-05,0.0349,0.971,110.383,4.0,,Rhino,"C © 2004 Warner Strategic Marketing, P ℗ 2004 Warner Strategic Marketing",1609 +1610,spotify:track:4ZOyH6KjomjlqCz3oFqglr,Jenny from the Block (feat. Jadakiss & Styles P.) - Track Masters Remix,"spotify:artist:2DlGxzQSjYe5N6G9nkYghR, spotify:artist:5pnbUBPifNnlusY8kTBivi, spotify:artist:2x8KDZdSONA3872CnhaAlX","Jennifer Lopez, Jadakiss, Styles P",spotify:album:2NG4OLyeNMwcLqirwwwvs2,This Is Me...Then,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2002-11-19,https://i.scdn.co/image/ab67616d0000b273c0d17a37386e6891cc4d8877,1,7,187840,https://p.scdn.co/mp3-preview/436c784474eb9059cc3b5ce2d3a44703e3ac6433?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM10212454,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,battle rap,east coast hip hop,trap,battle rap,dirty south rap,east coast hip hop",0.844,0.754,6.0,-5.46,1.0,0.207,0.00833,3.42e-06,0.0575,0.961,100.002,4.0,,Epic,P (P) 2002 Sony Music Entertainment Inc.,1610 +1611,spotify:track:4ptSL1o2pRgNvrC4wsN1Pl,No Rain - Remastered 2002,spotify:artist:5sD1ZLf2dGQ9gQ3YJl1eAd,Blind Melon,spotify:album:4Kr7DLs5Ds3e4VAqlo2vqZ,Best Of Blind Melon,spotify:artist:5sD1ZLf2dGQ9gQ3YJl1eAd,Blind Melon,2005-01-01,https://i.scdn.co/image/ab67616d0000b273eaac35c468ad5034241c86ad,1,4,217800,https://p.scdn.co/mp3-preview/5dd2b626d76d09b10988f37e734f453bcb17dd8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USCA20101428,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,pop rock,rock",0.383,0.599,9.0,-5.432,1.0,0.0304,0.644,3.61e-05,0.311,0.547,148.018,4.0,,Capitol Records,"C © 2005 Capitol Records Inc., P This Compilation ℗ 2005 Capitol Records Inc.",1611 +1612,spotify:track:1d6KS9GH06JAd19uiBy9IE,Ironic - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,spotify:album:5Ap3F8CxjjsQKZGASDcHNA,Jagged Little Pill - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,1995,https://i.scdn.co/image/ab67616d0000b273242e643ea07118ecf677a6ef,1,10,230000,https://p.scdn.co/mp3-preview/8d47a6af92173911fd7a688d66a3b5ad6c79a25d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USMV21500010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,lilith,neo mellow,pop rock,singer-songwriter",0.408,0.582,11.0,-8.305,1.0,0.0508,0.218,0.0,0.159,0.365,114.926,5.0,,Rhino/Maverick Records,"C © 1995 Maverick Recording Company. All Rights Reserved, P ℗ 1995 Maverick Recording Company. Marketed by Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",1612 +1613,spotify:track:16HnBM5GA5w3eKx46YRqHj,To Whom It Concerns,spotify:artist:49czbwrhT97D0tODGwDyLs,Chris Andrews,spotify:album:3bxKmlK6UdaRXpUx2dsm6C,The Best of Chris Andrews,spotify:artist:49czbwrhT97D0tODGwDyLs,Chris Andrews,2014-12-08,https://i.scdn.co/image/ab67616d0000b273916264bdb8d686925a5cf776,1,20,159053,https://p.scdn.co/mp3-preview/3bd36514a2c20cb525c547a1c044dbf8454efe00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,FR2X41479637,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,nederpop",0.696,0.828,7.0,-7.195,1.0,0.0477,0.0896,0.165,0.185,0.84,109.32,4.0,,Shami Media Group 3,"C Shami Media Group, Inc., P Big A Media",1613 +1614,spotify:track:39iKJpLPhsDTOzH2lXliWF,(Your Love Has Lifted Me) Higher And Higher,spotify:artist:1vnIL4DMlivP55ioM6KitW,Rita Coolidge,spotify:album:3IcnPxM10hCMb6W2gCapAY,Anytime... Anywhere,spotify:artist:1vnIL4DMlivP55ioM6KitW,Rita Coolidge,1977-03-01,https://i.scdn.co/image/ab67616d0000b27377835d4aad19f47457ea41bd,1,1,241720,https://p.scdn.co/mp3-preview/7517c6d7e45a0d992212cb3aafee376adc2eedcc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USAM17700388,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,native american traditional,singer-songwriter,soft rock",0.656,0.646,10.0,-9.169,0.0,0.0336,0.0575,0.00464,0.16,0.75,117.586,4.0,,A&M,"C © 1977 UMG Recordings, Inc., P ℗ 1977 UMG Recordings, Inc.",1614 +1615,spotify:track:0ScvNAru6QoLl7SmnMC5ai,Ain’t No Pleasing You,spotify:artist:38unGip4o3KhMfqHdHWB7K,Chas & Dave,spotify:album:1kGDpcVUiWyd8HT3tlywL9,The Best of Chas 'n' Dave,spotify:artist:38unGip4o3KhMfqHdHWB7K,Chas & Dave,2001-01-01,https://i.scdn.co/image/ab67616d0000b2736aebb5df4779aa95abfca539,1,9,253706,https://p.scdn.co/mp3-preview/2f814450811bac2ca60137d65a9179e7a4a0caa4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBBLG8100134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british comedy,0.481,0.804,10.0,-9.928,1.0,0.0438,0.00309,0.000885,0.0717,0.841,145.754,3.0,,Demon,"C (C) 2001 Demon Music Group Ltd, P (P) 2001 Demon Music Group Ltd",1615 +1616,spotify:track:1qBhwKYvmHynSH2tXcR4hw,Giving Up The Gun,spotify:artist:5BvJzeQpmsdsFp4HGUYUEx,Vampire Weekend,spotify:album:0zeAijecFGZOS4OaRdPVz5,Contra,spotify:artist:5BvJzeQpmsdsFp4HGUYUEx,Vampire Weekend,2010-01-11,https://i.scdn.co/image/ab67616d0000b2732efbbd3b97ac33268266b805,1,8,286160,https://p.scdn.co/mp3-preview/51d6316477ba328cdbf364d3b4310b6559553956?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS0900322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,chamber pop,garage rock,indie rock,indietronica,modern rock",0.642,0.875,9.0,-5.215,1.0,0.0532,0.00136,0.000192,0.0596,0.735,134.022,4.0,,XL,"C 2010 Vampire Weekend under exclusive license to XL Recordings Ltd., P 2010 Vampire Weekend under exclusive license to XL Recordings Ltd.",1616 +1617,spotify:track:794pcMq18sBEsmwjRq0aOI,The World I Know,spotify:artist:4e5V1Q2dKCzbLVMQ8qbTn6,Collective Soul,spotify:album:30mXi1BVpzrlrncFYwWjWg,Collective Soul,spotify:artist:4e5V1Q2dKCzbLVMQ8qbTn6,Collective Soul,1995-03-14,https://i.scdn.co/image/ab67616d0000b273baa15a949182a31ab96c57a6,1,3,255466,https://p.scdn.co/mp3-preview/2726b1be74183d3bbe937e2211294c4c38f67fbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT29500011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,nu metal,pop rock,post-grunge,rock",0.514,0.704,2.0,-4.724,1.0,0.0261,0.0515,0.00219,0.228,0.386,76.975,4.0,,Concord Music Group,"C 1995 Concord Music Group, Inc., P 1995 Concord Music Group, Inc.",1617 +1618,spotify:track:6GfecUoyhgrCjVv17teSfB,White Wedding - Pt. 1,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,spotify:album:3NqodgW3niaCkYZ5ol6hMN,Billy Idol,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,1982-01-01,https://i.scdn.co/image/ab67616d0000b273c2db6e8ae1cc3c21a5dc2442,1,2,252200,https://p.scdn.co/mp3-preview/daa62c9d0248301121fbafeb8eb5e70c9e70cf4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCH30100008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,hard rock,new romantic,new wave,new wave pop,rock,soft rock",0.68,0.807,6.0,-5.445,0.0,0.0376,0.013,0.00202,0.376,0.693,147.213,4.0,,Universal Music Group,"C © 2017 Capitol Records, LLC, P ℗ 2017 Capitol Records, LLC",1618 +1619,spotify:track:7f1Dmr246cJ9uQYdbplTbh,He Wasn't Man Enough,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,spotify:album:0UZsKcXzOehMvFWTiBlwMi,The Heat,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,2000,https://i.scdn.co/image/ab67616d0000b273126720399a6b06e1c6bd46c6,1,1,261933,https://p.scdn.co/mp3-preview/9790a4ecd20aa3b711d04dffe8c3e50015de764c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USLF20000020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,r&b,urban contemporary",0.739,0.947,11.0,-1.916,0.0,0.0411,0.00916,3.14e-05,0.326,0.766,88.009,4.0,,Arista/LaFace Records,P (P) 2000 LaFace Records LLC,1619 +1620,spotify:track:0jdny0dhgjUwoIp5GkqEaA,Praying,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:1IYVB8NfiRqhdZlTxjspNh,Rainbow,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2017-08-11,https://i.scdn.co/image/ab67616d0000b27355de63b8aaf464fe8146b4f1,1,5,230266,https://p.scdn.co/mp3-preview/a07409c290a938a1be85901d4579d0a3095b51c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRC11701134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.543,0.39,10.0,-7.202,1.0,0.0322,0.489,0.0,0.111,0.303,73.415,4.0,,Kemosabe Records/RCA Records,P (P) 2017 Kemosabe Records,1620 +1621,spotify:track:09IStsImFySgyp0pIQdqAc,The Middle,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:6WY7D3jk8zTrHtmkqqo5GI, spotify:artist:4lDBihdpMlOalxy1jkUbPl","Zedd, Maren Morris, Grey",spotify:album:7nEiwcUSwycvC77kZ9ub7c,The Middle,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:6WY7D3jk8zTrHtmkqqo5GI, spotify:artist:4lDBihdpMlOalxy1jkUbPl","Zedd, Maren Morris, Grey",2018-01-23,https://i.scdn.co/image/ab67616d0000b273fbe22d168a743b782a5e856a,1,1,184732,https://p.scdn.co/mp3-preview/db8102ea01ab5e48d0b01214e408b6ba6db50442?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USUM71800463,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,classic texas country,contemporary country,pop edm",0.753,0.657,7.0,-3.061,1.0,0.0449,0.171,0.0,0.112,0.437,107.01,4.0,,UMGRI Interscope,"C © 2018 Interscope Records, P ℗ 2018 Interscope Records",1621 +1622,spotify:track:4ECvB9frSDegHfKNRh9dwT,4ever,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:0iFKQKmkSxKjoKvI6j45to,The Secret Life Of...,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2005-10-18,https://i.scdn.co/image/ab67616d0000b273dd5ead55bbde87d6f73b86ef,1,1,208973,https://p.scdn.co/mp3-preview/a1fd9db0129ec6350cf5693e51d20d245aa4f096?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB10502659,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.581,0.857,5.0,-2.21,0.0,0.0627,0.00168,0.000166,0.0967,0.565,145.941,4.0,,Sire/Warner Records,"C © 2005 Sire Records. Marketed by Warner Records Inc., A Warner Music Group Company., P ℗ 2005 Sire Records. Marketed by Warner Records Inc., A Warner Music Group Company.",1622 +1623,spotify:track:4C35Vx32FJvaMzHwTZhT48,It Feels So Good,spotify:artist:5xtqw2B8z8JGfDYi2eAZHI,Sonique,spotify:album:67Z7w609Vojpt24nG2GVMW,I Am Happy,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b273983c09ada57f2b26c60a1e90,1,8,237653,https://p.scdn.co/mp3-preview/028068f83d3d988b1661c03e93ab0651f6dd5957?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR10000051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.642,0.638,5.0,-8.321,0.0,0.0303,0.0118,0.000982,0.14,0.599,134.994,4.0,,Universal Music Group,"C © 2010 Universal International Music B.V., P ℗ 2010 Universal International Music B.V.",1623 +1624,spotify:track:04RM7D5FZzFahr4L6QOuW6,(The Lament Of The Cherokee) Indian Reservation,spotify:artist:1cqaF1Hz5pEtXVnthnFVmU,Don Fardon,spotify:album:5RijwyqXiKJDqXKcPstkbZ,Country Story Songs,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2001-11-01,https://i.scdn.co/image/ab67616d0000b273674c510352f4c9fe82d1d766,1,10,201200,https://p.scdn.co/mp3-preview/e7fbd38d1ec30f73c6daa0ec739360b0e0c19b1a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USDEI7702487,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.805,0.471,10.0,-12.998,1.0,0.0506,0.242,0.00514,0.177,0.517,124.619,4.0,,K-Tel,,1624 +1625,spotify:track:1CKd1PnqfYx0H12V9MSaIY,Get Low (with Liam Payne),"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:5pUo3fmmHT8bhCyHE52hA6","Zedd, Liam Payne",spotify:album:0uWfo5h3Sft3dwmOUcthaI,Get Low (with Liam Payne),"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:5pUo3fmmHT8bhCyHE52hA6","Zedd, Liam Payne",2017-07-06,https://i.scdn.co/image/ab67616d0000b273a558887a8b28dcd38ad6e3ef,1,1,204583,https://p.scdn.co/mp3-preview/1ea3334af2e1689b36dabe648185e411425ff0d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71705522,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,pop",0.716,0.917,1.0,-3.674,1.0,0.0527,0.0215,7.91e-06,0.0515,0.501,107.969,4.0,,Universal Music Group,"C © 2017 UMG Recordings, Inc., P An Interscope Records Release; ℗ 2017 UMG Recordings, Inc.",1625 +1626,spotify:track:25iomPYiJrAr57eLho26JF,Heather Honey,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,spotify:album:4dvrkS15TEx1CWrT0NAOiQ,Hanky Panky,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,1999,https://i.scdn.co/image/ab67616d0000b27377baecc8de0b020ef67605fd,1,3,173733,https://p.scdn.co/mp3-preview/f4a03d9bb1b4865fc62c5f632be48452e7675b9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,FR6V80438680,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,rock-and-roll",0.632,0.496,0.0,-11.95,0.0,0.0417,0.439,0.00158,0.0849,0.516,99.356,4.0,,Rdeg,"C 2011, P 1999",1626 +1627,spotify:track:1A4WjuUXeFEVXjwgc7eVZ6,Good People,spotify:artist:3GBPw9NK25X1Wt2OUvOwY3,Jack Johnson,spotify:album:2B9q4KPjOEYu885Keo9dfX,In Between Dreams,spotify:artist:3GBPw9NK25X1Wt2OUvOwY3,Jack Johnson,2005-01-01,https://i.scdn.co/image/ab67616d0000b273628dba01c669d89586967dc5,1,4,208506,https://p.scdn.co/mp3-preview/723afc2f706705f3b0da0de06f92b3c29ef56bfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USMC60400030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.721,0.586,11.0,-5.999,1.0,0.034,0.204,2.21e-05,0.0902,0.918,176.104,4.0,,Jack Johnson,"C © 2005 Jack Johnson, P ℗ 2005 Jack Johnson",1627 +1628,spotify:track:4DIRsQfLk2mfcrIOQNgAlm,Don't Stand So Close To Me - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:3eirZt4jPKEgO8puKpv4ZR,Zenyatta Mondatta,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1980-10-03,https://i.scdn.co/image/ab67616d0000b27368f2dcecc6ecfad792e42fea,1,1,242666,https://p.scdn.co/mp3-preview/33fb1e343adb34e507be23ebcfd5f10f9c98d38b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM0201148,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.806,0.499,2.0,-9.524,1.0,0.0642,0.0451,0.000729,0.038,0.505,140.337,4.0,,A&M,"C © 2003 A&M Records, P ℗ 2003 A&M Records",1628 +1629,spotify:track:1eaMxcG8yP0CdIAU0ZFBn6,Geronimo,spotify:artist:7n2bs5q3whSUnindQssIGC,The Shadows,spotify:album:1a4GpMZ4OqtNuiqx4ObaUe,A's B's & EP's,spotify:artist:7n2bs5q3whSUnindQssIGC,The Shadows,2003-05-05,https://i.scdn.co/image/ab67616d0000b27383317fce7c3c8485761d1d31,1,21,139506,https://p.scdn.co/mp3-preview/756fd58e10a7205522818d1a86070290f1169822?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBAYE6300098,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.5,0.593,9.0,-10.111,0.0,0.0307,0.689,0.0368,0.06,0.475,138.245,4.0,,Parlophone UK,"C © 2003 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2003 Parlophone Records Ltd, a Warner Music Group Company",1629 +1630,spotify:track:4xh7W7tlNMIczFhupCPniY,Go Your Own Way - 2004 Remaster,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:0BwWUstDMUbgq2NYONRqlu,Rumours (Super Deluxe),spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1977-02-04,https://i.scdn.co/image/ab67616d0000b273e52a59a28efa4773dd2bfe1b,1,5,223613,https://p.scdn.co/mp3-preview/c30098a9cf2a7fc590d3c06af4dc1a4fdc8010b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USWB11301114,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.586,0.941,5.0,-5.139,1.0,0.0375,0.0167,0.000776,0.068,0.831,135.448,4.0,,Rhino/Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",1630 +1631,spotify:track:1y5V5qja332UyMeUurFhDS,Private Idaho,spotify:artist:3gdbcIdNypBsYNu3iiCjtN,The B-52's,spotify:album:1K4t7Jv7DuolDWnFLxKxkd,Wild Planet,spotify:artist:3gdbcIdNypBsYNu3iiCjtN,The B-52's,1980,https://i.scdn.co/image/ab67616d0000b273b58eccb715f3e9af608dec26,1,5,216360,https://p.scdn.co/mp3-preview/7cf843426ea28b2b13d07dbf1c3cf272c9b555c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB18000106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,new romantic,new wave,new wave pop,permanent wave,post-punk,rock,zolo",0.551,0.882,2.0,-6.808,1.0,0.0454,0.00724,1.13e-05,0.322,0.888,166.403,4.0,,Warner Records,"C © 1980 Warner Records Inc., P ℗ 1980 Warner Records Inc.",1631 +1632,spotify:track:4CTX9iU2a0Q9vM2T4YMUQL,Stole,spotify:artist:3AuMNF8rQAKOzjYppFNAoB,Kelly Rowland,spotify:album:3nrQeLjGJNdYsjJ8JVPKAf,Simply Deep,spotify:artist:3AuMNF8rQAKOzjYppFNAoB,Kelly Rowland,2002-10-22,https://i.scdn.co/image/ab67616d0000b273e2fac5d29f0e10450bf287a9,1,1,249293,https://p.scdn.co/mp3-preview/ec71097362dc781fef7f0a1339aaf6731c26e122?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM10211180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dance pop,hip pop,r&b,urban contemporary",0.649,0.718,7.0,-4.984,0.0,0.0594,0.00676,4.26e-06,0.174,0.477,79.993,4.0,,Columbia,P (P) 2002 Sony Music Entertainment Inc.,1632 +1633,spotify:track:5xzCzOAOfRi4DOttSzvznR,Lullaby,"spotify:artist:1IueXOQyABrMOprrzwQJWN, spotify:artist:4fwuXg6XQHfdlOdmw36OHa","Sigala, Paloma Faith",spotify:album:1SR7c6j94aiuYEhUrfTbZ7,Lullaby,"spotify:artist:1IueXOQyABrMOprrzwQJWN, spotify:artist:4fwuXg6XQHfdlOdmw36OHa","Sigala, Paloma Faith",2018-02-23,https://i.scdn.co/image/ab67616d0000b273e9330809e667c48fa179f56b,1,1,204022,https://p.scdn.co/mp3-preview/a00555fc5b366a40c10f8705ba0afddccf2abd6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBCEN1700257,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop dance,uk dance,british soul,talent show,uk pop",0.725,0.834,5.0,-3.913,0.0,0.037,0.0784,1.27e-05,0.0834,0.859,120.026,4.0,,Ministry of Sound Recordings,"P (P) 2018 Ministry of Sound Recordings Limited / B1 Recordings GmbH, a Sony Music Entertainment Company",1633 +1634,spotify:track:24iNer6lkG8seq7vm2zDVl,Are You With Me - Radio Edit,spotify:artist:7f5Zgnp2spUuuzKplmRkt7,Lost Frequencies,spotify:album:51gRYg9ieaRQTaCbsYwCpl,Less Is More,spotify:artist:7f5Zgnp2spUuuzKplmRkt7,Lost Frequencies,2016-10-21,https://i.scdn.co/image/ab67616d0000b273713e2e100eb4aa4cb699f9fd,1,12,138013,https://p.scdn.co/mp3-preview/b35aeeb23f7bea0cfdd3d1b8c1b787f4a99231f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF711403495,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"belgian edm,edm,pop dance,tropical house",0.762,0.609,5.0,-8.1,0.0,0.0356,0.277,2.37e-05,0.12,0.388,121.022,4.0,,Astrx,"C © 2016 LOST & CIE, under exclusive license to Armada Music B.V. under exclusive license to Astrx Music, P ℗ 2016 LOST & CIE, under exclusive license to Armada Music B.V. under exclusive license to Astrx Music",1634 +1635,spotify:track:1O0xeZrBDbq7HPREdmYUYK,"Bad, Bad Leroy Brown",spotify:artist:1R6Hx1tJ2VOUyodEpC12xM,Jim Croce,spotify:album:3q7L4mosMmOcmQNE1d0H4s,Life & Times,spotify:artist:1R6Hx1tJ2VOUyodEpC12xM,Jim Croce,1973-07-01,https://i.scdn.co/image/ab67616d0000b273124a8161fdeb39f3cd50c2f2,1,8,182240,https://p.scdn.co/mp3-preview/5624c561d5a05776c9f97b29afd3324697ecd659?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAJE7100650,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.697,0.676,7.0,-10.742,1.0,0.0402,0.706,0.0,0.0824,0.852,148.072,4.0,,R2M,"C © 2013 BMG Rights Management (US) LLC, P ℗ 2013 BMG Rights Management (US) LLC",1635 +1636,spotify:track:69eY10yjZTfXAKg1zkqFhi,Hot Hot Hot,spotify:artist:1CzWsbK2Rdn0RlWYZGgnAm,Arrow,spotify:album:2xlgQDRJIjQxiXdJEekBwU,A Caribbean Party: The Best of Arrow,spotify:artist:1CzWsbK2Rdn0RlWYZGgnAm,Arrow,2013-06-05,https://i.scdn.co/image/ab67616d0000b2739fa6107b701773054a3a2bde,1,1,404426,https://p.scdn.co/mp3-preview/8afbe77cd6947e4739a42841dcde381cf9f8fd9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB5KW1300306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,calypso,0.759,0.694,5.0,-9.589,1.0,0.0428,0.00185,0.00056,0.0552,0.835,120.025,4.0,,Chrysalis Copyrights,"C © 2013 Chrysalis Copyrights Ltd., a BMG Company, P ℗ 2013 Chrysalis Copyrights Ltd., a BMG Company",1636 +1637,spotify:track:1Y6DGcTCuMAtw8KB3h4W3q,Around the World,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:0fLhefnjlIV3pGNF9Wo8CD,Californication,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,1999-06-08,https://i.scdn.co/image/ab67616d0000b273a9249ebb15ca7a5b75f16a90,1,1,239213,https://p.scdn.co/mp3-preview/ba9b9d087c8a23b57ca7c9ed2e0c6689d0628a87?cid=9950ac751e34487dbbe027c4fd7f8e99,True,48,USWB19900687,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.51,0.943,0.0,-3.572,1.0,0.171,0.00421,0.584,0.062,0.776,96.48,4.0,,Warner Records,"C © 1999 Warner Records Inc., P ℗ 1999 Warner Records Inc.",1637 +1638,spotify:track:0VhgEqMTNZwYL1ARDLLNCX,Can I Be Him,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:7oiJYvEJHsmYtrgviAVIBD,Back from the Edge,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2016-10-28,https://i.scdn.co/image/ab67616d0000b27320beb61f61fcbeb33b10a9ab,1,4,246880,https://p.scdn.co/mp3-preview/8cb528d849cff993297c9444e1b6a56dc43c801e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,DEE861600588,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.696,0.543,11.0,-6.164,1.0,0.0489,0.308,0.0,0.0939,0.479,107.969,4.0,,Columbia,P (P) 2016 Sony Music Entertainment Germany GmbH,1638 +1639,spotify:track:486CsL6VffZIYkrleTvOcN,Two Friends,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:2Er4dMmeoPNEZ6t6ShWxJ4,Two Friends,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2024-06-27,https://i.scdn.co/image/ab67616d0000b27338ceba4afa9457f9178b4d6e,1,1,184539,,False,17,AUBM02400207,spotify:user:bradnumber1,2024-08-04T04:21:21Z,australian pop,0.537,0.857,7.0,-4.396,1.0,0.0748,0.0256,0.0,0.175,0.594,156.063,4.0,,Sony Music Entertainment,P (P) 2024 Amy Shark under exclusive licence to Sony Music Entertainment Australia Pty Ltd,1639 +1640,spotify:track:5gK6vM9QeVerf07PHsnGCd,Turn Up The Love,"spotify:artist:698hF4vcwHwPy8ltmXermq, spotify:artist:4jbcqKzc4Wuy6MivHhzPrP","Far East Movement, Cover Drive",spotify:album:78ysj0YXG9moP8Gv9izzm4,Dirty Bass (Deluxe),spotify:artist:698hF4vcwHwPy8ltmXermq,Far East Movement,2012,https://i.scdn.co/image/ab67616d0000b27374bbe4c371b16d97f112f0ba,1,4,195960,https://p.scdn.co/mp3-preview/3ffb29f39a596fbcdd3bef748907b573bdc80cd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71204292,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"asian american hip hop,dance pop,pop rap,barbadian pop,talent show",0.752,0.872,6.0,-4.186,1.0,0.117,0.12,0.0,0.234,0.677,123.888,4.0,,Cherrytree Records/Kierszenbaum 33%,"C © 2013 Interscope Records, P ℗ 2013 Interscope Records",1640 +1641,spotify:track:2Z8WuEywRWYTKe1NybPQEW,Ride,spotify:artist:3YQKmKGau1PzlVlkL1iodx,Twenty One Pilots,spotify:album:3cQO7jp5S9qLBoIVtbkSM1,Blurryface,spotify:artist:3YQKmKGau1PzlVlkL1iodx,Twenty One Pilots,2015-05-15,https://i.scdn.co/image/ab67616d0000b2732df0d98a423025032d0db1f7,1,3,214506,https://p.scdn.co/mp3-preview/b571ceecaadc03941bdf4e683ea26e4e6d3f7c17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USAT21500598,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,pov: indie,rock",0.645,0.713,6.0,-5.355,1.0,0.0393,0.00835,0.0,0.113,0.566,74.989,4.0,,Fueled By Ramen,"C © 2015 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2015 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",1641 +1642,spotify:track:4ZVZBc5xvMyV3WzWktn8i7,Everyday People,spotify:artist:5m8H6zSadhu1j9Yi04VLqD,Sly & The Family Stone,spotify:album:7iwS1r6JHYJe9xpPjzmWqD,Stand,spotify:artist:5m8H6zSadhu1j9Yi04VLqD,Sly & The Family Stone,1969-05-03,https://i.scdn.co/image/ab67616d0000b273147e35fd67f22f92cb587c3b,1,6,141506,https://p.scdn.co/mp3-preview/99614fb587d12a17a3a054a53048064af25d4066?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM19913826,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,funk,funk rock,p funk,psychedelic soul,soul,southern soul",0.807,0.497,7.0,-10.656,1.0,0.0297,0.307,0.0327,0.043,0.765,114.524,4.0,,Epic/Legacy,P Originally released 1969. All rights reserved Sony Music Entertainment,1642 +1643,spotify:track:5RSeCwyPtZckl0GNNj7Rv5,Castles in the Air,spotify:artist:1gRNBaI4yn6wCCTvRhGWh8,Don McLean,spotify:album:10o5FNNNiQyuzAQnzrAlRa,Believers,spotify:artist:1gRNBaI4yn6wCCTvRhGWh8,Don McLean,1981-10-29,https://i.scdn.co/image/ab67616d0000b2739f268ea79df9b3102ef386d9,1,1,222786,https://p.scdn.co/mp3-preview/0a271bc61c98b43d021293ed81f315f5aff341cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USYRC2000112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.421,0.473,4.0,-13.436,1.0,0.0333,0.361,9.93e-06,0.288,0.717,84.503,4.0,,StarVista Music,"C © 2020 Benny Bird Company Inc., P ℗ 1981 Benny Bird Company Inc.",1643 +1644,spotify:track:5AMvBCtX2rspUdoeJ9IsPN,Wild Wild West (feat. Dru Hill & Kool Mo Dee) - Album Version With Intro,"spotify:artist:41qil2VaGbD194gaEcmmyx, spotify:artist:1255GTUKNCLCTvH9ctD4cT, spotify:artist:2RE8NwNxsOyuNZDD0jRxHP","Will Smith, Dru Hill, Kool Moe Dee",spotify:album:38ZO2nTo4L4PNtubKwtiAk,Willennium,spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,1999-11-16,https://i.scdn.co/image/ab67616d0000b2737b0d0b56b568a7605dcebdd0,1,14,268453,https://p.scdn.co/mp3-preview/63cbcd86e2389cc67ce6a0a6d528545f120c7b93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USSM19901505,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap,contemporary r&b,r&b,urban contemporary,east coast hip hop,harlem hip hop,new jack swing,old school hip hop",0.861,0.597,10.0,-7.221,0.0,0.162,0.0983,0.0,0.176,0.694,107.016,4.0,,Columbia,P (P) 1999 SONY BMG MUSIC ENTERTAINMENT,1644 +1645,spotify:track:0dXPka1K0Fjiyl3cLlVAk6,Lovin' Each Day,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,spotify:album:67Z7w609Vojpt24nG2GVMW,I Am Happy,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b273983c09ada57f2b26c60a1e90,1,3,211813,https://p.scdn.co/mp3-preview/ebae33c9f03971413b0861fbb07e284c2a2f506e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0100038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.539,0.917,1.0,-5.11,1.0,0.0701,0.0202,2.61e-06,0.298,0.833,106.675,4.0,,Universal Music Group,"C © 2010 Universal International Music B.V., P ℗ 2010 Universal International Music B.V.",1645 +1646,spotify:track:0qi4b1l0eT3jpzeNHeFXDT,Just Can't Get Enough,spotify:artist:762310PdDnwsDxAQxzQkfX,Depeche Mode,spotify:album:0Zp2eVzR9FW6lKX05lRpcu,Speak and Spell (Deluxe),spotify:artist:762310PdDnwsDxAQxzQkfX,Depeche Mode,1981-11-02,https://i.scdn.co/image/ab67616d0000b27388ffe8c41647856e6fa5e1ab,1,11,220893,https://p.scdn.co/mp3-preview/1fd77f7080608d8349aca06f53e57b0a368f2234?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,GBAJH0600205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,permanent wave,rock,synthpop",0.766,0.772,0.0,-9.362,1.0,0.0353,0.403,0.0584,0.183,0.919,128.168,4.0,,Venusnote Ltd.,P (P) 1981 Venusnote Ltd. under exclusive license to Sony Music Entertainment International Ltd,1646 +1647,spotify:track:1fHusGYQNiiN9JdsJw1W15,Amigos Para Siempre - Friends for Life,"spotify:artist:4aP1lp10BRYZO658B2NwkG, spotify:artist:1ahGKezyX9Rl7GuEF2tc15, spotify:artist:7Ead768rc4ShGxnqtqccU5","Andrew Lloyd Webber, José Carreras, Sarah Brightman",spotify:album:38snB4JGVib5HvtkSWzZxx,Amigos Para Siempre - Friends For Life,spotify:artist:1ahGKezyX9Rl7GuEF2tc15,José Carreras,1992-07-20,https://i.scdn.co/image/ab67616d0000b27300e21b0a05fd857ae5e643b5,1,16,276133,https://p.scdn.co/mp3-preview/0221ac6d791818437a6f6ad36035df7e2c16ca96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,DEA619250580,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"broadway,west end,classical tenor,opera,operatic pop,operatic pop",0.511,0.47,10.0,-11.69,1.0,0.0421,0.7,8.24e-06,0.163,0.364,110.21,4.0,,EastWest Germany,"C © 1992 eastwest records gmbh, P ℗ 1992 WARNER MUSIC Netherlands B.V.",1647 +1648,spotify:track:1hzriqSOMWW3OVlSuTIaWq,Two Tribes,spotify:artist:1mZu3rO7qSD09GdDpePHhY,Frankie Goes To Hollywood,spotify:album:0Ql9kv7KQQm6Qyd2dHsIKm,Welcome to the Pleasuredome (25th Anniversary Deluxe Edition),spotify:artist:1mZu3rO7qSD09GdDpePHhY,Frankie Goes To Hollywood,1984-10-29,https://i.scdn.co/image/ab67616d0000b27373e7d53f1136b493fb392c73,1,5,208333,https://p.scdn.co/mp3-preview/dd6fe5d8bc299f35e3149a2f813b6eb3e559bce5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHW9900024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,hi-nrg,new romantic,new wave,new wave pop,synthpop",0.531,0.739,2.0,-8.551,1.0,0.0337,0.00259,0.0642,0.299,0.2,130.188,4.0,,Salvo,"C 1984 ZTT Records Limited under exclusive license to Union Square Music Limited, a BMG Company, P 1984 ZTT Records Limited under exclusive license to Union Square Music Limited, a BMG Company",1648 +1649,spotify:track:1DWFaw4yAwcIRIFBU9NpK0,If Not for You,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:4LZhAy9UsJ0EiqqeKyrlts,Hopelessly Devoted: The Hits,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2018-06-08,https://i.scdn.co/image/ab67616d0000b273ea73235699dcf414d1e1adae,1,9,170472,https://p.scdn.co/mp3-preview/b47c5e4dc5fe183b9817cfcc04aef632afb1b0f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,QM75X1500008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.611,0.675,11.0,-7.368,1.0,0.0308,0.569,0.000304,0.177,0.903,118.983,4.0,,Sony Music Entertainment,"P (P) 2018 ONJ Productions, Ltd. under exclusive licence to Sony Music Entertainment Australia Pty Ltd",1649 +1650,spotify:track:142rTdgKhe55q9LdSU4cYF,Marry Me,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:1OdcBxCNY52OXH0r4odXqP,Tattoos,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2013-09-10,https://i.scdn.co/image/ab67616d0000b273ba30e4d27e93015180b4924d,1,3,225026,https://p.scdn.co/mp3-preview/9a5d36aefffe41e14e2a9b7c2a702a318f049e16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USWB11303186,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.568,0.631,7.0,-5.623,1.0,0.0273,0.033,0.0,0.144,0.23,105.096,4.0,,Beluga Heights/Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc.",1650 +1651,spotify:track:0OwX5aROoW1Iip8FV51Efg,Alarm,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,spotify:album:2Z3HQO6NL3812mnNj7htXv,Alarm,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,2016-05-20,https://i.scdn.co/image/ab67616d0000b273cc79eb11514c20ac210d0151,1,1,205593,https://p.scdn.co/mp3-preview/98c626b587b5b8002dc58c36af6b1fa1f3b75622?cid=9950ac751e34487dbbe027c4fd7f8e99,True,51,GBAHS1600223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.756,0.589,0.0,-5.093,1.0,0.232,0.0812,0.0,0.176,0.811,146.928,4.0,,Major Tom's / Atlantic,"C © 2016 Major Tom's / Asylum Records, a division of Warner Music UK Limited, P ℗ 2016 Major Tom's / Asylum Records, a division of Warner Music UK Limited",1651 +1652,spotify:track:1lMilHGUABFaKbh9u6I1QS,The Creeps (Radio Edit),"spotify:artist:2ikT9iKpjKsyVX9esa3AZC, spotify:artist:7dc6hUwyuIhrZdh80eaCEE","Camille Jones, Fedde Le Grand",spotify:album:5HMkTLbbYDTCzEOdBiAmXO,The Creeps,"spotify:artist:2ikT9iKpjKsyVX9esa3AZC, spotify:artist:7dc6hUwyuIhrZdh80eaCEE","Camille Jones, Fedde Le Grand",2011-12-19,https://i.scdn.co/image/ab67616d0000b2731c7a48c433f51e82f1f90c0c,1,1,150253,https://p.scdn.co/mp3-preview/c9e0f6e30410e742c9fbf325f765d9bcd0493367?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,DKUCA0600065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch house,edm,electro house,house,pop dance,progressive electro house,progressive house",0.858,0.866,1.0,-6.649,1.0,0.0596,0.256,0.0258,0.0627,0.744,127.924,4.0,,Lifted House,C (C) 2011 Lifted House,1652 +1653,spotify:track:0g31yfQdoNIeOznZRBfaWP,Never Gonna Leave This Bed,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:1snrPQMoTrBsKl73wzSxbn,Hands All Over (Revised International Standard version),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2010,https://i.scdn.co/image/ab67616d0000b2739585ff55fff75c5c07a619cb,1,5,196706,https://p.scdn.co/mp3-preview/e2bca2ca1c6d335003b1a83544c4ec0d2bfab3a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USUM71019656,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.608,0.817,11.0,-4.207,1.0,0.0296,0.104,0.0,0.247,0.47,117.364,4.0,,Interscope Records*,"C © 2011 A&M/Octone Records, P ℗ 2011 Interscope Records",1653 +1654,spotify:track:48dnzYTt8z03FNvblPWa6C,Guilty Conscience - Radio Version,"spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:6DPYiyq5kWVQS4RGwxzPC7","Eminem, Dr. Dre",spotify:album:10nO3EJJDMm6j6d2uK3Jah,The Slim Shady LP (Expanded Edition),spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,1999-02-23,https://i.scdn.co/image/ab67616d0000b273d12909c6ebc83cb4c6bef6f4,1,25,199773,https://p.scdn.co/mp3-preview/a35bd0f57141dab67d9ba8955353c4f64bbb5479?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USIR10312535,spotify:user:bradnumber1,2022-01-13T01:40:48Z,"detroit hip hop,hip hop,rap,g funk,gangster rap,hip hop,rap,west coast rap",0.824,0.768,4.0,-5.391,0.0,0.216,0.0559,0.0,0.369,0.529,91.132,4.0,,Aftermath,"C © 2019 UMG Recordings, Inc., P This Compilation ℗ 2019 UMG Recordings, Inc.",1654 +1655,spotify:track:30nOqdfXlRO7yzLr6jlLKN,Help Is On Its Way,spotify:artist:6clbbhnIqpHnqxwtOWcilg,Little River Band,spotify:album:1iZgFhl4ik5FfPxaRiv3RN,The Definitive Collection,spotify:artist:6clbbhnIqpHnqxwtOWcilg,Little River Band,2002-01-01,https://i.scdn.co/image/ab67616d0000b2739fe8247af57cd127ab73d89f,1,5,236133,https://p.scdn.co/mp3-preview/9ffa065f8de3617387f36fbc106d6ded37c77dfb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM00200095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.657,0.533,7.0,-8.77,1.0,0.0275,0.056,5.3e-06,0.0729,0.7,106.755,4.0,,EMI Music Australia,"C © 2005 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2002 EMI Recorded Music Australia Pty Ltd.",1655 +1656,spotify:track:7l7DhnRVoDC87sJrDnVyEd,Trust Me,spotify:artist:3XPRtRLPlhM1KHk3P1vQ3G,I'm Talking,spotify:album:3vRIiH3fltcWxUFtAbTBw6,Bear Witness (Collectors Edition),spotify:artist:3XPRtRLPlhM1KHk3P1vQ3G,I'm Talking,2018-03-23,https://i.scdn.co/image/ab67616d0000b273c99551af2739488020fb7a4d,1,10,231008,https://p.scdn.co/mp3-preview/a5c0f60dbe67521cc0d874b92c35f98680ae35b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01713440,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian r&b,0.689,0.947,2.0,-3.821,0.0,0.0496,0.191,5.69e-05,0.229,0.932,123.628,4.0,,Bloodlines,"C 2017 Bloodlines, P 2017 Bloodlines",1656 +1657,spotify:track:0cIlSvjciE2jQors3StoeK,Sway Sway Baby!,spotify:artist:0EdNPfEHC714LHuN0NPIyU,Short Stack,spotify:album:1Q5kXLIjDPlX6Qav7mVoOR,Stack Is The New Black,spotify:artist:0EdNPfEHC714LHuN0NPIyU,Short Stack,2008-01-01,https://i.scdn.co/image/ab67616d0000b273521f853ff4f2193dff4e075e,1,4,169093,https://p.scdn.co/mp3-preview/d010ec3c6aa5100fa2f55336f19159cab2fa661e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70801375,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.597,0.927,1.0,-4.422,1.0,0.059,0.0347,0.0,0.423,0.735,155.067,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Sunday Morning Records Pty Ltd, P ℗ 2008 Sunday Morning Records Pty Ltd",1657 +1658,spotify:track:5BKQp2vvB7vUbeBBqlTvYG,I Feel the Earth Move,spotify:artist:40enFxfEXXsEXKOt1vgx0k,Martika,spotify:album:0aKOU8WgU7c8rpb69O1Y1V,More Than You Know - The Best Of Martika,spotify:artist:40enFxfEXXsEXKOt1vgx0k,Martika,1997,https://i.scdn.co/image/ab67616d0000b2738e6b5c0cf02a020ff0697840,1,1,254400,https://p.scdn.co/mp3-preview/219063cccfcdede70e06e438529a5de0cd376a50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19906495,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"minneapolis sound,new romantic,new wave pop",0.708,0.94,7.0,-6.543,1.0,0.0289,0.0423,0.0124,0.0381,0.964,124.717,4.0,,Columbia,P (P) 1997 Sony Music Entertainment (UK) Ltd.,1658 +1659,spotify:track:4CVMabbo9UcpwwSHICEaZu,Mama Told Me (Not To Come),spotify:artist:4FAEZeJcsYYBkNq2D3KGTV,Three Dog Night,spotify:album:5Kmb6R2nnEPqOiDUA1Bl8F,"Celebrate: The Three Dog Night Story, 1965–1975",spotify:artist:4FAEZeJcsYYBkNq2D3KGTV,Three Dog Night,1993-12-07,https://i.scdn.co/image/ab67616d0000b273a711dd1a40be784af1983e20,1,15,200533,https://p.scdn.co/mp3-preview/0c61781a7df8f3ce2cac35f5dbc7721450588631?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USMC17049752,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,mellow gold,soft rock",0.699,0.739,1.0,-10.534,1.0,0.0467,0.301,0.00375,0.242,0.781,120.503,4.0,,Geffen,"C © 1993 UMG Recordings, Inc., P This Compilation ℗ 1993 UMG Recordings, Inc.",1659 +1660,spotify:track:6b3b7lILUJqXcp6w9wNQSm,Cheap Thrills (feat. Sean Paul),"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN, spotify:artist:3Isy6kedDrgPYoTS1dazA9","Sia, Sean Paul",spotify:album:4BTlXiDFjyJfpHjR7jlEJo,Cheap Thrills (feat. Sean Paul),spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2016-02-11,https://i.scdn.co/image/ab67616d0000b2739f5a5f3d50cd3939ba8e465c,1,1,224813,https://p.scdn.co/mp3-preview/b0a95d3c11bbe1a27f5e9a3f01abb5fef23bf159?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USRC11600201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,dancehall,pop,pop rap",0.592,0.8,6.0,-4.931,0.0,0.215,0.0561,2.01e-06,0.0775,0.728,89.972,4.0,,Monkey Puzzle Records/RCA Records,"P (P) 2015 Monkey Puzzle Records, under exclusive license to RCA Records",1660 +1661,spotify:track:5Nm9ERjJZ5oyfXZTECKmRt,Stay With Me,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:08jWgM4vSkTose4blKBWov,In The Lonely Hour,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2014-05-26,https://i.scdn.co/image/ab67616d0000b273b11bdc91cb9ac6b14f5c1dae,1,3,172723,https://p.scdn.co/mp3-preview/a6673e86dccaf0232ab041314ec716e03e2f34fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,GBUM71308833,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.413,0.42,0.0,-6.444,1.0,0.0416,0.588,6.39e-05,0.11,0.185,84.126,4.0,,PLG - Capitol,"C © 2014 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2014 Capitol Records, a division of Universal Music Operations Limited",1661 +1662,spotify:track:0jDWRUbxSn8zQlwFbeLHwo,Evacuate The Dancefloor,spotify:artist:0N0d3kjwdY2h7UVuTdJGfp,Cascada,spotify:album:2VdVCzqQ6MyOSLEZh75iMn,Evacuate The Dancefloor,spotify:artist:0N0d3kjwdY2h7UVuTdJGfp,Cascada,2009-01-01,https://i.scdn.co/image/ab67616d0000b273a1609ddc99678b2f3657d3ec,1,1,207200,https://p.scdn.co/mp3-preview/b671b4bdbf4aa3c5547c0398d753903cd4d8ff7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,DEHK90911201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,german techno,melbourne bounce international",0.762,0.702,0.0,-5.87,1.0,0.0432,0.0167,0.0,0.314,0.898,127.029,4.0,,UMOD (Universal Music On Demand),"C © 2009 zooland Music GmbH Under Exclusive License To All Around The World Limited / Universal Music TV, A Division of Universal Music Operations Ltd, P ℗ 2009 zooland Music GmbH Under Exclusive License To All Around The World Limited / Universal Music TV, A Division of Universal Music Operations Ltd",1662 +1663,spotify:track:4LBVKM8deVYSltq1CNHTe0,Love Is All Around,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,spotify:album:0cXWcOhishaehiEhLIXnuB,Brand New Day,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,2007,https://i.scdn.co/image/4cfe6c7aa8a231436f2193d7cbd44b0b703224c9,1,4,206066,https://p.scdn.co/mp3-preview/8d4607dc6cc272b3949f55f1c8a1094afa2a272c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUOY00700013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian talent show",0.582,0.913,9.0,-3.208,1.0,0.102,0.185,0.0,0.107,0.307,115.91,4.0,,Shock Entertainment,C 2007 Public Opinion Music Pty Ltd. under agreement with Shock Records,1663 +1664,spotify:track:1M16Z9QkJr67ToixuO9zx2,The Man Says,spotify:artist:5hA2fNOsOjec1PiwPcrQ3k,Ruby Velle & The Soulphonics,spotify:album:4czOMMgwzSR4Ifj1QSQacO,It's About Time,"spotify:artist:5hA2fNOsOjec1PiwPcrQ3k, spotify:artist:1MNIGuWcmHqrvCtsfGbdqr","Ruby Velle & The Soulphonics, Ruby Velle",2012-09-04,https://i.scdn.co/image/ab67616d0000b27353e83c4e8dde374372cbe131,1,3,248160,https://p.scdn.co/mp3-preview/ad2311ceb9d575ba007a1586e5e8e98f7bed5d70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMPDX1200003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.629,0.734,5.0,-3.528,0.0,0.0292,0.362,0.00634,0.542,0.864,98.331,4.0,,Gemco Recording Group,"C 2012 Gemco Recording Group, P 2012 Gemco Recording Group",1664 +1665,spotify:track:4bPQs0PHn4xbipzdPfn6du,I Write Sins Not Tragedies,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:2YeOhhJg3OWpN0F1VYPxtW,A Fever You Can't Sweat Out,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,2005-09-27,https://i.scdn.co/image/ab67616d0000b2730a8881b0d247346c3c447bf3,1,10,186634,https://p.scdn.co/mp3-preview/6c56a9bd72eeab840a88d78edc78a56de6320fe8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,US56V0507710,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.569,0.83,9.0,-4.106,0.0,0.14,0.0807,0.0,0.114,0.609,170.094,4.0,,Decaydance Records / Fueled By Ramen,"C © 2005 Fueled By Ramen, LLC, P ℗ 2005 Fueled By Ramen, LLC",1665 +1666,spotify:track:5IUOU5xkzGHsRFOYNu3GSK,No Judgement,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,spotify:album:2KA0hztJvCs7eD7nv5316T,No Judgement,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,2020-02-07,https://i.scdn.co/image/ab67616d0000b2731ac7c5c1a8a9c501ad420484,1,1,176283,https://p.scdn.co/mp3-preview/435924cbff4dc23b495c142ae40e8ea9e830a351?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USUG11904306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.723,0.726,1.0,-3.835,0.0,0.0473,0.0564,0.000129,0.057,0.962,100.051,4.0,,Capitol Records,"C © 2020 Neon Haze Music Ltd, under exclusive license to UMG Recordings, Inc., P ℗ 2020 Neon Haze Music Ltd, under exclusive license to UMG Recordings, Inc.",1666 +1667,spotify:track:2GsZYeL8grRgWahecjjTD4,Back Home,spotify:artist:2oX42qP5ineK3hrhBECLmj,Andy Grammer,spotify:album:22jTIPYUDlikqO2pGIbUQq,Magazines Or Novels,spotify:artist:2oX42qP5ineK3hrhBECLmj,Andy Grammer,2014-08-08,https://i.scdn.co/image/ab67616d0000b273eae2209aab58f8d4a66e718a,1,2,199106,https://p.scdn.co/mp3-preview/655f7f00ad60f105776b749f4b2909903c509a25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USZXT1400159,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,post-teen pop",0.616,0.849,11.0,-6.496,1.0,0.0493,0.0388,0.0,0.0941,0.627,99.972,4.0,,Liberator Music,"C 2014 S-Curve Records, P 2014 S-Curve Records",1667 +1668,spotify:track:6QhXQOpyYvbpdbyjgAqKdY,Cecilia,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,spotify:album:0JwHz5SSvpYWuuCNbtYZoV,Bridge Over Troubled Water,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,1970-01-26,https://i.scdn.co/image/ab67616d0000b273ba7fe7dd76cd4307e57dd75f,1,3,174826,https://p.scdn.co/mp3-preview/4a993fc133f84bd23241d0ae039d95215435bda9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM16900181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,melancholia,mellow gold,rock,soft rock",0.755,0.876,0.0,-8.867,1.0,0.0362,0.357,5.17e-06,0.22,0.954,102.762,4.0,,Columbia,"P (P) Originally released 1970. All rights reserved by Columbia Records, a division of Sony Music Entertainment",1668 +1669,spotify:track:1W8WU2jKWBcfze1mMnspGf,Patches,spotify:artist:6c9LocElsoEOUljpnAvltV,Dickie Lee,spotify:album:4v8jRAVXKbiaXELB1uuJDj,Rare Oldies But Goodies,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-01-01,https://i.scdn.co/image/ab67616d0000b27341c3cdc2dd802f1ec6a1f8e8,1,31,180133,https://p.scdn.co/mp3-preview/d94db88ea33f3ad9f28839fd6ab87f9b394c5274?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA371175658,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.406,0.254,9.0,-12.599,1.0,0.029,0.902,1.47e-06,0.192,0.526,102.754,3.0,,Master Classics Records,"C (C) 2011 Master Classics Records, P (P) 2011 Master Classics Records",1669 +1670,spotify:track:3vv9phIu6Y1vX3jcqaGz5Z,Roses,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:6jsjhAEteAlY0vCiLvMLBA","The Chainsmokers, ROZES",spotify:album:2GFflENKz28RcMoSuulPZC,Roses,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2015-06-16,https://i.scdn.co/image/ab67616d0000b2738d2cfad007b9431f48aef135,1,1,226738,https://p.scdn.co/mp3-preview/a0f968725f2164068bee9379d9fce23fbe9bea74?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USQX91500801,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,alt z,electropop,indie poptimism",0.713,0.802,4.0,-7.055,1.0,0.0561,0.0435,0.00377,0.309,0.343,100.001,4.0,,Disruptor Records/Columbia,P (P) 2015 Disruptor Records/Columbia Records,1670 +1671,spotify:track:3NN4WPApckHyTZ6pPoRRWc,Rag Doll,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,spotify:album:2B5SCfWslmqONJV0c15yzc,Rag Doll,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,1964-07-01,https://i.scdn.co/image/ab67616d0000b27394f37b569efb68398e3acf41,1,6,180066,https://p.scdn.co/mp3-preview/c3078f7fbb8f6ff075a1a14a81f62bb000485f87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USRH11400292,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,lounge,northern soul,rock-and-roll,rockabilly",0.481,0.477,10.0,-8.961,1.0,0.0303,0.654,1.48e-05,0.0761,0.68,122.369,4.0,,Rhino,"C © 1964 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Rhino Entertainment Company. All Rights Reserved., P ℗ 1964 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Rhino Entertainment Company. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",1671 +1672,spotify:track:6E11E0lT5Zy7yb6iT3y8DN,Want U Back,spotify:artist:4m4SfDVbF5wxrwEjDKgi4k,Cher Lloyd,spotify:album:16liSbjaxbH0oamsQlqJ4Z,Sticks & Stones,spotify:artist:4m4SfDVbF5wxrwEjDKgi4k,Cher Lloyd,2012-10-02,https://i.scdn.co/image/ab67616d0000b273392d37cdeccdcdb378fed318,1,1,214573,https://p.scdn.co/mp3-preview/217bd737fc375c9678f03a6cba3904eabbf80b96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBHMU1100387,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,talent show",0.694,0.891,9.0,-2.94,1.0,0.0949,0.0562,0.0,0.561,0.563,97.939,4.0,,Syco Music UK,"P Tracks 1, 2, 6-8 & 10 (P) 2011 and Tracks 3-5 & 9 (P) 2012 Simco Limited under exclusive license to Sony Music Entertainment UK Limited",1672 +1673,spotify:track:2G2YzndIA6jeWFPBXhUjh5,Be My Baby,spotify:artist:7CyeXFnOrfC1N6z4naIpgo,The Ronettes,spotify:album:3vLFWR3fLqfY82WGvaLuyV,Be My Baby: The Very Best of The Ronettes,spotify:artist:7CyeXFnOrfC1N6z4naIpgo,The Ronettes,2011-02-22,https://i.scdn.co/image/ab67616d0000b2734694c5b97d3a88efb5fc71b5,1,2,160906,https://p.scdn.co/mp3-preview/1afcbd164ede375be899615268a947d6f96edaaa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USQX91100088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,classic girl group,motown,rock-and-roll",0.511,0.769,4.0,-7.032,1.0,0.042,0.181,0.0,0.0921,0.818,129.657,4.0,,Legacy Recordings,"P (P) 2011 Phil Spector Records, Inc. Under exclusive license to EMI Blackwood Music Inc./Sony Music Entertainment",1673 +1674,spotify:track:1nSUJWYRqsafI8Bh1X0ypp,People Everyday - Metamorphosis Mix,spotify:artist:5Va9LuEmaZxnbk1gMnjMD7,Arrested Development,spotify:album:3b8DtdLKq4oD6e1DLQUgBU,Extended Revolution,spotify:artist:5Va9LuEmaZxnbk1gMnjMD7,Arrested Development,2003-01-01,https://i.scdn.co/image/ab67616d0000b273295993065931be1d1c2a8bea,1,2,298773,https://p.scdn.co/mp3-preview/cebc2825079569e0c1ab9d8ea507e5fcd432e601?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USCH39200012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,conscious hip hop,hip hop,old school atlanta hip hop",0.843,0.508,10.0,-13.918,1.0,0.221,0.00852,2.1e-06,0.648,0.704,91.094,4.0,,EMI Marketing,"C © 2003 EMI Records Ltd, P This Compilation ℗ 2003 EMI Records Ltd",1674 +1675,spotify:track:0JhKJg5ejeQ8jq89UQtnw8,Levels - Radio Edit,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:4mkvtXQd6rD7zuAHhexEvb,Levels,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2011-10-28,https://i.scdn.co/image/ab67616d0000b273aed5951fadce99484bc2caba,1,1,199903,https://p.scdn.co/mp3-preview/6f972a909a0afdc26ae7a6c456e6722a5536e66d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,SEUM71100962,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.62,0.881,1.0,-5.851,0.0,0.0372,0.0585,0.714,0.311,0.415,126.035,4.0,,Virgin,"C © 2011 Avicii Music AB, Under exclusive license to Universal Music AB, P ℗ 2011 Avicii Music AB, Under exclusive license to Universal Music AB",1675 +1676,spotify:track:3DmW6y7wTEYHJZlLo1r6XJ,Shower,spotify:artist:4obzFoKoKRHIphyHzJ35G3,Becky G,spotify:album:4JlzEvVJqpb62Xwc0EmOHr,Shower,spotify:artist:4obzFoKoKRHIphyHzJ35G3,Becky G,2014-04-23,https://i.scdn.co/image/ab67616d0000b273f7f5503cfc6a54d31e65b112,1,1,206166,https://p.scdn.co/mp3-preview/147f604daafe57187f50f6dafa5a052262eedad5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USRC11400866,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,latin viral pop,rap latina,reggaeton,trap latino,urbano latino",0.699,0.529,2.0,-7.548,1.0,0.0487,0.0317,3.59e-05,0.285,0.121,119.987,4.0,,Kemosabe Records/RCA Records,P (P) 2014 Kemosabe Records,1676 +1677,spotify:track:6p7v10VTlje43PRfaTOBZN,Ginger Man,spotify:artist:7DZDByO8dEuOb1V5JcJPfI,Brian Cadd,spotify:album:4XseBUrzS2bs20tiWePqxf,The Magic of Brian Cadd,spotify:artist:7DZDByO8dEuOb1V5JcJPfI,Brian Cadd,2002-07-26,https://i.scdn.co/image/ab67616d0000b2730326f3de81d46f3d941489f5,1,10,252026,https://p.scdn.co/mp3-preview/ba4ebade506ee0be41cc2142181be8d9dd34551b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURNO7500011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian americana,australian rock",0.379,0.194,4.0,-14.985,1.0,0.0327,0.666,0.000262,0.117,0.23,113.68,4.0,,K-Tel,,1677 +1678,spotify:track:2xRUyAQeYVYCohZrEBpbiu,Worst Day of My Life,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:3pb256CZQ5vf8kbDlguYhD,Cry Forever,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2021-04-30,https://i.scdn.co/image/ab67616d0000b27356bb5daea8dab10126661bc5,1,3,181213,https://p.scdn.co/mp3-preview/6ecce6f02d2d6755cdca9fce5c01b313b501f07a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUBM02000719,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.676,0.646,5.0,-4.703,1.0,0.0461,0.573,0.0,0.105,0.635,104.005,4.0,,Wonderlick,P (P) 2020 Amy Shark under exclusive license to the Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd.,1678 +1679,spotify:track:7B3UAPLYAbwXVgbHSKEaTw,"Beauty and the Beast - from the Soundtrack ""Beauty and the Beast""","spotify:artist:4S9EykWXhStSc15wEx8QFK, spotify:artist:49iKbKGqgn8OESkW5WduX0","Céline Dion, Peabo Bryson",spotify:album:7C6LFxLn63uasNoDIQ5khO,Celine Dion,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1992-03-30,https://i.scdn.co/image/ab67616d0000b273c2e1dc3683211f1240ea8dd2,1,9,249240,https://p.scdn.co/mp3-preview/bd968ae2f5a0fbb763569d06af8c2573e034d40a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USLIC0601944,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,quiet storm",0.463,0.4,6.0,-9.999,0.0,0.0308,0.643,2.46e-05,0.131,0.121,77.314,4.0,,Columbia,P (P) 1992 Sony Music Entertainment (Canada) Inc.,1679 +1680,spotify:track:0lnBhIrUSKbtCgUObVmj6x,(I Don't Know Why) But I Do,spotify:artist:3EYYw0bxDMBYfLoBehpsNf,"Clarence ""Frogman"" Henry",spotify:album:20MK84QhMcnrSAjeqDIob1,Music For Rock 'n' Roll,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b27380642ba1edf4cf76105cf636,1,14,138106,https://p.scdn.co/mp3-preview/b404014b961375ee2259a7ab4e63ad71bf2bf81d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16147933,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,louisiana blues,new orleans blues,rhythm and blues,rock-and-roll",0.678,0.388,10.0,-10.625,1.0,0.0305,0.285,0.0,0.249,0.783,110.438,4.0,,Universal Music,"C © 2007 Spectrum Music, P ℗ 2007 Spectrum Music",1680 +1681,spotify:track:2ozTcQyZQmm9tSmc4VZfwU,Laughter In The Rain,spotify:artist:5N6GwJzOcOY5kv8p0NjhYL,Neil Sedaka,spotify:album:4MQXUCdpFPqi1jsM4N8aSR,The Definitive Collection,spotify:artist:5N6GwJzOcOY5kv8p0NjhYL,Neil Sedaka,2007-04-24,https://i.scdn.co/image/ab67616d0000b2732aeac9062e6df333ffece887,1,10,170066,https://p.scdn.co/mp3-preview/35fd544f8df7194e1e1cab56046da09204c1031e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USRZR0796810,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,bubblegum pop,easy listening,rockabilly,soft rock",0.495,0.613,5.0,-9.463,1.0,0.0239,0.348,0.0058,0.0406,0.924,100.535,4.0,,Razor & Tie,"C © 2007 Razor & Tie Recordings., Marketed by Razor & Tie Recordings. Distributed by Concord Music Group, Inc., P ℗ 2007 Razor & Tie Recordings., Marketed by Razor & Tie Recordings. Distributed by Concord Music Group, Inc.",1681 +1682,spotify:track:6Gn02ZC8juXwQ10Xk7ACXx,The Reason,spotify:artist:2MqhkhX4npxDZ62ObR5ELO,Hoobastank,spotify:album:2NpfPQ6AQn50AZpPP412uU,The Reason,spotify:artist:2MqhkhX4npxDZ62ObR5ELO,Hoobastank,2004-04-27,https://i.scdn.co/image/ab67616d0000b273059c59d651310068493728cc,1,8,232800,https://p.scdn.co/mp3-preview/31e2a53851fac8e61f947fd27da327c0493721dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USIR20300704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,pop rock,post-grunge",0.474,0.659,4.0,-4.667,1.0,0.0292,0.0125,0.0,0.154,0.075,82.957,4.0,,Universal Music Group,"C © 2004 UMG Recordings Inc., P ℗ 2004 UMG Recordings Inc.",1682 +1683,spotify:track:0Z3xhSOhrawLV81YdiDiiJ,Venus,spotify:artist:5WimOFbBnCU5wI6t5PPpEk,Shocking Blue,spotify:album:2vbAImlNuDjPBMdU6T1oRQ,At Home,spotify:artist:5WimOFbBnCU5wI6t5PPpEk,Shocking Blue,1969,https://i.scdn.co/image/ab67616d0000b27314644d2d7cf2d09bf288ffee,1,6,187533,https://p.scdn.co/mp3-preview/82162b2246999fef9c7e9399eff6c13fba143d4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,NLC286900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nederpop,0.691,0.762,11.0,-6.47,0.0,0.0367,0.462,0.0286,0.0804,0.957,128.111,4.0,,Red Bullet,"C 1969 Red Bullet, P 1969 Red Bullet",1683 +1684,spotify:track:60O68NxKnuSJgbZm0zJgzD,Dying For You,spotify:artist:5eZMLzpKYU5n4qAt5z4T13,End Of Fashion,spotify:album:3zpoBw795920X2kDDguKsB,Book Of Lies,spotify:artist:5eZMLzpKYU5n4qAt5z4T13,End Of Fashion,2008-01-01,https://i.scdn.co/image/ab67616d0000b273aad54f4301e9cbc8b9e80bc9,1,6,212426,https://p.scdn.co/mp3-preview/d54235f5471054449352a9649990c1ba2be21454?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,AUEM00800067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,perth indie",0.522,0.939,9.0,-3.493,0.0,0.0775,0.000309,0.00243,0.345,0.402,137.979,4.0,,Virgin Records,"C © 2008 EMI Recorded Music Australia Pty Ltd., P ℗ 2008 EMI Recorded Music Australia Pty Ltd.",1684 +1685,spotify:track:2jyWetCebnUhzEcLDWP2Gc,"1, 2, 3, 4 (Sumpin' New)",spotify:artist:3y24n3XhZ96wgwRXjvS17T,Coolio,spotify:album:38dFUEzeQdKokW3jlu4FyV,Gangsta's Paradise (25th Anniversary - Remastered),spotify:artist:3y24n3XhZ96wgwRXjvS17T,Coolio,1995-11-07,https://i.scdn.co/image/ab67616d0000b2734dff6b30d256e87c0a63ed30,1,7,214186,https://p.scdn.co/mp3-preview/4030c7ad705426b39f8a351cacad0e933c4baa41?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USTB12000156,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,west coast rap",0.901,0.775,1.0,-6.463,0.0,0.176,0.139,6.99e-06,0.335,0.564,114.78,4.0,,"Tommy Boy Music, LLC","C 2020 Tommy Boy Music, LLC, P 2020 Tommy Boy Music, LLC",1685 +1686,spotify:track:51fNdmmF7wOzS3BLbt5Zkp,Classic,spotify:artist:1VKSw4zNYbYK2BXbOOXkcd,Adrian Gurvitz,spotify:album:5o23L0OxeExFAFIl4p4cTY,Classic,spotify:artist:1VKSw4zNYbYK2BXbOOXkcd,Adrian Gurvitz,1982-01-01,https://i.scdn.co/image/ab67616d0000b2731933ad97001ad40057db4838,1,5,294053,https://p.scdn.co/mp3-preview/51534d62d84e081d91ff838b5cc8ab20e5e361c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,FR6V80445925,spotify:user:bradnumber1,2021-08-08T09:26:31Z,yacht rock,0.472,0.574,2.0,-6.215,1.0,0.0272,0.469,3.95e-06,0.0677,0.409,86.571,4.0,,Rdeg,"C 1982 2011, P 1982",1686 +1687,spotify:track:2wnx10JlIHANnWlvcMqpZE,You Make Me Feel Like Dancing,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,spotify:album:1dwBwg4BjtCAoi1mxr26OG,Endless Flight,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,1976,https://i.scdn.co/image/ab67616d0000b27384c525d23b8d3bcdbd83d686,1,2,220400,https://p.scdn.co/mp3-preview/b96097780922bc042dcd82df081d4b15c0314632?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUWA01000608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.74,0.517,8.0,-13.33,0.0,0.0362,0.341,0.0,0.0486,0.919,96.041,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Ltd, P ℗ 1975 (Silverbird) Australia Pty Ltd under exclusive licence to Warner Music Australia Pty Ltd",1687 +1688,spotify:track:1Yuim9eHBfG8YUJII28XDF,Figured You Out,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:4fygErqiNgFUic5hU42Z3E,The Long Road,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2003-09-23,https://i.scdn.co/image/ab67616d0000b27315a5f571e2e14b2c182bd0a3,1,7,228480,https://p.scdn.co/mp3-preview/5ef63b9e6ddc7c41004c5ce2eb94f2bbc510ab4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,NLA320320332,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.544,0.867,10.0,-5.527,1.0,0.0517,2.63e-05,0.0165,0.266,0.726,93.925,4.0,,Roadrunner Records,"C © 2003 The All Blacks B.V., P ℗ 2003 The All Blacks B.V.",1688 +1689,spotify:track:6mnjcTmK8TewHfyOp3fC9C,Die Young,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:0gT5HL6RnvHBxJ2gY7lidR,Warrior (Deluxe Version),spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2012-11-30,https://i.scdn.co/image/ab67616d0000b273861f0d79ff28c0206bb34474,1,2,211920,https://p.scdn.co/mp3-preview/237e17c6319aa02a1fde3ebcd89c5e5e3e03dbf8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USRC11201008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.711,0.7,1.0,-4.805,0.0,0.046,0.00498,0.000125,0.215,0.801,128.001,4.0,,Kemosabe Records/RCA Records,P (P) 2012 Kemosabe Records,1689 +1690,spotify:track:2sCl0FFOzZSmYZs90zOpd1,Cups (Pitch Perfect’s “When I’m Gone”) - Pop Version,spotify:artist:6xfqnpe2HnLVUaYXs2F8YS,Anna Kendrick,spotify:album:0ADeebtY9ygMEZkuEuTAUu,Cups (Pitch Perfect’s “When I’m Gone”),spotify:artist:6xfqnpe2HnLVUaYXs2F8YS,Anna Kendrick,2013-01-01,https://i.scdn.co/image/ab67616d0000b273bf912e74770477b7464d16b1,1,1,126880,https://p.scdn.co/mp3-preview/749f52db393511b54034914912451e7c0bcb8a17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USUM71303519,spotify:user:bradnumber1,2023-01-15T04:24:14Z,"hollywood,movie tunes",0.887,0.441,0.0,-8.98,1.0,0.115,0.0514,0.00667,0.0338,0.715,129.908,4.0,,Pitch Perfect 2nd Album,"C © 2013 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2013 Universal Music Enterprises, a Division of UMG Recordings, Inc.",1690 +1691,spotify:track:2ZgaaDyJ017iBkfH9yAAAb,Flip,spotify:artist:5ht2HGrvbN9eDWJarHsou6,Daddy Cool,spotify:album:4ZejRTERcKwWr0bc8CslGV,Daddy Who? Daddy Cool (40th Anniversary Edition),spotify:artist:5ht2HGrvbN9eDWJarHsou6,Daddy Cool,1971-07-01,https://i.scdn.co/image/ab67616d0000b2738a62b3ddb1b4eaa7739cc770,1,12,145880,https://p.scdn.co/mp3-preview/1feed0750cd0afd68cb696187c136b3cf0980f8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,AUBM01100333,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.678,0.819,9.0,-4.591,1.0,0.0831,0.222,0.0,0.331,0.893,90.695,4.0,,Sony Music Entertainment,P (P) 1971 Sony Music Entertainment Australia Pty Ltd.,1691 +1692,spotify:track:1UC0EU6Wl8QesdcuQyTHwP,I Wanna Dance With Somebody - CHR Mix,spotify:artist:086Atz206AEeIFXOfwFPSn,These Kids Wear Crowns,spotify:album:4TeWHImoMLIrbQ1oJjIh96,Jumpstart,spotify:artist:086Atz206AEeIFXOfwFPSn,These Kids Wear Crowns,2011,https://i.scdn.co/image/ab67616d0000b27334caad757b9dfe2ecd958aea,1,7,176680,https://p.scdn.co/mp3-preview/f4aa010aa936a833b37505d290822d761c8ba637?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,CAEZ11100066,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop punk,0.639,0.932,1.0,-3.931,1.0,0.0386,0.000269,0.0,0.382,0.842,129.999,4.0,,EMI Music Canada,"C © 2012 EMI Music Canada, P ℗ 2012 These Kids Wear Crowns",1692 +1693,spotify:track:1OOtq8tRnDM8kG2gqUPjAj,Beat It,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:1C2h7mLntPSeVYciMRTF4a,Thriller 25 Super Deluxe Edition,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2008-02-08,https://i.scdn.co/image/ab67616d0000b2734121faee8df82c526cbab2be,1,5,258040,https://p.scdn.co/mp3-preview/174b7bd06c6ddb87d25acec6afc731c6edc9db62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USSM19902990,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.776,0.867,3.0,-3.704,0.0,0.0479,0.0495,7.92e-06,0.197,0.918,138.827,4.0,,Epic/Legacy,"P (P) 1982, 2001, 2008 MJJ Productions Inc.",1693 +1694,spotify:track:622sVNQCspoVUqFWzOYYcj,A Man Without Love,spotify:artist:17XXKfRBMCWvLrqGoNkJXm,Engelbert Humperdinck,spotify:album:1q44CVjvRCttddLPmGgZtG,Live In Concert / All of Me,spotify:artist:17XXKfRBMCWvLrqGoNkJXm,Engelbert Humperdinck,1968,https://i.scdn.co/image/ab67616d0000b273021463190197caeb844dd8d6,1,16,205640,https://p.scdn.co/mp3-preview/66b8a4b0da73f195389ba47039d6dfa8992eb5d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USSM19915232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.386,0.473,2.0,-12.416,1.0,0.0345,0.729,0.0,0.271,0.498,110.322,4.0,,Epic/Legacy,"P Originally released 1968. All rights reserved by RCA Records, a division of Sony Music Entertainment",1694 +1695,spotify:track:0mBkoM8r7KAQzZij5swTUL,Walking On A Dream,spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,spotify:album:04gYcIojJt78nYnN5oOrKt,Walking On A Dream,spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,2009-02-23,https://i.scdn.co/image/ab67616d0000b2731764a4e742fe4c69e4d16316,1,2,198440,https://p.scdn.co/mp3-preview/a21bd2feedf60140b9e163aa037bd285adb5e896?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,AUEI10800039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,dance rock,indietronica,neo-synthpop",0.87,0.699,5.0,-5.541,0.0,0.0459,0.245,6.76e-06,0.0588,0.726,126.967,4.0,,Capitol,"C © 2009 The Sleepy Jackson Pty Ltd and Nick Littlemore, P ℗ 2008 The Sleepy Jackson Pty Ltd and Nick Littlemore, under exclusive licence to EMI Recorded Music Australia Pty Ltd",1695 +1696,spotify:track:0zvNHIL7ci0ZzIoWU6RO2u,I Love a Rainy Night,spotify:artist:0jgAONnsHxrwAlhkMUVS78,Eddie Rabbitt,spotify:album:6DLnBf2xooYa5UniuggpnD,All Time Greatest Hits,spotify:artist:0jgAONnsHxrwAlhkMUVS78,Eddie Rabbitt,1991,https://i.scdn.co/image/ab67616d0000b27360dcdb684d00b3332fd98bbd,1,1,191066,https://p.scdn.co/mp3-preview/cbaf83dda93fb8b08cba02d4bdda5c983b9c637f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USWB19900953,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,country rock,mellow gold,soft rock",0.685,0.718,0.0,-7.724,1.0,0.0521,0.122,0.0,0.0556,0.958,131.463,4.0,,Warner Records,"C © 1976, 1977, 1978, 1979, 1980 & 1991 Warner Records Inc., P ℗ 1976, 1977, 1978, 1979, 1980 & 1991 Warner Records Inc.",1696 +1697,spotify:track:2xaSVQ7d7xvRkHqXIFyKRK,Come Home,spotify:artist:7xTcuBOIAAIGDOSvwYFPzk,Daniel Powter,spotify:album:2X9n9Z419D48zELoisZbWB,Best of Me,spotify:artist:7xTcuBOIAAIGDOSvwYFPzk,Daniel Powter,2010-12-02,https://i.scdn.co/image/ab67616d0000b27303fbeba58e0b7c16adf42307,1,3,230200,https://p.scdn.co/mp3-preview/0c9b7522a0b1c56d2c94940e2d39b29563a1a8dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USWB11002914,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,neo mellow,pop rock",0.467,0.713,4.0,-5.996,1.0,0.0291,0.0545,0.0,0.0955,0.273,180.112,4.0,,Warner Records,"C © 2010 Warner Records Inc., P ℗ 2010 This Compilation P2010 Warner Records Inc.",1697 +1698,spotify:track:3NTbqgdK5bo6Q9E4yBOzUp,"Touch Me (All Night Long) - 7"" Mix",spotify:artist:2zVsfeSyFbCey7rq7PasHp,Cathy Dennis,spotify:album:0uxXWfZ2qtdVqW3Ol606ux,The Irresistible,spotify:artist:2zVsfeSyFbCey7rq7PasHp,Cathy Dennis,2000-01-01,https://i.scdn.co/image/ab67616d0000b27349fbf03e762b0424bc08c76e,1,1,208866,https://p.scdn.co/mp3-preview/392173ff7224e0c28ee982b03c982e627f172752?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBAKW0201348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,new wave pop",0.656,0.773,10.0,-10.309,0.0,0.0328,0.00293,0.0651,0.316,0.473,118.01,4.0,,Spectrum,"C © 2000 Spectrum Music, P This Compilation ℗ 2000 Spectrum Music",1698 +1699,spotify:track:1Mw2BnEixPT4tJbSffXyEL,Learn To Fly,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:5wAoxrSVetP84EXgr4Tp3z,That's What I'm Talking About,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2004-02-02,https://i.scdn.co/image/ab67616d0000b273b924aec7c8f9c0a6a7dc7a06,1,6,252160,https://p.scdn.co/mp3-preview/23dec1fd1cfd326441fb809f8d35f36bf6240544?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUBM00447809,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,australian pop,australian rock",0.527,0.634,3.0,-5.376,1.0,0.0276,0.139,0.0,0.0885,0.264,133.927,4.0,,BMG Music,P (P) 2004 BMG Australia Limited,1699 +1700,spotify:track:6yLIqXX9edg1x0HZS7cZEv,The Air That I Breathe - 2008 Remaster,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:17gEubRfhqZEFoYEnHVV5H,Hollies,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1974-03-01,https://i.scdn.co/image/ab67616d0000b2738d39fe8d82388fcaa345273b,1,11,257106,https://p.scdn.co/mp3-preview/0305356ccc4ea8115760650a006485547d4fe9ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBGYU0800011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.279,0.473,4.0,-8.375,0.0,0.0309,0.242,0.00164,0.158,0.246,167.792,4.0,,BMG Rights Management (US) LLC,"C © 2008 The Hollies Ltd under exclusive licence to Parlophone Records Ltd, P ℗ 2008 The Hollies Ltd under exclusive licence to Parlophone Records Ltd",1700 +1701,spotify:track:2MHCiOohBZEQuLgDTPvSzF,Love on Me,"spotify:artist:4sTQVOfp9vEMCemLw50sbu, spotify:artist:3iN9k8uvm4WrgdlOigOH8D","Galantis, Hook N Sling",spotify:album:2bnkh4EIAqmqJTKRZjwfz8,Love on Me,"spotify:artist:4sTQVOfp9vEMCemLw50sbu, spotify:artist:3iN9k8uvm4WrgdlOigOH8D","Galantis, Hook N Sling",2016-09-30,https://i.scdn.co/image/ab67616d0000b2730018d9ed29666f655586bccc,1,1,205920,https://p.scdn.co/mp3-preview/7ba6247f4c168e197f87a73d6d2fe6559a17c29a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USAT21602783,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,progressive electro house,australian dance,progressive electro house",0.562,0.906,4.0,-2.085,1.0,0.0758,0.105,0.0,0.145,0.674,124.146,4.0,,Big Beat Records,"C © 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",1701 +1702,spotify:track:6cARFkZxx2JR3JlvDzeLZc,Love of the Common People,spotify:artist:6rqU9HQ57NYGBnBzbrY3a4,Paul Young,spotify:album:6bDQgC4mNcwz46wHKI6h2y,From Time To Time - The Singles Collection,spotify:artist:6rqU9HQ57NYGBnBzbrY3a4,Paul Young,1991-09-07,https://i.scdn.co/image/ab67616d0000b273e0126da84b670e4f81afc75e,1,10,220733,https://p.scdn.co/mp3-preview/1dc1c1da00b06aa02232236bdb4c9c16dae5ca6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBBBN8300009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,new romantic,new wave,new wave pop,soft rock",0.744,0.609,9.0,-11.202,1.0,0.0758,0.0883,0.0,0.0599,0.893,90.723,4.0,,Columbia,P (P) 1991 Sony Music Entertainment (UK) Ltd.,1702 +1703,spotify:track:0U4N96l1t03MXDk0FTigS1,We Think It's Love,spotify:artist:6kvkcogluXUBXdQzJy6Alw,Leah Haywood,spotify:album:1SNvWzggrpGIiaPzkBUOpE,We Think It's Love,spotify:artist:6kvkcogluXUBXdQzJy6Alw,Leah Haywood,2000-02-18,https://i.scdn.co/image/ab67616d0000b2733df18400ca9927f06e7b08d0,1,1,197266,https://p.scdn.co/mp3-preview/bf3605e75f5d65211bff07d5b0ad19e079572028?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,AUSM09900272,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.663,0.596,7.0,-7.076,1.0,0.0295,0.0183,0.0,0.136,0.589,102.062,4.0,,Sony Music Entertainment,P (P) 2000 Sony Music Entertainment Australia Pty Ltd,1703 +1704,spotify:track:0fQlm2MUzqGDBPkuqq4U1Y,Hear You Me,spotify:artist:3Ayl7mCk0nScecqOzvNp6s,Jimmy Eat World,spotify:album:1VbyDS3tGhe4iHfIJ7AMtr,Bleed American,spotify:artist:3Ayl7mCk0nScecqOzvNp6s,Jimmy Eat World,2001-01-01,https://i.scdn.co/image/ab67616d0000b273a7505b2b1540e9230b836e89,1,6,284373,https://p.scdn.co/mp3-preview/2be668655cdf69711fd0a9fc54becb78a5da2c3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10110259,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,emo,modern power pop,modern rock,neon pop punk,pop punk,pop rock,post-grunge,punk,rock",0.474,0.513,4.0,-6.098,1.0,0.0273,0.0123,0.0402,0.254,0.149,136.171,3.0,,Interscope,"C © 2001 SKG Music L.L.C., P ℗ 2001 SKG Music L.L.C.",1704 +1705,spotify:track:2grAr8pWMuLWn8ZYEE9wDV,Never Seen the Rain,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,spotify:album:1BYByciKxjYwhRSrWlEjWu,Never Seen the Rain,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,2019-07-15,https://i.scdn.co/image/ab67616d0000b273b3bb18369a24bad5cba321b0,1,1,200755,https://p.scdn.co/mp3-preview/3df6856e1af9ff9a96ca720ce4c3c39ad2a67a27?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUBM01900174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.491,0.461,6.0,-5.646,0.0,0.0424,0.44,0.0,0.232,0.32,87.808,4.0,,Sony Music Entertainment,P (P) 2019 Bad Batch Records,1705 +1706,spotify:track:6SRkXiSwoU0SZnHlHV3FSG,Little Bitty Girl,spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,spotify:album:0VXuhIf2sm4plEZkEv84Wm,Greatest Hits,spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,2015-02-01,https://i.scdn.co/image/ab67616d0000b273812864f2b2bc4dd66e8cd7d1,1,13,146946,https://p.scdn.co/mp3-preview/d20d4f6038dafa7fb73cb5cbd7aa1b32b796e273?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM6N21454285,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,merseybeat,rock-and-roll",0.623,0.619,1.0,-6.19,1.0,0.0367,0.553,0.0,0.136,0.82,121.284,4.0,,Rockabilly Records,C (C) 2015 Rockabilly Records,1706 +1707,spotify:track:2WNVqZq1ujhMDlOAqBFkVv,My Humps,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:6Gdt5ogiuJ9knp8Q5148ea,Monkey Business,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2005-01-01,https://i.scdn.co/image/ab67616d0000b27377234f29940be7edb73bff87,1,5,326960,https://p.scdn.co/mp3-preview/1432be4fbadaa4a9c786cbc6d34978840c84fd49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10500771,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.802,0.682,1.0,-5.924,0.0,0.222,0.111,1.39e-05,0.109,0.586,123.95,4.0,,Universal Music Group,"C © 2005 Interscope Records, P ℗ 2005 Interscope Records",1707 +1708,spotify:track:3l35DNYvWELcX1z1DIZ6Tf,"How Does That Grab You, Darlin'?",spotify:artist:3IZrrNonYELubLPJmqOci2,Nancy Sinatra,spotify:album:7dC9EutCtygeEpefdcjWTL,How Does That Grab You?,spotify:artist:3IZrrNonYELubLPJmqOci2,Nancy Sinatra,1966-01-01,https://i.scdn.co/image/ab67616d0000b273e4f002bc0e64b7a5e6591caf,1,10,153716,https://p.scdn.co/mp3-preview/67851b60b5d383d2383cbae328d9ba3b1533ea56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USASE0500025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lounge,sunshine pop",0.652,0.794,4.0,-6.047,1.0,0.207,0.161,6.54e-06,0.0743,0.86,163.246,4.0,,"Boots Enterprises, Inc.","C (C) 1966 Boots Enterprises, Inc.",1708 +1709,spotify:track:43UgnGOThTG3uSh4elH6xn,Pumped Up,spotify:artist:1L9i6qZYIGQedgM9QLSyzb,Klingande,spotify:album:64u2DVv5xzNTqTTkMza5GH,Pumped Up,spotify:artist:1L9i6qZYIGQedgM9QLSyzb,Klingande,2017-09-08,https://i.scdn.co/image/ab67616d0000b2732ddf9c7ec88310e73692ab94,1,1,177073,https://p.scdn.co/mp3-preview/b63ba3659c0ef0843861aa00107543ef359381b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR9W11717069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep house,pop dance,tropical house",0.732,0.734,0.0,-6.423,1.0,0.107,0.00719,1.49e-05,0.34,0.643,123.033,4.0,,Liberator Music,"C 2017 Klingande Music under exclusive license to Ultra Records, LLC, P 2017 Klingande Music under exclusive license to Ultra Records, LLC",1709 +1710,spotify:track:062mh4qAZyDV9dIQK70iu0,Miss You Much,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:7jtBAkD6DL5yn7komrFTxE,Rhythm Nation 1814,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1989-09-19,https://i.scdn.co/image/ab67616d0000b27336e9e2e6de0b594414fb80c9,1,8,252426,https://p.scdn.co/mp3-preview/f130ab2496b739d81f5e7a4bce7bdba1c33dc2f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USAM10110363,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.703,0.973,6.0,-8.719,0.0,0.0401,0.0284,9.59e-05,0.302,0.704,115.184,4.0,,A&M,"C © 1989 A&M Records, P ℗ 1989 A&M Records",1710 +1711,spotify:track:4Dq749x2QP6OXTURJ9GGY8,The Tears Of A Clown,spotify:artist:6TKOZZDd5uV5KnyC5G4MUt,Smokey Robinson & The Miracles,spotify:album:6vbD4D3SpN2JBjCoXdGE3i,Make It Happen,spotify:artist:6TKOZZDd5uV5KnyC5G4MUt,Smokey Robinson & The Miracles,1967-08-29,https://i.scdn.co/image/ab67616d0000b273855c2e10b46e09da14e8b3c8,1,12,181800,https://p.scdn.co/mp3-preview/00e3af28045bb0abab98b55d5a859e9ad4e14a05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USMO17000525,spotify:user:bradnumber1,2023-02-14T22:27:35Z,"classic soul,motown,quiet storm,soul",0.593,0.607,1.0,-9.886,1.0,0.0283,0.147,0.0,0.128,0.953,128.365,4.0,,UNI/MOTOWN,"C © 1967 UMG Recordings, Inc., P ℗ 1967 UMG Recordings, Inc.",1711 +1712,spotify:track:0GX5oOKtU0nnx5OkhenW2i,Closer,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:6dC6J5qkPcJ1iGshEN5MpX,Year Of The Gentleman,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2008-01-01,https://i.scdn.co/image/ab67616d0000b27328406f09147cd51d3b882518,1,1,234360,https://p.scdn.co/mp3-preview/6039138e242283f255978de62e01dabeda2ab6ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USUM70809378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.709,0.745,4.0,-6.436,0.0,0.074,0.0226,5.29e-05,0.154,0.569,126.028,4.0,,Def Soul,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",1712 +1713,spotify:track:52s6Ea6aSZMvPUIH0dSpk4,Mirror Man,spotify:artist:1aX2dmV8XoHYCOQRxjPESG,The Human League,spotify:album:0esnpjv1cOeVWSYTSY3jRc,Fascination!,spotify:artist:1aX2dmV8XoHYCOQRxjPESG,The Human League,1983,https://i.scdn.co/image/ab67616d0000b2737c7b937a98ff68bcf7fc24a8,1,2,230373,https://p.scdn.co/mp3-preview/a5728efbcc85b2a88fff4d6b51be74cc3002f374?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBAAA8200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,sophisti-pop,synthpop",0.634,0.615,0.0,-11.145,1.0,0.0412,0.0635,5.1e-05,0.0551,0.519,133.601,4.0,,Virgin Catalogue,"C © 2008 Virgin Records Limited, P This Compilation ℗ 2008 Virgin Records Limited",1713 +1714,spotify:track:2ezqQeBiC72gwMJoO4w1hA,Every Time I Close My Eyes (with Kenny G),"spotify:artist:3aVoqlJOYx31lH1gibGDt3, spotify:artist:6I3M904Y9IwgDjrQ9pANiB","Babyface, Kenny G",spotify:album:66Vhr3F0vp90jhQUlcf4Sk,The Day,spotify:artist:3aVoqlJOYx31lH1gibGDt3,Babyface,1996-10-29,https://i.scdn.co/image/ab67616d0000b2739943ee0d87becde8aac0a930,1,1,296266,https://p.scdn.co/mp3-preview/457d6dd688be9ff7595198cbd794d092acc60330?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM19602929,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,r&b,urban contemporary,smooth jazz,smooth saxophone",0.654,0.417,5.0,-7.699,1.0,0.025,0.0624,0.0,0.0963,0.279,143.676,4.0,,Epic,"P (P) 1996, 1997, 2001 Sony Music Entertainment",1714 +1715,spotify:track:28xX6K8LnkZve4RiuEB3iK,Sweet Melody,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:5GGIgiGtxIgcVJQnsKQW94,Sweet Melody,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2020-10-23,https://i.scdn.co/image/ab67616d0000b273d8bd7cd17c4d1c97f445b184,1,1,213693,https://p.scdn.co/mp3-preview/fe5230610f836696f958aaa6734baa78e37b5507?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBHMU2000062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.448,0.824,5.0,-4.249,0.0,0.057,0.0739,0.0,0.113,0.419,119.965,4.0,,RCA Records Label,"P (P) 2020 Under Exclusive Licence to RCA, a division of Sony Music Entertainment UK Limited",1715 +1716,spotify:track:3k0DJq2HdWJqnqor8NX0ac,Padam Padam,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:7vH3G0c3n1WsgTJHBmZxdV,Padam Padam,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2023-05-18,https://i.scdn.co/image/ab67616d0000b273cd3f8861cca45603c305e276,1,1,166266,https://p.scdn.co/mp3-preview/1262aef0afc97774ed8b2d2c7d0c7fc15bf4374f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,GB5KW2301017,spotify:user:bradnumber1,2023-07-05T22:56:06Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.746,0.622,5.0,-7.923,1.0,0.241,0.201,0.00113,0.104,0.719,128.101,4.0,,BMG Rights Management (UK) Ltd,"C © 2023 Kylie Minogue/Darenote under exclusive license to BMG Rights Management (UK) Limited, P ℗ 2023 Kylie Minogue/Darenote under exclusive license to BMG Rights Management (UK) Limited",1716 +1717,spotify:track:3yrSvpt2l1xhsV9Em88Pul,Brown Eyed Girl,spotify:artist:44NX2ffIYHr6D4n7RaZF7A,Van Morrison,spotify:album:7dsWupQRlFuhG8FGiQAUjC,Blowin' Your Mind!,spotify:artist:44NX2ffIYHr6D4n7RaZF7A,Van Morrison,1967-09,https://i.scdn.co/image/ab67616d0000b2733f29a976eea00141514ab936,1,1,183306,https://p.scdn.co/mp3-preview/731469a968c3295114a2b7052610674bf56c6048?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USSM16700357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.491,0.583,7.0,-10.964,1.0,0.0376,0.185,0.0,0.406,0.908,150.566,4.0,,Columbia/Legacy,"P Originally released 1967. All rights reserved by Columbia Records, a division of Sony Music Entertainment",1717 +1718,spotify:track:78K0CsNamJ1LdSrWO7CxCn,Howzat,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:4liRYil0nws0o7QfPehI71,Howzat,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,1976,https://i.scdn.co/image/ab67616d0000b273f1960ea67e240632f66011f8,1,1,225560,https://p.scdn.co/mp3-preview/1fb351393a19fe60dd5854f26dda1eb4da5bd1a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00622230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.405,0.703,5.0,-4.717,1.0,0.0348,0.43,1.03e-05,0.135,0.651,108.855,4.0,,Bloodlines,"C 2006 Bloodlines, P 2006 Bloodlines",1718 +1719,spotify:track:3d1Hbu6v1uJ2rTClxKYYRl,(Kissed You) Good Night,spotify:artist:5RjqSn7vYk8Qb9GeLWRRhB,Gloriana,spotify:album:5cpKfq5kKmnmgCmZzAca1I,[Kissed You] Good Night,spotify:artist:5RjqSn7vYk8Qb9GeLWRRhB,Gloriana,2011-10-14,https://i.scdn.co/image/ab67616d0000b273231a9184b9769e0c2cbc2d13,1,1,232903,https://p.scdn.co/mp3-preview/48c3ae4a41523740cfe4a2e7b0ac16ae109fcd6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USWB11102836,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country dawn,country road",0.523,0.747,11.0,-6.125,1.0,0.0292,0.0807,0.0,0.11,0.294,118.97,4.0,,Emblem / Warner Records Nashville/ Reprise,"C © 2011 Emblem Records Inc., under exclusive license to Warner Records Inc., A Warner Music Group Company., P ℗ 2011 Emblem Records Inc., under exclusive license to Warner Records Inc., A Warner Music Group Company.",1719 +1720,spotify:track:3QE1244xy4NsqbuqGdA321,Always Together - Remastered,spotify:artist:7egNqIGRldMzifHoh8pib6,Al Martino,spotify:album:7pgcJ7XAmi0a41S0l7LKdL,Crooner (Remastered),spotify:artist:7egNqIGRldMzifHoh8pib6,Al Martino,2018-09-28,https://i.scdn.co/image/ab67616d0000b273271efe0894fa361232402bc5,1,27,158046,,False,0,DEVU51875449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.259,0.392,8.0,-8.794,1.0,0.0297,0.621,0.0145,0.233,0.366,105.402,4.0,,Universal Digital Enterprises,"C 2018 Universal Digital Enterprises, P 2018 Universal Digital Enterprises",1720 +1721,spotify:track:3Epe1luSbnevTd0FwatVxF,FOH,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,spotify:album:1nmxUznbVkZorzeY4olXco,Sex & Cigarettes,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,2018-03-23,https://i.scdn.co/image/ab67616d0000b273daa640ca60a76a4240c55b28,1,4,167426,https://p.scdn.co/mp3-preview/892ad9743d6a5709c6a8ea0aa6fe17417b804c98?cid=9950ac751e34487dbbe027c4fd7f8e99,True,25,USUM71801162,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,r&b,urban contemporary",0.649,0.304,9.0,-9.18,0.0,0.0318,0.834,0.0,0.182,0.465,111.905,4.0,,Def Jam Recordings,"C © 2018 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2018 Def Jam Recordings, a division of UMG Recordings, Inc.",1721 +1722,spotify:track:0wP0UlOi6rJGSiksmoMF8Y,Opposite of Adults,spotify:artist:40giwFcTQtv9ezxW8yqxJU,Chiddy Bang,spotify:album:4LTH8BNH5u1uRaKgogo0is,Breakfast,spotify:artist:40giwFcTQtv9ezxW8yqxJU,Chiddy Bang,2010-09-13,https://i.scdn.co/image/ab67616d0000b2734201ff956483052dbfa11c03,1,15,191600,https://p.scdn.co/mp3-preview/7482e32453e3102459daa1731660626c018c1ee4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,US8Z30900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie pop rap,philly rap,pop rap",0.674,0.899,9.0,-5.115,1.0,0.193,0.011,0.0,0.327,0.604,95.999,4.0,,Parlophone UK,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",1722 +1723,spotify:track:7wBThXx7BGZHJJ3aN3OPvv,Confessions Part II,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,spotify:album:1RM6MGv6bcl6NrAG8PGoZk,Confessions (Expanded Edition),spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2004-03-23,https://i.scdn.co/image/ab67616d0000b273365b3fb800c19f7ff72602da,1,5,211200,https://p.scdn.co/mp3-preview/857b4ee86c225fd300d04367caa162718a39834f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAR10400973,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.845,0.467,1.0,-7.674,1.0,0.138,0.0586,0.0,0.0694,0.702,138.007,4.0,,LaFace Records,P (P) 2004 LaFace Records,1723 +1724,spotify:track:7EAkSLnvMY2MiW1piLuSAC,One Of The Boys,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:1vFFZPioAu0vrJRcGoyGX8,One Of The Boys,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2008,https://i.scdn.co/image/ab67616d0000b27331cc26681b0164332fa26634,1,1,247653,https://p.scdn.co/mp3-preview/3ff7d067e7bd8088b2269d7780e58c2892cc629b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USCA20802539,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.564,0.909,5.0,-2.392,1.0,0.052,0.00199,1.89e-06,0.0818,0.683,145.953,4.0,,Capitol Records,"C © 2009 Capitol Records, LLC, P ℗ 2009 Capitol Records, LLC",1724 +1725,spotify:track:07FkzikE6FuHIa8Ma7zJGc,Lie,spotify:artist:6fOMl44jA4Sp5b9PpYCkzz,NF,spotify:album:1KOmHyNLuOe5YrPhD3Juuf,Perception,spotify:artist:6fOMl44jA4Sp5b9PpYCkzz,NF,2017-10-06,https://i.scdn.co/image/ab67616d0000b273cd733919ee57d0cc466e152f,1,13,209213,https://p.scdn.co/mp3-preview/eabf67dd326edc369d3b93029b5199476bc170ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USUM71708227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap",0.749,0.659,5.0,-6.419,1.0,0.167,0.161,0.0,0.246,0.185,95.008,4.0,,NF Real Music,"C © 2017 NF Real Music, LLC, P ℗ 2017 NF Real Music, LLC",1725 +1726,spotify:track:0cK7vBvgmRQVJpqgNwehch,Alone with You - 2014 Remaster,spotify:artist:6sAh1RUpXblYP320gZ91LC,Sunnyboys,spotify:album:3avNYPQrtAxtqlBRrw9wJo,Sunnyboys (Expanded Edition),spotify:artist:6sAh1RUpXblYP320gZ91LC,Sunnyboys,1988-12-19,https://i.scdn.co/image/ab67616d0000b273e40b3fca9ebfde4e99f21f68,1,7,238960,https://p.scdn.co/mp3-preview/1eb9adbd098c985eaae91dddb7339726c2929db5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUWA01300341,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.361,0.937,4.0,-3.179,0.0,0.0463,6.19e-05,0.000166,0.27,0.393,147.546,4.0,,WM Australia,"C © 2014 Warner Music Australia Pty Ltd, P ℗ 2014 Warner Music Australia Pty Ltd",1726 +1727,spotify:track:7kDPwGDjxDBONlPpkc1p77,And When I Die,spotify:artist:24GaH9tRBgZjlvOhpFuKi2,"Blood\, Sweat & Tears",spotify:album:7qFad1a6Q3kUJ1oAz6fT9m,"Blood, Sweat & Tears - Expanded Edition",spotify:artist:24GaH9tRBgZjlvOhpFuKi2,"Blood\, Sweat & Tears",1968-12,https://i.scdn.co/image/ab67616d0000b2731bd04917ad890de8ec16ab44,1,5,244973,https://p.scdn.co/mp3-preview/6f0f2ce2cc910b2ecb1e27f39100110739b5a478?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USSM19911959,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,folk,folk rock,jazz rock,mellow gold,singer-songwriter,soft rock",0.628,0.439,9.0,-10.728,1.0,0.134,0.332,1.35e-05,0.0555,0.507,127.589,4.0,,Columbia/Legacy,P (P) 1968 Sony Music Entertainment Inc.,1727 +1728,spotify:track:1LeWIs2hP2r5yOQnVuYoI5,Ain't No Mountain High Enough,"spotify:artist:3koiLjNrgRTNbOwViDipeA, spotify:artist:75jNCko3SnEMI5gwGqrbb8","Marvin Gaye, Tammi Terrell",spotify:album:67Eq3nfl1km9s5ig76Cc8B,United,"spotify:artist:3koiLjNrgRTNbOwViDipeA, spotify:artist:75jNCko3SnEMI5gwGqrbb8","Marvin Gaye, Tammi Terrell",1967-08-29,https://i.scdn.co/image/ab67616d0000b27396e0b7befe3ba88f5a7d5a3f,1,1,151666,https://p.scdn.co/mp3-preview/7301aee11d8646c25071e0825b0794aa609092db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16700534,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,neo soul,northern soul,quiet storm,soul,classic soul,motown,soul,southern soul",0.663,0.6,7.0,-10.87,1.0,0.032,0.43,0.0,0.184,0.8,129.991,4.0,,Motown (Capitol),"C © 1967 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1967 Motown Records, a Division of UMG Recordings, Inc.",1728 +1729,spotify:track:7cpCU3Denug5NGZsSpQl8v,XO,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:305TANxsPTFkiqS4cEilx1,XO,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2014-05-27,https://i.scdn.co/image/ab67616d0000b273924db37163c8c94430c689fc,1,1,213626,https://p.scdn.co/mp3-preview/5c0089d17d74a8654b77b7dbe3659838bb2287d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM11403983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.431,0.377,2.0,-9.753,1.0,0.0288,0.749,0.0,0.211,0.353,173.67,4.0,,Columbia,"P (P) 2014 Columbia Records, a Division of Sony Music Entertainment",1729 +1730,spotify:track:2Vo8c7CdHvRj25J8HIf1JN,Take It from Me,spotify:artist:5oWq8Uaq2CNDJng3wq8IFL,Girlfriend,spotify:album:7Ma5wxUsNgQ898jTj5iD6m,Make It Come True,spotify:artist:5oWq8Uaq2CNDJng3wq8IFL,Girlfriend,1992-09-21,https://i.scdn.co/image/ab67616d0000b273bab818f84072bc45ee042808,1,2,209133,https://p.scdn.co/mp3-preview/ef5ca4557605bd4e29bf47b8dc057fdaeda96bbc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM09245601,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.72,0.714,0.0,-13.666,1.0,0.0568,0.00805,7.32e-06,0.196,0.788,111.049,4.0,,Sony Music Entertainment,P (P) 1992 Sony Music Entertainment Australia Pty Ltd,1730 +1731,spotify:track:0gb1J5UrTpzaU1s3nupgCd,No Money,spotify:artist:4sTQVOfp9vEMCemLw50sbu,Galantis,spotify:album:2f7kOrpFos0njurSOi2zqL,No Money,spotify:artist:4sTQVOfp9vEMCemLw50sbu,Galantis,2016-04-01,https://i.scdn.co/image/ab67616d0000b273119cb56f073efd326643dcfe,1,1,189126,https://p.scdn.co/mp3-preview/90b6437cbba1d1546ae0e33fc9353a7dced375d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USAT21600941,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,progressive electro house",0.671,0.916,6.0,-4.014,0.0,0.0397,0.0282,0.00762,0.24,0.803,126.01,4.0,,Big Beat Records,"C © 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",1731 +1732,spotify:track:6ybViy2qrO9sIi41EgRJgx,Don't Know Why,spotify:artist:2Kx7MNY7cI1ENniW7vT30N,Norah Jones,spotify:album:1JvoMzqg04nC29gam4Qaiq,Come Away With Me,spotify:artist:2Kx7MNY7cI1ENniW7vT30N,Norah Jones,2002-02-26,https://i.scdn.co/image/ab67616d0000b2737862811f80ae629373954f0d,1,1,186146,https://p.scdn.co/mp3-preview/5397a9e2a0a8d818ba82f1f6b19acfc7f52ed001?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USBN20100529,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary vocal jazz,jazz pop,neo mellow,vocal jazz",0.732,0.198,5.0,-11.775,1.0,0.028,0.883,1.1e-05,0.0659,0.618,88.174,4.0,,Blue Note Records,"C © 2002 Blue Note Records, P ℗ 2002 Blue Note Records",1732 +1733,spotify:track:2QgWuCtBpNIpl5trmKCxRf,American Pie,spotify:artist:1gRNBaI4yn6wCCTvRhGWh8,Don McLean,spotify:album:20Y9wHWIxNFvqplgHmqmUl,The Best Of Don McLean,spotify:artist:1gRNBaI4yn6wCCTvRhGWh8,Don McLean,1988-01-01,https://i.scdn.co/image/ab67616d0000b273b387752e21389aa53753329e,1,1,515866,https://p.scdn.co/mp3-preview/f1e1a805ecb43e71d419258324546a60f7162d91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USEM38600088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.526,0.509,7.0,-10.893,1.0,0.0628,0.6,0.0,0.144,0.497,138.318,4.0,,EMI/EMI Records (USA),"C © 1988 Capitol Records Inc., P This Compilation ℗ 1988 Capitol Records Inc.",1733 +1734,spotify:track:6P6HC1IFlEIdJM6jWPVgk6,Magazine Madonna,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:2jmqR9W54z9VIZN4qAQv1Y,Anthology,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,2008-10-11,https://i.scdn.co/image/ab67616d0000b273d3f56b11a56d0b0f192da1a7,1,22,248773,https://p.scdn.co/mp3-preview/adf0e0a1162af46fac347e7277df885010251dcf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00621410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.548,0.71,10.0,-6.235,1.0,0.031,0.297,0.0028,0.206,0.578,123.545,4.0,,Bloodlines,"C 2008 Bloodlines, P 2008 Bloodlines",1734 +1735,spotify:track:57RHMnLMQx8Qz5V6c0E8dF,We Are The People,spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,spotify:album:1GoqBRUPZzBKvMKZxSQ1mp,Walking On A Dream (Special Edition),spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,2009-01-01,https://i.scdn.co/image/ab67616d0000b273fffbc6bb8f405c2dacf8d64b,1,4,267354,https://p.scdn.co/mp3-preview/afbe7f0ea1a72e44d307790bc7529690536c585c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,AUEI10800041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,dance rock,indietronica,neo-synthpop",0.666,0.785,4.0,-5.37,0.0,0.0308,0.0981,0.0198,0.434,0.549,122.973,4.0,,Capitol Records,"C © 2009 The Sleepy Jackson Pty Ltd and Nick Littlemore, P ℗ 2009 The Sleepy Jackson Pty Ltd and Nick Littlemore",1735 +1736,spotify:track:39LLxExYz6ewLAcYrzQQyP,Levitating,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:7fJJK56U9fHixgO0HQkhtI,Future Nostalgia,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-03-27,https://i.scdn.co/image/ab67616d0000b2734bc66095f8a70bc4e6593f4f,1,5,203807,https://p.scdn.co/mp3-preview/ac28d1b0be285ed3bfd8e9fa5fad133776d7cf36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,GBAHT1901299,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.695,0.884,6.0,-2.278,0.0,0.0753,0.0561,0.0,0.213,0.914,103.014,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, with the exception of track 1 & 2 2019 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",1736 +1737,spotify:track:4X5V6tQkV34qM455LIDvTx,All The Things She Said,spotify:artist:2Q3eZMfDQgT8MhPowKFXYO,t.A.T.u.,spotify:album:5GSdUC9xT8nv0NG7gXV8No,About Time,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-01-01,https://i.scdn.co/image/ab67616d0000b27321d2f32ee49927dd948f5a7a,1,13,215773,https://p.scdn.co/mp3-preview/47f34f86254819ea380d595d705a6e47118c3576?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,RUA110100017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group",0.58,0.752,5.0,-8.923,0.0,0.0393,0.0371,0.00359,0.106,0.39,89.993,4.0,,Decca (UMO),"C © 2013 Decca, a division of Universal Music Operations Limited and Universal Studios for the Motion Picture Artwork, Artwork Title, and Photos., P This Compilation ℗ 2013 Decca, a division of Universal Music Operations Limited",1737 +1738,spotify:track:3E1noaYHi7tmZA0l8Apsz2,Wake Me Up,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:0Gbc3tyOXrlor173yPH6kT,The Secret Daughter - The Secret Edition (The Songs You Loved from the Original 7 Series),spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2017-03-10,https://i.scdn.co/image/ab67616d0000b273dfb52f4043ef29206d453208,1,16,222240,https://p.scdn.co/mp3-preview/d1c1f3e498ec4ef77c1784b4b92f9d00cdc5dafc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUBM01600287,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.634,0.473,8.0,-6.091,1.0,0.0383,0.621,0.0,0.101,0.336,101.818,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd / Screentime Pty Limited / Seven Network (Operations) Limited,1738 +1739,spotify:track:7v4LJ8nuY3gR6lECWW2XNz,Breathe in Now,spotify:artist:6l58yHeOd9sbH3Swm4kqjr,George,spotify:album:0fBnUwje0l3wYbUtW9KxXu,Polyserena,spotify:artist:6l58yHeOd9sbH3Swm4kqjr,George,2002,https://i.scdn.co/image/ab67616d0000b27322732a22a3cf67aa66b264c6,1,11,230106,https://p.scdn.co/mp3-preview/a4e6453e855c4c3a478076f14084c046698d79d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUMU00100851,spotify:user:bradnumber1,2023-01-30T19:17:59Z,,0.408,0.269,11.0,-14.393,0.0,0.0402,0.11,6.42e-05,0.0882,0.174,164.124,4.0,,WM Australia,"C © 2002 Mushroom Records, P ℗ 2002 Mushroom Records",1739 +1740,spotify:track:5imShWWzwqfAJ9gXFpGAQh,Waiting On the World to Change,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:1Xsprdt1q9rOzTic7b9zYM,Continuum,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2006-09-11,https://i.scdn.co/image/ab67616d0000b2737af5fdc5ef048a68db62b85f,1,1,201173,https://p.scdn.co/mp3-preview/41b88731f698985605bb9cca1d881d50c9c8d029?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USSM10602589,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.578,0.756,2.0,-5.82,1.0,0.115,0.157,0.000232,0.249,0.663,176.739,4.0,,Aware/Columbia,P (P) 2006 Aware Records LLC,1740 +1741,spotify:track:6LOvBuAV5KqwnNyPIVx79u,Hurts So Good,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:3aEIbk6NVA8d9s11cRBmSB,American Fool (Remastered),spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1982,https://i.scdn.co/image/ab67616d0000b273327bc253eda308ff03244526,1,1,218960,https://p.scdn.co/mp3-preview/3914b9da1b68aafd95c84338844c2e60ee19552c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJM18200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.785,0.737,9.0,-5.306,1.0,0.0363,0.0421,9.93e-05,0.108,0.971,125.447,4.0,,Universal Music Group,"C © 2005 John Mellencamp, under exclusive license to The Island Def Jam Music Group, P ℗ 2005 John Mellencamp, under exclusive license to The Island Def Jam Music Group",1741 +1742,spotify:track:5k5fWendNngd89O8JKoE8L,Better When I'm Dancin',spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:6C2AXbI5gZZ0eEFEQY83yH,Better When I'm Dancin',spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2015-10-14,https://i.scdn.co/image/ab67616d0000b273a348cd1b2496b47254acc74b,1,1,176266,https://p.scdn.co/mp3-preview/4d34941c16f7b9ead784989ffed3887e9013c803?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM11506387,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop",0.756,0.789,2.0,-7.002,1.0,0.0324,0.53,0.000711,0.157,0.873,127.987,4.0,,Epic,"P (P) 2015 Epic Records, a division of Sony Music Entertainment",1742 +1743,spotify:track:6Qb7gtV6Q4MnUjSbkFcopl,50 Ways to Leave Your Lover,spotify:artist:2CvCyf1gEVhI0mX6aFXmVI,Paul Simon,spotify:album:4A366gjTrYQwmRtkTezF2W,Still Crazy After All These Years,spotify:artist:2CvCyf1gEVhI0mX6aFXmVI,Paul Simon,1975-10-25,https://i.scdn.co/image/ab67616d0000b2733879ef4375b97d2b58bf0768,1,4,217346,https://p.scdn.co/mp3-preview/41aa0ddb2632aa1939ecbaa3bed10b28c47c5a0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM11002304,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,permanent wave,rock,singer-songwriter,soft rock",0.815,0.372,7.0,-12.814,1.0,0.0752,0.166,0.000116,0.0767,0.293,101.684,4.0,,Legacy Recordings,P (P) 1975 & 2004 Paul Simon under exclusive license to Sony Music Entertainment.,1743 +1744,spotify:track:4ARhdB2FzpXcko8T03YVen,Stay,spotify:artist:4a7CDXcRCXi4kp5z7SEXtg,Lisa Loeb & Nine Stories,spotify:album:5z0b4cI7aflFVUIGnLW8v8,Tails,spotify:artist:4a7CDXcRCXi4kp5z7SEXtg,Lisa Loeb & Nine Stories,1995-01-01,https://i.scdn.co/image/ab67616d0000b273fecc2bb2c7224c29ab4daf70,1,13,183716,https://p.scdn.co/mp3-preview/c05795aa9fcefc1af0442d11dbc5e53e069554b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19573414,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,pop rock",0.677,0.592,1.0,-6.887,1.0,0.0452,0.454,0.0,0.107,0.336,80.316,4.0,,Geffen,"C © 1995 Geffen Records Inc., P ℗ 1995 Geffen Records Inc.",1744 +1745,spotify:track:5ByR77vaqoXFHqkBG0DweN,I Love the Way You Love,spotify:artist:40PAEtNxO98lBeQHCza9vA,Marv Johnson,spotify:album:3wA92bW4PQyCrwhWG7QI5P,Marv Johnson 25 Original Tracks (Remastered),spotify:artist:40PAEtNxO98lBeQHCza9vA,Marv Johnson,2013-03-04,https://i.scdn.co/image/ab67616d0000b273f93e786d6dce2b11b2a3f78d,1,15,158946,https://p.scdn.co/mp3-preview/b7bfbc107db42562450a092b1110221385e83379?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEL81303561,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,rhythm and blues",0.742,0.778,7.0,-8.407,0.0,0.0727,0.696,0.0,0.27,0.897,134.807,4.0,,Hifi Hits,"C 2013 HiFi Hits Limited, P 2013 HiFi Hits Limited",1745 +1746,spotify:track:6zU7qPbE6S9ShTSToWTgEp,Don't Fall In Love,spotify:artist:3nJsM5uIME4qqS0dD0K0mo,The Ferrets,spotify:album:4UlgciIWneztjVvlyWgPOt,Dreams Of A Love,spotify:artist:3nJsM5uIME4qqS0dD0K0mo,The Ferrets,1977,https://i.scdn.co/image/ab67616d0000b273048584ab0fef16a845b9e553,1,10,195160,https://p.scdn.co/mp3-preview/d731ccbba02aff464e3cb9b0249bd99ef6392f3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUMU07700010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.645,0.695,2.0,-7.151,1.0,0.0267,0.236,0.00243,0.103,0.589,90.246,4.0,,WM Australia,"C © 1993 Mushroom Records Pty Ltd, P ℗ 1977 Mushroom Records Pty Ltd. Marketed and distributed by Warner Music Australia Pty Ltd",1746 +1747,spotify:track:59zGWeM47BIpJBTUshvOD4,Words Of Love,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,spotify:album:3MwGTBRM0IP1dUZrnqqPN8,The Mamas & The Papas,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,1966-08-30,https://i.scdn.co/image/ab67616d0000b27319ab57a14900a7b0f826764d,1,4,135893,https://p.scdn.co/mp3-preview/183d4cb5c464900179a67a48450cdc095beadb1b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16646376,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,mellow gold,psychedelic rock,rock,soft rock,sunshine pop",0.439,0.697,8.0,-6.626,0.0,0.045,0.529,0.0,0.215,0.627,115.904,4.0,,Universal Music Group,"C © 1966 Geffen Records, P ℗ 1966 Geffen Records",1747 +1748,spotify:track:1a3xfVZyJnlKn4t65ccBbp,"Lose Yourself - From ""8 Mile"" Soundtrack",spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:3eFDUa0q5bS0bYMp9LGJLk,Curtain Call: The Hits,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2005-12-06,https://i.scdn.co/image/ab67616d0000b2734f93d444eec1ee40f3884fa6,1,4,321213,https://p.scdn.co/mp3-preview/cd71f88115b968e4885599849c45f5a20965f4f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USIR10211570,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.703,0.746,2.0,-4.718,1.0,0.257,0.00535,1.8e-05,0.357,0.0655,171.387,4.0,,Aftermath,"C © 2005 Aftermath Entertainment/Interscope Records, P This Compilation ℗ 2005 Aftermath Entertainment/Interscope Records",1748 +1749,spotify:track:5W52WxNMAOlvAuE64v6d9U,The Honeymoon Is Over,spotify:artist:5m5cTNJ2RxfxKpGULocV9T,The Cruel Sea,spotify:album:34EpNqm350jVI69Ehxg2w2,The Honeymoon Is Over,spotify:artist:5m5cTNJ2RxfxKpGULocV9T,The Cruel Sea,1993-01-01,https://i.scdn.co/image/ab67616d0000b273ff7c3efb6a147ef09f5096ee,1,2,186600,https://p.scdn.co/mp3-preview/6d1ada975644e80fb96f35ddc62648c275fe2e58?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUPO09320002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.464,0.754,1.0,-7.286,1.0,0.104,0.00996,0.0078,0.32,0.588,94.438,4.0,,Universal Music Australia Pty. Ltd.,"C © 1993 Polydor Records, P ℗ 1993 Polydor Records",1749 +1750,spotify:track:4eh67nubmsyFPzcST1yFw8,It's A Hard Rain Gonna Fall,spotify:artist:6r1Xmz7YUD4z0VRUoGm8XN,Leon Russell,spotify:album:5l1GaRZlQ7jZ8XLW6qzCeL,Retrospective,spotify:artist:6r1Xmz7YUD4z0VRUoGm8XN,Leon Russell,1997-01-01,https://i.scdn.co/image/ab67616d0000b27388633ebf0f4bebca731881bc,1,2,311000,https://p.scdn.co/mp3-preview/fadf9786f0a976a17123cfb440231c2906ec206f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USSH49500115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,country rock,folk,folk rock,mellow gold,outlaw country,piano rock,roots rock,singer-songwriter,southern rock,swamp rock",0.677,0.467,5.0,-14.351,1.0,0.0306,0.375,0.000737,0.0797,0.855,85.785,4.0,,The Right Stuff,"C © 1997 The Right Stuff, P This Compilation ℗ 1997 The Right Stuff",1750 +1751,spotify:track:6RT3PxDEQOa7m6tK502DNa,How Bizarre,spotify:artist:4vdt8TD56jjQfmxFCmhubX,OMC,spotify:album:6ptQKIBekNgXIlJrLVn9dk,How Bizarre,spotify:artist:4vdt8TD56jjQfmxFCmhubX,OMC,1996,https://i.scdn.co/image/ab67616d0000b27339000a3ce5d3a07414383030,1,2,224053,https://p.scdn.co/mp3-preview/823d71bf846464229b2d725be08a9b60eb42e5a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZPY09500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nz pop,0.784,0.675,0.0,-7.718,1.0,0.049,0.261,1.4e-06,0.293,0.854,124.908,4.0,,Universal Music LLC,"C (C) 1996 Universal Music NZ Ltd., P (P) 1996 Universal Music NZ Ltd.",1751 +1752,spotify:track:0vTKR5TQD03kASmEGlyDF3,In These Arms,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:2FbviTPUjgJJUxsGM1sGDq,Keep The Faith,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1992-11-03,https://i.scdn.co/image/ab67616d0000b27359bfe048568a969c6f0bd08c,1,4,319226,https://p.scdn.co/mp3-preview/d2ebf978b85257537f619e8999fc41f1326c22b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USPG19290092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.51,0.915,4.0,-3.036,1.0,0.0562,0.00884,1.75e-05,0.205,0.459,123.257,4.0,,Island Records,"C © 1992 The Island Def Jam Music Group, P ℗ 1992 UMG Recordings, Inc.",1752 +1753,spotify:track:0g8Dq6OpSmWengqtLrVr77,The Reaper,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:2DORQjKJVYZMx9uu82UGtT","The Chainsmokers, Amy Shark",spotify:album:01GR4NL5O5CZM51k0aejKD,World War Joy,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2019-12-06,https://i.scdn.co/image/ab67616d0000b2735e90ff76fd49a23f7333de76,1,1,182933,https://p.scdn.co/mp3-preview/900eb707bbfcc30f56ad4e144c6eea6c4cc7ddbe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USQX91903243,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,australian pop",0.633,0.564,8.0,-7.789,0.0,0.0701,0.135,0.0,0.201,0.648,164.008,4.0,,Disruptor Records/Columbia,P (P) 2019 Disruptor Records/Columbia Records,1753 +1754,spotify:track:4DQHskgY5OOkwn9xavjv1g,#thatPOWER,"spotify:artist:085pc2PYOi8bGKj0PNjekA, spotify:artist:1uNFoZAHBGtllmzznpCI3s","will.i.am, Justin Bieber",spotify:album:6H7mXPXFFDOpby7Xcke1vh,#willpower (Deluxe),spotify:artist:085pc2PYOi8bGKj0PNjekA,will.i.am,2013-01-01,https://i.scdn.co/image/ab67616d0000b2737cd0e09e531fbca549d76cbf,1,9,279506,https://p.scdn.co/mp3-preview/91b7cff2a5f9f7622252ea5852730d3467b681b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71302526,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,canadian pop,pop",0.794,0.603,6.0,-6.127,0.0,0.0615,0.00158,9.5e-05,0.0773,0.402,127.997,4.0,,Universal Music Group,"C © 2013 Interscope Records, P ℗ 2013 Interscope Records",1754 +1755,spotify:track:1cnoj3gWltCrWBZ77jZtmj,Back for Good - Radio Mix,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,spotify:album:3EDHjaMw0qsrzwAB0PDmO4,Never Forget - The Ultimate Collection,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,2005,https://i.scdn.co/image/ab67616d0000b27369c045b4bf11c807299b19b4,1,2,241293,https://p.scdn.co/mp3-preview/0a24721ab80a30ab192a9b1c0097569f40c65446?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9500020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop,talent show",0.569,0.517,5.0,-9.352,1.0,0.0333,0.313,0.0,0.145,0.508,78.844,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2007 Sony BMG Music Entertainment (UK) Limited,1755 +1756,spotify:track:46C6OS7z78QtCxEACPrspw,Can You Feel The Love Tonight,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:5wNitMGZs4mCBdbKFbzwzn,Greatest Hits,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,2002,https://i.scdn.co/image/ab67616d0000b273995be10a6b380541b2717be8,2,9,240800,https://p.scdn.co/mp3-preview/5f679925b97ec60cab073239f49cde523a61aa04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USAMP9400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.308,0.305,10.0,-10.669,1.0,0.0309,0.809,9.55e-05,0.096,0.145,125.243,4.0,,Mercury Records Limited,"C (C) 2007 Mercury Records Limited, P (P) 2007 Mercury Records Limited",1756 +1757,spotify:track:3qxvIhgdd3k22ioRqmgamM,Not Enough Indians,spotify:artist:49e4v89VmlDcFCMyDv9wQ9,Dean Martin,spotify:album:6anBFHbt3PaNwDKWbsVkzG,The Reprise Years,spotify:artist:49e4v89VmlDcFCMyDv9wQ9,Dean Martin,2013-11-19,https://i.scdn.co/image/ab67616d0000b2736abb21c286af583667bb0e40,1,19,206880,https://p.scdn.co/mp3-preview/4840ef7fe59abf6ec409835422d90d4316013434?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,USQX91301954,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,vocal jazz",0.557,0.423,2.0,-11.415,1.0,0.0409,0.845,0.0,0.444,0.699,141.635,4.0,,Legacy Recordings,P 2013 Sony Music Entertainment/All rights reserved by Dean Martin Family Trust,1757 +1758,spotify:track:2BTw5ZxeBygVJpdMK1Ur3c,Hotel,spotify:artist:3CGuwWgoCYSO5Z72H5G2Ec,Kita Alexander,spotify:album:3wjT9n3kEHPabvYIqCzWi2,Hotel,spotify:artist:3CGuwWgoCYSO5Z72H5G2Ec,Kita Alexander,2017-05-05,https://i.scdn.co/image/ab67616d0000b273517d58990c43ba99eedf28cd,1,1,227557,https://p.scdn.co/mp3-preview/6e3e82245211f27d451bdb5f7b405faee84e44be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBAHS1700338,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian indie",0.413,0.621,7.0,-5.862,1.0,0.0281,0.348,3.15e-06,0.111,0.199,129.535,4.0,,WM Australia,"C © 2017 Warner Music Australia Pty Ltd, P ℗ 2017 Warner Music Australia Pty Ltd",1758 +1759,spotify:track:01uqI4H13Gsd8Lyl1EYd8H,Same Love (feat. Mary Lambert),"spotify:artist:6WLvgbfYXQPO396oJEYCsi, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp, spotify:artist:5Z2NUZiY3FA00HKu5WTMhA","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis, Mary Lambert",spotify:album:76FXHQhTuT4QMIxfL09gX8,The Heist,"spotify:artist:6WLvgbfYXQPO396oJEYCsi, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis",2012-10-09,https://i.scdn.co/image/ab67616d0000b27398a02fef3a8b1d80a0f164ec,1,5,318525,https://p.scdn.co/mp3-preview/8166f1843adfb5d5309e163a98aaa14d553f4f6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GMM881200024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop,pop rap,neo mellow",0.688,0.473,8.0,-9.059,1.0,0.167,0.716,4.46e-05,0.104,0.299,84.958,4.0,,Macklemore,"C © 2012 Macklemore, LLC., P ℗ 2012 Macklemore, LLC.",1759 +1760,spotify:track:20jLDIyJrTOSletWud3KRv,Lady In Blue,spotify:artist:3sebqZKFZ8aJsgQu4YaKQh,Joe Dolan,spotify:album:44n6n12uSkozxlbWPB3dxP,The Best of Joe Dolan,spotify:artist:3sebqZKFZ8aJsgQu4YaKQh,Joe Dolan,1993-09-13,https://i.scdn.co/image/ab67616d0000b273d8d02deeb99c6c6ad622ca5f,1,5,180773,https://p.scdn.co/mp3-preview/dc93a8ab9f76e807007e45b87a967310df74f721?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE7500571,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.449,0.587,2.0,-11.187,1.0,0.0422,0.0105,5.63e-06,0.0624,0.493,118.146,4.0,,Sanctuary Records,"C © 1997 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1997 Sanctuary Records Group Ltd., a BMG Company",1760 +1761,spotify:track:0hrh211HEFDbqIpG6znlwQ,I'd Lie For You (And That's The Truth),spotify:artist:7dnB1wSxbYa8CejeVg98hz,Meat Loaf,spotify:album:2zpSj5iBkyxYy9uEVA4ucY,Welcome To The Neighbourhood,spotify:artist:7dnB1wSxbYa8CejeVg98hz,Meat Loaf,1995,https://i.scdn.co/image/ab67616d0000b2736fe5282882cb14e14558f697,1,2,401008,https://p.scdn.co/mp3-preview/bdb750cb4a0592615859211df0650ca891da00b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAAA9500413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,album rock,0.418,0.596,2.0,-8.814,1.0,0.0368,0.553,0.0,0.225,0.283,171.025,4.0,,EMI Catalogue,"C © 2011 Virgin Records Limited, P ℗ 2011 Virgin Records Limited",1761 +1762,spotify:track:2P2Z5SKtWUt46qfYfWkB8m,Boy Oh Boy,spotify:artist:1W4SfNO5hb1tdX0wQ87zxl,Racey,spotify:album:7Lj60heeynLtuvguh42sEY,The Best Of Racey,spotify:artist:1W4SfNO5hb1tdX0wQ87zxl,Racey,2003-02-28,https://i.scdn.co/image/ab67616d0000b2738436cf22bcfe1ac7fec4e201,1,10,173560,https://p.scdn.co/mp3-preview/d3be2fd58e5cead0306bd067e2971fadb8c4b3c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,GBAYE7900140,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.702,0.549,3.0,-5.766,1.0,0.107,0.387,0.0,0.105,0.825,137.874,4.0,,Parlophone UK,"C © 1993 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1993 Parlophone Records Ltd, a Warner Music Group Company",1762 +1763,spotify:track:3v9ELl9T121dhadZyIiQVn,Thorn in My Side - Remastered,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",spotify:album:5vl4lQTP3L0avOrXQizFso,Revenge,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",1986-06-30,https://i.scdn.co/image/ab67616d0000b27339efc86eb5981f6de0bf96f5,1,2,253400,https://p.scdn.co/mp3-preview/5d373ca0e7171c4d3ed00740197a3cbfb7f30954?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBARL0300632,spotify:user:bradnumber1,2021-11-11T04:16:41Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard",0.663,0.903,7.0,-2.529,1.0,0.0294,0.0421,1.44e-05,0.131,0.775,122.206,4.0,,RCA Records Label,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,1763 +1764,spotify:track:2MEUc59MuSe9VpoGwwf5Jt,Little Boy Sad,spotify:artist:0cEJSYD5E7KbgfqpFr9KJ7,M.P.D. Limited,spotify:album:2eOqMt2suCPNSvf0vDQh2P,Go!! Records the Complete Collection,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-08-17,https://i.scdn.co/image/ab67616d0000b27350340cba0b7963c42dd24abb,1,19,146240,https://p.scdn.co/mp3-preview/c32ee05d6e020e90bef536b5a1d84d9e44492540?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AU3O01802705,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.594,0.728,4.0,-5.213,1.0,0.0379,0.0654,0.00282,0.114,0.907,116.869,4.0,,Aztec Music,"C © 2018 Aztec Records, P ℗ 2018 Aztec Records",1764 +1765,spotify:track:1MANhf0nwr6gFwsRJMeDbr,Turning Japanese - Non Stop Edit,spotify:artist:4K3NWDwBIxgktui14SccR2,The Vapors,spotify:album:0vAu0PT8xKotNhKDzYXJHA,New Clear Days,spotify:artist:4K3NWDwBIxgktui14SccR2,The Vapors,1980-07-01,https://i.scdn.co/image/ab67616d0000b27360e594fd9a41134979feab3d,1,2,224106,https://p.scdn.co/mp3-preview/df2c83a10ad8ef1ae7d012f3bf20cdb1b9f07775?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAYE8000147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mod revival,new wave",0.503,0.908,0.0,-5.845,1.0,0.0641,0.0273,7.88e-05,0.396,0.92,179.929,4.0,,RT Industries,"C © 2018 RT Industries, P ℗ 2018 RT Industries",1765 +1766,spotify:track:3tbNT2X5tfMIVeUflYbZUZ,Alone (Feat. Big Sean & Stefflon Don),"spotify:artist:26VFTg2z8YR0cCuwLzESi2, spotify:artist:0c173mlxpT3dSFRgMO8XPh, spotify:artist:2ExGrw6XpbtUAJHTLtUXUD","Halsey, Big Sean, Stefflon Don",spotify:album:190COxDpvoXiXx7a9WofgJ,Alone (Feat. Big Sean & Stefflon Don),"spotify:artist:26VFTg2z8YR0cCuwLzESi2, spotify:artist:0c173mlxpT3dSFRgMO8XPh, spotify:artist:2ExGrw6XpbtUAJHTLtUXUD","Halsey, Big Sean, Stefflon Don",2018-03-15,https://i.scdn.co/image/ab67616d0000b273b7e30caa4a9da503126f2934,1,1,207457,https://p.scdn.co/mp3-preview/4def1f1ecc4b1a95208c619421b98c8e8a58c4c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USUM71802762,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,etherpop,indie poptimism,pop,detroit hip hop,hip hop,pop rap,r&b,rap,southern hip hop,trap,dancehall,dancehall queen,uk dancehall,uk hip hop",0.445,0.662,2.0,-4.802,0.0,0.181,0.0164,0.0,0.219,0.479,200.04,4.0,,Astralwerks (ASW),"C © 2018 Astralwerks, P ℗ 2018 Astralwerks",1766 +1767,spotify:track:24WQvfKUCLKN1z0AcnNCc7,I Want to Wake Up With You,"spotify:artist:2fV23bDf2vC1f49t5j6wtW, spotify:artist:1WEDL03j6ZUneGDJhYyKkD, spotify:artist:7is8Pjkal8dpE7bMkTVhaP, spotify:artist:1FaFcKSNB03VR3q7D7Bx6H","Boris Gardiner, Rudy Thomas, Steven Stanley, Willie Lindo",spotify:album:2iN2FJ1HJlWnrIzXbPGnBo,Everything to Me (Expanded Version),spotify:artist:2fV23bDf2vC1f49t5j6wtW,Boris Gardiner,1986-01-01,https://i.scdn.co/image/ab67616d0000b27345ef42ce82eee89da634dc7a,1,5,241760,https://p.scdn.co/mp3-preview/40d77a931bbb0361d1a5b0fe2e0276939c87305c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE8600163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.712,0.323,3.0,-17.612,1.0,0.0442,0.721,8.38e-06,0.112,0.731,81.529,4.0,,Trojan Records,"C © 2019 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2019 Sanctuary Records Group Ltd., a BMG Company",1767 +1768,spotify:track:07TpJXlJ7y50uxqhOiK06t,America,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:5o8IrQOjfnuWNpQtzvZEOP,The Sound Of Drums,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2003,https://i.scdn.co/image/ab67616d0000b273ebec5ce374c862d77327d614,2,13,274600,https://p.scdn.co/mp3-preview/4afbe35b0d3b73dd428f6f1017341b55ce5400c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,AUBM01000177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.647,0.878,3.0,-4.544,0.0,0.0589,0.0211,0.000827,0.0878,0.239,127.981,4.0,,Sony Music Entertainment,"P (P) 2011 Sony Music Entertainment Australia Pty Ltd. except tracks 2 & 9 (P) 2010 & (P) 2009, and tracks/(P) 2011 Sony Music Entertainment Australia Pty Ltd. except tracks 2 & 9 (P) 2010 & (P) 2009, and tracks 10, 13 & 14 (P) 2003 Vicious Recordings Pty Ltd Australia",1768 +1769,spotify:track:5ZpjODX6OH1xZs3AOewTO6,Filthy,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:01l3jTY261V3CESZR4dABz,Man of the Woods,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2018-02-02,https://i.scdn.co/image/ab67616d0000b2734626ff0fee963da605f6aa06,1,1,293946,https://p.scdn.co/mp3-preview/4e366614d92cbd410ea93d01726f69911154fd7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USRC11702778,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.745,0.579,1.0,-5.771,1.0,0.138,0.0354,0.0118,0.246,0.645,97.002,4.0,,RCA Records Label,"P (P) 2018 RCA Records, a division of Sony Music Entertainment",1769 +1770,spotify:track:5FbXuglHWaQtdmR9Hb19ox,Love Me Tonight,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,spotify:album:0j5KURgO7zBE66gKpGV9md,It's Not Unusual,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,1987-01-01,https://i.scdn.co/image/ab67616d0000b27300b26cec4608fe85011c9ddd,1,6,195266,https://p.scdn.co/mp3-preview/722470c0ceb62973072ae83f6352eb39f5912924?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF076920040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion",0.487,0.621,7.0,-13.815,0.0,0.0429,0.204,0.0,0.212,0.808,105.428,4.0,,Universal Music Group,"C © 1987 Decca Music Group Limited, P ℗ 1987 Decca Music Group Limited",1770 +1771,spotify:track:7BKLCZ1jbUBVqRi2FVlTVw,Closer,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:26VFTg2z8YR0cCuwLzESi2","The Chainsmokers, Halsey",spotify:album:0rSLgV8p5FzfnqlEk4GzxE,Closer,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:26VFTg2z8YR0cCuwLzESi2","The Chainsmokers, Halsey",2016-07-29,https://i.scdn.co/image/ab67616d0000b273495ce6da9aeb159e94eaa453,1,1,244960,https://p.scdn.co/mp3-preview/cfd565c4d3c621771e6d25d99749b9fc200e396c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USQX91601347,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,electropop,etherpop,indie poptimism,pop",0.748,0.524,8.0,-5.599,1.0,0.0338,0.414,0.0,0.111,0.661,95.01,4.0,,Disruptor Records/Columbia,P (P) 2016 Disruptor Records/Columbia Records,1771 +1772,spotify:track:500h8jAdr7LvzzXlm1qxtK,Magic,spotify:artist:6PwcexHTG0qJWQQwp05Bpm,Pilot,spotify:album:2ECNvuuHKvd8x0Qy2737Rw,From The Album Of The Same Name,spotify:artist:6PwcexHTG0qJWQQwp05Bpm,Pilot,1974-01-01,https://i.scdn.co/image/ab67616d0000b273899723466c43d2fe91244f52,1,2,186333,https://p.scdn.co/mp3-preview/dccd4d0d0f5ded060c6e6f91de55da5d4fd6bd8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAYE7400052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,glam rock",0.393,0.588,9.0,-6.68,0.0,0.0613,0.345,0.0,0.134,0.728,203.145,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",1772 +1773,spotify:track:06yzME6dtXmBFO4DB5rVaT,Soul Limbo,spotify:artist:2vDV0T8sxx2ENnKXds75e5,Booker T. & the M.G.'s,spotify:album:73Txt1LNlamt9KtfZu2yZr,Soul Limbo,spotify:artist:2vDV0T8sxx2ENnKXds75e5,Booker T. & the M.G.'s,1968,https://i.scdn.co/image/ab67616d0000b2735ed08ce3138876c02b31eaee,1,6,142106,https://p.scdn.co/mp3-preview/6c3c3ce36542678a52753e95afdbd3607129c8d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USFI86800043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,classic soul,instrumental funk,instrumental soul,memphis soul,soul,southern soul,traditional blues",0.703,0.663,0.0,-10.463,1.0,0.0415,0.109,0.797,0.0831,0.974,124.299,4.0,,Stax,"C © 1991 Stax Records, P ℗ 1991 Stax Records",1773 +1774,spotify:track:7rQiW2mJDbP77h2RLlASTw,Supreme,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:11DmTQm7WPeSXih1FPuaXL,Sing When You're Winning,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2000-01-01,https://i.scdn.co/image/ab67616d0000b273c5f3aaf3b54a777d96ecf604,1,4,258399,https://p.scdn.co/mp3-preview/5ba4bdff2ae5e286650af5693ab6b917e94dc222?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAYK0000129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.561,0.848,5.0,-5.132,1.0,0.0587,0.00279,1.01e-06,0.328,0.756,96.225,4.0,,Chrysalis UK,"C © 2000 Chrysalis Records Ltd, P ℗ 2000 Chrysalis Records Ltd",1774 +1775,spotify:track:6J2LdBN97cDWn0MLxYh9HB,July,spotify:artist:55fhWPvDiMpLnE4ZzNXZyW,Noah Cyrus,spotify:album:5Gn3fFzlWL89j0hGumtXb5,THE END OF EVERYTHING,spotify:artist:55fhWPvDiMpLnE4ZzNXZyW,Noah Cyrus,2020-05-15,https://i.scdn.co/image/ab67616d0000b2737f66b73bd6e86f4c8d2a7692,1,6,156106,https://p.scdn.co/mp3-preview/ab2efd6b8bca3e91b935141a479283825d35627e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USQX91901092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,pop",0.708,0.186,9.0,-8.953,0.0,0.042,0.868,0.0,0.0779,0.322,72.541,4.0,,Records/Columbia,"P (P) 2020 Records Label, LLC / Columbia",1775 +1776,spotify:track:7vpSxQD4FpYvYLHVN9TSa4,To Her Door,spotify:artist:0SNWoGaDlrCompmg9rXeNq,Paul Kelly,spotify:album:2kmbLohyHyFyeIb684f6rA,Paul Kelly's Greatest Hits: Songs From The South: Volume 1 & 2,spotify:artist:0SNWoGaDlrCompmg9rXeNq,Paul Kelly,2010-01-01,https://i.scdn.co/image/ab67616d0000b273ddbf3183a492d4ab1b0e1b80,1,7,197066,https://p.scdn.co/mp3-preview/bb8fbf03d7c0a6104bf819665ad1a210f622690c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUYP00820008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian rock",0.533,0.792,7.0,-7.832,1.0,0.0331,0.035,0.000143,0.0551,0.494,164.15,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Paul Kelly, P This Compilation ℗ 2010 Paul Kelly",1776 +1777,spotify:track:69EILuL34ggLWQsa626bes,Love Child,spotify:artist:0rXI0q8Cahq6numvPlloaq,Diana Ross & The Supremes,spotify:album:3kBcXeEHgrdFc99iDeWStA,The Ultimate Collection: Diana Ross & The Supremes,spotify:artist:0rXI0q8Cahq6numvPlloaq,Diana Ross & The Supremes,1997-10-07,https://i.scdn.co/image/ab67616d0000b2733c35d5ff66f0ed3254f52b90,1,19,181573,https://p.scdn.co/mp3-preview/62650370ae85d768810353a2aae36563151b9112?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USMO16882678,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,motown",0.574,0.96,9.0,-0.81,0.0,0.0456,0.125,2.27e-05,0.23,0.651,105.008,4.0,,UNI/MOTOWN,"C © 1997 UMG Recordings, Inc., P This Compilation ℗ 1997 UMG Recordings, Inc.",1777 +1778,spotify:track:43TDFuJclqZSQrHZvOpMSv,"Night Fever - From ""Saturday Night Fever"" Soundtrack",spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:5DDYh6LgANWIVRo0k3MGyv,Tales From The Brothers Gibb,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1990-10-01,https://i.scdn.co/image/ab67616d0000b273c7fc603f96d9a75ea2bfdffa,3,10,209506,https://p.scdn.co/mp3-preview/30652da5605415eefb8ce2767ae04cbf7295a0e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,NLF057790035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.737,0.514,1.0,-15.812,0.0,0.0288,0.0241,0.00479,0.135,0.902,109.16,4.0,,Bee Gees Catalog,"C © 1990 UMG Recordings, Inc., P This Compilation ℗ 1990 UMG Recordings, Inc.",1778 +1779,spotify:track:0JzvEqMgKqQVwZSjtEWPgJ,Standing,spotify:artist:0Il5DGqZvT1jz3mWL8LR5y,Kayls,spotify:album:61CRJc6O4cTFenoSG8kkix,Standing,spotify:artist:0Il5DGqZvT1jz3mWL8LR5y,Kayls,2021-02-10,https://i.scdn.co/image/ab67616d0000b2733142942fa7171d9218cc4a87,1,1,327877,,True,0,QM24S2011548,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.671,0.777,9.0,-6.231,1.0,0.0742,0.00266,0.0216,0.087,0.222,172.091,4.0,,Kayls,P 2021 Kayls,1779 +1780,spotify:track:5AoBNJQDXXEnIJGjJjZu3y,Just Another Day,spotify:artist:10n1KB2sjTrGdyuC83y8jW,Jon Secada,spotify:album:1duV6ATgfQWMvjNyfHmxZL,Jon Secada,spotify:artist:10n1KB2sjTrGdyuC83y8jW,Jon Secada,1992-01-01,https://i.scdn.co/image/ab67616d0000b273b4b02d890230139604057523,1,1,327426,https://p.scdn.co/mp3-preview/e28eaf9ffcde6bdd36b3ee82bfdfa1ab05c289b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSB29200100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.717,0.642,1.0,-10.727,1.0,0.0287,0.0194,0.000249,0.043,0.732,105.894,4.0,,SBK/EMI RECORDS,"C © 1992 Capitol Records, LLC, P ℗ 1992 Capitol Records, LLC",1780 +1781,spotify:track:0B1ir19jaWI1KNDbWbXwEZ,Anna Sun,spotify:artist:6DIS6PRrLS3wbnZsf7vYic,WALK THE MOON,spotify:album:3Bpb5jmMbmqddRmfQjmJlU,Walk The Moon (Expanded Edition),spotify:artist:6DIS6PRrLS3wbnZsf7vYic,WALK THE MOON,2012-06-19,https://i.scdn.co/image/ab67616d0000b2736aa080787da051a34157e1e2,1,4,321293,https://p.scdn.co/mp3-preview/f99ba735f51bd8d70ea1bede08981cf7a6fe52c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USRC11200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,modern alternative rock,modern rock,neo mellow,pop rock",0.473,0.861,10.0,-6.549,1.0,0.0543,0.00212,0.0,0.214,0.308,139.976,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",1781 +1782,spotify:track:2H7PHVdQ3mXqEHXcvclTB0,1999,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:3U1ht9EdWEI9nMvaqdQI67,1999,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1982-10-27,https://i.scdn.co/image/ab67616d0000b2734117e531f63855d072059d6e,1,1,379266,https://p.scdn.co/mp3-preview/610584d53bbeb52240b3462221a3ed9239b895a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USWB18200028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.866,0.73,5.0,-8.201,1.0,0.0767,0.137,0.0,0.0843,0.625,118.523,4.0,,Warner Records,"C © 1984 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1984 NPG Records, Inc. under exclusive license to Warner Records Inc.",1782 +1783,spotify:track:7ju97lgwC2rKQ6wwsf9no9,Rain On Me (with Ariana Grande),"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR","Lady Gaga, Ariana Grande",spotify:album:05c49JgPmL4Uz2ZeqRx5SP,Chromatica,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2020-05-29,https://i.scdn.co/image/ab67616d0000b2736040effba89b9b00a6f6743a,1,4,182200,https://p.scdn.co/mp3-preview/0e1f4d14825f1a67b816669d4fd15131c097f056?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUM72004304,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop,pop",0.672,0.855,9.0,-3.764,1.0,0.0397,0.021,0.0,0.323,0.646,123.056,4.0,,Interscope,"C © 2020 Interscope Records, P ℗ 2020 Interscope Records",1783 +1784,spotify:track:3btRbeejnidrYVyJt6J7Gz,Bad Medicine,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:4SIeviZcnTJ86k3LUAj2yu,New Jersey (Deluxe Edition),spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1988-09-13,https://i.scdn.co/image/ab67616d0000b273c40382e07dd266d28a083d45,1,2,316706,https://p.scdn.co/mp3-preview/a42f3cc3f87a76479da0307ae210e3d902e53928?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.55,0.971,9.0,-3.796,1.0,0.0353,0.0495,0.0,0.091,0.819,118.709,4.0,,Universal Music Group,"C © 2014 The Island Def Jam Music Group, P ℗ 2014 The Island Def Jam Music Group",1784 +1785,spotify:track:00EFiTY9J25JGmLPp7zF6F,Let It Be Me,spotify:artist:0LmgCb9GDONh4eFlyzIhUE,Johnny Young & Kompany,spotify:album:6fZ9nqISjg8XojtcExpB3i,Young Johnny,spotify:artist:0LmgCb9GDONh4eFlyzIhUE,Johnny Young & Kompany,1966-01-01,https://i.scdn.co/image/ab67616d0000b273fa82a717fe33298629656d8d,1,6,160358,,False,0,GBRKQ2017039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic australian country,0.35,0.349,7.0,-10.405,1.0,0.0266,0.767,0.0545,0.101,0.256,92.694,4.0,,Planet Blue Records,"C 1966 Clarion Records, P 1966 Clarion Records",1785 +1786,spotify:track:6HIElrRO0GdlFZB54iVyiI,And The Boys,spotify:artist:4tvKz56Tr39bkhcQUTO0Xr,Angus & Julia Stone,spotify:album:0C29hfEJQdcyzpTHy8tTXr,Down The Way,spotify:artist:4tvKz56Tr39bkhcQUTO0Xr,Angus & Julia Stone,2010-03-12,https://i.scdn.co/image/ab67616d0000b273f11a093d3322196862fd7ce5,1,7,249893,https://p.scdn.co/mp3-preview/1dd1d96f463efb963c061faad1a0a8dffaee7120?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUAP10900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie folk,indie folk",0.791,0.42,5.0,-8.905,0.0,0.0285,0.558,0.0173,0.129,0.507,99.882,4.0,,Capitol,"C © 2010 Angus and Julia Stone Pty Limited, P ℗ 2010 Angus and Julia Stone Pty Limited",1786 +1787,spotify:track:4Z0pQEQKDRjtSUBSBrZTHP,Say It Isn't So,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:2R8sO7coUsDazpoQzmGIWp,Crush,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2000-06-13,https://i.scdn.co/image/ab67616d0000b27305e593aaa47659429ba3804e,1,2,213333,https://p.scdn.co/mp3-preview/4dc869b04c68862e43902e496661ab881c226f63?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20000162,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.454,0.805,7.0,-4.946,1.0,0.0311,0.0225,0.0,0.358,0.586,91.267,4.0,,Universal Music Group,"C © 2000 The Island Def Jam Music Group, P ℗ 2000 The Island Def Jam Music Group",1787 +1788,spotify:track:4jrEJvfSn7kJcZR4oD7VGo,I Hear You Knocking,spotify:artist:65Gh3BfK84aTIugiRCgLBA,Dave Edmunds,spotify:album:7gdnNeLNm05j7gzB3qEB90,The Best Of The EMI Years,spotify:artist:65Gh3BfK84aTIugiRCgLBA,Dave Edmunds,2005-07-04,https://i.scdn.co/image/ab67616d0000b273bc10b4d35eaf9e5c33090cbb,1,1,167786,https://p.scdn.co/mp3-preview/79e119cb5f559d5e7a46d92840ee711e71195570?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAYE7100063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,power pop,pub rock,rockabilly",0.528,0.445,6.0,-12.075,0.0,0.0482,0.0198,0.000384,0.0766,0.97,206.361,4.0,,Parlophone UK,"C © 2005 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2005 Parlophone Records Ltd, a Warner Music Group Company",1788 +1789,spotify:track:084PXFhuurZHjsjgdwQci6,Manic Monday,spotify:artist:51l0uqRxGaczYr4271pVIC,The Bangles,spotify:album:7v7kpwwk6JXKS3klilqXV7,Different Light,spotify:artist:51l0uqRxGaczYr4271pVIC,The Bangles,1986,https://i.scdn.co/image/ab67616d0000b273a0fb06737987cb6770382f92,1,1,186333,https://p.scdn.co/mp3-preview/d1942c0b481d4c567ca6dff9da63a73e7f8e0be5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,AUMU08600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,jangle pop,new romantic,new wave,new wave pop,paisley underground,soft rock",0.682,0.616,2.0,-10.38,1.0,0.0293,0.372,6.81e-06,0.164,0.83,121.63,4.0,,WM Australia,"C © 1986 The Bangles, under license to Festival Mushroom Records, P ℗ 1986 The Bangles, under license to Festival Mushroom Records",1789 +1790,spotify:track:1UBQ5GK8JaQjm5VbkBZY66,Sharp Dressed Man - 2008 Remaster,spotify:artist:2AM4ilv6UzW0uMRuqKtDgN,ZZ Top,spotify:album:5LMGAYhn2ywaxGZdtmXGpw,Eliminator,spotify:artist:2AM4ilv6UzW0uMRuqKtDgN,ZZ Top,1983-03-23,https://i.scdn.co/image/ab67616d0000b27328a00032ff3b86af3d7e0e54,1,3,258026,https://p.scdn.co/mp3-preview/d4f6bb9a03b4412530d731ce7a1f2afbb58ef4a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USWB10702682,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,hard rock,rock",0.601,0.859,5.0,-5.263,1.0,0.0276,0.000359,0.00124,0.0871,0.446,125.145,4.0,,Rhino/Warner Records,"C 2008 © 1983 Warner Records Inc., P 2008 ℗ 1983 Warner Records Inc. Marketed by Warner Strategic Marketing, a Warner Music Group Company.",1790 +1791,spotify:track:4PVm8e67skz8B8wiJP2kwk,New Thang,spotify:artist:3mH3OBKopDDVgnJcT5PrPk,Redfoo,spotify:album:4Y3T5MRPv5Ey9TQPTjAcKo,New Thang,spotify:artist:3mH3OBKopDDVgnJcT5PrPk,Redfoo,2015-07-13,https://i.scdn.co/image/ab67616d0000b273b4993adcf493566cfa67fac0,1,1,226800,https://p.scdn.co/mp3-preview/c377606c762e2ecf1e483235306e215b857b8b71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,TCABZ1405080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.743,0.841,0.0,-5.189,1.0,0.0391,0.0156,0.0,0.133,0.814,100.003,4.0,,Party Rock Records,"C © 2014 Party Rock Records, LLC, P ℗ 2014 Party Rock Records, LLC",1791 +1792,spotify:track:3ISw0ZbIocgoNoxu7cpTUl,Shine,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),spotify:album:7BZ81dThqcxbFTXKY36Oek,Communion,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),2015-07-10,https://i.scdn.co/image/ab67616d0000b27375c5155be757f8d8e15aa0c0,1,3,255506,https://p.scdn.co/mp3-preview/b4250607a077ff9f9324f7cf816d77ee222c9cdb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71501271,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gauze pop,pop,pop dance,uk pop",0.662,0.732,1.0,-5.22,0.0,0.0357,0.211,0.0,0.102,0.431,108.003,4.0,,Universal Music Group,"C © 2015 Polydor Ltd. (UK), P ℗ 2015 Polydor Ltd. (UK)",1792 +1793,spotify:track:2CBSaKuKgKCa40jEbitmcv,Stop Your Fussin',spotify:artist:7lQC1mHpO4lvLpN9XYZlIH,Toni Childs,spotify:album:4w6BNxe0W7Ld1gCK30yAt3,Union,spotify:artist:7lQC1mHpO4lvLpN9XYZlIH,Toni Childs,1988-01-01,https://i.scdn.co/image/ab67616d0000b273a288986077ddb35dc5bdd72a,1,3,280706,https://p.scdn.co/mp3-preview/dd4213e8b48d83c7be42377049c5cbf335a843fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USAM18800969,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.815,0.514,5.0,-13.734,1.0,0.0349,0.183,2.13e-06,0.0949,0.811,118.299,4.0,,A&M,"C © 1988 A&M Records Inc., P ℗ 1988 A&M Records Inc.",1793 +1794,spotify:track:135cNW8kQtiTId7qcsJfVC,Here Without You,"spotify:artist:2RTUTCvo6onsAnheUk3aL9, spotify:artist:30I8GIK3UqVyAg58557mdJ","3 Doors Down, Jack Joseph Puig",spotify:album:22S5arZONb8LdaURbpzpDR,The Greatest Hits,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,2012-01-01,https://i.scdn.co/image/ab67616d0000b2738478a4997f9c8d1e197423c3,1,3,235640,https://p.scdn.co/mp3-preview/ba8ccf6b61f2b5929fa0528820e90e2406a6593f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM71213126,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.469,0.67,10.0,-4.604,0.0,0.027,0.00815,0.0,0.132,0.158,144.045,4.0,,Universal Records,"C © 2012 Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2012 Universal Republic Records, a division of UMG Recordings, Inc.",1794 +1795,spotify:track:1z4xjDLLWJgG48Bn8OCxZv,Help I'm Alive,spotify:artist:1rCIEwPp5OnXW0ornlSsRl,Metric,spotify:album:3Oj8FdHcV6kAiOVWfkqRaA,Fantasies,spotify:artist:1rCIEwPp5OnXW0ornlSsRl,Metric,2009-04-14,https://i.scdn.co/image/ab67616d0000b27370d7aa769af19e7e2c2e107b,1,1,285920,https://p.scdn.co/mp3-preview/9d6055495c172a3ceffd26767d1eba6a29b32e0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CARB70901901,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian indie,canadian rock,indie rock,indietronica,metropopolis,neo-synthpop",0.565,0.877,5.0,-4.561,0.0,0.0614,0.00813,0.00251,0.26,0.389,118.484,4.0,,Metric Music International,"C 2009 Metric Music International, P 2009 Metric Music International",1795 +1796,spotify:track:16Juy52x1pHGR13JubZtUz,Love Is Like Oxygen,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,spotify:album:0Kn7W6z6BekmkoMV5tybzb,Hits,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,2014-01-13,https://i.scdn.co/image/ab67616d0000b273e23cc6aea46a7e2a428ad403,1,8,256920,https://p.scdn.co/mp3-preview/43246f8905fd6e20883c2b7bdba6382e8a07be4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMX1443508,spotify:user:bradnumber1,2020-03-05T09:20:26Z,"album rock,glam rock,hard rock",0.544,0.817,9.0,-5.424,0.0,0.0873,0.484,0.0,0.204,0.412,124.976,4.0,,Angel Air,"C 2014 Angel Air, P 2013 Andy Scott",1796 +1797,spotify:track:7kPYMrNaz5UTih75OfjTIV,Bright Lights Bigger City,spotify:artist:5nLYd9ST4Cnwy6NHaCxbj8,CeeLo Green,spotify:album:5uR0dqBMYWZFYJT7mvPZ82,The Lady Killer (Deluxe),spotify:artist:5nLYd9ST4Cnwy6NHaCxbj8,CeeLo Green,2010-11-09,https://i.scdn.co/image/ab67616d0000b2731c44d79c994c1a26aa387617,1,2,218280,https://p.scdn.co/mp3-preview/2471399138037a8c4d297781931683fadca1a7ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USAT21002307,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,pop rap",0.632,0.749,4.0,-5.125,1.0,0.0294,0.000282,1.31e-05,0.73,0.702,108.994,4.0,,Radiculture/Elektra,"C © 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",1797 +1798,spotify:track:2FY7b99s15jUprqC0M5NCT,Natural,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:3JfSxDfmwS5OeHPwLSkrfr,Origins (Deluxe),spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2018-11-09,https://i.scdn.co/image/ab67616d0000b273da6f73a25f4c79d0e6b4a8bd,1,1,189466,https://p.scdn.co/mp3-preview/e375c82aba995cc3a35b8c2428696f00ef07e5a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USUM71806694,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.704,0.611,2.0,-6.112,1.0,0.041,0.217,0.0,0.0812,0.22,99.994,4.0,,Kid Ina Korner / Interscope,"C © 2018 KIDinaKORNER/Interscope Records, P ℗ 2018 KIDinaKORNER/Interscope Records",1798 +1799,spotify:track:3cNjgVBKTJ1SvKhunrCdVy,Please Don't Go,spotify:artist:36jaGQtMj5UWD0eO1fCVdD,Joel Adams,spotify:album:2SF8Wbc61u8hlQkZYGVCnx,Please Don't Go,spotify:artist:36jaGQtMj5UWD0eO1fCVdD,Joel Adams,2015-11-06,https://i.scdn.co/image/ab67616d0000b2733a22ad98e76e2d0c1760345d,1,1,210580,https://p.scdn.co/mp3-preview/f235bc61d3d1a5c27c975b9857cff3c5c79db464?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,AUZN31500442,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop soul",0.513,0.768,4.0,-4.868,0.0,0.0587,0.0118,1.94e-05,0.294,0.235,84.264,4.0,,"Will Walker Records, LLC","C 2015 Will Walker Records, LLC, P 2015 Will Walker Records, LLC",1799 +1800,spotify:track:251PhjPNakilcDWfUXCo2Y,My Happiness,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:5EmYAq4NagWeuaaEvzOmac,Odyssey Number Five,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2000-01-01,https://i.scdn.co/image/ab67616d0000b273c2c400c36db8870048859fe1,1,2,276706,https://p.scdn.co/mp3-preview/2162bc46117da76c69fdf3c25ef2372264913c4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00010045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.447,0.809,0.0,-5.431,1.0,0.0295,0.00193,0.0,0.363,0.505,85.885,4.0,,Universal Music Group,"C © 2000 Grudge Records Australia, A Universal Music Company, P ℗ 2000 Grudge Records Australia, A Universal Music Company",1800 +1801,spotify:track:1f21MoeMJNbGkhaM6rnvWD,Breakin' In A Brand New Broken Heart,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,spotify:album:4Y0FGsHJJbexHT2LPzUGFU,The Very Best Of Connie Francis - Connie 21 Biggest Hits,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,1987-01-12,https://i.scdn.co/image/ab67616d0000b2731a4f6e631c934eef3f045c39,1,16,156893,https://p.scdn.co/mp3-preview/a49e6bbfb5f35457660b16cc51fd44f83bf3add6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USF096100270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,easy listening,rock-and-roll,rockabilly",0.256,0.163,0.0,-9.856,1.0,0.0297,0.754,0.0,0.135,0.261,83.139,4.0,,Polydor,"C © 1990 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1990 Universal Records, a Division of UMG Recordings, Inc.",1801 +1802,spotify:track:71kj6vbwfqjThqsDxhtYPE,That's All You Gotta Do,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,spotify:album:7B4ewUWVdSC9yuFGiFWuem,"Ultimate Collection, Vol. 1",spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,2015-03-06,https://i.scdn.co/image/ab67616d0000b27337f474838296378c820e7d72,1,16,145480,https://p.scdn.co/mp3-preview/30a66824d7a02c341dd71770f01e573f3a571826?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,DEG320701716,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rockabilly",0.587,0.65,1.0,-5.732,1.0,0.0283,0.381,1.01e-06,0.105,0.96,98.137,4.0,,10TEN MEDIA,"C 2015 10TEN MEDIA, P 2015 10TEN MEDIA",1802 +1803,spotify:track:3X7uFMzJrEE0sxn62qd8Ch,Nothing's Gonna Stop Us Now,spotify:artist:0kObWap02DEg9EAJ3PBxzf,Starship,spotify:album:3nCQjsOzTmnWM6gnjIaT8J,No Protection,spotify:artist:0kObWap02DEg9EAJ3PBxzf,Starship,1987-07-27,https://i.scdn.co/image/ab67616d0000b273377198e5b790b5ebf137bd83,1,2,270333,https://p.scdn.co/mp3-preview/a17faa3145693e235f6eaddd17debde84dd503eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USRC18702968,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new romantic,new wave pop,soft rock,synthpop",0.643,0.802,6.0,-4.92,1.0,0.0227,0.0299,0.0,0.0719,0.53,95.99,4.0,,Rhino,"C © 1987 Jefferson Starship, Inc., under exclusive license to Rhino Entertainment Company, a Warner Music Group Company., P ℗ 1987 Jefferson Starship, Inc., under exclusive license to Rhino Entertainment Company, a Warner Music Group Company.",1803 +1804,spotify:track:5xkNd7kCRmjT2DxSAYVVyC,And We Danced,spotify:artist:7uhvDINTTiD0XBrP9fquN1,The Hooters,spotify:album:5Sh5gjCOggbEb2kMIFKHHo,Super Hits,spotify:artist:7uhvDINTTiD0XBrP9fquN1,The Hooters,1985,https://i.scdn.co/image/ab67616d0000b2739280b5fea3cde8e6caeaef00,1,3,227760,https://p.scdn.co/mp3-preview/12f138c4f1fec405b6f386a48b419d2c4d6bba81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM10105640,spotify:user:bradnumber1,2022-08-31T00:07:58Z,philly indie,0.561,0.945,9.0,-6.086,1.0,0.0444,0.0869,0.0,0.22,0.723,145.781,4.0,,Columbia/Legacy,"P (P) 1985, 1987, 1989, 2001 Sony Music Entertainment Inc.",1804 +1805,spotify:track:5XSwdC5vHtheRRrMmGoEVV,How To Make Gravy,spotify:artist:0SNWoGaDlrCompmg9rXeNq,Paul Kelly,spotify:album:2kmbLohyHyFyeIb684f6rA,Paul Kelly's Greatest Hits: Songs From The South: Volume 1 & 2,spotify:artist:0SNWoGaDlrCompmg9rXeNq,Paul Kelly,2010-01-01,https://i.scdn.co/image/ab67616d0000b273ddbf3183a492d4ab1b0e1b80,1,20,267306,https://p.scdn.co/mp3-preview/ffcc6e0ee886c9f882b8d8049bfbb164893567a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUYP00820021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian rock",0.396,0.735,4.0,-5.983,1.0,0.0357,0.0552,0.0,0.245,0.36,94.646,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Paul Kelly, P This Compilation ℗ 2010 Paul Kelly",1805 +1806,spotify:track:5eqiMMbaeUZ32Q7sS00H35,Anaconda,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:40XGTQ7FN6Y3dZXJhKBe96,The Pinkprint (International Deluxe Explicit),spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2014-12-12,https://i.scdn.co/image/ab67616d0000b27305d647d0e976e7fb2460492e,1,12,260239,https://p.scdn.co/mp3-preview/6bc615b589c833affd4ad11de627ec4048191c4c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,65,USCM51400260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,queens hip hop,rap",0.964,0.605,9.0,-6.223,1.0,0.179,0.0668,7.78e-06,0.214,0.646,129.996,4.0,,Nicki Minaj/Cash Money,"C © 2014 Cash Money Records Inc., P ℗ 2014 Cash Money Records Inc.",1806 +1807,spotify:track:3ZFwuJwUpIl0GeXsvF1ELf,Nothing Else Matters,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:37lWyRxkf3wQHCOlXM5WfX,Metallica,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1991-08-12,https://i.scdn.co/image/ab67616d0000b273f2f3cd931f707244804807c1,1,8,388733,https://p.scdn.co/mp3-preview/05659fbb6426fc9ecc7e08cf86b049226190578d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USEE10001999,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.558,0.364,4.0,-11.258,0.0,0.0265,0.0505,5.02e-06,0.0753,0.17,142.171,3.0,,Blackened Recordings,C 1991 Blackened Recordings,1807 +1808,spotify:track:051wt8AyLFgYnVuberd3vO,WAP (feat. Megan Thee Stallion),"spotify:artist:4kYSro6naA4h99UJvo89HB, spotify:artist:181bsRPaVXVlUKXrxwZfHK","Cardi B, Megan Thee Stallion",spotify:album:1q7SzYw0PLBW7bX54Bog0c,WAP (feat. Megan Thee Stallion),"spotify:artist:4kYSro6naA4h99UJvo89HB, spotify:artist:181bsRPaVXVlUKXrxwZfHK","Cardi B, Megan Thee Stallion",2020-08-06,https://i.scdn.co/image/ab67616d0000b2732c45e6016a98cc21d43a3126,1,1,187541,https://p.scdn.co/mp3-preview/acba51689bcd1c70362e83e5fdf16085c9e3c713?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USAT22005344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,rap,houston rap,pop,rap,trap queen",0.934,0.443,1.0,-7.541,1.0,0.41,0.0272,0.0,0.0889,0.359,133.026,4.0,,Atlantic/KSR,"C © 2020 Atlantic Recording Corporation, P ℗ 2020 Atlantic Recording Corporation",1808 +1809,spotify:track:0RfdoNWHJbZxAI3sOWS8Q7,Tell Her About It,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:7r36rel1M4gyBavfcJP6Yz,The Essential Billy Joel,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,2001-10-02,https://i.scdn.co/image/ab67616d0000b273649d4f282653ab8be56f447e,2,5,229133,https://p.scdn.co/mp3-preview/a3a719c4addd8e241976cdebef09dc30afcde3ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USSM18300272,spotify:user:bradnumber1,2021-10-21T07:11:05Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.566,0.892,8.0,-5.209,1.0,0.159,0.00683,0.0,0.487,0.751,183.216,4.0,,Columbia,P This compilation (P) 2001 Sony Music Entertainment,1809 +1810,spotify:track:59KLbEPx6oU0fdwtTVaQAw,I've Been Everywhere,spotify:artist:3fq6r0bSIm4McymHKNMk4S,Hank Snow,spotify:album:3CihtEK0DUIjF3clGitVGE,The Essential Hank Snow,spotify:artist:3fq6r0bSIm4McymHKNMk4S,Hank Snow,1997,https://i.scdn.co/image/ab67616d0000b27393f781ab38f717efc7a13f73,1,16,165693,https://p.scdn.co/mp3-preview/af2a7d794cb034ba4294c146aa069268297e760f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USRN16200004,spotify:user:bradnumber1,2022-09-29T06:29:17Z,"canadian country,canadian singer-songwriter,classic country pop,nashville sound,western swing",0.387,0.579,6.0,-11.162,1.0,0.0397,0.896,0.0131,0.153,0.922,119.788,4.0,,RCA Records Label Nashville,P (P)1997 BMG Entertainment,1810 +1811,spotify:track:6qHqlEnaEEMI7wb9vX3xoC,No Sense - 2011 Remastered,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:0o6MdONtnU2Cz6jXN2Os5w,The Complete Cold Chisel,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2013-01-01,https://i.scdn.co/image/ab67616d0000b273402259b83932d83ee7dcbe66,5,6,177285,https://p.scdn.co/mp3-preview/98da11c5d12c55062ced816a620f19df33e14648?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUU741100129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.642,0.933,2.0,-3.241,1.0,0.0306,0.00549,0.0123,0.262,0.51,106.241,4.0,,Universal Music Australia & New Zealand Distribution,"C © 2013 Cold Chisel Pty Limited, P This Compilation ℗ 2013 Cold Chisel Pty Limited",1811 +1812,spotify:track:6cjnQ5qScBXR98RxKWwjqW,And She Was - 2005 Remaster,spotify:artist:2x9SpqnPi8rlE9pjHBwmSC,Talking Heads,spotify:album:21uiZGwCJ3Dn0EBUbZWsqY,Essential,spotify:artist:2x9SpqnPi8rlE9pjHBwmSC,Talking Heads,2011-09-12,https://i.scdn.co/image/ab67616d0000b273e9ae3e7a34a33bc095ac342a,1,2,219413,https://p.scdn.co/mp3-preview/513ceda2bd365c2e1150a411ebea1c6523d49d8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GB01A0500072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art punk,dance rock,funk rock,new wave,permanent wave,post-punk,rock,zolo",0.697,0.846,9.0,-5.471,1.0,0.03,0.0059,0.0256,0.0967,0.973,126.475,4.0,,Parlophone UK,"C © 2011 EMI Music Catalogue Marketing, a division of EMI Music Germany GmbH & Co. KGThis label copy information is the subject of copyright protection. All rights reserved. 2011 EMI Music Germany GmbH & Co. KG, P ℗ 2011 The copyright in this compilation is owned by EMI Music Catalogue Marketing, a division of EMI Music Germany GmbH & Co. KG",1812 +1813,spotify:track:1jgu8MFTEGdL1wjw9gZj5y,Fly Away,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,spotify:album:4SWYpB2IBlwzeyLEroUxso,Fly Away,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,2020-11-13,https://i.scdn.co/image/ab67616d0000b2738c897bc19eeadf12de0dbd9a,1,1,178156,https://p.scdn.co/mp3-preview/e5f11e7c8b0fafe7136a7596f35c447cc0f5f580?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USAT22006865,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.805,0.515,4.0,-6.201,1.0,0.0915,0.223,0.0,0.238,0.488,124.969,4.0,,Sony Music Entertainment,P (P) 2020 Bad Batch Records,1813 +1814,spotify:track:4GBfMdLT6EFDNGjk03S78s,When I Need You,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,spotify:album:1dwBwg4BjtCAoi1mxr26OG,Endless Flight,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,1976,https://i.scdn.co/image/ab67616d0000b27384c525d23b8d3bcdbd83d686,1,4,253533,https://p.scdn.co/mp3-preview/2ae1fcb73eb5e196fd5eaf2653a7daf8f74728da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUWA01000610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.618,0.183,8.0,-16.619,1.0,0.0431,0.831,6.23e-05,0.0935,0.16,109.75,3.0,,WM Australia,"C © 2010 Warner Music Australia Pty Ltd, P ℗ 1975 (Silverbird) Australia Pty Ltd under exclusive licence to Warner Music Australia Pty Ltd",1814 +1815,spotify:track:1x5sYLZiu9r5E43kMlt9f8,Symphony (feat. Zara Larsson),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:1Xylc3o4UrD53lo9CvFvVg","Clean Bandit, Zara Larsson",spotify:album:4b13SJlne61y53KSEwuQtD,Symphony (feat. Zara Larsson),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:1Xylc3o4UrD53lo9CvFvVg","Clean Bandit, Zara Larsson",2017-03-16,https://i.scdn.co/image/ab67616d0000b2735b1130d050c4cd2295999d85,1,1,212459,https://p.scdn.co/mp3-preview/de52d824478549b51de6aeeb0077b00c5f0e2ead?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBAHS1700199,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,pop,scandipop,swedish electropop,swedish pop",0.707,0.629,0.0,-4.581,0.0,0.0563,0.259,1.6e-05,0.138,0.457,122.863,4.0,,Atlantic Records UK,"C © 2017 Atlantic Records UK, a Warner Music Group Company, P ℗ 2017 Atlantic Records UK, a Warner Music Group Company",1815 +1816,spotify:track:6xw8ld1ztoCKifwTN6uGDq,Black Hole,spotify:artist:5RJFJWYgtgWktosLrUDzff,Griff,spotify:album:0ogiikOppOfG6kkhtC5BDz,Black Hole,spotify:artist:5RJFJWYgtgWktosLrUDzff,Griff,2021-01-18,https://i.scdn.co/image/ab67616d0000b2732669eb42a410be2e300ca761,1,1,200523,https://p.scdn.co/mp3-preview/ad960011900cd757b5012f24bbf39f0ab95a343c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAHT2001109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,uk pop",0.878,0.64,0.0,-5.641,1.0,0.0591,0.142,0.0,0.0981,0.658,124.069,4.0,,Warner Records,"C under exclusive licence to Warner Music UK Limited, © 2021 Griff, P under exclusive licence to Warner Music UK Limited, ℗ 2021 Griff",1816 +1817,spotify:track:3oqBOAsqRMKUHc8MGx4o72,Death,spotify:artist:6ssXMmc5EOUrauZxirM910,White Lies,spotify:album:1ySdrRPZa9ZRvlcUoGv8UE,To Lose My Life ...,spotify:artist:6ssXMmc5EOUrauZxirM910,White Lies,2009,https://i.scdn.co/image/ab67616d0000b27332fc28e3e988cd9911429b88,1,1,301213,https://p.scdn.co/mp3-preview/9b6a808bc37ec6612b7bb5648886d86479d66298?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70811880,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,indie rock,modern rock,new rave",0.454,0.832,7.0,-5.649,1.0,0.0343,0.000451,0.0188,0.076,0.228,135.087,4.0,,Polydor Records,"C © 2008 Polydor Ltd. (UK), P ℗ 2008 Polydor Ltd. (UK)",1817 +1818,spotify:track:55lrWl9QxmDf76ddTibZZs,Portsmouth,spotify:artist:562Od3CffWedyz2BbeYWVn,Mike Oldfield,spotify:album:200p7O3raeXT2jNhmzK4TE,Ommadawn,spotify:artist:562Od3CffWedyz2BbeYWVn,Mike Oldfield,1975,https://i.scdn.co/image/ab67616d0000b2731db51dc591a63a802cdf6fe3,1,6,121226,https://p.scdn.co/mp3-preview/45fd4fed93577215af7beadb577e8f3458f79339?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBUM70904440,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"progressive rock,symphonic rock",0.552,0.427,0.0,-10.782,1.0,0.0425,0.807,0.525,0.179,0.844,97.367,4.0,,UMC (Universal Music Catalogue),"C © 2010 Oldfield Music Limited, under exclusive licence to Mercury Records Limited, P This Compilation ℗ 2010 Oldfield Music Limited, under exclusive licence to Mercury Records Limited",1818 +1819,spotify:track:1VPUpUwtbpoRVXt0txVU0w,S.O.B.,spotify:artist:02seUFsFQP7TH4hLrTj77o,Nathaniel Rateliff & The Night Sweats,spotify:album:1uJRMyfjWu3255ihMnNuj4,Nathaniel Rateliff & The Night Sweats,"spotify:artist:02seUFsFQP7TH4hLrTj77o, spotify:artist:4qKpLkR911SUlnd4HAtF79","Nathaniel Rateliff & The Night Sweats, Nathaniel Rateliff",2015-08-21,https://i.scdn.co/image/ab67616d0000b273e564c5e6be9e9cace137b989,1,5,247613,https://p.scdn.co/mp3-preview/e601f9dcb786f694be66d0d6d69f1ac3faef537b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,64,USC4R1503363,spotify:user:bradnumber1,2022-12-09T00:02:19Z,"indie folk,modern blues rock,new americana,stomp and holler",0.699,0.579,1.0,-6.504,1.0,0.0416,0.267,0.00602,0.452,0.128,109.948,4.0,,Stax,"C © 2015 Bottleneck Music Limited., Under exclusive license to Concord Music Group, Inc., P ℗ 2015 Bottleneck Music Limited., Under exclusive license to Concord Music Group, Inc.",1819 +1820,spotify:track:2e0SygpHg2JZnS6Z4dX3M8,One Way Road,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,spotify:album:523dGJIK9WHqavNNZBv57s,April Uprising,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,2010-03-26,https://i.scdn.co/image/ab67616d0000b2738c58b143b2b7df84eabe6400,1,2,185933,https://p.scdn.co/mp3-preview/fa4c2c0d3250481b73a3298f9d371f1ca7427316?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUFC00900009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,banjo,0.625,0.958,7.0,-5.37,1.0,0.0498,0.131,1.98e-05,0.127,0.768,115.887,4.0,,Jarrah Records,"C 2010 Family Music Pty Ltd, P 2010 Jarrah Records",1820 +1821,spotify:track:1Oli6wankA3Dc3Z272v0r8,Always Where I Need To Be,spotify:artist:1GLtl8uqKmnyCWxHmw9tL4,The Kooks,spotify:album:6WvbFSJkQfLnfLMbyCiTeu,Konk (Deluxe),spotify:artist:1GLtl8uqKmnyCWxHmw9tL4,The Kooks,2008-01-01,https://i.scdn.co/image/ab67616d0000b273a351e38dbc7dcdf48b48b4a8,1,2,161720,https://p.scdn.co/mp3-preview/518e567e42a0fb5c50c1a80e8a2d5e736eb26644?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBAAA0800033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brighton indie,garage rock,modern rock,rock",0.331,0.961,11.0,-4.627,1.0,0.0663,0.000146,0.0,0.322,0.882,168.355,4.0,,Virgin Records Ltd,"C © 2015 Virgin Records Limited, P ℗ 2015 Virgin Records Limited",1821 +1822,spotify:track:3oQgTf0m4G725oBxu6rrh4,Barbados,spotify:artist:2k0zkxxRvJKwiHQq5QfjYn,Models,spotify:album:098ehNcR8Pzjr2inpaiq8x,The Essential Hits,spotify:artist:2k0zkxxRvJKwiHQq5QfjYn,Models,2010-08-13,https://i.scdn.co/image/ab67616d0000b27361927c0bd2efed9ffd5b0a9f,1,2,255506,https://p.scdn.co/mp3-preview/b9f30ab082271727b59e1e560b8cb64d05439a29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUMU08500023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.689,0.634,0.0,-12.602,1.0,0.0327,0.04,2.06e-05,0.0834,0.941,112.943,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Limited, P ℗ 2010 Warner Music Australia Pty Limited",1822 +1823,spotify:track:1jJci4qxiYcOHhQR247rEU,Kids,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,spotify:album:6mm1Skz3JE6AXneya9Nyiv,Oracular Spectacular,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,2007-12-14,https://i.scdn.co/image/ab67616d0000b2738b32b139981e79f2ebe005eb,1,5,302840,https://p.scdn.co/mp3-preview/efb065069d22384206b0fc703c6f99734d33411d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USSM10702135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,indie rock,indietronica,modern rock,rock",0.451,0.931,9.0,-3.871,1.0,0.0719,0.00076,0.0049,0.361,0.172,122.961,4.0,,Red Ink/Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT,1823 +1824,spotify:track:1d6vQqkVFIAyYTARdO7Ms2,Dance Wiv Me,spotify:artist:0gusqTJKxtU1UTmNRMHZcv,Dizzee Rascal,spotify:album:0DFqtZkrESm0borESYr3eC,Tongue N' Cheek,spotify:artist:0gusqTJKxtU1UTmNRMHZcv,Dizzee Rascal,2009-09-25,https://i.scdn.co/image/ab67616d0000b273d53a7aacaaefc361cd775555,1,3,204093,https://p.scdn.co/mp3-preview/c6032663d7dcb8d06f450c4f4be760331a8a4df7?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBWHS0800003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grime,instrumental grime",0.878,0.746,11.0,-4.281,1.0,0.0451,0.0476,0.0,0.154,0.792,111.996,4.0,,Liberator Music,"C 2009 Dirtee Stank, P 2009 Dirtee Stank",1824 +1825,spotify:track:37EJtTS7jT5WUyXGZzrwnI,Santa Monica,spotify:artist:694QW15WkebjcrWgQHzRYF,Everclear,spotify:album:27qNa5ef0TpYV17dBY01U0,Sparkle And Fade,spotify:artist:694QW15WkebjcrWgQHzRYF,Everclear,1995-05-11,https://i.scdn.co/image/ab67616d0000b273ec4d79e8035ed2803ecfe2b3,1,4,191506,https://p.scdn.co/mp3-preview/bce6751cbb9c15064c65902e79a224512d9da052?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USCA29500185,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,nu metal,permanent wave,pop rock,post-grunge",0.491,0.942,7.0,-5.333,1.0,0.109,0.156,0.0,0.367,0.398,100.441,4.0,,Capitol Records,"C © 1995 Capitol Records, LLC, P ℗ 1995 Capitol Records, LLC",1825 +1826,spotify:track:3NkoCeRX7A5BtaNbVrzyPj,"Wand'rin' Star (From the ""Amazon Prime - Dog With A Bad Leg"" TV Advert) - Remastered",spotify:artist:7GbjN1ab1LJcJV2JOhTqBK,Lee Marvin,spotify:album:0nt3VutL9gNGCj7ItOFzpf,"Turn On, Tune In - The Very Best TV Adverts 2015 Vol. 3",spotify:artist:1UKhC6PpxfnaYOyga7TLZV,Sofa Sounds,2015-08-12,https://i.scdn.co/image/ab67616d0000b273af31490c4611e1c481d6ff59,1,15,264866,https://p.scdn.co/mp3-preview/30b2b9cecc4b20b9f5c8bec255aa08dd040053d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CB2CY0938885,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.447,0.164,1.0,-23.242,1.0,0.0331,0.831,0.485,0.134,0.366,147.485,3.0,,Chapel Music,"C 2015 Chapel Music, P 2015 Chapel Music",1826 +1827,spotify:track:6QAOkWnUrLLoDfmndW9Z3P,Love Don't Cost a Thing,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:57rgRewm7i1f1qmCKfOXvm,J.Lo,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2001-01-19,https://i.scdn.co/image/ab67616d0000b2733681fa96d717a8e9ca0da97d,1,1,221466,https://p.scdn.co/mp3-preview/99c9902cfc477cee0de0fcd491c32244fceb521f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10017308,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.777,0.834,4.0,-5.129,0.0,0.0843,0.00275,1.3e-06,0.361,0.66,97.527,4.0,,Epic,P (P) 2000/2001 Sony Music Entertainment Inc.,1827 +1828,spotify:track:7d40ltmahMLJKA8HhzX9xe,Love Today,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,spotify:album:1lGwdsq4OtYZfIIoi4p79E,Life In Cartoon Motion,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,2007-01-01,https://i.scdn.co/image/ab67616d0000b273eb0b41d40b300163767da4b3,1,4,235173,https://p.scdn.co/mp3-preview/6f633128fde84ac18f68350ea7727fb9e919e0be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC7R0600007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electropop,0.669,0.91,6.0,-4.99,0.0,0.0639,0.0284,0.00439,0.109,0.564,124.465,4.0,,Universal Music Group,"C © 2007 Casablanca Music, LLC, P ℗ 2007 Casablanca Music, LLC",1828 +1829,spotify:track:4CB13d6Igb94cWMOQWY3JF,"Signed, Sealed, Delivered (I'm Yours)",spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:5157OsVqMlDL6xDN3RiIoc,"Signed, Sealed And Delivered",spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1970-08-01,https://i.scdn.co/image/ab67616d0000b273ec20079e413b3fe8bb4831f7,1,3,161160,https://p.scdn.co/mp3-preview/9d87c04f6a608a83ef62f03ac99c72c7b31a563b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FRZ029400710,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.672,0.595,5.0,-11.227,1.0,0.0331,0.0518,0.0,0.0882,0.871,108.897,4.0,,Universal/Island Def Jam,"C © 1989 The Motown Record Company LP, P ℗ 1970 The Motown Record Company LP",1829 +1830,spotify:track:76N7FdzCI9OsiUnzJVLY2m,Rumour Has It,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:1azUkThwd2HfUDdeNeT147,21,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2011-01-19,https://i.scdn.co/image/ab67616d0000b2736d4056466fc11f6408be2566,1,2,221426,https://p.scdn.co/mp3-preview/b2064057c1d5e811103e04ec682e52d2d3e5759e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1000349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.618,0.753,7.0,-5.05,0.0,0.0451,0.637,0.0,0.0905,0.557,120.041,4.0,,XL Recordings/Columbia,P (P) 2011 XL Recordings Ltd,1830 +1831,spotify:track:39OKbfmScJ6dVMyqLScPJy,Summer Nights - From “Grease” Soundtrack,"spotify:artist:4hKkEHkaqCsyxNxXEsszVH, spotify:artist:4BoRxUdrcgbbq1rxJvvhg9","John Travolta, Olivia Newton-John",spotify:album:00Rp3j7mKM3qZXkvF9iWcy,Grease (Limited Edition),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1998-01-01,https://i.scdn.co/image/ab67616d0000b273925e89f60b7f808988d94e15,1,2,216906,https://p.scdn.co/mp3-preview/d850bad5ab67f8475a5d9c72cc98ce48c00f0d9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057890002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,adult standards,australian dance,disco,mellow gold,soft rock",0.748,0.644,2.0,-9.363,1.0,0.059,0.617,3.39e-05,0.0764,0.629,124.347,4.0,,Digital,"C © 1998 Universal International Music B.V., P ℗ 1998 Universal International Music B.V.",1831 +1832,spotify:track:1oojGBUxbMSrvrBnQ1DaBc,You Ain't Seen Nothing Yet,spotify:artist:5q4AzEtCoYJyXjMMoEkSU5,Bachman-Turner Overdrive,spotify:album:39IDlPBW41ah9H2ODiR8tM,Gold,spotify:artist:5q4AzEtCoYJyXjMMoEkSU5,Bachman-Turner Overdrive,2005-01-01,https://i.scdn.co/image/ab67616d0000b2737bc86f1b123bd09d7b958fe1,1,12,234053,https://p.scdn.co/mp3-preview/b43ee975293a1b1f420a9fae91c7087e66770e64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39401742,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic canadian rock,classic rock,country rock,folk rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.467,0.508,11.0,-13.048,0.0,0.0395,0.000538,0.00205,0.132,0.772,118.753,4.0,,Universal Strategic Marketing,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",1832 +1833,spotify:track:31DvHUCSioX0JD7B4kZMJ9,Money For Nothing,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,spotify:album:15J400U0rEpgE64UQgtvLs,Brothers In Arms,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,1985-05-13,https://i.scdn.co/image/ab67616d0000b273995239a0e35a898037ec4b29,1,2,510933,https://p.scdn.co/mp3-preview/4802f596f787c2fd99f7614083092993b66c7327?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBF088500674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock",0.666,0.667,2.0,-9.305,0.0,0.0371,0.043,0.0005,0.074,0.679,134.219,4.0,,EMI,"C © 1985 Mercury Records Limited, P ℗ 1985 Mercury Records Limited",1833 +1834,spotify:track:1yN2z5XVtaAOYGdeEqEuqd,Lemon Tree,spotify:artist:0jRqFvRKCDryHOgrgFqsKG,Fools Garden,spotify:album:1tM31AqIKHkQkimKDWJFwc,Dish Of The Day,spotify:artist:0jRqFvRKCDryHOgrgFqsKG,Fools Garden,1995,https://i.scdn.co/image/ab67616d0000b27378219679ef28c5639613c06b,1,3,191026,https://p.scdn.co/mp3-preview/c0727bb5b3d094a8fe164a8b003625345a4c2409?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEA349502964,spotify:user:bradnumber1,2021-08-08T09:26:31Z,german pop rock,0.669,0.479,1.0,-8.849,1.0,0.0442,0.672,0.0,0.11,0.679,143.159,4.0,,Intercord,"C (C) 1995 Fool's Garden Under Exclusive Licence To Capitol Music, A Division Of EMI Music Germany GmbH & Co. KG. This Labelcopy Information Is The Subject Of Copyright Protection. All Rights Reserved. (C) 1995 EMI Music Germany GmbH & Co. KG, P (P) 1995 The Copyright In This Sound Recording Is Owned By Fool's Garden Under Exclusive Licence To Capitol Music, A Division Of EMI Music Germany GmbH & Co. KG",1834 +1835,spotify:track:2djdCbLj1pzRmrDNe7PkW2,High Hopes,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:3HIpXil5vBzbHi4LPz51mk,High Hopes on Saturday Night,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,2018-05-23,https://i.scdn.co/image/ab67616d0000b27327b4ded7dddab94bb7b3cddd,1,1,192133,https://p.scdn.co/mp3-preview/5575df8dfa23e38cc4ef3361c050af47f434dd2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USAT21801174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.519,0.908,5.0,-2.733,1.0,0.0669,0.22,0.0,0.0673,0.702,164.061,4.0,,DCD2 / Fueled By Ramen,"C © 2018 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P ℗ 2018 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",1835 +1836,spotify:track:75FEaRjZTKLhTrFGsfMUXR,Running Up That Hill (A Deal With God),spotify:artist:1aSxMhuvixZ8h9dK9jIDwL,Kate Bush,spotify:album:5BWl0bB1q0TqyFmkBEupZy,Hounds Of Love,spotify:artist:1aSxMhuvixZ8h9dK9jIDwL,Kate Bush,1985,https://i.scdn.co/image/ab67616d0000b27396ab64f52273635308b6bf27,1,1,298933,https://p.scdn.co/mp3-preview/861d26b52ece3e3ad72a7dc3463daece3478801a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,GBCNR8500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,art rock,baroque pop,new wave pop,permanent wave,piano rock,singer-songwriter",0.629,0.547,10.0,-13.123,0.0,0.055,0.72,0.00314,0.0604,0.197,108.375,4.0,,Parlophone UK,"C © 2011 Noble And Brite This label copy information is the subject of copyright protection. All rights reserved., P ℗ 2011 The copyright in this sound recording is owned by Noble And Brite",1836 +1837,spotify:track:3a1lNhkSLSkpJE4MSHpDu9,Congratulations,"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:0VRj0yCOv2FXJNP47XQnx5","Post Malone, Quavo",spotify:album:5s0rmjP8XOPhP6HhqOhuyC,Stoney (Deluxe),spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2016-12-09,https://i.scdn.co/image/ab67616d0000b27355404f712deb84d0650a4b41,1,12,220293,https://p.scdn.co/mp3-preview/41367bd297b91aa6c277d10ea06ca33d18f60e10?cid=9950ac751e34487dbbe027c4fd7f8e99,True,79,USUM71614484,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,atl hip hop,melodic rap,rap,trap",0.63,0.804,6.0,-4.183,1.0,0.0364,0.215,0.0,0.253,0.492,123.146,4.0,,Universal Records,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",1837 +1838,spotify:track:31s2mbxcx4LX1EtZg1fUvA,Sally Go Round The Roses,spotify:artist:0AIj40Eh5327K0Ywz7upNG,The Jaynetts,spotify:album:2Rx7E9zOzOErg2Yej9c9l7,Sally Go 'Round The Roses - The Very Best Of The Jaynetts,spotify:artist:0AIj40Eh5327K0Ywz7upNG,The Jaynetts,2011-06-14,https://i.scdn.co/image/ab67616d0000b27396ae422b80cf6175a7f6c33f,1,1,195400,https://p.scdn.co/mp3-preview/65aacfb1127f7fff595c0d53f9fc7a2e6dc6842f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,QMWN31100202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic girl group,0.694,0.453,2.0,-12.583,1.0,0.0327,0.234,0.546,0.0703,0.457,146.6,4.0,,Resnik Music Group,"C 2011 Resnik Music Group, P 2011 Resnik Music Group",1838 +1839,spotify:track:0dOg1ySSI7NkpAe89Zo0b9,Born in the U.S.A.,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,spotify:album:0PMasrHdpaoIRuHuhHp72O,Born In The U.S.A.,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,1984-06-04,https://i.scdn.co/image/ab67616d0000b273a7865e686c36a4adda6c9978,1,1,278680,https://p.scdn.co/mp3-preview/8811b05640f8be29a94225f435edb05ea8c8b98b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USSM18400406,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"heartland rock,mellow gold,permanent wave,rock,singer-songwriter",0.398,0.952,4.0,-6.042,1.0,0.061,0.000373,7.75e-05,0.1,0.584,122.093,4.0,,Columbia,P (P) 1984 Bruce Springsteen,1839 +1840,spotify:track:27pQTTHuBajl9RUOmU3C18,Oh My,spotify:artist:4Gzfk9Lxm67nBs7E9BZjzG,Gin Wigmore,spotify:album:12OLTb0RtL18pBlTpUWWjh,Holy Smoke,spotify:artist:4Gzfk9Lxm67nBs7E9BZjzG,Gin Wigmore,2009,https://i.scdn.co/image/ab67616d0000b273baf42fa3ba66e21ec21d2a7d,1,1,255973,https://p.scdn.co/mp3-preview/326315252636a2c578b5c13060d6a5d2d67229a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUUM70901996,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"auckland indie,kiwi rock",0.641,0.809,9.0,-5.524,1.0,0.0583,0.0192,0.0305,0.328,0.769,132.206,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Universal Music Australia Pty Ltd., P ℗ 2010 Universal Music Australia Pty Ltd.",1840 +1841,spotify:track:3rk4aJ0vAj3cFUIQEeASkT,Green Green Grass,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,spotify:album:1p6j020MWD6BCELPZd8XVC,Green Green Grass,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,2022-04-22,https://i.scdn.co/image/ab67616d0000b273e8a6aeabb9c999341e2c405c,1,1,167613,https://p.scdn.co/mp3-preview/0c3b976be5170efd8549b42eb4220a059b75552d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBARL2200008,spotify:user:bradnumber1,2022-08-20T04:24:08Z,"folk-pop,neo-singer-songwriter",0.685,0.738,8.0,-4.413,1.0,0.0595,0.0695,0.0,0.128,0.8,112.972,4.0,,Columbia,P (P) 2022 Sony Music Entertainment UK Limited,1841 +1842,spotify:track:756YOXmKh2iUnx33nAdfPf,Dangerous,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:1iI5YZkqNUV7VmrEi4uOP9,Look Sharp! (2009 Version),spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,1988-10-19,https://i.scdn.co/image/ab67616d0000b273dc9cb1ac37f5131948ddc257,1,8,228866,https://p.scdn.co/mp3-preview/48875c631f434294b99cdadebaf7ce7716054481?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAME8878080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.712,0.898,4.0,-4.893,1.0,0.0336,0.0485,7.76e-06,0.148,0.961,124.409,4.0,,Parlophone Sweden,"C 1988, 2009 Parlophone Music Sweden AB, a Warner Music Group Company, P 1988, 2009 Parlophone Music Sweden AB, a Warner Music Group Company",1842 +1843,spotify:track:7szuecWAPwGoV1e5vGu8tl,In Your Eyes,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:4yP0hdKOZPNshxUOjY0cZj,After Hours,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2020-03-20,https://i.scdn.co/image/ab67616d0000b2738863bc11d2aa12b54f5aeb36,1,10,237520,https://p.scdn.co/mp3-preview/ad4adb8a7c82359d511f7d9900d9f3742e0d2932?cid=9950ac751e34487dbbe027c4fd7f8e99,True,75,USUG12000657,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.667,0.719,7.0,-5.371,0.0,0.0346,0.0028,7.92e-05,0.0736,0.718,100.019,4.0,,Republic Records,"C © 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.",1843 +1844,spotify:track:2fmtt7gysU5N3Zae9o93g6,Let the Franklin Flow,spotify:artist:5tsrQhSZ8itdWGtjNWW6f3,Shane Howard,spotify:album:5iWwaojAHT5nYu4UjFd4Zw,Other Side of the Rock,spotify:artist:5tsrQhSZ8itdWGtjNWW6f3,Shane Howard,2012-10-05,https://i.scdn.co/image/ab67616d0000b273fe0b0f26dddde7fe750f98b0,1,5,202493,https://p.scdn.co/mp3-preview/625d74f9ad9f9ae097b45124a67a42e2b963df7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUVG01201605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian singer-songwriter,0.719,0.601,5.0,-5.764,1.0,0.0267,0.217,0.0,0.26,0.608,111.006,4.0,,Goanna Arts,"C 2012 Shane Howard, P 2012 Shane Howard",1844 +1845,spotify:track:7JoQCYsMaLmjcknAoZY43E,With A Little Help From My Friends,spotify:artist:3pFCERyEiP5xeN2EsPXhjI,Joe Cocker,spotify:album:4KyVtmoxJNXO46sR7sjuPf,The Anthology,spotify:artist:3pFCERyEiP5xeN2EsPXhjI,Joe Cocker,1999-08-17,https://i.scdn.co/image/ab67616d0000b2731054d7db984ee7a046cfcafc,1,8,312200,https://p.scdn.co/mp3-preview/8a89af249b414004d86bcbda00c7931436faa37d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM16800382,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.311,0.419,2.0,-11.27,1.0,0.0569,0.306,0.000488,0.129,0.316,141.854,3.0,,Universal Music Group,"C © 1999 A&M Records, P ℗ 1999 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",1845 +1846,spotify:track:614p7Xf0bSqq1KD7lOktls,2 Times - Original,spotify:artist:1EN7GOzx8aDpiIbVVmQaaC,Ann Lee,spotify:album:2EkOFXrzhMS5o4D6VhAJwg,Dreams,spotify:artist:1EN7GOzx8aDpiIbVVmQaaC,Ann Lee,1999-09-16,https://i.scdn.co/image/ab67616d0000b273e7a18039fa2b84fd42389b5e,1,1,230933,https://p.scdn.co/mp3-preview/2b66344df2d7205fc5c48e4fa018ed0624f94b18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,IT00D9829205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house,italo dance",0.849,0.873,0.0,-6.265,1.0,0.0299,0.1,0.0164,0.364,0.887,130.016,4.0,,X-Energy,"C 2007 Made in Etaly, P 2007 Energy Production S.r.l.",1846 +1847,spotify:track:0pMUR7Uvp6vxlbG0qBFvgM,Better Off Alone,spotify:artist:2tbvDi9eXf9XXp06LupkED,Alice Deejay,spotify:album:5oPKlo7IBFXlh12tqDVoAU,Who Needs Guitars Anyway?,spotify:artist:2tbvDi9eXf9XXp06LupkED,Alice Deejay,2000,https://i.scdn.co/image/ab67616d0000b27318313757738929cd5486f17c,1,2,214883,https://p.scdn.co/mp3-preview/1351f3e191f38f51ff88a1e29e6fe552db539c36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,NLC529811119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,eurodance,0.671,0.88,8.0,-6.149,0.0,0.0552,0.00181,0.691,0.285,0.782,136.953,4.0,,Violent Music,"C 2000 Violent Records/Violent Music b.v. (Violent Records is a registered label of Violent Music), P 2000 Violent Records/Violent Music b.v. (Violent Records is a registered label of Violent Music)",1847 +1848,spotify:track:5vCE0xRLIEG1Zej2tgWFDb,Vasoline,spotify:artist:2UazAtjfzqBF0Nho2awK4z,Stone Temple Pilots,spotify:album:2vi1ddPi3fY7vePMqxUVob,Purple,spotify:artist:2UazAtjfzqBF0Nho2awK4z,Stone Temple Pilots,1994-06-07,https://i.scdn.co/image/ab67616d0000b273a6e07487251d331f8a68b553,1,2,174760,https://p.scdn.co/mp3-preview/0235568b2cc381601628274e49dfaaa858eab673?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20181160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,nu metal,post-grunge,rock",0.297,0.989,10.0,-4.945,1.0,0.111,0.00141,0.000167,0.0911,0.323,168.893,4.0,,Atlantic Records,"C 1994 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1994 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",1848 +1849,spotify:track:54eZmuggBFJbV7k248bTTt,A Horse with No Name,"spotify:artist:35U9lQaRWSQISxQAB94Meo, spotify:artist:4Fgf6RvuWpiwDXSE7Vammx","America, George Martin",spotify:album:0E5IKYhiKgbYQkmfsFonbZ,America,spotify:artist:35U9lQaRWSQISxQAB94Meo,America,1972,https://i.scdn.co/image/ab67616d0000b273ab3b105e28a0d26df5be8d16,1,5,252239,https://p.scdn.co/mp3-preview/00137d4f947b06e8e1bc5242510e74fdf231e318?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USWB19901792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,folk rock,mellow gold,soft rock,beatlesque",0.653,0.507,11.0,-17.18,0.0,0.0534,0.687,0.0147,0.155,0.831,123.188,4.0,,Warner Records,"C © 1987 Warner Records Inc., P ℗ 1972 Warner Records Inc.",1849 +1850,spotify:track:02NAaHGCj1VbOFeblij8wu,Sign Your Name,spotify:artist:6RGxLsQUoGk5PLyMVwb3yE,Sananda Maitreya,spotify:album:0t6biFs9lqCtyAeou75zyA,Do You Love Me Like You Say ? The Very Best Of Sananda Maitreya !,spotify:artist:6RGxLsQUoGk5PLyMVwb3yE,Sananda Maitreya,2006,https://i.scdn.co/image/ab67616d0000b273d33b1a5a35764663d78621fc,1,3,276426,https://p.scdn.co/mp3-preview/3120f1bc94ef79bf8c89ba6569315ef957f93038?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBN0009285,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.89,0.537,4.0,-6.792,1.0,0.0433,0.181,5.67e-06,0.0652,0.811,109.152,4.0,,Columbia/Legacy,"P (P) 1987, 1989, 1993, 1995 Sony Music Entertainment UK Limited",1850 +1851,spotify:track:7piNEolzn07prentrlDL6Q,Union of the Snake,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:7xbWtTByfdMWFfxXmeFFl0,Greatest,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1998-11-09,https://i.scdn.co/image/ab67616d0000b2738fb8aca87001515a6945b9b7,1,10,264133,https://p.scdn.co/mp3-preview/71bc382513f338d4279a4fdec8c7ec36e078eb39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAYE8300059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.704,0.846,11.0,-4.618,0.0,0.0466,0.231,2.24e-05,0.71,0.86,115.08,4.0,,Parlophone UK,"C © 1998 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1998 Parlophone Records Ltd, a Warner Music Group Company",1851 +1852,spotify:track:5nrmGFJ87crVoJF5xdRqwn,Waterloo Sunset,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:5ktMgVAJtsv4HagfFliWpR,Something Else (Deluxe),spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,1967-09-15,https://i.scdn.co/image/ab67616d0000b2734eb2ec59c0f3292cb6b588d4,1,13,194216,https://p.scdn.co/mp3-preview/ef471a9f3af07ed504e13b3d1773e0b28b5974a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBAJE6700003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.512,0.69,1.0,-6.969,0.0,0.0249,0.162,0.0,0.167,0.417,107.839,4.0,,Castle Communications,"C © 2010 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2010 Sanctuary Records Group Ltd., a BMG Company",1852 +1853,spotify:track:36YNa8joLwu9yor2TkZbIY,Objection (Tango),spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,spotify:album:4DyMK9x2gnmRkRa16zHaEV,Laundry Service,spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,2001-11-13,https://i.scdn.co/image/ab67616d0000b2731f400a1f4d821b00824cf58f,1,1,222533,https://p.scdn.co/mp3-preview/02c770a9838c926da7b756baf5031b4a922b2c64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,NLB630100360,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"colombian pop,dance pop,latin pop,pop",0.602,0.864,11.0,-5.282,0.0,0.0661,0.0149,0.0,0.0246,0.71,179.391,4.0,,Epic,P (P) 2001 Sony Music Entertainment (Holland) B.V.,1853 +1854,spotify:track:3TxbWIGn6rDDUAnIjWr9FL,Let Them Know,spotify:artist:1MIVXf74SZHmTIp4V4paH4,Mabel,spotify:album:3DaPXxvt0uknc3VP7ktPmM,Let Them Know,spotify:artist:1MIVXf74SZHmTIp4V4paH4,Mabel,2021-06-18,https://i.scdn.co/image/ab67616d0000b2731cd97d3dadd40fbc1313ec73,1,1,148733,https://p.scdn.co/mp3-preview/fa3f8fd1ecccd5811517f56e0a6624aad6cbffb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBUM72102888,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.727,0.84,9.0,-5.217,1.0,0.102,0.0164,0.0,0.0875,0.865,125.003,4.0,,Polydor Records,"C © 2021 Mabel McVey, under exclusive licence to Universal Music Operations Limited, P ℗ 2021 Mabel McVey, under exclusive licence to Universal Music Operations Limited",1854 +1855,spotify:track:1z9UHExy0G7m4PwD72TZLi,Because I Love You,spotify:artist:0Yk7KdGevnSCqZgg9K8n6b,The Master's Apprentices,spotify:album:6P62dQ9DfSkmmbwh46sedF,Now That It's Over,spotify:artist:0Yk7KdGevnSCqZgg9K8n6b,The Master's Apprentices,1974-01-01,https://i.scdn.co/image/ab67616d0000b273962bbcd3c2cf1e40dfd8adae,1,2,273213,https://p.scdn.co/mp3-preview/13616afa60f5874a3297d54eeffbd23ea5b32d4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUEM07100006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.386,0.295,2.0,-19.276,1.0,0.0339,0.701,0.119,0.582,0.389,151.209,4.0,,EMI Music Australia,"C © 2003 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 1974 EMI Recorded Music Australia Pty Ltd.",1855 +1856,spotify:track:1ZrpvgLUBHozH2PLbc4SrO,Peaches (feat. Daniel Caesar & Giveon),"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:20wkVLutqVOYrc0kxFs7rA, spotify:artist:4fxd5Ee7UefO4CUXgwJ7IP","Justin Bieber, Daniel Caesar, Giveon",spotify:album:0w1dwXfG5z6Xjjgj524JkD,Justice,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2021-03-19,https://i.scdn.co/image/ab67616d0000b2736036cfd2a718036fc523855f,1,12,198081,https://p.scdn.co/mp3-preview/8a39d4b4a5d76e914a8ab8113396067a3f93c28a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USUM72102647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,canadian contemporary r&b,r&b",0.698,0.684,0.0,-6.239,1.0,0.0972,0.374,0.0,0.434,0.526,89.926,4.0,,RBMG/Def Jam,"C © 2021 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",1856 +1857,spotify:track:2eQPLfiQEos0sFEOZGRzQu,I Don't Wanna Play House,spotify:artist:4kxdPfFuWL6fPZpkCRLKh1,Barbara Ray,spotify:album:1qewBUrJ8amCG46TnQlhoi,The Heart and Soul Of,spotify:artist:4kxdPfFuWL6fPZpkCRLKh1,Barbara Ray,2000-03-31,https://i.scdn.co/image/ab67616d0000b27393a06c1c3fcd4164aa26c2df,1,4,156493,https://p.scdn.co/mp3-preview/c085cc674c047438d13c63f602a10a0dfe264145?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ZAC039501217,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"afrikaans,south african country",0.552,0.265,6.0,-12.022,1.0,0.0312,0.663,0.00729,0.139,0.322,104.477,4.0,,Gallo Record Company,"C 2013 Gallo Record Company, P 2013 Gallo Record Company",1857 +1858,spotify:track:2FMtwuIzmuyS1YClVMBSkP,Someday,spotify:artist:10D6CzP1JBJpHqK6wG633i,Tony Barber,spotify:album:3Io3vkftRHwraKamQKPRUZ,Spinnin' High,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-02-01,https://i.scdn.co/image/ab67616d0000b2733db1539244438f6646976aa3,1,1,132066,https://p.scdn.co/mp3-preview/14083ff8e5d571ae779d74fc4ee279af829e2207?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,QMDA71416866,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.572,0.544,6.0,-7.094,1.0,0.0408,0.732,0.0,0.095,0.88,135.276,4.0,,The Magic of Music Records,C (C) 2014 The Magic of Music Records,1858 +1859,spotify:track:4VZDv8sASBS8UruUBGTFdk,Hold On,spotify:artist:1yMYjh77WgOVafRkI50mim,Wilson Phillips,spotify:album:1Xi55xFMaymXdSWshmxhw2,Wilson Phillips,spotify:artist:1yMYjh77WgOVafRkI50mim,Wilson Phillips,1990-05-08,https://i.scdn.co/image/ab67616d0000b2733168e1f416b81862ccc83594,1,1,266866,https://p.scdn.co/mp3-preview/5f417305b52c635a7df30bd45cbe6ad740ca49db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSB29000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,mellow gold,new wave pop,soft rock",0.68,0.657,5.0,-9.897,1.0,0.0255,0.4,0.0,0.0497,0.546,97.801,4.0,,SBK/EMI RECORDS,"C © 1990 Capitol Records, LLC, P ℗ 1990 Capitol Records, LLC",1859 +1860,spotify:track:3bN4tg6rnNPy9GCkGhym4T,Message In A Bottle - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:4dB2uBf7IEazBMreDVZmB2,Reggatta De Blanc (Remastered),spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1979-10-02,https://i.scdn.co/image/ab67616d0000b273abc86ca2136f79ccc8c054cc,1,1,290280,https://p.scdn.co/mp3-preview/065b9b3a34d9153ff2985426acfa55b8196ba50e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAAM0201170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.577,0.808,1.0,-7.04,0.0,0.039,0.0338,1.33e-05,0.221,0.869,151.008,4.0,,Universal Music Group,"C © 2003 A&M Records, P ℗ 2003 A&M Records",1860 +1861,spotify:track:03zB9duFz1JqLxAIYvGdac,I'm In You,spotify:artist:0543y7yrvny4KymoaneT4W,Peter Frampton,spotify:album:1yn9J074uklyngo5SGS49U,I'm In You,spotify:artist:0543y7yrvny4KymoaneT4W,Peter Frampton,1977-05-28,https://i.scdn.co/image/ab67616d0000b273880c61026976586e391dd35e,1,1,250000,https://p.scdn.co/mp3-preview/c48e5cd1d44fbb0e442e83b27110062f8f73782d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USAM17700058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british blues,classic rock,country rock,folk rock,hard rock,mellow gold,rock,singer-songwriter,soft rock,southern rock",0.33,0.494,0.0,-7.16,1.0,0.0278,0.147,4.94e-06,0.137,0.143,98.478,4.0,,A&M,"C © 2000 A&M Records, P ℗ 1977 UMG Recordings, Inc.",1861 +1862,spotify:track:6wZ8kvKP9d1MKlNFTMZrBK,Shout Out to My Ex,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:4TvPWe1vbrh0hozmCoSFRI,Shout Out to My Ex,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2016-10-16,https://i.scdn.co/image/ab67616d0000b2737a99ea3b762da45f4a737cc8,1,1,246240,https://p.scdn.co/mp3-preview/ff077b05e0922a9196c2a9d14dce28edee3ab70f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1600060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.774,0.739,0.0,-4.022,1.0,0.0952,0.0316,5.95e-06,0.119,0.823,126.002,4.0,,Syco Music,P (P) 2016 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,1862 +1863,spotify:track:7vRriwrloYVaoAe3a9wJHe,"i hate u, i love u (feat. olivia o'brien)","spotify:artist:3iri9nBFs9e4wN7PLIetAw, spotify:artist:1QRj3hoop9Mv5VvHQkwPEp","gnash, Olivia O'Brien",spotify:album:3L0H4RjVXpEkwfDgi3XOdf,us,spotify:artist:3iri9nBFs9e4wN7PLIetAw,gnash,2016-03-25,https://i.scdn.co/image/ab67616d0000b27308862f843ea27f44f8e8cbd8,1,6,251033,https://p.scdn.co/mp3-preview/a93e5e2523f2107dd70eae49018fae0a7f88d24c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,USAT21601051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,pop,alt z,pop",0.492,0.275,6.0,-13.4,0.0,0.3,0.687,0.0,0.101,0.18,92.6,4.0,,:):,"C © 2016 :):, P ℗ 2016 :):",1863 +1864,spotify:track:5wtQLRo9oz9ifiUuc7HWIo,Homecoming,"spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:0LQoZQIV0mIs0y0XQb0Sw2","Kanye West, Chris Martin",spotify:album:6V0srAdQfEIarFvIxAYilH,Graduation,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2007-09-11,https://i.scdn.co/image/ab67616d0000b273f1376598af09249b6d699f7c,1,12,204026,https://p.scdn.co/mp3-preview/3ae9aa5849186d2cccf14dc9ff8b8be115eebf3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70749094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap",0.678,0.747,1.0,-7.07,1.0,0.188,0.353,0.0,0.113,0.923,86.996,4.0,,Roc-A-Fella,"C © 2007 UMG Recordings, Inc., P A Roc-A-Fella Records release; ℗ 2007 UMG Recordings, Inc.",1864 +1865,spotify:track:6bH2owMgMDNW6zygbotS49,As Long as You Love Me,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:5oEljuMoe9MXH6tBIPbd5e,Backstreet's Back,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1997-10-09,https://i.scdn.co/image/ab67616d0000b2738b404cb3c585d837a8b486ff,1,2,221106,https://p.scdn.co/mp3-preview/9e45a104bc8d916c0386fa87e91f2fe2f3de0bf7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI19710094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.804,0.801,0.0,-4.892,1.0,0.0305,0.275,3.29e-05,0.215,0.826,98.12,4.0,,Jive,P (P) 1997 Zomba Recording LLC,1865 +1866,spotify:track:16fzReMJmcLlBccnZCTZNS,Every Breath You Take,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:5vLIfhDpTmdyQ0YrlnXzSr,The Very Best Of Sting And The Police,"spotify:artist:0Ty63ceoRnnJKVEYP0VQpk, spotify:artist:5NGO30tJxFlKixkPSgXcFE","Sting, The Police",2002-01-01,https://i.scdn.co/image/ab67616d0000b273032ecf340e696eeb51b0e7a3,1,4,251346,https://p.scdn.co/mp3-preview/92d7997134bb18b99eb5fdc65926e4ef613f9781?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM8300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.825,0.449,1.0,-9.859,1.0,0.0348,0.574,0.0034,0.0726,0.738,117.399,4.0,,Universal Music Group,"C © 2002 A&M Records Inc., P ℗ 2002 A&M Records Inc.",1866 +1867,spotify:track:2WIxF9PM27nC3l1aNFkLMT,Chemicals,spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,spotify:album:1lwhfq8BkowesLrOTdZy71,Chemicals,spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,2021-06-11,https://i.scdn.co/image/ab67616d0000b2736192393b3ec1f67ef3d8a88e,1,1,192160,https://p.scdn.co/mp3-preview/506758f0f7f5cb1932fdac973e52856f95bfe154?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUBM02100101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian electropop,australian indie,edm",0.635,0.609,5.0,-5.575,1.0,0.0291,0.0052,0.0,0.21,0.47,105.017,4.0,,Sony Music Entertainment,P (P) 2021 Sony Music Entertainment Australia Pty Ltd,1867 +1868,spotify:track:4JGKZS7h4Qa16gOU3oNETV,Dreams,spotify:artist:7t0rwkOPGlDPEhaOcVtOt9,The Cranberries,spotify:album:0AP5O47kJWlaKVnnybKvQI,"Everybody Else Is Doing It, So Why Can't We?",spotify:artist:7t0rwkOPGlDPEhaOcVtOt9,The Cranberries,1993-03-01,https://i.scdn.co/image/ab67616d0000b273f6325f361d7803ad0d908451,1,2,271560,https://p.scdn.co/mp3-preview/01e93b284cd90ce02c830fb18aed309a946e77f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USIR29300080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,pop rock,rock",0.551,0.645,4.0,-13.093,1.0,0.0354,0.0031,0.00376,0.421,0.508,128.665,4.0,,Island Records,"C © 1993 The Island Def Jam Music Group, P ℗ 1993 The Island Def Jam Music Group",1868 +1869,spotify:track:2vdId18EePzFhwfp4ryqFq,Shape Of My Heart,spotify:artist:0Ty63ceoRnnJKVEYP0VQpk,Sting,spotify:album:6PMokt242OFzvXAgtvGgU6,Ten Summoner's Tales,spotify:artist:0Ty63ceoRnnJKVEYP0VQpk,Sting,1993-03-09,https://i.scdn.co/image/ab67616d0000b273eabdf22382a296025bef72dc,1,10,279226,https://p.scdn.co/mp3-preview/2ab904ea67d70342d1911b14c9077cafd7d6b25e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM9390010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,soft rock,sophisti-pop",0.537,0.373,6.0,-10.081,0.0,0.0331,0.691,0.000915,0.083,0.244,83.936,4.0,,Universal Music Group,"C © 1993 Polydor Ltd. (UK), P ℗ 1993 UMG Recordings, Inc.",1869 +1870,spotify:track:1qfYG2JrchEyJiqKnkE7YQ,What You Know,spotify:artist:536BYVgOnRky0xjsPT96zl,Two Door Cinema Club,spotify:album:4V1rQRHuuOWs8fXRl16OMY,Tourist History,spotify:artist:536BYVgOnRky0xjsPT96zl,Two Door Cinema Club,2010-02-07,https://i.scdn.co/image/ab67616d0000b273ed32602d9145d51e00a2df72,1,8,189693,https://p.scdn.co/mp3-preview/f32385f2429e2020eecf58c66e8166abe0f95da2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,FRU700900116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,indietronica,irish rock,modern alternative rock,modern rock,northern irish indie",0.55,0.753,6.0,-4.003,0.0,0.0407,0.000665,7.74e-06,0.0921,0.841,139.048,4.0,,Kitsune,"C 2010 Two Door Cinema Club under exclusive license to Kitsuné France, Under exclusive license to Cooperative Music for Europe. Cooperative Music is a division of V2 Records International., P 2010 Two Door Cinema Club under exclusive license to Kitsun France, Under exclusive license to Cooperative Music for Europe. Cooperative Music is a division of V2 Records International.",1870 +1871,spotify:track:4VcmwsJTnbO8Q9ABYnNAiE,The Greatest,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:65SUPjKr59ncdHY2LxeYiz,This Is Acting (Deluxe Edition),spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2016-10-21,https://i.scdn.co/image/ab67616d0000b27353e31ba4e006f69d9ff92b05,1,19,210920,https://p.scdn.co/mp3-preview/4c0630c0bddf4a825ac7cb31dce759712931c6e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11601818,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.639,0.785,10.0,-6.167,0.0,0.175,0.0175,0.00106,0.0512,0.685,191.951,4.0,,Inertia Music,"C 2016 Monkey Puzzle under exclusive license to Inertia Music, P 2016 Monkey Puzzle under exclusive license to Inertia Music",1871 +1872,spotify:track:06aw4JI5nYa8XBeBKVrltZ,Berzerk,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:3qGeRY1wt4rrLIt1YuSwHR,The Marshall Mathers LP2 (Deluxe),spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2013-11-05,https://i.scdn.co/image/ab67616d0000b2734f22365402a62c4f6e1adb44,1,8,238746,https://p.scdn.co/mp3-preview/bc20f03afd8983e99088e7d8eefabe2eab90bb45?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71311375,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.715,0.874,2.0,-4.052,1.0,0.344,0.0232,0.0,0.246,0.678,95.213,4.0,,Universal Music Group,"C © 2013 Aftermath Records, P ℗ 2013 Aftermath Records",1872 +1873,spotify:track:1B75hgRqe7A4fwee3g3Wmu,U Can't Touch This,spotify:artist:2rblp9fJo16ZPTcKDtlmKW,MC Hammer,spotify:album:4r1WecJyt5FOhglysp9zhN,Please Hammer Don't Hurt 'Em,spotify:artist:2rblp9fJo16ZPTcKDtlmKW,MC Hammer,1990-02-20,https://i.scdn.co/image/ab67616d0000b273f5e5babccf665ef8c912b190,1,2,257359,https://p.scdn.co/mp3-preview/a95e93f6b7c1a54556508e3ebb9e15930133c710?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USCA29000294,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,hip house,miami bass",0.867,0.517,11.0,-13.22,0.0,0.088,0.00449,0.000343,0.0864,0.862,133.149,4.0,,EMI/EMI Records (USA),"C © 1990 Capitol Records, LLC, P ℗ 1990 Capitol Records, LLC",1873 +1874,spotify:track:4XmsMIMjvDIFEjeY3ycMzW,All 4 Love,spotify:artist:1QtIfAa6y7w2JhxYJhYeUG,Color Me Badd,spotify:album:17mrdLXkhmlY36jRm9cUbw,C.M.B.,spotify:artist:1QtIfAa6y7w2JhxYJhYeUG,Color Me Badd,1991-07-23,https://i.scdn.co/image/ab67616d0000b273ced0c7756302458ab6daa6d5,1,2,211493,https://p.scdn.co/mp3-preview/861defb1c7387d9544574b30b6ed9fa4b65aed9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USGI10000096,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing",0.807,0.75,2.0,-8.29,1.0,0.0315,0.0346,0.000179,0.149,0.797,106.389,4.0,,Giant,"C © 1991 Giant Records, P ℗ 1991 Giant Records",1874 +1875,spotify:track:1XPta4VLT78HQnVFd1hlsK,Today,spotify:artist:40Yq4vzPs9VNUrIBG5Jr2i,The Smashing Pumpkins,spotify:album:1cUnNrx2TxvrpwPRtvpGwn,(Rotten Apples) The Smashing Pumpkins Greatest Hits,spotify:artist:40Yq4vzPs9VNUrIBG5Jr2i,The Smashing Pumpkins,2001-01-01,https://i.scdn.co/image/ab67616d0000b273c48f42fdafcffcedbdbce025,1,5,202133,https://p.scdn.co/mp3-preview/d51264aca65d4b5fa2728d0603fd62bcbf161cb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USVI29300027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,permanent wave,rock,spacegrunge",0.476,0.855,8.0,-6.046,1.0,0.0265,2.53e-05,0.69,0.049,0.408,82.955,4.0,,Virgin Records,"C © 2001 Virgin Records, P ℗ 2001 Virgin Records",1875 +1876,spotify:track:5n3zBVOBSmxdDWSRh3tib4,House Of Cards,spotify:artist:4v0Hh2bdIAJnaUqAOipfYs,James Reyne,spotify:album:0LO5wWww4eD9Fcnv021XvJ,Hard Reyne,spotify:artist:4v0Hh2bdIAJnaUqAOipfYs,James Reyne,1989-01-01,https://i.scdn.co/image/ab67616d0000b273ad8ce6e1e97e088bae378478,1,1,257733,https://p.scdn.co/mp3-preview/c11ed3b8666e99590b0bc6b29234f3a50fe49900?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USCA20701402,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.641,0.685,8.0,-9.834,1.0,0.0396,0.054,0.0,0.126,0.895,125.533,4.0,,CAPITOL CATALOG MKT (C92),"C © 1989 Capitol Records, LLC, P ℗ 1989 Capitol Records, LLC",1876 +1877,spotify:track:62zFEHfAYl5kdHYOivj4BC,International Love (feat. Chris Brown),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:7bXgB6jMjp9ATFy66eO08Z","Pitbull, Chris Brown",spotify:album:4rG0MhkU6UojACJxkMHIXB,Planet Pit (Deluxe Version),spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2011-06-17,https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19,1,8,227280,https://p.scdn.co/mp3-preview/796c030b6336cedd4a816f931c818a5507bf4607?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USJAY1100015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,r&b,rap",0.67,0.855,0.0,-3.035,0.0,0.0499,0.0124,0.0,0.335,0.648,120.05,4.0,,Mr.305/Polo Grounds Music/J Records,"P (P) 2011 J Records, a unit of Sony Music Entertainment",1877 +1878,spotify:track:794qbrYBISPbzknNBWZRem,Bonkers - Radio Edit,"spotify:artist:0gusqTJKxtU1UTmNRMHZcv, spotify:artist:3cQA9WH8liZfeja1DxcDYE","Dizzee Rascal, Armand Van Helden",spotify:album:6lgf17LyB0S78u40c2WEMo,I Give It A Year - Original Soundtrack,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-01-01,https://i.scdn.co/image/ab67616d0000b2739b495db42a774ea906bbd337,1,8,177520,https://p.scdn.co/mp3-preview/fa8adebf874b0901cd9ceee1862cefd7bc900da3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBPVV0900240,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grime,instrumental grime,big beat,classic house,deep house,disco house,filter house,house,speed garage,uk dance,vocal house",0.623,0.95,11.0,-6.546,0.0,0.231,0.00642,0.0,0.295,0.709,126.113,4.0,,Universal-Island Records Ltd.,"C © 2013 Universal Island Records, a division of Universal Music Operations Limited, P This Compilation ℗ 2013 Universal Island Records, a division of Universal Music Operations Limited",1878 +1879,spotify:track:0dDDB5Y0USPabzqBmajLJr,Into My Arms,spotify:artist:4UXJsSlnKd7ltsrHebV79Q,Nick Cave & The Bad Seeds,spotify:album:4ij84pOJd9kY2uNdT2dOH1,The Boatman's Call (Remastered),spotify:artist:4UXJsSlnKd7ltsrHebV79Q,Nick Cave & The Bad Seeds,1997-03-03,https://i.scdn.co/image/ab67616d0000b2737625b13506395b3972209cba,1,1,256120,https://p.scdn.co/mp3-preview/3129c67e60f0a5a5f478b2be5df10d3fd025d15c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJH1000649,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,permanent wave,singer-songwriter",0.484,0.0874,0.0,-17.796,1.0,0.0394,0.894,0.154,0.11,0.219,94.163,4.0,,Mute/BMG,"C 2011 Mute Records Ltd., a BMG Company, under exclusive license to [PIAS] UK Ltd, P 2011 Mute Records Ltd., a BMG Company, under exclusive license to [PIAS] UK Ltd",1879 +1880,spotify:track:6MHP5SaVNgF0pKNBBYNNDY,Yesterdays Hero,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,spotify:album:28L7sCuuF8Zt6dW1FuZqRh,I Hate the Music,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,2009-09-18,https://i.scdn.co/image/ab67616d0000b273c6cd995a8ad657da9a0c10f4,1,10,225880,https://p.scdn.co/mp3-preview/57495e6c0ecec6fda144cc36daef389dcd6b4aad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,classic uk pop",0.561,0.839,0.0,-4.587,1.0,0.0526,0.00488,1.99e-06,0.301,0.788,143.221,4.0,,Albert Productions,"C © 2009 BMG AM Pty Ltd., P ℗ 2009 BMG AM Pty Ltd.",1880 +1881,spotify:track:1YlFODzWlgk4EFqlt4PkvB,Sky Pilot,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,spotify:album:3UhfJ03I3bSzeTYyaExp51,The Twain Shall Meet,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,1968-01-01,https://i.scdn.co/image/ab67616d0000b273e55cd233ad9b45f38a8ad256,1,6,443826,https://p.scdn.co/mp3-preview/cd161792f174f9e25ae25ff842acebdfa7997527?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USPR36830042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock",0.405,0.421,10.0,-14.525,1.0,0.0506,0.0899,0.000696,0.136,0.394,111.322,4.0,,Universal Records,"C © 2015 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1968 Universal Records, a Division of UMG Recordings, Inc.",1881 +1882,spotify:track:3zBhihYUHBmGd2bcQIobrF,(Sittin' On) the Dock of the Bay,spotify:artist:60df5JBRRPcnSpsIMxxwQm,Otis Redding,spotify:album:03HMOcANauhLD0WNrMkmLU,The Dock of the Bay (Mono),spotify:artist:60df5JBRRPcnSpsIMxxwQm,Otis Redding,1968,https://i.scdn.co/image/ab67616d0000b2730acddc8ccf8d14858fbeddf5,1,1,163755,https://p.scdn.co/mp3-preview/6b33eae61b9232d7c5d0c1917befb306d2bf3a7c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USAT21403443,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,memphis soul,soul,soul blues,southern soul,vocal jazz",0.768,0.367,2.0,-11.226,1.0,0.0315,0.683,1.79e-05,0.081,0.532,103.621,4.0,,Rhino Atlantic,"C © 1968 Atlantic Records, P ℗ 1968 Atlantic Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",1882 +1883,spotify:track:28DZSzfg3ikaMtBI9QWlgD,Innocent - Remastered,spotify:artist:4KQLA0IabIwyfoeh7ytGxS,Small Mercies,spotify:album:0W5xuYUE3eC7sbHugwsvpm,Beautiful Hum,spotify:artist:4KQLA0IabIwyfoeh7ytGxS,Small Mercies,2008-05-24,https://i.scdn.co/image/ab67616d0000b273772ead418725d22673024064,1,3,261453,https://p.scdn.co/mp3-preview/0bfa0f1e20002b3a4e210c8fc4ef432fe785de0a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUBM00800172,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.348,0.798,1.0,-3.382,1.0,0.0355,0.000662,0.0,0.142,0.256,161.679,4.0,,Sony BMG Music Entertainment,"P (P) 2008 John Woodruff Management Pty Limited, under exclusive licence to Sony Music Entertainment Australia Pty Ltd",1883 +1884,spotify:track:3EkEomllpfXPPIGVFvZcEq,Cheap Wine - 2011 Remastered,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:4WQVLiXpiYlFpKXCyheZU3,East,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,1980,https://i.scdn.co/image/ab67616d0000b2730c5c3b3fd3752e9c9443e980,1,7,205131,https://p.scdn.co/mp3-preview/f559cc359ba8e315006a8d07f3c8c76c06ac18e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,AUU741100086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.681,0.889,0.0,-3.58,1.0,0.0374,0.164,0.0,0.207,0.833,123.661,4.0,,Cold Chisel,"C © 2011 Cold Chisel Pty Ltd, P ℗ 2011 Cold Chisel Pty Ltd",1884 +1885,spotify:track:0GNI8K3VATWBABQFAzBAYe,Stay,"spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:1buzCmyYZE4kcdLRudsb8V","Rihanna, Mikky Ekko",spotify:album:5pLlGJrxuQO3jMoQe1XxZY,Unapologetic (Deluxe),spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2012-12-11,https://i.scdn.co/image/ab67616d0000b2736dee21d6cd1823e4d6231d37,1,9,240706,https://p.scdn.co/mp3-preview/268c6f23a45456d8fb4ef7750c20126609e86996?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USUM71214754,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary,nashville indie",0.621,0.31,9.0,-10.164,0.0,0.0283,0.945,6.12e-05,0.117,0.125,111.881,4.0,,Def Jam Recordings,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",1885 +1886,spotify:track:4kbz7rHVbyjKasuuqelccQ,White Flag,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,spotify:album:0X9QCwbxIRm4MWKWnIHNaA,Life For Rent,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,2003-09-29,https://i.scdn.co/image/ab67616d0000b273c2dbca86dcf3a85003ac9502,1,1,240040,https://p.scdn.co/mp3-preview/d7caeef72d3e270ba880340a36bafee447d2efd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBBXH0300035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,lilith,neo mellow,pop rock",0.512,0.525,5.0,-6.823,1.0,0.0401,0.327,3.3e-06,0.081,0.294,169.951,4.0,,Arista,P (P) 2003 Sony Music Entertainment UK Limited,1886 +1887,spotify:track:4wQD0djo6Id4fQLQeRKQ6e,It Takes Two,"spotify:artist:3koiLjNrgRTNbOwViDipeA, spotify:artist:71pUA2TXf3JHUPUgsjLtuL","Marvin Gaye, Kim Weston",spotify:album:5olHUIEjslOonYs3lyffCv,Take Two,spotify:artist:3koiLjNrgRTNbOwViDipeA,Marvin Gaye,1966-08-25,https://i.scdn.co/image/ab67616d0000b273e9fdda2db100766054a40dee,1,1,177666,https://p.scdn.co/mp3-preview/fea2848db1faee79f243f84832de2eef79ebe830?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16600484,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,neo soul,northern soul,quiet storm,soul,motown,northern soul,southern soul",0.519,0.493,3.0,-10.962,1.0,0.0528,0.206,0.0,0.0754,0.831,151.269,4.0,,Motown,"C © 2004 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2004 Motown Records, a Division of UMG Recordings, Inc.",1887 +1888,spotify:track:2HXyKEFJATBKX5wVOmYbpi,Jolene,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:3DzCMl0wa1ft7FD1P0c6Xk,Come On Over,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,1976-02-29,https://i.scdn.co/image/ab67616d0000b2738783e6fd7ad84177df0546ad,1,1,183560,https://p.scdn.co/mp3-preview/538e337b92fc790225fa752b23d878462c4037d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFE07600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.611,0.638,1.0,-8.214,1.0,0.0363,0.362,5.06e-06,0.17,0.76,112.952,4.0,,ONJ Productions LTD,"C (C) 1976 ONJ Productions LTD, P (P) 1976 ONJ Productions LTD",1888 +1889,spotify:track:6fEXiC1IxVWU0nxr4lpnz4,This Ain't Love,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:5K06M9NM9n57v2eyoBbVK6,This Ain't Love,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2015-09-12,https://i.scdn.co/image/ab67616d0000b273c656f58b3fdc2128a4ee639d,1,1,206981,https://p.scdn.co/mp3-preview/037c14e108030fcbadf022cfe68e3de849d7df34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUBM01500271,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.558,0.795,0.0,-4.333,1.0,0.059,0.00485,0.000404,0.285,0.543,82.49,4.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,1889 +1890,spotify:track:3kHRGGZA7tniIUfIYgZvlh,Daisy a Day,spotify:artist:3Q68nynET81w3iLWZYEBVU,Jud Strunk,spotify:album:0Z5PbHSHf8c1spMbNsL7MC,Classic Masters: '70s Pop Playlist,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2019-03-08,https://i.scdn.co/image/ab67616d0000b273fbdb2a1f59d762e8086f1fba,1,6,169333,https://p.scdn.co/mp3-preview/1f5babaf2a5bf76e227b3967f8f8af21e8c4c09b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBT21615331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.528,0.336,0.0,-15.077,1.0,0.0316,0.587,0.00125,0.157,0.581,88.584,3.0,,Blue Lagoon,"C 2019 Blue Lagoon, P 2019 Blue Lagoon",1890 +1891,spotify:track:0g8CHbsID9fZ8eDstzYtHi,Separate Ways,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:3gpHiNAmT5oXVxe6ewTGuN,Elvis (Fool),spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1973-07-16,https://i.scdn.co/image/ab67616d0000b273524e9e45a2e0067b8189a92e,1,11,156440,https://p.scdn.co/mp3-preview/8465d716fadcbaf56be2eaf1a501f6eba19a7df9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USRC17308396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.462,0.371,4.0,-15.326,1.0,0.0443,0.901,0.0092,0.133,0.506,89.976,4.0,,RCA/Legacy,P (P) 1973 Sony Music Entertainment,1891 +1892,spotify:track:5a9lkQECA4lBCFYa6MODea,New Beginning,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:5wAoxrSVetP84EXgr4Tp3z,That's What I'm Talking About,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2004-02-02,https://i.scdn.co/image/ab67616d0000b273b924aec7c8f9c0a6a7dc7a06,1,2,240666,https://p.scdn.co/mp3-preview/339dbfd67422749041ccc9eae284d255708ff551?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUBM00447805,spotify:user:bradnumber1,2023-02-28T22:42:39Z,"australian country,australian pop,australian rock",0.532,0.696,9.0,-4.998,1.0,0.0256,0.00924,0.000391,0.106,0.819,83.974,4.0,,BMG Music,P (P) 2004 BMG Australia Limited,1892 +1893,spotify:track:7xbWAw3LMgRMn4omR5yVn3,Lose Somebody,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:5Pwc4xIPtQLFEnJriah9YJ","Kygo, OneRepublic",spotify:album:3LhriqAiHJYw7rxvtlkvQc,Lose Somebody,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:5Pwc4xIPtQLFEnJriah9YJ","Kygo, OneRepublic",2020-05-15,https://i.scdn.co/image/ab67616d0000b273479856767f92aab97c956704,1,1,199549,https://p.scdn.co/mp3-preview/e65daee371ebd258963336634e87a037c984c657?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,SEBGA2000398,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,piano rock,pop",0.58,0.586,1.0,-6.883,1.0,0.0357,0.344,0.0,0.0755,0.507,147.988,4.0,,Kygo,P (P) 2020 Kygo AS under exclusive license to Sony Music International Ltd,1893 +1894,spotify:track:67ornPeJsD8z78E4isjhzm,Looks Like Sex,spotify:artist:2KsP6tYLJlTBvSUxnwlVWa,Mike Posner,spotify:album:1VxcmruVvINURco6gJuZCw,Looks Like Sex,spotify:artist:2KsP6tYLJlTBvSUxnwlVWa,Mike Posner,2011-12-02,https://i.scdn.co/image/ab67616d0000b273ea8324e1c76f5258bac4f4f2,1,1,204786,https://p.scdn.co/mp3-preview/43710140291c66f7e67de8f3e1c280de96271f44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USRC11101007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop dance,pop rap",0.728,0.656,2.0,-5.34,1.0,0.0378,0.151,0.0,0.28,0.287,104.998,4.0,,RCA Records Label,"P (P) 2011 RCA Records, a division of Sony Music Entertainment",1894 +1895,spotify:track:0Rmj0wREQDbwuAQtb22ZC7,Macarena - Radio Mix,"spotify:artist:3W9geOv9EsI71zPr8b78BW, spotify:artist:5unKMTkFXL1KYbAvWNEyAW","Los Del Mar, Wil Veloz",spotify:album:6Z06vuXSwzkJG7XFF3yrkY,Macarena (Wil Veloz),spotify:artist:3W9geOv9EsI71zPr8b78BW,Los Del Mar,1995-01-01,https://i.scdn.co/image/ab67616d0000b273af6bf7b1236517401d1591a0,1,12,230173,https://p.scdn.co/mp3-preview/8f3644ac8a3618143d4ddc089abe004ac0a16d3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,CAU119505356,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.864,0.523,8.0,-12.732,0.0,0.0928,0.0487,5.57e-05,0.0885,0.821,103.224,4.0,,UNIDISC MUSIC INC.,"C Unidisc Music Inc., P Unidisc Music Inc.",1895 +1896,spotify:track:3cd1ImkXWJdXmWQnpvvUEC,If Ya Gettin' Down,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,spotify:album:5jSAkaiC1BBKZQSZ7wFYOY,Greatest Hits,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,2003-06-02,https://i.scdn.co/image/ab67616d0000b27310df926bec224d743644ea3e,1,3,179933,https://p.scdn.co/mp3-preview/372a42074b0eb1c3d1273221ab14f3dc86ed4b94?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBARL9900043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.819,0.799,11.0,-7.804,1.0,0.0398,0.0556,0.0,0.389,0.932,110.798,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,1896 +1897,spotify:track:4NvgRMckw4uzjNn2t7taPe,Die Another Day,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,33,276986,https://p.scdn.co/mp3-preview/bb015517c163855704c992a8df6b512efa257515?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USWB10903630,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.788,0.776,0.0,-6.213,0.0,0.0845,0.0689,0.00198,0.11,0.426,123.997,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",1897 +1898,spotify:track:1AWQoqb9bSvzTjaLralEkT,Rock Your Body,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:6QPkyl04rXwTGlGlcYaRoW,Justified,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2002-11-04,https://i.scdn.co/image/ab67616d0000b273346a5742374ab4cf9ed32dee,1,6,267266,https://p.scdn.co/mp3-preview/a4cdd210220f23d31a2b5d113500ffc9af2cbe9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USJI10200367,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.892,0.714,4.0,-6.055,0.0,0.141,0.201,0.000234,0.0521,0.817,100.972,4.0,,Jive,P (P) 2002 Zomba Recording LLC,1898 +1899,spotify:track:1YMhVt1sflC3ijwLMVtVtm,Baby I'm A Queen,spotify:artist:586uxXMyD5ObPuzjtrzO1Q,Sofi Tukker,spotify:album:5Bz2dZfDHmCIm0T1a9L2Kg,Baby I'm A Queen,spotify:artist:586uxXMyD5ObPuzjtrzO1Q,Sofi Tukker,2018-03-09,https://i.scdn.co/image/ab67616d0000b273ca3a51d0acb1e080c15668ec,1,1,208520,https://p.scdn.co/mp3-preview/b727fba88c792e0d76760601dbf42e0b738aa63f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,QM37X1700019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,edm,0.642,0.813,6.0,-4.394,0.0,0.0305,0.0015,0.762,0.363,0.198,119.965,4.0,,"Ultra Records, LLC","P (P) 2018 Sofi Tukker, LLC under exclusive license to Ultra Records, LLC",1899 +1900,spotify:track:2VOZniNxFIDl8ydLltrMNb,Escapism.,"spotify:artist:5KKpBU5eC2tJDzf0wmlRp2, spotify:artist:12Zk1DFhCbHY6v3xep2ZjI","RAYE, 070 Shake",spotify:album:4parxQfGC25WtlVVAm5S9q,Escapism.,"spotify:artist:5KKpBU5eC2tJDzf0wmlRp2, spotify:artist:12Zk1DFhCbHY6v3xep2ZjI","RAYE, 070 Shake",2022-12-07,https://i.scdn.co/image/ab67616d0000b273e38f6d02f1e76fe09009e64e,1,1,272373,https://p.scdn.co/mp3-preview/8a8fcaf9ddf050562048d1632ddc880c9ce7c972?cid=9950ac751e34487dbbe027c4fd7f8e99,True,71,QMDA62217995,spotify:user:bradnumber1,2023-06-14T04:37:58Z,"uk contemporary r&b,uk pop,new jersey rap",0.538,0.742,2.0,-5.355,1.0,0.114,0.138,4.67e-05,0.0934,0.25,96.107,4.0,,Human Re Sources,"C (C) 2022 RAYE under exclusive license to Human Re Sources, P (P) 2022 RAYE under exclusive license to Human Re Sources",1900 +1901,spotify:track:7MaM6dxpFuC9QgWmTSJPik,Everybody On The Floor (Pump It) - Radio Edit,spotify:artist:7xqqOKmWS7KYlorTLXFMiI,Tokyo Ghetto Pussy,spotify:album:5YCpZ21T60L55Yhn7iA5Ge,90's Eurodance - 20 Eurodance Essentials,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1997,https://i.scdn.co/image/ab67616d0000b2735620833ab4bbd46b317a0daf,1,2,217333,https://p.scdn.co/mp3-preview/211d10f32a48b0a0f963b0f9e9dd0dc6187783f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEMW61000125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,german techno,0.745,0.72,7.0,-9.889,1.0,0.048,0.0877,0.874,0.117,0.919,144.982,4.0,,Allstar Music,"C 1997 Allstar Music, P 1997 Allstar Music",1901 +1902,spotify:track:5fMiEaa7udr706hwLbLWp1,If You Love Me (Let Me Know),spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:4LZhAy9UsJ0EiqqeKyrlts,Hopelessly Devoted: The Hits,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2018-06-08,https://i.scdn.co/image/ab67616d0000b273ea73235699dcf414d1e1adae,1,14,191302,https://p.scdn.co/mp3-preview/e08daa9f5b0cc565810812ece4973815e15e8f66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USONJ0200078,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.597,0.666,5.0,-7.323,1.0,0.0358,0.535,0.0,0.149,0.806,128.76,4.0,,Sony Music Entertainment,"P (P) 2018 ONJ Productions, Ltd. under exclusive licence to Sony Music Entertainment Australia Pty Ltd",1902 +1903,spotify:track:2VfvfFSVD1Ki0PH0Xd0jcv,You'll Never Walk Alone - Stereo; 1997 Remaster,spotify:artist:3UmBeGyNwr4iDWi1vTxWi8,Gerry & The Pacemakers,spotify:album:6KfKWfiXnXVcgYDH0JcIP2,How Do You Like It? [Mono And Stereo Version],spotify:artist:3UmBeGyNwr4iDWi1vTxWi8,Gerry & The Pacemakers,1963-10-01,https://i.scdn.co/image/ab67616d0000b273381906bde745ae15d5a44e55,1,21,164173,https://p.scdn.co/mp3-preview/6751e5045000f1156af0a92d3bca0572564b656b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAYE9702799,spotify:user:bradnumber1,2022-06-29T07:09:45Z,"british invasion,merseybeat,rock-and-roll",0.48,0.235,0.0,-12.636,1.0,0.0318,0.172,4.56e-06,0.234,0.295,113.33,3.0,,Parlophone UK,"C © 1997 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1997 Parlophone Records Ltd, a Warner Music Group Company",1903 +1904,spotify:track:2nnU5UH4paoRkWCC7fSR2P,Together Again,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:6MFr3o4hxxhWrc2DAitc0G,Together Again,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1997-01-01,https://i.scdn.co/image/ab67616d0000b273de10d0730d238a5ca36d657a,1,1,248666,https://p.scdn.co/mp3-preview/99fda21e0cfb22ebd37c0354af9ce274a9ae0144?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USVI29700003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.898,0.648,7.0,-8.779,1.0,0.0869,0.0402,0.0377,0.0611,0.724,123.096,4.0,,Virgin Records,"C © 1997 Black Doll Inc, P ℗ 1997 Virgin Records America, Inc.",1904 +1905,spotify:track:6EpRaXYhGOB3fj4V2uDkMJ,Strip That Down,"spotify:artist:5pUo3fmmHT8bhCyHE52hA6, spotify:artist:0VRj0yCOv2FXJNP47XQnx5","Liam Payne, Quavo",spotify:album:2mnDyPSNM02LMvniaMWnLl,Strip That Down,spotify:artist:5pUo3fmmHT8bhCyHE52hA6,Liam Payne,2017-05-18,https://i.scdn.co/image/ab67616d0000b273ec1abb2ba5e210e826161111,1,1,204502,https://p.scdn.co/mp3-preview/4b1ba75b9456797946d8c89556204bd4719a86bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71701628,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,atl hip hop,melodic rap,rap,trap",0.869,0.485,6.0,-5.595,1.0,0.0545,0.246,0.0,0.0765,0.527,106.028,4.0,,Universal Music Group,"C © 2017 Hampton Records Limited, under exclusive licence to Capitol Records, a division of Universal Music Operations Limited, P ℗ 2017 Hampton Records Limited, under exclusive licence to Capitol Records, a division of Universal Music Operations Limited",1905 +1906,spotify:track:0ZBEQxnITmNxUozlSkpTSu,Only Happy When It Rains,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,spotify:album:7nxUo7X1Z1vSBxn7XoF8js,Garbage,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,1995,https://i.scdn.co/image/ab67616d0000b273c392b0bc0cf5659e2ccb7731,1,3,236533,https://p.scdn.co/mp3-preview/e134a80a145211b4d89d96be16b15c48c81babe0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19500403,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,electronic rock,permanent wave",0.509,0.769,11.0,-7.527,1.0,0.0315,8.5e-05,0.00363,0.13,0.464,121.439,4.0,,Liberator Music,"C 2012 STUNVOLUME, P 2012 STUNVOLUME",1906 +1907,spotify:track:1hY60LJWE6B9gHV1Oi9kE5,"The Goonies 'R' Good Enough - From ""The Goonies"" Soundtrack",spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,spotify:album:6zS7xswcMZXYhMmlPOUjob,The Goonies (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1985-01-09,https://i.scdn.co/image/ab67616d0000b27358793807d5867d84f115c96d,1,1,218440,https://p.scdn.co/mp3-preview/42dbffda0a09f12d8f1ded06b4ed6c9b83656d4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USSM19927699,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,permanent wave,soft rock",0.71,0.807,1.0,-8.97,0.0,0.0378,0.25,1.88e-05,0.0744,0.946,139.551,4.0,,Epic,P (P) 1985 Sony Music Entertainment Inc.,1907 +1908,spotify:track:3c8iiZGfEammKJuWTErE5x,Ain't Nobody (Loves Me Better) (feat. Jasmine Thompson),"spotify:artist:4bL2B6hmLlMWnUEZnorEtG, spotify:artist:2TL8gYTNgD6nXkyuUdDrMg","Felix Jaehn, Jasmine Thompson",spotify:album:2S56F6bIk01HboGbJJJ1IQ,I,spotify:artist:4bL2B6hmLlMWnUEZnorEtG,Felix Jaehn,2018-02-16,https://i.scdn.co/image/ab67616d0000b2739713f1939e377cf85a2a5b16,2,1,186146,https://p.scdn.co/mp3-preview/b9e0951e2c9d2dbf778b2a2b619a549ba78090f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,DEUM71500425,spotify:user:bradnumber1,2021-11-17T22:21:00Z,"edm,german dance,pop dance,tropical house,uk dance,viral pop",0.78,0.568,2.0,-6.96,0.0,0.031,0.668,0.000168,0.0698,0.459,117.973,4.0,,Virgin,"C © 2018 L'Agentur, under exclusive license to Universal Music GmbH, P ℗ 2018 L'Agentur, under exclusive license to Universal Music GmbH",1908 +1909,spotify:track:50AwZsz8Muj0bT7hQCasBp,Easy,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,spotify:album:4DE9j0tE0xL37RonHBowlx,This Is It: The Best of Faith No More,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,2003-01-28,https://i.scdn.co/image/ab67616d0000b2736c635a823d54f0119ae04f94,1,14,189000,https://p.scdn.co/mp3-preview/9d186014035755eb805c0e4a9b9fb520622c9008?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USRH10901930,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,funk metal,funk rock,hard rock,nu metal,post-grunge,rap metal,rock",0.498,0.46,10.0,-9.243,0.0,0.034,0.266,0.000799,0.11,0.356,124.578,4.0,,Rhino/Slash,"C 2009 © 2003 Rhino Entertainment Company, a Warner Music Group Company, P 2009 ℗ 2003 Rhino Entertainment Company. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",1909 +1910,spotify:track:7ctRAoCbcpOusbm3w3E6mn,Chasing Cars,spotify:artist:3rIZMv9rysU7JkLzEaC5Jp,Snow Patrol,spotify:album:61ydlH3GzijGrRrivGZASi,Up To Now,spotify:artist:3rIZMv9rysU7JkLzEaC5Jp,Snow Patrol,2009-01-01,https://i.scdn.co/image/ab67616d0000b27385b9ae129bb376968f1055d8,1,2,265666,https://p.scdn.co/mp3-preview/fac686f4d67453548876570e48d99ad32b181294?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70600345,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,modern rock,neo mellow,permanent wave,pop rock",0.569,0.546,9.0,-6.262,1.0,0.0251,0.302,1.13e-05,0.137,0.205,104.007,4.0,,Universal Music Group,"C © 2009 Polydor Ltd. (UK), P ℗ 2009 Polydor Ltd. (UK)",1910 +1911,spotify:track:2egaUALV7H8XFfPI8EZDsr,Dub Be Good To Me,spotify:artist:6C5gMdsVmZHJG6yJuC68sp,Beats International,spotify:album:45NFsa8WOBfaA9ONiSvWmc,Let Them Eat Bingo,spotify:artist:6C5gMdsVmZHJG6yJuC68sp,Beats International,1990-04-12,https://i.scdn.co/image/ab67616d0000b273bc272e9feebcf55e81574cac,1,2,217426,https://p.scdn.co/mp3-preview/f4cb7153ab7344ee8dbbb147217fcb1e4e1ed905?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBUM71802475,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hip house,0.861,0.272,7.0,-20.26,1.0,0.0586,0.00187,0.0473,0.188,0.659,95.879,4.0,,UMC (Universal Music Catalogue),"C © 1990 Go! Discs Ltd., P ℗ 1990 Go! Discs Ltd.",1911 +1912,spotify:track:1y5CeKHBClZ6wCaNLkmkAA,South Street,spotify:artist:7JSIM5U7TZym5M3Q1AFG80,The Orlons,spotify:album:7v3vchWDItpCUEq5Zizr4e,South Street,spotify:artist:7JSIM5U7TZym5M3Q1AFG80,The Orlons,2006-01-20,https://i.scdn.co/image/ab67616d0000b273d3e186af89a3f93769688de5,1,7,134227,https://p.scdn.co/mp3-preview/bf50a4757c65a625da4cb460fc8d646715d286f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ZA42A1706243,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,doo-wop,rhythm and blues",0.543,0.318,5.0,-15.395,1.0,0.0826,0.338,0.0,0.132,0.713,186.595,4.0,,TP4 Music,"C 2017 TP4 Music, P 2017 TP4 Music",1912 +1913,spotify:track:4zzvMG8KrsykYtvFEJ99Cl,Easy,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,spotify:album:59GwovfBk0Kp2HJw1G7E5Q,Angel Dust,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,1992-06-08,https://i.scdn.co/image/ab67616d0000b273fba269c78920704d0a3a097d,1,14,186960,https://p.scdn.co/mp3-preview/1f75947e13fe58dba48b2fd8d5f0b79db8358962?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBANC9200158,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,funk metal,funk rock,hard rock,nu metal,post-grunge,rap metal,rock",0.506,0.554,10.0,-6.743,0.0,0.0339,0.339,0.000355,0.112,0.375,124.724,4.0,,London Records,"C © 1992 Slash Records, a label of Warner Records Inc., P ℗ 1999 Slash Records, a label of Warner Records Inc., manufactured and marketing by Rhino Entertainment Company, a Warner Music Group company",1913 +1914,spotify:track:0D2A4Rid7gnlcwlspLTkx0,Staring At The Sun,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:2RNTBrSO8U8XjjEj9RVvZ5,Americana,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,1998-11-16,https://i.scdn.co/image/ab67616d0000b273cbd2ee7dff77bfb2b5f0af52,1,3,133586,https://p.scdn.co/mp3-preview/57c1409f7a73a66de76c0543023cca2c06a3c620?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM19804362,spotify:user:bradnumber1,2023-08-08T22:04:07Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.403,0.952,0.0,-3.925,1.0,0.202,0.259,0.0,0.123,0.729,87.833,4.0,,Round Hill Music (Offspring),"C © 1998 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc., P ℗ 1998 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc.",1914 +1915,spotify:track:5MhBw520G38BPhbkShJUTE,Goodnight Tonight,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,spotify:album:1UI3JDMQjAsDRqbx5K9x9w,Wingspan (UK Version),spotify:artist:4STHEaNw4mPZ2tzheohgXB,Paul McCartney,2001-05-07,https://i.scdn.co/image/ab67616d0000b273b2e65a6bdc521ce3522bca40,1,12,260800,https://p.scdn.co/mp3-preview/d9eeac4f2955fcc4c11bf5c5793971c3f6c3040f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCCS0100528,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.748,0.683,1.0,-9.885,0.0,0.0466,0.0566,0.000639,0.0809,0.943,123.384,4.0,,Universal Music Group International,"C © 2001 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2001 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",1915 +1916,spotify:track:2WCz6mfqmGFY34NCRABWM4,She's No You,spotify:artist:2Hjj68yyUPiC0HKEOigcEp,Jesse McCartney,spotify:album:3Y0n6JE9pFlvXXmn3M80uJ,Beautiful Soul,spotify:artist:2Hjj68yyUPiC0HKEOigcEp,Jesse McCartney,2004-01-01,https://i.scdn.co/image/ab67616d0000b273d487ded7a1bd3453e30be852,1,1,213960,https://p.scdn.co/mp3-preview/f9b9a49094541074aacd6a954c060de350407bdf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR10421207,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.595,0.875,4.0,-4.235,0.0,0.0394,0.0832,0.0474,0.299,0.307,89.961,4.0,,Universal Music,"C © 2004 Hollywood Records, Inc., P ℗ 2004 Hollywood Records, Inc.",1916 +1917,spotify:track:3gzbPqfjQKHTUm18u71cIt,What's Your Name,spotify:artist:7gArjmSS1gJuofpu4vHtCI,Don & Juan,spotify:album:2fMAiSCxI4EO5TDPLnPEhm,Don & Juan,spotify:artist:7gArjmSS1gJuofpu4vHtCI,Don & Juan,2009-05-26,https://i.scdn.co/image/ab67616d0000b27399236f2b64e8ba55c50670d3,1,1,135426,https://p.scdn.co/mp3-preview/e0e523842535caa82d7791b40390d03ce4233424?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USFDB0613486,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.55,0.38,5.0,-7.963,1.0,0.0257,0.845,0.0,0.0791,0.795,99.789,3.0,,Twirl Records,C (C) 2009 Twirl Records,1917 +1918,spotify:track:0fMUJCIylP01D8JjSULZ7C,Wild Weekend,spotify:artist:5DHZNhnoDoZuzDQejFO7h6,The Rebels,spotify:album:71CcmssjBmjPYKWiDnW7PE,Wild Weekend,spotify:artist:5DHZNhnoDoZuzDQejFO7h6,The Rebels,2014-03-12,https://i.scdn.co/image/ab67616d0000b27313bc3be386af46aef29bfedb,1,1,133564,https://p.scdn.co/mp3-preview/141b55fc087a45d83f0a3f277274a5980499303c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,QMFME1405798,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.554,0.65,6.0,-12.099,1.0,0.039,0.446,0.0756,0.112,0.879,123.583,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,1918 +1919,spotify:track:4wtR6HB3XekEengMX17cpc,Children,spotify:artist:2YVF0Ou5zIc4mpgtLIlGN0,Robert Miles,spotify:album:5vwm8dEf7xGTqUAas8zGdC,Children (Dance Vault Mixes),spotify:artist:2YVF0Ou5zIc4mpgtLIlGN0,Robert Miles,1996-07-11,https://i.scdn.co/image/ab67616d0000b27385a2da83b5b340365ae7d8cd,1,1,243266,https://p.scdn.co/mp3-preview/6f035e8bc7b184c20a9776c6fe25292053fabbc7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBARS9600151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dream trance,eurodance,trance",0.604,0.755,0.0,-10.761,1.0,0.0337,0.000298,0.817,0.0625,0.387,137.064,4.0,,Arista,P (P) 1996 Deconstruction Ltd. Under exclusive licence from 'DBX Records' Italy.,1919 +1920,spotify:track:573latfTMO7SpGtStVrQx5,Harlem,spotify:artist:3RbyaF3Pq6iDUKNp04AIcU,New Politics,spotify:album:2pKVER4FshWhYv6yk8uIbI,A Bad Girl In Harlem,spotify:artist:3RbyaF3Pq6iDUKNp04AIcU,New Politics,2013-05-17,https://i.scdn.co/image/ab67616d0000b273fd910d582980afe314abb0b8,1,2,163626,https://p.scdn.co/mp3-preview/061bd3da7136e5651a0e9e6e496e1cc54b8aa03c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC11201574,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern alternative rock,modern rock,stomp pop",0.603,0.952,6.0,-3.699,1.0,0.0947,0.00189,0.000445,0.317,0.588,133.97,4.0,,RCA Records Label,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",1920 +1921,spotify:track:3YKptz29AsOlm7WAVnztBh,Kiss from a Rose,spotify:artist:5GtMEZEeFFsuHY8ad4kOxv,Seal,spotify:album:1mSECpFqHRW6leG4idqTE1,Seal,spotify:artist:5GtMEZEeFFsuHY8ad4kOxv,Seal,1994-05-31,https://i.scdn.co/image/ab67616d0000b27333d4866ed921300e8ef50808,1,6,288426,https://p.scdn.co/mp3-preview/7902464c33351dafb17949c3f699bf035ba57d22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USWB19900917,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,new wave pop",0.584,0.533,10.0,-7.11,0.0,0.0305,0.684,0.0,0.306,0.224,131.745,3.0,,Warner Records,"C © 1994 Warner Records Inc., P ℗ 1994 Warner Records Inc.",1921 +1922,spotify:track:67y1X9nuRdw9AUzJFMI1Lb,Price Of Fame,"spotify:artist:3vn7rk7VNMfDhuZNB9sDYP, spotify:artist:0NnyKz36MvIC2R3dFht35A","360, Gossling",spotify:album:0X9KEPk1DdCCiIqezT8zF3,UTOPIA (Deluxe),spotify:artist:3vn7rk7VNMfDhuZNB9sDYP,360,2014-01-01,https://i.scdn.co/image/ab67616d0000b2738a9d577104a6f6b7ba2c0d4c,1,6,216662,https://p.scdn.co/mp3-preview/5bcebcd93b136e5a08c902d38c18ec5274b5ecef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUCGD1400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian pop",0.71,0.837,6.0,-3.967,1.0,0.104,0.0461,0.0,0.107,0.345,143.065,4.0,,Forthwrite,"C © 2014 Forthwrite Records Pty Ltd, P ℗ 2014 Forthwrite Records Pty Ltd, Except track 17 ℗ 2013 Forthwrite Records Pty Ltd.",1922 +1923,spotify:track:11dCfArPrM7kzYpUrFHal9,Panama,spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,spotify:album:6x2n6wj3WvkRi8J8gxEcF0,1984,spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,1984-01-03,https://i.scdn.co/image/ab67616d0000b27328b2637e7ca2182a1dbcf8e7,1,3,212640,https://p.scdn.co/mp3-preview/67d068feb0fb7e3c89fc786a7bfa0032b77aff53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB18300002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.515,0.987,8.0,-5.391,1.0,0.108,0.00135,0.000195,0.0697,0.298,141.258,4.0,,Warner Bros.,"C 1984 Warner Bros. Records for the United states and WEA International Inc. for the world outside of the United States., P 1984 Warner Bros. Records for the United states and WEA International Inc. for the world outside of the United States.",1923 +1924,spotify:track:0QWAOOFV9lsnC7fYHeSycS,I'm the Urban Spaceman - 2007 Remaster,spotify:artist:6Q7D1oEccgTc8MAYdMgtIx,The Bonzo Dog Band,spotify:album:5NcFpb4RsvB0inuFAbFCC0,Tadpoles,spotify:artist:6Q7D1oEccgTc8MAYdMgtIx,The Bonzo Dog Band,1969-06-09,https://i.scdn.co/image/ab67616d0000b273a2de324a1d6d437664b44b81,1,6,146133,https://p.scdn.co/mp3-preview/065a06dd8d62d46ed461729eba0d6b7b64481c8c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAYE0701093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,zolo,0.63,0.525,2.0,-11.154,1.0,0.0269,0.156,2.09e-05,0.369,0.931,89.738,4.0,,Parlophone UK,"C © 2007 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2007 Parlophone Records Ltd, a Warner Music Group Company",1924 +1925,spotify:track:5z8uLrYMcUVvzTV28twt44,Slow Grenade,"spotify:artist:0X2BH1fck6amBIoJhDVmmJ, spotify:artist:5JZ7CnR6gTvEMKX4g70Amv","Ellie Goulding, Lauv",spotify:album:15Zgvxqql6EPHE3NJlUt0R,Slow Grenade,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2020-06-30,https://i.scdn.co/image/ab67616d0000b2734fb1446223808a37ba8914b5,1,1,217493,https://p.scdn.co/mp3-preview/ffa3cf6b7fbfe705906c4215a39bd2728fac6de8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBUM71905729,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop,pop",0.758,0.562,9.0,-6.302,1.0,0.0771,0.0996,0.0,0.0996,0.581,142.035,4.0,,Polydor Records,"C © 2020 Polydor Limited, P ℗ 2020 Polydor Limited",1925 +1926,spotify:track:73q3FpQVXWk5eSUnyo83E4,Tearin' up My Heart - Radio Edit,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,spotify:album:7K5qlneuWF1CcY6ERzwkLB,'N Sync UK Version,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,1997,https://i.scdn.co/image/ab67616d0000b273186b235052f031900c5cb282,1,1,209400,https://p.scdn.co/mp3-preview/05ed70d8a85555cb94bdbbc9843274d955690619?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,DEA819700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.687,0.918,7.0,-4.676,1.0,0.0392,0.00211,1.26e-05,0.344,0.747,110.06,4.0,,Northwestside Records,"P (P) 1997/1998 Trans Continental Records, Inc.",1926 +1927,spotify:track:51ChrwmUPDJvedPQnIU8Ls,Dive,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:3T4tUhGYeRNVUGevb0wThu,÷ (Deluxe),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2017-03-03,https://i.scdn.co/image/ab67616d0000b273ba5db46f4b838ef6027e6f96,1,3,238440,https://p.scdn.co/mp3-preview/54de09a9e22028c31c5dba1ecd84545a07df5c18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBAHS1700022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.761,0.386,4.0,-6.158,1.0,0.0399,0.355,0.0,0.0953,0.526,134.943,3.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company.",1927 +1928,spotify:track:3KiexfmhxHvG5IgAElmTkd,I Saw Her Standing There - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:3KzAvEXcqJKBF97HrXwlgf,Please Please Me (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1963-03-22,https://i.scdn.co/image/ab67616d0000b273dbeec63ad914c973e75c24df,1,1,173946,https://p.scdn.co/mp3-preview/840298e24be40d25630dac9791b097b8c53cb0ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAYE0601410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.491,0.801,4.0,-9.835,1.0,0.0361,0.27,0.0,0.0665,0.971,160.109,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",1928 +1929,spotify:track:1B3t5xC2jzTgjDOwawchu8,Sexy Bitch (feat. Akon),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:0z4gvV4rjIZ9wHck67ucSV","David Guetta, Akon",spotify:album:6w2rRSUsQk1e9ALB6ybmlz,One More Love,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2010-11-22,https://i.scdn.co/image/ab67616d0000b27391c50a0e18ec7618716d796b,1,3,195853,https://p.scdn.co/mp3-preview/f11a157b92dc1379052822e88e75f5f5d5b248a9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,FRZID0900500,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,dance pop",0.813,0.627,11.0,-5.018,0.0,0.0486,0.076,0.000616,0.131,0.801,130.011,4.0,,Parlophone France,"C 2011 Gum Prod, licence exclusive Parlophone Music France, P 2011 Gum Prod, licence exclusive Parlophone Music France",1929 +1930,spotify:track:3672j9qcUufXuGwVoXHaeK,Mrs. Robinson,spotify:artist:6w7fc6IZlo5zwBaKT5jU1X,The Lemonheads,spotify:album:1DxkKAQDMX4H1TlXCJAYyS,It's A Shame About Ray [Expanded Edition],spotify:artist:6w7fc6IZlo5zwBaKT5jU1X,The Lemonheads,1992-06-02,https://i.scdn.co/image/ab67616d0000b273658d5c62216ac4cb8f03b98b,1,13,224480,https://p.scdn.co/mp3-preview/070f851c688964152b02bb4a503d1210bdb0f05e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20706785,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,boston rock,power pop",0.495,0.936,4.0,-7.196,0.0,0.0401,0.0111,0.000709,0.276,0.837,107.394,4.0,,Rhino Atlantic,"C 2008 Rhino Entertainment Comapny, a Warner Music Group Company, P 2008 Rhino Entertainment Company, a Warner Music Group Company",1930 +1931,spotify:track:6EUZCOaXZMAIkLwY8A5VNv,Mashed Potato Time,spotify:artist:2NtGOVTuHBMDfR5PMNPBGT,Dee Dee Sharp,spotify:album:6THxNKHEOOBIXrKsT4WTmM,Cameo Parkway - The Best Of Dee Dee Sharp (Original Hit Recordings) [International Version],spotify:artist:2NtGOVTuHBMDfR5PMNPBGT,Dee Dee Sharp,1962-01-01,https://i.scdn.co/image/ab67616d0000b27336d3081512141ee1edafbc7c,1,1,151093,https://p.scdn.co/mp3-preview/ac9f85830566d696dd1d25f34d7cdf5d9b0d978d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176240280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,doo-wop,motown,philly soul,rhythm and blues,southern soul",0.636,0.549,2.0,-6.997,1.0,0.0296,0.0487,1.41e-05,0.0547,0.826,125.061,4.0,,Universal Music Group,"C © 2006 ABKCO Records Inc., P ℗ 2006 ABKCO Records Inc.",1931 +1932,spotify:track:7wBmWdMs0cWeWZGFBhJeOB,Lucy In The Sky With Diamonds,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:7bcUz60MilxMGurjN2T5nS,Captain Fantastic (Deluxe Edition),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1975-05-19,https://i.scdn.co/image/ab67616d0000b273be1ce5ee1bf02a3d23523d19,1,11,378773,https://p.scdn.co/mp3-preview/1f929a11779a712a0d04f5a3a1e9486698854cda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMB7500011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.392,0.541,0.0,-9.058,1.0,0.0373,0.0556,2.68e-05,0.108,0.492,165.959,4.0,,Universal Strategic Marketing,"C © 2005 This Record Company Ltd., P ℗ 2005 This Record Company Ltd. Manufactured by the Island Def Jam Music Group",1932 +1933,spotify:track:4nA0biSjtvOL41Hd9MBXqR,Ain't My Fault,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,spotify:album:1w0fs0y7Kb83F6ZmPpTDIB,Ain't My Fault,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,2016,https://i.scdn.co/image/ab67616d0000b273df4b01928545c80ede10cbe0,1,1,224030,https://p.scdn.co/mp3-preview/36a7a111cb896a601e8c5654e410f1994511d318?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM11607151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,scandipop,swedish electropop,swedish pop",0.576,0.782,6.0,-4.825,0.0,0.0296,0.00778,0.0,0.285,0.355,141.153,4.0,,Epic/Record Company TEN,"P (P) 2016 Record Company TEN, exclusively licensed by Epic Records, a division of Sony Music Entertainment",1933 +1934,spotify:track:5nawy87QcsQ0eYBbTLmApR,Don't Say Goodbye,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:7rgGUwktG0QX2JJe7j4vdz,Telling Everybody,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,1996-12-31,https://i.scdn.co/image/ab67616d0000b2732aa299e7d5b96f24130acc22,1,7,262400,https://p.scdn.co/mp3-preview/aaa24ef3476d851ad787f2776bf8fec189c8c4d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUSM09600115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,boy band",0.528,0.57,1.0,-9.903,1.0,0.0245,0.0934,0.0,0.0921,0.366,94.024,4.0,,Columbia,P (P) 1997 SME (Australia) Ltd./Human Nature US LLC under exclusive license to Sony Music Entertainment,1934 +1935,spotify:track:54CBVACBxJ1Sa58aWw4QSP,Water And A Flame (feat. Adele),"spotify:artist:6HD2mo0Gz8wd8IbOXYwUfN, spotify:artist:4dpARuHxo51G3z768sgnrY","Daniel Merriweather, Adele",spotify:album:7esBRX55cujeL0iSZWu0U6,Love & War,spotify:artist:6HD2mo0Gz8wd8IbOXYwUfN,Daniel Merriweather,2009-06-01,https://i.scdn.co/image/ab67616d0000b273e0368b1621e511b0a76dbdb6,1,10,219186,https://p.scdn.co/mp3-preview/33cf3411a9a19fc6230cb40e72a815d51402ad04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USJAY0900028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,british soul,pop,pop soul,uk pop",0.558,0.689,2.0,-4.89,0.0,0.0408,0.0962,0.0,0.194,0.546,148.118,4.0,,J Records,"P (P) c 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",1935 +1936,spotify:track:7CQXyFX44CXmnuq8Bi9Dyc,Get Together,spotify:artist:5I6MzhNEMk27cZsCqGAIYo,The Youngbloods,spotify:album:5s0VNKqar5MPHpL5atfTFG,The Youngbloods,spotify:artist:5I6MzhNEMk27cZsCqGAIYo,The Youngbloods,1967-03-10,https://i.scdn.co/image/ab67616d0000b273a48ff7096192374d2863e396,1,4,279280,https://p.scdn.co/mp3-preview/217eab01368b3af12145b47203d014be76850828?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC16707554,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,classic garage rock,country rock,folk rock,psychedelic rock,singer-songwriter",0.542,0.492,2.0,-11.927,1.0,0.0256,0.467,0.00105,0.0863,0.58,103.064,4.0,,Legacy Recordings,"P Originally released 1967. All rights reserved by RCA Records, a division of Sony Music Entertainment",1936 +1937,spotify:track:7eGnlJZa1e1hG28HXkofqv,Is This Love?,spotify:artist:0s0rOb0gT2S9N0SDcjtPC4,Alison Moyet,spotify:album:4rS956F4Dl2ZlNffNE9Q4E,Raindancing,spotify:artist:0s0rOb0gT2S9N0SDcjtPC4,Alison Moyet,1987-03-31,https://i.scdn.co/image/ab67616d0000b2732b513a69daa4ff84907085ea,1,6,240800,https://p.scdn.co/mp3-preview/f9c56c88a7cf35a27b2e092d1e089d10393b27b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,GBBBN8602009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,solo wave,sophisti-pop,synthpop",0.757,0.519,9.0,-11.798,1.0,0.0275,0.207,1.48e-05,0.0832,0.913,116.755,4.0,,Columbia,P (P) 1987 BMG Rights Management (UK) Limited,1937 +1938,spotify:track:5r7XHPnTPeLKcBeDMLzkse,In the Summertime - Single Version,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,spotify:album:1x4C6S1FIkcRBFwYDWFEen,In The Summertime,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,2005-07-05,https://i.scdn.co/image/ab67616d0000b273108299e68972cd8a9b461fbc,1,1,228560,https://p.scdn.co/mp3-preview/65f846db406a2d39e2e0c5ba7897c912f8993b88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUWA00513581,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.489,0.879,9.0,-3.787,1.0,0.0688,0.00092,0.00285,0.248,0.741,156.576,4.0,,WM Australia,"C © 2005 Warner Music Australia Pty Limited, P ℗ 2005 Warner Music Australia Pty Limited",1938 +1939,spotify:track:3BKD1PwArikchz2Zrlp1qi,Baby Don't Hurt Me,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:6AMd49uBDJfhf30Ak2QR5s","David Guetta, Anne-Marie, Coi Leray",spotify:album:327tc3Eruk1HP1w62iqROy,Baby Don't Hurt Me,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:6AMd49uBDJfhf30Ak2QR5s","David Guetta, Anne-Marie, Coi Leray",2023-04-06,https://i.scdn.co/image/ab67616d0000b2730b4ef75c3728599aa4104f7a,1,1,140017,https://p.scdn.co/mp3-preview/a8f2e176e17e0f6298b42ef8e96118318fdd2b89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,UKWLG2300016,spotify:user:bradnumber1,2023-07-11T05:37:45Z,"big room,dance pop,edm,pop,pop dance,pop,new jersey underground rap,trap queen",0.602,0.91,7.0,-3.404,1.0,0.0308,0.00126,0.000174,0.12,0.228,127.944,4.0,,Parlophone UK,"C Under license to Warner Music UK Limited, © 2023 What A DJ Ltd, P Under license to Warner Music UK Limited, ℗ 2023 What A DJ Ltd",1939 +1940,spotify:track:3lQ3tCnZM2P5XN23ixJpHX,How Sweet It Is,spotify:artist:0mCK5i2RVWTwvL9ZXbzUP0,Michael Paynter,spotify:album:3d1nbPKqtPrVs8LCpZJcIw,Weary Stars (Digital Version),spotify:artist:0mCK5i2RVWTwvL9ZXbzUP0,Michael Paynter,2014-01-31,https://i.scdn.co/image/ab67616d0000b2735fa798885de72f3614c87dd6,1,1,207746,https://p.scdn.co/mp3-preview/eddd13dba29f26438bb13f3992f699d6ae454ec6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,TCABS1349676,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.506,0.948,3.0,-2.394,0.0,0.0609,0.0213,0.0,0.144,0.465,125.058,4.0,,Michael Paynter,"C 2013 Michael Paynter, P 2013 Michael Paynter",1940 +1941,spotify:track:3BOQOd4qPpdiwvqMQyh2Yg,Rockin' the Suburbs,spotify:artist:55tif8708yyDQlSjh3Trdu,Ben Folds,spotify:album:4FtOLTQqwnxpaABrJWYdBy,Rockin' The Suburbs,spotify:artist:55tif8708yyDQlSjh3Trdu,Ben Folds,2001-09-11,https://i.scdn.co/image/ab67616d0000b273d25c579ea362aeee960d0d6b,1,10,298533,https://p.scdn.co/mp3-preview/880a44c1bb3ed1c26786416b4a850a470d5ee5a0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,44,USSM10105169,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,piano rock",0.614,0.901,0.0,-4.906,1.0,0.0666,0.0267,1.94e-06,0.261,0.636,94.865,4.0,,Epic,P (P) 2001 Sony Music Entertainment Inc.,1941 +1942,spotify:track:5wQnmLuC1W7ATsArWACrgW,Welcome to the Black Parade,spotify:artist:7FBcuc1gsnv6Y1nwFtNRCb,My Chemical Romance,spotify:album:0FZK97MXMm5mUQ8mtudjuK,The Black Parade,spotify:artist:7FBcuc1gsnv6Y1nwFtNRCb,My Chemical Romance,2006-10-23,https://i.scdn.co/image/ab67616d0000b27317f77fab7e8f18d5f9fee4a1,1,5,311106,https://p.scdn.co/mp3-preview/1434f7350357c1d6a7eb7f5a84dd6d198a252ed1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USRE10602613,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop punk,pov: indie,rock",0.217,0.905,2.0,-4.103,1.0,0.0752,0.000289,0.00011,0.222,0.236,96.95,4.0,,Reprise,"C © 2006 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2006 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",1942 +1943,spotify:track:5CcM19gH1zYf9NGt3qb7RM,I Don't Know Anybody Else,spotify:artist:6tsRo8ErXzpHk3tQeH6GBW,Black Box,spotify:album:6r4vIr4aUsK00mGHDiQkrl,Dreamland,spotify:artist:6tsRo8ErXzpHk3tQeH6GBW,Black Box,1990,https://i.scdn.co/image/ab67616d0000b273ae03a889dd876866982b309a,1,2,273058,https://p.scdn.co/mp3-preview/f73a2ea040c6972d9f61f74699a725a709b4d7a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBCMX0609004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,hip house,italo house",0.706,0.88,0.0,-7.063,1.0,0.0576,0.0787,0.00795,0.0501,0.947,120.126,4.0,,Groove Groove Melody,"C © 1990 Groove Groove Melody SaS, P (P) 2006 Groove Groove Melody ltd.",1943 +1944,spotify:track:78AFEyCYyfFUZAGnaVSBCE,The Crunch,spotify:artist:7MDoXA8Kfykq3gkBkDBLtH,The Rah Band,spotify:album:7jRX2j18t3y27prsCvAJo7,The Crunch & Beyond,spotify:artist:7MDoXA8Kfykq3gkBkDBLtH,The Rah Band,1978,https://i.scdn.co/image/ab67616d0000b273e3eff9af1551d6b656550727,1,1,222680,https://p.scdn.co/mp3-preview/5a8643ac91b1ec060a9e07c9cd86a35243239b19?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBKSK0500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,brit funk,0.424,0.885,8.0,-6.155,1.0,0.0701,0.000795,0.804,0.0917,0.249,132.757,4.0,,Shocking Music,"C Toolboxx handelsgesellschaft mbh, P 1978 Shocking Music",1944 +1945,spotify:track:1OIMQNvlVZCzmCTmrJrd4F,Mother,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:6RmyxCarsn67C9zsZbfD2F,Takin' It Back (Deluxe),spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2023-03-10,https://i.scdn.co/image/ab67616d0000b2735185fc4c4be52d1ec8e8177e,1,1,147481,https://p.scdn.co/mp3-preview/53e508dcef3191d6b61472cffab4b0ea0a99f011?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM12300532,spotify:user:bradnumber1,2023-03-23T23:27:07Z,"hip pop,pop",0.75,0.659,9.0,-6.131,1.0,0.0928,0.124,0.0,0.46,0.765,120.043,4.0,,Epic,"P (P) 2023 Epic Records, a division of Sony Music Entertainment",1945 +1946,spotify:track:3ynR2mUDcU3LKfiW59n2hy,I'm Your Angel (with Céline Dion),"spotify:artist:2mxe0TnaNL039ysAj51xPQ, spotify:artist:4S9EykWXhStSc15wEx8QFK","R. Kelly, Céline Dion",spotify:album:5ruZPk2RxBoRzzwYswpXXs,The Essential R. Kelly,spotify:artist:2mxe0TnaNL039ysAj51xPQ,R. Kelly,2014-05-19,https://i.scdn.co/image/ab67616d0000b2733ef7d540c94263b3780b2669,1,17,289373,https://p.scdn.co/mp3-preview/e384f6e33428e1bf35adc5b767a0339433938987?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USJI19810442,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.636,0.507,0.0,-7.045,1.0,0.0295,0.664,0.0,0.371,0.258,112.695,4.0,,Jive/Legacy,"P This compilation (P) 2014 RCA Records, a division of Sony Music Entertainment",1946 +1947,spotify:track:4iJbPiaAz4BUDMlWzosfWJ,True Colors,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:7hV0YSxAQSng8H0zMR0HBf,...Hits,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1998-09-25,https://i.scdn.co/image/ab67616d0000b273c8860dfcdadefb529bf29757,1,2,273933,https://p.scdn.co/mp3-preview/c18d97b942b264a96a1bf75dc17f479158dd18c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWI19800020,spotify:user:bradnumber1,2023-10-17T23:17:10Z,"rock drums,soft rock",0.634,0.42,6.0,-10.365,1.0,0.0363,0.101,0.0016,0.0876,0.519,172.084,4.0,,Atlantic Records,"C 1998 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",1947 +1948,spotify:track:6pIZ0u32c2Lku8PmCWtnMy,King,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),spotify:album:0OPchq4bHgKDaJUBJFITgy,King,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),2015-01-11,https://i.scdn.co/image/ab67616d0000b27327730aba361badda4ef3a78b,1,1,213423,https://p.scdn.co/mp3-preview/ec290c814455a3dd06316c8465fab9c1a12a6e7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71406892,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gauze pop,pop,pop dance,uk pop",0.563,0.864,4.0,-4.066,0.0,0.0386,0.0585,0.0,0.419,0.439,119.964,4.0,,Universal Music Group,"C © 2015 Polydor Ltd. (UK), P ℗ 2015 Polydor Ltd. (UK)",1948 +1949,spotify:track:6epXs8efGlsdbMIfX8Olra,Summer Rain,spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,spotify:album:3fzHLg5RfRXzQlHlR4F7JG,Greatest Vol.1 - Belinda Carlisle,spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,1987,https://i.scdn.co/image/ab67616d0000b273e0f0aa947770fe74049dbba3,1,4,328813,https://p.scdn.co/mp3-preview/a60e31c9f29aaced8361446d233b29b84c1416a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBAAA8900123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock",0.72,0.839,5.0,-8.487,1.0,0.0315,0.0437,2.78e-06,0.111,0.941,128.862,4.0,,Crimson,"C (C) 2013 Demon Music Group Ltd., P (P) 1987 Artist Management Services Ltd.",1949 +1950,spotify:track:4x5JyXyK3ZjM7tXG7SctiV,Thunder in My Heart,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,spotify:album:3nX6AjxVENHpB3oTVxEH7S,Thunder In My Heart,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,1977,https://i.scdn.co/image/ab67616d0000b273b7b55618c50532a8fd0eac29,1,1,217720,https://p.scdn.co/mp3-preview/51ec844e346cf57885e7e4c46643326db6946a6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUWA01000543,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.695,0.846,9.0,-5.226,0.0,0.0514,0.00135,0.218,0.0909,0.514,128.932,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Ltd, P ℗ 1975 (Silverbird) Australia Pty Ltd under exclusive licence to Warner Music Australia Pty Ltd",1950 +1951,spotify:track:0ygoI3HcoGScxt879A23Uk,Don't Stop,spotify:artist:7jZM5w05mGhw6wTB1okhD9,ATB,spotify:album:4DfD9bqzlfSbEf5kWgufPk,Movin' Melodies,spotify:artist:7jZM5w05mGhw6wTB1okhD9,ATB,1999-04-26,https://i.scdn.co/image/ab67616d0000b27326971635f39cfc30b37ecf05,1,7,221160,https://p.scdn.co/mp3-preview/5ae6316c2b20ef6ce13363a78f7f0556ae8ca4c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,DEN060301023,spotify:user:bradnumber1,2023-11-28T13:21:38Z,"german dance,german techno,german trance,trance",0.711,0.937,10.0,-5.314,1.0,0.0351,0.146,0.763,0.324,0.57,134.21,4.0,,Kontor Records,"C 1999 Kontor Records GmbH, P 1999 Kontor Records GmbH",1951 +1952,spotify:track:4TfKbaR44TEVPICthnQZj0,One Day In Your Life - U.S. Album Version,spotify:artist:2siHvYaxjaW5rKVRiIrMYH,Anastacia,spotify:album:3zpeNCAL83WZvzQ1eOKpC8,Freak of Nature,spotify:artist:2siHvYaxjaW5rKVRiIrMYH,Anastacia,2001,https://i.scdn.co/image/ab67616d0000b2739ea9256350a5383d6b71ee78,1,5,229026,https://p.scdn.co/mp3-preview/dc79e42fb2312eb42ea5b1d2b80b0aea2199d268?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USSM10202327,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop soul,0.637,0.889,6.0,-2.586,0.0,0.0403,0.033,0.0,0.0597,0.598,118.934,4.0,,Epic/Daylight,"P (P) 2001, 2002 Sony Music Entertainment Inc.",1952 +1953,spotify:track:6GGTydVsKQcFOOrqO71SLG,Funky Town,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,spotify:album:0om5TTowoRq6YWMWJirWGe,The Essential,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,2008-01-01,https://i.scdn.co/image/ab67616d0000b273127a89bad0a3cb904749ced3,1,1,294786,https://p.scdn.co/mp3-preview/8ae0eee4f638925aab590530797042d6a14afa86?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUEM08600002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,dance rock,synthpop",0.667,0.713,9.0,-7.906,1.0,0.0336,0.123,0.000431,0.227,0.873,128.032,4.0,,EMI Music Australia,"C © 2008 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2008 EMI Recorded Music Australia Pty Ltd.",1953 +1954,spotify:track:6y4HksqJ8qGipgsDxvlb2u,Die Young,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:4XTCTeiJNvZYqYdluoKbA8,Die Young,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2019-10-18,https://i.scdn.co/image/ab67616d0000b27380da6d3d0a0d44e3b7082343,1,1,235500,https://p.scdn.co/mp3-preview/f3e02582b312f5ea769b57136d9a596d74ec0da4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUIYA1900004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.573,0.791,2.0,-5.332,1.0,0.0519,0.232,0.0,0.175,0.283,119.976,4.0,,Empire Of Song,"C 2019 Empire Of Song (Australia) Pty Ltd, P 2019 Empire Of Song (Australia) Pty Ltd",1954 +1955,spotify:track:1qRA5BS78u3gME0loMl9AA,For What It's Worth,spotify:artist:3eskO5m0H4yiF64vRySBjr,Buffalo Springfield,spotify:album:3PkdGRruLnJ9zCtANiDrpB,Buffalo Springfield,spotify:artist:3eskO5m0H4yiF64vRySBjr,Buffalo Springfield,1966-12-05,https://i.scdn.co/image/ab67616d0000b273d231bd1716b71b6444e25f89,1,1,153693,https://p.scdn.co/mp3-preview/53ab746c37c717c20f793598064b7f720877b646?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USEE10170607,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,folk,folk rock,mellow gold,psychedelic rock,rock,soft rock,southern rock",0.653,0.519,2.0,-10.164,1.0,0.0497,0.406,0.0209,0.101,0.822,98.883,4.0,,Rhino/Elektra,"C © 1966 Atco Records, a division of Atlantic Recording Corp., a Warner Music Group Company, P ℗ 1966 Atco Records, a division of Atlantic Recording Corp., a Warner Music Group Company",1955 +1956,spotify:track:6Ct1AsE9oTWUg1rmvIWJKM,Let's Get It Started - Spike Mix,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:5zu6TWUkjK4kaa9Nu4Tjec,Let's Get It Started,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2004-01-01,https://i.scdn.co/image/ab67616d0000b273a70ca1e24812ade2446e6b12,1,1,217733,https://p.scdn.co/mp3-preview/cc58c9e108346e632a8232a5d809e50090a70289?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USIR10400364,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.785,0.799,11.0,-2.208,0.0,0.124,0.117,0.0,0.292,0.798,104.962,4.0,,A&M,"C © 2004 A&M Records, P ℗ 2004 A&M Records",1956 +1957,spotify:track:2v8B8d17Xxu9uLU5sNiHSL,Delilah,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,spotify:album:0CMD71ge42KYLaPZVor3bp,Delilah,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,1968-01-01,https://i.scdn.co/image/ab67616d0000b273aca45b9b634ffaa918c191a4,1,1,204160,https://p.scdn.co/mp3-preview/9463243ea6b7d046dceb0b587377e89315e35dd6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBF076820060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion",0.528,0.482,9.0,-10.939,0.0,0.027,0.609,0.0,0.549,0.788,95.82,1.0,,Decca Music Group Ltd.,"C © 1986 Decca Music Group Limited, P ℗ 1968 Decca Music Group Limited",1957 +1958,spotify:track:3oiMJQAWVaxSubJ7b2VUtX,Fancy,"spotify:artist:5yG7ZAZafVaAlMTeBybKAL, spotify:artist:25uiPmTg16RbhZWAqwLBy5","Iggy Azalea, Charli xcx",spotify:album:5kfo2COwQYeYR3cE69aSgx,The New Classic (Deluxe Version),spotify:artist:5yG7ZAZafVaAlMTeBybKAL,Iggy Azalea,2014-01-01,https://i.scdn.co/image/ab67616d0000b273b1c6cf12c9fb4f9014b711ba,1,5,199938,https://p.scdn.co/mp3-preview/077ffd490b5c65dfdcdc9d77b2a4cb607a8563b9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,GBUM71400597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,dance pop,pop,art pop,candy pop,metropopolis,pop,uk pop",0.912,0.716,10.0,-4.141,0.0,0.0698,0.0904,0.0,0.0491,0.377,94.981,4.0,,EMI,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",1958 +1959,spotify:track:3x4yV0hW5Ve3TKhFkXSqFn,If You Had My Love,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:3Gby5NNeNYkMgAnrtEA3lc,On The 6,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,1999-06-01,https://i.scdn.co/image/ab67616d0000b2735c34d7a87663652675cf3264,1,1,266000,https://p.scdn.co/mp3-preview/66b2949eb1130ee08d723e46f1f8b12b13dab4c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM19900608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.68,0.625,11.0,-7.0,0.0,0.0353,0.0645,5.81e-05,0.109,0.814,94.02,4.0,,Work,"P (P) 1999 Epic Records, a division of Sony Music Entertainment",1959 +1960,spotify:track:6qOZv8Yk2A9E7nWqp0ogs7,"Forgiven, Not Forgotten",spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,spotify:album:4acB71ZhsfYGdTdqdbpzLK,"Forgiven, Not Forgotten",spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,1995-09-26,https://i.scdn.co/image/ab67616d0000b2737ab47a9a8416c1828d4d14e6,1,2,255573,https://p.scdn.co/mp3-preview/3f0054e53a0b50a405274708df412271eadde0c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USAT20002747,spotify:user:bradnumber1,2022-01-13T01:21:01Z,"celtic rock,europop,pop rock",0.607,0.542,7.0,-8.227,1.0,0.0291,0.137,0.000423,0.0734,0.641,90.517,4.0,,WM UK,"C © 1995 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1995 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",1960 +1961,spotify:track:5kr90kavZCFmPhzk338xrX,What You Get Is What You See,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,spotify:album:1C9kaOfbTQ9dxYM4E2Yju2,Break Every Rule,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,1986-09-05,https://i.scdn.co/image/ab67616d0000b273642b5e9d9636c51504d5efe2,1,2,271533,https://p.scdn.co/mp3-preview/3176674a898590bec7b0d18ad8682fcd2eb6110d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USCA28600045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.623,0.628,5.0,-10.253,1.0,0.0349,0.0153,0.0229,0.244,0.93,156.292,4.0,,Parlophone UK,"C © 1986 Parlophone Records Ltd, P ℗ 1986 Parlophone Records Ltd. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Parlophone Records Ltd,",1961 +1962,spotify:track:1LLeTW6OzPgAY0YFIVnXUg,Wish You Were Here,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:6PmGlL9KcHSl1jDbGalh1B,Child Of The Universe (Deluxe Edition),spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2012-10-26,https://i.scdn.co/image/ab67616d0000b2736a7241d9a4ac30b00ce5264a,1,3,276853,https://p.scdn.co/mp3-preview/2fb3cce9262a9cca2c5bc9df17b66200fb115110?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUBM01200093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.489,0.472,2.0,-4.797,1.0,0.0259,0.779,0.0,0.16,0.363,104.977,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertaiinment Australia Pty Ltd./(P) 2012 Sony Music Entertainment Australia Pty Ltd.,1962 +1963,spotify:track:3NVfe7Iqz2mk5hqJSGPVNs,I Wanna Be A Hippy,spotify:artist:3iPZvuMeJKouwPtkY2oRAZ,Technohead,spotify:album:6E7IEApUPrl9hyWmE2Mdno,Happy Hardcore Top 100,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-05-17,https://i.scdn.co/image/ab67616d0000b273bfc79018e9b91f536107d409,1,1,196231,https://p.scdn.co/mp3-preview/563793c2164adbcc2eaf627c0335d7c21565e6d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,NLA329505840,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gabber,happy hardcore,hardcore techno",0.702,0.947,8.0,-4.032,1.0,0.0537,0.131,0.63,0.112,0.417,177.383,4.0,,Cloud 9 Music,"C 2010 Cloud 9 Music, P 2010 Cloud 9 Music",1963 +1964,spotify:track:4OVFkPYP6T8IARtkeMsx3p,Thank You,spotify:artist:2l35CQqtYRh3d8ZIiBep4v,MKTO,spotify:album:6hcPm6dCD58O5UI6xv019r,MKTO,spotify:artist:2l35CQqtYRh3d8ZIiBep4v,MKTO,2014,https://i.scdn.co/image/ab67616d0000b2737b31a5efb42a0cc696369c3a,1,1,229880,https://p.scdn.co/mp3-preview/4dd8c130116b11512ddaf88403f4fa7a7c40f259?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM11204962,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.65,0.943,11.0,-4.751,1.0,0.0692,0.0171,0.0,0.15,0.8,126.008,4.0,,Columbia/M2V,"P (P) 2012, 2013 Columbia Records, a Division of Sony Music Entertainment",1964 +1965,spotify:track:1kuZSCuFZh718pUEMhgfSs,Try Again,spotify:artist:0urTpYCsixqZwgNTkPJOJ4,Aaliyah,spotify:album:7AFeHhDXLlRioqZsfhOb97,R&B Divas,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b2737632ebc5a5e3a8eda112d2bc,1,6,284360,https://p.scdn.co/mp3-preview/1d433505cd6550161597585ac0fed990830c1daf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USVI20000708,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,hip pop,r&b,urban contemporary",0.783,0.58,6.0,-7.398,0.0,0.298,0.0817,0.0,0.0831,0.762,93.026,4.0,,Universal Music Group International,"C © 2007 Universal Music International Ltd., P This Compilation ℗ 2007 Universal Music International Ltd.",1965 +1966,spotify:track:26g8bCaVhcv0KkBi5SlEg7,Don't Leave Me This Way (with Sarah Jane Morris),"spotify:artist:17U2ImH5IyYMvjkCfPhMHT, spotify:artist:7g6rQ236kj9vrXWdGyiC8o","The Communards, Sarah Jane Morris",spotify:album:1tLHfZGM9lKYjxYAYm45vT,Communards,spotify:artist:17U2ImH5IyYMvjkCfPhMHT,The Communards,1997,https://i.scdn.co/image/ab67616d0000b273c8f34ccb7ef94fae757904da,1,1,260946,https://p.scdn.co/mp3-preview/ae5ba1471b04d63a8d7f8c3dd710c8eeeb010f25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBANP8600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hi-nrg,new romantic,new wave pop,sophisti-pop,synthpop,british soul,italian lounge",0.654,0.915,3.0,-6.254,1.0,0.0315,0.218,0.0,0.11,0.916,131.942,4.0,,Rhino,"C 2000 V2 to V3 Conversion - Default C Credit., P 1997 This compilation: 1997 London Records 90 Ltd",1966 +1967,spotify:track:1dnTCv6qA3Abg5LgAd753N,Whatever We Want,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,spotify:album:7FCTvViX8KztDu9afvojxj,Whatever We Want,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,2014-01-01,https://i.scdn.co/image/ab67616d0000b2730367b738d70011fa5049ae7f,1,1,207180,https://p.scdn.co/mp3-preview/b20da5a6684d55f98f642d7214f475d23206e6db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71400347,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.626,0.82,1.0,-4.506,1.0,0.07,0.0062,1.4e-06,0.129,0.476,128.023,4.0,,Universal Music Group,"C © 2014 Island Records Australia / Universal Music Australia, P ℗ 2014 Island Records Australia / Universal Music Australia",1967 +1968,spotify:track:1hcMfYTsRTC4hIKbfosxjz,I Can Hear Music,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:2vFDenbFedYVMOwDqTiw82,20/20 (Remastered),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1969-02-10,https://i.scdn.co/image/ab67616d0000b27300342f9f40e80ee0440c954d,1,2,157293,https://p.scdn.co/mp3-preview/a5593a3daa0d34520e6441439281adbb4d2b12a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USCA20100318,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.511,0.605,2.0,-7.636,1.0,0.028,0.0381,1.78e-06,0.142,0.684,128.333,4.0,,Capitol Records,"C © 1969 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",1968 +1969,spotify:track:1bPqAXwNiVcM6zjJU1Z4Cd,What's Left Of Me,spotify:artist:6ewMqjrF31lC8ywRsvm073,Nick Lachey,spotify:album:0fBnFYNzbSXrXs6bRfZ7La,What's Left Of Me,spotify:artist:6ewMqjrF31lC8ywRsvm073,Nick Lachey,2006-01-01,https://i.scdn.co/image/ab67616d0000b2736cb1516a85ff50124b1ba9a1,1,1,244666,https://p.scdn.co/mp3-preview/0395cb927d98b28059ebfaeed9e12fc70f3e1c77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USJI10600023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"idol,post-teen pop",0.421,0.728,7.0,-5.644,1.0,0.035,0.136,0.0,0.136,0.311,150.12,4.0,,Jive,P (P) 2006 Zomba Recording LLC,1969 +1970,spotify:track:2wqXDTsbW8Rm6LFE9FAKBE,Kiss My Fat Ass,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:2VCWMx50dYZqX9WptIrg90,Kiss My Fat Ass,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2019-07-26,https://i.scdn.co/image/ab67616d0000b273591a2c95af992f0c8c1750b8,1,1,175950,https://p.scdn.co/mp3-preview/fabca6f9c1d6f797c8aa6db60b2ec944a6437ddd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUIYA1900003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.926,0.766,2.0,-4.774,0.0,0.182,0.268,2.03e-06,0.074,0.741,139.958,4.0,,Empire Of Song,"C 2019 Empire Of Song (Australia) Pty Ltd, P 2019 Empire Of Song (Australia) Pty Ltd",1970 +1971,spotify:track:2NniAhAtkRACaMeYt48xlD,50 Ways to Say Goodbye,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:5zseibu9WEsPaZmkJUMkz1,California 37,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2012-04-17,https://i.scdn.co/image/ab67616d0000b273bde344cc54eedc35050f4c61,1,5,247946,https://p.scdn.co/mp3-preview/859a26b5e46ac6ddc3e0f8d01fbb3159e3a6afe9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USSM11201533,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.591,0.935,6.0,-2.664,1.0,0.0478,0.000284,0.000278,0.142,0.736,140.043,4.0,,Columbia,"P (P) 2012 Columbia Records, a Division of Sony Music Entertainment",1971 +1972,spotify:track:3AfT3nmctE9nlndrFgshXH,Hurt,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:6v8bG4qgPgS1YR6TRSBlAZ,Keeps Gettin' Better: A Decade Of Hits,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2008-11-07,https://i.scdn.co/image/ab67616d0000b27325956d8daeb0d6ec51958ad8,1,12,243626,https://p.scdn.co/mp3-preview/78955a2a5a8f588d29a5aa4f0a9e5d58c075b2cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10600420,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.254,0.285,4.0,-7.112,0.0,0.0382,0.769,0.0,0.0997,0.101,74.858,4.0,,RCA Records Label,"P (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",1972 +1973,spotify:track:3jgvZOgkbonsOKESHpxd8j,With Or Without You,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:2gKxc9XphKyPDjfKSZ1ULT,The Joshua Tree,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1987-03-10,https://i.scdn.co/image/ab67616d0000b273dd6e3e4da297c33f3a8edb74,1,3,296160,https://p.scdn.co/mp3-preview/a7e5de3437eecf201cc1817a7b2d8fae96910199?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8790003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.533,0.362,2.0,-14.712,1.0,0.0292,0.000174,0.156,0.14,0.0913,109.918,4.0,,Universal Music Ltd.,"C (C) 1987 Universal-Island Records Ltd., under exclusive licence to Mercury Records Limited, P (P) 1987 Universal-Island Records Ltd., under exclusive licence to Mercury Records Limited",1973 +1974,spotify:track:33aYzW5ToRjiFOzkubeJ8H,Rave On,"spotify:artist:3wYyutjgII8LJVVOLrGI0D, spotify:artist:4r7JUeiYy24L7BuzCq9EjR","Buddy Holly, The Crickets",spotify:album:4Qy0SOU9Jg7Td10K68SanP,Buddy Holly,spotify:artist:3wYyutjgII8LJVVOLrGI0D,Buddy Holly,1958,https://i.scdn.co/image/ab67616d0000b27358816b5b546bdc2c0e7f6416,1,11,109960,https://p.scdn.co/mp3-preview/0db97185e2749555e5b44f69a6819353c29e1860?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USMC15804202,spotify:user:bradnumber1,2022-01-12T23:08:55Z,"classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,doo-wop,rock-and-roll,rockabilly",0.566,0.711,0.0,-6.536,1.0,0.0335,0.611,6.59e-06,0.417,0.961,159.629,4.0,,Geffen,"C © 1958 UMG Recordings Inc., P This Compilation ℗ 2015 UMG Recordings Inc.",1974 +1975,spotify:track:6Aqq1e1QbkhEBWixOVKZhS,Love Is A War,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:5o8IrQOjfnuWNpQtzvZEOP,The Sound Of Drums,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2003,https://i.scdn.co/image/ab67616d0000b273ebec5ce374c862d77327d614,2,9,213160,https://p.scdn.co/mp3-preview/540a9602f145fbf7110fa041bd8ce136b2a3e0ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,AUBM00900395,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.55,0.961,1.0,-3.04,1.0,0.252,0.117,1.39e-06,0.823,0.604,167.084,4.0,,Sony Music Entertainment,"P (P) 2011 Sony Music Entertainment Australia Pty Ltd. except tracks 2 & 9 (P) 2010 & (P) 2009, and tracks/(P) 2011 Sony Music Entertainment Australia Pty Ltd. except tracks 2 & 9 (P) 2010 & (P) 2009, and tracks 10, 13 & 14 (P) 2003 Vicious Recordings Pty Ltd Australia",1975 +1976,spotify:track:1Cwsd5xI8CajJz795oy4XF,You Get What You Give,spotify:artist:0Grjlu7ncIuCaSYvCs9fcd,New Radicals,spotify:album:13btXEnBerpA1UjIVtsMAR,Maybe You've Been Brainwashed Too,spotify:artist:0Grjlu7ncIuCaSYvCs9fcd,New Radicals,1998-01-01,https://i.scdn.co/image/ab67616d0000b273dfdedd4553b40bbaab342dae,1,2,300773,https://p.scdn.co/mp3-preview/f60a92f1f0759c66eb1092cd6cd09aab791a6518?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USMC19858327,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.621,0.901,2.0,-5.396,1.0,0.0302,0.17,0.0,0.0875,0.744,113.967,4.0,,Geffen*,"C © 1998 MCA Records Inc., P ℗ 1998 UMG Recordings, Inc.",1976 +1977,spotify:track:6j7hih15xG2cdYwIJnQXsq,Not Over You,spotify:artist:5DYAABs8rkY9VhwtENoQCz,Gavin DeGraw,spotify:album:2zVRgW8bXd7ukXRZSWw81j,Sweeter,spotify:artist:5DYAABs8rkY9VhwtENoQCz,Gavin DeGraw,2011-09-16,https://i.scdn.co/image/ab67616d0000b2736b3b5436a48203e35b89b9ba,1,2,218520,https://p.scdn.co/mp3-preview/c50e9e69a40b94eb9d6782d913a07c20908ae5b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USJAY1100058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock",0.63,0.894,10.0,-4.592,1.0,0.0544,0.255,0.0,0.181,0.364,142.051,4.0,,RCA Records Label,"P (P) 2011 RCA Records, a unit of Sony Music Entertainment",1977 +1978,spotify:track:4xM0gsCMlR4gMF2AravjsX,Fall For You,spotify:artist:6eouuqqGggqDlYRV63cgPo,Secondhand Serenade,spotify:album:7JNNW8vlkioQfEqoWp8oVa,A Twist In My Story,spotify:artist:6eouuqqGggqDlYRV63cgPo,Secondhand Serenade,2008-11-08,https://i.scdn.co/image/ab67616d0000b27316c6728b9b3a9ef1ded81884,1,2,183600,https://p.scdn.co/mp3-preview/07b5cac66cb7ade615aa7f8a4e0b01392c64be43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USYAH0700007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neon pop punk,piano rock,pixie,pop punk",0.386,0.455,0.0,-6.876,1.0,0.0332,0.166,0.0,0.0789,0.399,169.606,4.0,,Liberator Music,"C 2008 2008 Glassnote Entertainment Group LLC, P 2008 2008 Glassnote Entertainment Group LLC",1978 +1979,spotify:track:1xWkmg9faCFP3Yi9gJZ3fv,Flame Trees - 2011 Remastered,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:6e4KsdmmPC1cDEXkeRDOWD,The Best Of Cold Chisel - All For You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-01-01,https://i.scdn.co/image/ab67616d0000b2732b1f3b26bc11dc9f339ad4a3,1,2,264373,https://p.scdn.co/mp3-preview/536af8afcaa87e270e1ecbbd5c81c9e0868f7c1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUU741100130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.674,0.661,4.0,-4.419,1.0,0.0325,0.0279,0.0,0.0951,0.628,120.353,4.0,,Cold Chisel,"C © 2011 Cold Chisel Pty Ltd, P This Compilation ℗ 2011 Cold Chisel Pty Ltd",1979 +1980,spotify:track:23TTMvzv5YRjBPbXcKboAo,Let's Dance - 2019 Remaster,spotify:artist:5KEG7G8LDYlHgFDqZyEEs2,Chris Rea,spotify:album:5tR0alqUd1KMW37vPnsOC4,"Dancing with Strangers (Deluxe Edition, 2019 Remaster)",spotify:artist:5KEG7G8LDYlHgFDqZyEEs2,Chris Rea,1987-08-02,https://i.scdn.co/image/ab67616d0000b273efd8734b76a66f4dd36b88f7,1,6,247333,https://p.scdn.co/mp3-preview/7cf71d113adaa8837dcba04b901008f6f1cd6ae1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBAHS1900152,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"soft rock,sophisti-pop",0.635,0.602,2.0,-8.993,1.0,0.0279,0.128,0.496,0.0449,0.899,161.63,4.0,,Rhino,"C © 2019 Magnet Records Ltd, a Warner Music Group Company, P ℗ 2019 Magnet Records Ltd, a Warner Music Group Company",1980 +1981,spotify:track:69DUJJ9xWtS12GOWDSq4XW,Kiss You All Over,spotify:artist:2tUGlReCZRMoRgl0IS79i3,No Mercy,spotify:album:5CQHiljabLGvn72iQk0wsZ,My Promise,spotify:artist:2tUGlReCZRMoRgl0IS79i3,No Mercy,1996-10-05,https://i.scdn.co/image/ab67616d0000b27343e57c8b3faab1b58e3a161b,1,2,274400,https://p.scdn.co/mp3-preview/12d3d4c4326f866f71def0952892745e151daa11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,DED169600130,spotify:user:bradnumber1,2023-01-31T06:36:29Z,"boy band,eurodance",0.655,0.823,2.0,-10.03,1.0,0.0357,0.0276,0.00196,0.0578,0.768,110.924,4.0,,MCI,P (P) 1996 MCI,1981 +1982,spotify:track:3j1fs2X0ibiihnM4Fd4A2D,You Make Me Feel (Mighty Real),spotify:artist:5TGTpu4g8siFOIctZuQO7y,Sylvester,spotify:album:0yltJZ7nTGw97P0Fm7VhX8,Step II,spotify:artist:5TGTpu4g8siFOIctZuQO7y,Sylvester,1978,https://i.scdn.co/image/ab67616d0000b27385ec5c6768d2f1f8cb15c2c2,1,1,395573,https://p.scdn.co/mp3-preview/fd9a9ab4f76df58b59672c8340f9c8dfb4bb17f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USFI87800059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg",0.642,0.806,10.0,-12.973,1.0,0.032,0.0455,0.314,0.0498,0.962,131.577,4.0,,Fantasy Records,"C © 2009 Concord Music Group, Inc., P ℗ 2009 Concord Music Group, Inc.",1982 +1983,spotify:track:7d73fiTD3XUmg7GGm6bNV8,Faded,spotify:artist:7Irt8Qpa5LLDNlkO2TPQyZ,Kate DeAraugo,spotify:album:1nhhmd5877bj2LfKxZEMkK,A Place I've Never Been,spotify:artist:7Irt8Qpa5LLDNlkO2TPQyZ,Kate DeAraugo,2005-12-11,https://i.scdn.co/image/ab67616d0000b273ac57e052fcfa548a813e5402,1,1,210746,https://p.scdn.co/mp3-preview/f56374ad1694b528e7df528de1bb353a3c48b2fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUBM00599648,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.548,0.923,9.0,-4.066,1.0,0.0324,0.000435,0.00393,0.303,0.492,106.019,4.0,,Sony BMG Music Entertainment,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,1983 +1984,spotify:track:00LfFm08VWeZwB0Zlm24AT,Suga Suga,"spotify:artist:12PSlydMSjEHzSCj9X5qv7, spotify:artist:3sMYEBy0CZFxedcnm9i9hf","Baby Bash, Frankie J",spotify:album:2bAkYizbM1rMbOUHpfAV9z,Tha Smokin' Nephew,spotify:artist:12PSlydMSjEHzSCj9X5qv7,Baby Bash,2003-01-01,https://i.scdn.co/image/ab67616d0000b273e55dcb833dcd3ec2cfefab97,1,1,239026,https://p.scdn.co/mp3-preview/cdb8a4d89f6ebb2f5db5033c0cf0c569f8ec7ddd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR10300765,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicano rap,latin hip hop,pop rap,southern hip hop,texas latin rap,urban contemporary,hip pop,pop rap,southern hip hop,urban contemporary",0.662,0.748,5.0,-3.041,0.0,0.268,0.688,8.43e-06,0.0841,0.535,82.331,4.0,,Universal Records,"C © 2003 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2003 Universal Records, a Division of UMG Recordings, Inc.",1984 +1985,spotify:track:61YVePe2eUsWMY3YS0iqCT,When Something Is Wrong With My Baby,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:1yYliv1UwU2buW9tDjprJM,Soul Deep,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1991,https://i.scdn.co/image/ab67616d0000b2733d7307a68b73fb121005f912,1,3,295933,https://p.scdn.co/mp3-preview/e293bd6475dc71486a1bbe6ce1edf68c2e17e11a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00402990,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.409,0.58,1.0,-9.689,1.0,0.0369,0.0174,1.02e-05,0.0415,0.439,100.938,3.0,,Bloodlines,"C 1991 Bloodlines, P 1991 Bloodlines",1985 +1986,spotify:track:1kxyZ2SpflM1ogD0B5hgfX,Can't Believe It (feat. Pitbull),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:0TnOYISbd1XYRBk9myaseg","Flo Rida, Pitbull",spotify:album:2HJfdBrLcmqKFrdNEFXnyn,Can't Believe It (feat. Pitbull),spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2013-07-29,https://i.scdn.co/image/ab67616d0000b273298b2a8b04fae7951939294f,1,1,223203,https://p.scdn.co/mp3-preview/4912dc8da6525a6c5bfc3276fea8bb5d804ba69c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAT21301864,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,dance pop,miami hip hop,pop",0.747,0.83,9.0,-5.426,1.0,0.0899,0.0214,0.00024,0.0639,0.64,123.988,4.0,,Poe Boy/Atlantic,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",1986 +1987,spotify:track:1IDQQo4AbWYgwbxESIn5xZ,Jump (feat. Nelly Furtado),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:2jw70GZXlAI8QzWeY2bgRc","Flo Rida, Nelly Furtado",spotify:album:4TjIFwqydSLXrDlm9RzQ6b,R.O.O.T.S. (Route of Overcoming the Struggle),spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2009-03-23,https://i.scdn.co/image/ab67616d0000b2739c3cb61727d66803558f6815,1,2,208920,https://p.scdn.co/mp3-preview/e829c2b8a3e1fecd7ae0523cb770a6a2fc5b0d83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USAT20900453,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,canadian latin,canadian pop,dance pop,pop",0.731,0.813,6.0,-7.366,0.0,0.065,0.00439,3.5e-06,0.26,0.497,130.028,4.0,,Poe Boy/Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",1987 +1988,spotify:track:6s0NHplywwr1IjnQpUpWJk,Bad To The Bone,spotify:artist:4n31svBA9GGIYxGxgrQaRK,George Thorogood & The Destroyers,spotify:album:2YeoeDa3soxjD4ANZGG1fj,BAD TO THE BONE,spotify:artist:4n31svBA9GGIYxGxgrQaRK,George Thorogood & The Destroyers,1982-01-01,https://i.scdn.co/image/ab67616d0000b273ff4db4dae0252068fc3db08f,1,6,292173,https://p.scdn.co/mp3-preview/1bd80fc6ad97bcf3ebe998ce1ad907334c4a2442?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USEM38500069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,hard rock,heartland rock,mellow gold,rock",0.459,0.727,0.0,-11.777,1.0,0.0303,0.00614,0.0652,0.384,0.955,149.231,1.0,,EMI/EMI Records (USA),"C © 1982 EMI Catalog, P ℗ 1982 Capitol Records, LLC",1988 +1989,spotify:track:0v1x6rN6JHRapa03JElljE,Dynamite,spotify:artist:3Nrfpe0tUJi4K4DXYWgMUX,BTS,spotify:album:3zWmE5c3alhuoPLphxjMVd,Dynamite,spotify:artist:3Nrfpe0tUJi4K4DXYWgMUX,BTS,2020-08-21,https://i.scdn.co/image/ab67616d0000b2732f86d9710377e63bfbc82ba8,1,1,199053,https://p.scdn.co/mp3-preview/98e266fea9df84fa3e5ca84934c513211e89489b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM7282022872,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"k-pop,k-pop boy group,pop",0.746,0.765,6.0,-4.41,0.0,0.0993,0.0112,0.0,0.0936,0.737,114.044,4.0,,2020 BigHit Entertainment,"C (C) 2020 BigHit Entertainment, P (P) 2020 BigHit Entertainment",1989 +1990,spotify:track:2eRmD96ncTEgQwJmXa6rrg,Teardrops,spotify:artist:7qShKycqNUP0GLEiTENDVZ,Womack & Womack,spotify:album:6eQ7vSfXNxJWeLUFeqKt4A,80s Soul - International Version,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2001-01-01,https://i.scdn.co/image/ab67616d0000b2735bd4875fea21e8f2819835d0,1,13,228573,https://p.scdn.co/mp3-preview/bf83238c8be84d484da89bccd652faac6ed7903d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USIR28800378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.872,0.718,11.0,-10.182,1.0,0.0466,0.0875,0.07,0.177,0.967,133.224,4.0,,Universal Music Group International,"C © 2001 Universal Music International, P This Compilation ℗ 2001 Universal Music International",1990 +1991,spotify:track:1sUTfgduT0WIQO8kXKXxLC,"Blaze Of Glory - From ""Young Guns II"" Soundtrack",spotify:artist:6h2bWHWTJL38N8dqocVaif,Jon Bon Jovi,spotify:album:5QsPmoN7UK8tL5NRtSuC2Y,Blaze Of Glory,spotify:artist:6h2bWHWTJL38N8dqocVaif,Jon Bon Jovi,1990-01-01,https://i.scdn.co/image/ab67616d0000b273573737443786e4aed4c3cff7,1,3,335240,https://p.scdn.co/mp3-preview/fd57d8811b414f4f05555573bbe5f61f39bf148b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USPG19090003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hard rock,0.55,0.618,7.0,-9.822,1.0,0.0307,0.0564,2.62e-05,0.0937,0.429,78.61,4.0,,Island Records,"C © 1990 The Island Def Jam Music Group, P ℗ 1990 The Island Def Jam Music Group",1991 +1992,spotify:track:0Uvj2JI5aQnueft9MJdNbw,Twisting By The Pool,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,spotify:album:2BPgOlvV3aTHJ7av8LhGn5,Sultans Of Swing - The Very Best Of Dire Straits,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,1998-11-10,https://i.scdn.co/image/ab67616d0000b2734bd5401f50d53893f222d3f7,1,6,211733,https://p.scdn.co/mp3-preview/0d45f2be7a8f8dbe2230cafb367ebba585bd3759?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF087900668,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock",0.511,0.924,9.0,-6.869,1.0,0.0431,0.381,0.0,0.272,0.961,181.972,4.0,,Universal Music Group,"C © 1998 Mercury Records Limited, P ℗ 1998 Mercury Records Limited",1992 +1993,spotify:track:4Hgn5GBgk7EQGIEwGoZorQ,Down,spotify:artist:1xHQO9GJIW9OXHxGBISYc5,Marian Hill,spotify:album:5VDyPl4EXuORj7StAzLedU,ACT ONE,spotify:artist:1xHQO9GJIW9OXHxGBISYc5,Marian Hill,2016-06-24,https://i.scdn.co/image/ab67616d0000b273a3495414e31c0da5aa2b2d23,1,1,197773,https://p.scdn.co/mp3-preview/95c3e71e77c2b8429a91c24abf47dc54a2694f4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71601627,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electropop,0.599,0.352,5.0,-14.693,1.0,0.255,0.69,0.00413,0.125,0.0598,84.968,4.0,,Universal Music Group,"C © 2016 Republic Records, a Division of UMG Recordings, Inc.(Photo Finish), P ℗ 2016 Republic Records, a Division of UMG Recordings, Inc.(Photo Finish)",1993 +1994,spotify:track:78Mxt04WkjqX7glj314AvT,Learning To Fly - 2011 Remastered Version,spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,spotify:album:2hhnkKQp2zvG4UAvpasq4h,The Best Of Pink Floyd: A Foot In The Door (2011 Remastered Version),spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,1987,https://i.scdn.co/image/ab67616d0000b273968ae3abb5a2c9ca10dc729c,1,12,290120,https://p.scdn.co/mp3-preview/169e590ad688dd85c9e73be1760a9caccd5be19d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBN9X1100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,progressive rock,psychedelic rock,rock,symphonic rock",0.439,0.472,0.0,-17.222,1.0,0.0346,0.332,0.0276,0.245,0.54,166.27,4.0,,Pink Floyd Records,"C © 2016 Pink Floyd Music Ltd. / Pink Floyd (1987) Ltd., P ℗ 2016 Pink Floyd Music Ltd. / Pink Floyd (1987) Ltd., marketed and distributed by Parlophone Records Ltd., a Warner Music Group Company",1994 +1995,spotify:track:1Io2c7n2X482pub65MOZPG,La La La,"spotify:artist:1bT7m67vi78r2oqvxrP3X5, spotify:artist:2wY79sveU1sp5g7SokKOiI","Naughty Boy, Sam Smith",spotify:album:0iQm7rOF77SidB8qdC2cbp,Hotel Cabana,spotify:artist:1bT7m67vi78r2oqvxrP3X5,Naughty Boy,2013-01-01,https://i.scdn.co/image/ab67616d0000b27360ae59e2c21633f7ea171a6a,1,7,222200,https://p.scdn.co/mp3-preview/8b702dfb527fc42e0414cd0afc9190bc54c14b35?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAA1300148,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"uk contemporary r&b,pop,uk pop",0.772,0.644,6.0,-5.204,0.0,0.0312,0.11,0.0,0.0905,0.256,125.088,4.0,,Universal Music Group,"C © 2013 Naughty Boy Recordings Ltd, under exclusive licence to Virgin Records Ltd, P ℗ 2013 Naughty Boy Recordings Ltd, under exclusive licence to Virgin Records Ltd",1995 +1996,spotify:track:5ivF4eQBqJiVL5IAE9jRyl,I Won't Give Up,spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,spotify:album:7oD9oCCtFhg5RoLtMR5TKl,Love Is a Four Letter Word,spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,2012-04-13,https://i.scdn.co/image/ab67616d0000b2733f1ceb305415a090c0885986,1,4,240165,https://p.scdn.co/mp3-preview/3df95d1edb89637d4aadce58fcb7c3cc6fc665d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USEE11100768,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,dance pop,neo mellow,pop",0.483,0.303,4.0,-10.058,1.0,0.0429,0.694,0.0,0.115,0.139,133.406,3.0,,Atlantic Records,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",1996 +1997,spotify:track:4Sib57MmYGJzSvkW84jTwh,ME! (feat. Brendon Urie of Panic! At The Disco),"spotify:artist:06HL4z0CvFAxyc27GXpf02, spotify:artist:6eYFryfcEu3QSq59D62wZQ","Taylor Swift, Brendon Urie",spotify:album:0WGakTFs8cnggcYsHjIhgy,ME!,"spotify:artist:06HL4z0CvFAxyc27GXpf02, spotify:artist:6eYFryfcEu3QSq59D62wZQ, spotify:artist:20JZFwl6HVl6yg8a4H3ZqK","Taylor Swift, Brendon Urie, Panic! At The Disco",2019-04-26,https://i.scdn.co/image/ab67616d0000b27351e4bcd72f4d8c30111f5a4b,1,1,193040,https://p.scdn.co/mp3-preview/112259950773ea79ec5bf9e5455d6561cbb761b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11901267,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.614,0.839,0.0,-4.143,1.0,0.0702,0.0291,0.0,0.112,0.657,182.123,4.0,,Republic Records,"C © 2019 Taylor Swift, P ℗ 2019 Taylor Swift",1997 +1998,spotify:track:4ZYCwq1EMPY5zZt195ARWg,Better Be Home Soon,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:7t38G4SGphJox2lCAAZo2m,Temple Of Low Men,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1988-01-01,https://i.scdn.co/image/ab67616d0000b2736cdb6a54108ae5653f79b923,1,10,187666,https://p.scdn.co/mp3-preview/59ee7444cead3cc1296cab68a2eb6064b3801221?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USCA28800035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.437,0.373,0.0,-14.846,1.0,0.028,0.261,1.2e-06,0.0984,0.355,93.519,4.0,,Capitol Records,"C © 1988 Capitol Records Inc., P ℗ 1988 Capitol Records Inc.",1998 +1999,spotify:track:7LNiAjyg9P2GKINTtN6Yt8,We Can Work It Out - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:6126O4XLYAfzU3961ziahP,The Beatles 1962 - 1966 (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1973-04-01,https://i.scdn.co/image/ab67616d0000b2735ef4660298ae29ee18799fc2,2,3,136120,https://p.scdn.co/mp3-preview/73f29845990a0f68382f3946df01b6c4ec682b3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAYE0900591,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.382,0.608,2.0,-10.061,1.0,0.0268,0.113,0.0,0.148,0.741,106.301,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P This Compilation ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",1999 +2000,spotify:track:4iHUBqALsttdeXVRXlTMQJ,Please Don't Leave Me,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:21tsMIrRLUKFwfvX9oxQZR,Funhouse,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2008-10-24,https://i.scdn.co/image/ab67616d0000b2737ec845b0eb9caba945adc96b,1,5,231560,https://p.scdn.co/mp3-preview/838581cc1d837f1b316edd3f6ba5f72c597414ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USLF20800182,spotify:user:bradnumber1,2021-11-17T22:21:11Z,"dance pop,pop",0.586,0.839,6.0,-4.493,1.0,0.0363,0.00985,0.0,0.289,0.763,138.002,4.0,,LaFace Records,"P (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",2000 +2001,spotify:track:3NIX0G2ajYENIRQzhLQ4Ua,Can You Forgive Her? - 2001 Remastered Version,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,spotify:album:0i8KtV7c40Al4vDEXMiPT4,Very: Further Listening 1992-1994,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,1993-09-27,https://i.scdn.co/image/ab67616d0000b273d51990d0add718f3f47e0d3f,1,1,234266,https://p.scdn.co/mp3-preview/6ce48b2203f5bf95007faf03fadd9185ce16bbf3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEW0100022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,permanent wave,synthpop",0.513,0.89,6.0,-5.451,0.0,0.05,0.0534,0.0,0.225,0.71,173.329,3.0,,Parlophone UK,"C 2001 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd, P 2001 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd",2001 +2002,spotify:track:3r04p85xiJh9Wqk59YDYdc,OMG,"spotify:artist:23zg3TcAtWQy7J6upgbUnj, spotify:artist:085pc2PYOi8bGKj0PNjekA","USHER, will.i.am",spotify:album:4zZ80MJnva0LsHuQ1FaWmv,Raymond v Raymond,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2010-03-30,https://i.scdn.co/image/ab67616d0000b273e5771cc7c1309e799fb1cd14,1,6,269493,https://p.scdn.co/mp3-preview/774414157422bb8786dcdcafa86c74b2f65e630d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USLF20900103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary,dance pop,pop",0.781,0.745,4.0,-5.81,0.0,0.0332,0.198,1.14e-05,0.36,0.326,129.998,4.0,,LaFace Records,"P (P) 2010 LaFace Records, a unit of Sony Music Entertainment",2002 +2003,spotify:track:08H4hfCZOCw7UbsAGch8TV,Up Where We Belong,"spotify:artist:3pFCERyEiP5xeN2EsPXhjI, spotify:artist:1BwHztAQKypBuy5WBEdJnG","Joe Cocker, Jennifer Warnes",spotify:album:1J13JxwW4IMd0mLCswiWBF,The Essential Joe Cocker,spotify:artist:3pFCERyEiP5xeN2EsPXhjI,Joe Cocker,1995-08-10,https://i.scdn.co/image/ab67616d0000b27333a26a8335077ce66af1dc44,1,1,232160,https://p.scdn.co/mp3-preview/e98eec964949ffe93b0957879c44e62ce798af2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR28200024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.646,0.273,2.0,-13.707,1.0,0.0346,0.476,2.32e-06,0.0921,0.277,139.349,4.0,,Spectrum,"C © 1998 Spectrum Music, P ℗ 1998 Spectrum Music",2003 +2004,spotify:track:4UB3TaEGEY9WoOpxYNMgy4,The Safety Dance,spotify:artist:34PLzyi7CdXUekiLHYyqXq,Men Without Hats,spotify:album:1bVEmlJR8R3PSd4FHe9xms,The Safety Dance,spotify:artist:34PLzyi7CdXUekiLHYyqXq,Men Without Hats,2010-05-21,https://i.scdn.co/image/ab67616d0000b27386f4df79d7c254e57ba64121,1,1,164866,https://p.scdn.co/mp3-preview/a5a2be1b8357dea63572dd2f2b38898742878093?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBBLG0200043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic canadian rock,new romantic,new wave pop,synthpop",0.525,0.882,5.0,-4.479,1.0,0.0467,0.0252,0.0,0.101,0.623,101.674,4.0,,Demon,"C (C) 2010 Demon Music Group Ltd., P (P) 2010 Demon Music Group Ltd.",2004 +2005,spotify:track:3omXVbVoPaRlkvoWhJs872,Chained To You,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:7zkjepWAvcH8fN5eisBZJk,Affirmation,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,2000-06-12,https://i.scdn.co/image/ab67616d0000b2735a7997b1322919a9d346fe9c,1,6,248986,https://p.scdn.co/mp3-preview/0eedb7a861e4a753b930fb19176bdba21fd3672b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09900170,spotify:user:bradnumber1,2022-02-03T10:15:02Z,"boy band,dance pop,pop rock",0.665,0.624,11.0,-8.672,0.0,0.0341,0.0034,0.0026,0.089,0.903,133.035,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P This Compilation ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",2005 +2006,spotify:track:7kQWjGJKgu8DZfUZ8asbjU,The Others (Radio Edit),"spotify:artist:1umoTEAL97Q6OAS1KX2RX3, spotify:artist:3NjAruKAeWHL1nCIoGESIF","TV Rock, Dukes of Windsor",spotify:album:3IzGeCl43lPT0S9r0ZOJXH,"Wild Reunion, Vol. 1 (Mixed By Nick Skitz & Jimmy Z)",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-08-27,https://i.scdn.co/image/ab67616d0000b2739243d1a13bb9e5578ce7720d,1,19,202580,https://p.scdn.co/mp3-preview/e9cf2216123591aa15b5262429a5a647f4934a6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00700180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian indie rock",0.636,0.865,6.0,-2.482,1.0,0.0948,0.021,1.02e-06,0.0999,0.503,124.953,4.0,,Central Station Records,"C 2011 Central Station Records, P 2011 Central Station Records",2006 +2007,spotify:track:6DqNZJ4hhBYd8qj9WbpSTJ,Beautiful Sunday,spotify:artist:3M5aUsJmembbwKbUx434lS,Daniel Boone,spotify:album:1zIYkabmjvLqvayckAYBfC,Rewind the 70s - Volume 2,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-03-31,https://i.scdn.co/image/ab67616d0000b273df25a03a62f70440e7b3ffb4,1,2,182133,https://p.scdn.co/mp3-preview/42ee0bacf2132af0258a4c0041fff2cdd8c3c184?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USV351317686,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.676,0.463,9.0,-13.155,1.0,0.0306,0.309,0.0,0.288,0.91,121.923,4.0,,RKO Music,C (C) 2013 Copyright Group,2007 +2008,spotify:track:3n7zpzU7C4Ik7U84a4Jj0O,Fall At Your Feet,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:28nUyjiU3Cd7P67IgGW79d,Crowded House/Temple of Low/Woodface,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,2003-03-03,https://i.scdn.co/image/ab67616d0000b273275991e5b3136f4fa1d330a1,3,3,198800,https://p.scdn.co/mp3-preview/b49e8f7ec8b0e67551b21530a331b65a3175d74a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA29100170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.652,0.378,0.0,-13.67,0.0,0.0258,0.469,0.00623,0.106,0.558,102.507,4.0,,Capitol Records,"C (C) 2003 Capitol Records, Inc., P Compilation (P) (C) 2003 Capitol Records, Inc.. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Capitol Catalog,",2008 +2009,spotify:track:0q21FNwES2bbtcduB6kjEU,Dancing in the Moonlight,spotify:artist:5FHwr1FymaS5kutIEK6e2y,King Harvest,spotify:album:2W5SVDEBlGqHYqt5sa9PnA,Dancing in the Moonlight,spotify:artist:5FHwr1FymaS5kutIEK6e2y,King Harvest,1973-01-01,https://i.scdn.co/image/ab67616d0000b273dcd829318f889df294d2bb7a,1,10,181133,https://p.scdn.co/mp3-preview/7a9886f285cbed054d2209c1076094f573f97de2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USY4W0610011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.657,0.435,10.0,-15.707,1.0,0.0552,0.739,0.0,0.167,0.771,135.975,4.0,,Darbo Music LLC,"C (C) 2006 Darbo Music LLC, P (P) 1973 Perception Records (obo Musidisc Europe)",2009 +2010,spotify:track:3cU8I44fRvC1b2MD8pClL9,One Summer,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,spotify:album:1hXqV3bALCBE9pJMkGgpEF,Edge,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,1988-11-04,https://i.scdn.co/image/ab67616d0000b273d138097929158d75b903907b,1,10,222866,https://p.scdn.co/mp3-preview/18c9bc7538c73bd5669f58b64cd36411bd3c6c79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUSM08800049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.665,0.587,1.0,-10.149,1.0,0.0503,0.0655,4.87e-05,0.218,0.932,83.399,4.0,,Columbia,P (P) 1988 Sony Music Entertainment Australia Pty Ltd,2010 +2011,spotify:track:5PVl9I23A7m6ovO6JLQ43E,I Love This Life,spotify:artist:1FbsmLXvj5CccZj6JLk46Z,Kim Cesarion,spotify:album:0CqhHKvlSp7s4T9AtwlXhE,Undressed,spotify:artist:1FbsmLXvj5CccZj6JLk46Z,Kim Cesarion,2014-06-13,https://i.scdn.co/image/ab67616d0000b273065c7e3a137a96a42e7f2ad4,1,10,229920,https://p.scdn.co/mp3-preview/fa4ec97ea65b08699db29615b0ded9a9bcdfcaaf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,SEWPF1400301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"swedish pop,swedish soul",0.499,0.702,1.0,-6.539,0.0,0.0316,0.000384,0.0,0.203,0.35,140.007,4.0,,RCA Records Label,P All tracks (P) 2014; except tracks 1 & 8 (P) 2013 Aristotracks AB under exclusive license to Sony Music Entertainment UK Limited,2011 +2012,spotify:track:5kIMtksXc3pqb1TuMoFUps,Dedication To My Ex (Miss That),"spotify:artist:1Xfmvd48oOhEWkscWyEbh9, spotify:artist:74V3dE1a51skRkdII8y2C6, spotify:artist:55Aa2cqylxrFIXC767Z865","Lloyd, André 3000, Lil Wayne",spotify:album:1Gg0UyiIrgZG0rTmPhjKYo,King Of Hearts,spotify:artist:1Xfmvd48oOhEWkscWyEbh9,Lloyd,2011-01-01,https://i.scdn.co/image/ab67616d0000b273462ba9a5f1711e3833c3a6a6,1,2,236146,https://p.scdn.co/mp3-preview/03a932afbdf9e36d7602158f883d0c4ab8bc3dfd?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71109709,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop rap,r&b,southern hip hop,trap,urban contemporary,atl hip hop,dirty south rap,hip hop,southern hip hop,hip hop,new orleans rap,pop rap,rap,trap",0.827,0.717,0.0,-4.536,1.0,0.06,0.0181,7.17e-06,0.0938,0.966,119.018,4.0,,Universal Music Group,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",2012 +2013,spotify:track:52Rp3xBJFYYdmpgzDy0Quf,The Tide Is High,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,spotify:album:5HRB9TeaIHRBxfIm4XZTj6,Atomic/Atomix,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,1999-01-01,https://i.scdn.co/image/ab67616d0000b273ebc918cfb51e9ced7349f436,1,5,232733,https://p.scdn.co/mp3-preview/8e3d99b8ed40cc27e00d46788c1374bae0cafeec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USCH38900009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop,permanent wave,power pop,rock,synthpop",0.779,0.676,11.0,-7.258,1.0,0.0259,0.0417,0.032,0.125,0.962,96.961,4.0,,Parlophone Catalogue,"C © 1999 EMI Records Ltd, P This Compilation ℗ 1999 EMI Records Ltd",2013 +2014,spotify:track:748mrrJrQqyDgbhWthRh6C,Open Your Mind,spotify:artist:6UCwQ3Y39viLfdpPb3YSb9,U.S.U.R.A.,spotify:album:7Cs0VOCYWfeuYnEy1mkom4,Open Your Mind,spotify:artist:6UCwQ3Y39viLfdpPb3YSb9,U.S.U.R.A.,1993,https://i.scdn.co/image/ab67616d0000b273f826c9d752f7d9d07d4d40d4,1,1,316989,https://p.scdn.co/mp3-preview/06655d5109c24d233ce254f641648d09e2d1dd7c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ITL019300032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubble trance,eurodance,hardcore techno,hip house,italo dance",0.756,0.765,5.0,-10.583,1.0,0.0449,0.0184,0.681,0.283,0.52,130.842,4.0,,T30,"C 1993 T30 / Time S.p.A., P 1993 T30 / Time S.p.A.",2014 +2015,spotify:track:6AyURVQJn9o8qwiYvE37nG,Shake You Down,spotify:artist:6zdcmro5vDQSUjeioajL2r,Gregory Abbott,spotify:album:5l3jMPHay7Jfy1ziPIKBro,Shake You Down,spotify:artist:6zdcmro5vDQSUjeioajL2r,Gregory Abbott,1987-02-03,https://i.scdn.co/image/ab67616d0000b273a09872c0e721a5c639944b89,1,3,244373,https://p.scdn.co/mp3-preview/d091d74bb686580dab05b0493fb5fc9c9b06fa93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM18600202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.783,0.391,11.0,-13.154,0.0,0.0283,0.5,0.0,0.3,0.807,94.949,4.0,,Columbia,P (P) 1986 Sony Music Entertainment Inc.,2015 +2016,spotify:track:7tpr3cT3T4SOantp92eTDV,Next To You (feat. Justin Bieber),"spotify:artist:7bXgB6jMjp9ATFy66eO08Z, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Chris Brown, Justin Bieber",spotify:album:4Y0fafStNYB3LWQS6aa7H5,F.A.M.E. (Deluxe Version),spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2011-04-04,https://i.scdn.co/image/ab67616d0000b27325bb6d86da6cf1bab19e61e6,1,8,265813,https://p.scdn.co/mp3-preview/eacf81e07782ebd26d9fd65ecddc65d9910ab35d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI11100078,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap,canadian pop,pop",0.67,0.676,8.0,-4.725,1.0,0.037,0.0201,0.0,0.11,0.349,114.974,4.0,,Jive,"P (P) 2011 JIVE Records, a unit of Sony Music Entertainment",2016 +2017,spotify:track:57kYpyQ0jswmLl7SPpVVEs,Some People,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:7aPDs5tIZPRr9xfzNzubnX,Always Guaranteed,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1987,https://i.scdn.co/image/ab67616d0000b273d635e2199de641b6ba8fc6f5,1,3,231560,https://p.scdn.co/mp3-preview/6e20c5b0e84ace0775f0653f471d0c71cb580801?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBAYE8700128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.725,0.519,10.0,-12.864,1.0,0.0338,0.243,0.000233,0.0729,0.809,109.99,4.0,,Parlophone UK,"C © 1987 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1987 Parlophone Records Ltd, a Warner Music Group Company",2017 +2018,spotify:track:6y2Kaz9QI01XBKJ8mTb7Pf,Skin,spotify:artist:4f9iBmdUOhQWeP7dcAn1pf,Rag'n'Bone Man,spotify:album:1rMmiDKa8V5H9yYTPAbLng,Human (Deluxe),spotify:artist:4f9iBmdUOhQWeP7dcAn1pf,Rag'n'Bone Man,2017-02-10,https://i.scdn.co/image/ab67616d0000b27390a788beadaad34ff684d3ec,1,3,239626,https://p.scdn.co/mp3-preview/ed01d5d5ce455d784038835622480f1228be5c6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBARL1601147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo soul,0.564,0.745,0.0,-7.733,1.0,0.31,0.265,0.0,0.147,0.351,170.661,4.0,,Best Laid Plans/Columbia,P Tracks 1 & 19 (P) 2016 Sony Music Entertainment UK Limited; All other tracks (P) 2017 Sony Music Entertainment UK Limited,2018 +2019,spotify:track:5aIHmhuL1pk0XerSPHNrfS,Clap Your Hands,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:6pgVpIRnYoQgCl5ovEMimz,We Are Born,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2010-06-18,https://i.scdn.co/image/ab67616d0000b27369433e0ac84dcd91f4307ebc,1,2,238436,https://p.scdn.co/mp3-preview/62b18a4086d1c0194de1882189762df5ae93b767?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBPNH1000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.698,0.868,0.0,-4.935,1.0,0.0524,0.000561,0.0349,0.359,0.813,120.011,4.0,,Monkey Puzzle,"C 2010 Monkey Puzzle, P 2010 Monkey Puzzle",2019 +2020,spotify:track:3j7wB0zbXzjPjACBhLB8l0,We Can Get Together,spotify:artist:1Ic7597AdNZRVWP8Lwoa36,Flowers,spotify:album:3UuP7QQWY6hXNiESqZei92,White Heat: 30 Hits,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,2011-08-26,https://i.scdn.co/image/ab67616d0000b273c1e97e3b542ffb0713d1bd8d,1,2,226053,https://p.scdn.co/mp3-preview/f3b051f812eb245281f446fa3b592b0d13b7236b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA00207221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.677,0.811,7.0,-8.183,1.0,0.137,0.000381,0.000547,0.111,0.612,145.045,4.0,,Universal Music Group,"C © 2011 Diva Records, P ℗ 2011 Diva Records",2020 +2021,spotify:track:5KUh0UwMyjL3RHfNJbuD3q,Live Louder,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,spotify:album:45VQIrkLWD5HlhZU2cjZbJ,Live Louder,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,2014-09-05,https://i.scdn.co/image/ab67616d0000b2734c67d8ad7a499ab54b037f2d,1,1,189133,https://p.scdn.co/mp3-preview/97c3fd1fce0d5a4b15b4623f51a757fc331266a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUBM01400299,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.741,0.706,0.0,-2.999,1.0,0.0619,0.00434,0.0,0.522,0.891,117.038,4.0,,DNA Songs/Sony Music Entertainment,P (P) 2014 DNA Songs/Sony Music Entertainment Australia Pty Ltd.,2021 +2022,spotify:track:1T7Htpf1kEvU9Adf8J0ekk,Break Free,"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:2qxJFvFYMEDqd7ui6kSAcq","Ariana Grande, Zedd",spotify:album:5AMOKSM1ftb3opIbGT2d4q,My Everything (Deluxe),spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2014-08-22,https://i.scdn.co/image/ab67616d0000b273be58cd5a2dbe92c2b43cc713,1,5,214840,https://p.scdn.co/mp3-preview/86e074aa8cf7cb9930b5c28415dc7b3a56e5d3ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUM71409719,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,complextro,edm,german techno,pop,pop dance",0.687,0.702,7.0,-5.324,0.0,0.0455,0.0064,4.35e-05,0.204,0.284,129.956,4.0,,Universal Music Group,"C © 2014 Republic Records, a division of UMG Recordings, Inc., P ℗ 2014 Republic Records, a division of UMG Recordings, Inc.",2022 +2023,spotify:track:7sTkbuhd18zd3O3gr99enX,Wolverton Mountain,spotify:artist:3apueasSp0paDZeS4aU06g,Claude King,spotify:album:2xzaiUvVoH44uwD3gPhOzo,Wolverton Mountain,spotify:artist:3apueasSp0paDZeS4aU06g,Claude King,2013-12-20,https://i.scdn.co/image/ab67616d0000b273366d60fbe325e37ac13d08c0,1,1,178677,https://p.scdn.co/mp3-preview/e707b626a27aa86eaf9cfec7acae2f9036c31e1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,FR6V82129047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"cowboy western,western swing",0.636,0.359,9.0,-14.536,1.0,0.053,0.806,0.0,0.269,0.854,157.049,4.0,,JB Production,"C JB Production, P JB Production",2023 +2024,spotify:track:7s3VamLgN0rvQ0W0FlDST8,Train Wreck,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:281OVNHJsmCsyzrBJksB8d,Back from the Edge,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2016-10-28,https://i.scdn.co/image/ab67616d0000b273e543bb8d2793048a42a09893,1,6,208826,https://p.scdn.co/mp3-preview/b844823ed86631219a514760db55169dc7ae4b51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,DEE861600590,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.311,0.485,6.0,-5.726,0.0,0.0365,0.701,0.0,0.0726,0.225,77.355,4.0,,Columbia,P (P) 2016 Sony Music Entertainment Germany GmbH,2024 +2025,spotify:track:6jUyYHDikmw9WltPojSR37,Got 'Til It's Gone,"spotify:artist:4qwGe91Bz9K2T8jXTZ815W, spotify:artist:3ZotbHeyVQKxQCPDJuQ4SU, spotify:artist:5hW4L92KnC6dX9t7tYM4Ve","Janet Jackson, Q-Tip, Joni Mitchell",spotify:album:6ZANEjETQ9L9pjBuvOAhCQ,The Velvet Rope,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1997-10-07,https://i.scdn.co/image/ab67616d0000b273ea84373a962d15eeed9aa3bf,1,4,241760,https://p.scdn.co/mp3-preview/eda94e256989a4c152cba77285f5f6538eb7d16d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USVI29700011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary,east coast hip hop,queens hip hop,canadian singer-songwriter,folk,folk rock,singer-songwriter",0.789,0.412,7.0,-7.518,1.0,0.243,0.0218,0.000312,0.3,0.518,89.914,4.0,,Virgin Records,"C © 1997 Black Doll Inc, P ℗ 1997 Virgin Records America, Inc.",2025 +2026,spotify:track:4ScFuJqpIeJrhrr40G5iQw,I Get a Little Sentimental over You,spotify:artist:4jrTNltJtTMUfXybDdsHDn,The New Seekers,spotify:album:3eEmD5Akx76Cj1Mnlid4pV,Together (Bonus Track Version),spotify:artist:4jrTNltJtTMUfXybDdsHDn,The New Seekers,1974-01-01,https://i.scdn.co/image/ab67616d0000b273a675e27116ed46073d28ddaa,1,5,178106,https://p.scdn.co/mp3-preview/2d9d311dc586404bbd1c347d878b77f07a1fd375?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBBPJ9800968,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic uk pop,merseybeat,rock-and-roll",0.635,0.768,7.0,-7.434,1.0,0.0376,0.0129,8.43e-06,0.0997,0.837,119.297,4.0,,Crimson,"C (C) 2018 Demon Music Group Ltd., P (P) 1974 Laurence Myers Ltd.",2026 +2027,spotify:track:39JofJHEtg8I4fSyo7Imft,B.O.T.A. (Baddest Of Them All) - Edit,"spotify:artist:4XC335ouK6pXyq4QiIb8bP, spotify:artist:6uJ51uV5rYzu1MJkC4CceI","Eliza Rose, Interplanetary Criminal",spotify:album:2lQgd3Svp1ZWAzZPLobAPK,B.O.T.A. (Baddest Of Them All),"spotify:artist:4XC335ouK6pXyq4QiIb8bP, spotify:artist:6uJ51uV5rYzu1MJkC4CceI","Eliza Rose, Interplanetary Criminal",2022-08-12,https://i.scdn.co/image/ab67616d0000b273eb15b994e15a3a6634d1694e,1,1,226626,https://p.scdn.co/mp3-preview/475c0c2a67c6db3c8f66264e04eb3fa9d3a7a0ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,QZAKB2166405,spotify:user:bradnumber1,2023-07-09T01:59:43Z,"house,breaks,experimental house",0.733,0.921,0.0,-7.077,1.0,0.0446,0.161,0.662,0.122,0.729,136.996,4.0,,Warner Records,"C Under exclusive licence to Warner Music UK Limited, © 2022 One House X Limited, P Under exclusive licence to Warner Music UK Limited, ℗ 2022 One House X Limited",2027 +2028,spotify:track:38dDlGN6i6lmHVj4ht19vt,Show Me the Night,spotify:artist:2luRh7SpSZXnyXw4MiObqJ,Jump Jump Dance Dance,spotify:album:3U5YjNc9WLaNlRDGkp23kq,Show Me the Night,spotify:artist:2luRh7SpSZXnyXw4MiObqJ,Jump Jump Dance Dance,2010-04-05,https://i.scdn.co/image/ab67616d0000b273e255963a5d020dc80b0ad9fa,1,1,214634,https://p.scdn.co/mp3-preview/9d958f980d907bee2bb1bc36f160c179b1ad4fb1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV00902361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.679,0.686,4.0,-5.599,0.0,0.0367,0.000109,0.183,0.128,0.769,122.975,4.0,,etcetc,"C 2010 etcetc Music Pty Ltd, P 2010 etcetc Music Pty Ltd",2028 +2029,spotify:track:0VgkVdmE4gld66l8iyGjgx,Mask Off,spotify:artist:1RyvyyTE3xzB2ZywiAwp0i,Future,spotify:album:17FBoXK1NU2rvJBbzdzw0r,FUTURE,spotify:artist:1RyvyyTE3xzB2ZywiAwp0i,Future,2017-06-30,https://i.scdn.co/image/ab67616d0000b273e0b64c8be3c4e804abcb2696,1,7,204600,https://p.scdn.co/mp3-preview/e0b0055e0d5d4c6513741b840028c0c5579af7f2?cid=9950ac751e34487dbbe027c4fd7f8e99,True,81,USSM11701444,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,hip hop,rap,southern hip hop,trap",0.833,0.434,2.0,-8.795,1.0,0.431,0.0102,0.0219,0.165,0.281,150.062,4.0,,Epic/Freebandz/A1,"P (P) 2017 Epic Records, a division of Sony Music Entertainment with A1 / Freebandz",2029 +2030,spotify:track:6zJejIfVYLgjud3lTk4DLB,SNAP,spotify:artist:46xBNx0j6cwY6sD9LgMTm1,Rosa Linn,spotify:album:2nzuzJvr3yowqbPaYjEYof,SNAP PACK,spotify:artist:46xBNx0j6cwY6sD9LgMTm1,Rosa Linn,2022-07-15,https://i.scdn.co/image/ab67616d0000b273c009b22a08eee835ce3efeb9,1,5,179551,https://p.scdn.co/mp3-preview/dae85bb4c85c56d4e7e3d067f66c58b3f2419028?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM12207342,spotify:user:bradnumber1,2022-10-27T23:56:27Z,alt z,0.565,0.636,0.0,-8.198,1.0,0.0638,0.107,9.9e-06,0.447,0.525,170.01,4.0,,Columbia,"P (P) 2022 Nvak Collective/Columbia Records, a Division of Sony Music Entertainment",2030 +2031,spotify:track:4RXpgGM7A4Hg7cFBoH5KyF,Hey Brother,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:1s9tU91VJt4sU5owi29GD3,True,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2013-09-13,https://i.scdn.co/image/ab67616d0000b2734cfcceb6f9b1aae8752810e7,1,3,255093,https://p.scdn.co/mp3-preview/b0f7ab0efb90d7df8535784a2187034e70d0ab24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,CH3131340084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.545,0.78,7.0,-4.867,0.0,0.0436,0.0309,4.64e-05,0.0828,0.458,125.014,4.0,,Universal Music AB,"C © 2013 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2013 Avicii Music AB, under exclusive license to Universal Music AB",2031 +2032,spotify:track:6a8GbQIlV8HBUW3c6Uk9PH,I Know You Want Me (Calle Ocho),spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,spotify:album:5xLAcbvbSAlRtPXnKkggXA,Pitbull Starring In Rebelution,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2009-10-23,https://i.scdn.co/image/ab67616d0000b27326d73ab8423a350faa5d395a,1,3,237120,https://p.scdn.co/mp3-preview/d6f8883fc955cb0ecb7f3e1e06e77a9d8611158d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USJAY0900144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop",0.825,0.743,2.0,-5.995,1.0,0.149,0.0142,2.12e-05,0.237,0.8,127.045,4.0,,Mr.305/Polo Grounds Music/J Records,"P (P) 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",2032 +2033,spotify:track:01oPNCtTniFT3YM4K3ksTf,Opposite of Adults,spotify:artist:40giwFcTQtv9ezxW8yqxJU,Chiddy Bang,spotify:album:0BfzIrlViS9devVRvpf4tw,The Preview,spotify:artist:40giwFcTQtv9ezxW8yqxJU,Chiddy Bang,2010-09-13,https://i.scdn.co/image/ab67616d0000b27394aae7788f8b689a9d578a67,1,3,191600,https://p.scdn.co/mp3-preview/7482e32453e3102459daa1731660626c018c1ee4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,US8Z30900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie pop rap,philly rap,pop rap",0.674,0.899,9.0,-5.115,1.0,0.193,0.011,0.0,0.327,0.604,95.999,4.0,,Parlophone UK,"C © 2010 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2010 Parlophone Records Ltd, a Warner Music Group Company",2033 +2034,spotify:track:6JvrOdeiEqWyCta29Xc4mR,If You Love Someone,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:2zzBNay9x9XyCmk5SzesAD,The Veronicas,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2014-10-24,https://i.scdn.co/image/ab67616d0000b2738212b5177b39bab83337440f,1,11,180066,https://p.scdn.co/mp3-preview/a4a86fd2b6a6afa92ad13e785e945889afd2a529?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUBM01400642,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.618,0.806,10.0,-4.651,1.0,0.0443,0.00137,1.27e-05,0.297,0.683,97.986,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,2034 +2035,spotify:track:3K0SJUQNbOkUprTFcwwAKN,Jungle Boogie,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,spotify:album:3MRgojA0LfPka4RG7aRjsI,Wild And Peaceful,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,1973-09,https://i.scdn.co/image/ab67616d0000b2734b3787e954c118353100783c,1,3,186533,https://p.scdn.co/mp3-preview/7b39a6b166e78ac552e5180c9d04dd469da05df7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USPR37308011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,soft rock,soul",0.808,0.85,5.0,-8.772,1.0,0.0868,0.115,0.000109,0.316,0.717,106.855,4.0,,Island Mercury,"C © 1973 UMG Recordings, Inc., P ℗ 1973 UMG Recordings, Inc.",2035 +2036,spotify:track:4upcZ9jMYXE6PKMdEBc6H0,Don't Go,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,spotify:album:5K0d9a7jqLMHnWydnOXKLW,Love An Adventure,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,1985-01-01,https://i.scdn.co/image/ab67616d0000b273f8589bc527ee18b4ef8fcbde,1,2,237686,https://p.scdn.co/mp3-preview/9d1cd9836a44eeba461f3a88b388038b740e6bb6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUUM71501004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,dance rock,synthpop",0.658,0.936,7.0,-4.406,0.0,0.0301,0.0241,0.00344,0.138,0.649,113.461,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2017 Pseudo Echo, P ℗ 2017 Pseudo Echo",2036 +2037,spotify:track:78TnMTAFmWUWWCgNXR7D3K,Listen To Your Heart,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:1iI5YZkqNUV7VmrEi4uOP9,Look Sharp! (2009 Version),spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,1988-10-19,https://i.scdn.co/image/ab67616d0000b273dc9cb1ac37f5131948ddc257,1,13,328093,https://p.scdn.co/mp3-preview/28c9198cde748712883257869d031e9f3c926ab7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAME8878130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.539,0.583,1.0,-4.935,0.0,0.0275,0.108,0.0,0.111,0.337,86.063,4.0,,Parlophone Sweden,"C 1988, 2009 Parlophone Music Sweden AB, a Warner Music Group Company, P 1988, 2009 Parlophone Music Sweden AB, a Warner Music Group Company",2037 +2038,spotify:track:2HCaIYjkvWSZzaSKUoOh3d,Mr. Tambourine Man,spotify:artist:1PCZpxHJz7WAMF8EEq8bfc,The Byrds,spotify:album:0pkrqPjeq9K5KD0hFqAKNa,Mr. Tambourine Man,spotify:artist:1PCZpxHJz7WAMF8EEq8bfc,The Byrds,1965-06-21,https://i.scdn.co/image/ab67616d0000b273576fccf9a91d9f7c808b8abd,1,1,149466,https://p.scdn.co/mp3-preview/889919bd8b2121d9fe4382d8cfda8ddbfc7f6570?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM16500019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,cosmic american,country rock,folk,folk rock,mellow gold,psychedelic rock,rock,soft rock",0.456,0.47,2.0,-9.564,1.0,0.0294,0.513,3.76e-05,0.444,0.639,120.336,4.0,,Columbia/Legacy,P 1996 Sony Music Entertainment Inc.,2038 +2039,spotify:track:6qUSs4FDzZUdAhY6JDIJfa,Who's That Chick? (feat. Rihanna),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","David Guetta, Rihanna",spotify:album:5DJc5qCdB5pPrDO97LXjeW,One More Love,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2010-11-22,https://i.scdn.co/image/ab67616d0000b273f45c50e7cff5f2376c1e36ea,2,1,201040,https://p.scdn.co/mp3-preview/045360abcc0adf334d5d03969ff2bd6f94112d2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,FRZID1000700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,barbadian pop,pop,urban contemporary",0.675,0.602,11.0,-4.733,0.0,0.116,0.00377,0.0,0.0458,0.933,127.938,4.0,,Parlophone (France),"C © 2010 Gum Prod licence exclusive Parlophone Music France, P ℗ 2010 Gum Prod licence exclusive Parlophone Music France",2039 +2040,spotify:track:31y7h5cZ8BhB1w1DC3CVyz,Cold Hard Bitch,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,spotify:album:4UUcIdL8KRbUCGvkx4gIgK,Get Born,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,2003,https://i.scdn.co/image/ab67616d0000b27319067435dd0e90fef4ff9d30,1,9,243200,https://p.scdn.co/mp3-preview/08a29a2a0757b46b51cf7476e942da0c90b23623?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10340568,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,pop rock",0.461,0.894,2.0,-3.985,1.0,0.0674,0.000235,0.000386,0.106,0.324,130.251,4.0,,Capitol Records,"C Artwork (C) 2003 Real Horrorshow Pty Ltd., P All recordings (P) 2003 Real Horrorshow Pty Ltd. Manufactured and marketed in Australia by EMI Music Australia Pty Limited under exclusive licence.",2040 +2041,spotify:track:02CE3ebfPYLqBWN9KMx91M,Changed the Way You Kiss Me - Radio Edit,spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,spotify:album:5jdzXYmv7zWMdoJzcXrFQ9,2010s Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2019-04-11,https://i.scdn.co/image/ab67616d0000b2738634df56f01887c06c8218f2,1,31,192720,https://p.scdn.co/mp3-preview/88b0d0925fdef6223ad7c317d992b36c41dc2265?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBCEN1100336,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,uk dance",0.575,0.802,4.0,-5.049,0.0,0.0397,0.00631,0.00116,0.117,0.25,127.0,4.0,,Sony Music CG,P This compilation (P) 2019 Sony Music Entertainment UK Limited,2041 +2042,spotify:track:5VEIFw7vtAAyM0s3vr2ROd,You,spotify:artist:4KvLfhBh83ARBAQ8Ynm5HI,Wesley Dean,spotify:album:4UHSdiQK2W7Qay3Aj1BMzR,The Way The World Looks,spotify:artist:4KvLfhBh83ARBAQ8Ynm5HI,Wesley Dean,2009-03-23,https://i.scdn.co/image/ab67616d0000b2733e2ecc3711a45ebacd4ac56d,1,10,198520,https://p.scdn.co/mp3-preview/2eadde0173904a420a7bcedd90782e7597bf0b8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUBM00800656,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.613,0.763,0.0,-2.899,1.0,0.0727,0.000152,0.0,0.139,0.585,120.011,4.0,,Sony Music Entertainment,P All tracks (P) 2009 Sony Music Entertainment Australia Pty Ltd. except Track 10 (P) 2008 Sony Music Entertainment Australia Pty Ltd.,2042 +2043,spotify:track:17mbqOI5bHdmoAJkCcfpE7,Being With You - Single Version,spotify:artist:0h9smro0z3HqUbD94jotU8,Smokey Robinson,spotify:album:3sOjqLDmsoeaKzcRcKIEe1,Love Songs,spotify:artist:0h9smro0z3HqUbD94jotU8,Smokey Robinson,2008-01-01,https://i.scdn.co/image/ab67616d0000b2739b18dec9e2a72b82788fc006,1,12,241946,https://p.scdn.co/mp3-preview/7660e84dd4857777eedd12ba768036007c5c5535?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18100484,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,motown,quiet storm,soul",0.636,0.522,0.0,-7.345,0.0,0.026,0.702,0.0,0.0976,0.566,108.743,4.0,,Universal Music Group,"C © 2008 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2008 Motown Records, a Division of UMG Recordings, Inc.",2043 +2044,spotify:track:63kLorCFyk4ZHMHPhcWOtO,Life Goes On (feat. Luke Combs),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:718COspgdWOnwOFpJHRZHS","Ed Sheeran, Luke Combs",spotify:album:6fyUUW7ISpjbxCxaBHl1UN,Life Goes On (feat. Luke Combs),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:718COspgdWOnwOFpJHRZHS","Ed Sheeran, Luke Combs",2023-05-03,https://i.scdn.co/image/ab67616d0000b273dd0c0090129ad5fb99d361c8,1,1,210208,https://p.scdn.co/mp3-preview/919ffc4d4d4b16bd33c239339f63acc3ce795475?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAHS2300511,spotify:user:bradnumber1,2023-07-28T04:35:22Z,"pop,singer-songwriter pop,uk pop,contemporary country,country",0.505,0.339,1.0,-7.507,1.0,0.0341,0.743,0.0,0.201,0.415,153.675,4.0,,Atlantic Records UK,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2023 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2023 Warner Music UK Limited",2044 +2045,spotify:track:57ef886Y0RQDGLm2jvmYEq,Stolen Dance,spotify:artist:1hzfo8twXdOegF3xireCYs,Milky Chance,spotify:album:2pza66DUreALycIoqlieMo,Sadnecessary,spotify:artist:1hzfo8twXdOegF3xireCYs,Milky Chance,2014-06-20,https://i.scdn.co/image/ab67616d0000b2733f87a17d2a514172322cbac6,1,11,313684,https://p.scdn.co/mp3-preview/a5a49157caae8d8fbb5c82b70a6244a9ec828562?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEL211300741,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german pop,modern rock",0.886,0.578,11.0,-8.826,1.0,0.0381,0.418,0.000181,0.0761,0.69,114.015,4.0,,Neon,"C (C) 2014 Lichtdicht Records GmbH, P (P) 2014 Lichtdicht Records GmbH, under exclusive license to Neon Records Pty Limited",2045 +2046,spotify:track:3ONUtdd1ZXr2zGN9EsF9rS,Dumb Things,spotify:artist:0SNWoGaDlrCompmg9rXeNq,Paul Kelly,spotify:album:2kmbLohyHyFyeIb684f6rA,Paul Kelly's Greatest Hits: Songs From The South: Volume 1 & 2,spotify:artist:0SNWoGaDlrCompmg9rXeNq,Paul Kelly,2010-01-01,https://i.scdn.co/image/ab67616d0000b273ddbf3183a492d4ab1b0e1b80,1,6,150333,https://p.scdn.co/mp3-preview/bcd34f90ff256e613ef284e469dd26ac713ef546?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUYP00820007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian rock",0.433,0.888,0.0,-5.029,1.0,0.0803,0.00889,9.32e-05,0.159,0.757,153.596,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Paul Kelly, P This Compilation ℗ 2010 Paul Kelly",2046 +2047,spotify:track:4B8kUnFGSrpDmQ13WLmzlk,Here I Go Again - Radio Mix,spotify:artist:3UbyYnvNIT5DFXU4WgiGpP,Whitesnake,spotify:album:6gdgl0oZmqd5sb3dfSf4EE,Here I Go Again (Radio Mix),spotify:artist:3UbyYnvNIT5DFXU4WgiGpP,Whitesnake,2017-09-29,https://i.scdn.co/image/ab67616d0000b273436fa2f934aaff7d52989e3f,1,1,232133,https://p.scdn.co/mp3-preview/df7afbde44d6a2b359e0ba9ccae71abb858e96ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB01A1700067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british blues,classic rock,glam metal,hard rock,metal,rock",0.48,0.887,7.0,-4.91,1.0,0.0319,0.147,0.00011,0.33,0.69,92.971,4.0,,Parlophone UK,"C 2017 Whitesnake Productions (Overseas) Ltd. under exclusive license to Parlophone Records Ltd, a Warner Music Group Company for World ex US, Canada & Japan / 2017 Saltburn, LLC, under exclusive license to Rhino Entertainment, a Warner Music Group Company for US, Canada & Japan, P 2017 Whitesnake Productions (Overseas) Ltd. under exclusive license to Parlophone Records Ltd, a Warner Music Group Company for World ex US, Canada & Japan / 2017 Saltburn, LLC, under exclusive license to Rhino Entertainment, a Warner Music Group Company for US, Canada & Japan",2047 +2048,spotify:track:2Dz5WpEWA0vhnMmEPYiZ2y,She Is Love,spotify:artist:2PCUhxD40qlMqsKHjTZD2e,Parachute,spotify:album:1xUlpEzwUautb4HYaVazLh,Losing Sleep,spotify:artist:2PCUhxD40qlMqsKHjTZD2e,Parachute,2009-01-01,https://i.scdn.co/image/ab67616d0000b2735751a628eef90a2250966b3d,1,5,146066,https://p.scdn.co/mp3-preview/9d200e71c61f3c67b178e64183bbf54eeaf80aaa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USUM70964234,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,charlottesville indie,neo mellow,neon pop punk,pop rock,viral pop",0.629,0.174,6.0,-9.697,1.0,0.141,0.616,0.0,0.118,0.305,134.295,1.0,,Mercury Records,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",2048 +2049,spotify:track:1i5Q0S1MLBNUBTfV7nnBSA,Ho Hey,spotify:artist:16oZKvXb6WkQlVAjwo2Wbg,The Lumineers,spotify:album:7HkfMZwKSq3lNpK3UXYRbm,The Lumineers,spotify:artist:16oZKvXb6WkQlVAjwo2Wbg,The Lumineers,2012-06-22,https://i.scdn.co/image/ab67616d0000b2734f757429006ba51ecd6536e3,1,5,163133,https://p.scdn.co/mp3-preview/c33540bb4add6e78feca6e0cf121fbd0d3b9e6dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDMG1260805,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock,neo mellow,stomp and holler",0.684,0.466,5.0,-9.079,1.0,0.03,0.773,1.33e-06,0.0787,0.369,79.924,4.0,,Inertia Music,"C 2012 Inertia Pty Ltd under licence from Dualtone Music Group Inc, P 2012 Inertia Pty Ltd under licence from Dualtone Music Group Inc",2049 +2050,spotify:track:1DZN6RZKbKdiewj3o1WLbL,Could It Be Forever - remastered,spotify:artist:0isDnZYMWbwDz7hzw0XRjt,David Cassidy,spotify:album:4Ze1fA73mUq8aEKK2fa3Ih,The Definitive Collection,"spotify:artist:0isDnZYMWbwDz7hzw0XRjt, spotify:artist:7u1mqP3ykglpCB2c1p1p5I","David Cassidy, The Partridge Family",1974,https://i.scdn.co/image/ab67616d0000b27309eba48d48ebd1ab53b85f19,1,9,138440,https://p.scdn.co/mp3-preview/d9b39b8dacebf95e670283167bd3cebaa6e226d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USAR19901647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop",0.365,0.295,1.0,-12.293,1.0,0.0264,0.597,2.77e-05,0.183,0.341,87.295,4.0,,Arista,"P (P) 1974, 2000 Arista Records, Inc.",2050 +2051,spotify:track:60jzFy6Nn4M0iD1d94oteF,Rude Boy,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:7uGmyYwDFJbSc1xs4hkEs2,Rated R,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2009-11-20,https://i.scdn.co/image/ab67616d0000b273ab647295c0c97446c1f1a3b5,1,8,222920,https://p.scdn.co/mp3-preview/f8efdc86bcd76cbfe6ab687ce0d8f3d6d911abe8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,77,USUM70912459,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.563,0.75,11.0,-4.496,1.0,0.127,0.113,0.0,0.0788,0.812,173.909,4.0,,Def Jam Recordings,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",2051 +2052,spotify:track:7aV2mflaASUmGhCErm7kBO,The Mack,"spotify:artist:15NtJjjHRFybdNSMyM9smT, spotify:artist:6V3F8MZrOKdT9fU686ybE9, spotify:artist:6PXS4YHDkKvl1wkIl4V8DL","Nevada, Mark Morrison, Fetty Wap",spotify:album:7FDBvwfZD9ejQzzg0dyoac,The Mack,spotify:artist:15NtJjjHRFybdNSMyM9smT,Nevada,2016-09-23,https://i.scdn.co/image/ab67616d0000b273746ac799032f9af9c5268332,1,1,167038,https://p.scdn.co/mp3-preview/47b2aef684005eb270dfde378e6a9186888d6264?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71605014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,new jersey rap,pop rap,rap,southern hip hop,trap",0.707,0.883,0.0,-4.281,1.0,0.0602,0.0707,0.0,0.23,0.541,106.031,4.0,,Universal Music Group,"C © 2016 Straightforward Music Ltd / Nourishing Music Ltd, under exclusive licence to Capitol Records (a division of Universal Music Operations Limited), P ℗ 2016 Straightforward Music Ltd / Nourishing Music Ltd, under exclusive licence to Capitol Records (a division of Universal Music Operations Limited)",2052 +2053,spotify:track:5i35AlocQnfyJjFiWVs3JF,If I Had No Loot,spotify:artist:7vWlb4pM85jCHvV771qZZW,Tony! Toni! Toné!,spotify:album:4iEv0GL50EBylyo95mpwDf,"The New Jack Swing Collection, Vol. 4",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-01-01,https://i.scdn.co/image/ab67616d0000b273b6e66e4efc062732e4cda0de,1,20,241067,https://p.scdn.co/mp3-preview/7c3e8cea450dd5c81888921622a564841c05067a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,FR2X41408984,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing,r&b,urban contemporary",0.689,0.829,11.0,-7.406,0.0,0.071,0.123,0.0,0.568,0.634,106.672,4.0,,First Mike,"C 2014 Mike First, P 2014 Dj Steef",2053 +2054,spotify:track:3Pj6u2KTgepyyidp5xfbHp,Ashes,spotify:artist:5yw4tA8D5uG7tT3NaDvq10,Stellar,spotify:album:41gMZm0ib3Je8hU0eFNUwS,Ashes,spotify:artist:5yw4tA8D5uG7tT3NaDvq10,Stellar,2020-05-03,https://i.scdn.co/image/ab67616d0000b2730db4898026f2f0d478abf0e7,1,1,166355,https://p.scdn.co/mp3-preview/07bc0f2b24cb777f63cec33d774af96e75bbc4ba?cid=9950ac751e34487dbbe027c4fd7f8e99,True,70,QZDA52012875,spotify:user:bradnumber1,2021-08-08T09:26:31Z,social media pop,0.712,0.568,5.0,-7.864,0.0,0.0546,0.0947,0.0,0.169,0.46,130.019,4.0,,Arista Records,"P (P) 2020 Greater Boston Records LLC under exclusive license to Arista Records, a division of Sony Music Entertainment",2054 +2055,spotify:track:3oEkrIfXfSh9zGnE7eBzSV,The Winner Takes It All,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:3ZdkT5buYFi1WQaB0XNNtf,Super Trouper,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1980,https://i.scdn.co/image/ab67616d0000b2734d08fc99eff4ed52dfce91fa,1,2,294720,https://p.scdn.co/mp3-preview/a5c0b3c58f991b2b1f492ddb59223bb561a9a787?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,SEAYD8001020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.454,0.788,6.0,-6.748,1.0,0.0371,0.574,0.000766,0.0859,0.52,126.15,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",2055 +2056,spotify:track:5SZ6zX4rOrEQferfFC2MfP,Walk This Way,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,spotify:album:36IxIOGEBAXVozDSiVs09B,Toys In The Attic,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,1975-04-08,https://i.scdn.co/image/ab67616d0000b2739662c6535fb4bf5767e50f32,1,4,220400,https://p.scdn.co/mp3-preview/d65a71bce3857d4221fd2d81ff03cc4e7f3a025e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USSM19906481,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.653,0.73,5.0,-10.613,1.0,0.043,0.0114,1.03e-05,0.0754,0.894,108.705,4.0,,Columbia,"P (P) 1975 Columbia Records, a division of Sony Music Entertainment",2056 +2057,spotify:track:1tZL5aX8SfaCdqL5ML6O4f,Forever Young - Radio Version,spotify:artist:6Jr95uSN9oixu78phrpdqF,Interactive,spotify:album:1F0oU6FVeSqW2rFkz53jwD,Forever Young,spotify:artist:6Jr95uSN9oixu78phrpdqF,Interactive,1994-10-01,https://i.scdn.co/image/ab67616d0000b2739860a1e497a830f56a1148a9,1,1,224666,https://p.scdn.co/mp3-preview/c49ead19061474ae361e170568ce97dabd19bab7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,DEP999400097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubble trance,happy hardcore",0.565,0.959,0.0,-7.653,1.0,0.0401,0.00553,0.0032,0.269,0.762,159.762,4.0,,No Respect,"C 2013 Upright Songs, P 1994 Intercord GmbH",2057 +2058,spotify:track:0c3STgWBihlQ0NDYNibF2S,Wham Rap! (Enjoy What You Do?),spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,spotify:album:4XkHNlqDXMYinVcG2bfKmh,Wham Rap! (Enjoy What You Do?),spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,1982-09-29,https://i.scdn.co/image/ab67616d0000b27343c85c91153bfc4319311218,1,1,214106,https://p.scdn.co/mp3-preview/db3832dfee17927b7e1305ea1f1ec90233dd6e81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBBBM8202067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock",0.833,0.941,2.0,-5.961,1.0,0.105,0.497,0.0,0.0572,0.685,117.889,4.0,,Sony Music UK,P (P) 1982 Sony Music Entertainment UK Limited,2058 +2059,spotify:track:3X4T0KunohTtDaecqBZ8vC,Is There Something I Should Know?,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:7xbWtTByfdMWFfxXmeFFl0,Greatest,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1998-11-09,https://i.scdn.co/image/ab67616d0000b2738fb8aca87001515a6945b9b7,1,1,249666,https://p.scdn.co/mp3-preview/0ea16f1d6a8afcaf9af6e62ed67fff1d08152273?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAYE8300057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.57,0.967,7.0,-4.956,1.0,0.0759,0.0222,5.53e-06,0.285,0.775,124.852,4.0,,Parlophone UK,"C © 1998 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1998 Parlophone Records Ltd, a Warner Music Group Company",2059 +2060,spotify:track:4cIwg5VY8Lo1NYwq7llOth,Steal My Kisses,spotify:artist:7sJ9LR0mCMgFlzJ6Y9xP64,Ben Harper And The Innocent Criminals,spotify:album:51B1RzotO05EShjth3xkOZ,Burn To Shine,spotify:artist:7sJ9LR0mCMgFlzJ6Y9xP64,Ben Harper And The Innocent Criminals,1999-09-21,https://i.scdn.co/image/ab67616d0000b273f6d55874f45c9b9108f5e3fb,1,7,245360,https://p.scdn.co/mp3-preview/fda9e7dedb151e889b1ce362af73ee5f123a115c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USVI29900131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,modern folk rock,0.914,0.56,7.0,-11.396,1.0,0.113,0.241,0.0214,0.217,0.87,101.019,4.0,,Virgin Records,"C © 2000 Virgin Records America, Inc., P ℗ 2000 Virgin Records America, Inc.",2060 +2061,spotify:track:6XeRTieNG3m9eX3fPtBPAe,Twin Flames,spotify:artist:2qlAMLpUyBjZgnzuFXXZXI,Klaxons,spotify:album:4fhLcylFVQWOWcPh2om5yD,Surfing The Void,spotify:artist:2qlAMLpUyBjZgnzuFXXZXI,Klaxons,2010-01-01,https://i.scdn.co/image/ab67616d0000b273babbea87ac485679a24b0afa,1,7,251619,https://p.scdn.co/mp3-preview/b867db2ef285fdc7b40330e39854073adb742479?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71019754,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,indie rock,modern rock,neo-synthpop,new rave",0.425,0.948,6.0,-4.008,0.0,0.083,0.00044,0.0,0.658,0.52,105.057,4.0,,Universal Music Group,"C © 2010 Klaxons, Under Exclusive License to Polydor Records Ltd. (UK), P ℗ 2010 Klaxons, Under Exclusive License to Polydor Records Ltd. (UK)",2061 +2062,spotify:track:65lHwG8JFJs67PnOUhCYPq,Fire,spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,spotify:album:1aKaiiPUuycMQa4ugZXArH,Energy (Expanded Edition),spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,1978,https://i.scdn.co/image/ab67616d0000b273de3c79d554c8d1857543089c,1,7,210640,https://p.scdn.co/mp3-preview/e011d60edb4b3ca09edc14bc8d0a8dbf7c499eb9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRC10201815,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,girl group,hi-nrg,motown,new wave pop,soft rock",0.65,0.615,1.0,-9.332,1.0,0.0342,0.201,0.00235,0.0805,0.637,118.294,4.0,,Legacy Recordings,P This Compilation (P) 2010 Sony Music Entertainment,2062 +2063,spotify:track:21jGcNKet2qwijlDFuPiPb,Circles,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,spotify:album:4g1ZRSobMefqF6nelkgibi,Hollywood's Bleeding,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2019-09-06,https://i.scdn.co/image/ab67616d0000b2739478c87599550dd73bfa7e02,1,6,215280,https://p.scdn.co/mp3-preview/193a0924b0f73d211131bf2fb0bddb7202176202?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USUM71915699,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap",0.695,0.763,0.0,-3.497,1.0,0.0396,0.189,0.00242,0.0863,0.551,120.042,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",2063 +2064,spotify:track:2ZTIw0fZhFp3nnvF41nvVc,Rebel Yell - Remastered 1999,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,spotify:album:1gTvJG5YnrTiwr0uDuzaoA,Greatest Hits,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,2001-01-01,https://i.scdn.co/image/ab67616d0000b2735425de975a56867550d2dd65,1,5,286840,https://p.scdn.co/mp3-preview/1bc1f3d67f69d42bc8c55fa8457d48c787c4361f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USCH39900054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,hard rock,new romantic,new wave,new wave pop,rock,soft rock",0.535,0.695,9.0,-9.296,0.0,0.0475,0.000464,0.0467,0.155,0.433,166.797,4.0,,Chrysalis\EMI Records (USA),"C © 2001 Capitol Records Inc., P This Compilation ℗ 2001 Capitol Records Inc.",2064 +2065,spotify:track:39vhxfS20BvWseZh9ldlJO,I Guess That's Why They Call It The Blues,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:4Y7sv4Ji2wQOknwXZ0x2WI,Too Low For Zero (Remastered With Bonus Tracks),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1983-05-30,https://i.scdn.co/image/ab67616d0000b27373fd9802ec887972ecdacac2,1,5,285333,https://p.scdn.co/mp3-preview/ae3819d5e6cb74c3d8640a51da3893d420d39b4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALX8300088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.673,0.663,0.0,-7.29,1.0,0.0269,0.217,0.017,0.177,0.671,120.634,3.0,,Universal Music Group,"C © 1998 Mercury Records Limited, P ℗ 1998 Mercury Records Limited",2065 +2066,spotify:track:1Z9YYig7c8LudF17OVlLbH,Cemetery,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:511p6iaCuK8Sr0BYdpcfkq,Freak Show,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,1997,https://i.scdn.co/image/ab67616d0000b273f6e1df99ae6316a4badcce58,1,6,241160,https://p.scdn.co/mp3-preview/586700b5ae3d255e7c7ac21549b7ca016bfebccd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUSM09600254,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.339,0.562,0.0,-7.288,1.0,0.0279,0.0626,0.000132,0.305,0.0837,109.12,4.0,,Murmur Records,P 1996 Sony Music Productions Pty. Limited,2066 +2067,spotify:track:2XKW8CH8nRZH9cF2DNjBHN,Day After Day - Remastered 2010,spotify:artist:4pJCawaKSZ40EnxN0YEYw3,Badfinger,spotify:album:0BWOueFZKxQrQWNRt20Lvc,Straight Up (Remastered 2010 / Deluxe Edition),spotify:artist:4pJCawaKSZ40EnxN0YEYw3,Badfinger,1971-12-13,https://i.scdn.co/image/ab67616d0000b273e2dd29cdaa3fadbdc26d59c4,1,9,191053,https://p.scdn.co/mp3-preview/86c58368f809eb7bce7a08bc86d501e923dcf5c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBDCE1000038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,country rock,folk rock,jangle pop,mellow gold,power pop,singer-songwriter,soft rock",0.399,0.686,5.0,-7.112,1.0,0.0311,0.109,0.000874,0.112,0.377,101.806,4.0,,EMI Catalogue,"C © 2010 Apple Corps Ltd, P ℗ 2010 Apple Corps Ltd",2067 +2068,spotify:track:0kg36eEw4un3UwGvnf93xT,Hooked,spotify:artist:2jnIB6XdLvnJUeNTy5A0J2,Why Don't We,spotify:album:4Bvc3sjvXiyOX3HEXhYDr7,Hooked,spotify:artist:2jnIB6XdLvnJUeNTy5A0J2,Why Don't We,2018-06-07,https://i.scdn.co/image/ab67616d0000b273c36c4f86fc993722d7c8e023,1,1,203911,https://p.scdn.co/mp3-preview/cb712dc8bdb51d38c354083147db70530d755f77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21802300,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.631,0.624,1.0,-5.504,1.0,0.0597,0.0718,0.0,0.145,0.392,179.925,4.0,,Atlantic Records,"C 2018 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world excluding the United States, P 2018 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world excluding the United States",2068 +2069,spotify:track:7MFvqBJ3ozTwDrf5VfoW8U,Take Me on the Floor,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:6aL2SwYj5kSEvIcYORHP37,Hook Me Up,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2007-10-30,https://i.scdn.co/image/ab67616d0000b2730f3819fd1601ca0421194d32,1,6,210480,https://p.scdn.co/mp3-preview/29c4e82f6f3e6d4374b7225a83c343411fdbd29d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USWB10704606,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.61,0.9,11.0,-2.304,0.0,0.0453,0.00345,7.86e-06,0.272,0.621,139.969,4.0,,Sire/Warner Records,"C © 2007 Sire Records for the U.S. Marketed by Warner Records Inc., A Warner Music Group Company., P ℗ 2007, 2008 Sire Records. Marketed by Warner Records Inc., A Warner Music Group Company",2069 +2070,spotify:track:3wfujdbamR3Z46F4xav7LM,Drive,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:5ycnwHGkzOlTuMOI3Zh4iO,Heartbeat City,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,1984-03-13,https://i.scdn.co/image/ab67616d0000b273473881855ae3ceadb949a625,1,4,234493,https://p.scdn.co/mp3-preview/e9e0d016d59d0852e6e9c41c1067483bd7475ecb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USEE10170491,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.582,0.606,6.0,-9.961,1.0,0.0289,0.124,0.00139,0.151,0.504,111.441,5.0,,Elektra Records,"C © 1984 Elektra/Asylum Records, P ℗ 1984 Elektra/Asylum Records",2070 +2071,spotify:track:0qcr5FMsEO85NAQjrlDRKo,"Let It Go - From ""Frozen""/Soundtrack Version",spotify:artist:73Np75Wv2tju61Eo9Zw4IR,Idina Menzel,spotify:album:7lZs5r4oQV2nutddffLrg0,Frozen - Original Motion Picture Soundtrack / Deluxe Edition,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-01-01,https://i.scdn.co/image/ab67616d0000b273a985e1e7c6b095da213eaa7c,1,5,223840,https://p.scdn.co/mp3-preview/f7bd2640bfcd23fa3476dc6982937bafec9dc98c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USWD11366376,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,movie tunes,show tunes",0.543,0.485,8.0,-6.79,1.0,0.0305,0.555,0.0,0.12,0.372,136.961,4.0,,Walt Disney Records,"C © 2013 Disney Enterprises, Inc., P This Compilation ℗ 2013 Walt Disney Records",2071 +2072,spotify:track:460L1ZIoGwqValzLLjXw0g,When A Man Loves A Woman - Live,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:3WxIgeY2Z8T9Q33wvmB1SE,Barnestorming,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1988,https://i.scdn.co/image/ab67616d0000b27351c1e2fd1818cb2c4c14f9cf,1,8,279253,https://p.scdn.co/mp3-preview/a3f6c94b9f698d5449925a0a63af2a5c1d042a78?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00510110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.128,0.763,2.0,-8.752,1.0,0.0523,0.0027,0.528,0.977,0.377,172.594,3.0,,Bloodlines,"C 1988 Bloodlines, P 1988 Bloodlines",2072 +2073,spotify:track:6xkryXuiZU360Lngd4sx13,Fantasy,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:1ibYM4abQtSVQFQWvDSo4J,Daydream,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,1995-10-03,https://i.scdn.co/image/ab67616d0000b273749e9bfa78277f30ad2c9a9c,1,1,243493,https://p.scdn.co/mp3-preview/1c23e1ae9b28c452b4d6f2ed4eea9f532dc13f0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USSM19501031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.669,0.727,7.0,-7.588,1.0,0.0353,0.139,0.0,0.123,0.807,102.322,4.0,,Columbia,"P (P) 1995 Columbia Records, a division of Sony Music Entertainment",2073 +2074,spotify:track:3BZkEOJwKUYRlkLWZB1izC,Fire,spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,spotify:album:1BJ0H6MrMADSdqHm3aadbM,Reprisal,spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,2018-05-11,https://i.scdn.co/image/ab67616d0000b273ceef2875aec040ad99eeb3a1,1,1,226350,https://p.scdn.co/mp3-preview/e4af7fab6117f49b06b272d64cee8cfd79a220a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUBM01800181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian electropop,australian indie,edm",0.679,0.69,1.0,-2.744,0.0,0.054,0.0256,8.92e-06,0.07,0.648,99.949,4.0,,Sony Music Entertainment,P (P) 2018 Sony Music Entertainment Australia Pty Ltd,2074 +2075,spotify:track:61KpQadow081I2AsbeLcsb,deja vu,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,spotify:album:3lwHyR4joA1xB7Nun21EP6,deja vu,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,2021-04-01,https://i.scdn.co/image/ab67616d0000b2735a61e19eaffec620c1899c47,1,1,215507,https://p.scdn.co/mp3-preview/3882d764b154e61eade78125e885337ad9d85ae7?cid=9950ac751e34487dbbe027c4fd7f8e99,True,11,USUG12101240,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.439,0.61,9.0,-7.236,1.0,0.116,0.593,1.07e-05,0.341,0.172,181.088,4.0,,Olivia Rodrigo PS,"C © 2021 Olivia Rodrigo, under exclusive license to Geffen Records, P ℗ 2021 Olivia Rodrigo, under exclusive license to Geffen Records",2075 +2076,spotify:track:70eDxAyAraNTiD6lx2ZEnH,Ex's & Oh's,spotify:artist:3bhu7P5PfngueRHiB9hjcx,Elle King,spotify:album:0B4eikFaUJcf3hc6DaSVov,Love Stuff,spotify:artist:3bhu7P5PfngueRHiB9hjcx,Elle King,2015-02-13,https://i.scdn.co/image/ab67616d0000b273eb5a4a3ad6b9548ce4ca2c03,1,2,202173,https://p.scdn.co/mp3-preview/ddf57dd32baa5a7d6ad38cd2b0d331b85f76acc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USRC11401950,spotify:user:bradnumber1,2021-08-08T09:26:31Z,modern blues rock,0.612,0.921,7.0,-2.882,1.0,0.085,0.0183,0.0,0.0576,0.446,139.988,4.0,,RCA Records Label,"P (P) 2014 RCA Records, a division of Sony Music Entertainment",2076 +2077,spotify:track:79eNiy8GqOx646aVCNtPd1,The Best Disco In Town,spotify:artist:3FxBwdg0z5WkLdlAbe7GHq,The Ritchie Family,spotify:album:1JuWjbZz8k7NCneHAyPkWo,Arabian Nights,spotify:artist:3FxBwdg0z5WkLdlAbe7GHq,The Ritchie Family,1976,https://i.scdn.co/image/ab67616d0000b2732bc9f76c5a427035e20a1b64,1,1,401026,https://p.scdn.co/mp3-preview/3bdbe6ee42224e6171209edd413e037b4c02a03f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,FR6V80878741,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,philly soul,post-disco",0.53,0.936,8.0,-7.193,1.0,0.223,0.137,0.0,0.315,0.658,120.955,4.0,,Scorpio Music,"C Can't Stop Productions Inc., P Can't Stop Productions Inc.",2077 +2078,spotify:track:3nu9ZALG23u94QigiPIwVq,Act Your Age,spotify:artist:1xSSjJrKTO2ZNPU81uLtmI,Bliss n Eso,spotify:album:7a9BYSvZVAJxNNRlgpWrBl,Circus In The Sky,spotify:artist:1xSSjJrKTO2ZNPU81uLtmI,Bliss n Eso,2013-06-28,https://i.scdn.co/image/ab67616d0000b273da563eb810c267db366b5879,1,7,159426,https://p.scdn.co/mp3-preview/eb236732fd5fd6459552a635902a36c871036bf1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,47,AULI01386670,spotify:user:bradnumber1,2021-12-01T04:22:58Z,australian hip hop,0.719,0.865,2.0,-5.252,1.0,0.143,0.0101,1.47e-06,0.0279,0.961,146.061,4.0,,Illusive,"C 2013 Illusive, P 2013 Illusive",2078 +2079,spotify:local:The+Beatles:1962-1966:You%27ve+Got+To+Hide+Your+Love+Away:131,You've Got To Hide Your Love Away,,The Beatles,,1962-1966,,,,,0,0,131000,,False,0,,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,,,,,,,,,,,,,,,,2079 +2080,spotify:track:0VKhBoakXHimnQYGP4sbRN,Shut Down (Mono),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:6zImwx0g5TZ4HrvS1E8MYu,Surfin' USA (Mono & Stereo),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1963-03-25,https://i.scdn.co/image/ab67616d0000b273fe3588ec525c5242398b0234,1,6,112000,https://p.scdn.co/mp3-preview/ef306c226a9805315adbf30a2cc57176d4bde7e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USCA21201948,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.584,0.72,8.0,-6.273,1.0,0.0332,0.613,0.0,0.0758,0.971,159.337,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",2080 +2081,spotify:track:3Z4ZuDrY684IFTBz2ze708,Gimme Some Lovin' - Single Mix,spotify:artist:3i9hP422d2KMjaupTzBNVS,The Spencer Davis Group,spotify:album:1NalBDDaMeVW7ARbUI8Gpi,Gimme Some Lovin' / Blues In F,spotify:artist:3i9hP422d2KMjaupTzBNVS,The Spencer Davis Group,1966,https://i.scdn.co/image/ab67616d0000b273fd4270760937e919281721c4,1,1,178840,https://p.scdn.co/mp3-preview/9a072fa7322d8869d2701520b7f5c690d5499736?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAAN6600008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,protopunk",0.598,0.564,0.0,-6.454,1.0,0.032,0.216,0.000204,0.277,0.43,147.619,4.0,,UMC (Universal Music Catalogue),"C © 1966 Universal-Island Records Ltd., P This Compilation ℗ 1966 Universal-Island Records Ltd.",2081 +2082,spotify:track:7cDzJyC95jtGO9zAeZsWOg,Kiss on My List,spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,spotify:album:4LniALl9S6YedTFdiZWOMS,Voices,spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,1980,https://i.scdn.co/image/ab67616d0000b273fe1a9aa59e3c6189a09ae37a,1,5,264986,https://p.scdn.co/mp3-preview/6c0b4229fe4a922b413a464f003172c6a6da4d6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRC10301820,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,singer-songwriter,soft rock,yacht rock",0.815,0.741,0.0,-9.478,1.0,0.031,0.434,0.115,0.0689,0.965,121.221,4.0,,RCA/BMG Heritage,P (P) 1980 Sony Music Entertainment,2082 +2083,spotify:track:5uBlr2RNpuu3n7ROgiQa7w,dramatic,spotify:artist:0SaaipFXHYbYDLDB6atAoR,Cat & Calmell,spotify:album:2uIYbXxbgDyGpndqhhHQS9,dramatic,spotify:artist:0SaaipFXHYbYDLDB6atAoR,Cat & Calmell,2021-01-13,https://i.scdn.co/image/ab67616d0000b273edeaf0a20f0c5ea4a5165fbf,1,1,150200,https://p.scdn.co/mp3-preview/84c31d8ec7f40c91a23681f43096c54fb620a3df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUUM72000447,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.77,0.519,2.0,-8.482,1.0,0.0602,0.332,7.77e-05,0.103,0.571,127.991,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2021 Universal Music Australia Pty. Limited., P ℗ 2021 Universal Music Australia Pty. Limited.",2083 +2084,spotify:track:2Sc2fikZMUod9wXnwTTzFx,Bad Moon Rising,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:1P7vH1YuqEcFndyDMwlgKT,Green River (40th Anniversary Edition),spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1969-08-03,https://i.scdn.co/image/ab67616d0000b273fe82c2a8689fd60c7a0ae2e0,1,5,141600,https://p.scdn.co/mp3-preview/27b898b53b0e9553509e47eb9a6738c27c97168f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC4R0817604,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.508,0.774,2.0,-5.973,1.0,0.0321,0.0586,4.87e-06,0.063,0.942,178.946,4.0,,Fantasy Records,"C © 2008 Concord Music Group, Inc., P ℗ 2008 Concord Music Group, Inc.",2084 +2085,spotify:track:1xgqGXZW1udHCjuwjeRDVO,One Night In Bangkok - Radio Edit / From “Chess” / Remastered 2016,spotify:artist:479Yp6DvyXoIaCssAxB4QR,Murray Head,spotify:album:0t3C9Mp3pJceakRaQmwr9g,One Night In Bangkok (Radio Edit / From “Chess” / Remastered 2016),spotify:artist:479Yp6DvyXoIaCssAxB4QR,Murray Head,2016-02-26,https://i.scdn.co/image/ab67616d0000b2734d0418c998ee5879cce6a91f,1,1,193440,https://p.scdn.co/mp3-preview/a88a7a003110d1f4739657d701a236a4ec9f03de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,SEUM71600451,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.954,0.451,2.0,-9.124,0.0,0.108,0.193,0.00295,0.0637,0.839,108.842,4.0,,Polar Music International AB,"C © 2016 3 Knights Ltd., Under exclusive license to Universal Music AB, P ℗ 2016 3 Knights Ltd., Under exclusive license to Universal Music AB",2085 +2086,spotify:track:4bEb3KE4mSKlTFjtWJQBqO,Don't Stop - 2004 Remaster,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:1bt6q2SruMsBtcerNVtpZB,Rumours,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1977-02-04,https://i.scdn.co/image/ab67616d0000b27357df7ce0eac715cf70e519a7,1,4,193346,https://p.scdn.co/mp3-preview/64b1e9388ec19f29fa36d38d1f80f56d77df56a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USWB10400049,spotify:user:bradnumber1,2022-08-31T00:08:18Z,"album rock,classic rock,rock,soft rock,yacht rock",0.671,0.71,9.0,-7.724,1.0,0.0356,0.0393,1.12e-05,0.0387,0.834,118.745,4.0,,Rhino/Warner Records,"C © 2004 Warner Records Inc., P ℗ 2004 Warner Records Inc.",2086 +2087,spotify:track:5JRFsK0rLo80jpqjDmq4ak,Te Amo,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:5oMe51UhWt6rsnkAvNRd1A,Rated R,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2009-11-20,https://i.scdn.co/image/ab67616d0000b2734cae51022c6881ac94a7b3a2,1,11,208426,https://p.scdn.co/mp3-preview/7b8c81de903ab51597a63ff2eea27e3506e8a864?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USUM70912379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.567,0.707,8.0,-5.455,0.0,0.0819,0.542,0.000177,0.1,0.751,171.918,4.0,,Def Jam Recordings,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",2087 +2088,spotify:track:3v9iO1CBOG37cyHFajwyFV,This Craziness Inside of Me,spotify:artist:2f7imcAJGFFABC2Y7dHtK2,Steady Rollin,spotify:album:0HVUTTXcQXJa8KJtQvD9el,This Craziness Inside of Me,spotify:artist:2f7imcAJGFFABC2Y7dHtK2,Steady Rollin,2021-07-23,https://i.scdn.co/image/ab67616d0000b2738b490f67e05d8481707fe8c0,1,1,263754,https://p.scdn.co/mp3-preview/0663f36c00abcdc97faeaee5c4842f1f627492d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,ushm82111237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,indie salvadoreno,0.655,0.918,0.0,-3.624,1.0,0.0292,0.00865,0.00239,0.177,0.849,126.018,4.0,,Steady Rollin,"C 2021 Fernando Poma Kriete, P 2021 Fernando Poma Kriete",2088 +2089,spotify:track:2B7EoyBNWV4kHARYhYNIxC,Day & Night,spotify:artist:3RjnAn8EWb7zaLlGWVxQeP,Billie Piper,spotify:album:3sNtFp20Iy8BgiNtRwUJkI,The Very Best Of Billie Piper,spotify:artist:3RjnAn8EWb7zaLlGWVxQeP,Billie Piper,2005-01-01,https://i.scdn.co/image/ab67616d0000b2732ed2304fd3e47484d8dd64e6,1,8,197813,https://p.scdn.co/mp3-preview/c99153d026c75984bb683e7b64848c2bd6138d28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBAAA0001260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,europop,talent show",0.713,0.761,5.0,-4.934,0.0,0.0335,0.578,3.82e-05,0.0641,0.899,105.999,4.0,,Virgin Budget,"C © 2005 EMI Records Ltd, P This Compilation ℗ 2005 EMI Records Ltd",2089 +2090,spotify:track:5sS4g0adkAUXvLJHQ1i2kj,Little L,spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,spotify:album:2M50cB74zAc1lQNlrlYHxY,A Funk Odyssey,spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,2001-09-03,https://i.scdn.co/image/ab67616d0000b2736671e841210d4a9a91920144,1,2,295400,https://p.scdn.co/mp3-preview/5bde50d529293245ec5ab7fe49954f135b501321?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBN0102227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.878,0.724,10.0,-5.373,0.0,0.129,0.168,0.0116,0.133,0.904,121.906,4.0,,S2,P (P) 2001 Sony Music Entertainment (UK) Ltd.,2090 +2091,spotify:track:5vlEg2fT4cFWAqU5QptIpQ,Replay,spotify:artist:5tKXB9uuebKE34yowVaU3C,Iyaz,spotify:album:698AdfGuOthKXXvvHla9bf,Replay,spotify:artist:5tKXB9uuebKE34yowVaU3C,Iyaz,2009-08-11,https://i.scdn.co/image/ab67616d0000b273322b086aec3e63cc7caf30c6,1,1,182306,https://p.scdn.co/mp3-preview/fbc52df880d479ab0e34ee46bcc817a9f8b52a35?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USRE10901161,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,post-teen pop",0.706,0.751,9.0,-6.323,1.0,0.0708,0.173,0.0,0.168,0.195,91.031,4.0,,Time Is Money/Beluga Heights/Reprise,"C © 2009 Reprise Records, P ℗ 2009 Reprise Records",2091 +2092,spotify:track:3qKGvSu1inEZKwYQnMavNA,Smack That,"spotify:artist:0z4gvV4rjIZ9wHck67ucSV, spotify:artist:7dGJo4pcD2V6oG8kP0tJRR","Akon, Eminem",spotify:album:13C2pc5O7ofZKd4p2VYO3S,Konvicted,spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,2006,https://i.scdn.co/image/ab67616d0000b2733ad505200e799d6cf2b09b0a,1,3,212360,https://p.scdn.co/mp3-preview/9cab8a030feb773e41610953fbc66add579c44ec?cid=9950ac751e34487dbbe027c4fd7f8e99,True,2,USUM70609036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,detroit hip hop,hip hop,rap",0.94,0.743,5.0,-5.166,0.0,0.0475,0.317,0.0,0.0909,0.932,118.988,4.0,,Konvict/Upfront/SRC/Universal Records,"C © 2007 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2007 Universal Records, a Division of UMG Recordings, Inc.",2092 +2093,spotify:track:1hoW9l6bM81yP78Ca902az,Dreamin',spotify:artist:3PrFCybHMqrcPls31JxoIl,Johnny Burnette,spotify:album:0IzwRtRkoXXtWnL2OzrJ5R,25 Greatest Hits,spotify:artist:3PrFCybHMqrcPls31JxoIl,Johnny Burnette,1999,https://i.scdn.co/image/ab67616d0000b27304bfa80e7310fc3adbf426c8,1,1,140160,https://p.scdn.co/mp3-preview/b44b9fa75800a6ffea57bf9892d994e123be8951?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USEM36000046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rock-and-roll,rockabilly",0.5,0.46,9.0,-11.041,1.0,0.0423,0.482,0.0,0.352,0.759,75.058,4.0,,EMI Gold,"C © 2004 EMI Records Ltd, P This Compilation ℗ 1998 EMI Records Ltd",2093 +2094,spotify:track:3pF1vsGZViOGidoMfUvElA,Light Years Away,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:08tQwub0ulYRq9dRBKVS1r","Tiësto, DBX",spotify:album:7we1BNenehBwimeIkK0jL0,A Town Called Paradise,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,2014-06-13,https://i.scdn.co/image/ab67616d0000b2734f4944ceeffac9693cc90e40,1,3,223147,https://p.scdn.co/mp3-preview/6866897e14a990e6429e76619c394ad03fab912a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CYA111400034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance",0.532,0.932,0.0,-3.032,1.0,0.08,0.0101,2.81e-06,0.209,0.436,127.997,3.0,,Universal Music Group,"C © 2014 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings, a division of Universal Music BV, P ℗ 2014 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings, a division of Universal Music BV",2094 +2095,spotify:track:1q74TesvRCIo5RvJM5B84F,She Is Love,spotify:artist:2PCUhxD40qlMqsKHjTZD2e,Parachute,spotify:album:6QJw1UxLAFYQfy8XirsXiW,Losing Sleep,spotify:artist:2PCUhxD40qlMqsKHjTZD2e,Parachute,2009-01-01,https://i.scdn.co/image/ab67616d0000b273fdf27a1773b42e1e90475a4d,1,5,146066,https://p.scdn.co/mp3-preview/9d200e71c61f3c67b178e64183bbf54eeaf80aaa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70964234,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,charlottesville indie,neo mellow,neon pop punk,pop rock,viral pop",0.629,0.174,6.0,-9.697,1.0,0.141,0.616,0.0,0.118,0.305,134.297,1.0,,Universal Music Group,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",2095 +2096,spotify:track:7ccI9cStQbQdystvc6TvxD,We Are The Champions - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:6Di4m5k1BtMJ0R44bWNutu,News Of The World (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1977-10-28,https://i.scdn.co/image/ab67616d0000b27393c65b02f4a72cd6eccf446d,1,2,179200,https://p.scdn.co/mp3-preview/edb9b92942f6c44cea060e481d2f6fecff19fbb9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBUM71029619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.268,0.459,7.0,-6.948,0.0,0.0346,0.378,0.0,0.119,0.172,64.223,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",2096 +2097,spotify:track:0P1uVFhdZsNkMPbEgtNj5q,You'll Always Find Me In The Kitchen At Parties,spotify:artist:3nohf4qILMr5aUSOsolwxB,Jona Lewie,spotify:album:7b3iXqhQSHi8RSzsebHGs2,On The Other Hand There's A Fist,spotify:artist:3nohf4qILMr5aUSOsolwxB,Jona Lewie,1978,https://i.scdn.co/image/ab67616d0000b2739b50d836ff3c8f0c6e61a840,1,1,186626,https://p.scdn.co/mp3-preview/b76b74ddb61e05b3dc7adbc641a7594f1f53d96b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHW0500174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.592,0.495,5.0,-10.222,1.0,0.0402,0.592,0.0181,0.353,0.549,93.458,4.0,,Stiff Records,"C 2008 Stiff Records, P 2008 Stiff Records",2097 +2098,spotify:track:0zZHGbPRCbMSCZbSgmHQgg,The Fly,spotify:artist:7qQJQ3YtcGlqaLg5tcypN2,Chubby Checker,spotify:album:3t848NFNAVru2orxLI3QOy,Cameo Parkway - The Best Of Chubby Checker (Original Hit Recordings) [International Version],spotify:artist:7qQJQ3YtcGlqaLg5tcypN2,Chubby Checker,1961-01-01,https://i.scdn.co/image/ab67616d0000b27331b14a6be50bdc7e60f9dbac,1,12,148893,https://p.scdn.co/mp3-preview/50790327a27a12378a044fdeecda28df7c0f0565?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176140180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.464,0.923,5.0,-7.015,1.0,0.0495,0.195,0.0,0.104,0.844,77.482,4.0,,Universal Music Group,"C © 2005 ABKCO Records Inc., P ℗ 2005 ABKCO Records Inc.",2098 +2099,spotify:track:1vcAHEXL5Cl9TUk0ESvWnN,SHC,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,spotify:album:5lFvZh6pCTJzr9UStebyCF,Sacred Hearts Club,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,2017-07-21,https://i.scdn.co/image/ab67616d0000b273ca02f2ecba4a803b191c7eab,1,4,248106,https://p.scdn.co/mp3-preview/8d4cf993dbb73f8c269570b7bb5d1c2d54f799b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM11703987,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern alternative rock,modern rock,rock",0.5,0.859,6.0,-4.133,0.0,0.0506,0.00126,0.00279,0.329,0.269,121.989,4.0,,Columbia,"P (P) 2017 Columbia Records, a Division of Sony Music Entertainment",2099 +2100,spotify:track:5kwAIpUBwhmiBpsJlcMgO1,Fade Into Darkness - Vocal Radio Mix,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:19XhhBi6GNTYYgSrB3hnzA,Fade Into Darkness,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2011-07-22,https://i.scdn.co/image/ab67616d0000b273f4a567fea181a3ecd6868c96,1,1,198133,https://p.scdn.co/mp3-preview/2883111e392cd8894d8bd39967a09ece59604f77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,CH3131140001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.556,0.885,6.0,-4.045,1.0,0.0321,0.00786,1.95e-06,0.138,0.771,125.997,4.0,,Universal Music AB,"C © 2011 Avicii Music AB, distributed by Universal Music AB, P ℗ 2011 Avicii Music AB, distributed by Universal Music AB",2100 +2101,spotify:track:4r6LSxz83h4uoyBA26sr0d,It's All Right,spotify:artist:1b1N51wmSK0ckxFAMPSSHO,The Impressions,spotify:album:416Nkc4WnldvUhYBG91JXw,The Impressions,spotify:artist:1b1N51wmSK0ckxFAMPSSHO,The Impressions,1963-08-01,https://i.scdn.co/image/ab67616d0000b273a6083900d0416fb6a6929e6d,1,1,173360,https://p.scdn.co/mp3-preview/4b3f30f3682fa73e87cff05b51135c24a53266bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16348266,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago soul,classic soul,funk,quiet storm,soul",0.698,0.418,1.0,-12.342,1.0,0.151,0.526,0.0,0.263,0.751,108.633,4.0,,Universal Music Group,"C © 1963 Geffen Records, P ℗ 1963 Geffen Records",2101 +2102,spotify:track:2ARqIya5NAuvFVHSN3bL0m,The Middle,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:6WY7D3jk8zTrHtmkqqo5GI, spotify:artist:4lDBihdpMlOalxy1jkUbPl","Zedd, Maren Morris, Grey",spotify:album:1D8u1ccrRXyFMOGTEXTgTX,The Middle,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:6WY7D3jk8zTrHtmkqqo5GI, spotify:artist:4lDBihdpMlOalxy1jkUbPl","Zedd, Maren Morris, Grey",2018-01-23,https://i.scdn.co/image/ab67616d0000b273247b73f96ede946a7fa0af12,1,1,184732,https://p.scdn.co/mp3-preview/db8102ea01ab5e48d0b01214e408b6ba6db50442?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71800463,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,classic texas country,contemporary country,pop edm",0.748,0.652,7.0,-3.02,1.0,0.058,0.208,0.0,0.128,0.431,106.914,4.0,,Universal Music Group,"C © 2018 Interscope Records, P ℗ 2018 Interscope Records",2102 +2103,spotify:track:75p0jmejcRVfMbS4FGL2uc,Happy Go Lucky Me,spotify:artist:1VCjlBPsXgs5YMMFDWw6nA,Paul Evans,spotify:album:7MAJCoRaWw1oeVUSnHvqsd,Hear Paul Evans in Your Home Tonight,spotify:artist:1VCjlBPsXgs5YMMFDWw6nA,Paul Evans,2006-01-20,https://i.scdn.co/image/ab67616d0000b27302c14776e06c7a48fddcd6c5,1,2,114139,https://p.scdn.co/mp3-preview/c14e615eeea45c25725c417713dfd4c1cfb28617?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ZA42A1707938,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.726,0.255,9.0,-17.036,1.0,0.0644,0.972,0.00133,0.309,0.785,95.461,4.0,,TP4 Music,"C 2017 TP4 Music, P 2017 TP4 Music",2103 +2104,spotify:track:2mt1IqcFyY1zmYZT8Q3xw9,hot girl bummer,spotify:artist:2cFrymmkijnjDg9SS92EPM,blackbear,spotify:album:0fxhOwMkj9lfSIAyTJVnfc,everything means nothing,spotify:artist:2cFrymmkijnjDg9SS92EPM,blackbear,2020-08-21,https://i.scdn.co/image/ab67616d0000b2730b7c6d46885f7434c99e6d8b,1,1,188343,https://p.scdn.co/mp3-preview/22c354ac8d2a9354509ecb517a26fc34069600c4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,1,USUG11902959,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,pop",0.782,0.559,6.0,-7.106,0.0,0.0767,0.125,0.0,0.385,0.685,129.992,1.0,,Beartrap / Alamo / Interscope Records,"C © 2020 Beartrap, LLC, under exclusive license to Alamo / Interscope Records, P ℗ 2020 Beartrap, LLC, under exclusive license to Alamo / Interscope Records",2104 +2105,spotify:track:3H3r2nKWa3Yk5gt8xgmsEt,This City,spotify:artist:6L1XC7NrmgWRlwAeLJvVtA,Sam Fischer,spotify:album:5waiE6DS2ntWF3Q0yekJUm,This City,spotify:artist:6L1XC7NrmgWRlwAeLJvVtA,Sam Fischer,2019-12-11,https://i.scdn.co/image/ab67616d0000b27370e6c775adc0f71e6bef0a9b,1,1,194853,https://p.scdn.co/mp3-preview/a99ee517ef722c12be72cdbe229bc7a1b5da4874?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,TCADL1840559,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,singer-songwriter pop",0.605,0.377,11.0,-6.213,1.0,0.0443,0.733,0.0,0.0808,0.519,73.877,4.0,,RCA Records Label,P (P) 2019 Sony Music Entertainment UK Limited,2105 +2106,spotify:track:2TdJsyNijI5jUvMnsjQcb3,Frozen,"spotify:artist:2NYOggWBPKbqdEYs7jUr1n, spotify:artist:7FhrJLDe6bQ0Hqt9Wf7zXh","PON CHO, Paige IV",spotify:album:4oaFBjn55MBOdtnL2niH1C,Frozen,spotify:artist:2NYOggWBPKbqdEYs7jUr1n,PON CHO,2016-09-30,https://i.scdn.co/image/ab67616d0000b27398e3c5aea08942349f7d730c,1,1,209462,https://p.scdn.co/mp3-preview/8c07a0ebdbe20a0f6b8130bb5caa9eb4351e5885?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71600345,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.527,0.707,0.0,-3.888,0.0,0.0445,0.246,3.81e-06,0.115,0.426,119.887,4.0,,Universal Music Group,"C © 2016 PON CHO, under exclusive license to Universal Music Australia Pty Ltd, P ℗ 2016 PON CHO, under exclusive license to Universal Music Australia Pty Ltd",2106 +2107,spotify:track:2F9jMklOJOl65znIH4kc8C,Crazy,spotify:artist:5GtMEZEeFFsuHY8ad4kOxv,Seal,spotify:album:1EbspINwTMQK6wh9zS5Uv1,Hits,spotify:artist:5GtMEZEeFFsuHY8ad4kOxv,Seal,2009-11-27,https://i.scdn.co/image/ab67616d0000b27325d0f8817ec6285d93115da0,1,3,356520,https://p.scdn.co/mp3-preview/fff133deae11bf406ac0c751971fcbc86b83a06b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB19000051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,new wave pop",0.633,0.858,11.0,-7.42,0.0,0.0473,0.208,0.0112,0.0655,0.724,102.561,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",2107 +2108,spotify:track:7EI6Iki24tBHAMxtb4xQN2,Anywhere,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:3syh4e0H2YnXmzGzP5Rd3G,Anywhere,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2017-10-20,https://i.scdn.co/image/ab67616d0000b2737a642f7a662f4c94683ac038,1,1,215064,https://p.scdn.co/mp3-preview/ce9f9010ce2c3fc91b7ee0772fed77dd8ca64d4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAHS1701111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.628,0.797,11.0,-3.953,0.0,0.0596,0.0364,0.0,0.104,0.321,106.93,4.0,,Atlantic Records UK,"C © 2017 Atlantic Records UK, a Warner Music Group company, P ℗ 2017 Atlantic Records UK, a Warner Music Group company",2108 +2109,spotify:track:7e2n0trZoW16mIWjNyoaAq,Choose You,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,spotify:album:5ZvaQq8cnyHgYzPOkgMLR7,From The Inside Out,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,2010-08-23,https://i.scdn.co/image/ab67616d0000b2739acfbc65fc1d5a47a7c5bff0,1,6,217306,https://p.scdn.co/mp3-preview/3a9e99102a1f83d377d56cc88c11450a5bcd2f57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUBM01000190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,nz christian,nz pop",0.603,0.772,3.0,-5.338,1.0,0.0339,0.00294,0.0,0.115,0.438,102.207,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd. except track 13 (P) 2010 Move The Crowd Records,2109 +2110,spotify:track:3ehecZpp1cq7CFa8BHZPFj,Changa,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,spotify:album:4zZhV656BJMvD2hSAveA91,Changa,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,2017-11-10,https://i.scdn.co/image/ab67616d0000b273b5ddc1dab1991e556fca0f8f,1,4,205022,https://p.scdn.co/mp3-preview/5621c238c0b18506772de8e5838888576447a992?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV01700125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,aussietronica,australian dance,australian electropop",0.658,0.867,3.0,-2.252,0.0,0.0698,0.0264,0.0315,0.252,0.463,118.04,4.0,,etcetc Music Pty Ltd,"C © 2017 etcetc Music Pty Ltd, P ℗ 2017 etcetc Music Pty Ltd",2110 +2111,spotify:track:39Gxez6G1bcaXDILmD4UNq,Holiday (feat. Phiness),"spotify:artist:4Otx4bRLSfpah5kX8hdgDC, spotify:artist:62grui02HHGJGGS28x949f","Naughty By Nature, Phiness",spotify:album:1i4iyHofvIuROZaGK8x4fD,Nineteen Naughty Nine Nature's Fury,spotify:artist:4Otx4bRLSfpah5kX8hdgDC,Naughty By Nature,1999-04-27,https://i.scdn.co/image/ab67616d0000b2732930912f7694de971c4dcbd3,1,4,246706,https://p.scdn.co/mp3-preview/1d7369f7c6c921a378af23af13bb3ebef5d320b6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,44,USAR19901321,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hip hop,new jersey rap",0.912,0.582,11.0,-8.106,1.0,0.16,0.0286,0.0,0.0709,0.749,100.148,4.0,,Arista,"P (P) 1999 Arista Records, Inc.",2111 +2112,spotify:track:7e89621JPkKaeDSTQ3avtg,Sweet Home Alabama,spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,spotify:album:54V1ljNtyzAm053oJqi0SH,Second Helping (Expanded Edition),spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,1974-04-15,https://i.scdn.co/image/ab67616d0000b27317e1907923e91181f38290ac,1,1,283800,https://p.scdn.co/mp3-preview/125986ae6eb995983b84776b7e0d368f6a74cbbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USMC17446153,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock,southern rock",0.596,0.606,7.0,-12.145,1.0,0.0255,0.181,0.000327,0.0863,0.886,97.785,4.0,,Geffen*,"C © 1997 Geffen Records, P ℗ 1997 Geffen Records",2112 +2113,spotify:track:4zrKN5Sv8JS5mqnbVcsul7,Celestial,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:2W5VVBPNkGAduaArE4sX29,Celestial,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2022-09-29,https://i.scdn.co/image/ab67616d0000b273c18194a4022ec44507f7b248,1,1,209026,https://p.scdn.co/mp3-preview/9bc05cc35c8389bc676803d62598607c3901a570?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBAHS2201129,spotify:user:bradnumber1,2022-10-27T23:57:15Z,"pop,singer-songwriter pop,uk pop",0.574,0.852,2.0,-1.248,1.0,0.0397,0.0529,0.0,0.161,0.501,123.038,4.0,,Atlantic Records UK,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2022 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2022 Warner Music UK Limited",2113 +2114,spotify:track:0Jfr03t8XWOMDrjwohxPAP,Hometown,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:6oR682z8d8TWhL77X7W3kP,Watching The Sky,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2018-06-08,https://i.scdn.co/image/ab67616d0000b273a065cbe8ec2e135441b06e57,1,11,187200,https://p.scdn.co/mp3-preview/865bdca389ca196583e8ea064d474808422fa84b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUIYA1700005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.709,0.655,4.0,-7.831,1.0,0.0463,0.257,0.0,0.21,0.81,115.036,4.0,,Empire Of Song,"C 2018 Empire Of Song (Australia) Pty Ltd, P 2018 Empire Of Song (Australia) Pty Ltd",2114 +2115,spotify:track:3UoULw70kMsiVXxW0L3A33,pov,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:3euz4vS7ezKGnNSwgyvKcd,Positions,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2020-10-30,https://i.scdn.co/image/ab67616d0000b2735ef878a782c987d38d82b605,1,14,201882,https://p.scdn.co/mp3-preview/3ec7d045448d2844bec81910b0d6459a9ab5cfe6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUM72020441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.487,0.534,0.0,-5.664,0.0,0.0555,0.36,0.0,0.1,0.173,131.798,4.0,,Republic Records,"C © 2020 Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Republic Records, a division of UMG Recordings, Inc.",2115 +2116,spotify:track:45Ia1U4KtIjAPPU7Wv1Sea,Are You Gonna Go My Way,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,spotify:album:35LzZH7Fgog8lf1hfcdoMQ,Are You Gonna Go My Way,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,1993-03-09,https://i.scdn.co/image/ab67616d0000b273542d87e4d1512bf7facb3860,1,1,211933,https://p.scdn.co/mp3-preview/271d6ec9d9a4f202a2d081a88b2f7183dc125682?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USVI29300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,rock",0.619,0.67,11.0,-10.322,0.0,0.0353,0.00165,0.0109,0.331,0.777,129.269,4.0,,Virgin Records,"C © 1993 Virgin Records America, Inc., P ℗ 1993 Virgin Records America, Inc.",2116 +2117,spotify:track:7tawDKBYV9059X92D6dr7R,Clumsy,spotify:artist:3r17AfJCCUqC9Lf0OAc73G,Fergie,spotify:album:0jwuTvP3hp2jFY08VLgvnD,The Dutchess,spotify:artist:3r17AfJCCUqC9Lf0OAc73G,Fergie,2006-09-13,https://i.scdn.co/image/ab67616d0000b273eb59d8c00eb852e07b1c4b83,1,2,240426,https://p.scdn.co/mp3-preview/71059120e10f47b0c991624217362caa03206718?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70609116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.731,0.563,2.0,-4.046,1.0,0.131,0.191,0.00042,0.296,0.452,184.009,4.0,,Will I Am / Fergie LP1,"C © 2006 A&M Records, P ℗ 2006 A&M Records",2117 +2118,spotify:track:2wZoBFqwT0Tpm9XW0oiRMZ,The Right Kind of Love,spotify:artist:1eAsLHhN9eQnxU446lhCkR,Jeremy Jordan,spotify:album:3MU1Obzt6jcsNbyqwRKfHN,Try My Love,spotify:artist:1eAsLHhN9eQnxU446lhCkR,Jeremy Jordan,1993,https://i.scdn.co/image/ab67616d0000b273125566300d500501daa9e736,1,4,273933,https://p.scdn.co/mp3-preview/e215a89ed739d7fe6ae8cfb15e25004a8bc8a8b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USWB10404099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,contemporary r&b,0.717,0.634,5.0,-7.736,0.0,0.036,0.115,0.0,0.0782,0.896,178.064,4.0,,Rhino/Warner Records,"C © 2004 Warner Records Inc. Manufactured & Marketed by Warner Strategic Marketing., P ℗ 2004 Warner Records Inc. Manufactured & Marketed by Warner Strategic Marketing.",2118 +2119,spotify:track:2ahZ2CL8ygJ9dEele0eM5E,Inhale,"spotify:artist:61lyPtntblHJvA7FMMhi7E, spotify:artist:2vik8lyw8WiALKMJK7C3hn","Duke Dumont, Ebenezer",spotify:album:1vRlMz0KjuLNxuk8cMd1g6,Inhale,"spotify:artist:61lyPtntblHJvA7FMMhi7E, spotify:artist:2vik8lyw8WiALKMJK7C3hn","Duke Dumont, Ebenezer",2018-03-15,https://i.scdn.co/image/ab67616d0000b2738515cac7922666afe83c0b71,1,1,190730,https://p.scdn.co/mp3-preview/4884f7cad3d34bacaa66ee721a26ef6ec3868061?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71800737,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,house,pop dance,progressive house,uk dance,uk hip hop",0.74,0.817,2.0,-4.35,1.0,0.0642,0.0224,0.0,0.0643,0.47,118.029,4.0,,Universal Music Group,"C © 2018 Adam Dyment, under exclusive licence to Universal Music Operations Limited, P A Virgin EMI Records release; ℗ 2018 Adam Dyment, under exclusive licence to Universal Music Operations Limited",2119 +2120,spotify:track:3Y7Q3E6x7oxG3kIhhbfOin,Minnie the Moocher,spotify:artist:0WQ2X6sDzgN8xEboF4MBif,The Cherokees,spotify:album:2eOqMt2suCPNSvf0vDQh2P,Go!! Records the Complete Collection,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-08-17,https://i.scdn.co/image/ab67616d0000b27350340cba0b7963c42dd24abb,4,1,146933,,False,0,AU3O01802788,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.642,0.74,6.0,-5.826,0.0,0.0399,0.737,3.66e-06,0.23,0.841,130.301,4.0,,Aztec Music,"C © 2018 Aztec Records, P ℗ 2018 Aztec Records",2120 +2121,spotify:track:0UdqZQEbRWTkNXlh5kl2L8,All For You,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:6yJxXjxLIx0EHWAs6Wasyq,All For You,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,2001-04-24,https://i.scdn.co/image/ab67616d0000b27356a296aa2ce2922ab402e7be,1,3,330026,https://p.scdn.co/mp3-preview/3656014a1c7c31b8bfa8c6a354a38dcd9de673ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USVI20100057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.752,0.925,2.0,-3.288,1.0,0.0867,0.0178,0.125,0.104,0.692,113.528,3.0,,Virgin Records,"C © 2001 Black Doll Inc, P ℗ 2001 Virgin Records America, Inc.",2121 +2122,spotify:track:6qC8Jj1XOxknPm8N7EbzKX,"Flashlight - From ""Pitch Perfect 2"" Soundtrack",spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:6eHYEyGAO6phgXexCWV4Iw,"Flashlight (From ""Pitch Perfect 2"" Soundtrack)",spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2015-04-14,https://i.scdn.co/image/ab67616d0000b2731b94f7cb179639b6b81697fb,1,1,208666,https://p.scdn.co/mp3-preview/f917cc33fee5bacdd7b5aca25a37561975861752?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71504653,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.458,0.623,5.0,-7.109,1.0,0.0505,0.322,5.08e-06,0.11,0.417,147.635,4.0,,Universal Music Group,"C © 2015 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2015 Universal Music Enterprises, a Division of UMG Recordings, Inc.",2122 +2123,spotify:track:6oJ6le65B3SEqPwMRNXWjY,Higher Love,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:6XpaIBNiVzIetEPCWDvAFP","Kygo, Whitney Houston",spotify:album:4wquJImu8RtyEuDtIAsfcE,Higher Love,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:6XpaIBNiVzIetEPCWDvAFP","Kygo, Whitney Houston",2019-06-28,https://i.scdn.co/image/ab67616d0000b2737c8977a0ad3a3a0627be9ed7,1,1,228267,https://p.scdn.co/mp3-preview/6737d20b6eba8e6bc5b9270d884b04022f38d713?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USRC11901901,spotify:user:bradnumber1,2022-03-27T20:27:07Z,"edm,pop,pop dance,tropical house,dance pop,pop",0.693,0.678,8.0,-7.159,1.0,0.0324,0.0151,5.71e-06,0.101,0.404,103.952,4.0,,Kygo/RCA Records,"P (P) 2019 RCA Records, a division of Sony Music Entertainment",2123 +2124,spotify:track:5huSgTVqBdIJTFhpShJfcg,Love Rears Its Ugly Head,spotify:artist:6Uhp7WA6sjm5ZL6Xz561de,Living Colour,spotify:album:2rNAZnGy5aH1enh3NRn6IA,Time's Up,spotify:artist:6Uhp7WA6sjm5ZL6Xz561de,Living Colour,1990-08-28,https://i.scdn.co/image/ab67616d0000b2733a32e114334fcdefc5c9a1db,1,4,259466,https://p.scdn.co/mp3-preview/cb801eceeb2a1b3279592a6c0401de0381292b31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM10025265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk metal,funk rock,hard rock",0.615,0.477,2.0,-8.816,1.0,0.092,0.0558,6.25e-05,0.231,0.731,156.008,4.0,,Epic,P (P) 1990 Sony Music Entertainment Inc.,2124 +2125,spotify:track:78q8aoJ6x5UWLpfjDw8bjw,I've Got To Go Now,spotify:artist:7lQC1mHpO4lvLpN9XYZlIH,Toni Childs,spotify:album:5jiVQ7gJrDRC543lCqE0pT,The Best Of Toni Childs,spotify:artist:7lQC1mHpO4lvLpN9XYZlIH,Toni Childs,1996,https://i.scdn.co/image/ab67616d0000b273723991cd705d9469793eb32c,1,3,386906,https://p.scdn.co/mp3-preview/ad32be045009bec968ca2643806bacc72d0cf09f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19100971,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.646,0.504,7.0,-12.572,1.0,0.0264,0.15,0.000108,0.193,0.396,101.95,4.0,,A&M Records Inc.,"C (C) 1996 A&M Records Inc., P (P) 1996 A&M Records Inc.",2125 +2126,spotify:track:5SwgE4wA0P7f6AEz2UQMB2,Uncle Albert / Admiral Halsey - Medley / 2012 Remaster,"spotify:artist:4STHEaNw4mPZ2tzheohgXB, spotify:artist:6QEKXJs8gQCiyBq5L8knco","Paul McCartney, Linda McCartney",spotify:album:3DTMsrNO6lEHNmDJ0fsN4v,Ram (Archive Collection),"spotify:artist:4STHEaNw4mPZ2tzheohgXB, spotify:artist:6QEKXJs8gQCiyBq5L8knco","Paul McCartney, Linda McCartney",1971-05-17,https://i.scdn.co/image/ab67616d0000b27336e259c002cc8746178f5a64,1,5,295146,https://p.scdn.co/mp3-preview/726fc4e36088beb64eaac0cc2108522729d338d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBCCS1100092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,mellow gold,rock,soft rock,classic uk pop",0.371,0.507,7.0,-9.805,1.0,0.0325,0.58,0.0201,0.175,0.535,91.786,4.0,,Paul McCartney Catalog,"C © 2012 MPL Communications Inc/Ltd, P ℗ 2012 MPL Communications Inc/Ltd",2126 +2127,spotify:track:1bhUWB0zJMIKr9yVPrkEuI,Perfect Duet (Ed Sheeran & Beyoncé),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:6vWDO969PvNqNYHIOW5v0m","Ed Sheeran, Beyoncé",spotify:album:52kvZcbEDm0v2kWZQXjuuA,Perfect Duet (Ed Sheeran & Beyoncé),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:6vWDO969PvNqNYHIOW5v0m","Ed Sheeran, Beyoncé",2017-11-30,https://i.scdn.co/image/ab67616d0000b273af6b2fca3b6e24612a5fe5d8,1,1,259550,https://p.scdn.co/mp3-preview/3a5082efb9a5bfd61071f1625fb1f30810f015f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBAHS1701196,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop,pop,r&b",0.587,0.299,8.0,-7.365,1.0,0.0263,0.779,0.0,0.123,0.356,94.992,3.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company.",2127 +2128,spotify:track:4rsW3WCZBGwhHfJWuHRwyT,Home,spotify:artist:6p5JxpTc7USNnBnLzctyd4,Phillip Phillips,spotify:album:773GsAWk3z8mGgMDeR7n1A,The World From The Side Of The Moon (Deluxe),spotify:artist:6p5JxpTc7USNnBnLzctyd4,Phillip Phillips,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d9009cc16eddbc6664508cd8,1,2,210173,https://p.scdn.co/mp3-preview/36d13a7ece690ca4abe2e1f151301187dcf20078?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,QMTM61200272,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo mellow,pop rock",0.606,0.826,0.0,-6.04,1.0,0.0307,0.0256,1.56e-05,0.117,0.322,121.04,4.0,,19 Recordings/Interscope,"C © 2013 19 Recordings, Inc., P ℗ 2013 19 Recordings, Inc.",2128 +2129,spotify:track:3i9UVldZOE0aD0JnyfAZZ0,Lover (Remix) [feat. Shawn Mendes],"spotify:artist:06HL4z0CvFAxyc27GXpf02, spotify:artist:7n2wHs1TKAczGzO7Dd2rGr","Taylor Swift, Shawn Mendes",spotify:album:2UfvnX1YYeC2cExMQTMbXC,Lover (Remix) [feat. Shawn Mendes],"spotify:artist:06HL4z0CvFAxyc27GXpf02, spotify:artist:7n2wHs1TKAczGzO7Dd2rGr","Taylor Swift, Shawn Mendes",2019-11-13,https://i.scdn.co/image/ab67616d0000b27359457bdb1edb5c6417f3baa2,1,1,221306,https://p.scdn.co/mp3-preview/39ad3626255876a596c04f62fe861163d51e41d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USUG11901492,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,canadian pop,pop,viral pop",0.448,0.603,7.0,-7.176,1.0,0.064,0.433,0.0,0.0862,0.422,205.272,3.0,,Taylor Swift,"C © 2019 Taylor Swift, P ℗ 2019 Taylor Swift",2129 +2130,spotify:track:5p3JunprHCxClJjOmcLV8G,Walk On the Wild Side,spotify:artist:42TFhl7WlMRXiNqzSrnzPL,Lou Reed,spotify:album:5SqbMEyAt8332ISGiLX0St,Transformer,spotify:artist:42TFhl7WlMRXiNqzSrnzPL,Lou Reed,1972-12-01,https://i.scdn.co/image/ab67616d0000b273d55149748dca0e5a1f40778e,1,5,254173,https://p.scdn.co/mp3-preview/afe92a16fcc7d89cd74938d91c9c752bfb65c189?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USRC17201948,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,permanent wave,rock,singer-songwriter",0.575,0.318,0.0,-16.729,1.0,0.109,0.683,0.000202,0.0934,0.385,104.522,4.0,,RCA/Legacy,"P (P) 1972 RCA Records, a division of Sony Music Entertainment",2130 +2131,spotify:track:0uZhRTUTRk3iaAlJPLswm1,19 You + Me,spotify:artist:7z5WFjZAIYejWy0NI5lv4T,Dan + Shay,spotify:album:1XsL6CKR43qw5ML8xCv98W,19 You + Me,spotify:artist:7z5WFjZAIYejWy0NI5lv4T,Dan + Shay,2013-08-20,https://i.scdn.co/image/ab67616d0000b273c94eed6cd767185fd7bf1d0c,1,1,217406,https://p.scdn.co/mp3-preview/88d1f02502decc78a334ae6ca47d4804ca0360f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USWB11303187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road",0.493,0.67,6.0,-5.131,1.0,0.0298,0.319,0.0,0.102,0.451,151.989,3.0,,Warner Records,"C © 2013 Warner Music Nashville LLC., P ℗ 2013 Warner Music Nashville LLC.",2131 +2132,spotify:track:2zJEIbmGzR1cZPU99VmW6k,My Love,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,spotify:album:5IhqVCU8v1xX3efFYl8dSP,Downtown - The Best of Petula Clark,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,1996-01-01,https://i.scdn.co/image/ab67616d0000b27377b2be898ac1ae1e3ffe3141,2,15,164981,https://p.scdn.co/mp3-preview/b3b964c99e066c1f3e0b3b33659f821bc43a91af?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6600221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,folk rock,merseybeat,rock-and-roll,rockabilly",0.474,0.839,9.0,-8.343,1.0,0.0391,0.789,1.38e-06,0.35,0.509,85.019,4.0,,Sanctuary Budget,"C © 1996 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1996 Sanctuary Records Group Ltd., a BMG Company",2132 +2133,spotify:track:5OCJzvD7sykQEKHH7qAC3C,God is a woman,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:3tx8gQqWbGwqIGZHqDNrGe,Sweetener,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2018-08-17,https://i.scdn.co/image/ab67616d0000b273c3af0c2355c24ed7023cd394,1,5,197546,https://p.scdn.co/mp3-preview/ff8d1a8198f7e7fd12831bffea8b9c95bc62d6ec?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,USUM71808574,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.602,0.658,1.0,-5.934,1.0,0.0558,0.0233,6e-05,0.237,0.268,145.031,4.0,,Republic Records,"C © 2018 Republic Records, a Division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a Division of UMG Recordings, Inc.",2133 +2134,spotify:track:4FlYcJnfkeBpowEHJ72Bmt,Rockin' Robin,spotify:artist:4SLfKHcufUqU46DiTAHIsj,Bobby Day,spotify:album:4T6nhb9QQpGzLiWkC6bG7y,Rockin' Robin,spotify:artist:4SLfKHcufUqU46DiTAHIsj,Bobby Day,1958-01-01,https://i.scdn.co/image/ab67616d0000b273635d01ad663c01a3665d488d,1,1,160080,https://p.scdn.co/mp3-preview/7b43783587061272d956c76316463fff29cdd08e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USRDF5820025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rock-and-roll",0.541,0.608,7.0,-13.083,1.0,0.106,0.298,0.0,0.234,0.938,171.992,4.0,,Class & Rendezvous,C (C) 1958 Class Records,2134 +2135,spotify:track:0SAlXYW8TqE9TY9Cn6bp2U,Now I Can Dance - Single Edit,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,spotify:album:3eArVEbkPCtNGoCFkFCftz,Greatest Hits 1994 - 2004,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,2004-11-06,https://i.scdn.co/image/ab67616d0000b273760ffd6240e045b0c0d7e17c,1,6,246720,https://p.scdn.co/mp3-preview/2e80f2777c053613be34cf2acfb2b5c96fc835b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUSM09800025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.666,0.753,10.0,-7.613,1.0,0.0737,0.31,4.22e-05,0.286,0.689,117.787,4.0,,Columbia,P (P) 2004 Sony Music Entertainment Australia Pty Ltd,2135 +2136,spotify:track:1AcsmpZBgAMNrzvB20GmI9,"Baby, I’m Gettin’ Better",spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,spotify:album:7E2L6CvPYjSS0r6Obl9qfO,Cohesion,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,2010-01-01,https://i.scdn.co/image/ab67616d0000b273751ccac2417e17a74c47cc84,1,3,197933,https://p.scdn.co/mp3-preview/f28c5ff28296f1dce2f6d467d4015e6f94345713?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUUM71000167,spotify:user:bradnumber1,2021-11-20T11:19:10Z,"australian alternative rock,australian indie",0.389,0.951,0.0,-3.852,1.0,0.168,0.00186,0.0821,0.494,0.354,185.962,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Universal Music Australia Pty Ltd., P ℗ 2010 Universal Music Australia Pty Ltd.",2136 +2137,spotify:track:5c4Rl8wtsg2XSIT4JTsd9V,God-Shaped Hole,spotify:artist:2tbxcCCM7A71cmkzuB8lyH,Plumb,spotify:album:1WJ781r3XS7MiddzxuzbG8,The Best Of Plumb,spotify:artist:2tbxcCCM7A71cmkzuB8lyH,Plumb,2001-05-15,https://i.scdn.co/image/ab67616d0000b2738287d699ead9c39bac1ed455,1,11,231333,https://p.scdn.co/mp3-preview/84515825207e4ab4cbcbc89c177982cf907cfb7c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USES29900017,spotify:user:bradnumber1,2023-04-12T08:33:54Z,"ccm,christian alternative rock,christian music",0.525,0.79,0.0,-7.263,1.0,0.0328,0.00465,0.0,0.12,0.681,101.329,4.0,,Brentwood Music,"P (P) 2000 Provident Label group, LLC",2137 +2138,spotify:track:1nLnpLXvl68RZCSjfkyiaa,Brain Stew,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:7d3nOmFvL51roNElAdpi9d,Insomniac,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,1995-10-10,https://i.scdn.co/image/ab67616d0000b273ac9a652335cf34de9a65292a,1,10,193000,https://p.scdn.co/mp3-preview/5488d08f012ea906930adb7c714d95a5a8552326?cid=9950ac751e34487dbbe027c4fd7f8e99,True,76,USRE19500211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.559,0.543,1.0,-5.429,1.0,0.302,0.00133,2e-05,0.0577,0.337,75.958,4.0,,Reprise,"C © 1995 Reprise Records, P ℗ 1995 Reprise Records",2138 +2139,spotify:track:0u0uy6TFMVyJontccvn8Io,Matter Of Time,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:2jmqR9W54z9VIZN4qAQv1Y,Anthology,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,2008-10-11,https://i.scdn.co/image/ab67616d0000b273d3f56b11a56d0b0f192da1a7,1,15,179213,https://p.scdn.co/mp3-preview/da1fbd32649586eb3fbc31579eb1f16f5c35cd05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00621360,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.57,0.815,9.0,-5.372,1.0,0.0322,0.0124,0.00871,0.0834,0.926,121.726,4.0,,Bloodlines,"C 2008 Bloodlines, P 2008 Bloodlines",2139 +2140,spotify:track:4t4Uc6yNnnzBhatmarfV4Y,Please Don't Let Me Go,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:17gXGgVOk1RpPduIpeD5Yq,Olly Murs,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2010-11-29,https://i.scdn.co/image/ab67616d0000b27312f81e687a629815c3b7c0e8,1,2,204320,https://p.scdn.co/mp3-preview/d2b739a788b0f9b1b46e6e2c93fbf1de07bbb71c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBARL1000785,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.671,0.719,10.0,-5.945,1.0,0.0276,0.377,0.000119,0.341,0.857,89.932,4.0,,Epic,P (P) 2010 Sony Music Entertainment UK Limited,2140 +2141,spotify:track:0Y2SrByf4G3kbq2nBEHQRn,Spirit in the Sky,spotify:artist:7f8LNBVXN0h35veHrpxQFL,Norman Greenbaum,spotify:album:52LfK1ML8u7Xj1ArC8oC22,Music From The Motion Picture Michael,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1996,https://i.scdn.co/image/ab67616d0000b273232a795d6a5f8b86d5f0dbcb,1,11,239600,https://p.scdn.co/mp3-preview/e9b3fa97ba2add5826f4613df1199f114100f730?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USRE19600416,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic rock,0.601,0.643,2.0,-5.828,1.0,0.0314,0.112,0.00209,0.088,0.552,128.262,4.0,,Giant,"C © 1996 Revolution; Motion Picture Artowrk, Photos. TM & Copyright 1996 Turner Pictures Worldwide Inc., P ℗ 1996 Revolution; 1996 MCA Records, Inc.; 1995 Reprise Records; 1988 Sony Music Entertainment Inc.; 1979 Polydor Records UK Ltd. and Warner Records Inc.",2141 +2142,spotify:track:0TT7wJiEYD5GAeJfSR1ETX,Push It,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,spotify:album:1zSDLZLSN9nEJwmkrahZkl,"Hot, Cool & Vicious",spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,1986-01-01,https://i.scdn.co/image/ab67616d0000b273e1ec1a3be105e02569a867d3,1,1,272133,https://p.scdn.co/mp3-preview/f56d6242c6fa9a995407dae416afd1585d8b5193?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20180482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop",0.926,0.6,7.0,-12.485,1.0,0.0883,0.00684,0.00187,0.0901,0.97,127.247,4.0,,Universal Special Markets,"C © 1986 The Island Def Jam Music Group The Island Def Jam Music Group, P ℗ 1986 The Island Def Jam Music Group The Island Def Jam Music Group",2142 +2143,spotify:track:07s9NNOT0sZQp7TyolLLgu,Own It (feat. Ed Sheeran & Burna Boy),"spotify:artist:2SrSdSvpminqmStGELCSNd, spotify:artist:3wcj11K77LjEY1PkEazffa, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Stormzy, Burna Boy, Ed Sheeran",spotify:album:4H9xdaXSMCiT7xyBBxiT0Q,Own It (feat. Ed Sheeran & Burna Boy),"spotify:artist:2SrSdSvpminqmStGELCSNd, spotify:artist:3wcj11K77LjEY1PkEazffa","Stormzy, Burna Boy",2019-11-22,https://i.scdn.co/image/ab67616d0000b273e5c8a7a67fcf2c0bacd8642d,1,1,216706,https://p.scdn.co/mp3-preview/88dffec3dbafee61248857761ce188c4aa531a33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHS1901369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grime,uk hip hop,afrobeats,dancehall,nigerian hip hop,nigerian pop,pop,singer-songwriter pop,uk pop",0.817,0.781,7.0,-4.178,0.0,0.112,0.00838,5.21e-06,0.123,0.359,104.0,4.0,,Atlantic Records,"C 2019 Hashtag Merky Music Limited under exclusive license to Atlantic Records UK, a division of Warner Music UK Limited., P 2019 Hashtag Merky Music Limited under exclusive license to Atlantic Records UK, a division of Warner Music UK Limited.",2143 +2144,spotify:track:4mlS87qNy3ngmg5OvqHg2Q,Blah Blah Blah (feat. 3OH!3),"spotify:artist:6LqNN22kT3074XbTVUrhzX, spotify:artist:0FWzNDaEu9jdgcYTbcOa4F","Kesha, 3OH!3",spotify:album:4HD4hyCi2n5gc5yyRVnirU,Animal + Cannibal (Deluxe Edition),spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010-11-19,https://i.scdn.co/image/a03f39f6ae96bde56c4814a90d012d099987b6c2,1,6,172053,https://p.scdn.co/mp3-preview/bf95a49463e1166491b73e5765754311ce56e508?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10900738,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,electropowerpop,pop punk,pop rap,post-teen pop",0.752,0.832,10.0,-3.243,1.0,0.0971,0.0833,0.000265,0.424,0.534,120.003,4.0,,RCA Records Label,"P (P) 2010 RCA Records, a unit of Sony Music Entertainment",2144 +2145,spotify:track:0kAqXgYBiJp5euIc4H1Aa4,Follow The Sun,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,spotify:album:5YVxyuEcbkcXyDgU9XPnrx,Follow The Sun,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,2012-01-01,https://i.scdn.co/image/ab67616d0000b2730388e6c0cb91ea2b4641522f,1,2,253536,https://p.scdn.co/mp3-preview/e9f78c4450d39339a411c94eb5dd6bb5bf45111c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUPF31200102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,kiwi rock",0.507,0.833,1.0,-4.658,0.0,0.035,0.0351,0.0,0.259,0.649,95.978,4.0,,Evermore,"C © 2012 Evermore Music, P ℗ 2012 Evermore Music",2145 +2146,spotify:track:45qSLEJKJTwKTSBOa8LxPY,All Around The World,"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi","Justin Bieber, Ludacris",spotify:album:7BWK3eXcbAdwYeulyQj5Kw,Believe (Deluxe Edition),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2012-01-01,https://i.scdn.co/image/ab67616d0000b273adc5af517133ca221870f112,1,1,244546,https://p.scdn.co/mp3-preview/9e89b89b8e8102c4edec282370c17f51c4d4e083?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71205293,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap",0.697,0.822,3.0,-3.876,0.0,0.194,0.027,1.1e-06,0.151,0.776,127.98,4.0,,Universal Music Group,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",2146 +2147,spotify:track:3Zuf70897YkrVRAsrBMMSF,"You're The One That I Want - From ""Grease"" Original Motion Picture Soundtrack","spotify:artist:4hKkEHkaqCsyxNxXEsszVH, spotify:artist:4BoRxUdrcgbbq1rxJvvhg9","John Travolta, Olivia Newton-John",spotify:album:0CbwlsDekgmAW03uMBjPBG,Grease (Deluxe Edition),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2003-01-01,https://i.scdn.co/image/ab67616d0000b273fed84093c25ad9637fd126c6,1,4,168466,https://p.scdn.co/mp3-preview/e40c2ef7fd8bb3ba548682058005672f8ee91184?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057890004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,adult standards,australian dance,disco,mellow gold,soft rock",0.751,0.753,0.0,-8.198,1.0,0.0935,0.227,0.000784,0.209,0.774,106.976,4.0,,Universal Music Group,"C © 2003 Universal International Music B.V., P ℗ 2003 Universal International Music B.V.",2147 +2148,spotify:track:5zrvcHnDnuYqB3AJiONidX,School Is Out,spotify:artist:1Qw8MHpjYxm9Xf0O1ZfPiX,Gary U.S. Bonds,spotify:album:4ud2bQgTQedsgiNreGzpRl,"My First School Love, Vol.4",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-09-02,https://i.scdn.co/image/ab67616d0000b27316920dda37db3150045134bc,1,8,149400,https://p.scdn.co/mp3-preview/23e454e194d61f95643aee986d0b9ffd79d42076?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLRD51439029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rhythm and blues,0.549,0.774,10.0,-6.067,1.0,0.0686,0.95,0.000166,0.389,0.965,73.704,4.0,,Karolina Records,"C 2015 Karolina Records, P 2015 Karolina Records",2148 +2149,spotify:track:2VJ8G0LeX2hu7RWc4suNhe,Freaks - Radio Edit,"spotify:artist:0CbeG1224FS58EUx4tPevZ, spotify:artist:1GbrJTB56Xs4XQGlmVbaCf","Timmy Trumpet, Savage",spotify:album:3UHUPmhyPrnRx6clKjaZNs,Freaks (Radio Edit),"spotify:artist:0CbeG1224FS58EUx4tPevZ, spotify:artist:1GbrJTB56Xs4XQGlmVbaCf","Timmy Trumpet, Savage",2014-01-01,https://i.scdn.co/image/ab67616d0000b27394bd8f29415366a27d13eab7,1,1,168750,https://p.scdn.co/mp3-preview/16af4f64315744a08ba758e647e6a3e672525bfc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV01400450,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,big room,melbourne bounce,melbourne bounce international,pop dance,nz hip hop",0.886,0.967,4.0,-0.776,1.0,0.142,0.0157,0.389,0.239,0.745,128.1,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 Hussle Recordings, P ℗ 2014 Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd.",2149 +2150,spotify:track:27l0Wotwb7h9Load3C87IQ,Holler,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:6RKngxYYKZLGdGvCjMXLfc,Holler/Let Love Lead The Way,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,2000-10-23,https://i.scdn.co/image/ab67616d0000b273738ebdbf82929e8e9ea5734f,1,1,238400,https://p.scdn.co/mp3-preview/b65adc3e04a95971846f72e4610d784b5a316945?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAAA0000873,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.769,0.711,10.0,-6.456,0.0,0.0447,0.0291,0.00323,0.079,0.777,109.992,4.0,,Virgin Catalogue,"C © 2007 Virgin Records Limited, P ℗ 2007 Virgin Records Limited",2150 +2151,spotify:track:1vNZGR8nYjoRYFC6dEwAvP,Sun,spotify:artist:536BYVgOnRky0xjsPT96zl,Two Door Cinema Club,spotify:album:2PHlfvPwNTUUWPrpZS3DmM,Sun,spotify:artist:536BYVgOnRky0xjsPT96zl,Two Door Cinema Club,2012-11-19,https://i.scdn.co/image/ab67616d0000b2732e4121dd1e78745c225db271,1,1,187720,https://p.scdn.co/mp3-preview/968ce34311780837af9ffbe7c8f4dfbfe9d45fc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FRU701200087,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,indietronica,irish rock,modern alternative rock,modern rock,northern irish indie",0.647,0.534,4.0,-5.439,0.0,0.0279,0.011,0.000249,0.104,0.673,96.98,4.0,,Kitsune,"C 2012 Two Door Cinema Club under exclusive license to Kitsuné France, P 2012 Two Door Cinema Club under exclusive license to Kitsun France",2151 +2152,spotify:track:3aNYqoYOOtZWAnEvyyymtF,She's Like The Wind - Remastered 2003,spotify:artist:43cWHunuO7yrP3bwY9Ntrx,Patrick Swayze Featuring Wendy Fraser,spotify:album:0lxLzGT35W0TqHnwB8z6DA,Ultimate Dirty Dancing,spotify:artist:3huVQoEWdqUTvlYpFVUHcF,Original Soundtrack,2003-03-08,https://i.scdn.co/image/ab67616d0000b27373b129f2cb0775d32afd7a4c,1,24,231853,https://p.scdn.co/mp3-preview/3276109718ed1ca9b9420efc8fd7e700e7d29584?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10301378,spotify:user:bradnumber1,2021-08-08T09:27:48Z,,0.57,0.526,4.0,-5.772,0.0,0.0267,0.137,1.74e-05,0.0724,0.142,125.218,4.0,,RCA/BMG Heritage,C (P) 2003 BMG Music,2152 +2153,spotify:track:61AltHKLh0PvBCE0TW39Rn,Baby Did A Bad Bad Thing,spotify:artist:7290H8m1Dwt8G7jm1y9CQx,Chris Isaak,spotify:album:3OM7o4WVM3PkHtDJ4ahWcL,The Best Of,spotify:artist:7290H8m1Dwt8G7jm1y9CQx,Chris Isaak,2012-01-01,https://i.scdn.co/image/ab67616d0000b2739b1e83e6382b861cd4d4b3f7,1,4,176000,https://p.scdn.co/mp3-preview/edc7f96938eedaab991d5ac5042c4e91b164968e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRE19900247,spotify:user:bradnumber1,2021-08-08T09:26:31Z,mellow gold,0.58,0.604,2.0,-6.904,1.0,0.09,0.389,0.00051,0.111,0.556,152.532,4.0,,Universal Music Australia Pty. Ltd.,"C © 2012 Wicked Game Records, P ℗ 2012 Wicked Game Records",2153 +2154,spotify:track:5KCbr5ndeby4y4ggthdiAb,Wonder,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:7vif3nVzXURIrjGjHeHytB,Wonder,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2020-10-02,https://i.scdn.co/image/ab67616d0000b2733d9621bb2904dc57a60a6b36,1,1,172692,https://p.scdn.co/mp3-preview/cad9d6fbc080569a2be7039c2eeefeda2c98b0c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM72018522,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.333,0.637,1.0,-4.904,0.0,0.0581,0.131,1.8e-05,0.149,0.132,139.898,4.0,,Shawn Mendes LP4-5 PS/ Island,"C © 2020 Island Records, a division of UMG Recordings, Inc., P ℗ 2020 Island Records, a division of UMG Recordings, Inc.",2154 +2155,spotify:track:4tNXntkAzQ5A2dfYRYGIIQ,Easier,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:0puSqXoH0dMgimvyi5slCt,Easier,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2019-05-23,https://i.scdn.co/image/ab67616d0000b2734916d2b50fd1b00cb27fdbcf,1,1,157492,https://p.scdn.co/mp3-preview/5e63848683c6607187195fe31bc57ca5d0879a2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11901520,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.505,0.428,5.0,-5.604,1.0,0.221,0.489,0.0,0.0977,0.618,175.813,4.0,,5 Seconds Of Summer/Interscope,"C © 2019 5 Seconds of Summer, under exclusive license to Interscope Records, P ℗ 2019 5 Seconds of Summer, under exclusive license to Interscope Records",2155 +2156,spotify:track:5vYA1mW9g2Coh1HUFUSmlb,3AM,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:4vUXTcKz7tXxrNl84meN6i,Yourself or Someone Like You,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,1996-10-01,https://i.scdn.co/image/ab67616d0000b27323dbfb8b3b1be429587f5380,1,3,225946,https://p.scdn.co/mp3-preview/8999bcdc85a00de5cd159aa836bdc380d6eb4dd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAT29600038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.521,0.673,8.0,-8.685,1.0,0.0284,0.00573,0.0,0.12,0.543,108.031,4.0,,Lava/Atlantic,"C © 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",2156 +2157,spotify:track:2ozrSA68Td6KHJLGZUANr4,Fire And Rain,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,spotify:album:3OWloNx2gY95VXXpotMvky,The Essential,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,2007-07-28,https://i.scdn.co/image/ab67616d0000b273cc2776d1c08d6f14acc450c2,1,1,284253,,False,2,AUBM00460330,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.393,0.672,5.0,-8.534,1.0,0.132,0.239,7.73e-05,0.205,0.399,126.675,4.0,,Sony Music Entertainment,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,2157 +2158,spotify:track:5Ohxk2dO5COHF1krpoPigN,Sign of the Times,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,spotify:album:1FZKIm3JVDCxTchXDo5jOV,Harry Styles,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,2017-05-12,https://i.scdn.co/image/ab67616d0000b2736c619c39c853f8b1d67b7859,1,2,340706,https://p.scdn.co/mp3-preview/3f885fdef493aadb403fc2657a605d2f5623b111?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USSM11703595,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.516,0.595,5.0,-4.63,1.0,0.0313,0.0275,0.0,0.109,0.222,119.972,4.0,,Columbia,"P (P) 2017 Erskine Records Limited, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",2158 +2159,spotify:track:4MUyxhxNFRViaJzJYQoYqE,1-800-273-8255,"spotify:artist:4xRYI6VqpkE3UwrDrAZL8L, spotify:artist:2wUjUUtkb5lvLKcGKsKqsR, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Logic, Alessia Cara, Khalid",spotify:album:3tsVTG0T8XtHdGGiwd3WRr,Everybody,spotify:artist:4xRYI6VqpkE3UwrDrAZL8L,Logic,2017-05-05,https://i.scdn.co/image/ab67616d0000b273ec38ecbe9cb668eda64f39b4,1,10,250173,https://p.scdn.co/mp3-preview/4372aaf0060298022367664806a74caaa757fd81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USUM71702906,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"conscious hip hop,hip hop,pop rap,rap,canadian contemporary r&b,canadian pop,pop,pop,pop r&b",0.393,0.575,5.0,-7.807,0.0,0.059,0.565,0.0,0.215,0.395,100.038,4.0,,Def Jam Recordings,"C © 2017 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2017 Def Jam Recordings, a division of UMG Recordings, Inc.",2159 +2160,spotify:track:5bWZd1TOdlA1uOVhP6Vu0e,Take My Hand (The Wedding Song) [feat. Will Anderson],"spotify:artist:4dTcd3R8sIuVhoOlqgqr0V, spotify:artist:4r4X95m8UEHEY1mm27IBxo","Emily Hackett, Will Anderson",spotify:album:00YG3A90dcHC38yhRPl8Ay,Take My Hand (The Wedding Song) [feat. Will Anderson],spotify:artist:4dTcd3R8sIuVhoOlqgqr0V,Emily Hackett,2014-02-14,https://i.scdn.co/image/ab67616d0000b2733a1df2d7303fa538cab4debb,1,1,238421,https://p.scdn.co/mp3-preview/f327db19a27073ed4659931dd6ed15206fc0253d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,TCABU1431656,spotify:user:bradnumber1,2021-08-08T09:26:31Z,country pop,0.592,0.465,3.0,-10.008,1.0,0.0279,0.663,0.000776,0.0918,0.283,75.976,4.0,,Emily Hackett,"C 2014 Emily Hackett, P 2014 Emily Hackett",2160 +2161,spotify:track:3jZomvOBa5qfTo5HkqI1p5,One Way or Another (Teenage Kicks),spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:3n2nA5YdK8OKujeHIqIlAd,One Way Or Another (Teenage Kicks),spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2013-02-17,https://i.scdn.co/image/ab67616d0000b2732288e51936a9fdde73d22904,1,1,157293,https://p.scdn.co/mp3-preview/53d20635a9c1b890fedf854d6a3efa7030072106?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBHMU1300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.489,0.867,4.0,-3.121,0.0,0.071,0.025,0.0,0.586,0.409,162.131,4.0,,Syco Music,P (P) 2013 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,2161 +2162,spotify:track:1qYcHo4wiesUC2VIRch45G,(Can't Get My) Head Around You,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:6mVLRZmHfO3CQIk5e1WXBL,Splinter,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,2003-12-09,https://i.scdn.co/image/ab67616d0000b2732d631767c4043be5539782ee,1,6,134760,https://p.scdn.co/mp3-preview/c99c60d4a5c68b2efbe9593dc70051544637351f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM10312715,spotify:user:bradnumber1,2023-08-08T22:03:42Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.539,0.814,7.0,-4.643,1.0,0.0771,0.00807,1.36e-05,0.0916,0.646,143.28,4.0,,Round Hill Music (Offspring),"C © 2003 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc., P ℗ 2003 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc.",2162 +2163,spotify:track:5z6a02FGoVsXTrJ4GiVNxE,The Horses,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,spotify:album:6Zv9GWVeSi7lqYGxxhawOq,Rise,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,1990-11-23,https://i.scdn.co/image/ab67616d0000b27321d2e2b4c09fe9de4aa7ef57,1,8,256105,https://p.scdn.co/mp3-preview/c564f0876c4d9c694e4a4ebe31b9f5dcebd7cd49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,AUSM08900046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.707,0.275,4.0,-14.816,1.0,0.0328,0.13,0.0,0.066,0.195,93.988,4.0,,Epic,P (P) 1990 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,2163 +2164,spotify:track:5jE48hhRu8E6zBDPRSkEq7,All About That Bass,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:5W98Ab4VvQEuFEE4TIe5fE,Title (Deluxe),spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2015-01-09,https://i.scdn.co/image/ab67616d0000b2733b11178cccd78ec77fc12dbc,1,2,187920,https://p.scdn.co/mp3-preview/1e2484002e1e6fe405506355be7a9696c892d66a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,72,USSM11401317,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop",0.807,0.887,9.0,-3.726,1.0,0.0503,0.0573,2.87e-06,0.124,0.961,134.052,4.0,,Epic,"P (P) 2014, 2015 Epic Records, a division of Sony Music Entertainment",2164 +2165,spotify:track:4RP3afrf3AVFV1rTO0hFZh,I'm All Yours,"spotify:artist:4pADjHPWyrlAF0FA7joK2H, spotify:artist:0TnOYISbd1XYRBk9myaseg","Jay Sean, Pitbull",spotify:album:5MMBUgA6NeTiezOn5cqFof,I'm All Yours,spotify:artist:4pADjHPWyrlAF0FA7joK2H,Jay Sean,2012-01-01,https://i.scdn.co/image/ab67616d0000b273236f3ac8b319cdae51539221,1,1,218573,https://p.scdn.co/mp3-preview/17d85b3a30f114f6e9716d7d9eee19467b118789?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USCM51200368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,post-teen pop,dance pop,miami hip hop,pop",0.662,0.891,0.0,-4.103,0.0,0.0378,0.0209,0.0,0.304,0.714,128.028,4.0,,Cash Money,"C © 2012 Cash Money Records Inc., P ℗ 2012 Cash Money Records Inc.",2165 +2166,spotify:track:6DDoFN7yNQmL2YXojqAk8S,L.I.F.E.G.O.E.S.O.N.,spotify:artist:0aeLcja6hKzb7Uz2ou7ulP,Noah And The Whale,spotify:album:5Pv6HiwxzhI8NDeSsn7n6N,Last Night On Earth,spotify:artist:0aeLcja6hKzb7Uz2ou7ulP,Noah And The Whale,2011-01-01,https://i.scdn.co/image/ab67616d0000b2730db40b68b33c2b6c2b06ca5b,1,3,226946,https://p.scdn.co/mp3-preview/6e556d78d15b6f7ae142f6596bdaed27da6336a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBUM71031174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,stomp and holler,0.608,0.745,4.0,-5.82,1.0,0.0354,0.205,0.0,0.342,0.595,82.003,4.0,,Co-operative Music,"C © 2011 Mercury Records Limited, under exclusive license to V2 Records International Ltd. T/A Cooperative Music, P ℗ 2011 Mercury Records Limited, under exclusive license to V2 Records International Ltd. T/A Cooperative Music",2166 +2167,spotify:track:6j4cO3gMhTuG9GTmdUX7op,You Talk Too Much,spotify:artist:25q0j1r1m5UM8GwFPLcopw,Joe Jones,spotify:album:4JDH8EfRq4DZNqkY42IW8Y,You Talk Too Much - The Best Of,spotify:artist:25q0j1r1m5UM8GwFPLcopw,Joe Jones,2010-07-01,https://i.scdn.co/image/ab67616d0000b27310b07269f1bfc2305f1472c7,1,1,152706,https://p.scdn.co/mp3-preview/fb7c8f04b961f704450f6e24892fd80f389e0bfc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USA561018172,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.719,0.639,8.0,-9.229,1.0,0.0376,0.797,1.43e-05,0.075,0.727,128.272,1.0,,Brownbeats Records,"C (C) 2010 Goldenlane Records, P (P) 2010 Goldenlane Records",2167 +2168,spotify:track:6iz5NXOYjDjLH4Q14tS8a7,Goldfinger - Main Title,spotify:artist:090VebphoycdEyH165iMqc,Shirley Bassey,spotify:album:2j2bpDzIPwQcbL9dapv2gV,Goldfinger (Original Motion Picture Soundtrack / Expanded Edition),spotify:artist:7ctAOUlIAs7yuMODWE2Fyz,John Barry,1964-01-01,https://i.scdn.co/image/ab67616d0000b273090a4107d248606fc5b7c302,1,1,168093,https://p.scdn.co/mp3-preview/61fef6d56de6afc09cc6b0ac77f9a8d97b78f816?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMG20700010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.408,0.354,4.0,-12.447,1.0,0.0377,0.373,0.0,0.263,0.415,104.877,4.0,,Capitol Records,"C © 2003 Capitol Records, LLC, P ℗ 2003 Danjaq, LLC/MGM",2168 +2169,spotify:track:0eXb8Kgkm9UcMMQPIxk3wE,Girls Like You (feat. Cardi B),"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:4kYSro6naA4h99UJvo89HB","Maroon 5, Cardi B",spotify:album:3CxzjUQWtYW0MrQmTiprou,Red Pill Blues (Deluxe),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2018-06-15,https://i.scdn.co/image/ab67616d0000b273c4a8749bca86555138589ac1,1,22,235545,https://p.scdn.co/mp3-preview/0f74b141ccb3eed5400a84ff3e820cfb56001434?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USUM71806260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop,rap",0.629,0.522,0.0,-6.814,1.0,0.11,0.569,0.0,0.13,0.449,59.715,4.0,,Interscope Records*,"C © 2018 Interscope Records, P ℗ 2018 Interscope Records",2169 +2170,spotify:track:34sGnIHB3ZthMvHpNX1i7e,Day 'N' Nite - Crookers Remix,"spotify:artist:0fA0VVWsXO9YnASrzqfmYu, spotify:artist:3o1cwVQfiDWafhYA02k13C","Kid Cudi, Crookers",spotify:album:6oPPKtAwNNlkW4wwHfQDfM,Man On The Moon: The End Of Day (Int'l Version),spotify:artist:0fA0VVWsXO9YnASrzqfmYu,Kid Cudi,2009-01-01,https://i.scdn.co/image/ab67616d0000b273713f297a7bdc1d48971062b2,1,16,281746,https://p.scdn.co/mp3-preview/b92f90fd539c5ebdd6cdd7cf595b082f046cc175?cid=9950ac751e34487dbbe027c4fd7f8e99,True,63,USUM70957532,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,ohio hip hop,pop rap,rap,fidget house",0.757,0.706,11.0,-4.744,0.0,0.0462,0.0326,0.0497,0.0552,0.962,129.993,4.0,,Kid Cudi/Universal Records,"C © 2009 Universal Motown Records, a division of UMG Recordings, Inc., P ℗ 2009 Universal Motown Records, a division of UMG Recordings, Inc.",2170 +2171,spotify:track:2ngzq7qhJ64XKRhVBueRuc,Distant Sun,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:1a89uP7otjpXF9UvMKy02M,The Very Very Best Of Crowded House,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,2010-10-15,https://i.scdn.co/image/ab67616d0000b273ed0c9d87136532ab57be5324,1,6,230993,https://p.scdn.co/mp3-preview/3b1e129e9710a106e99152f810ecec9610ff7ae5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USCA29300046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.404,0.74,3.0,-7.273,1.0,0.0278,0.0083,0.000142,0.119,0.643,111.467,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P This Compilation ℗ 2010 Capitol Records, LLC",2171 +2172,spotify:track:5wIxMTfyrSEx4w1MxaM96c,I Like It Like That,spotify:artist:3mCIMoeTyKjHlgNv7wFZYI,Chris Kenner,spotify:album:3tpJtzZm4Urb0n2ITN5mwF,Full Metal Jacket (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1987-08-04,https://i.scdn.co/image/ab67616d0000b273c9e646bdfea2776e7f6f9751,1,5,117600,https://p.scdn.co/mp3-preview/6322e6f032d20ed0b95772ccf1a099a3d45e4a55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USWB10102871,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"louisiana blues,new orleans blues,new orleans soul",0.59,0.568,5.0,-11.295,1.0,0.0805,0.832,0.0,0.272,0.777,144.572,4.0,,Warner Records,"C © 1987 Warner Records Inc., P ℗ 1987 Warner Records Inc.",2172 +2173,spotify:track:5tA07aNEFIjJ5LLn29REZc,Aerial Love,spotify:artist:52sbFniPptK6lNYHmuoPpz,Daniel Johns,spotify:album:4WEXLPtiftj1O4Sx03wPHb,Talk,spotify:artist:52sbFniPptK6lNYHmuoPpz,Daniel Johns,2015-05-22,https://i.scdn.co/image/ab67616d0000b273ec19fa271959d321c09f0de2,1,1,214947,https://p.scdn.co/mp3-preview/a85a8e67240fcbea81311b721afed210353459e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUEL01400059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.763,0.247,7.0,-9.163,0.0,0.0421,0.489,0.0397,0.107,0.263,91.999,4.0,,Eleven,"C © 2015 Eleven: A Music Company Pty Ltd, P ℗ 2015 Eleven: A Music Company Pty Ltd",2173 +2174,spotify:track:635PqgECfFbL0MNLogX7Yv,Most Girls,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:6PSOOxrBZuoLe88zn0wGQr,Can't Take Me Home (Expanded Edition),spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2000-04-04,https://i.scdn.co/image/ab67616d0000b27357b84aeb215c8fa5412fcc3e,1,3,298960,https://p.scdn.co/mp3-preview/2dcbbbfcb263e3b45f666cbd7cf3fd4fd0f2d89c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USLF20000037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.742,0.732,2.0,-6.046,0.0,0.0311,0.0424,0.00446,0.101,0.694,97.922,4.0,,Arista/LaFace Records,P (P) 2000 LaFace Records LLC,2174 +2175,spotify:track:5Nu1cp2yi4TlZF4KTmElFD,Fergalicious,"spotify:artist:3r17AfJCCUqC9Lf0OAc73G, spotify:artist:085pc2PYOi8bGKj0PNjekA","Fergie, will.i.am",spotify:album:5jMAEt7ZLjqi5tSlf7EBQg,The Dutchess,spotify:artist:3r17AfJCCUqC9Lf0OAc73G,Fergie,2006-09-13,https://i.scdn.co/image/ab67616d0000b2734c62f163f672735dda3357e2,1,1,292373,https://p.scdn.co/mp3-preview/8db0905f62fd3e722f6fb91ca4e1b23fb0099a69?cid=9950ac751e34487dbbe027c4fd7f8e99,True,57,USUM70609117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,pop",0.906,0.583,8.0,-7.721,0.0,0.317,0.0569,0.0,0.126,0.829,129.056,4.0,,Will I Am / Fergie LP1,"C © 2006 A&M Records, P ℗ 2006 A&M Records",2175 +2176,spotify:track:15Gyd8YyEtEVkouYkEH08m,Mambo Italiano - Radio Edit,spotify:artist:3XToFwD4zzZA8fhjlkt5Qi,Shaft,spotify:album:2xezaqAmQ0teXX4tNYXDxz,Mambo Italiano,spotify:artist:3XToFwD4zzZA8fhjlkt5Qi,Shaft,2000-01-01,https://i.scdn.co/image/ab67616d0000b2731f393adcff52355fe4701016,1,1,171226,https://p.scdn.co/mp3-preview/2726120e50819d94578efff235451b927d464868?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBUM70806069,spotify:user:bradnumber1,2023-08-09T21:06:41Z,,0.786,0.829,2.0,-7.334,1.0,0.0373,0.0946,1.68e-06,0.106,0.818,132.449,4.0,,Jalapeno Records,"C 2000 Jalapeno Ltd, P 2000 Jalapeno Ltd",2176 +2177,spotify:track:1S30kHvkkdMkcuCTGSgS41,Nine in the Afternoon - Single Mix,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:7Hk9WbjPbN1n2GXaK7aldw,Pretty. Odd.,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,2008-03-21,https://i.scdn.co/image/ab67616d0000b273586acdba3a0ddc93693a313e,1,2,191560,https://p.scdn.co/mp3-preview/2074eeef1ae2d59fcde4e006c5825bce765ed6c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USAT20801101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.405,0.689,10.0,-5.75,1.0,0.0365,0.0843,0.0,0.207,0.397,155.189,4.0,,Decaydance/Fueled By Ramen/ATL,"C © 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",2177 +2178,spotify:track:1U0ryjeAFtS8EHKyZuFxfh,Saltwater,spotify:artist:4Tvos0a5rRrBu4Oodu5f79,Julian Lennon,spotify:album:4KumjwqI4HI5bzs6SA8Ef1,Help Yourself,spotify:artist:4Tvos0a5rRrBu4Oodu5f79,Julian Lennon,1991-01-01,https://i.scdn.co/image/ab67616d0000b273e3453e540fbc56209886f290,1,2,247093,https://p.scdn.co/mp3-preview/9865a086eb1fff28d6c50ba971683660bd6b0263?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBAAA9100043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,new wave pop",0.199,0.215,9.0,-15.643,1.0,0.0285,0.619,1.79e-06,0.112,0.118,67.958,4.0,,One Up,"C © 1991 Virgin Records Limited, P ℗ 1991 Virgin Records Limited",2178 +2179,spotify:track:5cY8y2XgOfkAh4kSWLFKkz,I Write Sins Not Tragedies,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:01hp4DvayKlnqUQrmk0vvz,A Fever You Can't Sweat Out,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,2005-09-27,https://i.scdn.co/image/ab67616d0000b273e8b923caee478adf4a5b56de,1,10,185586,https://p.scdn.co/mp3-preview/6c56a9bd72eeab840a88d78edc78a56de6320fe8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,US56V0507710,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,,,,,,,,,,,,,,Fueled By Ramen/ADA,"C © 2006 Fueled By Ramen LLC. Manufactured & Marketed by Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2006 Fueled By Ramen LLC. Manufactured & Marketed by Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",2179 +2180,spotify:track:5L7zWiRiXDPNvTLLoXvIja,Always Something There To Remind Me,spotify:artist:3C6chBmZ9wzisBhoh8G2nK,Naked Eyes,spotify:album:6AbPhbIJmobHvCx7yH8YM9,Love To Love,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-22,https://i.scdn.co/image/ab67616d0000b2737928cf2e074a34402d0dae5a,1,16,223266,https://p.scdn.co/mp3-preview/65825baf2872d17054176c56ea249883554ed30f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE8300112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.619,0.593,7.0,-11.641,1.0,0.0359,0.132,0.0,0.35,0.706,149.306,4.0,,Capitol Records,"C (C) 2010 Capitol Records, LLC, P Compilation (P) 2010 Capitol Records, LLC. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Capitol Catalog, 1750 North Vine Street, Hollywood, CA 90028.",2180 +2181,spotify:track:1Am9G7F2qJq4EtD65ALTEf,Leave Me Alone (Ruby Red Dress),spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,spotify:album:50qDHoXQ1QASk26kNQTW5l,Long Hard Climb,spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,1973,https://i.scdn.co/image/ab67616d0000b273526f0de4b7108b7b1a0d05b5,1,1,207826,https://p.scdn.co/mp3-preview/53ac7fadb5d8cab7ae6d51e1f72d5b2933916d56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USCA28700186,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,mellow gold,soft rock",0.647,0.707,7.0,-8.496,1.0,0.046,0.0704,4.7e-05,0.0875,0.818,134.123,4.0,,Capitol Records,"C © 2006 Capitol Records, LLC, P ℗ 2006 Capitol Records, LLC",2181 +2182,spotify:track:6FsQrRpBLgsrFeAeiQqytm,Bang a Gong (Get It On) - 2003 Remaster,spotify:artist:3dBVyJ7JuOMt4GE9607Qin,T. Rex,spotify:album:6k1iylSzWOs7SgavxlJ8kt,Electric Warrior [Expanded & Remastered],spotify:artist:3dBVyJ7JuOMt4GE9607Qin,T. Rex,1971-09-24,https://i.scdn.co/image/ab67616d0000b2737762663eeab308df9d240cd0,1,6,267000,https://p.scdn.co/mp3-preview/140ac147a161594b2af013c36f29ee52495df989?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USRE10300007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,protopunk,rock,singer-songwriter",0.729,0.818,2.0,-9.992,1.0,0.0732,0.157,0.284,0.195,0.906,125.814,4.0,,Rhino/Warner Records,"C © 2003 Warner Records Inc., P ℗ 2003 Warner Records Inc.",2182 +2183,spotify:track:3X4Hlz9ChqsLRbeYfFhOUD,You Were Meant For Me - Album Edit,spotify:artist:6FbDoZnMBTdhhhLuJBOOqP,Jewel,spotify:album:1AKK0MFNHhYhOZGOWePh4o,Pieces Of You (25th Anniversary Edition),spotify:artist:6FbDoZnMBTdhhhLuJBOOqP,Jewel,2020-11-20,https://i.scdn.co/image/ab67616d0000b2736f24ca7fb14ee1a6140f7215,1,15,228533,https://p.scdn.co/mp3-preview/57ffd00a8dd26866f83f09359b501ca0564a29ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USC4R2003805,spotify:user:bradnumber1,2024-04-20T01:21:22Z,"alaska indie,ectofolk,lilith,permanent wave,pop rock,singer-songwriter",0.619,0.329,7.0,-11.215,1.0,0.0442,0.831,0.0,0.0983,0.212,115.638,4.0,,Craft Recordings,"C © 2021 Jewel., Under exclusive license to Concord Music Group, Inc. Distributed by Concord., P ℗ 2020 Jewel., Under exclusive license to Concord Music Group, Inc. Distributed by Concord.",2183 +2184,spotify:track:5vGEdM7LvbgMypJkILhQ4p,Dog Days Are Over,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,spotify:album:3cVNp1AXxdzoKIs9r6keWU,Between Two Lungs,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2010-01-01,https://i.scdn.co/image/ab67616d0000b2737f1d6472eac2fc9dc9617db9,1,1,252818,https://p.scdn.co/mp3-preview/f2e9f824fbfb697b53daf131cecc55798baea55e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70900209,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop",0.494,0.831,7.0,-5.151,1.0,0.0996,0.0363,0.00345,0.119,0.271,150.248,4.0,,Universal Music Group,"C © 2010 Universal Island Records Ltd. A Universal Music Company., P ℗ 2010 Universal Island Records Ltd. A Universal Music Company.",2184 +2185,spotify:track:7F3uo3304R2CTvOseU3H7u,Whatever It Takes,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:57lkUmA6WunanwJRN1RsGD,Evolve,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2017-06-23,https://i.scdn.co/image/ab67616d0000b273ee138477bb382419f3f165c5,1,3,201240,https://p.scdn.co/mp3-preview/acf84fc1161c437e22a6cbb17730925d9f790b3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71703515,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.673,0.667,1.0,-4.977,1.0,0.0312,0.0428,0.0,0.127,0.536,134.938,4.0,,Universal Music Group,"C © 2018 KIDinaKORNER/Interscope Records, P ℗ 2018 KIDinaKORNER/Interscope Records",2185 +2186,spotify:track:2gpLU5dhDI62Oo5I3kzJTZ,Love Me Warm And Tender,spotify:artist:7ceUfdWq2t5nbatS6ollHh,Paul Anka,spotify:album:75zBkbUSaFzpyPa1mBDjON,Put Your Head On My Shoulder: The Very Best Of Paul Anka,spotify:artist:7ceUfdWq2t5nbatS6ollHh,Paul Anka,2000-10-03,https://i.scdn.co/image/ab67616d0000b273686c29818cd37e585c48e7ef,1,15,139333,https://p.scdn.co/mp3-preview/405a6fdeff4652b690950539e57598ad152d0688?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USRC10000611,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,easy listening,rock-and-roll",0.628,0.611,2.0,-8.583,1.0,0.0449,0.495,0.0,0.41,0.796,108.872,4.0,,RCA Records Label,"P (P) 2000 RCA Records, a division of Sony Music Entertainment",2186 +2187,spotify:track:1C1dPegkqX6HMoWcAY5LWA,To Sir With Love,spotify:artist:0jYKX08u1XxmHrl5TdM2QZ,Lulu,spotify:album:5H2oZHVpQ8uNLqQD1ohsoB,Love Loves To Love Lulu,spotify:artist:0jYKX08u1XxmHrl5TdM2QZ,Lulu,1967-12-29,https://i.scdn.co/image/ab67616d0000b273b7bf82ba0f3a34ffdc972ad2,1,1,165800,https://p.scdn.co/mp3-preview/fef756717f4006396e77511b87c14741a35f4ba3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAYE6700110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.549,0.335,4.0,-11.421,1.0,0.026,0.394,1.38e-05,0.182,0.33,97.171,4.0,,PMI Digital,"C 2018 Phoenix Music International Ltd, P 1967 Columbia",2187 +2188,spotify:track:6jMw916p6AcxnVQ9n4kbsy,Imma Be,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:5lNzygOpCmzRx4N301icBB,THE E.N.D. (THE ENERGY NEVER DIES) [International Version],spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2009-01-01,https://i.scdn.co/image/ab67616d0000b27349ed7a0ea23c40c730f6bb37,1,4,257560,https://p.scdn.co/mp3-preview/acefe5793e602bd3804430a290c871f0386aea74?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70967900,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.597,0.517,0.0,-6.963,1.0,0.365,0.179,0.0,0.307,0.412,92.035,4.0,,Universal Music Group,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",2188 +2189,spotify:track:2hQnLzly0jRPpLPp23sA4i,The Warrior (feat. Patty Smyth),"spotify:artist:3RFGnJaDVOyxL9YcFaKatu, spotify:artist:2dgfCEMSVETFp29mRpiFpz","Scandal, Patty Smyth",spotify:album:5i0kVvDtDgmorQXqX9rdaK,Warrior (feat. Patty Smyth),spotify:artist:3RFGnJaDVOyxL9YcFaKatu,Scandal,1984-08-21,https://i.scdn.co/image/ab67616d0000b27317931353d37145398045d2e6,1,1,240826,https://p.scdn.co/mp3-preview/da492fc0c30beab049673c1b6c3211ffe33fcb64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM18400617,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.606,0.777,2.0,-11.034,1.0,0.0347,0.089,0.0,0.321,0.858,123.079,4.0,,Columbia,P (P) 1984 Sony Music Entertainment,2189 +2190,spotify:track:5UWE6Y779YiIJVwZWOKYT1,I'll Meet You Halfway,spotify:artist:7u1mqP3ykglpCB2c1p1p5I,The Partridge Family,spotify:album:0BX46gm7cwfCmh2Yi1MvoZ,Come On Get Happy! The Very Best Of The Partridge Family,spotify:artist:7u1mqP3ykglpCB2c1p1p5I,The Partridge Family,2005-05-03,https://i.scdn.co/image/ab67616d0000b273d7c0842b96952fd5c4eb835b,1,11,232160,https://p.scdn.co/mp3-preview/2577a92e5ac273cd1ad26433e49797ec278d56b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USAR17400141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.546,0.412,0.0,-12.341,1.0,0.0327,0.63,4.4e-06,0.112,0.449,111.376,4.0,,Arista/Legacy,P This compilation (P) 2005 Arista Records LLC.,2190 +2191,spotify:track:4OKf7CcYuw5H2HptkcKxcP,You're My Best Friend - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:6X9k3hSsvQck2OfKYdBbXr,A Night At The Opera (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1975-11-21,https://i.scdn.co/image/ab67616d0000b273ce4f1737bc8a646c8c4bd25a,1,4,170800,https://p.scdn.co/mp3-preview/d7e9a5e712fbd3b51594835944daf3204ebdc798?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBUM71029609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.518,0.761,0.0,-7.025,1.0,0.0451,0.158,0.00805,0.0715,0.577,118.74,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",2191 +2192,spotify:track:2WOxDSMVbPy8rsK9oMtWuj,No More Tears (Enough Is Enough),"spotify:artist:2eogQKWWoohI3BSnoG7E2U, spotify:artist:7jmTilWYlKOuavFfmQAcu6","Donna Summer, Barbra Streisand",spotify:album:2TNGyJVlzMUsD5mry6qsw2,Summer: The Original Hits,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,2018-04-20,https://i.scdn.co/image/ab67616d0000b273f0062d3c4f9444cef85891f7,1,9,288426,https://p.scdn.co/mp3-preview/ec4d9dea920db17cc1e3cef470d166c7562f7b90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USWWW0137207,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg,new wave pop,soft rock,adult standards,operatic pop,soft rock",0.574,0.666,2.0,-7.875,0.0,0.0641,0.303,1.32e-05,0.0582,0.188,135.21,4.0,,Island Def Jam,"C © 2018 UMG Recordings, Inc., P This Compilation ℗ 2018 UMG Recordings, Inc.",2192 +2193,spotify:track:6Ehu8vSEK1aaHbDn8TMTED,"Hopelessly Devoted To You - From ""Grease"" Original Motion Picture Soundtrack",spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:00Rp3j7mKM3qZXkvF9iWcy,Grease (Limited Edition),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1998-01-01,https://i.scdn.co/image/ab67616d0000b273925e89f60b7f808988d94e15,1,3,185360,https://p.scdn.co/mp3-preview/6280980219425f18098ed42c3ea8a9fe0cea78d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057890003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.276,0.344,9.0,-13.115,1.0,0.0378,0.332,0.029,0.126,0.346,73.805,4.0,,Digital,"C © 1998 Universal International Music B.V., P ℗ 1998 Universal International Music B.V.",2193 +2194,spotify:track:6O20JhBJPePEkBdrB5sqRx,Diamonds,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:5pLlGJrxuQO3jMoQe1XxZY,Unapologetic (Deluxe),spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2012-12-11,https://i.scdn.co/image/ab67616d0000b2736dee21d6cd1823e4d6231d37,1,2,225146,https://p.scdn.co/mp3-preview/67ac87fb708878171147df1427f7ad1957c2bbca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USUM71211793,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.562,0.709,11.0,-4.92,0.0,0.0424,0.00124,0.0,0.109,0.401,91.958,4.0,,Def Jam Recordings,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",2194 +2195,spotify:track:1r1tO7AtiWjEjHLXpB86rs,Come and Get Your Love - Radio Edit,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,spotify:album:4SJ6x0Hlml18n0Ur9hnWNU,Another Night,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,1995-04-10,https://i.scdn.co/image/ab67616d0000b273fd06c1a7292da1064f45c1ca,1,2,193880,https://p.scdn.co/mp3-preview/14e84756145f77a47ea188fc3d60f0827b1cdae9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,DEC739500156,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,german techno,hip house",0.737,0.864,8.0,-6.558,1.0,0.0379,0.0193,1.31e-05,0.342,0.793,108.819,4.0,,Hansa Local,P (P)1995 BMG Berlin Musik GmbH,2195 +2196,spotify:track:52HAHV1j93s5B8GoTNI7DJ,"Oh, Pretty Woman",spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:48CvRZSBT0FbOHKLFfHy0n,The Essential Roy Orbison,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2006-03-28,https://i.scdn.co/image/ab67616d0000b2734516a5d74bac51f3afcba85a,1,21,176933,https://p.scdn.co/mp3-preview/32b12fd3fb70ee5f8d1f4d8bab1131700a7efb29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USSM16401575,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.609,0.584,9.0,-9.734,1.0,0.0353,0.725,0.0,0.0854,0.954,127.306,4.0,,Monument/Orbison Records/Legacy,P This compilation (P) 2006 Sony Music Entertainment,2196 +2197,spotify:track:5CMdasTE4CPRNSC9VSJrsz,Like A Child,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:2U9ONknz1iFEK9drEKLx8v,Backstreet's Back,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1997-08-12,https://i.scdn.co/image/ab67616d0000b273530cec85d4543693bd726167,1,6,305493,https://p.scdn.co/mp3-preview/7a2be2e1d0a7a6c0c589ed65b84f25dd3a15a695?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USJI19710101,spotify:user:bradnumber1,2024-03-14T02:34:17Z,"boy band,dance pop,pop",0.545,0.504,1.0,-8.239,1.0,0.0328,0.202,0.0,0.276,0.334,131.968,4.0,,Jive,P (P) 1997 Zomba Recording LLC,2197 +2198,spotify:track:1nYeVF5vIBxMxfPoL0SIWg,Hallucinate,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:7fJJK56U9fHixgO0HQkhtI,Future Nostalgia,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-03-27,https://i.scdn.co/image/ab67616d0000b2734bc66095f8a70bc4e6593f4f,1,7,208505,https://p.scdn.co/mp3-preview/e5d69bcaad84fea949e66e8c7cb46017ad8b34ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBAHT1901301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.627,0.69,10.0,-5.396,0.0,0.139,0.033,0.0,0.0742,0.627,122.053,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, with the exception of track 1 & 2 2019 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",2198 +2199,spotify:track:4KfSdst7rW39C0sfhArdrz,Barracuda,spotify:artist:34jw2BbxjoYalTp8cJFCPv,Heart,spotify:album:1LaeNhiUpL3X6N0LcFvuDF,Little Queen,spotify:artist:34jw2BbxjoYalTp8cJFCPv,Heart,1977-05-14,https://i.scdn.co/image/ab67616d0000b2739cef5b2e4c9104c678973f44,1,1,261933,https://p.scdn.co/mp3-preview/b742393cfac34ba605f319a4a8169ed2581bd18b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USSM10009075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,new wave pop,rock,singer-songwriter,soft rock",0.548,0.691,4.0,-13.553,0.0,0.0369,0.015,0.106,0.144,0.667,137.145,4.0,,Epic/Portrait,P (P) 1977 Sony Music Entertainment Inc.,2199 +2200,spotify:track:3nc420PXjTdBV5TN0gCFkS,Ocean (feat. Khalid),"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Martin Garrix, Khalid",spotify:album:1XQ6XbZ6ZM1V5iEtWlYDeH,Ocean (feat. Khalid),"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Martin Garrix, Khalid",2018-06-15,https://i.scdn.co/image/ab67616d0000b273b800b91af812df0ce0dd2883,1,1,216419,https://p.scdn.co/mp3-preview/2b378e1aadc49ca20669ed845529d6905117a65f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,NLM5S1800214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch edm,edm,pop,pop dance,progressive house,pop,pop r&b",0.506,0.693,0.0,-7.265,0.0,0.0412,0.584,9.58e-05,0.0891,0.221,139.912,4.0,,Epic Amsterdam,"P (P) 2018 STMPD RCRDS B.V. exclusively licensed to Epic Amsterdam, a division of Sony Music Entertainment Netherlands B.V.",2200 +2201,spotify:track:5BHQG3Ibf7qZUlhWFaXqDa,"break up with your girlfriend, i'm bored",spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:6sUzNE1SPNLBXBCZs3PIAO,"thank u, next",spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2018-02-07,https://i.scdn.co/image/ab67616d0000b27379826f235cf8bc00256db3a6,1,12,190440,https://p.scdn.co/mp3-preview/68854e1179b03c9130f52631d47d117c6a69e463?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USUM71900410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.723,0.563,5.0,-5.26,0.0,0.0797,0.0364,0.0,0.0873,0.329,170.011,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",2201 +2202,spotify:track:1058fW9H3fZA6QjYCdOBad,Don't Go Yet,spotify:artist:4nDoRrQiYLoBzwC5BhVJzF,Camila Cabello,spotify:album:4gxhWdfO9qAogokjIc2bPZ,Don't Go Yet,spotify:artist:4nDoRrQiYLoBzwC5BhVJzF,Camila Cabello,2021-07-23,https://i.scdn.co/image/ab67616d0000b273d24bb6aa36842e45bdd3d1cc,1,1,164842,https://p.scdn.co/mp3-preview/6af5e636aa35cc53f1b9d8476075c3d1f41c67ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM12104771,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.666,0.796,10.0,-6.967,0.0,0.103,0.0492,0.0,0.0442,0.61,110.108,4.0,,Epic,"P (P) 2021 Epic Records, a division of Sony Music Entertainment",2202 +2203,spotify:track:59RoNzxRRBYujJHA0eGUlC,It's Oh So Quiet,spotify:artist:7w29UYBi0qsHi5RTcv3lmA,Björk,spotify:album:51LMZCfC9erobzqcVNWYNE,Post,spotify:artist:7w29UYBi0qsHi5RTcv3lmA,Björk,1995-06-13,https://i.scdn.co/image/ab67616d0000b27378a5c9624d1e5d88b30980eb,1,4,218773,https://p.scdn.co/mp3-preview/c92830039f1e6fc8129b42d69ab46ea3d979266b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKY9500010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art pop,electronica,experimental pop,experimental vocal,icelandic experimental,icelandic pop,icelandic singer-songwriter,metropopolis,permanent wave,trip hop",0.459,0.127,3.0,-14.191,1.0,0.0544,0.618,0.0,0.0708,0.234,128.098,3.0,,Universal Music Group,"C © 1995 Bjork Overseas Ltd./One Little Indian Records Ltd., P ℗ 1995 Bjork Overseas Ltd./One Little Indian Records Ltd.",2203 +2204,spotify:track:40oiaDiyaFYGVWyf19uzFE,Horny - Horny '98 Radio Edit,spotify:artist:1MNmrXd8XDYuWog2vPReFK,Mousse T. Vs Hot 'n' Juicy,spotify:album:5odU0U2oqgd75UJKX6XXEc,True 90s (3 CD Set),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2006-01-01,https://i.scdn.co/image/ab67616d0000b273ee70ade112a70cd48af06d7e,1,17,187706,https://p.scdn.co/mp3-preview/5bdd0824fe2e654d29eae06bd1f3df57605889b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM9800157,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.684,0.861,11.0,-6.397,0.0,0.0309,0.000162,0.00725,0.0417,0.605,122.871,4.0,,Universal Music Taiwan,"C © 2006 Spectrum Music, P ℗ 2006 Spectrum Music",2204 +2205,spotify:track:3n2dV8PXv1bs8KP31UhbVj,Sadeness - Pt. 1 / Radio Edit,spotify:artist:3DmG65yHQsMms7WAvrZOdt,Enigma,spotify:album:4yUhIQBLe1WL10bVKP7kRx,The Platinum Collection,spotify:artist:3DmG65yHQsMms7WAvrZOdt,Enigma,2009-01-01,https://i.scdn.co/image/ab67616d0000b2739e6f00eecd69a079407402b0,1,1,260400,https://p.scdn.co/mp3-preview/4766ba68ac8edd17142236688c9a74681519765d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,DEG129000013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,gregorian dance",0.603,0.625,7.0,-10.168,1.0,0.0374,0.163,0.072,0.114,0.536,95.669,4.0,,Virgin,"C © 2009 Michael Cretu, P This Compilation ℗ 2009 Michael Cretu",2205 +2206,spotify:track:1KwVr66tFOfuMypJZtMwqA,The Hitman - 7'' Mix,spotify:artist:3uuPMhG3hFjDQwMat8Zj9b,A.B. Logic,spotify:album:3wnrcjFv9ft7UNsi1hGCDN,The Hitman,spotify:artist:3uuPMhG3hFjDQwMat8Zj9b,A.B. Logic,2010-02-23,https://i.scdn.co/image/ab67616d0000b2736983ef260d12e24c47bb049c,1,1,244333,https://p.scdn.co/mp3-preview/2cbeee3e3d87f0b411dddbd5c61a7e1b9cd14570?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,BE-GO5-92-00010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house",0.685,0.91,9.0,-10.281,1.0,0.0459,0.0347,0.0419,0.265,0.978,125.983,4.0,,USA Import,"C 2010 99 USA Import Music, Belgium, P 2010 99 USA Import Music, Belgium",2206 +2207,spotify:track:3dovg4Mfj5EksLrMPrIzSj,Black Box,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,spotify:album:7J39iUgfJHtgDEujvpT30C,Introducing,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,2009-12-08,https://i.scdn.co/image/ab67616d0000b273c16e807dd877d3e186f4b6a5,1,1,209253,https://p.scdn.co/mp3-preview/bc879d8bbe485d40842d5d39ddff09506944539d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUBM00900465,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,nz christian,nz pop",0.689,0.811,7.0,-4.708,1.0,0.0264,0.00288,0.0,0.207,0.47,123.008,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd.,2207 +2208,spotify:track:04KTF78FFg8sOHC1BADqbY,Hot In Herre,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,spotify:album:4HUUHHXBXImwksfbSPqE7q,Nellyville,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2002-06-25,https://i.scdn.co/image/ab67616d0000b273a8b9f97b9ea065b9a857e93f,1,3,228240,https://p.scdn.co/mp3-preview/e3d856695fd100c4c2cf21e6c65fac1e0649cc02?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,USUR10200371,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.956,0.741,11.0,-4.753,0.0,0.124,0.204,0.0,0.0615,0.911,107.075,4.0,,Motown,"C © 2002 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2002 Universal Motown Records, a division of UMG Recordings, Inc.",2208 +2209,spotify:track:37QOvoAg1EC0PgWnfMrRmi,Shut Up and Let Me Go,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,spotify:album:1b9KEBOO7A5awr16aCd6VP,We Started Nothing,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,2007,https://i.scdn.co/image/ab67616d0000b2735a478451a8e3cbd1b11679dc,1,5,171226,https://p.scdn.co/mp3-preview/3cd49bb8f8e88094467a6741a351eb6b7abff2fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBARL0800134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,electropop,neo-synthpop,new rave",0.852,0.927,7.0,-4.497,1.0,0.0581,0.0109,0.00268,0.054,0.887,107.993,4.0,,Columbia,P Track 1 (P) 2007; all other tracks (P) 2008 Sony Music Entertainment UK,2209 +2210,spotify:track:3XrfwUK5XIgwGHSX5yLpe2,Naked and Sacred,spotify:artist:4G4wyL5fut6xdMUPZzDpyJ,Chynna Phillips,spotify:album:4UipPMhddmwrjkNP11gegU,Naked And Sacred,spotify:artist:4G4wyL5fut6xdMUPZzDpyJ,Chynna Phillips,1995-01-01,https://i.scdn.co/image/ab67616d0000b2737699447920915d3c979cc5f5,1,1,253026,https://p.scdn.co/mp3-preview/d440dd4b5ea7c30307fba48797927386b6f0f992?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USEM39500090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.669,0.8,5.0,-7.031,1.0,0.0365,0.189,2.48e-06,0.0877,0.654,119.907,4.0,,EMI Catalogue,"C © 1995 Capitol Records Inc., P ℗ 1995 Capitol Records Inc.",2210 +2211,spotify:track:0Z80GSrYzoXIf0mCpBlcml,Free Me,spotify:artist:45O9BwPMyywM755SYUK0sP,Uriah Heep,spotify:album:32YrOOkXxEnEwE4orxwrDJ,Innocent Victim (Expanded Version),spotify:artist:45O9BwPMyywM755SYUK0sP,Uriah Heep,1977-02-01,https://i.scdn.co/image/ab67616d0000b2733eab74e1208344373634a607,1,6,213040,https://p.scdn.co/mp3-preview/ff55e95cbdf9fd7c5aca9dfb422fb8bde72feec2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE0615375,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,hard rock,progressive rock,symphonic rock",0.759,0.513,11.0,-13.187,0.0,0.0288,0.0436,2.39e-05,0.0524,0.732,115.753,4.0,,Castle Communications,"C © 2004 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2004 Sanctuary Records Group Ltd., a BMG Company",2211 +2212,spotify:track:1W0z9ZFfzkpvAQ23Sd7Cti,Body Like A Back Road,spotify:artist:2kucQ9jQwuD8jWdtR9Ef38,Sam Hunt,spotify:album:5MLTYZ0gTefWgNoRhGxmw8,Body Like A Back Road,spotify:artist:2kucQ9jQwuD8jWdtR9Ef38,Sam Hunt,2017-02-01,https://i.scdn.co/image/ab67616d0000b27322cee00a83b1e282a811a150,1,1,165386,https://p.scdn.co/mp3-preview/06b53d2665f94946d2fc6971aa76a15a390cda0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71700575,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country pop,modern country rock",0.731,0.466,5.0,-7.219,1.0,0.0327,0.484,1.42e-06,0.105,0.653,98.959,4.0,,Universal Music Group,"C © 2017 MCA Nashville, a Division of UMG Recordings, Inc., P ℗ 2017 MCA Nashville, a Division of UMG Recordings, Inc.",2212 +2213,spotify:track:31MNHKE86sEXzIglbGQ6mu,Got Me Started,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,spotify:album:5UcGyEltve5psjxSRsHx8E,Something To Give Each Other,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2023-10-13,https://i.scdn.co/image/ab67616d0000b27367103283a4eb57578a428252,1,7,198448,https://p.scdn.co/mp3-preview/11992d7655397c15edbdc2981c4231a9d53bf8d5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,AUUM72300183,spotify:user:bradnumber1,2024-02-23T20:09:50Z,"australian pop,pop,viral pop",0.773,0.679,7.0,-6.51,0.0,0.0315,0.219,0.00263,0.297,0.544,127.002,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2023 Universal Music Australia Pty Ltd., P ℗ 2023 Universal Music Australia Pty Ltd.",2213 +2214,spotify:track:45aBsnKRWUzhwbcqOJLwfe,This Is Me,"spotify:artist:7HV2RI2qNug4EcQqLbCAKS, spotify:artist:63nv0hWWDob56Rk8GlNpN8","Keala Settle, The Greatest Showman Ensemble",spotify:album:7ayBZIe1FHkNv0T5xFCX6F,The Greatest Showman (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-12-08,https://i.scdn.co/image/ab67616d0000b273128057b40732c042c86de1dd,1,7,234706,https://p.scdn.co/mp3-preview/f956356f4a3bf4d34fc93c66e43e6713c85d0a5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USAT21704622,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"broadway,hollywood,show tunes,movie tunes",0.284,0.704,2.0,-7.276,1.0,0.186,0.00583,0.000115,0.0424,0.1,191.702,4.0,,Atlantic Records,"C © 2017 This compilation Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation., P ℗ 2017 This compilation Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation.",2214 +2215,spotify:track:0fonScmHUzC0MglSLn9saA,Da Doo Ron Ron (When He Walked Me Home),spotify:artist:7rewR1TVjhisjI6gauUamf,The Crystals,spotify:album:11ho9FxQbJjMbQn1P1yWpm,Da Doo Ron Ron: The Very Best of The Crystals,spotify:artist:7rewR1TVjhisjI6gauUamf,The Crystals,2011-02-22,https://i.scdn.co/image/ab67616d0000b273a93e542069f023c3c9be9b8d,1,12,140120,https://p.scdn.co/mp3-preview/efdf6cf56a0b63cd3b21b5067a05968746d9942e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USQX91100116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,doo-wop,rock-and-roll",0.535,0.797,3.0,-7.533,1.0,0.0459,0.48,3.42e-05,0.141,0.613,148.835,4.0,,Legacy Recordings,"P (P) 2011 Phil Spector Records, Inc. Under exclusive license to EMI Blackwood Music Inc./Sony Music Entertainment",2215 +2216,spotify:track:2T5Ch09nefwckOu5NQvjIk,Carolina in My Mind,spotify:artist:0vn7UBvSQECKJm2817Yf1P,James Taylor,spotify:album:2L4U4JjEADYaVltkvDrkCC,Greatest Hits,spotify:artist:0vn7UBvSQECKJm2817Yf1P,James Taylor,1976,https://i.scdn.co/image/ab67616d0000b27323ed6d11c4dff5ce4c47a7e7,1,2,238573,https://p.scdn.co/mp3-preview/324b051ba2f51c39b4ba25d4f2be7655460c92f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USWB19900190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.579,0.267,4.0,-15.11,1.0,0.0348,0.118,0.000562,0.132,0.353,74.899,4.0,,Rhino/Warner Records,"C © 1988 Warner Records Inc., P ℗ 1988 Warner Records Inc.",2216 +2217,spotify:track:79cuOz3SPQTuFrp8WgftAu,There's Nothing Holdin' Me Back,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:5yYFrOnqG8cEciKnsxHz2r,Illuminate (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2017-04-20,https://i.scdn.co/image/ab67616d0000b273f9cbd0c07513a7232cd6b9a7,1,1,199440,https://p.scdn.co/mp3-preview/a484903cc14132afeb3614b674a01c42a45d8109?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71702833,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.857,0.8,2.0,-4.035,1.0,0.0583,0.381,0.0,0.0913,0.966,121.996,4.0,,Universal Music Group,"C © 2016 Island Records, a division of UMG Recordings, Inc., P ℗ 2017 Island Records, a division of UMG Recordings, Inc.",2217 +2218,spotify:track:6eIacmhkE82vZlMDnGS7aP,Bad (feat. Vassy) - Radio Edit,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:3gk0OYeLFWYupGFRHqLSR7, spotify:artist:7HqEmV7FeCi16bQyHMpIrF","David Guetta, Showtek, VASSY",spotify:album:77UW17CZFyCaRLHdHeofZu,Listen,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2014-11-10,https://i.scdn.co/image/ab67616d0000b2733862d62a50dc6b928651bdeb,1,15,170625,https://p.scdn.co/mp3-preview/febdb0afbc31ab7afe87a58c42f4bde6d5f7f044?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GB28K1400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,classic hardstyle,dutch house,edm,electro house,euphoric hardstyle,melbourne bounce,pop dance,progressive electro house,australian dance",0.614,0.972,5.0,-3.927,0.0,0.088,0.00125,0.0186,0.328,0.411,127.966,4.0,,Parlophone (France),"C © 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company, P ℗ 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company",2218 +2219,spotify:track:76RQtifxSIIHxZHn2GxQTq,Your Loss I'm Found,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:3hQ64JbgfPMbXwYRvmZ41z,Sweet Talker (Deluxe Version),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2014-10-10,https://i.scdn.co/image/ab67616d0000b27301b57b2d37dad2a9e1fb10b9,1,13,217306,https://p.scdn.co/mp3-preview/44c3e3253e37e70dd79b79528f94e934f800985b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71412834,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.583,0.744,7.0,-4.957,1.0,0.0311,0.00927,2.57e-05,0.22,0.528,126.032,4.0,,Universal Music Group,"C © 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC, P ℗ 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC",2219 +2220,spotify:track:3bbqxv8GN3RhaPnrWxFbmP,All Out Of Love,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,spotify:album:5s5iUa9XoCRVXNJiTawxjB,Lost In Love,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,1980-01-01,https://i.scdn.co/image/ab67616d0000b273ce152af8c51f3030bbd6435e,1,2,243600,https://p.scdn.co/mp3-preview/819c2291a7a4e9250029f08bde54ae4912f54543?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USAR18000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.52,0.349,0.0,-12.738,1.0,0.0267,0.333,2.69e-06,0.194,0.379,108.401,4.0,,EMI Music Australia,"C © 1980 Big Time Phonograph Recording Co. Pty. Ltd., P ℗ 1980 Big Time Phonograph Recording Co. Pty. Ltd.",2220 +2221,spotify:track:4ACxa9buEUnOdYEoPcnMpi,Your Woman,spotify:artist:1MPcILKoMCJym9KscdYxuM,White Town,spotify:album:3Xp1KG3G31VGZgV8JpMSX6,Women In Technology,spotify:artist:1MPcILKoMCJym9KscdYxuM,White Town,1997-02-24,https://i.scdn.co/image/ab67616d0000b273f1ad059f340b79a88f85ae64,1,4,259893,https://p.scdn.co/mp3-preview/d6d1f4269e01b92385012dbe30c5cadc244996ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,GBAYE9600116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,derby indie,0.815,0.605,5.0,-9.118,0.0,0.0368,0.033,0.684,0.114,0.795,102.642,4.0,,Echo,"C © 1997 The Echo Label Limited, a BMG Company, P ℗ 1997 The Echo Label Limited, a BMG Company",2221 +2222,spotify:track:0xP3Hf1rgu3tD7o2JD9RnN,The Things I Love In You - 2011 Remastered,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:7LSyQTZKN2Zf6nYRnPoAcS,The Last Wave Of Summer,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-01-01,https://i.scdn.co/image/ab67616d0000b2732bf0ae242ff4fba89c34906e,1,2,198416,https://p.scdn.co/mp3-preview/ac78b4e2c6f2bda7172f401e41912c2c399be47f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUU741100010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.435,0.879,2.0,-3.763,0.0,0.0419,0.000351,0.00128,0.274,0.402,132.23,4.0,,Cold Chisel,"C © 2011 Cold Chisel Pty Ltd, P ℗ 2011 Cold Chisel Pty Ltd",2222 +2223,spotify:track:4P57hnx1SK88ULEcQls2vV,Barbra Streisand - Radio Edit,spotify:artist:0q8J3Yj810t5cpAYEJ7gxt,Duck Sauce,spotify:album:4T7mrief1c7nZ1EqzgM4iV,Barbra Streisand,spotify:artist:0q8J3Yj810t5cpAYEJ7gxt,Duck Sauce,2010-01-01,https://i.scdn.co/image/ab67616d0000b273870aff210679213087c285c9,1,1,194531,,False,0,GBSXS1000131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco house,0.764,0.925,1.0,-1.997,1.0,0.0974,0.000747,0.136,0.218,0.456,127.948,4.0,,Universal Music Australia (Distribution),"C © 2010 X-Mix & This Is Music Ltd, under exclusive license to etcetc Music Pty Ltd, P ℗ 2010 X-Mix & This Is Music Ltd, under exclusive license to etcetc Music Pty Ltd",2223 +2224,spotify:track:4c0rkFPszqQTyC753tsCMU,My Boo - Hitman's Club Mix,spotify:artist:4JbmXqez7WvTggoxn3UpVT,Ghost Town DJs,spotify:album:5EvpbZ6QczJlnMX3kbxKYi,My Boo (Hitman's Club Mix),spotify:artist:4JbmXqez7WvTggoxn3UpVT,Ghost Town DJs,1996-03-26,https://i.scdn.co/image/ab67616d0000b273db060eca4487746c7307a965,1,1,346840,https://p.scdn.co/mp3-preview/6ab47114a4756eaa7857b55d6452a3d445d786fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM19600644,spotify:user:bradnumber1,2021-08-08T09:26:31Z,atlanta bass,0.885,0.477,6.0,-9.196,0.0,0.0664,0.000131,0.000664,0.336,0.691,130.078,4.0,,Columbia,"P (P) 1996 Columbia Records, a division of Sony Music Entertainment",2224 +2225,spotify:track:6kooDsorCpWVMGc994XjWN,Black Betty,spotify:artist:6FITmSxIMsk6TfulFiCIIz,Ram Jam,spotify:album:4z2REZpvRsVMpHFrsIz7PD,Ram Jam,spotify:artist:6FITmSxIMsk6TfulFiCIIz,Ram Jam,1977-06-20,https://i.scdn.co/image/ab67616d0000b273fa5dcfc4b1b99a0598224758,1,1,238973,https://p.scdn.co/mp3-preview/c2be3d98da62f643e634154e835dae936d79bf90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM10211288,spotify:user:bradnumber1,2021-08-08T09:26:31Z,southern rock,0.465,0.907,11.0,-6.404,0.0,0.113,0.0241,0.00118,0.13,0.681,117.293,4.0,,Epic,"P (P) 1977 Epic Records, a division of Sony Music Entertainment",2225 +2226,spotify:track:3o1CUVeHIid49sabk6A6Nf,Forever Yours - Avicii Tribute,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:1vCWHaC5f2uS3yhpwWbIA6, spotify:artist:5JYo7gm2dkyLLlWHjxS7Dy","Kygo, Avicii, Sandro Cavazza",spotify:album:63VE57Ol6fcAC0fb6kGx5y,Forever Yours (Avicii Tribute),"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:1vCWHaC5f2uS3yhpwWbIA6, spotify:artist:5JYo7gm2dkyLLlWHjxS7Dy","Kygo, Avicii, Sandro Cavazza",2020-01-24,https://i.scdn.co/image/ab67616d0000b27354f90bb37c316c173c7a1cb7,1,1,193846,https://p.scdn.co/mp3-preview/546464cb4cd675fbece02df60d2af32d3b2d5c71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,SEUM71901489,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,dance pop,edm,pop,pop dance,swedish pop",0.529,0.612,10.0,-8.794,1.0,0.052,0.253,0.0,0.246,0.434,119.272,4.0,,Universal Music AB,"C © 2020 Ineffable Music AB, under exclusive license to Universal Music AB, P ℗ 2020 Ineffable Music AB, under exclusive license to Universal Music AB",2226 +2227,spotify:track:6O5PIO5pAWxdoxvaUFQ02G,Leader Of The Pack,spotify:artist:1WvziZcLLYLoMMdmQx7qcN,The Shangri-Las,spotify:album:76fF3MnSilSrvfW1fAWHAZ,The Best Of The Shangri-Las,spotify:artist:1WvziZcLLYLoMMdmQx7qcN,The Shangri-Las,1996-01-01,https://i.scdn.co/image/ab67616d0000b2739bd4306ef696c6fcfd8e417b,1,2,171333,https://p.scdn.co/mp3-preview/710c0c762e12607f53cf2422ec9af58293e06b65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USPR36402725,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,classic girl group,rock-and-roll",0.423,0.55,0.0,-8.738,1.0,0.0975,0.708,0.0,0.682,0.313,119.702,4.0,,Mercury Records,"C © 1996 The Island Def Jam Music Group, P This Compilation ℗ 1996 The Island Def Jam Music Group",2227 +2228,spotify:track:2xSExwwFXzukzOdR6iVYMk,Boys Like You,"spotify:artist:5QSx2vpiSchSeCwc0qmfNI, spotify:artist:6JL8zeS1NmiOftqZTRgdTz, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR","Who Is Fancy, Meghan Trainor, Ariana Grande",spotify:album:23O8NRd6IvGYh0vutNEHtT,Boys Like You,spotify:artist:5QSx2vpiSchSeCwc0qmfNI,Who Is Fancy,2015-11-23,https://i.scdn.co/image/ab67616d0000b2735b32724234f6d6669a32f074,1,1,194533,https://p.scdn.co/mp3-preview/4f01e359c3db1724e8454ea559cbdede734be323?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USUM71518060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,pop",0.739,0.597,0.0,-5.335,0.0,0.0801,0.0997,0.0,0.119,0.787,104.991,4.0,,Fancy/Silent Records,"C © 2015 Republic Records, a division of UMG Recordings, Inc., P ℗ 2015 Republic Records, a division of UMG Recordings, Inc.",2228 +2229,spotify:track:3Rhxe6P1im82NFVkt9X2qZ,I'm Gonna Make You Love Me,"spotify:artist:0rXI0q8Cahq6numvPlloaq, spotify:artist:3RwQ26hR2tJtA8F9p2n7jG","Diana Ross & The Supremes, The Temptations",spotify:album:7tZt4EApjs2MSzt0OJ1vaT,Diana Ross & The Supremes Join The Temptations,"spotify:artist:0rXI0q8Cahq6numvPlloaq, spotify:artist:3RwQ26hR2tJtA8F9p2n7jG","Diana Ross & The Supremes, The Temptations",1968-11-08,https://i.scdn.co/image/ab67616d0000b273c135abb635755dfccee0c180,1,4,187333,https://p.scdn.co/mp3-preview/20a20768385062d7de4613fc0f5e1a1ccf5f5917?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USMO16882602,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,motown,classic soul,disco,memphis soul,motown,soul",0.635,0.393,10.0,-11.894,1.0,0.0428,0.394,0.0,0.255,0.427,98.332,4.0,,UNI/MOTOWN,"C © 1968 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2000 Motown Records, a Division of UMG Recordings, Inc.",2229 +2230,spotify:track:6Jq9SD7G1CC5A9G9wYyJYk,Lying,spotify:artist:2ZmmVo9SlM8XJH97UWEu7l,Amy Meredith,spotify:album:7BKUaIZLd76SofqrLIusog,Restless,spotify:artist:2ZmmVo9SlM8XJH97UWEu7l,Amy Meredith,2010-07-02,https://i.scdn.co/image/ab67616d0000b27399d7025a81839a8b0e7f4a15,1,3,180266,https://p.scdn.co/mp3-preview/051e408c18d6a58907316e98fe994326aedf9a70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00900284,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.481,0.947,2.0,-2.29,0.0,0.0646,0.00423,0.0,0.265,0.633,146.771,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd. except track 2 (P) 2009 Sony Music Entertainment Australia Pty Ltd.,2230 +2231,spotify:track:3DBT2ar4v5DW6Dg1sLVb3Y,Won't Sleep,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,spotify:album:1ca9Xo8Wl7zjHcBtjQ4Ugc,Won't Sleep,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,2021-05-14,https://i.scdn.co/image/ab67616d0000b2736dc72e71f8ddc1bfe74a70aa,1,1,197380,https://p.scdn.co/mp3-preview/a4c85f201750e08e136a88d85cc7a6cb74a6fbbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USAT22101918,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.885,0.492,7.0,-4.747,1.0,0.08,0.13,0.0,0.12,0.643,138.008,4.0,,Sony Music Entertainment,P (P) 2021 Bad Batch Records,2231 +2232,spotify:track:49eXdstc4EiOS2xpWDMg1d,Better,spotify:artist:3vgQA38yGGMvn4DHjsVre5,The Screaming Jets,spotify:album:4nAltNPjA810bq2FM02anz,All For One,spotify:artist:3vgQA38yGGMvn4DHjsVre5,The Screaming Jets,1991-12-02,https://i.scdn.co/image/ab67616d0000b2737565aff5d8c9b85ae91a02fa,1,3,277200,https://p.scdn.co/mp3-preview/ae81785220438011edfa67e7e0e483a709ff31a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUBM09120203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.52,0.636,2.0,-10.156,1.0,0.0461,0.000337,0.0,0.0542,0.387,101.394,4.0,,rooArt,P (P) 1991 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,2232 +2233,spotify:track:0E4FnP3NOVpKthXvE4WtZP,Dreams Are Ten A Penny - Radio Mix,"spotify:artist:0oMBhLCTiFfKqdWl3ESWX0, spotify:artist:4m6idJ7auie3tzLzaTWsZO","Et Cetera, Kincade",spotify:album:254KTnBJzIQAgvpTZXQRrO,Dreams Are Ten A Penny,"spotify:artist:0oMBhLCTiFfKqdWl3ESWX0, spotify:artist:4m6idJ7auie3tzLzaTWsZO","Et Cetera, Kincade",2009-01-16,https://i.scdn.co/image/ab67616d0000b273829f4da8a6df6ce40df1c858,1,1,163946,https://p.scdn.co/mp3-preview/4d1ed3a4437ea50a161cb34bb91f9942db2d0214?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,DEH960500107,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.587,0.943,0.0,-6.408,1.0,0.112,0.0758,0.0,0.138,0.464,123.552,4.0,,AKASA Records,"C 2009 AKASA Records, P 2009 AKASA Records",2233 +2234,spotify:track:4rUTAkOU7OkVGeQuyQCHhF,Sledgehammer,spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt,Fifth Harmony,spotify:album:0zAsh6hObeNmFgFPrUiFcP,Reflection (Deluxe),spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt,Fifth Harmony,2015-01-30,https://i.scdn.co/image/ab67616d0000b2735bdd9e580fdda5e676a25e6a,1,3,230906,https://p.scdn.co/mp3-preview/a8d2802d91bc61af61761ad95945d2de174f977b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USSM11406643,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show",0.671,0.777,2.0,-4.322,1.0,0.046,0.0057,0.0011,0.0783,0.289,99.98,4.0,,Syco Music/Epic,"P (P) 2014, 2015 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",2234 +2235,spotify:track:3jfh72x6NytXn7SkkLD2T2,Catch,spotify:artist:5squ8uM6fhMQY71t9xobJC,Kosheen,spotify:album:4BZb4Yb4GJyYlLCBrsXaRS,Resist,spotify:artist:5squ8uM6fhMQY71t9xobJC,Kosheen,2001-07-02,https://i.scdn.co/image/ab67616d0000b273d6f76ddb447ef984b0abf33d,1,3,201546,https://p.scdn.co/mp3-preview/951038d6b3229e91e67cf4fff2186046b02b36be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAZG0010103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,trip hop",0.655,0.941,10.0,-4.577,0.0,0.0473,0.00264,1.8e-05,0.384,0.752,130.003,4.0,,Arista,P (P) Moksha Recordings Ltd 2001,2235 +2236,spotify:track:1KAkTstWzEOT24VqCDkKdl,Jet Black Heart,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:30Q7jkvKL5FR2NBR2oDP69,Jet Black Heart,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2015-08-28,https://i.scdn.co/image/ab67616d0000b273dbe53a7f2089e2b86ce66eac,1,1,221715,https://p.scdn.co/mp3-preview/52716e7f5b4a917267b4e49fbf60a458ca25fbcf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71505155,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.512,0.839,11.0,-4.262,0.0,0.0339,0.000166,0.0,0.089,0.54,153.924,4.0,,Universal Music Group,"C © 2015 Capitol Records Ltd., P ℗ 2015 Capitol Records Ltd.",2236 +2237,spotify:track:6aOFdNRGDwLeMsKCRbtijm,Automatic Lover (Call For Love),spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,spotify:album:4SJ6x0Hlml18n0Ur9hnWNU,Another Night,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,1995-04-10,https://i.scdn.co/image/ab67616d0000b273fd06c1a7292da1064f45c1ca,1,8,226413,https://p.scdn.co/mp3-preview/e57ef0ffa1c290a2e9f21dc19c4a096c0e57431b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,DEC739400377,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,german techno,hip house",0.686,0.935,5.0,-9.04,0.0,0.0319,0.0552,0.633,0.155,0.515,132.993,4.0,,Hansa Local,P (P)1995 BMG Berlin Musik GmbH,2237 +2238,spotify:track:6wfK1R6FoLpmUA9lk5ll4T,Please Mister Postman - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:1aYdiJk6XKeHWGO3FzHHTr,With The Beatles (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1963-11-22,https://i.scdn.co/image/ab67616d0000b273608a63ad5b18e99da94a3f73,1,7,154160,https://p.scdn.co/mp3-preview/42b1e0b109b3def1844ab67a1b9d7ee0ec31850e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAYE0601430,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.552,0.644,9.0,-9.129,1.0,0.0372,0.675,0.0,0.36,0.961,122.546,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",2238 +2239,spotify:track:6gGboAhqHBqs5szVLobC41,God Only Knows,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:2OXZJLXxM8jrY3gBoVNfmz,Nobody but Me (Deluxe),spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2016-10-21,https://i.scdn.co/image/ab67616d0000b273576629f3c4631eb55612a7c7,1,13,255400,https://p.scdn.co/mp3-preview/323b9e25a526899ee206949f350e82844d0a0e2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USRE11600463,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.305,0.0307,6.0,-15.627,1.0,0.0409,0.971,0.336,0.0985,0.282,75.427,4.0,,Reprise,"C © 2016 Reprise Records, P ℗ 2016 Reprise Records",2239 +2240,spotify:track:0k2GOhqsrxDTAbFFSdNJjT,Temperature,spotify:artist:3Isy6kedDrgPYoTS1dazA9,Sean Paul,spotify:album:32Bu3ETQhR1PFCj3ndDlYf,The Trinity,spotify:artist:3Isy6kedDrgPYoTS1dazA9,Sean Paul,2005-09-26,https://i.scdn.co/image/ab67616d0000b27369ba684e533706bafe248ef3,1,11,218573,https://p.scdn.co/mp3-preview/fd0b2beda757e9b8dcaf04e71c1d6cada0659765?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USAT20505520,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dancehall,pop,pop rap",0.951,0.6,0.0,-4.675,0.0,0.0685,0.106,0.0,0.0712,0.822,125.04,4.0,,VP Records,"C © 2005 VP Records, a division of VP Music Group, Inc., P ℗ 2005 VP Records, a division of VP Music Group, Inc.",2240 +2241,spotify:track:0qa47H0UtlOFq9TLSVrv9R,Harden My Heart,spotify:artist:3VJakY5Yw5phAOF4Bada5v,Quarterflash,spotify:album:0ZacOBwzregRuuOf6Bn7Zp,MacGruber,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b2737ac3b4cc8be77b954359ee2e,1,11,232533,https://p.scdn.co/mp3-preview/7d815f7ae99b46ecdf71bfac98a0a469606bedda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USGF18100301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,new wave pop,soft rock",0.513,0.717,11.0,-5.382,0.0,0.0619,0.0878,0.0,0.105,0.457,123.419,4.0,,Relativity Music Group,"C © 2010 Relativity Music Group, LLC, P This Compilation ℗ 2010 Relativity Music Group, LLC",2241 +2242,spotify:track:1qR8saLKsf4oIGdpt4QUQc,We Belong Together,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:1qmkUjb9IsZgAttODKZPSB,The Emancipation of Mimi (International Jewel),spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2005,https://i.scdn.co/image/ab67616d0000b2735bae45b566bf091bb3b3018c,1,2,201400,https://p.scdn.co/mp3-preview/7d50c3b94dd974002f6185412479f13bf2f21a0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20500195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.842,0.476,0.0,-7.918,1.0,0.0626,0.0263,0.0,0.0865,0.767,140.01,4.0,,Universal Music Group,"C © 2004 Mariah Carey, P ℗ 2004 The Island Def Jam Music Group and Mariah Carey",2242 +2243,spotify:track:6U7QjXYOaLJ741cIWPBTyN,I Drove All Night,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:48CvRZSBT0FbOHKLFfHy0n,The Essential Roy Orbison,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2006-03-28,https://i.scdn.co/image/ab67616d0000b2734516a5d74bac51f3afcba85a,2,16,226893,https://p.scdn.co/mp3-preview/ef6ce7aced12fc590248a3b19f9e50532e50333f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USOR40400007,spotify:user:bradnumber1,2022-06-30T00:04:52Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.478,0.624,5.0,-11.16,1.0,0.0393,0.655,0.00197,0.114,0.579,138.708,4.0,,Monument/Orbison Records/Legacy,P This compilation (P) 2006 Sony Music Entertainment,2243 +2244,spotify:track:6PKZZ6EAm5EogqTevcasH7,Let Me Be Me,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:2PzvfJGK74FgwPrvMB0qOh,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2008-11-17,https://i.scdn.co/image/ab67616d0000b2732e14e3c145c0cac92a12feac,1,11,229693,https://p.scdn.co/mp3-preview/c38ad816d9b7fe05fb81dfd4eb88de8ef3a94055?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUBM00800497,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.54,0.76,10.0,-6.677,1.0,0.105,0.0142,0.0,0.343,0.631,159.909,4.0,,Sony BMG Music Entertainment,P (P) 2008 SONY BMG Music Entertainment (Australia) Pty Limited,2244 +2245,spotify:track:1fmSHJcPDsLYo6sW423k8B,Say Say Say - Remastered 2015,"spotify:artist:4STHEaNw4mPZ2tzheohgXB, spotify:artist:3fMbdgg4jU18AjLCKBhRSm","Paul McCartney, Michael Jackson",spotify:album:31tA3pdbeijTQiJPLt69TJ,Pipes Of Peace (Deluxe Edition),spotify:artist:4STHEaNw4mPZ2tzheohgXB,Paul McCartney,1983-10-28,https://i.scdn.co/image/ab67616d0000b273f27890689d033f273e3a4a70,1,2,235693,https://p.scdn.co/mp3-preview/e263de4ccf737d74d6957090786c0946d25e5c08?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCCS1500052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,mellow gold,rock,soft rock,r&b,soul",0.83,0.672,10.0,-10.436,0.0,0.0471,0.126,0.000819,0.0478,0.808,117.726,4.0,,Universal Music Group,"C © 2015 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2015 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",2245 +2246,spotify:track:60cEZYbIcIrSTn4pSAWjTQ,The Thread,spotify:artist:4OtPXWoouRADlNtbfgWJro,The Keymakers,spotify:album:6oZld2b6dwllw9PMMO9uBb,The Thread,spotify:artist:4OtPXWoouRADlNtbfgWJro,The Keymakers,2021-07-16,https://i.scdn.co/image/ab67616d0000b2736ccc97e9a5022e4793433d1a,1,1,299000,https://p.scdn.co/mp3-preview/ae993aa6d863a5db87880c3910fafa6b57af0125?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMBZ92182402,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.726,0.789,10.0,-7.916,0.0,0.05,0.104,0.585,0.105,0.291,120.002,4.0,,The Keymakers,"C (C) 2021 Red Pill Creative, P (P) 2021 Red Pill Creative",2246 +2247,spotify:track:1VdZ0vKfR5jneCmWIUAMxK,The A Team,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:0W5GGnapMz0VwemQvJDqa7,+,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2011-09-09,https://i.scdn.co/image/ab67616d0000b273e6d489d359c546fea254f440,1,1,258373,https://p.scdn.co/mp3-preview/1cab73cd0e33cec8fe9a0ffe7319170862f37f8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBAHS1100095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.642,0.289,9.0,-9.918,1.0,0.0367,0.669,0.0,0.18,0.407,84.996,4.0,,Atlantic Records UK,"C © 2011 Warner Music UK Limited, P ℗ 2011 Warner Music UK Limited",2247 +2248,spotify:track:6ez6YwlVj3t1dqzs3jGOzo,Wild One,spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,spotify:album:0rkqvw3a2iubcl4GAfZ0gn,Wild One,spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,2013-05-14,https://i.scdn.co/image/ab67616d0000b273dc329c90b401759979dd3293,1,1,141008,https://p.scdn.co/mp3-preview/e1ab2a362e1655bdd987a07ca2d0b2856c58d61d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMFME1313934,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,merseybeat,rock-and-roll",0.613,0.737,7.0,-4.684,1.0,0.0447,0.741,7.84e-05,0.0485,0.913,147.902,4.0,,Black Sheep Music,C (C) 2013 Entertain Me Europe LTD,2248 +2249,spotify:track:5UBtMSch1aLKlsgDz54Wfy,This Is My Song,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,spotify:album:5IhqVCU8v1xX3efFYl8dSP,Downtown - The Best of Petula Clark,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,1996-01-01,https://i.scdn.co/image/ab67616d0000b27377b2be898ac1ae1e3ffe3141,1,5,193765,https://p.scdn.co/mp3-preview/d086b8620eef832bd653bc3be300212e1ef484b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6700059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,folk rock,merseybeat,rock-and-roll,rockabilly",0.179,0.39,5.0,-8.15,1.0,0.0336,0.726,0.0,0.13,0.4,65.921,4.0,,Sanctuary Budget,"C © 1996 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1996 Sanctuary Records Group Ltd., a BMG Company",2249 +2250,spotify:track:2RlgNHKcydI9sayD2Df2xp,Mr. Blue Sky,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:3usnShwygMXVZB4IV5dwnU,Out of the Blue,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1977,https://i.scdn.co/image/ab67616d0000b2738c4e95986c803791125e8991,1,13,303373,https://p.scdn.co/mp3-preview/2c3de8db9c9e07197796cafd81adc9eae8b3a25a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USSM17200399,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.388,0.338,10.0,-10.054,1.0,0.0329,0.652,3.73e-06,0.248,0.478,177.765,4.0,,Epic/Legacy,"P (P) 1972, 1977, 1978 Epic Records, a division of Sony Music Entertainment",2250 +2251,spotify:track:0i7bg5CcqyaceKjXaPXywN,Body Say,spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,spotify:album:6giYxHhVXpymxBDJXIe6nB,Body Say,spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,2016-07-01,https://i.scdn.co/image/ab67616d0000b2731ed11dce9675c9fe6585c133,1,1,193893,https://p.scdn.co/mp3-preview/84471879c916560a591f9f7bd4bbd9dac3a7035e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71605932,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.63,0.735,5.0,-4.787,0.0,0.037,0.00516,1.96e-06,0.261,0.217,86.993,4.0,,Universal Music Group,"C © 2016 Island Records, a division of UMG Recordings, Inc./Hollywood Records/Safehouse Records LLC, P ℗ 2016 Island Records, a division of UMG Recordings, Inc./Hollywood Records/Safehouse Records LLC",2251 +2252,spotify:track:3ztCt91U2wGkDZuzbCwH6H,Black Hole Sun,spotify:artist:5xUf6j4upBrXZPg6AI4MRK,Soundgarden,spotify:album:4ePl0meknOkJ892O9yszEY,Superunknown (20th Anniversary),spotify:artist:5xUf6j4upBrXZPg6AI4MRK,Soundgarden,1994-03-09,https://i.scdn.co/image/ab67616d0000b2738911bae00cdb228c10030978,1,7,318586,https://p.scdn.co/mp3-preview/a784f804a7d9d93c369347eae4872945e5cb9398?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,nu metal,rock",0.351,0.822,6.0,-5.337,1.0,0.0408,0.000185,0.000117,0.0766,0.158,105.503,4.0,,Universal Music Group,"C © 2014 A&M Records, P ℗ 2014 A&M Records",2252 +2253,spotify:track:4KBx9DSSbFaumwlEqjX4CP,"thank u, next",spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:6sUzNE1SPNLBXBCZs3PIAO,"thank u, next",spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2018-02-07,https://i.scdn.co/image/ab67616d0000b27379826f235cf8bc00256db3a6,1,11,207320,https://p.scdn.co/mp3-preview/996b308bb809e6ea008e6fcaddbb95b3bcae81d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USUM71819362,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.724,0.662,1.0,-5.745,1.0,0.0653,0.268,1.36e-06,0.102,0.402,106.974,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",2253 +2254,spotify:track:7te1MPtFmQ8iq6ErbTx8Na,He's So Fine,spotify:artist:05sIdEkXAYDbDDdv3T56Oj,The Chiffons,spotify:album:6iqQVWqQVmLaq1xxAR03e7,The Best Of The Chiffons,spotify:artist:05sIdEkXAYDbDDdv3T56Oj,The Chiffons,1996-01-01,https://i.scdn.co/image/ab67616d0000b27395e71ddc60dffff1b81ff402,1,3,115493,https://p.scdn.co/mp3-preview/62d1445e87cb5b411c0178d96f76c26ecd774d49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USLA19200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,classic girl group,doo-wop,rock-and-roll",0.428,0.463,7.0,-8.899,1.0,0.0372,0.584,0.0,0.14,0.93,144.947,4.0,,EMI Gold,"C © 1996 EMI Records Ltd, P This Compilation ℗ 1996 EMI Records Ltd",2254 +2255,spotify:track:756CJtQRFSxEx9jV4P9hpA,I Believe in a Thing Called Love,spotify:artist:5r1bdqzhgRoHC3YcCV6N5a,The Darkness,spotify:album:6vW9ZDllNv87WHXS3XTjlM,Permission to Land,spotify:artist:5r1bdqzhgRoHC3YcCV6N5a,The Darkness,2003-07-07,https://i.scdn.co/image/ab67616d0000b2734d54f9eccf5646d0f7a1bd30,1,4,216453,https://p.scdn.co/mp3-preview/6873445a7f1c8e054bd9f87d71af7819746e5859?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBAHS0300635,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock",0.453,0.892,4.0,-2.259,1.0,0.0781,0.0518,2.59e-05,0.214,0.628,128.148,4.0,,Atlantic Records,"C © 2003 Warner Music UK Ltd, P ℗ 2003 Warner Music UK Ltd",2255 +2256,spotify:track:0RhcYpwtOwNb6iTfeYaaKH,You Think You're A Man,spotify:artist:1wASklF2AQfIVhSBWnUHwz,Divine,spotify:album:1x01j1FhOmJ2tNJs37QVi1,Essential Divine,spotify:artist:1wASklF2AQfIVhSBWnUHwz,Divine,2011-10-10,https://i.scdn.co/image/ab67616d0000b2733f929284014c3168efb11d53,1,2,422746,https://p.scdn.co/mp3-preview/68ca24702a8e746adc7abe8c3f43f632e501bd44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBPFN0600002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hi-nrg,0.682,0.876,7.0,-11.492,0.0,0.0571,0.0828,0.117,0.359,0.912,127.104,4.0,,Right Track Records,C (c) 2011 Right Track Records,2256 +2257,spotify:track:7nrtHjt4Vk4Z5jMHOwaS8F,Hit Me With Your Best Shot - 1999 Digital Remaster,spotify:artist:43mhFhQ4JAknA7Ik1bOZuV,Pat Benatar,spotify:album:4CcLtOTSlV2389khMapisZ,Synchronistic Wanderings,spotify:artist:43mhFhQ4JAknA7Ik1bOZuV,Pat Benatar,1999-09-23,https://i.scdn.co/image/ab67616d0000b273a13112f40e90c961ed4db397,1,7,171293,https://p.scdn.co/mp3-preview/2911fdde0e31f63d9272eabc0360962ae1904a0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCH39900012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,new romantic,new wave pop,rock,singer-songwriter,soft rock",0.715,0.702,4.0,-6.055,1.0,0.0296,0.109,7.73e-06,0.255,0.954,127.446,4.0,,"Chrysalis Records Ltd., Uk","C (C) 1999 Capitol Records, Inc., P (P) 1999 Capitol Records, Inc.",2257 +2258,spotify:track:48xq0DnfAKtsFjK1L7GZx9,Wish You Well,spotify:artist:0afemm9P2Bb2LL99xHY32n,Bernard Fanning,spotify:album:2OICen81GDKy8Mds7OdX4I,Tea & Sympathy,spotify:artist:0afemm9P2Bb2LL99xHY32n,Bernard Fanning,2005-01-01,https://i.scdn.co/image/ab67616d0000b27367b17be9ebd5d4315406e1c1,1,2,151133,https://p.scdn.co/mp3-preview/1d1eda75b7618b651aa5bfa3107deb3bacc45328?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,AUUM70500066,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.73,0.717,2.0,-3.983,1.0,0.0873,0.177,3.85e-06,0.0628,0.703,122.713,4.0,,Universal Music Australia Pty. Ltd.,"C © 2005 Dew Process/Universal Music Australia, P ℗ 2005 Dew Process/Universal Music Australia",2258 +2259,spotify:track:3YuaBvuZqcwN3CEAyyoaei,Like a Stone,spotify:artist:2ziB7fzrXBoh1HUPS6sVFn,Audioslave,spotify:album:78guAsers0klWl6RwzgDLd,Audioslave,spotify:artist:2ziB7fzrXBoh1HUPS6sVFn,Audioslave,2002-11-17,https://i.scdn.co/image/ab67616d0000b273a7292b6863258e889b78d787,1,5,293960,https://p.scdn.co/mp3-preview/46d898c23fb28b9f52abf78b794aa500988d2132?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USSM10211587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,hard rock,nu metal,permanent wave,post-grunge,rock,supergroup",0.614,0.568,7.0,-5.477,0.0,0.0276,0.00797,0.0,0.0997,0.516,107.849,4.0,,Epic/Interscope,P (P) 2002 Sony Music Entertainment Inc. and Interscope Records,2259 +2260,spotify:track:2rgtCOVK2tpfao2VjURn84,Lovers on the Sun (feat. Sam Martin),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:66AE89GQTx88zLYhXn1wFK","David Guetta, Sam Martin",spotify:album:77UW17CZFyCaRLHdHeofZu,Listen,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2014-11-10,https://i.scdn.co/image/ab67616d0000b2733862d62a50dc6b928651bdeb,1,4,203520,https://p.scdn.co/mp3-preview/4d78613e3219340ce955aeb4182b4b04a823412e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GB28K1400016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance",0.645,0.891,6.0,-2.505,0.0,0.0387,0.0932,3.88e-06,0.379,0.568,124.915,4.0,,Parlophone (France),"C © 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company, P ℗ 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company",2260 +2261,spotify:track:0kNdk4nQvHeJ8laYcw6vbh,Woman You're Breaking Me,spotify:artist:4YvFZLPySPKAsgnxRPLR8Y,The Groop,spotify:album:74wzVNbShQujHFB624SvFR,Woman You're Breaking Me,spotify:artist:4YvFZLPySPKAsgnxRPLR8Y,The Groop,1967-10-01,https://i.scdn.co/image/ab67616d0000b273e7cb71fb6e989a476686019b,1,7,135200,https://p.scdn.co/mp3-preview/9134f5ad63e098aa33682438831dedbb99db0ca5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUBM00600999,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.496,0.559,2.0,-14.201,1.0,0.0886,0.00921,0.232,0.13,0.675,135.591,4.0,,Sony Music Entertainment,P (P) 1967 Sony Music Entertainment Australia Pty Ltd,2261 +2262,spotify:track:5xc3a2gsW595IWDOTibZFv,Move,spotify:artist:6Qpa8xhGsGitz4WBf4BkpK,Baker Boy,spotify:album:20Joq9C2R7RDxesg0gmCAC,Move,spotify:artist:6Qpa8xhGsGitz4WBf4BkpK,Baker Boy,2020-03-27,https://i.scdn.co/image/ab67616d0000b2735430c925c112de27b7c373ae,1,1,166700,https://p.scdn.co/mp3-preview/e8af628730cf5583739c2b1eeca65167d0043b33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM72000071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian indigenous hip hop,australian indigenous music",0.718,0.89,5.0,-3.862,0.0,0.162,0.0507,0.0,0.289,0.719,100.995,4.0,,Universal Music Australia Pty. Ltd.,"C © 2020 Baker Boy Music Pty Ltd ATF Baker Boy Music Trust, under exclusive licence to Universal Music Australia Pty Ltd, P An Island Records Australia Release; ℗ 2020 Baker Boy Music Pty Ltd ATF Baker Boy Music Trust, under exclusive licence to Universal Music Australia Pty Ltd",2262 +2263,spotify:track:6jBCehpNMkwFVF3dz4nLIW,It's Tricky,spotify:artist:3CQIn7N5CuRDP8wEI7FiDA,Run–D.M.C.,spotify:album:7AFsTiojVaB2I58oZ1tMRg,Raising Hell,spotify:artist:3CQIn7N5CuRDP8wEI7FiDA,Run–D.M.C.,1986-05-15,https://i.scdn.co/image/ab67616d0000b273894ae4df775c6b47438991af,1,2,183760,https://p.scdn.co/mp3-preview/6a5682767e3c6ce87aa3e8b86029c85275a10ca0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAR18600005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,golden age hip hop,hip hop,old school hip hop,queens hip hop,rap",0.965,0.857,11.0,-8.458,0.0,0.17,0.00131,0.0,0.0726,0.951,127.656,4.0,,Arista,P (P) 1986 Arista Records LLC,2263 +2264,spotify:track:3hJLKtTpgct9Y9wKww0BiR,Miss You - Remastered,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:1Jv2AqzhgsduUik2p4k3cS,Some Girls,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1978-06-09,https://i.scdn.co/image/ab67616d0000b27305c7aec05eabf142cc33b936,1,1,288666,https://p.scdn.co/mp3-preview/c9ba21548dcf1d785790bfbc1fd273eb9b4d9a1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBCJN7800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.795,0.71,9.0,-4.746,0.0,0.0392,0.443,0.0215,0.344,0.845,109.689,4.0,,Polydor Associated Labels,"C © 2011 Promotone B.V., under exclusive licence to Universal Music International B.V., P ℗ 2011 Promotone B.V., under exclusive licence to Universal Music International B.V.",2264 +2265,spotify:track:3k63RLvRgkgPGx0keOH3P6,Different Drum,"spotify:artist:2X9nnux4eS3CFBDSjcnoBQ, spotify:artist:1sXbwvCQLGZnaH0Jp2HTVc","Stone Poneys, Linda Ronstadt",spotify:album:2FrEXjdS2mZO6sx6pA5MbY,"Evergreen, Vol.2",spotify:artist:2X9nnux4eS3CFBDSjcnoBQ,Stone Poneys,1967-06-05,https://i.scdn.co/image/ab67616d0000b273c465648512fddfe4c91f0248,1,7,159973,https://p.scdn.co/mp3-preview/575906844461fa4ff64ada34415f310dfba9b754?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USCA26700181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,folk,folk rock,heartland rock,mellow gold,singer-songwriter,soft rock",0.46,0.389,0.0,-11.603,1.0,0.031,0.349,0.0,0.0533,0.606,123.213,4.0,,Capitol Records,"C © 1967 Capitol Records, LLC, P ℗ 1967 Capitol Records, LLC",2265 +2266,spotify:track:569uHYIB0X324FZOBEhvit,Ghostbusters,spotify:artist:0NyzfcGDZZ6GM25EBG9BYK,Ray Parker Jr.,spotify:album:3TaGSuVqPFbNJSo7h4bxB6,Greatest Hits,spotify:artist:0NyzfcGDZZ6GM25EBG9BYK,Ray Parker Jr.,1993-10-12,https://i.scdn.co/image/ab67616d0000b273841c8f567b42b8b9a1aa54ec,1,1,239133,https://p.scdn.co/mp3-preview/107e8dfabb7be6126043e6ad26b86badd819675d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAR18400117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,theme,0.778,0.719,4.0,-9.698,1.0,0.0345,0.0123,0.0262,0.297,0.729,115.4,4.0,,Arista/Legacy,P This compilation (P) 2019 Arista Records LLC,2266 +2267,spotify:track:41sGGCCoHI2GLV9qadX80A,Baby Come Back,spotify:artist:0fgtHVpOPfXb07S8Jx443z,Player,spotify:album:1uZ7slfpVTucDk922Btj5B,Player,spotify:artist:0fgtHVpOPfXb07S8Jx443z,Player,1977-09-01,https://i.scdn.co/image/ab67616d0000b27381eae9a98487ae512df29469,1,2,255845,https://p.scdn.co/mp3-preview/c025b964b4bdb9c7fb67e8855dba1601ef44eecd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,NLF057790013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"soft rock,yacht rock",0.646,0.602,5.0,-10.238,0.0,0.0758,0.0599,1.7e-05,0.0956,0.543,156.101,4.0,,UMC (Universal Music Catalogue),"C © 1978 Universal Music Operations Limited, P ℗ 1978 Universal Music Operations Limited",2267 +2268,spotify:track:6XP7XXKLlBQ2xDib64Hycd,This Time,spotify:artist:4R3U54HaBxqbw1ey5lMcXQ,Troy Shondell,spotify:album:18XFy313ow5WefKY3Xgy27,This Time The Best Of Troy Shondell,spotify:artist:4R3U54HaBxqbw1ey5lMcXQ,Troy Shondell,2006-12-19,https://i.scdn.co/image/ab67616d0000b2738c7c7656419c41d2d2ace3c7,1,1,155040,https://p.scdn.co/mp3-preview/a3deed5d6f1a1b59176cdac2d5d01016bb050376?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USEEC0615038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep adult standards,doo-wop",0.389,0.36,2.0,-12.884,1.0,0.0279,0.766,0.0,0.48,0.439,81.869,4.0,,Everest Records,"C 2006 Everest Records, P 2006 Everest Records",2268 +2269,spotify:track:48q0vSHcJdhK3IiXH8C5WJ,Why'd You Only Call Me When You're High?,spotify:artist:7Ln80lUS6He07XvHI8qqHH,Arctic Monkeys,spotify:album:6645HGh7ZOZSUTpqW9iYLR,AM,spotify:artist:7Ln80lUS6He07XvHI8qqHH,Arctic Monkeys,2013-01-01,https://i.scdn.co/image/ab67616d0000b2730acf7f2eefe5bd36efbc26b4,1,9,161123,https://p.scdn.co/mp3-preview/be5453a4763510679fab61e39662ab0257458be6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEL1300370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,permanent wave,rock,sheffield indie",0.691,0.631,2.0,-6.478,1.0,0.0368,0.0483,1.13e-05,0.104,0.8,92.004,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2013 Domino Recording Company Ltd, P ℗ 2013 Domino Recording Company Ltd, under exclusive licence to EMI Recorded Music Australia Pty Ltd",2269 +2270,spotify:track:1A5V1sxyCLpKJezp75tUXn,Closing Time,spotify:artist:1TqQi97nqeiuOJrIFv5Sw0,Semisonic,spotify:album:4JDBx5wQ82jb8PjLYPBP8L,20th Century Masters: The Millennium Collection: Best Of Semisonic,spotify:artist:1TqQi97nqeiuOJrIFv5Sw0,Semisonic,2003-01-01,https://i.scdn.co/image/ab67616d0000b273dec0d479b10bccff532074ed,1,1,274160,https://p.scdn.co/mp3-preview/fd77534ba47387a006a95c7430d6664beafd7df4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USMC19800013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.478,0.854,7.0,-5.454,1.0,0.0289,0.0204,1.21e-06,0.115,0.274,91.854,4.0,,Geffen*,"C © 2003 MCA Records, P This Compilation ℗ 2003 Geffen Records",2270 +2271,spotify:track:6GRqgYr6fYjNZX9NWFU0f6,The Power Of Love,spotify:artist:1mZu3rO7qSD09GdDpePHhY,Frankie Goes To Hollywood,spotify:album:0blssLdpKsczIl2C0okJhF,Bang! (Here Comes a Supernova),spotify:artist:1mZu3rO7qSD09GdDpePHhY,Frankie Goes To Hollywood,1985-01-01,https://i.scdn.co/image/ab67616d0000b2737e74ddf0e272bfae452c90e1,1,6,328864,https://p.scdn.co/mp3-preview/51d4e241d7cd5c371f16bbc98af2d3986976093c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHW9900034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,hi-nrg,new romantic,new wave,new wave pop,synthpop",0.464,0.23,5.0,-13.791,0.0,0.0325,0.349,2.84e-06,0.539,0.114,123.108,4.0,,ZTT Records Ltd,C (C) 1985 ZTT Records Ltd.,2271 +2272,spotify:track:71V89tJj9CboDyzncO6ZN2,Stars Are Blind,spotify:artist:1vkJFCwstOoJO7yQ4lTtLK,Paris Hilton,spotify:album:3jWfBkl247fFkyJprhd5qs,Paris (U.S. Standard Version),spotify:artist:1vkJFCwstOoJO7yQ4lTtLK,Paris Hilton,2006-08-14,https://i.scdn.co/image/ab67616d0000b273c57366df31075cd94e1aeca7,1,3,236600,https://p.scdn.co/mp3-preview/7e51de1d60fea33b6932a65b33baafecd61a2ec7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USWB10602450,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.745,0.695,2.0,-5.076,1.0,0.0271,0.00593,0.0,0.0615,0.519,102.014,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",2272 +2273,spotify:track:4taE0XiSGBboGFBRm0orKQ,Star Hotel - 2011 Remastered,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:75cexXttNv85ytDgPxmo8j,The Best Of Cold Chisel - All For You - Deluxe,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2018-09-28,https://i.scdn.co/image/ab67616d0000b273eafbd3caad4935dec367006c,1,7,247651,https://p.scdn.co/mp3-preview/0ff6fb4e74094cb73abfd02dcc98748e83acf449?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,AUU741100089,spotify:user:bradnumber1,2024-07-16T14:20:43Z,australian rock,0.346,0.835,5.0,-4.089,0.0,0.0704,0.0337,0.000203,0.145,0.459,157.711,4.0,,Universal Music Australia & New Zealand (Distribution),"C © 2018 Cold Chisel Pty Limited, P This Compilation ℗ 2018 Cold Chisel Pty Limited",2273 +2274,spotify:track:3EkbWhwKGJHpWjKNYp6zfw,Funky Junky - Rap,spotify:artist:4zVfvSWs6FvSD6B5lQGs2S,Peter Andre,spotify:album:3I21H0IlgMGXL4N20TCaxH,Peter Andre,spotify:artist:4zVfvSWs6FvSD6B5lQGs2S,Peter Andre,1993-01-01,https://i.scdn.co/image/ab67616d0000b273d46d312e6bfeb0cce2993107,1,5,231106,https://p.scdn.co/mp3-preview/2df243b15e86603d002abba0fe41a55adaccbc35?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,AUMU09300025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.755,0.782,6.0,-9.428,0.0,0.126,0.00154,7.86e-06,0.392,0.66,106.071,4.0,,WM Australia,"C © 1993 Melodian Records Pty Ltd, P ℗ 1993 Melodian Records Pty Ltd",2274 +2275,spotify:track:0kHyKhJMukHEPfeh8s7rdM,Born To Be Yours,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:53XhwfbYqKCa1cC15pYq2q","Kygo, Imagine Dragons",spotify:album:31J0UqxAkl9utyC0L59Mae,Born To Be Yours,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:53XhwfbYqKCa1cC15pYq2q","Kygo, Imagine Dragons",2018-06-15,https://i.scdn.co/image/ab67616d0000b273d355c4cf741193b97849af1a,1,1,193320,https://p.scdn.co/mp3-preview/27d57f25038cb292263e0caaf91190130aa9afec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,SEBGA1802355,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,modern rock,pop,rock",0.688,0.688,3.0,-5.84,1.0,0.0357,0.3,0.0,0.0982,0.451,114.011,4.0,,Kygo,"P (P) 2018 Kygo AS under exclusive license to Sony Music Entertainment International Ltd / Ultra Records, LLC",2275 +2276,spotify:track:6E36TvmibEveXov0iKIugb,Need Me,"spotify:artist:0G5lZVxoMwoY8oV6zR8E7k, spotify:artist:0YffB1XSvRrtNRYj4998W6","Mashd N Kutcher, Sammi Constantine",spotify:album:2T5TxVePApru2pxEPaXEOy,Need Me,spotify:artist:0G5lZVxoMwoY8oV6zR8E7k,Mashd N Kutcher,2018-01-12,https://i.scdn.co/image/ab67616d0000b2730b16772c132e9c8fb3a273bb,1,1,208679,https://p.scdn.co/mp3-preview/c4cc58c615202438eb1cea016bd7f9509c7cd814?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71701225,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.705,0.832,2.0,-4.594,1.0,0.0438,0.138,0.0,0.0987,0.528,110.007,4.0,,Universal Music Group,"C © 2017 Universal Music Australia Pty Ltd., P A Casablanca Records Australia release; ℗ 2017 Universal Music Australia Pty Ltd.",2276 +2277,spotify:track:0Ln5tJyLX5qusquBOtq7wf,Fire,spotify:artist:11wRdbnoYqRddKBrpHt4Ue,Kasabian,spotify:album:2DHGeuRTttjurZDb0pSjx6,West Ryder Pauper Lunatic Asylum,spotify:artist:11wRdbnoYqRddKBrpHt4Ue,Kasabian,2009,https://i.scdn.co/image/ab67616d0000b273358f726999166b87f00e7066,1,11,252279,https://p.scdn.co/mp3-preview/cf214c70801df3b2fd9d3d1003d3b991e1065f1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBARL0801805,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,garage rock,leicester indie,modern rock,rock",0.525,0.742,10.0,-5.643,1.0,0.0311,0.0874,0.149,0.117,0.179,117.029,4.0,,Columbia,P Track 4 (P) 2007; all other tracks (P) 2009 Sony Music Entertainment UK Limited,2277 +2278,spotify:track:57MbOuT7s2ES3IW9KuZQzI,Wicked Game,spotify:artist:7290H8m1Dwt8G7jm1y9CQx,Chris Isaak,spotify:album:4BdWGUgGvnD6QjrOrU2JZt,Heart Shaped World,spotify:artist:7290H8m1Dwt8G7jm1y9CQx,Chris Isaak,1989,https://i.scdn.co/image/ab67616d0000b27309a4abca212c575edf9f6c77,1,5,287506,https://p.scdn.co/mp3-preview/116da575b713d8fe2c698dbb3bbd31c065bff4c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USRE19900989,spotify:user:bradnumber1,2021-08-08T09:26:31Z,mellow gold,0.665,0.292,9.0,-18.086,1.0,0.0294,0.686,0.0128,0.0679,0.345,112.331,4.0,,Universal Music Australia Pty. Ltd.,"C © 2012 Wicked Game Records, P ℗ 2012 Wicked Game Records",2278 +2279,spotify:track:2VqAEP1yY5T523K7bZtL8a,Right Now (Na Na Na),spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,spotify:album:3BHAzidZ03EjVE7ncqyn0M,Freedom,spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,2008-01-01,https://i.scdn.co/image/ab67616d0000b27384bfdd2d7e5e7fb42cf71545,1,1,240746,https://p.scdn.co/mp3-preview/9afbca2abc9ae3b395de39d11635d975af9093a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USUM70837868,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.83,0.857,8.0,-4.194,0.0,0.152,0.262,0.0,0.413,0.607,137.982,4.0,,Konvict/Upfront/SRC/Universal Records,"C © 2008 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2008 Universal Records & SRC Records Inc., a division of UMG Recordings",2279 +2280,spotify:track:7AzFID6u1b3zIWbd9pb8Dk,Summer in the City - Remastered,spotify:artist:7CCn4PFRRRZF127jtCBAUe,The Lovin' Spoonful,spotify:album:3enoBBhSA6i2pXEP8rjAWY,Hums Of The Lovin' Spoonful,spotify:artist:7CCn4PFRRRZF127jtCBAUe,The Lovin' Spoonful,1966-11,https://i.scdn.co/image/ab67616d0000b273633c04118b43d201581e3328,1,11,160306,https://p.scdn.co/mp3-preview/c8e350bf1b58952fb14b281059e429698d45f044?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USBR10300026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic rock,country rock,folk,folk rock,mellow gold,psychedelic rock,rock-and-roll,soft rock",0.423,0.681,10.0,-9.756,1.0,0.0398,0.0592,0.000177,0.0889,0.56,110.461,4.0,,Buddah,P (P) 2003 BMG Heritage,2280 +2281,spotify:track:3JdToGxgvH9SnO1a605Ztr,"Up, Up and Away",spotify:artist:1UUYAQ9LiRsZF0ZukQNWXM,The 5th Dimension,spotify:album:77VEDrJrgHdCr6Ju3N4AQp,"Up, Up And Away",spotify:artist:1UUYAQ9LiRsZF0ZukQNWXM,The 5th Dimension,1967,https://i.scdn.co/image/ab67616d0000b2735db494f5ad64edf108ec7d34,1,1,163346,https://p.scdn.co/mp3-preview/b0670903d82a5f7b8f4d180773089edf6bc1bd62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USAR10001689,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,disco,folk rock,mellow gold,motown,singer-songwriter,soft rock,sunshine pop",0.393,0.362,7.0,-14.601,0.0,0.0305,0.599,0.0,0.333,0.515,107.743,5.0,,Arista/Legacy,P Originally released 1967. All rights reserved by Sony Music Entertainment,2281 +2282,spotify:track:2bI6KAUqXeIXGAEEvup8ri,Sunshine (My Girl),spotify:artist:6Se1y4vDcu9fVHLqdj1N3q,Wuki,spotify:album:7AE0HaidGUaRBSmIZmJ8As,Sunshine (My Girl),spotify:artist:6Se1y4vDcu9fVHLqdj1N3q,Wuki,2023-09-01,https://i.scdn.co/image/ab67616d0000b27342401c4a9e13cddc69e34ffd,1,1,131250,https://p.scdn.co/mp3-preview/6d337812e2f00d8956af933ac30d235ee2cb6ecc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,QZFPL2100424,spotify:user:bradnumber1,2023-10-06T05:58:25Z,,0.871,0.765,0.0,-4.602,1.0,0.116,0.00742,0.000196,0.0953,0.596,128.087,4.0,,Thrive Music,"C © 2023 Thrive Music, LLC, P ℗ 2023 Thrive Music, LLC",2282 +2283,spotify:track:6e4tg1HxhM1Ld24yAvEtx9,Differently,spotify:artist:0Ota2YaOfxcUqhWjnEBcOG,Cassie Davis,spotify:album:50ohLcH9K98ZMfMDif7HIp,Differently,spotify:artist:0Ota2YaOfxcUqhWjnEBcOG,Cassie Davis,2009-08-14,https://i.scdn.co/image/ab67616d0000b2739702f3b08025fc437dd56829,1,7,205653,https://p.scdn.co/mp3-preview/12ef94ee2879ae3ff51dbe7eab5fdff2af7c46eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00900069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.821,0.699,2.0,-4.639,1.0,0.0547,0.000993,8.8e-05,0.165,0.35,118.033,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd.,2283 +2284,spotify:track:5p0rUHicpwMZil8RlNGGth,This Is Your Night,spotify:artist:6uGKydhYXrVOEXM6QbVzyH,Amber,spotify:album:5NNCWaLHgcwPrWSPsp86ph,This Is Your Night,spotify:artist:6uGKydhYXrVOEXM6QbVzyH,Amber,1996-11-26,https://i.scdn.co/image/ab67616d0000b273229ce5f4e99d9626903c7503,1,1,238160,https://p.scdn.co/mp3-preview/954d6f67752ce5ae3b3333b65a59abed53895ae3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USTB10300582,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch pop,vocal house",0.674,0.908,9.0,-3.262,0.0,0.0325,0.0714,0.000104,0.121,0.861,127.99,4.0,,"Tommy Boy Music, LLC","C 1996 Tommy Boy Music, LLC, P 1996 Tommy Boy Music, LLC",2284 +2285,spotify:track:7vA2Y79Q4bBqdzBCfHeGEe,Hurt Somebody (With Julia Michaels),"spotify:artist:2RQXRUsr4IW1f3mKyKsy4B, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","Noah Kahan, Julia Michaels",spotify:album:1TMA2dKLdsJZ8u1iikE6Ow,Hurt Somebody,spotify:artist:2RQXRUsr4IW1f3mKyKsy4B,Noah Kahan,2018-02-02,https://i.scdn.co/image/ab67616d0000b273818587ad23441532e2132178,1,1,168640,https://p.scdn.co/mp3-preview/3d575c16c4dd49b0984436e2e86990f506407a8c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM71800031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pov: indie,singer-songwriter pop,pop",0.633,0.559,6.0,-5.135,1.0,0.313,0.336,0.0,0.262,0.473,114.987,4.0,,Universal Records,"C © 2018 Republic Records, a Division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",2285 +2286,spotify:track:6Pw8YFXFQwj0ZsDc3ltkIs,The Fighter,"spotify:artist:0u2FHSq3ln94y5Q57xazwf, spotify:artist:4xFUf1FHVy696Q1JQZMTRj","Keith Urban, Carrie Underwood",spotify:album:1zVOhivZ45EGEZwHsKrC1T,Ripcord,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,2016-05-06,https://i.scdn.co/image/ab67616d0000b2735851cc3ef6f54b278e405d2f,1,8,184040,https://p.scdn.co/mp3-preview/5c030f9c0058f8c2a996de53bf5d04265c1fcb0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11600163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road,classic oklahoma country,contemporary country,country,country dawn,dance pop,pop",0.683,0.852,11.0,-5.149,0.0,0.0537,0.026,0.0,0.197,0.749,131.923,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Hit Red Records, under exclusive license to Capitol Records Nashville, P ℗ 2016 Hit Red Records, under exclusive license to Capitol Records Nashville",2286 +2287,spotify:track:1e8PAfcKUYoKkxPhrHqw4x,Someone You Loved - Future Humans Remix,"spotify:artist:4GNC7GD6oZMSxPGyXy4MNB, spotify:artist:4BXM7ghfjufutCDfJfXdIl","Lewis Capaldi, Future Humans",spotify:album:7m7vv9wlQ4i0LFuJiE2zsQ,Someone You Loved (Future Humans Remix),spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,2019-03-05,https://i.scdn.co/image/ab67616d0000b273ccbbc243b809803ac62ad49a,1,1,189052,https://p.scdn.co/mp3-preview/bb6345ea2bd4efa6aab6ed04470d9de437dd65ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,DEUM71901232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.65,0.833,1.0,-4.672,1.0,0.0359,0.0803,0.0,0.0833,0.725,123.976,4.0,,Vertigo Berlin,"C © 2019 Universal Music GmbH, P ℗ 2019 Universal Music GmbH",2287 +2288,spotify:track:27OeeYzk6klgBh83TSvGMA,WITHOUT YOU,spotify:artist:2tIP7SsRs7vjIcLrU85W8J,The Kid LAROI,spotify:album:3YjfdLdpQcVI72uKhooZst,F*CK LOVE (SAVAGE),spotify:artist:2tIP7SsRs7vjIcLrU85W8J,The Kid LAROI,2020-11-06,https://i.scdn.co/image/ab67616d0000b273df16d539f508603bfb1efe02,1,7,161384,https://p.scdn.co/mp3-preview/0cacbf2acaef9fc50d9ecd1f29eb33e543a5bc63?cid=9950ac751e34487dbbe027c4fd7f8e99,True,4,USSM12006586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.662,0.413,0.0,-7.357,1.0,0.0299,0.213,0.0,0.134,0.467,93.005,4.0,,Columbia,"P (P) 2020 Columbia Records, a Division of Sony Music Entertainment",2288 +2289,spotify:track:59dLtGBS26x7kc0rHbaPrq,Nothin' on You (feat. Bruno Mars),"spotify:artist:5ndkK3dpZLKtBklKjxNQwT, spotify:artist:0du5cEVh5yTK9QJze8zA0C","B.o.B, Bruno Mars",spotify:album:7apLPYT8szV1IqTxyVSy5P,B.o.B Presents: The Adventures of Bobby Ray,spotify:artist:5ndkK3dpZLKtBklKjxNQwT,B.o.B,2010-04-27,https://i.scdn.co/image/ab67616d0000b273484d121f0e2d2caf87d5d10b,1,2,268320,https://p.scdn.co/mp3-preview/2ba8a14b311c1f4ad446b94b71da3f507d555193?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USAT20904033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dance pop,pop rap,rap,southern hip hop,dance pop,pop",0.688,0.853,10.0,-5.814,1.0,0.0493,0.386,0.0,0.0862,0.743,103.993,4.0,,Rebel Rock/Grand Hustle/Atlantic,"C © 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",2289 +2290,spotify:track:5nvKSFtFstQQUE3qBjXziq,Hold Me,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:7zkjepWAvcH8fN5eisBZJk,Affirmation,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,2000-06-12,https://i.scdn.co/image/ab67616d0000b2735a7997b1322919a9d346fe9c,1,2,291986,https://p.scdn.co/mp3-preview/6e6855cddc7a45fbff8ecb648cf706c0bf4731fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09900166,spotify:user:bradnumber1,2022-02-03T10:14:47Z,"boy band,dance pop,pop rock",0.539,0.72,0.0,-8.029,1.0,0.0284,0.133,0.0,0.145,0.502,89.954,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P This Compilation ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",2290 +2291,spotify:track:4UEWbycxYnl9KkrCl9nXwH,I Love How You Love Me,spotify:artist:0SDMI2Gkjubw3ol5p5fKtX,The Paris Sisters,spotify:album:4A6x8pghscdBr51hBxN9ca,A Doo Wop Valentine - Original Romantic Harmonies,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-02-06,https://i.scdn.co/image/ab67616d0000b27313e0ca23c5b263c319bb9612,1,3,123834,https://p.scdn.co/mp3-preview/8dbbc226b7460bc0e1074178a25f5aa67a3872ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGZ21352518,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,classic girl group",0.384,0.452,10.0,-8.894,1.0,0.0281,0.944,0.00125,0.224,0.453,84.857,3.0,,Perpetual,"C (C) 2014 Essential Media Group LLC, P (P) 2014 Essential Media Group LLC",2291 +2292,spotify:track:6fOPuabPdAJ0HgqJFcDGb1,Apologize,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:72c3ugX0yPaFCtEuHPDXaY,Dreaming Out Loud (International Version),spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2007-01-01,https://i.scdn.co/image/ab67616d0000b273bb1b5ad136dc5176a70e8e74,1,4,208106,https://p.scdn.co/mp3-preview/e99c657a370185acbb4e2bdd3168e053cfd690d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70757102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.593,0.74,8.0,-6.12,1.0,0.0339,0.363,2.22e-05,0.102,0.502,118.008,4.0,,Universal Music Group,"C © 2007 Mosley Music/Interscope Records, P ℗ 2007 Mosley Music/Interscope Records",2292 +2293,spotify:track:3OtIgLTHpPYez3WmDN2iYZ,Leaving Home,spotify:artist:6L9bfTvOEA9BOJEIBhU4ln,Jebediah,spotify:album:7LZLRjjAvM2xXdYbVHoPh3,Slightly Odway,spotify:artist:6L9bfTvOEA9BOJEIBhU4ln,Jebediah,1997-11-15,https://i.scdn.co/image/ab67616d0000b273f30db17e0048b1355de6ed49,1,1,181333,https://p.scdn.co/mp3-preview/7ce864ba94bacdc0a7ef37aff79894b5f443b4b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUSM09700063,spotify:user:bradnumber1,2023-11-16T03:15:21Z,"aussie emo,australian alternative rock,australian indie,australian rock,perth indie",0.522,0.813,6.0,-6.606,1.0,0.0347,0.0253,3.1e-05,0.131,0.454,121.528,4.0,,Murmur Records,P (P) 1997 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,2293 +2294,spotify:track:3oEahTLa8DOXmE1N1WRYzt,Get Stupid,spotify:artist:0PHiin6bQggP8WzI7LgTtr,Aston Merrygold ,spotify:album:5EMKFUJwBCc5mR6LVJOTM9,Get Stupid,spotify:artist:0PHiin6bQggP8WzI7LgTtr,Aston Merrygold ,2015-07-24,https://i.scdn.co/image/ab67616d0000b273b2c39aafda29345e450abd8e,1,1,199728,https://p.scdn.co/mp3-preview/a28a8f61a64eba587bf04c49de2ea6d7d3baa352?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBAHT1500332,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.808,0.954,0.0,-1.576,1.0,0.0448,0.044,0.00025,0.202,0.91,120.027,4.0,,LME Records Ltd,"C © 2016 LME Records Limited, P ℗ 2016 LME Records Limited",2294 +2295,spotify:track:5Xak5fmy089t0FYmh3VJiY,Black,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:5B4PYA7wNN4WdEXdIJu58a,Ten,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,1991-08-27,https://i.scdn.co/image/ab67616d0000b273d400d27cba05bb0545533864,1,5,342653,https://p.scdn.co/mp3-preview/3dd447917717a7f05e3bad36f897759cce858c08?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USSM19100412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.36,0.684,4.0,-6.457,0.0,0.0308,0.323,0.0,0.34,0.2,77.15,4.0,,Epic/Legacy,P (P) 1991 Sony Music Entertainment Inc.,2295 +2296,spotify:track:1lmfsSEuxU4PpT739Kihno,Rock Your Baby,spotify:artist:6oV3BNm1Gj2GGgpYknc5TN,George McCrae,spotify:album:1CLu46lCKx33IIzPganjtk,The Very Best Of George McCrae,spotify:artist:6oV3BNm1Gj2GGgpYknc5TN,George McCrae,2003-02-28,https://i.scdn.co/image/ab67616d0000b2737aff40d0f33738edb367827a,1,1,200053,https://p.scdn.co/mp3-preview/1c40aac7a513a4c322fa5bbfcc8bfce8103c5f01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAYE7400155,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.594,0.906,1.0,-5.536,1.0,0.0594,0.169,0.0012,0.0778,0.892,104.41,4.0,,Parlophone UK,"C © 2001 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",2296 +2297,spotify:track:1diS6nkxMQc3wwC4G1j0bh,We're Good,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:0JeyP8r2hBxYIoxXv11XiX,Future Nostalgia (The Moonlight Edition),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2021-02-11,https://i.scdn.co/image/ab67616d0000b273ccdddb2e5349ea0608c3e016,1,13,165506,https://p.scdn.co/mp3-preview/0ed0e3241d7dd381271156710b7153308ddfbb89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBAHT2001117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.722,0.588,6.0,-5.932,1.0,0.0544,0.0319,0.0,0.183,0.59,134.01,4.0,,Warner Records,"C A Warner Records UK Release, © 2021 Dua Lipa Limited under exclusive licence to Warner Music UK Limited. Except tracks 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 18 ℗ 2020, tracks 1 & 2 ℗ 2019 Dua Lipa Limited under exclusive licence to Warner Music UK Limited, track 14 ℗ 2020 RCA Records, a division of Sony Music Entertainment, track 19 ℗ 2020 Sueños Globales, LLC, Exclusively Licensed to UMG Recordings Inc, ℗ Universal Music Latino/NEON16., P A Warner Records UK Release, ℗ 2021 Dua Lipa Limited under exclusive licence to Warner Music UK Limited. Except tracks 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 18 ℗ 2020, tracks 1 & 2 ℗ 2019 Dua Lipa Limited under exclusive licence to Warner Music UK Limited, track 14 ℗ 2020 RCA Records, a division of Sony Music Entertainment, track 19 ℗ 2020 Sueños Globales, LLC, Exclusively Licensed to UMG Recordings Inc, ℗ Universal Music Latino/NEON16.",2297 +2298,spotify:track:2UKkLqST2xWpK8n1b0Xr5Z,Return To Innocence,spotify:artist:3DmG65yHQsMms7WAvrZOdt,Enigma,spotify:album:1t4hf9yHMQBoTz2CxTBJKj,The Cross Of Changes,spotify:artist:3DmG65yHQsMms7WAvrZOdt,Enigma,1993-01-01,https://i.scdn.co/image/ab67616d0000b2736d7e526534a3561be5e94a85,1,3,255466,https://p.scdn.co/mp3-preview/ab12ea9ff480ec198200005dcfbc09120b44c1fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,DEG129300013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,gregorian dance",0.476,0.584,10.0,-12.357,1.0,0.038,0.119,0.0,0.274,0.417,88.026,4.0,,Virgin,"C © 1993 Michael Cretu, P ℗ 1993 Michael Cretu",2298 +2299,spotify:track:1R9Xzj6Bbf3ZvO1gEQR30n,My My My,spotify:artist:3cQA9WH8liZfeja1DxcDYE,Armand Van Helden,spotify:album:5AO7eUmOKh61ID1AcKHqeC,Nympho,spotify:artist:3cQA9WH8liZfeja1DxcDYE,Armand Van Helden,2005,https://i.scdn.co/image/ab67616d0000b2735e070cca788c8b83e87543fb,1,11,183379,https://p.scdn.co/mp3-preview/e17cd807c05909ff52c77956b32213a31c75e328?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEFR0500419,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,classic house,deep house,disco house,filter house,house,speed garage,uk dance,vocal house",0.642,0.555,4.0,-14.963,0.0,0.227,0.00771,0.014,0.0255,0.755,127.492,4.0,,Liberator Music,"C 2005 2005 Southern Fried Records, P 2005 2005 Southern Fried Records",2299 +2300,spotify:track:6sPOmDulFtLzfX25zICNrC,Build Me Up Buttercup,spotify:artist:4GITZM5LCR2KcdlgEOrNLD,The Foundations,spotify:album:3j1kw5l2mEeKCUuXXwjhWp,The Foundations,spotify:artist:4GITZM5LCR2KcdlgEOrNLD,The Foundations,1968-01-01,https://i.scdn.co/image/ab67616d0000b273a075160177aa7b7508c4fc9e,1,7,177533,https://p.scdn.co/mp3-preview/bf0881bd8c7eef444157aea54ce0b95e02b4ff6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAJE6800059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.659,0.513,0.0,-7.186,1.0,0.0293,0.315,0.0,0.283,0.855,133.609,4.0,,Castle Communications,"C © 2000 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2000 Sanctuary Records Group Ltd., a BMG Company",2300 +2301,spotify:track:1h4XVjt26ZCDKmeEoHxT07,Gimme Little Sign,spotify:artist:6ohvzFHYmLd05kyYhLui5K,Brenton Wood,spotify:album:108biCEg5vUG7Efei5EhTf,Oogum Boogum,spotify:artist:6ohvzFHYmLd05kyYhLui5K,Brenton Wood,1967-01-01,https://i.scdn.co/image/ab67616d0000b273af82af61a16d677bf22f37a1,1,7,141329,https://p.scdn.co/mp3-preview/edd8449a81dcf61292bf05bcfec21597e8ad0482?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,QMFMK1305007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,souldies",0.742,0.663,10.0,-5.06,0.0,0.0321,0.154,0.0,0.197,0.913,113.005,4.0,,The Bicycle Music Company,"C © 1967 The Bicycle Music Company, P ℗ 1967 The Bicycle Music Company",2301 +2302,spotify:track:6SCyuFalevC6LRcYWg0FIN,All I Need Is You,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:5e055E2MQy4SspHknPO3Km,Just As I Am,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2003-12-08,https://i.scdn.co/image/ab67616d0000b273a187585f0ea2c53be68442da,1,5,245200,https://p.scdn.co/mp3-preview/c4d5a70ee8f06630bf9a6b7b29aa699c85d275fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUBM00347706,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.778,0.646,9.0,-5.505,1.0,0.0418,0.255,0.0,0.203,0.744,105.052,4.0,,BMG Music,P (P) 2003 BMG Australia Limited,2302 +2303,spotify:track:2YGFjCtEo5hhNutCO8RdQf,Can't Get Enough Of You Baby,spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,spotify:album:44zMHQz2GkFUEifL4DuDNY,All Star Smash Hits,spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,2005-01-01,https://i.scdn.co/image/ab67616d0000b2730ce3b69f5e3f67cebe3ed3c1,1,10,151106,https://p.scdn.co/mp3-preview/f5bf221db19e60251bca01dc707b1aec58f415c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19902230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.662,0.891,6.0,-4.65,1.0,0.0291,0.0128,0.0,0.448,0.823,123.728,4.0,,Universal Music Group,"C © 2005 Interscope Records, P ℗ 2005 Interscope Records",2303 +2304,spotify:track:1lsMTPcfQRj0NcIiDjWoNM,Stupid Girls,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2gccJPbfddWfxNdvsRxL8J,I'm Not Dead,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2006-03-31,https://i.scdn.co/image/ab67616d0000b273f366eba0d5127af7a7acc52a,1,1,196173,https://p.scdn.co/mp3-preview/29a2ed0f8ec7d1463d0089b483e035d26d5e6881?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USLF20600004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.686,0.883,4.0,-5.055,0.0,0.061,0.000795,0.00131,0.0666,0.581,100.035,4.0,,LaFace Records,"P (P) 2006 RCA/JIVE Label Group, a unit of Sony Music Entertainment",2304 +2305,spotify:track:4j7VcUsaYMeqe5lJ9gYyW7,This Guy's In Love (With You),spotify:artist:3aAUu37qACrKr6h9eQyNVj,The Reels,spotify:album:02HZQsjbPH9XjYbgKjXMwO,Beautiful,spotify:artist:3aAUu37qACrKr6h9eQyNVj,The Reels,1982,https://i.scdn.co/image/ab67616d0000b273f15fa1dc7339bac69e9b02f8,1,1,270666,https://p.scdn.co/mp3-preview/16d0e40fb376a8da4f0d733e8f08ef7785c3bc25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01284910,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.696,0.293,5.0,-9.381,1.0,0.0324,0.668,0.000367,0.109,0.226,66.589,4.0,,Bloodlines,"C 2013 Bloodlines, P 2013 Bloodlines",2305 +2306,spotify:track:3G6hxSp260RzGw4sOiDOQ3,Case Of The Ex (Whatcha Gonna Do),spotify:artist:6lHL3ubAMgSasKjNqKb8HF,Mýa,spotify:album:6DOrJ531pbcGf3ZkrfayPD,Fear Of Flying,spotify:artist:6lHL3ubAMgSasKjNqKb8HF,Mýa,2000,https://i.scdn.co/image/ab67616d0000b2736c426f620ba1217eb0a9347b,1,2,236906,https://p.scdn.co/mp3-preview/d90599da1f405fc0372874334c9121811d7de9c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USIR10000805,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.772,0.688,1.0,-4.715,0.0,0.0405,0.0548,9.79e-05,0.0725,0.348,98.0,4.0,,Interscope,"C © 2001 UMG Recordings, Inc., P ℗ 2001 UMG Recordings, Inc.",2306 +2307,spotify:track:3GySAImy9gitDcliMaCHYV,Loving You Is Killing Me,spotify:artist:0id62QV2SZZfvBn9xpmuCl,Aloe Blacc,spotify:album:2LAdkhxTJkCWUE4sPw1zgb,Good Things,spotify:artist:0id62QV2SZZfvBn9xpmuCl,Aloe Blacc,2010-09-28,https://i.scdn.co/image/ab67616d0000b273bd6bf55ccc52ed75ce77e726,1,8,204466,https://p.scdn.co/mp3-preview/edee7a222630369615a074d31f8793b5df314196?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US2S71045008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,r&b",0.642,0.702,5.0,-6.953,0.0,0.0294,0.0279,0.0,0.105,0.802,120.248,4.0,,Stones Throw Records,"C 2010 Stones Throw Records, P 2010 Stones Throw Records",2307 +2308,spotify:track:7COXchtUOMd6uIT6HvmRaI,i'm so tired...,"spotify:artist:5JZ7CnR6gTvEMKX4g70Amv, spotify:artist:3WGpXCj9YhhfX11TToZcXP","Lauv, Troye Sivan",spotify:album:13yMsBNa2femeWzhcDOqFw,i'm so tired...,"spotify:artist:5JZ7CnR6gTvEMKX4g70Amv, spotify:artist:3WGpXCj9YhhfX11TToZcXP","Lauv, Troye Sivan",2019-01-24,https://i.scdn.co/image/ab67616d0000b273923d879fb957411a7504fa57,1,1,162582,https://p.scdn.co/mp3-preview/880758abde8dfeb1ba2601ac2bcee3726eb97ecd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKPL1933763,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,australian pop,pop,viral pop",0.599,0.733,11.0,-7.058,1.0,0.203,0.176,0.0,0.242,0.534,102.211,4.0,,Lauv,"C 2019 Lauv, P 2019 Lauv",2308 +2309,spotify:track:5w8XSCft9IMG2LwjRrzFdI,Love Is A Bridge,spotify:artist:6clbbhnIqpHnqxwtOWcilg,Little River Band,spotify:album:7gKAuXsmMdAIhgJZtr3soP,Monsoon,spotify:artist:6clbbhnIqpHnqxwtOWcilg,Little River Band,1988-06-01,https://i.scdn.co/image/ab67616d0000b2737429d827fe95452ab77d2bce,1,3,246560,https://p.scdn.co/mp3-preview/d85074f8884cef671b90a9535bcd478f0498be50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10346037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.653,0.571,9.0,-11.743,1.0,0.0258,0.145,0.0,0.0886,0.68,99.395,4.0,,Universal Music Group,"C © 1988 Geffen Records, P ℗ 1988 Geffen Records",2309 +2310,spotify:track:5UJshy5HDHdNEVqlJwzsQB,Versace on the Floor (Bruno Mars vs. David Guetta),"spotify:artist:0du5cEVh5yTK9QJze8zA0C, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Bruno Mars, David Guetta",spotify:album:0yDiMZdbFwO5lGB9Dq5wlL,Versace On The Floor (Bruno Mars vs. David Guetta),"spotify:artist:0du5cEVh5yTK9QJze8zA0C, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Bruno Mars, David Guetta",2017-06-27,https://i.scdn.co/image/ab67616d0000b27362dc1f2be95dc25beea9f857,1,1,228300,https://p.scdn.co/mp3-preview/e606c64479a9973a8e9d5a5ad1b0a69ad83721d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT21701884,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,big room,dance pop,edm,pop,pop dance",0.747,0.701,2.0,-4.902,1.0,0.0429,0.108,0.0,0.0712,0.589,100.012,4.0,,Atlantic Records,"C © 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",2310 +2311,spotify:track:33IOhptvC2Qoy2UhjiHXLV,Flames,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","David Guetta, Sia",spotify:album:3B8J3BMp7lMA5YR5bUXHGK,Flames,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","David Guetta, Sia",2018-03-22,https://i.scdn.co/image/ab67616d0000b273d0e5bf44bdbe8a824e921eae,1,1,195000,https://p.scdn.co/mp3-preview/a7005ae4555ea814237078baeace5b69b89e21b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GB28K1800010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,pop",0.609,0.726,5.0,-4.346,0.0,0.0414,0.0723,8.45e-06,0.0895,0.362,93.958,4.0,,Parlophone (France),"C © 2018 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company, P ℗ 2018 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company",2311 +2312,spotify:track:1mr3SqpaUKSaV2gOyt6hgC,One In A Million,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:1HvI9ih0NWqNwqh6iard31,Libra Scale,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2010-01-01,https://i.scdn.co/image/ab67616d0000b2735129772aa06c0c8a902e50c5,1,6,243226,https://p.scdn.co/mp3-preview/c4a25c5d38bf87540a67a9f1f2ec491175e2d105?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71016538,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.761,0.797,11.0,-5.942,1.0,0.0381,0.115,2.13e-06,0.329,0.635,100.023,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",2312 +2313,spotify:track:5KUcfpvGWotGdHYPP9SzqK,Onion Skin,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,spotify:album:4gTlV2tRffULoBgXMT9MdZ,The Whole Shebang; An Anthology,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,2017-02-17,https://i.scdn.co/image/ab67616d0000b273010d3b65c6fd0f514b503974,1,12,207447,https://p.scdn.co/mp3-preview/07cd6b55b3b4bbcf29190362f0d5e28197090bc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUBM00700221,spotify:user:bradnumber1,2022-08-31T00:16:31Z,australian rock,0.517,0.928,0.0,-3.036,1.0,0.0709,0.0195,2.4e-05,0.164,0.451,98.979,4.0,,Bloodlines,"C 2017 Bloodlines, P 2017 Bloodlines",2313 +2314,spotify:track:0HLWvLKQWpFdPhgk6ym58n,Who Says,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:1V5vQRMWTNGmqwxY8jMVou,Battle Studies,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2009-11-13,https://i.scdn.co/image/ab67616d0000b2731e3dbe4453ed61633c472fbe,1,4,175480,https://p.scdn.co/mp3-preview/708038e959d2164f3baac4dea9abfe0bc80b9034?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM10904983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.584,0.509,2.0,-13.109,1.0,0.0287,0.267,0.00252,0.36,0.367,90.457,4.0,,Columbia,P (P) 2009 Sony Music Entertainment,2314 +2315,spotify:track:1OutzYv6YiN93lrT3pJsWR,It's My Life,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,spotify:album:4A0hYL3V0zWauEWkyfvqdF,It's My Life,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,2003-01-01,https://i.scdn.co/image/ab67616d0000b2735dc8007e67c01d69a0a8547d,1,1,226053,https://p.scdn.co/mp3-preview/43fcaf9a853a32d364993cd859bc9ef6b9542f84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USIR10312339,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dance rock,permanent wave,pop rock,rock",0.612,0.735,8.0,-5.074,0.0,0.0282,0.00202,0.00118,0.328,0.783,126.326,4.0,,Interscope,"C © 2003 Interscope Records, P ℗ 2003 Interscope Records",2315 +2316,spotify:track:2fdfsGuqb6SBX5ocoBWHUd,The One I Love - Remastered 2012,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,spotify:album:65kIVEdb93smbnC7k4aie7,Document - 25th Anniversary Edition,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,1987-09-01,https://i.scdn.co/image/ab67616d0000b273135322c78a93ff9b1f392c3a,1,7,197800,https://p.scdn.co/mp3-preview/9ddef5168a998cef35f71730e7f13c6e3809c0ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USCA21202402,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,athens indie,permanent wave,rock",0.488,0.84,2.0,-4.626,1.0,0.0356,0.000395,1.21e-06,0.346,0.559,127.862,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",2316 +2317,spotify:track:7eZ7B35FBIAVT8FgTmTAgG,Do It Again,spotify:artist:0Ota2YaOfxcUqhWjnEBcOG,Cassie Davis,spotify:album:50ohLcH9K98ZMfMDif7HIp,Differently,spotify:artist:0Ota2YaOfxcUqhWjnEBcOG,Cassie Davis,2009-08-14,https://i.scdn.co/image/ab67616d0000b2739702f3b08025fc437dd56829,1,5,172346,https://p.scdn.co/mp3-preview/21d967035da2c01fd58d971e2ef40870b94fb6a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00900097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.722,0.633,1.0,-5.138,1.0,0.0685,0.000664,0.0,0.367,0.341,134.031,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd.,2317 +2318,spotify:track:4w8QvjM1Nr344937eMBrgn,"Walk, Don't Run",spotify:artist:2GaayiIs1kcyNqRXQuzp35,The Ventures,spotify:album:7poiPfOdXX08jiYkGeQau7,The Very Best Of The Ventures,spotify:artist:2GaayiIs1kcyNqRXQuzp35,The Ventures,2008-01-01,https://i.scdn.co/image/ab67616d0000b273af27d4a1342b189c96aa8b0f,1,1,126480,https://p.scdn.co/mp3-preview/3c8b648a035b6278ca3f53d2826da32dcdaa3b79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USEM38700135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,surf music,0.423,0.88,5.0,-7.223,1.0,0.0319,0.202,0.0291,0.299,0.96,155.968,4.0,,EMI Gold,"C © 2008 EMI Records Ltd, P This Compilation ℗ 2008 EMI Records Ltd",2318 +2319,spotify:track:3yIF4ZfaHPnPxG8tDPoNls,MacArthur Park - Single Version,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,spotify:album:2SwnDwShj5gYL5dhDNoQun,On The Radio: Greatest Hits Volumes I & II,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,1979-10-15,https://i.scdn.co/image/ab67616d0000b27308e6bf22c16e5b47c2d9c467,1,10,235200,https://p.scdn.co/mp3-preview/7252b932df580645b898822b8c5fca776a2d7b7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402395,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg,new wave pop,soft rock",0.573,0.672,4.0,-12.296,0.0,0.0406,0.0817,0.000752,0.0601,0.465,131.054,4.0,,Universal/Island Def Jam,"C © 1979 The Island Def Jam Music Group, P ℗ 1979 The Island Def Jam Music Group",2319 +2320,spotify:track:0GjEhVFGZW8afUYGChu3Rr,Dancing Queen,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1V6a99EbTTIegOhWoPxYI9,Arrival,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1976,https://i.scdn.co/image/ab67616d0000b27370f7a1b35d5165c85b95a0e0,1,2,230400,https://p.scdn.co/mp3-preview/1116076e3d1538852d6605ada1fd7130c8fc75a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,SEAYD7601020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.543,0.87,9.0,-6.514,1.0,0.0428,0.358,0.000939,0.792,0.754,100.804,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",2320 +2321,spotify:track:48s4feNgV243gbAGTTBIrc,Don't You Remember,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7n3QJc7TBOxXtlYh4Ssll8,21,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2011-01-19,https://i.scdn.co/image/ab67616d0000b273ba764098164f221484bcc309,1,4,243200,https://p.scdn.co/mp3-preview/b07fef0646d43d982ced02b1644c99e9e52fddeb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1000344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.643,0.4,3.0,-5.712,1.0,0.0304,0.214,0.0,0.0866,0.226,115.023,4.0,,XL Recordings,"C 2011 XL Recordings Ltd., P 2011 XL Recordings Ltd.",2321 +2322,spotify:track:3pzjHKrQSvXGHQ98dx18HI,What Do You Mean?,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,3,205680,https://p.scdn.co/mp3-preview/408d55c4d5d6383a57b93361b6e58d5e8916ebe3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71511919,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.845,0.567,5.0,-8.118,0.0,0.0956,0.59,0.00142,0.0811,0.793,125.02,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",2322 +2323,spotify:track:6W04EMrXtUum6yhcxkUGJJ,When the Lights Go Out - Radio Edit,"spotify:artist:6rEzedK7cKWjeQWdAYvWVG, spotify:artist:6Tg1uyto2LrwltY2TQHia2","Five, Cutfather & Joe",spotify:album:5jSAkaiC1BBKZQSZ7wFYOY,Greatest Hits,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,2003-06-02,https://i.scdn.co/image/ab67616d0000b27310df926bec224d743644ea3e,1,8,249933,https://p.scdn.co/mp3-preview/5d98a8f52956f3201433f511f30e9127549ded1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBARL9800025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.849,0.819,5.0,-6.464,1.0,0.0336,0.0553,0.0,0.175,0.951,104.003,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,2323 +2324,spotify:track:5SwibZfVhoLcjE0NVFUtLI,You're The Reason I'm Living,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,spotify:album:0HHH7y38cfb7xbAmIezeyd,The Magic Of,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,2001-01-01,https://i.scdn.co/image/ab67616d0000b273664835cf0b4baf7472173625,1,12,148533,https://p.scdn.co/mp3-preview/b7e31e05e738aa0e65a11f44b92e95b70c8746c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USCA26200463,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rock-and-roll,rockabilly,vocal jazz",0.353,0.224,2.0,-12.176,1.0,0.0268,0.813,0.0,0.17,0.348,72.901,4.0,,EMI Gold,"C © 2006 EMI Records Ltd, P This Compilation ℗ 2001 EMI Records Ltd",2324 +2325,spotify:track:44wXefe8WB9Fd6xwtmAwbR,Monkey Wrench,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:30ly6F6Xl0TKmyBCU50Khv,The Colour And The Shape,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,1997-05-20,https://i.scdn.co/image/ab67616d0000b2730389027010b78a5e7dce426b,1,2,231480,https://p.scdn.co/mp3-preview/3f31f7aff62d944564cff30e1927bf94610c0bc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USRW29600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.401,0.953,4.0,-4.276,1.0,0.0752,1.83e-05,2.56e-05,0.149,0.555,174.217,4.0,,RCA Records Label,"P (P) 1997 Roswell Records, Inc.",2325 +2326,spotify:track:2VVkqfGIVZdM6j0bDoaMkI,To Be with You - 2010 Remastered Version,spotify:artist:5OfhOoKunSnuubxxRML8J3,Mr. Big,spotify:album:5Hk4dywt6etWsbRZo2X7D3,Lean Into It [Expanded] (Japan),spotify:artist:5OfhOoKunSnuubxxRML8J3,Mr. Big,1991,https://i.scdn.co/image/ab67616d0000b2738ce098bb876998fdfea4fb88,1,11,210480,https://p.scdn.co/mp3-preview/8c758ef8106cee89b35633a7927321756c2a55d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20901225,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock",0.687,0.375,4.0,-9.601,1.0,0.0536,0.286,0.0,0.133,0.45,83.642,4.0,,Rhino Atlantic,"C 1991 Atlantic Recording Corporation., P 2009 Atlantic Recording Corporation. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",2326 +2327,spotify:track:19Kf8FxBJ5a1Bb8uKCrIIe,Little Jeannie,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:6uIizyHYBxUUp3I76LQ8cV,21 At 33,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1980-05-13,https://i.scdn.co/image/ab67616d0000b273b281195bad996d63f3a225e7,1,2,313186,https://p.scdn.co/mp3-preview/001824c9f801c57c4d77023d340727a5cea7cb77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBA098000020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.616,0.444,10.0,-14.224,1.0,0.0276,0.461,0.000115,0.0847,0.763,143.805,4.0,,UMC (Universal Music Catalogue),"C © 2003 Mercury Records Limited, P ℗ 1980 Mercury Records Limited",2327 +2328,spotify:track:7xuKuP2AAnG9aQ4NvtaHHU,I Say A Little Prayer,spotify:artist:221iMiF62DFPnVuCLJakP1,Diana King,spotify:album:0QhwxYDUougJiVDtyN4Lhm,"R&B - 100 Hits - The Greatest R n B album - 100 R & B Classics featuring Usher, Pitbull and Justin Timberlake",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-06-24,https://i.scdn.co/image/ab67616d0000b2731c3fd856b637a87c675d2f29,1,84,211533,https://p.scdn.co/mp3-preview/0ed14446a5eeb8db670e4238798c388d5127ea18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USSM19701790,spotify:user:bradnumber1,2021-08-08T09:26:31Z,reggae fusion,0.69,0.889,4.0,-5.074,0.0,0.0594,0.00875,9.46e-06,0.0904,0.538,125.959,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment,2328 +2329,spotify:track:0nQLxiNGbbUoSGrxksETLm,The Power,spotify:artist:2FrKQPjJe4pVMZOgm0ESOx,SNAP!,spotify:album:40dT7brCvniJawDHpBCE4A,World Power,spotify:artist:2FrKQPjJe4pVMZOgm0ESOx,SNAP!,1990-01-01,https://i.scdn.co/image/ab67616d0000b27347930301a69fe411d50a6e3e,1,1,228993,https://p.scdn.co/mp3-preview/a3c739364b6e41568cac179e0a1bb4a1ad39c560?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,DET189000100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,german techno,hip house",0.74,0.88,0.0,-7.693,1.0,0.0624,0.0434,0.00803,0.341,0.707,108.899,4.0,,BMG Rights Management GmbH,"C © 1990 BMG Rights Management GmbH, P ℗ 1990 BMG Rights Management GmbH",2329 +2330,spotify:track:6x1FtRaGBGXbRHcJh3rvYc,All of You (feat. Diana Ross),"spotify:artist:4etuCZVdP8yiNPn4xf0ie5, spotify:artist:3MdG05syQeRYPPcClLaUGl","Julio Iglesias, Diana Ross",spotify:album:21GSy4UKShEpEfrojAEK9U,My Life: The Greatest Hits,spotify:artist:4etuCZVdP8yiNPn4xf0ie5,Julio Iglesias,1998-09-05,https://i.scdn.co/image/ab67616d0000b2737703391d79ac40b36b4b1068,1,3,237493,https://p.scdn.co/mp3-preview/71d379232cb290e7f7e0bea5ef60e51cc9ed34bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,NLB638410009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,adult standards,disco,motown,quiet storm,soft rock,soul",0.476,0.587,10.0,-8.518,0.0,0.0289,0.35,0.0,0.406,0.518,85.913,4.0,,SMI Artist,P This compilation (P) 1998 Sony Music Entertainment,2330 +2331,spotify:track:6H3kDe7CGoWYBabAeVWGiD,Gimme Shelter,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:4l4u9e9jSbotSXNjYfOugy,Let It Bleed,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1969-12-05,https://i.scdn.co/image/ab67616d0000b2732af30c881bb23cfb82a8cf99,1,1,270773,https://p.scdn.co/mp3-preview/5f40ddd21847b7bc3480e35c77ad3cbb6679975b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USA176910020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.634,0.63,1.0,-8.277,0.0,0.031,0.447,0.039,0.17,0.489,118.628,4.0,,"ABKCO Music and Records, Inc.","C © 2002 ABKCO Music & Records Inc., P ℗ 2002 ABKCO Music & Records Inc.",2331 +2332,spotify:track:6gWlTg1Betk0HsaRQj6G6q,"Que Sera, Sera (Whatever Will Be, Will Be)",spotify:artist:23U4BazsWheaHKYgKGnnkl,Normie Rowe,spotify:album:0F3smCoP8sLUvuLbu0W5mH,Greatest Hits,spotify:artist:23U4BazsWheaHKYgKGnnkl,Normie Rowe,2007-02-06,https://i.scdn.co/image/ab67616d0000b27397e694959d6240a264f0ce70,1,1,157266,https://p.scdn.co/mp3-preview/643e0f20e47413dd04985d8f99145f54f5136cb5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUFE07400105,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,cabaret",0.459,0.7,2.0,-9.822,1.0,0.0683,0.00789,1.02e-05,0.529,0.585,131.414,4.0,,WM Australia,"C © 1974 Sunshine Records, P ℗ 1974 Sunshine Records",2332 +2333,spotify:track:4SRqDmPxYX0pUb5B5ut2Ri,So Sick,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:1WO7bigEZckVrkzPBjAsiQ,In My Own Words,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2006-01-01,https://i.scdn.co/image/ab67616d0000b273b1ae30a0da12549cd8b7ba28,1,3,207186,https://p.scdn.co/mp3-preview/d20bda60099b74668ec74447fa0494b47cba8650?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70501633,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.452,0.574,6.0,-8.336,1.0,0.31,0.246,0.0,0.189,0.58,92.791,4.0,,Universal Music Group,"C © 2006 The Island Def Jam Music Group, P ℗ 2006 The Island Def Jam Music Group",2333 +2334,spotify:track:0FpT75cRdvf6va1TARHrl5,7 Things,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:70PDDh5Cgbdpt37Z00hJUF,Breakout,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2008-01-01,https://i.scdn.co/image/ab67616d0000b2735f431f63e7c4e4f0d6b568e3,1,2,213453,https://p.scdn.co/mp3-preview/d4906660583396d0787747f1f3d4dec3114ec40e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USHR10823877,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.591,0.904,1.0,-4.478,0.0,0.0359,0.0244,0.0,0.0786,0.542,107.027,4.0,,Universal Music Group International,"C © 2008 Hollywood Records, under exclusive license to Universal Music International BV, P ℗ 2008 Hollywood Records, under exclusive license to Universal Music International BV",2334 +2335,spotify:track:7E9ekWisADeJ83ulYqUZy6,Hey Bitty - Main,spotify:artist:0kEcxP5ezzvP5RcO51TCBD,Nitty,spotify:album:50DZkQXHtsUjZksvKZ77q4,Players Paradise,spotify:artist:0kEcxP5ezzvP5RcO51TCBD,Nitty,2005-01-01,https://i.scdn.co/image/ab67616d0000b2730ac1fca52a343a1ad68d03d4,1,2,169533,https://p.scdn.co/mp3-preview/1c656eecdf954d2e0616fe48315b6b31fb250033?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR10401100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bronx hip hop,0.901,0.931,8.0,-5.129,1.0,0.0569,0.0031,0.0,0.0664,0.888,139.944,4.0,,Universal Music,"C © 2005 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Records, a Division of UMG Recordings, Inc.",2335 +2336,spotify:track:4jGGYu7X6N2oxpSy55d9lv,The Love Game,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,spotify:album:28L7sCuuF8Zt6dW1FuZqRh,I Hate the Music,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,2009-09-18,https://i.scdn.co/image/ab67616d0000b273c6cd995a8ad657da9a0c10f4,1,8,210306,https://p.scdn.co/mp3-preview/6894930a6d2998e8c49035a09a1561963ac5acf3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07500026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,classic uk pop",0.683,0.866,6.0,-9.617,0.0,0.0844,0.382,7.81e-05,0.166,0.831,141.213,4.0,,Albert Productions,"C © 2009 BMG AM Pty Ltd., P ℗ 2009 BMG AM Pty Ltd.",2336 +2337,spotify:track:4pVTneBibGa5HU7HzAOvY8,Just Another Night,spotify:artist:3d2pb1dHTm8b61zAGVUVvO,Mick Jagger,spotify:album:0xJYbTxo4DMYSHkC7iSqPB,She's The Boss,spotify:artist:3d2pb1dHTm8b61zAGVUVvO,Mick Jagger,1985-02-19,https://i.scdn.co/image/ab67616d0000b273ddd7bf3128402ae651f5f485,1,6,315613,https://p.scdn.co/mp3-preview/c223f076f35f3cfce0e785dd23cc5b263b62ad9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USAT20105386,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,dance rock",0.766,0.878,9.0,-4.862,0.0,0.0585,0.127,0.00391,0.102,0.833,132.011,4.0,,UMC (Universal Music Catalogue),"C © 2019 Promotone B.V., under exclusive licence to Universal International Music B.V., P ℗ 2019 Promotone B.V., under exclusive licence to Universal International Music B.V.",2337 +2338,spotify:track:52MJZwo0UGqgFitqv8YFVK,I Shot The Sheriff,spotify:artist:2B4ZHz4QDWJTXPFPgO5peE,Warren G,spotify:album:59JiwsQ9p5dJWWcBEGB5Np,Take A Look Over Your Shoulder (Reality),spotify:artist:2B4ZHz4QDWJTXPFPgO5peE,Warren G,1997-03-25,https://i.scdn.co/image/ab67616d0000b273f785821a6fee83079b99062b,1,17,246733,https://p.scdn.co/mp3-preview/c78e367b041a2476de15a118e71712112c562dcb?cid=9950ac751e34487dbbe027c4fd7f8e99,True,32,USRL19700007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hardcore hip hop,hip hop,west coast rap",0.859,0.691,10.0,-9.224,0.0,0.209,0.0278,1.96e-05,0.198,0.78,91.454,4.0,,RAL (Rush Associated Label),"C © 1997 Mercury Records Limited, P ℗ 1997 UMG Recordings, Inc.",2338 +2339,spotify:track:63xXVFJZaSfwWKn7j0Vh04,From Little Things Big Things Grow,spotify:artist:5uKeKhwXi2w5cXdtoSaqjz,The Waifs,spotify:album:4dN2UoUgVj9oIq0VSFkHEZ,Cannot Buy My Soul: The Songs Of Kev Carmody (2020 Edition),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2020-08-21,https://i.scdn.co/image/ab67616d0000b273c13c126072d5220b5819e696,1,11,313666,https://p.scdn.co/mp3-preview/38f51c1c8279a8b75fde26c1be5fcb4552d95572?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUEM00600407,spotify:user:bradnumber1,2022-01-12T23:19:57Z,"australian alternative rock,australian indie,australian rock,indie folk",0.714,0.301,9.0,-11.261,1.0,0.0454,0.599,0.0,0.0876,0.522,104.234,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2020 Universal Music Australia Pty Ltd., P This Compilation ℗ 2020 Universal Music Australia Pty Ltd.",2339 +2340,spotify:track:6aPcXmueH5e3qtbrwr1ezZ,Boys & Girls,"spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n","Martin Solveig, Dragonette",spotify:album:4HRpy93zKbFppMl79lfFS1,Smash,spotify:artist:1bj5GrcLom5gZFF5t949Xl,Martin Solveig,2011-01-01,https://i.scdn.co/image/ab67616d0000b273a991b1e9a11bafa3dd4c56f1,1,9,225489,https://p.scdn.co/mp3-preview/4afa74997f5bd103116903fed48fb4c77fc1087f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,FR2PA0900150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,edm,electro house,filter house,house,pop dance,vocal house,canadian electropop,canadian pop,dance rock,electropop,metropopolis,neo-synthpop",0.789,0.625,0.0,-2.88,1.0,0.041,0.00555,9.68e-06,0.069,0.902,131.005,4.0,,Ministry Of Sound,"C © 2011 Temps D'Avance, P ℗ 2011 Temps D'Avance, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd",2340 +2341,spotify:track:0itNMuBHye9fu392b4e9oa,Tell Me Baby,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:7xl50xr9NDkd3i2kBbzsNZ,Stadium Arcadium,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,2006-05-09,https://i.scdn.co/image/ab67616d0000b27309fd83d32aee93dceba78517,2,2,247666,https://p.scdn.co/mp3-preview/114662b0b986398b9e39d5ecd1354cd3a582cd6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USWB10601605,spotify:user:bradnumber1,2023-08-08T22:04:18Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.695,0.993,0.0,-3.114,1.0,0.0612,0.00177,0.00246,0.0814,0.281,107.951,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",2341 +2342,spotify:track:710zARjDZFnODiJJ4kFPmY,The Boys Of Summer - Radio Version,spotify:artist:4z4m1P0iX2nRSPDBEZ8LBT,DJ Sammy,spotify:album:7sxf16KD2sXzLmFyNRqjCZ,The Boys of Summer,spotify:artist:4z4m1P0iX2nRSPDBEZ8LBT,DJ Sammy,2002-12-10,https://i.scdn.co/image/ab67616d0000b273e6e4bf09a84f299c51f8feff,1,1,243066,https://p.scdn.co/mp3-preview/f8c062632ae39879e209616d6891b4b122621bd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,DEN120206617,spotify:user:bradnumber1,2021-08-08T09:26:31Z,eurodance,0.622,0.881,6.0,-4.211,1.0,0.0287,0.0132,3.28e-05,0.0916,0.576,144.984,4.0,,Robbins Entertainment LLC,"C (C) 2002 Robbins Entertainment LLC, P (P) 2002 Robbins Entertainment LLC",2342 +2343,spotify:track:2AogRMqARWyUP7VQ3gmSoY,Can't Fight The Moonlight,spotify:artist:2d3VHzlOEwXvmBdS4pzOPL,LeAnn Rimes,spotify:album:7uBPEVNhaQa2G68Rd6mToK,I Need You,spotify:artist:2d3VHzlOEwXvmBdS4pzOPL,LeAnn Rimes,2001-01-30,https://i.scdn.co/image/ab67616d0000b2735cf523cc3dd38a682bf9cd7e,1,6,215506,https://p.scdn.co/mp3-preview/8c89c35873bbffbdbf72479e44a12ccaeaceccd3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USCRB0000703,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,country dawn,country road",0.628,0.834,6.0,-6.341,0.0,0.0497,0.403,0.0,0.051,0.626,97.865,4.0,,Curb Records,"C 2002 Curb Records, Inc., P 2002 Curb Records, Inc.",2343 +2344,spotify:track:1HbcclMpw0q2WDWpdGCKdS,Tenerife Sea,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:1xn54DMo2qIqBuMqHtUsFd,x (Deluxe Edition),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2014-06-21,https://i.scdn.co/image/ab67616d0000b27313b3e37318a0c247b550bccd,1,8,241346,https://p.scdn.co/mp3-preview/7f1ba691113b6393f373e763ea0a2261c9215a8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAHS1400096,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.53,0.346,8.0,-10.497,1.0,0.0376,0.697,1.07e-05,0.105,0.359,121.876,4.0,,Atlantic Records UK,"C © 2014 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 Asylum Records UK, a Warner Music UK Company, except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",2344 +2345,spotify:track:0IuVhCflrQPMGRrOyoY5RW,she's all i wanna be,spotify:artist:45dkTj5sMRSjrmBSBeiHym,Tate McRae,spotify:album:51oWPUjnGhecw62V8LDXK8,she's all i wanna be,spotify:artist:45dkTj5sMRSjrmBSBeiHym,Tate McRae,2022-02-04,https://i.scdn.co/image/ab67616d0000b273f7916a35ffdd6cb90bbbdf2f,1,1,206772,https://p.scdn.co/mp3-preview/404935a0ab1ae472569566569e893b6bf816a92a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USRC12103120,spotify:user:bradnumber1,2022-04-27T22:12:34Z,pop,0.614,0.644,2.0,-5.372,0.0,0.0426,0.0134,7.07e-06,0.117,0.651,160.036,4.0,,RCA Records Label,"P (P) 2022 RCA Records, a division of Sony Music Entertainment",2345 +2346,spotify:track:6YHpaawV0C88rwt2bQE6jV,Toy Soldiers,spotify:artist:40enFxfEXXsEXKOt1vgx0k,Martika,spotify:album:2dSrr6vS6RT9UWLOCEU0PY,Martika,spotify:artist:40enFxfEXXsEXKOt1vgx0k,Martika,1988-10-18,https://i.scdn.co/image/ab67616d0000b2734e792aaec7138ddbb1f0a282,1,4,287533,https://p.scdn.co/mp3-preview/bd8fc79147ce25309f909ba1330caf507314217e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM18800406,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"minneapolis sound,new romantic,new wave pop",0.522,0.441,1.0,-11.703,0.0,0.028,0.416,0.0,0.22,0.199,130.133,4.0,,Columbia,P (P) 1988 Sony Music Entertainment Inc.,2346 +2347,spotify:track:2Eus7YYmEzWjvyfowbRhsg,Song for Anna,spotify:artist:7bVbXDt5osMt8ZQMZZbeFj,"Herb Ohta\, Sr.",spotify:album:6YLoza4L0Y3HG5Dmx4wKRE,"Hawaiian Virtuoso - The Best of the Steel Guitar and the Ukulele: Songs Like Ka Ua Loku, On the Beach at Waikiki, Blue Hawaii, Aloha 'Oe Blues, And More!",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-05-01,https://i.scdn.co/image/ab67616d0000b273b5c7f75272ff92ef144db744,1,16,217853,https://p.scdn.co/mp3-preview/d5ea5198ffbce2f16ba8178c653ca60961acbd89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USAER0710675,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.568,0.348,2.0,-13.719,1.0,0.0744,0.991,0.944,0.704,0.977,100.304,4.0,,Celebration Sounds,C (C) 2014 Celebration Sounds,2347 +2348,spotify:track:4YfNfHp6QCA6Cbikl42Bwr,Gravy (For My Mashed Potatoes),spotify:artist:2NtGOVTuHBMDfR5PMNPBGT,Dee Dee Sharp,spotify:album:6THxNKHEOOBIXrKsT4WTmM,Cameo Parkway - The Best Of Dee Dee Sharp (Original Hit Recordings) [International Version],spotify:artist:2NtGOVTuHBMDfR5PMNPBGT,Dee Dee Sharp,1962-01-01,https://i.scdn.co/image/ab67616d0000b27336d3081512141ee1edafbc7c,1,2,124600,https://p.scdn.co/mp3-preview/b48d326f3471a9ab251bd59da1b6c4ae1501ceb2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176240290,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,doo-wop,motown,philly soul,rhythm and blues,southern soul",0.722,0.85,2.0,-4.364,1.0,0.0298,0.682,0.0,0.304,0.973,130.738,4.0,,Universal Music Group,"C © 2006 ABKCO Records Inc., P ℗ 2006 ABKCO Records Inc.",2348 +2349,spotify:track:6PJb8v5dvpy8tGqVWE9Ziv,Because We Want To,spotify:artist:3RjnAn8EWb7zaLlGWVxQeP,Billie Piper,spotify:album:3sNtFp20Iy8BgiNtRwUJkI,The Very Best Of Billie Piper,spotify:artist:3RjnAn8EWb7zaLlGWVxQeP,Billie Piper,2005-01-01,https://i.scdn.co/image/ab67616d0000b2732ed2304fd3e47484d8dd64e6,1,1,230573,https://p.scdn.co/mp3-preview/a4eac6849e48b2ddd51271c55092462d2f85f9f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GBAAA9800884,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,europop,talent show",0.831,0.963,1.0,-4.557,0.0,0.0584,0.089,8.11e-06,0.186,0.839,107.029,4.0,,Virgin Budget,"C © 2005 EMI Records Ltd, P This Compilation ℗ 2005 EMI Records Ltd",2349 +2350,spotify:track:2xjWiL4bvoU8HuQKCPc74M,Antidote (feat. Sam Fischer),"spotify:artist:5PjekOABtfU2Kwo0AHVmci, spotify:artist:6L1XC7NrmgWRlwAeLJvVtA","Guy Sebastian, Sam Fischer",spotify:album:5RNKvbH8ofonEcdkXcReyA,Antidote (feat. Sam Fischer),"spotify:artist:5PjekOABtfU2Kwo0AHVmci, spotify:artist:6L1XC7NrmgWRlwAeLJvVtA","Guy Sebastian, Sam Fischer",2024-02-22,https://i.scdn.co/image/ab67616d0000b273950bcae843b6ea0f5e28c778,1,1,280463,https://p.scdn.co/mp3-preview/262b68043fc31e07f471b6f60a51af31c1afeec3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUBM02300180,spotify:user:bradnumber1,2024-03-26T04:03:22Z,"australian pop,australian pop,singer-songwriter pop",0.425,0.585,0.0,-5.56,1.0,0.0358,0.405,0.0,0.16,0.253,132.79,4.0,,Sony Music Entertainment,"P (P) 2024 Sony Music Entertainment Australia Pty Ltd. Sam Fischer appears courtesy of RCA Records, a division of Sony Music Entertainment UK Limited.",2350 +2351,spotify:track:5o2UsVpnpQcDDRcuEPzGIm,Tokyo (Vampires & Wolves),spotify:artist:0Ya43ZKWHTKkAbkoJJkwIB,The Wombats,spotify:album:1hKNgyPKnkCjWtH5GtusTq,The Wombats Proudly Present... This Modern Glitch,spotify:artist:0Ya43ZKWHTKkAbkoJJkwIB,The Wombats,2011-04-22,https://i.scdn.co/image/ab67616d0000b27367c138b47ef3788cd065c35a,1,2,225526,https://p.scdn.co/mp3-preview/0af634eab784a7197eb82d6b478a222e1eecc4d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBFTG1100007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"liverpool indie,modern alternative rock,modern rock",0.457,0.911,0.0,-5.52,1.0,0.075,0.000913,0.0,0.37,0.572,146.394,4.0,,14th Floor Records,"C © 2011 14th Floor Records, P ℗ 2011 14th Floor Records",2351 +2352,spotify:track:44AyOl4qVkzS48vBsbNXaC,Can't Help Falling in Love,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:7xe8VI48TxUpU1IIo0RfGi,Blue Hawaii,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1961-10-20,https://i.scdn.co/image/ab67616d0000b273f96cefb0197694ad440c3314,1,5,182360,https://p.scdn.co/mp3-preview/962e228fc976da0f39439d99893b3d7151031577?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USRC16101350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.396,0.293,2.0,-14.062,1.0,0.0275,0.941,0.000196,0.105,0.343,100.307,3.0,,RCA/Legacy,P (P) 1961 Sony Music Entertainment,2352 +2353,spotify:track:6h3fhY6QGo6TWBctqmVqZv,Release Me,spotify:artist:6SsTlCsuCYleNza6xGwynu,Agnes,spotify:album:39dYYX6L4o7Jlgg0SkNwMt,Dance Love Pop (Australian Deluxe Edition),spotify:artist:6SsTlCsuCYleNza6xGwynu,Agnes,2010-04-09,https://i.scdn.co/image/ab67616d0000b2732c2a4b6121bcb122b71097db,1,1,210426,https://p.scdn.co/mp3-preview/c5eef98ce3f59aa581736b85e5d92b530b9a1a2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBSXS0900056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"swedish electropop,swedish idol pop,swedish pop",0.617,0.911,2.0,-3.372,0.0,0.0362,0.00597,0.000129,0.0934,0.657,127.995,4.0,,WM Australia,"C 2010 Neon Records Pty Limited. www.neonrecords.com.au., P 2009 Roxy Recordings. www.roxyrecordings.se",2353 +2354,spotify:track:21avvmlLWna5CQMxSNDLL8,I Don't Need A Man,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,spotify:album:53zV9rZ5yfWgigsmuJtYpG,PCD,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2005-01-01,https://i.scdn.co/image/ab67616d0000b2735d9edaa7b844f929a5b2973e,1,6,219093,https://p.scdn.co/mp3-preview/ed1c004ee105961ffba4ec848695f05b951c7534?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM70503129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.77,0.954,10.0,-3.898,1.0,0.0436,0.0474,5.3e-05,0.0691,0.743,105.838,4.0,,Pussycat Dolls,"C © 2005 Pussycat Dolls, LLC, P ℗ 2005 Pussycat Dolls, LLC",2354 +2355,spotify:track:1lzr43nnXAijIGYnCT8M8H,It Wasn't Me,"spotify:artist:5EvFsr3kj42KNv97ZEnqij, spotify:artist:67wCYxOq4A1ohAs7jWYaOJ","Shaggy, Rik Rok",spotify:album:6NmFmPX56pcLBOFMhIiKvF,Hot Shot (International Version #2),spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,2000,https://i.scdn.co/image/ab67616d0000b273d6ab2ff415cc6b28ab27ac5d,1,3,227600,https://p.scdn.co/mp3-preview/a0b006f31a20deb4e965c3a2092a975067064c36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10000393,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,reggae fusion,reggae fusion",0.853,0.606,0.0,-4.596,1.0,0.0713,0.0561,0.0,0.313,0.654,94.759,4.0,,Geffen,"C © 2001 MCA Records Inc., P ℗ 2001 Geffen Records",2355 +2356,spotify:track:2YpeDb67231RjR0MgVLzsG,Old Town Road - Remix,"spotify:artist:7jVv8c5Fj3E9VhNjxT4snq, spotify:artist:60rpJ9SgigSd16DOAG7GSa","Lil Nas X, Billy Ray Cyrus",spotify:album:4IRiXE5NROxknUSAUSjMoO,7 EP,spotify:artist:7jVv8c5Fj3E9VhNjxT4snq,Lil Nas X,2019-06-21,https://i.scdn.co/image/ab67616d0000b273c0e7bf5cdd630f314f20586a,1,1,157066,https://p.scdn.co/mp3-preview/32744d501b733e5b31d25448540e365db2600c45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM11902498,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lgbtq+ hip hop,country rock",0.878,0.619,6.0,-5.56,1.0,0.102,0.0533,0.0,0.113,0.639,136.041,4.0,,Columbia,"P (P) 2019 Columbia Records, a Division of Sony Music Entertainment",2356 +2357,spotify:track:0KHLV5TPrJBlOjBWdFwZYB,I Take It Back,spotify:artist:5Xh0e6sCvMXJUNVa4oynvx,Sandy Posey,spotify:album:3Lzznx139RsWiksHBUR9zH,I Will Follow Him - The Best Of,spotify:artist:5Xh0e6sCvMXJUNVa4oynvx,Sandy Posey,2009-09-01,https://i.scdn.co/image/ab67616d0000b273d14fc1dc1c827c1ea6e8b45c,1,4,157386,https://p.scdn.co/mp3-preview/e2167479e3d7e70ba2dfa5c3de23ad083a459731?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USA370946188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.557,0.271,10.0,-19.707,1.0,0.0409,0.788,0.364,0.0847,0.709,134.565,3.0,,"Nifty Music, Inc.",C (C) 2009 Goldenlane Records,2357 +2358,spotify:track:7dfl9X38RhIvB3oSmmneq3,I'll Make Love To You,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,spotify:album:1DjxZpmeR9Dzu9tF4J44S7,II,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,1994-08-30,https://i.scdn.co/image/ab67616d0000b273a94a1672a1fc0373b3e9aa7b,1,9,236760,https://p.scdn.co/mp3-preview/394788bfe61092772cb66a5258c500e4c59ac9a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USMO19400340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.559,0.49,2.0,-8.06,1.0,0.0247,0.104,0.0,0.099,0.201,142.445,3.0,,Motown,"C © 1994 Motown Record Company L.P., P ℗ 1994 UMG Recordings, Inc.",2358 +2359,spotify:track:6Uvlm9HynXWtt8v0wLQM4f,Sad Songs (Say So Much),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:7jeRnvDGCBoMf6TyvOsf9v,To Be Continued...,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1990-01-01,https://i.scdn.co/image/ab67616d0000b273cc8a9483c31ea6ce98822d82,4,4,249226,https://p.scdn.co/mp3-preview/45487a2368a7bbc7776ad2e2dbb4041f23f11108?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALX8400009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.745,0.911,0.0,-6.259,1.0,0.0285,0.148,0.000539,0.375,0.931,107.24,4.0,,Universal Music Group,"C © 1990 Mercury Records Limited, P ℗ 1990 Mercury Records Limited",2359 +2360,spotify:track:6INwti4FZM31l0lJDKbpxn,Jubel - Radio Edit,spotify:artist:1L9i6qZYIGQedgM9QLSyzb,Klingande,spotify:album:2QKdLS1J4yQ20q8ivavV6S,Jubel,spotify:artist:1L9i6qZYIGQedgM9QLSyzb,Klingande,2014-01-01,https://i.scdn.co/image/ab67616d0000b2732014b2b843fe20d6377f169c,1,1,201626,https://p.scdn.co/mp3-preview/33df311201dadea08421c6ba30fdb7aac9dc614b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,FR9W11310765,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep house,pop dance,tropical house",0.686,0.524,0.0,-7.251,1.0,0.0343,0.649,0.0569,0.14,0.0951,124.938,4.0,,Universal Music Australia Pty. Ltd.,"C © 2013 Klingande Music, P ℗ 2013 Klingande Music, under exclusive licence to Neon Records Pty Ltd",2360 +2361,spotify:track:2BSm925aJog65vjU9FU1R3,You're a Friend of Mine,"spotify:artist:7hiRmH8QebrJgMZYAbFtoO, spotify:artist:5lkiCO9UQ8B23dZ1o0UV4m","Clarence Clemons, Jackson Browne",spotify:album:0tl7YJWMDU4zYj50yrkf0f,Rescue / Hero,spotify:artist:7hiRmH8QebrJgMZYAbFtoO,Clarence Clemons,1999-07-11,https://i.scdn.co/image/ab67616d0000b273da1c621859d1f05054ce5d7f,1,9,290160,https://p.scdn.co/mp3-preview/153867778f11dcc4b2319fddd2ac26362e5f5391?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USSM18500501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk,folk rock,heartland rock,mellow gold,piano rock,singer-songwriter,soft rock",0.593,0.918,11.0,-4.883,1.0,0.0361,0.036,4.26e-06,0.194,0.755,92.835,4.0,,Columbia,P 1999 Sony Music Entertainment (UK) Ltd.,2361 +2362,spotify:track:6aGjEZ7kq3YXgD0EDt80O5,Live While We're Young,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:5SxEsi1PNyo1XfEKDYcFKF,Take Me Home: Yearbook Edition,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2012-11-09,https://i.scdn.co/image/ab67616d0000b27327f49bace8c5a33039bbaa11,1,1,200186,https://p.scdn.co/mp3-preview/de456e989a68085a378a14b75571d191725c612e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1200210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.658,0.837,2.0,-2.063,1.0,0.0543,0.0629,0.0,0.0969,0.936,126.015,4.0,,Syco Music UK,P (P) 2012 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,2362 +2363,spotify:track:76krhACKEu7Z1u9nTr9UMv,All Alone,spotify:artist:6yoPXQB23IqCM5x40h263S,Jackson Jackson,spotify:album:2y9WgOLcfj24XCrPTjTc3o,Tools for Survival,spotify:artist:6yoPXQB23IqCM5x40h263S,Jackson Jackson,2008-10-11,https://i.scdn.co/image/ab67616d0000b273789c14893d8d167a0b859667,1,4,217800,https://p.scdn.co/mp3-preview/2fb8b5b9eb2d15c11173b3d8dce7aeeca57946e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUJJ00800004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.544,0.674,7.0,-6.344,1.0,0.0275,0.0013,3.59e-06,0.151,0.2,129.991,4.0,,OP Records,"C 2008 OP Records, P 2008 OP Records",2363 +2364,spotify:track:3Y4FbndyUpx6Fkj55voaH6,Sunshine,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,spotify:album:2Zj1VEaNjkNt6z1BekbbVW,The Singles,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,2008-11-08,https://i.scdn.co/image/6b9db9c4712c3a39cb49c9a1234cbf80e2d196f8,1,5,182987,https://p.scdn.co/mp3-preview/c1650e2f75755f6119e4cc32d6f016bea6d46208?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,AUOY00500072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian talent show",0.533,0.809,1.0,-5.607,1.0,0.0602,0.0201,0.0,0.294,0.872,168.967,4.0,,Shock Entertainment,C 2008 Public Opinion Music Pty Ltd. under agreement with Shock Records,2364 +2365,spotify:track:6UjZ2Yx2g2a52XxiA8ONxZ,Outnumbered,spotify:artist:5KNNVgR6LBIABRIomyCwKJ,Dermot Kennedy,spotify:album:4BQVnx1yJrDa1tcky9D9N6,Outnumbered,spotify:artist:5KNNVgR6LBIABRIomyCwKJ,Dermot Kennedy,2019-06-13,https://i.scdn.co/image/ab67616d0000b273fc3f07299bdbddc97184d964,1,1,245699,https://p.scdn.co/mp3-preview/2598193111119cdd9f6be19569c6a6c410dfa895?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUG11901618,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,irish pop,uk pop",0.614,0.684,0.0,-5.79,1.0,0.157,0.247,0.0,0.0976,0.258,156.85,4.0,,Riggins Recording Limited,"C © 2019 Riggins Recording Limited, P ℗ 2019 Riggins Recording Limited",2365 +2366,spotify:track:24yDQWnPh85du5UBWTGIKL,My Heart Knows,spotify:artist:1wrWZOQb5yW8NgTC5BwDpi,Johnny Preston,spotify:album:1LOwHourc3GtqJXwRHNlo9,Above The Clouds,spotify:artist:1wrWZOQb5yW8NgTC5BwDpi,Johnny Preston,2013-06-20,https://i.scdn.co/image/ab67616d0000b273d86661d1b8ee9bd77d3d1c16,1,2,149360,https://p.scdn.co/mp3-preview/6ddf0a1dedc5b1cc776d0f2def91709b06bb378a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,DELJ81335483,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.599,0.351,7.0,-7.56,1.0,0.0319,0.832,0.000949,0.0831,0.543,108.008,3.0,,Pintball,"C 2013 Copyright Control, P 2013 Johnny Preston",2366 +2367,spotify:track:2Cb2ZghHqyyVekpJwCHP6J,"1, 2 Step","spotify:artist:34QHr1kYdBCLlvXDMEEbe5, spotify:artist:72luDUYRlE8N8lPSgyhiwo","Marty Guilfoyle, John Gibbons",spotify:album:4770hePlCyLR8l1mddWgsv,"1, 2 Step","spotify:artist:34QHr1kYdBCLlvXDMEEbe5, spotify:artist:72luDUYRlE8N8lPSgyhiwo","Marty Guilfoyle, John Gibbons",2020-05-29,https://i.scdn.co/image/ab67616d0000b2730b56bdc07de9745ff6addaf5,1,1,160571,https://p.scdn.co/mp3-preview/02540bc8d1b8b24fad725d09157bbef969985b81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,IEHRA2000013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk dance,0.814,0.832,7.0,-5.296,0.0,0.0305,0.0432,0.0,0.0797,0.8,128.028,4.0,,BLINDsided,"C 2020 BLINDsided, P 2020 Warner Chappell, BMG Rights Management, Wixen Music UK",2367 +2368,spotify:track:35o9a4iAfLl5jRmqMX9c1D,Shape of My Heart,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:41zXjyVr6dzmchWf8tv3UO,Black & Blue,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,2000-11-21,https://i.scdn.co/image/ab67616d0000b273cf871e6326e334bfa92cff20,1,2,230093,https://p.scdn.co/mp3-preview/51ef6b2dc6f49c442e4e30f5506f7634aa6f041b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USJI10000536,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.575,0.786,9.0,-4.353,1.0,0.0296,0.252,0.0,0.159,0.518,96.102,4.0,,Jive,P (P) 2000 Zomba Recording LLC,2368 +2369,spotify:track:79tl45OGogfoucy9GDohG2,Go All Night,"spotify:artist:4VNQWV2y1E97Eqo2D5UTjx, spotify:artist:35GL8Cu2GKTcHzKGi75xl5","Gorgon City, Jennifer Hudson",spotify:album:3u3wA2mFU0UgAtyMJW3xa5,Sirens (Deluxe),spotify:artist:4VNQWV2y1E97Eqo2D5UTjx,Gorgon City,2014-01-01,https://i.scdn.co/image/ab67616d0000b2730a02384f1dfa6614b7994caf,1,6,200360,https://p.scdn.co/mp3-preview/21986fd824ab25106878adee32ebcd42c9c8d464?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBUM71404032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"future garage,house,pop dance,uk dance,dance pop,r&b,urban contemporary",0.73,0.634,2.0,-8.1,1.0,0.0389,0.00524,0.000118,0.18,0.52,121.025,4.0,,EMI,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",2369 +2370,spotify:track:5V53dAjgNInfXNlz2cryvd,Do You Remember,spotify:artist:23IZADrJHPStZ6aMxJVq3s,Jarryd James,spotify:album:4kZKz4ZQCnuKWV6MqOR2H2,Thirty One,spotify:artist:23IZADrJHPStZ6aMxJVq3s,Jarryd James,2015-09-11,https://i.scdn.co/image/ab67616d0000b2738819357f0210af47c90a4682,1,4,234866,https://p.scdn.co/mp3-preview/e7cb9a61380671145bf7dfb4fcf56e51437b2a33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USUM71504917,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative pop,australian r&b",0.669,0.302,1.0,-10.896,0.0,0.0674,0.198,0.000345,0.115,0.299,71.988,4.0,,Universal Music Australia (Distribution),"C © 2015 Dryden Street Ltd, P ℗ 2015 Dryden Street Ltd",2370 +2371,spotify:track:6P4rgaupbfWv2Bmz0nJ1lS,19th Nervous Breakdown - Remastered 2002,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:3UByPFj5ymycKKnxRkGDRu,Big Hits (High Tide and Green Grass),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1966-03-28,https://i.scdn.co/image/ab67616d0000b273ff45a9baab61a9225ac9dda0,1,11,236533,https://p.scdn.co/mp3-preview/d7c490ce30b09a2bb27854d0412a22c006428f7b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176610010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.477,0.793,4.0,-8.9,1.0,0.0431,0.0437,0.0165,0.245,0.833,96.522,4.0,,ABKCO (US),"C © 2010 ABKCO Music & Records, Inc., P ℗ 1966 ABKCO Music & Records, Inc.",2371 +2372,spotify:track:0CnD7Hiw6pae6rLsZw5q5W,Incomplete,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:1Wz9PANLXjaOskUv575hRV,Never Gone,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,2005-06-14,https://i.scdn.co/image/ab67616d0000b273fd2f4308f22fcae9f5c1fa8c,1,1,239586,https://p.scdn.co/mp3-preview/0ffe37d44b8d21664217f4f9bdbfa3a9770e0e9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USJI10500131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.437,0.589,4.0,-4.834,1.0,0.0331,0.231,0.0,0.0768,0.165,133.631,4.0,,Jive,P (P) 2005 Zomba Recording LLC,2372 +2373,spotify:track:0dkL8m14x0wecbq04QfBKs,Fanfare for the Common Man - Single Edit,spotify:artist:0nCiidE5GgDrc5kWN3NZgZ,"Emerson\, Lake & Palmer",spotify:album:3uYhG442MU4ca3ZsovlGVh,The Best of Emerson Lake & Palmer,spotify:artist:0nCiidE5GgDrc5kWN3NZgZ,"Emerson\, Lake & Palmer",1994-01-01,https://i.scdn.co/image/ab67616d0000b2734aca451edc31151c842126be,1,6,179360,https://p.scdn.co/mp3-preview/af08293c6246ec18bbe00ee0092a9fd6f9415ffb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1001545,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,blues rock,classic rock,folk rock,hard rock,mellow gold,progressive rock,singer-songwriter,soft rock,symphonic rock,synth prog",0.376,0.439,0.0,-14.444,1.0,0.0313,0.415,0.832,0.132,0.262,74.461,4.0,,BMG Rights Management (UK) Ltd.,"C © 2015 Leadclass Limited, under exclusive license to BMG Rights Management (UK) Limited, P ℗ 2015 Leadclass Limited, under exclusive license to BMG Rights Management (UK) Limited",2373 +2374,spotify:track:1TfqLAPs4K3s2rJMoCokcS,Sweet Dreams (Are Made of This) - 2005 Remaster,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",spotify:album:5jNDWA19BJbE24x1UUJGRY,Sweet Dreams (Are Made Of This),"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",1983-01-04,https://i.scdn.co/image/ab67616d0000b273b3994c94dfb241923664bb4d,1,6,216933,https://p.scdn.co/mp3-preview/d69101dbd66295473706112d3edf978b70fc4550?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,GBARL0300589,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard",0.692,0.711,0.0,-7.498,0.0,0.0317,0.225,0.0,0.12,0.875,125.135,4.0,,RCA Records Label,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,2374 +2375,spotify:track:5BKUuNCmJ0gkX8Q2pE9KHk,Airplanes (feat. Hayley Williams of Paramore),"spotify:artist:5ndkK3dpZLKtBklKjxNQwT, spotify:artist:6Rx1JKzBrSzoKQtmbVmBnM","B.o.B, Hayley Williams",spotify:album:5YGvdSTgfSYGFUQIm3dJ0O,R&B: The Collection,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-10-14,https://i.scdn.co/image/ab67616d0000b27389a1a9609c9d1eac7b2eca56,1,2,179800,https://p.scdn.co/mp3-preview/987b714dc0bd2bface3ee801b622fa0d1df27ed6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USAT21000476,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dance pop,pop rap,rap,southern hip hop,art pop",0.66,0.846,6.0,-5.252,0.0,0.124,0.113,0.0,0.0459,0.417,93.027,4.0,,Rhino,"C © This Compilation 2016 Rhino UK, a division of Warner Music UK Ltd, P ℗ This Compilation 2016 Rhino UK, a division of Warner Music UK Ltd",2375 +2376,spotify:track:6Tio0ZoDeSQnI7EBAqWer2,Cover Me In Sunshine,"spotify:artist:1KCSPY1glIKqW2TotWuXOR, spotify:artist:0gAILSEru1PKMwP0tAqNLS","P!nk, Willow Sage Hart",spotify:album:7p0HJKqXo2WpApHFp1iDcI,Cover Me In Sunshine,"spotify:artist:1KCSPY1glIKqW2TotWuXOR, spotify:artist:0gAILSEru1PKMwP0tAqNLS","P!nk, Willow Sage Hart",2021-02-12,https://i.scdn.co/image/ab67616d0000b273e465904fbcc8de1920c60867,1,1,141050,https://p.scdn.co/mp3-preview/ff117b86a94946f9c616474f38c3388a7533575e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USRC12100138,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,show tunes",0.476,0.594,5.0,-6.879,1.0,0.135,0.0599,0.0,0.0785,0.314,159.702,4.0,,RCA Records Label,"P (P) 2021 RCA Records, a division of Sony Music Entertainment",2376 +2377,spotify:track:2cqVnbTiYgdun186IbDRwm,My Eyes Adored You,spotify:artist:3CDKmzJu6uwEGnPLLZffpD,Frankie Valli,spotify:album:0NUEQILaBzavnzcMEs4buZ,The Very Best of Frankie Valli & The 4 Seasons,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,2003-01-14,https://i.scdn.co/image/ab67616d0000b273b96c21e15c091eb98a6c88a4,1,16,212626,https://p.scdn.co/mp3-preview/4be7474a6251e315c9cc76f93944d488f7435821?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USRH10175217,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,lounge",0.446,0.489,11.0,-10.26,0.0,0.033,0.272,0.0,0.16,0.396,137.829,4.0,,Rhino,"C © 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products, P ℗ 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products",2377 +2378,spotify:track:1Ui3r0Ih8F2MroiCWreCYi,Rise,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:16ah1TUDgASr1yJs14szDj,Rise,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2016-07-15,https://i.scdn.co/image/ab67616d0000b2731de9972a245045112cde93b6,1,1,203474,https://p.scdn.co/mp3-preview/1c897373ba672532a9a999d283bc4143f82ccf2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71605088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.535,0.631,11.0,-6.396,1.0,0.0486,0.0502,0.0,0.106,0.506,101.678,4.0,,Universal Music Group,"C © 2016 Capitol Records, P ℗ 2016 Capitol Records",2378 +2379,spotify:track:4yPOmdNCfH6pyUxqazWQ36,Superman,spotify:artist:2wsvebLarJID5kjG647Aqe,Alison MacCallum,spotify:album:7GmNEOQMP4ttlqpcidio6U,Sizzling 70's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-02-02,https://i.scdn.co/image/ab67616d0000b273041b4e12373cfc30f87279c5,1,7,147681,https://p.scdn.co/mp3-preview/a8e1e7efd898f3c36b5bc4613beaff3b6d9d621c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AUBM00700490,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.56,0.643,11.0,-6.979,0.0,0.0291,0.386,0.329,0.127,0.178,137.122,4.0,,Sony Music Entertainment,P (P) 2017 Sony Music Entertainment Australia Pty Ltd,2379 +2380,spotify:track:0Xb6Q1bGZnDnzRgicBHBRJ,Rock Me,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1kM6xcSYO5ASJaWgygznL7,Abba,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1975,https://i.scdn.co/image/ab67616d0000b27392d0747a634fcc351c6ac3c2,1,8,184733,https://p.scdn.co/mp3-preview/b4da9ef9c241217c30d76997b0a205969a9a6651?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,SEAYD7501080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.691,0.857,11.0,-4.68,1.0,0.0872,0.537,0.0,0.502,0.741,132.753,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",2380 +2381,spotify:track:1ng36571Iyov4HBxUClySn,Pepper,spotify:artist:62BcWP4fzR8axESibNQEhs,Butthole Surfers,spotify:album:7nawZF1eeyTGbrL9OsOCwz,Electriclarryland,spotify:artist:62BcWP4fzR8axESibNQEhs,Butthole Surfers,1996-01-01,https://i.scdn.co/image/ab67616d0000b2732f791ed0a21f63e2a9f324b2,1,3,297266,https://p.scdn.co/mp3-preview/d366b730b1cc27f27fdbb953900bed71d33cdb72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USCA29600428,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,experimental rock,grunge,noise rock,psychedelic punk,punk",0.631,0.804,7.0,-5.492,1.0,0.166,0.00589,0.00116,0.16,0.671,79.898,4.0,,Capitol Records,"C © 1996 Capitol Records Inc., P ℗ 1996 Capitol Records Inc.",2381 +2382,spotify:track:7IT2q7BtELsO7eeVTSvO0y,Darktown Strutters Ball - Live-2017 Remaster,spotify:artist:1o711LqmNPfr4wUF9KEJIE,Ted Mulry Gang,spotify:album:2khcFiY7M4zxNyTQOaYKPE,TMG Live (Expanded),spotify:artist:1o711LqmNPfr4wUF9KEJIE,Ted Mulry Gang,2017-05-05,https://i.scdn.co/image/ab67616d0000b2731d4c653e2fcb9763deb4a656,1,21,263320,https://p.scdn.co/mp3-preview/12fcb48a106d46134e1e37dfe6800cc2834e64ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUWA01700117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.389,0.991,10.0,-3.216,1.0,0.103,0.104,0.311,0.952,0.169,144.84,4.0,,WM Australia,"C © 2017 Warner Music Australia Pty Ltd, P ℗ 2017 Warner Music Australia Pty Ltd. Marketed and distributed by Warner Music Australia Pty Ltd",2382 +2383,spotify:track:1AExaZrUg8W8Y2ZwXhaoiR,Naughty Girl,spotify:artist:7gRmesSjINzb4xXApfMV5E,Holly Valance,spotify:album:0canrrqYujUeehzkS9sUZV,Footprints,spotify:artist:7gRmesSjINzb4xXApfMV5E,Holly Valance,2002-01-01,https://i.scdn.co/image/ab67616d0000b2737d1cd39fae733ff67c5645d1,1,11,203333,https://p.scdn.co/mp3-preview/aa3fd3e57e7db7397d5df98b7dac34ac7569309b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAAP0200413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,bubblegum dance,europop,talent show",0.663,0.626,2.0,-9.248,1.0,0.0333,0.0426,0.000706,0.111,0.413,109.013,4.0,,London Music Stream/Because Music,"C © 2002 London Records Ltd, P ℗ 2002 London Records Ltd",2383 +2384,spotify:track:5xpcdgLDvTx7AKCfIUsmYS,Burn,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:21Z3oePgswl4kS1LW0aXVm,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2009-08-24,https://i.scdn.co/image/ab67616d0000b2738b412ea102fe0d92e1e71ae8,1,3,172293,https://p.scdn.co/mp3-preview/7a6d15c47d9a444a19502f038701fd31ecff3a23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUBM00800491,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.767,0.687,5.0,-3.983,0.0,0.0947,0.0384,0.0,0.335,0.433,126.048,4.0,,Sony Music Entertainment,"P (P) All tracks (P) 2008 Sony Music Entertainment Australia Pty Ltd. except tracks 13, 14 & 16 (P) 2009 Sony Music Entertainment Australia Pty Ltd.",2384 +2385,spotify:track:2GyLSSv9AYBbPmBpdTEZFw,Louise (We Get It Right),spotify:artist:3nohf4qILMr5aUSOsolwxB,Jona Lewie,spotify:album:3BIol8X39zQoLO9fXnS6JS,On The Other Hand There's A Fist,spotify:artist:3nohf4qILMr5aUSOsolwxB,Jona Lewie,1978,https://i.scdn.co/image/ab67616d0000b27363d06267f3ada9ca0f838e97,1,18,226880,https://p.scdn.co/mp3-preview/894bf6fc167abb384c74ad35767cdcfba9c3eee7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHW0500404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.718,0.686,0.0,-5.728,1.0,0.0294,0.322,0.0136,0.107,0.787,142.828,4.0,,Stiff Records,C (C) 2007 Stiff Records,2385 +2386,spotify:track:3szxXGdgQOlZTTrRG4IoyU,Long Tall Glasses (I Can Dance) - 2010 Remastered Version,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,spotify:album:321uGKu9Ou10HWPg2CHjqo,Just A Boy (Remastered Version),spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,1974,https://i.scdn.co/image/ab67616d0000b27391cd394b7a8488b66f550af5,1,7,193386,https://p.scdn.co/mp3-preview/d05612a700f16509e382f58121e87b741baea329?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUWA01000196,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.655,0.926,9.0,-4.677,1.0,0.07,0.346,0.000194,0.131,0.745,142.961,3.0,,WM Australia,"C © 1974 Silverbird (Australia) PTY LTD, P ℗ 2010 Silverbird (Australia) PTY LTD, under exclusive license to Warner Music Australia PTY LTD",2386 +2387,spotify:track:0NKv1n25UpKKhZbp5UVV6P,April Sun in Cuba,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,spotify:album:05frF9sl7GngNlYJp7V6fe,Running Free,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,1977,https://i.scdn.co/image/ab67616d0000b2738dd5db027f3c439bd7698933,1,1,207960,https://p.scdn.co/mp3-preview/1879bf009f91b5f4fe913835831ecdfe596451a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,AUSM08800036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,kiwi rock",0.786,0.552,2.0,-13.885,1.0,0.0658,0.0642,3.08e-05,0.299,0.905,121.422,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,2387 +2388,spotify:track:4toSP60xmDNCFuXly8ywNZ,Karma Police,spotify:artist:4Z8W4fKeB5YxbusRsdQVPb,Radiohead,spotify:album:2fGCAYUMssLKiUAoNdxGLx,OK Computer,spotify:artist:4Z8W4fKeB5YxbusRsdQVPb,Radiohead,1997-05-21,https://i.scdn.co/image/ab67616d0000b273b6afdcb8dfa71a2995969ea1,1,6,264066,https://p.scdn.co/mp3-preview/0c770be37583bbf7f7da3febeb2bf11d1a621a80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE9701368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art rock,melancholia,oxford indie,permanent wave,rock",0.36,0.505,7.0,-9.129,1.0,0.026,0.0626,9.22e-05,0.172,0.317,74.807,4.0,,Parlophone UK,"C © 1997 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1997 Parlophone Records Ltd, a Warner Music Group Company",2388 +2389,spotify:track:5ABrBYbzepxzcW9pLIWw1j,Bad Blood,spotify:artist:5N6GwJzOcOY5kv8p0NjhYL,Neil Sedaka,spotify:album:4MQXUCdpFPqi1jsM4N8aSR,The Definitive Collection,spotify:artist:5N6GwJzOcOY5kv8p0NjhYL,Neil Sedaka,2007-04-24,https://i.scdn.co/image/ab67616d0000b2732aeac9062e6df333ffece887,1,14,189066,https://p.scdn.co/mp3-preview/fe7d00d7a679f37532e0e1e6aa5af337ff4ada61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USRZR0796814,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,bubblegum pop,easy listening,rockabilly,soft rock",0.737,0.736,2.0,-8.347,1.0,0.0458,0.174,0.00217,0.236,0.862,148.711,4.0,,Razor & Tie,"C © 2007 Razor & Tie Recordings., Marketed by Razor & Tie Recordings. Distributed by Concord Music Group, Inc., P ℗ 2007 Razor & Tie Recordings., Marketed by Razor & Tie Recordings. Distributed by Concord Music Group, Inc.",2389 +2390,spotify:track:0x7U32vZzq7e1qVpA0MBwK,Just A Lil Bit,spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,spotify:album:3PdtIrHMhNPNGV2NQAlTuU,The Massacre,spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,2005-03-03,https://i.scdn.co/image/ab67616d0000b273edc8039b4fdf96a8ebb480ad,1,14,237706,https://p.scdn.co/mp3-preview/228dc008f356c0b13228c7c4c6b3116e831667e4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10500279,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap",0.489,0.692,1.0,-6.672,1.0,0.41,0.0322,0.00608,0.315,0.527,96.946,4.0,,Universal Music Group,"C © 2004 Shady Records/Aftermath Records/Interscope Records, P ℗ 2004 Shady Records/Aftermath Records/Interscope Records",2390 +2391,spotify:track:34n1McWPwECGJI36SqzJHp,Come Around,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:5iTdMXmcuJl7bqVIsIJ76D,Essential As Anything,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,2015-10-02,https://i.scdn.co/image/ab67616d0000b273dd1b2cbb40cb1aa0e5e8484d,1,3,183453,https://p.scdn.co/mp3-preview/65a08441633cbc91ef15308a4adfc7c847014bd5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUFE00800003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.615,0.901,1.0,-3.954,1.0,0.0625,0.0897,0.0747,0.0678,0.811,148.137,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Syray Music, P This Compilation ℗ 2015 Syray Music",2391 +2392,spotify:track:40dJCw4xU6Bd5ie9rfagNo,Everybody Wants To Rule The World,spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,spotify:album:4yaypP8ytl2ghM2kiNSD8a,Songs From The Big Chair,spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,1985-02-25,https://i.scdn.co/image/ab67616d0000b2730f8db7ddf02a4ac2da2ecdc1,1,3,251480,https://p.scdn.co/mp3-preview/49a5e33d422484fde5484d3e665821e9a3a8b540?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088590110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,rock,sophisti-pop,synthpop",0.637,0.811,7.0,-11.345,1.0,0.0583,0.363,0.00451,0.107,0.552,112.053,4.0,,Universal Music Group,"C © 2014 Mercury Records Limited, P ℗ 2014 Mercury Records Limited",2392 +2393,spotify:track:1V82d4T5gadqzboNVWKcMj,Closer To The Edge,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,spotify:album:5nI4Eo1vWUWXzeT4WrzTGL,This Is War (Deluxe),spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,2009,https://i.scdn.co/image/ab67616d0000b273dc71afe98ba69bee55dddf4e,1,7,273466,https://p.scdn.co/mp3-preview/bd04b4acd4b341764481a83f4d3ac32d764ff08b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USVI20900433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,post-grunge",0.502,0.948,6.0,-3.717,1.0,0.12,0.0101,4.49e-06,0.0809,0.102,139.979,4.0,,Virgin Records,"C © 2010 Virgin Records America, Inc., P ℗ 2010 Virgin Records America, Inc.",2393 +2394,spotify:track:5p9fWkryvMSchyCW7AMwaM,Mind Your Manners (feat. Icona Pop),"spotify:artist:40giwFcTQtv9ezxW8yqxJU, spotify:artist:1VBflYyxBhnDc9uVib98rw","Chiddy Bang, Icona Pop",spotify:album:4LTH8BNH5u1uRaKgogo0is,Breakfast,spotify:artist:40giwFcTQtv9ezxW8yqxJU,Chiddy Bang,2010-09-13,https://i.scdn.co/image/ab67616d0000b2734201ff956483052dbfa11c03,1,4,196653,https://p.scdn.co/mp3-preview/0bde427158b5d806fc5ca69b2ee499d07d4d549c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,39,GBAYE1100612,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie pop rap,philly rap,pop rap,candy pop,dance pop,electropop,metropopolis,swedish electropop,swedish synthpop",0.696,0.853,2.0,-4.122,1.0,0.237,0.00399,0.0,0.0843,0.685,92.976,4.0,,Parlophone UK,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",2394 +2395,spotify:track:4wDl08ZasfSIKiEJluWblj,Open Up Your Eyes,spotify:artist:6qXwLwTLdA44HYsA26vaNU,Tonic,spotify:album:1SU86UTxpec22Yj5BP9zjE,Lemon Parade,spotify:artist:6qXwLwTLdA44HYsA26vaNU,Tonic,1996-07-15,https://i.scdn.co/image/ab67616d0000b2731e5d9713f298493b0439a7da,1,1,220493,https://p.scdn.co/mp3-preview/7ae79fc9bce8ad80bd5b0832d7d0159434925dea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39609307,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.431,0.902,7.0,-6.467,1.0,0.0465,0.00593,5.95e-05,0.0983,0.305,98.624,4.0,,Polydor,"C © 1996 PolyGram Records Inc., P ℗ 1996 PolyGram Records Inc.",2395 +2396,spotify:track:1N0ChshCrLh8qqD3yWsg72,At Seventeen - Remastered,spotify:artist:5c9uFWpZY2MTlk7Rft0tgp,Janis Ian,spotify:album:2FRc7k4bfnsVKhdo1N46wT,The Essential 2.0,spotify:artist:5c9uFWpZY2MTlk7Rft0tgp,Janis Ian,2017-09-22,https://i.scdn.co/image/ab67616d0000b273a48addca5c6676df499e3442,1,6,283080,https://p.scdn.co/mp3-preview/52f8931b70721b99a16f2abcbb7232699bc6e339?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1700749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk,singer-songwriter",0.612,0.279,0.0,-16.625,1.0,0.0457,0.887,0.000129,0.115,0.351,125.139,4.0,,Sony Music CG,"P This compilation (P) 2017 Rude Girl Records Inc., under exclusive license to Sony Music Entertainment UK Limited",2396 +2397,spotify:track:1xnFGQzl7uRLs5JEtWZFb3,Sunset,spotify:artist:1goOx6gnQdUllLfSMsL4Rt,Marques Houston,spotify:album:3Ds7V1bNtWlu36MlxGZVUz,Mr. Houston,spotify:artist:1goOx6gnQdUllLfSMsL4Rt,Marques Houston,2009,https://i.scdn.co/image/ab67616d0000b27383200ce3cd209bd44b0a457d,1,12,238786,https://p.scdn.co/mp3-preview/9c92e97081e6c220ef894ee8ea072b8c14deb199?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USZXT0933441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.818,0.373,9.0,-10.255,0.0,0.0564,0.65,0.0,0.379,0.89,107.009,4.0,,Parlophone UK,"C 2009 Musicworks Entertainment Inc This label copy information is the subject of copyright protection. All rights reserved. (C) 2009 Parlophone Records Ltd, P 2009 The copyright in this sound recording is owned by Musicworks Entertainment Inc",2397 +2398,spotify:track:0LZhlPswR8YgcJV09oQvg9,Forever,spotify:artist:0cT2S58Ulp0BGro6KXAm56,The Little Dippers,spotify:album:4hy0WlywHae5iAQ1sy1WgQ,Music Enchanted Me,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015,https://i.scdn.co/image/ab67616d0000b273337c2575d6bad60b36a90644,1,18,136373,https://p.scdn.co/mp3-preview/9b4c7972402b428e5b8b169fc058f1f473d41d80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,FR10S1524584,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.504,0.286,5.0,-9.904,1.0,0.0281,0.894,0.783,0.28,0.367,74.219,4.0,,Ultimate Legends,"C Ultimate Legends, P Ultimate Legends",2398 +2399,spotify:track:3e9HZxeyfWwjeyPAMmWSSQ,"thank u, next",spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:2fYhqwDWXjbpjaIJPEfKFw,"thank u, next",spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2019-02-08,https://i.scdn.co/image/ab67616d0000b27356ac7b86e090f307e218e9c8,1,11,207320,https://p.scdn.co/mp3-preview/651abd0ee3527e5434d2211d646c5720b47b4c21?cid=9950ac751e34487dbbe027c4fd7f8e99,True,78,USUM71819361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.72,0.654,1.0,-5.634,1.0,0.0647,0.227,0.0,0.101,0.411,106.976,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",2399 +2400,spotify:track:0cJdSg34dnUSxSyFjBf703,Finger Poppin' Time,spotify:artist:01PZH8MrTxfgfTXNqpMRjG,Hank Ballard & The Midnighters,spotify:album:70osyfOEdeN0SNFJNEBqec,All 20 Of Their Chart Hits 1953-1962,spotify:artist:01PZH8MrTxfgfTXNqpMRjG,Hank Ballard & The Midnighters,2005,https://i.scdn.co/image/ab67616d0000b273dc6ba91d6799e09f277540bb,1,10,111826,https://p.scdn.co/mp3-preview/336b7207183d29eb131e3cc54b25f80433aa1f62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500300,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.491,0.591,0.0,-13.492,1.0,0.0363,0.112,0.00564,0.19,0.686,78.009,4.0,,Gusto Records,"C 2005 Gusto Records Inc, P 2005 Gusto Records Inc",2400 +2401,spotify:track:7xfzwPasShmaPL7gB7va3J,Water Under The Bridge,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7uwTHXmFa1Ebi5flqBosig,25,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2015-11-20,https://i.scdn.co/image/ab67616d0000b2735ffbbc3dca25d5c81491af1f,1,6,240439,https://p.scdn.co/mp3-preview/8040cf7551127a31796b5e5af369910edae39a68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1500219,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.59,0.833,5.0,-6.503,0.0,0.0615,0.0142,5.35e-06,0.105,0.537,94.963,4.0,,XL Recordings,"C 2015 XL Recordings Limited., P 2015 XL Recordings Limited.",2401 +2402,spotify:track:0thhvUd0htw6Afr2y0EDlp,Trick Me,spotify:artist:0IF46mUS8NXjgHabxk2MCM,Kelis,spotify:album:2ryT3F5zc8wGD30aQIie23,Trick Me,spotify:artist:0IF46mUS8NXjgHabxk2MCM,Kelis,2004-01-01,https://i.scdn.co/image/ab67616d0000b27346f26414e8e826775165d585,1,1,208333,https://p.scdn.co/mp3-preview/cf0a3940c8ada02231cc8af365968404bfbae5ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR10301300,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,neo soul,urban contemporary",0.97,0.725,1.0,-3.369,0.0,0.133,0.0379,0.000211,0.32,0.961,107.169,4.0,,Virgin Records,"C © 2004 Arista Records Ltd., P ℗ 2004 Arista Records Ltd.",2402 +2403,spotify:track:7N1SggkVftnsQRB7xY7ubI,Break It To Me Gently,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,spotify:album:2osc6a2FfmXGPcsr1ptY7b,Classic Brenda Lee - The Universal Masters Collection,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,2000-01-01,https://i.scdn.co/image/ab67616d0000b27306a3b68a8db6eedc8d10c3ae,1,7,158240,https://p.scdn.co/mp3-preview/8c90829841e19f24843a22ca27b9dc075c3c35f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16111044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rockabilly",0.535,0.178,3.0,-13.606,1.0,0.0285,0.701,0.0,0.105,0.492,92.095,3.0,,Geffen,"C © 2000 MCA Nashville, P ℗ 2000 MCA Nashville",2403 +2404,spotify:track:5SlKhhXtzd3Cj74HYmHZNz,I'll Be There for You (Theme from Friends) - Single Version,spotify:artist:0gDg7FEsF4Y1jWddJJgcn4,The Rembrandts,spotify:album:34lMG72H2AkZbmWZ4JCEL8,Greatest Hits,spotify:artist:0gDg7FEsF4Y1jWddJJgcn4,The Rembrandts,2006-06-20,https://i.scdn.co/image/ab67616d0000b273bf583b38086dc446094349c3,1,11,189573,https://p.scdn.co/mp3-preview/a166fc8ab26bde4263b9e4f40a2d85c58cbcadef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USEE10412479,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.164,0.919,9.0,-5.834,1.0,0.149,0.0707,2.25e-06,0.158,0.662,190.182,4.0,,Rhino Atlantic,"C © 2006 Rhino Entertainment Company, a Warner Music Group company, P ℗ 2006 Rhino Entertainment Company, a Warner Music Group company",2404 +2405,spotify:track:6QIUodp8lfsI3BNWaYWBAP,Only Want You,spotify:artist:2OHEv8cQ8d51jRGsC2KaAJ,"Love\, Marco",spotify:album:0IAPmGB8rDjGirhQygPZeQ,Only Want You,spotify:artist:2OHEv8cQ8d51jRGsC2KaAJ,"Love\, Marco",2020-05-08,https://i.scdn.co/image/ab67616d0000b2736e48e8dfb100196cbf85dda5,1,1,161601,https://p.scdn.co/mp3-preview/653ca0048536c6e160495b595ec7f275774dfb8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM02000341,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.471,0.419,9.0,-7.044,1.0,0.033,0.641,0.0,0.147,0.216,128.016,4.0,,Sony Music Entertainment,P (P) 2020 Marco under exclusive licence to Sony Music Entertainment Australia Pty Ltd,2405 +2406,spotify:track:2Syb63LzFMOo8CMqLdOFWw,Great Wall,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,spotify:album:2w41SfGejhAfUQwkajfYzp,Boom Crash Opera,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,1987-10-18,https://i.scdn.co/image/ab67616d0000b2737169f4813d7adbe60d031816,1,7,231040,https://p.scdn.co/mp3-preview/44c684b3e0eda723ec5872219bfafbb0f2f2f2a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUBM00700216,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.56,0.951,9.0,-1.943,1.0,0.0373,0.00565,0.339,0.266,0.905,124.744,4.0,,Bloodlines,"C 2013 Bloodlines, P 2013 Bloodlines",2406 +2407,spotify:track:3C0WDkRRf9VUNs59sTT6Wr,In My Pocket,spotify:artist:2LJxr7Pt3JnP60eLxwbDOu,Mandy Moore,spotify:album:551186Jr75bHrh58ZdEMhW,The Best of Mandy Moore,spotify:artist:2LJxr7Pt3JnP60eLxwbDOu,Mandy Moore,2004-11-16,https://i.scdn.co/image/ab67616d0000b273799f7be1146fe51116221e20,1,5,219093,https://p.scdn.co/mp3-preview/dd8198e3ff10163081962d668aad24e30c75aacb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USSM10103339,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hollywood,neo mellow,post-teen pop",0.687,0.953,5.0,-2.826,0.0,0.0873,0.0116,0.00244,0.193,0.838,109.039,4.0,,Epic,"P (P) 1999, 2000, 2001, 2002, 2003 SONY BMG MUSIC ENTERTAINMENT",2407 +2408,spotify:track:1Vv0MPcooEoQzVZYfKMgKW,Ugly Heart,spotify:artist:3Yl4nkmEa8BSuGWbwhdLDq,G.R.L.,spotify:album:6cvanscbjwTlkleedLkWhC,Ugly Heart,spotify:artist:3Yl4nkmEa8BSuGWbwhdLDq,G.R.L.,2014-06-03,https://i.scdn.co/image/ab67616d0000b27363fae1618148f297ab8380f4,1,1,199580,https://p.scdn.co/mp3-preview/bb52872830c333d291b1ba4c8761715254221fea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USRC11400627,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,post-teen pop,talent show",0.649,0.79,9.0,-5.529,1.0,0.0482,0.0167,0.0,0.255,0.458,124.993,4.0,,Kemosabe Records/RCA Records,P (P) 2014 Kemosabe Records,2408 +2409,spotify:track:7pYPpFhFyOwCjf4y7vdJqM,Just A Dream - Main,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,spotify:album:5T3lOA9vvpIHA8dBMFly7V,5.0 Deluxe,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2010-11-12,https://i.scdn.co/image/ab67616d0000b273616124ed53e49110f364e7b8,1,4,237800,https://p.scdn.co/mp3-preview/ca0bf2f470733491409c38e198bf990b0b437f9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71020948,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.552,0.757,1.0,-6.072,1.0,0.0294,0.0439,0.0,0.123,0.0979,89.981,4.0,,Universal Music Group,"C © 2010 Universal Records a division of UMG Recordings Inc., P ℗ 2010 Universal Records a division of UMG Recordings Inc.",2409 +2410,spotify:track:31Esdk35ijsCip6ipbaWB2,Lady What's Your Name,spotify:artist:5IukvMjujEz3crLaC6SW1T,Swanee,spotify:album:4VBGwrvT60WaYRadVwMG65,Heart & Soul,spotify:artist:5IukvMjujEz3crLaC6SW1T,Swanee,1983-10-18,https://i.scdn.co/image/ab67616d0000b2739fd894a8c15b5685bfae39f1,1,11,225946,https://p.scdn.co/mp3-preview/1182b8e982657a345008f294044fd82a2b59afe8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUGZD1300051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.33,0.476,6.0,-7.186,0.0,0.0276,0.342,0.0,0.197,0.25,84.894,4.0,,John Swan Music,"C 1983 John Swan Music, P 1983 John Swan Music",2410 +2411,spotify:track:5glsQR5zCwb6wQ2IC0fDjB,Goodbye Town,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,spotify:album:5r9ECscyry5ewDwTniOlGP,"Golden (Netherlands, Norway, Germany, Austria, Switzerland, Belgium Version)",spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,2013-01-01,https://i.scdn.co/image/ab67616d0000b273ac3d1f34239e1cb2df6bc8d5,1,2,288800,https://p.scdn.co/mp3-preview/3735f4e77c46dc93da38bcaa1f8d04f40ba8b04e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCN11300098,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country pop,country road",0.678,0.72,4.0,-6.034,1.0,0.027,0.165,5.73e-06,0.114,0.538,95.027,4.0,,Capitol Records Nashville,"C © 2013 Capitol Records Nashville, P ℗ 2013 Capitol Records Nashville",2411 +2412,spotify:track:553ADyp5tQgJf6BFSxHGIu,Say Something,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:6EjwYja1iS6Q4RRF6O0Hro,Say Something,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2020-07-24,https://i.scdn.co/image/ab67616d0000b27373cdf6eeae0ed7d8070a5603,1,1,212546,https://p.scdn.co/mp3-preview/1370b64fe9553e266ab707440f042e53fb9349c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GB5KW2001668,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.635,0.845,0.0,-4.816,0.0,0.0525,0.027,0.0128,0.135,0.463,107.013,4.0,,Liberator Music,"C 2020 Kylie Minogue/Darenote Limited under exclusive license to BMG Rights Management (UK) Limited, P 2020 Kylie Minogue/Darenote Limited under exclusive license to BMG Rights Management (UK) Limited",2412 +2413,spotify:track:4YwbSZaYeYja8Umyt222Qf,You Can't Hurry Love - 2016 Remaster,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:6sn6eWmPciSiHj0ltTBl7M,"Hello, I Must Be Going! (Deluxe Edition)",spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1982-11-05,https://i.scdn.co/image/ab67616d0000b273ab0a92e5cd20c2224c44a8a6,1,5,175746,https://p.scdn.co/mp3-preview/153e910b0235f6460be80b228872d954bd4c96c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USRH11509315,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.62,0.936,7.0,-4.593,1.0,0.0308,0.0261,0.0,0.0679,0.763,97.527,4.0,,Rhino,"C © 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company, P ℗ 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company",2413 +2414,spotify:track:23DZLSxCK6kM8FF2RlzKDl,You're No Good,spotify:artist:1sXbwvCQLGZnaH0Jp2HTVc,Linda Ronstadt,spotify:album:7upKDUGJUjsvfIe6vuVB0b,Heart Like A Wheel,spotify:artist:1sXbwvCQLGZnaH0Jp2HTVc,Linda Ronstadt,1974,https://i.scdn.co/image/ab67616d0000b273b67a2ac6906ba70b8af718a1,1,1,224026,https://p.scdn.co/mp3-preview/16b3299867b993733a7d2881c4e655582c62286a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USCA28500304,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,folk,folk rock,heartland rock,mellow gold,singer-songwriter,soft rock",0.669,0.52,8.0,-10.136,1.0,0.0345,0.245,0.00535,0.126,0.634,104.812,4.0,,Capitol Records,"C © 1985 Capitol Records, LLC, P ℗ 1985 Capitol Records, LLC",2414 +2415,spotify:track:2g381K6Sdvf4RYNsfdCLKh,Come On Come On,spotify:artist:3h18aXqdmm2F13t6LIbTpq,Little Birdy,spotify:album:6ulRZ2L40faRYo4HTVyWSE,Hollywood,spotify:artist:3h18aXqdmm2F13t6LIbTpq,Little Birdy,2006-01-01,https://i.scdn.co/image/ab67616d0000b2735aaaefbc6020dba11246b6c9,1,2,232866,https://p.scdn.co/mp3-preview/222ec4a3950851347a2e0658ba5469d8add1ecc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUEL00600016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian rock,perth indie",0.619,0.568,11.0,-4.02,1.0,0.026,0.00712,0.0,0.233,0.425,100.002,4.0,,Universal Music Australia Pty. Ltd.,"C © 2006 Little Birdy under exclusive license to Eleven: A Music Company, P ℗ 2006 Little Birdy under exclusive license to Eleven: A Music Company",2415 +2416,spotify:track:5mwzpzRue1SBWwrbbhXfbf,You Win Again,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:0DlDUg3SyCkOq7K3WghDUE,E.S.P.,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1987-09-01,https://i.scdn.co/image/ab67616d0000b273c1d3679959ec78f671658952,1,2,241400,https://p.scdn.co/mp3-preview/6fa03ea126bcdc3a432f5b5dbaf30df4e042e811?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USRH10722705,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.547,0.831,11.0,-11.298,0.0,0.0319,0.0874,8.34e-06,0.222,0.909,168.581,4.0,,Bee Gees Catalog,"C © 1987 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 1987 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",2416 +2417,spotify:track:3aTb5EUBOlNDSEcaTFI7Jj,Bodyrock,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,spotify:album:1xB1tmm50ZhXwrNs89u7Jx,Play,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,1999-05-17,https://i.scdn.co/image/ab67616d0000b27373b063d18cd9be91eb12284a,1,7,216453,https://p.scdn.co/mp3-preview/921eb8e577583b3925e5938127578f2bd67e26e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJH9900040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,electronica",0.648,0.872,6.0,-8.111,0.0,0.0451,0.00084,0.579,0.485,0.353,108.01,4.0,,"Mute, a BMG Company","C © 1999 Mute Records Ltd., a BMG Company, P ℗ 1999 Mute Records Ltd., a BMG Company",2417 +2418,spotify:track:2sXp9Qmvc7mRaDBjBgcGGi,Every Breath You Take - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:7yDxJXFPl88Dt9kBo0dDD6,Synchronicity,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1983-06-01,https://i.scdn.co/image/ab67616d0000b273e7b53d0f9fb616521cdbfc03,1,7,253886,https://p.scdn.co/mp3-preview/92d7997134bb18b99eb5fdc65926e4ef613f9781?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAAM0201110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.813,0.46,1.0,-9.78,1.0,0.0346,0.56,0.0105,0.0724,0.729,117.387,4.0,,A&M,"C © 2003 A&M Records, P ℗ 2003 A&M Records",2418 +2419,spotify:track:3fkPMWQ6cBNBLuFcPyMS8s,Burnin' for You,spotify:artist:00tVTdpEhQQw1bqdu8RCx2,Blue Öyster Cult,spotify:album:7v4kEpVtppoMm80m43lGzt,Fire of Unknown Origin,spotify:artist:00tVTdpEhQQw1bqdu8RCx2,Blue Öyster Cult,1981-10-23,https://i.scdn.co/image/ab67616d0000b2736895da04b237964b95c2a166,1,2,271000,https://p.scdn.co/mp3-preview/09bc046877993e7c60c69eec74e77eda73ac13cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM10017652,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,progressive rock,rock",0.532,0.728,9.0,-9.079,0.0,0.0352,0.106,0.0108,0.0849,0.69,134.303,4.0,,Columbia,"P (P) 1981 Columbia Records, a division of Sony Music Entertainment",2419 +2420,spotify:track:6kni0aRaJX8NNu63sfKTmr,"Woman, Woman",spotify:artist:4asCC4oxQcDzFXhCth2SgQ,Gary Puckett & The Union Gap,spotify:album:15Oqj9h8TSkGsoOKDKjsqA,Young Girl: The Best Of Gary Puckett & The Union Gap,spotify:artist:4asCC4oxQcDzFXhCth2SgQ,Gary Puckett & The Union Gap,1968,https://i.scdn.co/image/ab67616d0000b273004dcd74f13a40f050de0e03,1,1,196000,https://p.scdn.co/mp3-preview/165ade8074f403eaeff86fc68d3eeadeafba7a5d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USSM10402354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,country rock,folk rock,mellow gold,merseybeat,rock-and-roll,soft rock",0.473,0.527,6.0,-8.972,0.0,0.0278,0.524,0.0,0.216,0.619,107.549,4.0,,Columbia/Legacy,"P Originally Recorded 1969 & Released 1992, Originally Released 1968, 1969, 1970, 1971, (P) 2004 Sony Music Entertainment Inc.",2420 +2421,spotify:track:1C2Q3AymKS17bw7T5gfq6p,Dance with Me,spotify:artist:0tRRrNLQY5rejEDVSjy4w3,Debelah Morgan,spotify:album:0oFog5D96o6hSZXSj0obCn,Dance With Me,spotify:artist:0tRRrNLQY5rejEDVSjy4w3,Debelah Morgan,2000,https://i.scdn.co/image/ab67616d0000b2732bd34dbce65d0c7c978a5087,1,1,220106,https://p.scdn.co/mp3-preview/bf6599b75f195e2429d0a1ad00e93ef1cfb2712e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USAT20001617,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.85,0.674,7.0,-7.981,0.0,0.0373,0.309,0.000645,0.0356,0.74,115.005,4.0,,Rhino Atlantic,"C © 2000 Atlantic Recording Corp., P ℗ 2000 Atlantic Recording Corp. Manufactured & Marketed by Rhino Entertainment",2421 +2422,spotify:track:3JU7GqkbT5S51rgCbYJ20t,Funkytown,spotify:artist:0lwRI7lvmlRY5DiA5Xa6wQ,Lipps Inc.,spotify:album:009d83fu2guwouIwqr7i9E,Shrek 2 (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2004-05-19,https://i.scdn.co/image/ab67616d0000b273a895c616f899f06429bc8b4f,1,5,239826,https://p.scdn.co/mp3-preview/31d462c80d5ff52a816ecb65da204abd4e7bbab1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USPR37902457,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,minneapolis sound,synthpop",0.911,0.575,0.0,-8.385,1.0,0.064,0.000638,0.276,0.108,0.211,122.884,4.0,,Dreamworks - Shrek II,"C © 2004 Dreamworks Records, P This Compilation ℗ 2004 Dreamworks Records",2422 +2423,spotify:track:0SaJsihXgkqj0xEIbi8bnM,I'm Not Your Toy,spotify:artist:3K2zB87GZv1krx031en5VA,La Roux,spotify:album:0jBkrUrXIxtaMrfAkHjXoZ,La Roux,spotify:artist:3K2zB87GZv1krx031en5VA,La Roux,2009,https://i.scdn.co/image/ab67616d0000b2731ea4804c178ed97c2c1a0241,1,6,198093,https://p.scdn.co/mp3-preview/53e7cdaadbe1202e8d3b7773ba1e22cb97185c50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70817145,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,electropop,indietronica,neo-synthpop",0.719,0.764,1.0,-3.231,1.0,0.035,0.00165,4.08e-05,0.361,0.961,124.05,4.0,,Polydor,"C © 2008 Polydor Ltd. (UK), P ℗ 2008 Polydor Ltd. (UK)",2423 +2424,spotify:track:3enW9b6zYr7LSZ0szG131u,X-Files Theme (Skitz Radio Mix),"spotify:artist:3lns6yFKCjlELCxlzWNpmz, spotify:artist:0b56YzqAu22jh2CDUYvbbx","Triple X, Nick Skitz",spotify:album:1NkCLh2VHjJCHcxLY78xve,X-Files Theme,spotify:artist:3lns6yFKCjlELCxlzWNpmz,Triple X,1995-06-27,https://i.scdn.co/image/ab67616d0000b273d3da9bda9998ad7b6e2fa301,1,1,210333,https://p.scdn.co/mp3-preview/5cdfe94f0645c82860cd5bd1738299294c0d28b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUXN21100434,spotify:user:bradnumber1,2021-08-08T09:26:31Z,remix product,0.438,0.776,10.0,-13.282,0.0,0.0345,0.000668,0.86,0.32,0.459,156.863,4.0,,Central Station Records,"C 1995 Central Station Records, P 1995 Central Station Records",2424 +2425,spotify:track:27rdGxbavYJeBphck5MZAF,Nothing Breaks Like a Heart (feat. Miley Cyrus),"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:5YGY8feqx7naU7z4HrwZM6","Mark Ronson, Miley Cyrus",spotify:album:2hBfao8GWZwHlUGDB8HVQO,Nothing Breaks Like a Heart (feat. Miley Cyrus),"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:5YGY8feqx7naU7z4HrwZM6","Mark Ronson, Miley Cyrus",2018-11-30,https://i.scdn.co/image/ab67616d0000b273e18243ef239f3d28728ef086,1,1,217466,https://p.scdn.co/mp3-preview/b19fe82a0d1717a9e1403761b4ea861177f63b5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBARL1801571,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,pop",0.601,0.794,7.0,-5.844,0.0,0.0671,0.00987,1.36e-06,0.388,0.244,114.066,4.0,,Columbia,P (P) 2018 Mark Ronson under exclusive licence to Sony Music Entertainment UK Limited,2425 +2426,spotify:track:1qIGuYrUQ5JKMQWFTJizCv,On a Night like This,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:4oaGBehVCW8w4Ekf8sTbqb,The Best of Kylie Minogue,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2012-05-28,https://i.scdn.co/image/ab67616d0000b2732775ed6b5267d46354f4476a,1,14,212973,https://p.scdn.co/mp3-preview/f6baffc1019edbed4d8fdd9af0de4f69d10f6925?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAYE0000642,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.597,0.87,0.0,-6.058,0.0,0.0279,0.00378,0.321,0.335,0.563,129.947,4.0,,WM Australia,"C © 2014 KDB Pty Limited, P ℗ 2014 KDB Pty Limited",2426 +2427,spotify:track:6HePVKyIeL20JWLVthsU9c,Just Can’t Get Enough,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:5zwp1Sa7v6Mjp9CNZLZ7RO,The Beginning,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2010-01-01,https://i.scdn.co/image/ab67616d0000b27348caf395c71e325a242b092e,1,11,219426,https://p.scdn.co/mp3-preview/9d30bb19e8996a7b45da6f041dab5f8a6648d296?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71026671,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.482,0.661,0.0,-8.646,0.0,0.323,0.185,0.0,0.0804,0.246,94.001,4.0,,Universal Music Group,"C © 2010 Interscope Records, P ℗ 2010 Interscope Records",2427 +2428,spotify:track:5SMddCwwBNAM2soPNhBpck,Zoom,spotify:artist:677sHrkjhB7IP4YwjzZyc4,Last Dinosaurs,spotify:album:28ECelNgCHI17LzIJPFcPT,In A Million Years,spotify:artist:677sHrkjhB7IP4YwjzZyc4,Last Dinosaurs,2012-01-01,https://i.scdn.co/image/ab67616d0000b273611b169626e88767ccb3356f,1,1,237666,https://p.scdn.co/mp3-preview/4c973759a541dd73617d7ff723e4265f9ff5d059?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUUM71101417,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.46,0.744,7.0,-5.348,1.0,0.0566,0.00018,0.000312,0.693,0.492,122.567,4.0,,Universal Music Australia Pty. Ltd.,"C © 2012 Dew Process/Universal Music Australia, P ℗ 2012 Dew Process/Universal Music Australia",2428 +2429,spotify:track:2obblQ6tcePeOEVJV6nEGD,Cat's in the Cradle,spotify:artist:42q4Ivs7tAiCZ5C7eG5q4c,Harry Chapin,spotify:album:3nta4nhqWoWjc6LmHIB0kT,Verities & Balderdash,spotify:artist:42q4Ivs7tAiCZ5C7eG5q4c,Harry Chapin,1974,https://i.scdn.co/image/ab67616d0000b2736f5f94a57fdb922f98b06e86,1,1,222951,https://p.scdn.co/mp3-preview/82399689e1cefc7fb84ce3eb3d30afe0a908e3d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USEE10180356,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.489,0.578,10.0,-9.766,1.0,0.0418,0.234,0.0,0.123,0.511,78.111,4.0,,Rhino/Elektra,"C © 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",2429 +2430,spotify:track:2aBHx4EybTCa54AgHlYZiO,Stay,spotify:artist:43BgumF6B7s0W2mhVkmVO4,Maurice Williams & The Zodiacs,spotify:album:0fKeuyfZ85iMKWL9yXyRW1,Stay (Just A Little Bit Longer),spotify:artist:43BgumF6B7s0W2mhVkmVO4,Maurice Williams & The Zodiacs,2008-05-31,https://i.scdn.co/image/ab67616d0000b273c840c649c88daed41b26ff77,1,1,97506,https://p.scdn.co/mp3-preview/5d6f10631c451a753a0e577b9da4f56c4af3921f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBSUW0716919,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.521,0.765,8.0,-6.985,0.0,0.0685,0.838,1.61e-06,0.333,0.824,123.591,4.0,,Future Noise Music Ltd.,C (C) 2008 Future Noise Music Ltd.,2430 +2431,spotify:track:4wCmqSrbyCgxEXROQE6vtV,Somebody That I Used To Know,"spotify:artist:2AsusXITU8P25dlRNhcAbG, spotify:artist:6hk7Yq1DU9QcCCrz9uc0Ti","Gotye, Kimbra",spotify:album:1HjSyGjmLNjRAKgT9t1cna,Making Mirrors,spotify:artist:2AsusXITU8P25dlRNhcAbG,Gotye,2011-01-01,https://i.scdn.co/image/ab67616d0000b273e1d47c00ddecbfb810c807ed,1,3,244973,https://p.scdn.co/mp3-preview/8721423c664c8ec64df22cd2a85711437431a98c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,AUZS21100040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,bergen indie,electropop,nz pop",0.864,0.495,0.0,-7.036,1.0,0.037,0.591,0.000133,0.0992,0.72,129.062,4.0,,Samples & Seconds / Republic,"C © 2011 Samples 'N' Seconds Records Pty Ltd, under exclusive license to Universal Republic Records, a Division of UMG Recordings, Inc., P ℗ 2011 Samples 'N' Seconds Records Pty Ltd, under exclusive license to Universal Republic Records, a Division of UMG Recordings, Inc.",2431 +2432,spotify:track:0fioLzGM8ngbD1w6fMmm45,I'm Not The Only One,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:2Jg7JZ0ZXOGje1bkq7CVgK,In The Lonely Hour,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2014-01-01,https://i.scdn.co/image/ab67616d0000b2734fb7193968e58e51c3db3ef4,1,5,239316,https://p.scdn.co/mp3-preview/8959d5e6580b9d00fefd87bbbbf0dac0940a9d51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71308836,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.453,0.496,5.0,-5.785,1.0,0.0453,0.554,2.65e-05,0.0772,0.501,80.994,4.0,,Capitol Records,"C © 2014 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2014 Capitol Records, a division of Universal Music Operations Limited",2432 +2433,spotify:track:1YiAY1oCmkFjUabQL9gos4,Dream Police,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,spotify:album:66sGbldg4VPdY70IcPdxtE,Dream Police,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,1979-09-21,https://i.scdn.co/image/ab67616d0000b273c949b51fd9f906aa69757698,1,1,233133,https://p.scdn.co/mp3-preview/ce4b16c188acc2075ec8c87b4e8436f04a501a3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USSM19917189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,glam metal,glam rock,hard rock,mellow gold,power pop,rock,singer-songwriter,soft rock",0.476,0.766,4.0,-11.435,1.0,0.038,0.0446,0.0053,0.214,0.68,137.083,4.0,,Epic,P (P) 1979 Sony Music Entertainment,2433 +2434,spotify:track:09ZcYBGFX16X8GMDrvqQwt,For the First Time,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:2oc73A20I1FTQiWGCkLeVP,Science & Faith,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2011-01-18,https://i.scdn.co/image/ab67616d0000b273888241dbe5fdf3de9cb3d12f,1,2,252853,https://p.scdn.co/mp3-preview/a4d63c8536d79c81431869c7cd93c455508f219a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,59,GBARL1000776,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.396,0.629,9.0,-4.78,1.0,0.0287,0.0328,0.0,0.183,0.358,173.794,4.0,,Phonogenic,P (P) 2010 Sony Music Entertainment UK Limited,2434 +2435,spotify:track:4qWizh4UB8BuSypZ3T1zAz,Love Bites,spotify:artist:6H1RjVyNruCmrBEWRbD0VZ,Def Leppard,spotify:album:1ja2qzCrh6bZykcojbZs82,Hysteria,spotify:artist:6H1RjVyNruCmrBEWRbD0VZ,Def Leppard,1987-08-03,https://i.scdn.co/image/ab67616d0000b27343511b8c20112757edddc7ba,1,4,346960,https://p.scdn.co/mp3-preview/f0694998f7fe307c18cc225fc0e9bd9b873df4c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBF088700608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,nwobhm,rock",0.59,0.743,0.0,-7.078,0.0,0.0347,0.067,0.00093,0.0847,0.412,129.79,4.0,,UMC (Universal Music Catalogue),"C © 1987 Bludgeon Riffola Limited, under exclusive licence to Mercury Records Limited, P ℗ 1987 Mercury Records Limited",2435 +2436,spotify:track:0myxmqJXXImGNhmUY40MuB,Tragedy,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:7byZfMkOymyVownmGhLara,Spirits Having Flown,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1979-01-01,https://i.scdn.co/image/ab67616d0000b2736a27f501e3aab4152749bec2,1,1,303333,https://p.scdn.co/mp3-preview/9ade63223c7994cde2758c7e58486ccddec57c17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW7900060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.667,0.549,2.0,-10.651,1.0,0.0276,0.092,0.0056,0.242,0.804,117.97,4.0,,Interscope/MCA,"C © 1979 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb under exclusive license to Capitol Music Group, P ℗ 1979 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb under exclusive license to Capitol Music Group",2436 +2437,spotify:track:3GdToSzgYd9DKnZEH2YdIg,Downtown,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,spotify:album:5IhqVCU8v1xX3efFYl8dSP,Downtown - The Best of Petula Clark,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,1996-01-01,https://i.scdn.co/image/ab67616d0000b27377b2be898ac1ae1e3ffe3141,1,3,184000,https://p.scdn.co/mp3-preview/a0f306607b84869e5aeaa3ef5055c5805ef96964?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6400050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,folk rock,merseybeat,rock-and-roll,rockabilly",0.486,0.681,4.0,-5.666,1.0,0.0418,0.759,0.0,0.165,0.542,118.469,4.0,,Sanctuary Budget,"C © 1996 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1996 Sanctuary Records Group Ltd., a BMG Company",2437 +2438,spotify:track:4YVYP7FcWBpSgxKBCOt1vi,Cotton Eye Joe,spotify:artist:22Zqu1yyebVnbve8FxbJ2g,Rednex,spotify:album:5j8b7LzTg1NfERaFMUfWKI,Die Ultimativen Kult Klassiker: 90's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2003-08-15,https://i.scdn.co/image/ab67616d0000b2731d65327f66d25dd519d38854,1,15,190973,https://p.scdn.co/mp3-preview/ea87f6b94d82d80bbc9fcbc05c2088e0323963ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEA319600881,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,swedish country",0.722,0.977,9.0,-5.182,0.0,0.061,0.021,0.000516,0.0625,0.695,132.007,4.0,,Ariola Express,P (P) 2003 BMG Ariola Miller GmbH & Co. KG,2438 +2439,spotify:track:205O1UuEjG0zX01YMElqkV,Tears,spotify:artist:76o4kCpWMmBGl8jIYfRHTk,Ken Dodd,spotify:album:1D7E2EHMoQM3nP9drEwv7o,Ken Dodd,spotify:artist:76o4kCpWMmBGl8jIYfRHTk,Ken Dodd,1991,https://i.scdn.co/image/ab67616d0000b2731ea0a21d873289c511dfaf92,1,11,171826,https://p.scdn.co/mp3-preview/450670658f0ed2dba95e8537babdfb580d7808a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAYE6500106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,merseybeat",0.254,0.339,0.0,-10.888,1.0,0.0301,0.659,0.0,0.0694,0.349,88.041,4.0,,Parlophone UK,"C © 1991 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1991 Parlophone Records Ltd, a Warner Music Group Company",2439 +2440,spotify:track:71nY94VWv4IQoDY5MANxeV,Action - Single Version,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,spotify:album:1pD2XJI6nHHSQAzbloHePx,Give Us A Wink,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,1976-02-16,https://i.scdn.co/image/ab67616d0000b2732a8a0ee776f47b3d7ace1a51,1,9,198106,https://p.scdn.co/mp3-preview/db4830144e1322a7cd88a5713a155affb0a5a99c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,DEC767600042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam rock,hard rock",0.281,0.747,2.0,-4.785,1.0,0.0447,0.00394,0.0994,0.0905,0.523,174.712,4.0,,RCA Records Label,P (P) This compilation 2005 Sony BMG UK & Ireland Ltd.,2440 +2441,spotify:track:7b0Dqv3LaTDaOW1Fr3RQxz,Hey There Delilah - Bonus Track,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,spotify:album:6B1zAt00OKGfPCru3T07wa,Every Second Counts,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,2006,https://i.scdn.co/image/ab67616d0000b2730378dcb3d772717e88c56b5e,1,13,233280,https://p.scdn.co/mp3-preview/fcd477890854d132e79a028d17d89bf7812652dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR10622325,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,neo mellow,neon pop punk,pop punk,pop rock",0.521,0.438,2.0,-7.703,1.0,0.0292,0.844,1.36e-06,0.103,0.318,103.955,4.0,,Universal Music Taiwan,"C © 2007 Hollywood Records, P ℗ 2007 Hollywood Records",2441 +2442,spotify:track:3pHkh7d0lzM2AldUtz2x37,The Archer,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1NAmidJlEaVgA3MpcPFYGq,Lover,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2019-08-23,https://i.scdn.co/image/ab67616d0000b273e787cffec20aa2a396a61647,1,5,211240,https://p.scdn.co/mp3-preview/7d7405c983a3b69e8ff021ea86d68c246bad675b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USUG11901475,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.292,0.574,0.0,-9.375,1.0,0.0401,0.12,0.00569,0.0663,0.166,124.344,4.0,,Taylor Swift,"C © 2019 Taylor Swift, P ℗ 2019 Taylor Swift",2442 +2443,spotify:track:6nxQdXa1uAL0rY72wPZu89,Love Me Now,spotify:artist:5y2Xq6xcjJb2jVM54GHK3t,John Legend,spotify:album:7xMjYDrgPLp1ReFGAOyS1O,DARKNESS AND LIGHT,spotify:artist:5y2Xq6xcjJb2jVM54GHK3t,John Legend,2016-12-02,https://i.scdn.co/image/ab67616d0000b273fa2ba77d93b08258827bd2d2,1,5,210293,https://p.scdn.co/mp3-preview/5dfaac6455094cc31df1f0e04ab6623e8f9a26f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM11606983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,pop soul,urban contemporary",0.495,0.762,8.0,-3.842,1.0,0.0862,0.591,0.0,0.0763,0.708,123.893,4.0,,Columbia,"P (P) 2016 John Legend Music, Inc. and Columbia Records, a Division of Sony Music Entertainment",2443 +2444,spotify:track:2rtSjGAgCkHL5mKboZMVgD,Free Loop,spotify:artist:7xTcuBOIAAIGDOSvwYFPzk,Daniel Powter,spotify:album:4zhigAhPwqp43XVHBiVeQI,Daniel Powter,spotify:artist:7xTcuBOIAAIGDOSvwYFPzk,Daniel Powter,2005-02-22,https://i.scdn.co/image/ab67616d0000b273d5d74dc15f88ec6e02c7378d,1,2,232893,https://p.scdn.co/mp3-preview/41a5c159f292f490279487a541e074fa9ac93cea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB10401973,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,neo mellow,pop rock",0.6,0.657,0.0,-10.693,1.0,0.0336,0.503,0.00013,0.0816,0.678,75.331,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2005 Warner Records Inc.",2444 +2445,spotify:track:2dHHgzDwk4BJdRwy9uXhTO,Creepin' (with The Weeknd & 21 Savage),"spotify:artist:0iEtIxbK0KxaSlF7G42ZOp, spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ, spotify:artist:1URnnhqYAYcrqrcwql10ft","Metro Boomin, The Weeknd, 21 Savage",spotify:album:7txGsnDSqVMoRl6RQ9XyZP,HEROES & VILLAINS,spotify:artist:0iEtIxbK0KxaSlF7G42ZOp,Metro Boomin,2022-12-02,https://i.scdn.co/image/ab67616d0000b273c4fee55d7b51479627c31f89,1,10,221520,https://p.scdn.co/mp3-preview/adc5d059e4ccc40bbad75f3844eb03546d9ab05a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,82,USUG12208791,spotify:user:bradnumber1,2023-05-07T12:00:09Z,"rap,canadian contemporary r&b,canadian pop,pop,atl hip hop,hip hop,rap",0.716,0.613,1.0,-6.018,0.0,0.0522,0.391,0.0,0.0813,0.157,97.914,4.0,,Republic Records,"C © 2022 Boominati Worldwide, LLC, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2022 Boominati Worldwide, LLC, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",2445 +2446,spotify:track:4Hhv2vrOTy89HFRcjU3QOx,At Last,spotify:artist:0iOVhN3tnSvgDbcg25JoJb,Etta James,spotify:album:7rd4PorIOPjPTy7qdUeeCt,At Last!,spotify:artist:0iOVhN3tnSvgDbcg25JoJb,Etta James,1960,https://i.scdn.co/image/ab67616d0000b273b2229a8fdf377abaf3652624,1,7,179693,https://p.scdn.co/mp3-preview/33a1d8d54f9a05885866036e1322391771eaa41d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USMC16046323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"jazz blues,soul,soul blues,torch song,vocal jazz",0.274,0.348,5.0,-8.631,1.0,0.0293,0.547,0.0133,0.334,0.328,87.43,3.0,,Geffen*,"C © 1999 UMG Recordings, Inc., P ℗ 1960 UMG Recordings, Inc.",2446 +2447,spotify:track:4lBKA4WiQo44pF6fZAgE59,Break My Stride,spotify:artist:2AioVZmOuXTzu5xLetAdXm,Unique II,spotify:album:5wWpeLtiTcTDyEQGFS7FNb,Break My Stride Re-Work 2002,spotify:artist:2AioVZmOuXTzu5xLetAdXm,Unique II,2002,https://i.scdn.co/image/ab67616d0000b2738d78fc5af56dab1762cc71c5,1,4,196093,https://p.scdn.co/mp3-preview/9aaa276ea4f0e87b9f562e17cbad3e7df8603518?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,ATSO19600401,spotify:user:bradnumber1,2024-05-07T06:53:16Z,,0.785,0.852,0.0,-6.436,1.0,0.0376,0.0647,0.000122,0.0652,0.787,109.998,4.0,,Columbia,P (P) 2002 Sony Music Entertainment (Austria) GesmbH,2447 +2448,spotify:track:7KxMm3ACHHuIa48MLIbOCm,Self Esteem,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:3x507Iwk3UNquPkPrnHRrt,Greatest Hits,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,2005-06-21,https://i.scdn.co/image/ab67616d0000b2737213034c2206525666e3f4de,1,3,257760,https://p.scdn.co/mp3-preview/29a0dd6febfac9310051074de46eefbb7a6f5cbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEP40312208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.439,0.909,0.0,-3.607,1.0,0.0684,0.0266,0.0,0.367,0.597,104.709,4.0,,Universal Music Group,"C © 2005 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc., P ℗ 2005 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc.",2448 +2449,spotify:track:5c6lM2zjAF6MFoD8C1hiBr,Clarity,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:4V3BerycmgxqE3sr3RaDYE,Clarity,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2022-04-06,https://i.scdn.co/image/ab67616d0000b273eabdc32582cf9a4a7d2f6a63,1,1,227240,https://p.scdn.co/mp3-preview/b2885b2e614916dca8c55b6c8cba56218e70d31e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT22201801,spotify:user:bradnumber1,2022-06-07T09:54:24Z,"folk-pop,modern rock",0.552,0.873,0.0,-6.065,1.0,0.0464,0.00137,0.000273,0.0966,0.62,125.059,4.0,,Atlantic Records,"C © 2022 Atlantic Recording Corporation, P ℗ 2022 Atlantic Recording Corporation",2449 +2450,spotify:track:5XN9bW25saq1CqXP1hfN2V,Insatiable,spotify:artist:0ihJnGEjNnbM6uuTn3RHMo,Darren Hayes,spotify:album:1pJ0cEUyYQExYHzqWOydTf,Spin,spotify:artist:0ihJnGEjNnbM6uuTn3RHMo,Darren Hayes,2002-03-18,https://i.scdn.co/image/ab67616d0000b273b352227d6424a2c79c86bd7f,1,2,310240,https://p.scdn.co/mp3-preview/45623da383426b2ff140ddc1d74327c54bf23808?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10114439,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.665,0.842,0.0,-5.471,0.0,0.0559,0.105,0.0,0.0785,0.861,143.875,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 JWM Pty Ltd, P ℗ 2017 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",2450 +2451,spotify:track:7m2g1kKuF7Tre2PzjK3Lnh,Can't Get You out of My Head,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:6FTq1YhYJLetfJQrq02gdv,Fever,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2001-10-01,https://i.scdn.co/image/ab67616d0000b273c2f18ddba993ab67b989bcb8,1,3,230640,https://p.scdn.co/mp3-preview/80a42bfd505424a41c3e43b66b4e64571e36d49c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAYE0100913,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.766,0.563,9.0,-7.516,0.0,0.0339,0.0263,0.683,0.115,0.964,126.007,4.0,,WM Australia,"C © 2001 KayDeebee Pty Ltd, P ℗ 2001 KayDeebee Pty Ltd",2451 +2452,spotify:track:3FCto7hnn1shUyZL42YgfO,Piano Man,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:7r36rel1M4gyBavfcJP6Yz,The Essential Billy Joel,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,2001-10-02,https://i.scdn.co/image/ab67616d0000b273649d4f282653ab8be56f447e,1,1,336093,https://p.scdn.co/mp3-preview/58ebd5167860afaf6246d239b5ec9dce329c9f97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM17300504,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.334,0.472,0.0,-8.791,1.0,0.0277,0.6,3.62e-06,0.317,0.431,179.173,3.0,,Columbia,P This compilation (P) 2001 Sony Music Entertainment,2452 +2453,spotify:track:0nmMDU7tk2Mi2RE54Shbfb,When The Night Falls Quiet,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:7ytz5cDMLL5ud6Q77X8Dtg,March Fires,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2013-01-01,https://i.scdn.co/image/ab67616d0000b27336b14b0faf9f22297b4a87b4,1,3,241812,https://p.scdn.co/mp3-preview/d50bb4577516b8eb57e2f0415908cb5375f2c747?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUYO01200088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.54,0.698,11.0,-6.598,1.0,0.0258,0.00333,0.0255,0.0934,0.387,109.691,4.0,,EMI Music Australia,"C © 2013 Birds Of Tokyo Pty Ltd, P ℗ 2013 Birds Of Tokyo Pty Ltd",2453 +2454,spotify:track:5xl3kGoK3namYGZX46Vt0S,Keith,spotify:artist:4J3TXBvAMckFbTxqxNYpDj,Kaylee Bell,spotify:album:5vhfSn7rFEfy8jxuoI1PGE,Keith,spotify:artist:4J3TXBvAMckFbTxqxNYpDj,Kaylee Bell,2019-02-15,https://i.scdn.co/image/ab67616d0000b273f6be054791bf3968c4a7e1f6,1,1,171537,https://p.scdn.co/mp3-preview/3840b4513e76b5dd3df60d1ee9439ef3161d48ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZRI11803470,spotify:user:bradnumber1,2022-09-05T01:06:05Z,australian country,0.6,0.861,9.0,-4.214,1.0,0.136,0.000852,0.00115,0.0623,0.493,103.06,4.0,,Kaylee Bell,"C 2019 Kaylee Bell, P 2019 Kaylee Bell",2454 +2455,spotify:track:2zX22RoaGg8KGuNCzSBwBP,Happiness,spotify:artist:5LmYIx9kSWBJOWbP4xAxb1,Alexis Jordan,spotify:album:7InaLclfE0Cs1BK4HqAvJr,Happiness,spotify:artist:5LmYIx9kSWBJOWbP4xAxb1,Alexis Jordan,2010-10-31,https://i.scdn.co/image/ab67616d0000b273e88c3c4386d824440af3f336,1,1,242786,https://p.scdn.co/mp3-preview/2b12f10ff9ff853026093beb5ce892a77da59574?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USQX91000209,spotify:user:bradnumber1,2021-08-08T09:26:31Z,talent show,0.718,0.768,8.0,-7.041,1.0,0.115,0.115,0.0,0.565,0.483,127.949,4.0,,Star Roc/Roc Nation/Columbia,P (P) 2010 Star Roc LLC,2455 +2456,spotify:track:4EQL3I68WEw20icaY5y6Cy,Happy Jack,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:0NufsuTuf3U0BY0p6jFdxV,"Meaty, Beaty, Big And Bouncy",spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1971-10-30,https://i.scdn.co/image/ab67616d0000b27379707c30203f870776ff02d0,1,3,132800,https://p.scdn.co/mp3-preview/5d299b869bb747b0064dbd8452b8ac964d4eb109?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBF068890006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.556,0.572,2.0,-11.692,1.0,0.0553,0.0272,0.00501,0.105,0.964,128.887,4.0,,Polydor Records,"C © 1990 Geffen Records, P This Compilation ℗ 1990 Geffen Records",2456 +2457,spotify:track:0n2rc4Vc9bhEiKAonEYevJ,Kiss Me Now,spotify:artist:0LmgCb9GDONh4eFlyzIhUE,Johnny Young & Kompany,spotify:album:1TJTD57o8R9XXUKnmZa7o1,Step Back With,spotify:artist:0LmgCb9GDONh4eFlyzIhUE,Johnny Young & Kompany,1992,https://i.scdn.co/image/ab67616d0000b27379d41459281ee4db94923c46,1,3,94333,https://p.scdn.co/mp3-preview/98ad520f3d020aaf40cfcd6fa1cdcce1aea757ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AUFE09400031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic australian country,0.54,0.704,0.0,-10.121,1.0,0.038,0.0837,7.12e-05,0.474,0.876,91.392,4.0,,WM Australia,"C © 1992 Festival Records, P ℗ 1992 Festival Records",2457 +2458,spotify:track:3y1bHsOGzRjH0K67oz5E9m,(Girls Girls Girls Were) Made To Love,spotify:artist:3JJYPOCM13Id9iZHtkwkI5,Eddie Hodges,spotify:album:4v8jRAVXKbiaXELB1uuJDj,Rare Oldies But Goodies,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-01-01,https://i.scdn.co/image/ab67616d0000b27341c3cdc2dd802f1ec6a1f8e8,1,25,146893,https://p.scdn.co/mp3-preview/9e94c9a7700eca399f6376cd693c66bd826fbe4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA371175652,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.751,0.348,9.0,-10.542,1.0,0.0583,0.216,0.0,0.051,0.513,88.941,4.0,,Master Classics Records,"C (C) 2011 Master Classics Records, P (P) 2011 Master Classics Records",2458 +2459,spotify:track:0kfzWBs3VOMaI0T5yZ0T8W,Que Sera Mi Vida,spotify:artist:0pRXhFeDRaYQgCp0lj2X9r,Gibson Brothers,spotify:album:5RccpTmcphuiXB6XM7jljn,The Complete Of Gibson Brothers,spotify:artist:0pRXhFeDRaYQgCp0lj2X9r,Gibson Brothers,2011-07-25,https://i.scdn.co/image/ab67616d0000b273d6eb38eeeb042725617cc70e,2,6,352533,https://p.scdn.co/mp3-preview/fcef85af5a0c57ace4ae4f834b7906a1fef70a16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,FR58F7900160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,vintage french electronic,0.591,0.954,6.0,-6.492,1.0,0.046,0.000306,0.0031,0.0778,0.676,131.172,4.0,,Zagora,"C 2011 Zagora, P 2011 Zagora",2459 +2460,spotify:track:1y748kOQshZECWk5MddfOv,Love Changes (Everything),spotify:artist:3bpvhFSIErguVNQUiutctF,Climie Fisher,spotify:album:1gYHcOcMdlzkXhJkJwPJ9C,Everything,spotify:artist:3bpvhFSIErguVNQUiutctF,Climie Fisher,1988-03-14,https://i.scdn.co/image/ab67616d0000b27368055668c8cdb498dfe69e64,1,1,268186,https://p.scdn.co/mp3-preview/d94a48df5c5521c4a230de5a21d53d9bf6c8797b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAYE8700120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop",0.624,0.868,5.0,-5.867,1.0,0.0269,0.305,1.38e-05,0.186,0.806,111.143,4.0,,Parlophone UK,"C © 1988 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1988 Parlophone Records Ltd, a Warner Music Group Company",2460 +2461,spotify:track:6th7K3C0mmxk5AlT4x4oro,Frankie,spotify:artist:6gkWznnJkdkwRPVcmnrays,Sister Sledge,spotify:album:5F9uSIEb2uKL2IQybfuBlQ,When the Boys Meet the Girls,spotify:artist:6gkWznnJkdkwRPVcmnrays,Sister Sledge,1985,https://i.scdn.co/image/ab67616d0000b273a39e3de6249c3d40f60915c9,1,3,257000,https://p.scdn.co/mp3-preview/8048c70268c2812682852cfc81166b195c3cda68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USAT20703356,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,philly soul,quiet storm,soul",0.813,0.759,6.0,-7.882,1.0,0.0878,0.719,0.0071,0.0573,0.963,82.941,4.0,,Rhino Atlantic,"C © 1985 Atlantic Recording Corp., P ℗ 1985 Atlantic Recording Corp., Marketed by Rhino Entertainment Company, a Warner Music Group Company",2461 +2462,spotify:track:3ic8Aie35Q7XuzmODprc0Y,Tell Laura I Love Her,spotify:artist:7BDI9Iqt24gl4RGdS6hWs9,Ray Peterson,spotify:album:42FHlMA9rY1J5AVfQ7No14,Goodnight My Love,spotify:artist:7BDI9Iqt24gl4RGdS6hWs9,Ray Peterson,2012-10-30,https://i.scdn.co/image/ab67616d0000b27343861b1f7d8773edf76bd273,1,2,178093,https://p.scdn.co/mp3-preview/0614ec5714a481903a9a6e2780aca26514f57826?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USA561440377,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.515,0.358,4.0,-14.705,1.0,0.0409,0.741,0.0,0.191,0.291,102.342,4.0,,Discos Cada,C (C) 2012 Discos Cada SL,2462 +2463,spotify:track:0CPeph6gNd5mpJKi1JWR2b,Still Standing - Radio Edit,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,spotify:album:10M4f3k8EhppGZqsah8kN7,Still Standing,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2009-01-01,https://i.scdn.co/image/ab67616d0000b273b09970d28c6adbca8fec4f72,1,1,209226,https://p.scdn.co/mp3-preview/30b622c135ed0f8d35d4d8d7c0e4b4f1b5cbee8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUUM70901582,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.789,0.744,11.0,-5.094,0.0,0.134,0.315,3.39e-06,0.242,0.836,97.009,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Universal Music Australia Pty Ltd., P ℗ 2009 Universal Music Australia Pty Ltd.",2463 +2464,spotify:track:45V4Mk7vZV2b9JfSWuUX9m,Graduation (Friends Forever),spotify:artist:3OsUvoKmZA2gw8rETtxGlz,Vitamin C,spotify:album:1LbkPqgfdATHN9nonNp1np,Vitamin C,spotify:artist:3OsUvoKmZA2gw8rETtxGlz,Vitamin C,1999-08-31,https://i.scdn.co/image/ab67616d0000b27316354c666df6afbd41862adf,1,12,340613,https://p.scdn.co/mp3-preview/0d8d3e546f9a207ac76def10f8995ed61ec95bd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USEE19900264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.583,0.637,0.0,-6.464,1.0,0.0459,0.00722,0.0419,0.177,0.315,80.004,4.0,,Elektra Records,"C © 1999 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1999 Elektra Entertainment for United States and WEA International Inc. for the world outside of the United States.",2464 +2465,spotify:track:60eOMEt3WNVX1m1jmApmnX,Live in the Moment,spotify:artist:4kI8Ie27vjvonwaB2ePh8T,Portugal. The Man,spotify:album:4VzzEviJGYUtAeSsJlI9QB,Woodstock,spotify:artist:4kI8Ie27vjvonwaB2ePh8T,Portugal. The Man,2017-06-16,https://i.scdn.co/image/ab67616d0000b273af52c228c9619ff6298b08cd,1,3,246786,https://p.scdn.co/mp3-preview/d0f0b82dd0469376514712b2f1cd9ebcd3a61b07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAT21700816,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,indietronica,modern alternative rock,modern rock",0.546,0.583,6.0,-7.317,0.0,0.0348,0.002,0.173,0.115,0.235,128.017,4.0,,Atlantic Records,"C © 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",2465 +2466,spotify:track:0X33MVQ9UlfD5ITvJPu1x5,Feel It - Radio Version,"spotify:artist:1hK5unnJvXQcBMO25YxOFZ, spotify:artist:4ofqDJW8PTs5YGdO0QZ55A","The Tamperer, Maya",spotify:album:0hN2WOLMD22hUYH5MBQ4pw,Hands Up!,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-05-30,https://i.scdn.co/image/ab67616d0000b27347305916c3982d01f1ae069c,1,7,178880,https://p.scdn.co/mp3-preview/2547ce3f9c36434c16af1a312b0187d231aca1c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ITL019800032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,italo dance",0.871,0.974,11.0,-6.722,1.0,0.0486,0.097,0.0384,0.0542,0.653,125.05,4.0,,xtrakt,"C 2014 xtrakt, P 2014 xtrakt",2466 +2467,spotify:track:1MYlx4dBtiyjn7K8YSyfzT,The Real Slim Shady,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:71xFWYFtiHC8eP99QB30AA,Curtain Call (Deluxe),spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2005-12-06,https://i.scdn.co/image/ab67616d0000b273a8a32ae2a279b9bf03445738,1,11,284800,https://p.scdn.co/mp3-preview/a3cb1372a99a0944063b535182eef6ad80d43087?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10000448,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.947,0.655,5.0,-4.243,0.0,0.0609,0.0331,0.0,0.0433,0.787,104.485,4.0,,Universal Music Group,"C © 2005 Aftermath Entertainment/Interscope Records, P ℗ 2005 Aftermath Entertainment/Interscope Records",2467 +2468,spotify:track:0CKeqxGFOpjRE2cOlETnaj,Don't Let Me Get Me - Radio Edit,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2dpS2uYlkzDsPjl3IZbNjD,Greatest Hits...So Far!!!,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2010-11-12,https://i.scdn.co/image/ab67616d0000b2730eb56329734f9400c1639359,1,3,211426,https://p.scdn.co/mp3-preview/62220108b019dbbf853b52ecf8127aeb202206ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USAR10100715,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.596,0.878,0.0,-3.848,0.0,0.0807,0.00166,0.0,0.0819,0.568,98.462,4.0,,LaFace Records,"P (P) 2010 LaFace Records, a unit of Sony Music Entertainment",2468 +2469,spotify:track:6QgjcU0zLnzq5OrUoSZ3OK,Feel It Still,spotify:artist:4kI8Ie27vjvonwaB2ePh8T,Portugal. The Man,spotify:album:4VzzEviJGYUtAeSsJlI9QB,Woodstock,spotify:artist:4kI8Ie27vjvonwaB2ePh8T,Portugal. The Man,2017-06-16,https://i.scdn.co/image/ab67616d0000b273af52c228c9619ff6298b08cd,1,4,163253,https://p.scdn.co/mp3-preview/47e41f47a7627e34bf34d039b32b9774b9b88768?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USAT21700437,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,indietronica,modern alternative rock,modern rock",0.801,0.795,1.0,-5.115,0.0,0.0504,0.0417,0.000113,0.0717,0.754,79.028,4.0,,Atlantic Records,"C © 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",2469 +2470,spotify:track:4cMHCRLPNoEbpnl2rz6GS9,Back on the Chain Gang - 2007 Remaster,spotify:artist:0GByy3DcfbQwDvXGCWmzv9,Pretenders,spotify:album:48NYXFdasUBuSeO3RAolt3,Learning to Crawl (Expanded & Remastered),spotify:artist:0GByy3DcfbQwDvXGCWmzv9,Pretenders,1984,https://i.scdn.co/image/ab67616d0000b2735436a01d3b621036889cffe6,1,2,231120,https://p.scdn.co/mp3-preview/8be9625cf5ee44004707e963271d3da132f2f11b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAHT0700187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,rock,soft rock",0.598,0.901,2.0,-6.081,1.0,0.0359,0.116,0.0401,0.178,0.814,153.24,4.0,,Rhino/Warner Records,"C © 2007 Rhino Entertainment Co. A Warner Music Group Company, P ℗ 2007 Warner Music UK Ltd. Manufactured & Marketed by Rhino Entertainment Company, a Warner Music Group Company",2470 +2471,spotify:track:2POW4mfkjkpgd9xI1fyspX,Italo House Mix,spotify:artist:0VtCimVbU3g9gxG38QLB1I,Rococo,spotify:album:4p7J1mz8NFIXwmN7YTljib,Italo House Mix (UK Chart Top 100 - No. 54),spotify:artist:0VtCimVbU3g9gxG38QLB1I,Rococo,2018-12-20,https://i.scdn.co/image/ab67616d0000b273b6028e2920b22556ae5a4da9,1,1,231333,https://p.scdn.co/mp3-preview/1cf24a7f678fa5beb2533296f513aba7f668a04f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,DK5C50003459,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.743,0.844,4.0,-14.749,0.0,0.0444,0.0191,0.681,0.0704,0.791,121.742,4.0,,Music Manager,"C 2018 Marathon Media International Ltd., under exclusive license to Music Manager, P 2018 Marathon Media International Ltd., under exclusive license to Music Manager",2471 +2472,spotify:track:530Nh8H6UdeIZmxf9y7NXl,Roxanne,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:0psHZUD4dKFmxEfEmGRCLB,The Very Best Of Sting And The Police,"spotify:artist:0Ty63ceoRnnJKVEYP0VQpk, spotify:artist:5NGO30tJxFlKixkPSgXcFE","Sting, The Police",2002-01-01,https://i.scdn.co/image/ab67616d0000b273cf390065f5a3336f12143e16,1,17,188840,https://p.scdn.co/mp3-preview/78eaeaf4301b7a27717be60652bde58f0ec97462?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBAAM7800003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.612,0.665,5.0,-9.83,1.0,0.39,0.0482,1.4e-06,0.0425,0.69,133.021,4.0,,Polydor Associated Labels,"C © 2002 A&M Records Inc., P ℗ 2002 A&M Records Inc.",2472 +2473,spotify:track:0PhL7aecZxj0wLXIdjmNft,Mr. Saxobeat - Radio Edit,spotify:artist:0BmLNz4nSLfoWYW1cYsElL,Alexandra Stan,spotify:album:5CssLYC0Tw5zjaH6sVLNeZ,Sundown (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-05-06,https://i.scdn.co/image/ab67616d0000b273b9b49e11904a8c231a7ce3a7,1,13,195105,https://p.scdn.co/mp3-preview/918fe315bdf178768d227a40c0efcb1edd0137fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,ROCRP1002864,spotify:user:bradnumber1,2021-08-08T09:26:31Z,romanian pop,0.732,0.925,11.0,-4.165,0.0,0.051,0.0276,0.000238,0.14,0.782,127.012,4.0,,"Ultra Records, LLC","P (P) 2016 Ultra Records, LLC",2473 +2474,spotify:track:2ph0hzV1kCVhR82E2La4q5,Two Out of Three Ain't Bad,spotify:artist:7dnB1wSxbYa8CejeVg98hz,Meat Loaf,spotify:album:6mvI80w5r78niBmwtu7RF9,Bat Out Of Hell,spotify:artist:7dnB1wSxbYa8CejeVg98hz,Meat Loaf,1977-10-21,https://i.scdn.co/image/ab67616d0000b2734111af27787499f6d8752e9f,1,5,324440,https://p.scdn.co/mp3-preview/6e2549dae0bbbb8194e397545e64ad61f5284e9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM11206828,spotify:user:bradnumber1,2021-08-08T09:26:31Z,album rock,0.586,0.48,9.0,-9.138,1.0,0.0243,0.385,0.0,0.0947,0.488,79.873,4.0,,Cleveland International/ Epic/Legacy,"P (P) 1977, 2012 Sony Music Entertainment",2474 +2475,spotify:track:28LMSzy4ecnDWH3UU4pFvZ,Soul Twist,spotify:artist:0WxOgeRxUt0MwPrI7A5atQ,King Curtis,spotify:album:6fAgpXkvAJJBuUOc5LyDjp,The Best Of King Curtis,spotify:artist:0WxOgeRxUt0MwPrI7A5atQ,King Curtis,1996-01-01,https://i.scdn.co/image/ab67616d0000b273853d1b34020b9517e4751e46,1,3,163800,https://p.scdn.co/mp3-preview/92ba2df3b91d13ff0def3920a14536796af6a29a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USCA28901349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"jazz blues,jazz saxophone,soul jazz",0.495,0.595,9.0,-9.901,1.0,0.0371,0.368,0.908,0.266,0.669,142.016,4.0,,Blue Note Records,"C © 1996 Capitol Records Inc., P This Compilation ℗ 1996 Capitol Records Inc.",2475 +2476,spotify:track:5UWwZ5lm5PKu6eKsHAGxOk,Everlong,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:30ly6F6Xl0TKmyBCU50Khv,The Colour And The Shape,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,1997-05-20,https://i.scdn.co/image/ab67616d0000b2730389027010b78a5e7dce426b,1,11,250546,https://p.scdn.co/mp3-preview/78fd3872e0fa5940b2a36654f07f11e7119be4e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USRW29600011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.413,0.881,11.0,-5.541,0.0,0.0367,5.99e-05,0.000308,0.0805,0.364,158.066,4.0,,RCA Records Label,"P (P) 1997 Roswell Records, Inc.",2476 +2477,spotify:track:7uLKyipL5WfndsHMRSGEUS,Lonely Days,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:18zV19LWwZ3mBcTO2IG5qc,2 Years On,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1970-11,https://i.scdn.co/image/ab67616d0000b27305d4d19c417cad806aee274b,1,7,225666,https://p.scdn.co/mp3-preview/5d5325ab64633aa0954ec0cc81d74855ffaa4814?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAKW7001021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.334,0.24,0.0,-14.5,0.0,0.0327,0.662,8.35e-05,0.634,0.37,94.254,4.0,,Bee Gees Catalog,"C © 1971 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, Under exclusive license to Capitol Music Group, P ℗ 1971 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, Under exclusive license to Capitol Music Group",2477 +2478,spotify:track:4NmNlkn02t6pjGswDBFw1F,It's Over,"spotify:artist:6NyJIFHAePjHR1pFxwisqz, spotify:artist:61ODx6Din873HtUV6eDZZr, spotify:artist:0wBPOeoreeyAE0PPolYn14","Kurupt, Anita McCloud, Natina Reed",spotify:album:4g4z5yi53Y9gg4us8JM4S3,Space Boogie: Smoke Oddessey (Digitally Remastered),spotify:artist:6NyJIFHAePjHR1pFxwisqz,Kurupt,2012-10-24,https://i.scdn.co/image/ab67616d0000b2731f732354a14ccb6483b1fc7d,1,5,204466,https://p.scdn.co/mp3-preview/b3a3998b143f545b6dd0ffea7700c0d07c311322?cid=9950ac751e34487dbbe027c4fd7f8e99,True,29,USGZ21243251,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,west coast rap",0.832,0.73,9.0,-4.2,1.0,0.322,0.123,0.0,0.141,0.928,178.485,4.0,,Antra Records / Essential Media Group,C (C) 2012 Essential Media Group LLC,2478 +2479,spotify:track:3f3omU8n47Mqyab5nCaGyT,Because of You,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:5gDAEao3VxFdbm8vS0koQq,Breakaway,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2004-01-17,https://i.scdn.co/image/ab67616d0000b27303dadde4d9d305c1c3e0d91c,1,4,219493,https://p.scdn.co/mp3-preview/525c5e2d412629e5733630ff7d3c05a13bb8a5a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBCTA0400265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.583,0.584,5.0,-5.362,0.0,0.0314,0.254,0.0,0.123,0.136,140.039,4.0,,RCA Records Label,"P (P) 2004 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",2479 +2480,spotify:track:2760p399WNJLX9LGBkjL4Z,Flava,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,spotify:album:0RsPmRzTbarQCXBgLSW5Ox,Yours,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,2016-01-01,https://i.scdn.co/image/ab67616d0000b273c911d9842660be1965a41daf,1,2,185266,https://p.scdn.co/mp3-preview/1725984aad26a01d4d324b5e41d2c995323fe00a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,AUBM01500025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.813,0.754,4.0,-3.911,0.0,0.0494,0.166,0.0,0.121,0.923,112.962,4.0,,DNA Songs/Sony Music Entertainment,P (P) 2015 DNA Songs/ Sony Music Entertainment Australia Pty Ltd.,2480 +2481,spotify:track:77ZdAoTHYoF6Umo76HFD4m,The Fighter (feat. Ryan Tedder),spotify:artist:4IJczjB0fJ04gs4uvP0Fli,Gym Class Heroes,spotify:album:2mumCpGmuE9iDeOvMx6XrB,The Papercut Chronicles II,spotify:artist:4IJczjB0fJ04gs4uvP0Fli,Gym Class Heroes,2011-11-11,https://i.scdn.co/image/ab67616d0000b27318b8088fe0c3dbf78398b55a,1,10,228533,https://p.scdn.co/mp3-preview/75a4b46693cce899233dd81dc647b6eb30266731?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAT21102798,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap",0.592,0.926,7.0,-3.469,1.0,0.126,0.0775,0.0,0.187,0.432,99.018,4.0,,Decaydance/Fueled By Ramen,"C © 2011 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2011 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States.",2481 +2482,spotify:track:37BTh5g05cxBIRYMbw8g2T,Rosanna,spotify:artist:0PFtn5NtBbbUNbU9EAmIWF,TOTO,spotify:album:62U7xIHcID94o20Of5ea4D,Toto IV,spotify:artist:0PFtn5NtBbbUNbU9EAmIWF,TOTO,1982-04-08,https://i.scdn.co/image/ab67616d0000b2734a052b99c042dc15f933145b,1,1,331200,https://p.scdn.co/mp3-preview/9d8752f5619f8517b1a7366c7521f79970f37ed5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM18200245,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,rock,soft rock,yacht rock",0.365,0.513,7.0,-13.034,0.0,0.0357,0.0208,0.000147,0.205,0.739,80.647,4.0,,Columbia,P (P) 1982 Sony Music Entertainment Inc.,2482 +2483,spotify:track:1BvJmtaXsqtH438BcDPeBb,Daniel,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:1reJ8DttK5EGwdyf7y9FBR,Don't Shoot Me I'm Only The Piano Player,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1973-01-22,https://i.scdn.co/image/ab67616d0000b273f67fbf0d465cca2b3e25af96,1,1,234666,https://p.scdn.co/mp3-preview/3bf7072717c68b1caf99cacd35e075db39020a3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAMB9500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.689,0.476,0.0,-11.945,1.0,0.029,0.379,5.12e-05,0.0864,0.9,132.074,4.0,,EMI,"C © 1995 Mercury Records Limited, P This Compilation ℗ 1973 This Record Company Ltd.",2483 +2484,spotify:track:4Tac9REecowN7DzuYBAZaD,L.O.V.E.,spotify:artist:4hqDqHtBlgxXpLXVYf7c8L,Ashlee Simpson,spotify:album:0PPBGboRS0XAtIFfpffSI0,I Am Me (International Version),spotify:artist:4hqDqHtBlgxXpLXVYf7c8L,Ashlee Simpson,2005-01-01,https://i.scdn.co/image/ab67616d0000b273c63d079ddc55bcb10dfae39b,1,4,153053,https://p.scdn.co/mp3-preview/d29b532799425f9c4d7a29660a7996396b0e2573?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70504197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.575,0.823,5.0,-3.546,0.0,0.0553,0.00363,0.000321,0.65,0.952,191.971,4.0,,Geffen,"C © 2005 Geffen Records, P ℗ 2005 Geffen Records",2484 +2485,spotify:track:43DeSV93pJPT4lCZaWZ6b1,The Boys Are Back In Town,spotify:artist:6biWAmrHyiMkX49LkycGqQ,Thin Lizzy,spotify:album:6Cf545T4jkaiyvMnTRPOB2,Jailbreak (Deluxe Edition),spotify:artist:6biWAmrHyiMkX49LkycGqQ,Thin Lizzy,1976,https://i.scdn.co/image/ab67616d0000b273e8f69ab903901064b1f19249,1,6,266720,https://p.scdn.co/mp3-preview/753aaed7d16ec2dac0ff8af05123177a44c19351?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBF087600063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,glam metal,hard rock,irish rock,metal,rock",0.445,0.706,8.0,-9.803,1.0,0.0461,0.234,0.000252,0.205,0.768,80.823,4.0,,UMC (Universal Music Catalogue),"C © 2010 Mercury Records Limited, P This Compilation ℗ 2010 Mercury Records Limited",2485 +2486,spotify:track:7mitXLIMCflkhZiD34uEQI,Party Rock Anthem,"spotify:artist:3sgFRtyBnxXD5ESfmbK4dl, spotify:artist:2jLE4BoXHriQ96JagEtiDP, spotify:artist:53sIBaVjXQhfH89Vu6nEGh","LMFAO, Lauren Bennett, GoonRock",spotify:album:0D49RvtlLCKyxeDKDnBU2R,Sorry For Party Rocking,spotify:artist:3sgFRtyBnxXD5ESfmbK4dl,LMFAO,2011-01-01,https://i.scdn.co/image/ab67616d0000b2731db908d5f66645cb158837ca,1,3,262146,https://p.scdn.co/mp3-preview/5dbe51b865d0ef9bf91bd169e366110487d645dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USUM71100061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.75,0.736,5.0,-4.168,0.0,0.155,0.0202,0.0,0.265,0.355,130.011,4.0,,Will I Am / A&M,"C © 2011 Foo & Blu, LLC, under exclusive License to Interscope Records, P ℗ 2011 Foo & Blu, LLC, under exclusive License to Interscope Records",2486 +2487,spotify:track:1LhMopPAallLeaeNutqbgS,Say Something (feat. Chris Stapleton),"spotify:artist:31TPClRtHm23RisEBtV3X7, spotify:artist:4YLtscXsxbVgi031ovDDdh","Justin Timberlake, Chris Stapleton",spotify:album:01l3jTY261V3CESZR4dABz,Man of the Woods,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2018-02-02,https://i.scdn.co/image/ab67616d0000b2734626ff0fee963da605f6aa06,1,9,278893,https://p.scdn.co/mp3-preview/32c1c015fdc14a2694a580b303853cfa2be6ba4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USRC11703503,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,contemporary country,outlaw country",0.707,0.632,10.0,-7.031,1.0,0.0789,0.103,1.09e-05,0.0841,0.372,97.04,4.0,,RCA Records Label,"P (P) 2018 RCA Records, a division of Sony Music Entertainment",2487 +2488,spotify:track:3FJ3wfXtlXhY4a11OnwXHf,(Is This The Way To) Amarillo,spotify:artist:7KK6M2jPylHa6gLbMBI6V0,Tony Christie,spotify:album:04ieWmbQ7Vha7taSmHaOKG,The Tony Christie Love Collection,spotify:artist:7KK6M2jPylHa6gLbMBI6V0,Tony Christie,2006-01-01,https://i.scdn.co/image/ab67616d0000b27353eb0fe7f9bd3835686247dd,1,1,190866,https://p.scdn.co/mp3-preview/b4a4310448d12035552557940612cd575cb52f1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USMC10200219,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.557,0.876,9.0,-3.593,1.0,0.0361,0.0765,0.0,0.372,0.651,134.767,4.0,,Spectrum,"C © 2006 Spectrum Music, P This Compilation ℗ 2006 Spectrum Music",2488 +2489,spotify:track:3v8PlUFGQQDBIk1J86waCo,Should I Stay or Should I Go - Remastered,spotify:artist:3RGLhK1IP9jnYFH4BRFJBS,The Clash,spotify:album:3Zkggi5I9uH5x94DuN6u1S,Hits Back,spotify:artist:3RGLhK1IP9jnYFH4BRFJBS,The Clash,2013-08-26,https://i.scdn.co/image/ab67616d0000b27357f627f712e7060d287dd732,1,23,188240,https://p.scdn.co/mp3-preview/7a7612307f8cfcca8b44055b275058961c7bf340?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBARL1200670,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,permanent wave,punk,rock",0.742,0.838,2.0,-6.442,1.0,0.11,0.0832,0.0,0.418,0.848,113.373,4.0,,Sony Music UK,P This compilation (P) 2013 Sony Music Entertainment UK Limited,2489 +2490,spotify:track:1Yc2k9b9PNZSB6P5S53SPC,Fall At Your Feet,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:1QSoW668F9DVj8Rk9azF7h,Woodface,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1991-06-24,https://i.scdn.co/image/ab67616d0000b2735f9e9291ab85c1e8fa88143f,1,3,198800,https://p.scdn.co/mp3-preview/b49e8f7ec8b0e67551b21530a331b65a3175d74a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USCA29100170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.65,0.371,0.0,-13.623,0.0,0.026,0.457,0.0116,0.102,0.561,102.583,4.0,,Capitol Records,"C © 1991 Capitol Records, LLC, P ℗ 1991 Capitol Records, LLC",2490 +2491,spotify:track:6X3YCswCQzX1gGZ5ji8P9x,Dress,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:4fW1sFeE43nuZlAw2xtmC3,reputation,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2017-11-10,https://i.scdn.co/image/ab67616d0000b2732bc33ce6acd39112e88b4c0e,1,12,230373,https://p.scdn.co/mp3-preview/46a65898e667e5fc7dc27043556c7d9076cc9399?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1750013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.719,0.469,0.0,-8.792,1.0,0.0533,0.0329,0.0,0.169,0.0851,120.085,4.0,,"Big Machine Records, LLC","C © 2017 Big Machine Label Group, LLC, P ℗ 2017 Big Machine Label Group, LLC",2491 +2492,spotify:track:6uufzRkA8oCsvnz2QSoJ4J,Oh Carolina,spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,spotify:album:7pQBEwqMuSDCzqCiEOBDIi,The Best Of Shaggy,spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,2008-01-01,https://i.scdn.co/image/ab67616d0000b2735e6613d5189af7fe64118add,1,3,194213,https://p.scdn.co/mp3-preview/d9d587e4cfc4ebca8a67e23ec7f2ba1126c07951?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAAA9200185,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,reggae fusion",0.816,0.913,5.0,-5.042,0.0,0.0997,0.469,0.0,0.331,0.915,124.578,4.0,,Virgin Records,"C © 2008 Virgin Records America, Inc., P This Compilation ℗ 2008 Virgin Records America, Inc.",2492 +2493,spotify:track:4xVvKpua7eX68Ic1TDqaUw,Love Is All,"spotify:artist:5NuneeBDaWZspG13LcsYuV, spotify:artist:4M3c7tg4BzLQ5pIOupZL65","Roger Glover, Ronnie James Dio",spotify:album:0qyBo8KTEcKMyXVgahZ1Ps,The Butterfly Ball and the Grasshopper's Feast,spotify:artist:5NuneeBDaWZspG13LcsYuV,Roger Glover,1974-05-27,https://i.scdn.co/image/ab67616d0000b273b3a2423e368609bb4d2d7d32,1,19,197266,https://p.scdn.co/mp3-preview/6a165e8ea0ce6ad139110a5249f2e5287cc77f3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMFME1547133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hard rock,0.599,0.812,7.0,-4.971,1.0,0.0494,0.634,3.47e-05,0.849,0.766,111.691,4.0,,Purple Records,"C (C) 2016 Cherry Red Records, P (P) 2016 Purple Records",2493 +2494,spotify:track:2Bs4jQEGMycglOfWPBqrVG,Steal My Girl,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:4gCNyS7pidfK3rKWhB3JOY,FOUR (Deluxe),spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2014-11-17,https://i.scdn.co/image/ab67616d0000b273d304ba2d71de306812eebaf4,1,1,228133,https://p.scdn.co/mp3-preview/737c88cb0f9b8ebfc09135343084e8dc59009200?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBHMU1400159,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.536,0.768,10.0,-5.948,0.0,0.0347,0.00433,0.0,0.114,0.545,77.217,4.0,,Syco Music,P (P) 2014 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,2494 +2495,spotify:track:71koAFCnGnugRdGIDfS7f4,19-2000,spotify:artist:3AA28KZvwAUcZuOKwyblJQ,Gorillaz,spotify:album:4tUxQkrduOE8sfgwJ5BI2F,Gorillaz,spotify:artist:3AA28KZvwAUcZuOKwyblJQ,Gorillaz,2001-03-26,https://i.scdn.co/image/ab67616d0000b273f6c46838e4425ea96e2562fe,1,11,210880,https://p.scdn.co/mp3-preview/0e3d7968310d8ecc14c52c0d4732a001b49da85e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAYE0001456,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative hip hop,modern rock,rock",0.815,0.72,7.0,-7.311,1.0,0.0536,0.177,7.31e-06,0.16,0.946,89.914,4.0,,Parlophone UK,"C © 2001 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",2495 +2496,spotify:track:2vLIA9aaKQHnaQ3rnMyhTv,Don't Talk to Him - 1998 Remaster,spotify:artist:4IdvJZeciaa37wYr2qBpjm,Cliff Richard & The Shadows,spotify:album:7iRIRyvhY1iwIIhwnhTVKS,1960s,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1998-10-19,https://i.scdn.co/image/ab67616d0000b2735ddad6b5b6a24ddade0851ef,1,3,174133,https://p.scdn.co/mp3-preview/3aa2fe4ecbba3e28ae30c867f499901d35081f32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAYE9802437,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"merseybeat,rock-and-roll,rockabilly",0.618,0.763,11.0,-5.634,1.0,0.0303,0.357,0.0,0.0692,0.893,122.21,4.0,,Parlophone UK,"C © 1998 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1998 Parlophone Records Ltd, a Warner Music Group Company",2496 +2497,spotify:track:3XXGqZX50zbGqSOup74UH2,Tough,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,spotify:album:0PDuUFWUxyM329z0JnT8GT,Tough,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,2018-06-08,https://i.scdn.co/image/ab67616d0000b273db3a7ee85e96744a63020b9c,1,1,229282,https://p.scdn.co/mp3-preview/d80d30ccec6bac42f1f1f2cd7a9969826e047654?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,DEUM71801879,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.627,0.715,1.0,-5.019,1.0,0.0329,0.127,0.0,0.0768,0.481,115.005,4.0,,Vertigo Berlin,"C © 2018 Universal Music GmbH, P ℗ 2018 Universal Music GmbH",2497 +2498,spotify:track:18PsAoBaEHQZRUxigLP8QJ,Solid Rock - Remastered Version,spotify:artist:4kmYEa0DFPDv2Opcpjv5el,Goanna,spotify:album:0NpZXjOunzBOfhUAtffJNt,Spirit Of Place (Remastered & Expanded),spotify:artist:4kmYEa0DFPDv2Opcpjv5el,Goanna,2003,https://i.scdn.co/image/ab67616d0000b2731ea271c63fe9b5c69ac0f08b,1,2,275226,https://p.scdn.co/mp3-preview/36b21472986d1679dc8683729735ae14d6011660?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA00209160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.552,0.741,9.0,-7.388,0.0,0.0476,0.00699,0.00133,0.0317,0.508,148.996,4.0,,WM Australia,"C © 2003 Warner Music Australia Pty Ltd, P ℗ 2003 Warner Music Australia Pty Ltd",2498 +2499,spotify:track:1LrHFYVluf4z6RFcHrNSl6,Fall Together,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,spotify:album:2Gn6EnV3HUF39uSFhPwkwn,Thick As Thieves (Deluxe Edition),spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,2016-06-10,https://i.scdn.co/image/ab67616d0000b273757ff9a15d4bdea2afe3fccb,1,5,200223,https://p.scdn.co/mp3-preview/2586100675e8dc21de3041e37efac0980421e7f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01603660,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern rock,shimmer pop",0.509,0.891,8.0,-6.022,1.0,0.0626,0.000335,0.0155,0.13,0.628,170.014,4.0,,Liberation Records,"C 2016 Liberation Music, P 2016 Liberation Music",2499 +2500,spotify:track:3uoQULcUWfnt6nc6J7Vgai,Your Love Is My Drug,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:5peRwC6pQh8eaoIPtvmmOB,Animal,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010,https://i.scdn.co/image/ab67616d0000b2737e531970051e341bfbbdc115,1,1,187133,https://p.scdn.co/mp3-preview/8fc78e277e1e5249c6d43078533d55df5e3378de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10900735,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.829,0.627,1.0,-3.928,1.0,0.0759,0.00663,0.0,0.0939,0.72,120.048,4.0,,RCA Records Label,"P (P) 2009 RCA/Jive Label Group, a unit of Sony Music Entertainment",2500 +2501,spotify:track:7uPQU7uKvsZZ7T9XnpBpFg,Someday,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,spotify:album:72aNaOna8AV0GZADXRbFlX,Cradlesong,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,2009-06-22,https://i.scdn.co/image/ab67616d0000b273da8f63e21bfaeeaf5be6d445,1,4,247800,https://p.scdn.co/mp3-preview/7e8a54928b1fb0b5078e2ef17ec6a04e580a2263?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USAT20901584,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.573,0.905,10.0,-5.954,1.0,0.0343,0.0408,0.0,0.113,0.683,135.943,4.0,,Emblem / Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",2501 +2502,spotify:track:70bo3Yh35ParoemtrGpnIl,The Day I Met Marie,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:0SW33rIKZ2v0EmfqRLKufz,40 Golden Greats,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1977,https://i.scdn.co/image/ab67616d0000b2732effa5f5d8903fb4fea0838d,2,9,136466,https://p.scdn.co/mp3-preview/cdd40c6cd1574c72b474751f75956a9b2b631cc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GBAYE6700071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.535,0.399,0.0,-13.206,0.0,0.0421,0.505,1.22e-05,0.0646,0.448,111.487,4.0,,Parlophone UK,"C © 1989 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1977 Parlophone Records Ltd, a Warner Music Group Company",2502 +2503,spotify:track:2K87XMYnUMqLcX3zvtAF4G,Drag Me Down,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:1gMxiQQSg5zeu4htBosASY,Made In The A.M. - Deluxe Edition,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2015-11-13,https://i.scdn.co/image/ab67616d0000b273241e4fe75732c9c4b49b94c3,1,2,192120,https://p.scdn.co/mp3-preview/e7076008e9bccbf5c30ba62adb18a20040987f04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBHMU1500070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.731,0.703,0.0,-5.672,0.0,0.0368,0.111,0.0,0.0657,0.595,138.111,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,2503 +2504,spotify:track:4Gd9PUEuOTOJtbgd4YxLXM,Savin' Me,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:3eZd2XbhLyPcgbgcsLTZh3,All the Right Reasons,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2005-09-26,https://i.scdn.co/image/ab67616d0000b27307fb7d8037f3962394c493ca,1,5,219320,https://p.scdn.co/mp3-preview/fe5936cff898b0677b93d01e9f7ad849dacf3432?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,NLA320581344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.441,0.815,3.0,-4.088,1.0,0.0276,0.000731,0.0,0.414,0.522,164.007,4.0,,Roadrunner Records,"C © 2005 The All Blacks B.V., P ℗ 2005 The All Blacks B.V.",2504 +2505,spotify:track:4VDLTV2acdZwL0OhYykBql,Amoureuse,spotify:artist:4vjGlQWexbru6aOUCLTVir,Kiki Dee,spotify:album:7kWJfVeAKDdMwCShTAoNcB,Loving & Free (Bonus Track Version),spotify:artist:4vjGlQWexbru6aOUCLTVir,Kiki Dee,1973-01-01,https://i.scdn.co/image/ab67616d0000b2734e770deabe42791815c338b2,1,8,248920,https://p.scdn.co/mp3-preview/da7e1f86efac09a659422063002b4c038e83b69a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBF089400163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.412,0.612,10.0,-5.073,1.0,0.0295,0.197,0.000136,0.0788,0.196,131.44,4.0,,Edsel,"C (C) 2018 Demon Music Group Ltd., P (P) 1973 Demon Music Group Ltd",2505 +2506,spotify:track:0VUEeysnHl7ZV8vtUEMtIf,Saving All My Love for You,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:2No9DisAfser7YCYQcYpj3,I Will Always Love You: The Best Of Whitney Houston,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,2012-11-12,https://i.scdn.co/image/ab67616d0000b273bddfe60a1ae03aeb8f7460c9,1,2,237320,https://p.scdn.co/mp3-preview/5f703a612c943afb43a6f7f957c60bd4566a167c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR18500021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.401,0.313,6.0,-11.74,0.0,0.0324,0.576,6.42e-05,0.092,0.252,198.23,3.0,,Arista Records/RCA Records,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",2506 +2507,spotify:track:3oUaDxWbRHZls0gyZZ7bDZ,U Sure Do,spotify:artist:3CEF3A8IybbJcwFSUVtAYM,Strike,spotify:album:4D7OaBslzG2tjcNLbo9PW4,I Saw the Future,spotify:artist:3CEF3A8IybbJcwFSUVtAYM,Strike,1997,https://i.scdn.co/image/ab67616d0000b273334bd1895963598e8b163137,1,7,298986,https://p.scdn.co/mp3-preview/96fabd21f8d616b2f961ce0e21c99857c34fb776?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBCGN9900092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,eurodance,0.702,0.854,3.0,-9.344,0.0,0.0713,0.0146,0.482,0.117,0.4,127.964,4.0,,Fresh Records UK,"C (C) 2016 Demon Music Group Ltd., P (P) 1997 Fresh Records",2507 +2508,spotify:track:2h7iVbQm230WD2OPUbdFFo,Indian Giver - Remastered,spotify:artist:17vIaBTHJOVxnU4v7t1DiY,1910 Fruitgum Company,spotify:album:51glvu0oGf7bfZFJuWt43E,The Best of the 1910 Fruitgum Co.,spotify:artist:17vIaBTHJOVxnU4v7t1DiY,1910 Fruitgum Company,2001,https://i.scdn.co/image/ab67616d0000b273c61d5c11b24ff4ce65278096,1,9,161893,https://p.scdn.co/mp3-preview/1152362455510216639780ca237ab15bb28c67fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,USBR10000167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat",0.734,0.638,2.0,-8.758,1.0,0.0489,0.532,0.00423,0.118,0.559,128.05,4.0,,Buddha Records,P (P) 2001 Buddha Records,2508 +2509,spotify:track:4Frd6VT1lsdjiwfAQaSldS,Love Potion No. 9,spotify:artist:0ckkj0a9CvIJr4h84B0OlN,The Clovers,spotify:album:0QIsqKfh4h5dWicuHWSxOC,United Artists Black Singles 1959-1967: ''Motor City To Central Park'',spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-01-23,https://i.scdn.co/image/ab67616d0000b27389938cb7e03b218074394552,1,9,112200,https://p.scdn.co/mp3-preview/38544e08abff73b30e2e6f6f0cf5548d226129e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEM39100219,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues,rock-and-roll",0.71,0.712,7.0,-6.299,1.0,0.0515,0.811,0.0,0.109,0.911,128.758,4.0,,Parlophone UK,"C 2009 Parlophone Records Ltd, a Warner Music Group Company, P 2009 Parlophone Records Ltd, a Warner Music Group Company",2509 +2510,spotify:track:6L5BZEcZmD6RBJnimzlyKr,Nights In White Satin - Single Version / Mono,spotify:artist:5BcZ22XONcRoLhTbZRuME1,The Moody Blues,spotify:album:3JyYXOBRAuc3XFQxFxrEcM,Days Of Future Passed (Deluxe Version),spotify:artist:5BcZ22XONcRoLhTbZRuME1,The Moody Blues,1967-11-10,https://i.scdn.co/image/ab67616d0000b273ec351e05f8bcf97e7999ac64,2,16,269106,https://p.scdn.co/mp3-preview/a7d930084e33cc9a1f30142c7030f5fac8989637?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBBBA6760792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,country rock,flute rock,folk rock,mellow gold,progressive rock,rock,singer-songwriter,soft rock,symphonic rock",0.195,0.483,4.0,-4.991,0.0,0.03,0.465,0.497,0.0686,0.173,84.71,4.0,,UMC (Universal Music Catalogue),"C © 2017 Universal Music Operations Limited, P ℗ 2017 Universal Music Operations Limited",2510 +2511,spotify:track:1yzSEJnIbIFJlwr3hg8ube,All the Lovers,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:08sQD7iAs7CZOqiueZSmQd,Aphrodite (Les Folies Tour Edition),spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2010-06-30,https://i.scdn.co/image/ab67616d0000b27394b353e99368794e2f689e55,1,1,199426,https://p.scdn.co/mp3-preview/fece9f098417b8e2bf8ebffb7c54231b85f5b449?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBAYE1000521,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.599,0.721,0.0,-6.212,1.0,0.0382,0.00285,0.164,0.115,0.512,120.048,4.0,,WM Australia,"C © 2010 WARNER MUSIC AUSTRALIA PTY LIMITED. MARKETED, MANUFACTURED AND DISTRIBUTED IN AUSTRALIA BY WARNER MUSIC AUSTRALIA PTY LIMITED. A WARNER MUSIC GROUP COMPANY, P ℗ 2011 KDB Pty Limited. Marketed and distributed by Warner Music Australia Pty Limited under exclusive licence.",2511 +2512,spotify:track:6w9qPf8erczMFz06ehHeqS,The Way You Move (feat. Sleepy Brown),"spotify:artist:1G9G7WwrXka3Z1r7aIDjI7, spotify:artist:7Dnu2NmddNymEI2LMZVH5v","Outkast, Sleepy Brown",spotify:album:2kle7DVfHERKzkFdl1Knot,Speakerboxxx/The Love Below,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,2003-09-23,https://i.scdn.co/image/ab67616d0000b27339e6ea657844e8e5274c5595,1,5,234000,https://p.scdn.co/mp3-preview/2a1a44df81873664b4a6cea4e395caef6bb35021?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USAR10300967,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,hip hop,old school atlanta hip hop,rap,southern hip hop,atl hip hop",0.871,0.597,5.0,-4.932,0.0,0.0464,0.126,0.000115,0.0638,0.635,125.999,4.0,,Arista,"P (P) 2003 Arista Records, Inc.",2512 +2513,spotify:track:2PIlBukQ6limukVR8Ubb5o,Please Don't Say You Love Me,spotify:artist:3w6zswp5THsSKYLICUbDTZ,Gabrielle Aplin,spotify:album:7kyjDxYcff3MeWKtw0fnLW,English Rain,spotify:artist:3w6zswp5THsSKYLICUbDTZ,Gabrielle Aplin,2013-05-13,https://i.scdn.co/image/ab67616d0000b27391df3331ecc28d6d199255e9,1,3,181400,https://p.scdn.co/mp3-preview/657edb930a53fc94ce18dd11a3bd712502c14cb9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAYE1201982,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,indie anthem-folk,neo-singer-songwriter,uk pop,viral pop",0.479,0.541,0.0,-9.862,1.0,0.0545,0.737,0.0,0.108,0.321,85.994,4.0,,WM UK,"C © 2013 EMI Records Limited under exclusive licence to Warner Music UK Limited, P ℗ 2013 EMI Records Limited under exclusive licence to Warner Music UK Limited",2513 +2514,spotify:track:1G391cbiT3v3Cywg8T7DM1,Scar Tissue,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:2Y9IRtehByVkegoD7TcLfi,Californication (Deluxe Edition),spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,1999-06-08,https://i.scdn.co/image/ab67616d0000b27394d08ab63e57b0cae74e8595,1,3,215906,https://p.scdn.co/mp3-preview/5aa4aff376bccc73f7fa7df2954649e30a56c4b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USWB19900674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.595,0.717,0.0,-4.803,1.0,0.0295,0.0779,0.00274,0.108,0.547,88.969,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",2514 +2515,spotify:track:3lm0QsdpQrypDUbHexpVWK,A Glass Of Champagne,spotify:artist:4pE3KE9J1Z1LKzjwLtWU21,Sailor,spotify:album:11k08Ul8tAN5cu7JozYldn,Sailor's Greatest Hits,spotify:artist:4pE3KE9J1Z1LKzjwLtWU21,Sailor,1993-05-10,https://i.scdn.co/image/ab67616d0000b273ff430fa24c5ec92b9c0d4a9d,1,10,154173,https://p.scdn.co/mp3-preview/d6a24dbd06b7222d5cf40135bbd07dd71566599d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,DEC769100013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.561,0.719,7.0,-11.333,1.0,0.0303,0.21,0.000476,0.428,0.963,137.93,4.0,,RCA Records Label,P 1993 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,2515 +2516,spotify:track:0pHzLa11VAEN34iBxs9MYO,With Arms Wide Open,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,spotify:album:0xZbyUgbCsYRuTH7gYML0K,Human Clay,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,1999-01-01,https://i.scdn.co/image/ab67616d0000b27367fd2da89902f974cf58881c,1,8,274800,https://p.scdn.co/mp3-preview/9db8ce2b918282639e2ec9201cc7231f8adaf701?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU39908053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.41,0.527,0.0,-8.482,1.0,0.0309,0.00458,0.000878,0.118,0.141,138.945,4.0,,Universal Music Group,"C © 1999 The Bicycle Music Company, P ℗ 1999 The Bicycle Music Company",2516 +2517,spotify:track:4Vqd7MuPVrciqRS3EzhKWb,She Wants To Move,spotify:artist:5wPoxI5si3eJsYYwyXV4Wi,N.E.R.D,spotify:album:1DDsclE9PANAkXHyNjlDI4,Fly Or Die,spotify:artist:5wPoxI5si3eJsYYwyXV4Wi,N.E.R.D,2004-01-01,https://i.scdn.co/image/ab67616d0000b2738d0fa8db33069b60b65ab9a6,1,5,213786,https://p.scdn.co/mp3-preview/67166fd479f95f151be0316cca20980e71005aa7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USVI20400016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,virginia hip hop",0.766,0.851,5.0,-4.831,1.0,0.0786,0.00402,0.000744,0.256,0.8,115.012,4.0,,Virgin Records,"C © 2004 Virgin Records America, Inc., P ℗ 2004 Virgin Records America, Inc.",2517 +2518,spotify:track:6jdOi5U5LBzQrc4c1VT983,"Hold On, We're Going Home","spotify:artist:3TVXtAsR1Inumwj472S9r4, spotify:artist:4HzKw8XcD0piJmDrrPRCYk","Drake, Majid Jordan",spotify:album:2ZUFSbIkmFkGag000RWOpA,Nothing Was The Same - Deluxe,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,2013-01-01,https://i.scdn.co/image/ab67616d0000b273adfb5909ec66db5fbb4d06c8,1,8,227880,https://p.scdn.co/mp3-preview/899e6ab1f648df2dbfc67d1ac1bc9852f4537dd6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USCM51300762,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian hip hop,canadian pop,hip hop,pop rap,rap,canadian contemporary r&b,canadian hip hop",0.773,0.414,6.0,-7.436,0.0,0.0961,0.00411,3.4e-05,0.0733,0.289,99.993,4.0,,Cash Money Records/Young Money Ent./Universal Rec.,"C © 2013 Cash Money Records Inc., P ℗ 2013 Cash Money Records Inc.",2518 +2519,spotify:track:1GBr3WGJzV6lGycAS8SBbv,10.000 Promises,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:2U9ONknz1iFEK9drEKLx8v,Backstreet's Back,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1997-08-12,https://i.scdn.co/image/ab67616d0000b273530cec85d4543693bd726167,1,5,243973,https://p.scdn.co/mp3-preview/70e644fe51a5830157beb2ea4d6e4d6977082d70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USJI19710100,spotify:user:bradnumber1,2024-03-14T02:34:04Z,"boy band,dance pop,pop",0.56,0.346,0.0,-9.403,0.0,0.0287,0.642,0.0,0.408,0.195,130.972,3.0,,Jive,P (P) 1997 Zomba Recording LLC,2519 +2520,spotify:track:6LTjAQf9JGZoVuLHJGUUlm,Sweet About Me,spotify:artist:5v2GEv1pQaCp6oeOQROdKE,Gabriella Cilmi,spotify:album:00fdw3tBe9l8qRBIm6Y1Ei,Lessons To Be Learned (Special Edition),spotify:artist:5v2GEv1pQaCp6oeOQROdKE,Gabriella Cilmi,2008-05-10,https://i.scdn.co/image/ab67616d0000b2732ad48ee25c11f68ed143d2c0,1,2,203280,https://p.scdn.co/mp3-preview/03d924232ae239869055c1e7556f7970d489f64a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBUM70709626,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian r&b",0.686,0.738,3.0,-4.924,0.0,0.0299,0.117,0.0,0.295,0.506,132.011,4.0,,WM Australia,"C © 2008 Warner Music Australia Pty Limited For Australia and New Zealand, P ℗ 2008 Warner Music Australia Pty Limited For Australia and New Zealand",2520 +2521,spotify:track:3cdhgO3vgHyOIADMXokd2t,Nothing,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:5rtaHEtZdWQSrKJmuqPTB0,Science & Faith,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2010-09-13,https://i.scdn.co/image/ab67616d0000b273ecf57b6803b6f913217bf15c,1,3,271773,https://p.scdn.co/mp3-preview/143e2a9b7b986307a553b0d82df108c7a5fd11da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBARL1000955,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.47,0.837,2.0,-4.963,1.0,0.0396,0.00387,0.0,0.117,0.522,157.044,4.0,,Phonogenic,P (P) 2010 Sony Music Entertainment UK Limited,2521 +2522,spotify:track:54l9GJGQ1UCFKe2tzt1Vxt,Only You (with Little Mix),"spotify:artist:7DMveApC7UnC2NPfPvlHSU, spotify:artist:3e7awlrlDSwF3iM0WBjGMp","Cheat Codes, Little Mix",spotify:album:4DmPCrBlJGedbs6GW7EQ1m,Only You (with Little Mix),"spotify:artist:7DMveApC7UnC2NPfPvlHSU, spotify:artist:3e7awlrlDSwF3iM0WBjGMp","Cheat Codes, Little Mix",2018-06-22,https://i.scdn.co/image/ab67616d0000b273198d0d6659372adaa801ea4d,1,1,189401,https://p.scdn.co/mp3-preview/eda363f43a09b701332427b3b82388fc64719d15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBHMU1800034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,girl group,pop,talent show,uk pop",0.607,0.74,4.0,-4.793,0.0,0.172,0.0829,0.0,0.105,0.219,108.05,4.0,,Syco Music,P (P) 2018 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,2522 +2523,spotify:track:7eBIV7xripa8OJFuZKVKvk,Not Giving In (feat. John Newman & Alex Clare),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:34v5MVKeQnIo0CWYMbbrPf, spotify:artist:5Tf4EH8tDvznnjULcFxkIl","Rudimental, John Newman, Alex Clare",spotify:album:2AOpbitJNMvKhSbsi2YD4F,Home,spotify:artist:4WN5naL3ofxrVBgFpguzKo,Rudimental,2013-04-26,https://i.scdn.co/image/ab67616d0000b2731468dc3911c9abea1dcf9676,1,9,239733,https://p.scdn.co/mp3-preview/f452f646004e2d66374c951745e5345d9ae5e490?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAHS1200483,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,dance pop,modern alternative rock",0.465,0.639,7.0,-7.259,1.0,0.0632,0.0169,0.00261,0.155,0.136,159.045,4.0,,Asylum,"C © 2013 Warner Music UK Limited., P ℗ 2013 Warner Music UK Limited except tracks 2 & 5 (p) 2013 Black Butter Records under exclusive licence to Warner Music UK Limited",2523 +2524,spotify:track:714hERk9U1W8FMYkoC83CO,You Sexy Thing,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,spotify:album:10oMdAuUD0Tcc4BowCWUni,Hot Chocolate,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,1975,https://i.scdn.co/image/ab67616d0000b273a03bcdbf45f9ed71cf0947bd,1,5,244920,https://p.scdn.co/mp3-preview/cf7d6e0e8f7cb98c438805bbb5631fbc45891e3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBAYE0900553,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.791,0.733,5.0,-5.465,1.0,0.0633,0.523,0.0016,0.167,0.962,105.853,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",2524 +2525,spotify:track:6ggAYREO7PlFwI2vbOG3dp,She Moves,"spotify:artist:61ipISvUVa5LkJlKZnm3Oo, spotify:artist:71KlQX0q5wz5f9iytwPfou","Alle Farben, Graham Candy",spotify:album:4aJZ9Dc6SRtaGYOz4d5PGd,Synesthesia,spotify:artist:61ipISvUVa5LkJlKZnm3Oo,Alle Farben,2014-05-23,https://i.scdn.co/image/ab67616d0000b27314b86492e02b9d21f85e0acd,1,4,197346,https://p.scdn.co/mp3-preview/a31dd74d1c7571913f75e7b810cf83402640ce02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,DEAF71471840,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep euro house,german dance,nz pop",0.833,0.497,7.0,-7.876,1.0,0.0739,0.291,0.000893,0.0954,0.627,116.98,4.0,,b1,"P (P) 2014 Guesstimate/Synesthesia under exclusive license to B1 Recordings GmbH, a Sony Music Entertainment Company",2525 +2526,spotify:track:4y3clu5ma91RfOLO5YYOIA,If You Want My Love,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,spotify:album:1TgcbIUPhCpHEkEkYbAP7w,One On One,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,1982-04-30,https://i.scdn.co/image/ab67616d0000b27343127e0599efaf43c68e461d,1,3,215720,https://p.scdn.co/mp3-preview/cf73ad440dc972239ded916de03ef247f2b3254d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USSM18200608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,glam metal,glam rock,hard rock,mellow gold,power pop,rock,singer-songwriter,soft rock",0.494,0.683,4.0,-9.509,1.0,0.0323,0.0213,0.0,0.288,0.474,115.441,4.0,,Epic/Legacy,P (P) 1982 Sony Music Entertainment,2526 +2527,spotify:track:5C0LFQARavkPpn7JgA4sLk,Every Breath You Take - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:28eOriEfl7IGbQDNvWIWXK,Synchronicity (Remastered),spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1983-06-01,https://i.scdn.co/image/ab67616d0000b27307ea1b7ac092119e1b6dd57b,1,7,253250,https://p.scdn.co/mp3-preview/92d7997134bb18b99eb5fdc65926e4ef613f9781?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAAM0201110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.82,0.452,1.0,-9.796,1.0,0.0348,0.543,0.00294,0.0701,0.74,117.401,4.0,,Universal Music Group,"C © 2003 A&M Records, P ℗ 2003 A&M Records",2527 +2528,spotify:track:1KtD0xaLAikgIt5tPbteZQ,Thinking About You (feat. Ayah Marar),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:4xQ2BGOBUXgjxO2PAhrIyS","Calvin Harris, Ayah Marar",spotify:album:7w19PFbxAjwZ7UVNp9z0uT,18 Months,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2012-10-29,https://i.scdn.co/image/ab67616d0000b273dcef905cb144d4867119850b,1,15,247933,https://p.scdn.co/mp3-preview/5624d9a2a362b648ac87588a96e472a7d3046500?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBARL1201396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,jordanian pop",0.725,0.874,0.0,-3.715,0.0,0.0396,0.00262,0.000412,0.0958,0.748,127.985,4.0,,Columbia,P (P) 2012 Sony Music Entertainment UK Limited,2528 +2529,spotify:track:5XYtJZ9wni1VDb7YHDEEpm,Silence (Single Edit),"spotify:artist:0IUq1plF3ON4Fboj1bE6kN, spotify:artist:4NgNsOXSwIzXlUIJcpnNUp","Delerium, Sarah McLachlan",spotify:album:4sTfAXN3Qt4qj0Da0N0Rnd,The Best Of,spotify:artist:0IUq1plF3ON4Fboj1bE6kN,Delerium,2004-09-07,https://i.scdn.co/image/ab67616d0000b273cd6ec802cb649c2761dd61e6,1,2,246546,https://p.scdn.co/mp3-preview/808e0e4ee4beb15851bfad6a8dcd7a8d04e41de1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAN119800071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gregorian dance,canadian pop,canadian singer-songwriter,ectofolk,lilith,permanent wave,pop rock",0.523,0.705,9.0,-8.076,0.0,0.0327,0.219,0.00278,0.11,0.32,97.921,4.0,,Nettwerk,"C Nettwerk Productions - 2004, P Nettwerk Productions - 2004",2529 +2530,spotify:track:2i0AUcEnsDm3dsqLrFWUCq,Tonight Tonight,spotify:artist:6jTnHxhb6cDCaCu4rdvsQ0,Hot Chelle Rae,spotify:album:0UkgnXc0w7qiRE2X086BdN,Whatever,spotify:artist:6jTnHxhb6cDCaCu4rdvsQ0,Hot Chelle Rae,2011-11-25,https://i.scdn.co/image/ab67616d0000b2733b97f1c9a0273bfbdc6bd791,1,2,200466,https://p.scdn.co/mp3-preview/2011c033f2472b7593db5149b8d1f91018bfb237?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USJI11100019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,neon pop punk,post-teen pop",0.686,0.783,4.0,-4.977,1.0,0.119,0.0764,0.0,0.163,0.814,99.978,4.0,,RCA Records Label,"P (P) 2011 RCA Records, a division of Sony Music Entertainment",2530 +2531,spotify:track:0ADG9OgdVTL7fgREP75BrZ,Ain't My Fault,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,spotify:album:5YLRVHDVRw3QqWbeTGpC5B,So Good,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,2017-03-17,https://i.scdn.co/image/ab67616d0000b2739e1683774b22648f4f178ed3,1,11,224030,https://p.scdn.co/mp3-preview/36a7a111cb896a601e8c5654e410f1994511d318?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM11607151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,scandipop,swedish electropop,swedish pop",0.578,0.782,6.0,-4.825,0.0,0.0295,0.00778,0.0,0.286,0.355,141.163,4.0,,Epic/Record Company TEN,"P (P) 2017 Record Company TEN, exclusively licensed by Epic Records, a division of Sony Music Entertainment",2531 +2532,spotify:track:0BHNSNcbTxQSwxXNnr9oUw,Tonight I Wanna Cry,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,spotify:album:0xBQEVKKlFKaetqike1qXK,Greatest Hits,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,2007-01-01,https://i.scdn.co/image/ab67616d0000b2734a8f4a048bef3ade8fbddb25,1,8,259733,https://p.scdn.co/mp3-preview/389464c8fad67b3a7b8767783bc6275f769fd842?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USCN10400153,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road",0.565,0.385,7.0,-7.836,1.0,0.026,0.874,0.0,0.175,0.149,103.737,4.0,,Capitol Nashville,"C © 2007 Capitol Records Nashville, P ℗ 2007 Capitol Records Nashville",2532 +2533,spotify:track:5Fvwrnvo1yyvQiYvxvFh61,Lasso,spotify:artist:1xU878Z1QtBldR7ru9owdU,Phoenix,spotify:album:4BWhMPQUJWaFdTxzzKmVIE,Wolfgang Amadeus Phoenix,spotify:artist:1xU878Z1QtBldR7ru9owdU,Phoenix,2009-05-25,https://i.scdn.co/image/ab67616d0000b27342d59a803385a97f50f6f8cb,1,6,167853,https://p.scdn.co/mp3-preview/3fe4ff194e95fb83276ca23fabdfeceeb9105aaf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR31Q0900006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,indie rock,modern rock,new rave,rock independant francais,shimmer pop",0.645,0.63,11.0,-7.066,1.0,0.0354,0.0253,0.000433,0.125,0.96,150.919,4.0,,Liberator Music,"C 2013 Ghettoblaster S.A.R.L. under exlcuse license to Glassnote Entertainment Group LLC, P 2013 Ghettoblaster S.A.R.L. under exlcuse license to Glassnote Entertainment Group LLC",2533 +2534,spotify:track:0gssZyDIxrn2CsokEML0xq,The Old Lamplighter,spotify:artist:6GDSMFwAQBfnrrZf981Yji,The Browns,spotify:album:6lJTV9z3uh1lteqiXtm6qr,The Complete Pop & Country Hits,spotify:artist:6GDSMFwAQBfnrrZf981Yji,The Browns,2013-08-02,https://i.scdn.co/image/ab67616d0000b2731ea84f94d3707dc2f23de8af,1,11,141120,https://p.scdn.co/mp3-preview/f32c66eca5d69d1a7d59f4f39c4a695e2c24bcb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USRC19901081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"nashville sound,vocal harmony group",0.601,0.105,2.0,-16.78,1.0,0.0357,0.977,0.0,0.0993,0.553,92.238,4.0,,Legacy Recordings,P This compilation (P) 2014 Sony Music Entertainment,2534 +2535,spotify:track:78oZ26xvmtCfarveRXs3dq,Big (feat. Gunna),"spotify:artist:5CCwRZC6euC8Odo6y9X8jr, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj, spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ","Rita Ora, David Guetta, Imanbek, Gunna",spotify:album:4oAJhbdsokVDoLHMdbqtDP,Big (feat. Gunna),"spotify:artist:5CCwRZC6euC8Odo6y9X8jr, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj","Rita Ora, David Guetta, Imanbek",2021-02-11,https://i.scdn.co/image/ab67616d0000b273675cdd705fa6d88a86b73175,1,1,156781,https://p.scdn.co/mp3-preview/4a6acbab898040f433e16d1c17bc30e8a794f4e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAHS2100008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,big room,dance pop,edm,pop,pop dance,electro house,pop dance,slap house,atl hip hop,melodic rap,rap,trap",0.779,0.845,7.0,-3.446,1.0,0.0356,0.0659,1.16e-06,0.0641,0.615,111.995,4.0,,Atlantic Records UK,"C An Atlantic Records UK release, © 2021 Warner Music UK Limited/ What a DJ Limited, P An Atlantic Records UK release, ℗ 2021 Warner Music UK Limited/ What a DJ Limited",2535 +2536,spotify:track:2xiOdusRnZezQok1RgLNeS,You Should Be Dancing,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:4V8z8vZUCyYUBlUI9CfSbY,Children Of The World,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1976-01-01,https://i.scdn.co/image/ab67616d0000b27345b4e9481e0846c16553a048,1,1,256493,https://p.scdn.co/mp3-preview/c3b1c6ada71b56a43577336144ed45597555459c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,NLF057690020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.682,0.716,0.0,-10.911,1.0,0.0333,0.0182,0.168,0.337,0.963,123.011,4.0,,Bee Gees Catalog,"C © 1976 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, P ℗ 1976 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb",2536 +2537,spotify:track:0F0AtvXPDiGRsx7lJdtiFW,Tsunami (Jump) - Radio Edit,"spotify:artist:5X4LWwbUFNzPkEas04uU82, spotify:artist:4uiMn2g0pgTrhN096QJhbp, spotify:artist:0Tob4H0FLtEONHU1MjpUEp","DVBBS, Borgeous, Tinie Tempah",spotify:album:65jSkuoBjVCv7CGbk3wHId,Tsunami (Jump),"spotify:artist:5X4LWwbUFNzPkEas04uU82, spotify:artist:4uiMn2g0pgTrhN096QJhbp","DVBBS, Borgeous",2014-01-01,https://i.scdn.co/image/ab67616d0000b27304627996e65070450765b4f7,1,1,159492,https://p.scdn.co/mp3-preview/30917b6f20e856479a3541be2f3423f5e58fb2e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLZ541300982,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian electronic,dutch house,edm,electro house,pop dance,progressive electro house,slap house,dutch house,edm,electro house,pop dance,progressive electro house,progressive house,dance pop,grime,pop rap",0.699,0.982,11.0,-1.115,0.0,0.142,0.0421,0.000332,0.0854,0.389,127.966,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 SpinninRecords.com, P ℗ 2014 SpinninRecords.com, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd.",2537 +2538,spotify:track:2nmcstJm068qfoxC51c3al,Heartbeat It's A Love Beat,"spotify:artist:4Phz26PNbjIHdIt3K8xQCh, spotify:artist:38sPq7kD35ixVbUUtchXSa","The DeFranco Family, Tony DeFranco",spotify:album:5bnm51JE0jdf8jRK8QimbX,"Heartbeat, It's A Lovebeat",spotify:artist:6Tfk6zhQU1KGfVeRoeqWDl,The DeFranco Family featuring Tony DeFranco,2010-01-01,https://i.scdn.co/image/ab67616d0000b273bec6b11ee2b503fa4308d749,1,1,194893,https://p.scdn.co/mp3-preview/a93c14aadf06b2cf1eec552ca18bad9bba0ba9e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USUMG0000261,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.48,0.761,6.0,-9.895,0.0,0.0346,0.2,0.0,0.05,0.794,145.338,4.0,,Island Def Jam,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",2538 +2539,spotify:track:6t1xW1E9QlcDd5QR0l9qEB,Pride And Joy,spotify:artist:3koiLjNrgRTNbOwViDipeA,Marvin Gaye,spotify:album:2snf1Cfu0jVmq4cvepMv6e,That Stubborn Kinda' Fellow,spotify:artist:3koiLjNrgRTNbOwViDipeA,Marvin Gaye,1963-12-01,https://i.scdn.co/image/ab67616d0000b27366fecff1e82e023d1215e6b6,1,2,155266,https://p.scdn.co/mp3-preview/47df1e4e9b41dbad6f190c4b618a72f90212049a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71215183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,neo soul,northern soul,quiet storm,soul",0.622,0.625,3.0,-8.635,1.0,0.0562,0.678,0.0,0.28,0.842,119.397,4.0,,Universal Music Group,"C © 1962 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1962 Motown Records, a Division of UMG Recordings, Inc.",2539 +2540,spotify:track:3PR79C1jVvLLLmgdyHkXl3,That's the Way (I Like It) - 2004 Remaster,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,spotify:album:2ogOjq2sGndRddcHXfne1l,KC & the Sunshine Band,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,1975-07-06,https://i.scdn.co/image/ab67616d0000b27390298163e25342e58d153899,1,2,185106,https://p.scdn.co/mp3-preview/ff437fc7b580d0f78125ff8f8e097462baf16bc3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAYE0400454,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new wave pop,soft rock,soul",0.68,0.877,5.0,-10.241,0.0,0.0353,0.191,0.000656,0.349,0.922,108.674,4.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",2540 +2541,spotify:track:67f8z1qeIKaVawWsYQkSHv,What's My Scene - 2005 Remaster,spotify:artist:7HZQqtnOYmjJl8XAB3Vg8y,Hoodoo Gurus,spotify:album:53vbbwIDLn7Sh50yd9aEjq,Blow Your Cool,spotify:artist:7HZQqtnOYmjJl8XAB3Vg8y,Hoodoo Gurus,1987-07-17,https://i.scdn.co/image/ab67616d0000b2737fdc82d20a9b103464771d28,1,2,229373,https://p.scdn.co/mp3-preview/eab18361fdce419cb6ef35fd55f2ebabf7336a4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,AUHD00500031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,power pop",0.318,0.93,2.0,-2.677,1.0,0.0562,0.000479,0.000409,0.228,0.572,83.372,4.0,,Universal Music Australia (Distribution),"C © 2017 Hoodoo Gurus Pty Limited, P ℗ 1987 Hoodoo Gurus Pty Limited",2541 +2542,spotify:track:4TubJ5chz5DXUcel85F3LN,Snowbird,spotify:artist:2dknbKktpuIxHJUkRjObuE,Liv Maessen,spotify:album:2E6N8C7OPoB97d1JO5sV4q,Good Old Aussie Country,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-04-04,https://i.scdn.co/image/ab67616d0000b273324c71dfe2a7aec0966e644c,1,5,126160,https://p.scdn.co/mp3-preview/ba3e646a676f64300c3495894451fe58150be5c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.522,0.424,5.0,-13.2,1.0,0.0385,0.406,6.35e-06,0.221,0.875,108.786,4.0,,Fable Records,"C 2018 Image Records, P 2018 Southern Cross Music Pty Limited",2542 +2543,spotify:track:6TNN9i2o484cOTck3KUARi,Hold Me Up,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,spotify:album:5b1g44sFNfEDd7N2xBeQAO,Hold Me Up,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,2015-03-06,https://i.scdn.co/image/ab67616d0000b273986fd1fcb88c871c9ec4f709,1,1,206560,https://p.scdn.co/mp3-preview/75f0a62d6bc81dbcc5d9e4438e9d42d764172c57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,QMCE31400156,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.619,0.748,7.0,-5.961,1.0,0.033,0.0656,1.86e-05,0.241,0.299,114.983,4.0,,300 Entertainment,"C © 2015 300 Entertainment for the United States and 300 Entertainment under exclusive license to WEA International, Inc. for the world excluding the United States., P ℗ 2015 300 Entertainment for the United States and 300 Entertainment under exclusive license to WEA International, Inc. for the world excluding the United States.",2543 +2544,spotify:track:6avxJ3kn6rkPE21X4fyg7q,Don't Dream It's Over,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:0dAD49L0BeGHuxXeyjEq4o,Crowded House,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1986-01-01,https://i.scdn.co/image/ab67616d0000b273d634a64d9a1a2f15d1334bc2,1,4,236933,https://p.scdn.co/mp3-preview/79d24cbed581bdbb12b224e95cfd473947924739?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USCA28600048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.457,0.41,8.0,-17.263,1.0,0.037,0.0158,2.96e-05,0.0714,0.535,81.016,4.0,,Capitol Records,"C © 1986 Capitol Records, LLC, P ℗ 1986 Capitol Records, LLC",2544 +2545,spotify:track:790jZbOfjDsMjeWpxQ0H9T,One - Remastered,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:2bKDte0I4SceROjBMtYtKV,…And Justice for All (Remastered Deluxe Box Set),spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1988-08-25,https://i.scdn.co/image/ab67616d0000b2734c9fc157cd0b0ce4196f9aeb,1,4,446145,https://p.scdn.co/mp3-preview/13ffb41390b22c9c2b97ba61a9ea9cb2055b5597?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,QMKHM1700138,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.439,0.691,7.0,-9.158,1.0,0.0608,0.000666,0.0777,0.423,0.433,103.281,3.0,,Blackened Recordings / Universal Music,"C © 2018 Blackened Recordings Inc., under exclusive licence to Universal International Music B.V., P This Compilation ℗ 2018 Blackened Recordings Inc., under exclusive licence to Universal International Music B.V.",2545 +2546,spotify:track:4dlUnqyUXcte12KxvnyV4R,Double Barrel,spotify:artist:7bf9XwZiLZNWCC0XNiZaN9,Dave & Ansell Collins,spotify:album:0i2pbEHt0qGGjTCcrJdVXf,Double Barrel - The Best of Dave & Ansel Collins,spotify:artist:7bf9XwZiLZNWCC0XNiZaN9,Dave & Ansell Collins,1995-01-01,https://i.scdn.co/image/ab67616d0000b273bc49b184b2a5613d02bd072e,1,1,165093,https://p.scdn.co/mp3-preview/ddf1f3f9f8b2d9e0f2dd8fde57dd6c33151c9780?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE7000364,spotify:user:bradnumber1,2021-08-08T09:26:31Z,early reggae,0.791,0.619,5.0,-8.049,1.0,0.0777,0.195,0.000817,0.137,0.828,80.753,4.0,,Trojan Records,"C © 2002 Trojan Recordings Ltd., a BMG Company, P ℗ 2002 Sanctuary Records Group Ltd., a BMG Company",2546 +2547,spotify:track:6qJSIEaUw2VDYRzzHcKjqm,(Say) You're My Girl,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:39L39Zc1OmLrQOY4P0xhhG,The Monument Singles Collection,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2011-04-25,https://i.scdn.co/image/ab67616d0000b273c8e397651625a503f15f26b3,1,19,165426,https://p.scdn.co/mp3-preview/90644463b785a03bf69a4c7eacd14dcde09eb0c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,USSM16501482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.424,0.657,0.0,-5.801,1.0,0.0289,0.727,0.000162,0.153,0.85,155.56,4.0,,Monument/Orbison Records/Legacy,P This Compilation (P) 2011 Sony Music Entertainment,2547 +2548,spotify:track:0gs72Zn1Nxin1kvKpo9ee5,My Love,"spotify:artist:31TPClRtHm23RisEBtV3X7, spotify:artist:4OBJLual30L7gRl5UkeRcT","Justin Timberlake, T.I.",spotify:album:3EaBZNWtqfr7Ju5iTrctnB,FutureSex/LoveSounds,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2006-09-11,https://i.scdn.co/image/ab67616d0000b27333b8f53f8f588badc22c543c,1,4,276160,https://p.scdn.co/mp3-preview/4dce4b08ddc56db1343a797719d04b727a213088?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI10600477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,atl hip hop,dirty south rap,gangster rap,hip hop,pop rap,rap,southern hip hop,trap",0.771,0.676,4.0,-6.018,0.0,0.223,0.285,4.49e-06,0.546,0.804,119.997,4.0,,Jive,P (P) 2006 Zomba Recording LLC,2548 +2549,spotify:track:5YIF6HSOtHN9HdcE5IPzMe,Funky Cold Medina,spotify:artist:5Y8EphH8Vdqu5SLj6K5vjj,Tone-Loc,spotify:album:6xE6A0Vwd2LmopR6Mn8UFG,Loc-ed After Dark,spotify:artist:5Y8EphH8Vdqu5SLj6K5vjj,Tone-Loc,1989-01-01,https://i.scdn.co/image/ab67616d0000b2737d02bf7ee36c4c913636a4f3,1,6,248160,https://p.scdn.co/mp3-preview/27d58ffe732f085b4b3ad67a3e53c7ffb97f6333?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USA370507637,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hip house,miami bass",0.988,0.633,5.0,-15.012,0.0,0.0888,0.0755,1.88e-06,0.0668,0.929,117.493,4.0,,The Bicycle Music Company,"C © 1989 The Bicycle Music Company, P ℗ 1989 The Bicycle Music Company",2549 +2550,spotify:track:6mrrkAbeZ5jyCT9qTm251Q,"Baby, You Got What It Takes",spotify:artist:2ttm3uT0N1RN7vwKv1pQgh,Brook Benton,spotify:album:0bKXxUkHecj6mgaWgNfJQl,The Cruisin Story 1960,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-07-01,https://i.scdn.co/image/ab67616d0000b27376415d1bd4e580e7fef84f74,1,3,195279,https://p.scdn.co/mp3-preview/d084943a4a7c34369ab187785a1fbb836b395e99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,BEDO61519166,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rhythm and blues,southern soul",0.533,0.448,1.0,-13.774,0.0,0.177,0.636,1.26e-05,0.117,0.877,134.93,4.0,,Crazy Warthog Media,"C 2015 Crazy Warthog Media, P 2015 Crazy Warthog Media",2550 +2551,spotify:track:3BUE23eLeXRXYdDcL3wJgS,Israel's Son,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:5MgR5qQCxsusIOui4S2io5,The Best Of - Volume One,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,2000-11-10,https://i.scdn.co/image/ab67616d0000b273b034d912628fb636eedbf7c2,1,5,318666,https://p.scdn.co/mp3-preview/6071e2f3105da7cfa33bb3623a5fc0eab89270ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUSM09500022,spotify:user:bradnumber1,2022-05-04T08:44:00Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.2,0.815,7.0,-5.965,1.0,0.0664,0.000212,1.74e-05,0.0964,0.412,164.556,4.0,,Murmur Records,P (P) 2000 Sony Music Entertainment Australia Pty Ltd,2551 +2552,spotify:track:3Q7LXyGZ3SLD0dLztx3j5x,Hit the Road Jack,spotify:artist:1eYhYunlNJlDoQhtYBvPsi,Ray Charles,spotify:album:4kkVGdtNzEetpy6i2G5tGN,Rock & Roll 50s Mix,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-04-08,https://i.scdn.co/image/ab67616d0000b2732547c5fea5eec164cc479adf,1,4,120173,https://p.scdn.co/mp3-preview/9ab84ea0b0a8813db8b9220420ae7079dc490ff8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEAR41442772,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,jazz blues,piano blues,soul,soul blues,vocal jazz",0.599,0.704,8.0,-8.573,0.0,0.244,0.714,0.0,0.521,0.95,173.053,4.0,,Cincuenta music media,"C 2016 Cincuenta music media, P 2016 Cincuenta music media",2552 +2553,spotify:track:72yGizDXOgpP4nPTDAHNJb,Pray,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,spotify:album:6UVzfY3VuXDlCjUKzIJrIt,Nobody Else - Everything Changes - Take That & Party,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,2002-12-07,https://i.scdn.co/image/ab67616d0000b273e85b3e248ab859eefeea97f6,2,2,223466,https://p.scdn.co/mp3-preview/1d0ca2dc747240a119972b348800ecf6b0e0c178?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9300062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop,talent show",0.538,0.945,7.0,-6.952,1.0,0.0699,0.0774,1.52e-06,0.375,0.506,103.557,4.0,,RCA Camden,P (P) This compilation 2002 BMG UK & Ireland Limited.,2553 +2554,spotify:track:476V2d6iA2tWXgQboKmTtA,Father And Son,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,spotify:album:44VxbAytHpVi3Rq8hRhild,Tea For The Tillerman (Remastered 2020),spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,1970-11-23,https://i.scdn.co/image/ab67616d0000b273e7248738c2f7ce3b5584b15d,1,10,221120,https://p.scdn.co/mp3-preview/37e981644c257f80d47288d967fdb48dc3f03ed9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBUM71905972,spotify:user:bradnumber1,2023-01-31T06:12:06Z,"british folk,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.495,0.326,7.0,-12.29,1.0,0.0365,0.541,8.85e-05,0.0996,0.371,136.243,4.0,,UMC (Universal Music Catalogue),"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",2554 +2555,spotify:track:4BP3uh0hFLFRb5cjsgLqDh,Fortunate Son,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:31q47gQszFt0CddSyMksgO,Willy And The Poor Boys (Expanded Edition),spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1969-11-02,https://i.scdn.co/image/ab67616d0000b2739f39192f9f8ca1c90847b3e5,1,6,140773,https://p.scdn.co/mp3-preview/3240fb7f732ebc6f9cc83df560dceeab925bba92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USC4R0817618,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.64,0.663,0.0,-7.516,1.0,0.0374,0.201,0.00806,0.152,0.663,132.77,4.0,,Craft Recordings,"C © 2008 Concord Music Group, Inc., P ℗ 2008 Concord Music Group, Inc.",2555 +2556,spotify:track:3bC1ahPIYt1btJzSSEyyrF,Whistle,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,spotify:album:7eLwoxxWs6lfkVYJGkGNbk,Wild Ones,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2012-06-22,https://i.scdn.co/image/ab67616d0000b273871d85943145dde548f4ae09,1,1,224653,https://p.scdn.co/mp3-preview/ea7012e8d63798a9bd4ec40e566cb81c5955d18f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USAT21201745,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap",0.747,0.937,0.0,-5.746,1.0,0.0453,0.0208,0.0,0.29,0.739,103.976,4.0,,Poe Boy/Atlantic,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",2556 +2557,spotify:track:4GBPZmnLHEMdthyo2RDolF,Endless Love,"spotify:artist:3gMaNLQm7D9MornNILzdSl, spotify:artist:3MdG05syQeRYPPcClLaUGl","Lionel Richie, Diana Ross",spotify:album:6VrgfU55RZBu5EMsfnGDaF,Love's Greatest Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2006-01-01,https://i.scdn.co/image/ab67616d0000b273d8cd384cbe7fb64a8657236d,1,2,265613,https://p.scdn.co/mp3-preview/a4cad6e43a6a9e5122bd458f103b9e229e1c2e37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18190008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"soft rock,adult standards,disco,motown,quiet storm,soft rock,soul",0.439,0.338,10.0,-10.108,1.0,0.0252,0.484,0.00042,0.188,0.216,93.573,4.0,,Manhattan Records,"C © 2006 Manhattan Records, P This Compilation ℗ 2006 Manhattan Records",2557 +2558,spotify:track:2TY8WCR5gdOwsNOJuOeduG,Amnesia,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:1w5D9eC3WgKWZZVUwB0GXE,5 Seconds Of Summer,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2014-06-27,https://i.scdn.co/image/ab67616d0000b2737dc82fe4b20e636156c68c1b,1,12,237247,https://p.scdn.co/mp3-preview/59a64321afabce75b5e696df2ab796da5448dba0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBUM71401926,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.594,0.497,2.0,-5.26,1.0,0.0303,0.0343,0.0,0.162,0.101,101.671,4.0,,Capitol,"C © 2014 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited, P ℗ 2014 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited",2558 +2559,spotify:track:425fFEDIaVQ0P9H7gDt7ju,Onionskin,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,spotify:album:5QQdo0rs4pjCgSEQwZXmyw,These Here Are Crazy Times,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,1989-10-18,https://i.scdn.co/image/ab67616d0000b273fdc9564941aa6124a0f0f1d7,1,1,207706,https://p.scdn.co/mp3-preview/f15e6b6a3f657c9f7b44c762d30cb2325519fb5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUBM00700221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.516,0.922,0.0,-3.043,1.0,0.0704,0.0213,1.3e-05,0.158,0.456,99.086,4.0,,Bloodlines,"C 2013 Bloodlines, P 2013 Bloodlines",2559 +2560,spotify:track:7evPpWWu01Klxi0KlPxR17,Mercy,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:2AJaA0is5qbaqFy77tPl7B,Illuminate (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2016-09-23,https://i.scdn.co/image/ab67616d0000b273ac0c799031070926bc225b81,1,2,208733,https://p.scdn.co/mp3-preview/7814718df164c0b2e3543430b3482b4b6f6f5717?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71603531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.568,0.686,11.0,-4.901,0.0,0.0903,0.133,0.0,0.11,0.4,148.294,4.0,,Island Records,"C © 2016 Island Records, a division of UMG Recordings, Inc., P ℗ 2016 Island Records, a division of UMG Recordings, Inc.",2560 +2561,spotify:track:3ftWDlEBzlK2oZ7FYyasub,I Could Easily Fall (In Love with You),spotify:artist:4IdvJZeciaa37wYr2qBpjm,Cliff Richard & The Shadows,spotify:album:3HEE5w0xQA1Fed2lHYSou5,Rockin' With Cliff Richard,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1997,https://i.scdn.co/image/ab67616d0000b2732080f69f1e363d86780f958c,1,1,175466,https://p.scdn.co/mp3-preview/a3f9f43b89f6ed25a3ab7edb73e108ac4bcde995?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,GBAYE6400115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"merseybeat,rock-and-roll,rockabilly",0.337,0.504,9.0,-10.082,1.0,0.0305,0.838,0.0,0.183,0.785,151.356,4.0,,Parlophone UK,"C © 1997 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1986 Parlophone Records Ltd, a Warner Music Group Company",2561 +2562,spotify:track:7ngRS53kqxLcEt9Pythc5d,You Don't Own Me,spotify:artist:08b2PA6eFyugsWAk41eQKZ,Lesley Gore,spotify:album:5eluBwSJ7uwDBizWCiazSJ,Lesley Gore Sings Of Mixed-Up Hearts,spotify:artist:08b2PA6eFyugsWAk41eQKZ,Lesley Gore,1963-11-01,https://i.scdn.co/image/ab67616d0000b2731f88f87d7b1df743015cacac,1,7,150000,https://p.scdn.co/mp3-preview/0fe0a64026b1f81d4b97bc048eac1b8d642a9a60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USPR36309035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,bubblegum pop,classic girl group",0.473,0.434,2.0,-10.02,1.0,0.0257,0.701,0.0,0.628,0.711,94.814,3.0,,Mercury Records,"C © 1963 Mercury Records, a Division of UMG Recordings, Inc., P ℗ 1963 Mercury Records, a Division of UMG Recordings, Inc.",2562 +2563,spotify:track:5J783SDlyitqvLFAzTm0jU,Chances,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:1SpYRtc6JW8vWWMgJz4aMF,Chances,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,2018-11-09,https://i.scdn.co/image/ab67616d0000b2738da8f72152ea11dda5a40d49,1,1,172626,https://p.scdn.co/mp3-preview/476057597d5a20c5776248b3f02a26e89ed820ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USRC11803316,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.552,0.755,11.0,-6.255,1.0,0.0679,0.0178,0.0,0.466,0.296,109.806,4.0,,RCA Records Label,"P (P) 2018 K-Bahn, LLC & RCA Records, a division of Sony Music Entertainment",2563 +2564,spotify:track:0iQSCBqoWF30s3kpngPzTy,Wait,spotify:artist:6sAm0q83V4C9HWAE7vDv1Q,Gyan,spotify:album:6JfWZyJgnzKxlXQkK5UrDq,Gyan,spotify:artist:6sAm0q83V4C9HWAE7vDv1Q,Gyan,2016-01-15,https://i.scdn.co/image/ab67616d0000b273cdd17605a65b54e99972f4cc,1,2,218240,https://p.scdn.co/mp3-preview/7bb6524cc62ec94e86cc9cc29c6bce147dd824b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNHG1500047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.674,0.634,0.0,-10.307,1.0,0.0278,0.0642,0.0127,0.35,0.513,115.613,4.0,,Museagency under exclusive licence to LilliPilli IP,"C 2016 Museagency under exclusive licence to LilliPilli IP, P 2016 Museagency under exclusive licence to LilliPilli IP",2564 +2565,spotify:track:4xFmpix8HD3UtcWUr4SUxY,Die In Your Arms,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:2GNHSb85Dzzr0HSC0n7bd3,Die In Your Arms,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2012-01-01,https://i.scdn.co/image/ab67616d0000b2738c786147cc03fd096a74c884,1,1,237453,https://p.scdn.co/mp3-preview/4b8bf321bd2b269383c446d199221b8ebf197744?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71205353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.553,0.89,7.0,-5.119,1.0,0.0982,0.0345,3e-06,0.0732,0.763,171.78,4.0,,Universal Music Ltd.,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",2565 +2566,spotify:track:7p9hpeiFig1t6TOTcyGDZm,The Trouble With Love Is,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:4txPGNHsUtjgBickDa5mOe,Thankful,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2003-09-29,https://i.scdn.co/image/ab67616d0000b273ef290d6f387d2abce08aecb2,1,1,221093,https://p.scdn.co/mp3-preview/a71c78dd197f8e63d84f321ea58dad6f0a077ab0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USRC10300784,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.48,0.615,10.0,-5.963,1.0,0.07,0.0757,9.8e-06,0.0718,0.271,183.821,3.0,,RCA Records Label,P (P) 2003 19 Recordings Limited,2566 +2567,spotify:track:150xRZE9rtvEPdedbf3y3l,Life Is Worth Living,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,10,234786,https://p.scdn.co/mp3-preview/ffd6d8c3354144d19782077eb51a44b1cbc60124?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71513215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.558,0.296,10.0,-9.18,1.0,0.0427,0.907,0.0,0.108,0.463,76.04,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",2567 +2568,spotify:track:1mfOVu9M9P4NfZZvotQ7NV,Cruel to Be Kind,spotify:artist:3BqaUtuQmqIHg7B5Bc7fP7,Nick Lowe,spotify:album:0fKPL6FCV2Wv1RhLk78Fh4,Labour of Lust,spotify:artist:3BqaUtuQmqIHg7B5Bc7fP7,Nick Lowe,2011-03-13,https://i.scdn.co/image/ab67616d0000b2734ae35ee8c75c081d95d483ac,1,1,210106,https://p.scdn.co/mp3-preview/2490cf1e318cd7004f1805f03b6a96df3a5d99a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEEJ0801766,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"power pop,pub rock,singer-songwriter",0.697,0.664,0.0,-10.406,1.0,0.0261,0.0597,2.95e-06,0.0427,0.811,131.686,4.0,,Proper Records,"C 2011 Nick Lowe Ltd, P 2011 Nick Lowe Ltd",2568 +2569,spotify:track:0d4DyZYCiSH5fNnc0Hfz3L,Live It Up,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:4hx41t6IQkOUy7exOtu7wp,Fundamental As Anything,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,1985-09-01,https://i.scdn.co/image/ab67616d0000b27393ddca090b7df9554d32e050,1,3,254200,https://p.scdn.co/mp3-preview/e5bf287a5e33bed5534939dbd6fc628a251e77c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUFE09800665,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.688,0.781,7.0,-8.868,1.0,0.0269,0.267,0.0,0.054,0.934,119.847,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Syray Music, P ℗ 2015 Syray Music",2569 +2570,spotify:track:02qR8in5oufUTXSaMkNOOF,Break Me Shake Me,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:2FSVwM8ysmI2tXIPpBJbfs,Savage Garden,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,1997-03-04,https://i.scdn.co/image/ab67616d0000b2736829cf8da7c5706fc42a3852,1,10,203066,https://p.scdn.co/mp3-preview/127a2b6d23053d9cce01d744363364a499e3d4d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09700010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop rock",0.753,0.676,0.0,-6.757,1.0,0.0277,0.018,0.000474,0.137,0.643,110.16,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P This Compilation ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",2570 +2571,spotify:track:2EcsgXlxz99UMDSPg5T8RF,Beneath Your Beautiful (feat. Emeli Sandé),"spotify:artist:2feDdbD5araYcm6JhFHHw7, spotify:artist:7sfgqEdoeBTjd8lQsPT3Cy","Labrinth, Emeli Sandé",spotify:album:6PBBbXmYV7dKnaik0fjkOI,Electronic Earth (Expanded Edition),spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,2012-04-02,https://i.scdn.co/image/ab67616d0000b273d9370e27abe3de676c56873a,1,7,271813,https://p.scdn.co/mp3-preview/f34a73c3e81e50bcf7e2d1923b8a9407ab07538e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBHMU1200008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie poptimism,pop,r&b,talent show,uk pop",0.561,0.522,2.0,-5.857,1.0,0.0318,0.227,0.0,0.104,0.238,83.962,4.0,,Syco Music UK,P (P) 2012 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,2571 +2572,spotify:track:1jH2IzZ7JnixFoGG6XSnpf,Rollin' (Air Raid Vehicle),spotify:artist:165ZgPlLkK7bf5bDoFc6Sb,Limp Bizkit,spotify:album:3hGM52SddRWwI4yatyZYmb,Chocolate Starfish And The Hot Dog Flavored Water,spotify:artist:165ZgPlLkK7bf5bDoFc6Sb,Limp Bizkit,2000-10-17,https://i.scdn.co/image/ab67616d0000b2736a64f9b4a4909f3c86e4572a,1,6,213760,https://p.scdn.co/mp3-preview/0007508491a4fc012774b2e5f128d7cd8407e633?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10001170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,post-grunge,rap metal,rock",0.604,0.931,9.0,-3.326,1.0,0.175,0.00516,0.0,0.271,0.682,96.249,4.0,,Universal Music Group,"C © 2000 Interscope Records, P ℗ 2000 Interscope Records",2572 +2573,spotify:track:1cJssTcMltUxhvUZLpn3Ci,I Will Always Love You,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:4bXTYQ8nVBYO4k3C3TOVri,Whitney The Greatest Hits,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,2000-05-16,https://i.scdn.co/image/ab67616d0000b273989694c579cc8a29f99b6eda,1,11,263800,https://p.scdn.co/mp3-preview/db431eff82899d9af76c9156d66d29aa951c21d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR19200110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.303,0.269,4.0,-9.469,1.0,0.0368,0.831,3.01e-06,0.0906,0.122,132.857,4.0,,Arista,"P (P) 1985, 1986, 1987, 1988, 1990, 1992, 1995, 1996, 1998, 2000 RCA/JIVE Label Group, a unit of Sony Music Entertainment",2573 +2574,spotify:track:5VsAiXtW0ApEaGsZypEUxL,Freeway Of Love,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,spotify:album:2d3WbGqfYOKrKNcDliIF6L,Who's Zoomin' Who?,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,1985-07-09,https://i.scdn.co/image/ab67616d0000b273f415daf0eef091b54f75557c,1,1,351266,https://p.scdn.co/mp3-preview/496e9f06aa30c429c49b959c5f6946118d1658a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR18500023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,jazz blues,memphis soul,soul,southern soul,vocal jazz",0.693,0.839,2.0,-9.634,1.0,0.0526,0.282,3.83e-06,0.0338,0.849,126.165,4.0,,Arista,P (P) 1985 Arista Records LLC,2574 +2575,spotify:track:0xIVvRmjztR1AwuHrkhH41,Addicted To You,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:02h9kO2oLKnLtycgbElKsw,True,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d20bacc84d203cc330a5df75,1,4,148386,https://p.scdn.co/mp3-preview/a8ddc82236c10f83c61112653aac4f80771e5d84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CH3131340085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.569,0.785,1.0,-4.057,0.0,0.0457,0.0505,1.12e-06,0.086,0.303,128.031,4.0,,Universal Music Group,"C © 2013 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2013 Avicii Music AB, under exclusive license to Universal Music AB",2575 +2576,spotify:track:07GvNcU1WdyZJq3XxP0kZa,Go Your Own Way - 2004 Remaster,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:1bt6q2SruMsBtcerNVtpZB,Rumours,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1977-02-04,https://i.scdn.co/image/ab67616d0000b27357df7ce0eac715cf70e519a7,1,5,223613,https://p.scdn.co/mp3-preview/26ba8ef966c08f5116fd5ab94efc7a8671e640f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USWB10400050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.583,0.947,5.0,-5.12,1.0,0.0378,0.0185,0.00109,0.0679,0.803,135.448,4.0,,Rhino/Warner Records,"C © 2004 Warner Records Inc., P ℗ 2004 Warner Records Inc.",2576 +2577,spotify:track:4A2CyJ3VhCxiQCYXlV6zRL,About Damn Time,spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,spotify:album:5dJGQftJX0fQ14t9tT7nX6,About Damn Time,spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,2022-04-13,https://i.scdn.co/image/ab67616d0000b2737c0fdb9efd3e86fba94853b2,1,1,191822,https://p.scdn.co/mp3-preview/c51affa17967bb80508d68fc95966ad4d8b36df7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT22203696,spotify:user:bradnumber1,2022-06-05T12:04:44Z,"escape room,minnesota hip hop,pop,trap queen",0.835,0.747,10.0,-6.328,0.0,0.0622,0.101,0.0,0.355,0.713,108.975,4.0,,Atlantic Records,"C © 2022 Nice Life Recording Company and Atlantic Recording Corporation, P ℗ 2022 Nice Life Recording Company and Atlantic Recording Corporation",2577 +2578,spotify:track:6SLplSKU45KJzApnlp946m,Something About You,spotify:artist:4csQIMQm6vI2A2SCVDuM2z,Hayden James,spotify:album:4BsD9djw2227pz2FJGRjpB,Something About You (The Remixes),spotify:artist:4csQIMQm6vI2A2SCVDuM2z,Hayden James,2015-08-21,https://i.scdn.co/image/ab67616d0000b27318cd84570968c4dfeb81e713,1,1,223400,https://p.scdn.co/mp3-preview/93833bde01055211a8f3742c5b6982c36a854206?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFF01400668,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,gauze pop,house",0.848,0.638,2.0,-7.776,0.0,0.0791,0.352,0.0364,0.0856,0.62,115.009,4.0,,Future Classic,"C 2015 Future Classic, P 2015 Future Classic",2578 +2579,spotify:track:7MrNlFbcx5Wr1MwKqwDpA5,"Just Another Dream - Album-Edit / 7"" Mix",spotify:artist:2zVsfeSyFbCey7rq7PasHp,Cathy Dennis,spotify:album:0uxXWfZ2qtdVqW3Ol606ux,The Irresistible,spotify:artist:2zVsfeSyFbCey7rq7PasHp,Cathy Dennis,2000-01-01,https://i.scdn.co/image/ab67616d0000b27349fbf03e762b0424bc08c76e,1,3,235613,https://p.scdn.co/mp3-preview/d557b0de53af1f465db2bed391e4da26c34ab27c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBAKW9101007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,new wave pop",0.666,0.696,0.0,-13.459,0.0,0.0367,0.03,0.114,0.0659,0.844,118.791,4.0,,Spectrum,"C © 2000 Spectrum Music, P This Compilation ℗ 2000 Spectrum Music",2579 +2580,spotify:track:40JVyQzjWxUzymi6pcjdWn,Separate Lives (Love Theme From White Nights),"spotify:artist:4lxfqrEsLX6N1N4OCSkILp, spotify:artist:3vtjCpFunIFNdbXkBVx0gL","Phil Collins, Marilyn Martin",spotify:album:7hV0YSxAQSng8H0zMR0HBf,...Hits,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1998-09-25,https://i.scdn.co/image/ab67616d0000b273c8860dfcdadefb529bf29757,1,9,246533,https://p.scdn.co/mp3-preview/27946da8212b814c1e942d62e07aaba2b03747f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWI19600133,spotify:user:bradnumber1,2023-10-17T23:17:33Z,"rock drums,soft rock",0.327,0.283,4.0,-9.855,1.0,0.0313,0.246,3.93e-06,0.172,0.202,96.153,4.0,,Atlantic Records,"C 1998 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",2580 +2581,spotify:track:0539s6zxmpDLiwI9sIHdbU,Our Song - Luca Schreiner Remix,"spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:1Hsdzj7Dlq2I7tHP7501T4, spotify:artist:5fiYAV2DWASxAUKDq7Gbe9","Anne-Marie, Niall Horan, Luca Schreiner",spotify:album:1u7DeCUyL0rwKtLBPgcpuX,Our Song (Luca Schreiner Remix),"spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:1Hsdzj7Dlq2I7tHP7501T4, spotify:artist:5fiYAV2DWASxAUKDq7Gbe9","Anne-Marie, Niall Horan, Luca Schreiner",2021-06-04,https://i.scdn.co/image/ab67616d0000b27385ffca60675101581b9c774e,1,1,164960,https://p.scdn.co/mp3-preview/23f2b390246a154af725de3d4b3413ab10039e74?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAHS2100323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop,german dance",0.43,0.685,11.0,-5.907,0.0,0.0853,0.1,0.0,0.119,0.308,84.838,4.0,,Atlantic Records/Asylum,"C A Major Toms / Asylum Records release, © 2021 Warner Music UK Limited., P A Major Toms / Asylum Records release, ℗ 2021 Warner Music UK Limited.",2581 +2582,spotify:track:22mek4IiqubGD9ctzxc69s,How Deep Is Your Love,"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:5EehXjjMktLuJmbRsM7YfB","Calvin Harris, Disciples",spotify:album:3cG32DOXJoYlOHMmJIaQsm,How Deep Is Your Love,"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:5EehXjjMktLuJmbRsM7YfB","Calvin Harris, Disciples",2015-07-17,https://i.scdn.co/image/ab67616d0000b273f4956c3ceefc6fa1cffc6da6,1,1,212640,https://p.scdn.co/mp3-preview/6aa9aca8fda017e572a0065c00a67feb6f044d0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBARL1500704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,house,pop dance,uk dance",0.738,0.868,11.0,-4.373,0.0,0.0731,0.0392,0.00169,0.388,0.336,122.003,4.0,,Columbia,P (P) 2015 Sony Music Entertainment UK Limited,2582 +2583,spotify:track:4wWMT7adzhKpbul3pGkDNV,Mama Said,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,spotify:album:7nEHtVhbtSPzJorg0Lfq8W,Mama Said (There'd Be Days Like This),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2005,https://i.scdn.co/image/ab67616d0000b2735c060e9230e0f7fbb4ed8c73,1,1,128800,https://p.scdn.co/mp3-preview/52acca1156772089ff3decabcc5a654fa5158778?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,doo-wop,motown,rock-and-roll,soul",0.669,0.64,8.0,-4.987,0.0,0.0624,0.577,0.0,0.295,0.935,140.317,4.0,,Gusto Records,"C 2005 Gusto Records Inc., P 2005 Gusto Records Inc.",2583 +2584,spotify:track:0ixcINi5cnueFsWNllV2ou,My First Kiss (feat. Ke$ha),"spotify:artist:0FWzNDaEu9jdgcYTbcOa4F, spotify:artist:6LqNN22kT3074XbTVUrhzX","3OH!3, Kesha",spotify:album:4AxDQ4lIaW71hmUQnbYDVE,Streets Of Gold,spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,2010-06-25,https://i.scdn.co/image/ab67616d0000b273b9933fcc3668139db9c4bdb5,1,3,192440,https://p.scdn.co/mp3-preview/026575522e55e2b3a1839b77d80b3f3e8771deb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USAT21000648,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropowerpop,pop punk,pop rap,post-teen pop,dance pop,pop",0.682,0.889,0.0,-4.166,1.0,0.0804,0.00564,0.0,0.36,0.827,138.021,4.0,,Photo Finish,"C © 2010 Photo Finish Records, LLC. All Rights Reserved. Manufactured and Distributed by Atlantic Recording Corporation, a Warner Music Group Company., P ℗ 2010 Photo Finish Records, LLC. All Rights Reserved. Manufactured and Distributed by Atlantic Recording Corporation, a Warner Music Group Company.",2584 +2585,spotify:track:4DrjEaTpmBTwRg1oAJnzcN,1000 Miles Away,spotify:artist:6FbDoZnMBTdhhhLuJBOOqP,Jewel,spotify:album:0qnT4J1OukXtjNNOSyeGnL,Goodbye Alice In Wonderland (U.S. Standard Version),spotify:artist:6FbDoZnMBTdhhhLuJBOOqP,Jewel,2006,https://i.scdn.co/image/ab67616d0000b273429aade4ba2d8799eadedf86,1,13,228920,https://p.scdn.co/mp3-preview/950f70297a3c3e10862c151ec0d7e7699c5c0854?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20610271,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alaska indie,ectofolk,lilith,permanent wave,pop rock,singer-songwriter",0.306,0.328,2.0,-8.263,1.0,0.0346,0.669,5.13e-06,0.0782,0.148,83.199,4.0,,Concord Music Group,"C 2006 Concord Music Group, Inc., P 2006 Concord Music Group, Inc.",2585 +2586,spotify:track:6SBSc5ORiYp2eCOo8Md0ro,Mundian To Bach Ke (Beware of the Boys) [Jay Z Remix],spotify:artist:74D1UgRzMhTSPz698exXmR,Panjabi MC,spotify:album:2dod6Th25RgNaxlTim9ldZ,The Album,spotify:artist:74D1UgRzMhTSPz698exXmR,Panjabi MC,2002,https://i.scdn.co/image/ab67616d0000b27353730b04b0d34c04ff78b14d,1,14,236293,https://p.scdn.co/mp3-preview/23324540a8b7e79a5cbb2586130417f92b04bdd6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUXN21200658,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bhangra,classic bhangra,desi hip hop",0.759,0.918,11.0,-3.936,1.0,0.111,0.223,6.98e-05,0.117,0.942,98.115,4.0,,Central Station Records,"C 2012 Central Station Records, P 2002 Nachural Records under exclusive license to Central Station Records",2586 +2587,spotify:track:671XiwQW20Hw5DudB13tR9,Church,spotify:artist:11gWrKZMBsGQWmobv3oNfW,Alison Wonderland,spotify:album:7LptqVA95f1XrR0RdId9aJ,Church,spotify:artist:11gWrKZMBsGQWmobv3oNfW,Alison Wonderland,2018-02-16,https://i.scdn.co/image/ab67616d0000b273970310f24538392a08482444,1,1,183912,https://p.scdn.co/mp3-preview/3681ff897da8b614d6ecdb911d657a9168833494?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71700693,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,edm,electra,electronic trap,escape room,indietronica",0.556,0.686,10.0,-4.867,0.0,0.0346,0.0279,0.0,0.41,0.231,94.054,4.0,,Universal Music Group,"C © 2018 Universal Music Australia Pty Ltd., P An EMI Music Australia production; ℗ 2018 Universal Music Australia Pty Ltd.",2587 +2588,spotify:track:7qtAgn9mwxygsPOsUDVRRt,Survivor,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,spotify:album:0IVseR3zfrrInlKJQNh294,Survivor,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,2001-01-01,https://i.scdn.co/image/ab67616d0000b27369c31a0f21885826fa6813f0,1,2,254040,https://p.scdn.co/mp3-preview/617bae84271c109b59b1c8bef7798426fbc8e69c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM10019326,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary",0.524,0.904,8.0,-2.071,1.0,0.398,0.0533,0.0,0.776,0.655,161.188,4.0,,Columbia,C (P) 2001 Sony Music Entertainment Inc.,2588 +2589,spotify:track:75nyQgntsm6IzWkb4G52bx,Two Hearts,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:7hV0YSxAQSng8H0zMR0HBf,...Hits,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1998-09-25,https://i.scdn.co/image/ab67616d0000b273c8860dfcdadefb529bf29757,1,5,204093,https://p.scdn.co/mp3-preview/d64f48ff8d11981b08acdf6f437270fb25ef92f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWI19600240,spotify:user:bradnumber1,2023-10-17T23:17:19Z,"rock drums,soft rock",0.589,0.808,7.0,-6.578,1.0,0.0354,0.334,0.0512,0.0514,0.736,155.599,4.0,,Atlantic Records,"C 1998 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",2589 +2590,spotify:track:3ykSdTGmYPFl8pDBXer1zG,Cocaine,spotify:artist:6PAt558ZEZl0DmdXlnjMgD,Eric Clapton,spotify:album:5MAL7e4EnKXW1hFg6NbFqP,Slowhand 35th Anniversary (Super Deluxe),spotify:artist:6PAt558ZEZl0DmdXlnjMgD,Eric Clapton,1977-11-01,https://i.scdn.co/image/ab67616d0000b2736f093a6ae88a5ca8ed53b9f7,1,1,221640,https://p.scdn.co/mp3-preview/d87ecd16859e1a5f39b7259a448bd5202f90426c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,NLF057790024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,electric blues,mellow gold,rock,singer-songwriter,soft rock",0.699,0.502,9.0,-12.526,1.0,0.0278,0.0607,0.0337,0.317,0.676,105.266,4.0,,Universal Music Group International,"C © 2012 Polydor Ltd. (UK), P This Compilation ℗ 2012 Polydor Ltd. (UK)",2590 +2591,spotify:track:7Hx6Lh9AZqkwK8LRfs6cL7,Come Said The Boy - Digitally Remastered,spotify:artist:0f7ChwXkRvmj2ViLbEQwYK,Mondo Rock,spotify:album:4Iu6eJb8nC0kUpTv5KZLnp,The Greatest Hits,spotify:artist:0f7ChwXkRvmj2ViLbEQwYK,Mondo Rock,2017-01-27,https://i.scdn.co/image/ab67616d0000b27381edc13ef7439ae806502d84,1,1,315986,https://p.scdn.co/mp3-preview/c349a07e7b5eaa9d06e988838a391ef2759dd60d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUMF08300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.692,0.636,9.0,-6.151,0.0,0.0342,0.244,0.00261,0.163,0.481,117.847,4.0,,Bloodlines,"C 2016 Bloodlines, P 2016 Bloodlines",2591 +2592,spotify:track:4yTxLXptbB5S9xJ6COp5g5,Own This Club,spotify:artist:7DQ3WCryhwdbFr2D5SaKZN,Marvin Priest,spotify:album:4m0O9NCW8tz9RIMZXuPhzz,Own This Club,spotify:artist:7DQ3WCryhwdbFr2D5SaKZN,Marvin Priest,2011-01-01,https://i.scdn.co/image/ab67616d0000b273c4eaf5ff45ad7ec8817f9b73,1,1,201510,https://p.scdn.co/mp3-preview/de1d84f9dad806635a26c0768430a958735fcf2c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUUM71100059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.758,0.809,10.0,-3.756,1.0,0.0951,0.198,0.0,0.277,0.846,125.013,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P ℗ 2011 Universal Music Australia Pty Ltd.",2592 +2593,spotify:track:1GNXKxf8dip6vPukn0R5lP,I Am Pegasus,spotify:artist:7GsCDfOEwHCSQJmUsQC5Tm,Ross Ryan,spotify:album:24UBdKP038lQVuOHXhcC3Y,...My Name Means Horse (Remastered),spotify:artist:7GsCDfOEwHCSQJmUsQC5Tm,Ross Ryan,1974,https://i.scdn.co/image/ab67616d0000b273966ec090ae20952f2ce63916,1,7,240080,https://p.scdn.co/mp3-preview/9a0df17c41e268127bebdd7f68f32428f682cb30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AU3O01401322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.34,0.557,8.0,-8.863,1.0,0.0342,0.0994,0.0,0.49,0.756,73.336,4.0,,Aztec Music,"C © 2007 Aztec Music, P ℗ 1974 EMI Music Australia",2593 +2594,spotify:track:6VCqx14OVaX9uwSvC0PvAG,The Girl and the Robot,spotify:artist:5nPOO9iTcrs9k6yFffPxjH,Röyksopp,spotify:album:6vQMbwthchxuSioACn2hcE,Junior,spotify:artist:5nPOO9iTcrs9k6yFffPxjH,Röyksopp,2009-03-18,https://i.scdn.co/image/ab67616d0000b273061dfbdfdd7d963d1eac3194,1,2,268893,https://p.scdn.co/mp3-preview/9d4f34552fe4bc33c99ec788688914553ed8dc43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,FRZ110802635,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,electronica,indietronica,neo-synthpop,trip hop",0.511,0.899,9.0,-5.323,0.0,0.0601,0.115,0.000105,0.107,0.0773,121.0,4.0,,Parlophone (France),"C © 2009 Parlophone Music France, under exclusive licence to Wall of Sound for UK/Eire, P ℗ 2009 Parlophone Music France, under exclusive licence to Wall of Sound for UK/Eire",2594 +2595,spotify:track:7N0m9xZWigSMCzhB7wI3FX,Sing My Love,"spotify:artist:6xI9Q6HuhHUxiYhcRdeHKN, spotify:artist:2dtyicVOUMo8EoEEvCTytp","Zank, STORME",spotify:album:0z5c9gnAqCh9br91PUmVvM,Sing My Love,spotify:artist:6xI9Q6HuhHUxiYhcRdeHKN,Zank,2021-07-23,https://i.scdn.co/image/ab67616d0000b2738fd074bf099cf26aabfa3144,1,1,255506,https://p.scdn.co/mp3-preview/0dd2774c71798137d3e58cb34f84b83f8e5a2bd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,QZS2Q2100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.649,0.804,9.0,-7.251,0.0,0.0301,0.00738,0.234,0.152,0.822,123.026,4.0,,Zank Music LLC,"C 2021 Zank Music LLC, P 2021 Zank Music LLC",2595 +2596,spotify:track:3R5NhykbYUJmOszgO8qAmo,(They Long to Be) Close to You,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:0wBP8GaN80GPolmY8M19em,Classic Carpenters,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2016-04-22,https://i.scdn.co/image/ab67616d0000b273e0883bb3ac31d595172c0a82,1,1,223840,https://p.scdn.co/mp3-preview/4a47cc5bc56078e36a369b61223b5e50b23be242?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUBM01600038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.548,0.394,0.0,-6.371,1.0,0.0259,0.852,1.22e-05,0.0854,0.342,86.932,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,2596 +2597,spotify:track:2dobXqehyY5tmMjrvWS1vX,Petals and Leaves,"spotify:artist:58XtDX4Y4y7SADRSYBfzMr, spotify:artist:1ppPctMVAtXdP9m1MRVsVp","ponders, Mason Parks",spotify:album:3OQiPFfaNgS10aAHCmsTfh,Petals and Leaves,"spotify:artist:58XtDX4Y4y7SADRSYBfzMr, spotify:artist:1ppPctMVAtXdP9m1MRVsVp","ponders, Mason Parks",2021-04-28,https://i.scdn.co/image/ab67616d0000b2730d4ef748047bccebb47b5143,1,1,136720,https://p.scdn.co/mp3-preview/9e5715f727b00425bba99434dec4cbac34b5b630?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,QZES72142500,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.741,0.395,0.0,-11.836,1.0,0.0609,0.711,0.8,0.103,0.172,93.998,4.0,,Mason Parks,"C 2021 Mason Parks, P 2021 Mason Parks",2597 +2598,spotify:track:0Kb1OykZK7OYNqQ58KZ0rj,Party Lights,spotify:artist:4I0kvGngwrJFy1ngs6fzqZ,Claudine Clark,spotify:album:2wepE9XuqDKIHQ0TZmreXa,Party Lights,spotify:artist:4I0kvGngwrJFy1ngs6fzqZ,Claudine Clark,2006,https://i.scdn.co/image/ab67616d0000b273622dcaa2c6a2551de8fd3ab1,1,1,143133,https://p.scdn.co/mp3-preview/a491f546c675f7fc251473514fcd879a6a1ea264?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,US2Y30607888,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.645,0.6,0.0,-7.948,1.0,0.238,0.0661,0.0,0.101,0.701,135.593,4.0,,Chancellor Records,C 2006 Chancellor Records,2598 +2599,spotify:track:44XBLYMVEt5vJcb5qXfQ7V,Alejandro,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:67j3NJodNRI8USUwKwTZA6,The Fame Monster (International Deluxe),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2009-01-01,https://i.scdn.co/image/ab67616d0000b2739bc57d66a2e1c9ed8ddc18f1,1,2,274213,https://p.scdn.co/mp3-preview/294d95f7e760f74843f027bcf4b749a83d01be4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70905526,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.626,0.799,11.0,-6.612,0.0,0.046,0.000358,0.00155,0.36,0.369,98.992,4.0,,Universal Music Group,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",2599 +2600,spotify:track:4ctPexpFIKzjWl4sI7pxeR,Drop The Pressure,spotify:artist:5YjEVrNMrIRw2xGbjTN6Ti,Mylo,spotify:album:4bmRs1mbIqoZXpxAzCRQ7E,Destroy Rock & Roll,spotify:artist:5YjEVrNMrIRw2xGbjTN6Ti,Mylo,2009-01-01,https://i.scdn.co/image/ab67616d0000b2735fa2e7af60d2d10cf5bf3d80,1,4,255600,https://p.scdn.co/mp3-preview/64f7cbbf632d1f99553d7bb40f9be15daa614d34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUNV00600098,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,filter house",0.821,0.589,9.0,-6.947,1.0,0.0657,0.0287,0.839,0.164,0.49,129.006,4.0,,Ministry Of Sound,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",2600 +2601,spotify:track:37PVkUOwBT5gTQNQOsauFr,Girls (All Around the World),spotify:artist:6pjod8SsOOGf6GW9tfEnH1,Reece Mastin,spotify:album:2W0XaYGXkysDvdNcKkLTT8,Girls (All Around the World),spotify:artist:6pjod8SsOOGf6GW9tfEnH1,Reece Mastin,2013-10-25,https://i.scdn.co/image/ab67616d0000b273cd26c21c3b56c4d1ae7eef4c,1,1,197626,https://p.scdn.co/mp3-preview/6b577557c9107629a763043bb65511f75727c75e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUBM01300464,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.692,0.894,0.0,-2.628,1.0,0.0407,0.119,0.0,0.224,0.809,103.984,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Enteratainment Australia Pty Ltd,2601 +2602,spotify:track:6Wx88Mv6b9ofjKMKkdwOJd,New Divide,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:1fqibtpI0bwD73uQGeEnhn,Transformers: Revenge Of The Fallen The Album,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-06-12,https://i.scdn.co/image/ab67616d0000b273148cd93cd936ee29cb4db587,1,1,268613,https://p.scdn.co/mp3-preview/07b65f873e13a81671ff8f8e7a2fb092f7941426?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USWB10901893,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.493,0.808,5.0,-3.365,0.0,0.0362,0.000235,0.0,0.0983,0.38,117.971,4.0,,Reprise,"C © 2009 Motion Picture Artwork, Photos, Copyright C2009 DW STUDIOS L.L.C. and PARAMOUNT PICTURES. All Rights Reserved. HASBRO, TRANSFORMERS and all related characters are trademarks of HASBRO. C2009 HASBRO. All Rights Reserved. This Compilation C2009 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2009 This compilation P2009 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",2602 +2603,spotify:track:7atIHMnLUJ5ikdnosz1GwU,Barbie Girl,spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,spotify:album:2fMLZjqCrVeAknRbcPKwGz,Aquarium,spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,1997-01-01,https://i.scdn.co/image/ab67616d0000b273d2510cf70b57530d14fa7cba,1,3,197906,https://p.scdn.co/mp3-preview/e50666a04ed8364ec8f7cda1c8fe26f516c1da9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DKBKA9700403,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,eurodance,europop",0.81,0.956,1.0,-5.753,0.0,0.0367,0.0167,0.281,0.35,0.961,129.996,4.0,,Universal Music,"C © 1997 Universal Music (Denmark) A/S, P ℗ 1997 Universal Music (Denmark) A/S",2603 +2604,spotify:track:7kmfQ2QHwGqRCxVHDv5mzo,Damn I Wish I Was Your Lover,spotify:artist:3gdIwZY6Q3RXhDteYr4ZvC,Sophie B. Hawkins,spotify:album:0uv0eA8q8HCfCytsAtZSch,Tongues And Tails,spotify:artist:3gdIwZY6Q3RXhDteYr4ZvC,Sophie B. Hawkins,1992-04-06,https://i.scdn.co/image/ab67616d0000b273f65f0693ad1058057c245d6f,1,1,323266,https://p.scdn.co/mp3-preview/97d88de722f5c3cd4f04f989d26727e2560e2dfe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM10019593,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,new wave pop",0.546,0.781,11.0,-9.439,0.0,0.0506,0.22,1.51e-05,0.363,0.539,95.032,4.0,,Columbia,P (P) 1992 Sony Music Entertainment Inc.,2604 +2605,spotify:track:3afv9TL8ixr4T9VbiKnrwe,American Pie,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:1V342k6sinWc4y4R2iReOu,Music,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2000-09-19,https://i.scdn.co/image/ab67616d0000b273ae80b0a207008fe96637032c,1,11,273533,https://p.scdn.co/mp3-preview/919695a5f02b3ca2c4e9b9f2c5f9e3824d5207c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB19904349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.631,0.734,5.0,-7.48,0.0,0.036,0.348,0.0,0.135,0.591,124.036,4.0,,Warner Records,"C © 2000 Warner Records Inc., P ℗ 2000 Warner Records Inc.",2605 +2606,spotify:track:7j31rVgGX9Q2blT92VBEA0,Teenagers,spotify:artist:7FBcuc1gsnv6Y1nwFtNRCb,My Chemical Romance,spotify:album:0FZK97MXMm5mUQ8mtudjuK,The Black Parade,spotify:artist:7FBcuc1gsnv6Y1nwFtNRCb,My Chemical Romance,2006-10-23,https://i.scdn.co/image/ab67616d0000b27317f77fab7e8f18d5f9fee4a1,1,11,161920,https://p.scdn.co/mp3-preview/e6d0c0da5d86b2d19ee4456344ac9527a72b2a7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USRE10602912,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop punk,pov: indie,rock",0.463,0.857,4.0,-3.063,1.0,0.0632,0.0506,0.0,0.184,0.856,111.647,4.0,,Reprise,"C © 2006 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2006 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",2606 +2607,spotify:track:36kM2nOz91EIyzSm3qdrzx,I Remember,spotify:artist:04HvbIwBccFmRie5ATX4ft,Yeasayer,spotify:album:64PqoX4BwsfDVEBeYqDnb8,Odd Blood,spotify:artist:04HvbIwBccFmRie5ATX4ft,Yeasayer,2010,https://i.scdn.co/image/ab67616d0000b273fb04d2daccc4966fb4c234b7,1,4,263266,https://p.scdn.co/mp3-preview/e5815e83edd2dc884da61987b951d3d08be9f62e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US38W1021004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,brooklyn indie,chamber pop,indie rock,neo-synthpop,shimmer pop",0.384,0.781,5.0,-6.098,1.0,0.0446,0.0247,3.22e-05,0.368,0.255,79.882,4.0,,Mute,"C 2010 2010 Artist Intelligence Partnership Limited under exclusive license from Secretly Canadian, Inc., P 2010 2010 Artist Intelligence Partnership Limited under exclusive license from Secretly Canadian, Inc.",2607 +2608,spotify:track:5YsyqcewwE0c1ukzHVciS3,In Dreams,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:1Mur3hTEWtYHqGku4d9ySm,In Dreams,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,1963-07,https://i.scdn.co/image/ab67616d0000b2735316978023f44ea7b42bf8c5,1,1,169160,https://p.scdn.co/mp3-preview/e628b6735c8760c26a68a08d329dc642b0025605?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USSM19805294,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.495,0.435,0.0,-9.99,1.0,0.0286,0.67,0.00038,0.13,0.71,108.189,4.0,,Legacy Recordings,P Originally released 1963. All rights reserved by Sony Music Entertainment,2608 +2609,spotify:track:5N4erncE7kuUccm7zEmwzk,Electricity,"spotify:artist:2X97ZAqRKRMYFIDqtvGgGc, spotify:artist:6M2wZ9GZgrQXHCFfjv46we, spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:5fMUXHkw8R8eOP2RNVYEZX","Silk City, Dua Lipa, Mark Ronson, Diplo",spotify:album:429B3se6xtZuvblNnS2iy7,Electricity,"spotify:artist:2X97ZAqRKRMYFIDqtvGgGc, spotify:artist:6M2wZ9GZgrQXHCFfjv46we","Silk City, Dua Lipa",2018-09-06,https://i.scdn.co/image/ab67616d0000b273a334001297c78a5da11d5b58,1,1,238173,https://p.scdn.co/mp3-preview/6b0dfe43cd0281a9c49f790fb581fe482176c9f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USQX91802285,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,uk dance,dance pop,pop,uk pop,pop soul,dance pop,edm,electro house,moombahton,pop dance",0.588,0.67,0.0,-6.439,1.0,0.0473,0.0104,3.33e-06,0.338,0.505,118.159,4.0,,Columbia,"P (P) 2018 SILK CITY IP, LLC. Under exclusive license to Columbia Records and Sony Music Entertainment UK Limited",2609 +2610,spotify:track:0sEFbS6At6RD9AbPAl3tCg,Miss Right,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:4HPdvrPf9RGfJ2hNYrODpC,R.E.D. (Deluxe Edition),spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2012-01-01,https://i.scdn.co/image/ab67616d0000b27314f5c10de370e6d48d142629,1,4,229520,https://p.scdn.co/mp3-preview/fa4cbb2aad487d432268e713e69ed27852355457?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USUM71212365,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.629,0.509,2.0,-8.039,0.0,0.142,0.0565,3.97e-06,0.15,0.62,179.968,4.0,,Island Def Jam/Motown,"C © 2012 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2012 Motown Records, a Division of UMG Recordings, Inc.",2610 +2611,spotify:track:0rYA2OJ81pKaPgjMweCipO,These Kids (radio edit),spotify:artist:6vqul5TIAmROh1DGussSOk,Joel Turner,spotify:album:5ybspQuN1jZ1Sk8tkBBC1p,Joel Turner & The Modern Day Poets,spotify:artist:6vqul5TIAmROh1DGussSOk,Joel Turner,2004-01-01,https://i.scdn.co/image/ab67616d0000b27311054352ca9dd2fc5bdda8b4,1,1,240093,https://p.scdn.co/mp3-preview/865b2dee3f850331de64490e97aa0a912a5a406c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUDM00500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.75,0.846,4.0,-5.241,0.0,0.0392,0.105,0.00218,0.0957,0.665,131.989,4.0,,Dream Dealers,"C 2004 Dream Dealers, P 2004 Dream Dealers",2611 +2612,spotify:track:7qnNnQTGxdzI2wZWpa0vDD,I Believe,"spotify:artist:4W4gYpQ2AQq7US2HZS13Qw, spotify:artist:5UgYIWTgZ9x2aPUrWkaWop","Blessid Union Of Souls, David Kershenbaum",spotify:album:7wPvUyod3Rxkcm830TmZIE,Home,spotify:artist:4W4gYpQ2AQq7US2HZS13Qw,Blessid Union Of Souls,1995-01-01,https://i.scdn.co/image/ab67616d0000b27352e7ae2dac5d4272fb23e88e,1,1,267447,https://p.scdn.co/mp3-preview/5cd40613158c430dc4e7e86335391aa77d2c44d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USCA29501785,spotify:user:bradnumber1,2021-11-20T11:13:36Z,"cowpunk,pop rock,post-grunge",0.491,0.458,11.0,-8.159,1.0,0.027,0.653,0.0,0.164,0.238,141.724,4.0,,Capitol Records,"C © 1995 Capitol Records Inc., P ℗ 1995 Capitol Records Inc.",2612 +2613,spotify:track:6f5ExP43esnvdKPddwKXJH,Better Days (NEIKED x Mae Muller x Polo G),"spotify:artist:5H6xmHXjsq98NLbEjuE29f, spotify:artist:1BEUkE2CSUgHTLSBMZdnFB, spotify:artist:6AgTAQt8XS6jRWi4sX7w49","NEIKED, Mae Muller, Polo G",spotify:album:2wcv0lHk5fUYyNGKugGa7q,Better Days (NEIKED x Mae Muller x Polo G),"spotify:artist:5H6xmHXjsq98NLbEjuE29f, spotify:artist:1BEUkE2CSUgHTLSBMZdnFB, spotify:artist:6AgTAQt8XS6jRWi4sX7w49","NEIKED, Mae Muller, Polo G",2021-09-24,https://i.scdn.co/image/ab67616d0000b2736b742298f7f36717855c4caf,1,1,160656,https://p.scdn.co/mp3-preview/d849e3ad098853384efd6562ea61fdde25519e78?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBUM72106057,spotify:user:bradnumber1,2022-04-27T22:15:13Z,"scandipop,uk contemporary r&b,uk pop,chicago rap,rap",0.717,0.671,0.0,-5.077,0.0,0.0337,0.0018,2.54e-06,0.0921,0.699,110.054,4.0,,Capitol Records UK / EMI,"C © 2021 Neiked Collective AB, under exclusive licence to Universal Music Operations Limited, P ℗ 2021 Neiked Collective AB, under exclusive licence to Universal Music Operations Limited",2613 +2614,spotify:track:3Y8WRvVlQHMvtBwaV4TGlJ,Hero,spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,spotify:album:0zktx87Zil6xHw7OWtXwIz,Escape,spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,2001,https://i.scdn.co/image/ab67616d0000b273c67c2a884eab590bf1e1485a,1,4,264240,https://p.scdn.co/mp3-preview/547e1e2db91ea9fe8ecc2e9bd523689bc070c8a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10120047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,latin pop,mexican pop",0.555,0.638,7.0,-5.555,1.0,0.0418,0.147,2.31e-05,0.107,0.149,151.933,4.0,,Universal Music Group,"C © 2001 Interscope Records, P ℗ 2001 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",2614 +2615,spotify:track:3G69vJMWsX6ZohTykad2AU,One,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:0ta5VdkJcpdVnNrn7g4cZe,Achtung Baby (Deluxe Edition),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1991-11-18,https://i.scdn.co/image/ab67616d0000b27337cd18af5725b9cad0a5ab53,1,3,276186,https://p.scdn.co/mp3-preview/e53bba655120cb3e8bc77f2afa387b595ef38a59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBUM71106457,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.392,0.534,0.0,-8.793,1.0,0.0369,0.245,0.00104,0.155,0.325,181.305,4.0,,Universal-Island Records Ltd.,"C © 2011 Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Island Records, a division of Universal Music Operations Limited",2615 +2616,spotify:track:1MBM7CyZbwJpVbbZJnHHRg,Summer Love,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:2scB1uhcCI1TSf6b9TCZK3,FutureSex/LoveSounds,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2006-09-12,https://i.scdn.co/image/ab67616d0000b273c6ba98fd3f3b396a6c6f7091,1,9,252973,https://p.scdn.co/mp3-preview/f88f807b95727dac05ae905e66f13cdf3abe8f29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USJI10600503,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.606,0.591,0.0,-7.228,0.0,0.087,0.0756,0.0,0.328,0.477,95.802,4.0,,Jive,P (P) 2006 Zomba Recording LLC,2616 +2617,spotify:track:1IAzD1muglOxOcPbUHs70R,Whatever You Like,spotify:artist:4OBJLual30L7gRl5UkeRcT,T.I.,spotify:album:5PfepkNWgRR2DI02Y8AawC,Paper Trail,spotify:artist:4OBJLual30L7gRl5UkeRcT,T.I.,2008-09-07,https://i.scdn.co/image/ab67616d0000b273b6d4478c6f91f1cb2d326c78,1,6,249533,https://p.scdn.co/mp3-preview/e3d5d7208d8e8d4f4e108b764553ead94c167c31?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USAT20803170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,gangster rap,hip hop,pop rap,rap,southern hip hop,trap",0.68,0.687,9.0,-6.162,0.0,0.0709,0.0161,0.0,0.261,0.467,150.053,4.0,,"Grand Hustle, LLC","C 2008 Grand Hustle, LLC | Cinq Recordings, P 2008 Grand Hustle, LLC | Cinq Recordings",2617 +2618,spotify:track:703RBHUEEi5c4o4YUXAM9Q,Chirpy Chirpy Cheep Cheep,spotify:artist:318uZJvyFSaPjaiYGsvjjm,Middle Of The Road,spotify:album:1YEgkibZlxFkSrC5t3RLWk,Best Of,spotify:artist:318uZJvyFSaPjaiYGsvjjm,Middle Of The Road,2002-05-28,https://i.scdn.co/image/ab67616d0000b273b88bde0ba0369433a44ddee2,1,1,177800,https://p.scdn.co/mp3-preview/ad2822010097969b8dc334349594d5f71cf20699?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,ITB007000563,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,nederpop",0.549,0.547,11.0,-8.681,0.0,0.0452,0.0916,2.26e-06,0.205,0.972,129.814,4.0,,RCA Camden,P (P) This compilation 2002 BMG UK & Ireland Ltd.,2618 +2619,spotify:track:5vk9PL1tTyWrQY3TqRq2Rg,Patches,spotify:artist:7lffJlv0nRl0sIsHDmo0SB,Clarence Carter,spotify:album:2AcHC18egTq63cyBagwINA,Patches,spotify:artist:7lffJlv0nRl0sIsHDmo0SB,Clarence Carter,1970,https://i.scdn.co/image/ab67616d0000b273af76314495cce70a05ce4b51,1,8,193826,https://p.scdn.co/mp3-preview/e87403420551ea8df812086748ab0a99ec59f4ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USAT20003371,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"soul,southern soul",0.639,0.544,4.0,-12.843,1.0,0.141,0.617,0.0,0.479,0.793,80.844,4.0,,Rhino Atlantic,"C © 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",2619 +2620,spotify:track:44ADyYoY5liaRa3EOAl4uf,Slide Away,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:0SHGFAL8WZUvpWb5iLPp6E,Slide Away,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2019-08-16,https://i.scdn.co/image/ab67616d0000b2732bba357383c6f9dbb5112392,1,1,233654,https://p.scdn.co/mp3-preview/d653a66f494256d889c0e45e05af49e5b1e121cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USRC11902256,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.53,0.538,5.0,-6.672,1.0,0.0335,0.17,2.83e-06,0.248,0.288,148.051,4.0,,RCA Records Label,"P (P) 2019 RCA Records, a division of Sony Music Entertainment",2620 +2621,spotify:track:5U8hKxSaDXB8cVeLFQjvwx,The Monster,"spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Eminem, Rihanna",spotify:album:3qGeRY1wt4rrLIt1YuSwHR,The Marshall Mathers LP2 (Deluxe),spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2013-11-05,https://i.scdn.co/image/ab67616d0000b2734f22365402a62c4f6e1adb44,1,12,250188,https://p.scdn.co/mp3-preview/dd22524a409b15fab0702e1c4306609b3c79a6c4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,1,USUM71314082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap,barbadian pop,pop,urban contemporary",0.784,0.85,9.0,-3.679,1.0,0.0691,0.0492,0.0,0.112,0.567,110.004,4.0,,Universal Music Group,"C © 2013 Aftermath Records, P ℗ 2013 Aftermath Records",2621 +2622,spotify:track:4WamMWxFi6ts3xkIhivF5c,Kitty,spotify:artist:1lZvg4fNAqHoj6I9N8naBM,The Presidents Of The United States Of America,spotify:album:5xxeAo8AVneH1OKO5vR604,The Presidents of The United States of America: Ten Year Super Bonus Special Anniversary Edition,spotify:artist:1lZvg4fNAqHoj6I9N8naBM,The Presidents Of The United States Of America,1995,https://i.scdn.co/image/ab67616d0000b273a82d10a00b1821ce323645c0,1,1,203133,https://p.scdn.co/mp3-preview/722be820c157bc0975dc7341b6bb10e4a5d5d7d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US35G0400021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,pop rock",0.498,0.801,1.0,-5.919,1.0,0.254,0.0799,0.0,0.051,0.55,92.126,4.0,,PUSA Music,"C (C) 2004 PUSA Music, P (P) 2004 PUSA Music",2622 +2623,spotify:track:1PWnAEQcbwQwK759otUbta,"Writing's On The Wall - From ""Spectre"" Soundtrack",spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:50bQvrNAFsAaIbqCcfD7FT,Writing's On The Wall,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2015-09-25,https://i.scdn.co/image/ab67616d0000b2737fb4266023aacbea214d8b56,1,1,278987,https://p.scdn.co/mp3-preview/bf3cb5ef872faafce3d59468a538dcd98a4cbfa2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBUM71505354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.261,0.302,5.0,-8.19,0.0,0.0339,0.769,2.57e-06,0.0863,0.0883,81.418,3.0,,PLG - Capitol,"C © 2015 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2015 Capitol Records, a division of Universal Music Operations Limited",2623 +2624,spotify:track:4qqArAiTPueDxIp7cf87h7,Final Song,spotify:artist:0bdfiayQAKewqEvaU6rXCv,MØ,spotify:album:2gcqSlK5xTxcpuLZ1iik3Z,Final Song,spotify:artist:0bdfiayQAKewqEvaU6rXCv,MØ,2016-05-13,https://i.scdn.co/image/ab67616d0000b273b7a02217229178b771ed0d4c,1,1,235826,https://p.scdn.co/mp3-preview/994ed3b99d5ef80d21fa2725ee15c2ca3e57a961?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBARL1600463,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,danish pop,electropop,pop dance",0.695,0.672,1.0,-6.109,0.0,0.0345,0.014,7.95e-05,0.0756,0.245,104.988,4.0,,Chess Club/RCA Victor,P (P) 2016 Sony Music Entertainment UK Limited,2624 +2625,spotify:track:7bA1DHtoJAvqyL42gHwOLa,Stuck On You,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0QVoYzGd1p8Z3ohEaM0lsc,Elvis 30 #1 Hits,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2002-09-24,https://i.scdn.co/image/ab67616d0000b273a0b8a1ce10fddbba6879262e,1,14,138826,https://p.scdn.co/mp3-preview/1fbbd93fc251ce0d66af0ca01c172b27d763f81d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USRC10200338,spotify:user:bradnumber1,2022-01-12T23:14:27Z,"rock-and-roll,rockabilly",0.649,0.678,7.0,-7.389,1.0,0.0463,0.775,0.000634,0.129,0.96,131.719,4.0,,RCA Records Label,P This Compilation (P) 2002 Sony Music Entertainment,2625 +2626,spotify:track:6QnFHieoch6U9J8zfv6hml,I Want Your Sex - Pts. 1 & 2 Remastered,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:34K1Kvskt9arWy8E1Gz3Lw,Faith,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1987-10-30,https://i.scdn.co/image/ab67616d0000b273b7a9a6a2bf311630d3fc6956,1,3,557293,https://p.scdn.co/mp3-preview/5610dff8669ef72f084830b5eb804db17efae0a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBARL1000857,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.812,0.6,10.0,-13.418,0.0,0.0538,0.00509,0.0248,0.0465,0.8,99.189,4.0,,Epic,P (P) 2010 Sony Music Entertainment UK Limited,2626 +2627,spotify:track:669UUGJqllYeW8SoL7lxmB,Sex & Candy,spotify:artist:7AQzXO3NPNQsI7oNu5rC3r,Marcy Playground,spotify:album:4pyyHKijB2gcv3L26Hn4YC,Sex And Candy,spotify:artist:7AQzXO3NPNQsI7oNu5rC3r,Marcy Playground,1998-01-01,https://i.scdn.co/image/ab67616d0000b273d54fcdd51ebc7eef79601975,1,1,175533,https://p.scdn.co/mp3-preview/5b05d24c99027c1382ac185dcdc77c54793c3b5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USEM39600079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,pop rock,post-grunge",0.663,0.549,2.0,-9.581,1.0,0.0248,0.246,0.0,0.124,0.655,80.414,4.0,,Capitol Records,"C © 1998 Capitol Records Inc., P ℗ 1998 Capitol Records Inc.",2627 +2628,spotify:track:76juDmdOF5jly6YlTcmSnJ,Get Shaky - Radio Edit,spotify:artist:5PbZIYWcDuRgEbMs7abSTH,Ian Carey Project,spotify:album:0hlWRccmVY0WHtrHF3vxxD,Get Shaky,spotify:artist:5PbZIYWcDuRgEbMs7abSTH,Ian Carey Project,2009-01-01,https://i.scdn.co/image/ab67616d0000b2736170945402fd265ec403b09b,1,1,204370,https://p.scdn.co/mp3-preview/c64be636b8a2c4fa9540e7a10e8c4e3cd1f1282c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUVC00824916,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hypertechno,0.711,0.747,6.0,-4.148,1.0,0.0958,0.0418,0.00482,0.217,0.647,127.972,3.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Vicious Australia, P ℗ 2009 Vicious Australia",2628 +2629,spotify:track:4KGNI037I8ZA6n3h6LYuey,Sway My Way (with Amy Shark),"spotify:artist:6cEuCEZu7PAE9ZSzLLc2oQ, spotify:artist:2DORQjKJVYZMx9uu82UGtT","R3HAB, Amy Shark",spotify:album:39k6qmMELqRXZTAKzcyBwe,Sway My Way (with Amy Shark),"spotify:artist:6cEuCEZu7PAE9ZSzLLc2oQ, spotify:artist:2DORQjKJVYZMx9uu82UGtT","R3HAB, Amy Shark",2022-06-10,https://i.scdn.co/image/ab67616d0000b273c86be5cce76f5a31141f655b,1,1,136842,https://p.scdn.co/mp3-preview/5bafa1d5c0650de76c5350f8fba14260493c384b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AEA2D2200239,spotify:user:bradnumber1,2022-07-13T00:34:32Z,"dutch house,edm,electro house,pop dance,progressive electro house,slap house,australian pop",0.764,0.757,9.0,-5.13,1.0,0.0307,0.408,5.28e-05,0.111,0.252,114.022,4.0,,Wonderlick,"P (P) 2022 CYB3RPVNK, Marketed and distributed by Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd",2629 +2630,spotify:track:5CPqOpKSk0QcJ3dGdaWcRB,On Hold,spotify:artist:3iOvXCl6edW5Um0fXEBRXy,The xx,spotify:album:2PXy9USZAoTSdtrxfkPBnl,I See You,spotify:artist:3iOvXCl6edW5Um0fXEBRXy,The xx,2017-01-13,https://i.scdn.co/image/ab67616d0000b2735f5dc0f546406ec5a96018bb,1,8,224133,https://p.scdn.co/mp3-preview/67a0699b8e6218627abe4c9160e93c00cf20916f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UK7MC1600065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,dream pop,indietronica",0.723,0.669,0.0,-6.784,1.0,0.0348,0.0522,0.192,0.109,0.35,125.051,4.0,,Young Turks Recordings,"C 2017 Young Turks Recordings, P 2017 Young Turks Recordings",2630 +2631,spotify:track:2e7mdvtdepwNHdEd0Y88My,Search for the Hero,spotify:artist:3lcbKPLl0ci2mKRdcP5Etf,M People,spotify:album:1TZ0Ji0shzMfWnBKDSsXse,Bizarre Fruit ( + Mixes),spotify:artist:3lcbKPLl0ci2mKRdcP5Etf,M People,1995-11-27,https://i.scdn.co/image/ab67616d0000b273ba5e123cfceb5bb880265415,1,2,249506,https://p.scdn.co/mp3-preview/68618ee06b8bb0ff03b08c135f594084a7f7465d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBARL9400324,spotify:user:bradnumber1,2024-05-07T06:48:35Z,"diva house,new romantic,new wave pop,sophisti-pop",0.637,0.727,3.0,-8.737,1.0,0.0394,0.0425,0.000111,0.0537,0.868,100.0,4.0,,M-People,P (P) 1998 BMG Entertainment International UK & Ireland Ltd,2631 +2632,spotify:track:3M9Apu4OZfylLTFKvgEtKa,Ritual,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:5CCwRZC6euC8Odo6y9X8jr","Tiësto, Jonas Blue, Rita Ora",spotify:album:0efvl0HsK2xxttk4IVOJry,Ritual,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:5CCwRZC6euC8Odo6y9X8jr","Tiësto, Jonas Blue, Rita Ora",2019-05-31,https://i.scdn.co/image/ab67616d0000b273211bcd4f50464c15d7c7f111,1,1,198995,https://p.scdn.co/mp3-preview/c7f563036219b33f88ec259c3b6e6dbf69170261?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,CYA111900146,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance,pop,pop dance,tropical house,uk dance,dance pop,pop,uk pop",0.647,0.726,3.0,-4.389,0.0,0.0552,0.157,0.0,0.0844,0.767,114.996,4.0,,"Universal Music, a division of Universal International Music BV","C © 2019 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings/Universal Music, a division of Universal International Music B.V., P ℗ 2019 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings/Universal Music, a division of Universal International Music B.V.",2632 +2633,spotify:track:1YIWYzMq84I46LmgX1vpye,Do You Know the Way to San Jose,spotify:artist:2JSjCHK79gdaiPWdKiNUNp,Dionne Warwick,spotify:album:5OxSUascU31jcJ0TlP3xXc,The Valley of the Dolls,spotify:artist:2JSjCHK79gdaiPWdKiNUNp,Dionne Warwick,1968,https://i.scdn.co/image/ab67616d0000b27364ec8eeee5a2b8817f8e28c0,1,6,179440,https://p.scdn.co/mp3-preview/5561e4264713b0de0060bd9890a9cd01e83e67e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USWSP0000033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,disco,quiet storm,soft rock,soul,vocal jazz",0.658,0.657,0.0,-7.792,1.0,0.0482,0.592,9.5e-06,0.08,0.888,157.269,4.0,,Rhino,"C © 2004 Warner Special Products. Manufactured and Marketed by Warner Strategic Marketing, P ℗ 2004 Warner Special Products. Manufactured and Marketed by Warner Strategic Marketing",2633 +2634,spotify:track:63UCz2y3eAmYkkuKZ9WnsT,The Son of Hickory Holler's Tramp,spotify:artist:3UGZh0dNyawtfTuETNOni8,O.C. Smith,spotify:album:3fV9R6pLKoS9OtANSbCbGt,Hickory Holler Revisted,spotify:artist:3UGZh0dNyawtfTuETNOni8,O.C. Smith,1968-05-15,https://i.scdn.co/image/ab67616d0000b2738f44782de8f039ddd8afd15c,1,1,233173,https://p.scdn.co/mp3-preview/4ee3c1a3f6099a8e652b1446290474c39e4748d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USSM16701492,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.657,0.562,5.0,-11.226,1.0,0.0609,0.63,6.85e-06,0.0748,0.887,145.326,4.0,,Columbia/Legacy,"P Originally released 1968. All rights reserved by Columbia Records, a division of Sony Music Entertainment",2634 +2635,spotify:track:0Qh38w01QRXK6KHIv0e3hb,What About Us,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:7hwhuEQT4Fp5bzwLlYZtiz,Beautiful Trauma,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2017-10-13,https://i.scdn.co/image/ab67616d0000b27300164c96548a622d34b39828,1,4,269600,https://p.scdn.co/mp3-preview/2af485dcb9d7635367136b17ee74b88d8e895229?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USRC11701586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.491,0.588,1.0,-6.177,1.0,0.0506,0.0281,2.01e-06,0.0906,0.193,113.608,4.0,,RCA Records Label,"P (P) 2017 RCA Records, a division of Sony Music Entertainment",2635 +2636,spotify:track:6AhUX0ObPgTnS5GGFrRidN,Seasons in the Sun,spotify:artist:09dDdtfi4mWLdC2BHOrIrl,Terry Jacks,spotify:album:1k7WkNHGPNPnri2tsowvtg,70s 100 Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-03-01,https://i.scdn.co/image/ab67616d0000b273871ab8561721e8967eda8269,1,21,205586,https://p.scdn.co/mp3-preview/d7a58d447e250820a75fc59b3a0707e99b3baa43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USAR17400171,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic uk pop",0.623,0.427,6.0,-14.58,1.0,0.05,0.443,0.0,0.1,0.899,99.169,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment,2636 +2637,spotify:track:1s82ixHhVQaMIHzoz1fU4z,It's Alright,spotify:artist:6lOC7lwSO1ql4Gc2Y3QObY,East 17,spotify:album:3hqfqH8PW0aFEvjQz3u42v,90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-03-25,https://i.scdn.co/image/ab67616d0000b2731865c8d45fbca4d9d1ca40d7,1,5,278733,https://p.scdn.co/mp3-preview/b038058124a1846f48e0726ef232f097f6340942?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP9300299,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop",0.604,0.94,5.0,-4.659,0.0,0.0368,0.00146,6.01e-05,0.118,0.376,129.944,4.0,,Rhino,"C 2016 Rhino UK, a division of Warner Music UK Ltd, P 2016 Rhino UK, a division of Warner Music UK Ltd",2637 +2638,spotify:track:4pPlVFUPPiT2Sm7pPlW8Or,Cinnamon,spotify:artist:6q63S1EK0rwrdYj1ktmxRO,Derek,spotify:album:5SJYVwu5guFuPjbX4xCTMa,19 Greatest Songs From The 60's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2005,https://i.scdn.co/image/ab67616d0000b273d4a56b23faf0dcce297892f2,1,3,161946,https://p.scdn.co/mp3-preview/88ee60b6eeeeb9eb9ce3366657513d4ae655ac57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0511229,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.604,0.742,9.0,-9.503,1.0,0.0459,0.0611,6.13e-06,0.259,0.923,163.861,4.0,,Gusto Records,"C 2005 Gusto Records Inc., P 2005 Gusto Records Inc.",2638 +2639,spotify:track:6RErDMariUoam3dPCwBKuL,Hawaii (Mono),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:11HAwlOWpKxJVbGIxnZ3qI,Surfer Girl (Mono & Stereo),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1963-09-16,https://i.scdn.co/image/ab67616d0000b273fa4b1c3f7c42c7d8d202d5c3,1,8,124800,https://p.scdn.co/mp3-preview/fd2b83c9b030e94ed06ed80099f7e8cbbf07fafb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USCA21201974,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.389,0.587,8.0,-6.75,1.0,0.038,0.641,0.0,0.174,0.961,144.463,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",2639 +2640,spotify:track:7k6IzwMGpxnRghE7YosnXT,Me & U,spotify:artist:27FGXRNruFoOdf1vP8dqcH,Cassie,spotify:album:0j1qzjaJmsF1FkcICf3hRu,Cassie (U.S. Version),spotify:artist:27FGXRNruFoOdf1vP8dqcH,Cassie,2006-08-07,https://i.scdn.co/image/ab67616d0000b273f4c4ee507c2558262869f415,1,1,192213,https://p.scdn.co/mp3-preview/4eca073e5603bd17307df236d5aebc7641c1caa2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USBB40610361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,pop rap,r&b,urban contemporary",0.803,0.454,8.0,-4.802,0.0,0.0294,0.352,0.0,0.0655,0.739,99.99,4.0,,Bad Boy Records,"C © 2006 Bad Boy Records LLC for the United States and WEA International Inc. for the world excluding the United States, South America and Central America, P ℗ 2006 Bad Boy Records, LLC for the United States and WEA International Inc. for the world excluding the United States, South America and Central Amercia.",2640 +2641,spotify:track:1uRKT2LRANv4baowBWHfDS,(We're Gonna) Rock Around The Clock,spotify:artist:3MFp4cYuYtTZe3d3xkLLbr,Bill Haley & His Comets,spotify:album:2vB7uVHcRU4dmHeFQCTkSK,Rock Around The Clock,spotify:artist:3MFp4cYuYtTZe3d3xkLLbr,Bill Haley & His Comets,1955-12-19,https://i.scdn.co/image/ab67616d0000b2739060a2c0a01366ee03274597,1,1,129893,https://p.scdn.co/mp3-preview/e0c8c95f061db7f75c533dff8aaa3740d3293e38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USMC15486163,spotify:user:bradnumber1,2024-01-02T03:29:15Z,"rock-and-roll,rockabilly",0.811,0.859,9.0,-6.317,1.0,0.168,0.205,3.73e-06,0.0761,0.784,90.686,4.0,,Geffen,"C © 1955 UMG Recordings, Inc., P ℗ 1955 UMG Recordings, Inc.",2641 +2642,spotify:track:6x5pI6n5feaWcP8jCdTk3E,Miss Sarajevo,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:3iMgLMyrIlw1AIRlLfUF7u,Songs From The Last Century,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1999-12-06,https://i.scdn.co/image/ab67616d0000b2732f6b7d9f0b6e91bd1a3a785e,1,6,310906,https://p.scdn.co/mp3-preview/56c1ac12c4dedc2998cf4a9109cdd88750f7cbac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBDFN9900006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.719,0.582,4.0,-11.091,1.0,0.0254,0.509,0.721,0.108,0.383,105.078,4.0,,Sony Music UK,P (P) 1999 Sony Music Entertainment UK Limited,2642 +2643,spotify:track:1l6M9DOVGGgamNxexwr7Gx,Who Knew,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:0RBX3mBilzQMI0VLpfcmo1,I'm Not Dead,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2006-03-18,https://i.scdn.co/image/ab67616d0000b273863ce6911167de60e606de49,1,2,208493,https://p.scdn.co/mp3-preview/e187153d84f4b0876b2d1218ae890f8817b4c66f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF20600021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.688,0.733,9.0,-4.569,1.0,0.0274,0.00462,0.0,0.0756,0.459,140.004,4.0,,LaFace Records,"P (P) 2006 RCA/JIVE Label Group, a unit of Sony Music Entertainment",2643 +2644,spotify:track:7jQBORjiir0pNSKGaHevq9,Mambo No. 5 (A Little Bit of...),spotify:artist:46lnlnlU0dXTDpoAUmH6Qx,Lou Bega,spotify:album:41GaNTO6AagOC6CEoATrPF,A Little Bit Of Mambo,spotify:artist:46lnlnlU0dXTDpoAUmH6Qx,Lou Bega,1999-08-24,https://i.scdn.co/image/ab67616d0000b27382c70ba8db99ec62b06ff5bd,1,1,220133,https://p.scdn.co/mp3-preview/c98bff86083944b2b50af1b5dfb04279d5342cde?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEH259900010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,latin pop,0.611,0.831,5.0,-5.394,0.0,0.394,0.0972,0.0,0.308,0.915,174.245,4.0,,RCA Records Label,P (P)1999 BMG Berlin Musik GmbH/Lautstark,2644 +2645,spotify:track:5MeZ3VxmtSv1O8PcekvLTn,Boom Boom Pow,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:5qf9TEgsN87fxwEKsJP2vu,The Beginning & The Best Of The E.N.D.,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2011-01-01,https://i.scdn.co/image/ab67616d0000b27308c63cf0aa88f47866a9df01,2,1,251426,https://p.scdn.co/mp3-preview/cf823925e9e910dabd1121790a42f9922b7158f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USUM71101057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.866,0.857,9.0,-5.894,1.0,0.0664,0.13,0.0017,0.13,0.408,130.049,4.0,,A&M,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",2645 +2646,spotify:track:03mMSLEJCPoGJwQhHpN5y0,Treat People With Kindness,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,spotify:album:7xV2TzoaVc0ycW7fwBwAml,Fine Line,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,2019-12-13,https://i.scdn.co/image/ab67616d0000b27377fdcfda6535601aff081b6a,1,11,197346,https://p.scdn.co/mp3-preview/ad234a22e0eb19414bad13048dab80bfefdb732b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM11912594,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.653,0.869,5.0,-3.725,1.0,0.0382,0.128,2.2e-05,0.046,0.697,122.017,4.0,,Columbia,"P (P) 2019 Erskine Records Limited, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",2646 +2647,spotify:track:2Y0FMEqL3L8GKbObB40qV1,Don't You Worry Child - Acoustic,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,spotify:album:0pwx1h911sq2aeAI9FqGXG,Animal,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,2013-01-18,https://i.scdn.co/image/ab67616d0000b273cb222bc6575a5d93f1324d14,1,5,185106,https://p.scdn.co/mp3-preview/31f483f5970a955c01473f85cdbf71adc3abf37c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAYE1202445,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,uk pop,viral pop",0.609,0.231,0.0,-9.709,1.0,0.0383,0.845,0.0,0.27,0.354,119.785,4.0,,Parlophone UK,"C © 2013 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2013 Parlophone Records Ltd, a Warner Music Group Company",2647 +2648,spotify:track:41Al942aUUeiSFlIsiWRa2,"Julie, Do Ya Love Me",spotify:artist:5Rsz3E1aovbqsmLQOxgK2y,Bobby Sherman,spotify:album:5D7xgDSUtkul8bFBrUBZOV,"With Love, Bobby",spotify:artist:5Rsz3E1aovbqsmLQOxgK2y,Bobby Sherman,1970,https://i.scdn.co/image/ab67616d0000b27355cb17fbcbe3e51ef97cf3c0,1,1,172837,https://p.scdn.co/mp3-preview/834424bf277a3e88b1980a7de52fc2fceb8ac6fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,US6R21358416,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.425,0.41,9.0,-15.881,1.0,0.0341,0.507,2.18e-06,0.3,0.664,82.177,4.0,,RKO Music,C (C) 2012 Copyright Group,2648 +2649,spotify:track:0aym2LBJBk9DAYuHHutrIl,Hey Jude - Remastered 2015,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:7vEJAtP3KgKSpOHVgwm3Eh,1 (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,2000-11-13,https://i.scdn.co/image/ab67616d0000b273582d56ce20fe0146ffa0e5cf,1,21,425653,https://p.scdn.co/mp3-preview/406c5ddd5f4dc479ce64824b750ad90b2e36e24d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBUM71505902,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.386,0.607,10.0,-7.7,1.0,0.0261,0.0112,1.38e-05,0.088,0.532,147.207,4.0,,UMC (Universal Music Catalogue),"C © 2015 Apple Corps Ltd., P This Compilation ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",2649 +2650,spotify:track:4RFqi5JQduiSlRZCVlUDGH,It Don't Come Easy,spotify:artist:6DbJi8AcN5ANdtvJcwBSw8,Ringo Starr,spotify:album:6zjenDV68SpvM3oEhorTDm,Ringo,spotify:artist:6DbJi8AcN5ANdtvJcwBSw8,Ringo Starr,1973-01-01,https://i.scdn.co/image/ab67616d0000b273493bd0f4bc0e1f3732a75c8d,1,12,184333,https://p.scdn.co/mp3-preview/eac450ebaf333f2fd0bfa5f2a6e098be4c227bab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAYE7100371,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,rock drums",0.609,0.624,7.0,-11.717,1.0,0.0292,0.0396,0.000168,0.277,0.691,123.191,4.0,,Parlophone,"C © 1973 EMI Records Ltd, P ℗ 1973 EMI Records Ltd",2650 +2651,spotify:track:2LcB304HDrCx8WVDEQn7CK,Good For You,"spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx, spotify:artist:13ubrt8QOOCPljQ2FL1Kca","Selena Gomez, A$AP Rocky",spotify:album:6N2tWPV39H8U5QUFHTC6cM,Good For You,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2015-06-22,https://i.scdn.co/image/ab67616d0000b27322e78048066d875f1f2fcfae,1,1,220679,https://p.scdn.co/mp3-preview/adfda3f9b3bf16151f347e78574aa6dd7185fe56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71508741,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop,east coast hip hop,hip hop,rap",0.48,0.681,5.0,-6.619,0.0,0.096,0.174,0.0,0.0783,0.198,88.772,4.0,,Universal Music Ltd.,"C (C) 2015 Interscope Records, P (P) 2015 Interscope Records",2651 +2652,spotify:track:37Tmv4NnfQeb0ZgUC4fOJj,Sultans Of Swing,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,spotify:album:2rCS6Xwx32V27pvgFzLzlT,Dire Straits,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,1978-10-07,https://i.scdn.co/image/ab67616d0000b273b49d49cc95564aede7998bb8,1,6,348400,https://p.scdn.co/mp3-preview/7a632817bbc6659ff64c07b44c86eaca66ef78ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBF089601041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock",0.733,0.794,5.0,-10.023,1.0,0.0307,0.0614,0.0367,0.33,0.931,148.174,4.0,,EMI,"C © 1978 Mercury Records Limited, P ℗ 1978 Mercury Records Limited",2652 +2653,spotify:track:3DamFFqW32WihKkTVlwTYQ,Fireflies,spotify:artist:07QEuhtrNmmZ0zEcqE9SF6,Owl City,spotify:album:3vf65wfk1EEjVhy6BjENsS,Ocean Eyes,spotify:artist:07QEuhtrNmmZ0zEcqE9SF6,Owl City,2009-01-01,https://i.scdn.co/image/ab67616d0000b273785d4e702802da500fc78b32,1,9,228346,https://p.scdn.co/mp3-preview/43dc49fcebcb6d83f3dd0570044bc20b1d01f5a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USUM70972068,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,pop",0.512,0.662,3.0,-6.797,1.0,0.0439,0.0275,0.0,0.118,0.472,180.114,4.0,,Universal Records,"C © 2009 Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2009 Universal Republic Records, a division of UMG Recordings, Inc.",2653 +2654,spotify:track:1qtpiwqMGGmngJEanFJth7,You're Beautiful,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,spotify:album:4tAS4B4lLHItu5E8QxcDCU,Yours,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,2015-10-23,https://i.scdn.co/image/ab67616d0000b273f00aeb88c92aa950bb62d929,1,8,179826,https://p.scdn.co/mp3-preview/f5d7c6010a962997c63209ca3d089b795977a089?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUBM01400019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.731,0.608,0.0,-4.436,1.0,0.0394,0.196,0.0,0.066,0.507,98.938,4.0,,DNA Songs/Sony Music Entertainment,P (P) 2015 DNA Songs/Sony Music Entertainment Australia Pty Ltd.,2654 +2655,spotify:track:5JaP31DJjoF1ljLzl3MvnS,Weapon Of Choice,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,spotify:album:05GPwRAsM5OvoICU7XChcS,Why Try Harder,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,2006-06-18,https://i.scdn.co/image/ab67616d0000b2735e4cbfe9ee4c58605d3e1007,1,4,219813,https://p.scdn.co/mp3-preview/7b277827ca1f344d29acd9a49b7e5c9668eeadc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBMQ0600006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica",0.619,0.952,8.0,-4.452,0.0,0.0578,0.134,0.788,0.184,0.949,195.938,4.0,,Skint Records,"C Skint Records, P Skint Records",2655 +2656,spotify:track:2xLMifQCjDGFmkHkpNLD9h,SICKO MODE,spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY,Travis Scott,spotify:album:41GuZcammIkupMPKH2OJ6I,ASTROWORLD,spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY,Travis Scott,2018-08-03,https://i.scdn.co/image/ab67616d0000b273072e9faef2ef7b6db63834a3,1,3,312820,https://p.scdn.co/mp3-preview/8229545ded5cacf393f62b17af653dfc8171fc85?cid=9950ac751e34487dbbe027c4fd7f8e99,True,81,USSM11806660,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rap,slap house",0.834,0.73,8.0,-3.714,1.0,0.222,0.00513,0.0,0.124,0.446,155.008,4.0,,Cactus Jack / Epic,"P (P) 2018 Cactus Jack Records, LLC under exclusive licensed to Epic Records, a division of Sony Music Entertainment",2656 +2657,spotify:track:4SYMibQ93bfzOk6uzkF0dO,Don't Turn Around,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,spotify:album:5UwIyIyFzkM7wKeGtRJPgB,The Sign,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,1993-12-24,https://i.scdn.co/image/ab67616d0000b273fda5556cb6981c3113df6175,1,2,230186,https://p.scdn.co/mp3-preview/efd10cf0603c3862dc250be062b2596dcf545f9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,SEVJH0803402,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,new wave pop",0.745,0.771,4.0,-8.231,0.0,0.0755,0.00104,0.387,0.0574,0.752,95.623,4.0,,Playground Music,"C 2014 Mega Records, a Division of Playground Music Scandinavia AB, P 1993 Mega Records, a Division of Playground Music Scandinavia AB",2657 +2658,spotify:track:7eT3MwJyoIu8Z5dzoiafTY,Hey Baby,"spotify:artist:0cQbJU1aAzvbEmTuljWLlF, spotify:artist:6UuT0BJZ9vF8Y1sxXnJl2s","No Doubt, Bounty Killer",spotify:album:6ENy8DWFCnqF4dfaeH6352,Rock Steady,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,2001-12-11,https://i.scdn.co/image/ab67616d0000b27320655547b89b7712ebc5554f,1,3,207040,https://p.scdn.co/mp3-preview/fcda4453320e91971a98a388c039cd2157739e6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10120513,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dance rock,permanent wave,pop rock,rock,dancehall,jamaican hip hop,reggae fusion",0.705,0.872,11.0,-3.557,0.0,0.125,0.0602,0.0,0.228,0.746,93.63,4.0,,Interscope,"C © 2001 Interscope Records, P ℗ 2001 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",2658 +2659,spotify:track:1mwHP1SM96OCfO7pgahMS2,Children,spotify:artist:2YVF0Ou5zIc4mpgtLIlGN0,Robert Miles,spotify:album:0lEHEHDsJLM2s0ZRre0d3m,90 Discomania,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015,https://i.scdn.co/image/ab67616d0000b273554a462ddd361a800a2cab13,1,12,453880,https://p.scdn.co/mp3-preview/808a4ebc6af841996e83daea527d51af1929e501?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,ITA169500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dream trance,eurodance,trance",0.613,0.547,0.0,-15.564,1.0,0.0361,0.00125,0.827,0.0633,0.207,137.065,4.0,,Smilax Records,"C 2015 Smilax Publishing Srl, P 2015 Smilax Publishing Srl / Radio 105 Network",2659 +2660,spotify:track:5HuqzFfq2ulY1iBAW5CxLe,Rather Be (feat. Jess Glynne),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:4ScCswdRlyA23odg9thgIO","Clean Bandit, Jess Glynne",spotify:album:2xVeccmEU0zklK4XSKiDCW,I Cry When I Laugh,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,2015,https://i.scdn.co/image/ab67616d0000b27339588f221861ee72b40b755c,1,9,227833,https://p.scdn.co/mp3-preview/19ad3c137ba31165a6f661bb17f78811729d8cad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAHS1300498,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,dance pop,pop,uk pop",0.799,0.587,11.0,-6.735,1.0,0.0378,0.163,2.24e-06,0.193,0.55,120.97,4.0,,Atlantic Records UK,"C © 2015 Atlantic Records UK Ltd, a Warner Music Group Company, P ℗ 2015 Atlantic Records UK Ltd, a Warner Music Group Company, except track 9 2013 Atlantic Records UK Ltd and track 13 2015 Disturbing London Records Limited under exclusive licence to Parlophone Records Limited",2660 +2661,spotify:track:6h5QhAr40fSzDWMexvb8v7,Kids,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:30SqWqmSU9ww0Btb1j4rpU,Oh My My,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2016-12-02,https://i.scdn.co/image/ab67616d0000b273ead3ac4a2de06ee6d794f9b4,1,4,238386,https://p.scdn.co/mp3-preview/3d12a24c77da73b89fe167c4d47f71b39bd61855?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71606688,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.591,0.731,2.0,-6.208,1.0,0.0428,0.0154,0.0,0.333,0.205,100.021,4.0,,Universal Music Group,"C © 2016 Mosley Music/Interscope Records, P ℗ 2016 Mosley Music/Interscope Records",2661 +2662,spotify:track:3PPDUkGHUJx2bxct6A3PBy,Spirit In The Sky,spotify:artist:7f8LNBVXN0h35veHrpxQFL,Norman Greenbaum,spotify:album:7EJVbA8JDIn4uc04F1m9IU,Spirit In The Sky,spotify:artist:7f8LNBVXN0h35veHrpxQFL,Norman Greenbaum,2001-01-01,https://i.scdn.co/image/ab67616d0000b2738ab6f530d434041ef1c8af8c,1,2,242893,https://p.scdn.co/mp3-preview/e9b3fa97ba2add5826f4613df1199f114100f730?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US3M50122902,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic rock,0.604,0.614,9.0,-7.087,1.0,0.0317,0.0853,0.00403,0.108,0.592,129.137,4.0,,Varese Sarabande,"C © 2001 Varese Sarabande Records, P ℗ 2001 Trans/Tone Productions, Inc., under exclusive license to Varese Sarabande Records, under exclusive license to Varese Sarabande Records",2662 +2663,spotify:track:0pBnOHQ2Ing6NpVvzM0XQF,"5, 6, 7, 8",spotify:artist:17UkABEasVRlCcIFZ3wHb7,Steps,spotify:album:3tnk5ETPqbPL37gMekGKk7,Step One,spotify:artist:17UkABEasVRlCcIFZ3wHb7,Steps,2000,https://i.scdn.co/image/ab67616d0000b27359b651ccc94624a9f79c2793,1,5,201773,https://p.scdn.co/mp3-preview/009738a49fe1817edb55d1681cbce7f8663f2f57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK9700239,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,europop,talent show",0.682,0.988,2.0,-3.859,1.0,0.0354,0.00403,0.606,0.284,0.801,140.037,4.0,,Jive,"P (P) 1997, 1998, 1999 Zomba Records Ltd.",2663 +2664,spotify:track:75GQIYnRaBg7ndHxhfYuQy,Go All The Way,spotify:artist:7Kkx4dACo6kFSeT9wjfVA5,Raspberries,spotify:album:03iBvX63qBQrMazNWU2iKv,Raspberries,spotify:artist:7Kkx4dACo6kFSeT9wjfVA5,Raspberries,1972,https://i.scdn.co/image/ab67616d0000b2731d99f5402883ad273f45ebf8,1,1,205346,https://p.scdn.co/mp3-preview/33192a4a7f6928f46505d3051df983da267efc66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USCA29100324,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,jangle pop,power pop",0.305,0.849,9.0,-4.892,1.0,0.0999,0.548,0.000134,0.0995,0.555,134.287,4.0,,Capitol Records,"C © 1998 Capitol Records Inc., P ℗ 1998 Capitol Records Inc.",2664 +2665,spotify:track:5VUoA3vZUDf1zBFZ7vgSR6,Way Love's Supposed To Be,spotify:artist:7EEIyejQGa1kWg5gSkrUMZ,Selwyn,spotify:album:6PGYdW97FpxCaY47W2t4cv,Meant To Be,spotify:artist:7EEIyejQGa1kWg5gSkrUMZ,Selwyn,2002-08-30,https://i.scdn.co/image/ab67616d0000b273ac12475be7f12bcb44162696,1,5,264946,https://p.scdn.co/mp3-preview/bc6fd4f1932ef823183c922e39c3b003598a2047?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUSM00200079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.859,0.495,2.0,-5.938,0.0,0.0538,0.0349,1.51e-05,0.0399,0.778,96.43,4.0,,Epic,P (P) 2002 Sony Music Entertainment (Australia) Pty. Ltd.,2665 +2666,spotify:track:4t2euPkyLUs5n5j1HDZ2Tr,Night Fever,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:684Fi6YqIP9xU9JeboAgVM,Greatest,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1979-01-01,https://i.scdn.co/image/ab67616d0000b27340b421ae6b0a1206390cc52a,1,2,212253,https://p.scdn.co/mp3-preview/a528a013ac5104940313aafc3a56c493efab03a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057790035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.733,0.795,1.0,-7.224,0.0,0.0249,0.0266,0.000948,0.083,0.892,109.122,4.0,,Universal Music Group,"C © 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",2666 +2667,spotify:track:4tsN44eY9zuBDPEyGTWO3Q,I Can't Stop Loving You,spotify:artist:1eYhYunlNJlDoQhtYBvPsi,Ray Charles,spotify:album:0BuH2TBfQTkPyMlYex6B1M,"Modern Sounds in Country and Western Music, Vols 1 & 2",spotify:artist:1eYhYunlNJlDoQhtYBvPsi,Ray Charles,2009-06-02,https://i.scdn.co/image/ab67616d0000b2739b818c9788120cf5cbd76922,1,11,256120,https://p.scdn.co/mp3-preview/b599d09e2e3332e99e2b5d6377f4e7b74adad76e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC4R0919286,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,jazz blues,piano blues,soul,soul blues,vocal jazz",0.311,0.327,5.0,-13.436,1.0,0.0349,0.785,0.0,0.295,0.359,79.326,3.0,,Concord Music Group Inc.,"C (C) 2009 Concord Music Group Inc., P (P) 2009 The Ray Charles Foundation under license to Concord Music Group",2667 +2668,spotify:track:0KQbn6gKpKdLlugDfxaF7r,Heartache All Over The World,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:6LJWMUVW2N2vvshxq3XCS6,Leather Jackets,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1986-10-15,https://i.scdn.co/image/ab67616d0000b273ab2dc36f68d728d19d37d62d,1,7,257106,https://p.scdn.co/mp3-preview/bb1c0d737cc62f83671c14b27d1c8178795229a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBALX0080015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.656,0.584,1.0,-14.135,1.0,0.0267,0.0275,0.000106,0.0398,0.837,140.991,4.0,,EMI,"C © 1986 Mercury Records Limited, P ℗ 1986 Mercury Records Limited",2668 +2669,spotify:track:5A5bLKdL5I3k3FTEQlAUw7,Following the Sun,"spotify:artist:2lJ6K4PTrrweXhRiqh1CZE, spotify:artist:1JPZHb1qziDJ05n0a1OvfW","SUPER-Hi, NEEKA",spotify:album:140Jok6j3tn10bqgUqcUVG,Following the Sun,"spotify:artist:2lJ6K4PTrrweXhRiqh1CZE, spotify:artist:1JPZHb1qziDJ05n0a1OvfW","SUPER-Hi, NEEKA",2021-08-20,https://i.scdn.co/image/ab67616d0000b2735486d91bd83f2c4e0b1669f5,1,1,205000,https://p.scdn.co/mp3-preview/4716f80c86c8f74117c12e2e9aa34ed8f8e45502?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,SE5BU2081473,spotify:user:bradnumber1,2022-04-27T22:11:11Z,,0.734,0.828,6.0,-4.433,0.0,0.033,0.398,0.0225,0.136,0.717,127.023,4.0,,BLENDED,"C 2021 BLENDED, P 2021 BLENDED",2669 +2670,spotify:track:2lthy5J9aawBOfeUy2ztcu,Gudbuy T'Jane,spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,spotify:album:0gAA09tbZAALAGebq8R3mW,Sladest (Expanded),spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,1973-09-28,https://i.scdn.co/image/ab67616d0000b27323840816dd15f4053bdd494d,1,3,212960,https://p.scdn.co/mp3-preview/ef4b431a4f4ca749663035d42f53b5609878a2c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKVD0600039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.565,0.964,9.0,-5.227,1.0,0.0569,0.00179,0.000497,0.0511,0.944,134.589,4.0,,BMG Rights Management (UK) Limited,"C © 2011 Whild John Ltd. under exclusive licence to BMG Rights Management (UK) Ltd., P ℗ 2011 Whild John Ltd. under exclusive licence to BMG Rights Management (UK) Ltd.",2670 +2671,spotify:track:6XxFTFauoIwxcEjeped3Iz,Suicide Blonde,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:7CJvhqb2PJq5fBcY6eKqjl,INXS Remastered,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b273114b2baa75317b81a8c9c7ca,7,1,232626,https://p.scdn.co/mp3-preview/acb6267ec43346e5954144d0c9988b64e79c0e83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAMX9000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.613,0.962,4.0,-5.36,0.0,0.0897,0.00228,0.00896,0.123,0.694,119.962,4.0,,Petrol Records,"C © 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",2671 +2672,spotify:track:62v8Z6G78pT8s8XScvjRfO,Polyester Girl,spotify:artist:6n3YUZcayLRuAunJUUelvz,Regurgitator,spotify:album:0JpVbXHKFpNszSRZVsXti6,Hits of the '90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-04,https://i.scdn.co/image/ab67616d0000b273e870de28c112072efbfeb328,1,36,210840,https://p.scdn.co/mp3-preview/84dad6bd472b7b7fcc4b8860cd07946571d9a1f4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,AUWA09800520,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.746,0.841,8.0,-6.189,1.0,0.0295,0.00652,9.9e-05,0.101,0.964,107.941,4.0,,WM Australia,"C 2016 Warner Music Australia, P 2016 Warner Music Australia",2672 +2673,spotify:track:2TDFIFnPOd3LohJhd1acOl,Circles,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:5SJkYrOgbOHRPTtvVm23FI,Birds Of Tokyo,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2010-07-23,https://i.scdn.co/image/ab67616d0000b2733d17fe2837c2f33e37296ae1,1,5,260626,https://p.scdn.co/mp3-preview/6aab25807736e3a0e331af3f0d330b0e432e71ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUYO01000027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.452,0.718,2.0,-7.595,0.0,0.0294,0.0115,0.00747,0.243,0.223,78.964,4.0,,Capitol Records,"C © 2010 Birds Of Tokyo Pty Ltd, P ℗ 2010 Birds Of Tokyo Pty Ltd, Manufactured and distributed by EMI Recorded Music Australia Pty Ltd",2673 +2674,spotify:track:3OEATvBsF5xbzQj5hzynfo,I Can Show You,spotify:artist:7zT7AVH9OzrLtJCnMscvkR,Tim & Jean,spotify:album:2kO89CzpTvtNKGPIoy8w8X,Like What,spotify:artist:7zT7AVH9OzrLtJCnMscvkR,Tim & Jean,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738ebcda683220eb49e9efdba3,1,3,189866,,False,0,AUUM71100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.711,0.535,5.0,-4.057,1.0,0.0404,0.0139,0.0,0.259,0.778,113.038,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Tim & Jean, P ℗ 2011 Tim & Jean",2674 +2675,spotify:track:68QSyFmQ7J0pUFACvTZonc,Here With Me,spotify:artist:5rScKX1Sh1U67meeUyTGwk,Michelle Branch,spotify:album:1agL7TUoZXr0Xd4Irievqi,The Spirit Room,spotify:artist:5rScKX1Sh1U67meeUyTGwk,Michelle Branch,2001-07-31,https://i.scdn.co/image/ab67616d0000b27311e62b6d4e56b060aa71e09d,1,6,205240,https://p.scdn.co/mp3-preview/ba017e15f2f04d8352e6278d88899967746e2fd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USMV20100085,spotify:user:bradnumber1,2021-11-20T11:37:37Z,"candy pop,dance pop,lilith,neo mellow,pop rock",0.496,0.648,0.0,-5.086,0.0,0.0305,0.0367,0.0335,0.177,0.79,200.948,4.0,,Maverick,"C © 2001 Maverick Recording Company, P ℗ 2001 Maverick Recording Company",2675 +2676,spotify:track:7dyluIqv7QYVTXXZiMWPHW,Numb / Encore,"spotify:artist:3nFkdlSjzX9mRTtwJOzDYB, spotify:artist:6XyY86QOPPrYVGvF9ch6wz","JAY-Z, Linkin Park",spotify:album:5NH94cATqx5fjBE794xZLy,Collision Course (Deluxe Version),"spotify:artist:3nFkdlSjzX9mRTtwJOzDYB, spotify:artist:6XyY86QOPPrYVGvF9ch6wz","JAY-Z, Linkin Park",2004,https://i.scdn.co/image/ab67616d0000b273d3acd0f2186daa8e4cb0f65b,1,4,205280,https://p.scdn.co/mp3-preview/97112e650b25718db2d84b7fdaf033758dc40c37?cid=9950ac751e34487dbbe027c4fd7f8e99,True,64,USWB10403681,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,rap,alternative metal,nu metal,post-grunge,rap metal,rock",0.685,0.803,2.0,-4.251,1.0,0.156,0.0601,0.0,0.546,0.799,107.005,4.0,,Warner Records/Roc-A-Fella,"C © 2004 Warner Records Inc. and Roc-A-Fella Records, LLC., P ℗ 2004 Warner Records Inc. and Roc-A-Fella Records, LLC.",2676 +2677,spotify:track:2MQO4QoBiuEBpgINIpewGn,Don't You Think It's Time,spotify:artist:0fVhP9fCtZ2f0Fy9Ie7Dh8,Bob Evans,spotify:album:6MfxjpSsWs2MAxHq95dVp2,Suburban Songbook,spotify:artist:0fVhP9fCtZ2f0Fy9Ie7Dh8,Bob Evans,2006-06-10,https://i.scdn.co/image/ab67616d0000b273fe18eaaa2fb6eb549997ad0a,1,1,198973,https://p.scdn.co/mp3-preview/5d25495f3eb84f857eeb35dcfc3af44e60bad583?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUEM00500032,spotify:user:bradnumber1,2023-04-10T09:21:25Z,"australian alternative rock,australian indie,perth indie",0.457,0.328,7.0,-10.845,1.0,0.0275,0.787,0.0,0.411,0.568,96.233,4.0,,Capitol,"C © 2006 EMI Recorded Music Australia Pty Ltd., P ℗ 2006 EMI Recorded Music Australia Pty Ltd.",2677 +2678,spotify:track:1ytTeSRAU6IRo2itVDwtPv,Creep,spotify:artist:4Z8W4fKeB5YxbusRsdQVPb,Radiohead,spotify:album:4wciNwfgbL74SJG9BFlf2R,The Best Of,spotify:artist:4Z8W4fKeB5YxbusRsdQVPb,Radiohead,2008-04-07,https://i.scdn.co/image/ab67616d0000b273824c66741c7a28fed0c4a376,1,4,238640,https://p.scdn.co/mp3-preview/713b601d02641a850f2a3e6097aacaff52328d57?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBAYE9200070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art rock,melancholia,oxford indie,permanent wave,rock",0.515,0.43,7.0,-9.935,1.0,0.0369,0.0102,0.000141,0.129,0.104,91.841,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",2678 +2679,spotify:track:3jagJCUbdqhDSPuxP8cAqF,Work It,spotify:artist:2wIVse2owClT7go1WT98tk,Missy Elliott,spotify:album:6DeU398qrJ1bLuryetSmup,Under Construction,spotify:artist:2wIVse2owClT7go1WT98tk,Missy Elliott,2002-11-12,https://i.scdn.co/image/ab67616d0000b27395d8583bba8f3cd794fa5bae,1,4,263226,https://p.scdn.co/mp3-preview/590b9c7307f4a3856128aa8d83f749548b81c8e5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,68,USEE10240730,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip hop,hip pop,neo soul,pop rap,r&b,rap,urban contemporary,virginia hip hop",0.884,0.677,1.0,-5.603,1.0,0.283,0.0778,0.0,0.0732,0.584,101.868,4.0,,Atlantic Records/ATG,"C © 2002 Elektra Entertaiment for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2002 Elektra Entertainment for the United States and WEA International Inc. for the world outside of the United States.",2679 +2680,spotify:track:3eekarcy7kvN4yt5ZFzltW,HIGHEST IN THE ROOM,spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY,Travis Scott,spotify:album:2uDTi1PlpSpvAv7IRAoAEU,HIGHEST IN THE ROOM,spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY,Travis Scott,2019-10-04,https://i.scdn.co/image/ab67616d0000b273e42b5fea4ac4c3d6328b622b,1,1,175720,https://p.scdn.co/mp3-preview/387b31c31b72f0c16e33d0c78bab869b0a0f4eb3?cid=9950ac751e34487dbbe027c4fd7f8e99,True,85,USSM11904276,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rap,slap house",0.598,0.427,7.0,-8.764,0.0,0.0317,0.0546,5.83e-06,0.21,0.0605,76.469,4.0,,Cactus Jack/Epic,"P (P) 2019 Cactus Jack Records, LLC under exclusive license to Epic Records, a division of Sony Music Entertainment.",2680 +2681,spotify:track:6sw9zrrhYvlzgVRF1ulaQS,Rumors - Main,spotify:artist:4vRSocKbGh7PsQrYRDVMEF,Lindsay Lohan,spotify:album:1gfG67HawKEVkpcIrb4T5W,Speak,spotify:artist:4vRSocKbGh7PsQrYRDVMEF,Lindsay Lohan,2004-01-01,https://i.scdn.co/image/ab67616d0000b27339cd27ccd53a14cde6366762,1,12,196306,https://p.scdn.co/mp3-preview/d93ab4406b5854e988a6c44339fd6f040e8d3c54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC7R0400027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.883,0.784,10.0,-5.646,0.0,0.0533,0.0171,0.0143,0.333,0.888,115.006,4.0,,Casablanca Records,"C © 2004 Casablanca Music, LLC, P ℗ 2004 Casablanca Music, LLC",2681 +2682,spotify:track:6IxMiaIUrvMQfC4HmmU7fk,Hit Me Up,spotify:artist:609EjZpxuIDFMzgk6mYF3G,Gia Farrell,spotify:album:1GXcXLX1wsk3OPp7nahdtF,Happy Feet Music From the Motion Picture,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2006-10-20,https://i.scdn.co/image/ab67616d0000b2739398bf466deb0ea4cc72d484,1,2,196373,https://p.scdn.co/mp3-preview/e9e7bece00c208a2c34a9f39e032e12fd8b3d1a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USAT20621605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.777,0.801,2.0,-7.144,1.0,0.259,0.00149,0.000427,0.0327,0.693,102.009,4.0,,Atlantic Records,"C © 2006 This compilation © 2006 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2006 This compilation p 2006 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",2682 +2683,spotify:track:40xhyfAPDoMtv494MfPevP,XO,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:2UJwKSBUz6rtW4QLK74kQu,BEYONCÉ [Platinum Edition],spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2014-11-24,https://i.scdn.co/image/ab67616d0000b2730d1d6e9325275f104f8e33f3,1,10,215946,https://p.scdn.co/mp3-preview/c6870b0f8c0f163164a1a906e987818248fb2884?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USSM11307807,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.47,0.793,0.0,-8.929,1.0,0.26,0.164,1.31e-06,0.313,0.216,170.1,4.0,,Parkwood Entertainment/Columbia,"P (P) 2013 Columbia Records, a Division of Sony Music Entertainment/(P) 2014 Columbia Records, a Division of Sony Music Entertainment",2683 +2684,spotify:track:6aFAozRW2yijxCsTIy9Ip1,Khe Sanh - 2011 Remastered,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:75cexXttNv85ytDgPxmo8j,The Best Of Cold Chisel - All For You - Deluxe,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2018-09-28,https://i.scdn.co/image/ab67616d0000b273eafbd3caad4935dec367006c,1,2,251911,https://p.scdn.co/mp3-preview/79b58a9120365bb71bd8bf9982b5c252400ffef9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUU741100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.465,0.911,7.0,-4.392,1.0,0.173,0.149,0.0,0.134,0.654,163.424,4.0,,Universal Music Australia & New Zealand (Distribution),"C © 2018 Cold Chisel Pty Limited, P This Compilation ℗ 2018 Cold Chisel Pty Limited",2684 +2685,spotify:track:4wNIkl5XGiAACjFBlDWuSd,What A Man Gotta Do,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,spotify:album:3SgvmlSsTrMuqICaOTlo0p,What A Man Gotta Do,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,2020-01-17,https://i.scdn.co/image/ab67616d0000b2737a73cc006248544e1a9882ea,1,1,180644,https://p.scdn.co/mp3-preview/4463e7915084dab1a053f198b8f5d31b764505aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USUG11904422,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.853,0.696,9.0,-7.206,1.0,0.0633,0.00852,1e-06,0.0773,0.324,113.026,4.0,,Republic Records,"C © 2020 Jonas Brothers Recording, Limited Liability Company, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Jonas Brothers Recording, Limited Liability Company, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",2685 +2686,spotify:track:49kjlZP49LMD1MrrcvXDET,For the First Time,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:5rtaHEtZdWQSrKJmuqPTB0,Science & Faith,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2010-09-13,https://i.scdn.co/image/ab67616d0000b273ecf57b6803b6f913217bf15c,1,2,252440,https://p.scdn.co/mp3-preview/a4d63c8536d79c81431869c7cd93c455508f219a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,65,GBARL1000776,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.388,0.633,9.0,-4.769,1.0,0.0275,0.0339,0.0,0.104,0.381,173.947,4.0,,Phonogenic,P (P) 2010 Sony Music Entertainment UK Limited,2686 +2687,spotify:track:0e69RzdXS6sfPFUn9qNzbN,Smoke on the Water - 1997 Remaster,spotify:artist:568ZhdwyaiCyOGJRtNYhWf,Deep Purple,spotify:album:0lTxLSQPNM9FYQAzWsN09C,The Very Best Of,spotify:artist:568ZhdwyaiCyOGJRtNYhWf,Deep Purple,1998-10-12,https://i.scdn.co/image/ab67616d0000b273ba2a0edb64155011fc5796e5,1,8,227853,https://p.scdn.co/mp3-preview/cbb27790f5c36d9bbe29c467dca581350edfe760?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,GBDXG0600241,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,metal,rock",0.636,0.682,0.0,-7.754,1.0,0.0261,0.0245,0.133,0.147,0.808,114.19,4.0,,Parlophone UK,"C © 1998 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1998 Parlophone Records Ltd, a Warner Music Group Company",2687 +2688,spotify:track:0YJxNXe6QrgcjXJNNnPPrN,Wasn't It Good,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,spotify:album:0NLEDUOmZQ4dvh0mIa7iQe,Don't Ask,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,1994-04-30,https://i.scdn.co/image/ab67616d0000b273ab4332b95c9425e87aa06238,1,4,312733,https://p.scdn.co/mp3-preview/6cf391a8e64f1b28346bd482cc850f375d0ad918?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUSM09500086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.574,0.253,2.0,-12.619,1.0,0.0299,0.758,9.98e-06,0.0668,0.329,122.069,4.0,,Epic,P 1994 Sony Music Entertainment (Australia) PTY. Ltd.,2688 +2689,spotify:track:3WEdk4BoEaQCSpqEA3JKXM,Ooh Aah (Just A Little Bit) - Remastered,spotify:artist:25tu0d8Po5c4IVXsZnXUU8,Gina G,spotify:album:21wdI31diHTOfUcl7xk5vn,"Amazing Beach Party, Vol. 1",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007,https://i.scdn.co/image/ab67616d0000b27309ca2b9c1399d80a6d77ee49,1,1,200399,https://p.scdn.co/mp3-preview/9c7388351ae47df7eb48f2ce1778e8f1eefc35da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,NLR880700038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,eurodance,europop,hip house,talent show",0.611,0.918,1.0,-7.6,1.0,0.0334,0.28,0.0153,0.0471,0.883,131.023,4.0,,ToCo,"C (C) 2010 ToCo International / ToCo Europe, P (P) 2007 Stuntgirl Music",2689 +2690,spotify:track:3izWDNkyJiUjHlRw43yjZc,You Don't Know What You've Got,spotify:artist:0j4ZVeMLH38uXEup39Hjvb,Ral Donner,spotify:album:4T9i6aKFiT80K8Vq0unfY9,You Don't Know What You've Got,spotify:artist:0j4ZVeMLH38uXEup39Hjvb,Ral Donner,2017-08-04,https://i.scdn.co/image/ab67616d0000b27374c58b5f3dad35978f2f46b4,1,1,134791,https://p.scdn.co/mp3-preview/df0002fc61c173c150d8831ca3b32cfc3b2274c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB8XC1417182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep adult standards,doo-wop",0.662,0.393,1.0,-10.342,0.0,0.038,0.853,0.0,0.188,0.599,130.725,4.0,,AP Digital,"C 2017 AP Digital, P 2017 AP Digital",2690 +2691,spotify:track:7hyCkd5KOL2euvHXqNdzwj,Heart Of Stone - Mono Version,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:0QP0YRvdUeJ5ZfiIO7tHfJ,Hot Rocks 1964-1971,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1971-12-20,https://i.scdn.co/image/ab67616d0000b273c1605cf569390b6ff9137b93,1,2,169133,https://p.scdn.co/mp3-preview/41865f67b136a816b7186993188fceac6d0c14d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176500010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.38,0.578,0.0,-11.346,1.0,0.0357,0.173,0.0237,0.102,0.562,187.352,3.0,,Universal Music Group International,"C © 2002 Universal Music International, P This Compilation ℗ 2002 ABKCO Records Inc.",2691 +2692,spotify:track:6J212smZzpeOCYQ9DITMSC,A Matter of Trust,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:2fRxSC6FtiAkhEDVZr2seH,The Bridge,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1986-07-28,https://i.scdn.co/image/ab67616d0000b273800f95060baebdd6aea0f4b9,1,3,248746,https://p.scdn.co/mp3-preview/ec7028665f2e9f836b317402d2f7b563100c50ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USSM18600312,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.738,0.662,2.0,-8.371,1.0,0.0268,0.0589,4.54e-05,0.306,0.88,110.304,4.0,,Columbia,"P (P) 1986 Columbia Records, a divsiion of Sony Music Entertainment",2692 +2693,spotify:track:0mUyMawtxj1CJ76kn9gIZK,Bad Day,spotify:artist:7xTcuBOIAAIGDOSvwYFPzk,Daniel Powter,spotify:album:4zhigAhPwqp43XVHBiVeQI,Daniel Powter,spotify:artist:7xTcuBOIAAIGDOSvwYFPzk,Daniel Powter,2005-02-22,https://i.scdn.co/image/ab67616d0000b273d5d74dc15f88ec6e02c7378d,1,3,233640,https://p.scdn.co/mp3-preview/139e6227aa7c8e119b1d2347909aa3f034ccb3db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USWB10401971,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,neo mellow,pop rock",0.599,0.785,3.0,-4.013,1.0,0.0309,0.448,0.00336,0.151,0.52,140.046,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2005 Warner Records Inc.",2693 +2694,spotify:track:59RSrxkSKSixEWBAIvE5Wa,Starships,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:6fABwONLawdFjkDpLx41j8,Pink Friday ... Roman Reloaded (Deluxe),spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2012-01-01,https://i.scdn.co/image/ab67616d0000b2734f0aae4e435a794e0e24d115,1,10,210626,https://p.scdn.co/mp3-preview/394733516cbfb50de32d089428542875e77251ed?cid=9950ac751e34487dbbe027c4fd7f8e99,True,56,USCM51200060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,queens hip hop,rap",0.747,0.716,11.0,-2.457,0.0,0.0751,0.135,0.0,0.251,0.751,125.006,4.0,,Nicki Minaj/Cash Money,"C © 2012 Cash Money Records Inc., P ℗ 2012 Cash Money Records Inc.",2694 +2695,spotify:track:636xfaLHapFBbRvxSbeo1J,Sky Diver,spotify:artist:3M5aUsJmembbwKbUx434lS,Daniel Boone,spotify:album:0oSM6uvAFxdVaqFpRZurUH,The Best Of Daniel Boone,spotify:artist:3M5aUsJmembbwKbUx434lS,Daniel Boone,2009-07-20,https://i.scdn.co/image/ab67616d0000b27333764a977e9ceff8d0b710de,1,8,157280,https://p.scdn.co/mp3-preview/0fc3cb8a4d48857fd8e805fe8cd272f2d2e4b13a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,GBQRF0705286,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.659,0.708,0.0,-13.235,1.0,0.0347,0.213,1.06e-05,0.0298,0.848,130.261,4.0,,Vanilla OMP,C 2009 One Media Publishing,2695 +2696,spotify:track:0qgsctXeEVnUwgGESn3vW4,Lonely Night (Angel Face),spotify:artist:7BEfMxbaqx6dOpbtlEqScm,Captain & Tennille,spotify:album:2LyvhqPwqD0fxMAaZLVZ43,Song Of Joy,spotify:artist:7BEfMxbaqx6dOpbtlEqScm,Captain & Tennille,1976-01-01,https://i.scdn.co/image/ab67616d0000b27344667138481aa69690f9d3c9,1,2,198200,https://p.scdn.co/mp3-preview/07a5a57f32026f04a8e559f5bf7ee0aec69adb33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USAM17600540,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock,yacht rock",0.593,0.698,0.0,-9.163,1.0,0.191,0.508,2.23e-05,0.0796,0.647,122.139,4.0,,A&M,"C © 1976 A&M Records, P ℗ 1976 A&M Records",2696 +2697,spotify:track:5uImkHXfTLkNYwemtGH7kB,We Found Love,"spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:7CajNmpbOovFoOoasH2HaY","Rihanna, Calvin Harris",spotify:album:0MYABBSxz6JqujXq2JBvsF,Talk That Talk (Deluxe),spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2012-07-18,https://i.scdn.co/image/ab67616d0000b273d2a528faf70452ecff59db4c,1,3,215226,https://p.scdn.co/mp3-preview/3067667dfd88c43dbe49d977a03d7158cd02a06b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUM71115507,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary,dance pop,edm,electro house,house,pop,progressive house,uk dance",0.734,0.766,1.0,-4.485,1.0,0.0383,0.025,0.00138,0.108,0.6,127.986,4.0,,Universal Music Group,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",2697 +2698,spotify:track:17fPLuA4TttWwfNcf833J1,Real Love x Sunchyme (feat. Jess Glynne) [VIP Mash-up],"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:3Eo78i1MPfle0XVjMvia8A, spotify:artist:4ScCswdRlyA23odg9thgIO","Clean Bandit, Dario G, Jess Glynne",spotify:album:47ZID0LqufsflsEdOtWk5H,Real Love x Sunchyme (feat. Jess Glynne) [VIP Mash-up],"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:3Eo78i1MPfle0XVjMvia8A","Clean Bandit, Dario G",2020-07-31,https://i.scdn.co/image/ab67616d0000b273324485f8dd3c5e9f47aa716f,1,1,219052,https://p.scdn.co/mp3-preview/37b6ad0cbbf23bb2a646583126ea8d00f37dcebc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAHS2000751,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,dream trance,eurodance,hip house,dance pop,pop,uk pop",0.598,0.833,2.0,-6.333,1.0,0.0497,0.0172,0.0,0.544,0.464,125.004,4.0,,Atlantic Records UK,"C An Atlantic Records UK release, © 2020 Warner Music UK Limited., P An Atlantic Records UK release., ℗ 2020 Warner Music UK Limited.",2698 +2699,spotify:track:2I1orqzL0kVWub9sMA39Zx,Love Me Harder,"spotify:artist:5HYNPEO2NNBONQkp3Mvwvc, spotify:artist:5jlYvfzER35jrTDaVtQaUy","Scott Bradlee's Postmodern Jukebox, Cristina Gatti",spotify:album:3fo1BZPICjF1bIQKk1ONfP,Love Me Harder,"spotify:artist:5HYNPEO2NNBONQkp3Mvwvc, spotify:artist:5jlYvfzER35jrTDaVtQaUy","Scott Bradlee's Postmodern Jukebox, Cristina Gatti",2014-11-25,https://i.scdn.co/image/ab67616d0000b273ca4363d9a627b36287b84601,1,1,203666,https://p.scdn.co/mp3-preview/da628ed85ab68bb6db1c540fe0c223ada69cd773?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDMT1400487,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"jazz cover,swing",0.343,0.567,10.0,-9.157,0.0,0.0444,0.704,0.0,0.109,0.844,199.8,4.0,,mudhutdigital.com,"C 2014 mudhutdigital.com, P 2014 mudhutdigital.com",2699 +2700,spotify:track:5hlWtrnVUyAze5WkxF9P56,Rude Boy,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:0lpi9UvopEQr9sVpFVv52w,Rated R,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2009-11-20,https://i.scdn.co/image/ab67616d0000b273b6f5afe63c28be5287e5f232,1,8,222920,https://p.scdn.co/mp3-preview/f8efdc86bcd76cbfe6ab687ce0d8f3d6d911abe8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70912459,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.563,0.75,11.0,-4.496,1.0,0.127,0.113,0.0,0.0788,0.812,173.906,4.0,,Universal Music Group,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",2700 +2701,spotify:track:6WlmA3HPHuNIR2mxI8LkZF,Hitchin' a Ride,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:3x2uer6Xh0d5rF8toWpRDA,Nimrod,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,1997-10-14,https://i.scdn.co/image/ab67616d0000b273da4f6706ae0f2501c61ce776,1,2,171466,https://p.scdn.co/mp3-preview/700255a23b271c7ee1e19ebbbd546151f63261da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USRE19700487,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.424,0.919,9.0,-4.629,1.0,0.1,0.00306,0.00674,0.123,0.684,163.732,4.0,,Reprise,"C © 1997 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S., P ℗ 1997 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S.",2701 +2702,spotify:track:1C2QJNTmsTxCDBuIgai8QV,Resistance,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,spotify:album:0eFHYz8NmK75zSplL5qlfM,The Resistance,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,2009-09-10,https://i.scdn.co/image/ab67616d0000b273b6d4566db0d12894a1a3b7a2,1,2,346693,https://p.scdn.co/mp3-preview/53cf742acf447cf406184d0027194aae18e6f0c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAHT0900321,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern rock,permanent wave,rock",0.467,0.774,9.0,-6.569,0.0,0.0485,0.0616,0.289,0.108,0.0916,135.006,4.0,,Warner Records,"C © 2009 Warner Music UK Limited, P ℗ 2009 Warner Music UK Limited",2702 +2703,spotify:track:5CLGzJsGqhCEECcpnFQA8x,"These Days (feat. Jess Glynne, Macklemore & Dan Caplen)","spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:4ScCswdRlyA23odg9thgIO, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:2U3FuHYvL3vhkbDAXm24Ep","Rudimental, Jess Glynne, Macklemore, Dan Caplen",spotify:album:2sjjFDjZSCYD5eBCsi0fDW,"These Days (feat. Jess Glynne, Macklemore & Dan Caplen)","spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:4ScCswdRlyA23odg9thgIO, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY","Rudimental, Jess Glynne, Macklemore",2018-01-19,https://i.scdn.co/image/ab67616d0000b273e9f49a29f00d42d7857794a5,1,1,210772,https://p.scdn.co/mp3-preview/42bed25b46185f77cd30b12cc772ec229c29ff51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBAHS1701239,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,dance pop,pop,uk pop,pop rap,seattle hip hop,neo soul,uk contemporary r&b",0.653,0.809,0.0,-4.057,1.0,0.0474,0.194,0.0,0.165,0.55,92.213,4.0,,Atlantic Records UK,"C © 2018 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company, P ℗ 2018 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company",2703 +2704,spotify:track:1OU4E4HiVjdak0mL4blVWT,Minefields,"spotify:artist:5NhgsV7qPWHZqYEMKzbYvo, spotify:artist:5y2Xq6xcjJb2jVM54GHK3t","Faouzia, John Legend",spotify:album:6Pp5U1A6z6OogrtQEL5Q89,Minefields,"spotify:artist:5NhgsV7qPWHZqYEMKzbYvo, spotify:artist:5y2Xq6xcjJb2jVM54GHK3t","Faouzia, John Legend",2020-11-05,https://i.scdn.co/image/ab67616d0000b273392d8760b03f0e926d66f82d,1,1,190605,https://p.scdn.co/mp3-preview/7f757fce5bb6b80809fe02a07954af59880773b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAT22006815,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,canadian pop,neo soul,pop,pop soul,urban contemporary",0.476,0.686,1.0,-5.019,0.0,0.11,0.183,0.0,0.0997,0.243,152.617,4.0,,Faouzia Music 2020,"C Atlantic Recording Corporation, © 2020 Artist Partner Group, Inc., P Atlantic Recording Corporation, ℗ 2020 Artist Partner Group, Inc.",2704 +2705,spotify:track:7gfh3jwjaSmGlB40uTMSeE,Reunited,spotify:artist:6qI4LTzMRpTxRzMZPvv2C6,Peaches & Herb,spotify:album:0qf42mS1W0tr6L7yaGor0Y,2 Hot!,spotify:artist:6qI4LTzMRpTxRzMZPvv2C6,Peaches & Herb,1978,https://i.scdn.co/image/ab67616d0000b27366ade54d4c31ad2d4fcc6021,1,3,345240,https://p.scdn.co/mp3-preview/4cd8bd2718a767ad127dfca11af478c465f179b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR37807173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,post-disco,quiet storm,soul",0.559,0.496,5.0,-9.437,0.0,0.0262,0.851,0.00616,0.147,0.36,75.69,4.0,,"Universal Records, a Division of UMG Recordings, Inc.","C (C) 1978 Universal Records, a Division of UMG Recordings, Inc., P (P) 1978 Universal Records, a Division of UMG Recordings, Inc.",2705 +2706,spotify:track:5jAgU2QzailYWu02FzkxsT,Undefeated,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:5JlOynCaRIZcfxilYXIpBa,Undefeated,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2012-05-22,https://i.scdn.co/image/ab67616d0000b2732ab4050ffaf28f543939693d,1,1,216280,https://p.scdn.co/mp3-preview/a07671bb6e2bd2be38e947ff37d2622cea1033d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USWB11200987,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.612,0.835,0.0,-4.158,1.0,0.0388,0.000474,0.0,0.293,0.549,129.915,4.0,,Beluga Heights/Warner Records,"C © 2012 Warner Records Inc., P ℗ 2012 Warner Records Inc.",2706 +2707,spotify:track:5g6rWTgfQZ368TJbVZXF6n,Rock This Party - Original,spotify:artist:5YFS41yoX0YuFY39fq21oN,Bob Sinclar,spotify:album:3jXjS9PtFtK7OcavzZuAae,Rock This Party (Everybody Dance Now),spotify:artist:5YFS41yoX0YuFY39fq21oN,Bob Sinclar,2009-01-01,https://i.scdn.co/image/ab67616d0000b2734ca41037e943761c017abc75,1,1,245463,https://p.scdn.co/mp3-preview/d29e2e739899dcd7ccecdf08a46d79f3abd09e1b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV00600477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,filter house",0.896,0.828,5.0,-3.661,0.0,0.116,0.0713,0.0,0.0519,0.884,128.004,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",2707 +2708,spotify:track:6dKJWmXeYPznzolqo4K6Uq,Hotel Room Service,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,spotify:album:5xLAcbvbSAlRtPXnKkggXA,Pitbull Starring In Rebelution,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2009-10-23,https://i.scdn.co/image/ab67616d0000b27326d73ab8423a350faa5d395a,1,8,237640,https://p.scdn.co/mp3-preview/734c9037565c69d9ef390a898ec56a95020e59eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USJAY0900063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop",0.851,0.634,1.0,-8.424,1.0,0.191,0.00828,0.000258,0.0687,0.773,125.999,4.0,,Mr.305/Polo Grounds Music/J Records,"P (P) 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",2708 +2709,spotify:track:4TmGtGkkmaoXRCvpOwDJoO,It's My Life,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0Bkb9wdEeOPBJnLYmQqVR2,Bon Jovi Greatest Hits - The Ultimate Collection (Int'l Deluxe Package),spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273dccc2df90ecd877a3bb7c999,1,3,224600,https://p.scdn.co/mp3-preview/83348d39a2fc16f67ed6724624987875c33912bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20000145,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.546,0.931,0.0,-3.025,0.0,0.0507,0.0295,1.67e-05,0.366,0.527,120.01,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",2709 +2710,spotify:track:7fOCk5J3V7rC914y1seAvs,Part Time Love,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:3nCMMolz1wMdEIwlf0SbZp,A Single Man,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1978-10-01,https://i.scdn.co/image/ab67616d0000b27304e98c42380448bd708234aa,1,6,196426,https://p.scdn.co/mp3-preview/3be5db0b2cd7829620d5cb8a133de356ce00d651?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBAMS7800123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.718,0.683,1.0,-9.685,1.0,0.0378,0.0431,0.0,0.0889,0.835,137.893,4.0,,EMI,"C © 1998 Mercury Records Limited, P This Compilation ℗ 1998 Mercury Records Limited",2710 +2711,spotify:track:1482bMc9Tn0uQxsJqV7eSP,Just Be Good To Me,spotify:artist:6pXCjxMOBcWtvULYkFPVW6,The S.O.S Band,spotify:album:6Q06918qdBmGSuMlfnERUb,On The Rise,spotify:artist:6pXCjxMOBcWtvULYkFPVW6,The S.O.S Band,1983-01-01,https://i.scdn.co/image/ab67616d0000b273b1fba4e2c1e997d5ac13e722,1,2,549000,https://p.scdn.co/mp3-preview/c4504399fcd33a6da0929ea8ede25708b24a0bd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USMO18382732,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,minneapolis sound,new jack swing,post-disco,quiet storm,soul,urban contemporary",0.608,0.909,2.0,-11.065,1.0,0.0315,0.021,0.125,0.0795,0.856,100.872,4.0,,Clarence Avant Catalog,"C © 1983 UMG Recordings, Inc., P ℗ 1983 UMG Recordings, Inc.",2711 +2712,spotify:track:6D4BtvbOjPNqLxxyrYlQRB,Chained To The Wheel - 2007 Remastered,spotify:artist:1iES8Ckei3eLmSBPo4vwU7,The Black Sorrows,spotify:album:0x7YahSUVKgynzoPkBZKgB,The Essential,spotify:artist:1iES8Ckei3eLmSBPo4vwU7,The Black Sorrows,2007-07-27,https://i.scdn.co/image/ab67616d0000b2739dcdd1960584bf4f0831b24c,1,3,237066,https://p.scdn.co/mp3-preview/3cc9bc337f72251a1c02f6d810de28cda63701f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUBM00700548,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.543,0.857,2.0,-4.877,1.0,0.042,0.043,4.34e-05,0.0729,0.544,119.817,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,2712 +2713,spotify:track:4hy4fb5D1KL50b3sng9cjw,Smells Like Teen Spirit,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,spotify:album:3SBQfBKAPWvCr4qse1uNis,Nirvana (International Version),spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,2002-01-01,https://i.scdn.co/image/ab67616d0000b273f118d2074e050cbc2e4533a0,1,5,300826,https://p.scdn.co/mp3-preview/91219ebc0d0505a1001c4b854f8b2451fcec95b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19942501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,permanent wave,rock",0.48,0.875,1.0,-5.898,1.0,0.0429,1.62e-05,0.000751,0.103,0.826,116.754,4.0,,Universal Music Group,"C © 2002 Geffen Records Inc., P ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",2713 +2714,spotify:track:39HGBiY1Q2jMqDP1eY30V4,The Drugs Don't Work - Remastered 2004,spotify:artist:2cGwlqi3k18jFpUyTrsR84,The Verve,spotify:album:0pygZ3lfsCkG1WmnWWq6a1,This Is Music: The Singles 92-98,spotify:artist:2cGwlqi3k18jFpUyTrsR84,The Verve,2004-01-01,https://i.scdn.co/image/ab67616d0000b2732cdc4b4e178dabf49c002280,1,10,305760,https://p.scdn.co/mp3-preview/4bb1ee4996843ae04ce82492e41129f4c09c0ee8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAAA0400533,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,permanent wave,rock,shoegaze",0.443,0.537,0.0,-8.643,1.0,0.0259,0.206,0.0,0.132,0.194,77.46,4.0,,Virgin Records,"C © 2004 Virgin Records Limited, P This Compilation ℗ 2004 Virgin Records Limited",2714 +2715,spotify:track:3eYrwDVVgzwQIx32llw6qO,Roar,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:5szxmEfjHdrXxMtX2uMExs,PRISM,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2013-01-01,https://i.scdn.co/image/ab67616d0000b273a88a948ee841b190743c4d7a,1,1,223546,https://p.scdn.co/mp3-preview/d72636d23beb0e3c283ec8150b8f50f9b5b0d8a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71308669,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.555,0.762,7.0,-4.805,0.0,0.0416,0.00538,6.03e-06,0.55,0.386,179.756,4.0,,Universal Music Group,"C © 2013 Capitol Records, LLC, P ℗ 2013 Capitol Records, LLC",2715 +2716,spotify:track:4PIVn5SSEfEe9nTxvn6cQe,Suffer,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:5t4A7Loq1pKRFlkBOs1O2O,Some Type of Love,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2015-05-01,https://i.scdn.co/image/ab67616d0000b273e7bd365fb962fb7882a81d24,1,4,210303,https://p.scdn.co/mp3-preview/392cfe548658a7d0f7836360d2d0c0c24c95e4a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USAT21501195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop",0.572,0.447,3.0,-7.218,0.0,0.0438,0.756,0.0,0.104,0.549,175.918,3.0,,Artist Partner,"C © 2015 Artist Partner Group, Inc, P ℗ 2015 Artist Partner Group, Inc",2716 +2717,spotify:track:1gihuPhrLraKYrJMAEONyc,Feel So Close - Radio Edit,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,spotify:album:7w19PFbxAjwZ7UVNp9z0uT,18 Months,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2012-10-29,https://i.scdn.co/image/ab67616d0000b273dcef905cb144d4867119850b,1,3,206413,https://p.scdn.co/mp3-preview/b8372b1a0b8d09a5004388a654f29bef6bc37021?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,GBARL1100748,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance",0.707,0.924,7.0,-2.842,1.0,0.031,0.000972,0.00703,0.204,0.919,127.937,4.0,,Columbia,P (P) 2012 Sony Music Entertainment UK Limited,2717 +2718,spotify:track:0ChsqhMkQohGqCfCtDrceP,I'll Find My Way Home,spotify:artist:5gS1uXayWA0WJPgcRqNIae,Jon & Vangelis,spotify:album:0lBhj4G2lVi5ZOcY8BuTQT,The Friends Of Mr Cairo,spotify:artist:5gS1uXayWA0WJPgcRqNIae,Jon & Vangelis,1981-01-01,https://i.scdn.co/image/ab67616d0000b2735c8bf3f4dac21edd11e5fbbe,1,1,271466,https://p.scdn.co/mp3-preview/53dda85a9d041383c995d69d3be5f5aed189f6e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLA028100080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,progressive rock,symphonic rock",0.538,0.402,0.0,-15.427,1.0,0.0311,0.185,0.00089,0.0697,0.723,171.656,4.0,,Polydor,"C © 1981 Universal International Music B.V., P ℗ 1981 Universal International Music B.V.",2718 +2719,spotify:track:37tzoWY1ubBQKGXiWdO5Qv,Where Do You Go,spotify:artist:2tUGlReCZRMoRgl0IS79i3,No Mercy,spotify:album:5CQHiljabLGvn72iQk0wsZ,My Promise,spotify:artist:2tUGlReCZRMoRgl0IS79i3,No Mercy,1996-10-05,https://i.scdn.co/image/ab67616d0000b27343e57c8b3faab1b58e3a161b,1,1,272093,https://p.scdn.co/mp3-preview/bea09d04cf474a61a1684607d90a20c9dbd90d86?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,DED169600128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,eurodance",0.734,0.828,10.0,-11.018,0.0,0.0318,0.0346,0.118,0.071,0.964,127.06,4.0,,MCI,P (P) 1996 MCI,2719 +2720,spotify:track:1pNcUexH7BdMFWFaxV3ltq,It’s My Birthday,"spotify:artist:085pc2PYOi8bGKj0PNjekA, spotify:artist:0gizY5GNZ4QV1vGB1bg0Gi","will.i.am, Cody Wise",spotify:album:51dChWw1VtlWDD6fssP0AR,It’s My Birthday,spotify:artist:085pc2PYOi8bGKj0PNjekA,will.i.am,2014-01-01,https://i.scdn.co/image/ab67616d0000b2734b8bfb5fc950bcf83741b65e,1,1,252613,https://p.scdn.co/mp3-preview/9ea2c911c23190693b94ccd2743883f09d38c462?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USUM71406587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.754,0.715,5.0,-4.434,0.0,0.0525,0.0822,0.0,0.0891,0.405,100.001,4.0,,Interscope,"C © 2014 Interscope Records, P ℗ 2014 Interscope Records",2720 +2721,spotify:track:5Db9VIdDsN5yu3Eu7CT0i4,Stay With Me,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:2Jg7JZ0ZXOGje1bkq7CVgK,In The Lonely Hour,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2014-01-01,https://i.scdn.co/image/ab67616d0000b2734fb7193968e58e51c3db3ef4,1,3,172723,https://p.scdn.co/mp3-preview/a6673e86dccaf0232ab041314ec716e03e2f34fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71308833,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.479,0.419,0.0,-6.517,1.0,0.0389,0.568,0.000217,0.11,0.186,85.014,4.0,,Capitol Records,"C © 2014 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2014 Capitol Records, a division of Universal Music Operations Limited",2721 +2722,spotify:track:19RevBdb9MKUaBIvxSbGd4,I Want You To Know,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","Zedd, Selena Gomez",spotify:album:453l82SGKWDAlOpKkUSX1u,True Colors,spotify:artist:2qxJFvFYMEDqd7ui6kSAcq,Zedd,2015-05-15,https://i.scdn.co/image/ab67616d0000b273ae6c3db8dad81e80f36dca33,1,2,239999,https://p.scdn.co/mp3-preview/8b846e10c22721ef03143ba302d0bc1c49b27338?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71502344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,pop,post-teen pop",0.58,0.846,9.0,-2.876,0.0,0.0573,0.00537,6.62e-06,0.145,0.366,129.998,4.0,,Universal Music Group,"C © 2015 Interscope Records, P ℗ 2015 Interscope Records",2722 +2723,spotify:track:5VGlqQANWDKJFl0MBG3sg2,Use Somebody,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:5CZR6ljD0x9fTiS4mh9wMp,Only By The Night,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2008-09-23,https://i.scdn.co/image/ab67616d0000b2732519d01c0cca06f134eeadd8,1,4,230760,https://p.scdn.co/mp3-preview/6b0e4d00b02ff767f436c2c43f9f8b2a12b35472?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USRC10800301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.276,0.715,0.0,-5.356,1.0,0.0432,0.00552,0.000417,0.201,0.173,137.028,4.0,,RCA/Legacy,"P (P) 2008 RCA Records, a division of Sony Music Entertainment",2723 +2724,spotify:track:67kfVq3npkjohNZr1j2HF6,The Loved One,spotify:artist:7gZMm6pQpLhYgWN2cABBP9,The Loved Ones,spotify:album:6o24C44s73co75GFoIZfwq,Magic Box,spotify:artist:7gZMm6pQpLhYgWN2cABBP9,The Loved Ones,1995-01-01,https://i.scdn.co/image/ab67616d0000b2730216a1458c48680240d64416,1,1,173866,https://p.scdn.co/mp3-preview/83aed2392ac43b6dffe80fa3f6213f7f1a169f88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUUM71002187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.49,0.496,4.0,-11.959,1.0,0.0293,0.761,0.00237,0.152,0.682,100.063,4.0,,Universal Music Australia Pty. Ltd.,"C © 1995 Polygram Pty Ltd, P ℗ 1995 Polygram Pty Ltd",2724 +2725,spotify:track:2oTDOIAdsxPTE7yAp4YOcv,Jump Around,spotify:artist:0AuW7OCyKfFrsMbtHrYgIV,House Of Pain,spotify:album:6aQe8pwmbv89DodASvyuSq,House Of Pain,spotify:artist:0AuW7OCyKfFrsMbtHrYgIV,House Of Pain,1992,https://i.scdn.co/image/ab67616d0000b273348ca7b868944b4b35bf485d,1,2,214946,https://p.scdn.co/mp3-preview/93b149a75e3e77d0663c662389cf7f46d323a6ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USTB10300119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gangster rap,hip hop,rap rock,west coast rap",0.854,0.71,4.0,-6.32,0.0,0.0793,0.0113,8.72e-05,0.166,0.818,106.894,4.0,,Rhino,"C 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",2725 +2726,spotify:track:6qNALlmZa1ESnCxJmXE1K9,The Way I Am,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:0mZIUXje90JtHxPNzWsJNR,Voicenotes,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2018-05-11,https://i.scdn.co/image/ab67616d0000b273897f73256b9128a9d70eaf66,1,1,186080,https://p.scdn.co/mp3-preview/e2e37ac0c3b0a15d1c094d12145aea8ea00a64c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USAT21702277,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop",0.755,0.769,10.0,-5.658,0.0,0.186,0.314,2.38e-06,0.0628,0.642,114.966,4.0,,Artist Partner,"C © 2018 Artist Partner Group, Inc. for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P ℗ 2018 Artist Partner Group, Inc. for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",2726 +2727,spotify:track:3Q7YgcttqbsbiesCOkrdwW,P.T. 109,spotify:artist:1RaDKTFXuy0qA8YV1h9SwC,Jimmy Dean,spotify:album:3WQ7XCQXIza41GWKP4ISdK,Jimmy Dean'S Greatest Hits,spotify:artist:1RaDKTFXuy0qA8YV1h9SwC,Jimmy Dean,1994-05-05,https://i.scdn.co/image/ab67616d0000b273cb3383a8f8b9c759253a24cf,1,8,191333,https://p.scdn.co/mp3-preview/d9a6a9b8dd283b4ca5bf4b2611f35bff6d370b39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USSM16200216,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,nashville sound",0.756,0.597,2.0,-12.568,1.0,0.164,0.577,0.0,0.057,0.841,93.784,4.0,,Columbia/Legacy,P 1994 (P) SONY BMG MUSIC ENTERTAINMENT,2727 +2728,spotify:track:2cDpmdTWch4yBrTyl5Qmca,Heard 'Em Say,"spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:4bYPcJP5jwMhSivRcqie2n","Kanye West, Adam Levine",spotify:album:4yJqrqT2BpuXLj5BMJlAXR,Late Registration,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2005-08-30,https://i.scdn.co/image/ab67616d0000b273cdcd1e0c30e10686af48baad,1,2,203733,https://p.scdn.co/mp3-preview/23705c47d2542b3f38b82c1de899fbf5bed884d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USUM70502837,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap,deep talent show",0.741,0.703,7.0,-8.321,0.0,0.17,0.0557,0.0431,0.129,0.537,95.058,4.0,,Roc-A-Fella,"C © 2005 UMG Recordings, Inc., P ℗ 2005 UMG Recordings, Inc.",2728 +2729,spotify:track:6914ZWSnIGPlQkNgQldTmT,All Loved Up,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:7M7CdUhAKyLmCFLY8z4b0P,Love Monster,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2018-07-13,https://i.scdn.co/image/ab67616d0000b273d8b44ee2b3636fd5e9287eac,1,3,210000,https://p.scdn.co/mp3-preview/0a53d21aaedcb0ab69f6bdab86be87e6816a98ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUBM01800139,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.565,0.603,9.0,-6.33,1.0,0.177,0.0264,4.02e-05,0.0738,0.171,177.996,4.0,,Wonderlick,P (P) 2018 Amy Shark under exclusive license to the Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd.,2729 +2730,spotify:track:49COPp81lGS9Hl9OwKlsKl,Polaroid,"spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:5pUo3fmmHT8bhCyHE52hA6, spotify:artist:1cZQSpDsxgKIX2yW5OR9Ot","Jonas Blue, Liam Payne, Lennon Stella",spotify:album:2xZSrcBmvMw9Y8hac6xU7L,Blue,spotify:artist:1HBjj22wzbscIZ9sEb5dyf,Jonas Blue,2018-11-09,https://i.scdn.co/image/ab67616d0000b2735b6bcc59c3562a6f362344c6,1,8,193377,https://p.scdn.co/mp3-preview/1d9e825c49180d0a5e83c614b8fd55a8b743cecc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBUM71806109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop dance,tropical house,uk dance,pop,alt z,canadian pop,uk pop",0.652,0.898,7.0,-4.481,0.0,0.0361,0.29,0.0,0.073,0.472,114.043,4.0,,Positiva,"C © 2018 Universal Music Operations Limited, P ℗ 2018 Universal Music Operations Limited",2730 +2731,spotify:track:0dhSRBTVs4kBQ9nyVFqxZH,Believe Again,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:7z8Vq0eUnTxzloU5e2ONWb,Delta,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2007-10-20,https://i.scdn.co/image/ab67616d0000b2733f15a84fea6328c29e9b8a6e,1,1,346760,https://p.scdn.co/mp3-preview/dcb7d2df52a0e2a5d66f42c9e5e383eabb2db144?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00700771,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.375,0.675,2.0,-5.338,0.0,0.0313,0.414,0.000192,0.306,0.157,121.956,4.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,2731 +2732,spotify:track:595cpLYdeN3s7C4CqJbZus,Joy,spotify:artist:6v0kvTi9pOI2ZFrWGQhdsc,Apollo 100,spotify:album:5Vh4H5yxqnzIBfCAws53Hb,Boogie Nights #2 (More Music From The Original Motion Picture),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1998-01-01,https://i.scdn.co/image/ab67616d0000b273e391545e9e1b5b672524dc70,1,11,163826,https://p.scdn.co/mp3-preview/7d7178086cd1b13f1e279ef1fd010361a488efe6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCE30800002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.491,0.944,7.0,-7.596,1.0,0.0349,0.0007,0.934,0.092,0.915,130.887,4.0,,Capitol Records,"C © 1998 Capitol Records, LLC, P This Compilation ℗ 1998 Capitol Records, LLC",2732 +2733,spotify:track:7dwjD9FPK0bFh3TqTWFV8U,Albatross,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:4eBD6gIQk7KA2GTG5HzXes,Fleetwood Mac's Greatest Hits,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1989-03-10,https://i.scdn.co/image/ab67616d0000b273f0bd91a0cef3b9f2ff45c2e9,1,7,188000,https://p.scdn.co/mp3-preview/05a7547fd94315852a38531aca7f98d0bf4a23a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBBBN6800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.232,0.0228,6.0,-25.42,0.0,0.0382,0.894,0.91,0.121,0.23,203.341,3.0,,Columbia,P 1989 Sony Music Entertainment (Holland) B.V.,2733 +2734,spotify:track:3DQVgcqaP3iSMbaKsd57l5,I Bet You Look Good On The Dancefloor,spotify:artist:7Ln80lUS6He07XvHI8qqHH,Arctic Monkeys,spotify:album:50Zz8CkIhATKUlQMbHO3k1,"Whatever People Say I Am, That's What I'm Not",spotify:artist:7Ln80lUS6He07XvHI8qqHH,Arctic Monkeys,2006-01-29,https://i.scdn.co/image/ab67616d0000b2736b3fa88bdd4af566fbbf2bbf,1,2,173680,https://p.scdn.co/mp3-preview/d6470117c2cb86607c7b0837fe68032581b705bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBCEL0501181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,permanent wave,rock,sheffield indie",0.535,0.948,6.0,-4.19,0.0,0.0356,0.00225,0.0,0.376,0.778,103.183,4.0,,Domino Recording Co,"C 2005 Domino Recording Co Ltd, P 2005 Domino Recording Co Ltd",2734 +2735,spotify:track:3tccdU3Wa9Q5gCFTJX8V8z,Mickey's Monkey - Album Version (Stereo),spotify:artist:6TqQLejnHXMGr7KcegxUND,The Miracles,spotify:album:11xYnU5knKe5s3RTiV6aFO,Doin' Mickey's Monkey,spotify:artist:6TqQLejnHXMGr7KcegxUND,The Miracles,1963-01-01,https://i.scdn.co/image/ab67616d0000b273c1b6f707cf0b3faf48c313d5,1,1,165760,https://p.scdn.co/mp3-preview/ebe2949966ebd83ae950d4e587897b76596a9d72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16382672,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,motown,quiet storm,rhythm and blues,soul,southern soul",0.697,0.817,10.0,-11.149,0.0,0.0657,0.493,0.000407,0.323,0.736,95.092,4.0,,Universal Music Group,"C © 1963 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1963 Motown Records, a Division of UMG Recordings, Inc.",2735 +2736,spotify:track:1ZuErf9aFx2oHLjfPkA35r,Hard Love,spotify:artist:15xcqj9BY2ZBoJujwF91CQ,Ellie Drennan,spotify:album:36pOtmGFHx8J8Mi5G6Kg3R,Hard Love,spotify:artist:15xcqj9BY2ZBoJujwF91CQ,Ellie Drennan,2016-06-24,https://i.scdn.co/image/ab67616d0000b273914b07c1b6e0588d2e38d509,1,1,227653,https://p.scdn.co/mp3-preview/9b95e45c9ee5f0fad1b3fb012076c7bd036bdf73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71600527,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.628,0.603,9.0,-3.606,1.0,0.0316,0.226,0.0,0.122,0.664,132.968,4.0,,Universal Music Group,"C © 2016 Universal Music Australia Pty Ltd., P ℗ 2016 Universal Music Australia Pty Ltd.",2736 +2737,spotify:track:3BbRTP72BTojWE1hWN5bNf,Lonely Weekends,spotify:artist:218kRJZ7FJs0hWIk8Ynzhz,Charlie Rich,spotify:album:3hCXSQU3qqoeOUHpsKrnfB,The Very Best of Charlie Rich - Lonely Weekends,spotify:artist:218kRJZ7FJs0hWIk8Ynzhz,Charlie Rich,1998-01-01,https://i.scdn.co/image/ab67616d0000b273919ec1598f649b76f3f122ec,1,1,130080,https://p.scdn.co/mp3-preview/402088bb3148c7f6531b69fef1bf4619641d29d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSE60270250,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,country,nashville sound",0.41,0.836,5.0,-8.876,1.0,0.0975,0.723,0.000227,0.128,0.599,183.15,4.0,,Collectables Records,"C 1998 Sun Label Group, LLC, P 1998 Sun Label Group, LLC",2737 +2738,spotify:track:60v1Msg47yJwXDzap8PYe1,Empire State Of Mind,"spotify:artist:3nFkdlSjzX9mRTtwJOzDYB, spotify:artist:3DiDSECUqqY1AuBP8qtaIa","JAY-Z, Alicia Keys",spotify:album:4DPwvAiyXJFNuOiUFpTqqT,The Hits Collection Volume One (Edited Version),spotify:artist:3nFkdlSjzX9mRTtwJOzDYB,JAY-Z,2010-11-22,https://i.scdn.co/image/ab67616d0000b273fe170ef2d2ff17cab5e324b3,1,9,277280,https://p.scdn.co/mp3-preview/a61dbe2eb89ab388a3ba6d07ce66f94866c76778?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USJZ10900018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,rap,neo soul,pop,r&b",0.505,0.958,11.0,-1.562,1.0,0.396,0.0287,0.0,0.417,0.807,173.422,4.0,,Roc Nation / IDJ,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",2738 +2739,spotify:track:3DqvBu9MpNNz4UToUXDJ4u,Sexy M.F.,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:03JxJZCOK54jmkrhlDczlA,[Love Symbol],spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1992-10-13,https://i.scdn.co/image/ab67616d0000b273de348ca63106ab1251063264,1,2,326093,https://p.scdn.co/mp3-preview/19e8a86c9dd1a04d3696ef9d7cc393df2fa7f2bc?cid=9950ac751e34487dbbe027c4fd7f8e99,True,41,USWB19900587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.77,0.744,2.0,-8.133,1.0,0.0938,0.169,0.00224,0.0537,0.547,106.147,4.0,,Rhino/Warner Records,"C © 1992 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1992 NPG Records, Inc. under exclusive license to Warner Records Inc.",2739 +2740,spotify:track:79Dl8iYn0PFQG2wqDxPlQU,Escape (The Pina Colada Song),spotify:artist:0TqIPD4IS1w4e30R38B3vj,Rupert Holmes,spotify:album:0EGFovrr9MRmTAqnTAaYMU,'70s Pop #1's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b2737638f11317bb778dac14f2df,1,16,276413,https://p.scdn.co/mp3-preview/d4c1c6d035b5a5412cdf97bfb998ad1aed46ccba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USMC17948997,spotify:user:bradnumber1,2021-08-08T09:26:31Z,yacht rock,0.818,0.691,0.0,-8.79,1.0,0.0529,0.357,9.48e-06,0.127,0.934,139.697,4.0,,Universal Music Group International,"C © 2007 Universal International Music B.V., P This Compilation ℗ 2007 Universal International Music B.V.",2740 +2741,spotify:track:5ooilrQAnOJbUjq7IDm8lY,Safe Inside,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:7oiJYvEJHsmYtrgviAVIBD,Back from the Edge,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2016-10-28,https://i.scdn.co/image/ab67616d0000b27320beb61f61fcbeb33b10a9ab,1,7,222173,https://p.scdn.co/mp3-preview/fe96043019046b73a0283afef3ac2cabbc6b6079?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,DEE861600591,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.317,0.547,8.0,-6.549,1.0,0.0366,0.187,0.0,0.121,0.11,117.332,4.0,,Columbia,P (P) 2016 Sony Music Entertainment Germany GmbH,2741 +2742,spotify:track:706CvlhWdQi3hmCEas3iBN,"What The World Needs Now Is Love/Abraham, Martin And John",spotify:artist:07PipPbqSffwUKRCQ5AcC6,Tom Clay,spotify:album:7B8AZ5Vx6quCCl5sDX6TaZ,The Complete Motown Singles Vol. 11A: 1971,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-01-01,https://i.scdn.co/image/ab67616d0000b273fd82883443cdb4b45db7ec44,5,19,379293,https://p.scdn.co/mp3-preview/faafed508ede8974cd31f52ae6e88992edb5a7e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USUM70835955,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.401,0.58,2.0,-9.841,0.0,0.392,0.938,0.00113,0.109,0.529,94.269,3.0,,Hip-O Select,"C © 2008 Motown Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 2008 Motown Records, a Division of UMG Recordings, Inc.",2742 +2743,spotify:track:5yP6T2IC0ItqdQSxNq9lej,Drunk in Love (feat. Jay-Z),"spotify:artist:6vWDO969PvNqNYHIOW5v0m, spotify:artist:3nFkdlSjzX9mRTtwJOzDYB","Beyoncé, JAY-Z",spotify:album:6KPiNRUaPSuFVes2xEUjYk,BEYONCÉ [Platinum Edition],spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2014-11-24,https://i.scdn.co/image/ab67616d0000b27322d8baf4fd59898b5b5da81c,1,3,323480,https://p.scdn.co/mp3-preview/86ee56107fec95027f39c3349f84e607d5b01730?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USSM11307879,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b,east coast hip hop,gangster rap,hip hop,pop rap,rap",0.591,0.609,5.0,-7.132,0.0,0.0471,0.00925,0.00159,0.217,0.392,140.006,4.0,,Parkwood Entertainment/Columbia,"P (P) 2013 Columbia Records, a Division of Sony Music Entertainment/(P) 2014 Columbia Records, a Division of Sony Music Entertainment",2743 +2744,spotify:track:6Sueudn0VQA4AXRsFKQbFl,Amazing Grace,spotify:artist:5yzE49FicYiSxN61oaxkNn,Judy Collins,spotify:album:2ey4NEI46WsFWtlyy2fglR,The Very Best Of Judy Collins,spotify:artist:5yzE49FicYiSxN61oaxkNn,Judy Collins,2001-08-21,https://i.scdn.co/image/ab67616d0000b273b3481b0ed703f06c7a639bda,1,16,248693,https://p.scdn.co/mp3-preview/33a06daef27e7a10a8b372c04edcd9891752850f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USEE17000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"american folk revival,folk,folk rock,mellow gold,singer-songwriter",0.192,0.263,3.0,-11.83,1.0,0.0332,0.945,0.0,0.203,0.196,87.747,4.0,,Rhino/Elektra,"C © 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing",2744 +2745,spotify:track:0ZSmRnXnP5fdANtVlCok1g,Look What You've Done,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,spotify:album:6NrLpQCPYrNS3kVWxDgIlg,Get Born,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,2003-09-15,https://i.scdn.co/image/ab67616d0000b27376ccf87cba2e754a5138cc23,1,4,230893,https://p.scdn.co/mp3-preview/d5e526fc3487457dd5be050f07a751789ed26f84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USEE10340563,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,pop rock",0.4,0.541,0.0,-6.84,1.0,0.0252,0.393,0.00108,0.146,0.325,74.425,4.0,,Elektra Records,"C © 2003 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States excluding Australia and New Zealand., P ℗ 2003 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States excluding Australia and New Zealand.",2745 +2746,spotify:track:7i2DJ88J7jQ8K7zqFX2fW8,Now Or Never,spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,spotify:album:7GjG91tyHQNGEHzKJaqOi0,hopeless fountain kingdom (Deluxe),spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,2017-06-02,https://i.scdn.co/image/ab67616d0000b2730f7ad6d8d829906c17cae210,1,6,214801,https://p.scdn.co/mp3-preview/b4c9f2646fbf34d2deaa359bff897c6559eb801c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USUM71701077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,etherpop,indie poptimism,pop",0.67,0.585,6.0,-4.861,0.0,0.0354,0.107,1.11e-06,0.131,0.447,110.03,4.0,,Astralwerks (ASW),"C © 2017 Astralwerks, P ℗ 2017 Astralwerks",2746 +2747,spotify:track:7LUQAXxd9FhIPuGRiJ6dCr,Better Days,spotify:artist:1qAMxE8YRo3KREMiKiyUkV,Pete Murray,spotify:album:6cIh3RIwMpDIzpNaBOEaNe,Feeler/See The Sun,spotify:artist:1qAMxE8YRo3KREMiKiyUkV,Pete Murray,2005,https://i.scdn.co/image/ab67616d0000b27321075e74eb57d12ae370647c,2,5,223040,https://p.scdn.co/mp3-preview/85cf59a9e27ab1f6714f7eb6cb901978d49790b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00599201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.635,0.561,1.0,-7.307,1.0,0.025,0.142,0.000143,0.223,0.334,113.971,4.0,,Columbia,P (P) 2005 Sony BMG Music Entertainment (Australia) Pty Limited/(P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,2747 +2748,spotify:track:7ulldxRL7kGWuKutB3TzuT,Sara,spotify:artist:0kObWap02DEg9EAJ3PBxzf,Starship,spotify:album:3HcgOp0YQDt8rYzgvJwdwk,Knee Deep In The Hoopla,spotify:artist:0kObWap02DEg9EAJ3PBxzf,Starship,1985,https://i.scdn.co/image/ab67616d0000b27392a75d804b1696f4df41834f,1,2,290373,https://p.scdn.co/mp3-preview/9cd5cea77abd3d9e92756c64ed6da3c3d5ce44b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC18507727,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new romantic,new wave pop,soft rock,synthpop",0.644,0.672,10.0,-10.134,1.0,0.0282,0.188,0.0,0.142,0.371,100.176,4.0,,RCA Records Label,P (P) 1999 BMG Entertainment,2748 +2749,spotify:track:5n9QhVJS3XSjSc9kNJNEIU,Nothing From Nothing,spotify:artist:0IecGJbdBeYSOVtSPRehh5,Billy Preston,spotify:album:2Kv2oy0Ke1wrZ9DgWQrVFj,Ultimate Collection: Billy Preston,spotify:artist:0IecGJbdBeYSOVtSPRehh5,Billy Preston,2000-01-01,https://i.scdn.co/image/ab67616d0000b273f472a07ba59f2e1651c352fd,1,13,157666,https://p.scdn.co/mp3-preview/73fb46d41f5c9d65ea06adc7e80604ba89c665fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USUMG0000158,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,psychedelic soul,rock keyboard,soul",0.809,0.726,9.0,-8.209,0.0,0.0274,0.575,0.235,0.18,0.92,102.779,4.0,,Hip-O (UC),"C © 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc.",2749 +2750,spotify:track:1Je1IMUlBXcx1Fz0WE7oPT,Wannabe,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:3x2jF7blR6bFHtk4MccsyJ,Spice,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,1996-01-01,https://i.scdn.co/image/ab67616d0000b27363facc42e4a35eb3aa182b59,1,1,173026,https://p.scdn.co/mp3-preview/4f557870cbdb569a7c99a62df97f71358d3b8da3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBAAA9600008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.768,0.864,11.0,-6.149,1.0,0.0324,0.101,0.0,0.162,0.891,110.009,4.0,,Virgin Records,"C © 1996 Virgin Records Limited, P ℗ 1996 Virgin Records Limited",2750 +2751,spotify:track:0A9mHc7oYUoCECqByV8cQR,Animals,spotify:artist:60d24wfXkVzDSfLS6hyCjZ,Martin Garrix,spotify:album:4Xs4NI3J2Nf9eSUqvW7GBn,Animals,spotify:artist:60d24wfXkVzDSfLS6hyCjZ,Martin Garrix,2013-06-17,https://i.scdn.co/image/ab67616d0000b2736abad6915a2216dc18e7e3a7,1,1,304228,https://p.scdn.co/mp3-preview/f85df06e04351e06fea487dc19d2b45954c9919f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,NLZ541300467,spotify:user:bradnumber1,2023-05-07T11:46:51Z,"dutch edm,edm,pop,pop dance,progressive house",0.675,0.868,1.0,-6.36,1.0,0.0392,0.00107,0.715,0.374,0.0376,128.007,4.0,,STMPD RCRDS,"C 2013 STMPD RCRDS, P 2013 STMPD RCRDS",2751 +2752,spotify:track:2mBqUQO0DnqKMvs0T2T0G6,Healing Hands,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:1AnfwKmq6NhelE2hQx2LM5,Rocket Man: The Definitive Hits (Australian Tour Edition 2011),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,2007-03-26,https://i.scdn.co/image/ab67616d0000b2732cf5c0f99aabc69a21f6e7c1,2,9,269013,https://p.scdn.co/mp3-preview/d83869cc9170ab09b8a0417787691d9fd2c1f0ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALX8900103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.634,0.866,2.0,-7.593,1.0,0.0279,0.00628,2.77e-05,0.0333,0.775,112.305,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P ℗ 2011 Universal Music Australia Pty Ltd.",2752 +2753,spotify:track:4Y1c07v5GBv2c9Hi536tnW,Ain't Nobody (Loves Me Better),"spotify:artist:4bL2B6hmLlMWnUEZnorEtG, spotify:artist:2TL8gYTNgD6nXkyuUdDrMg","Felix Jaehn, Jasmine Thompson",spotify:album:2JY4SkXiTBRWzWGLiPgUZu,Ain't Nobody (Loves Me Better),spotify:artist:4bL2B6hmLlMWnUEZnorEtG,Felix Jaehn,2015-04-24,https://i.scdn.co/image/ab67616d0000b273ea4abfc5abe48019e2369085,1,1,186146,https://p.scdn.co/mp3-preview/f027c23a4d0ac75d58b6d921575c756855f45d0d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,DEUM71500425,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,german dance,pop dance,tropical house,uk dance,viral pop",0.777,0.564,2.0,-6.967,0.0,0.0315,0.683,0.000252,0.0696,0.465,117.973,4.0,,Virgin,"C © 2015 L'Agentur, under exclusive license to Virgin Records, a division of Universal Music GmbH, P ℗ 2015 L'Agentur, under exclusive license to Virgin Records, a division of Universal Music GmbH",2753 +2754,spotify:track:39N8KEnRei1uewUt4I9caj,Last Night,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,spotify:album:71ENjmi6q2b47hiNL7eEnt,Meet The Vamps (Deluxe),spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,2014-01-01,https://i.scdn.co/image/ab67616d0000b2734749d18ed005d880c6dc5001,1,2,187644,https://p.scdn.co/mp3-preview/aff7e0109ac14769de9fef7b029b573c9d3e5899?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBUM71308657,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.629,0.759,6.0,-6.671,1.0,0.0611,0.00694,0.0,0.29,0.937,91.041,4.0,,EMI,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",2754 +2755,spotify:track:6AL6Wbn1xA3R86vAvuiho5,Runaround Sue - Remastered 1991,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,spotify:album:4XCCPbgyV1L06tIZmQYFwu,The Best Of Dion & The Belmonts,spotify:artist:2loYllWFfoWpoxC5YrJKc4,Dion & The Belmonts,2005-01-01,https://i.scdn.co/image/ab67616d0000b273605566683bef0b421bf8bf52,1,13,159813,https://p.scdn.co/mp3-preview/744b8bff24ee6b1bdc6f5b09ba2b0e787e44c121?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USLA19100004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rock-and-roll,rockabilly",0.544,0.567,11.0,-10.8,0.0,0.0755,0.79,3.87e-06,0.363,0.56,78.227,4.0,,EMI Gold,"C © 2005 EMI Records Ltd, P This Compilation ℗ 2005 EMI Records Ltd",2755 +2756,spotify:track:6d9RNpnqv03uSjJoyYfJ9L,Sound of Summer,spotify:artist:4ETXyV9H1p2P1XYgXXTjiO,Busby Marou,spotify:album:1dTjP4CqbnYRl9ZtAKfF87,Sound of Summer,spotify:artist:4ETXyV9H1p2P1XYgXXTjiO,Busby Marou,2018-11-09,https://i.scdn.co/image/ab67616d0000b2732cfdcb8b0a441c7a78a6087c,1,1,186353,https://p.scdn.co/mp3-preview/7852e97d4ed2fcb94766fcdc18e38bb6f1b1b38d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUWA01800446,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indigenous music,0.472,0.789,11.0,-6.033,1.0,0.0388,0.171,0.0,0.183,0.445,104.277,4.0,,WM Australia,"C © 2018 Warner Music Australia Pty Ltd, P ℗ 2018 Warner Music Australia Pty Ltd",2756 +2757,spotify:track:4h9wh7iOZ0GGn8QVp4RAOB,I Ain't Worried,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:04PEOM6kIEeq9lRp1asNP2,"I Ain’t Worried (Music From The Motion Picture ""Top Gun: Maverick"")",spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2022-05-13,https://i.scdn.co/image/ab67616d0000b273ec96e006b8bdfc582610ec13,1,1,148485,https://p.scdn.co/mp3-preview/20d702edf937db0248603243a310404923d5bffb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USUM72206227,spotify:user:bradnumber1,2022-08-28T06:14:50Z,"piano rock,pop",0.704,0.797,0.0,-5.927,1.0,0.0475,0.0826,0.000745,0.0546,0.825,139.994,4.0,,Interscope Records,"C © 2022 Paramount Pictures, P ℗ 2022 Mosley Music/Interscope Records",2757 +2758,spotify:track:7Aa1CtEVpPZ3VesEk7Z2Zc,Needle In A Haystack,spotify:artist:5u8Htj5LKHVtPpwwYC0FxG,The Twilights,spotify:album:6feaDkHdIJU4XtAFpSkYEb,Love Child Season 3,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-06-24,https://i.scdn.co/image/ab67616d0000b2739d7e0f70925fa9bc786238aa,1,5,128186,https://p.scdn.co/mp3-preview/6e3fbddfe77c74ff55a2888fa02ccc0513aa3a07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUEM06600632,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.631,0.812,11.0,-3.399,1.0,0.0425,0.0764,2.88e-06,0.0693,0.939,82.329,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Universal Music Australia Pty Ltd., P This Compilation ℗ 2016 Universal Music Australia Pty Ltd.",2758 +2759,spotify:track:2x7vw79tKsW99s8sbyuvPM,Slow Down - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:3GmCXW10kLxmZrEY0JpRlw,Past Masters (Vols. 1 & 2 / Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1988-03-07,https://i.scdn.co/image/ab67616d0000b2738d23bdb7c0a6c420f4ffa644,1,12,176853,https://p.scdn.co/mp3-preview/c8338e8c12a7ea2d6893f757f82ae2039101da0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAYE0801390,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.494,0.799,0.0,-7.327,1.0,0.0628,0.707,4.64e-06,0.314,0.839,168.618,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P This Compilation ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",2759 +2760,spotify:track:5GMw6X6BbCDGO9gApQYRSa,You've Lost That Lovin' Feelin',spotify:artist:4b0WsB47XCa9F83BmwQ7WX,The Righteous Brothers,spotify:album:5CFmNamq1ceXn8RFJ9i7p6,The Very Best Of The Righteous Brothers - Unchained Melody,spotify:artist:4b0WsB47XCa9F83BmwQ7WX,The Righteous Brothers,1990,https://i.scdn.co/image/ab67616d0000b2731682e25596b8ecccb47644d1,1,1,225426,https://p.scdn.co/mp3-preview/4cc72f7635327fb1fef8647b67e852062fda728d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USPR39609181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,folk rock,mellow gold,motown,rock-and-roll,rockabilly",0.366,0.317,1.0,-13.976,1.0,0.027,0.541,0.0,0.0865,0.398,94.108,4.0,,Verve,"C © 1990 The Verve Music Group, a Division of UMG Recordings, Inc., P This Compilation ℗ 1965 The Verve Music Group, a Division of UMG Recordings, Inc.",2760 +2761,spotify:track:5gLzO8MHiZS9vGR9kQbxEK,2-4-6-8 Motorway,spotify:artist:57YVY9QP1mhqc51WqHln0e,Tom Robinson Band,spotify:album:6KrqOOBYWRtYCYLPDwYvJW,Rising Free - The Very Best Of TRB,spotify:artist:57YVY9QP1mhqc51WqHln0e,Tom Robinson Band,2003-02-28,https://i.scdn.co/image/ab67616d0000b273950395ff7aeee63d2d1e816d,1,1,197933,https://p.scdn.co/mp3-preview/73db46a00dd0c25a0e3aecc157bfa2b11232186b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAYE7700010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.672,0.706,9.0,-5.551,1.0,0.0779,0.0578,7.43e-05,0.0595,0.658,124.782,4.0,,Parlophone UK,"C © 1997 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1997 Parlophone Records Ltd, a Warner Music Group Company",2761 +2762,spotify:track:6xMHglHoafdDFGXS6qfwSH,Hot Blooded,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,spotify:album:6lu6DYE0eHHp1gd3QGUYhu,Double Vision (Expanded),spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,1978,https://i.scdn.co/image/ab67616d0000b2735627aa0842d6287bbb223cbf,1,1,268693,https://p.scdn.co/mp3-preview/144a37ae71c4b9600402e8a229716fda52f9a501?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT20803018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.705,0.806,0.0,-4.83,1.0,0.0814,0.229,0.0,0.0676,0.763,117.945,4.0,,Rhino Atlantic,"C © 2002 Atlantic Recording Corp., P ℗ 2002 Atlantic Recording Corp., marketed by Rhino Entertainment Company, a Warner Music Group company",2762 +2763,spotify:track:3r9bgSJlJz2zlevcBRYXko,Both of Us (feat. Taylor Swift),"spotify:artist:5ndkK3dpZLKtBklKjxNQwT, spotify:artist:06HL4z0CvFAxyc27GXpf02","B.o.B, Taylor Swift",spotify:album:7qqCw47pAWFzhwTpVRd0zE,Strange Clouds,spotify:artist:5ndkK3dpZLKtBklKjxNQwT,B.o.B,2012-04-27,https://i.scdn.co/image/ab67616d0000b273a191830c8b300bc71c2faac7,1,4,216120,https://p.scdn.co/mp3-preview/5020620b38b07396751283b66bbfea492160bfd0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,54,USAT21201807,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dance pop,pop rap,rap,southern hip hop,pop",0.677,0.722,7.0,-7.088,1.0,0.0522,0.0213,0.0,0.207,0.0483,125.091,4.0,,Rebel Rock/Grand Hustle/Atlantic,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",2763 +2764,spotify:track:7wHpjhpBhiabSKRPJgO2im,Everytime We Touch,spotify:artist:0N0d3kjwdY2h7UVuTdJGfp,Cascada,spotify:album:2Os4qaiAkGibVhjVTH4pEH,Best of Cascada,spotify:artist:0N0d3kjwdY2h7UVuTdJGfp,Cascada,2018-05-18,https://i.scdn.co/image/ab67616d0000b27334ee0585cae39eb0885041b7,1,6,197124,https://p.scdn.co/mp3-preview/8b29d6df81eb0b841226d3f662331bb2fe19d52d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,54,DEZ620500053,spotify:user:bradnumber1,2023-11-28T13:18:42Z,"eurodance,europop,german techno,melbourne bounce international",0.634,0.976,8.0,-5.339,1.0,0.0521,0.00291,1.31e-05,0.384,0.496,142.037,4.0,,Central Station Records,"C 2018 Zoo Digital, a division of zooland Music, under exclusive license to Central Station Records, P 2018 Zoo Digital, a division of zooland Music, under exclusive license to Central Station Records",2764 +2765,spotify:track:0gViz7xZrfflv0cbhdgevD,We Do It,spotify:artist:24t7BfFr5OnU82pCefOOFF,R & J Stone,spotify:album:0oAJXGROv1EuMhrT0p5zcc,Greatest 70's Hits Best Ever,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2020-09-18,https://i.scdn.co/image/ab67616d0000b2738501366084be055664fcfd2b,1,28,199337,https://p.scdn.co/mp3-preview/581edef3d027dc710a266a6c73a236c579cdad3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,NLS241102793,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.362,0.49,0.0,-11.318,0.0,0.0671,0.758,0.086,0.343,0.494,165.685,3.0,,Cloud 9 Music,"C 2020 Cloud 9 Recordings B.V., P 2020 Cloud 9 Recordings B.V.",2765 +2766,spotify:track:3UCmuRdeTriWgOZMEJsfqZ,Spanish Harlem,spotify:artist:3plJVWt88EqjvtuB4ZDRV3,Ben E. King,spotify:album:2WcVleVG28RWzWLDLZnVgp,Spanish Harlem,spotify:artist:3plJVWt88EqjvtuB4ZDRV3,Ben E. King,1961,https://i.scdn.co/image/ab67616d0000b273dc378f9d8af0ae5a3c19d941,1,12,174293,https://p.scdn.co/mp3-preview/8c3655bba0a97b134e6fb3fe04374038ba0c4f40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAT20202648,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,soul",0.608,0.594,2.0,-11.86,1.0,0.0435,0.32,4.75e-05,0.129,0.789,125.166,4.0,,Rhino Atlantic,"C © 2005 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2005 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",2766 +2767,spotify:track:7AFsYEzfI8RsbjDhjFxWwy,Jump!,spotify:artist:1Q4owXd4g9XfHNykUm6GJh,The Movement,spotify:album:3JvDRyFKD4OisYYqIoDUXT,The Movement,spotify:artist:1Q4owXd4g9XfHNykUm6GJh,The Movement,1992-01-04,https://i.scdn.co/image/ab67616d0000b273755ac7fa02f04f09f5fb11e4,1,1,236066,https://p.scdn.co/mp3-preview/c8f580963fb00ff20ca32907f9ff0c5180463f3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,NLML61300074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.674,0.735,0.0,-14.36,1.0,0.0909,0.00246,0.105,0.326,0.105,135.002,4.0,,Altra Moda Music,"C 1992 Altra Moda Music (www.altramodamusic.nl), P 1992 Altra Moda Music (www.altramodamusic.nl)",2767 +2768,spotify:track:0LfJkvPNCNEMLpZJgDQiV1,The Wonder of You,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:3X3rFfVKCW58sKMO0UXkwO,The Essential Elvis Presley,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2007,https://i.scdn.co/image/ab67616d0000b2738194c9102e2703a6620d3c95,2,14,153200,https://p.scdn.co/mp3-preview/1dbfe829ffe32e5fb20ef8374402fc36d6fec27c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USA820500125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.448,0.691,7.0,-6.957,1.0,0.0286,0.286,0.00111,0.945,0.633,88.836,4.0,,SBME Strategic Marketing Group,P (P) 2007 Sony Music Entertainment,2768 +2769,spotify:track:0BSd5u6lQJWDoNVMuBYBiA,At My Best (feat. Hailee Steinfeld),"spotify:artist:6TIYQ3jFPwQSRmorSezPxX, spotify:artist:5p7f24Rk5HkUZsaS3BLG5F","mgk, Hailee Steinfeld",spotify:album:6msV14ocKnUKffhMpHWhIG,bloom,spotify:artist:6TIYQ3jFPwQSRmorSezPxX,mgk,2017-05-12,https://i.scdn.co/image/ab67616d0000b273bcb06f218871ba0228d5f8ad,1,4,199973,https://p.scdn.co/mp3-preview/fe2bad784a673ff806dd3bbfeff0a6168bdce158?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71702295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ohio hip hop,pop rap,pop",0.531,0.784,7.0,-6.664,0.0,0.219,0.00231,0.00013,0.238,0.214,169.862,4.0,,Universal Music Group,"C © 2017 Bad Boy/Interscope Records, P ℗ 2017 Bad Boy/Interscope Records",2769 +2770,spotify:track:2G7V7zsVDxg1yRsu7Ew9RJ,In My Feelings,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,spotify:album:1ATL5GLyefJaxhQzSPVrLX,Scorpion,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,2018-06-29,https://i.scdn.co/image/ab67616d0000b273f907de96b9a4fbc04accc0d5,2,9,217925,https://p.scdn.co/mp3-preview/4199bf3a56612f4fbdbd13da55d380af4c11e319?cid=9950ac751e34487dbbe027c4fd7f8e99,True,71,USCM51800206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian hip hop,canadian pop,hip hop,pop rap,rap",0.835,0.626,1.0,-5.833,1.0,0.125,0.0589,6e-05,0.396,0.35,91.03,4.0,,Cash Money/Drake LP6,"C © 2018 Young Money/Cash Money Records, P ℗ 2018 Young Money/Cash Money Records",2770 +2771,spotify:track:0MKqeOVdZcUFGJvWpGCKbG,Come Together - Remastered,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:2Pqkn9Dq2DFtdfkKAeqgMd,Abbey Road (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1969-09-26,https://i.scdn.co/image/ab67616d0000b273f7c34e39bb746d7f41bc5519,1,1,259946,https://p.scdn.co/mp3-preview/e4d979e98ee52f13b2d77ea5808f8059221be5f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE0601690,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.533,0.376,9.0,-11.913,0.0,0.0393,0.0302,0.248,0.0926,0.187,165.007,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",2771 +2772,spotify:track:6RWaeePOtZROiS2kyQhMs3,Truthfully,spotify:artist:6T5tfhQCknKG4UnH90qGnz,DNCE,spotify:album:7K89F9bgY1jks0uIlMerm3,DNCE,spotify:artist:6T5tfhQCknKG4UnH90qGnz,DNCE,2016-11-18,https://i.scdn.co/image/ab67616d0000b273a19a2912e1618ada66b2e6e8,1,10,182653,https://p.scdn.co/mp3-preview/6f21a450c931280d3dff20b4cde13f572ac4d7a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71609361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.72,0.649,8.0,-6.886,1.0,0.0354,0.271,0.0,0.335,0.569,102.042,4.0,,Universal Music Group,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",2772 +2773,spotify:track:0kTIH2zbc1jvIHoCOCoNnr,you broke me first - Luca Schreiner Remix,"spotify:artist:45dkTj5sMRSjrmBSBeiHym, spotify:artist:5fiYAV2DWASxAUKDq7Gbe9","Tate McRae, Luca Schreiner",spotify:album:5QYeXQ4AewfkmtDBlsxDtA,you broke me first (Luca Schreiner Remix),"spotify:artist:45dkTj5sMRSjrmBSBeiHym, spotify:artist:5fiYAV2DWASxAUKDq7Gbe9","Tate McRae, Luca Schreiner",2020-06-01,https://i.scdn.co/image/ab67616d0000b273cf166b8e1749adc99bd1d7bf,1,1,192338,https://p.scdn.co/mp3-preview/2bbdee932535b6328dc723a0b5ffc136583165a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USRC12002969,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,german dance",0.618,0.829,4.0,-5.939,1.0,0.0839,0.0326,3.47e-06,0.0971,0.174,123.916,4.0,,RCA Records Label,"P (P) 2020 RCA Records, a division of Sony Music Entertainment",2773 +2774,spotify:track:3XxS3CegRHnSwyiR2WQZu9,Many Rivers To Cross,spotify:artist:7lQC1mHpO4lvLpN9XYZlIH,Toni Childs,spotify:album:0ZuXjTlr88b4HFHxxiWF9g,The Best Of Toni Childs,spotify:artist:7lQC1mHpO4lvLpN9XYZlIH,Toni Childs,1996-01-01,https://i.scdn.co/image/ab67616d0000b2730d596ca9c2c06f2ce6eadc72,1,6,327026,https://p.scdn.co/mp3-preview/b4388fe30341f5a9f98e52c8abb65402423864e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USAM18900974,spotify:user:bradnumber1,2022-04-20T22:30:25Z,,0.771,0.538,5.0,-14.242,1.0,0.0358,0.101,0.00348,0.0872,0.664,139.858,4.0,,Universal Music Australia Pty. Ltd.,"C © 1996 A&M Records Inc., P This Compilation ℗ 1996 A&M Records Inc.",2774 +2775,spotify:track:6ZYxMiIIoNazRBBn923e9Q,"Truly, Madly, Deeply",spotify:artist:0N0d3kjwdY2h7UVuTdJGfp,Cascada,spotify:album:6qldUF9IUnqd8xGJyOhVg4,Truly Madly Deeply,spotify:artist:0N0d3kjwdY2h7UVuTdJGfp,Cascada,2006-01-01,https://i.scdn.co/image/ab67616d0000b273aa8baf374859f7a66f3db760,1,2,254986,https://p.scdn.co/mp3-preview/12337c6caf39b1bfa9578062fe54b3206fb42713?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,DECZ30600030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,german techno,melbourne bounce international",0.64,0.628,4.0,-8.536,1.0,0.0284,0.468,0.0,0.115,0.71,84.031,4.0,,All Around The World,"C © 2006 All Around The World, P ℗ 2006 Zooland Records",2775 +2776,spotify:track:3RZMzCvYsmJ0u2ioKTOsmJ,Honky Tonk Women - Mono Version,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:0aqZJlugIkTUWW1sa4BANp,Hot Rocks (1964-1971),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1971-12-20,https://i.scdn.co/image/ab67616d0000b273b11b3fc3c89477a7dd473bd7,2,4,179386,https://p.scdn.co/mp3-preview/da2156d45864c6c06c3ca9ce6ec142acb39cc71d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USA176910010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.562,0.779,7.0,-6.705,1.0,0.0592,0.363,0.0292,0.066,0.967,119.602,4.0,,"ABKCO Music and Records, Inc.","C © 2002 ABKCO Music & Records, Inc., P This Compilation ℗ 2002 ABKCO Music & Records, Inc.",2776 +2777,spotify:track:7fG22bvpAT44rkKgYDLmFK,We No Speak Americano - Radio Edit,"spotify:artist:4KkHjCe8ouh8C2P9LPoD4F, spotify:artist:6OkVmXCnj1BPjTf5aihiwt","Yolanda Be Cool, DCup",spotify:album:2tJYhbQ0H8MgJ2ebVNHwmV,We No Speak Americano,"spotify:artist:4KkHjCe8ouh8C2P9LPoD4F, spotify:artist:6OkVmXCnj1BPjTf5aihiwt","Yolanda Be Cool, DCup",2010-05-31,https://i.scdn.co/image/ab67616d0000b273db06d9b7aad970b3b9772ab7,1,1,157986,https://p.scdn.co/mp3-preview/5c55e264c924dc803ee82c67e10e1582fd34e201?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUCN30901654,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,bass house",0.905,0.783,3.0,-5.056,0.0,0.0498,0.0566,0.0472,0.154,0.725,125.019,4.0,,Catchy Tunes,P (P) 2010 Catchy Tunes/Family Tree Music AB,2777 +2778,spotify:track:72b7GzsnUAjsk5I56hLkjp,Flip A Switch. (feat. Coi Leray) - Remix,"spotify:artist:5KKpBU5eC2tJDzf0wmlRp2, spotify:artist:6AMd49uBDJfhf30Ak2QR5s","RAYE, Coi Leray",spotify:album:6il1IQ2A2yvZaGPgcqXDBd,Flip A Switch. (feat. Coi Leray) [Remix],"spotify:artist:5KKpBU5eC2tJDzf0wmlRp2, spotify:artist:6AMd49uBDJfhf30Ak2QR5s","RAYE, Coi Leray",2023-04-21,https://i.scdn.co/image/ab67616d0000b27373c1bf01c497d9e3e9913a28,1,1,201360,https://p.scdn.co/mp3-preview/24ed69be379a8a24fc12cb9622b6e09da4e2623d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,47,QM6MZ2307127,spotify:user:bradnumber1,2023-06-14T04:37:14Z,"uk contemporary r&b,uk pop,new jersey underground rap,trap queen",0.697,0.538,1.0,-5.826,0.0,0.0455,0.0422,2.95e-05,0.208,0.49,94.049,4.0,,Human Re Sources,"C (C) 2023 Human Re Sources, P (P) 2023 RAYE under exclusive license to Human Re Sources",2778 +2779,spotify:track:07iHAswcApphvyllRDQrEa,Nothing Compares 2 U,spotify:artist:4sD9znwiVFx9cgRPZ42aQ1,Sinéad O'Connor,spotify:album:7HCpCOgvZQMt2YwPtp1y8p,Pure Driving Rock,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-06-16,https://i.scdn.co/image/ab67616d0000b273833510f734a8ac5a46307433,1,12,280040,https://p.scdn.co/mp3-preview/dd12ed39f779a9cb61c7009f322192a2e6ee37ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK9000017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,new wave pop,singer-songwriter",0.511,0.574,5.0,-7.016,1.0,0.0273,0.0425,2.33e-05,0.105,0.161,119.917,4.0,,Parlophone UK,"C 2008 Parlophone Records Ltd, a Warner Music Group Company, P 2008 Parlophone Records Ltd, a Warner Music Group Company",2779 +2780,spotify:track:6sy3LkhNFjJWlaeSMNwQ62,Counting Stars,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:2bbhW5ifCwOYM8DMkqoYBF,Native,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2014-01-01,https://i.scdn.co/image/ab67616d0000b273e80e7dbce3996a1ae5967751,1,1,257840,https://p.scdn.co/mp3-preview/6316f6cf12631da62c5b786421b25e66c3ab4ea6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUM71301306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.663,0.706,1.0,-4.972,0.0,0.0383,0.0654,0.0,0.115,0.474,122.013,4.0,,Mosley / Interscope,"C © 2014 Mosley Music/Interscope Records, P ℗ 2014 Mosley Music/Interscope Records",2780 +2781,spotify:track:0ADZ5dmXhlfzjMw6lefoPl,Far Away,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:3eZd2XbhLyPcgbgcsLTZh3,All the Right Reasons,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2005-09-26,https://i.scdn.co/image/ab67616d0000b27307fb7d8037f3962394c493ca,1,6,238173,https://p.scdn.co/mp3-preview/36ab8e7a672fb870de85b931d753afd064c1a098?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,NLA320581338,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.518,0.797,6.0,-5.153,1.0,0.0309,0.000681,0.0,0.107,0.293,132.918,4.0,,Roadrunner Records,"C © 2005 The All Blacks B.V., P ℗ 2005 The All Blacks B.V.",2781 +2782,spotify:track:7tdXvaCZmWZJOrZE9zFXpr,The Blower's Daughter,spotify:artist:14r9dR01KeBLFfylVSKCZQ,Damien Rice,spotify:album:4TMMcbyi7mC5aJeOvTn6FW,The Blower's Daughter,spotify:artist:14r9dR01KeBLFfylVSKCZQ,Damien Rice,2002,https://i.scdn.co/image/ab67616d0000b2738cc0052d073a61b39d30f54a,1,1,288466,https://p.scdn.co/mp3-preview/8165fe46218a25e631f06d5ff4ba5094de8507d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,IEABD0100003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,irish rock,irish singer-songwriter,neo mellow,singer-songwriter",0.334,0.192,4.0,-13.983,1.0,0.0337,0.135,9.77e-05,0.427,0.0775,133.198,4.0,,14th Floor Records,"C © 2004 DRM under exclusive licence to 14th Floor Records, P ℗ 2002 DRM under exclusive licence to 14th Floor Records",2782 +2783,spotify:track:4cluDES4hQEUhmXj6TXkSo,What Makes You Beautiful,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:6cunQQ7YZisYOoiFu2ywIq,Up All Night,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2012-05-25,https://i.scdn.co/image/ab67616d0000b2734a5584795dc73860653a9a3e,1,1,199986,https://p.scdn.co/mp3-preview/3abcba42a4cb3566c4840c29fd6695459065b1ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,GBHMU1100018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.726,0.787,4.0,-2.494,1.0,0.0737,0.009,0.0,0.0596,0.888,124.99,4.0,,Syco Music UK,P Track 2 & 18 (P) 2011; all othertracks (P) 2012 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,2783 +2784,spotify:track:29HaKOpeLSYvqdFyEQSRdj,Teach Your Children,spotify:artist:1CYsQCypByMVgnv17qsSbQ,"Crosby\, Stills\, Nash & Young",spotify:album:5bHkK1X4WEOzNvRhehvOcb,Deja Vu,spotify:artist:1CYsQCypByMVgnv17qsSbQ,"Crosby\, Stills\, Nash & Young",1970-03-11,https://i.scdn.co/image/ab67616d0000b27306e00756085191abc01e4cf0,1,2,173466,https://p.scdn.co/mp3-preview/8d0a167966fb2cfbbb822b0ee0b37d4b857b7b90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT20901709,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk,folk rock,mellow gold,rock,roots rock,soft rock,supergroup",0.497,0.285,2.0,-14.537,1.0,0.0264,0.643,1.69e-05,0.389,0.667,154.707,4.0,,Rhino Atlantic,"C © 1970 Atlantic Recording Corp., P ℗ 1970 Atlantic Recording Corp. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",2784 +2785,spotify:track:1Nj2oBISdFDSF8eDuXcALz,Start Again (feat. Logic),"spotify:artist:5Pwc4xIPtQLFEnJriah9YJ, spotify:artist:4xRYI6VqpkE3UwrDrAZL8L","OneRepublic, Logic",spotify:album:4RpgjxgSxcRwGNuWnImneN,13 Reasons Why (Season 2),"spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx, spotify:artist:5Pwc4xIPtQLFEnJriah9YJ, spotify:artist:6Ad91Jof8Niiw0lGLLi3NW","Selena Gomez, OneRepublic, YUNGBLUD",2018-05-18,https://i.scdn.co/image/ab67616d0000b273acc995be2b5bdc62d622ccd3,1,3,165626,https://p.scdn.co/mp3-preview/4bb569af99a9fb8c4517dbf96eb119ed0d7f79dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUM71805991,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop,conscious hip hop,hip hop,pop rap,rap",0.568,0.724,1.0,-5.568,0.0,0.116,0.164,0.0,0.0929,0.288,99.18,4.0,,UMGRI Interscope,"C © 2018 Paramount Pictures, P This Compilation ℗ 2018 Interscope Records",2785 +2786,spotify:track:30cHDhxUqgnHq78hv5UjMx,Turning Japanese,spotify:artist:4K3NWDwBIxgktui14SccR2,The Vapors,spotify:album:24Qpjb4s9cf0HI6VsQgl39,Turning Japanese - Best Of The Vapors,spotify:artist:4K3NWDwBIxgktui14SccR2,The Vapors,1996-11-11,https://i.scdn.co/image/ab67616d0000b273b95526b717c68e15eef722d7,1,1,225186,https://p.scdn.co/mp3-preview/ae87f3172ec2cd9a71752d7cdae0e8712967b197?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAYE8000027,spotify:user:bradnumber1,2022-08-31T00:14:26Z,"mod revival,new wave",0.503,0.803,0.0,-9.701,1.0,0.0485,0.01,0.0648,0.292,0.941,179.007,4.0,,RT Industries,"C © 1996 RT Industries, P ℗ 1996 RT Industries",2786 +2787,spotify:track:77oU2rjC5XbjQfNe3bD6so,Beast Of Burden - Remastered 1994,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:1Jv2AqzhgsduUik2p4k3cS,Some Girls,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1978-06-09,https://i.scdn.co/image/ab67616d0000b27305c7aec05eabf142cc33b936,1,9,265173,https://p.scdn.co/mp3-preview/0acd6e62865fd9b9a57f03b984796b0c72fc76e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,GBCJN7800009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.784,0.879,1.0,-3.862,0.0,0.0308,0.39,0.000848,0.0426,0.893,100.622,4.0,,Polydor Associated Labels,"C © 2011 Promotone B.V., under exclusive licence to Universal Music International B.V., P ℗ 2011 Promotone B.V., under exclusive licence to Universal Music International B.V.",2787 +2788,spotify:track:2QCjJNuUIqUlUqkxv8ZkN4,Friend In the Field,spotify:artist:4MlrZKzgi3UuZi2iDKjOar,Art vs Science,spotify:album:1qf9h2hmrUi1P1cjDdRP5I,Art vs Science,spotify:artist:4MlrZKzgi3UuZi2iDKjOar,Art vs Science,2009-01-01,https://i.scdn.co/image/ab67616d0000b27301a078ed8ba8058187419e5a,1,3,225453,https://p.scdn.co/mp3-preview/c8f36946b04ad7a921dde6a46579079ec6d7902b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVS30900003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian dance,australian indie",0.52,0.756,0.0,-5.564,0.0,0.0349,0.00919,0.00016,0.0739,0.599,126.102,4.0,,Magellanic,"C 2009 Art vs. Science, P 2009 Art vs. Science",2788 +2789,spotify:track:2H3HiDjmYelnnqHvWsNy7w,Love Is a Drug,spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,spotify:album:1Oj6mgKcTfLoDq0aWRVMx1,Ghosts Of The Past,spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,2011-08-12,https://i.scdn.co/image/ab67616d0000b273a4d4a0f32d1b6e0cd7ba5ff5,1,3,223920,https://p.scdn.co/mp3-preview/5125f0aa8f3ae619400611deba305144833edc52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUWA01100016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,perth indie",0.574,0.932,4.0,-3.558,1.0,0.074,0.00139,5.6e-06,0.14,0.223,135.034,4.0,,WM Australia,"C © 2011 WARNER MUSIC AUSTRALIA PTY LIMITED, P ℗ 2011 WARNER MUSIC AUSTRALIA PTY LIMITED",2789 +2790,spotify:track:2pMNs9mDQx0pDcno6ZpSfH,Her Royal Majesty,spotify:artist:1aRdnBeUqTNY9zdBzOrkvJ,James Darren,spotify:album:7mnb25LWsTNwprSvRcF6t5,Her Royal Majesty,spotify:artist:1aRdnBeUqTNY9zdBzOrkvJ,James Darren,2013-05-02,https://i.scdn.co/image/ab67616d0000b273df97f943bda3ad4e67a9d67e,1,1,134138,https://p.scdn.co/mp3-preview/4e1623252d0e3044705efeb22f9b6a0b47b07682?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USV351341083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.458,0.825,9.0,-11.072,0.0,0.0409,0.798,5.7e-05,0.339,0.629,91.614,4.0,,Black Sheep Music,C (C) 2013 Entertain Me Europe LTD,2790 +2791,spotify:track:3V6iTpZhci748mC2Fod98t,1979,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:08utRHYjRSDcceEsjFRFX0,Cardiology,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2010-01-01,https://i.scdn.co/image/ab67616d0000b273fab23a7730496d05987df477,1,12,179946,https://p.scdn.co/mp3-preview/309275cfc4107e502beb1a1e442812eb07c4a7a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USCA21002633,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.563,0.946,0.0,-2.673,1.0,0.0523,0.0149,0.0,0.191,0.52,117.096,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",2791 +2792,spotify:track:0bVErWwMwsPgf3PufQA80g,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:21Z3oePgswl4kS1LW0aXVm,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2009-08-24,https://i.scdn.co/image/ab67616d0000b2738b412ea102fe0d92e1e71ae8,1,2,227746,https://p.scdn.co/mp3-preview/e9bebe5b7f2a1df02025946a768b9b7aa6448410?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUBM00800490,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.684,0.665,9.0,-4.425,0.0,0.041,0.167,0.0,0.0645,0.821,114.039,4.0,,Sony Music Entertainment,"P (P) All tracks (P) 2008 Sony Music Entertainment Australia Pty Ltd. except tracks 13, 14 & 16 (P) 2009 Sony Music Entertainment Australia Pty Ltd.",2792 +2793,spotify:track:72RjHoPZPW3LZHgVS4akIy,Runaway,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:1GIWJs7mEdzKym3tQ8QScJ,TRUSTFALL,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2023-02-17,https://i.scdn.co/image/ab67616d0000b2735b8cf73dd4eebd286d9a2c78,1,7,162800,https://p.scdn.co/mp3-preview/28b422c440ddbdd67ca0e3c3d58eb03b1801eb3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USRC12204191,spotify:user:bradnumber1,2023-08-28T23:29:49Z,"dance pop,pop",0.64,0.899,1.0,-3.362,0.0,0.0786,0.000944,3.42e-06,0.0686,0.63,159.958,4.0,,RCA Records Label,"P (P) 2023 RCA Records, a division of Sony Music Entertainment",2793 +2794,spotify:track:3Vby4nGmtbDo7HDJamOWkT,Stuck In The Middle With You,spotify:artist:7bPU7cvfoD20ixGD9Qnqki,Stealers Wheel,spotify:album:5ApN9lqru1t3Xh1IaEGTll,Stealers Wheel,spotify:artist:7bPU7cvfoD20ixGD9Qnqki,Stealers Wheel,1972-01-01,https://i.scdn.co/image/ab67616d0000b273a5ce236c22035a02cf87d4de,1,2,208946,https://p.scdn.co/mp3-preview/74ef5bc5fcf2f4ce01f3737b3429c8f339ded520?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBAAM7200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,folk rock,0.82,0.575,7.0,-9.144,1.0,0.0408,0.0936,0.000135,0.109,0.964,123.765,4.0,,UMC (Universal Music Catalogue),"C © 2008 Mercury Records Limited, P ℗ 1972 A&M Records",2794 +2795,spotify:track:1UI0l2L66HJ9AtoEOlHzv4,Sometimes,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:3WNxdumkSMGMJRhEgK80qx,...Baby One More Time (Digital Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,1999-01-12,https://i.scdn.co/image/ab67616d0000b2738e49866860c25afffe2f1a02,1,3,245066,https://p.scdn.co/mp3-preview/46dfb87510e4a2b57328dc3cd7fc957c61316c42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USJI19910452,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.745,0.742,10.0,-5.693,1.0,0.0259,0.42,0.0,0.102,0.806,95.996,4.0,,Jive,P (P) 1999 Zomba Recording LLC,2795 +2796,spotify:track:6vECYJHxYmm3Ydt3fF01pE,Stolen Dance,spotify:artist:1hzfo8twXdOegF3xireCYs,Milky Chance,spotify:album:5D20ZzsNB377xbshIFP9Nb,Sadnecessary,spotify:artist:1hzfo8twXdOegF3xireCYs,Milky Chance,2014-06-20,https://i.scdn.co/image/ab67616d0000b273b5d4730e54f84c66c70fe60a,1,11,313684,https://p.scdn.co/mp3-preview/a5a49157caae8d8fbb5c82b70a6244a9ec828562?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,DEL211300741,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german pop,modern rock",0.885,0.581,11.0,-8.813,1.0,0.0378,0.427,0.000204,0.0759,0.728,114.016,4.0,,Neon,"C © 2014 Lichtdicht Records GmbH, P ℗ 2014 Lichtdicht Records GmbH, under exclusive license to Neon Records Pty Limited",2796 +2797,spotify:track:6sQ41j7G8kyhirJxBoI6gs,Shalala Lala,spotify:artist:0cwmNvclzPd8mQnoHuIksj,Vengaboys,spotify:album:5t02mTYT9ks9sOC1ihea4a,Greatest Hits!,spotify:artist:0cwmNvclzPd8mQnoHuIksj,Vengaboys,2009-12-11,https://i.scdn.co/image/ab67616d0000b27354be522e5e1814efa54a31b3,1,7,214819,https://p.scdn.co/mp3-preview/fe3250cb9a04784272503a6386fae02e4887091d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLC522011165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop",0.75,0.902,2.0,-5.803,1.0,0.0328,0.0494,0.00369,0.04,0.973,124.017,4.0,,Breakin' Records/Violent Music BV,"C 2000 Breakin’ Records/Violent Music B.V., P 2000 Breakin’ Records/Violent Music B.V.",2797 +2798,spotify:track:5n5rg7PCto4Ivn3avhiXK1,Rain,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,spotify:album:0mBnDoZ2jUjio9G0TGKOR2,Cuts From The Tough Times,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,1990,https://i.scdn.co/image/ab67616d0000b273a123560ceaae25db55e8bde7,1,1,219200,https://p.scdn.co/mp3-preview/316ab00bc0c3d108fb741ef897025fb54c270b29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUUM71000415,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,kiwi rock",0.59,0.45,4.0,-12.599,1.0,0.0325,0.0519,0.000851,0.0894,0.57,157.016,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Universal Music Australia Pty Ltd., P This Compilation ℗ 2010 Universal Music Australia Pty Ltd.",2798 +2799,spotify:track:0UmXSUCoE2I67n8ERd0Hdi,Boom Boom,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,spotify:album:4kc6vrABh87kQ4onFSDPLq,Live By The Words,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,2012,https://i.scdn.co/image/ab67616d0000b2732ea0791fdc5445eb5a9cd4be,1,6,187026,https://p.scdn.co/mp3-preview/651adc4509b3fa560cbf3d6e8f83ed2837e6f68c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUBM01200133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.81,0.828,6.0,-4.14,1.0,0.117,0.153,1.23e-06,0.0852,0.87,125.921,4.0,,Sony Music Entertainment,P All tracks (P) 2014 Sony Music Entertainment Australia Pty Ltd. except tracks 6 & 8 (P) 2012 & track 10 (P) 2013 Sony Music Entertainment Australia Pty Ltd.,2799 +2800,spotify:track:6u0x5ad9ewHvs3z6u9Oe3c,Under Cover of Darkness,spotify:artist:0epOFNiUfyON9EYx7Tpr6V,The Strokes,spotify:album:6Jx4cGhWHewTcfKDJKguBQ,Angles,spotify:artist:0epOFNiUfyON9EYx7Tpr6V,The Strokes,2011-03-21,https://i.scdn.co/image/ab67616d0000b273397d02cfe1aab2923f9d1697,1,2,235546,https://p.scdn.co/mp3-preview/392943fec90313dec65b40afa326c3c822984b1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USRC11100031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,garage rock,modern rock,permanent wave,rock",0.35,0.775,11.0,-3.364,1.0,0.054,0.00433,0.283,0.0676,0.588,199.866,4.0,,RCA Records Label,"P (P) 2011 RCA Records, a unit of Sony Music Entertainment",2800 +2801,spotify:track:1FJO2MPBG2R9HfuC0jtfIf,(Baby I've Got You) On My Mind,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:7luRbYWUzEZONdwCZbdbEH,Vulture Street,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2003-01-01,https://i.scdn.co/image/ab67616d0000b2739c7dd05a21a98d8986faf295,1,2,200440,https://p.scdn.co/mp3-preview/e951ebdd562f40ac3f8c16a562da6b1478dc7c18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00330019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.366,0.969,3.0,-3.359,1.0,0.0932,0.000676,0.000127,0.106,0.665,146.542,4.0,,Universal Music Group,"C © 2003 Universal Music Australia Pty Ltd., P ℗ 2003 Universal Music Australia Pty Ltd.",2801 +2802,spotify:track:3m660poUr1chesgkkjQM7P,Sorry Not Sorry,spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,spotify:album:3pgcHENAMBqdvBj65yvZLb,Tell Me You Love Me (Deluxe),spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,2017-09-29,https://i.scdn.co/image/ab67616d0000b273ec9c72308e30e7aa1d22b37d,1,1,203760,https://p.scdn.co/mp3-preview/3dacc7e3071bff52a1e75d78a00a89054c9e4677?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71707196,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.704,0.633,11.0,-6.923,0.0,0.241,0.0214,0.0,0.29,0.863,144.021,4.0,,Universal Music Group,"C © 2017 Island Records, a division of UMG Recordings, Inc./Hollywood Records/Safehouse Records LLC, P ℗ 2017 Island Records, a division of UMG Recordings, Inc./Hollywood Records/Safehouse Records LLC",2802 +2803,spotify:track:7sWXZGIDQ3FcIVE9yoQ5wH,Song for Suzy,spotify:artist:3ha1Kg6tvNh4F4HBmXlMW7,The Dudley Moore Trio,spotify:album:07GkNYJJNP4GIR5dsRQE3P,Today,spotify:artist:3ha1Kg6tvNh4F4HBmXlMW7,The Dudley Moore Trio,1971-01-01,https://i.scdn.co/image/ab67616d0000b273f721f8420edbda73af01a8af,1,5,143826,https://p.scdn.co/mp3-preview/d6c1d3d3b01ca5f557c291eb555511a9b88b500e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USAT21702848,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.605,0.498,2.0,-12.005,0.0,0.0315,0.288,0.147,0.0812,0.665,92.001,4.0,,Rhino Atlantic,"C © 1971 Atlantic Records, P ℗ 1971 Atlantic Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",2803 +2804,spotify:track:3ep2JeuUdSlMm8JfwKbY15,L.A. International Airport,spotify:artist:09efpf4ONuA3Ezctd8lXza,Susan Raye,spotify:album:4SMpKmioHN4VSb6f5rqzhl,16 Greatest Hits,spotify:artist:09efpf4ONuA3Ezctd8lXza,Susan Raye,1999-01-01,https://i.scdn.co/image/ab67616d0000b273f2400798c68b96129ea005ef,1,4,171000,https://p.scdn.co/mp3-preview/b646071f7eaede312755d9db3d54191b960c33a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,US3M59902804,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bakersfield sound,classic country pop,country gospel",0.622,0.568,10.0,-9.785,1.0,0.0393,0.802,0.0,0.221,0.848,109.097,4.0,,Varese Sarabande,"C © 1999 Varese Sarabande Records, P This Compilation ℗ 1999 Buck Owens Enterprises, Inc., under exclusive license to Varese Sarabande Records, under exclusive license to Varese Sarabande Records",2804 +2805,spotify:track:1SXP53Ue7P7ZBiDeRUG9H4,Ulysses,spotify:artist:0XNa1vTidXlvJ2gHSsRi4A,Franz Ferdinand,spotify:album:1dZ2vgrL0RDIIfrK9mwsCe,Tonight: Franz Ferdinand,spotify:artist:0XNa1vTidXlvJ2gHSsRi4A,Franz Ferdinand,2009-01-23,https://i.scdn.co/image/ab67616d0000b273a159f2b5ccc1faefea4aceac,1,1,189640,https://p.scdn.co/mp3-preview/89a3f5dfa6f426bb347f1c3d39f27cba472b427d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEL0800924,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,indie rock,modern rock,rock,scottish rock",0.701,0.618,7.0,-5.736,1.0,0.0759,0.0053,0.00027,0.142,0.543,98.818,4.0,,Domino,"P (P) 2008, 2009 Domino Recording Co. Ltd",2805 +2806,spotify:track:0kgPOfU1Day0WXILm9Q9ZT,It's Now or Never,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:7mxsNoS5WUrhkW5gPYLFHo,Elvis Forever: The Best of Elvis Presley,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2017-07-27,https://i.scdn.co/image/ab67616d0000b273cf6eb0034792801734305e5b,1,4,195800,https://p.scdn.co/mp3-preview/25af7c6b2672b65fe3d28391f1e51fb5597678f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC16001349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.631,0.426,4.0,-12.617,1.0,0.0356,0.521,0.000258,0.512,0.781,126.156,4.0,,RCA/Legacy,"P This compilation (P) 2017 RCA Records, a division of Sony Music Entertainment",2806 +2807,spotify:track:0Xd1XT0mlPMTK5uslC6pzl,Man! I Feel Like A Woman!,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,spotify:album:1Xq7GtFHmTt110bmxQrtC4,Come On Over,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,1997,https://i.scdn.co/image/ab67616d0000b27351cfe8c7a9f78702fc36a0cb,1,10,233000,https://p.scdn.co/mp3-preview/2fe1d2c5df34b9ba727acc38db15e7415cd9a23a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19887508,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian country,canadian pop,contemporary country,country,country dawn",0.675,0.888,10.0,-3.018,1.0,0.0439,0.642,0.0,0.36,0.74,124.961,4.0,,Universal Music Group,"C © 2009 Mercury Records, P ℗ 2009 Mercury Records",2807 +2808,spotify:track:2LWJYvdBdcG8JMFQ1zOduR,I Begin to Wonder,spotify:artist:6XCS9JCn56Q252cMOTbeq6,Dannii Minogue,spotify:album:1hL6LPPd0YZcrE4858xIIR,Neon Nights (Rhino Re-issue),spotify:artist:6XCS9JCn56Q252cMOTbeq6,Dannii Minogue,2003-03-03,https://i.scdn.co/image/ab67616d0000b27389a3a8135ab49e14e36471dd,1,3,219999,https://p.scdn.co/mp3-preview/f1f018cd5725aeee87e7e620676258232a924c5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP0200657,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,europop",0.768,0.741,1.0,-9.252,0.0,0.0423,0.0234,7.2e-05,0.242,0.95,125.06,4.0,,Rhino,"C 2007 Warner Music UK Ltd, P 2007 Warner Music UK Ltd",2808 +2809,spotify:track:3sbChGDwxtrPcVT2f5j2Pr,So Much In Love,spotify:artist:0a1BmEq1mZ5ufKMC2fsziR,The Tymes,spotify:album:6syO6qWpMdxoH7EaY1GE7E,So Much In Love,spotify:artist:0a1BmEq1mZ5ufKMC2fsziR,The Tymes,1963-01-01,https://i.scdn.co/image/ab67616d0000b273ad73622ff52f1702d2d94c56,1,7,140466,https://p.scdn.co/mp3-preview/a1e79c5d4c55113a26b128229ae9f5de9bbb8317?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA171140038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beach music,doo-wop,philly soul,rhythm and blues",0.537,0.493,11.0,-10.327,1.0,0.0329,0.853,1.65e-05,0.407,0.475,75.576,4.0,,"ABKCO Music & Records, Inc.","C © 2012 Abkco Music & Records, Inc., P ℗ 2012 Abkco Music & Records, Inc.",2809 +2810,spotify:track:3arKRnq9OUd7yq6LRwVW8I,Soul to Squeeze,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:53tvjWbVNZKd3CvpENkzOC,Greatest Hits,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,2003-11-18,https://i.scdn.co/image/ab67616d0000b2735590b4ee88187cb06a5b102d,1,5,289533,https://p.scdn.co/mp3-preview/6767224dfe28e1171368d38f2ca4d6bec791b803?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USWB10102659,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.663,0.546,5.0,-5.234,1.0,0.0269,0.0322,0.000572,0.107,0.656,88.171,4.0,,Warner Records,"C © 2003 Warner Records Inc., P ℗ 1991, 1995, 1999, 2002, 2003 Warner Records Inc.; 1989 EMI Records",2810 +2811,spotify:track:60HDLY1Dh2Hy9wTVI3WPzO,Every Little Thing She Does Is Magic - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:5ghoXlpcDLKp3QNC2mzZ8A,Ghost In The Machine (Remastered),spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1981-10-02,https://i.scdn.co/image/ab67616d0000b273c72e349f1504e1b712d58b20,1,2,259500,https://p.scdn.co/mp3-preview/6f816f12a8d0abff7e552609d5a30d0b6be58834?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM0201127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.558,0.768,2.0,-9.997,1.0,0.0343,0.121,0.0626,0.128,0.429,81.909,4.0,,Universal Music Group,"C © 2003 A&M Records, P ℗ 2003 A&M Records",2811 +2812,spotify:track:2bNQrGahsaYjrQIFGsMFmt,Follow Me,"spotify:artist:6BrvowZBreEkXzJQMpL174, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Hardwell, Jason Derulo",spotify:album:6dHNk0tuAHifPYvtP2f1ke,United We Are,spotify:artist:6BrvowZBreEkXzJQMpL174,Hardwell,2015-01-23,https://i.scdn.co/image/ab67616d0000b27392d4176899141fa397e485b4,1,2,200010,https://p.scdn.co/mp3-preview/9eaa6a257d2cc954aae4b6a15a4bb29b4dfa2128?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLS241402165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dutch house,edm,electro house,pop dance,progressive electro house,progressive house,dance pop,pop",0.507,0.786,6.0,-2.913,1.0,0.0502,0.0127,0.0,0.0675,0.428,128.069,4.0,,Central Station Records,"C © 2015 Revealed Recordings, P ℗ 2015 Revealed Recordings, under exclusive license to Central Station Records",2812 +2813,spotify:track:6PQ88X9TkUIAUIZJHW2upE,Bad Habits,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:01NhUvviMytvV12pmJiDZH,Bad Habits,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2021-06-25,https://i.scdn.co/image/ab67616d0000b2734e03a288fd79707055759f9c,1,1,231041,https://p.scdn.co/mp3-preview/22f3a86c8a83e364db595007f9ac1d666596a335?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,GBAHS2100318,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.808,0.897,11.0,-3.712,0.0,0.0348,0.0469,3.14e-05,0.364,0.591,126.026,4.0,,Atlantic Records UK,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2021 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2021 Warner Music UK Limited",2813 +2814,spotify:track:1aMJNAWp1vQn1U3MkggXRS,Rock 'N' Roll Is King,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:0PEeeAqPfrYQmjDJCP2DmX,Secret Messages,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1983-06-01,https://i.scdn.co/image/ab67616d0000b2732594b9975a75b3ae59743302,1,10,225506,https://p.scdn.co/mp3-preview/df007b86795115762b35934c148c1d81acdf0e23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM11508578,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.365,0.874,9.0,-7.763,1.0,0.107,0.425,0.0,0.154,0.699,160.126,4.0,,Epic/Legacy,"P (P) 1983 Epic Records, a division of Sony Music Entertainment",2814 +2815,spotify:track:43mNwDn0zOH2HKl5B4aqcx,Falling,spotify:artist:4AVFqumd2ogHFlRbKIjp1t,Alesso,spotify:album:79lixUK9CJi0VpDymcQ3iY,Falling,spotify:artist:4AVFqumd2ogHFlRbKIjp1t,Alesso,2017-02-03,https://i.scdn.co/image/ab67616d0000b27340488a989d847d57669d8efb,1,1,202313,https://p.scdn.co/mp3-preview/621fdf79e21fe3b67a5ddeeddf568c0bb26196f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBUM71606806,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,progressive electro house",0.703,0.728,7.0,-4.011,0.0,0.0353,0.266,0.0,0.355,0.696,116.004,4.0,,EMI,"C © 2017 Alefune, under exclusive licence to Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2017 Alefune, under exclusive licence to Virgin EMI Records, a division of Universal Music Operations Limited",2815 +2816,spotify:track:432fRHq6vKAP11oUDYDPiY,Sober,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2MqP4akeOQpLkq7jpQqlHT,Funhouse: The Tour Edition,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2008,https://i.scdn.co/image/ab67616d0000b273faef39535383dcf65ab03f02,1,2,251533,https://p.scdn.co/mp3-preview/d2be9437cd70c57dcbdd1af739a44996ca44064f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF20800179,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.604,0.791,6.0,-4.887,1.0,0.0305,0.0738,0.0,0.211,0.399,90.939,4.0,,LaFace Records,"P (P) 2008, 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",2816 +2817,spotify:track:5osHRqrBmK2Am2FhoNm2FL,Daydreamer (feat. Example) - Radio Edit,"spotify:artist:7muzHifhMdnfN1xncRLOqk, spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW","Flux Pavilion, Example",spotify:album:1UoJMs3tWZdjCpDZGQMsOi,Daydreamer (feat. Example),spotify:artist:7muzHifhMdnfN1xncRLOqk,Flux Pavilion,2012-04-27,https://i.scdn.co/image/ab67616d0000b273a2e967caf7182c9f0caa862d,1,1,212973,https://p.scdn.co/mp3-preview/4afd12b47e0ca8c29c1e5d9479ad1e363cc87b11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAHS1200099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,classic dubstep,complextro,edm,electro house,hip house,uk dance",0.539,0.914,9.0,-5.786,0.0,0.0345,0.00219,0.0806,0.199,0.432,141.349,4.0,,Atlantic Records,"C © 2012 Warner Music UK Limited, P ℗ 2012 Warner Music UK Limited",2817 +2818,spotify:track:2XCI7vQB1pnGR3nuPtoejf,Twist And Shout,"spotify:artist:6RQkaOWddQmiLLJqSgnTbm, spotify:artist:0YeIluqMsCUwn5NC3TG2iQ, spotify:artist:2Af07b1sTnXHHSdCqdLSfy","Chaka Demus & Pliers, Jack Radics, The Taxi Gang",spotify:album:3MvOWcHQP67OGTJvr9TPFi,Tease Me,spotify:artist:6RQkaOWddQmiLLJqSgnTbm,Chaka Demus & Pliers,1993-01-01,https://i.scdn.co/image/ab67616d0000b2734751d0c75843250d38d07ab6,1,13,237506,https://p.scdn.co/mp3-preview/c4c526b358a9a1c42e930223af9122634ccc7b73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19390126,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funana,deep ragga",0.802,0.82,2.0,-9.196,1.0,0.0334,0.224,0.0,0.298,0.977,128.954,4.0,,Island Records,"C © 1993 Island Records, a division of Universal Music Operations Limited, P ℗ 1993 Island Records, a division of Universal Music Operations Limited",2818 +2819,spotify:track:0tvKT0EdO4Gm1nw7rgiHHa,(Sittin' On) The Dock of the Bay,spotify:artist:6YHEMoNPbcheiWS2haGzkn,Michael Bolton,spotify:album:6MQWMbtrLuuwjzfFLSJbhu,The Hunger,spotify:artist:6YHEMoNPbcheiWS2haGzkn,Michael Bolton,1987-10-06,https://i.scdn.co/image/ab67616d0000b2731b0669b9a7097a7b8fd981e4,1,3,231240,https://p.scdn.co/mp3-preview/e2a22fb5ea2bb21e1ad54c5826d5b502cbb7e8be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USSM18600695,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.464,0.525,2.0,-13.806,1.0,0.0566,0.192,7.23e-06,0.268,0.565,178.352,4.0,,Columbia,P (P) 1987 Sony Music Entertainment Inc.,2819 +2820,spotify:track:0PGwM5vdr5fMejx0IIAYXj,I Want You Back,spotify:artist:2iE18Oxc8YSumAU232n4rW,The Jackson 5,spotify:album:2oJRp9GV4zpFzpnneGZqZH,20th Century Masters: The Millennium Collection: Best Of The Jackson 5,spotify:artist:2iE18Oxc8YSumAU232n4rW,The Jackson 5,1999-01-01,https://i.scdn.co/image/ab67616d0000b273ea76a3da8040ff4dd01c4a86,1,1,180893,https://p.scdn.co/mp3-preview/504a5a3f9e28a41907c91d82a811017559e3c0d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO19400306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.674,0.584,8.0,-8.204,1.0,0.0318,0.466,0.00195,0.187,0.96,98.293,4.0,,Motown,"C © 1999 Motown Record Company L.P., P This Compilation ℗ 1999 Universal Motown Records, a division of UMG Recordings, Inc.",2820 +2821,spotify:track:5OVofGV3opkR1hq0C9RSCu,100 Years,spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,spotify:album:1wPbjuINyeQRPPGdLeE4ZH,100 Years,spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,2003-11-18,https://i.scdn.co/image/ab67616d0000b2737b75df9ef404ab9ceea7219d,1,1,244666,https://p.scdn.co/mp3-preview/252cc0ba7be30a7fdb06b7c6e6ce51a410e8afba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10312427,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop rock",0.636,0.561,7.0,-7.482,1.0,0.0279,0.586,1.51e-05,0.264,0.293,120.471,4.0,,Aware/Columbia,P (P) 2003 Aware Records LLC,2821 +2822,spotify:track:4lgVbDYZR1VV4gEkIueSiw,Leaving New York,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,spotify:album:5CI03g8QNehnEWXAhRtw0s,Around The Sun,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,2004-01-01,https://i.scdn.co/image/ab67616d0000b2734b1af458f45d3aa0e47d7a30,1,1,289333,https://p.scdn.co/mp3-preview/8a8611bd2284fc209408eafdbac03f01e7216de9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USWB10402409,spotify:user:bradnumber1,2024-05-07T06:48:11Z,"alternative rock,athens indie,permanent wave,rock",0.362,0.669,4.0,-5.793,0.0,0.0286,0.111,0.0,0.111,0.432,185.843,4.0,,Concord Records,"C © 2004 R.E.M./Athens L.L.C. Under exclusive license to Concord Music Group, Inc., under exclusive license to Concord Music Group, Inc., P ℗ 2004 R.E.M./Athens L.L.C. Under exclusive license to Concord Music Group, Inc., under exclusive license to Concord Music Group, Inc.",2822 +2823,spotify:track:3MFa9idQuY4iJLWsZl3tIQ,Young Hearts Run Free,spotify:artist:3S34Unhn5yRcaH5K9aU5Et,Candi Staton,spotify:album:39ntuIhbcC8rsmRV2qXkmZ,Young Hearts Run Free (US Internet Release),spotify:artist:3S34Unhn5yRcaH5K9aU5Et,Candi Staton,1976,https://i.scdn.co/image/ab67616d0000b273ea04468e11c67890666d2b34,1,5,248360,https://p.scdn.co/mp3-preview/0cd4abdbb898e1e076b758f5a61ed9f5ce062ed8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USWB19700370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,southern soul,0.654,0.652,7.0,-9.304,0.0,0.0426,0.13,1.49e-05,0.202,0.846,115.389,4.0,,Rhino/Warner Records,"C © 2004 Warner Records Inc., P ℗ 2004 Warner Records Inc.",2823 +2824,spotify:track:54aDjRpdM3EQUEkFolmsAP,Lighthouse,spotify:artist:5uKeKhwXi2w5cXdtoSaqjz,The Waifs,spotify:album:0ekOI8LYqNwEBWlzTwXp9n,Up All Night,spotify:artist:5uKeKhwXi2w5cXdtoSaqjz,The Waifs,2003-01-01,https://i.scdn.co/image/ab67616d0000b2735ed486dc31ae86b682601a9d,1,4,201706,https://p.scdn.co/mp3-preview/6147ccea7549d1a0b896b34e9479684132ac0af7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUWB00500039,spotify:user:bradnumber1,2022-01-12T23:18:36Z,"australian alternative rock,australian indie,australian rock,indie folk",0.558,0.526,9.0,-7.545,0.0,0.0419,0.672,4.81e-06,0.117,0.829,168.393,4.0,,Jarrah Records,"C 2003 Jarrah Records, P 2003 Jarrah Records",2824 +2825,spotify:track:7wLK9PAeZMBDVKsm7ptOMn,positions,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:4uURz9RLc8ZSiRvcsYLFaC,positions,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2020-10-23,https://i.scdn.co/image/ab67616d0000b2730ab92ff1d71a021208f3b512,1,1,172324,https://p.scdn.co/mp3-preview/255e1673945daf03d021b8b53ae608caf79b5464?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM72019413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.734,0.806,5.0,-4.82,1.0,0.0881,0.457,0.0,0.0936,0.616,144.028,4.0,,Republic Records,"C © 2020 Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Republic Records, a division of UMG Recordings, Inc.",2825 +2826,spotify:track:4mtUOBfy2KjqTOPl7N8esR,Top Of The World,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,spotify:album:08X9AHDRpTsipGSVfC2UID,A Song For You,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,1972-01-01,https://i.scdn.co/image/ab67616d0000b273dbea3d220fb9ea483a40a335,1,2,179173,https://p.scdn.co/mp3-preview/80762f7aa08153bef800c08b6b53d3a915838ec2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM17200071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock",0.378,0.349,10.0,-12.918,1.0,0.0455,0.817,0.0,0.0999,0.663,184.428,4.0,,Universal Special Markets,"C © 1972 A&M Records, P ℗ 1972 UMG Recordings, Inc.",2826 +2827,spotify:track:5kBZR12AntJUTo9UeAsKqP,The Winner Takes It All,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1nVUhbpkGwlTKxSIF6UJyM,Super Trouper,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1980,https://i.scdn.co/image/ab67616d0000b273226c848268e693f3812e7e69,1,2,294720,https://p.scdn.co/mp3-preview/a5c0b3c58f991b2b1f492ddb59223bb561a9a787?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAYD8001020,spotify:user:bradnumber1,2021-08-08T09:27:38Z,"europop,swedish pop",0.458,0.794,6.0,-6.751,1.0,0.0376,0.541,0.00105,0.101,0.505,126.951,4.0,,Universal Music Group,"C © 2001 Polar Music International AB, P ℗ 2001 Polar Music International AB",2827 +2828,spotify:track:5S0OKEFqBZU4JXQNYgMtli,Hook Me Up,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:0o1jl5ZHFcYermdCnHZwDZ,Hook Me Up,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2007-10-30,https://i.scdn.co/image/ab67616d0000b27347634bab935c170220b6236a,1,2,175906,https://p.scdn.co/mp3-preview/ab083a105289959bccbef813031725a3dc459bf6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USWB10703749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.755,0.937,8.0,-3.04,1.0,0.0719,0.0425,0.121,0.0561,0.776,133.972,4.0,,Sire/Warner Records,"C © 2007 Sire Records for the U.S. Marketed by Warner Records Inc., A Warner Music Group Company., P ℗ 2007 Sire Records for the U.S. Marketed by Warner Records Inc., A Warner Music Group Company.",2828 +2829,spotify:track:3bMt6mpqpDiCRQ3poewMAo,Bits and Pieces - 2019 - Remaster,spotify:artist:2HBbky0Z08ZcCKVsXWbNE4,The Dave Clark Five,spotify:album:6v5uK6Y4PbR2jIIGwJrsuL,Glad All Over (2019 - Remaster),spotify:artist:2HBbky0Z08ZcCKVsXWbNE4,The Dave Clark Five,1964-07-06,https://i.scdn.co/image/ab67616d0000b27386b70e6e83cf70beb5521fbd,1,7,118906,https://p.scdn.co/mp3-preview/831b68baf7dd993c0754d8793fbc51b2b163a8bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB5KW1901735,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,merseybeat",0.485,0.835,5.0,-8.871,0.0,0.101,0.0225,0.000114,0.0766,0.974,143.853,4.0,,BMG Rights Management (UK) Limited,"C © 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Limited, P ℗ 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Limited",2829 +2830,spotify:track:2pfOHkPBfyGlEpuPHpOxBn,Better,"spotify:artist:4AA8eXtzqh5ykxtafLaPOi, spotify:artist:7xmK7SfecrmjqsiIoSa1uf","What So Not, LPX",spotify:album:40x0uO366IEQO0V8wAdO2v,Better,"spotify:artist:4AA8eXtzqh5ykxtafLaPOi, spotify:artist:7xmK7SfecrmjqsiIoSa1uf","What So Not, LPX",2017-09-08,https://i.scdn.co/image/ab67616d0000b273fa98f3c930c547544635fe28,1,1,214253,https://p.scdn.co/mp3-preview/f96a474ce17b499867c79be1576c60fb2386a093?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUDCB1701083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,brostep,edm,electro house,electronic trap,escape room,vapor twitch",0.406,0.8,8.0,-4.444,1.0,0.204,0.0152,0.0,0.16,0.317,166.208,4.0,,WM Australia,"C © 2017 Sweat It Out!, P ℗ 2017 Sweat It Out! Distributed by Warner Music Australia Pty Ltd",2830 +2831,spotify:track:03F1KFZ56haKwAZwKcB2xR,Surrender,spotify:artist:3KCX3JQgSE4P3iJGh9iCTP,The Collective,spotify:album:1rkhMrKgDadryX3Hlw45OY,The Collective,spotify:artist:3KCX3JQgSE4P3iJGh9iCTP,The Collective,2012-12-14,https://i.scdn.co/image/ab67616d0000b27356ef92e11e256436c2b07ade,1,1,226986,https://p.scdn.co/mp3-preview/a0f2381df7b577dbcd5936ee1980d409669e9e48?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUBM01200425,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,boy band",0.665,0.776,0.0,-3.693,1.0,0.0493,0.0117,0.0,0.156,0.81,117.962,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,2831 +2832,spotify:track:1r3myKmjWoOqRip99CmSj1,Don't Wanna Go Home,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:31tCg5RXhY5jpagfCPcQa2,Future History (Deluxe Edition),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2011-09-16,https://i.scdn.co/image/ab67616d0000b27381541b43fcbc56488853de26,1,1,206080,https://p.scdn.co/mp3-preview/f236be37ce5bdf376af4c72449d95674316159f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USWB11101043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.671,0.808,2.0,-4.861,0.0,0.0652,0.02,0.0,0.134,0.637,121.956,4.0,,Beluga Heights/Warner Records,"C © 2011 Warner Records Inc., P ℗ 2011 Warner Records Inc.",2832 +2833,spotify:track:3W3YFrguAWe4dHpC3uKHel,Long Haired Lover From Liverpool,spotify:artist:0ix7E72xX5yWLJYEoowXFh,Jimmy Osmond,spotify:album:29wHd2bW5SC6uDNXvk6dYQ,Very Best Of The Osmonds,spotify:artist:5fU6lODhpw3GEGGJuaDprR,The Osmonds,1996,https://i.scdn.co/image/ab67616d0000b273d912a247dab784a4b9f69a9a,1,22,132533,https://p.scdn.co/mp3-preview/d71e12f27eba39a6ee87bffe4799b506eaaeefed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USPR37207325,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.763,0.674,11.0,-5.842,1.0,0.0365,0.338,2.02e-06,0.0952,0.939,131.338,4.0,,Polydor Records,"C © 1996 PolyGram Records Inc., P This Compilation ℗ 1973 PolyGram Records Inc.",2833 +2834,spotify:track:335dNkjlQKrFtT5t9Oo2Hy,Don't Believe In Love,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:317X7pnw9z4je8kRJ293uZ,Don't Believe In Love,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2020-02-28,https://i.scdn.co/image/ab67616d0000b2736bf855c37368c51604cc215b,1,1,203656,https://p.scdn.co/mp3-preview/a17dac9aa72cc8a75535c8215a72722621d57436?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUIYA2000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.585,0.612,5.0,-4.721,0.0,0.0789,0.247,1.46e-05,0.0474,0.767,204.107,4.0,,Empire Of Song,"C 2020 Empire Of Song (Australia) Pty Ltd, P 2020 Empire Of Song (Australia) Pty Ltd",2834 +2835,spotify:track:4ml6eCtBlmYVfpfXJsUFD2,Something So Strong,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:3XLP6DCTfz8eQkORPdfvvy,The Very Very Best Of Crowded House (Deluxe Edition),spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,2010-10-15,https://i.scdn.co/image/ab67616d0000b273ff3f6372e07e556e636cfea1,1,4,173964,https://p.scdn.co/mp3-preview/a8084388df5ec85a481c44a20830e98ebc597734?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USCA28700545,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.573,0.886,7.0,-5.206,1.0,0.0459,0.0914,4.41e-05,0.0718,0.682,119.829,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P This Compilation ℗ 2010 Capitol Records, LLC",2835 +2836,spotify:track:1AwJGxWNl5n8O2CSlvPKYL,Dancing On The Ceiling,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,spotify:album:1b81mEDt3DmqDdQrZg3i8F,Dancing On The Ceiling (Expanded Edition),spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,1986,https://i.scdn.co/image/ab67616d0000b2731ecfc3fc174dd04ce417bc09,1,1,270720,https://p.scdn.co/mp3-preview/c48366f931efb095562e7a23f267319f989c0bcd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18682745,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.698,0.774,0.0,-8.642,1.0,0.048,0.12,2.26e-06,0.409,0.731,133.197,4.0,,Universal Music Group,"C © 2003 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2003 Universal Motown Records, a division of UMG Recordings, Inc.",2836 +2837,spotify:track:1SssFw74DdHVjRa6ADggdD,Sweat (A La La La La Long),spotify:artist:5os0Ltvz8Q8BvXOPOd1frx,Inner Circle,spotify:album:0zLd8jpRt4m6FWCu81Fb9n,Blazzin' Fire,spotify:artist:5os0Ltvz8Q8BvXOPOd1frx,Inner Circle,2010-12-14,https://i.scdn.co/image/ab67616d0000b273cd07cdbe4b041324103c0f08,1,2,227067,https://p.scdn.co/mp3-preview/fa61f4747955cdd1cba4974929336ac31bf19ac2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USA2P1004785,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae,reggae fusion",0.787,0.728,0.0,-7.705,1.0,0.218,0.0124,0.0,0.157,0.94,173.026,4.0,,DubShot Records/Sound Bwoy Entertainment,"C 2010 DubShot Records/Soundbwoy Entertainment, P 2010 DubShot Records/Soundbwoy Entertainment",2837 +2838,spotify:track:0nnwn7LWHCAu09jfuH1xTA,Slide,spotify:artist:2sil8z5kiy4r76CRTXxBCA,The Goo Goo Dolls,spotify:album:4UMjBXcRqIgMZ1XumU2x5T,Dizzy up the Girl,spotify:artist:2sil8z5kiy4r76CRTXxBCA,The Goo Goo Dolls,1998,https://i.scdn.co/image/ab67616d0000b273eda9478c39a21e1cdc6609ca,1,2,212066,https://p.scdn.co/mp3-preview/df606d8138f5770ccdd87f7246015f17cf4e3b7e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USWB19800781,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,permanent wave,pop rock,post-grunge",0.395,0.843,8.0,-4.476,1.0,0.0374,0.00483,0.0,0.0404,0.481,112.423,4.0,,Warner Records,"C © 1998 Warner Records Inc., P ℗ 1998 Warner Records Inc.",2838 +2839,spotify:track:6c6k5Xi0E6wqJNb5b3qLYO,Eleanor Rigby,spotify:artist:6nv55DhqbeO8YUWFCfFAys,Zoot,spotify:album:3jECHnZdJq6NHtlMA4QJBH,Complete Seventies,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b273da0868a50ebe32672298df54,1,11,282026,https://p.scdn.co/mp3-preview/0ac10c62b2dd8b5e003e6fc17eaf17026e3b9b51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM07100003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.288,0.677,3.0,-6.965,0.0,0.0315,0.0602,0.00065,0.117,0.572,155.114,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2010 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2010 EMI Recorded Music Australia Pty Ltd.",2839 +2840,spotify:track:2ZS0wDcdfrJPC86u5aJGo9,Seventeen,spotify:artist:2qQeKHrQJHLLbvDAOSO874,Winger,spotify:album:4aMtQDeDMAHBfh7cE87PWo,Winger,spotify:artist:2qQeKHrQJHLLbvDAOSO874,Winger,1988,https://i.scdn.co/image/ab67616d0000b273527dcb252b7f4a99a0b120c2,1,3,245266,https://p.scdn.co/mp3-preview/a26a5789714798dfc99bfdc0e8a831f711e0b8fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USAT20902970,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam metal,hard rock",0.577,0.676,8.0,-11.931,1.0,0.0295,0.000895,2.29e-06,0.0625,0.676,95.98,4.0,,Rhino Atlantic,"C © 1988 Atlantic Recording Corp., P ℗ 1988 Atlantic Recording Corp. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",2840 +2841,spotify:track:2sFbdDiEDpyCdP5nUCuGBm,Following the Sun,"spotify:artist:2lJ6K4PTrrweXhRiqh1CZE, spotify:artist:1JPZHb1qziDJ05n0a1OvfW","SUPER-Hi, NEEKA",spotify:album:51SEsgwoNiKu8rcZxQTjo4,Following the Sun,"spotify:artist:2lJ6K4PTrrweXhRiqh1CZE, spotify:artist:1JPZHb1qziDJ05n0a1OvfW","SUPER-Hi, NEEKA",2020-10-02,https://i.scdn.co/image/ab67616d0000b2732b35f0d4aa627c4cb238954e,1,1,205000,https://p.scdn.co/mp3-preview/4716f80c86c8f74117c12e2e9aa34ed8f8e45502?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,SE5BU2081473,spotify:user:bradnumber1,2022-05-19T22:46:22Z,,0.734,0.828,6.0,-4.433,0.0,0.033,0.398,0.0225,0.136,0.717,127.023,4.0,,BLENDED,"C 2020 BLENDED, P 2020 BLENDED",2841 +2842,spotify:track:19K3lUMJmOdeuOBTrbLm19,Weekend Wars,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,spotify:album:6mm1Skz3JE6AXneya9Nyiv,Oracular Spectacular,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,2007-12-14,https://i.scdn.co/image/ab67616d0000b2738b32b139981e79f2ebe005eb,1,2,250773,https://p.scdn.co/mp3-preview/b899f3ae8dce391789b85c963346580943e85dc7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USSM10702128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,indie rock,indietronica,modern rock,rock",0.549,0.859,5.0,-3.993,1.0,0.0361,0.0964,2.36e-05,0.322,0.69,77.013,4.0,,Red Ink/Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT,2842 +2843,spotify:track:6PCUP3dWmTjcTtXY02oFdT,Castle on the Hill,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:3T4tUhGYeRNVUGevb0wThu,÷ (Deluxe),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2017-03-03,https://i.scdn.co/image/ab67616d0000b273ba5db46f4b838ef6027e6f96,1,2,261153,https://p.scdn.co/mp3-preview/f3cb6f2e07da189bbace23509fd9c03d63949292?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBAHS1600462,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.461,0.834,2.0,-4.868,1.0,0.0989,0.0232,1.14e-05,0.14,0.471,135.007,4.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company.",2843 +2844,spotify:track:147k5Uj9xnXzmU9QUZzA2N,Starry Eyed,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:4A6XWFgHnydzc3GP89G2jd,Lights,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2011-03-08,https://i.scdn.co/image/ab67616d0000b2735608e05b66d69c857f6d4bd2,1,2,176613,https://p.scdn.co/mp3-preview/bb36680671047f8d0639b356db158422784c31ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70915600,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.501,0.812,5.0,-5.345,0.0,0.0375,0.133,8.39e-06,0.324,0.603,149.86,4.0,,Universal Music Group,"C © 2010 Polydor Ltd. (UK), P ℗ 2010 Polydor Ltd. (UK)",2844 +2845,spotify:track:23WHTR4EN7QUx1oqa2z0zh,We Own It (Fast & Furious),"spotify:artist:17lzZA2AlOHwCwFALHttmp, spotify:artist:137W8MRPWKqSmrBGDBFSop","2 Chainz, Wiz Khalifa",spotify:album:5egYYjj06RlBCP2bVhnblH,B.O.A.T.S. II #METIME (Deluxe),spotify:artist:17lzZA2AlOHwCwFALHttmp,2 Chainz,2013-01-01,https://i.scdn.co/image/ab67616d0000b273a225f4a060d8536732c6ddfb,1,18,227906,https://p.scdn.co/mp3-preview/fd9d729131e0f9273319ee2d924ecbe9afa192d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71305173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,hip hop,pop rap,rap,southern hip hop,trap,hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap",0.548,0.903,1.0,-4.562,0.0,0.409,0.0516,0.0,0.0529,0.552,172.042,4.0,,Universal Music Group,"C © 2013 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2013 Def Jam Recordings, a division of UMG Recordings, Inc.",2845 +2846,spotify:track:34Omc6EuPtQ7APooNVRZKk,Just A Little Bit,spotify:artist:4XLDU2AQL3oFnd27IMcNqY,Kids Of 88,spotify:album:67NWJ3RuWpPohz3zvJmmOb,Sugarpills,spotify:artist:4XLDU2AQL3oFnd27IMcNqY,Kids Of 88,2011-06-10,https://i.scdn.co/image/ab67616d0000b273b3242a4d94877ebc3ce8c2b4,1,2,180493,https://p.scdn.co/mp3-preview/2c03e768a9d4ad07355cb94a8d831e6dd50ac9a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,NZDY11000021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.534,0.75,7.0,-4.886,1.0,0.0386,0.00121,0.0,0.0772,0.265,131.967,4.0,,Dryden Street,P (P) 2010 Dryden St under exclusive licence to Sony Music Entertainment Australia Pty Ltd.,2846 +2847,spotify:track:3K8rbysInYs6bEhMGgm0wh,Never Again,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:5fKL7vMTXvhR9tov8Kqt3u,Silver Side Up,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2001-09-11,https://i.scdn.co/image/ab67616d0000b273699a422d25adc550dc5aa11c,1,1,260826,https://p.scdn.co/mp3-preview/e0dbef21b98d8f6bec4f8a5bbdbe0fa68e743c0a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,56,NLA320119566,spotify:user:bradnumber1,2022-08-26T01:41:10Z,"alternative metal,canadian rock,post-grunge",0.592,0.907,7.0,-3.651,1.0,0.0541,0.000428,2.09e-05,0.0681,0.919,135.674,4.0,,Roadrunner Records,"C © 2001 The All Blacks B.V., P ℗ 2001 The All Blacks B.V.",2847 +2848,spotify:track:4G8Z3T212CDUrH1z1Qe10K,The Golden Age,spotify:artist:68g1s6VqLLLBI3tXR0Bb7C,The Asteroids Galaxy Tour,spotify:album:4IFHVztWzv5BYgckMjT2X4,Fruit,spotify:artist:68g1s6VqLLLBI3tXR0Bb7C,The Asteroids Galaxy Tour,2009-11-07,https://i.scdn.co/image/ab67616d0000b273ecc48b47a039765d47187ad1,1,6,230360,https://p.scdn.co/mp3-preview/56b89b3b18eb73fb0b257dcc549c2d6227a721d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBWRR0800045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.567,0.921,7.0,-2.302,0.0,0.0505,0.141,8.79e-06,0.165,0.707,169.996,4.0,,Small Giants Records Ltd.,"C 2009 Small Giants Records Ltd, P 2009 Small Giants Records Ltd",2848 +2849,spotify:track:0OlnLZY4cmQzT6ZGttvWBM,So Far Away (feat. Jamie Scott & Romy Dya),"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:29QbBR0oTzA7A0kiOzrbbr, spotify:artist:5gWzmnHTLNXz5CjOc0wAuK","Martin Garrix, David Guetta, Jamie Scott, Romy Dya",spotify:album:3jMnO9ehAlTTCxNeVMu1zY,So Far Away (feat. Jamie Scott & Romy Dya),"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Martin Garrix, David Guetta",2017-12-01,https://i.scdn.co/image/ab67616d0000b2732bfb97c135445f83927049ca,1,1,183636,https://p.scdn.co/mp3-preview/b7c853d988e36837686fd80971e79d037376e4fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,NLM5S1600075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch edm,edm,pop,pop dance,progressive house,big room,dance pop,edm,pop,pop dance,uk pop,dutch pop",0.526,0.52,6.0,-7.985,0.0,0.0569,0.435,0.0,0.197,0.13,149.119,4.0,,Epic Amsterdam,"P (P) 2017 STMPD RCRDS B.V. exclusively licensed to Epic Amsterdam, a division of Sony Music Entertainment Netherlands B.V.",2849 +2850,spotify:track:5odolvi4Flv8SeSje9WzcS,Live In Life,spotify:artist:2hrWpLNoJcs1EnWSXvB6JI,The Rubens,spotify:album:6Ruh8OOlFGQDJOq4CoSeBd,Live In Life,spotify:artist:2hrWpLNoJcs1EnWSXvB6JI,The Rubens,2019-11-14,https://i.scdn.co/image/ab67616d0000b2735c54696f848842dd9b342738,1,1,216447,https://p.scdn.co/mp3-preview/801931ecb3cba49c2f107f3c704c0012e016a7ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AULI01927530,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.695,0.691,5.0,-4.73,0.0,0.0351,0.147,2.21e-06,0.152,0.563,104.015,4.0,,Ivy League Records,"C 2019 Ivy League Records, P 2019 Ivy League Records",2850 +2851,spotify:track:4VmLRHAhABrGBg7LGiM3cO,Who Do U Love,spotify:artist:601893mmW5hl1FBOykWZHG,Deborah Cox,spotify:album:6jtSQVGM4W2ODQAKx65RBx,Ultimate Deborah Cox,spotify:artist:601893mmW5hl1FBOykWZHG,Deborah Cox,2004-05-17,https://i.scdn.co/image/ab67616d0000b273d4a68ee4ad66d289a5ff94c1,1,2,261826,https://p.scdn.co/mp3-preview/65fc187feb2116a8a4257ead832370f8bce11eab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USAR19901170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,contemporary r&b,r&b,urban contemporary,vocal house",0.701,0.82,2.0,-7.117,1.0,0.136,0.0299,3.69e-06,0.148,0.655,87.913,4.0,,BMG Heritage,P This compilation (P) 2004 BMG Music,2851 +2852,spotify:track:3rNw0VlvCyikKlppmonX29,Let Go,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:1WO7bigEZckVrkzPBjAsiQ,In My Own Words,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2006-01-01,https://i.scdn.co/image/ab67616d0000b273b1ae30a0da12549cd8b7ba28,1,11,228693,https://p.scdn.co/mp3-preview/dc58ff3ff908c6ca5853ce9a2cbed1b572b9b5b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70600315,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.692,0.511,5.0,-7.796,0.0,0.0696,0.0941,0.0,0.112,0.629,134.073,4.0,,Universal Music Group,"C © 2006 The Island Def Jam Music Group, P ℗ 2006 The Island Def Jam Music Group",2852 +2853,spotify:track:5nP6bZZpeT9hbtvePmy9ko,Moody Blue,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:08bROKoMarHS0jRzZOEv08,Moody Blue,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1977-07-19,https://i.scdn.co/image/ab67616d0000b273889bf6ae097a927074233125,1,8,169320,https://p.scdn.co/mp3-preview/97082bab74a04840f959b0221846bcea11e22f80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USRC17601896,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.643,0.729,0.0,-10.231,1.0,0.0297,0.674,7.99e-06,0.173,0.963,135.29,4.0,,RCA Records Label,P (P) 1976 Sony Music Entertainment,2853 +2854,spotify:track:3Qfk0grXXpidpuA64EKb3r,Proud,spotify:artist:3tnTlR2MCaYNQqV3v1908x,Heather Small,spotify:album:0hLjy4JV54hKX3GM9Evmuw,Proud,spotify:artist:3tnTlR2MCaYNQqV3v1908x,Heather Small,1999-06-28,https://i.scdn.co/image/ab67616d0000b273d892a7641d0d6b6169387923,1,1,268600,https://p.scdn.co/mp3-preview/868832794fb2072a40ee423cbb1960e088a65cdd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBARK0000088,spotify:user:bradnumber1,2022-09-29T11:14:49Z,"british soul,diva house",0.636,0.868,11.0,-6.673,0.0,0.0414,0.238,0.0,0.0649,0.49,103.005,4.0,,Arista,P (P) 2000 BMG Eurodisc Ltd,2854 +2855,spotify:track:6qTmjG7thRJEOaUKFmfjGR,The Last Day on Earth,spotify:artist:6sfUgwUTFjy1SNF2uWOcPp,Kate Miller-Heidke,spotify:album:4MfZuQLc3X8SwngAcD6OLD,Curiouser,spotify:artist:6sfUgwUTFjy1SNF2uWOcPp,Kate Miller-Heidke,2008-10-18,https://i.scdn.co/image/ab67616d0000b273070a426fe63d5f2fa2ea55ac,1,5,287093,https://p.scdn.co/mp3-preview/b7cd050652df711ba8e912bb36f1b17bd0b25855?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUBM00800480,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian singer-songwriter,lilith,piano rock",0.61,0.44,0.0,-7.864,1.0,0.0256,0.564,0.000897,0.0923,0.168,79.002,4.0,,Sony Music Entertainment,P (P) 2008 SONY BMG Music Entertainment (Australia) Pty Limited,2855 +2856,spotify:track:2Dw5HqiZdbIL3mHq0dWBrL,Image Of A Girl,spotify:artist:4LYmQXFj0BsQMrcigsdWll,The Safaris,spotify:album:0T0NekoY3PvglUv7vjTv97,Teen Idols Of The Past,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-04-01,https://i.scdn.co/image/ab67616d0000b273eb34a41ddc0cfa99b58c53e6,1,13,156720,https://p.scdn.co/mp3-preview/bffeccd3ae391cd6ca69672abda4fbaa869b386e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA371272892,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.186,0.371,2.0,-10.693,1.0,0.0369,0.739,0.0,0.0754,0.365,62.97,4.0,,Master Classics Records,C (C) 2011 Master Classics Records,2856 +2857,spotify:track:5I3hQNKjCwalENrab1SBtt,Walking To New Orleans - Remastered,spotify:artist:09C0xjtosNAIXP36wTnWxd,Fats Domino,spotify:album:0SFClXD5CAnZ6vzrcTzXgQ,Greatest Hits: Walking To New Orleans,spotify:artist:09C0xjtosNAIXP36wTnWxd,Fats Domino,2007-01-01,https://i.scdn.co/image/ab67616d0000b2737313f9fa26988b263f725287,1,28,121213,https://p.scdn.co/mp3-preview/6f2baa162f2cd6ba415a276e7c096606d0cc11fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USEM30100738,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"louisiana blues,new orleans blues,piano blues,rock-and-roll,rockabilly",0.606,0.344,1.0,-9.944,1.0,0.0403,0.782,0.0,0.132,0.517,80.829,4.0,,Capitol Records,"C © 2007 Capitol Records Inc., P This Compilation ℗ 2007 Capitol Records Inc.",2857 +2858,spotify:track:4eHbdreAnSOrDDsFfc4Fpm,I Will Always Love You,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:7JVJlkNNobS0GSoy4tCS96,The Bodyguard - Original Soundtrack Album,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1992-11-17,https://i.scdn.co/image/ab67616d0000b273456c0b5d0316a80dc600802e,1,1,271093,https://p.scdn.co/mp3-preview/db431eff82899d9af76c9156d66d29aa951c21d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USAR19200110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.332,0.214,4.0,-12.518,1.0,0.0349,0.845,5.62e-06,0.0839,0.11,67.531,4.0,,Arista,P (P) 1992 Arista Records LLC,2858 +2859,spotify:track:4slSrbTK1sNK4I1mDYEthf,Rover (feat. DTG),"spotify:artist:71jSVPQ6yskfyvWeiwvT5s, spotify:artist:6kZWqUZqptyxb8Ki5DyBAg","S1mba, DTG",spotify:album:6XwFgPuBbmmfXEQhCcgPvd,Rover (feat. DTG),"spotify:artist:71jSVPQ6yskfyvWeiwvT5s, spotify:artist:6kZWqUZqptyxb8Ki5DyBAg","S1mba, DTG",2020-03-04,https://i.scdn.co/image/ab67616d0000b27393bd3705124672a86fb7182f,1,1,167916,https://p.scdn.co/mp3-preview/13ac0a850a436c3f10fdf2b765582b65667d916d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,66,GBCUW1900128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"afroswing,afroswing",0.613,0.624,11.0,-6.66,0.0,0.206,0.496,0.0,0.283,0.803,62.948,5.0,,Parlophone UK,"C © 2020 Rax Productions Limited under exclusive licence to Parlophone Records Limited, a Warner Music Group company, P ℗ 2020 Rax Productions Limited under exclusive licence to Parlophone Records Limited, a Warner Music Group company",2859 +2860,spotify:track:74xxxGFo1Laa5laevXZuVI,Turn the Beat Around,spotify:artist:5IFCkqu9J6xdWeYMk5I889,Gloria Estefan,spotify:album:7yk2MYBYAaxPSRXaLmoOpv,"Hold Me, Thrill Me, Kiss Me",spotify:artist:5IFCkqu9J6xdWeYMk5I889,Gloria Estefan,1994,https://i.scdn.co/image/ab67616d0000b2739a5f1ce8162f5cbf3b8d6a6a,1,7,233200,https://p.scdn.co/mp3-preview/824e06925230698feab6f5579552472f2907c802?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USSM19400324,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.735,0.804,6.0,-6.476,0.0,0.0347,0.0145,0.0,0.0716,0.539,130.018,4.0,,Epic,P 1994 Sony Music Entertainment Inc.,2860 +2861,spotify:track:7aftSOGSOpSoIlVAQVBb71,Break Up In A Small Town,spotify:artist:2kucQ9jQwuD8jWdtR9Ef38,Sam Hunt,spotify:album:0V7c0hnrLUFJyHNtjiAT2E,Montevallo,spotify:artist:2kucQ9jQwuD8jWdtR9Ef38,Sam Hunt,2014-10-24,https://i.scdn.co/image/ab67616d0000b2739e6b694939f7495f67a0de33,1,4,229880,https://p.scdn.co/mp3-preview/af7f03e3ec216e4f8768869ea5dc1b8f79f4f82f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM71411195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country pop,modern country rock",0.579,0.776,8.0,-5.365,1.0,0.173,0.0749,0.0,0.239,0.434,136.044,4.0,,MCA Nashville,"C © 2014 MCA Nashville, a Division of UMG Recordings, Inc., P ℗ 2014 MCA Nashville, a Division of UMG Recordings, Inc.",2861 +2862,spotify:track:6q0nQKF0fNb34ntUUE4p9b,What Other People Say,"spotify:artist:6L1XC7NrmgWRlwAeLJvVtA, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Sam Fischer, Demi Lovato",spotify:album:0CxxXDVh1Ug0LoWVE76Rk4,What Other People Say,"spotify:artist:6L1XC7NrmgWRlwAeLJvVtA, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Sam Fischer, Demi Lovato",2021-02-03,https://i.scdn.co/image/ab67616d0000b273385e2c7304fc10f129b4eb58,1,1,194890,https://p.scdn.co/mp3-preview/863d6a8232214466d080021480faf4e9748857d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBARL2100044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,singer-songwriter pop,pop,post-teen pop",0.646,0.487,7.0,-8.262,1.0,0.0404,0.16,0.0,0.155,0.221,126.931,4.0,,RCA Records Label,"P (P) 2021 Sony Music Entertainment UK Limited / Island Records, a division of UMG Recordings, Inc under exclusive licence to Sony Music Entertainment UK Limited",2862 +2863,spotify:track:4wx3anSO3E8O7oD4IHKqED,Step By Step,spotify:artist:64vw6q9ZBTop3Tf2ol1x4U,The Crests,spotify:album:3WIj08gD3U2KEgs2m8yHED,Greatest Hits,spotify:artist:64vw6q9ZBTop3Tf2ol1x4U,The Crests,1958-01-01,https://i.scdn.co/image/ab67616d0000b27334bc496e4e9d53e36c3ff674,1,14,149493,https://p.scdn.co/mp3-preview/c525c29c23d57cce4564b8818b99059eabaadb64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,NLG620401592,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.283,0.7,0.0,-11.605,1.0,0.0756,0.873,0.0,0.179,0.896,200.632,4.0,,Post Records,C (C) 2007 Smith & Co,2863 +2864,spotify:track:7tAXHZdp9UpcYrHn7MZqfo,Forever,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,spotify:album:74JkTYeuAlUUNuusDyAl3Q,Forever,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2007-11-02,https://i.scdn.co/image/ab67616d0000b273eb2ed001725f6548feb2c37c,1,1,278573,https://p.scdn.co/mp3-preview/8ced469a7f355ad5cc1119e9fa83d79dc134d22f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI10800113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap",0.672,0.819,11.0,-4.457,1.0,0.0463,0.0362,0.000196,0.182,0.445,120.009,4.0,,Jive,"P (P) 2008 RCA Records, a division of Sony Music Entertainment",2864 +2865,spotify:track:4HA2jo7wkMdN1lmLO6ryzE,End Of The Line,spotify:artist:2hO4YtXUFJiUYS2uYFvHNK,Traveling Wilburys,spotify:album:7K3OJcdtRxv7miXfQBzvbi,"The Traveling Wilburys, Vol. 1",spotify:artist:2hO4YtXUFJiUYS2uYFvHNK,Traveling Wilburys,1988-10-18,https://i.scdn.co/image/ab67616d0000b273d9e06f988048ecf3c54ca749,1,10,209520,https://p.scdn.co/mp3-preview/28a6ef2978342136761bb994d96a09ca4ab6894b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBLVT0700010,spotify:user:bradnumber1,2022-08-31T00:10:11Z,"album rock,beatlesque,classic rock,country rock,folk,folk rock,mellow gold,rock,singer-songwriter,soft rock,supergroup",0.578,0.836,2.0,-6.607,1.0,0.0512,0.163,1.36e-06,0.0583,0.932,167.026,4.0,,Concord Records,"C © 2007 T. Wilbury Limited., Exclusively Licensed to Concord Music Group, Inc., P ℗ 2007 T. Wilbury Limited., Exclusively Licensed to Concord Music Group, Inc.",2865 +2866,spotify:track:1c2hJSwcCfoPEw1su83Sw0,Hold My Hand,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:3tjIKRAPBy5Qu4z8F5HmBz,Top Gun: Maverick (Music From The Motion Picture),"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:5Pwc4xIPtQLFEnJriah9YJ, spotify:artist:0YC192cP3KPCRWx8zr8MfZ","Lady Gaga, OneRepublic, Hans Zimmer",2022-05-27,https://i.scdn.co/image/ab67616d0000b27302701cfe03aca6827b5c5449,1,11,225280,https://p.scdn.co/mp3-preview/8232eba5998965830c38f5ae0b0e16ca4e5c4bda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM72206231,spotify:user:bradnumber1,2022-06-26T20:10:18Z,"art pop,dance pop,pop",0.53,0.612,7.0,-4.286,1.0,0.0331,0.0403,0.0,0.393,0.264,148.009,3.0,,Interscope Records,"C © 2022 Paramount Pictures, P ℗ 2022 Interscope Records",2866 +2867,spotify:track:6wpGqhRvJGNNXwWlPmkMyO,I Still Haven't Found What I'm Looking For,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:5y6wlw1LnqFnQFruMeiwGU,The Joshua Tree (Super Deluxe),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1987-03-03,https://i.scdn.co/image/ab67616d0000b273b7bea3d01f04e6d0408d2afe,1,2,277476,https://p.scdn.co/mp3-preview/977c8d1d535253a9a4e1061cf4585b624dd205c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBUM70709783,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.564,0.774,1.0,-9.424,1.0,0.0368,0.0135,0.00191,0.0861,0.657,100.894,4.0,,UMC (Universal Music Catalogue),"C © 2017 Island Records, a division of Universal Music Operations Limited, P This Compilation ℗ 2017 Island Records, a division of Universal Music Operations Limited",2867 +2868,spotify:track:6kPJZM97LwdG9QIsT7khp6,Solo (feat. Demi Lovato),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Clean Bandit, Demi Lovato",spotify:album:1q7a5wZeti0neU2jDn8Dz3,Solo (feat. Demi Lovato),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Clean Bandit, Demi Lovato",2018-05-17,https://i.scdn.co/image/ab67616d0000b27367eda217860e86c43481a5cb,1,1,222653,https://p.scdn.co/mp3-preview/1f92110d14e654be8fba8b9b8c7aed31082b31e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBAHS1800328,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,pop,post-teen pop",0.737,0.636,11.0,-4.546,0.0,0.0437,0.0441,6.66e-05,0.35,0.565,105.005,4.0,,Atlantic Records UK,"C © 2018 Atlantic Records UK, a Warner Music Group Company, P ℗ 2018 Atlantic Records UK, a Warner Music Group company",2868 +2869,spotify:track:4ZIb6YivyYtpOD0Ur7kDEP,Only One,"spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:4STHEaNw4mPZ2tzheohgXB","Kanye West, Paul McCartney",spotify:album:7FhiPGHTsdrGf8lxp0YpET,Only One,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2015-01-08,https://i.scdn.co/image/ab67616d0000b27300be5da214751f775b111c42,1,1,280226,https://p.scdn.co/mp3-preview/56411615c44a4b8c9fcc5998278c02d50c69a55e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71418191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap,classic rock,mellow gold,rock,soft rock",0.718,0.25,0.0,-5.972,1.0,0.0429,0.939,0.0,0.111,0.132,102.335,4.0,,Universal Music Group,"C © 2014 Good Music, Distributed By Def Jam, A Division of UMG Recordings, In, P ℗ 2014 Good Music, Distributed By Def Jam, A Division of UMG Recordings, In",2869 +2870,spotify:track:1F1cUb6tUhyRbSim00bkLW,Like Soda,spotify:artist:2N2EFVDEbp2JB8ulEUVIxp,Violent Soho,spotify:album:38osPmwnMy3ZdijIjce6Nu,WACO,spotify:artist:2N2EFVDEbp2JB8ulEUVIxp,Violent Soho,2016-03-18,https://i.scdn.co/image/ab67616d0000b2733778036027090f970819bba5,1,5,242133,https://p.scdn.co/mp3-preview/d01d2896e42aa0e250dda10d2e7451d3c9e28953?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01501640,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian garage punk,australian indie,australian surf rock,brisbane indie",0.33,0.863,2.0,-4.443,1.0,0.0988,0.0174,0.0,0.0778,0.284,130.776,4.0,,I OH YOU,"C 2016 I Oh You, P 2016 I Oh You",2870 +2871,spotify:track:6hTcuIQa0sxrrByu9wTD7s,Born to Run,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,spotify:album:43YIoHKSrEw2GJsWmhZIpu,Born To Run,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,1975-08-25,https://i.scdn.co/image/ab67616d0000b273503143a281a3f30268dcd9f9,1,5,269920,https://p.scdn.co/mp3-preview/442d88c6d7caccd1fd655425bd4bf1bfb4b33831?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM17500423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"heartland rock,mellow gold,permanent wave,rock,singer-songwriter",0.27,0.944,4.0,-4.199,1.0,0.0975,0.00501,2.05e-05,0.116,0.606,146.347,4.0,,Columbia,P (P) 1975 Bruce Springsteen,2871 +2872,spotify:track:1TglK1NhDCPpTCreSSTFyH,From This Moment - Revival,spotify:artist:35aCXGIIUSR18D9C7BlUnp,Eurika,spotify:album:2uoQPM92TGrySBVLLjgvBh,From This Moment (Revival),spotify:artist:35aCXGIIUSR18D9C7BlUnp,Eurika,2017-03-30,https://i.scdn.co/image/ab67616d0000b27369aecf9cf2f3b84436da2b6f,1,1,229416,https://p.scdn.co/mp3-preview/8830772b395f143e3f1c79384e8a24b2cc0ab0d1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,48,FR2X41755536,spotify:user:bradnumber1,2021-08-08T09:26:31Z,opm,0.501,0.474,3.0,-6.429,1.0,0.0249,0.458,0.0,0.0857,0.262,135.932,4.0,,The Teen Pop Idol,"C 2017 Aika Records Music Philippines, P 2017 Jimmy C Amoroto",2872 +2873,spotify:track:5Y3W09WHcXPx7eZ7s9gdMs,Be My Lover,spotify:artist:488v7rQzthLNK22r0UvMie,La Bouche,spotify:album:7hP1XPeFjOYTM2xgruJZyo,Greatest Hits,spotify:artist:488v7rQzthLNK22r0UvMie,La Bouche,2007,https://i.scdn.co/image/ab67616d0000b273b08ab36b08a1e2d184ef127d,1,2,240866,https://p.scdn.co/mp3-preview/1b78ccc193f3245c3051f63c1d4ffd9c5df41486?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,DED160200012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,europop,german techno",0.658,0.963,1.0,-3.283,0.0,0.0326,0.00283,2.38e-06,0.951,0.793,134.798,4.0,,MCI,P (P) 2006 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GMBH,2873 +2874,spotify:track:78M2x5ojbdTmUOpWrbijG3,Under the Bridge,"spotify:artist:5TDVKqW9uhqGjwwwKGuma4, spotify:artist:1kHeUrCDfGviGUyWuxBWXA","All Saints, Nelle Hooper",spotify:album:73aw7T2ZpoDvcPe2uSlWxF,All Saints,spotify:artist:5TDVKqW9uhqGjwwwKGuma4,All Saints,1997,https://i.scdn.co/image/ab67616d0000b2734245f996f39eb4e9b2eefef8,1,4,301066,https://p.scdn.co/mp3-preview/253038a94af3d6c77754722f7835b89e4f5534e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAAP9700144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group,new wave pop",0.717,0.564,6.0,-7.752,0.0,0.0551,0.0452,0.000464,0.0897,0.728,85.996,4.0,,London Records,"C 1998 Warner Music UK Limited, © 1998 Warner Music UK Limited, P 1998 Warner Music UK Limited, ℗ 1998 Warner Music UK Limited",2874 +2875,spotify:track:5WeHEbyAGCQ7fB3IF2FeD8,Sweet Pea,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,spotify:album:6eV7zSl70eSrLqFsJoQFlq,Tommy's 22 Big Ones,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,2001-01-01,https://i.scdn.co/image/ab67616d0000b27375d6caa1027c62015ab9703c,1,9,132573,https://p.scdn.co/mp3-preview/b9ec1a60ecd12f07156e24a68e1e14e9b79a50ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USMC16546414,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,rock-and-roll",0.586,0.755,4.0,-7.378,1.0,0.0341,0.0601,7.77e-05,0.1,0.963,119.634,4.0,,Geffen,"C © 2020 UMG Recordings, Inc., P This Compilation ℗ 2001 UMG Recordings, Inc.",2875 +2876,spotify:track:3lBRNqXjPp2j3JMTCXDTNO,Best Thing I Never Had,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:1gIC63gC3B7o7FfpPACZQJ,4,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2011-06-24,https://i.scdn.co/image/ab67616d0000b273ff5429125128b43572dbdccd,1,12,253746,https://p.scdn.co/mp3-preview/53e77e774e00bf01be5be21d629fb06d00740766?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM11102904,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.546,0.649,6.0,-4.056,1.0,0.0324,0.143,1.55e-05,0.0894,0.298,99.05,4.0,,Parkwood Entertainment/Columbia,"P (P) 2011, 2012 Columbia Records, a Division of Sony Music Entertainment",2876 +2877,spotify:track:2ZvVKaRZzeEdmTrpTrhEvR,Ana's Song (Open Fire),spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:10bobqzP8mtragmflBolOM,Neon Ballroom,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,1999-03-08,https://i.scdn.co/image/ab67616d0000b27302629081ad3b70375352dd19,1,3,222266,https://p.scdn.co/mp3-preview/76e53e707ed6a7ab2e4f842d245f01b8b7161059?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUSM09800225,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.395,0.648,9.0,-7.372,1.0,0.027,0.0407,8.25e-05,0.0868,0.246,80.286,4.0,,Sony Music Entertainment,P (P) 1999 Sony Music Entertainment Australia Pty Ltd,2877 +2878,spotify:track:4pCNJwixy2ImFncaPY2yE2,Love Will Keep Us Together,spotify:artist:7BEfMxbaqx6dOpbtlEqScm,Captain & Tennille,spotify:album:3GUxesVyOehInaxJyCTh6d,Love Will Keep Us Together,spotify:artist:7BEfMxbaqx6dOpbtlEqScm,Captain & Tennille,1975-01-01,https://i.scdn.co/image/ab67616d0000b273e21a289d04d5f3d623807bee,1,1,205493,https://p.scdn.co/mp3-preview/550f17f346cc82c26e16c6a3028447673129dcd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USAM17500299,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock,yacht rock",0.621,0.788,4.0,-4.326,1.0,0.0314,0.354,0.0,0.305,0.926,129.62,4.0,,A&M,"C © 1975 A&M Records, P This Compilation ℗ 1975 A&M Records",2878 +2879,spotify:track:63eV5hreY9feQP2CmYavpj,Electric - Pokemon 25 Version,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:2kjyPzcMPYUZlB9CJzu10f,Electric,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2021-05-14,https://i.scdn.co/image/ab67616d0000b27390acd1669192dc34cae79608,1,1,193543,https://p.scdn.co/mp3-preview/897030d7af8056076d59309288d92912f2eca55b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USUM72105194,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.615,0.701,0.0,-4.257,1.0,0.0472,0.00302,0.0,0.0471,0.251,98.073,4.0,,Capitol Records,"C © 2021 Capitol Records, LLC, P ℗ 2021 Capitol Records, LLC",2879 +2880,spotify:track:7LXimIqTYO76Utly8VFABu,Stay High,"spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:5PlfkPxwCpRRWQJBxCa0By, spotify:artist:4dHGNdVhBxCJUyMk9dR727","Diplo, HUGEL, Julia Church",spotify:album:3E3JRB0gGzHuc56GB3hUPJ,Stay High,"spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:5PlfkPxwCpRRWQJBxCa0By","Diplo, HUGEL",2023-11-24,https://i.scdn.co/image/ab67616d0000b2736c085bf11b46f72cb2976fd8,1,1,188320,https://p.scdn.co/mp3-preview/21ec6252e39d793b8996afa172c048d88ac1bf96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USZ4V2300294,spotify:user:bradnumber1,2024-04-04T04:06:51Z,"dance pop,edm,electro house,moombahton,pop dance,deep house",0.712,0.82,4.0,-6.624,0.0,0.0382,0.00226,0.359,0.1,0.322,128.005,4.0,,Higher Ground,"C 2023 Higher Ground, P 2023 Higher Ground",2880 +2881,spotify:track:25TcXSVruQ3Oox1RyqRCFf,Michael (Row The Boat Ashore),spotify:artist:4lh4sNnXlHYs8DQa3dnLal,The Highwaymen,spotify:album:2DKVIjhZhloJ7o8oMuhQXG,The Folk Hits Collection,spotify:artist:4lh4sNnXlHYs8DQa3dnLal,The Highwaymen,2007-01-01,https://i.scdn.co/image/ab67616d0000b27391ce3419832b3312192d15f2,1,5,165559,https://p.scdn.co/mp3-preview/b2459caaef0edaf5e7074c6131389f3350f1986e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,US3M50784705,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.525,0.121,0.0,-19.451,1.0,0.029,0.859,5.98e-06,0.191,0.631,107.408,4.0,,Varese Sarabande,"C © 2007 Varese Sarabande Records, P This Compilation ℗ 2007 The Highwaymen, under exclusive license to Varese Sarabande Records, under exclusive license to Varese Sarabande Records",2881 +2882,spotify:track:4QlBUvcyODBn0ukZoYb7v1,Good Morning Starshine,spotify:artist:0NDElNqwGRCmsYIQFapp6K,Oliver,spotify:album:2zz4gHHDI0UJlbLWgrH21u,This Is... 1969,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-08-04,https://i.scdn.co/image/ab67616d0000b2736926ef786fcaabb4363945d6,1,14,218466,https://p.scdn.co/mp3-preview/9ea3ffe8694f17e82078f71d923bb8b6e76b3b49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEM39000390,spotify:user:bradnumber1,2020-03-05T09:20:20Z,"electrofox,filter house,nu disco",0.648,0.56,3.0,-9.175,0.0,0.147,0.491,0.0,0.357,0.698,126.517,4.0,,Parlophone UK,"C 2008 Parlophone Records Ltd, a Warner Music Group Company, P 2008 Parlophone Records Ltd, a Warner Music Group Company",2882 +2883,spotify:track:2JzZzZUQj3Qff7wapcbKjc,See You Again (feat. Charlie Puth),"spotify:artist:137W8MRPWKqSmrBGDBFSop, spotify:artist:6VuMaDnrHyPL1p4EHjYLi7","Wiz Khalifa, Charlie Puth",spotify:album:5FXIqS1XqbpfOKNoi5VUwS,See You Again (feat. Charlie Puth),"spotify:artist:137W8MRPWKqSmrBGDBFSop, spotify:artist:6VuMaDnrHyPL1p4EHjYLi7","Wiz Khalifa, Charlie Puth",2015,https://i.scdn.co/image/ab67616d0000b2734e5df11b17b2727da2b718d8,1,1,229525,https://p.scdn.co/mp3-preview/69c2ac6f1501e5c8bc6970273da5d06fb97a2e76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USAT21703595,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap,pop,viral pop",0.689,0.481,10.0,-7.503,1.0,0.0815,0.369,1.03e-06,0.0649,0.283,80.025,4.0,,Atlantic Records,"C © 2015 Universal Studios Motion Picture Artwork, Artwork Title, and Photos, P ℗ This compilation 2015 Universal Studios and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",2883 +2884,spotify:track:6tunhVGD8C05MZNjSVIsjw,It Never Rains in Southern California,spotify:artist:34E3csCxpXunPGEkOVVX2g,Albert Hammond,spotify:album:0gdQF4mVBPjv5hhjtoe3hM,It Never Rains In Southern California,spotify:artist:34E3csCxpXunPGEkOVVX2g,Albert Hammond,1972-08-16,https://i.scdn.co/image/ab67616d0000b2737a26b62978e61d5068164a63,1,6,233506,https://p.scdn.co/mp3-preview/912e3960d3977270b807fb8142ca8f3b941a2c0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USSM17200519,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,rock of gibraltar",0.626,0.565,9.0,-10.027,1.0,0.0271,0.124,0.0,0.0811,0.924,116.61,4.0,,Legacy Recordings,P (P) 1972 Sony Music Entertainment,2884 +2885,spotify:track:3aGdlqp8i9lJAWG5nqfhUP,Key Largo,spotify:artist:4qzZ6bMrjK27yHGVjs4Pvq,Bertie Higgins,spotify:album:5JzBfIb5htZid0u8x6rhsY,The Ultimate Collection,spotify:artist:4qzZ6bMrjK27yHGVjs4Pvq,Bertie Higgins,2010,https://i.scdn.co/image/ab67616d0000b27380a33e63fd90ad006389e42f,1,1,198946,https://p.scdn.co/mp3-preview/b6cad1417a09de9f2592879edefe331ffae726b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,US2G40500731,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.503,0.659,0.0,-6.829,1.0,0.0356,0.443,0.0,0.153,0.33,101.668,4.0,,Toucan Cove Entertainment,"C Toucan Cove Entertainment, P Toucan Cove Entertainment",2885 +2886,spotify:track:6SDlbkElf9W5E3nOuQeH2X,One More Try,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:6hGRm1piHNE0Xp7I5Guesy,Me. I Am Mariah…The Elusive Chanteuse,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2014-05-23,https://i.scdn.co/image/ab67616d0000b2737fb8d2970f38ee4a14020e87,1,13,377346,https://p.scdn.co/mp3-preview/b59222a7b15f3fd08680fc1396b3033b0550b985?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,USUM71406005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.515,0.469,5.0,-6.588,1.0,0.0299,0.158,7.28e-05,0.138,0.171,119.974,3.0,,Def Jam Recordings,"C © 2013 Mariah Carey, P ℗ 2013 Def Jam Recordings, a division of UMG Recordings, Inc. and Mariah Carey",2886 +2887,spotify:track:1vZTgn4JXWMahR8r99ug5H,The Way We Were,spotify:artist:7jmTilWYlKOuavFfmQAcu6,Barbra Streisand,spotify:album:0vTu2dD57pVlPvd3pfxUSS,The Way We Were,spotify:artist:7jmTilWYlKOuavFfmQAcu6,Barbra Streisand,1974-01,https://i.scdn.co/image/ab67616d0000b273b35c6fe875ad20cbf8d9e600,1,4,211093,https://p.scdn.co/mp3-preview/45727f3e8681ffb0754d690c739b429e3126ecd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM10024187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,operatic pop,soft rock",0.264,0.32,9.0,-11.716,1.0,0.0325,0.885,0.00141,0.134,0.171,138.108,3.0,,Columbia,P (P) 1974 Sony Music Entertainment,2887 +2888,spotify:track:5ojjL1ypuOtqqOpb4QiM1M,I've Been Thinking About You,spotify:artist:0gcMPgunYh4rX1UOdvZKBn,Londonbeat,spotify:album:6YePeKZsDziJbJeBie0xZr,Fetenkult - Best Of The 90's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2005-02-14,https://i.scdn.co/image/ab67616d0000b273ae98f17ce9043795f78df35d,1,3,233200,https://p.scdn.co/mp3-preview/fc17953b4be93bb1c67978fcfc1de94e3b269b4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9000089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hip house,0.644,0.887,11.0,-6.449,0.0,0.0372,0.0171,0.000602,0.0706,0.886,113.535,4.0,,Ariola,P (P) 2004 BMG Records GmbH,2888 +2889,spotify:track:0y8Wf6ltWpGCpgqVa21QNX,After the Afterparty (feat. Lil Yachty),"spotify:artist:25uiPmTg16RbhZWAqwLBy5, spotify:artist:6icQOAFXDZKsumw3YXyusw","Charli xcx, Lil Yachty",spotify:album:4Txd0wc4WAgnoxXx0SLAlw,After the Afterparty (feat. Lil Yachty),spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,2016-10-28,https://i.scdn.co/image/ab67616d0000b273901d5e4c873dc3dc9af647d9,1,1,219480,https://p.scdn.co/mp3-preview/d0998c825cd2373bb3661971ce74b4bf01cafe67?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAHS1600358,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,candy pop,metropopolis,pop,uk pop,atl hip hop,melodic rap,rap,trap",0.653,0.794,7.0,-3.828,1.0,0.0894,0.121,0.0,0.365,0.645,93.008,4.0,,Atlantic Records UK,"C © 2016 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group Company., P ℗ 2016 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group Company.",2889 +2890,spotify:track:4Od9dAVmQf70b7TE4hNWJU,Hurricane - Radio Edit,"spotify:artist:5Ip2ecnyGpNyZvPuuYU8Ai, spotify:artist:7bIYFyhnGYw8A4kUsGtQl0","Dzeko & Torres, Sarah McLeod",spotify:album:6uj79HFcE29WqdtqkpYkB5,"2013 EDM Lift Off!, Vol. 3",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-09-27,https://i.scdn.co/image/ab67616d0000b2734013da6b645f5f221618385d,1,2,221921,https://p.scdn.co/mp3-preview/2972bfea60daa3e43a2fc37640f08e3ed1f2271b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,US34H1317216,spotify:user:bradnumber1,2023-02-22T06:13:20Z,"dutch house,edm,electro house,pop dance,progressive electro house,sky room,australian dance",0.452,0.876,6.0,-3.83,0.0,0.0518,0.0501,1.58e-05,0.309,0.275,125.994,4.0,,ARVA,"C 2013 Armada Music B.V., P 2013 Armada Music B.V.",2890 +2891,spotify:track:33SNO8AaciGbNaQFkxvPrW,Kiwi,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,spotify:album:1FZKIm3JVDCxTchXDo5jOV,Harry Styles,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,2017-05-12,https://i.scdn.co/image/ab67616d0000b2736c619c39c853f8b1d67b7859,1,7,176386,https://p.scdn.co/mp3-preview/97cdcc115200691394588fe3d405ecba97e5f4e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM11703958,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.375,0.93,2.0,-2.631,1.0,0.0561,0.00064,0.0,0.318,0.491,147.124,4.0,,Columbia,"P (P) 2017 Erskine Records Limited, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",2891 +2892,spotify:track:7FFl1IHSsPWsfUCladsCl9,Stay the Night,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,spotify:album:5b6T7m3DbNlWTwnaiuic2W,Some Kind of Trouble (Deluxe Edition),spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,2010-11-08,https://i.scdn.co/image/ab67616d0000b273bbbb9c1089c641a3d7c81bd8,1,1,216333,https://p.scdn.co/mp3-preview/0f3f54258aacffe0b4969c50403c10d4ce2def9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAT21002186,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.528,0.886,11.0,-6.249,0.0,0.0329,0.0159,0.0,0.0758,0.8,96.001,4.0,,Custard/Atlantic,"C An Atlantic Records Release, © 2010 Warner Music UK Limited, P An Atlantic Records Release, ℗ 2010 Warner Music UK Limited",2892 +2893,spotify:track:2EC9IJj7g0mN1Q5VrZkiYY,Rebel Rebel - 2016 Remaster,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,spotify:album:72mfhbEsMtXR6s7v9UhKe3,Diamond Dogs (2016 Remaster),spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,1974-05-24,https://i.scdn.co/image/ab67616d0000b273ad22c83a6e1567f8453c32b3,1,6,274746,https://p.scdn.co/mp3-preview/69a9019284eb21c2ea81f099c11ad59cf4d7ac7b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USJT11600006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,glam rock,permanent wave,rock",0.635,0.686,9.0,-15.648,1.0,0.053,0.209,0.0176,0.282,0.464,125.988,4.0,,Parlophone UK,"C © 2016 Jones/Tintoretto Entertainment Co. LLC., P ℗ 1974, 2016 Jones/Tintoretto Entertainment Co., LLC under exclusive license to Parlophone Records Ltd, a Warner Music Group Company",2893 +2894,spotify:track:02NwIdl5E6FqgWyUa8Be35,Black Box,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,spotify:album:4emEeZC8qkM5fGQH0kPfxL,The Platinum Collection,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,2009,https://i.scdn.co/image/ab67616d0000b2733010dd3f349e856ddcbbaccc,1,1,209253,https://p.scdn.co/mp3-preview/bc879d8bbe485d40842d5d39ddff09506944539d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,AUBM00900465,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,nz christian,nz pop",0.689,0.811,7.0,-4.708,1.0,0.0264,0.00288,0.0,0.207,0.47,123.008,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd./(P) 2010 Sony Music Entertainment Australia Pty Ltd./(P) 2011 Sony Music Entertainment Australia Pty Ltd./(P) 2013 Sony Music Entertainment Australia Pty Ltd.,2894 +2895,spotify:track:6jL1DEdjmOa27inIgU088B,Take It All,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:1azUkThwd2HfUDdeNeT147,21,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2011-01-19,https://i.scdn.co/image/ab67616d0000b2736d4056466fc11f6408be2566,1,7,228213,https://p.scdn.co/mp3-preview/59203c3cf26363c0daa1db0bc69dd02b8878c786?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1000347,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.411,0.267,0.0,-8.484,1.0,0.031,0.953,0.0,0.167,0.303,137.801,4.0,,XL Recordings/Columbia,P (P) 2011 XL Recordings Ltd,2895 +2896,spotify:track:6DpVLCKsNQXDmYdNdcNGnR,You Used to Hold Me,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,spotify:album:5Zcfw8EsPjQBJZhA0EbcyM,Ready For The Weekend,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2009-08-17,https://i.scdn.co/image/ab67616d0000b27300d6698dffdf81ce656dd26f,1,4,229173,https://p.scdn.co/mp3-preview/1d570f2074a319c131d3abb9aafb0712630e3216?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBARL0900841,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance",0.626,0.968,11.0,-6.014,0.0,0.0462,0.0205,0.0,0.321,0.176,128.969,4.0,,Columbia,P (P) 2009 Sony Music Entertainment Limited except Track 13 ?Dance Wiv Me? P 2008 Dirtee Stank Recordings Limited under license to Sony Music Entertainment UK Limited,2896 +2897,spotify:track:6eCmK3GQyFuTNWCJHsaF9d,Drive (feat. Wes Nelson),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:4ktBrNjagCGftyuBLJkATq","Clean Bandit, Topic, Wes Nelson",spotify:album:7wDWQrTNxHSVvklLTucK2D,Drive (feat. Wes Nelson),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:4ktBrNjagCGftyuBLJkATq","Clean Bandit, Topic, Wes Nelson",2021-07-30,https://i.scdn.co/image/ab67616d0000b2737005fb6e48d5fc3383086d0d,1,1,179374,https://p.scdn.co/mp3-preview/4326b1b2c3dd650864ed94f1503a5e504416613e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAHS2100547,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,german dance,pop dance,pop edm,uk dance",0.81,0.571,10.0,-7.189,0.0,0.085,0.0624,1.63e-06,0.094,0.771,125.994,4.0,,Atlantic Records UK,"C An Atlantic Records UK release, © 2021 Warner Music UK Limited., P An Atlantic Records UK release., ℗ 2021 Warner Music UK Limited.",2897 +2898,spotify:track:06LQUHINdbcNwt24mNErvW,Outside Of Me,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,spotify:album:3X6EH7lqHdejbiXuvdKIml,Present,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,2002-10-25,https://i.scdn.co/image/ab67616d0000b27304deb8622c81f90dbc31a0cc,1,9,245653,https://p.scdn.co/mp3-preview/bf51e91590c47c084d32088f129f0498ae44fd79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUBM00600216,spotify:user:bradnumber1,2023-01-31T06:25:31Z,"australian alternative rock,australian rock",0.241,0.942,2.0,-5.534,1.0,0.171,0.211,0.0,0.5,0.182,140.714,4.0,,Universal Music Australia Pty. Ltd.,"C © 2002 Wah Wah Music Pty Ltd, under Licence to Universal Music Australia., P ℗ 2002 Wah Wah Music Pty Ltd, under Licence to Universal Music Australia.",2898 +2899,spotify:track:1rGxdvtqhfwDc6cWBJaQlM,Gladiator,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:5WZflc0DlstYoPJWOeEBcS,Heart Beats (Deluxe Edition),spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2014-10-17,https://i.scdn.co/image/ab67616d0000b273e01d903eb3f9275b9ac02138,1,2,221146,https://p.scdn.co/mp3-preview/1f01956a7234629dc1b7f32e94ad25c790485cd6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM01400320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.372,0.855,6.0,-5.068,1.0,0.239,0.00221,0.0,0.661,0.378,186.105,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,2899 +2900,spotify:track:2GLnxNLB83jsC3T3RF2XBW,The Lord's Prayer 1983,spotify:artist:2koUqfFTZqZIaTHxtWmT4W,Sister Janet Mead,spotify:album:4oOcwzKGwoofZKaTiMBRhF,A Time to Sing,spotify:artist:2koUqfFTZqZIaTHxtWmT4W,Sister Janet Mead,2006-08-01,https://i.scdn.co/image/ab67616d0000b273cfa7ae893e201b26ad4cb0a0,1,1,186000,https://p.scdn.co/mp3-preview/abbb9b9bbee13e1b918b12057e5c1fe39b64b7ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41600065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.64,0.395,4.0,-11.628,0.0,0.032,0.65,0.0408,0.248,0.633,124.164,4.0,,Du Monde Records,"C 2006 Du Monde Records, P 2006 Du Monde Records",2900 +2901,spotify:track:2FBUoWkIuQXwayw2RNo5l6,Hotline Bling,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,spotify:album:3hARKC8cinq3mZLLAEaBh9,Views,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,2016-05-06,https://i.scdn.co/image/ab67616d0000b273726abca207567d5e41cb9667,1,20,267066,https://p.scdn.co/mp3-preview/2541ea8f31c87a3bda268b2b7a25bde73530e07d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCM51500238,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian hip hop,canadian pop,hip hop,pop rap,rap",0.903,0.62,2.0,-8.094,1.0,0.0587,0.00347,0.000119,0.0504,0.539,134.96,4.0,,Universal Music Group,"C © 2016 Young Money Entertainment/Cash Money Records, P ℗ 2016 Young Money Entertainment/Cash Money Records",2901 +2902,spotify:track:1as0uTeW3VLa9ifg8Gi9Fe,Lay Your Love on Me,spotify:artist:1W4SfNO5hb1tdX0wQ87zxl,Racey,spotify:album:7Lj60heeynLtuvguh42sEY,The Best Of Racey,spotify:artist:1W4SfNO5hb1tdX0wQ87zxl,Racey,2003-02-28,https://i.scdn.co/image/ab67616d0000b2738436cf22bcfe1ac7fec4e201,1,7,197906,https://p.scdn.co/mp3-preview/b4df5b352c305e468d9762dacdc4822140834ba5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAYE7800138,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.622,0.887,10.0,-4.321,1.0,0.0626,0.102,0.0,0.368,0.907,170.854,4.0,,Parlophone UK,"C © 1993 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1993 Parlophone Records Ltd, a Warner Music Group Company",2902 +2903,spotify:track:5sPKBwjZV090di7qDXQfJp,Currency,spotify:artist:43G7qlx7v7OGJJrUTXIqLq,Kayla Rae Haywood,spotify:album:4vQNMTuGNfj18vrgONzvuu,Currency,spotify:artist:43G7qlx7v7OGJJrUTXIqLq,Kayla Rae Haywood,2018-04-27,https://i.scdn.co/image/ab67616d0000b273347ad30d752cb421732b11d0,1,1,204992,https://p.scdn.co/mp3-preview/f095e8c2dc180f6db098a8f887216b37bf905cce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKPL1803990,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alt z,0.62,0.688,7.0,-7.421,1.0,0.0367,0.00199,1.24e-05,0.0957,0.211,89.033,4.0,,Ivy Adara,"C 2018 Ivy Adara, P 2018 Ivy Adara",2903 +2904,spotify:track:5fnP8bD1LwxYVqoMPOW2Se,So Beautiful - Single Version,spotify:artist:1qAMxE8YRo3KREMiKiyUkV,Pete Murray,spotify:album:7uUJwUIsG45lgYtNjqqZch,Feeler,spotify:artist:1qAMxE8YRo3KREMiKiyUkV,Pete Murray,2003,https://i.scdn.co/image/ab67616d0000b273ac90b58f944cded66f36cb55,1,3,279520,https://p.scdn.co/mp3-preview/8bfaf53af7837e7d187b2e33c03187fb96cf18b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,AUSM00300316,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.495,0.443,7.0,-9.905,0.0,0.0265,0.454,9.26e-05,0.104,0.337,83.232,4.0,,Columbia,"P (P) 2003, 2004, 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED",2904 +2905,spotify:track:1hlveB9M6ijHZRbzZ2teyh,We're Not Gonna Take It,spotify:artist:7b85ve82Sh36a3UAx74wut,Twisted Sister,spotify:album:0dzqapIToiOhULGvzDKpXm,Stay Hungry,spotify:artist:7b85ve82Sh36a3UAx74wut,Twisted Sister,1984-05-10,https://i.scdn.co/image/ab67616d0000b2733469ef94acfa666fde83dec5,1,2,219666,https://p.scdn.co/mp3-preview/f7edd989cca364142d8019889ad9da883b0f273c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USAT20000548,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,metal,rock",0.502,0.924,4.0,-6.299,1.0,0.0503,0.0127,0.0,0.162,0.922,149.186,4.0,,Rhino Atlantic,"C © 1984 Atlantic Records, P ℗ 1984 Atlantic Records. Marketed By Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",2905 +2906,spotify:track:2mnvzsLKEG033tp9Bqm4S1,Father's Day,spotify:artist:1RNwrc6Yfn4mxT8RCnck0y,Weddings Parties Anything,spotify:album:5RdjICDNGB804bJNuSAKXr,Difficult Loves,spotify:artist:1RNwrc6Yfn4mxT8RCnck0y,Weddings Parties Anything,1992-12-02,https://i.scdn.co/image/ab67616d0000b273a5090db28d8a283bd0763e28,1,1,242306,https://p.scdn.co/mp3-preview/36729be976f6bcd9533a23c7af676f76f48bfc34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUBM09225901,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.61,0.822,4.0,-8.288,1.0,0.0365,0.0183,0.0,0.256,0.722,105.251,4.0,,rooArt,P (P) 1992 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,2906 +2907,spotify:track:6SB4UJvIsJeYCPWuOcKY9J,I Could Be so Good for You,spotify:artist:3qkjOJVnq9FM8HRTlvs03L,Dennis Waterman,spotify:album:7oouuSSO98iRcpEGK9Cadz,I Could Be So Good For You,spotify:artist:3qkjOJVnq9FM8HRTlvs03L,Dennis Waterman,2007-01-19,https://i.scdn.co/image/ab67616d0000b2731e13560aa0201a42578a9814,1,1,194213,https://p.scdn.co/mp3-preview/06ecffcf2b53086102966523d6775658da721ed6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAYE7900045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.761,0.775,0.0,-6.834,1.0,0.0318,0.367,0.0,0.0937,0.946,115.524,4.0,,Parlophone UK,"C © 2007 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2007 Parlophone Records Ltd, a Warner Music Group Company",2907 +2908,spotify:track:6EEchdRtnndmJHa5yRebCc,This Is America,spotify:artist:73sIBHcqh3Z3NyqHKZ7FOL,Childish Gambino,spotify:album:5K9oSoVFz06kKmT7G65LIr,This Is America,spotify:artist:73sIBHcqh3Z3NyqHKZ7FOL,Childish Gambino,2018-05-06,https://i.scdn.co/image/ab67616d0000b273e6566c914daaa1d5ad0bda7e,1,1,225773,https://p.scdn.co/mp3-preview/1bcfeea49b556230d76931a7d7f7d1bf5423fce6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USRC11801773,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,hip hop,rap",0.854,0.463,5.0,-6.159,1.0,0.137,0.117,0.0,0.354,0.549,120.024,4.0,,Wolf+Rothstein / Liberator Music,"C 2018 mcDJ Recording, under license to Liberator Music Pty Ltd., P 2018 mcDJ Recording, under license to Liberator Music Pty Ltd.",2908 +2909,spotify:track:6xepovPqjvrkEw9Y5AMmTm,Lambada - Original Version 1989,spotify:artist:1LsXqDdYVyONhrjAORENbu,Kaoma,spotify:album:0Lku5Y0I5aGcRSgeo2mOJm,Lambada - Les originaux No. 1 de l'été (Original 1989),spotify:artist:1LsXqDdYVyONhrjAORENbu,Kaoma,1989-01-01,https://i.scdn.co/image/ab67616d0000b27370a92681f8aff88714cb0296,1,1,207466,https://p.scdn.co/mp3-preview/2675901e5b975ebcf43f6bda1a4ec2ce1679d3cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,FR6V89602629,spotify:user:bradnumber1,2022-09-22T21:30:00Z,zouk,0.756,0.8,5.0,-5.158,1.0,0.0329,0.211,0.000724,0.0466,0.967,118.924,4.0,,Lambada,"C 1989 KP&P – Lambada, P 1989 KP&P – Lambada",2909 +2910,spotify:track:57RA3JGafJm5zRtKJiKPIm,Are You Bored Yet? (feat. Clairo),"spotify:artist:0NIPkIjTV8mB795yEIiPYL, spotify:artist:3l0CmX0FuQjFxr8SK7Vqag","Wallows, Clairo",spotify:album:7eed9MBclFPjjjvotfR2e9,Nothing Happens,spotify:artist:0NIPkIjTV8mB795yEIiPYL,Wallows,2019-03-22,https://i.scdn.co/image/ab67616d0000b27384feca0133d9a8e6539a8325,1,4,178000,https://p.scdn.co/mp3-preview/7149829d4c4645d0d4d7c9b13285879d68042a72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USAT21812258,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pov: indie,bedroom pop,indie pop,pov: indie",0.682,0.683,8.0,-6.444,0.0,0.0287,0.156,2.32e-05,0.273,0.64,120.023,4.0,,Atlantic Records,"C © 2019 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside the United States. A Warner Music Group Company, P ℗ 2019 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside the United States. A Warner Music Group Company",2910 +2911,spotify:track:1qPc4YcES848qyRBo3fa80,Lucky Number,spotify:artist:1yFJnlNMiBUBplMaOP5CMX,Lene Lovich,spotify:album:7pltfJ1ItmrO7VHmV9Y0jD,Lucky Number (The Best Of),spotify:artist:1yFJnlNMiBUBplMaOP5CMX,Lene Lovich,2005-01-01,https://i.scdn.co/image/ab67616d0000b273a944405522247a6cd3d9ce1f,1,1,171093,https://p.scdn.co/mp3-preview/f1317ccf35f1d2d3f21bcba6708bbfea169949e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBCCG7800002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"synthpop,zolo",0.669,0.733,5.0,-10.495,1.0,0.0494,0.0205,0.000224,0.042,0.833,153.778,4.0,,Oval Sounds LLP,"C 2005 Oval Sounds LLP, P 2005 Oval Sounds LLP",2911 +2912,spotify:track:6oSmp7qnvAxUXeUKhl67a6,1955,"spotify:artist:7dlqUnjoF2U2DkNDMhcgG4, spotify:artist:1ZcnsSFqWusWlRK01vKE6b, spotify:artist:41Sy5j6hSOXJ6Pl1yR296B","Hilltop Hoods, Montaigne, Tom Thum",spotify:album:4ijUWjOHZ5VnUADcOsL1vS,"Drinking From The Sun, Walking Under Stars Restrung",spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2016-02-19,https://i.scdn.co/image/ab67616d0000b273eb0652df7fe1fddc6673d161,1,10,239280,https://p.scdn.co/mp3-preview/d135342e899eae9d4409602aba97cff92f7f278d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,AUHT01503050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian indie,australian pop,beatboxing",0.766,0.5,11.0,-7.558,1.0,0.0695,0.719,5.91e-06,0.304,0.71,84.044,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P ℗ 2015 Universal Music Australia Pty Ltd.",2912 +2913,spotify:track:1FwlOJvpcuYN6Sj3qo070C,I Say a Little Prayer,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,spotify:album:27psmgscZCLbePqHMFgm62,The Queen Of Soul,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,2014-02-03,https://i.scdn.co/image/ab67616d0000b2738aff7568abc58fcbcbf8d7ce,2,3,212106,https://p.scdn.co/mp3-preview/1a0669d1a4d3bfb59eb4d87f3ce75ef09695dab3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USAT20801207,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,jazz blues,memphis soul,soul,southern soul,vocal jazz",0.601,0.419,9.0,-10.59,1.0,0.0325,0.51,0.000732,0.141,0.478,133.205,4.0,,Rhino Atlantic,"C © 2014 Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2014 Rhino Entertainment Company, a Warner Music Group Company",2913 +2914,spotify:track:1wo3UYTeizJHkwYIuLuBPF,Champagne Supernova - Remastered,spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,spotify:album:1VW1MFNstaJuygaoTPkdCk,(What's The Story) Morning Glory? [Remastered],spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,1995-10-02,https://i.scdn.co/image/ab67616d0000b27385e5dcc05cc216a10f141480,1,12,451320,https://p.scdn.co/mp3-preview/886106c5ce673159afcd121931892cc833f2c221?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBQCP1400118,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,britpop,madchester,permanent wave,rock",0.297,0.825,2.0,-3.771,1.0,0.0394,0.464,0.0833,0.354,0.123,150.339,4.0,,Big Brother,P (P) 2014 Big Brother Recordings Ltd exclusively licensed to Sony Music Entertainment UK Limited/(P) 2014 Big Brother Recordings Ltd exclusively licensed to Sony Music Entertainment UK Limited),2914 +2915,spotify:track:5kWk5QBbhqGLoK3fOlCvA8,So Sad (To Watch Good Love Go Bad) - 2007 Remaster,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,spotify:album:6g0vOFFDBtgiLZdEJUu60E,It's Everly Time,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,1960,https://i.scdn.co/image/ab67616d0000b273440dd689ee0b779fd4b2ba2a,1,1,154400,https://p.scdn.co/mp3-preview/e11a0e564c5a340a66a03419b47f202cefd7aa1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USWB10704350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,folk rock,mellow gold,rock-and-roll,rockabilly,sunshine pop",0.545,0.197,4.0,-16.743,1.0,0.0285,0.646,0.0,0.291,0.338,102.229,4.0,,Rhino/Warner Records,"C © 1960 Warner Records Inc., P ℗ 1960 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",2915 +2916,spotify:track:4dZ3V71vsqSn9MJ18y8YaJ,Supreme,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:0fpjbJvjq6Zxj8xoIjX31m,Sing When You're Winning,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2013-01-01,https://i.scdn.co/image/ab67616d0000b27352653086ce6e1d2919efa534,1,4,260399,https://p.scdn.co/mp3-preview/5aa042c13f68de72baf409b59aa94b4779667bad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAYK0000129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.562,0.857,5.0,-5.173,1.0,0.0589,0.00303,2.23e-06,0.284,0.759,96.231,4.0,,Chrysalis UK,"C © 2013 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2013 Universal Island Records, a division of Universal Music Operations Limited",2916 +2917,spotify:track:4VkF5uwPL3Exv3WEZeadWM,Tennessee Flat Top Box - 1988 Version,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,spotify:album:2ey9jImi467qEu67fvW1kP,Complete Mercury Albums 1986-1991,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,2020-06-26,https://i.scdn.co/image/ab67616d0000b273ade431b5fdd43d4617eccdcf,4,2,188733,https://p.scdn.co/mp3-preview/a2ecb5bdb2ce78b3055d7927e196e4e6537227eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USPR38809019,spotify:user:bradnumber1,2021-10-30T21:36:43Z,"arkansas country,outlaw country,rock",0.656,0.66,2.0,-10.4,1.0,0.0432,0.268,0.00108,0.133,0.692,97.158,4.0,,Mercury Nashville,"C © 2020 UMG Recordings, Inc., P This Compilation ℗ 2020 UMG Recordings, Inc.",2917 +2918,spotify:track:0vZ97gHhemKm6c64hTfJNA,"Hello, Goodbye - Remastered 2009",spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:2BtE7qm1qzM80p9vLSiXkj,Magical Mystery Tour (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1967-11-27,https://i.scdn.co/image/ab67616d0000b273692d9189b2bd75525893f0c1,1,7,208840,https://p.scdn.co/mp3-preview/2aa3a241a56fdc5544ca772603dcfb6ed1e3550c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAYE0601639,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.479,0.733,0.0,-8.753,1.0,0.0257,0.306,2.4e-05,0.414,0.806,99.313,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",2918 +2919,spotify:track:1CmUZGtH29Kx36C1Hleqlz,Thrift Shop (feat. Wanz),"spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp, spotify:artist:56xTxG4nQMAs1GW9kvn0uA","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis, Wanz",spotify:album:0XN945pdw7kvYRndgbDuSb,Thrift Shop (feat. Wanz),"spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis",2012-08-01,https://i.scdn.co/image/ab67616d0000b2731cdc7eab166fcbfcaf8be8f6,1,1,235613,https://p.scdn.co/mp3-preview/6dee231c782e195395a3b072af3252a9691a2040?cid=9950ac751e34487dbbe027c4fd7f8e99,True,63,GMM881200003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop,pop rap,seattle hip hop,pop rap",0.781,0.526,6.0,-6.985,0.0,0.293,0.0619,0.0,0.0457,0.662,94.992,4.0,,Macklemore,"C © 2012 Macklemore, LLC., P ℗ 2012 Macklemore, LLC.",2919 +2920,spotify:track:3r2Tau6Obzzc1Nvrn7Gg4j,Devil Inside,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:303WS9fT5qqGo9KlnImdZG,Kick 25 (Deluxe Edition),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2012-01-01,https://i.scdn.co/image/ab67616d0000b2735999577a1d188f37b2a6a60b,1,3,313706,https://p.scdn.co/mp3-preview/b8c4d8d7ddcc27b954ae3724dfcd82ab3b46ccd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMX8700004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.589,0.585,0.0,-7.525,1.0,0.037,0.0008,0.44,0.104,0.538,150.758,4.0,,Universal Music Group,"C © 2012 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2012 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",2920 +2921,spotify:track:3WEmAizxrtQwXEJQRwCrK1,In2,spotify:artist:5nSAh3wlH7VaqpnkiMjzDs,WSTRN,spotify:album:2mCbEWwPFmDdcDDqtdy7yY,In2,spotify:artist:5nSAh3wlH7VaqpnkiMjzDs,WSTRN,2015-10-03,https://i.scdn.co/image/ab67616d0000b273c27d2e3e4988673d7930c456,1,1,242121,https://p.scdn.co/mp3-preview/7dc16851fd6492d87f8aade45cc0b62323522b4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAHS1500457,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"afroswing,grime,uk hip hop",0.553,0.662,8.0,-6.454,0.0,0.129,0.342,0.0,0.141,0.561,98.368,4.0,,Atlantic Records UK,"C © 2015 Atlantic Records UK, a Warner Music Group Company, P ℗ 2015 Atlantic Records UK, a Warner Music Group Company",2921 +2922,spotify:track:12wB4syL3O9w54bpe1tmZX,Polk Salad Annie,spotify:artist:6QvgWa4x3Ij4tvBpFMo11P,Tony Joe White,spotify:album:5M3GlaTkttptrGEX4a01JT,"The Best Of Tony Joe White Featuring ""Polk Salad Annie""",spotify:artist:6QvgWa4x3Ij4tvBpFMo11P,Tony Joe White,1993-09-10,https://i.scdn.co/image/ab67616d0000b273dd3031745cdc98e2b0687da7,1,1,223533,https://p.scdn.co/mp3-preview/6c7cf919ae793b8a9b437e93d6b802357f6eccaf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USWB16900016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic blues,louisiana blues,swamp blues,swamp pop,swamp rock",0.783,0.543,9.0,-11.565,1.0,0.0412,0.303,0.0159,0.0892,0.833,132.035,4.0,,Warner Records,"C © 1993 Warner Records Inc., P ℗ 1972, 1973 1993 Warner Records Inc.",2922 +2923,spotify:track:4Za53k8jDhOtnclUla5Edc,Tin Soldier (Stereo),spotify:artist:1YqGsKpdixxSVgpfaL2AEQ,Small Faces,spotify:album:272beLTeCHahNEM6RoymEK,Small Faces (Deluxe Edition),spotify:artist:1YqGsKpdixxSVgpfaL2AEQ,Small Faces,1967-06-23,https://i.scdn.co/image/ab67616d0000b273f35ad5019365d070744813de,2,22,202680,https://p.scdn.co/mp3-preview/d36ae2580bcb0d9c8707be623091a47d2c1f14ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBA7H1244651,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,protopunk",0.351,0.782,9.0,-7.95,1.0,0.0321,0.0575,0.00611,0.107,0.302,113.677,4.0,,Charly Digital,C (C) 2012 Charly,2923 +2924,spotify:track:3USK1N0qFBvJFrcWzQm17a,Strings And Drums,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,spotify:album:5MnKpoZxGlfUgDtlgoLIC8,Hymns For The Non-Believer,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,2007,https://i.scdn.co/image/ab67616d0000b273b3b57735494f5167109acc62,1,4,192506,https://p.scdn.co/mp3-preview/58c5c521e9d5938dcad172098553cdc33b3706b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUAY00700229,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussie emo,australian alternative rock,australian indie",0.476,0.979,8.0,-2.054,1.0,0.0571,0.000124,7.9e-06,0.295,0.572,142.033,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Below Par Records, P ℗ 2010 Below Par Records",2924 +2925,spotify:track:4ymsAGWOmrWYmQ5nbzgeYC,Never Be Your Woman - SHY FX Radio Edit,"spotify:artist:1bT7m67vi78r2oqvxrP3X5, spotify:artist:7k9T7lZlHjRAM1bb0r9Rm3, spotify:artist:7sfgqEdoeBTjd8lQsPT3Cy, spotify:artist:5oDtp2FC8VqBjTx1aT4P5j","Naughty Boy, Wiley, Emeli Sandé, SHY FX",spotify:album:45MaWX9LfJvi8KpGnnadLX,Never Be Your Woman,"spotify:artist:1bT7m67vi78r2oqvxrP3X5, spotify:artist:7k9T7lZlHjRAM1bb0r9Rm3","Naughty Boy, Wiley",2010-01-01,https://i.scdn.co/image/ab67616d0000b2737e2e94994d70de837ba6c391,1,1,146905,https://p.scdn.co/mp3-preview/27edfc3d8a1e36491e28cb78de67af5f37a74797?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAAA1000022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"uk contemporary r&b,grime,uk dancehall,uk hip hop,r&b,talent show,uk pop,drum and bass,jungle,ragga jungle",0.663,0.877,5.0,-3.37,0.0,0.0538,0.00318,0.00217,0.124,0.388,135.989,4.0,,Relentless/Virgin,"C © 2010 Virgin Records Limited, P ℗ 2010 Virgin Records Limited",2925 +2926,spotify:track:2uaAvZiDj38frxdSsJwDMU,Semi-Charmed Life - 2006 Remaster,spotify:artist:6TcnmlCSxihzWOQJ8k0rNS,Third Eye Blind,spotify:album:0JpVbXHKFpNszSRZVsXti6,Hits of the '90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-04,https://i.scdn.co/image/ab67616d0000b273e870de28c112072efbfeb328,1,42,268640,https://p.scdn.co/mp3-preview/3c46a9f2954735cab673dd930ddc7d5e1a2fd1f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10608087,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,pop rock,post-grunge",0.632,0.894,7.0,-5.211,1.0,0.0317,0.00622,0.0,0.328,0.718,102.039,4.0,,WM Australia,"C 2016 Warner Music Australia, P 2016 Warner Music Australia",2926 +2927,spotify:track:4G4JPYTyBTUHMRA3LIueZm,Your Song,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:2d8lV7muTyJymdKatbgprS,Voices From The FIFA World Cup,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2006-05-29,https://i.scdn.co/image/ab67616d0000b273f71a2ddb77fdb864e7cf372d,1,3,242493,https://p.scdn.co/mp3-preview/c0fb911d5fbdbed3e6e9da543dce6a3778638156?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMB9500072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",,,,,,,,,,,,,,Syco Music UK,P (P) 2006 Simco limited UK under exclusive license to Engine AB for scandinavia.,2927 +2928,spotify:track:5Z8kUbnUQqBUzM5FsBNOAl,You Gotta Be,spotify:artist:73ZPfpfg1LBVvDEArK4l5B,Des'ree,spotify:album:3SwBajIGtIPylPqzWS9V1i,Supernatural,spotify:artist:73ZPfpfg1LBVvDEArK4l5B,Des'ree,1998-06-29,https://i.scdn.co/image/ab67616d0000b273df5db9751cfa58ceadbed9a0,1,11,240066,https://p.scdn.co/mp3-preview/68d5c15eea7184ca42926449a90684848e41c561?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBBBL9400015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.663,0.753,0.0,-7.061,1.0,0.0381,0.175,0.0,0.105,0.483,94.061,4.0,,S2,"P (P) 1998 Sony Music Entertainment (UK) Ltd, except track 11 (P) 1994 Sony Music Entertainment (UK) Ltd.",2928 +2929,spotify:track:67iAlVNDDdddxqSD2EZhFs,I'm Gonna Be (500 Miles),spotify:artist:1A92IAcd7A6npCA33oGM5i,The Proclaimers,spotify:album:5sK78apv4yOoXjxRL4kOdJ,Sunshine on Leith,spotify:artist:1A92IAcd7A6npCA33oGM5i,The Proclaimers,1988,https://i.scdn.co/image/ab67616d0000b273cebdf1f7660ace8c2a80585c,1,1,219466,https://p.scdn.co/mp3-preview/42b4d0af211d3a2ad254c010254a1957297f3f24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBAYK8800055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,scottish rock",0.851,0.551,4.0,-5.177,1.0,0.0396,0.151,0.0,0.0827,0.807,131.922,4.0,,Parlophone UK,"C © 1994 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1988 Parlophone Records Ltd, a Warner Music Group Company",2929 +2930,spotify:track:36gcliMRX1vCpgnrZE3dFZ,10:35,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:45dkTj5sMRSjrmBSBeiHym","Tiësto, Tate McRae",spotify:album:1Pl9ZGXwayXPg5qRVpYo74,DRIVE,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,2023-04-21,https://i.scdn.co/image/ab67616d0000b273cf8c47967e5c6bbc7dca5abb,1,3,172252,https://p.scdn.co/mp3-preview/6e88ed9108e2c0c493903a7d280183d6d6855272?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,CYA112001130,spotify:user:bradnumber1,2023-05-07T12:00:29Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance,pop",0.696,0.793,8.0,-5.733,1.0,0.097,0.0683,3.78e-06,0.18,0.698,120.003,4.0,,Atlantic Records,"C © 2023 Musical Freedom, LLC under exclusive license to Atlantic Recording Corporation., P ℗ 2023 Musical Freedom, LLC under exclusive license to Atlantic Recording Corporation.",2930 +2931,spotify:track:0X1FYVkgy7Tfw79cY3C7lx,Turning Tables,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7n3QJc7TBOxXtlYh4Ssll8,21,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2011-01-19,https://i.scdn.co/image/ab67616d0000b273ba764098164f221484bcc309,1,3,250000,https://p.scdn.co/mp3-preview/f27742a6b5948be886fe872189affb9dae35190c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1000346,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.361,0.446,0.0,-6.044,0.0,0.0281,0.95,1.32e-05,0.132,0.212,155.542,4.0,,XL Recordings,"C 2011 XL Recordings Ltd., P 2011 XL Recordings Ltd.",2931 +2932,spotify:track:2zDt2TfQbxiSPjTVJTgbwz,Starving,"spotify:artist:5p7f24Rk5HkUZsaS3BLG5F, spotify:artist:4lDBihdpMlOalxy1jkUbPl, spotify:artist:2qxJFvFYMEDqd7ui6kSAcq","Hailee Steinfeld, Grey, Zedd",spotify:album:2tFh3iUeee68gorjYVoqea,Starving,"spotify:artist:5p7f24Rk5HkUZsaS3BLG5F, spotify:artist:4lDBihdpMlOalxy1jkUbPl, spotify:artist:2qxJFvFYMEDqd7ui6kSAcq","Hailee Steinfeld, Grey, Zedd",2016-07-22,https://i.scdn.co/image/ab67616d0000b273730f8351fee266b18e935f5b,1,1,181880,https://p.scdn.co/mp3-preview/31f6e6cc0119be916f272b2fd2d59e7b262ccb4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71606370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop edm,complextro,edm,german techno,pop,pop dance",0.724,0.628,4.0,-4.219,1.0,0.0962,0.409,0.0,0.105,0.524,99.898,4.0,,Universal Music Group,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",2932 +2933,spotify:track:11mwFrKvLXCbcVGNxffGyP,Genie In a Bottle,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:6fpPZS13ImRVpr7Tqs6yP9,Christina Aguilera (Expanded Edition),spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,1999,https://i.scdn.co/image/ab67616d0000b273f89996e214be1763b2a9e948,1,1,217573,https://p.scdn.co/mp3-preview/06d1b4ae1b631b29bbfd8b9a66a37f18dd73713a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USRC19900032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.633,0.8,1.0,-6.945,1.0,0.166,0.209,0.000123,0.137,0.913,175.716,4.0,,RCA Records Label,P (P) 2000 Sony Music Entertainment,2933 +2934,spotify:track:2e0nVBn2Qj5DPvcLFGfH5W,Ain't No Love (Ain't No Use) [feat. Melanie Williams],"spotify:artist:7GWspDz4ebIKpeZwtYYvKm, spotify:artist:3jmMMoxWDbP6gIpslNl2MP","Sub Sub, Melanie Williams",spotify:album:0TyQpOi3Ws2QydVDFgT0tL,Full Fathom Five,spotify:artist:7GWspDz4ebIKpeZwtYYvKm,Sub Sub,1994-06-01,https://i.scdn.co/image/ab67616d0000b27301fe2673834271ad783dec01,1,6,315466,https://p.scdn.co/mp3-preview/aee882b50ad53c4fcdcd0d639e98d5549b4e22aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,UK99J9300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"madchester,diva house",0.802,0.962,8.0,-7.28,1.0,0.0414,0.00367,0.079,0.312,0.966,127.035,4.0,,CASINO RECORDS,"C 1994 CASINO RECORDS, P 1994 CASINO RECORDS",2934 +2935,spotify:track:22CIOfLZB9z8He7WgHYAgH,Two Tickets to Paradise (2022 Remaster),spotify:artist:4Tw2N3wdvJPGEU7JqMxFfE,Eddie Money,spotify:album:5gMrkmI53zEn98WDwU0iye,Eddie Money - 2022 Remaster,spotify:artist:4Tw2N3wdvJPGEU7JqMxFfE,Eddie Money,1977-12-01,https://i.scdn.co/image/ab67616d0000b273e5abc402a0af728bb5259bbe,1,1,240419,https://p.scdn.co/mp3-preview/43da3465906644800125a162c25230a342f9955f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM17700223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,glam metal,hard rock,mellow gold,soft rock,southern rock",0.603,0.627,2.0,-16.011,1.0,0.0299,0.113,0.000103,0.159,0.701,129.617,4.0,,Columbia,P (P) 1977 Sony Music Entertainment Inc.,2935 +2936,spotify:track:6oE5yvroDXWNYWpIFz2JJB,Toca's Miracle - Radio Edit,spotify:artist:2t9efDsc10DtZpi4LP3BJJ,Fragma,spotify:album:2snIy07hupBGM5rLYtgImH,Toca (20th Anniversary Edition),spotify:artist:2t9efDsc10DtZpi4LP3BJJ,Fragma,2022-04-22,https://i.scdn.co/image/ab67616d0000b27300bb96c6e6b5efd789ca1c2c,1,1,200483,https://p.scdn.co/mp3-preview/949c112baa5af0b32f819040e5717cfc331c8b91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,DEP992200001,spotify:user:bradnumber1,2023-08-09T21:03:38Z,"eurodance,german techno",0.781,0.851,4.0,-5.748,0.0,0.0319,0.0143,0.00458,0.0709,0.865,135.106,4.0,,Front of House Recordings,"C (C) 2022 Front of House Recordings, P (P) 2022 Front of House Recordings",2936 +2937,spotify:track:1bM50INir8voAkVoKuvEUI,OMG (feat. will.i.am),"spotify:artist:23zg3TcAtWQy7J6upgbUnj, spotify:artist:085pc2PYOi8bGKj0PNjekA","USHER, will.i.am",spotify:album:6A1F3Fkq5dYeYYNkXflcTX,Raymond v Raymond (Expanded Edition),spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2010-03-30,https://i.scdn.co/image/ab67616d0000b27386b0c9728ad3ed338eaeea79,1,6,269493,https://p.scdn.co/mp3-preview/8f6be8d3bdadf51fe002ebffe58107e28ae12314?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USLF20900103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary,dance pop,pop",0.781,0.745,4.0,-5.81,0.0,0.0332,0.198,1.14e-05,0.36,0.326,129.998,4.0,,LaFace Records,"P (P) 2010 LaFace Records, a unit of Sony Music Entertainment",2937 +2938,spotify:track:2dDfcyjZQLZBY0Fzk2wYjX,Rock'n Me,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,spotify:album:5hLazW5a3Ysgy3dncwGgUn,Greatest Hits 1974-78,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,1978-01-01,https://i.scdn.co/image/ab67616d0000b273632b907273dba6a6062fb780,1,4,187160,https://p.scdn.co/mp3-preview/d91410ff7415573b360ffe4a2d7f0449051cb1bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USCA28700297,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.7,0.528,4.0,-12.176,1.0,0.073,0.191,0.0,0.213,0.934,121.336,4.0,,CAPITOL CATALOG MKT (C92),"C © 1978 Capitol Records, LLC, P ℗ 1978 Capitol Records, LLC",2938 +2939,spotify:track:519tXYJVcrpEMqV2BMbh6E,No Air (feat. Chris Brown),"spotify:artist:2AQjGvtT0pFYfxR3neFcvz, spotify:artist:7bXgB6jMjp9ATFy66eO08Z","Jordin Sparks, Chris Brown",spotify:album:6uADeQqYkdZqctA1AO6riB,Jordin Sparks,spotify:artist:2AQjGvtT0pFYfxR3neFcvz,Jordin Sparks,2007-11-20,https://i.scdn.co/image/ab67616d0000b273541387af4fde7d5b5def61ab,1,3,264373,https://p.scdn.co/mp3-preview/f97328e09916d9131dbbe6dc2fd34e9968231220?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCTA0700277,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,urban contemporary,r&b,rap",0.466,0.759,8.0,-4.978,0.0,0.199,0.0521,0.0,0.0587,0.328,160.033,4.0,,19 Recordings,"P (P) 2007 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",2939 +2940,spotify:track:1jF7IL57ayN4Ity3jQqGu0,Try,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2Q9oTK48eb85waX1fFJsvj,The Truth About Love,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2012-09-18,https://i.scdn.co/image/ab67616d0000b2739d0f0d226987b449808e7b6f,1,3,247906,https://p.scdn.co/mp3-preview/5307933144e41502ac08e9227194a12d418e2c28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USRC11200785,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.674,0.628,2.0,-7.079,1.0,0.03,0.00144,0.0,0.0944,0.552,103.998,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",2940 +2941,spotify:track:7yzTZjFPfsb6otv22JQK9w,Girls Talk,spotify:artist:65Gh3BfK84aTIugiRCgLBA,Dave Edmunds,spotify:album:4hFP82vO2pcLaABIfIJyNB,The Best of Dave Edmunds,spotify:artist:65Gh3BfK84aTIugiRCgLBA,Dave Edmunds,2005-08-30,https://i.scdn.co/image/ab67616d0000b273e20a0be78e7a3779ad7f0b94,1,2,206453,https://p.scdn.co/mp3-preview/43f38de70ade1a73a403be12af5b7989637506ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20104574,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,power pop,pub rock,rockabilly",0.56,0.845,1.0,-7.097,1.0,0.0344,0.0529,0.000897,0.0479,0.884,129.115,4.0,,Rhino Atlantic,"C 2005 Warner Strategic Marketing, P 2005 Warner Strategic Marketing",2941 +2942,spotify:track:0k1HlttWBYieN78qNrJ400,Saved By The Bell,spotify:artist:4vZduJO8Uukqzx64de5JxV,Robin Gibb,spotify:album:3zh0wXDwnESTl4zSVSotG6,Robin's Reign,spotify:artist:4vZduJO8Uukqzx64de5JxV,Robin Gibb,1970-02-01,https://i.scdn.co/image/ab67616d0000b273e8f6eb65ed46a313b950e9d3,1,7,186893,https://p.scdn.co/mp3-preview/7f8622b03e917be329b18af9cb66019f4024100b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USRH11000598,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.155,0.298,0.0,-13.805,1.0,0.0307,0.431,5.07e-05,0.214,0.296,91.058,3.0,,UMC (Universal Music Catalogue),"C © 1970 Polydor Ltd. (UK), under exclusive licence to Universal Music Operations Limited, P ℗ 1970 Polydor Ltd. (UK), under exclusive licence to Universal Music Operations Limited",2942 +2943,spotify:track:7mjSHL2Eb0kAwiKbvNNyD9,Wild World,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,spotify:album:44VxbAytHpVi3Rq8hRhild,Tea For The Tillerman (Remastered 2020),spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,1970-11-23,https://i.scdn.co/image/ab67616d0000b273e7248738c2f7ce3b5584b15d,1,3,200560,https://p.scdn.co/mp3-preview/239455cdf5e6cc6d9c0aa2c93e2d908bf6425005?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBUM71905965,spotify:user:bradnumber1,2023-01-31T06:12:15Z,"british folk,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.48,0.542,0.0,-8.51,1.0,0.0348,0.345,0.000609,0.113,0.567,152.853,4.0,,UMC (Universal Music Catalogue),"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",2943 +2944,spotify:track:5bGH37XtOsetTUKaFDbfRN,Raining Again,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,spotify:album:6WFEwAQBtmRaZZLRRC2s46,Hotel,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,2005-03-14,https://i.scdn.co/image/ab67616d0000b273c53e23db5736aa55bd73f063,1,2,226000,https://p.scdn.co/mp3-preview/67fd46cf212e69def344285fda02a88b16d892ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJH0403049,spotify:user:bradnumber1,2023-01-31T06:33:41Z,"downtempo,electronica",0.604,0.785,2.0,-6.824,1.0,0.0389,0.0272,0.0954,0.0411,0.779,117.827,4.0,,"Mute, a BMG Company","C © 2005 Mute Records Ltd., a BMG Company, P ℗ 2005 Mute Records Ltd., a BMG Company",2944 +2945,spotify:track:0IGTfJZSgseqOxK4dsAbRl,Candy Girl,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,spotify:album:2qQiErzIicJGl0XEc8xb6E,Ain't That a Shame and 11 Other Hits,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,1963-03-01,https://i.scdn.co/image/ab67616d0000b2732ffe63c5f3a66c54fe8e3e6c,1,1,157800,https://p.scdn.co/mp3-preview/655a84eef6d0a480ad7eaac740d9d7febecdcf66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USRH10175201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,lounge,northern soul,rock-and-roll,rockabilly",0.641,0.498,9.0,-8.244,0.0,0.0343,0.707,0.0,0.666,0.741,126.24,4.0,,Rhino,"C © 1963 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Rhino Entertainment Company. All Rights Reserved., P ℗ 1963 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Rhino Entertainment Company. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",2945 +2946,spotify:track:0hkhIzzwDdr5ZOtUB1gbiz,Walk Right Back,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,spotify:album:3O0QXvFFIzwahliBm6uzyw,"Walk Right Back: The Everly Brothers on Warner Brothers, 1960-1969",spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,1993,https://i.scdn.co/image/ab67616d0000b273af817cdd1e8f593f5db9ce45,1,3,139666,https://p.scdn.co/mp3-preview/fd2940b0e654b240103daea4e416e8df0911cc75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,USWB19903265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,folk rock,mellow gold,rock-and-roll,rockabilly,sunshine pop",0.605,0.433,1.0,-10.425,1.0,0.0314,0.733,0.0,0.06,0.844,134.726,4.0,,Rhino,"C © 1993 Warner Records Inc., P ℗ 1993 Warner Records Inc.",2946 +2947,spotify:track:0hXmK3JDrrEPaobPa9iqRb,Move Closer,spotify:artist:1zK07BWbFrx6yqTFz84eH4,Phyllis Nelson,spotify:album:4O2ssDBTPPZhgIgb9DD2lm,All of Phyllis Nelson (14 Songs & Hits),spotify:artist:1zK07BWbFrx6yqTFz84eH4,Phyllis Nelson,1984-01-01,https://i.scdn.co/image/ab67616d0000b2737c7e49d65f8da788156baafc,1,1,275733,https://p.scdn.co/mp3-preview/0cca4b550adeb7e7bdb7a1d12279677a20cc77cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR6V88400329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.645,0.678,3.0,-7.367,1.0,0.0235,0.333,7.48e-05,0.228,0.729,84.482,4.0,,Marfontaine Music,"C 1984 Marfontaine Entertainment Company, P 1984 Marfontaine Entertainment Company",2947 +2948,spotify:track:04MGO8KdFKUcqQY3qVX0U4,Khe Sanh,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:1Htwv3I81HU6YUWWs0ommZ,The Best of Cold Chisel - All for You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b27306dc40069e45da5e5d9f90e6,1,3,250669,https://p.scdn.co/mp3-preview/79b58a9120365bb71bd8bf9982b5c252400ffef9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABB1158215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.464,0.913,7.0,-4.215,1.0,0.18,0.141,0.0,0.173,0.667,164.092,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",2948 +2949,spotify:track:5O4T5zLdSVtqg9PRFNlegX,Love Me Like I Love You,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,spotify:album:7wRQRWK2A7ecovzNlZTDKW,Bay City Rollers: The Definitive Collection,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,1974,https://i.scdn.co/image/ab67616d0000b2731bb85e20917bd21f6d01d319,1,10,199266,https://p.scdn.co/mp3-preview/4363a40b9f927ef86ba77e9fa5cf822546e5eb59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR17600006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.57,0.769,0.0,-7.715,1.0,0.0306,0.35,2.68e-05,0.0555,0.765,129.129,4.0,,Arista,"P (P) 1974, 1975, 1976, 1977, 1979, 2000 Arista Records, Inc.",2949 +2950,spotify:track:3V0PeMg2mhbYRtk9bioAwF,I Swear,spotify:artist:1B8ySGDAiXTCvnJNH4HSCG,All-4-One,spotify:album:0OrEq5JeWVzislPoSg0fzZ,Rhino Hi-Five: All-4-One,spotify:artist:1B8ySGDAiXTCvnJNH4HSCG,All-4-One,2005-04-19,https://i.scdn.co/image/ab67616d0000b273bd8703edf841569ca19d86b3,1,2,259853,https://p.scdn.co/mp3-preview/261d429233ad5f69295d41d5a7a115a9b79c59ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT29400058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,r&b",0.532,0.407,6.0,-9.658,0.0,0.0233,0.235,0.0,0.117,0.23,83.207,4.0,,Rhino Atlantic,"C © 2005 Warner Strategic Marketing, P ℗ 2005 Warner Strategic Marketing",2950 +2951,spotify:track:2nMeu6UenVvwUktBCpLMK9,Young And Beautiful,spotify:artist:00FQb4jTyendYWaN8pK0wa,Lana Del Rey,spotify:album:1D92WOHWUI2AGQCCdplcXL,Young And Beautiful,spotify:artist:00FQb4jTyendYWaN8pK0wa,Lana Del Rey,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d7fb3e4c63020039d1cff6b2,1,1,236053,https://p.scdn.co/mp3-preview/6da9d2d9c70066c8052a8b4b0b66d3c447cdf33c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,GBUM71301823,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.324,0.416,11.0,-8.92,0.0,0.0368,0.262,3.69e-05,0.11,0.151,113.986,4.0,,Polydor Records,"C © 2013 Lana Del Rey, under exclusive licence to Polydor Ltd. (UK). Under exclusive licence to Interscope Records in the USA, P ℗ 2013 Lana Del Rey, under exclusive licence to Polydor Ltd. (UK). Under exclusive licence to Interscope Records in the USA",2951 +2952,spotify:track:3gfC7gmHyxAuv2NjVMRMuU,Touch,spotify:artist:1BhWF9W2PngtPSyobKg0rP,Pia Mia,spotify:album:7mWYhIDjxb5SLLz3jE7YnX,Touch,spotify:artist:1BhWF9W2PngtPSyobKg0rP,Pia Mia,2015-10-30,https://i.scdn.co/image/ab67616d0000b273698b2da8d786ea7ec233c0fb,1,1,206200,https://p.scdn.co/mp3-preview/fad65bf3869fb7805a0026fa8a62ae62f0ef9886?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516842,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.78,0.651,7.0,-4.626,0.0,0.0763,0.0432,0.000429,0.112,0.606,117.892,4.0,,Universal Music Group,"C © 2015 Wolfpack/Interscope Records, P ℗ 2015 Wolfpack/Interscope Records",2952 +2953,spotify:track:2ptt0Eftq3b2jElTRrctrT,Stuck,spotify:artist:5QjWgYDeKNP2iPHTdTttnG,Stacie Orrico,spotify:album:05bphHAv5bizNSVDeirA9t,Stacie Orrico,spotify:artist:5QjWgYDeKNP2iPHTdTttnG,Stacie Orrico,2003-01-01,https://i.scdn.co/image/ab67616d0000b27398d746bf562ff6a1cd2a7272,1,1,221586,https://p.scdn.co/mp3-preview/c33639250bd5eef266a16e540c3fc6b60d3db00d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USFF10218231,spotify:user:bradnumber1,2021-08-08T09:26:31Z,candy pop,0.377,0.904,4.0,-3.634,0.0,0.307,0.0747,0.0,0.334,0.595,200.566,4.0,,Virgin Records,"C © 2003 Virgin Records America, Inc., P ℗ 2003 Virgin Records America, Inc.",2953 +2954,spotify:track:2nwCO1PqpvyoFIvq3Vrj8N,These Boots Are Made For Walkin',spotify:artist:3IZrrNonYELubLPJmqOci2,Nancy Sinatra,spotify:album:62FTy4WqUxi3paBlxOhh4M,Boots,spotify:artist:3IZrrNonYELubLPJmqOci2,Nancy Sinatra,1966-03,https://i.scdn.co/image/ab67616d0000b273b16991c5257c7d27033dd50a,1,5,166008,https://p.scdn.co/mp3-preview/ad627a11d4b811c69381424e8b133a247313f19e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USASE0500005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lounge,sunshine pop",0.74,0.392,9.0,-11.996,1.0,0.0824,0.483,1.11e-06,0.0965,0.387,82.742,4.0,,"Boots Enterprises, Inc.","C (C) 1995 Boots Enterprises, Inc., P (P) 2006 Boots Enterprises, Inc.",2954 +2955,spotify:track:4HBZA5flZLE435QTztThqH,Stuck with U (with Justin Bieber),"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Ariana Grande, Justin Bieber",spotify:album:5mUdh6YWnUvf0MfklEk1oi,Stuck with U,"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Ariana Grande, Justin Bieber",2020-05-08,https://i.scdn.co/image/ab67616d0000b2732babb9dbd8f5146112f1bf86,1,1,228482,https://p.scdn.co/mp3-preview/be00e21551094a08c0227c84b8d9c26047a329a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USUM72009644,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,canadian pop,pop",0.597,0.45,8.0,-6.658,1.0,0.0418,0.223,0.0,0.382,0.537,178.765,3.0,,"Ariana Grande & Justin Bieber ""Stuck With U""- Charity","C © 2020 Silent Records Ventures, LLC, Def Jam Recordings, a division of UMG Recordings, Inc., and Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Silent Records Ventures, LLC, Def Jam Recordings, a division of UMG Recordings, Inc., and Republic Records, a division of UMG Recordings, Inc.",2955 +2956,spotify:track:1v1eNyBIGCl25OGcNdJ3Qd,Better Best Forgotten,spotify:artist:17UkABEasVRlCcIFZ3wHb7,Steps,spotify:album:6RsefRivaKdO1XgeRfIUHv,Platinum Collection,spotify:artist:17UkABEasVRlCcIFZ3wHb7,Steps,2022-08-19,https://i.scdn.co/image/ab67616d0000b273d3b2a4cf937db64a2770355f,1,18,223133,https://p.scdn.co/mp3-preview/b3147b6e999f35af62418b2e1835e4e0325c02c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,GBAHK9800079,spotify:user:bradnumber1,2023-01-31T06:43:01Z,"diva house,europop,talent show",0.717,0.989,9.0,-4.675,1.0,0.0293,0.158,5.06e-05,0.272,0.737,129.006,4.0,,Sony Music CG,P (P) This compilation 2022 Sony Music Entertainment UK Limited,2956 +2957,spotify:track:7mZVWemhwUnhr2q6GYl6T7,Invincible,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:2puALR81qCmKmbOyuHAI94,Piece By Piece (Deluxe Version),spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2016-03-04,https://i.scdn.co/image/ab67616d0000b27314e69bc0f311b329601b279a,1,2,238360,https://p.scdn.co/mp3-preview/3e8534520d323da19899dd3ba90616fc6d7646f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBCTA1500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.477,0.788,10.0,-5.472,1.0,0.0824,0.409,0.0,0.194,0.379,138.21,4.0,,RCA Records Label,P (P) 2016 19 Recordings Limited under exclusive license to RCA Records,2957 +2958,spotify:track:4hQ6UGyWQIGJmHSo0J88JW,Back To You - From 13 Reasons Why – Season 2 Soundtrack,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:3N7eWDCvfWv34xWNohdHjO,Back To You (From 13 Reasons Why – Season 2 Soundtrack),spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2018-05-10,https://i.scdn.co/image/ab67616d0000b27330885dcb2b5f38512fbcbc59,1,1,207904,https://p.scdn.co/mp3-preview/3e6a14355cb03ca3b4d794f3f48c2c7552fa668e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USUM71805992,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.6,0.725,6.0,-4.866,1.0,0.0487,0.0933,1.87e-06,0.12,0.506,102.056,4.0,,UMGRI Interscope,"C © 2018 Interscope Records, P ℗ 2018 Interscope Records",2958 +2959,spotify:track:2MRNiztY7NRlMYYGsWm9wW,Eternal Flame - Remastered,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:1xN9jGFs73atuQ02PrazLf,Here And Now - The Best Of Human Nature,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,2001-10-30,https://i.scdn.co/image/ab67616d0000b273c26c16c6b599a919c482d01d,1,13,198813,https://p.scdn.co/mp3-preview/4f04164ead0fdbf3e37b0318c8eb54e20dadad7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUSM00100181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,boy band",0.414,0.613,1.0,-4.641,0.0,0.0312,0.244,0.0,0.0701,0.326,78.252,4.0,,Sony Music Entertainment,P (P) 2001 Sony Music Entertainment Australia Pty Ltd,2959 +2960,spotify:track:6ALHz0g1IDIedBZZknvbXr,Ain't Nobody (Loves Me Better) (feat. Jasmine Thompson),"spotify:artist:4bL2B6hmLlMWnUEZnorEtG, spotify:artist:2TL8gYTNgD6nXkyuUdDrMg","Felix Jaehn, Jasmine Thompson",spotify:album:2DL4AOHc4MKvCHbUr544aU,I,spotify:artist:4bL2B6hmLlMWnUEZnorEtG,Felix Jaehn,2018-02-16,https://i.scdn.co/image/ab67616d0000b273bf2d6e9bfe719343ad274ab0,2,1,186146,https://p.scdn.co/mp3-preview/b9e0951e2c9d2dbf778b2a2b619a549ba78090f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEUM71500425,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,german dance,pop dance,tropical house,uk dance,viral pop",0.778,0.555,2.0,-7.058,0.0,0.0308,0.657,0.000196,0.0693,0.491,117.957,4.0,,Universal Music Group,"C © 2018 L'Agentur, under exclusive license to Universal Music GmbH, P A Virgin Records release; ℗ 2018 L'Agentur, under exclusive license to Universal Music GmbH",2960 +2961,spotify:track:4SoXQCrPQplashFebNaUw3,Get It Right,"spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:0bdfiayQAKewqEvaU6rXCv","Diplo, MØ",spotify:album:4OyYFQn2rzwaT4PZNlWQY3,Get It Right,spotify:artist:5fMUXHkw8R8eOP2RNVYEZX,Diplo,2017-11-15,https://i.scdn.co/image/ab67616d0000b27346c0e6131539bbb40830e6c0,1,1,172500,https://p.scdn.co/mp3-preview/0c0f5a7d5ba3cfe783b8f77edf587f3b2f1dd5f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMUY41700264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,moombahton,pop dance,dance pop,danish pop,electropop,pop dance",0.456,0.833,0.0,-4.242,1.0,0.0964,0.108,1.71e-05,0.0592,0.261,159.808,4.0,,Mad Decent,"C 2017 Mad Decent, P 2017 Mad Decent",2961 +2962,spotify:track:11Ki2bHWXTEug0DAfKcDDD,Mouth,spotify:artist:0lSDlT2Z5EvUGNIl7WQ7k0,Merril Bainbridge,spotify:album:3p5TJ1ksja0twSGpqPUU19,The Garden,spotify:artist:0lSDlT2Z5EvUGNIl7WQ7k0,Merril Bainbridge,1995-07-31,https://i.scdn.co/image/ab67616d0000b2737a4bb709a597184b217a9d02,1,4,205733,https://p.scdn.co/mp3-preview/9d963b8a36fbd16cc71f4af0c87405381617516e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUBM09531804,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.695,0.499,1.0,-9.201,1.0,0.218,0.702,5.85e-05,0.154,0.78,175.896,4.0,,Gotham,P (P) 1995 BMG Australia Limited,2962 +2963,spotify:track:0u836P4OFuN0iJKkqoDIr0,I Just Had Sex,"spotify:artist:1f5GqyOPo0CkotzzRwviBu, spotify:artist:0z4gvV4rjIZ9wHck67ucSV","The Lonely Island, Akon",spotify:album:3UTSAloI2oZ9VQWaBvWftK,Turtleneck & Chain,spotify:artist:1f5GqyOPo0CkotzzRwviBu,The Lonely Island,2011-01-01,https://i.scdn.co/image/ab67616d0000b273a42346b455e4c58cbaf59203,1,3,166560,https://p.scdn.co/mp3-preview/64bb08ef4fa571880b0def44ae748ff24ca059ea?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71029715,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"comedy rap,comic,dance pop",0.609,0.81,6.0,-4.229,1.0,0.18,0.0149,0.0,0.205,0.764,167.992,4.0,,Universal Music Group,"C © 2011 Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2011 Universal Republic Records, a division of UMG Recordings, Inc.",2963 +2964,spotify:track:6cx06DFPPHchuUAcTxznu9,Head & Heart (feat. MNEK),"spotify:artist:6DgP9otnZw5z6daOntINxp, spotify:artist:7uMh23xWiuR7zsNkuNcm2G","Joel Corry, MNEK",spotify:album:5glfCPECXSHzidU6exW8wO,Head & Heart (feat. MNEK),"spotify:artist:6DgP9otnZw5z6daOntINxp, spotify:artist:7uMh23xWiuR7zsNkuNcm2G","Joel Corry, MNEK",2020-07-03,https://i.scdn.co/image/ab67616d0000b27391e93c59bacfe819db9601eb,1,1,166028,https://p.scdn.co/mp3-preview/d22f65c6375d559dda4056a7de604a6ccec2dfd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,UK4ZF2000305,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop dance,uk dance,house,pop dance,uk contemporary r&b,uk dance,uk pop",0.734,0.874,8.0,-3.158,1.0,0.0662,0.168,1.14e-05,0.0489,0.905,122.953,4.0,,Atlantic Records UK,"C © 2020 Perfect Havoc Limited, P under exclusive licence to Warner Music UK Limited, an Asylum Records UK release, ℗ 2020 Perfect Havoc Limited.",2964 +2965,spotify:track:6lazLV13sV8VNGJTjL4Zeu,Black Is Black,spotify:artist:7ewJCECkpkh56w0Y4VWzSY,Los Bravos,spotify:album:4mtO1j9fDmDwPWp1kGiWFN,Black Is Black,spotify:artist:7ewJCECkpkh56w0Y4VWzSY,Los Bravos,2000,https://i.scdn.co/image/ab67616d0000b273ddcf42cf5d8e52405cf6248b,1,1,176600,https://p.scdn.co/mp3-preview/c1a8e48c50387baecc8074916a14b3cd52ebed31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,ES5029300024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,spanish invasion,0.575,0.843,2.0,-5.931,1.0,0.0584,0.239,5.16e-06,0.0764,0.858,128.169,4.0,,Legacy Recordings,P (P) 1999 BMG Special Products,2965 +2966,spotify:track:1nO67wic65N413c11zKxM7,Silhouettes - Original Radio Edit,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:6VG7t4lyDUUfrg6s9Ei6iB,Silhouettes,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2012-01-01,https://i.scdn.co/image/ab67616d0000b273d18bcb4b5e0dedf88a990818,1,1,211880,https://p.scdn.co/mp3-preview/321ebf537cc9c3ee622383109af13538fa824ed7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEUM71200477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.605,0.8,5.0,-6.235,0.0,0.0545,0.155,0.0562,0.121,0.836,128.074,4.0,,Virgin,"C © 2012 Avicii Ltd., Under exclusive license to Universal Music AB, P ℗ 2012 Avicii Ltd., Under exclusive license to Universal Music AB",2966 +2967,spotify:track:58s4iqgXFzXhBndBkg2AaD,Spend My Life With You,"spotify:artist:1kjO72M26jZkv0aaGxJaov, spotify:artist:20ZzK04IeD9EcQE12i2uRa","Eric Benét, Kevin ""K.D."" Davis",spotify:album:4jUwgH0Zd9DtgKiXFcBuHB,A Day in the Life,spotify:artist:1kjO72M26jZkv0aaGxJaov,Eric Benét,1999-02-25,https://i.scdn.co/image/ab67616d0000b2735c56b76b1267161ca3bd1e59,1,3,276013,https://p.scdn.co/mp3-preview/bd8988605eb823afd80335c09ff6ced1312999ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USWB19801241,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,neo soul,r&b,urban contemporary",0.583,0.435,8.0,-8.784,1.0,0.0386,0.434,5.49e-05,0.102,0.292,72.01,4.0,,Warner Records,"C © 1999 Warner Records Inc., P ℗ 1999 Warner Records Inc.",2967 +2968,spotify:track:3CNqo3gYrfexdrtjFmC9he,Where Is The Love?,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:4wBDclsxFzGnR4kVAAMI7K,Elephunk,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2003,https://i.scdn.co/image/ab67616d0000b273e435b4dfdcf5e3c4a25663df,1,13,272533,https://p.scdn.co/mp3-preview/a8e15b9256e129c55789674b78041ede8bf91531?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USIR10311862,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.834,0.696,5.0,-3.224,1.0,0.197,0.11,0.0,0.13,0.804,94.09,4.0,,A&M,"C © 2004 Interscope Records, P ℗ 2004 Interscope Records",2968 +2969,spotify:track:0XXjBRi5sNWojqxmYJGiA2,Ain't Gonna Bump No More (With No Big Fat Woman),spotify:artist:5TbXjzD8tYgMD5JU2g2F8q,Joe Tex,spotify:album:5lPTpJorZZwS5pI9C0socS,"The Very Best of, Volume 2.",spotify:artist:5TbXjzD8tYgMD5JU2g2F8q,Joe Tex,1969-01-01,https://i.scdn.co/image/ab67616d0000b273d2263e770c3783c72f461b4e,1,10,403640,https://p.scdn.co/mp3-preview/af12cc9a6de8afd39be01992994967ebd3369bee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USATV0500210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"northern soul,southern soul",0.745,0.835,6.0,-10.961,0.0,0.0346,0.014,0.113,0.139,0.936,113.897,4.0,,Sony ATV,C (C) 2006 Sony ATV,2969 +2970,spotify:track:2nVHqZbOGkKWzlcy1aMbE7,Kashmir - 1990 Remaster,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,spotify:album:1lZahjeu4AhPkg9JARZr5F,Physical Graffiti (1994 Remaster),spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,1975-02-24,https://i.scdn.co/image/ab67616d0000b2732abc2d86a442efb6cc631d0a,1,6,508200,https://p.scdn.co/mp3-preview/4d9bde799eec8913e53c184c45b9fd575690b917?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USAT29900621,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.48,0.536,2.0,-11.166,1.0,0.0427,0.488,4.22e-05,0.155,0.581,80.617,3.0,,Rhino Atlantic,"C © 1975 Swan Song Inc., P ℗ 1975 Atlantic Recording Corp., a Warner Music Group company",2970 +2971,spotify:track:702DHpdOZV84IS7a72Rv1g,Feel Good Time,"spotify:artist:1KCSPY1glIKqW2TotWuXOR, spotify:artist:2AHGrNDMKFi8rHqQ8kJqfl","P!nk, William Orbit",spotify:album:0fyXhpRRZOQkNP734QsnNm,Try This,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2003-10-08,https://i.scdn.co/image/ab67616d0000b273e3804561af7c7d89f084a207,1,13,236773,https://p.scdn.co/mp3-preview/cc90851fca0490bfc9800df8262e2708f7410ef5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR10301176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,classic progressive house,downtempo,intelligent dance music",0.558,0.823,10.0,-4.588,1.0,0.132,0.0102,9.45e-05,0.209,0.564,138.376,4.0,,Arista,"P (P) 2003 Arista Records, Inc.",2971 +2972,spotify:track:4qKcDkK6siZ7Jp1Jb4m0aL,Look Alive (feat. Drake),"spotify:artist:4TEJudQY2pXxVHPE3gD2EU, spotify:artist:3TVXtAsR1Inumwj472S9r4","BlocBoy JB, Drake",spotify:album:7GGoJfKFOwDNuiLjjfzyCS,Look Alive (feat. Drake),"spotify:artist:4TEJudQY2pXxVHPE3gD2EU, spotify:artist:3TVXtAsR1Inumwj472S9r4","BlocBoy JB, Drake",2018-02-09,https://i.scdn.co/image/ab67616d0000b27355cad990bc1ce5808367fa0e,1,1,181263,https://p.scdn.co/mp3-preview/b01a13e516a679c1dfdb3fe234c56c7d8ec293b7?cid=9950ac751e34487dbbe027c4fd7f8e99,True,3,USWB11800211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"memphis hip hop,rap,tennessee hip hop,trap,canadian hip hop,canadian pop,hip hop,pop rap,rap",0.922,0.581,10.0,-7.495,1.0,0.27,0.00104,5.86e-05,0.105,0.595,140.022,4.0,,OVO Sound/Warner Records,"C © 2018 OVO Sound/Warner Records Inc., P ℗ 2018 OVO Sound/Warner Records Inc.",2972 +2973,spotify:track:3jVSV60WZE5jPE2a6KGNFy,Get Right,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:4doYRKxTYYoyeXK66zWsN2,Rebirth,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2005,https://i.scdn.co/image/ab67616d0000b2739ee4b5ffbc4dd4d336c799ff,1,1,225533,https://p.scdn.co/mp3-preview/7c997593892247b159cd78af4c77f1ac7e5aaac2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM10414903,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.741,0.759,0.0,-5.096,0.0,0.12,0.0218,0.0,0.628,0.362,97.084,4.0,,Epic,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT,2973 +2974,spotify:track:1Jj6MF0xDOMA3Ut2Z368Bx,Time After Time,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,spotify:album:4pox3k0CGuwwAknR9GtcoX,She's So Unusual: A 30th Anniversary Celebration (Deluxe Edition),spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,2014-03-28,https://i.scdn.co/image/ab67616d0000b273681265e351fc75e60d0fa50b,1,4,243066,https://p.scdn.co/mp3-preview/c4e6035f15f67ad24c5f19044a06fd0ac7b30e2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM18300650,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,permanent wave,soft rock",0.724,0.436,0.0,-9.321,1.0,0.0282,0.576,1.19e-06,0.0908,0.324,130.439,4.0,,Epic/Legacy,"P This compilation (P) 2014 Epic Records, a division of Sony Music Entertainment",2974 +2975,spotify:track:70TEuKwiK0bd5phEQkbvT4,Soaked,spotify:artist:28OHQv3VZ2gifjWzrqBv1v,Bene,spotify:album:0dpMkb52b7B5D9NkGeMnmu,Soaked,spotify:artist:28OHQv3VZ2gifjWzrqBv1v,Bene,2018-09-14,https://i.scdn.co/image/ab67616d0000b2739f69517837f837ee0b75480d,1,1,241935,https://p.scdn.co/mp3-preview/574df5fb87faf0db033fca8e7e6b4fe0fd145912?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZCR01800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nz pop,0.792,0.54,9.0,-5.975,0.0,0.0342,0.485,0.0,0.104,0.577,93.001,4.0,,Bene,"C 2018 Bene, P 2018 Bene",2975 +2976,spotify:track:3zIZJyBwLTmQMCYUbbaNS3,We No Speak Americano,"spotify:artist:4KkHjCe8ouh8C2P9LPoD4F, spotify:artist:2fhWAPuLLisDEGpXsniy92, spotify:artist:6OkVmXCnj1BPjTf5aihiwt, spotify:artist:1UfLuvdj4T8qcQbcCT7y8G","Yolanda Be Cool, Andrew Stanley, DCup, Matt Handles",spotify:album:0uf3n2BVs1l143b8ZX3ehO,We No Speak Americano,"spotify:artist:4KkHjCe8ouh8C2P9LPoD4F, spotify:artist:6OkVmXCnj1BPjTf5aihiwt","Yolanda Be Cool, DCup",2010-01-01,https://i.scdn.co/image/ab67616d0000b273cdb872dccea18afd34fd0015,1,1,130478,,False,0,AUCN30901666,spotify:user:bradnumber1,2020-03-05T09:20:52Z,"australian dance,australian house,bass house",0.902,0.685,10.0,-6.54,0.0,0.0566,0.111,0.00374,0.0994,0.672,125.01,4.0,,UMOD (Universal Music On Demand),"C © 2010 Sweat it Out Pty Ltd., under exclusive licence to All Around The World Limited / Universal Music TV, a division of Universal Music Operations Limited., P ℗ 2010 Sweat it Out Pty Ltd., under exclusive licence to All Around The World Limited / Universal Music TV, a division of Universal Music Operations Limited.",2976 +2977,spotify:track:4YMqbFcDIFiCBd02PzUBcM,Thrift Shop (feat. Wanz),"spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:56xTxG4nQMAs1GW9kvn0uA","Macklemore & Ryan Lewis, Wanz",spotify:album:6XO9dbsH9zhuQgFGH0hUrb,The Heist,spotify:artist:5BcAKTbp20cv7tC5VqPFoC,Macklemore & Ryan Lewis,2012-10-10,https://i.scdn.co/image/ab67616d0000b273162f60d1c6de9aa46b138399,1,3,235613,https://p.scdn.co/mp3-preview/aa64e01779ed8b6d1362bd8bfc170c8a4fa85773?cid=9950ac751e34487dbbe027c4fd7f8e99,True,1,GMM881200003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop",0.781,0.526,6.0,-6.985,0.0,0.293,0.0619,0.0,0.0457,0.662,94.992,4.0,,Macklemore,"C © 2012 Macklemore, LLC., P ℗ 2012  2012 Macklemore, LLC.",2977 +2978,spotify:track:4kgTdThcDHfuDS2kKxB7Lc,You Belong With Me,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:2gP2LMVcIFgVczSJqn340t,Fearless - Platinum Edition,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2008-11-11,https://i.scdn.co/image/ab67616d0000b27373b565ab9d713e8d5586aac2,1,12,231146,https://p.scdn.co/mp3-preview/ed7601d443053ad0636f39b50792ff7c2b57cd27?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USCJY0803328,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.687,0.771,6.0,-4.424,1.0,0.0384,0.164,2.46e-05,0.112,0.445,129.964,4.0,,"Big Machine Records, LLC","C © 2009 Apollo A-1 LLC, P ℗ 2009 Apollo A-1 LLC",2978 +2979,spotify:track:0NkLNNAYVf85PXPW4kZEZC,I.O.I.O.,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:22U7HHpKnefIgny3PwM13j,Cucumber Castle,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1970-01-01,https://i.scdn.co/image/ab67616d0000b27371341047c592b972a24bee15,1,2,175160,https://p.scdn.co/mp3-preview/e405e52f19f631248edffddff35d53385799f543?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBA077025020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.56,0.648,5.0,-12.29,1.0,0.0282,0.195,0.00158,0.196,0.961,132.402,4.0,,Bee Gees Catalog,"C © 1970 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, P ℗ 1970 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb",2979 +2980,spotify:track:5VRd33u1KGRSOVfp77npPM,Is It Love,spotify:artist:39QjUR6m5slbxO36zayaMq,Twenty 4 Seven,spotify:album:5k9PlHrlaxwFkXmMTzzKa1,Best of,spotify:artist:39QjUR6m5slbxO36zayaMq,Twenty 4 Seven,2010-04-02,https://i.scdn.co/image/ab67616d0000b2739db5a6f65fce141a3afd543c,1,2,237893,https://p.scdn.co/mp3-preview/83947aadf776d2699053ffc8f0b99be01bb48827?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,NLA240304931,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house",0.644,0.946,5.0,-7.74,0.0,0.0565,0.0512,0.0,0.479,0.819,140.008,4.0,,CNR Music,"C 2010 CNR Music B.V., P 2010 CNR Music B.V.",2980 +2981,spotify:track:3XEaBMzr9GjUJrHjKUF5lA,Every Woman In The World,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,spotify:album:5s5iUa9XoCRVXNJiTawxjB,Lost In Love,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,1980-01-01,https://i.scdn.co/image/ab67616d0000b273ce152af8c51f3030bbd6435e,1,3,210066,https://p.scdn.co/mp3-preview/f31c447702dd8d0cc0ddda8294ba7cde9a4344e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USAR18000004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.465,0.408,9.0,-12.854,1.0,0.0334,0.318,0.0,0.255,0.371,78.965,4.0,,EMI Music Australia,"C © 1980 Big Time Phonograph Recording Co. Pty. Ltd., P ℗ 1980 Big Time Phonograph Recording Co. Pty. Ltd.",2981 +2982,spotify:track:48gAcPH3stFshFnGDvo6SQ,Keep On Movin',"spotify:artist:6rEzedK7cKWjeQWdAYvWVG, spotify:artist:78E5Zx38dgv90Q7VN2AplD","Five, Steve Mac",spotify:album:2aSR4RrZ5uCNZSmwqgparc,Let's Dance,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,2001-01-16,https://i.scdn.co/image/ab67616d0000b2738999f3d5e3238da368f79fe4,1,10,197026,https://p.scdn.co/mp3-preview/1b81f38b3c964f7cf143b3d0f28e70ed1af19a2c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBARL9900105,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.74,0.852,7.0,-8.051,1.0,0.0328,0.0305,1.8e-06,0.0778,0.963,135.035,4.0,,RCA Camden,P (P) This compilation 2002 BMG UK & Ireland Limited.,2982 +2983,spotify:track:4Gponum8aPxNdUuAApFd7B,Tonight (I'm Lovin' You),"spotify:artist:7qG3b048QCHVRO5Pv1T5lw, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi, spotify:artist:4yt2wdqvcHygghx9iNUb6i","Enrique Iglesias, Ludacris, DJ Frank E",spotify:album:2xwpvruPfeNRKx3X78UDd8,Euphoria,spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,2010,https://i.scdn.co/image/ab67616d0000b2735df00610cc25ab4b70b80070,1,16,231293,https://p.scdn.co/mp3-preview/07305b996077c1e6fc668279e2936e55f9dd0321?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71029655,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,latin pop,mexican pop,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap",0.651,0.884,0.0,-3.986,0.0,0.0533,0.0242,5.36e-06,0.202,0.285,125.941,4.0,,Universal Music Group,"C © 2011 Universal International Music B.V., P ℗ 2011 Universal International Music B.V.",2983 +2984,spotify:track:6G1NY8UMIomlev3yxbJkEA,The Spartans,spotify:artist:5WnGWf1AygeH76ZNUXU3b0,Sounds Incorporated,spotify:album:6YPr0zLHkThlFTLgGSILrK,Sounds Incorporated,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-02-03,https://i.scdn.co/image/ab67616d0000b2739facc66191aaf0eae700d455,1,14,130600,https://p.scdn.co/mp3-preview/f6b3ebe3e95432bb901cb434c2f8c6684962ed6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBAYE6400994,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.411,0.667,0.0,-8.88,1.0,0.0403,0.199,0.552,0.21,0.522,143.951,4.0,,Parlophone UK,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",2984 +2985,spotify:track:0vLEtNZGjfUvAfjgfBmtk2,Wolfsbane,"spotify:artist:7oYWWttOyiltgT19mfoUWi, spotify:artist:2OaHYHb2XcFPvqL3VsyPzU","Love Ghost, Rico Nasty",spotify:album:24TPlhyivqqSjrPPRDvosu,Wolfsbane,spotify:artist:7oYWWttOyiltgT19mfoUWi,Love Ghost,2021-07-16,https://i.scdn.co/image/ab67616d0000b27350f94fe2ea0d28ab3296445a,1,1,179243,https://p.scdn.co/mp3-preview/be4e13c65b86e5cfba7ea819e07a4b1bb0e9993f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,17,TCAFQ2157054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative r&b,trap queen",0.545,0.728,10.0,-6.172,1.0,0.0664,0.00896,0.0,0.294,0.22,151.915,4.0,,Love Ghost,"C 2021 Love Ghost, P 2021 Love Ghost",2985 +2986,spotify:track:0EMmVUYs9ZZRHtlADB88uz,Come On Eileen,spotify:artist:4QTVePrFu1xuGM9K0kNXkk,Dexys Midnight Runners,spotify:album:0QNluXFRHFyRVDiBHXmstK,Too Rye Ay,spotify:artist:4QTVePrFu1xuGM9K0kNXkk,Dexys Midnight Runners,1982-08,https://i.scdn.co/image/ab67616d0000b273d76cc2f77662cac38f84b4c6,1,10,287306,https://p.scdn.co/mp3-preview/8435daf9abbc3d0cc616b08ff8e4cccae63bc8b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088200006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.45,0.658,2.0,-7.064,1.0,0.0472,0.648,3.14e-06,0.264,0.781,106.799,4.0,,Universal Special Markets,"C © 2002 Mercury Records Limited, P ℗ 2002 Mercury Records Limited",2986 +2987,spotify:track:2kz40rIHjfGYxurLiuCBp9,Lost on You,spotify:artist:0J7U24vlOOIeMpuaO6Q85A,LP,spotify:album:5thv3RCZIDkWQVGDicoLkF,Death Valley,spotify:artist:0J7U24vlOOIeMpuaO6Q85A,LP,2016-06-17,https://i.scdn.co/image/ab67616d0000b273b638230da76a52fb3eae855a,1,2,268105,https://p.scdn.co/mp3-preview/9d9ad9903102d811350a9dda36178249ad634238?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMRSZ1501406,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"la pop,women's music",0.433,0.724,5.0,-6.126,0.0,0.0372,0.1,0.0,0.0918,0.689,174.006,4.0,,Vagrant Records,"C 2016 LP under exclusive license to BMG Rights Management (US) LLC d/b/a Vagrant Records, P 2016 LP under exclusive license to BMG Rights Management (US) LLC d/b/a Vagrant Records",2987 +2988,spotify:track:1rj0XawWJNisX7SGYexowJ,Gotta Tell You,spotify:artist:7L12TqJ0fbwtFljTbwfwRI,Samantha Mumba,spotify:album:5hrhGEdZrxOjBe32cfIuwc,Gotta Tell You,spotify:artist:7L12TqJ0fbwtFljTbwfwRI,Samantha Mumba,2000,https://i.scdn.co/image/ab67616d0000b2732dce2ff2d684c4b0fd254b16,1,1,200160,https://p.scdn.co/mp3-preview/625a4be7b8479d9be0b83855d11a0aa65bd541bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBALS0000006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,europop,talent show",0.739,0.75,0.0,-4.513,0.0,0.0278,0.205,0.0,0.157,0.758,109.983,4.0,,Polydor Records,"C © 2001 Polydor Ltd. (UK), P ℗ 2001 Polydor Ltd. (UK)",2988 +2989,spotify:track:3Tsz5B3KuYpqtwt1QZZ8S7,Love in the First Degree,spotify:artist:3sc7iUG1Wwpwx7bHeZolgx,Bananarama,spotify:album:3OBIB9XWELY1pbHXAJILvx,Wow! (Platinum Re-Issue),spotify:artist:3sc7iUG1Wwpwx7bHeZolgx,Bananarama,1987,https://i.scdn.co/image/ab67616d0000b27374ff6a468821c70b2a903be3,1,4,211409,https://p.scdn.co/mp3-preview/026e0e37d54c900082020173c8fcd819e1e0ab37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP9600097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,hi-nrg,new romantic,new wave,new wave pop,soft rock",0.787,0.92,0.0,-5.328,1.0,0.0914,0.246,9.82e-06,0.178,0.661,117.565,4.0,,Rhino,"C 2007 London Records 90 Ltd, P 2007 This compilation: (P) 2007 London Records 90 Ltd",2989 +2990,spotify:track:0oerlffJSzhRVvtDfLcp3N,Wanted Dead Or Alive,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0kBfgEilUFCMIQY5IOjG4t,Slippery When Wet,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1986-08-16,https://i.scdn.co/image/ab67616d0000b2731336b31b6a1799f0de5807ac,1,5,308666,https://p.scdn.co/mp3-preview/660a7d68333d424601daee029aab3f95ad26ca39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USPR39402222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.253,0.803,7.0,-3.977,1.0,0.0392,0.129,0.0146,0.309,0.258,150.036,4.0,,Island Records,"C © 1986 UMG Recordings, Inc., P ℗ 1986 UMG Recordings, Inc.",2990 +2991,spotify:track:5zqObw7wjBgL9TDiAymxPn,Our Song,"spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:1Hsdzj7Dlq2I7tHP7501T4","Anne-Marie, Niall Horan",spotify:album:0zocAVUSizQ74Cn8nCsN3a,Our Song,"spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:1Hsdzj7Dlq2I7tHP7501T4","Anne-Marie, Niall Horan",2021-05-21,https://i.scdn.co/image/ab67616d0000b27385ffe4967e68df2e27128b9b,1,1,163733,https://p.scdn.co/mp3-preview/6dfe3166fa1dcdc7f4e3a6b5d03b003144e3953c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAHS2100222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop",0.595,0.759,11.0,-4.245,0.0,0.0423,0.141,0.0,0.172,0.515,80.953,4.0,,Atlantic Records/Asylum,"C A Major Toms / Asylum Records release, © 2021 Warner Music UK Limited., P A Major Toms / Asylum Records release, ℗ 2021 Warner Music UK Limited.",2991 +2992,spotify:track:623rRTKwGmgjH6sjE9uWLh,Scatman (ski-ba-bop-ba-dop-bop),spotify:artist:4omQQTNN7ILiMsSB2k9eqX,Scatman John,spotify:album:2MRWFajfjxfLAF3wwmdv5j,Scatman's World,spotify:artist:4omQQTNN7ILiMsSB2k9eqX,Scatman John,1995-06-01,https://i.scdn.co/image/ab67616d0000b273c7ed51b9dc1014285cae2ae2,1,5,215973,https://p.scdn.co/mp3-preview/d6c8867a70c9c6f6bee4f6b9249d078c3df20896?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,DKELA9610005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,eurodance,0.65,0.82,5.0,-10.9,0.0,0.0356,0.0662,0.00272,0.215,0.757,135.982,4.0,,Iceberg Records,"C 2017 Iceberg Records A/S, P 2017 Iceberg Records A/S",2992 +2993,spotify:track:7py16W5fWYLFFS6BElKAjn,Tears (feat. Louisa Johnson),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:5IHqlcCbQkyhWl0KmIwgeq","Clean Bandit, Louisa Johnson",spotify:album:5J1vKkCC6aoOGZjE7YZrHE,Tears (feat. Louisa Johnson),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:5IHqlcCbQkyhWl0KmIwgeq","Clean Bandit, Louisa Johnson",2016-05-27,https://i.scdn.co/image/ab67616d0000b2737ed82049cec82ea803874d2c,1,1,225914,https://p.scdn.co/mp3-preview/f1fddd94ce67eea3b914b89df997b25ddd28adc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAHS1600232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,talent show,uk pop",0.605,0.77,5.0,-3.645,0.0,0.0446,0.0431,0.0,0.159,0.298,130.037,4.0,,Atlantic Records UK,"C © 2016 Atlantic Records UK, a Warner Music Group company, P ℗ 2016 Atlantic Records UK, a Warner Music Group company",2993 +2994,spotify:track:1KixkQVDUHggZMU9dUobgm,My Head & My Heart,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,spotify:album:26c7MmQ4w8EAvVLb4jilaM,Heaven & Hell,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,2020-09-18,https://i.scdn.co/image/ab67616d0000b2739a95e89d24214b94de36ccf7,1,1,174760,https://p.scdn.co/mp3-preview/60f31c477e494d379c3eb8e6ff15d8007d0cbe0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USAT22007121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.614,0.934,9.0,-3.709,0.0,0.07,0.0697,0.0,0.121,0.436,116.001,4.0,,Atlantic Records,"C Atlantic Records, © 2020 Artist Partner Group, Inc., P Atlantic Records, ℗ 2020 Artist Partner Group, Inc.",2994 +2995,spotify:track:0ItlbY5mHDSYQd3SOgAlZu,"Those Lazy, Hazy, Crazy Days Of Summer",spotify:artist:7v4imS0moSyGdXyLgVTIV7,Nat King Cole,spotify:album:5jA1HyOHqWy718lEXH2koC,Those Lazy Hazy Crazy Days Of Summer,spotify:artist:7v4imS0moSyGdXyLgVTIV7,Nat King Cole,1963-04-01,https://i.scdn.co/image/ab67616d0000b273817da87bdbfac461a03dccf6,1,1,145013,https://p.scdn.co/mp3-preview/17ba985184c2071a53f402dffc3a346d22d8dbe5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USCA29000090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,soul,swing,vocal jazz",0.416,0.726,6.0,-5.254,1.0,0.0573,0.687,0.0,0.27,0.895,182.219,4.0,,Capitol Records,"C © 1963 Capitol Records, LLC, P ℗ 2009 Capitol Records, LLC",2995 +2996,spotify:track:1uzWOoJdADfstQuFtQFTUn,Breakfast At Tiffany's,spotify:artist:5N5RfI8FFXk4WQ8kkjE407,Deep Blue Something,spotify:album:6errc1YD0IKeT3sudfomvO,Home,spotify:artist:5N5RfI8FFXk4WQ8kkjE407,Deep Blue Something,1995-01-01,https://i.scdn.co/image/ab67616d0000b273038f8fad2f75b637f1c9aef5,1,2,257373,https://p.scdn.co/mp3-preview/7bf57cbf18feec369fe7642170233df65c4c16f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USIR19500177,spotify:user:bradnumber1,2021-11-09T09:48:02Z,pop rock,0.622,0.829,2.0,-5.548,1.0,0.029,0.11,0.0,0.0954,0.539,110.367,4.0,,Interscope,"C © 1995 Interscope Records, P ℗ 1995 Interscope Records",2996 +2997,spotify:track:1BrbXIJ7b161oQ0PfC0K32,Woman - Remastered 2010,spotify:artist:4x1nvY2FN8jxqAFA0DA02H,John Lennon,spotify:album:1NWA2fPLUAW5df7UGI5thp,Double Fantasy,"spotify:artist:4x1nvY2FN8jxqAFA0DA02H, spotify:artist:2s4tjL6W3qrblOe0raIzwJ","John Lennon, Yoko Ono",1980-11-17,https://i.scdn.co/image/ab67616d0000b2730488a5c4e21edc24526652ae,1,10,212933,https://p.scdn.co/mp3-preview/97df53f3e5690798380e8c7e8b785d6376db628f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USTO11000024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,rock",0.588,0.656,3.0,-6.373,1.0,0.0224,0.378,0.00227,0.042,0.746,79.701,4.0,,BEATLES CATALOG MKT (C91),"C © 2010 Calderstone Productions Limited (a division of Universal Music Group), P ℗ 2010 Calderstone Productions Limited (a division of Universal Music Group)",2997 +2998,spotify:track:6oBys3M5AqzqJDgpT2RM9C,Reality - Radio Edit,"spotify:artist:7f5Zgnp2spUuuzKplmRkt7, spotify:artist:5gtYjyZlmPOc1lLHvYzCON","Lost Frequencies, Janieck Devy",spotify:album:6pt2Oxi5eEJATYZ0KAjB9q,Reality (Radio Edit),spotify:artist:7f5Zgnp2spUuuzKplmRkt7,Lost Frequencies,2015-06-08,https://i.scdn.co/image/ab67616d0000b273bf38d622ab4a9b5925b7ee21,1,1,158466,https://p.scdn.co/mp3-preview/9f5bf8bb09f339521222af289b12688b17a05689?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF711502765,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"belgian edm,edm,pop dance,tropical house",0.731,0.639,9.0,-6.597,1.0,0.0359,0.0206,1.29e-05,0.0789,0.527,122.08,4.0,,Sony Music Entertainment,"P (P) 2015 Armada Music B.V, under exclusive licence to Play On",2998 +2999,spotify:track:5n6RDaGFSN88oRWuGtYAIN,The Show Must Go On - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:5kffKW0sSLo6tkLg1veUGC,Innuendo (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1991-02-05,https://i.scdn.co/image/ab67616d0000b273024b36346101df444742cde2,1,12,277826,https://p.scdn.co/mp3-preview/366409db6ffdc8cc31ba0c19b3a491d14ea74ad3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBUM71106221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.426,0.687,11.0,-6.926,0.0,0.0329,0.409,0.0,0.112,0.189,84.141,4.0,,EMI,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",2999 +3000,spotify:track:7795WJLVKJoAyVoOtCWqXN,I'm Not The Only One,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:08jWgM4vSkTose4blKBWov,In The Lonely Hour,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2014-05-26,https://i.scdn.co/image/ab67616d0000b273b11bdc91cb9ac6b14f5c1dae,1,5,239316,https://p.scdn.co/mp3-preview/8959d5e6580b9d00fefd87bbbbf0dac0940a9d51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,GBUM71308836,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.678,0.484,5.0,-5.795,1.0,0.0361,0.529,2.01e-05,0.0766,0.493,82.004,4.0,,PLG - Capitol,"C © 2014 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2014 Capitol Records, a division of Universal Music Operations Limited",3000 +3001,spotify:track:02srSkeu2pzybuVr2B9TJm,When Will I See You Again,spotify:artist:2zpFG5cvw00QmrYTUsjApa,The Three Degrees,spotify:album:348rR3bK4ypUS5MF2aIetX,The Three Degrees,spotify:artist:2zpFG5cvw00QmrYTUsjApa,The Three Degrees,1973,https://i.scdn.co/image/ab67616d0000b2738f2a0ed2e991f7c16ac8cd41,1,4,178746,https://p.scdn.co/mp3-preview/928acc23d69be15b1f72de306b256ad8abf15ce5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM10202941,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,disco,motown,philly soul",0.564,0.593,9.0,-9.245,1.0,0.0328,0.732,0.00366,0.343,0.766,120.753,4.0,,Legacy Recordings,"P (P) 1973 Assorted Music, Inc. d/b/a Philadelphia International Records",3001 +3002,spotify:track:5DIwQRUce7d636AT8Czpwk,"Sorry, Blame It On Me",spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,spotify:album:13C2pc5O7ofZKd4p2VYO3S,Konvicted,spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,2006,https://i.scdn.co/image/ab67616d0000b2733ad505200e799d6cf2b09b0a,1,13,295746,https://p.scdn.co/mp3-preview/b3a485daf57827a1f49fd23bdc256f2706f327cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70743018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.695,0.647,7.0,-7.394,1.0,0.283,0.247,4.05e-05,0.0755,0.57,176.031,4.0,,Konvict/Upfront/SRC/Universal Records,"C © 2007 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2007 Universal Records, a Division of UMG Recordings, Inc.",3002 +3003,spotify:track:0VMGij4wSGBM5pSTcqjxeD,Sea of Love - 2006 Remaster,spotify:artist:7J7YRBSoiXpdTmcbkKZL2C,The Honeydrippers,spotify:album:0fwGgCBAMQ0ItsxR7yBE8O,"The Honeydrippers, Vol. 1 (Expanded)",spotify:artist:7J7YRBSoiXpdTmcbkKZL2C,The Honeydrippers,1984,https://i.scdn.co/image/ab67616d0000b2734275ec095a72b84743934fce,1,2,183880,https://p.scdn.co/mp3-preview/cd13684ff06bdc32d0dbadb298bcd5b6115f74b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT20616596,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rock-and-roll,0.422,0.411,7.0,-9.004,1.0,0.0257,0.111,0.00113,0.324,0.393,82.737,4.0,,Rhino Atlantic,"C © 1984 Es Paranza, manufactured and distributed by Atlantic Recording Corporation, P ℗ 1984 Es Paranza, manufactured and distributed by Atlantic Recording Corporation, a Warner Music Group company",3003 +3004,spotify:track:5ZEKq8JRtVVXZXEZ9eI9Wf,Walk Like an Egyptian,spotify:artist:51l0uqRxGaczYr4271pVIC,The Bangles,spotify:album:7v7kpwwk6JXKS3klilqXV7,Different Light,spotify:artist:51l0uqRxGaczYr4271pVIC,The Bangles,1986,https://i.scdn.co/image/ab67616d0000b273a0fb06737987cb6770382f92,1,4,204933,https://p.scdn.co/mp3-preview/a926b78faeacc6cda191760765dca6f800b9fc33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUMU08600004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,jangle pop,new romantic,new wave,new wave pop,paisley underground,soft rock",0.717,0.84,11.0,-12.781,1.0,0.104,0.00785,5.94e-06,0.296,0.788,103.043,4.0,,WM Australia,"C © 1986 The Bangles, under license to Festival Mushroom Records, P ℗ 1986 The Bangles, under license to Festival Mushroom Records",3004 +3005,spotify:track:5Zgl2ldTzXd7Q6iog78pQK,Low Blows,spotify:artist:4faUajx9k93O56nlmpkOuz,Meg Mac,spotify:album:6ShsZvRGx3dU6s0WXs7DfT,Low Blows,spotify:artist:4faUajx9k93O56nlmpkOuz,Meg Mac,2017-07-14,https://i.scdn.co/image/ab67616d0000b2734c9f530f03b6c68e1f3bd5c6,1,2,212786,https://p.scdn.co/mp3-preview/929521c8b7bd08e8011e8c9ae00c10532b54adaa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUGKE1700011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.707,0.706,8.0,-5.984,1.0,0.0418,0.149,6.01e-05,0.113,0.469,97.997,4.0,,EMI Recorded Music Australia Pty Ltd (Distribution),"C © 2017 littleBIGMAN Records, P ℗ 2017 littleBIGMAN Records",3005 +3006,spotify:track:0X6fWeGBZDks4SbLPy7nuB,Judy in Disguise (With Glasses),spotify:artist:1JJQnWXsIpAKIvcWJGUtfg,John Fred and His Playboy Band,spotify:album:5iILQpQvOsd0ddRzKCQmtX,One-Hit Wonders! (Original – Recordings),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-02-21,https://i.scdn.co/image/ab67616d0000b273dfb1a98b8c6866596c7c688a,1,6,174744,https://p.scdn.co/mp3-preview/771322ae40bba8126bf703d223be6b02efd72243?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USA371643641,spotify:user:bradnumber1,2021-08-08T09:26:31Z,swamp pop,0.638,0.818,8.0,-9.212,1.0,0.132,0.0386,0.159,0.118,0.922,82.289,4.0,,2012 Carinco Neue Medien AG,C 2012 Carinco Neue Medien AG,3006 +3007,spotify:track:1WCUu2H7FSpnYSdNuUMi9D,R.O.C.K. In The U.S.A. (A Salute To 60's Rock),spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:3GoJXycNVOi2U5Lb0P9rhR,Scarecrow (Remastered),spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1985,https://i.scdn.co/image/ab67616d0000b27349302bf2854b71786af518f4,1,11,174360,https://p.scdn.co/mp3-preview/cbddfc8aa7b7989b0f3e0c5563295bfca472ff46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJM18500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.433,0.958,9.0,-4.009,1.0,0.0818,0.00943,2.73e-06,0.227,0.874,164.009,4.0,,Universal Music Group,"C © 2005 John Mellencamp, under exclusive license to the Island Def Jam Music Group, P ℗ 2005 John Mellencamp, under exclusive license to the Island Def Jam Music Group",3007 +3008,spotify:track:2XAqe2XXOA82YK27SAhB59,Hey Little Cobra,spotify:artist:0WnxcAN2X6IKcdaZpi5X1K,The Rip Chords,spotify:album:6TPACMyZMyBqYikQPGtGA7,The Very Best of the Rip Chords,spotify:artist:0WnxcAN2X6IKcdaZpi5X1K,The Rip Chords,2011-02-15,https://i.scdn.co/image/ab67616d0000b27328152aa1cd090b0e9d580eb2,1,1,121106,https://p.scdn.co/mp3-preview/72dadfc442aa5a373e4eb60ae58e9c2f31501552?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USXTN1043227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic garage rock,surf music",0.57,0.79,6.0,-6.365,1.0,0.0676,0.513,0.0,0.168,0.906,156.698,4.0,,Classic Music International,"C 2011 Classic Music International, P 2011 Classic Music International",3008 +3009,spotify:track:1kWvqPD3EQ1DMDFsA7POkM,Epic - 2009 Remaster,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,spotify:album:1iTTVgJOkFvIySofAymWvT,The Very Best Definitive Ultimate Greatest Hits Collection,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,2009,https://i.scdn.co/image/ab67616d0000b273969505b3505a1730c18332bc,1,3,294080,https://p.scdn.co/mp3-preview/66b495206e433c28e33ec17fbccf3e939f69516b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,GBCRL0900078,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,funk metal,funk rock,hard rock,nu metal,post-grunge,rap metal,rock",0.359,0.896,4.0,-6.284,0.0,0.135,0.01,0.0562,0.345,0.263,174.128,4.0,,WM UK,"C © 2009 Warner Music UK Ltd, P ℗ 2009 Warner Music UK Ltd",3009 +3010,spotify:track:5SPQAfrZLAAEpNxQyporhP,Stand By You,spotify:artist:16dHCueD31uV6lKt0w8cRX,Marlisa,spotify:album:6fJN0Wk5e8beetzqdwe2ew,Marlisa,spotify:artist:16dHCueD31uV6lKt0w8cRX,Marlisa,2014-11-07,https://i.scdn.co/image/ab67616d0000b27321c9f3c946451948c50c310a,1,1,192040,https://p.scdn.co/mp3-preview/0a154751559d803815cdb4c644d044798290faa6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUBM01400673,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.513,0.849,7.0,-2.179,1.0,0.209,0.332,0.0,0.349,0.584,171.887,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,3010 +3011,spotify:track:0HEmnAUT8PHznIAAmVXqFJ,Faith - Remastered,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:34K1Kvskt9arWy8E1Gz3Lw,Faith,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1987-10-30,https://i.scdn.co/image/ab67616d0000b273b7a9a6a2bf311630d3fc6956,1,1,193200,https://p.scdn.co/mp3-preview/0e9890115e11c6816ad2124d1f9b2384219253cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBARL1000855,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.887,0.48,11.0,-11.994,1.0,0.117,0.0094,3.58e-05,0.0662,0.607,95.846,4.0,,Epic,P (P) 2010 Sony Music Entertainment UK Limited,3011 +3012,spotify:track:6SaeXxdt0Id6ZzmX0ZGTQK,"Fastlove, Pt. 1",spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:45evuVVrY9LzPez8geNEIF,Older,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1996-05-13,https://i.scdn.co/image/ab67616d0000b273721aa94703c1a94c735aacd0,1,2,324666,https://p.scdn.co/mp3-preview/aed7df1518130a18b22aa9b2e764b8d3cedcf508?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBDFN9600002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.735,0.64,10.0,-7.522,0.0,0.072,0.052,0.00102,0.345,0.551,104.444,4.0,,Sony Music UK,"P (P) 1996 G.K. Panayiotou, under exclusive license to Sony Music Entertainment UK Limited",3012 +3013,spotify:track:5ghsVpqrNFTgNifP8vkhC0,"When You Believe (from ""The Prince of Egypt"")","spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:6XpaIBNiVzIetEPCWDvAFP","Mariah Carey, Whitney Houston",spotify:album:3xRX45h9FltGuSianOejL0,Movie Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-01-27,https://i.scdn.co/image/ab67616d0000b2731b072cb3c7c26ddeb2e75a72,1,19,274466,https://p.scdn.co/mp3-preview/799551d0b01c90fe5a44241ecbb485e179a0f543?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USSM19804755,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,dance pop,pop",0.388,0.464,1.0,-6.907,0.0,0.0298,0.332,0.0,0.108,0.126,125.099,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment,3013 +3014,spotify:track:2L2dkUlRrPPaUHXawZ7HwG,Kings of the World,spotify:artist:6ezM4BqULQLDsGC3i4Xan1,Mississippi,spotify:album:7Glg9cAV1AG7kj51VI6TMu,Mississippi,spotify:artist:6ezM4BqULQLDsGC3i4Xan1,Mississippi,1972-08-01,https://i.scdn.co/image/ab67616d0000b2731d59dc943126ad0d93e0b23b,1,8,149635,https://p.scdn.co/mp3-preview/b41bbe629e9af518d5af9ac2d17d114faa51f014?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,QZES82069919,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.446,0.448,11.0,-12.841,0.0,0.0321,0.0193,0.0,0.1,0.411,78.12,4.0,,Bootleg,"C 2020 Bootleg, P 2020 Bootleg",3014 +3015,spotify:track:3CeCwYWvdfXbZLXFhBrbnf,Love Story (Taylor’s Version),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:4j2syEjl3h1To8KbRgvmJn,Love Story (Taylor’s Version),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2021-02-12,https://i.scdn.co/image/ab67616d0000b273877ea8fa223c26f19aaef92d,1,1,235766,https://p.scdn.co/mp3-preview/b2c1ed4794591a6266401294b48e2034768d5f73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USUG12100342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.626,0.79,2.0,-4.302,1.0,0.0311,0.135,3.97e-06,0.0989,0.416,119.082,4.0,,Taylor Swift,"C © 2021 Taylor Swift, P ℗ 2021 Taylor Swift",3015 +3016,spotify:track:6kjlvJLh2DBsSQtqVzFh8I,Immigrant Song - 1990 Remaster,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,spotify:album:1u5BsuBK45mLwrbqdASN3g,Led Zeppelin III (1994 Remaster),spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,1970-10-05,https://i.scdn.co/image/ab67616d0000b2738862f99171ea71d0925ffc13,1,1,145066,https://p.scdn.co/mp3-preview/f50f3416ea0807503e172ba87a92d8047d4f95da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT29900609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.574,0.926,11.0,-10.79,1.0,0.0562,0.00031,0.478,0.386,0.609,113.097,4.0,,Rhino Atlantic,"C © 1970 Swan Song Inc., P ℗ 1970 Atlantic Recording Corp., a Warner Music Group company",3016 +3017,spotify:track:7gLqsrsyEC4iJuQQEArjbP,Green,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,spotify:album:6ETAgT0iWkJKsKJeNT41Z6,Watching Angels Mend,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,2001-09-17,https://i.scdn.co/image/ab67616d0000b2734dd2d5f7326a25c295129d93,1,2,242160,https://p.scdn.co/mp3-preview/145cfe1d714c5022f4158f1a94b59d00665b2b88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUEM00100087,spotify:user:bradnumber1,2022-08-31T00:30:38Z,"australian alternative rock,australian rock",0.402,0.647,7.0,-6.38,0.0,0.0273,0.00299,0.0,0.13,0.363,79.941,3.0,,EMI Music Australia,"C © 2003 EMI Recorded Music Australia Pty Ltd., P ℗ 2001 EMI Recorded Music Australia Pty Ltd.",3017 +3018,spotify:track:3GLi8jaibvLz0uRNMsGsz2,Lay All Your Love On Me,spotify:artist:0z5DFXmhT4ZNzWElsM7V89,Erasure,spotify:album:1jyWY9dj9VbvzT9t0tl9Bn,Abba-Esque,spotify:artist:0z5DFXmhT4ZNzWElsM7V89,Erasure,1992,https://i.scdn.co/image/ab67616d0000b273755931b13b599ee57abdb0c4,1,1,285266,https://p.scdn.co/mp3-preview/399c18f2b8e61fcf93ae00e9a80e60644bdf281d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBAJH0100409,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop",0.581,0.887,7.0,-5.39,0.0,0.0348,0.00183,0.00156,0.0803,0.568,131.991,4.0,,Mute/BMG,"C 1992 Mute Records Ltd., a BMG Company, under exclusive license to [PIAS] UK Ltd, P 1992 Mute Records Ltd., a BMG Company, under exclusive license to [PIAS] UK Ltd",3018 +3019,spotify:track:4qty2H7nROmfs2K6aols1I,Animal Rights - Radio Edit,"spotify:artist:2CIMQHirSU0MQqyYHq0eOx, spotify:artist:3534yWWzmxx8NbKVoNolsK","deadmau5, Wolfgang Gartner",spotify:album:7w48j5H4NSqi5fapBTNtgZ,Animal Rights,"spotify:artist:2CIMQHirSU0MQqyYHq0eOx, spotify:artist:3534yWWzmxx8NbKVoNolsK","deadmau5, Wolfgang Gartner",2010-01-01,https://i.scdn.co/image/ab67616d0000b2734d81aad5ddf9cd4932b9448e,1,1,157245,https://p.scdn.co/mp3-preview/50e481a2ea0611601b5d02ba2a7a3642ef80f8c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,GBTDG1000190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian electronic,complextro,edm,electro house,pop dance,progressive electro house,progressive house,complextro,edm,electro house,house,progressive electro house",0.831,0.845,11.0,-3.475,0.0,0.0805,0.00112,0.00455,0.671,0.608,128.057,4.0,,Virgin Records,"C © 2010 mau5trap Recordings Ltd, P ℗ 2010 mau5trap Recordings Ltd",3019 +3020,spotify:track:7g8cjrj0sXScNE727685JE,"Kernkraft 400 - DJ Gius Mix, Radio Edit",spotify:artist:7vFpNLbCXbBFs4kFBUlkSl,Zombie Nation,spotify:album:2qmrRoUZQemrKFr9PBMDHd,Kernkraft 400 Single Mixes,spotify:artist:7vFpNLbCXbBFs4kFBUlkSl,Zombie Nation,2006-03-07,https://i.scdn.co/image/ab67616d0000b273916e34ccc44c2b56cdd0d7e4,1,3,207266,https://p.scdn.co/mp3-preview/6c66a8fc9f9f9c59eb83ecdc3102630194252cf4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,DE-Z20-06-00039,spotify:user:bradnumber1,2023-11-28T13:26:05Z,german techno,0.714,0.528,6.0,-8.789,1.0,0.0692,0.00415,0.854,0.0819,0.297,139.983,4.0,,UKW Records,"C 2006 Copyright Control, P 2006 Copyright Control",3020 +3021,spotify:track:6rEr7AsF3cmfUR3birakRF,Twilight Zone,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,spotify:album:31ZELjZPFpr5326F1uojYm,Unlimited Hits & Remixes,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,2014-05-05,https://i.scdn.co/image/ab67616d0000b273a8440fea5eb100ae2a5d4458,1,7,248196,https://p.scdn.co/mp3-preview/4b4a53421b2f574dedf9871e7fc9c6f1a307fc3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BEAA19507008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,hip house",0.7,0.99,3.0,-7.559,0.0,0.0499,0.0873,0.00211,0.151,0.77,127.884,4.0,,Byte Records,"C 2014 BYTE Records, P 2014 BYTE Records",3021 +3022,spotify:track:1ieouFxB2A3JjKEt1OoEiB,Spanish Guitar,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,spotify:album:0UZsKcXzOehMvFWTiBlwMi,The Heat,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,2000,https://i.scdn.co/image/ab67616d0000b273126720399a6b06e1c6bd46c6,1,3,289000,https://p.scdn.co/mp3-preview/b9e96f1e82d9ff2b2904ca6e765eaa4fd0aacac5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USLF20000025,spotify:user:bradnumber1,2022-08-23T01:29:13Z,"contemporary r&b,dance pop,r&b,urban contemporary",0.625,0.563,9.0,-6.506,0.0,0.0387,0.437,5.05e-06,0.175,0.364,120.023,4.0,,Arista/LaFace Records,P (P) 2000 LaFace Records LLC,3022 +3023,spotify:track:7MayiW34pPXeLgiomCwDqF,It's Only Natural,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:60yn6hrcRylRtrlyllel6a,All the Best,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,2012-04-20,https://i.scdn.co/image/ab67616d0000b2739221856fa839cd5fb4786ec5,1,5,211973,https://p.scdn.co/mp3-preview/0950e6af82b09242a78819a2cc28215657c936d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA29100150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.745,0.555,10.0,-11.385,1.0,0.0286,0.0541,0.0,0.123,0.856,116.242,4.0,,EMI,"C (C) 2012 EMI Music Germany GmbH & Co. KGThis label copy information is the subject of copyright protection. All rights reserved.(C) 2012 EMI Music Germany GmbH & Co. KG, P (P) 2012 The copyright in this sound recording is owned by EMI Music Germany GmbH & Co. KG",3023 +3024,spotify:track:4SqOVebclQiYEVo63QdIux,Melting Pot,spotify:artist:0hUyd9GtnzL8NysCiaxCcv,Blue Mink,spotify:album:6Ygt4C381rfWD0SLOeOzoN,Melting Pot - The Best of Blue Mink,spotify:artist:0hUyd9GtnzL8NysCiaxCcv,Blue Mink,2000-07-25,https://i.scdn.co/image/ab67616d0000b273d5553629f264d958223b0773,1,1,227640,https://p.scdn.co/mp3-preview/7f83e9f74b738f3fb5b3555ec73b110b8748a6ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6900187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.376,0.641,5.0,-9.239,1.0,0.0763,0.19,0.0,0.096,0.693,172.735,4.0,,Sanctuary Records,"C © 2006 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2006 Sanctuary Records Group Ltd., a BMG Company",3024 +3025,spotify:track:2a6hvSpFXeA36da1L5RzKZ,Monsters (feat. Demi Lovato and blackbear),"spotify:artist:46gyXjRIvN1NL1eCB8GBxo, spotify:artist:6S2OmqARrzebs0tKUEyXyp, spotify:artist:2cFrymmkijnjDg9SS92EPM","All Time Low, Demi Lovato, blackbear",spotify:album:0ZHXmsqqO4ZCuWN8RN3Mwy,Monsters (feat. Demi Lovato and blackbear),"spotify:artist:46gyXjRIvN1NL1eCB8GBxo, spotify:artist:6S2OmqARrzebs0tKUEyXyp, spotify:artist:2cFrymmkijnjDg9SS92EPM","All Time Low, Demi Lovato, blackbear",2020-04-03,https://i.scdn.co/image/ab67616d0000b273539159fcffd237273203d711,1,1,174424,https://p.scdn.co/mp3-preview/ee1cfd7d6039f36a1d30fc8e2c57ed933f5c51e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USAT22007692,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,neon pop punk,pop punk,pop,post-teen pop,alt z,pop",0.502,0.765,0.0,-3.672,0.0,0.0476,0.0138,0.0,0.515,0.805,162.097,4.0,,Fueled By Ramen,"C A Fueled By Ramen release, © 2020 Elektra Records LLC., P A Fueled By Ramen release, ℗ 2020 Elektra Records LLC.",3025 +3026,spotify:track:4YR6Dextuoc3I8nJ0XgzKI,"Footloose - From ""Footloose"" Soundtrack",spotify:artist:3Y3xIwWyq5wnNHPp5gPjOW,Kenny Loggins,spotify:album:68ZonGoyvksZu4sqqNXect,The Essential Kenny Loggins,spotify:artist:3Y3xIwWyq5wnNHPp5gPjOW,Kenny Loggins,2002,https://i.scdn.co/image/ab67616d0000b273e74fe3e17166fb970f9e84cc,2,1,226293,https://p.scdn.co/mp3-preview/b528efd2e7acc45b765450e28f65a0f665140b2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM19803320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new wave pop,singer-songwriter,soft rock,yacht rock",0.564,0.911,2.0,-5.39,1.0,0.0536,0.159,4.36e-05,0.118,0.582,173.938,4.0,,Columbia/Legacy,"P Originally Released 1971, (P) 1972, 1973, 1977, 1978, 1979, 1980, 1982, 1984, 1985, 1986, 1988, 1991, 1993, 1994, 1996, 1997, 2000, 2002 Sony Music Entertainment Inc.",3026 +3027,spotify:track:0BBLIc1LYjA5yNsD1t6Fp5,Time of Our Lives - Radio Edit,"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:21E3waRsmPlU7jZsS13rcj","Pitbull, Ne-Yo",spotify:album:1bNlBFmUkqsRu6Fsa9jzAV,Feel Good Friday,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-11-23,https://i.scdn.co/image/ab67616d0000b2732dada85cf47ece259e87d120,1,2,214080,https://p.scdn.co/mp3-preview/1a094241b26bba191940bffb847f8c63e0921f88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USRC11403082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,dance pop,pop,r&b,urban contemporary",0.714,0.706,1.0,-9.144,1.0,0.0727,0.0946,0.0,0.7,0.812,124.036,4.0,,Sony Music CG,P This compilation (P) 2018 Sony Music Entertainment UK Limited,3027 +3028,spotify:track:1wSET2KV4f0JvVuZAMuN5U,Dandy,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,spotify:album:1GocNvETatEei10ng7bpJ9,"A's, B's & EP's",spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,2004-03-01,https://i.scdn.co/image/ab67616d0000b27322cf9dd2fc2a082b182ce95f,1,9,121360,https://p.scdn.co/mp3-preview/4f9bb5a7109a4232ad3126420eef492cd72467ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,GBAYE6600521,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock,rock-and-roll,singer-songwriter",0.543,0.604,2.0,-7.665,1.0,0.0307,0.152,0.0,0.0771,0.666,93.491,4.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",3028 +3029,spotify:track:3yMC1KsTwh0ceXdIe4QQAQ,Fingers Crossed,spotify:artist:79AyR6ATpj2LTPxfb6FX50,Lauren Spencer Smith,spotify:album:7i5dqey54xo8F2flVer0yY,Fingers Crossed,spotify:artist:79AyR6ATpj2LTPxfb6FX50,Lauren Spencer Smith,2022-01-05,https://i.scdn.co/image/ab67616d0000b273d455dcb7c245d4ef1646d38e,1,1,175344,https://p.scdn.co/mp3-preview/773c9b7d5d7c6951eacee4850e98b80e113dcdda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,TCAFY2118876,spotify:user:bradnumber1,2022-04-27T22:14:29Z,"alt z,gen z singer-songwriter,singer-songwriter pop",0.56,0.473,5.0,-7.23,1.0,0.0533,0.618,0.0,0.31,0.441,109.414,4.0,,"Three Name Productions, Inc./ Island Records & Republic Records","C © 2022 Three Name Productions, Inc., under exclusive license to Island Records & Republic Records, divisions of UMG Recordings, Inc., P ℗ 2022 Three Name Productions, Inc., under exclusive license to Island Records & Republic Records, divisions of UMG Recordings, Inc.",3029 +3030,spotify:track:2V2yZFQ09fszpzR1iH9iLS,Feel The Love,"spotify:artist:7DQ3WCryhwdbFr2D5SaKZN, spotify:artist:15GGbJKqC6w0VYyAJtjej6","Marvin Priest, Fatman Scoop",spotify:album:05t3EAQ9N6hbbo389uUdSe,Beats & Blips,spotify:artist:7DQ3WCryhwdbFr2D5SaKZN,Marvin Priest,2011-01-01,https://i.scdn.co/image/ab67616d0000b2735344a6b0eabc431deb2745bc,1,2,214173,https://p.scdn.co/mp3-preview/803f3f0f9e426d8da867dbb8acd771212212fff7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUUM71101379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,nyc rap",0.644,0.9,7.0,-3.822,1.0,0.124,0.138,0.0,0.312,0.657,129.986,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P ℗ 2011 Universal Music Australia Pty Ltd.",3030 +3031,spotify:track:6Ibjr2uK8nmwHvJjOzRtwv,Outlines - Radio Edit,"spotify:artist:5lwT6gFdwV3Wcol07KUiJx, spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n","Mike Mago, Dragonette",spotify:album:4B9VjkR8Ti8eZ9QOrdqIbl,Outlines,"spotify:artist:5lwT6gFdwV3Wcol07KUiJx, spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n","Mike Mago, Dragonette",2015-02-06,https://i.scdn.co/image/ab67616d0000b273b55764422d19c910adb98b52,1,1,176413,https://p.scdn.co/mp3-preview/288601c712ba26fa9cde38ec37978fda878c57cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLZ541400701,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep groove house,house,canadian electropop,canadian pop,dance rock,electropop,metropopolis,neo-synthpop",0.731,0.782,9.0,-7.358,1.0,0.0665,0.0903,0.0867,0.182,0.735,122.964,4.0,,Hussle,"C © 2014 SpinninRecords.com, P ℗ 2014 SpinninRecords.com, under exclusive licence to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd",3031 +3032,spotify:track:1TcICCq5BTysmnCWhG5dE9,It's Good News Week,spotify:artist:5A3bl1xizicm2UoXHmmkkq,Hedgehoppers Anonymous,spotify:album:5nSlB8V3M3DgsRA4hvv9PS,UK Records 80 Great Hits from the 60s & 70s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-11-11,https://i.scdn.co/image/ab67616d0000b273c23ca1f2e1c2fbceae7d826f,1,29,125586,https://p.scdn.co/mp3-preview/3dfc397653f53a46e3bd0bf6d1436cda9db4cdcd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCBU1311026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.52,0.715,4.0,-6.874,1.0,0.0389,0.172,0.0,0.0628,0.962,111.478,4.0,,Revvolution,"C 2013 Revvolution, P 2013 Revvolution",3032 +3033,spotify:track:7BLKBIoijWCkDyOATEr5vW,Cherish,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,35,229600,https://p.scdn.co/mp3-preview/23195c0d76f867b18781c19b41b49444e574eb36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB10903632,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.692,0.875,2.0,-4.528,1.0,0.0345,0.289,3.22e-05,0.0675,0.9,131.88,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",3033 +3034,spotify:track:11gfsr13S8qsfN48IILcHU,Make It with You,spotify:artist:70ZTdbPEcEugBNay4MvxfL,Bread,spotify:album:27PnJozrSZByyLlqFtiVtx,The Best of Bread,spotify:artist:70ZTdbPEcEugBNay4MvxfL,Bread,1973-06-01,https://i.scdn.co/image/ab67616d0000b273be07f53692eb777dcb4ca560,1,1,192200,https://p.scdn.co/mp3-preview/ed2d94a667820b81eaa8dddcbf58ce8e2ccf016f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USEE10180854,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.629,0.356,4.0,-11.135,1.0,0.0246,0.66,0.000617,0.173,0.472,83.886,4.0,,Rhino/Elektra,"C © 2001 Elektra Records, P ℗ 2001 Elektra Records",3034 +3035,spotify:track:1LLYUNju7y8qRlGKw39kfh,Horror Movie - remastered,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,spotify:album:7t9U68qw03aG0ztdN7SmKN,The Collection,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,1999,https://i.scdn.co/image/ab67616d0000b2737bfecdcba5e7b8925c10b02c,1,4,227720,https://p.scdn.co/mp3-preview/c2f73e779afea9b3163368da2ec4adda22034f2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFE00900026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.687,0.661,9.0,-6.654,1.0,0.0979,0.282,3.17e-05,0.193,0.15,140.501,4.0,,WM Australia,"C 1999 Mushroom Records Pty Limited, P 1999 Mushroom Records Pty Limited",3035 +3036,spotify:track:3Wf2YGdYT8xVdNsQSoRKk9,Youth (feat. Khalid),"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Shawn Mendes, Khalid",spotify:album:1M6aJwH37ZVboE0cnQw6aV,Youth (feat. Khalid),"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Shawn Mendes, Khalid",2018-05-03,https://i.scdn.co/image/ab67616d0000b273d8906e2b4b8918d36ebec5c9,1,1,189973,https://p.scdn.co/mp3-preview/1bbde608b9d6543163a1536bb0dc9bf2cc21e644?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71804955,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop,pop,pop r&b",0.625,0.589,6.0,-6.627,0.0,0.0858,0.518,0.0,0.197,0.33,100.003,4.0,,Island Records,"C © 2018 Island Records, a division of UMG Recordings, Inc., P ℗ 2018 Island Records, a division of UMG Recordings, Inc.",3036 +3037,spotify:track:2uiyVyP0Rvl0MgB8ehoc07,Dr. Love,spotify:artist:7Jbs4wPCLaKXPxrTxZ2zaa,Tina Charles,spotify:album:60XZbb6xRKj7waYqeJi3wz,Dance Little Lady,spotify:artist:7Jbs4wPCLaKXPxrTxZ2zaa,Tina Charles,2012-03-20,https://i.scdn.co/image/ab67616d0000b273327142437c88efaea2c92823,1,2,189320,https://p.scdn.co/mp3-preview/7474cf366ef5526e444fd9b78bb70abd3ee4acb9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,GBQRF1119559,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg",0.736,0.563,2.0,-13.837,1.0,0.0312,0.0165,0.0,0.166,0.96,102.021,4.0,,Dressed 2 Kill - OMP,C 2012 One Media Publishing,3037 +3038,spotify:track:2QWP8NYYplOqEFBYGCcq0S,Rain,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:3W9NClLDhTHyRmy8ZLfoJf,Freedom Child,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2017-09-01,https://i.scdn.co/image/ab67616d0000b2735409d6da4f0a9aa86edd4ef4,1,2,209346,https://p.scdn.co/mp3-preview/f9f7e014a8e7fd991050ba570a342ff596a4bac5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,56,GBARL1701268,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.689,0.586,6.0,-7.61,1.0,0.107,0.241,0.0,0.356,0.611,93.02,4.0,,Columbia,P (P) 2017 Sony Music Entertainment UK Limited,3038 +3039,spotify:track:0bXhjlgUddDlJzHOeVM4Tq,Never Miss A Beat,spotify:artist:0LbLWjaweRbO4FDKYlbfNt,Kaiser Chiefs,spotify:album:1cMowxUDW6TPg6NXnOdM3n,Off With Their Heads,spotify:artist:0LbLWjaweRbO4FDKYlbfNt,Kaiser Chiefs,2008-01-01,https://i.scdn.co/image/ab67616d0000b27301462e466fdf659666e1e333,1,2,186946,https://p.scdn.co/mp3-preview/06ef787436aa300ff0cb494499b0820f252ff508?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBDVX0800077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,modern rock,0.499,0.899,0.0,-3.994,1.0,0.0382,2.19e-05,0.174,0.651,0.449,156.017,4.0,,Polydor Records,"C © 2008 B-Unique Records, Under exclusive license to Polydor Records Ltd. (UK), P ℗ 2008 B-Unique Records, Under exclusive license to Polydor Records Ltd. (UK)",3039 +3040,spotify:track:0It6VJoMAare1zdV2wxqZq,Undisclosed Desires,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,spotify:album:0eFHYz8NmK75zSplL5qlfM,The Resistance,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,2009-09-10,https://i.scdn.co/image/ab67616d0000b273b6d4566db0d12894a1a3b7a2,1,3,235000,https://p.scdn.co/mp3-preview/c66e96205da9e4430bc0ce454a23820aab877704?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAHT0900322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern rock,permanent wave,rock",0.683,0.585,8.0,-6.76,1.0,0.0323,0.00819,0.0162,0.0797,0.641,115.997,4.0,,Warner Records,"C © 2009 Warner Music UK Limited, P ℗ 2009 Warner Music UK Limited",3040 +3041,spotify:track:6cZSRZJfYKvNzUo8ZNUy81,But It's Better If You Do,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:01hp4DvayKlnqUQrmk0vvz,A Fever You Can't Sweat Out,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,2005-09-27,https://i.scdn.co/image/ab67616d0000b273e8b923caee478adf4a5b56de,1,9,205752,https://p.scdn.co/mp3-preview/38b5bc93b1bdb34920dbc4badab2338e1e29ecb0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,US56V0507709,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.467,0.848,9.0,-3.063,0.0,0.0716,0.0617,0.0,0.29,0.674,170.036,4.0,,Fueled By Ramen/ADA,"C © 2006 Fueled By Ramen LLC. Manufactured & Marketed by Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2006 Fueled By Ramen LLC. Manufactured & Marketed by Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",3041 +3042,spotify:track:6OufwUcCqo81guU2jAlDVP,Love Tonight (Edit),spotify:artist:2TcGJdSOiOvITBzhvfX8XB,Shouse,spotify:album:5KXv2MHeoLSqZ96jRuFF9H,Love Tonight,spotify:artist:2TcGJdSOiOvITBzhvfX8XB,Shouse,2017-12-14,https://i.scdn.co/image/ab67616d0000b27381376e47003d45f6513b5657,1,2,241970,https://p.scdn.co/mp3-preview/7d9ec9cde591eb2ac749710539a3a49d9f4ed30e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USQY51798087,spotify:user:bradnumber1,2021-08-08T09:26:31Z,aussietronica,0.727,0.681,5.0,-7.114,0.0,0.0265,0.00214,0.000307,0.0861,0.448,123.028,4.0,,Hell Beach,"C © 2017 Hell Beach, P ℗ 2017 Hell Beach",3042 +3043,spotify:track:6q4aoWgTQ8td2AvqQXuFqm,Take A Picture,spotify:artist:01WjpKiWVNurV5hjIadB8C,Filter,spotify:album:0PtuV98eVpJkCORoCH2uCu,Title Of Record (Expanded Edition),spotify:artist:01WjpKiWVNurV5hjIadB8C,Filter,1999-08-24,https://i.scdn.co/image/ab67616d0000b2730d0d09e240043bd79c352bda,1,6,363800,https://p.scdn.co/mp3-preview/e12b8ad5b7c03a45537aa01f6ae8960a390b69c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRE19900788,spotify:user:bradnumber1,2021-11-11T04:15:22Z,"alternative metal,alternative rock,grunge,industrial metal,nu metal,post-grunge",0.541,0.776,2.0,-8.042,1.0,0.0298,0.00147,0.000221,0.178,0.282,98.986,4.0,,Craft Recordings,"C © 1999 Craft Recordings., Distributed by Concord., P ℗ 1999 Craft Recordings., Distributed by Concord.",3043 +3044,spotify:track:4Kaxx66gshAgVCPyRzLfFo,Impossible,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:2USigX9DhGuAini71XZEEK,Stripped,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2002-07-19,https://i.scdn.co/image/ab67616d0000b2737cd872c7701c4737b2f81d87,1,9,254493,https://p.scdn.co/mp3-preview/e0f07a5ccc970ab19ada806506e70724bae2bbcb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USRC10201080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.658,0.438,2.0,-7.089,0.0,0.0645,0.356,2.61e-05,0.329,0.151,121.888,3.0,,RCA Records Label,P (P) 2002 Sony Music Entertainment,3044 +3045,spotify:track:2FDhEVWB2dJmfkKdnlgYfH,One Four Five,spotify:artist:023YMawCG3OvACmRjWxLWC,The Cat Empire,spotify:album:7H3Bgvb3hs4vvLwccHDRlr,The Cat Empire,spotify:artist:023YMawCG3OvACmRjWxLWC,The Cat Empire,2003-10-24,https://i.scdn.co/image/ab67616d0000b27353f8172e38162a452d6cdaee,1,6,204773,https://p.scdn.co/mp3-preview/cdb5c3cdf46fefb5db891ecbc9a0cf102afeeb4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AUTW00300006,spotify:user:bradnumber1,2023-06-23T04:40:43Z,"australian reggae fusion,australian ska,ska jazz",0.486,0.792,2.0,-6.676,1.0,0.0831,0.463,2.15e-06,0.111,0.752,149.377,4.0,,Two Shoes,"C 2003 Two Shoes, P 2003 Two Shoes",3045 +3046,spotify:track:25ay7ksy4YOD3FNOah0yoE,Welcome To New York,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:3GT1SFfrltwpfWM2FB7zV4,1989 (Deluxe),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-10-27,https://i.scdn.co/image/ab67616d0000b273eb4ef60f82fdc4b489ac1950,1,1,212600,https://p.scdn.co/mp3-preview/f927206d4e8762d729d9b7fafe674abd7431f5cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1431299,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.789,0.634,7.0,-4.762,1.0,0.0323,0.0348,1.64e-06,0.302,0.658,116.992,4.0,,Universal Music Group,"C © 2014 Big Machine Records, LLC, P ℗ 2014 Big Machine Records, LLC",3046 +3047,spotify:track:19gotedXtqeE8dWju6WURW,Good Luck Charm,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:5Iec810oL6PorbyBVjLnmD,"Elvis' Golden Records, Vol. 3",spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1963-08-11,https://i.scdn.co/image/ab67616d0000b273a22455d1ff7031adeaa90a40,1,10,145080,https://p.scdn.co/mp3-preview/e099c20088da8fa45ef818af1f5d680dd84b6df7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC10200343,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.618,0.467,2.0,-13.166,1.0,0.0336,0.56,1.05e-05,0.5,0.904,121.646,4.0,,RCA/Legacy,P (P) 1963 Sony Music Entertainment,3047 +3048,spotify:track:5y858ybcFFdMdFHd1MMIW2,I Like It,"spotify:artist:4kYSro6naA4h99UJvo89HB, spotify:artist:4q3ewBCX7sLwd24euuV69X, spotify:artist:1vyhD5VmyZ7KMfW5gqLgo5","Cardi B, Bad Bunny, J Balvin",spotify:album:0xQ7Wbo8CnJKGj95blnYoO,Uplifting Music,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2019-11-22,https://i.scdn.co/image/ab67616d0000b2733bc2f67f73d071b9f584b0b3,1,6,253390,https://p.scdn.co/mp3-preview/55b5f1d9ca062e3c0c7e25a184c1f1ca5189c50a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21801442,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,rap,reggaeton,trap latino,urbano latino,reggaeton,reggaeton colombiano,trap latino,urbano latino",0.814,0.721,5.0,-4.026,0.0,0.137,0.0981,0.0,0.378,0.643,136.051,4.0,,Rhino,"C © 2019 This Compilation Rhino UK a division of Warner Music UK Ltd, P ℗ 2019 This Compilation Rhino UK a division of Warner Music UK Ltd",3048 +3049,spotify:track:25bQlUokjsyZ91GvXtLrUb,Praise You,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,spotify:album:0DrjqsUi40QrLUWkrDHTw6,Why Try Harder (The Greatest Hits),spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,2006-06-18,https://i.scdn.co/image/ab67616d0000b2730c0ec9441bede7e7f2f96ea4,1,2,227973,https://p.scdn.co/mp3-preview/c0a0d68a0cbe569814c1a02ea0eb0cc5f130c9a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBMQ0600005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica",0.621,0.885,1.0,-6.715,1.0,0.0467,0.0405,0.363,0.282,0.558,109.719,4.0,,Skint Records,"C Skint Records - 2006, P Skint Records - 2006",3049 +3050,spotify:track:285HeuLxsngjFn4GGegGNm,"Hey Mama (feat. Nicki Minaj, Bebe Rexha & Afrojack)","spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:4D75GcNG95ebPtNvoNVXhz, spotify:artist:64M6ah0SkkRsnPGtGiRAbb, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","David Guetta, AFROJACK, Bebe Rexha, Nicki Minaj",spotify:album:77UW17CZFyCaRLHdHeofZu,Listen,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2014-11-10,https://i.scdn.co/image/ab67616d0000b2733862d62a50dc6b928651bdeb,1,10,192560,https://p.scdn.co/mp3-preview/bfdf41e3d62f4be205ae8438a6bf6048909dae9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GB28K1400058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,big room,dance pop,dutch house,edm,electro house,pop dance,dance pop,pop,hip pop,pop,queens hip hop,rap",0.596,0.73,9.0,-4.091,1.0,0.151,0.24,0.0,0.325,0.525,85.979,4.0,,Parlophone (France),"C © 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company, P ℗ 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company",3050 +3051,spotify:track:71qNRlNDnPahvATE7Zl4Nw,"Never Seen Anything ""Quite Like You""",spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:6yd9yk8nFcHalXzy7mgaDx,No Sound Without Silence,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2014-09-15,https://i.scdn.co/image/ab67616d0000b27359d2079e141301ab89b6cbc5,1,8,202586,https://p.scdn.co/mp3-preview/3afabb39b51a913b188ce4259f6ffbd1ce07cbdc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBARL1400981,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.317,0.464,6.0,-7.37,1.0,0.0274,0.429,1.27e-06,0.103,0.414,159.906,3.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,3051 +3052,spotify:track:7tmRpTD2fwL3z7W9NGGPpz,Never Let Me Go,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,spotify:album:3gmm8Sd93oyjTWug7Ci0Fd,Ceremonials,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2011,https://i.scdn.co/image/ab67616d0000b273acee936d01b3fee1b9a8d150,1,4,271377,https://p.scdn.co/mp3-preview/1d815b22a6ae38f954958a1c115e2048dcd2872d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71107580,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop",0.459,0.728,9.0,-3.226,1.0,0.0365,0.344,5.02e-06,0.38,0.26,145.192,4.0,,Universal Music Group,"C © 2012 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2012 Universal Island Records, a division of Universal Music Operations Limited",3052 +3053,spotify:track:1rgnBhdG2JDFTbYkYRZAku,Dance Monkey,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,spotify:album:31IDBea3eEs57a0joX6TjN,Dance Monkey,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,2019-05-10,https://i.scdn.co/image/ab67616d0000b27338802659d156935ada63c9e3,1,1,209754,https://p.scdn.co/mp3-preview/67a1ddabbcb69ce2b9d968e68d23aaaebd0adc68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,QZES71982312,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.826,0.593,6.0,-6.401,0.0,0.0976,0.688,0.000161,0.17,0.541,98.083,4.0,,Sony Music Entertainment,P (P) 2019 Bad Batch Records,3053 +3054,spotify:track:24e9ehPkZ6FtkMOdgxSGPQ,You Drive Me Crazy - (Single Version) [Remastered],spotify:artist:0wi4yTYlGtEnbGo4ltZTib,Shakin' Stevens,spotify:album:3fi0yPXUa72eJAOQRN8W9R,Shakin' Stevens - The Collection,spotify:artist:0wi4yTYlGtEnbGo4ltZTib,Shakin' Stevens,2005-04-11,https://i.scdn.co/image/ab67616d0000b27311edcfff47b27a1a0a8e3c92,1,11,172666,https://p.scdn.co/mp3-preview/b2ab49fce5a8caef1ad374efa09f8dd8f8487ec7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBM0400164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,rockabilly",0.754,0.927,5.0,-2.62,1.0,0.0313,0.167,2.36e-06,0.283,0.974,119.49,4.0,,Epic,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (UK) LIMITED,3054 +3055,spotify:track:2iIg5LCp81QGEpnAFDT8V4,What a Girl Wants,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:0VtMlmn7rAcWwxS3QOJo2h,Christina Aguilera,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,1999-07-15,https://i.scdn.co/image/ab67616d0000b273b05da72c2d1ba1ef79cf5931,1,2,215866,https://p.scdn.co/mp3-preview/e53424c96b8572f0680c82f90994e99ef4bc40b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC19901169,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.755,0.827,0.0,-6.803,1.0,0.114,0.0671,0.0,0.329,0.797,142.122,4.0,,RCA Records Label,P (P) 2000 BMG Entertainment,3055 +3056,spotify:track:3o9kpgkIcffx0iSwxhuNI2,Numb Little Bug,spotify:artist:7o2ZQYM7nTsaVdkXY38UAA,Em Beihold,spotify:album:20zaiRxxUfDqdCKsdSo7HM,Numb Little Bug,spotify:artist:7o2ZQYM7nTsaVdkXY38UAA,Em Beihold,2022-01-28,https://i.scdn.co/image/ab67616d0000b273dc0353a5801934f9a4bac01d,1,1,169237,https://p.scdn.co/mp3-preview/b9233d42f5ed9aa12756ea783f03eead8f9f1a3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USUM72200626,spotify:user:bradnumber1,2022-09-22T00:36:11Z,"alt z,gen z singer-songwriter",0.742,0.527,8.0,-6.892,0.0,0.0769,0.327,0.0,0.25,0.638,84.974,4.0,,"Republic Records/Moon Projects, LLC.","C © 2022 Republic Records, a division of UMG Recordings, Inc. (Moon Projects, LLC), P ℗ 2022 Republic Records, a division of UMG Recordings, Inc. (Moon Projects, LLC)",3056 +3057,spotify:track:3uvvnOfRmDTvFkhrFyZMNo,Jesamine,spotify:artist:0ZuFWCnwkLTK7Yf8k7VkkZ,The Casuals,spotify:album:1nyWWIohk09piUWa6spbML,Jesamine - I've Got Something Too,spotify:artist:0ZuFWCnwkLTK7Yf8k7VkkZ,The Casuals,1968-01-01,https://i.scdn.co/image/ab67616d0000b273d601e2eefbad22ca0b614c06,1,1,221306,https://p.scdn.co/mp3-preview/e19fdf2071b11b95b55dfca9840734a4c75c54ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,ITN731691400,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,merseybeat",0.253,0.368,1.0,-16.336,1.0,0.0298,0.539,0.0,0.32,0.758,174.071,4.0,,Saar Srl,"C 1968 Saar Srl under license to Pirames International Srl, P 1968 Saar Srl under license to Pirames International Srl",3057 +3058,spotify:track:2ytFl202shjIhu7WJ1QWTH,Ships In The Night,spotify:artist:3PNGsgUFOuNvwagyBCo2Rg,Vicki Lawrence,spotify:album:15jYRvIHLYZwEo0GoPTEa1,Ships In The Night,spotify:artist:3PNGsgUFOuNvwagyBCo2Rg,Vicki Lawrence,1974-01-01,https://i.scdn.co/image/ab67616d0000b2732f62dd465d5859b195ab60f9,1,6,185413,https://p.scdn.co/mp3-preview/fe3226f9fa9f9916fb4f295170eaf729cd5c6501?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US3M51432606,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.507,0.375,10.0,-11.969,1.0,0.0374,0.804,0.0,0.122,0.555,153.161,3.0,,Varese Sarabande,"C © 2014 Varese Sarabande Records, P ℗ 1974 Garrett Music Enterprises, Under Exclusive License To Varese Sarabande Records LLC, Under Exclusive License To Varese Sarabande Records LLC",3058 +3059,spotify:track:596XLiW6tohIgkcTMf4M6a,Never Ever,spotify:artist:5TDVKqW9uhqGjwwwKGuma4,All Saints,spotify:album:57aSjfZx8tlZEY2qVAwG5I,All Hits (Special Edition),spotify:artist:5TDVKqW9uhqGjwwwKGuma4,All Saints,2001-10-05,https://i.scdn.co/image/ab67616d0000b2739952019002dab9dc115ec521,1,2,387573,https://p.scdn.co/mp3-preview/9ef1a53bf9843fe225b764272ec935300b3387b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAAP9700206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group,new wave pop",0.739,0.541,1.0,-5.485,1.0,0.0311,0.559,0.0,0.0492,0.31,134.196,4.0,,Rhino,"C This Compilation, © 2001 Warner Music UK Limited, P This Compilation, ℗ 2001 Warner Music UK Limited",3059 +3060,spotify:track:4hrAKlxfblnG7llBEEX7TR,Run,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,spotify:album:7t1veDv7FWHYXskQEoU7dq,Spirit,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,2007,https://i.scdn.co/image/ab67616d0000b273e6ad6ae83f74c9e3eb3132ab,1,17,314720,https://p.scdn.co/mp3-preview/5ce044b15588259283f605bf9a5e649c033d9f68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBHMU0800023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,dance pop,pop,talent show",0.285,0.462,5.0,-6.166,0.0,0.0291,0.428,5.61e-06,0.122,0.0923,142.365,4.0,,Syco Music UK,"P Track 14 (P) 2006; Tracks 1, 2, 4-13 (P) 2007; Tracks 3, 15-17 (P) 2008 Simco Limited exclusively licensed to Sony BMG Music Entertainment (UK) Limited",3060 +3061,spotify:track:1iQDltZqI7BXnHrFy4Qo1k,Trampoline (with ZAYN),"spotify:artist:3KwmxIhSe9UTSEF37kwngR, spotify:artist:5ZsFI1h6hIdQRw2ti0hz81","SHAED, ZAYN",spotify:album:5QqqBZmdQmY1MvlnpBkagB,Trampoline (with ZAYN),"spotify:artist:3KwmxIhSe9UTSEF37kwngR, spotify:artist:5ZsFI1h6hIdQRw2ti0hz81","SHAED, ZAYN",2019-09-26,https://i.scdn.co/image/ab67616d0000b273376ab4e92e92e23191cb4d32,1,1,184280,https://p.scdn.co/mp3-preview/830c8fa6ebce58edf8d9847fe3725cc7b54ac245?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,QZ47A1900210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,pop,uk pop",0.619,0.459,7.0,-5.782,0.0,0.0334,0.56,0.0,0.137,0.498,126.803,4.0,,Photo Finish Records,"C © 2019 Photo Finish Records, P ℗ 2019 Photo Finish Records",3061 +3062,spotify:track:4LDjgf7egcQGxeGRjEfrSk,My Coo Ca Choo,spotify:artist:2yoCXbhsq5CqLCnzDR7a7l,Alvin Stardust,spotify:album:7vdGNd7La8onpnF4k6EUR9,The Untouchable,spotify:artist:2yoCXbhsq5CqLCnzDR7a7l,Alvin Stardust,1974,https://i.scdn.co/image/ab67616d0000b2735a5871ea6abfe8f4755be55e,1,1,167000,https://p.scdn.co/mp3-preview/47167ba5c3125c8c041052d6088adb3aa533e675?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAHS0200284,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.574,0.968,5.0,-4.459,0.0,0.189,0.0925,1.25e-05,0.119,0.546,132.027,4.0,,WM UK,"C © 1974 Magnet Records Ltd., P ℗ 2011 Rhino UK, a division of Warner Music UK Ltd",3062 +3063,spotify:track:3fd5jcZKAzoiivM4ZDwhyU,Two of Us,spotify:artist:57WHJIHrjOE3iAxpihhMnp,Louis Tomlinson,spotify:album:5B7z8P9fzdqaRcCvMjsxjt,Two of Us,spotify:artist:57WHJIHrjOE3iAxpihhMnp,Louis Tomlinson,2019-03-07,https://i.scdn.co/image/ab67616d0000b273abd7b4588e4d1649689f500e,1,1,217855,https://p.scdn.co/mp3-preview/15b59e39a94c1f449ec1ddcfa25ece3d2651a26d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBHMU1900014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.614,0.605,0.0,-5.411,1.0,0.0321,0.226,0.0,0.124,0.329,127.107,4.0,,Syco Music,P (P) 2019 78 PRODUCTIONS LIMITED under exclusive licence to Simco Limited / Sony Music Entertainment Limited,3063 +3064,spotify:track:0GWS6wkQrqZd0BAhq28haq,Changing,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:5GkyQHN2jO9L05VV0gBnGH,The Search for Everything - Wave One,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2017-01-20,https://i.scdn.co/image/ab67616d0000b273e837bfc86385e5386bfc315d,1,2,213933,https://p.scdn.co/mp3-preview/70db642cf802966e083cca91260e15793c3b3784?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USSM11610640,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.349,0.338,0.0,-7.793,1.0,0.0292,0.62,0.00799,0.128,0.391,182.842,3.0,,Columbia,"P (P) 2017 Columbia Records, a Division of Sony Music Entertainment",3064 +3065,spotify:track:3ySeAH0zT6uTssFVmHZM1T,I Never Loved You Anyway,spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,spotify:album:1z8ikMQ0VmMJDPmeiKY3o5,Talk on Corners,spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,1998-10-17,https://i.scdn.co/image/ab67616d0000b2736d00cb42d7c7dec2487157ec,1,5,233560,https://p.scdn.co/mp3-preview/b58bd50abe4cf95c34e485e32e3a907b02202395?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USAT29800220,spotify:user:bradnumber1,2022-01-13T01:21:44Z,"celtic rock,europop,pop rock",0.551,0.67,7.0,-6.588,1.0,0.0303,0.0813,0.0,0.711,0.38,96.938,4.0,,Atlantic Records,"C © 1998 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",3065 +3066,spotify:track:7ceIquYtiTYlgSSm7PqUf9,Already Gone,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:7KQy2pkGubHDzaTnPmX1oo,All I Ever Wanted,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2009-03-09,https://i.scdn.co/image/ab67616d0000b273ab05d85e404240f09429bdc1,1,6,281560,https://p.scdn.co/mp3-preview/250783e3dfeaf31e9527eff611af97055c57edd6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBCTA0900011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.209,0.872,9.0,-2.996,1.0,0.0757,0.217,0.0,0.0768,0.294,78.139,4.0,,RCA Records Label,P (P) 2009 19 Recordings Limited,3066 +3067,spotify:track:4T5hkQLtHxJBLzZnCq5os3,Sometimes When We Touch,spotify:artist:59msSsiTOzFXBhRZZdwNVz,Newton,spotify:album:0kQ1Aell6YQXRLBL0mwNp6,Sometimes When We Touch,spotify:artist:59msSsiTOzFXBhRZZdwNVz,Newton,1997,https://i.scdn.co/image/ab67616d0000b273be626951ac328f8186d2b684,1,1,248080,https://p.scdn.co/mp3-preview/36486c40aff517cac108373ab5efa00988a402de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBFH9600037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.661,0.974,2.0,-7.628,1.0,0.068,0.00319,1.5e-06,0.348,0.514,133.937,4.0,,Dome,"C 1997 Dome Records Ltd, P 1997 Dome Records Ltd",3067 +3068,spotify:track:5ajEdjV7VfH15GqSL8tSus,WILD,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,spotify:album:1xqDZlDNHHhYRW9AF7gwnP,WILD,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2015-09-04,https://i.scdn.co/image/ab67616d0000b2736e16c5b3ab82b3e3ae4539c3,1,1,227871,https://p.scdn.co/mp3-preview/d2f8b98eaf04da1648ee6b7da91533663bd5d1c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71500831,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,viral pop",0.58,0.725,3.0,-5.278,1.0,0.053,0.0261,0.0,0.307,0.368,90.054,4.0,,Universal Music Group,"C © 2015 Universal Music Australia Pty Ltd., P ℗ 2015 Universal Music Australia Pty Ltd.",3068 +3069,spotify:track:1A2PWRltFrX8iB8IP3CUgo,St. Elmos Fire (Man in Motion),spotify:artist:3Z1tibPKhUYWCno0IYicCN,John Parr,spotify:album:70P9doc1EAqyb36gRmaPcU,St. Elmo's Fire - Music From The Original Motion Picture Soundtrack,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1985-01-01,https://i.scdn.co/image/ab67616d0000b273c500e7ab2ab870a9fed56e8f,1,1,251800,https://p.scdn.co/mp3-preview/2e2d59d430aede5a672a82a0c884a2ca3d9f3203?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USAT20105874,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.612,0.6,9.0,-10.945,1.0,0.0327,0.15,3.04e-06,0.222,0.471,111.203,4.0,,Atlantic Records,"C © 1985 Columbia Pictures Industries, Inc., P ℗ 1985 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",3069 +3070,spotify:track:0vtRAIhztpcw1mEqX1S2RL,Live It Up,"spotify:artist:3vn7rk7VNMfDhuZNB9sDYP, spotify:artist:0nqejKHUiWWMRltB0Cx5xq","360, PEZ",spotify:album:0X9KEPk1DdCCiIqezT8zF3,UTOPIA (Deluxe),spotify:artist:3vn7rk7VNMfDhuZNB9sDYP,360,2014-01-01,https://i.scdn.co/image/ab67616d0000b2738a9d577104a6f6b7ba2c0d4c,1,3,228029,https://p.scdn.co/mp3-preview/716a633859fc1be7b342776de7f2432127f8c3da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUCGD1400004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian trap,australian underground hip hop",0.682,0.7,5.0,-5.541,0.0,0.0531,0.101,0.0,0.104,0.152,111.003,4.0,,Forthwrite,"C © 2014 Forthwrite Records Pty Ltd, P ℗ 2014 Forthwrite Records Pty Ltd, Except track 17 ℗ 2013 Forthwrite Records Pty Ltd.",3070 +3071,spotify:track:3KkXRkHbMCARz0aVfEt68P,Sunflower - Spider-Man: Into the Spider-Verse,"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:1zNqQNIdeOUZHb8zbZRFMX","Post Malone, Swae Lee",spotify:album:35s58BRTGAEWztPo9WqCIs,Spider-Man: Into the Spider-Verse (Soundtrack From & Inspired by the Motion Picture),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-12-14,https://i.scdn.co/image/ab67616d0000b273e2e352d89826aef6dbd5ff8f,1,2,158040,https://p.scdn.co/mp3-preview/801a664529525b366fa6fb8f6cacd5dd83928272?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USUM71814888,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,melodic rap,rap,trap",0.76,0.478,2.0,-5.574,1.0,0.0467,0.552,0.0,0.0703,0.913,89.908,4.0,,Universal Records,"C © 2018 Republic Records, a division of UMG Recordings, Inc., P This Compilation ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",3071 +3072,spotify:track:0WILwgVyv5RU9oOUpw3y5P,Remind Me,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,spotify:album:0bOdYgvUBlvn2IVcHOmLTx,All I Know,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,2015-11-13,https://i.scdn.co/image/ab67616d0000b273bcf48434d6fce36b74228c17,1,6,186264,https://p.scdn.co/mp3-preview/5a587699e35b33e2eae6c8186c3cc7180e9a8be0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,QMCE31500428,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.605,0.645,7.0,-3.564,1.0,0.0397,0.236,0.0,0.0917,0.15,76.956,3.0,,300 Entertainment,"C © 2015 300 Entertainment for the United States and 300 Entertainment under exclusive license to WEA International, Inc. for the world excluding the United States., P ℗ 2015 300 Entertainment for the United States and 300 Entertainment under exclusive license to WEA International, Inc. for the world excluding the United States.",3072 +3073,spotify:track:7Dyq1bhhjknLKEGg4k5NLr,Hold It Against Me,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:0oFBaXLFsUVa2gEmJf4FcJ,Femme Fatale (Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2011-03-28,https://i.scdn.co/image/ab67616d0000b273fda0f2adec40250bea55101b,1,2,228826,https://p.scdn.co/mp3-preview/4cb13a4361dce12610e30ba96772165e834428c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USJI11000320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.648,0.722,0.0,-4.813,0.0,0.0427,0.0103,0.0,0.24,0.389,132.973,4.0,,Jive,"P (P) 2011 JIVE Records, a unit of Sony Music Entertainment",3073 +3074,spotify:track:0dEQaNYfp5G7Sflek2Qnde,Don't Tell Me,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:7851Vsjv3apS52sXUik6iF,Under My Skin,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2004,https://i.scdn.co/image/ab67616d0000b2739c291af4bf0c3071847f2b80,1,3,202013,https://p.scdn.co/mp3-preview/96afeadcc71aedf67e2eb81033d485138b685b25?cid=9950ac751e34487dbbe027c4fd7f8e99,True,58,USAR10400119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,candy pop,dance pop,pop",0.523,0.795,4.0,-2.92,1.0,0.0386,0.00462,0.0,0.358,0.484,144.106,4.0,,Arista,P (P) 2004 Arista Records LLC,3074 +3075,spotify:track:5qTvkDrSfvwDv6RBjjcfQr,Get Busy,spotify:artist:3Isy6kedDrgPYoTS1dazA9,Sean Paul,spotify:album:3nAwSh2fcp3M8voQKZS2as,Dutty Rock,spotify:artist:3Isy6kedDrgPYoTS1dazA9,Sean Paul,2002-11-12,https://i.scdn.co/image/ab67616d0000b273df82ce803b2a84ce68e66e6d,1,5,211666,https://p.scdn.co/mp3-preview/3f23870df8d59c6733d19a72dbbbd5261300c0ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USAT20202575,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dancehall,pop,pop rap",0.735,0.824,10.0,-4.143,0.0,0.036,0.615,0.0,0.158,0.726,100.202,4.0,,Atlantic Records,"C © 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2003 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States except track 6 (P) 2003 Sony Music Entertainment Inc.",3075 +3076,spotify:track:4eH8TpawYJMjcDvC0LDHYv,You've Got The Love,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,spotify:album:3cVNp1AXxdzoKIs9r6keWU,Between Two Lungs,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2010-01-01,https://i.scdn.co/image/ab67616d0000b2737f1d6472eac2fc9dc9617db9,1,13,168666,https://p.scdn.co/mp3-preview/723c4ccb2319fb8b997c973a37812b586c120f87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70900237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop",0.571,0.698,6.0,-4.747,1.0,0.0342,0.00593,0.0,0.0992,0.423,109.867,4.0,,Universal Music Group,"C © 2010 Universal Island Records Ltd. A Universal Music Company., P ℗ 2010 Universal Island Records Ltd. A Universal Music Company.",3076 +3077,spotify:track:6Vc5wAMmXdKIAM7WUoEb7N,Say Something,"spotify:artist:5xKp3UyavIBUsGy3DQdXeF, spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS","A Great Big World, Christina Aguilera",spotify:album:1yOcLa4euMk9sV7rRJ89Dl,Is There Anybody Out There?,spotify:artist:5xKp3UyavIBUsGy3DQdXeF,A Great Big World,2014-01-20,https://i.scdn.co/image/ab67616d0000b273554488d0c51967b1654d8ce5,1,13,229400,https://p.scdn.co/mp3-preview/0178f39b1dd08aa1111138fa775c7b8826cdee7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM11306713,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop rock,viral pop,dance pop,pop",0.407,0.147,2.0,-8.822,1.0,0.0355,0.857,2.89e-06,0.0913,0.0765,141.284,3.0,,Epic,"P (P) 2013, 2014 Epic Records, a division of Sony Music Entertainment",3077 +3078,spotify:track:6teYMmQzXGXZr23tmECniQ,If I Had Words,"spotify:artist:3YomJIlhK4fGGiX1aTuU4h, spotify:artist:7pddMBUlUJX68vgjTzfKl1","Scott Fitzgerald, Yvonne Keeley",spotify:album:2IdiX1blimLSTYxa6L1B4T,If I Had Words: 70s Hit Wonders,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2020-06-08,https://i.scdn.co/image/ab67616d0000b2735351ead719acd40be8af1d06,1,1,228960,https://p.scdn.co/mp3-preview/9ed9882291ed93aa25948d9d103e63679b7b35fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAYE7800135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.524,0.526,0.0,-9.788,1.0,0.0299,0.189,2.17e-06,0.288,0.78,148.053,4.0,,Warner Music Group - X5 Music Group,"C 2020 Warner Music Group - X5 Music Group, P 2020 Warner Music Group - X5 Music Group",3078 +3079,spotify:track:1XGmzt0PVuFgQYYnV2It7A,Payphone,"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:137W8MRPWKqSmrBGDBFSop","Maroon 5, Wiz Khalifa",spotify:album:6ijGiBcBfUwkoyHn5VUHU2,Overexposed Track By Track,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2012-01-01,https://i.scdn.co/image/ab67616d0000b273fc8633e22a7dba6aab817bff,1,4,231173,https://p.scdn.co/mp3-preview/3fa424cf3b47431d48b7a12368ce0eeb134fc03f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,82,USUM71203347,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap",0.743,0.752,4.0,-4.813,1.0,0.0414,0.0188,0.0,0.287,0.545,110.015,4.0,,Interscope Records*,"C © 2012 A&M/Octone Records, P ℗ 2012 Interscope Records",3079 +3080,spotify:track:4QnC1bIaMSfDQvF4XDhV5M,Boyfriend,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:3rA5CgccCbmCnJEzwGnDea,Rare - Deluxe,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2020-04-09,https://i.scdn.co/image/ab67616d0000b2735183fe2502a176f8017da25f,1,1,161188,https://p.scdn.co/mp3-preview/2b72d6514b90dcfa0a530995fa520c09538591e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USUM72002989,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.811,0.512,2.0,-6.381,1.0,0.17,0.218,0.0262,0.0767,0.346,92.047,4.0,,Interscope Records,"C © 2020 Interscope Records, P ℗ 2020 Interscope Records",3080 +3081,spotify:track:6MLA3OD1vBqdZPPJqKls8Q,Fake,"spotify:artist:5JZ7CnR6gTvEMKX4g70Amv, spotify:artist:4Uc8Dsxct0oMqx0P6i60ea","Lauv, Conan Gray",spotify:album:1NN7orOwcxQIwWrPHYtWRB,Fake,"spotify:artist:5JZ7CnR6gTvEMKX4g70Amv, spotify:artist:4Uc8Dsxct0oMqx0P6i60ea","Lauv, Conan Gray",2020-10-12,https://i.scdn.co/image/ab67616d0000b273d6267c4aa40b93d026bea519,1,1,146375,https://p.scdn.co/mp3-preview/47550c49a3ef11ddc44b11247383080139ad4a55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKPL2025499,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,bedroom pop,pop,pov: indie",0.709,0.66,4.0,-5.387,1.0,0.0753,0.133,0.0,0.131,0.476,82.972,4.0,,Lauv,"C 2020 Lauv under exclusive license to AWAL Recordings America, Inc., P 2020 Lauv under exclusive license to AWAL Recordings America, Inc.",3081 +3082,spotify:track:4h7bZNHnYP2umOomPbnfxG,Epic,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,spotify:album:23sbUvPnTPN9UUK3Woi8b1,The Real Thing (Deluxe Edition),spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,1989-06-20,https://i.scdn.co/image/ab67616d0000b2733b0030370756af01d33cf74b,1,2,293653,https://p.scdn.co/mp3-preview/5a7418b48e2ce653e9f2fd5c68b74973d1ff18bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBANC8900003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,funk metal,funk rock,hard rock,nu metal,post-grunge,rap metal,rock",0.358,0.893,4.0,-7.486,0.0,0.12,0.0222,0.0524,0.126,0.262,174.238,4.0,,WM UK,"C © 2015 Slash Records, a Warner Music Group Company, P ℗ 2015 Slash Records, a Warner Music Group Company",3082 +3083,spotify:track:1aJqvwsyVAPi4BpMpO40bT,Ding Dong! the Witch Is Dead,spotify:artist:5TtUi0QdWZ9McITIOceTfp,The Fifth Estate,spotify:album:7b2JPs1OlgFOkSWhWnymYA,The Best of the Fifth Estate,spotify:artist:5TtUi0QdWZ9McITIOceTfp,The Fifth Estate,2016-02-01,https://i.scdn.co/image/ab67616d0000b2736581898a105e02e1b10d3fbd,1,9,122920,https://p.scdn.co/mp3-preview/71d3522a5111447fa93236e6cc243d4776ddf727?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,uscgh1638048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock",0.633,0.717,7.0,-6.367,1.0,0.0306,0.458,0.0,0.059,0.937,115.205,4.0,,Roxon Records LLC,"C 2016 The Fifth Estate, P 2016 The Fifth Estate",3083 +3084,spotify:track:4Cun6BDOCtdAiWfAoTP8BV,One Sweet Day,"spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:6O74knDqdv3XaWtkII7Xjp","Mariah Carey, Boyz II Men",spotify:album:6kRdK7cPgLqNfSoI7AMlyj,#1 to Infinity,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2015-05-15,https://i.scdn.co/image/ab67616d0000b2739ad666bef28b02eff5476ddd,1,10,281253,https://p.scdn.co/mp3-preview/2b973df038cbb2b98053569e5cb640971675b9c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USSM19501117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.567,0.527,1.0,-7.898,1.0,0.0299,0.383,0.0,0.0856,0.27,128.264,4.0,,Columbia/Legacy,"P (P) 1990, 1991, 1992, 1993, 1995, 1997, 1999 Columbia Records, a division of Sony Music Entertainment, 2005, 2008 The Island Def Jam Music Group and Mariah Carey, 2015 Epic Records, a division of Sony Music Entertainment",3084 +3085,spotify:track:2DDGvDQkTCEIo9f7f1K1mU,Pride,spotify:artist:0lmRxVVpx9hSmeQv9jGYYR,Ray Brown And The Whispers,spotify:album:7eZzdwhXvWOmGGe3C2SpPF,Miles Of Hits,spotify:artist:0lmRxVVpx9hSmeQv9jGYYR,Ray Brown And The Whispers,1988,https://i.scdn.co/image/ab67616d0000b27321c645d42f6e5681a523a966,1,2,134573,https://p.scdn.co/mp3-preview/359a32ee85732b5585d4a7367ddc03eab1e43769?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUFE09800569,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.674,0.719,5.0,-11.526,1.0,0.0567,0.727,0.000129,0.0937,0.773,141.007,4.0,,WM Australia,"C © 1988 Festival Records, P ℗ 1988 Festival Records",3085 +3086,spotify:track:7BwwjDFcpn72BrxCCRqs7d,Pump Up The Jam - Edit,"spotify:artist:2Cd98zHVdZeOCisc6Gi2sB, spotify:artist:1pvibpCqTQG4mnbZ7vVSDj","Technotronic, Felly",spotify:album:6nqizbBgkRug5YRnP1YWiO,Best Of,spotify:artist:2Cd98zHVdZeOCisc6Gi2sB,Technotronic,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738be38136da239f2300038b3a,1,1,215040,https://p.scdn.co/mp3-preview/6f7f1a807709276c4e67a7eb4f95b3fa99397217?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BEUM70800466,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house,new beat,synthpop",0.867,0.911,10.0,-7.375,0.0,0.115,0.0239,0.0,0.0491,0.675,124.81,4.0,,Universal Music Group,"C © 2011 ARS Entertainment Belgium (A Division Of Universal Music Belgium), P ℗ 2011 ARS Entertainment Belgium (A Division Of Universal Music Belgium)",3086 +3087,spotify:track:3NfxSdJnVdon1axzloJgba,I Say a Little Prayer,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,spotify:album:55HZ2ectg1mMTEKDqIq3kC,Aretha Now,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,1968-06-14,https://i.scdn.co/image/ab67616d0000b27346c31f64babcbfca6e061b6b,1,2,216773,https://p.scdn.co/mp3-preview/15d06d515184acb84a761784bf46efb2289740e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USAT20801207,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,jazz blues,memphis soul,soul,southern soul,vocal jazz",0.592,0.355,9.0,-14.051,1.0,0.0352,0.478,0.0,0.0585,0.499,133.032,4.0,,Rhino Atlantic,"C © 1968 Atlantic Recording Corp., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group company, P ℗ 1968 Atlantic Recording Corp., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group company",3087 +3088,spotify:track:4qu63nuBpdn0qHUHuObEj1,Leave Before You Love Me (with Jonas Brothers),"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:7gOdHgIoIKoe4i9Tta6qdD","Marshmello, Jonas Brothers",spotify:album:66JuK41D3LpkbX3HCTGcQk,Leave Before You Love Me,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:7gOdHgIoIKoe4i9Tta6qdD","Marshmello, Jonas Brothers",2021-05-21,https://i.scdn.co/image/ab67616d0000b273ae40468931087f78919b86ce,1,1,154983,https://p.scdn.co/mp3-preview/b4295bdbb2bc87e9ec34ae189947ba1fae5a70ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USUG12102313,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,edm,pop,progressive electro house,boy band,pop",0.721,0.738,7.0,-4.77,1.0,0.0403,0.00226,4.41e-06,0.118,0.637,119.976,4.0,,Republic Records,"C © 2021 Joytime Collective, under exclusive license to UMG Recordings, Inc., P ℗ 2021 Joytime Collective, under exclusive license to UMG Recordings, Inc.",3088 +3089,spotify:track:5k9QrzJFDAp5cXVdzAi02f,Never Say Never - Radio Edit,spotify:artist:1ScZSjoYAihNNm9qlhzDnL,Vandalism,spotify:album:2n506u3HKN3CaEDvAjv5Ct,Never Say Never,spotify:artist:1ScZSjoYAihNNm9qlhzDnL,Vandalism,2005-10-24,https://i.scdn.co/image/ab67616d0000b273b65ad4748f43ba857202aeaf,1,1,176640,https://p.scdn.co/mp3-preview/e02605a617a8e689068e7ecc695941e572575af7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUVC00503711,spotify:user:bradnumber1,2023-07-16T09:38:19Z,"australian dance,melbourne bounce",0.72,0.841,9.0,-6.373,1.0,0.034,0.000354,0.0112,0.338,0.767,130.978,4.0,,Vicious,"C 2005 Vicious, a division of Vicious Recordings Pty Ltd, P 2005 Vicious, a division of Vicious Recordings Pty Ltd",3089 +3090,spotify:track:6nsLzJfvp5OLd4mgqUJkpq,Waiting For Love,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:5ttIIMPWCp2bvwsdAPcEXC,Stories,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2015-10-02,https://i.scdn.co/image/ab67616d0000b273d40648f55cadd57796f22455,1,1,230613,https://p.scdn.co/mp3-preview/f21c0795c2421dc2f13be21ce15a2478ba914920?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,CHB701400134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.577,0.741,6.0,-3.83,0.0,0.0501,0.298,0.0,0.142,0.581,128.081,4.0,,Universal Music Group,"C © 2015 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2015 Avicii Music AB, under exclusive license to Universal Music AB",3090 +3091,spotify:track:5U2m76qAMdr3gXI0g6ptlG,Come & Get It,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:4MGDyHLc9ctHHiX4wCn1tV,Stars Dance,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2013-01-01,https://i.scdn.co/image/ab67616d0000b27397650052269e0a345699bf01,1,5,231986,https://p.scdn.co/mp3-preview/d0b51415e23560e16f27885f4c67b585df0ad0c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR11334422,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.349,0.795,7.0,-4.133,0.0,0.0758,0.0102,0.000138,0.0812,0.542,148.985,1.0,,Universal Music,"C © 2013 Hollywood Records, Inc., P ℗ 2013 Hollywood Records, Inc.",3091 +3092,spotify:track:6y0BzvCLpIk7PgZoRD04Qo,I'm Blue (The Gong-Gong-Song),spotify:artist:4vNCmeT4klWtM1xgF0oohu,The Ikettes,spotify:album:5a2y2487PonmAKyDy40qcL,I'm Blue (The Gong-Gong-Song),spotify:artist:4vNCmeT4klWtM1xgF0oohu,The Ikettes,2013-05-02,https://i.scdn.co/image/ab67616d0000b2731acd453d3bf53928b946a983,1,1,129515,https://p.scdn.co/mp3-preview/8ac990f97a1677884135f64cf61e904a9c879b8c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USV351341342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.571,0.525,6.0,-8.164,0.0,0.0289,0.712,0.022,0.0398,0.964,109.87,4.0,,Black Sheep Music,C (C) 2013 Entertain Me Europe LTD,3092 +3093,spotify:track:2lXDbdbBw7lJVCWHkYxdep,Wildest Dreams,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:6w36pmMA5bxECalu5rxQAw,1989,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-10-27,https://i.scdn.co/image/ab67616d0000b27304986cc325ba79fe52314a7b,1,9,220440,https://p.scdn.co/mp3-preview/b276b24d68062f55bc63edefe0c9823aa018c3d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1431379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.553,0.664,8.0,-7.417,1.0,0.0741,0.0709,0.0056,0.106,0.467,140.06,4.0,,Universal Music Group,"C © 2014 Big Machine Records, LLC, P ℗ 2014 Big Machine Records, LLC",3093 +3094,spotify:track:3ebXMykcMXOcLeJ9xZ17XH,Scared to Be Lonely,"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:6M2wZ9GZgrQXHCFfjv46we","Martin Garrix, Dua Lipa",spotify:album:2v9rQe4F8fVSh5v8bAq0jF,Scared to Be Lonely,"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:6M2wZ9GZgrQXHCFfjv46we","Martin Garrix, Dua Lipa",2017-01-27,https://i.scdn.co/image/ab67616d0000b27364f8a309aa3c0a66a31fc374,1,1,220883,https://p.scdn.co/mp3-preview/49e6a27ef1e85764d5758ae6238f003601a53d7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,NLM5S1600025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch edm,edm,pop,pop dance,progressive house,dance pop,pop,uk pop",0.584,0.54,1.0,-7.786,0.0,0.0576,0.0895,0.0,0.261,0.195,137.972,4.0,,Epic Amsterdam,"P (P) 2016 STMPD RCRDS B.V. exclusively licensed to Epic Amsterdam, a divison of Sony Music Entertainment Netherlands B.V.",3094 +3095,spotify:track:7Eo7zJMxFp0CnzkZpWNitq,Paloma Blanca,spotify:artist:2MGJBRRGEj9m6MxJIq7fLn,George Baker Selection,spotify:album:5mEnjOeoDj3kgGr9Pn5Hkc,Paloma Blanca (Remastered),spotify:artist:2MGJBRRGEj9m6MxJIq7fLn,George Baker Selection,1975-01-01,https://i.scdn.co/image/ab67616d0000b27349ba2fa97de6c6f82bf0ac36,1,11,233826,https://p.scdn.co/mp3-preview/d3a0262a48392a58ac9066134392e286b2a836b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,NLA277500079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nederpop,0.776,0.553,0.0,-12.46,1.0,0.0298,0.096,3.12e-05,0.287,0.964,132.524,4.0,,"Universal Music, a division of Universal International Music BV","C © 1975 Universal International Music B.V., P ℗ 2003 Universal International Music B.V.",3095 +3096,spotify:track:5JKQMoGmXwDHCodn5pFVHB,Pink Houses,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:1p4YwrjrP7t6Rfb755yoTQ,Uh-HUH!,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1983,https://i.scdn.co/image/ab67616d0000b273cd949894aa0df080ed50ff9b,1,2,283666,https://p.scdn.co/mp3-preview/2fcb32941eb55af39759ec7e15c8079945277b38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USJM18300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.635,0.795,7.0,-5.313,1.0,0.0269,0.0514,3.1e-06,0.0751,0.628,115.23,4.0,,John Mellencamp 2023 (Island),"C © 2005 Riva Recordings, Inc., under exclusive license to UMG Recordings, Inc. and Primary Wave Music IV, P ℗ 2005 Riva Recordings, Inc., under exclusive license to UMG Recordings, Inc. and Primary Wave Music IV",3096 +3097,spotify:track:1nspp6wYG65GQONsOxmp6p,Rock & Roll I Gave You The Best Years Of My Life,spotify:artist:3uFDkiNjjX0eNG5F9obt1C,Kevin Johnson,spotify:album:1ZKKS5IiWsSjGvZhX7kcWo,Rock & Roll I Gave You The Best Years Of My Life,spotify:artist:3uFDkiNjjX0eNG5F9obt1C,Kevin Johnson,1974,https://i.scdn.co/image/ab67616d0000b273bd8a48ff80f9b4a1bec4bae5,1,1,326608,https://p.scdn.co/mp3-preview/95bcf7751a948597b09bbafc0e045841dc0f777f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DED467300016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,super eurobeat",0.496,0.497,1.0,-12.281,1.0,0.0282,0.376,0.0105,0.097,0.669,95.473,4.0,,Independent,"C 1974 Kevin Johnson, P 1974 Kevin Johnson",3097 +3098,spotify:track:48oT10cTda4pZUlYfqxlPR,Classical Gas,spotify:artist:1XgVoPT2Va5L64LFzskVBW,Mason Williams,spotify:album:6ZQGfFKq01ui5TFhdWLi07,Rhino Hi-Five: Mason Williams,spotify:artist:1XgVoPT2Va5L64LFzskVBW,Mason Williams,2005-10-18,https://i.scdn.co/image/ab67616d0000b27360a1688a1dfd131f2a90f47b,1,1,184066,https://p.scdn.co/mp3-preview/828f5658b91b7e297dce86e4fc29c5b84d87132c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB10100645,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.474,0.722,9.0,-10.603,0.0,0.0348,0.843,0.902,0.103,0.713,155.516,4.0,,Rhino/Warner Records,"C © 2005 Warner Records Inc. Manufactued & Marketed by Rhino Entertainment Co., P ℗ 2005 Warner Records Inc. Manufactued & Marketed by Rhino Entertainment Co.",3098 +3099,spotify:track:7GY87aTXSHy8JpKTwHnUXX,Through the Wire (Radio Edit),"spotify:artist:17KWOYsH4Sm9RhoGoNMFE7, spotify:artist:0gL0Gh2bkEykiguJZg62jy","The Immigrant, Danny Ross",spotify:album:3OszMnyEgjxW0jf0WxNPbL,Through the Wire,spotify:artist:17KWOYsH4Sm9RhoGoNMFE7,The Immigrant,2010-10-02,https://i.scdn.co/image/ab67616d0000b273b8d5c06d7978ec0cacf7100d,1,7,258147,https://p.scdn.co/mp3-preview/68cd9b5d1958f7afefc8de0d4c1d73a0a6e3ac30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUON21012507,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.672,0.792,9.0,-5.778,1.0,0.117,0.00361,8.3e-05,0.258,0.551,120.0,4.0,,Onelove,"C 2010 Onelove Recordings, P 2010 Onelove Recordings",3099 +3100,spotify:track:74EV0g12ihUoOUXMprFpZB,Losing My Religion,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,spotify:album:4v5hSLj6ClyLqj2nnaPbfD,Out Of Time (U.S. Version),spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,1991-01-01,https://i.scdn.co/image/ab67616d0000b273a0dd1fca84303bfd1e318d97,1,2,267733,https://p.scdn.co/mp3-preview/184d86f6c2b531830190011f00c5780fa7a2e1f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB19901521,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,athens indie,permanent wave,rock",0.672,0.841,9.0,-5.992,0.0,0.0285,0.0767,0.0,0.135,0.82,125.437,4.0,,Warner Bros.,"C 1991 R.E.M. / Athens Ltd, P 1991 R.E.M. / Athens Ltd",3100 +3101,spotify:track:7rEypsXZlHM0fCY2yynd7J,Starships,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:5yZTwH7fBz5vKCuvAOUFih,Pink Friday ... Roman Reloaded (Deluxe),spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2012-01-01,https://i.scdn.co/image/ab67616d0000b273a36966206a40cee6e2aaf843,1,10,210626,https://p.scdn.co/mp3-preview/8fdf6d07861bb790eff70d9a919b89b21238357b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USCM51200335,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,queens hip hop,rap",0.75,0.721,11.0,-2.429,0.0,0.0729,0.157,0.0,0.218,0.717,125.021,4.0,,Nicki Minaj/Cash Money,"C © 2012 Cash Money Records Inc., P ℗ 2012 Cash Money Records Inc.",3101 +3102,spotify:track:3HfB5hBU0dmBt8T0iCmH42,Creep,spotify:artist:4Z8W4fKeB5YxbusRsdQVPb,Radiohead,spotify:album:6AZv3m27uyRxi8KyJSfUxL,Pablo Honey (Collector's Edition),spotify:artist:4Z8W4fKeB5YxbusRsdQVPb,Radiohead,1993-04-23,https://i.scdn.co/image/ab67616d0000b27302411992c50bee356ce04d68,1,2,235666,https://p.scdn.co/mp3-preview/713b601d02641a850f2a3e6097aacaff52328d57?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBAYE9200070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art rock,melancholia,oxford indie,permanent wave,rock",0.532,0.344,7.0,-13.057,1.0,0.035,0.00563,0.000473,0.115,0.126,91.834,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",3102 +3103,spotify:track:7g1p3Yq7ypZfhWsbqC5mgl,Bigger Than Us,spotify:artist:6ssXMmc5EOUrauZxirM910,White Lies,spotify:album:26Bm3PBTkGz1eIMzXsfc6g,Ritual,spotify:artist:6ssXMmc5EOUrauZxirM910,White Lies,2011,https://i.scdn.co/image/ab67616d0000b2739bffb5fedb14430fea9766f8,1,3,282973,https://p.scdn.co/mp3-preview/a1c71130835011b035638209898142d0de75cbce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71027262,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,indie rock,modern rock,new rave",0.322,0.911,11.0,-5.269,0.0,0.0495,0.000118,0.00144,0.0834,0.347,142.663,4.0,,Universal Music Group,"C © 2010 Polydor Ltd. (UK), P ℗ 2010 Polydor Ltd. (UK)",3103 +3104,spotify:track:2UTxbNsUMfXGetZH7CUzoc,Love is a Beautiful Song,spotify:artist:5ozYVtPIVpq3ZMM5Z1BrYm,Dave Mills,spotify:album:5xvWhYvc4rAiDB2BgDdTUo,Pop Goes the Saries,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1983,https://i.scdn.co/image/ab67616d0000b273311cfaa5a78f8bd04eae744a,1,8,259800,https://p.scdn.co/mp3-preview/e83afffacfc28936ecfe734133ff58dd79055ecb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ZAC031900418,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.405,0.517,0.0,-4.696,1.0,0.0274,0.68,0.0,0.0918,0.325,102.678,3.0,,Gallo Record Company,"C 1983 The Gallo Record Company Vault, P 1983 The Gallo Record Company Vault",3104 +3105,spotify:track:2s5KpMcHuLmLcZ7jCH7T7p,Marry Me,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:002H8sA77XFikjH4kbPaph,The Heavy Entertainment Show (Deluxe),spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2016-11-04,https://i.scdn.co/image/ab67616d0000b2730f7ea7d45b75a3dabac59140,1,16,233826,https://p.scdn.co/mp3-preview/a297b9bc92f4abe528d928bde4669d32fbbbafa2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBPS61600007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.208,0.49,7.0,-4.851,1.0,0.0362,0.11,0.0,0.086,0.26,164.341,4.0,,Columbia,P (P) 2016 Robert Williams/Farrell Music Limited,3105 +3106,spotify:track:7vJz53OhSGMIxLlwhfwqzu,Leave a Light On,spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,spotify:album:3tWN0uTRc9uSFiRoTTSmAQ,Runaway Horses (Remastered & Expanded Special Edition),spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,1989-10-17,https://i.scdn.co/image/ab67616d0000b273cd8d5d44f976c884fa06740b,1,1,278360,https://p.scdn.co/mp3-preview/662fa4ac1c59b2c93431d896a608b40c2d67c75c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAAA8900043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock",0.549,0.874,2.0,-6.317,1.0,0.0631,0.0317,0.0,0.101,0.498,128.692,4.0,,Edsel,"C (C) 2013 Demon Music Group Ltd., P (P) 1989 Artist Management Services Ltd",3106 +3107,spotify:track:6HZ67VImxqr8aMBEEhblzf,Cars,spotify:artist:5KQMtyPE8DCQNUzoNqlEsE,Gary Numan,spotify:album:6wHjdKs7VVPVcqaHRzwqJt,The Pleasure Principle,spotify:artist:5KQMtyPE8DCQNUzoNqlEsE,Gary Numan,1979,https://i.scdn.co/image/ab67616d0000b27318dd9efbcff047c869f2082d,1,9,238906,https://p.scdn.co/mp3-preview/c9461ad5fcb0f55be246c5b636f4fc0c1c70cc1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAZP9700067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,permanent wave,synthpop",0.546,0.578,2.0,-8.745,1.0,0.0406,0.0114,6.54e-05,0.0692,0.819,128.037,4.0,,Beggars Banquet,"C 1998 Beggars Banquet Records Ltd, P 1979 Beggars Banquet Records Ltd.",3107 +3108,spotify:track:75POD9WZXaGavNVyR0LHt4,These Days,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:1fgfp2op6DHKCrtWiMFiws,Odyssey Number Five,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2000-01-01,https://i.scdn.co/image/ab67616d0000b273ceba92eb0f296101eca62342,1,8,298533,https://p.scdn.co/mp3-preview/54e72acaa9ffada51da08c5f7c717b007027d34e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,AUUM00010054,spotify:user:bradnumber1,2021-12-01T04:22:42Z,"australian alternative rock,australian rock",0.15,0.454,9.0,-7.635,1.0,0.0343,0.0398,0.0186,0.158,0.105,83.746,4.0,,Universal Music Australia Pty. Ltd.,"C © 2000 Grudge Records Australia, A Universal Music Company, P ℗ 2000 Grudge Records Australia, A Universal Music Company",3108 +3109,spotify:track:0rZarhxMQWpdbgqRpunlWK,Can't Rely on You,spotify:artist:4fwuXg6XQHfdlOdmw36OHa,Paloma Faith,spotify:album:3jRG3qOfsSSW3SBdeBiIfC,A Perfect Contradiction (Outsiders' Expanded Edition),spotify:artist:4fwuXg6XQHfdlOdmw36OHa,Paloma Faith,2014-03-10,https://i.scdn.co/image/ab67616d0000b273c4576f635253db511bb43789,1,1,195146,https://p.scdn.co/mp3-preview/46f5709ce45c2eb4f2a1c5f7b7f73ea09bd46ec3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBARL1301426,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,talent show,uk pop",0.844,0.794,1.0,-3.362,1.0,0.0463,0.0943,0.000198,0.0442,0.75,115.016,4.0,,RCA Records Label,P (P) 2014 BBC/(P) 2014 Sony Music Entertainment UK Limited,3109 +3110,spotify:track:5avRRgbMXNwrQ2hJ6fGsLF,See the Sun,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,spotify:album:7HlZFlk0jJq3Bb03AOyMTE,Life For Rent,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,2003,https://i.scdn.co/image/ab67616d0000b273d41b79f27ef8d8df5a191219,1,11,305680,https://p.scdn.co/mp3-preview/1be6aa03562a780a4c48be2fa0418452de449380?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBBXH0300045,spotify:user:bradnumber1,2022-12-21T10:17:09Z,"dance pop,europop,lilith,neo mellow,pop rock",0.527,0.622,7.0,-6.797,1.0,0.0297,0.0621,3.89e-05,0.12,0.335,78.003,4.0,,Sony BMG Music UK,P (P) 2008 Sony BMG Music Entertainment (UK) Limited,3110 +3111,spotify:track:6gvfXd7pEUSPuNEMWwOJUH,Knock Three Times,spotify:artist:72NXpYBIaTfEeAAsxXLs0P,Tony Orlando & Dawn,spotify:album:2d5cE0rNwRTKSqOOuzEAXq,The Definitive Collection,spotify:artist:72NXpYBIaTfEeAAsxXLs0P,Tony Orlando & Dawn,1973,https://i.scdn.co/image/ab67616d0000b27304e72a6010d9353cb3839c9f,1,2,180360,https://p.scdn.co/mp3-preview/eacc0f09a2b8887bb0a5c6eef3fbcef7a5857329?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USAR19800302,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,classic country pop,soft rock",0.777,0.581,1.0,-10.129,1.0,0.0517,0.154,0.0,0.11,0.93,123.1,4.0,,Arista,"P (P)1973, 1974, 1975, 1998 Arista Records, Inc.",3111 +3112,spotify:track:4oiwzl01mQDqRWFIa7VI3d,Animals - Radio Edit,spotify:artist:60d24wfXkVzDSfLS6hyCjZ,Martin Garrix,spotify:album:4tTVqMzwmN94NOtda3zbB8,Animals,spotify:artist:60d24wfXkVzDSfLS6hyCjZ,Martin Garrix,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d85764f013187f58bfac3916,1,1,176117,https://p.scdn.co/mp3-preview/e7ebce1b68f784a57b6d69fe8b956e679f4bf4f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLZ541300555,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch edm,edm,pop,pop dance,progressive house",0.593,0.914,1.0,-5.351,1.0,0.0363,0.00137,0.445,0.0714,0.0381,128.015,4.0,,Hussle,"C © 2013 Spinnin Records.nl, P ℗ 2013 Spinnin Records.nl, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd",3112 +3113,spotify:track:2X42KFgnOSaxOHMG0nDOdj,Fight for You,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:31tCg5RXhY5jpagfCPcQa2,Future History (Deluxe Edition),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2011-09-16,https://i.scdn.co/image/ab67616d0000b27381541b43fcbc56488853de26,1,6,242173,https://p.scdn.co/mp3-preview/b65d1e858211b78b81602d9fefa3d06df39232d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB11102512,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.416,0.84,0.0,-4.298,1.0,0.0787,0.0139,0.0,0.113,0.523,177.942,4.0,,Beluga Heights/Warner Records,"C © 2011 Warner Records Inc., P ℗ 2011 Warner Records Inc.",3113 +3114,spotify:track:3B0ms7Xlxl16tRztKHpcu9,Summer Breeze,spotify:artist:6jdObwsrIjSRnBbMw6lPBj,Seals and Crofts,spotify:album:16lsqxMjRUFOBo2jocsy1C,Summer Breeze,spotify:artist:6jdObwsrIjSRnBbMw6lPBj,Seals and Crofts,1972,https://i.scdn.co/image/ab67616d0000b273e13b56ae3e9e99abf2c2026c,1,4,205480,https://p.scdn.co/mp3-preview/1529ccd815614f9c78dcdac557b0809e73b1ebb2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USWB19901645,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.49,0.581,5.0,-6.566,1.0,0.0388,0.553,0.0177,0.0764,0.318,88.718,4.0,,Warner Records,"C © 1972 Warner Records Inc., P ℗ 1972 Warner Records Inc.",3114 +3115,spotify:track:0KpK2veNuZGhXw8pWXZKoz,The Monkey Time,spotify:artist:7onp6ew3LGoQImTt1I78gt,Major Lance,spotify:album:7jWULcoqulmiZ7tQnkyGJR,The Monkey Time,spotify:artist:7onp6ew3LGoQImTt1I78gt,Major Lance,2006-01-20,https://i.scdn.co/image/ab67616d0000b27375302de9c764d659b97391ed,1,1,165722,https://p.scdn.co/mp3-preview/aa19a670cc8ba834a37eec5c27c44e17cf85b07d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,ZA42A1706612,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago soul,northern soul",0.777,0.541,5.0,-12.154,1.0,0.0531,0.753,0.00228,0.378,0.94,124.184,4.0,,TP4 Music,"C 2017 TP4 Music, P 2017 TP4 Music",3115 +3116,spotify:track:78a5CHuPIXYlPYVQIjH9nc,Wild Heart,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,spotify:album:12gXA8pXYzj9bycyyKSGAa,Meet The Vamps,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,2014-01-01,https://i.scdn.co/image/ab67616d0000b2739f89b8390933e9ccb3673c89,1,1,191870,https://p.scdn.co/mp3-preview/5ad3d42839ebcf392ac8d1cf57eaa5158501f809?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBUM71305252,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.617,0.906,1.0,-4.822,1.0,0.0311,0.000451,0.0,0.0717,0.807,119.012,4.0,,EMI,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",3116 +3117,spotify:track:4fwo6czG5nvOQMzhOto1ya,Lonely,"spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:7gOdHgIoIKoe4i9Tta6qdD","Diplo, Jonas Brothers",spotify:album:1MF23oT6lg5q47LnZ91UPy,Lonely,spotify:artist:5fMUXHkw8R8eOP2RNVYEZX,Diplo,2019-09-27,https://i.scdn.co/image/ab67616d0000b2732f62c0155a28fae6c7a78228,1,1,139813,https://p.scdn.co/mp3-preview/2988286b4239b02542ff32d51c96cd57c936ebc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USSM11903345,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,moombahton,pop dance,boy band,pop",0.738,0.717,1.0,-5.121,1.0,0.0573,0.062,0.0,0.205,0.5,98.047,4.0,,Columbia,"P (P) 2019 Mad Decent, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",3117 +3118,spotify:track:4fgcGJjA7ALwhfzMv5SsZX,Nothing Matters,spotify:artist:2sBvQFPMUA3UiiNfwVhyGz,Jess & Matt,spotify:album:11GolhCWMVqYHmY1MAd78D,Jess & Matt,spotify:artist:2sBvQFPMUA3UiiNfwVhyGz,Jess & Matt,2015-12-16,https://i.scdn.co/image/ab67616d0000b27389952574d9e2f3143dfe46d0,1,1,182140,https://p.scdn.co/mp3-preview/1a9157baf5e9315a2eeb69be8546e1795b7bf7c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUBM01500517,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.467,0.715,7.0,-4.594,0.0,0.0424,0.207,0.0,0.111,0.536,173.866,4.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,3118 +3119,spotify:track:4btFHqumCO31GksfuBLLv3,Overpass Graffiti,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:32iAEBstCjauDhyKpGjTuq,=,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2021-10-25,https://i.scdn.co/image/ab67616d0000b273ef24c3fdbf856340d55cfeb2,1,5,236906,https://p.scdn.co/mp3-preview/a270f5d908ad26b344e26d2915c93f1db9e37eba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAHS2100673,spotify:user:bradnumber1,2021-11-19T23:18:12Z,"pop,singer-songwriter pop,uk pop",0.52,0.849,9.0,-3.794,0.0,0.186,0.00253,0.0,0.119,0.774,175.908,4.0,,Atlantic Records UK,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2021 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2021 Warner Music UK Limited",3119 +3120,spotify:track:6BLLQndvA0rLbLcIZmuuEJ,I Don't Wanna Be In Love (Dance Floor Anthem),spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:542tacdtTzqDY7BsZ9k11p,Good Morning Revival,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2008-05-20,https://i.scdn.co/image/ab67616d0000b273cbb5aebf323058ff06224338,1,4,244000,https://p.scdn.co/mp3-preview/9048d7cd263360d1dadb8de4c6f852b264ba408b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM10607447,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.64,0.884,6.0,-2.609,1.0,0.0428,0.0226,0.0,0.187,0.573,124.968,4.0,,Epic/Daylight,"P (P) 2007 Epic Records, a division of Sony Music Entertainment",3120 +3121,spotify:track:01k24g94i1JvkFLQmVEdCd,If You're Over Me,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),spotify:album:0l3xFNgfm1mT3fLIRsgRtW,If You're Over Me,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),2018-05-10,https://i.scdn.co/image/ab67616d0000b273bdee2903ac46df0b47cd0086,1,1,189000,https://p.scdn.co/mp3-preview/aa5ed1b849a241268c93f7532dd5069f73fb56d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBUM71801455,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gauze pop,pop,pop dance,uk pop",0.647,0.853,8.0,-4.516,1.0,0.0904,0.0615,0.0,0.062,0.618,103.846,4.0,,Polydor Records,"C © 2018 Universal Music Operations Limited, P ℗ 2018 Universal Music Operations Limited",3121 +3122,spotify:track:7mFOVbIzOZcCSf6if9fLYi,Gotta Get Thru This - Radio Edit,spotify:artist:11hIqBsGRPztdjBHCSLClX,Daniel Bedingfield,spotify:album:5SIlQPDK68zcMzAyrekwNG,I Am Working Out,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b27303debe888a01e348714381b0,1,12,151200,https://p.scdn.co/mp3-preview/8c523fb3aa19daec9d0df9e00aaceb61a317490d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEBM0200064,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.844,0.721,7.0,-7.229,0.0,0.0638,0.0259,9e-05,0.0796,0.903,133.622,4.0,,Universal Music Group,"C © 2010 Universal International Music B.V., P ℗ 2010 Universal International Music B.V.",3122 +3123,spotify:track:6hzwfFKrTabeUsW5SWti17,Crush,spotify:artist:7MqnCTCAX6SsIYYdJCQj9B,Pendulum,spotify:album:3XtEGVx9uh7J46nBzEc1VS,Immersion,spotify:artist:7MqnCTCAX6SsIYYdJCQj9B,Pendulum,2010-05-21,https://i.scdn.co/image/ab67616d0000b27330f8e0f777376780c4077507,1,5,253706,https://p.scdn.co/mp3-preview/e91bba2a775c7d9ea4eb0fc25536f87c3819eb87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBAHT1000126,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,dancefloor dnb,drum and bass",0.418,0.906,2.0,-3.754,1.0,0.0368,1.34e-05,0.0216,0.164,0.164,173.998,4.0,,WM UK,"C © 2010 Warner Music UK Limited, P ℗ 2010 Warner Music UK Limited",3123 +3124,spotify:track:7vS3Y0IKjde7Xg85LWIEdP,Problem,"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:5yG7ZAZafVaAlMTeBybKAL","Ariana Grande, Iggy Azalea",spotify:album:6EVYTRG1drKdO8OnIQBeEj,My Everything (Deluxe),spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2014-08-22,https://i.scdn.co/image/ab67616d0000b273deec12a28d1e336c5052e9aa,1,2,193920,https://p.scdn.co/mp3-preview/1edf67d05cf19de530fb50c5dc74e1b192578661?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USUM71405403,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,australian hip hop,dance pop,pop",0.66,0.805,1.0,-5.352,0.0,0.153,0.0192,8.83e-06,0.159,0.625,103.021,4.0,,Universal Records,"C © 2014 Republic Records, a division of UMG Recordings, Inc., P ℗ 2014 Republic Records, a division of UMG Recordings, Inc.",3124 +3125,spotify:track:0AvV49z4EPz5ocYN7eKGAK,No Diggity,"spotify:artist:2P3cjUru4H3fhSXXNxE9kA, spotify:artist:6DPYiyq5kWVQS4RGwxzPC7, spotify:artist:0VbIlorLz3I5SEtIsc5vAr","Blackstreet, Dr. Dre, Queen Pen",spotify:album:6nUnNpoLKWpb9qxhYiT98S,Another Level,spotify:artist:2P3cjUru4H3fhSXXNxE9kA,Blackstreet,1996-09-09,https://i.scdn.co/image/ab67616d0000b273b085dc8eaaaa18a020906ba3,1,3,304600,https://p.scdn.co/mp3-preview/35f670ec0a021fff5617f5d558bdfe8667d557ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19600978,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary,g funk,gangster rap,hip hop,rap,west coast rap,hip pop,lgbtq+ hip hop",0.868,0.646,1.0,-4.674,0.0,0.288,0.303,0.0,0.284,0.67,88.641,4.0,,Universal Music Group,"C © 1996 Interscope Records, P ℗ 1996 Interscope Records",3125 +3126,spotify:track:4pkZNPC6yeMnQABwkTmsR6,Black & Gold - Radio Edit,spotify:artist:0H0rBbf7vHXO3qh50Wap7y,Sam Sparro,spotify:album:6dJIhG190Enkw8ukkEupG7,Fame - OST,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-01-01,https://i.scdn.co/image/ab67616d0000b273e268a664bdd12926971eeceb,1,10,210360,https://p.scdn.co/mp3-preview/420f30e0ca23873ed47f4c77a39ac3b60b713126?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBUM70800413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,funktronica",0.551,0.794,4.0,-4.863,0.0,0.104,0.00119,0.0,0.112,0.334,135.947,4.0,,Decca (UMO),"C © 2009 Lakeshore Records LLC, P ℗ 2009 Lakeshore Records LLC",3126 +3127,spotify:track:7oEkS4zzo6EcnbTzLxHHcF,Chewy Chewy,spotify:artist:6EHdKd4m8DzNf9NhVeJSVI,Ohio Express,spotify:album:1z5SrNEBvLmCnJxe54Thk9,The Best of the Ohio Express,spotify:artist:6EHdKd4m8DzNf9NhVeJSVI,Ohio Express,2001-04-03,https://i.scdn.co/image/ab67616d0000b273b75cdf9ba8d19da490b47137,1,6,158866,https://p.scdn.co/mp3-preview/f1f4e91f3c73102dbbb4bc1c2c668c10e74e6d8c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USBR16800007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock",0.742,0.516,0.0,-8.549,1.0,0.0462,0.118,0.000182,0.12,0.871,120.715,4.0,,Buddha Records,P (P) 2001 Buddha Records,3127 +3128,spotify:track:2OSfEYKhlSsLx6vn4O75RK,I Want You Back,spotify:artist:2iE18Oxc8YSumAU232n4rW,The Jackson 5,spotify:album:7ioDs7ZLvqeYLD1SVFeWci,Greatest Hits,spotify:artist:2iE18Oxc8YSumAU232n4rW,The Jackson 5,1971-01-01,https://i.scdn.co/image/ab67616d0000b273b5c7655529a7102aece0de36,1,1,178493,https://p.scdn.co/mp3-preview/50138a151a0c70c36f0b8dbefc807d8f36d822d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USMO19400306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.667,0.669,8.0,-6.264,1.0,0.0326,0.441,0.00229,0.215,0.947,98.266,4.0,,Motown,"C © 1998 Motown Record Company L.P., P This Compilation ℗ 1971 UMG Recordings, Inc.",3128 +3129,spotify:track:2wcDfk3TfQg3Jv8gEoTim7,I Just Wanna Live,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:02abrECBsxdR3Ywjy1hCuW,Greatest Hits,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2010-11-12,https://i.scdn.co/image/ab67616d0000b273aabb9557204ead9f05752743,1,10,165946,https://p.scdn.co/mp3-preview/1a0ab0561dbc25e6eb664bbb84f2ec0e6d50cd6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM10412717,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.804,0.832,10.0,-4.723,0.0,0.0347,0.0148,0.0,0.107,0.9,111.023,4.0,,Epic/Legacy,"P (P) 2010 Epic Records, a division of Sony Music Entertainment",3129 +3130,spotify:track:0uOjJi0sUGKJVx2kT8kVsc,Love On Display,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:42w25uAncdyETcTJyOV16K,T. R. U. T. H.,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2020-10-16,https://i.scdn.co/image/ab67616d0000b27331c4d69ad8350750f8d2bedd,1,7,183632,https://p.scdn.co/mp3-preview/140a85f51bf82c751f8aa2b16a2b4f649c581a00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUBM02000458,spotify:user:bradnumber1,2021-12-01T04:22:38Z,australian pop,0.612,0.74,4.0,-4.752,1.0,0.0364,0.216,4.99e-06,0.194,0.532,85.986,4.0,,Sony Music Entertainment,P (P) 2020 Sony Music Entertainment Australia Pty Ltd,3130 +3131,spotify:track:7L3KTNiCJcKWsDzKKkbOxC,Encore Une Fois,spotify:artist:5XTxV2ifoYkmNb13Gb6cKz,Sash!,spotify:album:2YBkamwn6VqpPO2wOfDVjS,It's My Life,spotify:artist:5XTxV2ifoYkmNb13Gb6cKz,Sash!,1997-06-30,https://i.scdn.co/image/ab67616d0000b273481ecf6365d84be80cad59d7,1,8,390000,https://p.scdn.co/mp3-preview/1ec15291e2b89a6fb0ae33e01c9e69c503413a37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,DEF069703960,spotify:user:bradnumber1,2022-05-11T03:00:58Z,"eurodance,german techno",0.893,0.928,6.0,-6.179,0.0,0.0888,0.0527,0.142,0.412,0.445,133.888,4.0,,High Fashion Music,"C 1997 High Fashion Music under excl license from Tokapi Recordings, P 1997 High Fashion Music under excl license from Tokapi Recordings",3131 +3132,spotify:track:2AhGWwkn71UUTDaQmqqxyw,Spinning Wheel,spotify:artist:24GaH9tRBgZjlvOhpFuKi2,"Blood\, Sweat & Tears",spotify:album:4mGSw7RUWGE7IGawdFGcjA,"Blood, Sweat & Tears",spotify:artist:24GaH9tRBgZjlvOhpFuKi2,"Blood\, Sweat & Tears",1968-12,https://i.scdn.co/image/ab67616d0000b2730e158228f6b3404b49a840d3,1,7,244200,https://p.scdn.co/mp3-preview/5b753d5a7745fae13f0c734ae5794a60d32c3044?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19911961,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,folk,folk rock,jazz rock,mellow gold,singer-songwriter,soft rock",0.692,0.37,7.0,-14.261,1.0,0.0577,0.413,5.69e-05,0.297,0.582,96.748,4.0,,Columbia,P Originally released 1969 SONY BMG MUSIC ENTERTAINMENT,3132 +3133,spotify:track:4hZfWL4HeWZ6jUHHC29jXx,Fall Of Rome,spotify:artist:4v0Hh2bdIAJnaUqAOipfYs,James Reyne,spotify:album:4E84dVAoEfOP6wdKucheO4,James Reyne,spotify:artist:4v0Hh2bdIAJnaUqAOipfYs,James Reyne,1988,https://i.scdn.co/image/ab67616d0000b2730829c19f73f993c8a933e166,1,1,299360,https://p.scdn.co/mp3-preview/9bbdf1ba2ef71cd5985de347ec37ded87d958d3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USCA28800068,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.429,0.718,9.0,-11.502,1.0,0.0352,0.0494,1.84e-06,0.203,0.74,157.417,4.0,,Capitol,"C © 2014 Capitol Records, Inc., P ℗ 1988 Capitol Records, Inc.",3133 +3134,spotify:track:5NOzaYF6n69NnzHSB49FYI,Better the Devil You Know,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:4oaGBehVCW8w4Ekf8sTbqb,The Best of Kylie Minogue,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2012-05-28,https://i.scdn.co/image/ab67616d0000b2732775ed6b5267d46354f4476a,1,7,233680,https://p.scdn.co/mp3-preview/1cee883b31c1d0758dd5eb2c22ae024b76845e3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBBTK0900071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.578,0.98,10.0,-4.937,0.0,0.051,0.0215,0.241,0.0255,0.605,120.03,4.0,,WM Australia,"C © 2014 KDB Pty Limited, P ℗ 2014 KDB Pty Limited",3134 +3135,spotify:track:4KtrE35pTuqwNc22QP58RT,Drop the Game,"spotify:artist:6nxWCVXbOlEVRexSbLsTer, spotify:artist:6UcJxoeHWWWyT5HZP064om","Flume, Chet Faker",spotify:album:3iiYLxi349roViLyQJcCh3,Lockjaw,"spotify:artist:6nxWCVXbOlEVRexSbLsTer, spotify:artist:6UcJxoeHWWWyT5HZP064om","Flume, Chet Faker",2013-11-22,https://i.scdn.co/image/ab67616d0000b273ef1741f012d1f7643cb0ad39,1,1,221894,https://p.scdn.co/mp3-preview/90ff84474482f51f53b770ced2ed8e73b192fe50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFF01300488,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,australian indie,downtempo,edm,indietronica,art pop,indietronica",0.559,0.67,7.0,-4.985,1.0,0.0474,0.592,0.000184,0.171,0.438,78.957,4.0,,Future Classic,"C 2013 Future Classic, P 2013 Future Classic",3135 +3136,spotify:track:2VULat2tU9eCfaFsg1pk82,I Am Blessed,"spotify:artist:7zYGAXxAaq15C9eM29M8Fj, spotify:artist:3HISkAiDX0gaSSUDZej38A","Eternal, Simon Climie",spotify:album:0xkihXvGNRt4UMQ1Rsi5Mb,Power Of A Woman/Club #1,spotify:artist:7zYGAXxAaq15C9eM29M8Fj,Eternal,1995,https://i.scdn.co/image/ab67616d0000b2731c4e10af094420b1cd37fbd2,1,2,264173,https://p.scdn.co/mp3-preview/52f51ed9ca0b588c59a79ce2deff87c2459cdefb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAYE9500008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,girl group",0.463,0.371,9.0,-10.485,1.0,0.0302,0.148,0.0,0.104,0.151,136.174,4.0,,Parlophone UK,"C © 1995 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1995 Parlophone Records Ltd, a Warner Music Group Company",3136 +3137,spotify:track:2CTKQHWHseuShgYEzsVnhI,Pop a Bottle (Fill Me Up),spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:0r5gtFG4UsSkDafxSdRuiL,Beautiful,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2013-10-04,https://i.scdn.co/image/ab67616d0000b2731f09965e9d8de6752d8051d7,1,3,224693,https://p.scdn.co/mp3-preview/34c8550effe0e14b52cd046c93e0da94002960b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUBM01300378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.722,0.869,9.0,-3.104,1.0,0.0591,0.0421,1.37e-05,0.35,0.922,126.009,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,3137 +3138,spotify:track:2qJNqOUnzLPl46bsRTJiKT,The Lady In Red,spotify:artist:2RpHsROrX075xfIwHn6B2U,Chris de Burgh,spotify:album:3nDQsWcoNxuOFjmJEzHw11,Notes From Planet Earth - The Collection,spotify:artist:2RpHsROrX075xfIwHn6B2U,Chris de Burgh,2001-01-01,https://i.scdn.co/image/ab67616d0000b273a7c416a42c6aa9e2175de0ba,1,4,254573,https://p.scdn.co/mp3-preview/5b12bc7796c5f932a0ddd2bd05be40ab373b484c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAAM8600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.563,0.44,10.0,-11.97,1.0,0.0283,0.257,5.63e-06,0.0395,0.508,76.615,4.0,,EMI,"C © 2001 A&M Records Limited, P This Compilation ℗ 2001 A&M Records Limited",3138 +3139,spotify:track:632GESqggMN84rS3sRXy0K,Two Wrongs (feat. Claudette Ortiz),"spotify:artist:7aBzpmFXB4WWpPl2F7RjBe, spotify:artist:2PWQEBHw18rURT93AbGXQm","Wyclef Jean, Claudette Ortiz",spotify:album:2qLUUU3EQO7fCEw8naaO8Z,Two Wrongs (feat. Claudette Ortiz),spotify:artist:7aBzpmFXB4WWpPl2F7RjBe,Wyclef Jean,2002-07-16,https://i.scdn.co/image/ab67616d0000b273123ebaa0a5b3f28ce7e1bf8f,1,1,231133,https://p.scdn.co/mp3-preview/35776f00fea7136a39423db7625778e02bdf9e60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USSM10202959,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rap kreyol,0.662,0.613,9.0,-7.553,1.0,0.189,0.0899,0.0,0.0831,0.401,83.015,4.0,,Columbia,P 2002 Sony Music Entertainment Inc.,3139 +3140,spotify:track:00qOE7OjRl0BpYiCiweZB2,Juke Box Hero,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,spotify:album:2Pw51hAGvWpTA3AYl2WVuu,4 (Expanded),spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,1981,https://i.scdn.co/image/ab67616d0000b2733cd67ccf241ae843f6da62f3,1,2,259799,https://p.scdn.co/mp3-preview/8b890d8f4e77a746613b8c61cfc3b5c9cee12153?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USAT20803006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.357,0.653,9.0,-5.554,1.0,0.0654,0.0828,0.0,0.0844,0.522,176.647,4.0,,Rhino Atlantic,"C © 2002 Atlantic Recording Corp., marketed by Rhino Entertainment Company, a Warner Music Group company, P ℗ 2002 Atlantic Recording Corp.",3140 +3141,spotify:track:4pIkDLwTwMe4UpRUavkbwA,Fall Down,"spotify:artist:085pc2PYOi8bGKj0PNjekA, spotify:artist:5YGY8feqx7naU7z4HrwZM6","will.i.am, Miley Cyrus",spotify:album:6H7mXPXFFDOpby7Xcke1vh,#willpower (Deluxe),spotify:artist:085pc2PYOi8bGKj0PNjekA,will.i.am,2013-01-01,https://i.scdn.co/image/ab67616d0000b2737cd0e09e531fbca549d76cbf,1,12,307493,https://p.scdn.co/mp3-preview/90e4f7754dc206e9ddc4555cfb5e50716968a161?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71302529,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop",0.612,0.613,0.0,-5.473,0.0,0.036,0.01,0.00328,0.129,0.332,127.047,4.0,,Universal Music Group,"C © 2013 Interscope Records, P ℗ 2013 Interscope Records",3141 +3142,spotify:track:1wEeNtO7z41aUqC80shxqK,You Keep Me Hangin On,spotify:artist:73a6pNH4YtLNgDbPQwXveo,Kim Wilde,spotify:album:7g47QK9nosKX9B2zdd8yTs,Another Step,spotify:artist:73a6pNH4YtLNgDbPQwXveo,Kim Wilde,1986,https://i.scdn.co/image/ab67616d0000b273156af29c45454563c9dca43b,1,1,255220,https://p.scdn.co/mp3-preview/01d5bf845424dcb8229450cde3286c97dd6481c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBUM71304908,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.686,0.682,7.0,-12.154,0.0,0.033,0.0806,0.000155,0.14,0.708,123.44,4.0,,UMC (Universal Music Catalogue),"C © 2013 MCA Records Ltd., P ℗ 2013 MCA Records Ltd.",3142 +3143,spotify:track:1yKu2MhpwzDXXH2tzG6xoa,Beverly Hills,spotify:artist:3jOstUTkEu2JkjvRdBA5Gu,Weezer,spotify:album:4D8A8M0NJjEdQhusawyeDz,Make Believe,spotify:artist:3jOstUTkEu2JkjvRdBA5Gu,Weezer,2005-05-10,https://i.scdn.co/image/ab67616d0000b273a9def696688b8353ad8511ad,1,1,196093,https://p.scdn.co/mp3-preview/85be9d44d8b01375fed3701788536fe6513b8f33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USIR10500448,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern power pop,modern rock,permanent wave,rock",0.693,0.823,5.0,-3.761,1.0,0.0726,0.0932,0.0,0.328,0.741,87.904,4.0,,Geffen,"C © 2007 Geffen Records, P ℗ 2007 Geffen Records",3143 +3144,spotify:track:2AX5E86cn9n2dgioZEjirI,Golden Brown,spotify:artist:0RUEHcBiENFEqxgicqS2ig,The Stranglers,spotify:album:3bosyDPGOYmLnwMNhU06Rx,La Folie,spotify:artist:0RUEHcBiENFEqxgicqS2ig,The Stranglers,1981,https://i.scdn.co/image/ab67616d0000b273a713f9b06accedba5d963d61,1,9,206760,https://p.scdn.co/mp3-preview/44d0471c8546a080eebb2fd3643a32adde9614ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBAYE8100053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,new romantic,new wave,new wave pop,protopunk,pub rock,zolo",0.562,0.383,6.0,-15.474,1.0,0.0304,0.143,0.124,0.138,0.599,93.764,3.0,,Parlophone UK,"C © 2001 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",3144 +3145,spotify:track:5AoTuHE5P5bvC7BBppYnja,Respect - 2003 Remaster,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,spotify:album:1LBWNRMsbEWb17KmDD4jfD,"Atlantic 60th: Soul, Sweat And Strut",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-10-30,https://i.scdn.co/image/ab67616d0000b2732c584610c45a37bb87e8a5be,1,9,142186,https://p.scdn.co/mp3-preview/be91ee67da377adadb955be35662cca4e298635b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAT20302295,spotify:user:bradnumber1,2021-08-08T09:27:55Z,"classic soul,jazz blues,memphis soul,soul,southern soul,vocal jazz",0.744,0.611,0.0,-6.386,1.0,0.0333,0.0723,0.000532,0.0692,0.961,114.991,4.0,,Rhino Atlantic,"C © 2007 Rhino Entertainment Company, a Warner Music Group company, P ℗ 2007 Atlantic Recording Corp. Manufactured & Marketed by Rhino Entertainment Company, a Warner Music Group company",3145 +3146,spotify:track:3VPJVon5HEa2VGZC62RJfW,Big Girls Don't Cry,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,spotify:album:0NUEQILaBzavnzcMEs4buZ,The Very Best of Frankie Valli & The 4 Seasons,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,2003-01-14,https://i.scdn.co/image/ab67616d0000b273b96c21e15c091eb98a6c88a4,1,2,145973,https://p.scdn.co/mp3-preview/3573fecdb8bb89d3fc7332d4021f9b212bb2cbed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USRH10175198,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,lounge,northern soul,rock-and-roll,rockabilly",0.815,0.606,7.0,-9.733,1.0,0.115,0.571,0.0,0.13,0.883,130.45,4.0,,Rhino,"C © 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products, P ℗ 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products",3146 +3147,spotify:track:6PERP62TejQjgHu81OHxgM,good 4 u,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,spotify:album:3rMjL8NA5Wh2hbMNk2fSlY,good 4 u,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,2021-05-14,https://i.scdn.co/image/ab67616d0000b273670ec029374e082f921f9f74,1,1,178147,https://p.scdn.co/mp3-preview/b842388e0a8bb4c8667f77d645b25fdcd50961c1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,17,USUG12101245,spotify:user:bradnumber1,2021-11-19T23:18:00Z,pop,0.556,0.661,6.0,-5.052,0.0,0.204,0.3,0.0,0.101,0.668,168.56,4.0,,Olivia Rodrigo PS,"C © 2021 Olivia Rodrigo, under exclusive license to Geffen Records, P ℗ 2021 Olivia Rodrigo, under exclusive license to Geffen Records",3147 +3148,spotify:track:11D6qKfTcfrSnZyuw3D6ud,Don't Stand So Close To Me - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:7kkbhhchgAk4fY52hixXoz,Zenyatta Mondatta (Remastered),spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1980-10-03,https://i.scdn.co/image/ab67616d0000b27362dda6306a01a5cf12587d68,1,1,242666,https://p.scdn.co/mp3-preview/33fb1e343adb34e507be23ebcfd5f10f9c98d38b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM0201148,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.799,0.506,2.0,-9.414,1.0,0.0606,0.0453,0.00107,0.037,0.518,140.309,4.0,,Universal Music Group,"C © 2003 A&M Records, P ℗ 2003 A&M Records",3148 +3149,spotify:track:5YwgJ6lpZ3SiAQwBEpjqey,Rose Garden,spotify:artist:502FY8XQYRxClWgolQ3Hf2,Lynn Anderson,spotify:album:2JItlMgM1n2GfKOmqYr8af,Rose Garden,spotify:artist:502FY8XQYRxClWgolQ3Hf2,Lynn Anderson,1971,https://i.scdn.co/image/ab67616d0000b273c88a398a82acc86bb938ebda,1,1,175866,https://p.scdn.co/mp3-preview/8d1349b598412d7c61acc21619efcbd741cbe483?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM17000700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,nashville sound",0.589,0.501,0.0,-11.665,1.0,0.031,0.168,0.0,0.0741,0.969,131.064,4.0,,Columbia Nashville Legacy,P Originally released 1971. All rights reserved by Sony Music Entertainment,3149 +3150,spotify:track:3krYebqW8kK4xgG8vtTD3T,Maniac,spotify:artist:771qBvjnXOH9Azr6lKy6FB,Michael Sembello,spotify:album:1jdGSWB0QWRQrbRvwVx1BE,Pure '80s: #1s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2006-01-01,https://i.scdn.co/image/ab67616d0000b273ce3a819629055278dac24a76,1,17,257933,https://p.scdn.co/mp3-preview/a9c784df11af42bf0ff4b27bc03a9b9b45adf8ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70600581,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hi-nrg,0.611,0.704,3.0,-6.708,0.0,0.049,0.0553,0.0,0.0694,0.731,156.69,4.0,,HIP-O (UC),"C © 2006 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2006 Universal Music Enterprises, a Division of UMG Recordings, Inc.",3150 +3151,spotify:track:3wpnNZWp8uyVlNBPi6T3zH,Pop!ular,spotify:artist:0ihJnGEjNnbM6uuTn3RHMo,Darren Hayes,spotify:album:27vsgfqt2JKhbfe7EPtKbo,The Tension And The Spark,spotify:artist:0ihJnGEjNnbM6uuTn3RHMo,Darren Hayes,2004-09-13,https://i.scdn.co/image/ab67616d0000b273ac3fb9be8cb10ec973ae91a5,1,4,233013,https://p.scdn.co/mp3-preview/3994bccce2f546a479da9eddf61b186d75aaed14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USSM10405950,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.783,0.573,8.0,-4.573,1.0,0.0746,0.0108,2.1e-05,0.253,0.853,126.99,4.0,,Columbia,P (P) 2004 Sony Music Entertainment,3151 +3152,spotify:track:7j56HrjR9cGzvekvZY3Faz,HandClap,spotify:artist:4AcHt3JxKy59IX7JNNlZn4,Fitz and The Tantrums,spotify:album:7HBKKw5pJLNj6mdRLb1KG3,Fitz and The Tantrums,spotify:artist:4AcHt3JxKy59IX7JNNlZn4,Fitz and The Tantrums,2016-06-10,https://i.scdn.co/image/ab67616d0000b27358c4833cc8b1a3d6e4890940,1,1,193253,https://p.scdn.co/mp3-preview/6bc5cfde31b861b439e14c746decb01fbc870c64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAT21600408,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"la indie,modern alternative rock,modern rock,pop rock,pov: indie",0.636,0.836,8.0,-3.004,1.0,0.0427,0.00609,0.000157,0.0828,0.715,139.956,4.0,,Elektra (NEK),"C © 2016 Elektra Records for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Elektra Records for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",3152 +3153,spotify:track:0KlahhzNb98zyN83Vwae0l,Untouched,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:6aL2SwYj5kSEvIcYORHP37,Hook Me Up,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2007-10-30,https://i.scdn.co/image/ab67616d0000b2730f3819fd1601ca0421194d32,1,1,255360,https://p.scdn.co/mp3-preview/520215e2a509df89648e07f9a19f24901896ee92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USWB10704602,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.557,0.783,6.0,-4.893,0.0,0.234,0.0171,0.0172,0.151,0.442,177.008,4.0,,Sire/Warner Records,"C © 2007 Sire Records for the U.S. Marketed by Warner Records Inc., A Warner Music Group Company., P ℗ 2007, 2008 Sire Records. Marketed by Warner Records Inc., A Warner Music Group Company",3153 +3154,spotify:track:5t8gNiqEGn8LkPZ1eMGVxa,I Never Can Say Goodbye,spotify:artist:6V6WCgi7waF55bJmylC4H5,Gloria Gaynor,spotify:album:5tM8NKc03skxdqYcMpefVE,Gloria Gaynor,spotify:artist:6V6WCgi7waF55bJmylC4H5,Gloria Gaynor,2012-03-20,https://i.scdn.co/image/ab67616d0000b2739197df25a42eda5f5a535a42,1,3,193413,https://p.scdn.co/mp3-preview/78896273bb15a9d5ec134796d99e18d29f519a42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBQRF1119473,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,soft rock",0.671,0.703,0.0,-11.514,1.0,0.0262,0.0355,0.0,0.306,0.963,122.917,4.0,,Dressed 2 Kill - OMP,C 2012 One Media Publishing,3154 +3155,spotify:track:7oVEtyuv9NBmnytsCIsY5I,BURN IT DOWN,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:4XHIjbhjRmqWlosjj5rqSI,LIVING THINGS,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2012-06-19,https://i.scdn.co/image/ab67616d0000b273987fb4c5ec8790e9f637a4a4,1,3,230253,https://p.scdn.co/mp3-preview/db2e04088575f248a4f0baf09b9165f18dd31ebb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USWB11200587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.585,0.972,9.0,-4.45,0.0,0.0534,0.0143,0.0,0.0707,0.585,110.006,4.0,,Warner Records,"C © 2012 Warner Records Inc., P ℗ 2012 Warner Records Inc.",3155 +3156,spotify:track:3bfqkspKABT4pPicm6wC9F,Ass Back Home (feat. Neon Hitch),"spotify:artist:4IJczjB0fJ04gs4uvP0Fli, spotify:artist:2TnJ7VOpGzjtKUn0ObpEYe","Gym Class Heroes, Neon Hitch",spotify:album:2mumCpGmuE9iDeOvMx6XrB,The Papercut Chronicles II,spotify:artist:4IJczjB0fJ04gs4uvP0Fli,Gym Class Heroes,2011-11-11,https://i.scdn.co/image/ab67616d0000b27318b8088fe0c3dbf78398b55a,1,7,222213,https://p.scdn.co/mp3-preview/108ce6efd9e244ca0242984fc06aa5ed87245c26?cid=9950ac751e34487dbbe027c4fd7f8e99,True,58,USAT21102797,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,electropop",0.716,0.838,10.0,-4.289,1.0,0.0513,0.134,0.0,0.148,0.646,130.034,4.0,,Decaydance/Fueled By Ramen,"C © 2011 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2011 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States.",3156 +3157,spotify:track:7wvYmO5QscgIDDT0eNwbYX,Lost In Japan,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:5fO4XvsuL6yeWquLaWXZOK,Lost In Japan,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2018-03-23,https://i.scdn.co/image/ab67616d0000b27303312590ee9819db3f2d094d,1,1,200133,https://p.scdn.co/mp3-preview/4cf168f3a27a0347021b0e7da6278f35282a2092?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71803548,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.726,0.708,7.0,-6.908,0.0,0.356,0.303,0.0,0.348,0.417,105.084,4.0,,Island Records,"C © 2018 Island Records, a division of UMG Recordings, Inc., P ℗ 2018 Island Records, a division of UMG Recordings, Inc.",3157 +3158,spotify:track:5VYTKiOnHw4iTrB9pG3yum,Unbelievable,spotify:artist:39oSLGo3HkaeYXzUEGgAGQ,EMF,spotify:album:475PE6J6LTBGBpt26rRrHe,Schubert Dip,spotify:artist:39oSLGo3HkaeYXzUEGgAGQ,EMF,1991-05-07,https://i.scdn.co/image/ab67616d0000b2731cfc7506e5aa43fc22fca3f2,1,6,209813,https://p.scdn.co/mp3-preview/23caebf1eadbbaded5b243fe97e2db4402d8e9d5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,63,GBAYE9000089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,dance rock,grebo,indietronica,madchester",0.636,0.848,1.0,-6.854,1.0,0.0362,0.000339,0.0402,0.141,0.934,104.073,4.0,,Believe,"C 1991 Believe, P 1991 Believe",3158 +3159,spotify:track:0uOONxamJr3BRgz83uOSVx,You,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,spotify:album:0RsPmRzTbarQCXBgLSW5Ox,Yours,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,2016-01-01,https://i.scdn.co/image/ab67616d0000b273c911d9842660be1965a41daf,1,5,201093,https://p.scdn.co/mp3-preview/d16cea8579a61a92a301d89c24c3e693927770e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,AUBM01300377,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.609,0.82,10.0,-4.469,0.0,0.0622,0.134,0.0,0.135,0.348,102.007,4.0,,DNA Songs/Sony Music Entertainment,P (P) 2015 DNA Songs/ Sony Music Entertainment Australia Pty Ltd.,3159 +3160,spotify:track:7vqubB6rY1NpGVGpHYobbQ,Without You,spotify:artist:3RTzAwFprBqiskp550eSJX,Harry Nilsson,spotify:album:1tRXz3Sc9Er8uM6ZUHkiJj,Everybody's Talkin': The Very Best of Harry Nilsson,spotify:artist:3RTzAwFprBqiskp550eSJX,Harry Nilsson,1967,https://i.scdn.co/image/ab67616d0000b273a72fe2059e992a92f157afc2,1,4,202026,https://p.scdn.co/mp3-preview/c768e3dea9356a14d0c2cccedb1418db1e28d1f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC17108362,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,singer-songwriter",0.441,0.212,4.0,-13.657,1.0,0.0287,0.556,5.52e-06,0.0578,0.124,65.311,4.0,,RCA/Legacy,"P Originally Recorded 1967, 1969, 1970, 1971. All rights reserved by BMG Music; (P) 1972, 1973, 1977, 2006 BMG Music",3160 +3161,spotify:track:22Z6ClJxSRovjPiswfCg3V,Bossa Nova Baby,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:6HKnyw3DYCaD1wdmzez463,Fun in Acapulco,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1963-11-15,https://i.scdn.co/image/ab67616d0000b273862370e581b5a4129d0b317f,1,9,122760,https://p.scdn.co/mp3-preview/4bf963853c063f5e9b5c2a2f9e6ac932ef3d20b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USRC16307139,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.755,0.736,0.0,-9.594,1.0,0.107,0.657,0.0,0.226,0.953,106.777,4.0,,RCA/Legacy,P (P) 1963 Sony Music Entertainment,3161 +3162,spotify:track:6Yc2bkiq8EMbNuOKIuWabp,Angel - 2002 Remaster,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:66tdakDRt0qVv2dnEjr5KK,Cliff Richard/Don't Stop Me Now,spotify:artist:4IdvJZeciaa37wYr2qBpjm,Cliff Richard & The Shadows,1965,https://i.scdn.co/image/ab67616d0000b2738281f9ae546ccfc4b7b5165d,1,1,142066,https://p.scdn.co/mp3-preview/6786a38e8a121deb460b56f900eaf58bbd242cef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,GBAYE0202193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.453,0.77,5.0,-5.484,0.0,0.0469,0.542,1.52e-06,0.0778,0.691,111.209,4.0,,Parlophone UK,"C © 2002 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2002 Parlophone Records Ltd, a Warner Music Group Company",3162 +3163,spotify:track:2PkeVPcL32LA96cK5ySC3c,Yeah!,"spotify:artist:23zg3TcAtWQy7J6upgbUnj, spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi","USHER, Lil Jon, Ludacris",spotify:album:021pXDAIuTIb2ADbS6VjbC,Yeah!,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2004-02-09,https://i.scdn.co/image/ab67616d0000b27332dd19e4ec1ec8e56a84c57e,1,1,250066,https://p.scdn.co/mp3-preview/1eca1cb525c2b0df2ecba52f1105f139323e09a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR10301423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary,atl hip hop,crunk,dance pop,dirty south rap,old school atlanta hip hop,pop rap,southern hip hop,trap,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap",0.895,0.795,2.0,-4.693,1.0,0.0977,0.0219,0.0,0.0403,0.574,105.004,4.0,,Arista,"P (P) 2004 Arista Records, Inc.",3163 +3164,spotify:track:4VhdCS7iCaYM81NZaeA72I,Lonely,spotify:artist:6DgP9otnZw5z6daOntINxp,Joel Corry,spotify:album:0wxjlH0EvEYj0FCKyQjkyq,Lonely,spotify:artist:6DgP9otnZw5z6daOntINxp,Joel Corry,2020-01-24,https://i.scdn.co/image/ab67616d0000b27315baf28f69e26f4f573632e8,1,1,190955,https://p.scdn.co/mp3-preview/0057be68ddb9f3f7e690c5709e2bf1c2eff43f03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,UK4ZF2000040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop dance,uk dance",0.696,0.921,5.0,-4.283,1.0,0.0424,0.0947,1.85e-05,0.159,0.721,123.988,4.0,,Universal Music Australia Pty. Ltd.,"C © 2020 Perfect Havoc Limited, Under Exclusive License To Neon Records Pty Ltd, P ℗ 2020 Perfect Havoc Limited, Under Exclusive License To Neon Records Pty Ltd",3164 +3165,spotify:track:7Lf7oSEVdzZqTA0kEDSlS5,Cry Me a River,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:6QPkyl04rXwTGlGlcYaRoW,Justified,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2002-11-04,https://i.scdn.co/image/ab67616d0000b273346a5742374ab4cf9ed32dee,1,5,288333,https://p.scdn.co/mp3-preview/6d55ea590f690f42992ab1a91aea064d0d334d73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USJI10200366,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.624,0.654,8.0,-6.582,0.0,0.183,0.577,0.0,0.104,0.564,73.898,4.0,,Jive,P (P) 2002 Zomba Recording LLC,3165 +3166,spotify:track:4I5bvu2KDsrCg0EWHIcvul,Don't Play,"spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:1nzgtKYFckznkcVMR3Gg4z, spotify:artist:5fyDppLDl1juIu1BcUT5zh","Anne-Marie, KSI, Digital Farm Animals",spotify:album:707Yo7tTEf4TYZVIVde1uM,Don't Play,"spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:1nzgtKYFckznkcVMR3Gg4z, spotify:artist:5fyDppLDl1juIu1BcUT5zh","Anne-Marie, KSI, Digital Farm Animals",2021-01-15,https://i.scdn.co/image/ab67616d0000b27337cd16ccbb8fd3c34bd0b32c,1,1,188580,https://p.scdn.co/mp3-preview/eda771f6780af845cc4af8d2c2d34fc0694e5e75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAHS2001192,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,social media pop,uk hip hop,uk dance",0.695,0.784,6.0,-6.564,0.0,0.0402,0.0889,0.0,0.0843,0.52,128.031,4.0,,Asylum Records,"C Under exclusive licence to Warner Music UK Limited. An Asylum Records UK release, © 2021 Digital Farm Limited, P Under exclusive licence to Warner Music UK Limited. An Asylum Records UK release, ℗ 2021 Digital Farm Limited",3166 +3167,spotify:track:7L605WhF5EGf34ggj87yK6,You And Me,spotify:artist:5PokPZn11xzZXyXSfnvIM3,Lifehouse,spotify:album:3wJfFDP79V0vuGaAasTIz6,Lifehouse,spotify:artist:5PokPZn11xzZXyXSfnvIM3,Lifehouse,2005-01-01,https://i.scdn.co/image/ab67616d0000b2738e254a71b5f7d4cd18220252,1,2,195493,https://p.scdn.co/mp3-preview/0ea93809b13b0c0ef27b974b5f2241f4cb46fe16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.461,0.446,7.0,-7.703,1.0,0.0267,0.1,0.0,0.169,0.375,139.868,3.0,,Interscope,"C © 2005 Geffen Records, P ℗ 2005 Geffen Records",3167 +3168,spotify:track:5y6pj7OeBFF0CVgZKhRbOG,Black Magic,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:4bzVI1FElc13HQagFR7S1W,Get Weird (Deluxe),spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2015-11-06,https://i.scdn.co/image/ab67616d0000b2734e977ec3406c06c9401642d5,1,1,211773,https://p.scdn.co/mp3-preview/f88e620112e99ec23639ee2262b9aa82c93ac168?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1500046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.777,0.896,4.0,-4.467,1.0,0.0619,0.0352,0.0,0.317,0.843,111.987,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,3168 +3169,spotify:track:32PKQDEaouIIOlNZ5umoR6,No Diggity,"spotify:artist:5wwneIFdawNgQ7GvKK29Z3, spotify:artist:2P3cjUru4H3fhSXXNxE9kA","Lucas & Steve, Blackstreet",spotify:album:1x66drtf4CW5onOaeS0oz3,No Diggity,"spotify:artist:5wwneIFdawNgQ7GvKK29Z3, spotify:artist:2P3cjUru4H3fhSXXNxE9kA","Lucas & Steve, Blackstreet",2021-03-26,https://i.scdn.co/image/ab67616d0000b273988bc47878f332f34bcd2384,1,1,168727,https://p.scdn.co/mp3-preview/793139d26a94a37ee74778788bf5c91a841b6949?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,NLZ542100332,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch house,edm,electro house,pop dance,progressive electro house,boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.74,0.709,6.0,-5.573,0.0,0.0674,0.0536,0.0,0.11,0.69,121.998,4.0,,Spinnin' Records,"C © 2021 SpinninRecords.com, P ℗ 2021 SpinninRecords.com",3169 +3170,spotify:track:6ZMbykUu07aL2Drx988zAq,River (feat. Ed Sheeran),"spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Eminem, Ed Sheeran",spotify:album:02BQFiWcFYKb5iJIKVpPap,Revival,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2017-12-14,https://i.scdn.co/image/ab67616d0000b273009dc7b4e062efa9614bb9b4,1,5,221013,https://p.scdn.co/mp3-preview/70ac140b126b7f6c1263c9070401cc782304ccdf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USUM71713011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap,pop,singer-songwriter pop,uk pop",0.757,0.738,8.0,-5.924,0.0,0.42,0.147,0.0,0.0783,0.654,90.042,4.0,,Aftermath,"C © 2017 Aftermath Records, P ℗ 2017 Aftermath Records",3170 +3171,spotify:track:3jS7bB0oXVOwGFZn3aE5NV,You Oughta Know - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,spotify:album:5Ap3F8CxjjsQKZGASDcHNA,Jagged Little Pill - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,1995,https://i.scdn.co/image/ab67616d0000b273242e643ea07118ecf677a6ef,1,2,249493,https://p.scdn.co/mp3-preview/4a21163f1a57a63106d1cfaa3802cfeda8c85cc4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,66,USMV21500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,lilith,neo mellow,pop rock,singer-songwriter",0.665,0.834,4.0,-7.737,1.0,0.0576,0.21,0.0,0.452,0.411,105.292,4.0,,Rhino/Maverick Records,"C © 1995 Maverick Recording Company. All Rights Reserved, P ℗ 1995 Maverick Recording Company. Marketed by Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",3171 +3172,spotify:track:4xhsWYTOGcal8zt0J161CU,Lovin On Me,spotify:artist:2LIk90788K0zvyj2JJVwkJ,Jack Harlow,spotify:album:6VCO0fDBGbRW8mCEvV95af,Lovin On Me,spotify:artist:2LIk90788K0zvyj2JJVwkJ,Jack Harlow,2023-11-10,https://i.scdn.co/image/ab67616d0000b273fcf4adae77baba5d0169e8e8,1,1,138411,https://p.scdn.co/mp3-preview/eeeb6151d0049367b3ad3db0389e9e3b116c0774?cid=9950ac751e34487dbbe027c4fd7f8e99,True,81,USAT22311371,spotify:user:bradnumber1,2024-03-27T20:54:48Z,"deep underground hip hop,hip hop,kentucky hip hop,pop rap,rap",0.943,0.558,2.0,-4.911,1.0,0.0568,0.0026,2.19e-06,0.0937,0.606,104.983,4.0,,Generation Now/Atlantic,"C © 2023 Generation Now/Atlantic Recording Corporation, P ℗ 2023 Generation Now/Atlantic Recording Corporation",3172 +3173,spotify:track:6I3mqTwhRpn34SLVafSH7G,Ghost,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:5dGWwsZ9iB2Xc3UKR0gif2,Justice,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2021-03-19,https://i.scdn.co/image/ab67616d0000b273e6f407c7f3a0ec98845e4431,1,11,153190,https://p.scdn.co/mp3-preview/10746d0627d5dd428001083030cf6726c5e92c67?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USUM72102635,spotify:user:bradnumber1,2022-07-25T00:19:42Z,"canadian pop,pop",0.601,0.741,2.0,-5.569,1.0,0.0478,0.185,2.91e-05,0.415,0.441,153.96,4.0,,RBMG/Def Jam,"C © 2021 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",3173 +3174,spotify:track:0mV43B6pJWRjcM5TmzNe6d,EveryTime I Cry,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,spotify:album:5W79aGcuoBYk0Mb2QL2Jcw,EveryTime I Cry,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,2021-06-08,https://i.scdn.co/image/ab67616d0000b27393fc5ac4fab909bf00efb02e,1,1,177855,https://p.scdn.co/mp3-preview/b1f1f1b115d54d7b85c22be58b6ee4f44d1930c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAT22102010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.727,0.832,9.0,-4.327,0.0,0.0366,0.181,0.0,0.0615,0.213,127.035,4.0,,Atlantic Records,"C © 2021 Atlantic Records Group LLC, P ℗ 2021 Atlantic Records Group LLC.",3174 +3175,spotify:track:6sqNctd7MlJoKDOxPVCAvU,My Happy Ending,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:7851Vsjv3apS52sXUik6iF,Under My Skin,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2004,https://i.scdn.co/image/ab67616d0000b2739c291af4bf0c3071847f2b80,1,6,242413,https://p.scdn.co/mp3-preview/152a7664beba40d2666fd5ec840ee5f8dfdfa8ec?cid=9950ac751e34487dbbe027c4fd7f8e99,True,69,USAR10400486,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,candy pop,dance pop,pop",0.414,0.936,2.0,-2.407,1.0,0.0758,0.00136,0.0,0.369,0.74,170.229,4.0,,Arista,P (P) 2004 Arista Records LLC,3175 +3176,spotify:track:6ddu5iDC6yv4BDSPR6GXX0,For the Good Times,spotify:artist:5v8jlSmAQfrkTjAlpUfWtu,Perry Como,spotify:album:2akbZSjwUR6L8pFa55dDGG,Legends - Perry Como,spotify:artist:5v8jlSmAQfrkTjAlpUfWtu,Perry Como,2004-09-21,https://i.scdn.co/image/ab67616d0000b27361631e5857045b7f79624694,1,13,217733,https://p.scdn.co/mp3-preview/a71968ced597f21c08203bc779b999999d7d6270?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USRC17304685,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.357,0.247,3.0,-13.584,1.0,0.0287,0.632,0.00031,0.196,0.306,89.794,4.0,,RCA Camden,P (P) This compilation 2004 BMG UK & Ireland Ltd.,3176 +3177,spotify:track:1XAzY43ReQgMuFQZIKjNTh,She's A Fool,spotify:artist:08b2PA6eFyugsWAk41eQKZ,Lesley Gore,spotify:album:0dfUGbWBn7pyc1npqyKOj1,Lesley Gore Sings Of Mixed-Up Hearts,spotify:artist:08b2PA6eFyugsWAk41eQKZ,Lesley Gore,1963-11-01,https://i.scdn.co/image/ab67616d0000b273996a0c4436f477dff924c822,1,1,127000,https://p.scdn.co/mp3-preview/e0aaee085b81913c2ebc3e1552af788c95789407?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR36309029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,bubblegum pop,classic girl group",0.538,0.375,3.0,-12.282,1.0,0.0305,0.802,0.0,0.31,0.598,121.096,4.0,,Universal Music Group,"C © 1963 Mercury Records, a Division of UMG Recordings, Inc., P ℗ 1963 Mercury Records, a Division of UMG Recordings, Inc.",3177 +3178,spotify:track:3X1a60iOm7XAJ1ZT1w2TVq,A Cowboy's Work Is Never Done,spotify:artist:71lGEtP9qYXDsSXjfexTqO,Sonny & Cher,spotify:album:6PMRzjwAfJBHdei2LBHCeI,Cher and Sonny & Cher Greatest Hits,"spotify:artist:72OaDtakiy6yFqkt4TsiFt, spotify:artist:71lGEtP9qYXDsSXjfexTqO","Cher, Sonny & Cher",1998-01-01,https://i.scdn.co/image/ab67616d0000b2732b02c13afdef318d4a499f91,1,7,194733,https://p.scdn.co/mp3-preview/957f2037d291c1307daed4f731e646174a74fa03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USMC17112872,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,folk,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.61,0.315,8.0,-14.12,1.0,0.0342,0.517,4.42e-06,0.361,0.58,135.521,4.0,,Geffen*,"C © 1998 Geffen Records, P This Compilation ℗ 1998 Geffen Records",3178 +3179,spotify:track:46OZwUIGXFDclUHJYjunOj,Angie Baby,spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,spotify:album:74rzaLTIHIDGF1515DC5gS,Free And Easy,spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,1974,https://i.scdn.co/image/ab67616d0000b27388407297049e1d046fe3a83f,1,1,210693,https://p.scdn.co/mp3-preview/8461ba89000f1b32d77f8b29dcb8e3ef8a94c350?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USCA28700778,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,mellow gold,soft rock",0.544,0.412,7.0,-12.628,0.0,0.0482,0.543,2.32e-05,0.0839,0.527,79.957,4.0,,Capitol Records,"C © 2006 Capitol Records Inc., P ℗ 2006 Capitol Records Inc.",3179 +3180,spotify:track:7z38bideBRvGAgjXe2SECm,Opposites Attract,spotify:artist:4PpmBoqphQusNFsxuVKb6j,Paula Abdul,spotify:album:7zduRJgS6v79QmNUhKGozu,Forever Your Girl,spotify:artist:4PpmBoqphQusNFsxuVKb6j,Paula Abdul,1988-01-01,https://i.scdn.co/image/ab67616d0000b273cb3cea7439a97660b3aedb8c,1,3,265373,https://p.scdn.co/mp3-preview/2b2ac220f8e83593eaeedcf899e1ed599fa27716?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USVI28800019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,soft rock",0.783,0.838,1.0,-8.838,1.0,0.0552,0.0327,2.65e-06,0.0519,0.939,117.791,4.0,,Virgin Records,"C © 1988 Virgin Records America, Inc., P ℗ 1988 Virgin Records America, Inc.",3180 +3181,spotify:track:3pVo71I0qbYM1NoytlDr1o,Passenger,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:5LCqrUiLJnv1RJTuwTbEA2,Internationalist,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,1998-01-01,https://i.scdn.co/image/ab67616d0000b2735cfbfbcd6a5816a82038429e,1,5,260973,https://p.scdn.co/mp3-preview/ab4040de96a1b4353ad3f6558b736196b6218cd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUPO09820089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.259,0.641,11.0,-6.571,0.0,0.0325,0.00837,0.0148,0.366,0.197,96.645,4.0,,Universal Music Australia Pty. Ltd.,"C © 1998 Polydor Records, P ℗ 1998 Polydor Records",3181 +3182,spotify:track:5TnkpUQB46cLVuHfuPBiZw,Real Wild Child (Wild One),spotify:artist:33EUXrFKGjpUSGacqEHhU4,Iggy Pop,spotify:album:39vZUsVRUvo1l2HwR7Cfpg,A Million In Prizes: Iggy Pop Anthology (Edited Version),spotify:artist:33EUXrFKGjpUSGacqEHhU4,Iggy Pop,2005-07-19,https://i.scdn.co/image/ab67616d0000b27357ebfccbef07ebff2a495843,2,7,219693,https://p.scdn.co/mp3-preview/9b4a555d54199023e64856f7076e4102b220a218?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USAM18600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,glam rock,permanent wave,protopunk,rock",0.494,0.96,4.0,-4.032,1.0,0.0488,0.0148,0.063,0.259,0.928,145.98,4.0,,Virgin Records,"C © 2006 Virgin Records America, Inc., P This Compilation ℗ 2006 Virgin Records America, Inc.",3182 +3183,spotify:track:4NiehSBQthimPzRsVeOgCT,My My My!,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,spotify:album:3MYJYd73u0SatCnRVvRJ3M,Bloom,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2018-08-31,https://i.scdn.co/image/ab67616d0000b273aae542061ac42ee04779fb2f,1,1,204726,https://p.scdn.co/mp3-preview/ecb419678fdb4fb56b1e5ddaaea3f9d7f9e27fc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,AUUM71701255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,viral pop",0.701,0.459,1.0,-7.749,1.0,0.084,0.00407,0.000155,0.045,0.481,102.964,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2019 Universal Music Australia Pty Ltd., P ℗ 2019 Universal Music Australia Pty Ltd.",3183 +3184,spotify:track:6qBSGvyUzqNQv8XtnzCr9n,Everybody Have Fun Tonight,spotify:artist:6Zh3xrWlA0SA9Fsfj9AVwm,Wang Chung,spotify:album:741fWPbQLcaYT0uVL32KCS,Mosaic,spotify:artist:6Zh3xrWlA0SA9Fsfj9AVwm,Wang Chung,1986-10-14,https://i.scdn.co/image/ab67616d0000b2738201d16e6ce2b8e4d2a8d1ae,1,1,287360,https://p.scdn.co/mp3-preview/cca133b78dd27f949702d8469028a31ac8913a8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USGF18611501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.728,0.619,9.0,-12.265,1.0,0.0379,0.0884,8.44e-05,0.039,0.747,128.845,4.0,,Geffen,"C © 1986 Geffen Records, P ℗ 1986 Geffen Records",3184 +3185,spotify:track:3mLLlN1ZdHmlJHkvNON7ou,Threnody (Bombs Away Remix),spotify:artist:2DYDFBqoaBP2i9XrTGpOgF,Naeleck,spotify:album:2CUUZuC9EhMcnU7zdNWWrI,Threnody,spotify:artist:2DYDFBqoaBP2i9XrTGpOgF,Naeleck,2016-12-26,https://i.scdn.co/image/ab67616d0000b273924fb5910f77d8d12100716d,1,2,247309,https://p.scdn.co/mp3-preview/9cc57c531c7adcce7044cc4c02b1f31262171e1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBLV61637048,spotify:user:bradnumber1,2023-05-14T11:32:38Z,"electro,hypertechno",0.836,0.926,2.0,-3.728,1.0,0.0495,0.000389,0.32,0.203,0.148,127.977,4.0,,Den Haku Records,"C 2016 Den Haku Records, P 2016 Den Haku Records",3185 +3186,spotify:track:72OrfuJ9RxfLCoqAMeKHCZ,Candy Girl,spotify:artist:1mFX1QlezK1lNPKQJkhwWb,New Edition,spotify:album:62OvMX7ymbmxO6TKiXDE4v,Candy Girl,spotify:artist:1mFX1QlezK1lNPKQJkhwWb,New Edition,1983,https://i.scdn.co/image/ab67616d0000b2735d1ab07d83983376b5addc6e,1,6,235373,https://p.scdn.co/mp3-preview/5225f8d8fd968969ebda12d549239dc4bdec24dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USWR39100014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.839,0.623,1.0,-13.712,1.0,0.108,0.346,0.0138,0.314,0.668,103.799,4.0,,Warlock Records,C (C) 1983 Warlock Records,3186 +3187,spotify:track:1kxPRJGVKGqjJM7BB44p0p,Errol - Remastered,spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,spotify:album:5FCC3e09sFPqZrXfozCXhF,Sirocco (Remastered),spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,1981-01-01,https://i.scdn.co/image/ab67616d0000b273be12aec8b32a132da28d3e3b,1,7,210720,https://p.scdn.co/mp3-preview/d6397a182afbaaaa29e102fdaee9b4560e49c183?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,AUUM71301826,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.613,0.772,0.0,-6.971,1.0,0.0422,0.0414,0.0,0.24,0.785,164.825,4.0,,Universal,"C © 2014 Universal Music Australia Pty Ltd., P ℗ 1981 Universal Music Australia Pty Ltd.",3187 +3188,spotify:track:41dDygR3r7e926oGUXfrLt,I Can't Go for That (No Can Do),spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,spotify:album:7rfpaXxmQG7dnFycZjLae0,Private Eyes (Expanded Edition),spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,1981,https://i.scdn.co/image/ab67616d0000b273c84b9bd63074979108c7c752,1,3,307306,https://p.scdn.co/mp3-preview/5780af796e94eb1bc54ac4fd86cb54b1d5c65ca0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USRC10301819,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,singer-songwriter,soft rock,yacht rock",0.889,0.441,0.0,-9.506,0.0,0.0379,0.0405,0.000788,0.038,0.963,110.565,4.0,,RCA/BMG Heritage,P (P) 1981 Sony Music Entertainment,3188 +3189,spotify:track:3HNTLCpAGnizbyJmk7466r,Never Let Me Go,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,spotify:album:19J2iqK89BCrNG4El2FRi5,Ceremonials (Original Deluxe Version),spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2011-01-01,https://i.scdn.co/image/ab67616d0000b2736a8c1075f751a78e0b7799c7,1,4,270973,https://p.scdn.co/mp3-preview/1d815b22a6ae38f954958a1c115e2048dcd2872d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBUM71107580,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop",0.478,0.735,9.0,-3.212,1.0,0.0372,0.299,1.94e-06,0.381,0.246,144.727,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Universal Island Records, a division of Universal Music Operations Limited",3189 +3190,spotify:track:31A3oqQxDLdG9HRx45z62d,I Only Want To Be With You,spotify:artist:5zaXYwewAXedKNCff45U5l,Dusty Springfield,spotify:album:2coXvs2zYk60U9Dd2hm6St,Stay Awhile / I Only Want To Be With You,spotify:artist:5zaXYwewAXedKNCff45U5l,Dusty Springfield,1964-06-26,https://i.scdn.co/image/ab67616d0000b273bb09aed3154e3eed4dbba057,1,1,158200,https://p.scdn.co/mp3-preview/8c8db8136b50d7d5d388ded9c924d24ea7b9a569?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBF086300133,spotify:user:bradnumber1,2023-02-14T22:25:53Z,"adult standards,british invasion,folk rock,soul,vocal jazz",0.602,0.684,7.0,-8.021,1.0,0.029,0.103,0.0,0.175,0.961,133.0,4.0,,Mercury Records,"C © 1964 UMG Recordings Inc., P This Compilation ℗ 1999 UMG Recordings Inc.",3190 +3191,spotify:track:4DoE6eF5rYn5OfXsbZorW5,I'm Outta Love,spotify:artist:2siHvYaxjaW5rKVRiIrMYH,Anastacia,spotify:album:0uO5BAM0HsJoC4PQxXKDAf,The Best of Anastacia,spotify:artist:2siHvYaxjaW5rKVRiIrMYH,Anastacia,2010-02-10,https://i.scdn.co/image/ab67616d0000b273ea4b2eb671cbb93cb89f7f04,1,1,245400,https://p.scdn.co/mp3-preview/dfff6a4a7e4dfd163f345e3949626701d8193fce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM19921724,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop soul,0.761,0.716,10.0,-5.8,0.0,0.056,0.396,0.0,0.0771,0.649,119.41,4.0,,Epic/Legacy,"P (P) 2005 Wind-up Records, LLC, 1999, 2000, 2001, 2002, 2003, 2004, 2005 SONY BMG MUSIC ENTERTAINMENT, 2005 Sony BMG Music Entertainment (Netherlands) B.V.",3191 +3192,spotify:track:0UwEkxhXhcdyIfQpTACpQK,Hard To Get To Love,spotify:artist:0LC7NokdNKQaBjwu5xaFjO,Chris Sebastian,spotify:album:2bBPb0X6f5t2SxBTqWGOIC,Hard To Get To Love,spotify:artist:0LC7NokdNKQaBjwu5xaFjO,Chris Sebastian,2021-03-05,https://i.scdn.co/image/ab67616d0000b27377529a4be337bc93cb47a085,1,1,144868,https://p.scdn.co/mp3-preview/9c17b1fb1bfd80523283e9330e6aa2e5bbd47d56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUUM72100032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.626,0.777,0.0,-3.958,1.0,0.0787,0.0943,0.0,0.422,0.674,171.945,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2021 Universal Music Australia Pty. Limited., P ℗ 2021 Universal Music Australia Pty. Limited.",3192 +3193,spotify:track:4zXp1M2eaaJbTP074be40B,I'm Your Little Boy,spotify:artist:2V4AS8qG0fOsXkH1AgLlB8,Heintje,spotify:album:0SzGQ3f7dFAWVnTafXLB78,I'm Your Little Boy,spotify:artist:2V4AS8qG0fOsXkH1AgLlB8,Heintje,1970,https://i.scdn.co/image/ab67616d0000b273505d08a3095507705151aa42,1,1,165920,https://p.scdn.co/mp3-preview/5f67ae2f09c1b0dab2eb9682f52e0e8609827c2c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,NLA249700114,spotify:user:bradnumber1,2021-08-08T09:26:31Z,volksmusik,0.45,0.522,5.0,-7.892,1.0,0.0377,0.817,3.93e-05,0.254,0.507,126.007,4.0,,CNR Music,"C 1970 CNR Music B.V., P 1970 CNR Music B.V.",3193 +3194,spotify:track:4DBkrkVzx7jxxIjxI6FYvz,This Is How We Do,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:4lFDt4sVpCni9DRHRmDjgG,PRISM (Deluxe),spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2013-01-01,https://i.scdn.co/image/ab67616d0000b273078cfcd17022e7fac7f59a1d,1,7,204285,https://p.scdn.co/mp3-preview/3a8cfff173b5ddd146ef51d03d4a36c3846bd6fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71311297,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.686,0.633,9.0,-6.073,0.0,0.0483,0.0231,0.0,0.0831,0.8,96.027,4.0,,Universal Music Group,"C © 2013 Capitol Records, LLC, P ℗ 2013 Capitol Records, LLC",3194 +3195,spotify:track:2AvmhnnbhQviNGuZySQUsZ,Open Season,spotify:artist:64PJHZDQTPPVBCdwnv22Wz,Josef Salvat,spotify:album:2aFCp5RljXVVhIkRRJ3kaU,Open Season,spotify:artist:64PJHZDQTPPVBCdwnv22Wz,Josef Salvat,2014-09-26,https://i.scdn.co/image/ab67616d0000b27367a9938b6aebeec5c5888b15,1,1,243113,https://p.scdn.co/mp3-preview/7cdb685d76d7d9cd385204be4bcfea478452f406?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1401154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,gauze pop,0.597,0.64,9.0,-6.376,1.0,0.0627,0.0164,0.000429,0.164,0.331,89.989,4.0,,Liberation Records,"C 2014 Liberation Music, P 2014 Liberation Music",3195 +3196,spotify:track:4Oqg0RD3ywUXEtt7seShF0,Break Your Heart,"spotify:artist:6MF9fzBmfXghAz953czmBC, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi","Taio Cruz, Ludacris",spotify:album:7CCqoU4oEIV3bSLm75IL5n,Rokstarr (Special Edition),spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,2011-01-01,https://i.scdn.co/image/ab67616d0000b273cb3c02f19237ff14c433136f,1,2,185186,https://p.scdn.co/mp3-preview/08cc1a07cfc15ba3bcf6371b601d9b989e62e1d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBUM71003723,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap",0.672,0.889,8.0,-4.74,1.0,0.0289,0.0023,0.0,0.241,0.68,122.034,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records Ltd. A Universal Music Company., P ℗ 2011 Universal Island Records Ltd. A Universal Music Company.",3196 +3197,spotify:track:7cbgTMlkBo3BrYXDBNHvMv,I Owe You Nothing,"spotify:artist:2LKrAJVB1842xPDvx4uuwU, spotify:artist:7KFVI7yFvLDdoSzO6clGp6, spotify:artist:6B1sxaPpj8VcfRAKlHWMhV","Bros, Ric Wake, Bob Cadway",spotify:album:2Fge13BVj9xQN1VAzylpu5,Push (Deluxe Edition),spotify:artist:2LKrAJVB1842xPDvx4uuwU,Bros,2013-11-08,https://i.scdn.co/image/ab67616d0000b27304ac00b52282fa61045ad3dd,1,6,220186,https://p.scdn.co/mp3-preview/8340f8816d957ce63b961df7611e8d17a66cc2df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBBBN8800021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop",0.675,0.862,6.0,-6.363,0.0,0.0388,0.0754,0.0,0.193,0.838,124.045,4.0,,Sony Music UK,P (P) 2013 Sony Music Entertainment UK Limited,3197 +3198,spotify:track:6naxalmIoLFWR0siv8dnQQ,Oops!...I Did It Again,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:5PmgtkodFl2Om3hMXONDll,Oops!... I Did It Again,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2000-05-16,https://i.scdn.co/image/ab67616d0000b2732aa20611c7fb964a74ab01a6,1,1,211160,https://p.scdn.co/mp3-preview/66a5cf0f69b1bb1e8930821881b71756151c5f68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USJI10000100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.751,0.834,1.0,-5.444,0.0,0.0437,0.3,1.77e-05,0.355,0.894,95.053,4.0,,Jive,P (P) 2000 Zomba Recording LLC,3198 +3199,spotify:track:5z5wYWL1IO6y2yEFBOiGt0,Insomnia,"spotify:artist:5T4UKHhr4HGIC0VzdZQtAE, spotify:artist:6hFSukEzqXAkCIcXNnctZ4, spotify:artist:4tc9NREea7ncB7JzqdBsj5","Faithless, Rollo Armstrong, Sister Bliss",spotify:album:23sHIDobtNn5ykGLxqLTMT,Reverence,spotify:artist:5T4UKHhr4HGIC0VzdZQtAE,Faithless,1996,https://i.scdn.co/image/ab67616d0000b2730098425520027a88ac8196b9,1,6,527240,https://p.scdn.co/mp3-preview/ed8771b303ddb22d6e2dbbe8165f4d91db98edf3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBBXH9820026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,downtempo,electronica,trip hop",0.785,0.579,7.0,-10.069,1.0,0.0356,0.18,0.543,0.168,0.262,127.003,4.0,,Arista,"P (P) 1997 Arista Records, Inc.",3199 +3200,spotify:track:76sWab9iC3vvk21aln8G8t,I'm Into You,"spotify:artist:2DlGxzQSjYe5N6G9nkYghR, spotify:artist:55Aa2cqylxrFIXC767Z865","Jennifer Lopez, Lil Wayne",spotify:album:3sysiYphqNRQw7VKLCg1yE,Love?,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2011-04-29,https://i.scdn.co/image/ab67616d0000b273d7b2aa3834b82b1cbe899a48,1,3,200133,https://p.scdn.co/mp3-preview/6f15e5a64f7d04799cacd6a58575e0748669d8fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USUM71104906,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,hip hop,new orleans rap,pop rap,rap,trap",0.592,0.747,8.0,-4.439,0.0,0.137,0.0176,0.0,0.0752,0.697,83.926,4.0,,Nuyorican Productions / IDJ,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",3200 +3201,spotify:track:5PKWUDfQFtc5qqo8cs1gQp,Set Fire to the Rain,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7n3QJc7TBOxXtlYh4Ssll8,21,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2011-01-19,https://i.scdn.co/image/ab67616d0000b273ba764098164f221484bcc309,1,5,242973,https://p.scdn.co/mp3-preview/6fc68c105e091645376471727960d2ba3cd0ee01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBBKS1000348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.603,0.67,2.0,-3.882,0.0,0.0249,0.00408,1.66e-06,0.112,0.445,107.995,4.0,,XL Recordings,"C 2011 XL Recordings Ltd., P 2011 XL Recordings Ltd.",3201 +3202,spotify:track:7nYS7mmZh0K8EbM8DBRwb9,Life for Rent,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,spotify:album:7HlZFlk0jJq3Bb03AOyMTE,Life For Rent,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,2003,https://i.scdn.co/image/ab67616d0000b273d41b79f27ef8d8df5a191219,1,3,221053,https://p.scdn.co/mp3-preview/e73c8ef3278a4dbf6a7922fc843256c880a30003?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBBXH0300037,spotify:user:bradnumber1,2022-12-21T10:16:17Z,"dance pop,europop,lilith,neo mellow,pop rock",0.492,0.535,3.0,-7.263,1.0,0.0298,0.187,0.0,0.128,0.117,83.033,4.0,,Sony BMG Music UK,P (P) 2008 Sony BMG Music Entertainment (UK) Limited,3202 +3203,spotify:track:1L1MWnX8hpdkHWCR4wFk7G,The Loco-Motion,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:5bwtR8I9eFLsOU9WWNlw5b,Kylie,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,1988-07-04,https://i.scdn.co/image/ab67616d0000b27318f74e46bedbecababbc64ce,1,2,194133,https://p.scdn.co/mp3-preview/c7bfd968cfbe109f118c5842bbb84c64373c7d6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUMU08700142,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.762,0.823,3.0,-11.271,1.0,0.035,0.428,0.173,0.0243,0.8,128.997,4.0,,WM Australia,"C © 1988 Mushroom Records Pty Ltd, P ℗ 1988 Mushroom Records Pty Ltd",3203 +3204,spotify:track:0jQvysmjtBMRNjmHLe3gZK,Undressed,spotify:artist:1FbsmLXvj5CccZj6JLk46Z,Kim Cesarion,spotify:album:0CqhHKvlSp7s4T9AtwlXhE,Undressed,spotify:artist:1FbsmLXvj5CccZj6JLk46Z,Kim Cesarion,2014-06-13,https://i.scdn.co/image/ab67616d0000b273065c7e3a137a96a42e7f2ad4,1,1,222000,https://p.scdn.co/mp3-preview/dd794e6513a44922001cca6b93c6b4deb6be2886?cid=9950ac751e34487dbbe027c4fd7f8e99,True,48,SEWPF1300101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"swedish pop,swedish soul",0.805,0.834,2.0,-4.713,1.0,0.0306,0.145,4.46e-06,0.201,0.642,119.966,4.0,,RCA Records Label,P All tracks (P) 2014; except tracks 1 & 8 (P) 2013 Aristotracks AB under exclusive license to Sony Music Entertainment UK Limited,3204 +3205,spotify:track:00Mb3DuaIH1kjrwOku9CGU,Sk8er Boi,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:3zXjR3y2dUWklKmmp6lEhy,Let Go,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2002-06-04,https://i.scdn.co/image/ab67616d0000b273f7ec724fbf97a30869d06240,1,3,204000,https://p.scdn.co/mp3-preview/7891901b2270cc8ef724f64db5bb97be081329d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USAR10200229,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,candy pop,dance pop,pop",0.487,0.9,0.0,-4.417,1.0,0.0482,6.79e-05,0.0,0.358,0.484,149.937,4.0,,Arista,"P (P) 2002 Arista Records, LLC",3205 +3206,spotify:track:25nzKGDiua1lE9Qo5V19GL,Young Blood,spotify:artist:0oeUpvxWsC8bWS6SnpU8b9,The Naked And Famous,spotify:album:5ImvJCAX33Pt2XGMaYaMia,"Passive Me, Aggressive You",spotify:artist:0oeUpvxWsC8bWS6SnpU8b9,The Naked And Famous,2010,https://i.scdn.co/image/ab67616d0000b273494e33d225ef37180f88c8ce,1,7,246600,https://p.scdn.co/mp3-preview/84f597711c2af3ce90921b2656033208603950c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,NZNK11000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"auckland indie,indietronica,kiwi rock,metropopolis",0.579,0.865,6.0,-4.692,1.0,0.0302,5.63e-05,0.000221,0.649,0.358,104.99,4.0,,Polydor Records,"C © 2011 Somewhat Damaged, Under Exclusive License To Polydor UK Ltd., P ℗ 2011 Somewhat Damaged, Under Exclusive License To Polydor UK Ltd.",3206 +3207,spotify:track:1MTMedlCphum6mRcd8YzvE,You Give Love A Bad Name,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0C8Poy7zwJ1kQh2sldyvHm,Bon Jovi Greatest Hits,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b27366e4150921726f65a2c5110c,1,2,223146,https://p.scdn.co/mp3-preview/8725d17310a4bb00377f22ef21fe93fc5fbff0da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF059290010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.533,0.963,0.0,-2.528,0.0,0.0562,0.0353,1.33e-06,0.368,0.789,122.812,4.0,,Universal/Island Def Jam,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",3207 +3208,spotify:track:0dA2Mk56wEzDgegdC6R17g,Stay (with Alessia Cara),"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:2wUjUUtkb5lvLKcGKsKqsR","Zedd, Alessia Cara",spotify:album:0VMGOBhLrC5Q2bfZnrocVN,Stay,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:2wUjUUtkb5lvLKcGKsKqsR","Zedd, Alessia Cara",2017-02-23,https://i.scdn.co/image/ab67616d0000b27391a70f95efc3400f696e89cc,1,1,210090,https://p.scdn.co/mp3-preview/264d0f4ee99b296da9d43c4ddd0ffa265c25b247?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71700736,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,canadian contemporary r&b,canadian pop,pop",0.679,0.634,5.0,-5.024,0.0,0.0654,0.232,0.0,0.115,0.498,102.013,4.0,,Universal Music Group,"C © 2017 Interscope Records, P ℗ 2017 Interscope Records",3208 +3209,spotify:track:57pG9UVXGG8JcIdAVBXYAM,Touch Me In The Morning - First Pressing Single Version,spotify:artist:3MdG05syQeRYPPcClLaUGl,Diana Ross,spotify:album:55bhTW7p0YpAr1Oawj6REI,Touch Me In The Morning (Expanded Edition),spotify:artist:3MdG05syQeRYPPcClLaUGl,Diana Ross,1973-06-22,https://i.scdn.co/image/ab67616d0000b2739cc121d692978a35b185e681,1,1,233106,https://p.scdn.co/mp3-preview/3f0f3ff2da9995a9731bf5fdf3e775a4fba5189b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USUM70917181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,disco,motown,quiet storm,soft rock,soul",0.439,0.537,6.0,-8.676,1.0,0.0326,0.226,1.91e-06,0.111,0.586,137.067,4.0,,Hip-O Select,"C © 2009 Motown Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 2009 Motown Records, a Division of UMG Recordings, Inc.",3209 +3210,spotify:track:6qB7YcFpeBEQa0D6QO482y,"It Must Have Been Love - From the Film ""Pretty Woman""",spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:6Zd1OLqFX5geleqvJ9xtAL,Don't Bore Us - Get to the Chorus! Roxette's Greatest Hits,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,1995-10-23,https://i.scdn.co/image/ab67616d0000b273a4eb3cb9f09b48c457ea5494,1,7,258786,https://p.scdn.co/mp3-preview/361fd8946cd20110a0267af87ef5b98ac1c6e7a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,SEAMA8777131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.52,0.652,5.0,-6.655,1.0,0.0274,0.34,5.49e-05,0.256,0.722,80.609,4.0,,WM Sweden,"C © 1995 Parlophone Music Sweden AB, a Warner Music Group Company, P ℗ 1995 Parlophone Music Sweden AB, a Warner Music Group Company",3210 +3211,spotify:track:49ZEWSKtYA3vpPdPLDW9b3,Black & Blue,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:3Gx58ibjQuiP6DnHu6bOhS,Black & Blue,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b9a5d04d17225cb659b8dc3b,1,1,219314,https://p.scdn.co/mp3-preview/ef416109a9c64a5918ed92b80ecf4e394dc2cc3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUBM01500470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.775,0.777,9.0,-4.725,0.0,0.33,0.278,0.000117,0.243,0.379,114.01,4.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,3211 +3212,spotify:track:6N9uyMZf9pbNOuomveWscp,I Wanna Be Down,spotify:artist:05oH07COxkXKIMt6mIPRee,Brandy,spotify:album:2yHJoGH0mIqYVAHUFKJcZ6,Brandy,spotify:artist:05oH07COxkXKIMt6mIPRee,Brandy,1994,https://i.scdn.co/image/ab67616d0000b273631fa0b99b2d12e9ecd4ae72,1,4,291666,https://p.scdn.co/mp3-preview/c1d733f339a65b332def005587c18a2ee1bea7c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT20901760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,hip pop,r&b,urban contemporary",0.703,0.469,11.0,-6.515,0.0,0.0415,0.177,0.0,0.726,0.661,86.038,4.0,,Rhino Atlantic,"C © 1994 Atlantic Recording Corp., P ℗ 1994 Atlantic Recording Corp. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",3212 +3213,spotify:track:47gmoUrZV3w20JAnQOZMcO,Blue Suede Shoes,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:7GXP5OhYyPVLmcVfO9Iqin,Elvis Presley,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1956-03-23,https://i.scdn.co/image/ab67616d0000b273f45cec7e72b9dec993c18872,1,1,119200,https://p.scdn.co/mp3-preview/e43f2846421b0b326e2fc01716e9833d9eb2cfe6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRC15602848,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.557,0.66,2.0,-7.706,1.0,0.056,0.654,1.66e-06,0.138,0.962,95.252,4.0,,RCA Victor,P (P) 1956 Sony Music Entertainment,3213 +3214,spotify:track:7Jh1bpe76CNTCgdgAdBw4Z,Heroes - 2017 Remaster,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,spotify:album:4I5zzKYd2SKDgZ9DRf5LVk,"""Heroes"" (2017 Remaster)",spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,1977,https://i.scdn.co/image/ab67616d0000b273204f41d52743c6a9efd62985,1,3,371413,https://p.scdn.co/mp3-preview/9c4ff8b06fa3aa92572737ab3616578b20993e14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USJT11700005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,glam rock,permanent wave,rock",0.489,0.758,7.0,-6.491,1.0,0.0297,0.000678,0.49,0.092,0.435,112.113,4.0,,Parlophone UK,"C © 2017 Jones/Tintoretto Entertainment Company LLC, P ℗ 1977, 2017 Jones/Tintoretto Entertainment Company LLC under exclusive license to Parlophone Records Ltd, a Warner Music Group Company",3214 +3215,spotify:track:4f4RRYN3R7glPElFjeoUnC,The Night Chicago Died,spotify:artist:33W24YuaMUEk85MwRX6cRs,Paper Lace,spotify:album:4wcSa3LqH3JOQC7DTVIzpp,Billy Don't Be A Hero,spotify:artist:33W24YuaMUEk85MwRX6cRs,Paper Lace,2008-06-01,https://i.scdn.co/image/ab67616d0000b273f872b58343b6ddbf58255a82,1,2,203333,https://p.scdn.co/mp3-preview/6a9d2f70dac49331898ed006c1df0fec9c191ffc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USA560805017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic uk pop",0.767,0.45,0.0,-12.352,1.0,0.0824,0.347,0.0,0.113,0.809,106.847,4.0,,Purple Pyramid,C 2008 Purple Pyramid Records,3215 +3216,spotify:track:64eZ2hy7R21VDPgzeQrb9q,Blue Sky Mine - Remastered,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:2H371tT3IIvmqji0iZCp0O,20000 Watt RSL - The Midnight Oil Collection,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1997,https://i.scdn.co/image/ab67616d0000b27318c8f4eca624b080ed00ba42,1,7,260160,https://p.scdn.co/mp3-preview/e72b72c0c51ece18f3b3231bf1e922adf7a3e9f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUSM09700188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.669,0.775,1.0,-6.059,1.0,0.0275,0.0388,0.00349,0.118,0.811,132.019,4.0,,Columbia,P 1997 Sony Music Productions Pty. Ltd.,3216 +3217,spotify:track:7FgjfoVQ6Wn1Nm53N5Upn8,Crazy Mama,spotify:artist:06nsZ3qSOYZ2hPVIMcr1IN,J.J. Cale,spotify:album:3cpNHI7xhNIosF9WjSk8Zh,Naturally,spotify:artist:06nsZ3qSOYZ2hPVIMcr1IN,J.J. Cale,1972,https://i.scdn.co/image/ab67616d0000b27336f87f70bd74db7f54652179,1,7,142866,https://p.scdn.co/mp3-preview/6dc8b49a406fb9a9b917e2077ae7165ff6a9248c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,NLF057290009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,blues rock,folk rock,roots rock,singer-songwriter",0.828,0.0786,11.0,-19.45,1.0,0.0418,0.7,0.213,0.0769,0.485,96.178,4.0,,Universal International Music B.V.,"C © 1972 Universal International Music B.V., P ℗ 1972 Universal International Music B.V.",3217 +3218,spotify:track:5YaskwnGDZFDRipaqzbwQx,Your Love (9PM),"spotify:artist:7jZM5w05mGhw6wTB1okhD9, spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:5Wg2b4Mp42gicxEeDNawf7","ATB, Topic, A7S",spotify:album:7F9yYqHRtIZnEGF2tANI4b,Your Love (9PM),"spotify:artist:7jZM5w05mGhw6wTB1okhD9, spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:5Wg2b4Mp42gicxEeDNawf7","ATB, Topic, A7S",2021-01-15,https://i.scdn.co/image/ab67616d0000b273f1462ebfec5f96421f44dcd3,1,1,150052,https://p.scdn.co/mp3-preview/c9bf73af2e81f0c8e8190a2de378cc8e9aa1dd29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,DECE72003523,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german dance,german techno,german trance,trance,german dance,pop dance,pop edm,uk dance,pop dance,scandipop",0.669,0.784,7.0,-5.603,1.0,0.112,0.194,6.28e-06,0.115,0.517,125.993,4.0,,Virgin,"C © 2021 ATB x Topic x A7S, under exclusive license to Universal Music GmbH, P ℗ 2021 ATB x Topic x A7S, under exclusive license to Universal Music GmbH",3218 +3219,spotify:track:5hYTyyh2odQKphUbMqc5gN,"How Far I'll Go - From ""Moana""",spotify:artist:2wUjUUtkb5lvLKcGKsKqsR,Alessia Cara,spotify:album:25IBuKrmZbgOVCGNigTXar,"How Far I'll Go (From ""Moana"")",spotify:artist:2wUjUUtkb5lvLKcGKsKqsR,Alessia Cara,2016-10-28,https://i.scdn.co/image/ab67616d0000b273fb128b1eda22335050f584fe,1,1,175517,https://p.scdn.co/mp3-preview/2cf96553b9434ccefb5efeb165cf78ecfd9c0d59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWD11677601,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.314,0.555,9.0,-9.601,1.0,0.37,0.157,0.000108,0.067,0.159,179.666,4.0,,Walt Disney Records,"C © 2016 Disney Enterprises, Inc., P ℗ 2016 Walt Disney Records",3219 +3220,spotify:track:4uQY80TKE1u4ZQZQKHzVEi,The One That Got Away,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:06SY6Ke6mXzZHhURLVU57R,Teenage Dream,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2010-08-24,https://i.scdn.co/image/ab67616d0000b273f619042d5f6b2149a4f5e0ca,1,7,227333,https://p.scdn.co/mp3-preview/4c37249b9fc2962f5ef829e216314e9caeaee367?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USCA21001266,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.689,0.795,1.0,-4.021,0.0,0.0356,0.000812,1.07e-06,0.156,0.876,133.968,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",3220 +3221,spotify:track:7eJMfftS33KTjuF7lTsMCx,death bed (coffee for your head),"spotify:artist:6bmlMHgSheBauioMgKv2tn, spotify:artist:35l9BRT7MXmM8bv2WDQiyB","Powfu, beabadoobee",spotify:album:2p9gK2BcdrloHNJwarc9gc,death bed (coffee for your head),"spotify:artist:6bmlMHgSheBauioMgKv2tn, spotify:artist:35l9BRT7MXmM8bv2WDQiyB","Powfu, beabadoobee",2020-02-08,https://i.scdn.co/image/ab67616d0000b273bf01fd0986a195d485922167,1,1,173333,https://p.scdn.co/mp3-preview/e88548073883ae36ba42ee5f1d1096568e417737?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USSM12000925,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"sad lo-fi,sad rap,bedroom pop,bubblegrunge,indie pop,pov: indie",0.726,0.431,8.0,-8.765,0.0,0.135,0.731,0.0,0.696,0.348,144.026,4.0,,Columbia,P (P) 2020 Columbia Records [Robots and Humans].,3221 +3222,spotify:track:3ah00c31Rakc6gxl6eIfcS,Feel like Makin' Love - 2015 Remaster,spotify:artist:5AEG63ajney2BoDXi0Vb84,Bad Company,spotify:album:6EUDvD8MzU03bRHOCyV2YD,Rock 'n' Roll Fantasy: The Very Best of Bad Company,spotify:artist:5AEG63ajney2BoDXi0Vb84,Bad Company,2015-10-02,https://i.scdn.co/image/ab67616d0000b273a4a583e0ee244e0e75f800cf,1,7,314600,https://p.scdn.co/mp3-preview/69478391fad451b32e0e6050d5359ee01ab337f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USAT21405193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,glam metal,hard rock,mellow gold,rock,singer-songwriter,soft rock,southern rock",0.534,0.546,7.0,-9.67,1.0,0.031,0.347,0.0036,0.633,0.762,85.357,4.0,,Rhino Atlantic,"C © 2015 Rhino Entertainment Company, A Warner Music Group Company, P ℗ 2015 Rhino Entertainment Company, A Warner Music Group Company. All Rights Reserved. Marketed By Rhino Entertainment Company.",3222 +3223,spotify:track:3gbBpTdY8lnQwqxNCcf795,Pompeii,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,spotify:album:64fQ94AVziavTPdnkCS6Nj,Bad Blood,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,2013-01-01,https://i.scdn.co/image/ab67616d0000b273258225089decfb3d5c3718d3,1,1,214147,https://p.scdn.co/mp3-preview/18da10d3596cdce4434dbeebf94fc75790217d50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAAA1200795,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop",0.679,0.715,9.0,-6.383,1.0,0.0407,0.0755,0.0,0.271,0.571,127.435,4.0,,EMI (Virgin),"C © 2013 Virgin Records Limited, P ℗ 2013 Virgin Records Limited",3223 +3224,spotify:track:1BPvxrMilju3S1ys7bP3jg,Comedown,spotify:artist:78SHxLdtysAXgywQ4vE0Oa,Bush,spotify:album:1U2mf4BHkwiS3posYhSHFd,Sixteen Stone,spotify:artist:78SHxLdtysAXgywQ4vE0Oa,Bush,1994-12-06,https://i.scdn.co/image/ab67616d0000b273d7e11e90e4c81c7603daefc0,1,5,326600,https://p.scdn.co/mp3-preview/5ba176898b7913a93e96c5b9946e997cdc7bcb52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US4L89401005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,nu metal,post-grunge,rock",0.464,0.734,11.0,-7.749,0.0,0.0572,0.000152,0.000285,0.109,0.411,139.67,4.0,,Round Hill Records,"C (C) 1994 Kirtland Records, P (P) 1994 Kirtland Records",3224 +3225,spotify:track:39GVxN9q7OqFSCO8LtcaDf,Superstar,spotify:artist:3f5W9NEwkc1SAIPFuumcaf,Jamelia,spotify:album:7J2vbGPE3ozC6RJkAoj4N0,Jamelia - The Collection,spotify:artist:3f5W9NEwkc1SAIPFuumcaf,Jamelia,2009-07-27,https://i.scdn.co/image/ab67616d0000b273460adba5bd20e694f1872d6c,1,1,215480,https://p.scdn.co/mp3-preview/358d988a49cb3b5d627b0c36564a2d3a38149505?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE0202055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,europop,talent show",0.801,0.645,1.0,-6.93,1.0,0.0356,0.0457,0.0,0.0357,0.824,110.01,4.0,,Parlophone UK,"C 2009 Parlophone Records Ltd, a Warner Music Group Company, P 2009 Parlophone Records Ltd, a Warner Music Group Company",3225 +3226,spotify:track:7aDPIJ0fVPbCG5vkbrZ54u,In This Life,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:7z8Vq0eUnTxzloU5e2ONWb,Delta,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2007-10-20,https://i.scdn.co/image/ab67616d0000b2733f15a84fea6328c29e9b8a6e,1,2,227720,https://p.scdn.co/mp3-preview/588d5b091e6faea30416118120c76e4ac316f1a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00700609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.371,0.927,9.0,-3.027,1.0,0.0618,0.0149,0.0,0.342,0.462,168.103,4.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,3226 +3227,spotify:track:44xykY61s1aKsgf40A5cyI,Mother's Little Helper,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:1MaP82K4mOoGYW5Ej0eUyM,Aftermath (UK Version),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1966-04-15,https://i.scdn.co/image/ab67616d0000b273398405e5bda507a0e50e6d2d,1,1,164893,https://p.scdn.co/mp3-preview/90b0b32c13293c20e8b6bcbb2e86278e9458021d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USA176610270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.582,0.545,4.0,-11.677,0.0,0.0298,0.017,4.05e-06,0.229,0.721,101.691,4.0,,"ABKCO Music and Records, Inc.","C © 2002 ABKCO Music & Records Inc., P ℗ 2002 ABKCO Music & Records Inc.",3227 +3228,spotify:track:54b8qPFqYqIndfdxiLApea,Alone,spotify:artist:34jw2BbxjoYalTp8cJFCPv,Heart,spotify:album:56dfEbntfVTMCxjrjggL1e,Bad Animals,spotify:artist:34jw2BbxjoYalTp8cJFCPv,Heart,1987-06-06,https://i.scdn.co/image/ab67616d0000b27309467e05060a265e54c5b2b3,1,2,218733,https://p.scdn.co/mp3-preview/2c4286990387cbb419d7456dc9805feadfc32b20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USCA28700690,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,new wave pop,rock,singer-songwriter,soft rock",0.418,0.452,1.0,-13.099,1.0,0.0355,0.638,0.000252,0.0959,0.168,175.124,4.0,,Capitol Records,"C © 1987 Capitol Records Inc., P ℗ 1987 Capitol Records Inc.",3228 +3229,spotify:track:3CYnpM1LjZ9I7RLJTraefV,We Are the Champions (Ding a Dang Dong) - Radio Edit,spotify:artist:4J3wzDMI97AlGimdiVcaLb,Crazy Frog,spotify:album:0HW01yF3YGH7nlg3TTllHh,Best of Crazy Hits,spotify:artist:4J3wzDMI97AlGimdiVcaLb,Crazy Frog,2009-12-11,https://i.scdn.co/image/ab67616d0000b273ad55db15ffc0ae77f9bb62bb,1,22,179600,https://p.scdn.co/mp3-preview/72600309618a12bb05dba4b1668c49d06e0128a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEAF71578232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.634,0.949,10.0,-2.786,1.0,0.0826,0.494,0.00101,0.27,0.336,130.005,4.0,,Mach 1,"C 2014 B1 Music Holding Ltd, P 2014 B1 Music Holding Ltd",3229 +3230,spotify:track:75wP08AtMfGfjk0nPdvVw3,Runnin' Down A Dream,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:7ait6chB3O3C1fMGUDJhtu,Anthology: Through The Years,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,2000-01-01,https://i.scdn.co/image/ab67616d0000b2736cfd76ded516a7f12768a4b2,2,11,264333,https://p.scdn.co/mp3-preview/77a14a7fe6a62c86fece814d00a5fd55d2b34aa2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC18925680,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.467,0.955,9.0,-6.043,1.0,0.0462,0.00072,0.426,0.494,0.68,169.776,4.0,,Interscope,"C © 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc.",3230 +3231,spotify:track:4ewmL6GsJWrSfomqMF3CzV,My Kind Of Scene,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:5EmYAq4NagWeuaaEvzOmac,Odyssey Number Five,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2000-01-01,https://i.scdn.co/image/ab67616d0000b273c2c400c36db8870048859fe1,1,7,277333,https://p.scdn.co/mp3-preview/63b12245009a78cb969b4f3b08eec386fc9bc3d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00010046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.46,0.467,0.0,-8.208,1.0,0.029,0.012,0.015,0.0758,0.139,159.555,4.0,,Universal Music Group,"C © 2000 Grudge Records Australia, A Universal Music Company, P ℗ 2000 Grudge Records Australia, A Universal Music Company",3231 +3232,spotify:track:3qonjOrhFCfTnaaMruHzxW,Dangerously,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:5Nwsra93UQYJ6xxcjcE10x,Nine Track Mind,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2016-01-29,https://i.scdn.co/image/ab67616d0000b273633a2d775747bccfbcb17a45,1,2,199133,https://p.scdn.co/mp3-preview/3fd9672bb6a8ef91626a78888bdf4793c3932193?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USAT21502907,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop",0.696,0.517,2.0,-8.379,0.0,0.0366,0.364,0.0,0.197,0.23,112.291,3.0,,Artist Partner,"C © 2016 Artist Partners for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P ℗ 2016 Artist Partners for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",3232 +3233,spotify:track:1j4kHkkpqZRBwE0A4CN4Yv,Dusk Till Dawn (feat. Sia) - Radio Edit,"spotify:artist:5ZsFI1h6hIdQRw2ti0hz81, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","ZAYN, Sia",spotify:album:5l5gR4rh26QI3fijGFTDrp,Dusk Till Dawn (feat. Sia) [Radio Edit],"spotify:artist:5ZsFI1h6hIdQRw2ti0hz81, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","ZAYN, Sia",2017-09-07,https://i.scdn.co/image/ab67616d0000b27323852b7ef0ecfe29d38d97ee,1,1,239000,https://p.scdn.co/mp3-preview/7fa8376aeb69dfe202ea1ad7fadd717bf895d950?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USRC11702155,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop,pop",0.259,0.437,11.0,-6.589,0.0,0.0386,0.102,1.32e-06,0.106,0.0951,180.042,4.0,,RCA Records Label,"P (P) 2017 RCA Records, a division of Sony Music Entertainment",3233 +3234,spotify:track:5IIwfioAOLmPFkD6ESOmvJ,Simon Says,spotify:artist:17vIaBTHJOVxnU4v7t1DiY,1910 Fruitgum Company,spotify:album:51glvu0oGf7bfZFJuWt43E,The Best of the 1910 Fruitgum Co.,spotify:artist:17vIaBTHJOVxnU4v7t1DiY,1910 Fruitgum Company,2001,https://i.scdn.co/image/ab67616d0000b273c61d5c11b24ff4ce65278096,1,1,135493,https://p.scdn.co/mp3-preview/c4b10e9de097863020a66c50a66fe03331ac0fea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USBR10000159,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat",0.777,0.693,4.0,-7.65,1.0,0.0343,0.24,0.0003,0.307,0.985,135.348,4.0,,Buddha Records,P (P) 2001 Buddha Records,3234 +3235,spotify:track:6120uJUyg6QDzaAJUosTx5,Knock On Wood,spotify:artist:7GPNaPWw3STF8NYp39pd8G,Amii Stewart,spotify:album:4GmEpUaXxyJ9YhO8pzIa2V,Greatest Hits,spotify:artist:7GPNaPWw3STF8NYp39pd8G,Amii Stewart,2012-10-17,https://i.scdn.co/image/ab67616d0000b2732be7c5a2d95b69b97e3b1f62,1,7,250520,https://p.scdn.co/mp3-preview/2d4c757436b82050366eaa7a1707887f930ba8ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,USA561379853,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg",0.689,0.805,2.0,-11.199,1.0,0.0429,0.0019,8.23e-05,0.0683,0.914,140.791,4.0,,Best Buy Classical,"C (C) 2012 Entertain Me Ltd., P (P) 2012 Entertain Me Ltd.",3235 +3236,spotify:track:0XzYcrLcZ7TFSS6sE1tZ2L,Get Ready for This,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,spotify:album:2uXrUfQPIJKIT6E0ul3Ib5,Get Ready!,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,1992-02-24,https://i.scdn.co/image/ab67616d0000b273451ae442bf73b34307331def,1,1,225493,https://p.scdn.co/mp3-preview/0007cf3fcd66499643dc7a2cd57da36d9a51c2b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUXN21713646,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,hip house",0.824,0.712,9.0,-13.51,1.0,0.083,0.109,0.000271,0.0678,0.961,124.91,4.0,,Xelon Entertainment,"C 1992 Toco International, P 2009 XelonEntertainment.com",3236 +3237,spotify:track:6D0okTHbMRtDkM0YE5Km7w,Bonaparte's Retreat,spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,spotify:album:2CqqKibOf37WJgzmzvIrpc,Houston (Comin' To See You),spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,1974-01-01,https://i.scdn.co/image/ab67616d0000b27344b547689fefb5132ce710c7,1,8,169000,https://p.scdn.co/mp3-preview/733b2ac13346e87dd6effb47f7d13b1b23f98bb8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USCN19000094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,arkansas country,classic country pop,folk rock,mellow gold,nashville sound,singer-songwriter,soft rock",0.58,0.757,3.0,-6.612,1.0,0.0376,0.403,1.53e-05,0.128,0.971,188.18,4.0,,Capitol Nashville,"C © 1974 Capitol Records Nashville, P ℗ 1974 Capitol Records Nashville",3237 +3238,spotify:track:3AJwUDP919kvQ9QcozQPxg,Yellow,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:6ZG5lRT77aJ3btmArcykra,Parachutes,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2000-07-10,https://i.scdn.co/image/ab67616d0000b2739164bafe9aaa168d93f4816a,1,5,266773,https://p.scdn.co/mp3-preview/c0d9119dc69cae75baf6463e21e43f433fdf5ff4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,89,GBAYE0000267,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.429,0.661,11.0,-7.227,1.0,0.0281,0.00239,0.000121,0.234,0.285,173.372,4.0,,Parlophone UK,"C © 2000 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2000 Parlophone Records Ltd, a Warner Music Group Company",3238 +3239,spotify:track:7l1qvxWjxcKpB9PCtBuTbU,Count on Me,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:1uyf3l2d4XYwiEqAb7t7fX,Doo-Wops & Hooligans,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2010-05-11,https://i.scdn.co/image/ab67616d0000b273f6b55ca93bd33211227b502b,1,9,197469,https://p.scdn.co/mp3-preview/525c3c77a8a379c9b6859eca3b3ec54bea30ef5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USEE11000168,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.589,0.389,0.0,-5.972,1.0,0.028,0.851,0.0,0.0772,0.501,89.1,4.0,,Atlantic Records,"C © 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States., P ℗ 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States.",3239 +3240,spotify:track:6saMwrHYHbgSm8WiAbH5RV,The Loco-Motion,spotify:artist:0qEcf3SFlpRcb3lK3f2GZI,Grand Funk Railroad,spotify:album:4HmWOsD5ggw9It34pM7nUf,Greatest Hits: Grand Funk Railroad (Remastered),spotify:artist:0qEcf3SFlpRcb3lK3f2GZI,Grand Funk Railroad,2006-01-01,https://i.scdn.co/image/ab67616d0000b27331501fee852c5aaa5a293f82,1,8,166813,https://p.scdn.co/mp3-preview/9ee43928c5f484c8c067ff5ae0abf0192cb5020b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USCA20200346,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.483,0.95,0.0,-4.263,1.0,0.179,0.371,0.0,0.488,0.279,124.694,4.0,,Capitol Records,"C © 2006 Capitol Records, LLC, P This Compilation ℗ 2006 Capitol Records, LLC",3240 +3241,spotify:track:0emLVyepnqr5PmDBb3CFgN,Alone,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:6IjSvP7UdKM8YsuuDmCqbn,Still Waters,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1997-01-01,https://i.scdn.co/image/ab67616d0000b273c694a207e900c01e559573a0,1,1,290066,https://p.scdn.co/mp3-preview/a5fec0f1e1dfc207853b3d32102db645a101eb96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW9700072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.639,0.788,2.0,-5.076,1.0,0.0307,0.0969,0.000231,0.283,0.717,110.005,4.0,,Universal Music Group,"C © 1997 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 1997 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",3241 +3242,spotify:track:5PRRthP9SLfbXB359MfIWv,I Will Wait,spotify:artist:3gd8FJtBJtkRxdfbTu19U2,Mumford & Sons,spotify:album:5tFS6ENAcvCW1V8uKYuk5m,Babel (Deluxe Version),spotify:artist:3gd8FJtBJtkRxdfbTu19U2,Mumford & Sons,2012-09-21,https://i.scdn.co/image/ab67616d0000b27383f859512262378f2aa50a22,1,3,276720,https://p.scdn.co/mp3-preview/c8431c43f3c566b61cb491486adc67472cbf5654?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBUM71204769,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern folk rock,modern rock,neo mellow,stomp and holler,uk americana",0.486,0.769,1.0,-5.14,1.0,0.0341,0.0119,0.00832,0.197,0.393,131.286,4.0,,Dew Process,"C © 2012 Mumford & Sons, P ℗ 2012 Mumford & Sons, Marketed and distributed under exclusive licence in Australia and New Zealand by Dew Process/Universal Music Australia",3242 +3243,spotify:track:3tCwjWLicbjsMCvXhN0WOE,Rude,spotify:artist:0DxeaLnv6SyYk2DOqkLO8c,MAGIC!,spotify:album:2Qm9AzJHWLG9vbJCeXRaAW,Rude,spotify:artist:0DxeaLnv6SyYk2DOqkLO8c,MAGIC!,2013-10-11,https://i.scdn.co/image/ab67616d0000b2730ee3a8b1f9762f0a1e69385d,1,1,224773,https://p.scdn.co/mp3-preview/e97393738862719f5426688bdac00330985f8c4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,CAV161300016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,reggae fusion",0.743,0.807,1.0,-3.78,1.0,0.0364,0.0435,0.0,0.309,0.899,144.062,4.0,,Latium Records/RCA Records,P (P) 2013 Sony Music Entertainment International Limited,3243 +3244,spotify:track:5O4NFbDqJ8SOfbjnIhdPDt,The Safety Dance,spotify:artist:34PLzyi7CdXUekiLHYyqXq,Men Without Hats,spotify:album:0qj6LhMLgU1ferLbZ8Rbnw,Greatest,spotify:artist:34PLzyi7CdXUekiLHYyqXq,Men Without Hats,2013-02-11,https://i.scdn.co/image/ab67616d0000b273b5b8cc071f275542924c573a,1,1,164866,https://p.scdn.co/mp3-preview/a5a2be1b8357dea63572dd2f2b38898742878093?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBBLG0200043,spotify:user:bradnumber1,2023-09-14T05:52:04Z,"classic canadian rock,new romantic,new wave pop,synthpop",0.525,0.882,5.0,-4.479,1.0,0.0467,0.0252,0.0,0.101,0.623,101.674,4.0,,Demon Digital,"C (C) 2012 Demon Music Group Ltd., P (P) 2012 Demon Music Group Ltd.",3244 +3245,spotify:track:51PIvodunv6NmX5250zxAh,The Cure,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:7Bh5oQckPzHqO7GHVGY5LE,The Cure,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2017-04-16,https://i.scdn.co/image/ab67616d0000b2734a9be9e8223db02a37e1e8fe,1,1,211363,https://p.scdn.co/mp3-preview/31c7276289ba61990ad4c5d3c4719a0a2d26ad7c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71703782,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.696,0.503,8.0,-4.842,1.0,0.0356,0.0745,0.0,0.0869,0.559,99.977,4.0,,Universal Music Group,"C © 2017 Interscope Records, P ℗ 2017 Interscope Records",3245 +3246,spotify:track:305WCRhhS10XUcH6AEwZk6,Are You Gonna Be My Girl,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,spotify:album:6NrLpQCPYrNS3kVWxDgIlg,Get Born,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,2003-09-15,https://i.scdn.co/image/ab67616d0000b27376ccf87cba2e754a5138cc23,1,2,213800,https://p.scdn.co/mp3-preview/cd8bc93c853849caa21fe05bc4b6f1b097e8aabc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USEE10340526,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,pop rock",0.606,0.957,2.0,-3.404,1.0,0.0814,0.00117,0.000295,0.14,0.603,105.105,4.0,,Elektra Records,"C © 2003 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States excluding Australia and New Zealand., P ℗ 2003 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States excluding Australia and New Zealand.",3246 +3247,spotify:track:3vX0Pgq958yDE2LGp2Z2X7,If Only,spotify:artist:0SdiiPkr02EUdekHZJkt58,Hanson,spotify:album:0IaT8AWtzOSAzWB1KXoTD8,MmmBop : The Collection,spotify:artist:0SdiiPkr02EUdekHZJkt58,Hanson,2005-01-01,https://i.scdn.co/image/ab67616d0000b273aeb97994467b5a33f2b3fa12,1,6,270426,https://p.scdn.co/mp3-preview/1748a0a77e841a600b1be6ef2b23ce6c18700df4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20000025,spotify:user:bradnumber1,2022-01-11T11:26:13Z,boy band,0.544,0.985,2.0,-2.673,1.0,0.0684,0.00307,0.0,0.0968,0.738,105.975,4.0,,Universal Music Group,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",3247 +3248,spotify:track:7foiOmd1Je7Z0D3TaZCDro,The Last Time - Mono Version,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:2Q5MwpTmtjscaS34mJFXQQ,Out Of Our Heads,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1965-07-30,https://i.scdn.co/image/ab67616d0000b27305c5be85b64eaff732f7cb0b,1,3,221493,https://p.scdn.co/mp3-preview/5b522e46c34356a2eef2513d32053049e77aabd5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USA176510120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.327,0.92,9.0,-5.223,1.0,0.0611,0.144,0.84,0.774,0.439,167.972,4.0,,"ABKCO Music and Records, Inc.","C © 2002 ABKCO Music & Records Inc., P This Compilation ℗ 2002 ABKCO Music & Records Inc.",3248 +3249,spotify:track:61YMZAc4BONNLAHL0ineBY,Raise The Alarm,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:1ErcZ8dabd9xHa2hcqyTDT,White Noise Rarities Collector's Edition,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,2008-01-01,https://i.scdn.co/image/ab67616d0000b273dc14169563e3f057d2e2d7ac,1,2,217480,https://p.scdn.co/mp3-preview/96edcf528b9ec301ce9d57f6e6358fb73877af61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUUM70800426,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,australian ska",0.37,0.975,2.0,-4.255,0.0,0.107,3.03e-05,0.000813,0.0475,0.407,160.186,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Dew Process/Universal Music Australia, P ℗ 2008 Dew Process/Universal Music Australia",3249 +3250,spotify:track:4s6LhHAV5SEsOV0lC2tjvJ,California Dreamin' - Single Version,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,spotify:album:76oMr4Y2pOtcrvZLc2ZikF,If You Can Believe Your Eyes & Ears,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,1966-03,https://i.scdn.co/image/ab67616d0000b27308181b9f840a06e7a071cf72,1,7,162373,https://p.scdn.co/mp3-preview/477cb2926471cf7e4cd35d7d0af97f9d70efe6a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USMC16532697,spotify:user:bradnumber1,2022-04-20T22:20:00Z,"classic rock,folk rock,mellow gold,psychedelic rock,rock,soft rock,sunshine pop",0.552,0.608,1.0,-9.786,0.0,0.0345,0.352,0.0,0.0533,0.637,112.367,4.0,,Geffen*,"C © 1998 MCA Records Inc., P ℗ 1966 Dunhill Records Inc.",3250 +3251,spotify:track:2wqaekenSQZm7hxQOYt8oE,Am I Wrong,spotify:artist:0awl5piYwO0CDTHEkCjUhn,Nico & Vinz,spotify:album:1uaIXmroQAjO7DB6zZPcpV,Am I Wrong,spotify:artist:0awl5piYwO0CDTHEkCjUhn,Nico & Vinz,2014-01-21,https://i.scdn.co/image/ab67616d0000b273ba6c02b123a11ca175b5e42c,1,1,247520,https://p.scdn.co/mp3-preview/b28bd38a0652df41f28f764dbe98df4d06d67240?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USWB11304681,spotify:user:bradnumber1,2021-08-08T09:26:31Z,afrobeats,0.725,0.68,8.0,-5.465,1.0,0.0306,0.162,2.13e-06,0.158,0.76,119.939,4.0,,Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc.",3251 +3252,spotify:track:6Uj8ru7TNLDIelbuQ8eBd6,"Turn Around (5,4,3,2,1)",spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,spotify:album:1TwNATuAqnNjTd5BSvFZlS,Only One Flo (Part 1),spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2010-11-24,https://i.scdn.co/image/ab67616d0000b273c0ddb38854cde41708d606a1,1,2,201386,https://p.scdn.co/mp3-preview/32d8b9deecfdf26fe34a78d36b578e3e5b8edead?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT21002298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap",0.697,0.835,6.0,-5.843,1.0,0.0912,0.00578,0.0,0.314,0.832,128.018,4.0,,Poe Boy/Atlantic,"C © 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",3252 +3253,spotify:track:52izjvF7wwveRG1rDJsGWe,Love Myself,spotify:artist:5p7f24Rk5HkUZsaS3BLG5F,Hailee Steinfeld,spotify:album:1kqXau1FkG7RGKCwo0OWs1,Love Myself,spotify:artist:5p7f24Rk5HkUZsaS3BLG5F,Hailee Steinfeld,2015-08-07,https://i.scdn.co/image/ab67616d0000b273ab6ac7e7c31b2c37771268f5,1,1,218773,https://p.scdn.co/mp3-preview/0465f375f0394d28e16e4d1548119efb996a0503?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71510716,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.617,0.759,0.0,-6.785,0.0,0.0677,0.0026,0.0,0.419,0.324,122.925,4.0,,Universal Music Group,"C © 2015 Republic Records, a division of UMG Recordings, Inc., P ℗ 2015 Republic Records, a division of UMG Recordings, Inc.",3253 +3254,spotify:track:52FpkyImUt9LDI9mCWDryr,Whatta Man (feat. En Vogue) - EP Version,"spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ, spotify:artist:5fikk4h5qbEebqK2Fc6e48","Salt-N-Pepa, En Vogue",spotify:album:6ABqEktNUuYULXWUubkHKg,The Very Best of En Vogue,spotify:artist:5fikk4h5qbEebqK2Fc6e48,En Vogue,2001-08-21,https://i.scdn.co/image/ab67616d0000b2735a335126b1854bd315d1fd4f,1,6,296213,https://p.scdn.co/mp3-preview/f5d3c0f3f866198767219a5093aa20c42ac4baad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USEW19900156,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop,contemporary r&b,girl group,hip pop,new jack swing,r&b,urban contemporary",0.73,0.664,5.0,-8.558,1.0,0.116,0.0941,6.23e-05,0.137,0.947,173.232,4.0,,Rhino/Elektra,"C © 2006 Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2006 Elektra Entertainment Group Manufactured & Marketed by Rhino Entertainment Company, a Warner Music Group Company",3254 +3255,spotify:track:2oxtQ84p1j5GmyzmD50Lq0,Rich Girl,"spotify:artist:4yiQZ8tQPux8cPriYMWUFP, spotify:artist:4d3yvTptO48nOYTPBcPFZC","Gwen Stefani, Eve",spotify:album:34y7m68F7rN9ou6m5GWohR,Love. Angel. Music. Baby.,spotify:artist:4yiQZ8tQPux8cPriYMWUFP,Gwen Stefani,2004-11-12,https://i.scdn.co/image/ab67616d0000b273f049fc9322f0c93646cdcc77,1,2,236213,https://p.scdn.co/mp3-preview/2ef3f3f161b75ac0ab56246a91f921c08449b210?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USIR10400846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,contemporary r&b,dance pop,hip pop,philly rap,r&b,urban contemporary",0.856,0.746,7.0,-2.728,0.0,0.042,0.0292,1.53e-05,0.206,0.761,98.018,4.0,,Interscope,"C © 2004 Interscope Records, P ℗ 2004 Interscope Records",3255 +3256,spotify:track:6GGZSgEo4RDOzyXnkMFbvD,Monterey,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,spotify:album:3UhfJ03I3bSzeTYyaExp51,The Twain Shall Meet,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,1968-01-01,https://i.scdn.co/image/ab67616d0000b273e55cd233ad9b45f38a8ad256,1,1,276626,https://p.scdn.co/mp3-preview/631746f6e551fc4d36311d7b44af98580fce437f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USUMG0000232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock",0.487,0.557,4.0,-11.745,0.0,0.071,0.763,0.0852,0.211,0.643,80.732,4.0,,Universal Records,"C © 2015 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1968 Universal Records, a Division of UMG Recordings, Inc.",3256 +3257,spotify:track:0MrA2zCOK9e3q88N7mZxs9,Million Dollar Riff - 2015 Version,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,spotify:album:4eiyoZSd1hCIOsUdMHYR1w,Hits'n'Riffs,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,2015-11-13,https://i.scdn.co/image/ab67616d0000b273d1df454194df63d318f728eb,1,11,230480,https://p.scdn.co/mp3-preview/ba1941935595a3a7f97a9dbaf113c66f1da8408d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUWA01500418,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.391,0.929,9.0,-6.674,1.0,0.0601,0.127,0.0479,0.6,0.889,180.275,4.0,,WM Australia,"C © 2015 Warner Music Australia Pty. Limited, P ℗ This compilation 2015 Warner Music Australia Pty Ltd.",3257 +3258,spotify:track:4aqk75m68btdZPmpZMtSIE,Way To Go!,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:3JCSQWn36aUTqN794ZmbSm,Here Come The Drums,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2005-10-23,https://i.scdn.co/image/ab67616d0000b2730320f53151cb67998449bd09,1,3,196346,https://p.scdn.co/mp3-preview/32bfd7cbbf2040f344edd48d8a347939a5f0fe6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUBM00599335,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.683,0.965,9.0,-4.042,1.0,0.179,0.00415,0.0,0.0669,0.67,152.85,4.0,,Columbia,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,3258 +3259,spotify:track:7xq4NAM0ukz7QqK0cBqpzt,Just Feel Better (feat. Steven Tyler),"spotify:artist:6GI52t8N5F02MxU0g5U69P, spotify:artist:32zks9ovi0IExzUd1C7W6o","Santana, Steven Tyler",spotify:album:6FbFvnlSfEoNhwz5MdK0Dx,Ultimate Santana,spotify:artist:6GI52t8N5F02MxU0g5U69P,Santana,2007-09-25,https://i.scdn.co/image/ab67616d0000b2735ffffefb4343759b63f72598,1,14,252306,https://p.scdn.co/mp3-preview/6fd4ef83a869a20f6b44a90bf62d24da5a804536?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USAR10500602,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,classic rock,mexican classic rock,modern country rock",0.436,0.869,0.0,-3.156,0.0,0.0457,0.0777,0.0,0.0895,0.456,160.334,4.0,,Arista,"P This Compilation (P) 2007 RCA/JIVE Label Group, a unit of Sony Music Entertainment",3259 +3260,spotify:track:5Ow9WdJ08ao62tsEz1YaCq,Rehab - Pharoahe Monch Remix,"spotify:artist:6Q192DXotxtaysaqNPy5yR, spotify:artist:5DKuVtlpDH0agZQUFDy8O7","Amy Winehouse, Pharoahe Monch",spotify:album:59tk7qXLhxAKaWa5BghvGD,Rehab (Remixes & B Sides),spotify:artist:6Q192DXotxtaysaqNPy5yR,Amy Winehouse,2015-07-03,https://i.scdn.co/image/ab67616d0000b273e1faab5df4518334413531ba,1,4,216426,https://p.scdn.co/mp3-preview/217e552226e0a5511245fd18a9328d496c417a5a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,30,GBUM70703877,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,neo soul,conscious hip hop,east coast hip hop,queens hip hop",0.492,0.728,0.0,-5.689,1.0,0.0852,0.133,0.0,0.345,0.749,69.992,4.0,,Universal-Island Records Ltd.,"C © 2015 Island Records, a division of Universal Music Operations Limited, P ℗ 2015 Island Records, a division of Universal Music Operations Limited",3260 +3261,spotify:track:3TGRqZ0a2l1LRblBkJoaDx,Call Me Maybe,spotify:artist:6sFIWsNpZYqfjUpaCgueju,Carly Rae Jepsen,spotify:album:29blfJv8AddJrjuG3DpE13,Kiss (Deluxe),spotify:artist:6sFIWsNpZYqfjUpaCgueju,Carly Rae Jepsen,2012-01-01,https://i.scdn.co/image/ab67616d0000b273a111f7769013f1731e9c697c,1,3,193400,https://p.scdn.co/mp3-preview/c4a7b5e8b012344e607dc50991a32b4a00326739?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,CAB391100615,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,dance pop,pop",0.782,0.58,7.0,-6.548,1.0,0.0407,0.0114,2.28e-06,0.108,0.66,120.021,4.0,,Silent Records IGA,"C © 2012 School Boy/Interscope Records, P ℗ 2012 School Boy/Interscope Records",3261 +3262,spotify:track:5pKBCp3tRnM0VmNW4QL08v,Booty,"spotify:artist:2DlGxzQSjYe5N6G9nkYghR, spotify:artist:5yG7ZAZafVaAlMTeBybKAL","Jennifer Lopez, Iggy Azalea",spotify:album:5ccaXhesN66ocWe37mVlzo,Booty,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2014-09-23,https://i.scdn.co/image/ab67616d0000b2738da3280041a1d81f1b16eb56,1,1,209699,https://p.scdn.co/mp3-preview/0d981e3a7666f2a3a1c3ddda387584c34d956906?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71413813,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,australian hip hop,dance pop,pop",0.72,0.951,0.0,-4.138,1.0,0.0525,0.00362,0.000275,0.226,0.388,128.969,4.0,,Universal Music Group,"C © 2014 Capitol Records, LLC, P ℗ 2014 Capitol Records, LLC",3262 +3263,spotify:track:1RG0HipdMCcaW9xJjyKiUb,"Can't Get Enough Of Your Love, Babe",spotify:artist:3rfgbfpPSfXY40lzRK7Syt,Barry White,spotify:album:5gI5tMow9fEMhFk5zXdrbY,Can't Get Enough,spotify:artist:3rfgbfpPSfXY40lzRK7Syt,Barry White,1974-01-01,https://i.scdn.co/image/ab67616d0000b2737cc5f105886fb50aac04195a,1,4,274000,https://p.scdn.co/mp3-preview/5f54b6804586eb32b50efe700238371632d17e89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR37407059,spotify:user:bradnumber1,2021-08-08T09:27:55Z,"disco,quiet storm,soul",0.731,0.777,5.0,-7.563,1.0,0.0684,0.132,0.0611,0.0793,0.772,111.842,4.0,,Universal Music Group,"C © 1974 The Island Def Jam Music Group, P ℗ 1974 The Island Def Jam Music Group",3263 +3264,spotify:track:4gs07VlJST4bdxGbBsXVue,Heartbreak Warfare,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:1V5vQRMWTNGmqwxY8jMVou,Battle Studies,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2009-11-13,https://i.scdn.co/image/ab67616d0000b2731e3dbe4453ed61633c472fbe,1,1,269720,https://p.scdn.co/mp3-preview/4d981155239faf6ec528493f923e15601a461b4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM10905699,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.624,0.554,2.0,-8.113,1.0,0.0225,0.191,0.00131,0.299,0.311,97.031,4.0,,Columbia,P (P) 2009 Sony Music Entertainment,3264 +3265,spotify:track:31n0kYnWG4Xlyzb5Cy2HxU,Tears and Rain,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,spotify:album:1ekaxA9Q5GzUPCepx4wzMF,Back to Bedlam,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,2005-08-08,https://i.scdn.co/image/ab67616d0000b273105f043a4f470cf58cc01ccf,1,5,244226,https://p.scdn.co/mp3-preview/84f74e4d0022629b21b6a9085611ade4372fd2ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT20401591,spotify:user:bradnumber1,2023-01-06T22:11:59Z,neo mellow,0.435,0.489,7.0,-7.519,1.0,0.0301,0.555,0.000246,0.107,0.178,169.861,4.0,,Custard/Atlantic,"C An Atlantic Records Release, © 2005 Warner Music UK Limited, P An Atlantic Records Release, ℗ 2004 Warner Music UK Limited",3265 +3266,spotify:track:1jypmXUJgxWKWJZdDsJiXQ,Why Not,spotify:artist:2S9W9aSAd7e5mp8WqWxN2h,Hilary Duff,spotify:album:2zfZe8P8jg53kZaAfCdBYs,Metamorphosis,spotify:artist:2S9W9aSAd7e5mp8WqWxN2h,Hilary Duff,2003-01-01,https://i.scdn.co/image/ab67616d0000b27345fa3fddca835d0d7c854146,1,13,179533,https://p.scdn.co/mp3-preview/9dd335431a68b55022b549710141412fb5aadb74?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWD10321129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.49,0.843,4.0,-4.849,1.0,0.0478,0.0706,0.0,0.104,0.564,112.85,4.0,,Hollywood Records,"C © 2003 Hollywood Records, Inc., P ℗ 2003 Hollywood Records, Inc.",3266 +3267,spotify:track:2FiSTH0GYpIioUgjfzMIja,Stay (feat. Maty Noyes),"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:5JSXWmQO8csVUy6hSRu8TA","Kygo, Maty Noyes",spotify:album:0uMIzWh1uEpHEBell4rlF8,Cloud Nine,spotify:artist:23fqKkggKUBHNkbKtXEls4,Kygo,2016-05-13,https://i.scdn.co/image/ab67616d0000b27335590cb9280d5a1f5221ae1a,1,11,239465,https://p.scdn.co/mp3-preview/e079c8d86520771a6367e275518e5f4c00f4ac81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,SEBGA1500364,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,alt z",0.648,0.736,8.0,-7.948,1.0,0.0385,0.0444,0.000137,0.171,0.378,103.027,4.0,,Kygo,"P (P) 2016 Kygo under exclusive license to Sony Music Entertainment International Ltd / Ultra Records, LLC",3267 +3268,spotify:track:66W1rVTnEv86dIkFhoiElg,Secrets,"spotify:artist:4ofCBoyEiGSePFAG500xev, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2","Regard, RAYE",spotify:album:6AgcNXTAFBxcOFRfxHUtxs,Secrets,"spotify:artist:4ofCBoyEiGSePFAG500xev, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2","Regard, RAYE",2020-04-24,https://i.scdn.co/image/ab67616d0000b2732b79437b4d0aa1145add6bb0,1,1,176766,https://p.scdn.co/mp3-preview/cca990295ff935ca47ec7edc6252f6bcc2086a8b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,65,GBCEN2000044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,pop edm,slap house,uk dance,uk contemporary r&b,uk pop",0.848,0.768,6.0,-5.386,0.0,0.0373,0.0412,0.000785,0.195,0.777,118.961,4.0,,Ministry of Sound Recordings,P (P) 2020 Ministry of Sound Recordings Limited,3268 +3269,spotify:track:5lN1EH25gdiqT1SFALMAq1,Gold on the Ceiling,spotify:artist:7mnBLXK823vNxN3UWB7Gfz,The Black Keys,spotify:album:5DLhV9yOvZ7IxVmljMXtNm,El Camino,spotify:artist:7mnBLXK823vNxN3UWB7Gfz,The Black Keys,2011-12-06,https://i.scdn.co/image/ab67616d0000b2736a21b97de47168df4f0c1993,1,3,224333,https://p.scdn.co/mp3-preview/fb86bf4a03ad45e4e0d3b74f537ea811c60b4ccf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USNO11100275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,blues rock,garage rock,indie rock,indietronica,modern blues rock,modern rock,punk blues,rock",0.505,0.833,0.0,-4.632,1.0,0.0475,0.00772,7.9e-05,0.069,0.565,130.121,4.0,,Nonesuch,"C © 2011 Nonesuch Records, P ℗ 2011 Nonesuch Records",3269 +3270,spotify:track:6Q25js1UmXo9I5HZJbZlRM,Stay Awhile,spotify:artist:66akX7UszLtTZqTTdcFvBL,The Bells,spotify:album:4Yc1RNQWCkaGHzI0Hpwvj5,Stay Awhile,spotify:artist:66akX7UszLtTZqTTdcFvBL,The Bells,2018-01-19,https://i.scdn.co/image/ab67616d0000b27333d0d08129528588c314b09b,1,1,204333,https://p.scdn.co/mp3-preview/2d4357bd80f6cc25fa3c4e622983b3278a2f1d68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBT21610946,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic canadian rock,0.558,0.268,11.0,-17.915,1.0,0.0299,0.791,0.00488,0.0863,0.432,84.559,4.0,,Hitstown,"C 2017 Sunset Blvd., P 2017 Copyright Control",3270 +3271,spotify:track:2M9ULmQwTaTGmAdXaXpfz5,Billionaire (feat. Bruno Mars),"spotify:artist:7o9Nl7K1Al6NNAHX6jn6iG, spotify:artist:0du5cEVh5yTK9QJze8zA0C","Travie McCoy, Bruno Mars",spotify:album:1PruwGvQDfgh6CTSFWPNtn,Billionaire (feat. Bruno Mars),spotify:artist:7o9Nl7K1Al6NNAHX6jn6iG,Travie McCoy,2010-03-09,https://i.scdn.co/image/ab67616d0000b27337ce3dd20c2318e13c6608ed,1,1,211160,https://p.scdn.co/mp3-preview/02f41843308e75503161cfce28114902b9e072fa?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,USAT21000257,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,dance pop,pop",0.633,0.673,6.0,-6.403,0.0,0.258,0.297,0.0,0.206,0.659,86.776,4.0,,Decaydance/Fueled By Ramen,"C © 2010 Fueled By Ramen, LLC. for the United States and WEA International Inc. for the world outside of the United States. All rights reserved., P ℗ 2010 Fueled By Ramen, LLC. for the United States and WEA International Inc. for the world outside of the United States. All rights reserved.",3271 +3272,spotify:track:0HcOPWjjAPGCODJUXNa30G,Calypso,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,spotify:album:2Nj9YgW5fgFbnGv8xO6tek,Greatest Hits,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,2005-01-01,https://i.scdn.co/image/ab67616d0000b273b3a1594c9b9187a6a07e79d3,1,11,110813,https://p.scdn.co/mp3-preview/ec71bd9820c0b2e33119fedf2a399eeb3de3d6de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUPO09620252,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.318,0.771,9.0,-6.141,1.0,0.0364,0.00436,0.153,0.104,0.364,93.343,3.0,,Universal Music Group,"C © 2005 Universal Music Australia Pty Ltd., P ℗ 2005 Universal Music Australia Pty Ltd.",3272 +3273,spotify:track:3yobZXbEQQJq7wBazWGDVg,Gimme Some Lovin',spotify:artist:3i9hP422d2KMjaupTzBNVS,The Spencer Davis Group,spotify:album:6hWcuAd9vwJ0Dqbobj3ksb,The Best Of Spencer Davis Group,spotify:artist:3i9hP422d2KMjaupTzBNVS,The Spencer Davis Group,1989-01-01,https://i.scdn.co/image/ab67616d0000b2732e7e2dd6a6d31d5967be2389,1,1,176066,https://p.scdn.co/mp3-preview/9a072fa7322d8869d2701520b7f5c690d5499736?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USEM38800203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,protopunk",0.501,0.752,7.0,-7.242,1.0,0.0352,0.115,0.205,0.387,0.583,147.515,4.0,,Capitol Records,"C © 1989 Capitol Records, LLC, P This Compilation ℗ 1989 Capitol Records, LLC",3273 +3274,spotify:track:3hB5DgAiMAQ4DzYbsMq1IT,Love Yourself,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,5,233720,https://p.scdn.co/mp3-preview/b750d9609aa454adb23284b1504d962a6ff9bb07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUM71516761,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.609,0.378,4.0,-9.828,1.0,0.438,0.835,0.0,0.28,0.515,100.418,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",3274 +3275,spotify:track:35BlyoxwWqBK5TEVUiYYv0,Amnesia,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:1MD6WnYhuOLLguMAFaoPkI,Amnesia,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2014-01-01,https://i.scdn.co/image/ab67616d0000b273e914f28b8bb3e1d6c2c73517,1,1,237247,https://p.scdn.co/mp3-preview/59a64321afabce75b5e696df2ab796da5448dba0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71401926,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.594,0.497,2.0,-5.26,1.0,0.0303,0.0343,0.0,0.162,0.101,101.671,4.0,,Universal Music Group,"C © 2014 Capitol Records Ltd., P ℗ 2014 Capitol Records Ltd.",3275 +3276,spotify:track:2LYpaS3lU3m4PZKYSvio3J,Untouchable,spotify:artist:4L51owxaf23ElmXl3ZkvNC,Johnny Ruffo,spotify:album:1tCpJtkDwtZkDKN0q1GNiR,Untouchable,spotify:artist:4L51owxaf23ElmXl3ZkvNC,Johnny Ruffo,2013-07-15,https://i.scdn.co/image/ab67616d0000b2738c1edb165dcdf0d357764e76,1,1,193373,https://p.scdn.co/mp3-preview/0f52612fea726bb86690389b0c852e0621324b2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUBM01300184,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.698,0.861,7.0,-4.872,1.0,0.151,0.00361,0.0,0.0618,0.834,106.502,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,3276 +3277,spotify:track:2KJOPifru1cNmhLgU3nR65,"It's All Over Now, Baby Blue",spotify:artist:5eygg59PhcYgy4ekBgbDA1,Graham Bonnet,spotify:album:71FLFUHY747CEA70b6ErXK,Graham Bonnet,spotify:artist:5eygg59PhcYgy4ekBgbDA1,Graham Bonnet,1977,https://i.scdn.co/image/ab67616d0000b273a46488e3c3ae7634cdd382de,1,1,251093,https://p.scdn.co/mp3-preview/e48284a7844de66e0c5d3824ed4ff198de0f4178?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USA370962623,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.714,0.769,5.0,-9.575,1.0,0.0532,0.799,0.000822,0.126,0.599,123.043,4.0,,Voiceprint,C 2009 Voiceprint,3277 +3278,spotify:track:5PKKJ4fo3ZuGcYKkI79fgf,Heartless,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:03NCvBIGqzLPhLoi4pDb3L,After Hours,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2020-03-20,https://i.scdn.co/image/ab67616d0000b27381a3bb9348718b9703364c1c,1,7,198266,https://p.scdn.co/mp3-preview/ad4d2f4beb304cb018b2eed677bb619485a2e3d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USUG11904205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.617,0.761,10.0,-5.434,0.0,0.0621,0.0281,1.18e-06,0.137,0.26,84.986,4.0,,Republic Records,"C © 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.",3278 +3279,spotify:track:4yyX2Iu4xJjW9xMvBZKSBi,Met Him Last Night (feat. Ariana Grande),"spotify:artist:6S2OmqARrzebs0tKUEyXyp, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR","Demi Lovato, Ariana Grande",spotify:album:3XsdVkuj3zMVHPRvodOgeE,Dancing With The Devil…The Art of Starting Over (Expanded Edition),spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,2021-04-01,https://i.scdn.co/image/ab67616d0000b2736593537e6a1510219779f1a5,1,9,204631,https://p.scdn.co/mp3-preview/c116054968b46f75f473e7ac49ca52cbca68f3e0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,50,USUM72103751,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop,pop",0.538,0.512,4.0,-4.548,0.0,0.0262,0.22,0.0,0.101,0.12,144.978,4.0,,Island Records,"C © 2021 Island Records, a division of UMG Recordings, Inc., P ℗ 2021 Island Records, a division of UMG Recordings, Inc.",3279 +3280,spotify:track:1AhDOtG9vPSOmsWgNW0BEY,Bohemian Rhapsody - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:1TSZDcvlPtAnekTaItI3qO,A Night At The Opera (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1975-11-21,https://i.scdn.co/image/ab67616d0000b273a461aa96bd9a8fcd0a492aee,1,11,354320,https://p.scdn.co/mp3-preview/d56de4777551c3eb7430ecf289809b1653147bf8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBUM71029604,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.414,0.404,0.0,-9.928,0.0,0.0499,0.271,0.0,0.3,0.224,71.105,4.0,,Universal Music Group,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",3280 +3281,spotify:track:0pWfuXyZ2qH4qEnriR8mAD,Can't You Hear My Heartbeat,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,spotify:album:1GocNvETatEei10ng7bpJ9,"A's, B's & EP's",spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,2004-03-01,https://i.scdn.co/image/ab67616d0000b27322cf9dd2fc2a082b182ce95f,1,3,135240,https://p.scdn.co/mp3-preview/996220ed7ccd83937d314466a03106975f289dc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAYE6500708,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock,rock-and-roll,singer-songwriter",0.57,0.691,9.0,-6.492,1.0,0.0368,0.117,0.0,0.0459,0.938,136.817,3.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",3281 +3282,spotify:track:0ZShFfdyPtOTgLkUr8a4pa,Best Night,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,spotify:album:4kc6vrABh87kQ4onFSDPLq,Live By The Words,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,2012,https://i.scdn.co/image/ab67616d0000b2732ea0791fdc5445eb5a9cd4be,1,8,215786,https://p.scdn.co/mp3-preview/1c47749241c75b7645f574907b1cd6eaf9c65581?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM01200407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.667,0.723,3.0,-3.873,1.0,0.0571,0.00635,0.0,0.0636,0.538,128.023,4.0,,Sony Music Entertainment,P All tracks (P) 2014 Sony Music Entertainment Australia Pty Ltd. except tracks 6 & 8 (P) 2012 & track 10 (P) 2013 Sony Music Entertainment Australia Pty Ltd.,3282 +3283,spotify:track:6V0PPYLaQ5fCAPftwIgpuN,Moderation,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,spotify:album:7kytZHAdRdVINFw8W1TB50,Moderation,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2019-01-24,https://i.scdn.co/image/ab67616d0000b273d086b23c7b07d6173a2899d9,1,1,188615,https://p.scdn.co/mp3-preview/17e88e3698290ef0d98480e09f7ea1af13694f6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBUM71900042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop",0.64,0.653,5.0,-6.039,1.0,0.0281,0.0171,0.000215,0.119,0.611,129.986,4.0,,EMI,"C © 2019 Universal Music Operations Limited, P ℗ 2019 Universal Music Operations Limited",3283 +3284,spotify:track:48td6xvpokdYwvbl3JIiXP,Love Never Felt So Good,"spotify:artist:3fMbdgg4jU18AjLCKBhRSm, spotify:artist:31TPClRtHm23RisEBtV3X7","Michael Jackson, Justin Timberlake",spotify:album:7pomP86PUhoJpY3fsC0WDQ,XSCAPE,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2014-05-09,https://i.scdn.co/image/ab67616d0000b27384dc5d0b8018238584522562,1,17,246026,https://p.scdn.co/mp3-preview/3febaaf44131bbb57962fcf9ae1eea09df9b943d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM11401760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul,dance pop,pop",0.775,0.719,7.0,-6.212,0.0,0.0435,0.132,1.79e-06,0.0662,0.712,117.513,4.0,,Epic/MJJ,"P (P) 2014 MJJ Productions, Inc.",3284 +3285,spotify:track:0FNxt3yotq9AXl2A7ewpQM,It Keeps Right On A-Hurtin',spotify:artist:36msvw9B10rxW90NSQ2794,Johnny Tillotson,spotify:album:4MCzg1VGNk6C5JEQ2nONYv,You're The Reason-Best Of The MGM Years,spotify:artist:36msvw9B10rxW90NSQ2794,Johnny Tillotson,2011-09-26,https://i.scdn.co/image/ab67616d0000b273ad92b201c1310add0bbd64a5,1,24,173466,https://p.scdn.co/mp3-preview/ac087d49d0da04c8a5b6bccff1d999586557381a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB03A0700729,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,merseybeat,nashville sound,rock-and-roll",0.452,0.303,9.0,-9.944,1.0,0.028,0.865,0.0,0.252,0.546,100.858,4.0,,Ace Records,"C 2011 Ace Records, P 2011 Ace Records",3285 +3286,spotify:track:131l5GkXPIk81bxihGypPt,Uncover,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,spotify:album:4K1Jjk7BdhdLbsMdl3q1f2,Introducing,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,2013-01-01,https://i.scdn.co/image/ab67616d0000b2736ed0a655e5fac78fc478710e,1,4,214133,,False,0,SEWEE1201112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,scandipop,swedish electropop,swedish pop",0.549,0.456,2.0,-6.169,1.0,0.0262,0.473,0.0,0.156,0.312,90.068,4.0,,Universal Music AB,"C © 2012 Record company TEN, Under exclusive license to Universal Music AB, P ℗ 2013 Record company TEN, Under exclusive license to Universal Music AB",3286 +3287,spotify:track:393WZ3Qnwcib5ehS18OBH3,Resurrection Shuffle - Remastered,spotify:artist:1jjn1GBdbizg6qiqtKsEgC,"Ashton\, Gardner & Dyke",spotify:album:2L7iasiOEbjIGsqnFzxrBF,The Best of Ashton Gardner & Dyke,spotify:artist:1jjn1GBdbizg6qiqtKsEgC,"Ashton\, Gardner & Dyke",2014-10-31,https://i.scdn.co/image/ab67616d0000b273aa0280e0fc637fd419229605,1,1,193760,https://p.scdn.co/mp3-preview/bbd29da64130e0c537f0a6d10423775140fc62d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,DED460900073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.601,0.883,0.0,-6.666,1.0,0.0595,0.253,0.00101,0.0899,0.79,98.663,4.0,,Repertoire Records,C (C) 2014 Repertoire Records (UK) Limited,3287 +3288,spotify:track:17sqPqdU7khAJ95lBrEo2L,A Song for You,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:0wBP8GaN80GPolmY8M19em,Classic Carpenters,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2016-04-22,https://i.scdn.co/image/ab67616d0000b273e0883bb3ac31d595172c0a82,1,7,217693,https://p.scdn.co/mp3-preview/c246348551538d7bd51baf2ff9d6d1ea0219dc41?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUBM01600044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.468,0.445,7.0,-6.028,1.0,0.0274,0.781,0.00515,0.0839,0.19,127.434,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,3288 +3289,spotify:track:6HcQZfMrw3KwGyzrKw1Pjy,Dreamlover,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:2NKxb7pk04CuZab5udkGUl,Music Box,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,1993-08-31,https://i.scdn.co/image/ab67616d0000b2734c0f9e15bccb777f14b9a228,1,1,232960,https://p.scdn.co/mp3-preview/3fdd650102fb4323b51f4547ae7a43e3e9ce7d4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USSM19303170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.701,0.705,5.0,-6.181,1.0,0.0357,0.184,0.0,0.141,0.725,100.668,4.0,,Columbia,"P (P) 1993 Columbia Records, a division of Sony Music Entertainment",3289 +3290,spotify:track:1aHCn2d62m0Gghu0nLeaw3,Take This Heart,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,spotify:album:1wgxJfFXbleiD2XmSCOZWP,Greatest Hits,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,1997-01-01,https://i.scdn.co/image/ab67616d0000b2730c1ea52e29122b249b272a4c,1,8,250666,https://p.scdn.co/mp3-preview/5e9aa52e95f6a377a06d1e29a35c9d219154e604?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USCA29100014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.612,0.694,0.0,-8.277,1.0,0.026,0.00142,0.0012,0.0749,0.551,115.53,4.0,,Capitol Records,"C © 1997 Capitol Records, LLC, P This Compilation ℗ 1997 Capitol Records, LLC",3290 +3291,spotify:track:5FNS5Vj69AhRGJWjhrAd01,Slow Dance (feat. Ava Max),"spotify:artist:6dn6x1XOng3LOAnfTjUn77, spotify:artist:4npEfmQ6YuiwW1GpUmaq3F","AJ Mitchell, Ava Max",spotify:album:3tnCAhqSU4V0EEgYnrTRuD,Slow Dance (feat. Ava Max),"spotify:artist:6dn6x1XOng3LOAnfTjUn77, spotify:artist:4npEfmQ6YuiwW1GpUmaq3F","AJ Mitchell, Ava Max",2019-08-09,https://i.scdn.co/image/ab67616d0000b2733e54e60c22698ab15ca86499,1,1,178799,https://p.scdn.co/mp3-preview/bc8e5df518ab175d69aa093b66c1202b410d6605?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM11904273,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,singer-songwriter pop,teen pop,pop",0.692,0.443,1.0,-5.671,1.0,0.0386,0.214,0.0,0.06,0.363,127.9,4.0,,Epic,"P (P) 2019 Epic Records, a division of Sony Music Entertainment",3291 +3292,spotify:track:5XxLf1pb40WCJ5WFBsImSQ,Make A Move On Me,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:5ySc9ZwyyZlFGIHuEij8oz,Gold,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2005-01-01,https://i.scdn.co/image/ab67616d0000b27325b4d20048c691c41dc38bba,2,5,196640,https://p.scdn.co/mp3-preview/53c3f35dfcde4241711daae6750c8e0ac22a4193?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10110327,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.764,0.733,9.0,-7.619,1.0,0.0518,0.384,0.000381,0.231,0.566,122.232,4.0,,Universal Music Group,"C © 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc.",3292 +3293,spotify:track:02d6RIbA7iGRugnvUmurVV,Lemon,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:27kWhG6vYQDkk0cIe8RXaZ,Zooropa,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1993-01-01,https://i.scdn.co/image/ab67616d0000b273eb4b2f34e042d281f5c7965c,1,4,418226,https://p.scdn.co/mp3-preview/4f3270cc0db3495a05987a7d098964b93e034bd3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN9300021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.616,0.652,6.0,-14.76,1.0,0.0348,0.00444,0.0115,0.0427,0.326,116.136,4.0,,Universal Music Group,"C © 1993 Universal-Island Records Ltd., P ℗ 1993 Universal-Island Records Ltd.",3293 +3294,spotify:track:6WgEqDFie58OzH5sgbDS4j,The Carnival Is Over - Mono; 2009 Remaster,spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,spotify:album:48xoMFj55ye3ha1mLJNDi2,All Bound for Morningtown (Their EMI Recordings 1964-1968),spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,2009-05-25,https://i.scdn.co/image/ab67616d0000b27325dc006b75453b2ac229d20d,2,14,189586,https://p.scdn.co/mp3-preview/968aee89d1fd3a4df8ba228e7d3b338690112fc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,GBAYE0900214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.386,0.493,2.0,-8.56,1.0,0.0275,0.246,0.0,0.18,0.647,75.694,3.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",3294 +3295,spotify:track:7Fg342AJtNsIDdwCfX0paC,Let Me,spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,spotify:album:3f6U9vS5x9EjSITxR9spuf,Let Me,spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,2018-04-12,https://i.scdn.co/image/ab67616d0000b273adeff3f0456c183a0e88edec,1,1,185702,https://p.scdn.co/mp3-preview/89a6f587388384749874d1cfdde5519e967905ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11800871,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.46,0.567,9.0,-5.637,1.0,0.0515,0.239,6.04e-06,0.0934,0.189,168.419,4.0,,RCA Records Label,"P (P) 2018 RCA Records, a division of Sony Music Entertainment",3295 +3296,spotify:track:5omYVLodGmaxnhua99xIE8,A.M.,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:1gMxiQQSg5zeu4htBosASY,Made In The A.M. - Deluxe Edition,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2015-11-13,https://i.scdn.co/image/ab67616d0000b273241e4fe75732c9c4b49b94c3,1,17,209040,https://p.scdn.co/mp3-preview/8492fbb4611d8b1148ac0913e33b06e7d735c721?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBHMU1500118,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.585,0.526,3.0,-4.905,1.0,0.0308,0.227,0.0,0.0963,0.488,141.837,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,3296 +3297,spotify:track:36irXNzxLqp0AHaC1lck2i,1000x,"spotify:artist:23IZADrJHPStZ6aMxJVq3s, spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS","Jarryd James, BROODS",spotify:album:1WrRZyps2d68wUdyKlLjNC,1000x,spotify:artist:23IZADrJHPStZ6aMxJVq3s,Jarryd James,2016-06-17,https://i.scdn.co/image/ab67616d0000b2735192afe61753471d6835ca9d,1,1,240933,https://p.scdn.co/mp3-preview/bf1962cbbed2f3668ca009b9b110b2b228315de4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71604465,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative pop,australian r&b,auckland indie,etherpop,indietronica,metropopolis,nz pop",0.533,0.621,8.0,-7.217,1.0,0.0317,0.126,0.123,0.0779,0.0465,111.906,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Dryden Street Ltd, P ℗ 2016 Dryden Street Ltd",3297 +3298,spotify:track:23khhseCLQqVMCIT1WMAns,Magic,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:2G4AUqfwxcV1UdQjm2ouYr,Ghost Stories,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2014-05-19,https://i.scdn.co/image/ab67616d0000b273e5a95573f1b91234630fd2cf,1,2,285014,https://p.scdn.co/mp3-preview/bb218a3258eb112eca7bd22d2cdcd9f741b886c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBAYE1400206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.738,0.482,6.0,-8.917,0.0,0.0402,0.0266,0.621,0.106,0.352,93.457,4.0,,Parlophone UK,"C © 2014 Parlophone Records Limited, a Warner Music Group Company., P ℗ 2014 Parlophone Records Limited, a Warner Music Group Company.",3298 +3299,spotify:track:1349a1cfv3J1bb0qGch29z,Almost Love,spotify:artist:74KM79TiuVKeVCqs8QtB0B,Sabrina Carpenter,spotify:album:7HwzMJWQbTkTL5Ah4OQkcA,Almost Love,spotify:artist:74KM79TiuVKeVCqs8QtB0B,Sabrina Carpenter,2018-06-06,https://i.scdn.co/image/ab67616d0000b27377a3675d9683189079dc1a3b,1,1,212371,https://p.scdn.co/mp3-preview/16cc0b3a4dc17c6dc56c0f572ee029723cf65e68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR11838467,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.81,0.759,9.0,-3.029,0.0,0.0376,0.111,4.73e-06,0.0919,0.615,104.993,4.0,,Hollywood Records,"C © 2018 Hollywood Records, Inc., P ℗ 2018 Hollywood Records, Inc.",3299 +3300,spotify:track:6QPKYGnAW9QozVz2dSWqRg,Someone Like You,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7n3QJc7TBOxXtlYh4Ssll8,21,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2011-01-19,https://i.scdn.co/image/ab67616d0000b273ba764098164f221484bcc309,1,11,285240,https://p.scdn.co/mp3-preview/a79d612cac9b64e900ae937234e2838a88ebc415?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBBKS1000351,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.554,0.321,9.0,-8.251,1.0,0.028,0.893,0.0,0.0996,0.288,135.047,4.0,,XL Recordings,"C 2011 XL Recordings Ltd., P 2011 XL Recordings Ltd.",3300 +3301,spotify:track:4t1mBrcg673UWwxTCMXTyH,I Like That,spotify:artist:3zT88YxwdH7V2S0YOAZ62V,Richard Vission & Static Revenger Starring Luciana,spotify:album:6aYKePYXHbSxBjZOZccbx6,I Like That,spotify:artist:3zT88YxwdH7V2S0YOAZ62V,Richard Vission & Static Revenger Starring Luciana,2009-01-01,https://i.scdn.co/image/ab67616d0000b273dd37107fc7b5506379e3ea58,1,1,142933,https://p.scdn.co/mp3-preview/90d56b6fad8d9db71b783c8a6a48d692f3f839ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUVC00927631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.94,0.836,4.0,-6.263,0.0,0.184,0.00399,0.00984,0.0984,0.626,129.005,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Frenetic Music, under exclusive license to Vicious Recordings Pty Ltd Australia, P ℗ 2009 Frenetic Music, under exclusive license to Vicious Recordings Pty Ltd Australia",3301 +3302,spotify:track:2OgVsp77En2nju8pnCieVU,Waiting for a Girl like You,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,spotify:album:2Pw51hAGvWpTA3AYl2WVuu,4 (Expanded),spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,1981,https://i.scdn.co/image/ab67616d0000b2733cd67ccf241ae843f6da62f3,1,4,292066,https://p.scdn.co/mp3-preview/bf904efc6e94d77b1f235c8d024fcf6211ae0792?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAT20803008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.33,0.469,10.0,-9.286,0.0,0.0335,0.31,2.3e-06,0.0402,0.433,201.327,4.0,,Rhino Atlantic,"C © 2002 Atlantic Recording Corp., marketed by Rhino Entertainment Company, a Warner Music Group company, P ℗ 2002 Atlantic Recording Corp.",3302 +3303,spotify:track:0F2BxpbxH8Yc3pLub48hrb,Pjanoo - Radio Edit,spotify:artist:5sm0jQ1mq0dusiLtDJ2b4R,Eric Prydz,spotify:album:7zlMxh1NR0Shklu48L4e7x,Pjanoo,spotify:artist:5sm0jQ1mq0dusiLtDJ2b4R,Eric Prydz,2008-08-29,https://i.scdn.co/image/ab67616d0000b273bf82130ce529153496038461,1,1,157432,https://p.scdn.co/mp3-preview/26b7c18ec7fcdce5b77c9983fb6adc15129e3dc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBCEN0800951,spotify:user:bradnumber1,2023-09-20T06:27:03Z,"edm,electro house,house,pop dance,progressive electro house,progressive house",0.605,0.874,7.0,-4.949,0.0,0.0295,0.000563,0.812,0.112,0.836,125.99,4.0,,Pryda Presents,P (P) 2008 Data Records|Ministry of Sound Recordings Ltd,3303 +3304,spotify:track:3chL2A33xvZKDPshfT0lnt,Tired Of Talking,spotify:artist:2JmtD7WjLBb2Ev8OcOvC6d,Rojdar,spotify:album:5vuyianYKejS7VB0ZjUhSf,Tired Of Talking,spotify:artist:2JmtD7WjLBb2Ev8OcOvC6d,Rojdar,2019-08-16,https://i.scdn.co/image/ab67616d0000b2730f2f0ac476effee4104d8d05,1,1,178477,https://p.scdn.co/mp3-preview/1e986a0c5e314f14e6aa010fe2ffe25d64399d68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AULI01926110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.769,0.78,9.0,-4.296,1.0,0.101,0.0859,7e-06,0.044,0.84,105.021,4.0,,Liberator Music,"C 2019 Rojdar under exclusive licence to Liberator Music, P 2019 Rojdar under exclusive licence to Liberator Music",3304 +3305,spotify:track:0Uqs7ilt5kGX9NzFDWTBrP,Quit Playing Games (With My Heart),spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:1oWxRkI4V9d3hH3PqWpx9H,Backstreet Boys,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1996-05-06,https://i.scdn.co/image/ab67616d0000b2733d16809ca253f0f476195941,1,5,232666,https://p.scdn.co/mp3-preview/087b4ca14342d86522e62e9f0af075d0e0daa8fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USJI19710152,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.8,0.825,11.0,-6.552,0.0,0.034,0.0559,2.18e-06,0.141,0.903,100.035,4.0,,Jive,P (P) 1996 Sony Music Entertainment,3305 +3306,spotify:track:1BJWu5CfFRXVSEZ2EByR1w,Angels,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4Zm7KcV47uD0sHageJyq2h,One Voice,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,2003-10-20,https://i.scdn.co/image/ab67616d0000b2733a1db30857beb481aa6e5345,2,7,337866,https://p.scdn.co/mp3-preview/b2422dfebfabeac4db5295b0556fe79773ff7f28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUBM09341003,spotify:user:bradnumber1,2021-11-20T11:22:52Z,"australian pop,australian rock",0.494,0.451,2.0,-11.984,1.0,0.0506,0.442,1.47e-05,0.0781,0.22,167.504,4.0,,BMG Music,P (P) 2003 BMG Australia Limited,3306 +3307,spotify:track:17YtDVU9bUluyihdOKWfxu,Suspicion,spotify:artist:4kmoIUly5v8RsaKDhevAjT,Terry Stafford,spotify:album:2Vww7cJFJCBDC2Yf9e7dOc,Suspicion,spotify:artist:4kmoIUly5v8RsaKDhevAjT,Terry Stafford,1994,https://i.scdn.co/image/ab67616d0000b273caec3e283b7dba032e7fb920,1,1,154906,https://p.scdn.co/mp3-preview/c8245fb6a61307e8d1779d1058639e37144d1ac8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USS8B6420015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic oklahoma country,deep adult standards",0.595,0.57,2.0,-11.301,1.0,0.0356,0.678,0.291,0.13,0.884,137.757,4.0,,Crusader/Charger,"C 1964 Crusader Records, P 1964 Crusader Records",3307 +3308,spotify:track:1lqMLr9Wj7SM2F9AikGcxN,Hurricane,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,spotify:album:1T8usYsiGEMPMQOLFgJEbE,Desire,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,1976-01-16,https://i.scdn.co/image/ab67616d0000b2738e1a23e42f68260b7b274e09,1,1,512732,https://p.scdn.co/mp3-preview/26002557873603c3171e0396a5759513b6176548?cid=9950ac751e34487dbbe027c4fd7f8e99,True,64,USSM17500791,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,rock,roots rock,singer-songwriter",0.509,0.827,0.0,-7.715,1.0,0.0782,0.0409,0.0,0.12,0.743,135.601,4.0,,Columbia,"P (P) 1976 Columbia Records, a division of Sony Music Entertainment",3308 +3309,spotify:track:6AJ50ANJtWNuuR81hwRUlY,See You at the Show,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:4fygErqiNgFUic5hU42Z3E,The Long Road,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2003-09-23,https://i.scdn.co/image/ab67616d0000b27315a5f571e2e14b2c182bd0a3,1,11,244066,https://p.scdn.co/mp3-preview/74c406d931f7f4f8b65936959fef4c6e96dc83bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,NLA320320336,spotify:user:bradnumber1,2022-08-26T01:41:46Z,"alternative metal,canadian rock,post-grunge",0.519,0.891,6.0,-5.395,1.0,0.0513,9.72e-05,3.69e-05,0.0692,0.463,144.054,4.0,,Roadrunner Records,"C © 2003 The All Blacks B.V., P ℗ 2003 The All Blacks B.V.",3309 +3310,spotify:track:6b000K3X9l18PkF372B011,Don't Give Up,"spotify:artist:2JQme5IJ3U7SRVQqHGN2fG, spotify:artist:49NJc5qDmCRsN3SsBAqEa4","Shannon Noll, Natalie Bassingthwaighte",spotify:album:314DEYqtr3bYNvSPtZpVFE,What Matters The Most,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2009-05-01,https://i.scdn.co/image/ab67616d0000b273d81b8b0252c200994b2cfd0a,1,8,280546,https://p.scdn.co/mp3-preview/d11157968cda0510316d430d1b68863fc7dfc13a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM00600858,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,australian pop,australian rock,australian dance,australian pop",0.401,0.685,3.0,-4.371,1.0,0.029,0.0595,0.0,0.101,0.22,80.539,3.0,,Sony BMG Music Entertainment,P This compilation (P) 2009 Sony Music Entertainment Australia Pty Ltd.,3310 +3311,spotify:track:6z9ehfxE973fOlKJKNJL2x,Blue Sky Mine - 2011 Remaster,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:4C3raKL0dzfTitM3YtqN1S,Blue Sky Mining (Remastered),spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1990-06-10,https://i.scdn.co/image/ab67616d0000b273319e0e59309ab40af8fb5862,1,1,255600,https://p.scdn.co/mp3-preview/77957a381e920c6541bbab0842bd9ca2d9799729?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,AUBM01100280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.631,0.852,1.0,-3.181,1.0,0.029,0.0601,0.000102,0.144,0.834,132.018,4.0,,Midnight Oil,P (P) 1990 Midnight Oil,3311 +3312,spotify:track:3iXbKFHP0X8f8Hxt4Ms6xC,Cavalry - 2017 Remastered,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,spotify:album:2dtL4Q81aBnP0nNkZYAJk9,Days Go By: The Definitive Greatest Hits Collection,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,2017-11-24,https://i.scdn.co/image/ab67616d0000b273fdc57ef0d735277ba71beb69,2,10,215866,https://p.scdn.co/mp3-preview/6bd99586676c9a52801df40ad1d0195a4ec26fe4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,AUYJL1700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.418,0.902,0.0,-3.703,1.0,0.0644,0.034,1.09e-05,0.212,0.693,143.391,4.0,,Sony Music Entertainment,P (P) 2017 Sony Music Entertainment Australia Pty Ltd,3312 +3313,spotify:track:1wKZRkvDaI03dSTjH2NkKS,Over Drinking Over You,spotify:artist:4ETXyV9H1p2P1XYgXXTjiO,Busby Marou,spotify:album:079w1X2wmOOUNVQNbNO7CA,Over Drinking Over You,spotify:artist:4ETXyV9H1p2P1XYgXXTjiO,Busby Marou,2019-07-05,https://i.scdn.co/image/ab67616d0000b2731896d3ceb5709500d640bd91,1,1,180047,https://p.scdn.co/mp3-preview/85e793b6f15eb95656dadc3c1260e4cccc43b9a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUWA01900529,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indigenous music,0.729,0.586,1.0,-6.564,1.0,0.0262,0.246,0.0,0.11,0.581,105.929,4.0,,WM Australia,"C © 2019 Warner Music Australia Pty Ltd, P ℗ 2019 Warner Music Australia Pty Ltd",3313 +3314,spotify:track:2E9wKgL8NN7Tvydqcjoh7v,Instant Karma! (We All Shine On) - Remastered 2010,"spotify:artist:4x1nvY2FN8jxqAFA0DA02H, spotify:artist:4m2kfAHEnK7Z7qLGxeWtro, spotify:artist:2s4tjL6W3qrblOe0raIzwJ","John Lennon, The Plastic Ono Band, Yoko Ono",spotify:album:1Og869cgT2qBmDw84KeUvk,Gimme Some Truth,spotify:artist:4x1nvY2FN8jxqAFA0DA02H,John Lennon,2010-10-05,https://i.scdn.co/image/ab67616d0000b273e52ee64d1cc0b1e29009268c,1,2,205133,https://p.scdn.co/mp3-preview/a06c55c41a39520eaa2989f0da0368085fb518e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE1000934,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,rock,experimental rock,experimental,experimental pop",0.624,0.931,11.0,-9.988,0.0,0.116,0.000899,0.00144,0.0631,0.141,119.887,4.0,,EMI Catalogue,"C © 2010 Capitol Records Inc., P ℗ 2010 Capitol Records Inc.",3314 +3315,spotify:track:7GZ5lWqONRabYPdUO234aC,Friday To Sunday,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,spotify:album:64GVpS2rqsR07LjNjgz05g,Friday To Sunday,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,2010-12-17,https://i.scdn.co/image/ab67616d0000b27353e85107ab67015a84cb7eeb,1,1,192453,https://p.scdn.co/mp3-preview/36f383a0b51548836ff800215d89a59d4d384b9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01000540,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.645,0.991,7.0,-3.724,0.0,0.0415,0.0649,2.68e-06,0.193,0.602,125.94,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd,3315 +3316,spotify:track:6OKxpfca25E4UC23VR7E73,Pressure Down,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4cBfyeNYbJAmOq0sl3Hijd,Whispering Jack,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1986,https://i.scdn.co/image/ab67616d0000b273710d3231cb732a6a7ff91a4e,1,1,227360,https://p.scdn.co/mp3-preview/a8aa2e8dc58f3334e663e794856d5170609decd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUBM08641002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.745,0.86,6.0,-11.075,1.0,0.0439,0.152,0.00411,0.636,0.754,111.804,4.0,,RCA Victor,"P (P) 1986 Wheatley Records, Pty. Ltd.",3316 +3317,spotify:track:4vPe6GytPedikmAy2Z2DNW,Can't Stop Myself from Loving You,spotify:artist:0xZ9fVp0OnYjYPeX9Z3c8x,William Shakespeare,spotify:album:3aTlizKS8qENJxB5diPTeM,Vanda and Young: the Official Songbook,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-01-01,https://i.scdn.co/image/ab67616d0000b273541cef85f470722bc61a0f87,1,14,193040,https://p.scdn.co/mp3-preview/947f4b1305b9e0fab407908728a76295fa74d736?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07400030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"poetry,writing",0.471,0.831,11.0,-6.601,1.0,0.105,0.0124,1.31e-05,0.201,0.662,134.113,4.0,,Albert Productions,"C © 2014 BMG AM Pty Ltd., P ℗ 2014 BMG AM Pty Ltd.",3317 +3318,spotify:track:26o2N5zINFVRRSNLTWfYZV,7 Days and One Week - Radio Edit,spotify:artist:1Jz17Vwjc2WYOT2MfYG5GO,BBE,spotify:album:0E6uXOocoRMJbLHmV39GGp,7 Days and One Week,spotify:artist:1Jz17Vwjc2WYOT2MfYG5GO,BBE,2009-12-19,https://i.scdn.co/image/ab67616d0000b2732fbffeb43cba99b1ade91f0d,1,1,271621,https://p.scdn.co/mp3-preview/a8e13668d84b6fb5d49f2bd9719d0d2717579df3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,DES230400001,spotify:user:bradnumber1,2022-01-13T01:35:17Z,"belgian dance,bubble trance",0.778,0.938,1.0,-8.076,1.0,0.051,0.00316,0.876,0.0573,0.498,137.863,4.0,,Central Station Records,"C 2009 Central Station Records, P 2009 Central Station Records",3318 +3319,spotify:track:2MeNSNQa0vSkGOq9bCrhmq,Get Out,spotify:artist:1UxNUybRFdtksz3l5HtCEG,Casey Abrams,spotify:album:6wq7YT3Nq1Qq5tB6DC8Ok7,Casey Abrams,spotify:artist:1UxNUybRFdtksz3l5HtCEG,Casey Abrams,2012-01-01,https://i.scdn.co/image/ab67616d0000b2735e445e2108c08017a61eaa58,1,3,211920,https://p.scdn.co/mp3-preview/dbc4608ab77a4d85f0f24b389de466593e191c38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USC4R1200961,spotify:user:bradnumber1,2021-08-08T09:26:31Z,idol,0.689,0.832,6.0,-3.859,1.0,0.0355,0.0919,0.0,0.0551,0.857,97.023,4.0,,Concord Records,"C © 2012 Concord Music Group, Inc., P ℗ 2012 Concord Music Group, Inc.",3319 +3320,spotify:track:4DFHOaiMTmqtrSffaJa89c,The Riddle,spotify:artist:7kCL98rPFsNKjAHDmWrMac,Nik Kershaw,spotify:album:69bhL4frY4toMx0No4DRQ6,The Riddle,spotify:artist:7kCL98rPFsNKjAHDmWrMac,Nik Kershaw,1984,https://i.scdn.co/image/ab67616d0000b273086adeef547fe1b5193cd8a5,1,6,232933,https://p.scdn.co/mp3-preview/0df322bddc1202a19fc2cde7c3e9e3d42bbb484d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBY0200033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.564,0.449,9.0,-14.1,1.0,0.0281,0.195,0.000395,0.0943,0.941,101.842,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",3320 +3321,spotify:track:3ClOMebBxeNTYCOfTH24YJ,Le Freak - 2018 Remaster,spotify:artist:0Xf8oDAJYd2D0k3NLI19OV,CHIC,spotify:album:3Jhtxnrjbk5oxleA3oafAy,The Chic Organization 1977-1979 (2018 Remaster),spotify:artist:0Xf8oDAJYd2D0k3NLI19OV,CHIC,2018-11-23,https://i.scdn.co/image/ab67616d0000b273b7ff955881d0c4fe6b4af092,2,2,331360,https://p.scdn.co/mp3-preview/866259f80fdc5ad407ea3fb300aa74bde9635e62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRH11803129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,soul",0.91,0.641,7.0,-11.316,1.0,0.0589,0.0258,6.42e-05,0.0642,0.903,118.533,4.0,,Rhino Atlantic,"C © 2018 Atlantic Recording Corporation. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2018, 1979, 1978, 1977 Atlantic Recording Corporation. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company",3321 +3322,spotify:track:0tOuOkTosL8LbmGbiFHCZN,Saturday Night (feat. Ludacris),"spotify:artist:6rHWAH6F4mr2AViSxMV673, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi","Jessica Mauboy, Ludacris",spotify:album:7t6s6NWaLUEkRQEDqp8yNN,Get 'Em Girls,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2011-08-15,https://i.scdn.co/image/ab67616d0000b2736bb2da94c1f0c017c022ad7f,1,4,206920,https://p.scdn.co/mp3-preview/f723aa4b76fb415d71da4471ba5601f4b84c6208?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUBM01000392,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap",0.594,0.8,6.0,-3.105,0.0,0.149,0.0657,0.0,0.114,0.484,133.159,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,3322 +3323,spotify:track:6bdvinFqoNmIOSYOqHWKxv,Baby It's You,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,spotify:album:5x4f3Q9N93as7xLCxIMkDK,20 Greatest Hits,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,2009-03-07,https://i.scdn.co/image/ab67616d0000b273233156fb639c7b16645574f6,1,4,161440,https://p.scdn.co/mp3-preview/fb16e5e965edbc141e917e0905a8ce9fdb63b1c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,doo-wop,motown,rock-and-roll,soul",0.646,0.336,7.0,-13.976,0.0,0.0287,0.674,7.91e-05,0.229,0.728,113.526,4.0,,Scepter Records,"C 2005 Gusto Records, Inc., P 2005 Gusto Records, Inc.",3323 +3324,spotify:track:2QDO9sZ1qQn0NGMWPecYyo,Carry On (Her Letter To Him),spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:4HPdvrPf9RGfJ2hNYrODpC,R.E.D. (Deluxe Edition),spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2012-01-01,https://i.scdn.co/image/ab67616d0000b27314f5c10de370e6d48d142629,1,10,236960,https://p.scdn.co/mp3-preview/1d91fc744616b43fc7e7576f41ab33676f0573bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USUM71212381,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.496,0.453,8.0,-8.283,1.0,0.0377,0.362,0.000372,0.108,0.221,81.761,4.0,,Island Def Jam/Motown,"C © 2012 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2012 Motown Records, a Division of UMG Recordings, Inc.",3324 +3325,spotify:track:3RUzUqLL2jGYVM1iod8aW6,Elevation,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7k7aHoW1MGWWQR0KXvswkx,U218 Singles (Deluxe Version),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a589a051c46a5ff41125e9d6,1,15,227106,https://p.scdn.co/mp3-preview/5f3fd5372ab7fd460afb965aa276548cbf03fc9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN0000229,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.577,0.836,9.0,-7.191,1.0,0.0374,0.00109,0.00033,0.0516,0.345,110.035,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",3325 +3326,spotify:track:7hQJA50XrCWABAu5v6QZ4i,Don't Stop Me Now - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:21HMAUrbbYSj9NiPPlGumy,Jazz (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1978-11-10,https://i.scdn.co/image/ab67616d0000b273008b06ec71019afd70153889,1,12,209413,https://p.scdn.co/mp3-preview/857030fc088d0d4f72f7795b260bb052d20f7146?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBUM71029610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.563,0.865,5.0,-5.277,1.0,0.16,0.0472,0.000191,0.77,0.601,156.271,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",3326 +3327,spotify:track:4JaUZ4rZaEtisZUiVx1qFJ,Rollercoaster,spotify:artist:72eP0W3rIhkxd0NHGg4w4u,B*Witched,spotify:album:6UQVcTIRAlVetOcHQP1MLd,B*Witched,spotify:artist:72eP0W3rIhkxd0NHGg4w4u,B*Witched,1998-10-08,https://i.scdn.co/image/ab67616d0000b2738af0e9a506fd26b90c945bb4,1,5,203640,https://p.scdn.co/mp3-preview/3b2162457a3689465715e8725ff7ed5c7276ef0a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBBBM9802103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,europop,girl group",0.667,0.726,2.0,-5.087,1.0,0.0277,0.0986,0.0,0.237,0.767,106.969,4.0,,Epic,P 1998 Sony Music Entertainment (UK) Ltd.,3327 +3328,spotify:track:4IPIBUz5SU0xVbgVetqPVo,More Than I Can Say,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,spotify:album:4RCRnNfAuLvHefHdxSPx39,Have You Ever Been In Love,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,1975,https://i.scdn.co/image/ab67616d0000b273f69dba8334f318bc9ffbedc5,1,3,222666,https://p.scdn.co/mp3-preview/f22381ab3cf9cf2b6b08f54c8c50c2f87c5e85ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUWA01000595,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.707,0.436,10.0,-15.632,1.0,0.0246,0.0775,3.65e-05,0.283,0.677,96.287,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Ltd, P ℗ 1975 (Silverbird) Australia Pty Ltd under exclusive licence to Warner Music Australia Pty Ltd",3328 +3329,spotify:track:4MPTj8lMMvxLwT3EwuXFop,Call Out My Name,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:3N88bRVAwQrtKqSV0UgU69,"My Dear Melancholy,",spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2018-03-30,https://i.scdn.co/image/ab67616d0000b273f38e946900c89c38a070227b,1,1,228373,https://p.scdn.co/mp3-preview/10abf114b144cbd4fc8638ac28aee1e58a7fac3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11800560,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.449,0.599,1.0,-4.892,1.0,0.0369,0.211,0.0,0.327,0.165,134.144,3.0,,Universal Republic Records,"C © 2018 The Weeknd XO, Inc., manufactured and marketed by Republic Records, a division of UMG Recordings, Inc., P ℗ 2018 The Weeknd XO, Inc., manufactured and marketed by Republic Records, a division of UMG Recordings, Inc.",3329 +3330,spotify:track:72rxzZ8hrQytuLr3kWuRPU,Boom Boom Boom,spotify:artist:4eb7QPyORtTxhMiLBo3YWK,The Outhere Brothers,spotify:album:0dmmI1iWNOxkINQfGvUX1f,"Club Dance 90's, Vol. 1",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-05-31,https://i.scdn.co/image/ab67616d0000b273fced35cf4c1ab7299869f929,1,4,255516,,False,0,FR59R1731076,spotify:user:bradnumber1,2020-03-05T09:20:39Z,"eurodance,hip house",0.849,0.667,0.0,-13.04,1.0,0.146,0.016,0.00259,0.0669,0.845,129.935,4.0,,Diamond Records,"C 2017 Diamond Records, P 2017 Diamond Records",3330 +3331,spotify:track:54bFM56PmE4YLRnqpW6Tha,Therefore I Am,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,spotify:album:5G58VVE9ub1KE01Mvbd8XM,Therefore I Am,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,2020-11-12,https://i.scdn.co/image/ab67616d0000b2737a152619a7b55bc621d07901,1,1,174321,https://p.scdn.co/mp3-preview/ff1bfad953ec2462c1560fdb0902ee86752b67b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USUM72021500,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.889,0.34,11.0,-7.773,0.0,0.0697,0.218,0.13,0.055,0.716,94.009,4.0,,Darkroom/Interscope Records,"C © 2020 Darkroom/Interscope Records, P ℗ 2020 Darkroom/Interscope Records",3331 +3332,spotify:track:7q3MflmodGZlOgZ799EpAb,Total Eclipse of the Heart,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,spotify:album:0pvhletDH7CphbKErUtPCF,80s 100 Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-03-01,https://i.scdn.co/image/ab67616d0000b273db56ceff816b668b7b6f04ff,1,22,267266,https://p.scdn.co/mp3-preview/8c2c9b5bf942cfcd3d53a219bd4e7083968b72e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBBBN8300002,spotify:user:bradnumber1,2022-08-31T00:05:46Z,"europop,new wave pop,soft rock",0.431,0.569,8.0,-10.774,1.0,0.0781,0.204,0.0,0.302,0.18,131.434,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment,3332 +3333,spotify:track:2fQxE0jVrjNMT9oJAXtSJR,Domino,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:0BZbTNqpXFg6lxNv78X7Lp,Who You Are (Platinum Edition),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2011-01-01,https://i.scdn.co/image/ab67616d0000b2737805aebd5a39023d553ada3a,1,14,231840,https://p.scdn.co/mp3-preview/4480416abe1f4bd9d253a9976807cd2401794303?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USUM71113573,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.758,0.557,7.0,-4.568,1.0,0.034,0.0117,0.0,0.0418,0.781,126.986,4.0,,Lava Music/Republic Records,"C © 2011 Universal Republic Records, P ℗ 2011 Universal Republic Records",3333 +3334,spotify:track:3ldG6XCLDXxWg1N6XhrSKo,Shy Guy,spotify:artist:221iMiF62DFPnVuCLJakP1,Diana King,spotify:album:5lwkQjfbO515jO9jwfzs6b,Tougher Than Love,spotify:artist:221iMiF62DFPnVuCLJakP1,Diana King,1995-04-14,https://i.scdn.co/image/ab67616d0000b2735c03a2a48bf8a0a94e01be9b,1,2,258560,https://p.scdn.co/mp3-preview/960423dfd57dcc385c88a92d629f15baf4f14a67?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM19400411,spotify:user:bradnumber1,2021-08-08T09:26:31Z,reggae fusion,0.714,0.825,11.0,-5.447,0.0,0.0751,0.0128,0.000569,0.049,0.751,94.074,4.0,,Work,P (P) 1995 SONY BMG MUSIC ENTERTAINMENT,3334 +3335,spotify:track:3ibKnFDaa3GhpPGlOUj7ff,Let Me Love You,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,spotify:album:7EXstuWka51pNFzEAidEol,Let Me Love You,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,2004-09-21,https://i.scdn.co/image/ab67616d0000b273c42212db6d665fab0c51d495,1,1,256733,https://p.scdn.co/mp3-preview/044543daa7f44efda4679fb799f5daccd2b13b68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USJAY0400348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,southern hip hop,urban contemporary",0.656,0.578,7.0,-8.97,0.0,0.0922,0.235,0.0,0.118,0.556,94.514,4.0,,J Records,"P (P) 2004 RCA Records, a division of Sony Music Entertainment",3335 +3336,spotify:track:2gw6Rk1Lr3lgN5GUXQBKrF,All For You - Acoustic Version,spotify:artist:7m60UAnbgFFNuJbmS6OxTk,Sister Hazel,spotify:album:3xV3L2TCV3af8H5rzBvSCR,Sister Hazel,spotify:artist:7m60UAnbgFFNuJbmS6OxTk,Sister Hazel,1994,https://i.scdn.co/image/ab67616d0000b273302816c651edab88c4918e11,1,3,203440,https://p.scdn.co/mp3-preview/04180ace7b7964297fa067e4acc47e28b60ff10d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USB760400208,spotify:user:bradnumber1,2021-11-20T11:13:09Z,"neo mellow,pop rock,post-grunge",0.605,0.441,9.0,-8.077,1.0,0.0321,0.876,0.0,0.326,0.688,135.309,4.0,,Rock Ridge Music,"C 2005 Crooked Chimney Music, Inc (BMI), P 2005 Crooked Chimney Music, Inc (BMI)",3336 +3337,spotify:track:5aFQU3VPCQ3YGfKBA4tLfj,1-800-273-8255,"spotify:artist:4xRYI6VqpkE3UwrDrAZL8L, spotify:artist:2wUjUUtkb5lvLKcGKsKqsR, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Logic, Alessia Cara, Khalid",spotify:album:1sweBli5bv5QIothRFFMsf,Everybody,spotify:artist:4xRYI6VqpkE3UwrDrAZL8L,Logic,2017-05-05,https://i.scdn.co/image/ab67616d0000b2736cfd3d4d9dbe353323190910,1,10,250173,https://p.scdn.co/mp3-preview/e60d9d46d42425e4bab86bedca7597c308958f9b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71702778,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"conscious hip hop,hip hop,pop rap,rap,canadian contemporary r&b,canadian pop,pop,pop,pop r&b",0.627,0.572,5.0,-7.738,0.0,0.0373,0.568,1.52e-06,0.198,0.361,100.041,4.0,,Universal Music Group,"C © 2017 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2017 Def Jam Recordings, a division of UMG Recordings, Inc.",3337 +3338,spotify:track:6Fj36toK6ky8HhyZdVTsce,Rhythm Of The Night,spotify:artist:6is2U7I1jlI8PjxNZOHIMV,DeBarge,spotify:album:76YCeM7GXEiKRte5ZG3ohs,Rhythm Of The Night,spotify:artist:6is2U7I1jlI8PjxNZOHIMV,DeBarge,1985,https://i.scdn.co/image/ab67616d0000b2739c3f9379531503ae9d3c936f,1,9,229106,https://p.scdn.co/mp3-preview/c7681f613d4d77b8361800ec9be4880ffd8a31d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18500526,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,funk,quiet storm,urban contemporary",0.716,0.762,11.0,-12.304,0.0,0.0457,0.0761,2.26e-05,0.0806,0.957,115.121,4.0,,Universal Music Group,"C © 2009 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2009 Motown Records, a Division of UMG Recordings, Inc.",3338 +3339,spotify:track:2oRn0QuaWQ1hragGQ7XZ9s,Devil Woman,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:0SW33rIKZ2v0EmfqRLKufz,40 Golden Greats,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1977,https://i.scdn.co/image/ab67616d0000b2732effa5f5d8903fb4fea0838d,2,18,214575,https://p.scdn.co/mp3-preview/5d8c89bffe76d41f5cabd00fdca461e139e591d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAYE7600329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.71,0.792,0.0,-5.996,1.0,0.0453,0.0792,3.32e-05,0.0871,0.858,116.687,4.0,,Parlophone UK,"C © 1989 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1977 Parlophone Records Ltd, a Warner Music Group Company",3339 +3340,spotify:track:3b4QImv0nTWtdAe63WtcAQ,If Tomorrow Never Comes,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,spotify:album:3AVtAHUxVZQMPGEJ7USE0j,10 Years Of Hits,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,2004-01-01,https://i.scdn.co/image/ab67616d0000b27380a68ec129fd0263547e1c7c,1,5,214320,https://p.scdn.co/mp3-preview/830b2a17b781268cee6826fb2620ca97859d16c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAKW0201024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.562,0.493,10.0,-6.159,1.0,0.028,0.33,0.0,0.0928,0.251,79.062,4.0,,Polydor Records,"C © 2004 Polydor Ltd. (UK), P ℗ 2004 Polydor Ltd. (UK)",3340 +3341,spotify:track:5dJslScEhiEhiNMEQPyKv6,Rock & Roll Music,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:1tSWWo2XAk37greKzaNu79,Cyclone Raymond,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,1989-01-01,https://i.scdn.co/image/ab67616d0000b273745ef8327673662c639fbe15,1,6,182466,https://p.scdn.co/mp3-preview/9bd4440e973afaeb4978b2e5ebfff8b2cb3c0b63?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUFE00000544,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.506,0.828,7.0,-9.986,1.0,0.0344,0.0841,0.000242,0.263,0.962,163.858,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Syray Music, P ℗ 1989 Syray Music",3341 +3342,spotify:track:1zLWUJOhY6yL345ENiioVF,Feels Like Woah,spotify:artist:4KvLfhBh83ARBAQ8Ynm5HI,Wesley Dean,spotify:album:4UHSdiQK2W7Qay3Aj1BMzR,The Way The World Looks,spotify:artist:4KvLfhBh83ARBAQ8Ynm5HI,Wesley Dean,2009-03-23,https://i.scdn.co/image/ab67616d0000b2733e2ecc3711a45ebacd4ac56d,1,2,192960,https://p.scdn.co/mp3-preview/d5b07348494e52b43ba14be77dee9f79662ff03f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUBM00900042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.467,0.941,11.0,-3.483,1.0,0.106,0.00587,3.66e-06,0.316,0.687,136.893,4.0,,Sony Music Entertainment,P All tracks (P) 2009 Sony Music Entertainment Australia Pty Ltd. except Track 10 (P) 2008 Sony Music Entertainment Australia Pty Ltd.,3342 +3343,spotify:track:6BnONjR7itGMEqwxKTIlRM,Safe And Sound,spotify:artist:4gwpcMTbLWtBUlOijbVpuu,Capital Cities,spotify:album:5ps3FwS0qGdRCvXop8q9vn,In A Tidal Wave Of Mystery (Deluxe Edition),spotify:artist:4gwpcMTbLWtBUlOijbVpuu,Capital Cities,2013,https://i.scdn.co/image/ab67616d0000b2733a40408476d5fa961e4fed1e,1,1,192789,https://p.scdn.co/mp3-preview/5e9a012f06d4c8612a3d378cde706104c00ec621?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA21203108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock",0.653,0.822,0.0,-4.857,1.0,0.033,0.00021,0.0047,0.0838,0.762,117.949,5.0,,Universal Music Group,"C © 2014 Lazy Hooks, LLC, Under Exclusive License To Capitol Records, LLC, P ℗ 2014 Lazy Hooks, LLC, Under Exclusive License To Capitol Records, LLC",3343 +3344,spotify:track:4u7EnebtmKWzUH433cf5Qv,Bohemian Rhapsody - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:1GbtB4zTqAsyfZEsm1RZfx,A Night At The Opera (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1975-11-21,https://i.scdn.co/image/ab67616d0000b273e319baafd16e84f0408af2a0,1,11,354320,https://p.scdn.co/mp3-preview/d56de4777551c3eb7430ecf289809b1653147bf8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBUM71029604,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.411,0.404,0.0,-9.928,0.0,0.0511,0.271,0.0,0.3,0.226,71.068,4.0,,EMI,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",3344 +3345,spotify:track:1XfmLcVCKlRWbivOmgd3pU,Out Of The Blue,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:6sCFWNbps5NqwfjdK8pWH1,Mistaken Identity,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2004-11-05,https://i.scdn.co/image/ab67616d0000b273dafff3f5ee4e38e38c937541,1,1,265200,https://p.scdn.co/mp3-preview/49dca721e74b81d2e1f067ea30d983ef6e9ecbab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUSM00400246,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.445,0.71,6.0,-4.063,1.0,0.0281,0.197,0.0,0.104,0.238,75.845,4.0,,Epic,P (P) 2004 Sony Music Entertainment Australia Pty Ltd,3345 +3346,spotify:track:5n85DnyWRYCOnJihXVQWqs,I Believe,spotify:artist:37zKpwMQ7NFzk0MPR4FUJe,Marcella Detroit,spotify:album:4lsQp3EEpwSUYNr6NHlKR5,Return of the 90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-11-16,https://i.scdn.co/image/ab67616d0000b27353fb0f20812d2550750dd500,1,9,292106,https://p.scdn.co/mp3-preview/64356b73f1164e58d5e10e9f3266b61d300092f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP1200080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.523,0.683,9.0,-5.023,0.0,0.0286,0.068,0.108,0.128,0.241,132.459,4.0,,WM UK,"C 2012 Rhino UK, a division of Warner Music UK Ltd., P 2012 Rhino UK, a division of Warner Music UK Ltd.",3346 +3347,spotify:track:1MHXTAtfqlRNkGv5g6Ca6q,Georgia,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:1TIkCvpgUWCpjKOuMVaGZD,Dream Your Life Away,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2014-09-05,https://i.scdn.co/image/ab67616d0000b273bcf5a4f38fba7a4bceef0591,1,8,230506,https://p.scdn.co/mp3-preview/a52220fd8db40f1cea3cb4000863b31398a29149?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21402869,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.388,0.66,11.0,-7.372,1.0,0.0308,0.312,0.000307,0.0943,0.401,143.554,4.0,,Liberation Records,"C 2014 Liberation Music, P 2014 Liberation Music",3347 +3348,spotify:track:3NKrH3UhrvpRa1Efyyi97G,Obsesion (No Es Amor) (feat. Baby Bash),"spotify:artist:3sMYEBy0CZFxedcnm9i9hf, spotify:artist:12PSlydMSjEHzSCj9X5qv7","Frankie J, Baby Bash",spotify:album:5uEs78OHdWBrWqneC8NscG,Obsession (No Es Amor) featuring Baby Bash,spotify:artist:3sMYEBy0CZFxedcnm9i9hf,Frankie J,2005-02-01,https://i.scdn.co/image/ab67616d0000b273363472d985f1c8d9a819f720,1,1,225826,https://p.scdn.co/mp3-preview/ad4957db0f3f343afec51d3c9dd41ed8fdd920b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USSM10414469,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop rap,southern hip hop,urban contemporary,chicano rap,latin hip hop,pop rap,southern hip hop,texas latin rap,urban contemporary",0.654,0.505,8.0,-8.28,1.0,0.0414,0.0983,0.0,0.316,0.568,150.108,4.0,,Columbia,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT,3348 +3349,spotify:track:1kX0JVbq1lG9VZNiLF3Bwz,Get Down,spotify:artist:4HVmeVTQBgvTuvjB1JYwaf,Gilbert O'Sullivan,spotify:album:6SZx2JXzQ7d2CmIvQIBkyv,"I'm a Writer, Not a Fighter (Deluxe Edition)",spotify:artist:4HVmeVTQBgvTuvjB1JYwaf,Gilbert O'Sullivan,1973-01-01,https://i.scdn.co/image/ab67616d0000b273c092f15a1a68bf6a5df51429,1,10,159680,https://p.scdn.co/mp3-preview/5bc498a5345013bd51a07b5e09ae5d50cb394d0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEQJ0400004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,soft rock",0.725,0.97,1.0,-5.958,1.0,0.0564,0.398,9.97e-05,0.0605,0.629,123.355,4.0,,Salvo,"C © 2012 Union Square Music Limited, a BMG Company, P ℗ 2012 Grand Upright Music Limited under exclusive license to Union Square Music Limited, a BMG Company",3349 +3350,spotify:track:7LygtNjQ65PSdzVjUnHXQb,Cherry Pie,spotify:artist:7HLvzuM9p11k9lUQfSM4Rq,Warrant,spotify:album:4LgsHyufRmmcB1HIqTES19,Cherry Pie,spotify:artist:7HLvzuM9p11k9lUQfSM4Rq,Warrant,1990-10-14,https://i.scdn.co/image/ab67616d0000b273ca00891c544ffcab44bf7a34,1,1,201026,https://p.scdn.co/mp3-preview/f7cf53d1feacf1886bb7410bb13d8ed219f566a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM10006917,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam metal,hard rock",0.472,0.946,2.0,-4.591,1.0,0.145,0.0372,0.0,0.352,0.486,177.489,4.0,,Columbia/Legacy,"P (P) 1990, 1992, 2004 Sony Music Entertainment Inc.",3350 +3351,spotify:track:7Kq16WtEJzdRSNQgdXsn7Y,Love$ick (feat. A$AP Rocky),"spotify:artist:5Q81rlcTFh3k6DQJXPdsot, spotify:artist:13ubrt8QOOCPljQ2FL1Kca","Mura Masa, A$AP Rocky",spotify:album:2LmodhQa7ayWg8qNGxJDY2,Mura Masa,spotify:artist:5Q81rlcTFh3k6DQJXPdsot,Mura Masa,2017-07-14,https://i.scdn.co/image/ab67616d0000b273e9ce40671e2f80bc7643fc1b,1,3,192160,https://p.scdn.co/mp3-preview/8521d3552b55462e09aecaf8f45e8d907d9bb1b7?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBUM71605141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"channel islands indie,escape room,hyperpop,indie soul,vapor soul,east coast hip hop,hip hop,rap",0.672,0.764,3.0,-5.109,0.0,0.142,0.141,0.00358,0.185,0.763,88.867,4.0,,Universal Music Group,"C © 2017 Anchor Point Records, under exclusive licence to Polydor Records, a division of Universal Music Operations Limited, P ℗ 2017 Anchor Point Records, under exclusive licence to Polydor Records, a division of Universal Music Operations Limited",3351 +3352,spotify:track:77Ffjo5brigkCg1sEZbKq5,Let's Go,spotify:artist:6Zh3xrWlA0SA9Fsfj9AVwm,Wang Chung,spotify:album:741fWPbQLcaYT0uVL32KCS,Mosaic,spotify:artist:6Zh3xrWlA0SA9Fsfj9AVwm,Wang Chung,1986-10-14,https://i.scdn.co/image/ab67616d0000b2738201d16e6ce2b8e4d2a8d1ae,1,5,270426,https://p.scdn.co/mp3-preview/7a6b5c6c4968fae2a062226d16133f41c5cd3310?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USGF18611505,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.821,0.658,6.0,-12.672,1.0,0.0397,0.136,0.0,0.167,0.932,119.985,4.0,,Geffen,"C © 1986 Geffen Records, P ℗ 1986 Geffen Records",3352 +3353,spotify:track:7MJQ9Nfxzh8LPZ9e9u68Fq,Lose Yourself,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:3CjuTytLZz3G9znXt2rJgU,SHADYXV,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-11-24,https://i.scdn.co/image/ab67616d0000b2733f66b5b49ccea004a5ef0db2,2,3,320626,https://p.scdn.co/mp3-preview/ce88b6c4c10f813d7fa3403ced55236c6a0747b0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,69,USIR10211559,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.689,0.735,2.0,-4.545,1.0,0.267,0.00922,0.00072,0.365,0.059,171.403,4.0,,3H,"C © 2014 Shady Records/Interscope Records, P This Compilation ℗ 2014 Shady Records/Interscope Records",3353 +3354,spotify:track:3ZCTVFBt2Brf31RLEnCkWJ,everything i wanted,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,spotify:album:4i3rAwPw7Ln2YrKDusaWyT,everything i wanted,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,2019-11-13,https://i.scdn.co/image/ab67616d0000b273f2248cf6dad1d6c062587249,1,1,245425,https://p.scdn.co/mp3-preview/340ee5a59a86f03c07c79612ea21b99dca4228cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USUM71922577,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.704,0.225,6.0,-14.454,0.0,0.0994,0.902,0.657,0.106,0.243,120.006,4.0,,Darkroom/Interscope Records,"C © 2019 Darkroom/Interscope Records, P ℗ 2019 Darkroom/Interscope Records",3354 +3355,spotify:track:6f2aeNom37eesQnUUPUqLd,"Knowing Me, Knowing You",spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:79ZX48114T8NH36MnOTtl7,Arrival,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1976-10-11,https://i.scdn.co/image/ab67616d0000b2739aa209383c254c9e23e7f909,1,5,241920,https://p.scdn.co/mp3-preview/f1e7727efbd75508bdcddacccb77d081ce66e72a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAYD7601050,spotify:user:bradnumber1,2021-08-08T09:27:55Z,"europop,swedish pop",0.546,0.733,2.0,-7.073,1.0,0.0299,0.0399,1.11e-06,0.235,0.91,107.285,4.0,,Universal Music Group,"C © 2001 Polar Music International AB, P ℗ 2001 Polar Music International AB",3355 +3356,spotify:track:1dG3YWhLiTyFfTJyT2DanJ,LaserLight,"spotify:artist:2gsggkzM5R49q6jpPvazou, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Jessie J, David Guetta",spotify:album:0BZbTNqpXFg6lxNv78X7Lp,Who You Are (Platinum Edition),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2011-01-01,https://i.scdn.co/image/ab67616d0000b2737805aebd5a39023d553ada3a,1,16,211946,https://p.scdn.co/mp3-preview/b3c4b649eb9b3231c0da25ab4525b704fad47a4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USUM71116262,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,big room,dance pop,edm,pop,pop dance",0.796,0.784,11.0,-3.713,1.0,0.061,0.147,5.27e-06,0.105,0.818,127.507,4.0,,Lava Music/Republic Records,"C © 2011 Universal Republic Records, P ℗ 2011 Universal Republic Records",3356 +3357,spotify:track:3cOO5IQtOYs7huq4Z6lYfr,Love Runs Out,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:42UJjk8i8L0De7lQtu7sqi,Native,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2014-01-01,https://i.scdn.co/image/ab67616d0000b2736f91180b662ca15ad2fb88f0,1,2,224853,https://p.scdn.co/mp3-preview/f4fa98cd255f1184707eac63e211944150d7f93d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USUM71404631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.715,0.931,7.0,-3.793,1.0,0.0565,0.171,0.0,0.0757,0.742,120.025,4.0,,Mosley / Interscope,"C © 2014 Mosley Music/Interscope Records, P ℗ 2014 Mosley Music/Interscope Records",3357 +3358,spotify:track:5Y8sslyf4YIBYxYUYmY52K,The Time Warp,"spotify:artist:0aIOdrjH5s3hJqxmKoAEUg, spotify:artist:7Akz0poR4eUgNM0ciCWqIs, spotify:artist:5qTjeXw33F5LHCKVzwi8WK","Richard O'Brien, Patricia Quinn, Nell Campbell",spotify:album:1llln24xqen4HG9w0Gpgua,Absolute Treasures: The Rocky Horror Picture Show - The Complete and Definitive Soundtrack (2015 40th Anniversary Re-Mastered Edition),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-08-21,https://i.scdn.co/image/ab67616d0000b273cf20a8b7fb8055fd5e700208,1,4,198049,https://p.scdn.co/mp3-preview/afa3c8f613371adc2ac249cacf985bc5a1f46fe2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,QM6N21562614,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.368,0.858,1.0,-4.986,0.0,0.246,0.093,0.00267,0.0986,0.542,175.7,4.0,,Ode Sounds & Visuals,"C (C) 2015 Ode Sounds and Visuals, Inc.",3358 +3359,spotify:track:5Q0Nhxo0l2bP3pNjpGJwV1,Party In The U.S.A.,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:64aKkqxc3Ur2LYIKeS5osS,The Time Of Our Lives,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2009-01-01,https://i.scdn.co/image/ab67616d0000b273d6c3ad6a2a27471e1d5e8103,1,2,202066,https://p.scdn.co/mp3-preview/b2ba87ea556f5c9f44c947b176ccec21da3e612f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USHR10924519,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.652,0.698,10.0,-4.667,0.0,0.042,0.00112,0.000115,0.0886,0.47,96.021,4.0,,Hollywood Records,"C © 2009 Hollywood Records, Inc., P ℗ 2009 Hollywood Records, Inc.",3359 +3360,spotify:track:5vJIqByEnZmFb9dyIgBzR1,Surfin' USA,spotify:artist:2MyNAoQL07EABerr6yhoT4,Leif Garrett,spotify:album:1FWTjROros7lbWXXmHKqJc,The Leif Garrett Collection,spotify:artist:2MyNAoQL07EABerr6yhoT4,Leif Garrett,1998-07-22,https://i.scdn.co/image/ab67616d0000b273a2ff51f12d2f8e0c711320fa,1,10,143066,https://p.scdn.co/mp3-preview/06e6e4e84cb87f1563876eff0107e981f6f19b6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USVR10200057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.572,0.646,7.0,-12.176,1.0,0.0461,0.0183,0.0,0.0969,0.971,158.103,4.0,,Volcano,"P (P) 1998 Volcano Entertainment, III, L.L.C.",3360 +3361,spotify:track:1RknXtekvGbn57eru2vXjd,In the Chapel in the Moonlight,spotify:artist:49e4v89VmlDcFCMyDv9wQ9,Dean Martin,spotify:album:3bCD76GPTntFdGOT6KXgO3,The Essential Dean Martin,spotify:artist:49e4v89VmlDcFCMyDv9wQ9,Dean Martin,2014-10-10,https://i.scdn.co/image/ab67616d0000b273330e9e8d6fa1037f43f0c5ad,2,13,152346,https://p.scdn.co/mp3-preview/3468987af75a8e4ace4f2e2d3422481a871a89d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USQX91301950,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,vocal jazz",0.393,0.396,11.0,-13.413,0.0,0.0378,0.794,8.06e-06,0.405,0.381,90.495,4.0,,Legacy Recordings,P This Compilation (P) 2014 Dean Martin Family Trust,3361 +3362,spotify:track:7nGuT0EfqQ1TXcADEKwB6Q,Day Drunk,spotify:artist:6fzQ81ouajOEFqCIB9VwrS,Morgan Evans,spotify:album:7CgrejBVsP6OeA3WgxDPPc,Things That We Drink To,spotify:artist:6fzQ81ouajOEFqCIB9VwrS,Morgan Evans,2018-10-12,https://i.scdn.co/image/ab67616d0000b2738919426ce67c6871b94b11f4,1,5,194898,https://p.scdn.co/mp3-preview/d474d816b764e85cf8b24fe55ff7809120877429?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB11801063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,contemporary country,country road,modern country rock",0.647,0.754,10.0,-5.446,1.0,0.0378,0.015,0.0,0.0684,0.755,97.005,4.0,,Warner Records,"C © 2018 Warner Music Nashville LLC., P ℗ 2018 Warner Music Nashville LLC.",3362 +3363,spotify:track:7EO9TXN6UPFCCLFdZybmQI,Treat Me Good,spotify:artist:4KQNF34GIZZWL10tS3XNTk,Bachelor Girl,spotify:album:2OXfToevYybLCxNmm6bap7,Waiting For The Day,spotify:artist:4KQNF34GIZZWL10tS3XNTk,Bachelor Girl,1998,https://i.scdn.co/image/ab67616d0000b273d395d4d912fd9b998eea760d,1,5,321293,https://p.scdn.co/mp3-preview/4589ad604f9e20adad018a9b18d9d066d4ef5d35?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUBM09831210,spotify:user:bradnumber1,2022-02-03T09:58:49Z,"australian pop,australian rock",0.521,0.845,1.0,-7.74,0.0,0.0442,0.0379,0.0,0.245,0.821,171.943,4.0,,Gotham,P (P) 1998 Sony Music Entertainment Australia Pty Ltd,3363 +3364,spotify:track:5hff5RQeE84pznOt8WEWeO,Birthday,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,spotify:album:2KLNA0H5XiiMLPAWSb8sUu,Birthday,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,2020-02-07,https://i.scdn.co/image/ab67616d0000b273e06f9b0fb01bbf0f1c1ad36d,1,1,181466,https://p.scdn.co/mp3-preview/c32702700d81ef35dcda2f08d72391f49706e794?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAHS2000028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.609,0.785,11.0,-3.32,1.0,0.0891,0.0502,0.0,0.171,0.756,151.995,4.0,,Major Tom's / Asylum,"C © 2020 A Major Toms / Asylum Records UK release. (p) and © 2020 Warner Music UK Limited., P ℗ 2020 A Major Toms / Asylum Records UK release. (p) and © 2020 Warner Music UK Limited.",3364 +3365,spotify:track:1cS0TgbR263ey9jn0MwD2s,River (feat. Ed Sheeran),"spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Eminem, Ed Sheeran",spotify:album:0U6ldwLBEMkwgfQRY4V6D2,Revival,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2017-12-15,https://i.scdn.co/image/ab67616d0000b273dee6b58d35215322626b5701,1,5,221013,https://p.scdn.co/mp3-preview/a72ce3ac348ba715d03df997768bc269094f7826?cid=9950ac751e34487dbbe027c4fd7f8e99,True,72,USUM71712944,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap,pop,singer-songwriter pop,uk pop",0.748,0.749,8.0,-5.916,0.0,0.516,0.142,0.0,0.0713,0.659,90.09,4.0,,Aftermath,"C © 2017 Aftermath Records, P ℗ 2017 Aftermath Records",3365 +3366,spotify:track:1PZ5mBtpRXZj8aMgQQYcro,Deep End,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,spotify:album:2uNFpEVey5RsxzTdoDmjiz,Beautiful Lies (Deluxe),spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,2016-03-25,https://i.scdn.co/image/ab67616d0000b273ceb1cccb864424fc5c2bc1e7,1,4,208840,https://p.scdn.co/mp3-preview/b221f930720cbe3c6883a93ae2c12c4cbf291b69?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAHS1600022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,uk pop,viral pop",0.686,0.296,2.0,-8.514,1.0,0.0309,0.761,0.0,0.0783,0.308,85.94,4.0,,Atlantic Records UK,"C © 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company, P ℗ 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company",3366 +3367,spotify:track:6habFhsOp2NvshLv26DqMb,Despacito,"spotify:artist:4V8Sr092TqfHkfAA5fXXqG, spotify:artist:4VMYDCV2IEDYJArk749S6m","Luis Fonsi, Daddy Yankee",spotify:album:5C0YLr4OoRGFDaqdMQmkeH,VIDA,spotify:artist:4V8Sr092TqfHkfAA5fXXqG,Luis Fonsi,2019-02-01,https://i.scdn.co/image/ab67616d0000b273ef0d4234e1a645740f77d59c,1,9,229360,https://p.scdn.co/mp3-preview/2ea246524bf5a1a6432d4cf1b911a98bd84e3e8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USUM71607007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,puerto rican pop,latin hip hop,reggaeton,trap latino,urbano latino",0.655,0.797,2.0,-4.787,1.0,0.153,0.198,0.0,0.067,0.839,177.928,4.0,,UMLE - Latino,"C © 2019 UMG Recordings, Inc., P ℗ 2019 UMG Recordings, Inc.",3367 +3368,spotify:track:3ACnarSkTKiOTj4rsnFkgf,Sorry,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:6gCJFfgKjcxn6lh1zqjKLH,Sorry,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-10-23,https://i.scdn.co/image/ab67616d0000b273638c13974c6fcfda8017e5d9,1,1,200786,https://p.scdn.co/mp3-preview/eca5a32b13f68f700b06e06ffdc8110e61e232ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.674,0.772,0.0,-3.685,0.0,0.0396,0.0864,0.0,0.308,0.402,100.039,4.0,,Universal Music Group,"C (C) 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P (P) 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",3368 +3369,spotify:track:6P0AbpQHF7L327pP1XCGDl,Hip Hop Holiday (Radio Mix) [Bonus Track],spotify:artist:3D4aMmMKFMVmxAK3rzTKXD,3 The Hard Way,spotify:album:1Tj0FgKEj0cO9IgLVM7Oor,Old Skool Prankstas,spotify:artist:3D4aMmMKFMVmxAK3rzTKXD,3 The Hard Way,2012-07-27,https://i.scdn.co/image/ab67616d0000b273a0d7d016eb456933233231fc,1,16,219160,https://p.scdn.co/mp3-preview/f4d1e9812c6b4c9b9c80b23efaee16dae9cf1061?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZPL01200036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nz hip hop,0.851,0.686,7.0,-12.014,1.0,0.237,0.0642,0.000187,0.225,0.431,102.002,4.0,,Propeller Lamont Ltd,"C 2012 Alsi Music Ltd, P 2012 Alsi Music Ltd",3369 +3370,spotify:track:6v7L5SM1jzXvCAI1zfxNYX,The Others - Radio Edit,"spotify:artist:1umoTEAL97Q6OAS1KX2RX3, spotify:artist:3NjAruKAeWHL1nCIoGESIF","TV Rock, Dukes of Windsor",spotify:album:0pHWUEC54YM4kH2vIrETQd,The Others,"spotify:artist:1umoTEAL97Q6OAS1KX2RX3, spotify:artist:3NjAruKAeWHL1nCIoGESIF","TV Rock, Dukes of Windsor",2007-03-17,https://i.scdn.co/image/ab67616d0000b273117b05dec4b429e6cd6bbbbb,1,1,203866,https://p.scdn.co/mp3-preview/e9cf2216123591aa15b5262429a5a647f4934a6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00700180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian indie rock",0.635,0.848,6.0,-2.496,1.0,0.098,0.0238,1.23e-06,0.0928,0.539,124.938,4.0,,Sony BMG Music Entertainment,"P (P) 2007 TV Rock Pty Ltd, under exclusive licence to SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED for Australia and New Zealand",3370 +3371,spotify:track:32fmQsWSAaDas2MJRyMSGG,The Ghost Inside,spotify:artist:6dgwEwnK0YtDfS9XhRwBTG,Broken Bells,spotify:album:0X7WyEKdm5afGj1fmD7Blx,Broken Bells,spotify:artist:6dgwEwnK0YtDfS9XhRwBTG,Broken Bells,2010-03-01,https://i.scdn.co/image/ab67616d0000b273e198b6b9c5bfe013458e8ec9,1,4,198040,https://p.scdn.co/mp3-preview/af95ae6429947f50eeb1d1a5bc29550ad4bd8d86?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM10906527,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chamber pop,indie rock,indietronica,la indie,modern rock",0.869,0.7,2.0,-4.966,1.0,0.0419,0.0571,0.414,0.0691,0.983,103.983,4.0,,Columbia,"P (P) 2009, 2010 Sony Music Entertainment",3371 +3372,spotify:track:4RvWPyQ5RL0ao9LPZeSouE,Everybody Wants To Rule The World,spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,spotify:album:3myPwaMYjdwhtq0nFgeG6W,Songs From The Big Chair (Super Deluxe Edition),spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,1985-02-25,https://i.scdn.co/image/ab67616d0000b27322463d6939fec9e17b2a6235,1,3,251488,https://p.scdn.co/mp3-preview/49a5e33d422484fde5484d3e665821e9a3a8b540?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,GBF088590110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,rock,sophisti-pop,synthpop",0.645,0.795,7.0,-12.095,1.0,0.0527,0.347,0.00389,0.104,0.535,112.067,4.0,,UMC (Universal Music Catalogue),"C © 2014 Mercury Records Limited, P This Compilation ℗ 2014 Mercury Records Limited",3372 +3373,spotify:track:62LJFaYihsdVrrkgUOJC05,Kiss,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:54DjkEN3wdCQgfCTZ9WjdB,Parade - Music from the Motion Picture Under the Cherry Moon,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1986-03-31,https://i.scdn.co/image/ab67616d0000b27323cc0f0a925845a3de4aca38,1,10,226240,https://p.scdn.co/mp3-preview/390cf478a1f3fbdcf7b5346a6004d273ed47ed3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USWB19903319,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.898,0.271,7.0,-12.238,1.0,0.091,0.0135,0.00138,0.0461,0.742,111.485,4.0,,Warner Records,"C © 1986 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1986 NPG Records, Inc. under exclusive license to Warner Records Inc.",3373 +3374,spotify:track:1ZpfvNm0j2F06XarcQJwzN,"This Is My Song - From ""A Countess From Hong Kong""",spotify:artist:2LrnsAjwJ6Ji8cD5xK5A1q,Harry Secombe,spotify:album:3GwxJLrg6sl7bSwHErFJo2,The Very Best Of,spotify:artist:2LrnsAjwJ6Ji8cD5xK5A1q,Harry Secombe,1997-01-01,https://i.scdn.co/image/ab67616d0000b2738c27683a6f919080e1872ab1,1,11,197133,https://p.scdn.co/mp3-preview/9bd9f93540b43fcc10ee27414d1a7091c8fa45da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,GBF080080505,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.248,0.51,5.0,-5.485,1.0,0.0308,0.977,0.0127,0.822,0.277,89.181,3.0,,Spectrum,"C © 1997 Karussell International, P This Compilation ℗ 1997 Karussell International",3374 +3375,spotify:track:6ZANrVuAMp2rpjhfbOuJly,Same Old Love,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:3Kbuu2tHsIbplFUkB7a5oE,Revival (Deluxe),spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2015-10-09,https://i.scdn.co/image/ab67616d0000b2736bc7473df6c9d1fd90972e84,1,4,229080,https://p.scdn.co/mp3-preview/59629fb443149d25a6577e7990cc8fd790352f90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM71510437,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.672,0.593,11.0,-4.01,0.0,0.0304,0.0223,0.0,0.214,0.438,98.02,4.0,,Selena Gomez PS,"C © 2015 Interscope Records, P ℗ 2015 Interscope Records",3375 +3376,spotify:track:1QQgSUKCG8GakzMOwi4lFS,Rubber Bullets,spotify:artist:6i6WlGzQtXtz7GcC5H5st5,10cc,spotify:album:1NefUKCblMkMNlspyQrJEH,10cc,spotify:artist:6i6WlGzQtXtz7GcC5H5st5,10cc,1973,https://i.scdn.co/image/ab67616d0000b27357bd57ebfea7dbc0e8c378d2,1,7,318853,https://p.scdn.co/mp3-preview/82d11da4f22f3ab9ae0d3b48e54b68bee288f26c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCBU7310332,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,glam rock,mellow gold,new romantic,soft rock,symphonic rock,yacht rock",0.548,0.877,7.0,-4.458,1.0,0.124,0.0437,1.3e-05,0.0921,0.466,148.799,4.0,,Hipgnosis Songs,"C 2007 Hipgnosis Songs Fund Limited, P 2007 Hipgnosis Songs Fund Limited",3376 +3377,spotify:track:71e9ipM4JVNOa2PpeIU7Yr,Here I Am,spotify:artist:5HH4t1HKVKg1hgcWCWOWSz,Natalie Gauci,spotify:album:7EqTMM3iQczmQHcYWCCbhw,The Winner's Journey,spotify:artist:5HH4t1HKVKg1hgcWCWOWSz,Natalie Gauci,2007-12-08,https://i.scdn.co/image/ab67616d0000b2736d3da9690193afe25ade301b,1,1,226373,https://p.scdn.co/mp3-preview/3e577a8ddbadef2a8d4735e011921f3787d3b5a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUBM00700935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.377,0.453,10.0,-5.256,1.0,0.026,0.106,0.000811,0.217,0.228,80.047,4.0,,Sony BMG Music Entertainment,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,3377 +3378,spotify:track:0svl7cK07gK1ia5ainczU5,Break Ya Neck,spotify:artist:1YfEcTuGvBQ8xSD1f53UnK,Busta Rhymes,spotify:album:1FH8ruELaU1kthrFvdcSmt,Genesis,spotify:artist:1YfEcTuGvBQ8xSD1f53UnK,Busta Rhymes,2001-11-13,https://i.scdn.co/image/ab67616d0000b273117fafcd2354258771914e63,1,10,231240,https://p.scdn.co/mp3-preview/e200c9a2e2ecace33e61bcdba98ced7c581c3e48?cid=9950ac751e34487dbbe027c4fd7f8e99,True,1,USJAY0100418,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hardcore hip hop,hip hop,pop rap,rap",0.82,0.809,4.0,-6.759,0.0,0.251,0.443,0.00175,0.0613,0.737,83.011,4.0,,J Records,P (P) 2001 J Records LLC,3378 +3379,spotify:track:6QZFBZNz0vIDwBsGC6sDSd,Angel Baby,spotify:artist:422gtj7D6L6pvr0GE08lwf,Rosie & The Originals,spotify:album:4NOIgEkNQUyKWq582nTFYR,The Unavailable 16 & The Original Nitty Gritty,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1993-01-01,https://i.scdn.co/image/ab67616d0000b2732cf4397e15e2274674e14085,1,11,227624,https://p.scdn.co/mp3-preview/fb239c156b3c311084fea05ed9fc7d5059397851?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USVJ10400265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,souldies,0.351,0.177,0.0,-15.218,1.0,0.0323,0.85,0.000662,0.113,0.447,196.986,3.0,,Universal Music Group,"C © 1993 Concord Music Group, Inc., P ℗ 1993 Concord Music Group, Inc.",3379 +3380,spotify:track:6vY3lQxTHLxBhlTcOlFwig,Everytime You Need Me,spotify:artist:2t9efDsc10DtZpi4LP3BJJ,Fragma,spotify:album:4KIflghOzSdIl08dNz1SaE,Años 2000 Vol. 7,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2001,https://i.scdn.co/image/ab67616d0000b273c4b37a61bb2092c7f28c8c1b,1,20,210440,https://p.scdn.co/mp3-preview/0a7ec687ab296721c9c01685c66e1c8fd41838bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM6P41533270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,german techno",0.677,0.907,11.0,-6.168,0.0,0.0319,0.15,0.0424,0.318,0.747,137.051,4.0,,Dfm Music,C (C) 2001 Dfm Music,3380 +3381,spotify:track:2ckSRPrec9HADRsdvfKe7j,Melanie Makes Me Smile,spotify:artist:5zSkAr8mrpMHZCNRT76tx1,The Strangers,spotify:album:39bIhzRFvpG37XFoOUQVv6,The Best of the Strangers,spotify:artist:5zSkAr8mrpMHZCNRT76tx1,The Strangers,2017-11-11,https://i.scdn.co/image/ab67616d0000b2732ddb3a0eb9ea7ce3e63fa22b,1,1,192160,https://p.scdn.co/mp3-preview/17415649668f2612f72368608baa7c405becf2c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700233,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.601,0.657,3.0,-8.127,1.0,0.0309,0.506,0.0,0.15,0.671,106.951,4.0,,Fable Records,"C 1971 Fable Records, P 2017 Southern Cross Music Pty Limited",3381 +3382,spotify:track:1xPSDf8z4dH46gkvlLtvDO,Maniac,spotify:artist:771qBvjnXOH9Azr6lKy6FB,Michael Sembello,spotify:album:5rdy0MyO9GklJMgqfAJOSQ,Flashdance Original Soundtrack From The Motion Picture,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1983-01-01,https://i.scdn.co/image/ab67616d0000b27356ec3422848f7987c61824da,1,10,244706,https://p.scdn.co/mp3-preview/a9c784df11af42bf0ff4b27bc03a9b9b45adf8ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USPR38302462,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hi-nrg,0.617,0.533,3.0,-11.516,0.0,0.0651,0.0891,4.04e-06,0.0415,0.835,158.86,4.0,,Casablanca Records,"C © 1983 The Island Def Jam Music Group, a Division of UMG Recordings, Inc., P ℗ 1983 The Island Def Jam Music Group",3382 +3383,spotify:track:2VWPTcpDIdObAvk4UtcJz9,Funky Cold Medina,spotify:artist:5Y8EphH8Vdqu5SLj6K5vjj,Tone-Loc,spotify:album:7oHrBuKyui2FuahpEovPBN,Loc-ed After Dark (Expanded Edition),spotify:artist:5Y8EphH8Vdqu5SLj6K5vjj,Tone-Loc,1989-01-01,https://i.scdn.co/image/ab67616d0000b27392bc037e04fc2d11c7681116,1,6,248160,https://p.scdn.co/mp3-preview/27d58ffe732f085b4b3ad67a3e53c7ffb97f6333?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US3DF1209589,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hip house,miami bass",0.984,0.781,5.0,-9.622,0.0,0.0912,0.0834,1.54e-06,0.0645,0.924,117.481,4.0,,Universal Music Group,"C © 1989 The Bicycle Music Company, P ℗ 1989 The Bicycle Music Company",3383 +3384,spotify:track:7wN9ilv0toweHCXM6O1uMl,Sky High,spotify:artist:59msSsiTOzFXBhRZZdwNVz,Newton,spotify:album:0kQ1Aell6YQXRLBL0mwNp6,Sometimes When We Touch,spotify:artist:59msSsiTOzFXBhRZZdwNVz,Newton,1997,https://i.scdn.co/image/ab67616d0000b273be626951ac328f8186d2b684,1,2,243240,https://p.scdn.co/mp3-preview/a891e4908e6f93dd6787ff347455d44d21c6156d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBDM9700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.593,0.867,2.0,-7.46,1.0,0.0281,0.0206,3.14e-05,0.0878,0.514,133.928,4.0,,Dome,"C 1997 Dome Records Ltd, P 1997 Dome Records Ltd",3384 +3385,spotify:track:3QneNxsLZg14U1it3Hd5xV,Spare Me The Details,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:4BkPz5sKAaYnZrYCziv3NB,Splinter,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,2003-12-09,https://i.scdn.co/image/ab67616d0000b2734a9dfcf1ec156c12b3b7b527,1,10,204240,https://p.scdn.co/mp3-preview/3529101c71c428900cf31b045ad6cdb35eef7ab1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USSM10312719,spotify:user:bradnumber1,2021-11-11T04:06:09Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.634,0.886,8.0,-5.061,1.0,0.0353,0.045,0.0,0.106,0.974,146.389,4.0,,Universal Music Group,"C © 2003 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc., P ℗ 2003 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc.",3385 +3386,spotify:track:76QK6gTaW2bBV47FDe3RPK,Resolution,spotify:artist:7CIW23FQUXPc1zebnO1TDG,Matt Corby,spotify:album:22aja1RtjRSzdKRuwx0Aog,Resolution - EP,spotify:artist:7CIW23FQUXPc1zebnO1TDG,Matt Corby,2013-01-01,https://i.scdn.co/image/ab67616d0000b2731a5b731a0ff4205214861c4a,1,1,256389,https://p.scdn.co/mp3-preview/52cb1c8444bf85223a5bfa5714b1b852959072fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,AUUM71300654,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,indie anthem-folk",0.516,0.566,7.0,-8.339,1.0,0.0378,0.0523,0.000949,0.11,0.175,126.819,4.0,,Universal Music Australia Pty. Ltd.,"C © 2013 Matt Corby, P ℗ 2013 Matt Corby, Marketed & Distributed in Australasia by Universal Music Australia",3386 +3387,spotify:track:5whIG7u2VjyILwGqm9dkDD,Hope,"spotify:artist:5EvFsr3kj42KNv97ZEnqij, spotify:artist:4QGEGxEdl59bsCfNCUXgXs","Shaggy, Prince Mydas",spotify:album:3MT88SSyxQGbqYXj4LVk3b,Hot Shot,spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,2000-08-08,https://i.scdn.co/image/ab67616d0000b2739449f9491c364d28a9668e17,1,7,226706,https://p.scdn.co/mp3-preview/2c6d3a8ee4c9b37c6692b62c96d7f75ebd03cff1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USMC10000394,spotify:user:bradnumber1,2022-01-13T01:33:17Z,"dance pop,pop rap,reggae fusion",0.778,0.756,1.0,-7.323,1.0,0.0407,0.029,0.000278,0.0659,0.244,101.33,4.0,,Geffen,"C © 2000 UMG Recordings, Inc., P ℗ 2000 UMG Recordings, Inc.",3387 +3388,spotify:track:6ztstiyZL6FXzh4aG46ZPD,Boogie Wonderland,"spotify:artist:4QQgXkCYTt3BlENzhyNETg, spotify:artist:64CuUOOirKmdAYLQSfaOyr","Earth\, Wind & Fire, The Emotions",spotify:album:4RLVTxnuVN5ZWZqBFnaaQt,I Am,spotify:artist:4QQgXkCYTt3BlENzhyNETg,"Earth\, Wind & Fire",1979-06,https://i.scdn.co/image/ab67616d0000b2735ccd022a69a4da9551efd988,1,5,288293,https://p.scdn.co/mp3-preview/06c36139896754af7269ca5540bcd522e598518a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USSM19922860,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,jazz funk,motown,soul,chicago soul,classic soul,disco,funk,girl group,motown,post-disco,quiet storm,soul,southern soul",0.802,0.756,2.0,-10.791,0.0,0.0349,0.0843,0.00765,0.0521,0.963,131.715,4.0,,Columbia/Legacy,"P (P) 1979 Columbia Records, a division of Sony Music Entertainment",3388 +3389,spotify:track:4P6IttK2PRBjyr3fm0pP7t,Past Life (with Selena Gomez),"spotify:artist:7uaIm6Pw7xplS8Dy06V6pT, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","Trevor Daniel, Selena Gomez",spotify:album:6stMulZek1Sha1ggxWhQNr,Past Life (with Selena Gomez),"spotify:artist:7uaIm6Pw7xplS8Dy06V6pT, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","Trevor Daniel, Selena Gomez",2020-06-26,https://i.scdn.co/image/ab67616d0000b2731fc7c9cc08cd97258af886e9,1,1,186480,https://p.scdn.co/mp3-preview/f3c1247f067b62e4be6b37ffcd35cde79a0fef60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM72010569,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"melodic rap,pop,post-teen pop",0.612,0.539,3.0,-5.071,1.0,0.0488,0.104,0.0,0.18,0.294,79.948,4.0,,Trevor Daniel ft. Selena Gomez Past Life,"C © 2020 Alamo/Interscope Records, P ℗ 2020 Alamo/Interscope Records",3389 +3390,spotify:track:4zjwqRTSYKJuKo2GUs5b7N,Hands Out Of My Pocket,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:59xrsdn7ftycmgIHgR5H6n,Teenage Love (Remastered),spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b273bc1148c08132fb6ff4aab206,1,1,138411,https://p.scdn.co/mp3-preview/9131e36312bcbe05e01009cf6ad1281c18ef486d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUU741100193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.42,0.936,9.0,-5.689,1.0,0.108,0.00048,7.6e-06,0.259,0.691,124.107,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",3390 +3391,spotify:track:3ZOEytgrvLwQaqXreDs2Jx,Can't Stop,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:6deiaArbeoqp1xPEGdEKp1,By the Way (Deluxe Edition),spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,2002-07-09,https://i.scdn.co/image/ab67616d0000b273de1af2785a83cc660155a0c4,1,7,269000,https://p.scdn.co/mp3-preview/1b3bc0aca1746a99cbb8dd07b2325f6499b58a2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USWB10201694,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.618,0.938,9.0,-3.442,1.0,0.0456,0.0179,0.0,0.167,0.875,91.455,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",3391 +3392,spotify:track:6RCp9hJWSExTOzNHrN1hSZ,Healing Hands,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,spotify:album:1cFjFaXFFJynE23NtjTEL0,Ghosts & Heartaches,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,2018-05-18,https://i.scdn.co/image/ab67616d0000b273f5b4dec3ec649f0d3de2e91c,1,2,250820,https://p.scdn.co/mp3-preview/0a133539937ea519cbc0d6e965e7444f1523cd05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,QMCE31801809,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.672,0.764,0.0,-5.067,1.0,0.0678,0.127,0.0,0.0735,0.438,105.004,4.0,,Sony Music Entertainment,P (P) 2018 300 Entertainment,3392 +3393,spotify:track:2SnzwEu9uB9VGCx8Faj97j,Baby Workout,spotify:artist:4VnomLtKTm9Ahe1tZfmZju,Jackie Wilson,spotify:album:21VPaMyefRRHTMLsLsfvX3,Baby Workout,spotify:artist:4VnomLtKTm9Ahe1tZfmZju,Jackie Wilson,1963,https://i.scdn.co/image/ab67616d0000b2739f31dfe57f4ebd83859dad4a,1,6,182413,https://p.scdn.co/mp3-preview/1d3296bec79f7fc178a952d1755f3c872bb3bedb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USBWC0110044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago soul,classic soul,quiet storm,rock-and-roll,soul",0.584,0.68,8.0,-7.333,1.0,0.0817,0.515,0.0,0.204,0.87,141.529,4.0,,Brunswick Records,"C 1963 Brunswick Record Corp., P 1963 Brunswick Record Corp.",3393 +3394,spotify:track:4OMJGnvZfDvsePyCwRGO7X,Houdini,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:5pTaRVLwZOFObIbRBubmeb,Houdini,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2023-11-09,https://i.scdn.co/image/ab67616d0000b273001d5706fddc72561f6488af,1,1,185917,https://p.scdn.co/mp3-preview/df4af86970ffb1a7042d1d228bcea7b4aabfdba4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBAHT2301246,spotify:user:bradnumber1,2024-01-14T19:57:09Z,"dance pop,pop,uk pop",0.744,0.789,9.0,-4.876,0.0,0.059,0.0036,0.00144,0.0947,0.866,116.985,4.0,,Warner Records,"C Under exclusive license to Warner Records UK, a division of Warner Music UK Limited, © 2023 Radical22 Limited, P Under exclusive license to Warner Records UK, a division of Warner Music UK Limited, ℗ 2023 Radical22 Limited",3394 +3395,spotify:track:6mz1fBdKATx6qP4oP1I65G,Pony,spotify:artist:7r8RF1tN2A4CiGEplkp1oP,Ginuwine,spotify:album:4he7R24eqd1EbF9kegiAK8,R&B: From Doo-Wop To Hip-Hop,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1999-10-08,https://i.scdn.co/image/ab67616d0000b273980caf4dd525a15f08f8cb87,2,18,251733,https://p.scdn.co/mp3-preview/c4694c8eeac6ffc53603ae187d3d29c79c99a40d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,69,USSM19605851,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.749,0.605,8.0,-9.359,0.0,0.086,0.00186,0.0381,0.115,0.966,142.024,4.0,,Sony Music Entertainment,"P Originally Released 1969 T-Neck Records, (P) 1979 Capitol Records inc., 1979 MJJ Productions, Inc., 1984 Personal Records Inc., 1985, 1987 Courtesy of Universal Music Special Markets, 1996 Ruthless Records, Originally Released 1950, 1951, 1952, 1955,",3395 +3396,spotify:track:2YwPVkOzvq4N6xOCznpLoy,Young at Heart,spotify:artist:2ZmmVo9SlM8XJH97UWEu7l,Amy Meredith,spotify:album:7BKUaIZLd76SofqrLIusog,Restless,spotify:artist:2ZmmVo9SlM8XJH97UWEu7l,Amy Meredith,2010-07-02,https://i.scdn.co/image/ab67616d0000b27399d7025a81839a8b0e7f4a15,1,4,231053,https://p.scdn.co/mp3-preview/55e39e574a178d8193eec42c36d9a0bc846a079f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00900285,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.493,0.848,6.0,-3.628,1.0,0.0404,0.001,3.21e-05,0.261,0.39,122.525,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd. except track 2 (P) 2009 Sony Music Entertainment Australia Pty Ltd.,3396 +3397,spotify:track:3swc6WTsr7rl9DqQKQA55C,Psycho (feat. Ty Dolla $ign),"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:7c0XG5cIJTrrAgEC3ULPiq","Post Malone, Ty Dolla $ign",spotify:album:6trNtQUgC8cgbWcqoMYkOR,beerbongs & bentleys,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2018-04-27,https://i.scdn.co/image/ab67616d0000b273b1c4b76e23414c9f20242268,1,8,221440,https://p.scdn.co/mp3-preview/bb93a85d3a758a73f571fb053cc05050be9dc131?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USUM71710836,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,hip hop,pop rap,r&b,southern hip hop,trap,trap soul",0.75,0.56,8.0,-8.094,1.0,0.105,0.546,0.0,0.111,0.459,140.06,4.0,,Republic Records,"C © 2018 Republic Records, a division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",3397 +3398,spotify:track:05wIrZSwuaVWhcv5FfqeH0,Walking On Sunshine,spotify:artist:2TzHIUhVpeeDxyJPpQfnV3,Katrina & The Waves,spotify:album:1UQG78YJjaBySRMh0A8Uw7,Katrina & The Waves,spotify:artist:2TzHIUhVpeeDxyJPpQfnV3,Katrina & The Waves,1985,https://i.scdn.co/image/ab67616d0000b273eafaf556eda644a745d0144d,1,6,238733,https://p.scdn.co/mp3-preview/bdb74b1bc099b5201744ee766e537d4e068c9153?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USCA28500452,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.597,0.87,10.0,-11.97,1.0,0.0371,0.0119,0.166,0.0678,0.944,109.901,4.0,,Capitol Records,"C © 2006 Capitol Records Inc., P ℗ 2006 Capitol Records Inc.",3398 +3399,spotify:track:0LoH6lFQLNscy3RyljAewK,Let's Get Rocked,spotify:artist:6H1RjVyNruCmrBEWRbD0VZ,Def Leppard,spotify:album:0X1muonPHLSGzU6g3dZx7M,Adrenalize (Deluxe),spotify:artist:6H1RjVyNruCmrBEWRbD0VZ,Def Leppard,1992-03-31,https://i.scdn.co/image/ab67616d0000b2733061b8dbb3c061b853b8e799,1,1,295957,https://p.scdn.co/mp3-preview/927f1396cc4de0e375d70fe5859366501fdb8171?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBF089200609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,nwobhm,rock",0.564,0.888,5.0,-6.763,1.0,0.0325,0.0109,6.68e-05,0.177,0.526,91.989,4.0,,UMC (Universal Music Catalogue),"C © 1992 Bludgeon Riffola Limited, under exclusive licence to Mercury Records Limited, P ℗ 2009 Mercury Records Limited",3399 +3400,spotify:track:1jYiIOC5d6soxkJP81fxq2,"I'm the One (feat. Justin Bieber, Quavo, Chance the Rapper & Lil Wayne)","spotify:artist:0QHgL1lAIqAw0HtD7YldmP, spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0VRj0yCOv2FXJNP47XQnx5, spotify:artist:1anyVhU62p31KFi8MEzkbf, spotify:artist:55Aa2cqylxrFIXC767Z865","DJ Khaled, Justin Bieber, Quavo, Chance the Rapper, Lil Wayne",spotify:album:3HhZbSJdhOqMSaRbEt3gtw,Grateful,spotify:artist:0QHgL1lAIqAw0HtD7YldmP,DJ Khaled,2017-06-22,https://i.scdn.co/image/ab67616d0000b2737a993075e27042a11896b8fb,1,5,288876,https://p.scdn.co/mp3-preview/80ca4bb6fc9469ab141650c2ace64e641382db96?cid=9950ac751e34487dbbe027c4fd7f8e99,True,62,USSM11703300,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,miami hip hop,pop rap,rap,canadian pop,pop,atl hip hop,melodic rap,rap,trap,chicago rap,conscious hip hop,hip hop,pop rap,rap,trap,hip hop,new orleans rap,pop rap,rap,trap",0.599,0.667,7.0,-4.267,1.0,0.0367,0.0533,0.0,0.134,0.817,80.984,4.0,,Epic/We The Best,"P (P) 2017 We The Best x Influence. Exclusively distributed by Epic Records, a division of Sony Music Entertainment.",3400 +3401,spotify:track:0cELvuwJW1acISUHYB6suj,Emotions,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:0SHpIbyBLUugMXsl3yNkUz,Emotions,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,1991-09-17,https://i.scdn.co/image/ab67616d0000b273cac78df6ec3c73e118a308e0,1,1,248093,https://p.scdn.co/mp3-preview/8c3e23f599a82f093e117b1214765e07402c9083?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM19100304,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.74,0.752,9.0,-7.008,0.0,0.0359,0.0409,0.00125,0.0233,0.939,114.851,4.0,,Columbia,"P (P) 1991 Columbia Records, a division of Sony Music Entertainment",3401 +3402,spotify:track:5sUrZEf4qEtjepdgcetith,Space Oddity - 2015 Remaster,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,spotify:album:6m9cpSfRCYltkhxl23wq0j,Five Years (1969 - 1973),spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,2015-09-25,https://i.scdn.co/image/ab67616d0000b273a107e8bc5c8dbf65ddcf36f4,1,1,318026,https://p.scdn.co/mp3-preview/9240f576fa464f8e3fe38f1c83fd23cd4e516638?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USJT11500173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,glam rock,permanent wave,rock",0.31,0.403,0.0,-13.664,1.0,0.0326,0.0726,9.27e-05,0.139,0.466,134.48,4.0,,Parlophone UK,"C © 2015 Jones/Tintoretto Entertainment Co, LLC, P ℗ 2015 Parlophone Records Ltd, a Warner Music Group Company",3402 +3403,spotify:track:45Egmo7icyopuzJN0oMEdk,Love Lies (with Normani),"spotify:artist:6LuN9FCkKOj5PcnpouEgny, spotify:artist:2cWZOOzeOm4WmBJRnD5R7I","Khalid, Normani",spotify:album:4CEAev7neETRdqBFtzA8B9,Love Lies (with Normani),"spotify:artist:6LuN9FCkKOj5PcnpouEgny, spotify:artist:2cWZOOzeOm4WmBJRnD5R7I","Khalid, Normani",2018-02-14,https://i.scdn.co/image/ab67616d0000b273dd7eaf261543814a6d715d67,1,1,201707,https://p.scdn.co/mp3-preview/aa4f4d0898af5fc2f40c3c3dd1c1a0ece80df384?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USRC11703646,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop r&b,pop,r&b",0.708,0.648,6.0,-5.626,1.0,0.0449,0.0956,0.0,0.134,0.338,143.955,4.0,,RCA Records Label,"P (P) 2018 RCA Records, a division of Sony Music Entertainment",3403 +3404,spotify:track:2p9mLNKDugpytUkGc3pwMc,The Night Has A Thousand Eyes,spotify:artist:5MX2l6ewjOaeWn1lYNhzlO,Bobby Vee,spotify:album:5QtNkn1RX6QLbY7h3KXdaM,The Night Has A Thousand Eyes,spotify:artist:5MX2l6ewjOaeWn1lYNhzlO,Bobby Vee,1963-01-01,https://i.scdn.co/image/ab67616d0000b273a0ee299caf360c9b25119315,1,6,155666,https://p.scdn.co/mp3-preview/06832a4f9326a22c19b0cf33a4360471ec187bb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEM38700041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,doo-wop,rock-and-roll,rockabilly",0.551,0.506,5.0,-10.656,0.0,0.0324,0.713,0.0,0.111,0.888,98.56,4.0,,Universal Music Group,"C © 1963 Capitol Records, LLC, P ℗ 1963 Capitol Records, LLC",3404 +3405,spotify:track:4El5PLBdC4klnDiyL0Sf8v,Live It Up - Remastered,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:0ytyL1t6abbFa3FDGmhruw,Surf & Mull & Sex & Fun: The Classic Recordings Of Mental As Anything,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,2019-10-25,https://i.scdn.co/image/ab67616d0000b2733afcb92e2acf52ecefda7eee,1,16,228630,https://p.scdn.co/mp3-preview/fa455b5b7cbb1d8346f3225579ec23b43e98301c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,AUFE00800015,spotify:user:bradnumber1,2021-12-01T04:22:45Z,australian rock,0.67,0.884,7.0,-4.761,1.0,0.0278,0.281,0.0,0.077,0.94,119.834,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Syray Music, P ℗ 2019 Syray Music",3405 +3406,spotify:track:5zjTU1E0zwMzzE5zBErF15,Party People,"spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:3r17AfJCCUqC9Lf0OAc73G","Nelly, Fergie",spotify:album:0A9JwZInaZt21hYEWA3IEt,Party People (Int't ECD),spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2008-03-18,https://i.scdn.co/image/ab67616d0000b27373e1b14b8fc5f7ecb91dc3f5,1,1,243480,https://p.scdn.co/mp3-preview/9900015bc113f33224a7bc630a777f623cdcd0e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70809354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary,dance pop,pop",0.665,0.796,1.0,-5.339,1.0,0.299,0.312,0.0,0.559,0.545,163.974,4.0,,Universal Music AS,"C (C) 2008 Universal Motown Records, a Division of UMG Recordings, Inc. and I.G. Records, Inc, P (P) 2008 Universal Motown Records, a Division of UMG Recordings, Inc. and I.G. Records, Inc",3406 +3407,spotify:track:2Ft6rOtKLQKthdZONDGIug,Josh,spotify:artist:006j2rer9tZJCYniu7SaWS,Peach PRC,spotify:album:4wDUwIume9WKnjH8Rorik0,Josh,spotify:artist:006j2rer9tZJCYniu7SaWS,Peach PRC,2021-02-25,https://i.scdn.co/image/ab67616d0000b273b42ec793616834a8b85d517c,1,1,160204,https://p.scdn.co/mp3-preview/1d3a303feb6006e1da844e8ce43d14592948285a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USUM72101620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alt z,0.656,0.45,3.0,-6.231,1.0,0.0839,0.261,0.0,0.153,0.703,104.873,4.0,,Republic Records,"C © 2021 Republic Records, a division of UMG Recordings, Inc., P ℗ 2021 Republic Records, a division of UMG Recordings, Inc.",3407 +3408,spotify:track:7HD8pjfVgvWgIfkzELtCuH,Don't Want to Leave You,spotify:artist:2wpJOPmf1TIOzrB9mzHifd,Scouting For Girls,spotify:album:0X1QCeX7MNmOxYIpfnhVg0,Everybody Wants To Be On TV,spotify:artist:2wpJOPmf1TIOzrB9mzHifd,Scouting For Girls,2008,https://i.scdn.co/image/ab67616d0000b2730ebb3843c6517942ef0987a4,1,5,178600,,False,0,GBARL1000872,spotify:user:bradnumber1,2021-08-08T09:26:31Z,talent show,0.448,0.766,1.0,-5.787,1.0,0.0429,0.104,0.0,0.0438,0.325,178.125,4.0,,Epic,P Track 1-10 (P) 2010 Sony Music Entertainment UK Limited; Track 11 (P) 2008 Sony Music Entertainment UK Limited,3408 +3409,spotify:track:3RiPr603aXAoi4GHyXx0uy,Hymn for the Weekend,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:3cfAM8b8KqJRoIzt3zLKqw,A Head Full of Dreams,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2015-12-04,https://i.scdn.co/image/ab67616d0000b2738ff7c3580d429c8212b9a3b6,1,3,258266,https://p.scdn.co/mp3-preview/cb0aa0a64ef56a161fbe2b298174cd69d8a71a9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,GBAYE1500979,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.491,0.693,0.0,-6.487,0.0,0.0377,0.211,6.92e-06,0.325,0.412,90.027,4.0,,Parlophone UK,"C © 2015 Parlophone Records Limited, a Warner Music Group Company, P ℗ 2015 Parlophone Records Limited, a Warner Music Group Company",3409 +3410,spotify:track:2whoe0pPKh4JRn6eWSIqTV,Stay With Me,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:1tA4JdOpNQUyutfQtmMesJ,In The Lonely Hour,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2014-01-01,https://i.scdn.co/image/ab67616d0000b273c1c177e193b3ebf1a16e158f,1,3,172723,https://p.scdn.co/mp3-preview/a6673e86dccaf0232ab041314ec716e03e2f34fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71308833,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.414,0.419,0.0,-6.431,1.0,0.0388,0.55,0.000195,0.11,0.18,84.082,4.0,,Universal Music Group,"C © 2014 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2014 Capitol Records, a division of Universal Music Operations Limited",3410 +3411,spotify:track:4XMRt4xFqLzGs4wDKkSSeu,Give Me Love (Give Me Peace On Earth),spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,spotify:album:79hB4QtJjn0Y4DyRPpllZg,Living In The Material World (Remastered),spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,1973-05-30,https://i.scdn.co/image/ab67616d0000b2733c66fc5c22b3bfaa3c1ffd48,1,1,215693,https://p.scdn.co/mp3-preview/d5d8ab587c68d9194c296efaa5316c32748094f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB77R1400053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.373,0.57,5.0,-11.56,1.0,0.0441,0.497,0.0124,0.128,0.631,81.28,4.0,,UMC (Universal Music Catalogue),"C © 2014 G.H. Estate Limited under exclusive license to Calderstone Productions Limited (a division of Universal Music Group), P ℗ 2014 G.H. Estate Limited under exclusive license to Calderstone Productions Limited (a division of Universal Music Group)",3411 +3412,spotify:track:5tdKaKLnC4SgtDZ6RlWeal,How Will I Know,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:2MH37enG6IPvNK5QFLyKes,Whitney Houston,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1985-02-14,https://i.scdn.co/image/ab67616d0000b2732ae4fcec560ab559d6f5dc88,1,6,275533,https://p.scdn.co/mp3-preview/0fa7832143bec6065e01d55ced4fdc1964059505?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAR18500150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.832,0.544,6.0,-12.697,1.0,0.0442,0.201,0.000139,0.632,0.928,119.49,4.0,,Arista,"P (P) 1985 Arista Records, Inc.",3412 +3413,spotify:track:7pMD8YXl2VTPStgP5g1EuC,Magic,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:6ooUxOl89UHr11ADJjGQlH,Complete Greatest Hits,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,2002-02-19,https://i.scdn.co/image/ab67616d0000b273872326b5c984abfca0d7799e,1,16,239626,https://p.scdn.co/mp3-preview/9c8fa8af8a0a4668f9e5d2680cdc481cfe6ba264?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USEE10100558,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.73,0.7,9.0,-8.648,1.0,0.0343,0.0952,0.000141,0.114,0.962,117.63,4.0,,Rhino/Elektra,"C © 2002 Elektra Entertainment Group, P ℗ 2002 Elektra Entertainment Group",3413 +3414,spotify:track:00ETaeHUQ6lops3oWU1Wrt,Hot Stuff,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:2eogQKWWoohI3BSnoG7E2U","Kygo, Donna Summer",spotify:album:6t95dMgjNYMtwXTKlISI42,Hot Stuff,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:2eogQKWWoohI3BSnoG7E2U","Kygo, Donna Summer",2020-09-18,https://i.scdn.co/image/ab67616d0000b2738fc0ee2f829a7138af579c97,1,1,199007,https://p.scdn.co/mp3-preview/95098d173b742e3b607a90f4e13ddee884f9c6d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,SEBGA2000777,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,disco,hi-nrg,new wave pop,soft rock",0.681,0.773,5.0,-5.749,1.0,0.148,0.019,1.28e-06,0.11,0.429,119.961,4.0,,RCA Records Label,P (P) 2020 Kygo AS under exclusive license to Sony Music International Ltd,3414 +3415,spotify:track:14MgTooapmJdLlEMAr2zAM,Dilemma (feat. Kelly Rowland),"spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:3AuMNF8rQAKOzjYppFNAoB","Nelly, Kelly Rowland",spotify:album:3nrQeLjGJNdYsjJ8JVPKAf,Simply Deep,spotify:artist:3AuMNF8rQAKOzjYppFNAoB,Kelly Rowland,2002-10-22,https://i.scdn.co/image/ab67616d0000b273e2fac5d29f0e10450bf287a9,1,2,289666,https://p.scdn.co/mp3-preview/7e3ad47941d02b602765e3294d3a72746739c0f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM10211190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary,atl hip hop,dance pop,hip pop,r&b,urban contemporary",0.736,0.518,2.0,-9.333,0.0,0.182,0.185,1.51e-05,0.147,0.579,168.121,4.0,,Columbia,P (P) 2002 Sony Music Entertainment Inc.,3415 +3416,spotify:track:07q0QVgO56EorrSGHC48y3,I Was Made For Lovin' You,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,spotify:album:4FA68GsblSfvKZZRfM1tI1,Dynasty,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,1979-03-23,https://i.scdn.co/image/ab67616d0000b2734384b6976cadaec272114022,1,1,271240,https://p.scdn.co/mp3-preview/b1b157ab314c7b457e21318a7035c6a44555f1b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USPR39330175,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,hard rock,rock",0.768,0.852,4.0,-6.215,1.0,0.038,0.214,7.36e-05,0.0723,0.867,128.373,4.0,,Casablanca Records,"C © 1997 Kiss Catalog, Ltd., P ℗ 1979 The Island Def Jam Music Group",3416 +3417,spotify:track:6K4t31amVTZDgR3sKmwUJJ,The Less I Know The Better,spotify:artist:5INjqkS1o8h1imAzPqGZBb,Tame Impala,spotify:album:79dL7FLiJFOO0EoehUHQBv,Currents,spotify:artist:5INjqkS1o8h1imAzPqGZBb,Tame Impala,2015-07-17,https://i.scdn.co/image/ab67616d0000b2739e1cfc756886ac782e363d79,1,7,216320,https://p.scdn.co/mp3-preview/3ad63797e17bda6d46d081049c8c3710e3ab2797?cid=9950ac751e34487dbbe027c4fd7f8e99,True,83,AUUM71500303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian psych,modern rock,neo-psychedelic,rock",0.64,0.74,4.0,-4.083,1.0,0.0284,0.0115,0.00678,0.167,0.785,116.879,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Modular Recordings, P ℗ 2015 Modular Recordings, under exclusive license to Universal Music Australia Pty Limited",3417 +3418,spotify:track:4RQSOD3PU7uNgtv6DGcJvo,Lisztomania,spotify:artist:1xU878Z1QtBldR7ru9owdU,Phoenix,spotify:album:4BWhMPQUJWaFdTxzzKmVIE,Wolfgang Amadeus Phoenix,spotify:artist:1xU878Z1QtBldR7ru9owdU,Phoenix,2009-05-25,https://i.scdn.co/image/ab67616d0000b27342d59a803385a97f50f6f8cb,1,1,241546,https://p.scdn.co/mp3-preview/97411175389ed64966e49870a3c3afc951848212?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR31Q0900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,indie rock,modern rock,new rave,rock independant francais,shimmer pop",0.635,0.786,0.0,-6.46,1.0,0.0377,0.0349,0.00767,0.497,0.305,97.54,4.0,,Liberator Music,"C 2013 Ghettoblaster S.A.R.L. under exlcuse license to Glassnote Entertainment Group LLC, P 2013 Ghettoblaster S.A.R.L. under exlcuse license to Glassnote Entertainment Group LLC",3418 +3419,spotify:track:2G8jB4liJQPELoUMRY1Gv8,Ten Days,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,spotify:album:5Dd14nVQOJIUg9UgKkVyIQ,The Sound Of White,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,2004-01-01,https://i.scdn.co/image/ab67616d0000b273d1012e47b1270d2c81e38cf2,1,4,226186,https://p.scdn.co/mp3-preview/38f52862e5f1c03023cff3be73ce2693be163b5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USWB10402043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop",0.519,0.572,5.0,-6.879,1.0,0.0338,0.458,0.0,0.138,0.323,83.611,4.0,,Universal Music Australia Pty. Ltd.,"C © 2005 Eleven: A Music Company, P ℗ 2004 Eleven: A Music Company",3419 +3420,spotify:track:1SzoSjbYmnPvC3t7W01awE,Broken,spotify:artist:5PokPZn11xzZXyXSfnvIM3,Lifehouse,spotify:album:0b6axijtmoTBgIrmlFQ9Ne,Who We Are,spotify:artist:5PokPZn11xzZXyXSfnvIM3,Lifehouse,2007-01-01,https://i.scdn.co/image/ab67616d0000b273e0ad7b6883c6ff2b9bd4ae9a,1,5,286480,https://p.scdn.co/mp3-preview/e613a9d889bbdf6203e19b67e5dcd1dba2c73f35?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USUM70736617,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.536,0.705,11.0,-5.732,1.0,0.0396,0.0882,0.0,0.192,0.482,130.638,4.0,,Geffen,"C © 2007 Geffen Records, P ℗ 2007 Geffen Records",3420 +3421,spotify:track:36dH28TepFKh4RelMfRj05,The Break Up Song,spotify:artist:1Yyag4BRejtPxsKTrSkKDz,The Greg Kihn Band,spotify:album:5l0E2DWGSpXEZjWOb1zI3P,"Greg Kihn Band ""Best Of Beserkley"" '75 - '84",spotify:artist:1Yyag4BRejtPxsKTrSkKDz,The Greg Kihn Band,2012-04-03,https://i.scdn.co/image/ab67616d0000b273763521eb28f41072e097bd44,1,10,170986,https://p.scdn.co/mp3-preview/4b91c3b001ba72916664e9c67b77c0d60cb54571?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US4TX1200010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,album rock,0.673,0.92,0.0,-2.143,1.0,0.0294,0.0288,2.47e-06,0.113,0.964,141.553,4.0,,Riot Records,"C (C) 2012 Riot Media, P (P) 2012 Riot Media",3421 +3422,spotify:track:3qYCfox9txQoEQAG0mbwd5,FutureSex / LoveSound,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:0tcExuDWMQdBbwSpqN8Ku2,FutureSex/LoveSounds Deluxe Edition,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2006-09-13,https://i.scdn.co/image/ab67616d0000b273c68f26a3d34fbd0faed2b473,1,1,242226,https://p.scdn.co/mp3-preview/acdf744be96cee6e2766c46928dcc46bb6dbba45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USJI10600476,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.845,0.832,11.0,-6.315,0.0,0.0679,0.118,0.0198,0.132,0.845,105.025,4.0,,Jive,"P (P) 2006, 2007 Zomba Recording LLC",3422 +3423,spotify:track:5xYC48nOppVemY6U5GRGTb,Memories (feat. Kid Cudi),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:0fA0VVWsXO9YnASrzqfmYu","David Guetta, Kid Cudi",spotify:album:5DJc5qCdB5pPrDO97LXjeW,One More Love,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2010-11-22,https://i.scdn.co/image/ab67616d0000b273f45c50e7cff5f2376c1e36ea,1,4,210853,https://p.scdn.co/mp3-preview/142a5e572bed7e1e646c835a1ea426997b7f3ff8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,FRZID0900480,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,hip hop,ohio hip hop,pop rap,rap",0.546,0.916,8.0,-3.932,1.0,0.255,0.00144,4.34e-06,0.251,0.375,129.983,4.0,,Parlophone (France),"C © 2010 Gum Prod licence exclusive Parlophone Music France, P ℗ 2010 Gum Prod licence exclusive Parlophone Music France",3423 +3424,spotify:track:0ZtWVho1KKMD9w55XYoDPl,All Out Of Fight,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:4hgincUyDza4A228fFQRiK,TRUSTFALL (Tour Deluxe Edition),spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2023-11-30,https://i.scdn.co/image/ab67616d0000b27311477d4b138bc2ff174afb00,2,3,212306,https://p.scdn.co/mp3-preview/96f761bf19db860a4320ea254d65f8cf244c7b70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USRC12302242,spotify:user:bradnumber1,2024-01-14T19:58:21Z,"dance pop,pop",0.42,0.359,5.0,-6.932,1.0,0.0456,0.617,0.0,0.101,0.279,143.277,4.0,,RCA Records Label,"P (P) 2023 RCA Records, a division of Sony Music Entertainment",3424 +3425,spotify:track:49wvp0zE6RvYuxUrCoHgl6,Think About You,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:10NN47P7LBmv69ywf8rX5e,Think About You,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2018-02-16,https://i.scdn.co/image/ab67616d0000b273e568c82e341fd0be12b6d644,1,1,188959,https://p.scdn.co/mp3-preview/a6890e136ba4f6be09726845f15485be779b7a2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUBM01700887,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.849,0.564,0.0,-5.858,1.0,0.0656,0.0453,0.000309,0.216,0.789,109.043,4.0,,Sony Music Entertainment,P (P) 2018 Sony Music Entertainment Australia Pty Ltd.,3425 +3426,spotify:track:1xxUTflASutnrz0YEjYQEO,My Name Is Jack - Mono Version,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,spotify:album:0qgGzS31hlyHBNn5NtklQL,My Name Is Jack / There Is A Man,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,1968-01-01,https://i.scdn.co/image/ab67616d0000b273c473e4eb9b30347e55998d78,1,1,168626,https://p.scdn.co/mp3-preview/6f9dea6de6c01bf54803ce7627e70335681a5afa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBF086800015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,classic rock,singer-songwriter",0.64,0.674,2.0,-7.916,1.0,0.0387,0.305,0.0,0.195,0.591,98.173,3.0,,UMC (Universal Music Catalogue),"C © 1968 Mercury Records Limited, P ℗ 1968 Mercury Records Limited",3426 +3427,spotify:track:05CwHjIk71RXVU40boRMnR,Call You Mine (feat. Bebe Rexha),"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:64M6ah0SkkRsnPGtGiRAbb","The Chainsmokers, Bebe Rexha",spotify:album:1ONuDpN0a3zhCUyKCgtuzK,World War Joy,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2019-05-31,https://i.scdn.co/image/ab67616d0000b2735bb607f1d2c4eab465339542,1,1,217653,https://p.scdn.co/mp3-preview/88787c836b052ad58b784bc500c6a9649570fcc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQX91901124,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,pop",0.591,0.702,7.0,-5.59,1.0,0.0289,0.225,0.0,0.414,0.501,104.003,4.0,,Disruptor Records/Columbia,P (P) 2019 Disruptor Records/Columbia Records,3427 +3428,spotify:track:57460SJgSpCXaRJ9YIYHxy,Going Up The Country,spotify:artist:27a0GiCba9K9lnkKidroFU,Canned Heat,spotify:album:0TBmLh3U5sk1F8eF0twjwi,The Best Of Canned Heat,spotify:artist:27a0GiCba9K9lnkKidroFU,Canned Heat,1987-01-01,https://i.scdn.co/image/ab67616d0000b27308a9f2ae15587fa3da702ba0,1,7,171373,https://p.scdn.co/mp3-preview/482d85a6da852f944a29638aab55388a7b8db3d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USEM38700071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,blues rock,classic rock,country rock,electric blues,folk rock,psychedelic rock,traditional blues",0.653,0.239,5.0,-18.54,0.0,0.0453,0.806,0.0146,0.132,0.765,80.392,4.0,,Parlophone Catalogue,"C © 1987 Capitol Records Inc., P This Compilation ℗ 1987 Capitol Records Inc.",3428 +3429,spotify:track:1Qg9jWGDkKAGZXj5v2OG59,Wait,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:1Jmq5HEJeA9kNi2SgQul4U,Red Pill Blues (Deluxe),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2017-11-03,https://i.scdn.co/image/ab67616d0000b2739ccf08d3f74b36b7880522b5,1,3,190642,https://p.scdn.co/mp3-preview/fcc6a4287228519c33bef791bb94e25842746ac1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71710370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.659,0.604,8.0,-5.084,1.0,0.0542,0.0889,0.0,0.105,0.407,126.135,4.0,,Universal Music Group,"C © 2017 Interscope Records, P A 222 Records/Interscope Records Release; ℗ 2017 Interscope Records",3429 +3430,spotify:track:1gKokmzjqGNmVONp5ZgPKn,Get Along,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:7Dwm8phGxhSpcevMteSMnc,Armageddon,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2012-10-15,https://i.scdn.co/image/ab67616d0000b2731a53a2c21445ade01915125a,1,5,261839,https://p.scdn.co/mp3-preview/2c9522152b6102bb1ff9fc3eb620b5fb4942b978?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01200072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.448,0.585,2.0,-6.005,1.0,0.0482,0.106,0.0,0.255,0.198,158.006,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,3430 +3431,spotify:track:5qRJD1yaLJ5s0J3JpbgnwA,Evil Woman,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:27q0Qxr6PUv7PP6LaHtyDT,Flashback,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1972,https://i.scdn.co/image/ab67616d0000b27387a1388cadab1536efd3464b,2,2,259826,https://p.scdn.co/mp3-preview/ea806b937a9a2990befc2acc29da66ae208b07cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM10015758,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.703,0.58,9.0,-8.611,0.0,0.0282,0.461,2.74e-05,0.518,0.896,119.855,4.0,,Epic/Legacy,"P (P) 1972, 1973, 1974, 1975, 1976, 1977, 1979, 1981, 1983, 1986, 2000 Sony Music Entertainment Inc.",3431 +3432,spotify:track:5u0pZ5m0E0ovcbsZzrq4vu,Six Ribbons - Soundtrack Version,"spotify:artist:6H2LnEj5myKc4vVz0huuxW, spotify:artist:7apyAypjcjkknExFpqhSuw","Jon English, Mario Millo",spotify:album:1PVTg2bQnFg2jjYhWNcHby,The Best Of Jon English (20th Anniversary Edition),spotify:artist:6H2LnEj5myKc4vVz0huuxW,Jon English,1993-01-01,https://i.scdn.co/image/ab67616d0000b2730779ac4fbeed886c2adb2dd6,1,19,194706,https://p.scdn.co/mp3-preview/a7d5ba860abc6b348aca0af6e79b82dd3d323023?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAY21100783,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.614,0.159,4.0,-18.023,0.0,0.0341,0.9,0.0,0.114,0.443,114.097,3.0,,Ambition Entertainment Pty Ltd,"C © 2011 Sound One Pty Limited, P ℗ 1993 Sound One Pty Limited",3432 +3433,spotify:track:2cMTIlktg3M9mXYqCPqw1J,Milkshake,spotify:artist:0IF46mUS8NXjgHabxk2MCM,Kelis,spotify:album:7zesXMFikT4DdgkklIk3Jz,Tasty,spotify:artist:0IF46mUS8NXjgHabxk2MCM,Kelis,2003-12-05,https://i.scdn.co/image/ab67616d0000b273e928de086eef7d3491b4390b,1,3,182626,https://p.scdn.co/mp3-preview/8f6dec7658faa8f18c62d2bf92cf56a2c45685bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USAR10301131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,neo soul,urban contemporary",0.881,0.774,1.0,-6.068,1.0,0.0439,0.00986,0.0346,0.206,0.759,112.968,4.0,,Virgin Records,"C © 2003 Arista Records Ltd., P ℗ 2003 Arista Records Ltd.",3433 +3434,spotify:track:1pZdegOXTZ2ftINo3oUuRZ,Bedroom Floor,spotify:artist:5pUo3fmmHT8bhCyHE52hA6,Liam Payne,spotify:album:4x0Txj3eYM1NA857kGonzC,Bedroom Floor,spotify:artist:5pUo3fmmHT8bhCyHE52hA6,Liam Payne,2017-10-20,https://i.scdn.co/image/ab67616d0000b273cf0dd4aa0fcfdacdb3099a3d,1,1,188346,https://p.scdn.co/mp3-preview/6ae140cd9a8e5f1291e2fb9d8b58c6abcf0c185c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71703786,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.678,0.679,1.0,-7.093,1.0,0.0644,0.301,0.000136,0.112,0.218,119.977,4.0,,Universal Music Group,"C © 2017 Hampton Records Limited, under exclusive licence to Capitol Records, a division of Universal Music Operations Limited, P ℗ 2017 Hampton Records Limited, under exclusive licence to Capitol Records, a division of Universal Music Operations Limited",3434 +3435,spotify:track:7jeOETwLUP84mPQzxlD5nh,Then He Kissed Me,spotify:artist:7rewR1TVjhisjI6gauUamf,The Crystals,spotify:album:11ho9FxQbJjMbQn1P1yWpm,Da Doo Ron Ron: The Very Best of The Crystals,spotify:artist:7rewR1TVjhisjI6gauUamf,The Crystals,2011-02-22,https://i.scdn.co/image/ab67616d0000b273a93e542069f023c3c9be9b8d,1,14,158853,https://p.scdn.co/mp3-preview/5bc1034ab040f4abe664edf9446c7642bf8d3e73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USQX91100118,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,doo-wop,rock-and-roll",0.431,0.678,4.0,-7.945,1.0,0.0365,0.7,6.37e-06,0.199,0.633,135.919,4.0,,Legacy Recordings,"P (P) 2011 Phil Spector Records, Inc. Under exclusive license to EMI Blackwood Music Inc./Sony Music Entertainment",3435 +3436,spotify:track:7FIWs0pqAYbP91WWM0vlTQ,Godzilla (feat. Juice WRLD),"spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:4MCBfE4596Uoi2O4DtmEMz","Eminem, Juice WRLD",spotify:album:4otkd9As6YaxxEkIjXPiZ6,Music To Be Murdered By,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2020-01-17,https://i.scdn.co/image/ab67616d0000b2732f44aec83b20e40f3baef73c,1,7,210800,https://p.scdn.co/mp3-preview/b596cf19faa28707b68baf8fbb79c184a0b0e039?cid=9950ac751e34487dbbe027c4fd7f8e99,True,81,USUM72000788,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap,chicago rap,melodic rap,rap",0.808,0.745,10.0,-5.26,0.0,0.342,0.145,0.0,0.292,0.829,165.995,4.0,,Shady/Aftermath/Interscope Records,"C © 2020 Marshall B. Mathers III, P ℗ 2020 Marshall B. Mathers III",3436 +3437,spotify:track:1wgqttlPacpvmX5DKVboOa,Paper Planes,spotify:artist:0QJIPDAEDILuo8AIq3pMuU,M.I.A.,spotify:album:23vvbZr2ZDlJNZftFAkCqO,Kala,spotify:artist:0QJIPDAEDILuo8AIq3pMuU,M.I.A.,2007-08-20,https://i.scdn.co/image/ab67616d0000b2734f3fc8ea510be941de66f032,1,11,205200,https://p.scdn.co/mp3-preview/f529bb84b6516a1d240082c386f5cfe3178cd501?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBBKS0700215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"escape room,indietronica,new rave",0.447,0.848,2.0,-6.175,1.0,0.222,0.033,7.45e-05,0.65,0.485,172.247,4.0,,XL Recordings,"C 2007 XL Recordings Ltd, P 2007 XL Recordings Ltd",3437 +3438,spotify:track:3K7Q9PHUWPTaknlbFPThn2,Celebration,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,spotify:album:2kc4mhFRsoIRVD0XEYnwhI,Celebrate!,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,1980-09-29,https://i.scdn.co/image/ab67616d0000b273887b7c596249f628db6c6473,1,1,298866,https://p.scdn.co/mp3-preview/1ba26bd1583538201bbd9c8b9d822b2d340eb301?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USPR38007190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,soft rock,soul",0.886,0.664,1.0,-11.795,1.0,0.0524,0.145,0.0483,0.0767,0.906,121.631,4.0,,Island Mercury,"C © 1980 The Island Def Jam Music Group, P ℗ 1980 The Island Def Jam Music Group",3438 +3439,spotify:track:5UoBGPQQ5IngRDLR0PIUBA,The Price Of Love,spotify:artist:5RNFFojXkPRmlJZIwXeKQC,Bryan Ferry,spotify:album:7q7RBiiadKQR4DCbs7OMbd,Let's Stick Together,spotify:artist:5RNFFojXkPRmlJZIwXeKQC,Bryan Ferry,1976,https://i.scdn.co/image/ab67616d0000b2738924d0252e61e6f1f68808a5,1,6,207906,https://p.scdn.co/mp3-preview/9d0a4484e0805950057f52657ec6bb7a5c5edb7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAAA9900259,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,melancholia,new romantic,new wave,new wave pop,solo wave,sophisti-pop",0.543,0.909,2.0,-5.299,1.0,0.0385,0.00547,0.0147,0.154,0.841,130.904,4.0,,Virgin Records,"C © 1999 Virgin Records Limited, P ℗ 1999 Virgin Records Limited",3439 +3440,spotify:track:7ytqdjooPEAa97QSu6NUHS,Dream A Little Dream Of Me - Album Version With Introduction,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,spotify:album:0SijqGUUCbaYy7jk9cCBSg,The Papas & The Mamas,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,1968-05,https://i.scdn.co/image/ab67616d0000b273234b23210966ea72fe1ddbc0,1,5,194426,https://p.scdn.co/mp3-preview/f523968fb964de89b0e7ac1b2bde13c03b3bd746?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16846393,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,mellow gold,psychedelic rock,rock,soft rock,sunshine pop",0.459,0.322,7.0,-12.912,1.0,0.0595,0.816,0.0,0.072,0.331,133.91,1.0,,Universal Special Markets,"C © 1989 Geffen Records, P ℗ 1968 Geffen Records",3440 +3441,spotify:track:4Lt6GXGzYsa1tgkv3nGSTm,Love Not War (The Tampa Beat),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:1XynjLPAyPi8SZAx8LHN0Z","Jason Derulo, Nuka",spotify:album:3CHys9v5aX1NS861o6r556,Love Not War (The Tampa Beat),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:1XynjLPAyPi8SZAx8LHN0Z","Jason Derulo, Nuka",2020-11-20,https://i.scdn.co/image/ab67616d0000b2739ade6f2e5b017be63562e23b,1,1,192921,https://p.scdn.co/mp3-preview/c48a24d105eb4cc9b6c05338eb3140370e19f786?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBARL2001440,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.738,0.85,8.0,-3.049,1.0,0.0642,0.105,0.0,0.23,0.865,98.013,4.0,,Robots & Humans,P (P) 2020 Ridge Maukava under exclusive licence to Robots & Humans / Sony Music Entertainment UK Limited,3441 +3442,spotify:track:3mwvKOyMmG77zZRunnxp9E,Buddy Holly,spotify:artist:3jOstUTkEu2JkjvRdBA5Gu,Weezer,spotify:album:1xpGyKyV26uPstk1Elgp9Q,Weezer,spotify:artist:3jOstUTkEu2JkjvRdBA5Gu,Weezer,1994-05-10,https://i.scdn.co/image/ab67616d0000b273345536847e60f622ee0eae96,1,4,159226,https://p.scdn.co/mp3-preview/47099a618e82bd35261b69467f03214ae56d31e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USGF19562907,spotify:user:bradnumber1,2023-09-04T12:23:37Z,"alternative rock,modern power pop,modern rock,permanent wave,rock",0.556,0.92,8.0,-4.606,1.0,0.0367,0.00271,0.00021,0.117,0.771,121.138,4.0,,DGC,"C © 1994 DGC Records, P ℗ 1994 DGC Records",3442 +3443,spotify:track:6TTsEXKUG5y9n4fi6Wlt3q,US Forces - Remastered Version,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:6uNRClJFgtpoSaAS6jUeeV,Essential Oils,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,2012-11-02,https://i.scdn.co/image/ab67616d0000b27356ab0253febac2d352479f25,1,12,245706,https://p.scdn.co/mp3-preview/ccbfebe8080cc42cf98900b43bd74f3ec25b34fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUBM00800386,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.608,0.968,4.0,-4.01,1.0,0.147,0.0517,0.000293,0.0389,0.37,142.913,4.0,,Midnight Oil,P This compilation (P) 2012 Midnight Oils Ents Pty Ltd. under exclusive license to Sony Music Entertainment Australia Pty Ltd.,3443 +3444,spotify:track:4FDjkgw75Lr0VEx5vOTGCk,Harder To Breathe,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:7gGcnUEEQgIMV2JRwVQbrF,Songs About Jane,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2002-06-25,https://i.scdn.co/image/ab67616d0000b273fb869ab46e93e7069c67134f,1,1,173693,https://p.scdn.co/mp3-preview/025d7fa6f3ddf30be6ff1c18bfd508869a2182fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USJAY0300079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.661,0.905,1.0,-4.739,0.0,0.0448,0.0525,0.0,0.0509,0.967,149.907,4.0,,Universal Music Group,"C © 2007 A&M/Octone Records, P ℗ 2007 A&M/Octone Records",3444 +3445,spotify:track:4yI3HpbSFSgFZtJP2kDe5m,Look At Her Now,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:4O04QLiB0lGHQlygXxiMuX,Look At Her Now,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2019-10-24,https://i.scdn.co/image/ab67616d0000b2730d4349841a125fd697100285,1,1,162595,https://p.scdn.co/mp3-preview/aae3def0ce09846ff85cd54fcd5381cda628c13a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USUM71921647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.563,0.565,10.0,-7.905,0.0,0.271,0.114,0.026,0.304,0.55,154.353,5.0,,Interscope Records,"C © 2019 Interscope Records, P ℗ 2019 Interscope Records",3445 +3446,spotify:track:2DrEeo4eMULdAVe1U7P9PB,Lithium,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,spotify:album:3SBQfBKAPWvCr4qse1uNis,Nirvana (International Version),spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,2002-01-01,https://i.scdn.co/image/ab67616d0000b273f118d2074e050cbc2e4533a0,1,7,257133,https://p.scdn.co/mp3-preview/bc669fd79c34b2ee7addf1c010c2a739f97a0242?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19942505,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,permanent wave,rock",0.687,0.685,7.0,-5.854,1.0,0.0367,0.00145,0.0,0.0657,0.359,123.147,4.0,,Universal Music Group,"C © 2002 Geffen Records Inc., P ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",3446 +3447,spotify:track:3WYYzUlLrl4NVNeoKd7MnG,We'll Sing in the Sunshine,spotify:artist:5cJgEhhKGk7kiSA6O8Qzyc,Gale Garnett,spotify:album:6oOUyNNmvvz3jwp7QRGbrt,My Kind of Folk Songs,spotify:artist:5cJgEhhKGk7kiSA6O8Qzyc,Gale Garnett,1964-11-04,https://i.scdn.co/image/ab67616d0000b273645791d2040a58a149ba79c2,1,10,179120,https://p.scdn.co/mp3-preview/a4da903c57aefe3787cc7a3048f19a9bede95289?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USRC11401583,spotify:user:bradnumber1,2021-08-08T09:26:31Z,american folk revival,0.536,0.351,11.0,-8.026,1.0,0.0266,0.762,0.0,0.22,0.532,106.73,4.0,,Legacy Recordings,"P Originally released 1964. All rights reserved by RCA Records, a divsion of Sony Music Entertainment",3447 +3448,spotify:track:77e2r8Gn87an0k2uBdRvV1,When I Get There,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:7f7ZaVq3u3xVRJAJGr0GqW,TRUSTFALL,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2023-02-17,https://i.scdn.co/image/ab67616d0000b2733c7ffb20ad16e5cf1d5711fc,1,1,200173,https://p.scdn.co/mp3-preview/e49be74dd2b2bd3332f34bdcef96b1b6eae51678?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC12204195,spotify:user:bradnumber1,2023-02-19T09:07:34Z,"dance pop,pop",0.562,0.403,1.0,-5.441,1.0,0.0361,0.78,0.0,0.094,0.548,82.518,4.0,,RCA Records Label,"P (P) 2023 RCA Records, a division of Sony Music Entertainment",3448 +3449,spotify:track:7DVr6Az7HukAZeK7v3cGZx,Apple Eyes,spotify:artist:23ePQsW9Uwj8AlPDfa0Kyr,SWOOP,spotify:album:2ZEkbEtsy5Ej42lKXKxLgC,The Woxo Principal,spotify:artist:23ePQsW9Uwj8AlPDfa0Kyr,SWOOP,1995-02-02,https://i.scdn.co/image/ab67616d0000b2735b34b42253c9a2deb6bba280,1,5,206466,https://p.scdn.co/mp3-preview/09a2d00614020c350eb9da1488d64193f4636b91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUCO10900050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian alternative rock,0.605,0.923,5.0,-4.602,1.0,0.0459,0.0175,0.0,0.83,0.951,126.624,4.0,,One Stop Funk Shop,"C 1995 Swoop, P 1995 Swoop",3449 +3450,spotify:track:0Ao3qWJKueyfs3iqwGN30F,Wasted Days and Wasted Nights,spotify:artist:0SNdq9iJyup4XY6JbNHbt6,Freddy Fender,spotify:album:7nXadSb5djsc7Lfdv4IPLp,The Freddy Fender Collection,spotify:artist:0SNdq9iJyup4XY6JbNHbt6,Freddy Fender,1991-10-11,https://i.scdn.co/image/ab67616d0000b2735af457c250f6cca762a7bc9b,1,1,166040,https://p.scdn.co/mp3-preview/e9259f8271ba407427a7f9dcf4b3e25b6766ad11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USRE19901596,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,new mexico music,swamp pop",0.628,0.479,4.0,-7.562,1.0,0.0283,0.559,8.69e-05,0.201,0.85,87.587,4.0,,Reprise,"C © 1991 Reprise Records, P ℗ 1991 Reprise Records",3450 +3451,spotify:track:6r20M5DWYdIoCDmDViBxuz,You Got It,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:1UPcuqLY9PC99fQAqWgrSU,Mystery Girl,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,1989,https://i.scdn.co/image/ab67616d0000b273ef89c52c42eaf1f89347a16c,1,1,210266,https://p.scdn.co/mp3-preview/8b907d1b30d0ed1eedb32351b816b9c6ced3d461?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USLIC0701008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.649,0.618,9.0,-10.728,1.0,0.0265,0.596,1.46e-06,0.192,0.667,114.688,4.0,,Orbison Records/Legacy,P (P) 1989 Roy's Boys LLC,3451 +3452,spotify:track:3EG65y2LtxWjfydabHdItb,Stomp! - Single Version,spotify:artist:6h3rSZ8VLK7a5vXjEmhfuD,The Brothers Johnson,spotify:album:4DUmxqvkQn3UJgDLjlYsyX,Strawberry Letter 23: The Very Best Of The Brothers Johnson,spotify:artist:6h3rSZ8VLK7a5vXjEmhfuD,The Brothers Johnson,2003-01-01,https://i.scdn.co/image/ab67616d0000b27379956b5acca04ed583ba74f3,1,13,247133,https://p.scdn.co/mp3-preview/1ac8cfe32cbd061bf1ccf7ea3fc10c5a0c3979c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAM18074730,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,jazz funk,p funk,post-disco,quiet storm,soul",0.859,0.782,10.0,-8.344,1.0,0.0369,0.154,0.0297,0.0693,0.931,119.518,4.0,,A&M,"C © 2003 A&M Records, P This Compilation ℗ 2003 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",3452 +3453,spotify:track:73JqQIGZUZxCVfY54RSpCH,With A Little Luck - Remastered 1993,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,spotify:album:5zh2BzO2n6tSpZe0PgZc8v,London Town,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,1978-03-31,https://i.scdn.co/image/ab67616d0000b273d3473b6adad75bf820f3a134,1,9,344773,https://p.scdn.co/mp3-preview/392e99a23804f3daee04216c7fc8f84d468aed9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCCS0700630,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.652,0.372,6.0,-15.445,0.0,0.0321,0.069,0.000197,0.0923,0.283,111.984,4.0,,Paul McCartney Catalog,"C © 1978 MPL Communications Inc/Ltd, P ℗ 1993 MPL Communications Inc/Ltd",3453 +3454,spotify:track:4E6cwWJWZw2zWf7VFbH7wf,Love Song,spotify:artist:2Sqr0DXoaYABbjBo9HaMkM,Sara Bareilles,spotify:album:2Z9WUERfMjOgQ6ze9TcGbF,Little Voice,spotify:artist:2Sqr0DXoaYABbjBo9HaMkM,Sara Bareilles,2007-07-03,https://i.scdn.co/image/ab67616d0000b2731c3e0a58f3ee28af2922e351,1,1,258826,https://p.scdn.co/mp3-preview/44a403f99aefaa4c055d257f9fd09e413a9c16e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM10700066,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,lilith,neo mellow,pop rock,post-teen pop",0.583,0.786,2.0,-3.142,0.0,0.0301,0.0208,0.0,0.188,0.573,123.055,4.0,,Epic,P (P) 2007 Sony Music Entertainment,3454 +3455,spotify:track:3End7C8ao7Q60YSyyy2otO,Jam up Jelly Tight (Rerecorded),spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,spotify:album:7cwzJFH4huy5R2fszYeUiz,The Essential Tommy Roe,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,2007-06-06,https://i.scdn.co/image/ab67616d0000b27349e9b07752375f963e301c4b,1,4,139226,https://p.scdn.co/mp3-preview/faea611f73e5fb61eee91211d5da502a171cf02e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USDEI8001361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,rock-and-roll",0.808,0.662,4.0,-8.632,1.0,0.0294,0.35,1.12e-06,0.0836,0.807,118.237,4.0,,K-Tel,"C 2007 K-tel, P 2007 K-tel",3455 +3456,spotify:track:5uCax9HTNlzGybIStD3vDh,Say You Won't Let Go,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:7oiJYvEJHsmYtrgviAVIBD,Back from the Edge,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2016-10-28,https://i.scdn.co/image/ab67616d0000b27320beb61f61fcbeb33b10a9ab,1,2,211466,https://p.scdn.co/mp3-preview/2eed95a3c08cd10669768ce60d1140f85ba8b951?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,DEE861600586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.358,0.557,10.0,-7.398,1.0,0.059,0.695,0.0,0.0902,0.494,85.043,4.0,,Columbia,P (P) 2016 Sony Music Entertainment Germany GmbH,3456 +3457,spotify:track:4fZscNFYKoPIDHrgXxdacR,Firefly,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:3QbPtoOWiJqZurXXxJwaOD,Loose Change,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2011-12-09,https://i.scdn.co/image/ab67616d0000b273bc17a9c21d5a81d341945ed2,1,6,254999,https://p.scdn.co/mp3-preview/ef140f5763ab8651ba4cd63ca2c7383a4af5013c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GB6S41000006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.602,0.31,4.0,-11.469,1.0,0.0373,0.886,0.000142,0.105,0.36,159.917,4.0,,Atlantic Records UK,"C © 2010 Ed Sheeran under exclusive license to Warner Music UK Limited, P ℗ 2010 All tracks (p) 2010 Paw Print Records under exclusive license to Warner Music UK Limited except for track 1 (p) 2011Paw Print Records under exclusive license to Warner Music UK Limited",3457 +3458,spotify:track:2z4U9d5OAA4YLNXoCgioxo,What the Hell,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:1COPJyU2PpM2Itcob3vhFF,Goodbye Lullaby (Expanded Edition),spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2011-03-08,https://i.scdn.co/image/ab67616d0000b27372c9f7a7c75eba39726106a6,1,2,220706,https://p.scdn.co/mp3-preview/8c0591b363bc2a165eb4f12829a1995e0b84d5fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USRC11000915,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,candy pop,dance pop,pop",0.578,0.926,6.0,-3.689,0.0,0.0548,0.00472,0.0127,0.14,0.877,149.976,4.0,,Epic,P (P) 2011 Sony Music Entertainment,3458 +3459,spotify:track:6CTWathupIiDs7U4InHnDA,Trip,spotify:artist:7HkdQ0gt53LP4zmHsL0nap,Ella Mai,spotify:album:67ErXRS9s9pVG8JmFbrdJ0,Ella Mai,spotify:artist:7HkdQ0gt53LP4zmHsL0nap,Ella Mai,2018-10-12,https://i.scdn.co/image/ab67616d0000b2737ce0faf0620ab9c1779e1fbf,1,13,213993,https://p.scdn.co/mp3-preview/ceb5a8220602b0274c31bed709cc9927f3298c12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUM71810720,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap,uk contemporary r&b,urban contemporary",0.477,0.609,11.0,-5.628,0.0,0.144,0.222,0.0,0.107,0.357,79.884,4.0,,10 Summers / Interscope PS,"C © 2018 10 Summers Records, LLC, P ℗ 2018 10 Summers Records, LLC",3459 +3460,spotify:track:7AJaLDZCZuhsk2ReaqBpg4,My People,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:3gHuqLrIkfxDHXE29JGf5Y,Apocalypso (Deluxe),spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2008-04-12,https://i.scdn.co/image/ab67616d0000b273c500ca56d87a2f6b01d8ae7c,1,2,270520,https://p.scdn.co/mp3-preview/04e38589789ae0be296faa50d2d8caa1336b5ba5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUUM70700903,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.563,0.915,5.0,-2.452,1.0,0.0363,0.0149,1.35e-05,0.176,0.263,126.982,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Modular Recordings, P ℗ 2008 Modular Recordings",3460 +3461,spotify:track:46eu3SBuFCXWsPT39Yg3tJ,Don't Stop 'Til You Get Enough,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:2ZytN2cY4Zjrr9ukb2rqTP,Off the Wall,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1979-08-10,https://i.scdn.co/image/ab67616d0000b2737027294551db4fda68b5ddac,1,1,365466,https://p.scdn.co/mp3-preview/266818d14bb3fd8ef1cd8f67115f60034a786e22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USSM17900816,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.878,0.821,11.0,-9.875,1.0,0.089,0.126,0.0461,0.183,0.947,118.881,4.0,,Epic,P (P) 1979 MJJ Productions Inc.,3461 +3462,spotify:track:7y8cq2fiwZK0Ed0dbnP6gV,Walks Like Rihanna,spotify:artist:2NhdGz9EDv2FeUw6udu2g1,The Wanted,spotify:album:6jMU5zNFbKQChv95eiPDy0,Walks Like Rihanna,spotify:artist:2NhdGz9EDv2FeUw6udu2g1,The Wanted,2013-01-01,https://i.scdn.co/image/ab67616d0000b2735d9039b4eb602376d1bb6a27,1,1,202880,https://p.scdn.co/mp3-preview/09b651f6e842e9829f426deccc2ef74e5c81316c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71302670,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop,post-teen pop",0.567,0.815,5.0,-3.378,1.0,0.0579,0.00709,0.0,0.0825,0.393,126.09,4.0,,Universal Music Group,"C © 2013 Global Talent Music Recordings Ltd, under exclusive licence to Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2013 Global Talent Music Recordings Ltd, under exclusive licence to Universal Island Records, a division of Universal Music Operations Limited",3462 +3463,spotify:track:5u1kFWItrvidV7dEDa3j1T,Against All Odds (Take A Look at Me Now) (feat. Westlife),"spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:5Z1CCuBsyhEHngq3U5IraY","Mariah Carey, Westlife",spotify:album:6kRdK7cPgLqNfSoI7AMlyj,#1 to Infinity,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2015-05-15,https://i.scdn.co/image/ab67616d0000b2739ad666bef28b02eff5476ddd,1,15,200480,https://p.scdn.co/mp3-preview/5eeb6317104927309eb2b2d5eade42e8d3d253e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USSM10015027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,boy band",0.496,0.503,1.0,-6.433,1.0,0.0338,0.503,0.0,0.105,0.329,117.527,4.0,,Columbia/Legacy,"P (P) 1990, 1991, 1992, 1993, 1995, 1997, 1999 Columbia Records, a division of Sony Music Entertainment, 2005, 2008 The Island Def Jam Music Group and Mariah Carey, 2015 Epic Records, a division of Sony Music Entertainment",3463 +3464,spotify:track:6y4FVJwf09ssxuRnlEgXkp,Let's Stick Together,spotify:artist:5RNFFojXkPRmlJZIwXeKQC,Bryan Ferry,spotify:album:7q7RBiiadKQR4DCbs7OMbd,Let's Stick Together,spotify:artist:5RNFFojXkPRmlJZIwXeKQC,Bryan Ferry,1976,https://i.scdn.co/image/ab67616d0000b2738924d0252e61e6f1f68808a5,1,1,179160,https://p.scdn.co/mp3-preview/fd51ed68b9e3a183909102df124c28f98f074bc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAAA9900254,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,melancholia,new romantic,new wave,new wave pop,solo wave,sophisti-pop",0.785,0.892,9.0,-4.71,1.0,0.0356,0.0711,0.00051,0.113,0.974,120.115,4.0,,Virgin Records,"C © 1999 Virgin Records Limited, P ℗ 1999 Virgin Records Limited",3464 +3465,spotify:track:6oNvmplQGUkmAh441Teows,I Touch Myself,spotify:artist:5t06MTkDD3yr5LVs3YFLQC,Divinyls,spotify:album:50bQGJWB4VoD1GY3c4vYbv,Divinyls,spotify:artist:5t06MTkDD3yr5LVs3YFLQC,Divinyls,1991-01-01,https://i.scdn.co/image/ab67616d0000b2738958b0a05709be231c9e5531,1,2,227640,https://p.scdn.co/mp3-preview/2e0634b53cd41376a24b0a8486c3e6adb4444c3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USVI29000004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new wave pop",0.66,0.711,5.0,-10.211,1.0,0.0334,0.181,7.47e-06,0.0647,0.726,109.328,4.0,,Virgin Records,"C © 1991 Virgin Records America, Inc., P ℗ 1991 Virgin Records America, Inc.",3465 +3466,spotify:track:1wCcJB1JXFYxWbrEFQbrFZ,Riding the Wave,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:7eT5CduFS5j7FpWbBY61QB,Riding the Wave,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2018-04-13,https://i.scdn.co/image/ab67616d0000b273485adae53c19af365fa1b749,1,1,204750,https://p.scdn.co/mp3-preview/e7e8b8003688480f4792b3c585b90f4e0a9a7761?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUIYA1700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.75,0.645,9.0,-7.527,0.0,0.0461,0.143,4.76e-06,0.0921,0.508,124.953,4.0,,Empire Of Song,"C 2018 Empire Of Song (Australia) Pty Ltd, P 2018 Empire Of Song (Australia) Pty Ltd",3466 +3467,spotify:track:1nRD3VSzJ6m7g3wYkS2kCf,(I Just) Died in Your Arms,spotify:artist:3cniTumSiUysiPWXapGx1i,Cutting Crew,spotify:album:1nuvb3dI59xG29iCSuQ7CN,The Lego Batman Movie: Original Motion Picture Soundtrack,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-02-03,https://i.scdn.co/image/ab67616d0000b273d02a9047e86bb8301985032a,1,3,275920,https://p.scdn.co/mp3-preview/3b38a8a511f4f6717fbf046bdad469a5a6e4ae55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAA8600046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,new romantic,new wave,new wave pop,soft rock",0.606,0.894,11.0,-4.778,0.0,0.0441,0.0342,0.0106,0.346,0.472,124.936,4.0,,WaterTower Music,"C © 2017 Warner Bros. Entertainment / RatPac-Dune Entertainment, LLC, P ℗ 2017 WaterTower Music",3467 +3468,spotify:track:7cv28LXcjAC3GsXbUvXKbX,I Will Survive - Single Version,spotify:artist:6V6WCgi7waF55bJmylC4H5,Gloria Gaynor,spotify:album:2BU2SNYoIPtZvGEJckdIhx,20th Century Masters: The Millennium Collection: Best Of Gloria Gaynor,spotify:artist:6V6WCgi7waF55bJmylC4H5,Gloria Gaynor,2000-01-01,https://i.scdn.co/image/ab67616d0000b273a6479db910d22f5aa4546af1,1,11,198066,https://p.scdn.co/mp3-preview/dbb95f59bd69ddc2a024d2bec1478e20d3c5819c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USPR37800083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,soft rock",0.777,0.725,0.0,-8.681,1.0,0.05,0.0131,0.00805,0.246,0.529,116.669,4.0,,Polydor,"C © 2000 Universal Records Inc., P This Compilation ℗ 2000 Universal Motown Records, a division of UMG Recordings, Inc.",3468 +3469,spotify:track:3b3PnE1ROIZzILjmCGjVib,Rain,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:1a2NoE9makqEWb1uUogxFQ,Erotica (PA Version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1992-10-20,https://i.scdn.co/image/ab67616d0000b273f0ef8ce0db61b981468f7db7,1,10,324733,https://p.scdn.co/mp3-preview/0570e09c80abf170553ec4cad53626af0148e864?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB19200067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.594,0.61,10.0,-11.376,1.0,0.0269,0.064,0.00153,0.214,0.165,92.487,4.0,,Sire/Warner Records,"C © 1992 Sire Records Company, P ℗ 1992 Sire Records Company",3469 +3470,spotify:track:00tK6fhN3nwFrpQy3flNei,Here I Go Again - Radio Version,spotify:artist:3UbyYnvNIT5DFXU4WgiGpP,Whitesnake,spotify:album:2blYrXKaFgwCjI3PbNCfI6,Here I Go Again: The Whitesnake Collection,spotify:artist:3UbyYnvNIT5DFXU4WgiGpP,Whitesnake,2002-01-01,https://i.scdn.co/image/ab67616d0000b2738e043e5c39d40f584699bafa,1,1,234200,https://p.scdn.co/mp3-preview/df7afbde44d6a2b359e0ba9ccae71abb858e96ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,USGF19962002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british blues,classic rock,glam metal,hard rock,metal,rock",0.471,0.858,7.0,-5.698,1.0,0.03,0.00211,0.000514,0.319,0.589,93.285,4.0,,Interscope,"C (C) 2002 Geffen Records, P (P) 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",3470 +3471,spotify:track:0BUoLE4o9eVahDHvTqak67,Unpretty,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,spotify:album:1CvjjpvqVMoyprsf74bpYW,Fanmail,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,1999-02-23,https://i.scdn.co/image/ab67616d0000b27361ffafd5e31a37336531cf95,1,9,278066,https://p.scdn.co/mp3-preview/0ac905733ba7852d54c5ddc06672dec1b437ae76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USLF29900143,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,girl group,hip pop,r&b,urban contemporary",0.648,0.622,7.0,-6.063,1.0,0.0428,0.00152,5.97e-05,0.109,0.51,88.684,4.0,,Arista/LaFace Records,P (P) 1999 LaFace Records LLC,3471 +3472,spotify:track:3nWAEl9pelDAUSXXAZR4Gz,Girls,spotify:artist:3mIj9lX2MWuHmhNCA7LSCW,The 1975,spotify:album:3ntxECMonkWC4v0d7AK8Sa,The 1975 (Deluxe Edition),spotify:artist:3mIj9lX2MWuHmhNCA7LSCW,The 1975,2013,https://i.scdn.co/image/ab67616d0000b2733110d217dcb5935a3a7eae40,1,11,254613,https://p.scdn.co/mp3-preview/052eeb7d8ffadc422239200614a2e25060f53c71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBK3W1000200,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern alternative rock,modern rock,pop,pov: indie,rock",0.657,0.913,11.0,-4.984,1.0,0.0528,0.00392,0.00149,0.466,0.906,108.036,4.0,,Dirty Hit Ltd,"P (P) 2013 Dirty Hit, under exclusive license to Sony Music Entertainment Australia Pty Ltd.",3472 +3473,spotify:track:2RtozNYeoe7ZBgKqmTKSkj,Scattered Diamonds,spotify:artist:11jOZfVtketvHlyEXCkCWC,Hungry Kids of Hungary,spotify:album:6BU1sa1r3EtRK02teB93GW,Escapades,spotify:artist:11jOZfVtketvHlyEXCkCWC,Hungry Kids of Hungary,2010-10-01,https://i.scdn.co/image/ab67616d0000b273d8c3876ad401c17312cde731,1,6,217746,https://p.scdn.co/mp3-preview/58fe1547782ad6589a920fad97f737e4adbf27f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEU30900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.539,0.861,4.0,-4.141,1.0,0.0503,0.0696,0.0,0.0821,0.738,96.901,4.0,,Stop Start,"C 2010 Hungry Kids Of Hungary, P 2010 Hungry Kids Of Hungary",3473 +3474,spotify:track:2id8E4WvczfKHB4LHI7Np3,Edge of Seventeen,spotify:artist:7crPfGd2k81ekOoSqQKWWz,Stevie Nicks,spotify:album:7q0dYnAjmqZBJLhMBre8aL,Crystal Visions...The Very Best of Stevie Nicks,spotify:artist:7crPfGd2k81ekOoSqQKWWz,Stevie Nicks,2007-03-27,https://i.scdn.co/image/ab67616d0000b2732614c295a38ee782d093aa09,1,1,329680,https://p.scdn.co/mp3-preview/a8e50bfc9c46630156dfda85566d55cc62b37507?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAT28300037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,heartland rock,0.59,0.828,0.0,-6.28,1.0,0.0439,0.277,5.57e-06,0.0868,0.636,111.353,4.0,,Reprise,"C © 2007 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2007 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",3474 +3475,spotify:track:1i3lZqk7Zvl7qsZIpFoWhr,You Got Nothing I Want - 2011 Remastered,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:0wvs4l6G2raakk5yuUMJBc,Circus Animals,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,1982,https://i.scdn.co/image/ab67616d0000b27378d8f5373c7fc2bab48990b1,1,1,197594,https://p.scdn.co/mp3-preview/6c7c175ec2a3a00c8db9199df4050091fdac5036?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUU741100092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.511,0.979,4.0,-2.395,1.0,0.105,0.000457,0.00545,0.112,0.688,135.616,4.0,,Cold Chisel,"C © 2011 Cold Chisel Pty Ltd, P ℗ 2011 Cold Chisel Pty Ltd",3475 +3476,spotify:track:4lAYMPLPFOovwTCmtTt9b5,I'm A Believer,spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,spotify:album:54E5K2EKljAOlJosBJsuUH,Smash Mouth (International Version),spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,2001-01-01,https://i.scdn.co/image/ab67616d0000b273fdbad1f02e240471592b58e4,1,13,185306,https://p.scdn.co/mp3-preview/6b6fd1bce83313e614a1098cd552e8c64118c33e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10110177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.549,0.981,11.0,-3.558,0.0,0.059,0.0178,1.8e-06,0.438,0.873,82.331,4.0,,Universal Music Group,"C © 2001 Interscope Records, P ℗ 2001 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",3476 +3477,spotify:track:3pgainA2dH9c7e8JVYGRCN,Ride on Time,spotify:artist:6tsRo8ErXzpHk3tQeH6GBW,Black Box,spotify:album:6r4vIr4aUsK00mGHDiQkrl,Dreamland,spotify:artist:6tsRo8ErXzpHk3tQeH6GBW,Black Box,1990,https://i.scdn.co/image/ab67616d0000b273ae03a889dd876866982b309a,1,6,272147,https://p.scdn.co/mp3-preview/710a690e041042debd0706306c9a1f7e699d227f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBCMX0509001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,hip house,italo house",0.679,0.857,9.0,-6.348,0.0,0.0322,0.0189,0.563,0.0502,0.765,118.678,4.0,,Groove Groove Melody,"C © 1990 Groove Groove Melody SaS, P (P) 2006 Groove Groove Melody ltd.",3477 +3478,spotify:track:2SjiIBMkh2AYg8nSTcFUkJ,Galvanize - Edit,spotify:artist:1GhPHrq36VKCY3ucVaZCfo,The Chemical Brothers,spotify:album:7AAICFRIY898A4xBFhQhwp,Brotherhood (Deluxe),spotify:artist:1GhPHrq36VKCY3ucVaZCfo,The Chemical Brothers,2008-01-01,https://i.scdn.co/image/ab67616d0000b27348f189f228a0d0ac84c83d90,1,1,268800,https://p.scdn.co/mp3-preview/3701efe17b77f9ca08247f48e8d1f744bafaf85c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAA0400663,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,big beat,breakbeat,electronica,rave,trip hop",0.765,0.674,7.0,-4.165,1.0,0.086,0.0279,0.0136,0.0951,0.354,104.008,4.0,,Virgin Records,"C © 2008 Virgin Records Limited, P This Compilation ℗ 2008 Virgin Records Limited",3478 +3479,spotify:track:3e11Ft4FHEXdMU78Q3YLv8,The Mighty Quinn - Mono Version,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,spotify:album:45r4asfY2aw07XbHJ8CfdD,The Very Best Of The Fontana Years,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,1997-01-01,https://i.scdn.co/image/ab67616d0000b273d1e486a0ab62e2ebc4c809f5,1,1,170680,https://p.scdn.co/mp3-preview/3e7a8b683809979bdde7797ab649597be0f36230?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBF086800008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,classic rock,singer-songwriter",0.608,0.629,6.0,-8.166,0.0,0.0398,0.107,0.0,0.067,0.877,92.978,4.0,,Spectrum,"C © 1996 Karussell International, P This Compilation ℗ 1997 Karussell International",3479 +3480,spotify:track:3soSRpGOZ3t1GAuUQr3XUY,I'm Sorry,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,spotify:album:1cIoqjYYo4Npalc8m6JjOv,Greatest Hits,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,2014-05-02,https://i.scdn.co/image/ab67616d0000b2739332060adc23e71cebe45209,1,13,155426,https://p.scdn.co/mp3-preview/85e5998d0feb1d59e7a47e3898452ce4e9d8f19e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,DEG320700830,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rockabilly",0.568,0.302,10.0,-7.659,1.0,0.0289,0.923,0.0146,0.139,0.338,103.901,3.0,,10TEN MEDIA,"C 2014 10TEN MEDIA, P 2014 10TEN MEDIA",3480 +3481,spotify:track:4bT2zLVv2T4GiK9q9KtI0v,Stay The Night - Featuring Hayley Williams Of Paramore,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:6Rx1JKzBrSzoKQtmbVmBnM","Zedd, Hayley Williams",spotify:album:7iC7iQaeRrG33H6VInfl00,Clarity (Deluxe),spotify:artist:2qxJFvFYMEDqd7ui6kSAcq,Zedd,2014-01-01,https://i.scdn.co/image/ab67616d0000b27339667b8510033317b3553ca4,1,11,217346,https://p.scdn.co/mp3-preview/a00d28f38102e5ab39bcfa66d4a912ad9808701a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USUM71311478,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,art pop",0.596,0.738,8.0,-3.109,1.0,0.0411,0.109,0.0,0.0947,0.461,127.961,4.0,,Interscope,"C © 2014 Interscope Records, P ℗ 2014 Interscope Records",3481 +3482,spotify:track:2KklXplRtxMsBYo474Es0w,Be Mine,spotify:artist:4AKwRarlmsUlLjIwt38NLw,Ofenbach,spotify:album:3tD94EmwfRLAX1SaZQvDhC,Be Mine,spotify:artist:4AKwRarlmsUlLjIwt38NLw,Ofenbach,2016-11-25,https://i.scdn.co/image/ab67616d0000b273e819b286432a124e510dc87b,1,1,161322,https://p.scdn.co/mp3-preview/964cf1eb9f39ffbc5d2f540530a3fc64fdee956d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,FR9W11620052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop dance,0.779,0.666,5.0,-7.361,1.0,0.0482,0.194,0.000556,0.0576,0.507,123.024,4.0,,Elektra France,"C © 2016 Ofenbach Music, licence exclusive Elektra France / Warner Music France, A Warner Music Group Company, P ℗ 2016 Ofenbach Music, licence exclusive Elektra France / Warner Music France, A Warner Music Group Company",3482 +3483,spotify:track:7HMmFQsKsljwTw8bS7lu19,Rare,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:3YPFaTR7WMi1Hd4NVKdCJx,Rare,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2020-01-10,https://i.scdn.co/image/ab67616d0000b2732abcc266597eb46f897a8666,1,1,220589,https://p.scdn.co/mp3-preview/aa68ed6101eecbcf2a2d6722af7c09b9921277ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USUM71923481,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.838,0.541,5.0,-6.746,1.0,0.0708,0.207,7.97e-05,0.103,0.637,114.996,4.0,,Interscope Records,"C © 2019 Interscope Records, P ℗ 2019 Interscope Records",3483 +3484,spotify:track:6Nx2pkkE7V7U0SCdP4UIRj,Bad Moon Rising,spotify:artist:3aAUu37qACrKr6h9eQyNVj,The Reels,spotify:album:0kqiF9ZW8JkbMH0ij9nmDp,Reel To Reel: 1978 - 1992,spotify:artist:3aAUu37qACrKr6h9eQyNVj,The Reels,2007-09-15,https://i.scdn.co/image/ab67616d0000b273ef00b378d4555a01c13c3d98,1,11,224840,https://p.scdn.co/mp3-preview/abd4b2123d771741be1aed01ac7f1f8d67207b95?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00736540,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.607,0.449,3.0,-9.479,0.0,0.0315,0.502,1.74e-05,0.136,0.18,130.852,4.0,,Bloodlines,"C 2007 Bloodlines, P 2007 Bloodlines",3484 +3485,spotify:track:1Q8D0KzrDnj8lpdfaaiTDY,Am I Ever Gonna See Your Face Again (live),spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:6WWq4QGRPcBEWpeB9w4qJR,Greatest Hits,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,2011-10-28,https://i.scdn.co/image/ab67616d0000b273826a430afccd21d8c8bfa3ee,1,1,258386,https://p.scdn.co/mp3-preview/13d211b9bc6749d88bb4083c650d0b48899927ea?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,AULI00623550,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.203,0.946,9.0,-6.437,1.0,0.0604,0.00163,4.8e-05,0.979,0.377,184.3,4.0,,Bloodlines,"C 2011 Bloodlines, P 2011 Bloodlines",3485 +3486,spotify:track:2aI21FnmY7TJVKeMaoQZ0t,Say It Right,spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,spotify:album:2yboV2QBcVGEhcRlYuPpDT,Loose,spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a6f439c8957170652f9410e2,1,10,223080,https://p.scdn.co/mp3-preview/6a75ce8ce8e090f400635f7056809fe6a9c37b0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USUM70603368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian latin,canadian pop,dance pop,pop",0.871,0.871,1.0,-6.328,1.0,0.139,0.0469,0.00114,0.0543,0.811,116.946,4.0,,Mosley / Geffen,"C © 2006 Geffen Records, P ℗ 2006 Geffen Records",3486 +3487,spotify:track:2NvAYU0M5itMBOwTR9wW0U,To Lose My Life,spotify:artist:6ssXMmc5EOUrauZxirM910,White Lies,spotify:album:7cqME0i4hbvwNEUpeJnH8V,To Lose My Life (Bonus Track Version),spotify:artist:6ssXMmc5EOUrauZxirM910,White Lies,2009-01-01,https://i.scdn.co/image/ab67616d0000b273627543ebe7a0d0b693153876,1,2,191040,https://p.scdn.co/mp3-preview/b9b667fafd4aa002431c8e729de246d1020b3bc3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70818055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,indie rock,modern rock,new rave",0.546,0.817,10.0,-4.713,0.0,0.0325,0.000551,0.0121,0.111,0.286,132.066,4.0,,Polydor Records,"C © 2009 Polydor Ltd. (UK), P ℗ 2009 Polydor Ltd. (UK)",3487 +3488,spotify:track:3yNZ5r3LKfdmjoS3gkhUCT,bad guy (with Justin Bieber),"spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Billie Eilish, Justin Bieber",spotify:album:6lMlX68jJrx67hiCqdiDvW,bad guy (with Justin Bieber),"spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Billie Eilish, Justin Bieber",2019-07-11,https://i.scdn.co/image/ab67616d0000b273a69b8b111a5fb8cb1c97e8eb,1,1,194839,https://p.scdn.co/mp3-preview/04628bb2dc9fb2179dfa9529abeca3a654613f5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USUM71912813,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop,canadian pop,pop",0.67,0.453,0.0,-11.265,1.0,0.295,0.252,0.33,0.117,0.68,135.055,4.0,,Darkroom/Interscope Records,"C © 2019 Darkroom/Interscope Records, P ℗ 2019 Darkroom/Interscope Records",3488 +3489,spotify:track:45w70aQhNwke1yrQZO0ffm,Do Right,spotify:artist:14rP13jdQNgQvuPA2AkBgm,Glades,spotify:album:3xrrgkDzo0f6BPprS8tih4,Do Right,spotify:artist:14rP13jdQNgQvuPA2AkBgm,Glades,2017-12-15,https://i.scdn.co/image/ab67616d0000b273c25cac9105f9cf771f0c6580,1,1,194988,https://p.scdn.co/mp3-preview/b325493288cfa60ec03f9e80d39b8de17251fbe5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCADJ1751740,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie electropop,indie poptimism,metropopolis",0.752,0.679,3.0,-6.464,1.0,0.0304,0.063,0.0,0.0727,0.669,106.99,4.0,,Glades,"C 2017 Glades, P 2017 Glades",3489 +3490,spotify:track:1M2nd8jNUkkwrc1dgBPTJz,Angels,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:31Sx9uz9KqlvmX07Pvp0wN,Life Thru A Lens,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,1997-01-01,https://i.scdn.co/image/ab67616d0000b273c36cf94d717475042f6bb0f3,1,4,265000,https://p.scdn.co/mp3-preview/c89e3caa6786ae5625f622d6b0b90ca2d7a9c4c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBAYE9700233,spotify:user:bradnumber1,2021-08-08T09:27:38Z,"dance rock,europop",0.429,0.594,4.0,-6.251,1.0,0.0277,0.156,4.95e-06,0.1,0.236,150.22,4.0,,Universal-Island Records Ltd.,"C © 2013 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2013 Universal Island Records, a division of Universal Music Operations Limited",3490 +3491,spotify:track:5ami95W9OOWQPwrBb5tud5,Watercolour - Full Version; Single,spotify:artist:7MqnCTCAX6SsIYYdJCQj9B,Pendulum,spotify:album:3XtEGVx9uh7J46nBzEc1VS,Immersion,spotify:artist:7MqnCTCAX6SsIYYdJCQj9B,Pendulum,2010-05-21,https://i.scdn.co/image/ab67616d0000b27330f8e0f777376780c4077507,1,3,304106,https://p.scdn.co/mp3-preview/77c51f17d79736019b5b66588cd5180df5fcac13?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAHT1000072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,dancefloor dnb,drum and bass",0.421,0.896,5.0,-5.696,0.0,0.103,0.000174,0.039,0.323,0.169,174.065,4.0,,WM UK,"C © 2010 Warner Music UK Limited, P ℗ 2010 Warner Music UK Limited",3491 +3492,spotify:track:3VSwARoclO0UXWWhsPkW2P,Warrior,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,spotify:album:4KVrN1mStUcHU6ciBL7dHj,Flashing Lights,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,2013-01-01,https://i.scdn.co/image/ab67616d0000b273982ad9b28d563d2e3fb7ba1b,1,1,226295,https://p.scdn.co/mp3-preview/195eb75e6a1f4d3d7f267aa9c9ef81b8cf5afcfb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUUM71301159,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.758,0.552,11.0,-6.63,0.0,0.0342,0.0439,0.00025,0.315,0.206,140.021,4.0,,Universal Music Australia Pty. Ltd.,"C © 2013 Island Records Australia / Universal Music Australia, P ℗ 2013 Island Records Australia / Universal Music Australia",3492 +3493,spotify:track:4erCtbzU13eH2muqJ7cxGP,The Best Thing (2008) - Radio Edit,spotify:artist:3iN9k8uvm4WrgdlOigOH8D,Hook N Sling,spotify:album:7cJLk7Lzs46E5HPra1WUmD,The Best Thing (2008),spotify:artist:3iN9k8uvm4WrgdlOigOH8D,Hook N Sling,2009-01-01,https://i.scdn.co/image/ab67616d0000b2737772644aa1f17481481a13e2,1,1,242904,https://p.scdn.co/mp3-preview/21cf43fa56068e9baa47311eebb159c485eb101f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUNV00800954,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,progressive electro house",0.665,0.768,0.0,-3.433,1.0,0.0277,0.304,0.000194,0.13,0.484,128.009,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",3493 +3494,spotify:track:74jTexO94dFGyXGyeu8krd,Beautiful Life,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,spotify:album:5BOX6g9aOGf0yh7OEkzen3,The Bridge,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,1995-11-07,https://i.scdn.co/image/ab67616d0000b273e28a4fe1ad7dfc3eaf7a681d,1,1,221186,https://p.scdn.co/mp3-preview/da9098912c0b74348e97ab9a8f3ddf7fd8b00d99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,SEVJH0803501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,new wave pop",0.749,0.988,0.0,-5.266,0.0,0.0387,0.202,0.00631,0.17,0.749,135.015,4.0,,Playground Music,"C 2015 Mega Records, a Division of Playground Music Scandinavia AB, P 1995 Mega Records, a Division of Playground Music Scandinavia AB",3494 +3495,spotify:track:64BbK9SFKH2jk86U3dGj2P,Otherside,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:2Y9IRtehByVkegoD7TcLfi,Californication (Deluxe Edition),spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,1999-06-08,https://i.scdn.co/image/ab67616d0000b27394d08ab63e57b0cae74e8595,1,4,255373,https://p.scdn.co/mp3-preview/90076510970ced8308b85cd65776f75b99d97e7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USWB19900693,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.458,0.795,0.0,-3.265,1.0,0.0574,0.00316,0.000202,0.0756,0.513,123.229,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",3495 +3496,spotify:track:4tFkgfdi8b3aNcKNthPqIF,Hearts a Mess,spotify:artist:2AsusXITU8P25dlRNhcAbG,Gotye,spotify:album:7IMJkt2cilySuhCrU79cDm,Like Drawing Blood,spotify:artist:2AsusXITU8P25dlRNhcAbG,Gotye,2006-05-21,https://i.scdn.co/image/ab67616d0000b27304a30f1e2308015e73369279,1,3,366093,https://p.scdn.co/mp3-preview/134b2f84436a2848b740ac23f5b53f7be7e9cefe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUGFO0600208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.77,0.501,5.0,-9.582,0.0,0.037,0.0794,0.18,0.166,0.525,125.081,4.0,,Gotye,"C 2014 Gotye, P 2014 Gotye",3496 +3497,spotify:track:1BSMpVGWs3v5BZKnAQziAc,Light Switch,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:6PBwTu4IgZMQNTKtrgxzZQ,Light Switch,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2022-01-20,https://i.scdn.co/image/ab67616d0000b27375d950842ab17159f0bb9479,1,1,185680,https://p.scdn.co/mp3-preview/135cce6ee2119c739643b3bbc15465623a60522c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USAT22107359,spotify:user:bradnumber1,2022-08-28T06:14:04Z,"pop,viral pop",0.69,0.626,6.0,-5.693,1.0,0.306,0.105,0.000335,0.0881,0.912,184.009,4.0,,Atlantic Records,"C © 2022 Atlantic Records Group LLC, P ℗ 2022 Atlantic Records Group LLC",3497 +3498,spotify:track:0EJ3Kofm9hYq3hL4VZ881G,Big Energy (feat. DJ Khaled) - Remix,"spotify:artist:3MdXrJWsbVzdn6fe5JYkSQ, spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:0QHgL1lAIqAw0HtD7YldmP","Latto, Mariah Carey, DJ Khaled",spotify:album:15HgkUTScUcXAXmEu6lZsv,Big Energy (feat. DJ Khaled) [Remix],"spotify:artist:3MdXrJWsbVzdn6fe5JYkSQ, spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:0QHgL1lAIqAw0HtD7YldmP","Latto, Mariah Carey, DJ Khaled",2022-03-28,https://i.scdn.co/image/ab67616d0000b273b3ba1d03fb86fbf811f9643b,1,1,181665,https://p.scdn.co/mp3-preview/ca75eb55e0dca764ec0d35505d711f85f5f36262?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USRC12200496,spotify:user:bradnumber1,2022-05-17T10:07:02Z,"trap queen,dance pop,pop,urban contemporary,hip hop,miami hip hop,pop rap,rap",0.87,0.775,11.0,-3.703,0.0,0.0865,0.0421,1.8e-06,0.14,0.792,106.001,4.0,,Streamcut/RCA Records,P (P) 2022 Streamcut & RCA Records,3498 +3499,spotify:track:5YaLFRpqpUzgLLDcukNn0H,Lithium,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,spotify:album:3lFQ9ihSNR5YD0yi0yTzdC,The Open Door,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,2006-01-01,https://i.scdn.co/image/ab67616d0000b2737b8aabae10ab5bbe7c7f11c5,1,4,224106,https://p.scdn.co/mp3-preview/629c0f3bf68ccc7916a0ad2b815beb5a3b4b8daa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USWU30600104,spotify:user:bradnumber1,2022-04-22T02:23:54Z,alternative metal,0.483,0.631,10.0,-3.826,0.0,0.0356,0.214,0.0,0.0974,0.212,117.988,4.0,,The Bicycle Music Company,"C © 2006 The Bicycle Music Company, P ℗ 2006 The Bicycle Music Company",3499 +3500,spotify:track:2WQ09wqQBIOor7Q0VpIDBK,Rock That Body,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:1dgbFU08pXJXZhGPlybdMX,THE E.N.D. (THE ENERGY NEVER DIES) [Deluxe Version],spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2009-01-01,https://i.scdn.co/image/ab67616d0000b2730bd44f5ff9ecc99f7770acc5,1,2,268840,https://p.scdn.co/mp3-preview/c31cd2827ac90fa614bf2550a34e1a6f8c4f6a04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUM70967623,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.715,0.907,7.0,-6.025,0.0,0.0993,0.0172,8.39e-05,0.426,0.841,124.991,4.0,,Interscope,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",3500 +3501,spotify:track:4icxdcI1mNNFNDx0ChCRy7,Beautiful Day,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:1RU8Q05flmfFoczPtuWoHv,All That You Can't Leave Behind (EU Version),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2000-10-22,https://i.scdn.co/image/ab67616d0000b273579e3e0b82ff2672313e8952,1,1,248400,https://p.scdn.co/mp3-preview/433a88ff2fa9079ef6dfedf02094fb0d849713dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN0000196,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.539,0.938,2.0,-6.49,1.0,0.0515,0.0161,0.00161,0.17,0.37,136.287,4.0,,Universal Music Ltd.,"C (C) 2000 Universal-Island Records Ltd., P (P) 2000 Universal-Island Records Ltd.",3501 +3502,spotify:track:4VginDwYTP2eaHJzO0QMjG,Circles,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,spotify:album:75n7rjlC1fxezRtoMQmtL5,Circles,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2019-08-30,https://i.scdn.co/image/ab67616d0000b2732919189f53d1f4ca51ac0aa9,1,1,214906,https://p.scdn.co/mp3-preview/193a0924b0f73d211131bf2fb0bddb7202176202?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUM71915699,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap",0.704,0.758,0.0,-3.537,1.0,0.0402,0.233,0.00144,0.0924,0.534,120.003,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",3502 +3503,spotify:track:3YvtRvgkXPB6mN8c6FEoE1,Fat Bottomed Girls - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:6M0LuPNTm4aYOxicZiN1F8,The Platinum Collection (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,2011-01-01,https://i.scdn.co/image/ab67616d0000b273565b1d566c3b6b8731908b29,1,4,202440,https://p.scdn.co/mp3-preview/3237b9904d4c1be2c32facbe2e16a0101b46f0e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71029607,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.421,0.671,2.0,-7.666,1.0,0.0482,0.0581,0.0,0.361,0.557,88.176,4.0,,Universal Music Group,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",3503 +3504,spotify:track:4tfmkxUhK6e2j6EpHl4H68,Fresh Eyes,spotify:artist:2oX42qP5ineK3hrhBECLmj,Andy Grammer,spotify:album:4kdatKnnzcyyXqWnM3vvAB,Fresh Eyes,spotify:artist:2oX42qP5ineK3hrhBECLmj,Andy Grammer,2016-07-30,https://i.scdn.co/image/ab67616d0000b27349eb9e3ded8c930e946ebbc0,1,1,198001,https://p.scdn.co/mp3-preview/f382f235f2c78bd88c27d8e985c97984c99f7de4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMRSZ1600579,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,post-teen pop",0.827,0.526,0.0,-7.984,1.0,0.0345,0.559,2.15e-05,0.148,0.87,122.054,4.0,,Liberator Music,"C 2016 S-Curve Records, P 2016 S-Curve Records",3504 +3505,spotify:track:6UzY8j3BZhet7umydPmPpI,Case Of You,spotify:artist:1goOx6gnQdUllLfSMsL4Rt,Marques Houston,spotify:album:2ozlulRmBtM8PodltLZAIh,Mr. Houston,spotify:artist:1goOx6gnQdUllLfSMsL4Rt,Marques Houston,2009,https://i.scdn.co/image/ab67616d0000b273681f6b3ac5c1ec5abec9d548,1,5,251986,https://p.scdn.co/mp3-preview/2eba78354d88d224304c63fb922fea687bbe5a1b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USZXT0930159,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.437,0.671,9.0,-5.626,1.0,0.403,0.016,0.0,0.0618,0.774,160.519,4.0,,Music Works,"C 2010 Musicworks Entertainment Inc This label copy information is the subject of copyright protection. All rights reserved. (C) 2010 Parlophone Records Ltd, P 2010 The copyright in this sound recording is owned by Musicworks Entertainment Inc",3505 +3506,spotify:track:49X0LAl6faAusYq02PRAY6,Lady - Hear Me Tonight,spotify:artist:0AkpPlFLnr0VQwZQeMGht0,Modjo,spotify:album:0vwDxngkhZuwNbcxzebCXI,Modjo (Remastered),spotify:artist:0AkpPlFLnr0VQwZQeMGht0,Modjo,2001,https://i.scdn.co/image/ab67616d0000b27354c5c304064df85d61253ac7,1,3,307153,https://p.scdn.co/mp3-preview/05e58f0bcf5a9a29f60d5aa4fd685a528a59f328?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,FR9W10100535,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,filter house",0.72,0.808,6.0,-5.627,1.0,0.0379,0.00793,0.0293,0.0634,0.869,126.041,4.0,,Modjo Music,"C Modjo Music except Track 3: Modjo Music/Unidisc, P Modjo Music except Track 3: Modjo Music/Unidisc",3506 +3507,spotify:track:1A8j067qyiNwQnZT0bzUpZ,This Girl (Kungs Vs. Cookin' On 3 Burners),"spotify:artist:7keGfmQR4X5w0two1xKZ7d, spotify:artist:726MxZBpkxnnoKl6aN7mmj","Kungs, Cookin' On 3 Burners",spotify:album:66KCBRiOFSs9bki2A15WlB,Layers,spotify:artist:7keGfmQR4X5w0two1xKZ7d,Kungs,2016-11-04,https://i.scdn.co/image/ab67616d0000b273af72d0856c5527dc97f3ea08,1,2,195546,https://p.scdn.co/mp3-preview/32a9ff870d3eef0d57d62c6df25d3aab50d149b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,FR9W11601798,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,uk dance,bboy,instrumental funk",0.793,0.717,0.0,-4.759,0.0,0.0393,0.0927,3.6e-05,0.226,0.466,121.985,4.0,,Universal Music Division Island Def Jam,"C © 2016 Val Production, under exclusive license to Island Def Jam, a Universal Music France label, P ℗ 2016 Val Production, under exclusive license to Island Def Jam, a Universal Music France label",3507 +3508,spotify:track:5MxNLUsfh7uzROypsoO5qe,Dream On,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,spotify:album:19lEZSnCCbVEkKchoPQWDZ,Aerosmith,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,1973-01-05,https://i.scdn.co/image/ab67616d0000b273b11078ee23dcd99e085ac33e,1,3,266960,https://p.scdn.co/mp3-preview/b56a69c9cddc7358e940daa656a8dd5874e5f58f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,USSM10011897,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.307,0.433,1.0,-10.057,1.0,0.029,0.388,9.08e-05,0.332,0.224,160.9,4.0,,Columbia,"P (P) 1973 Columbia Records, a division of Sony Music Entertainment",3508 +3509,spotify:track:3WMbD1OyfKuwWDWMNbPQ4g,Daddy Cool,spotify:artist:54R6Y0I7jGUCveDTtI21nb,Boney M.,spotify:album:1KQUrny9y5zGpktF6hAGd4,Take The Heat Off Me,spotify:artist:54R6Y0I7jGUCveDTtI21nb,Boney M.,1976,https://i.scdn.co/image/ab67616d0000b273dafd1cd6e9537ec8463ea691,1,1,208600,https://p.scdn.co/mp3-preview/03e2b60a6a5c101dc0d41866f2e079d8de4a663b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,DEC737600002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.763,0.777,5.0,-6.932,0.0,0.0364,0.281,0.79,0.134,0.929,124.431,4.0,,MCI,P (P) 1976/2007 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,3509 +3510,spotify:track:4mVLzFbc3gaCoWCEENLouc,Domino Dancing,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,spotify:album:0Jt2LzWgtGxy3GZH5i2Kcy,Discography - Complete Singles Collection,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,1998-03-31,https://i.scdn.co/image/ab67616d0000b273499c6d2eaeb941d76acdfe41,1,10,258333,https://p.scdn.co/mp3-preview/966688586bfb50197868e4a382f18f94ff18b563?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAYE8800056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,permanent wave,synthpop",0.645,0.923,9.0,-9.781,0.0,0.0441,0.0876,0.00359,0.0303,0.81,109.988,4.0,,Parlophone UK,"C © 1991 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1991 Parlophone Records Ltd, a Warner Music Group Company",3510 +3511,spotify:track:6xNwKNYZcvgV3XTIwsgNio,Heartbreak Hotel,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0C3t1htEDTFKcg7F2rNbek,Elvis' Golden Records,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1958-03-21,https://i.scdn.co/image/ab67616d0000b27320ee3e86e17f17239bef1f76,1,4,127560,https://p.scdn.co/mp3-preview/64b75a620284ea4547a846da2499f508366ef866?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USRC15602846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.696,0.21,4.0,-11.922,1.0,0.067,0.84,1.62e-06,0.107,0.717,93.543,4.0,,RCA Records Label,P (P) 1958 Sony Music Entertainment,3511 +3512,spotify:track:5PZJJDmGY5blmaj9znH1tA,The Look Of Love - Pt. 1,spotify:artist:2s79xe5F6eUQkjwjww27Fh,ABC,spotify:album:2aFWgTQdB8lG7DuMHIU6uw,The Lexicon Of Love,spotify:artist:2s79xe5F6eUQkjwjww27Fh,ABC,1982-06-21,https://i.scdn.co/image/ab67616d0000b273bd799fef187e779c0e14e7b4,1,6,209160,https://p.scdn.co/mp3-preview/ad9ef06d5f0b61e72c9e2b2fc9ecdb385b47b522?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088200008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,sophisti-pop,synthpop",0.739,0.898,9.0,-4.566,0.0,0.0895,0.112,0.00104,0.309,0.915,121.01,4.0,,Universal Music Group,"C © 1998 Mercury Records Limited, P ℗ 1998 Mercury Records Limited",3512 +3513,spotify:track:2HGFgwZ3hf0flCN1T1VIDr,Wiggle It - Radio Version,spotify:artist:2029eJThczywCgnjE33s33,2 In A Room,spotify:album:4nGZs6ciGHdMG2P30BPZrg,Wiggle It,spotify:artist:2029eJThczywCgnjE33s33,2 In A Room,1990,https://i.scdn.co/image/ab67616d0000b27318826b88ccc3cf1a2ed7bf4e,1,4,245853,https://p.scdn.co/mp3-preview/251a765986086b27feb081284c8d5aade72fc3ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USCRI9023704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,latin house,vogue",0.793,0.854,11.0,-13.158,0.0,0.052,0.0606,1.98e-06,0.0423,0.838,122.856,4.0,,Cutting Records,"C 1990 Cutting Records Inc. All Rights Reserved., P 1990 Cutting Records Inc. All Rights Reserved",3513 +3514,spotify:track:7fRruZ12gXGwBs0zXQ6e5V,Babe,"spotify:artist:0hYxQe3AK5jBPCr5MumLHD, spotify:artist:06HL4z0CvFAxyc27GXpf02","Sugarland, Taylor Swift",spotify:album:56XXDc04Gugu3CknMcsWLY,Bigger,spotify:artist:0hYxQe3AK5jBPCr5MumLHD,Sugarland,2018-06-08,https://i.scdn.co/image/ab67616d0000b27333452cbadb9db9189edd7250,1,7,215106,https://p.scdn.co/mp3-preview/bd36a48089c431140bb9a9b19f8cc75d03f09744?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM71804122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country road,pop",0.535,0.777,4.0,-3.292,1.0,0.207,0.0187,1.62e-06,0.136,0.664,171.72,4.0,,"Big Machine Records, LLC","C © 2018 UMG Recordings, Inc., P ℗ 2018 UMG Recordings, Inc.",3514 +3515,spotify:track:014J7jX1wSv0manSdRnveo,Dancing On My Own - Tiësto Remix,"spotify:artist:6ydoSd3N2mwgwBHtF6K7eX, spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z","Calum Scott, Tiësto",spotify:album:7vGzSetTlpBFG31tGWInEh,Dancing On My Own (Tiësto Remix),spotify:artist:6ydoSd3N2mwgwBHtF6K7eX,Calum Scott,2016-07-08,https://i.scdn.co/image/ab67616d0000b273ec78977b05548185f25355e5,1,1,224391,https://p.scdn.co/mp3-preview/11c84e9acbc1ed517a61e520fefa8c45c6af3283?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71606248,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance",0.608,0.648,1.0,-5.569,1.0,0.036,0.0194,0.00104,0.0897,0.114,121.96,4.0,,Universal Music Group,"C © 2016 Capitol Records, P ℗ 2016 Capitol Records",3515 +3516,spotify:track:17phhZDn6oGtzMe56NuWvj,Lose Control,spotify:artist:33qOK5uJ8AR2xuQQAhHump,Teddy Swims,spotify:album:7nacKlk586eLRBSIsrk9DB,I've Tried Everything But Therapy (Part 1),spotify:artist:33qOK5uJ8AR2xuQQAhHump,Teddy Swims,2023-09-15,https://i.scdn.co/image/ab67616d0000b2731a0323cc23419360a34a3ace,1,2,210688,https://p.scdn.co/mp3-preview/51e51cc257e4186893b1923abf42fdaabbeeda37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,89,USWB12302315,spotify:user:bradnumber1,2024-03-27T20:54:57Z,,0.561,0.604,9.0,-4.409,1.0,0.0337,0.199,1.9e-05,0.104,0.242,159.92,3.0,,Warner Records,"C © 2023 SWIMS Int. under exclusive license to Warner Records Inc., P ℗ 2023 SWIMS Int. under exclusive license to Warner Records Inc.",3516 +3517,spotify:track:6XcfKZvJio9Z0fQy11GnNX,broken,spotify:artist:4KJ6jujcNPzOyhdNoiNftp,lovelytheband,spotify:album:2AbPwLvpR0FwpqGt4ZY1q4,finding it hard to smile,spotify:artist:4KJ6jujcNPzOyhdNoiNftp,lovelytheband,2018-08-03,https://i.scdn.co/image/ab67616d0000b27385ea5f82c855acb4476b046c,1,4,204878,https://p.scdn.co/mp3-preview/501f1c926b2c197dac50b0123bc74714d03e890e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,US3DF1712109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pov: indie",0.666,0.728,7.0,-5.808,1.0,0.0419,0.00175,4.26e-06,0.0429,0.51,122.996,4.0,,RED MUSIC,"P (P) 2018 The Century Family, Inc.",3517 +3518,spotify:track:1nltT2YKKlDxaZmBOS28pN,Talk To Me,spotify:artist:0s4lAMIrmAdSrf8TPfU13O,Sunny & The Sunglows,spotify:album:3tMoSwSOAulvQRN1Y8lnB2,All Time Favorites: Sunny & the Sunglows,spotify:artist:0s4lAMIrmAdSrf8TPfU13O,Sunny & The Sunglows,2015-03-10,https://i.scdn.co/image/ab67616d0000b27320fd93496118d0cf33e3e603,1,11,164600,https://p.scdn.co/mp3-preview/9ff7958b2f5c5840e796ec96c861e22ccaced30d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,DEKB71221530,spotify:user:bradnumber1,2021-08-08T09:26:31Z,souldies,0.482,0.489,7.0,-8.302,1.0,0.0366,0.844,8.63e-05,0.613,0.672,122.035,3.0,,All Time Favorites,"C 2015 Sinostate, P 2015 Sinostate",3518 +3519,spotify:track:1Rvl8qsKJurfFTyWLBI9ib,"Baby, I Love Your Way",spotify:artist:0Jeckitay8SbvKwqAzWuYH,Big Mountain,spotify:album:4QHFXQLRwZx5122InHluo5,The Best of Big Mountain,spotify:artist:0Jeckitay8SbvKwqAzWuYH,Big Mountain,1999-01-01,https://i.scdn.co/image/ab67616d0000b2738dad961673a82ade27f202a8,1,1,249520,https://p.scdn.co/mp3-preview/33f0cba55205e1507d1fd3834c20ea226f14a07c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USGI19400026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae,reggae fusion",0.651,0.747,1.0,-7.269,0.0,0.0699,0.0528,0.0,0.207,0.776,147.518,4.0,,Giant,"C © 1994, 1995, 1997, 1998 Giant Records, P ℗ 1994, 1995, 1997, 1998 Giant Records",3519 +3520,spotify:track:57Cs3ecsNwPM3XZRW7GYq2,Thank You - Single Edit,spotify:artist:3f5W9NEwkc1SAIPFuumcaf,Jamelia,spotify:album:0XUV61T420G79IxYhTzrX7,Thank You,spotify:artist:3f5W9NEwkc1SAIPFuumcaf,Jamelia,2003-06-30,https://i.scdn.co/image/ab67616d0000b2733c0f5882f5ad3bc6fa4e2b8d,1,15,194813,https://p.scdn.co/mp3-preview/81e06dc489b551d0ff6eb1697dfabcebbe053aa1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE0302265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,europop,talent show",0.445,0.731,2.0,-6.471,1.0,0.282,0.341,2.33e-05,0.394,0.783,92.207,4.0,,Woah Dad!,"C 2003 Woah Dad!, P 2003 Woah Dad!",3520 +3521,spotify:track:2zzXeIZU8VkOfrdbO7KW2j,Just A Little,spotify:artist:6htUPs3clIStnkvg5jimKZ,Liberty X,spotify:album:1BY6hNYbTcIHxXBxxUF90i,Thinking It Over,spotify:artist:6htUPs3clIStnkvg5jimKZ,Liberty X,2002-01-01,https://i.scdn.co/image/ab67616d0000b2738c4671203bc416cd0349e0bf,1,2,236133,https://p.scdn.co/mp3-preview/78ad7bb9ea679a79b386f6f20777053030e4cdc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBLK0200083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,girl group,talent show",0.796,0.617,5.0,-6.198,0.0,0.0619,0.00824,0.0,0.0495,0.72,103.858,4.0,,Universal Music Russia,"C (C) 2002 V2 Music Limited, P (P) 2002 V2 Music Limited",3521 +3522,spotify:track:2IcqY68BxP1ONPi3ME6aje,"Evergreen (Love Theme from ""A Star Is Born"")",spotify:artist:7jmTilWYlKOuavFfmQAcu6,Barbra Streisand,spotify:album:435mubtZvkoTYIPXWy3seP,A Star Is Born,"spotify:artist:7jmTilWYlKOuavFfmQAcu6, spotify:artist:0vYQRW5LIDeYQOccTviQNX","Barbra Streisand, Kris Kristofferson",1976-11,https://i.scdn.co/image/ab67616d0000b273b68103235da63702c1f7670a,1,6,184800,https://p.scdn.co/mp3-preview/98d67f63efe9876102977c96c71affcb57fd1aaa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM10001384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,operatic pop,soft rock",0.35,0.303,9.0,-10.943,1.0,0.0316,0.932,0.0257,0.0907,0.187,114.709,4.0,,Columbia,P (P) 1976 Sony Music Entertainment,3522 +3523,spotify:track:4IFS1eTnjH2xzT2u4CX8Z1,What's a Girl to Do?,spotify:artist:6aAAAaBR4MvI5HZz4BeVm0,Sister2sister,spotify:album:4AFfRPo1FqxkigADIZCZR7,One,spotify:artist:6aAAAaBR4MvI5HZz4BeVm0,Sister2sister,2000,https://i.scdn.co/image/ab67616d0000b2734497475be3e82ce527571b47,1,4,207066,https://p.scdn.co/mp3-preview/c60a1b30374341fd96f7a549a26d622760dfed37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUMU00000343,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.707,0.836,6.0,-6.58,1.0,0.0503,0.00232,0.0009,0.153,0.741,119.742,4.0,,WM Australia,"C © 2000 Standard Records, P ℗ 2000 Standard Records",3523 +3524,spotify:track:5WRFCQ3VJEQ4byX7OmsuSt,Memphis,spotify:artist:52GxmJdAcByy1ZyPivpUns,Lonnie Mack,spotify:album:4SV7Naca6cSCPpdrjxaGEF,The Wham Of That Memphis Man!,spotify:artist:52GxmJdAcByy1ZyPivpUns,Lonnie Mack,2008-07-07,https://i.scdn.co/image/ab67616d0000b2730b4dce2b07354608aaaf68ff,1,5,152003,https://p.scdn.co/mp3-preview/e67a3cb2308ce1531cc1b385278651a097e46475?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBHN9900449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,electric blues,modern blues,texas blues",0.521,0.774,7.0,-8.416,1.0,0.0264,0.136,0.146,0.0739,0.971,100.954,4.0,,Ace Records,"C 2008 Ace Records, P 2008 Ace Records",3524 +3525,spotify:track:61cH3Ou7shdOhyWoYKIpym,Mother Mother,spotify:artist:6RaSfqo4f0b42iNouQeAKK,Tracy Bonham,spotify:album:3VmOF83pnSvHiCtznXtV2c,20 #1’s: Alternative Rock,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-12-18,https://i.scdn.co/image/ab67616d0000b273b10ea032e2ba96b0d17c1999,1,17,180653,https://p.scdn.co/mp3-preview/86c1bbc3c8d3935370c8318ccda35a4e6999966f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR29600065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boston rock,lilith",0.371,0.674,2.0,-5.498,1.0,0.0709,0.0135,0.0,0.208,0.551,174.567,4.0,,Universal Music Group,"C © 2015 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2015 Universal Music Enterprises, a Division of UMG Recordings, Inc.",3525 +3526,spotify:track:5O2P9iiztwhomNh8xkR9lJ,Night Changes,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:4gCNyS7pidfK3rKWhB3JOY,FOUR (Deluxe),spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2014-11-17,https://i.scdn.co/image/ab67616d0000b273d304ba2d71de306812eebaf4,1,7,226600,https://p.scdn.co/mp3-preview/359be833b46b250c696bbb64caa5dc91f2a38c6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,86,GBHMU1400165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.672,0.52,8.0,-7.747,1.0,0.0353,0.859,0.0,0.115,0.37,120.001,4.0,,Syco Music,P (P) 2014 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,3526 +3527,spotify:track:6EdUE6TbcVzxfDnBZPTAg5,Fire Water Burn,spotify:artist:6nDLku5uL3ou60kvCGZorh,Bloodhound Gang,spotify:album:3c8RmBxtMDQXR8ddtmc3nJ,One Fierce Beer Coaster,spotify:artist:6nDLku5uL3ou60kvCGZorh,Bloodhound Gang,1996-01-01,https://i.scdn.co/image/ab67616d0000b2732b7dbe29ade361932a318f32,1,3,291800,https://p.scdn.co/mp3-preview/9ea220d31cc60c5619bb2d480c4c4d7547d04b06?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USGF19612403,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,comic,funk metal,funk rock,nu metal,rap rock",0.687,0.565,7.0,-9.613,1.0,0.0316,0.0682,0.599,0.101,0.613,97.084,4.0,,Universal Music Group,"C © 1996 Geffen Records Inc., P ℗ 1996 UMG Recordings, Inc.",3527 +3528,spotify:track:3NldGYmhDLK98kOOo4J1lg,I Still Haven't Found What I'm Looking For,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7k7aHoW1MGWWQR0KXvswkx,U218 Singles (Deluxe Version),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a589a051c46a5ff41125e9d6,1,2,277333,https://p.scdn.co/mp3-preview/977c8d1d535253a9a4e1061cf4585b624dd205c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8790002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.564,0.84,1.0,-6.116,1.0,0.0343,0.012,0.00339,0.0949,0.663,100.649,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",3528 +3529,spotify:track:5QMzJ1D9r2hxp0LGWPUtVv,I Like Dreamin',spotify:artist:2SdZQXwwMAWw3INoSmOzur,Kenny Nolan,spotify:album:58lrXp0gaU9pCiwthHEWio,All-Time Greatest Performances,spotify:artist:2SdZQXwwMAWw3INoSmOzur,Kenny Nolan,1976,https://i.scdn.co/image/ab67616d0000b27321f740e0357cdc35e39ad088,1,1,212066,https://p.scdn.co/mp3-preview/ef162d8d4776821dc78521754de2164758d359ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM4TW1601654,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.391,0.503,6.0,-11.629,1.0,0.0337,0.47,2.76e-05,0.0667,0.463,136.963,4.0,,20th Century Fox Records,"C (C) 1976 Originally Released © 20th Century Fox Records. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws., P (P) 1976 Originally Released © 20th Century Fox Records. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",3529 +3530,spotify:track:4Bd1s7dBKS3AMiiB0oA4Uf,Forever Now,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:1Htwv3I81HU6YUWWs0ommZ,The Best of Cold Chisel - All for You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b27306dc40069e45da5e5d9f90e6,1,11,267028,https://p.scdn.co/mp3-preview/f356f3432267ff9292bc914d80079d027c82224f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABB1158223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.618,0.86,4.0,-3.614,1.0,0.0308,0.0117,3.03e-06,0.0965,0.795,129.954,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",3530 +3531,spotify:track:6AXoNiKAmN32HBEfhHmfSn,Famous,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,spotify:album:2fGpw56D35My0c82eNfKJF,SUCKER,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,2015-02-09,https://i.scdn.co/image/ab67616d0000b2732a7f876dbed7f7ae56edba22,1,9,231616,https://p.scdn.co/mp3-preview/0520faa52e2fe482274673aa44680dd4dbb88f05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAHS1400297,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,candy pop,metropopolis,pop,uk pop",0.437,0.938,1.0,-2.92,1.0,0.152,0.000913,0.0,0.116,0.734,201.97,4.0,,Asylum,"C © 2014 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company, P ℗ 2014 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company",3531 +3532,spotify:track:43ay9lQZ5rfNcOOHhRF2cM,The Greatest Show,"spotify:artist:5F1aoppMtU3OMiltO8ymJ2, spotify:artist:7HV2RI2qNug4EcQqLbCAKS, spotify:artist:6U1dBXJhC8gXFjamvFTmHg, spotify:artist:6sCbFbEjbYepqswM1vWjjs, spotify:artist:63nv0hWWDob56Rk8GlNpN8","Hugh Jackman, Keala Settle, Zac Efron, Zendaya, The Greatest Showman Ensemble",spotify:album:09w7mJRYa15Uk7rtM26QfZ,The Greatest Show,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-10-27,https://i.scdn.co/image/ab67616d0000b273a1a7f0b95a16de24a870ea5e,1,1,302146,https://p.scdn.co/mp3-preview/90116a0dfeb5048e49585dcb48f302e132d9338a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USAT21704616,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,show tunes,broadway,hollywood,show tunes,hollywood,movie tunes,post-teen pop,pop,post-teen pop,movie tunes",0.417,0.824,11.0,-7.36,0.0,0.105,0.000239,0.0545,0.0725,0.4,157.92,4.0,,Atlantic Records,"C © 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation., P ℗ 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation.",3532 +3533,spotify:track:0n2pjCIMKwHSXoYfEbYMfX,You Are The Sunshine Of My Life,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:3PResMqFgQYBfzTnqTKwQw,Talking Book,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1972-10-28,https://i.scdn.co/image/ab67616d0000b273a14b08b9a6616e121df5e8b0,1,1,178200,https://p.scdn.co/mp3-preview/cb97eb145b2c4bdd0133ba962443f7c1de23f747?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USMO17282852,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.519,0.46,11.0,-14.53,1.0,0.0688,0.823,5.97e-05,0.243,0.675,132.082,4.0,,Motown,"C © 2000 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1972 Motown Records, a Division of UMG Recordings, Inc.",3533 +3534,spotify:track:3ExJ502WjNtnMzuOmCOefa,These Boots Are Made for Walkin',spotify:artist:2tFN9ubMXEhdAQvdQxcsma,Jessica Simpson,spotify:album:0HUuxXsQ1lYDpS99EXlNBI,The Dukes Of Hazzard (Music From The Motion Picture),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2005-07-19,https://i.scdn.co/image/ab67616d0000b27346b9aa625d11aac0ec472ad8,1,2,238853,https://p.scdn.co/mp3-preview/9c0ad808d5dc0716883b022dc678e48438602156?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USSM10503863,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.778,0.789,11.0,-9.256,1.0,0.123,0.0112,0.000641,0.273,0.755,91.994,4.0,,Columbia/Sony Music Soundtrax,P Compilation (P) 2005 SONY BMG MUSIC ENTERTAINMENT,3534 +3535,spotify:track:0lx2cLdOt3piJbcaXIV74f,willow,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:2Xoteh7uEpea4TohMxjtaq,evermore,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2020-12-11,https://i.scdn.co/image/ab67616d0000b27333b8541201f1ef38941024be,1,1,214706,https://p.scdn.co/mp3-preview/6c828e79c55b0fe731ef9029ee2f2f2b2ff9f032?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USUG12004699,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.392,0.574,7.0,-9.195,1.0,0.17,0.833,0.00179,0.145,0.529,81.112,4.0,,Taylor Swift,"C © 2020 Taylor Swift, P ℗ 2020 Taylor Swift",3535 +3536,spotify:track:77w4HJEAGzRwHTapyXjFl1,Holes - Radio Edit,spotify:artist:0gadJ2b9A4SKsB1RFkBb66,Passenger,spotify:album:0tP5wipA6LebvmR68LdidF,Holes,spotify:artist:0gadJ2b9A4SKsB1RFkBb66,Passenger,2013-08-23,https://i.scdn.co/image/ab67616d0000b273089c6950a43a5a91a939c938,1,1,218613,https://p.scdn.co/mp3-preview/f12d2cdea5ecf9212f6c0d4271da60115ee31f06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBMQN1300005,spotify:user:bradnumber1,2022-01-12T23:27:55Z,"folk-pop,neo mellow",0.369,0.591,4.0,-6.37,1.0,0.102,0.329,3.48e-06,0.0762,0.548,158.399,1.0,,Sony Music Entertainment,P (P) 2013 Embassy of Music GmbH exclusively licensed to Sony Music Entertainment Netherlands BV,3536 +3537,spotify:track:7879glfFR67bRCzYsrply7,Adam's Song,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:0SvLzQZVwLWoY7p7zUcvxs,Greatest Hits [International Version (Explicit)],spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,2005-01-01,https://i.scdn.co/image/ab67616d0000b273dc9345d794d1e4866d23e5fe,1,7,246133,https://p.scdn.co/mp3-preview/f028a65b6cf91d93e815a5c795c7dc512afce375?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19959122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.529,0.722,0.0,-5.871,1.0,0.0304,0.0379,1.59e-06,0.31,0.52,136.075,4.0,,Universal Music Group,"C (C) 2005 Geffen Records, P (P) 2005 Geffen Records",3537 +3538,spotify:track:6NVB6W7G3svCKe5zB7kY8q,Angel Of The Morning,spotify:artist:4L1z1IcfK7lbqx8izGHaw5,Juice Newton,spotify:album:0fSvQOkU8rRgcsW6MerdVw,Juice Newton's Greatest Hits,spotify:artist:4L1z1IcfK7lbqx8izGHaw5,Juice Newton,1988-10-19,https://i.scdn.co/image/ab67616d0000b27399a6a7a4b4fe71d5362d16b7,1,1,254000,https://p.scdn.co/mp3-preview/fd4dac4ecb42767b410b0875a59daf1d0fe8b1a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USCN18100023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country dawn,soft rock",0.456,0.233,8.0,-12.634,1.0,0.0255,0.433,6.42e-05,0.0538,0.424,75.174,4.0,,Capitol Nashville,"C © 1998 Capitol Records Nashville, P This Compilation ℗ 1998 Capitol Records Nashville",3538 +3539,spotify:track:6PKxFkewPt55P5ao5tVS5o,Go Bang,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,spotify:album:4zZhV656BJMvD2hSAveA91,Changa,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,2017-11-10,https://i.scdn.co/image/ab67616d0000b273b5ddc1dab1991e556fca0f8f,1,3,189092,https://p.scdn.co/mp3-preview/83f9c3491cfb9d9c5de8db0f340bad767dac8aab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV01700124,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,aussietronica,australian dance,australian electropop",0.598,0.893,2.0,-3.072,1.0,0.0319,0.0714,0.0159,0.146,0.485,120.972,4.0,,etcetc Music Pty Ltd,"C © 2017 etcetc Music Pty Ltd, P ℗ 2017 etcetc Music Pty Ltd",3539 +3540,spotify:track:2F2JEW9sfhNDV3tLCNU7b4,Der Kommissar,spotify:artist:0hLd40hVpRDGENe4KGZLnW,Falco,spotify:album:1xwwyFyb5ZPxnXsdgR1mCW,FALCO 60,spotify:artist:0hLd40hVpRDGENe4KGZLnW,Falco,2017-02-17,https://i.scdn.co/image/ab67616d0000b27378643faeaddf24f47b0cd1a3,1,2,228826,https://p.scdn.co/mp3-preview/ac9825a8ac95bfd928b8199df94beed5c0274153?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,ATB158200018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"austropop,neue deutsche welle",0.929,0.717,9.0,-6.567,0.0,0.0414,0.0464,6.26e-06,0.0376,0.936,118.233,4.0,,Ariola,P (P) 2017 Sony Music Entertainment Austria GmbH,3540 +3541,spotify:track:54m5d4dRh1uXGEcJzwHL3Z,In Too Deep,spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,spotify:album:18jU7MqpM0UKpUcNmbOC6P,This Is... 1996,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-08-04,https://i.scdn.co/image/ab67616d0000b2738c99371cd6286f40d0bf1839,1,4,242373,https://p.scdn.co/mp3-preview/21cc1fa9d0788f9c0541750e86ee62b24872cce2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK9600002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock",0.615,0.709,1.0,-9.505,1.0,0.0264,0.216,0.0,0.0667,0.713,110.812,4.0,,Parlophone UK,"C 2008 Parlophone Records Ltd, a Warner Music Group Company, P 2008 Parlophone Records Ltd, a Warner Music Group Company",3541 +3542,spotify:track:6D8kc7RO0rqBLSo2YPflJ5,ABC,spotify:artist:2iE18Oxc8YSumAU232n4rW,The Jackson 5,spotify:album:2tukc7pH4qTuXcfaHjLIBc,ABC,spotify:artist:2iE18Oxc8YSumAU232n4rW,The Jackson 5,1970-05-08,https://i.scdn.co/image/ab67616d0000b2739df68560791d0b3dab491867,1,3,174866,https://p.scdn.co/mp3-preview/b111890c9feb83f8e1b72a138961c09bd025a254?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USMO17082628,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.574,0.786,8.0,-8.469,1.0,0.0641,0.519,0.000941,0.11,0.952,188.119,4.0,,Motown,"C © 1998 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1970 Motown Records, a Division of UMG Recordings, Inc.",3542 +3543,spotify:track:2lnzGkdtDj5mtlcOW2yRtG,"Whenever, Wherever",spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,spotify:album:4DyMK9x2gnmRkRa16zHaEV,Laundry Service,spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,2001-11-13,https://i.scdn.co/image/ab67616d0000b2731f400a1f4d821b00824cf58f,1,3,196160,https://p.scdn.co/mp3-preview/93dc52d836150fba41afeb6df2e9167875c7d8fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,NLB630100324,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"colombian pop,dance pop,latin pop,pop",0.794,0.832,1.0,-4.862,0.0,0.0407,0.237,1.14e-05,0.203,0.871,107.657,4.0,,Epic,P (P) 2001 Sony Music Entertainment (Holland) B.V.,3543 +3544,spotify:track:5OQsiBsky2k2kDKy2bX2eT,Learn to Fly,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:28q2N44ocJECgf8sbHEDfY,There Is Nothing Left To Lose,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,1999-11-02,https://i.scdn.co/image/ab67616d0000b2731759635c92b6314d3d3c9fe9,1,3,235293,https://p.scdn.co/mp3-preview/410537fea88c9d30eb7642d14f4658dd9b34afec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USRW39900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.465,0.919,4.0,-4.025,1.0,0.0408,1.83e-05,2.07e-05,0.262,0.537,135.997,4.0,,RCA Records Label,"P (P) 1999 Roswell Records, Inc.",3544 +3545,spotify:track:6m3Lr9MgnLrWTKM33UppRA,"Uptown Festival - 7"" Version",spotify:artist:3REpOYo13YkVj1dFzda12A,Shalamar,spotify:album:7dK8UkFgnIpM1b1Ru5rcCQ,The Very Best Of,spotify:artist:3REpOYo13YkVj1dFzda12A,Shalamar,2000-01-01,https://i.scdn.co/image/ab67616d0000b27313486d76519bd0aef543bc25,1,8,236093,https://p.scdn.co/mp3-preview/9ed031e27bf49b16a4171441c3a887b76fe0b460?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE7700019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,motown,new jack swing,post-disco,quiet storm,soul,urban contemporary",0.768,0.815,9.0,-9.302,1.0,0.0355,0.175,0.0,0.065,0.907,125.393,4.0,,Castle Communications,"C © 2000 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2000 Sanctuary Records Group Ltd., a BMG Company",3545 +3546,spotify:track:0KQd3QY1Y8zC2rfO4ZBQRC,Mistadobalina,spotify:artist:0YsLR3SQd5QTXAhGIGX7cl,Del The Funky Homosapien,spotify:album:2XYtkhFpj90gSdbdmk0Wur,The Best Of Del Tha Funkee Homosapien [The Elektra Years]: The B-Boy Handbook,spotify:artist:0YsLR3SQd5QTXAhGIGX7cl,Del The Funky Homosapien,2004-02-10,https://i.scdn.co/image/ab67616d0000b27310e59be9fca1f647161108db,1,1,260306,https://p.scdn.co/mp3-preview/7b4aeb9e0d54425c6ab4dfee78e8196d46dede2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USEE10300913,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative hip hop,hip hop,oakland hip hop",0.85,0.797,10.0,-7.429,0.0,0.136,0.0964,8.38e-06,0.34,0.63,99.615,4.0,,Rhino/Elektra,"C © 2004 Elektra Entertainment Group., P ℗ 2004 Elektra Entertainment Group. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",3546 +3547,spotify:track:1Ofm6uBEI1kBfztltCyQpd,Everything I'm Not,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:0iFKQKmkSxKjoKvI6j45to,The Secret Life Of...,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2005-10-18,https://i.scdn.co/image/ab67616d0000b273dd5ead55bbde87d6f73b86ef,1,2,201973,https://p.scdn.co/mp3-preview/a51f6ae95afb3aa559d4f824018e0c91ac795f21?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USWB10503581,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.644,0.751,10.0,-4.224,1.0,0.0375,0.0027,0.000134,0.119,0.621,133.925,4.0,,Sire/Warner Records,"C © 2005 Sire Records. Marketed by Warner Records Inc., A Warner Music Group Company., P ℗ 2005 Sire Records. Marketed by Warner Records Inc., A Warner Music Group Company.",3547 +3548,spotify:track:1MeMfXuGPbO4qWVFZ1MeAV,Peter Gunn (feat. Duane Eddy),"spotify:artist:77zrvBORXcnTyysjjKRfBU, spotify:artist:1I5Cu7bqjkRg85idwYsD91","The Art Of Noise, Duane Eddy",spotify:album:3Q0yrBSY6UjCPfUZvT7JyF,In Visible Silence,spotify:artist:77zrvBORXcnTyysjjKRfBU,The Art Of Noise,1986-04-14,https://i.scdn.co/image/ab67616d0000b2730cb527d1cd1024f7f59e08ae,1,8,228000,https://p.scdn.co/mp3-preview/02b69c67b455329f37645652a03f3ae5a14a45c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAHS0300553,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,synthpop,rock-and-roll,rockabilly,surf music",0.657,0.917,10.0,-6.586,1.0,0.0321,0.00921,0.832,0.201,0.879,119.899,4.0,,Rhino,"C © 1986 China Records Ltd., P ℗ 1986 China Records Ltd.",3548 +3549,spotify:track:1a9xl4pIr7abbkLrmqQTum,It's Just Not Cricket,spotify:artist:0IDBBKhe33nSK0gnDq0I1J,The 12th Man,spotify:album:5uiTYpdwBGw4POJRFAsOsr,The Very Best Of Richie,spotify:artist:0IDBBKhe33nSK0gnDq0I1J,The 12th Man,2015-11-27,https://i.scdn.co/image/ab67616d0000b2737991cea4350efa040969248d,1,1,323685,,True,0,AUUM71501812,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian comedy,0.608,0.855,1.0,-6.953,1.0,0.499,0.855,0.0,0.246,0.825,123.459,3.0,,EMI Recorded Music Australia Pty Ltd,"C © 2015 Little Digger Productions Pty Limited, P ℗ 2015 Little Digger Productions Pty Limited",3549 +3550,spotify:track:1JELW8hALjo9FDfCTrqIX1,Needles and Pins,spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,spotify:album:4qOhxEmmCDOgsmlXmi09ab,The Best of Smokie,spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,2003-09-13,https://i.scdn.co/image/ab67616d0000b273980de0f4d0d43f77e842a68e,1,4,162760,https://p.scdn.co/mp3-preview/06f6b053b853c4326c4b818f03fba593c7d98456?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBGPW0900191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.683,0.813,9.0,-8.549,1.0,0.028,0.0117,0.0,0.0466,0.752,122.072,4.0,,Music Manager,"C 2015 Gradegable Ltd., under exclusive license to Music Manager, P 2015 Gradegable Ltd., under exclusive license to Music Manager",3550 +3551,spotify:track:1RKUoGiLEbcXN4GY4spQDx,Clint Eastwood,spotify:artist:3AA28KZvwAUcZuOKwyblJQ,Gorillaz,spotify:album:4tUxQkrduOE8sfgwJ5BI2F,Gorillaz,spotify:artist:3AA28KZvwAUcZuOKwyblJQ,Gorillaz,2001-03-26,https://i.scdn.co/image/ab67616d0000b273f6c46838e4425ea96e2562fe,1,5,340920,https://p.scdn.co/mp3-preview/5273a4def05afe6a5c27c352241a684c403f5b6a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,75,GBAYE0001408,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative hip hop,modern rock,rock",0.663,0.694,10.0,-8.627,0.0,0.171,0.0253,0.0,0.0698,0.525,167.953,4.0,,Parlophone UK,"C © 2001 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",3551 +3552,spotify:track:3Cx4yrFaX8CeHwBMReOWXI,We Didn't Start the Fire,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:1Vw2uoVkLAJFVViJ1QyK1D,Storm Front,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1989-10-17,https://i.scdn.co/image/ab67616d0000b2731946747b8692919f98918ec4,1,2,287733,https://p.scdn.co/mp3-preview/e7980f6596f50ca919f025ad49130dd11ca60f41?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USSM18900217,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.712,0.967,7.0,-5.206,1.0,0.047,0.0771,0.0,0.356,0.895,145.024,4.0,,Columbia,"P (P) 1989 Columbia Records, a division of Sony Music Entertainment",3552 +3553,spotify:track:5v4sUZA2Oyni7EtBL586V7,Jean,spotify:artist:3kn0edxse3lzsrrtrNTtyU,Oliver,spotify:album:5n3yhXw0DNTRIpSfRE98tT,Lost Hits Of The 60's (All Original Artists & Versions),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b273f8c554e3aabe57f9d5cba30e,1,7,200066,https://p.scdn.co/mp3-preview/bc5ceb89ea73f34749c8c73df3b5805d49446101?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USEM39600790,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.323,0.127,3.0,-15.66,1.0,0.0321,0.841,0.00413,0.117,0.394,92.637,3.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P This Compilation ℗ 2010 Capitol Records, LLC",3553 +3554,spotify:track:5JcaA4A9ZoXthwEnxOxWvP,Psychotic Reaction,spotify:artist:57WXdjUf5Vlq3klNZegeTP,Count Five,spotify:album:7Mccdl5xR9mfqo00lgDVDA,Psychotic Reaction,spotify:artist:57WXdjUf5Vlq3klNZegeTP,Count Five,1966-01-01,https://i.scdn.co/image/ab67616d0000b27316dd04ec4a099a709b6627b5,1,6,185523,https://p.scdn.co/mp3-preview/583716a30d912feae14d429151d5f58d515f6410?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,QMFMK1316006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic garage rock,protopunk,psychedelic rock",0.358,0.753,11.0,-6.641,1.0,0.0986,0.000259,0.0199,0.266,0.688,164.896,4.0,,The Bicycle Music Company,"C © 1966 The Bicycle Music Company, P ℗ 1966 The Bicycle Music Company",3554 +3555,spotify:track:5OzoBpJCLKyuVSCFoQxUmZ,Lost And Running,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:63zteCuhjeMGMLHk9LF529,Dream Days At The Hotel Existence,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2007-01-01,https://i.scdn.co/image/ab67616d0000b273c3f0462c61d5e9cc2cb225c6,1,3,222160,https://p.scdn.co/mp3-preview/114aca18b90369315ca8aaa4b141c4e458901c63?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70700139,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.54,0.823,5.0,-7.045,1.0,0.0327,6.5e-05,0.0006,0.57,0.599,120.096,4.0,,Universal Music Australia Pty. Ltd.,"C (C) 2007 Universal Music Australia Pty Ltd., P (P) 2007 Universal Music Australia Pty Ltd.",3555 +3556,spotify:track:50PeqUz1BjMw9ayNTk5O4d,I've Been Thinking About You,spotify:artist:0gcMPgunYh4rX1UOdvZKBn,Londonbeat,spotify:album:5BAPBgAp1Qt9UD5vsBGXTz,Best! The Singles 16 Tracks,spotify:artist:0gcMPgunYh4rX1UOdvZKBn,Londonbeat,1995-11-20,https://i.scdn.co/image/ab67616d0000b27368558b6342a59f92f86d7b17,1,1,230066,https://p.scdn.co/mp3-preview/fc17953b4be93bb1c67978fcfc1de94e3b269b4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBARL9000083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hip house,0.678,0.659,11.0,-12.695,0.0,0.0396,0.0236,0.00192,0.0744,0.899,113.542,4.0,,RCA Records Label,P (P) 1995 BMG,3556 +3557,spotify:track:1mKXFLRA179hdOWQBwUk9e,Just Give Me a Reason (feat. Nate Ruess),"spotify:artist:1KCSPY1glIKqW2TotWuXOR, spotify:artist:1qUjOF5fzrpoNycD36b2jZ","P!nk, Nate Ruess",spotify:album:2Q9oTK48eb85waX1fFJsvj,The Truth About Love,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2012-09-18,https://i.scdn.co/image/ab67616d0000b2739d0f0d226987b449808e7b6f,1,4,242733,https://p.scdn.co/mp3-preview/15d9c5b414a7bdd68492800e76ad51a3bc8db576?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USRC11200786,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,modern rock",0.778,0.547,2.0,-7.273,1.0,0.0489,0.344,0.000306,0.132,0.442,95.0,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",3557 +3558,spotify:track:0JkIre0YxNmKGMU5V7ZiDx,Coward Of The County,spotify:artist:4tw2Lmn9tTPUv7Gy7mVPI4,Kenny Rogers,spotify:album:3dJ7K3zS6Ux7OFAWcG8eWI,Kenny,spotify:artist:4tw2Lmn9tTPUv7Gy7mVPI4,Kenny Rogers,1979-10-10,https://i.scdn.co/image/ab67616d0000b27392089ddbc4ebd1f4d7e85bdb,1,11,258733,https://p.scdn.co/mp3-preview/599d6ab9ad10b25982ce944f538a5ac53967a610?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USCN18700085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,nashville sound,soft rock",0.652,0.433,7.0,-12.843,1.0,0.0588,0.134,7.37e-06,0.146,0.675,91.471,4.0,,CMCapNash (N91),"C © 1979 Capitol Records Nashville, P ℗ 1979 Capitol Records Nashville",3558 +3559,spotify:track:5eTaQYBE1yrActixMAeLcZ,Miracle (with Ellie Goulding),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:0X2BH1fck6amBIoJhDVmmJ","Calvin Harris, Ellie Goulding",spotify:album:22UyygZceCIfoE0RhENgKx,Miracle (with Ellie Goulding),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:0X2BH1fck6amBIoJhDVmmJ","Calvin Harris, Ellie Goulding",2023-03-10,https://i.scdn.co/image/ab67616d0000b273c58e22815048f8dfb1aa8bd0,1,1,186496,https://p.scdn.co/mp3-preview/48a88093bc85e735791115290125fc354f8ed068?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBARL2300300,spotify:user:bradnumber1,2023-05-04T06:30:45Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,indietronica,metropopolis,pop,uk pop",0.636,0.869,9.0,-5.289,1.0,0.0412,0.0378,0.0446,0.0808,0.306,143.011,4.0,,Columbia,P (P) 2023 Sony Music Entertainment UK Limited,3559 +3560,spotify:track:3w3rLh6wmne91BS2rwgcog,Sad Eyes - Remastered 2002,spotify:artist:3pbKylceBTiUa0fZk4J4sJ,Robert John,spotify:album:48PU11yPb5ZWZ7cOHDXOxo,Classic Masters,spotify:artist:3pbKylceBTiUa0fZk4J4sJ,Robert John,2002,https://i.scdn.co/image/ab67616d0000b2731be24704f79a13b31882c1db,1,1,253213,https://p.scdn.co/mp3-preview/a4fffec7ce7b84f821681591350af7e113347cf0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USEM30200081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.431,0.463,0.0,-7.342,1.0,0.0268,0.599,0.00282,0.132,0.687,107.19,3.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P This Compilation ℗ 2010 Capitol Records, LLC",3560 +3561,spotify:track:1dDNwycG2dieopO6IZ8i4u,The Original High,spotify:artist:6prmLEyn4LfHlD9NnXWlf7,Adam Lambert,spotify:album:3kaQUt8Mp906u1fI0LDqO6,The Original High (Deluxe Version),spotify:artist:6prmLEyn4LfHlD9NnXWlf7,Adam Lambert,2015-06-12,https://i.scdn.co/image/ab67616d0000b2737700824398c798dd7c88142b,1,2,206053,https://p.scdn.co/mp3-preview/76261274e5bff50074a501585660dcd5def7afbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USWB11504815,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,idol,pop,post-teen pop",0.681,0.742,7.0,-5.655,0.0,0.0374,0.00747,0.0,0.0786,0.773,122.986,4.0,,Warner Records,"C © 2015 Warner Records Inc., P ℗ 2015 Warner Records Inc.",3561 +3562,spotify:track:16Ur91URXCVNpbCtUq5c30,Summer Rain (Single Remix),spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,spotify:album:3tWN0uTRc9uSFiRoTTSmAQ,Runaway Horses (Remastered & Expanded Special Edition),spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,1989-10-17,https://i.scdn.co/image/ab67616d0000b273cd8d5d44f976c884fa06740b,1,16,252146,https://p.scdn.co/mp3-preview/ba58997edc926e5482277ac083ef3072ca076615?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBBLG8900374,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock",0.747,0.834,5.0,-7.725,1.0,0.0315,0.0775,0.0,0.259,0.961,129.082,4.0,,Edsel,"C (C) 2013 Demon Music Group Ltd., P (P) 1989 Artist Management Services Ltd",3562 +3563,spotify:track:6ov3CLgYLyyUm8o9ww1Y8S,I'm Not Missing You,spotify:artist:5QjWgYDeKNP2iPHTdTttnG,Stacie Orrico,spotify:album:6Gk3ioefZgA0VafKkjG84g,Beautiful Awakening,spotify:artist:5QjWgYDeKNP2iPHTdTttnG,Stacie Orrico,2006-01-01,https://i.scdn.co/image/ab67616d0000b27346a5233692f9a9bb0c234602,1,2,252973,https://p.scdn.co/mp3-preview/6e5f1fd0e03be87f4a4994cd31ca8f68652bcc22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USVI20600219,spotify:user:bradnumber1,2021-08-08T09:26:31Z,candy pop,0.688,0.695,6.0,-5.204,1.0,0.239,0.172,0.0,0.0923,0.654,92.033,4.0,,Virgin Records,"C © 2006 Virgin Records America, Inc., P ℗ 2006 Virgin Records America, Inc.",3563 +3564,spotify:track:01TuObJVd7owWchVRuQbQw,#thatPOWER,"spotify:artist:085pc2PYOi8bGKj0PNjekA, spotify:artist:1uNFoZAHBGtllmzznpCI3s","will.i.am, Justin Bieber",spotify:album:0VWYRbEcvJcPrqMGJirO6q,#willpower (Deluxe),spotify:artist:085pc2PYOi8bGKj0PNjekA,will.i.am,2013-01-01,https://i.scdn.co/image/ab67616d0000b273642efc0b3f045f34316d2cf3,1,9,279506,https://p.scdn.co/mp3-preview/91b7cff2a5f9f7622252ea5852730d3467b681b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM71302526,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,canadian pop,pop",0.797,0.607,6.0,-6.096,0.0,0.0585,0.00112,7.52e-05,0.0748,0.399,128.01,4.0,,Interscope,"C © 2013 Interscope Records, P ℗ 2013 Interscope Records",3564 +3565,spotify:track:580t2NTEMOuCHV1sN3uhyD,Blank Space,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:6w36pmMA5bxECalu5rxQAw,1989,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-10-27,https://i.scdn.co/image/ab67616d0000b27304986cc325ba79fe52314a7b,1,2,231826,https://p.scdn.co/mp3-preview/a4930adb3f973bf4b162940844b8ccc46277dc16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1431309,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.752,0.678,5.0,-5.421,1.0,0.0646,0.085,1.64e-06,0.13,0.583,96.009,4.0,,Universal Music Group,"C © 2014 Big Machine Records, LLC, P ℗ 2014 Big Machine Records, LLC",3565 +3566,spotify:track:3XC7fMep3oxltXPansFMSs,Kicking And Screaming,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:3gHuqLrIkfxDHXE29JGf5Y,Apocalypso (Deluxe),spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2008-04-12,https://i.scdn.co/image/ab67616d0000b273c500ca56d87a2f6b01d8ae7c,1,1,345346,https://p.scdn.co/mp3-preview/9f2236fcf8ccbd2af9b0173824077eb5fdcb4c8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUUM70800163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.605,0.888,9.0,-5.044,1.0,0.0444,0.0605,0.81,0.134,0.764,128.974,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Modular Recordings, P ℗ 2008 Modular Recordings",3566 +3567,spotify:track:0uN4g8yIAUpbyjcLhn79t7,Jeans On,spotify:artist:1NcUsr07BOPEQHnREfVUPh,David Dundas,spotify:album:3ds59N5cIvWvvQlywM6eox,David Dundas,spotify:artist:1NcUsr07BOPEQHnREfVUPh,David Dundas,1977-01-01,https://i.scdn.co/image/ab67616d0000b273d75d832ac06d104df7f8a211,1,7,199933,https://p.scdn.co/mp3-preview/a5c223266266b2e53e0edeeb09f22c405bd36e42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEHT0400612,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.864,0.549,7.0,-9.741,1.0,0.0555,0.781,0.0143,0.0996,0.718,105.045,4.0,,Chrysalis Copyrights,"C © 2016 Chrysalis Copyrights Ltd., a BMG Company, P ℗ 1977 Chrysalis Copyrights Ltd., a BMG Company",3567 +3568,spotify:track:67awxiNHNyjMXhVgsHuIrs,Turn Down for What,"spotify:artist:540vIaP2JwjQb9dm3aArA4, spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK","DJ Snake, Lil Jon",spotify:album:3zo0Hxh9rjJsdw2JAKReE3,Turn Down for What,"spotify:artist:540vIaP2JwjQb9dm3aArA4, spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK","DJ Snake, Lil Jon",2013-12-18,https://i.scdn.co/image/ab67616d0000b273d905e78cad304de028db39b7,1,1,213733,https://p.scdn.co/mp3-preview/08cd21e303a7c9b0dc2d1beb2edb803882578980?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM11308174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electronic trap,pop,pop dance,atl hip hop,crunk,dance pop,dirty south rap,old school atlanta hip hop,pop rap,southern hip hop,trap",0.818,0.799,1.0,-4.1,0.0,0.156,0.00107,0.128,0.057,0.0815,100.014,4.0,,Columbia,"P (P) 2013 Columbia Records, a Division of Sony Music Entertainment",3568 +3569,spotify:track:29sGYMOlBD9woUnPzFyXjh,I'm Leaving It (All) Up To You,"spotify:artist:5ZEAzHE2TzAwUcOj6jMIgf, spotify:artist:3ijY78RxOagYo8FOgSEkWj","Donny Osmond, Marie Osmond",spotify:album:0PIvR9XOFaqL6DYIChr4Hp,The Collection,"spotify:artist:5ZEAzHE2TzAwUcOj6jMIgf, spotify:artist:3ijY78RxOagYo8FOgSEkWj","Donny Osmond, Marie Osmond",2002-01-01,https://i.scdn.co/image/ab67616d0000b273de50cdc395c583aae809cfc4,1,1,164173,https://p.scdn.co/mp3-preview/3365e95c72cfc0e8d6891739b0841ee55ce41316?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USPR37407337,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,bubblegum pop,classic country pop",0.505,0.54,11.0,-9.583,1.0,0.0253,0.196,0.000146,0.116,0.767,109.214,3.0,,Spectrum,"C © 2002 Spectrum Music, P This Compilation ℗ 2002 Spectrum Music",3569 +3570,spotify:track:6O0mqHE8b8zeHCAPpt3BnM,Reckless,spotify:artist:0afemm9P2Bb2LL99xHY32n,Bernard Fanning,spotify:album:2AYL6ZFnN7HFQNi2EBorFL,Civil Dusk,spotify:artist:0afemm9P2Bb2LL99xHY32n,Bernard Fanning,2016-08-05,https://i.scdn.co/image/ab67616d0000b2739928189ec40b048b230a283e,1,4,216243,https://p.scdn.co/mp3-preview/45cca5387f71eb4bebf2e1cdbcafa9ec95421b82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71600298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.474,0.689,6.0,-4.685,1.0,0.0529,0.348,1.61e-05,0.0957,0.207,76.253,4.0,,Dew Process,"C © 2016 Dew Process/Universal Music Australia, P ℗ 2016 Dew Process/Universal Music Australia",3570 +3571,spotify:track:5ggEwPI1l0xbljbJ5CWaHD,Don't Break The Heart That Loves You,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,spotify:album:4Y0FGsHJJbexHT2LPzUGFU,The Very Best Of Connie Francis - Connie 21 Biggest Hits,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,1987-01-12,https://i.scdn.co/image/ab67616d0000b2731a4f6e631c934eef3f045c39,1,17,182133,https://p.scdn.co/mp3-preview/ae96bff3102d8ab34402a0fed29bbd61de873e0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USF096200540,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,easy listening,rock-and-roll,rockabilly",0.379,0.37,8.0,-9.061,1.0,0.0327,0.811,0.0,0.325,0.214,73.36,4.0,,Polydor,"C © 1990 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1990 Universal Records, a Division of UMG Recordings, Inc.",3571 +3572,spotify:track:2mUsezD0iyDJzvyltPoREy,"Honey, I'm Good.",spotify:artist:2oX42qP5ineK3hrhBECLmj,Andy Grammer,spotify:album:22jTIPYUDlikqO2pGIbUQq,Magazines Or Novels,spotify:artist:2oX42qP5ineK3hrhBECLmj,Andy Grammer,2014-08-08,https://i.scdn.co/image/ab67616d0000b273eae2209aab58f8d4a66e718a,1,1,199253,https://p.scdn.co/mp3-preview/7003d9f42db685fdb9076897c0a5cb4e76f42dd0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USZXT1400267,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,post-teen pop",0.753,0.799,9.0,-6.43,1.0,0.055,0.0321,0.0,0.323,0.595,122.033,4.0,,Liberator Music,"C 2014 S-Curve Records, P 2014 S-Curve Records",3572 +3573,spotify:track:4XqyVh3P9lGVrWJIMkx2qA,Walking Away,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,spotify:album:3PZbikHXWxUKNWxHywEQqh,Greatest Hits (Int'l Non-Video),spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2008-11-21,https://i.scdn.co/image/ab67616d0000b273882c09b12aa1d865dfa410c5,1,6,202813,https://p.scdn.co/mp3-preview/a2728bac3278223f3875ccfc684a1135d056cf48?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAWV9902020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.603,0.773,9.0,-6.324,0.0,0.0358,0.155,0.0,0.123,0.811,86.407,4.0,,WM UK,"C 2008 Teacup, P 2008 Teacup",3573 +3574,spotify:track:0k5nX8Akipz5DnBmo56UmQ,Brandy - Rerecorded 1972,spotify:artist:0o5Y1P7CE982DXxW28v3H8,Scott English,spotify:album:3mCEapiXbVYCy087gxnxR0,Richard Harris & Scott English Greatest Hits,"spotify:artist:3EZENzxXIMmORo0HBQVDSE, spotify:artist:0o5Y1P7CE982DXxW28v3H8","Richard Harris, Scott English",2011-09-19,https://i.scdn.co/image/ab67616d0000b2731a2eccde8069b49bf5795db5,1,12,178510,https://p.scdn.co/mp3-preview/5520d14737d9bca2ed5b2518287ef9126477a264?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,NLB127200257,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.559,0.447,10.0,-13.185,1.0,0.0303,0.708,2.35e-05,0.479,0.666,97.034,4.0,,Cloud 9 Music,"C 2011 Cloud 9 Music, P 2011 Cloud 9 Music",3574 +3575,spotify:track:7qFg0joTjCiYOvzrt9nNtg,"Bad, Bad Leroy Brown",spotify:artist:1R6Hx1tJ2VOUyodEpC12xM,Jim Croce,spotify:album:5M1LRjo6pwaxEBuu7Dbvjb,Photographs & Memories: His Greatest Hits,spotify:artist:1R6Hx1tJ2VOUyodEpC12xM,Jim Croce,1974-01-01,https://i.scdn.co/image/ab67616d0000b27397e92e26bae020503bdff4fb,1,1,180506,https://p.scdn.co/mp3-preview/5624c561d5a05776c9f97b29afd3324697ecd659?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRHD0804152,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.663,0.844,7.0,-6.211,1.0,0.0421,0.459,0.0,0.0701,0.817,148.013,4.0,,Rhino,"C 1974 R2M Music., P 1974 R2M Music. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",3575 +3576,spotify:track:7DD7eSuYSC5xk2ArU62esN,Help! - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:0PT5m6hwPRrpBwIHVnvbFX,Help! (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1965-08-06,https://i.scdn.co/image/ab67616d0000b273e3e3b64cea45265469d4cafa,1,1,139560,https://p.scdn.co/mp3-preview/77b734651bdb2e65f62326f0e6938321c77e85b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAYE0601465,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.534,0.725,6.0,-7.576,0.0,0.0333,0.188,0.0,0.0994,0.767,94.963,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",3576 +3577,spotify:track:4Zpe9VME8DiFjLdqSqPRoZ,Close,"spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi, spotify:artist:4NHQUGzhtTLFvgF5SZesLK","Nick Jonas, Tove Lo",spotify:album:6GPV0x3fUwSE4EJOAcbSWo,Close,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,2016-03-25,https://i.scdn.co/image/ab67616d0000b2738755773e149234728f99a6a8,1,1,234240,https://p.scdn.co/mp3-preview/a8611254fb7ee1b76baca30705f834ef06ce2c4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71602394,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,metropopolis,pop,swedish electropop,swedish pop,swedish synthpop",0.625,0.615,6.0,-5.444,0.0,0.084,0.249,0.0,0.14,0.394,124.044,4.0,,Universal Music Group,"C (C) 2016 Island Records, a division of UMG Recordings, Inc. / Safehouse Records, LLC, P (P) 2016 Island Records, a division of UMG Recordings, Inc. / Safehouse Records, LLC",3577 +3578,spotify:track:6ynDLZeJjR2XitUKhS7KKW,Lady (Hear Me Tonight),spotify:artist:0AkpPlFLnr0VQwZQeMGht0,Modjo,spotify:album:53bo9cdpmSY8t0oFdip2TR,Vintage Ibiza Classics,spotify:artist:4UZyNKxKO9oN4CN8E8UZXi,Sebastian Gamboa,2013,https://i.scdn.co/image/ab67616d0000b273942f66a56dd9721014eddb32,1,10,274373,,False,0,FR69T0080020,spotify:user:bradnumber1,2020-03-05T09:20:46Z,"disco house,filter house",0.734,0.908,6.0,-5.144,1.0,0.0654,0.00499,0.000428,0.0372,0.839,126.028,4.0,,Aluminium Records,"C 2013 Aluminium Records, P 2013 Aluminium Records",3578 +3579,spotify:track:0hnl28YoqqnkIq4e0LgTD4,(We're Gonna) Rock Around the Clock,spotify:artist:3MFp4cYuYtTZe3d3xkLLbr,Bill Haley & His Comets,spotify:album:1tyRBkdV5ZVsHSHTLuuNgk,Saga All Stars: R-O-C-K / Selected Singles 1954-55,spotify:artist:3MFp4cYuYtTZe3d3xkLLbr,Bill Haley & His Comets,2007-08-20,https://i.scdn.co/image/ab67616d0000b2731e925a904fa406ddf9ba1837,1,1,133933,https://p.scdn.co/mp3-preview/b75a12296e9fc147d9c430653a9f201f96bb6e73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,FR8V60700241,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.817,0.727,9.0,-10.792,1.0,0.0927,0.412,7.84e-06,0.116,0.903,89.756,4.0,,Saga,"C 2007 Saga Sarl, P 2007 Saga Sarl",3579 +3580,spotify:track:0PDCewmZCp0P5s00bptcdd,This Will Be (An Everlasting Love),spotify:artist:5tTsrGPwQRWUsHR2Xf7Ke9,Natalie Cole,spotify:album:1eTNYVS06XwHjwMssf6Fsx,Inseparable,spotify:artist:5tTsrGPwQRWUsHR2Xf7Ke9,Natalie Cole,1975-01-01,https://i.scdn.co/image/ab67616d0000b27379e5e2b1860079d662a9bb76,1,5,171960,https://p.scdn.co/mp3-preview/ec7e346ae360a1056256fdb813e0961a6e9b5f46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USCA28700188,spotify:user:bradnumber1,2023-02-14T22:23:49Z,"adult standards,disco,quiet storm,soft rock,soul,vocal jazz",0.685,0.623,8.0,-11.146,1.0,0.042,0.228,0.00234,0.0295,0.896,126.739,4.0,,Capitol Records,"C © 1975 Capitol Records Inc., P ℗ 1975 Capitol Records Inc.",3580 +3581,spotify:track:03x2rVJRFUrvwlfxoHd9Mo,Just You and I,spotify:artist:7z2avKuuiMAT4XZJFv8Rvh,Tom Walker,spotify:album:3Qa0qW4ged1J4HGeLXbFsC,What a Time To Be Alive,spotify:artist:7z2avKuuiMAT4XZJFv8Rvh,Tom Walker,2019-03-01,https://i.scdn.co/image/ab67616d0000b27322cf06089dc7304bb41b7217,1,14,174982,https://p.scdn.co/mp3-preview/8fd424f8a54d6ee4a5f9c99325c2241d3dcc360b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBARL1801758,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie anthem-folk,uk pop",0.567,0.696,9.0,-5.416,1.0,0.301,0.456,0.0,0.113,0.544,92.061,4.0,,Relentless Records,P (P) 2019 Relentless Records under exclusive licence to Sony Music Entertainment UK Limited,3581 +3582,spotify:track:5S4ivU69IJ4XW7TopjvzDP,The Creeps (Fedde Le Grand Radio Mix),"spotify:artist:2ikT9iKpjKsyVX9esa3AZC, spotify:artist:7dc6hUwyuIhrZdh80eaCEE","Camille Jones, Fedde Le Grand",spotify:album:6Do208mlpqIDq7JGONHUIq,The Creeps,"spotify:artist:2ikT9iKpjKsyVX9esa3AZC, spotify:artist:7dc6hUwyuIhrZdh80eaCEE","Camille Jones, Fedde Le Grand",2009-01-01,https://i.scdn.co/image/ab67616d0000b2738523c5a67ee4027fb5d67cb1,1,1,200213,,False,0,DKUCA0600065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch house,edm,electro house,house,pop dance,progressive electro house,progressive house",0.868,0.672,1.0,-9.786,1.0,0.0634,0.103,0.467,0.0759,0.796,126.034,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",3582 +3583,spotify:track:51yf8ZP47RywP4fZXHfnM9,If You're Too Shy (Let Me Know) [Edit],spotify:artist:3mIj9lX2MWuHmhNCA7LSCW,The 1975,spotify:album:327hbo0E1dK3xo2Xi9YNAc,If You're Too Shy (Let Me Know) [Edit],spotify:artist:3mIj9lX2MWuHmhNCA7LSCW,The 1975,2020-04-23,https://i.scdn.co/image/ab67616d0000b273ebeb3868806906e87a565c93,1,1,239876,https://p.scdn.co/mp3-preview/c7af0470cb5c7d8d12ef539494b09b892600990c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBK3W2001293,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern alternative rock,modern rock,pop,pov: indie,rock",0.653,0.806,2.0,-4.842,1.0,0.0311,0.00398,0.00455,0.0927,0.386,125.641,4.0,,Dirty Hit Ltd,P (P) 2020 Dirty Hit,3583 +3584,spotify:track:16flEBCtUF67V5yO0GxYWn,Hangin' Tough,spotify:artist:55qiaow2sDYtjqu1mwRua6,New Kids On The Block,spotify:album:0W7mquARagPr9V1N0nHYgK,Hangin' Tough,spotify:artist:55qiaow2sDYtjqu1mwRua6,New Kids On The Block,1988-09-02,https://i.scdn.co/image/ab67616d0000b273c9866ae0043a0ccd4075fd05,1,6,256560,https://p.scdn.co/mp3-preview/a2adb53ef4343c20abb3b9110287260bbece5a51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USSM18700354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.763,0.552,6.0,-11.98,1.0,0.0449,0.119,0.000695,0.28,0.744,90.775,4.0,,Columbia,P (P) 1988 Sony Music Entertainment Inc.,3584 +3585,spotify:track:2OI8K5XeKn82oGoOYOb9tf,Baby Don't Forget My Number,spotify:artist:3vRclCt9VnNhYIxFMQCxuM,Milli Vanilli,spotify:album:67QUZa2DQaBdeQvPQGfSkL,Girl You Know It's True - The Best Of Milli Vanilli,spotify:artist:3vRclCt9VnNhYIxFMQCxuM,Milli Vanilli,2013-07-26,https://i.scdn.co/image/ab67616d0000b273ece39be98348e2f4dbead00a,1,3,249573,https://p.scdn.co/mp3-preview/2c7340e702f37a1070217e90cdc90b871a853234?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,DED168800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,new jack swing,new wave pop",0.862,0.862,6.0,-5.122,0.0,0.0879,0.00553,0.00808,0.122,0.802,100.293,4.0,,MCI,P (P) 2013 Sony Music Entertainment Germany GmbH,3585 +3586,spotify:track:64Ny7djQ6rNJspquof2KoX,Hound Dog,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0C3t1htEDTFKcg7F2rNbek,Elvis' Golden Records,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1958-03-21,https://i.scdn.co/image/ab67616d0000b27320ee3e86e17f17239bef1f76,1,1,136026,https://p.scdn.co/mp3-preview/5565c6d80f853affdfccb9f71f2ec170c95861ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USRC15602857,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.494,0.756,0.0,-8.492,1.0,0.0499,0.733,0.00505,0.76,0.949,86.895,4.0,,RCA Records Label,P (P) 1958 Sony Music Entertainment,3586 +3587,spotify:track:14f1kt8Cb36CK9EytujIVv,Mascara,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,spotify:album:3Mb6ZsLgwJvTtN3C5vYcC5,Reflector,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,2000,https://i.scdn.co/image/ab67616d0000b2737f361459e0043a6deb2d342c,1,1,290960,https://p.scdn.co/mp3-preview/82b9f6a21e3af4ad0ef541bb23f68de9301d162f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBEC1701086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.412,0.893,2.0,-4.517,1.0,0.0403,0.0195,0.0,0.38,0.645,133.935,4.0,,Independent,"C 2000 Wah Wah Music, P 2000 Wah Wah Music",3587 +3588,spotify:track:14WWzenpaEgQZlqPq2nk4v,Work,"spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:3TVXtAsR1Inumwj472S9r4","Rihanna, Drake",spotify:album:2JNVoEx4psIgNQyEExwQVn,ANTI (Deluxe),spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2016-01-28,https://i.scdn.co/image/ab67616d0000b2730ed05634a469e5cf4789b0a7,1,4,219320,https://p.scdn.co/mp3-preview/453654d8e72b72f5d44ed084007809679e2ec18e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,QM5FT1600116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary,canadian hip hop,canadian pop,hip hop,pop rap,rap",0.725,0.534,11.0,-6.238,1.0,0.0946,0.0752,0.0,0.0919,0.558,91.974,4.0,,Universal Music Group,"C © 2016 Westbury Road Entertainment. Distributed by Roc Nation Records, P ℗ 2016 Westbury Road Entertainment. Distributed by Roc Nation Records",3588 +3589,spotify:track:3SkhPph8j1IMJbvzWgOtiF,The Only High,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:4BSl1pycaP0lPG8JhqbVbC,The Only High,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2017-06-02,https://i.scdn.co/image/ab67616d0000b273afcedb39ffb5dbb5982ac682,1,1,198221,https://p.scdn.co/mp3-preview/947f49aa380d16a621c63155e5725d1b3ef857c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUBM01700556,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.529,0.517,8.0,-5.179,1.0,0.0379,0.575,0.0,0.0788,0.364,83.902,4.0,,Sony Music Entertainment,P (P) 2017 Sony Music Entertainment Australia Pty Ltd,3589 +3590,spotify:track:4Gmkqn3V7IMTkOmmiX7cbb,On Bended Knee,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,spotify:album:1DjxZpmeR9Dzu9tF4J44S7,II,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,1994-08-30,https://i.scdn.co/image/ab67616d0000b273a94a1672a1fc0373b3e9aa7b,1,10,329800,https://p.scdn.co/mp3-preview/f349581d70c72339aab9686295903583a0378919?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USMO19400347,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.632,0.513,8.0,-8.246,1.0,0.0336,0.377,0.0,0.118,0.185,116.629,4.0,,Motown,"C © 1994 Motown Record Company L.P., P ℗ 1994 UMG Recordings, Inc.",3590 +3591,spotify:track:2iJP97Bttwb6bbZO9wNEJ9,You Can't Hurry Love - Mono,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,spotify:album:5fpOmAuZaVyEXPlQ4oOqJ6,The Supremes A' Go-Go (Expanded Edition),spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,1966-08-25,https://i.scdn.co/image/ab67616d0000b273a16ea5e673cc4c6e8f91d5ca,1,3,166600,https://p.scdn.co/mp3-preview/d1b02b102c76eb00f05c8984b4c342e550090559?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USUM71701420,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic girl group,classic soul,disco,motown,soul",0.7,0.876,10.0,-6.189,1.0,0.105,0.479,0.0,0.119,0.617,97.682,4.0,,UNI/MOTOWN,"C © 2017 Motown Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 2017 Motown Records, a Division of UMG Recordings, Inc.",3591 +3592,spotify:track:4wosxLl0mAqhneDzya2MfY,Head & Heart (feat. MNEK),"spotify:artist:6DgP9otnZw5z6daOntINxp, spotify:artist:7uMh23xWiuR7zsNkuNcm2G","Joel Corry, MNEK",spotify:album:4w554Y1ts3lmzhn7hpfLBJ,Head & Heart (feat. MNEK),"spotify:artist:6DgP9otnZw5z6daOntINxp, spotify:artist:7uMh23xWiuR7zsNkuNcm2G","Joel Corry, MNEK",2020-07-03,https://i.scdn.co/image/ab67616d0000b273919ce7482816d9da17a77e3a,1,1,166028,https://p.scdn.co/mp3-preview/d22f65c6375d559dda4056a7de604a6ccec2dfd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,UK4ZF2000305,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop dance,uk dance,house,pop dance,uk contemporary r&b,uk dance,uk pop",0.732,0.874,8.0,-3.158,1.0,0.0662,0.168,1.17e-05,0.0489,0.905,122.961,4.0,,Universal Music Australia Pty. Ltd.,"C © 2020 Perfect Havoc Limited, Under Exclusive License to Neon Records, P ℗ 2020 Perfect Havoc Limited, Under Exclusive License to Neon Records",3592 +3593,spotify:track:13j7S1J1MVDY3z2Ljl9O1H,Always,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,spotify:album:1OYl5abBuSaZFR4SgjASGe,Nine,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,2015-11-20,https://i.scdn.co/image/ab67616d0000b273aafb7291383a709c33ee40c2,1,1,181880,https://p.scdn.co/mp3-preview/03d8038965bca6e37185010cd379ed3cbb63bf80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUBM01500400,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.648,0.72,11.0,-3.514,1.0,0.05,0.00266,0.0,0.0717,0.594,108.012,4.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,3593 +3594,spotify:track:47zREtxQZ3cHHIZwUQnuuN,Never Be Like You (feat. Kai),"spotify:artist:6nxWCVXbOlEVRexSbLsTer, spotify:artist:6xHUXzrfhFgnIv86EBR3Ml","Flume, kai",spotify:album:6VHCF8ykDo3STafE5JfMAs,Skin,spotify:artist:6nxWCVXbOlEVRexSbLsTer,Flume,2016-05-27,https://i.scdn.co/image/ab67616d0000b273f61260d235e1d7e31bbafc6f,1,2,233337,https://p.scdn.co/mp3-preview/e27486d20eb1ffd4d844cdb0e084c1d568efeb60?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,AUFF01500784,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,australian indie,downtempo,edm,indietronica",0.564,0.552,0.0,-5.438,1.0,0.055,0.439,0.0,0.163,0.26,119.907,4.0,,Mom & Pop Music,"C (C) 2016 Mom+Pop Under Exclusive License from Future Classic, P (P) 2016 Mom+Pop Under Exclusive License from Future Classic",3594 +3595,spotify:track:63diy8Bzm0pHMAU37By2Nh,Take Me Home Tonight,spotify:artist:4Tw2N3wdvJPGEU7JqMxFfE,Eddie Money,spotify:album:590LYMDhJ9uUglR8QeNGWz,The Best Of Eddie Money,spotify:artist:4Tw2N3wdvJPGEU7JqMxFfE,Eddie Money,2001-07-16,https://i.scdn.co/image/ab67616d0000b27344fa9dc16ac2790d27e45364,1,3,211466,https://p.scdn.co/mp3-preview/699f6beff6d92a7f15402afd11e9389ca99ad9c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USSM18500149,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,glam metal,hard rock,mellow gold,soft rock,southern rock",0.622,0.845,1.0,-5.984,1.0,0.0324,0.117,0.0,0.0984,0.718,132.747,4.0,,Columbia/Legacy,"P (P) 1977, 1978, 1980, 1982, 1983, 1986, 1988, 1989, 2001 Sony Music Entertainment Inc.",3595 +3596,spotify:track:6LCEyZZHFF4ebF1Mike1s5,Not Ready to Make Nice,spotify:artist:25IG9fa7cbdmCIy3OnuH57,The Chicks,spotify:album:2NeJdEWras0uSuzLPlJZk5,Taking The Long Way,spotify:artist:25IG9fa7cbdmCIy3OnuH57,The Chicks,2006-05-23,https://i.scdn.co/image/ab67616d0000b27389ccaf21947f7929189654dc,1,3,237296,https://p.scdn.co/mp3-preview/e5a5b12060c2e9a7797075f5df06c05f721ebd69?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM10601030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn",0.425,0.554,6.0,-4.145,1.0,0.0298,0.134,8.56e-05,0.0963,0.288,83.917,4.0,,Open Wide/Columbia,"P (P) 2006 Columbia Records, a division of Sony Music Entertainment",3596 +3597,spotify:track:70Vdd1gx5tn84jkAU31ASv,Sexy And I Know It,spotify:artist:3sgFRtyBnxXD5ESfmbK4dl,LMFAO,spotify:album:0D49RvtlLCKyxeDKDnBU2R,Sorry For Party Rocking,spotify:artist:3sgFRtyBnxXD5ESfmbK4dl,LMFAO,2011-01-01,https://i.scdn.co/image/ab67616d0000b2731db908d5f66645cb158837ca,1,4,199480,https://p.scdn.co/mp3-preview/dd70b7db98aa5b41e43172e64c39737acacd04b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USUM71108090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.708,0.861,7.0,-4.225,1.0,0.316,0.1,0.0,0.191,0.795,130.043,4.0,,Will I Am / A&M,"C © 2011 Foo & Blu, LLC, under exclusive License to Interscope Records, P ℗ 2011 Foo & Blu, LLC, under exclusive License to Interscope Records",3597 +3598,spotify:track:2glSi4PRdGUzLaz5QpiNJV,Ain't It Funny,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:4TlzQ4FABU9yI2lDvoGVb9,J.Lo,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2001-01-01,https://i.scdn.co/image/ab67616d0000b273a0797e28d8f68c14f657422e,1,5,246160,https://p.scdn.co/mp3-preview/3f7ba65d9de9200c24479e1860a791844ffb60a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10018510,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.707,0.869,5.0,-4.525,0.0,0.0481,0.104,0.000121,0.0813,0.621,99.825,4.0,,Epic,"P (P) 2000, 2001 Sony Music Entertainment Inc.",3598 +3599,spotify:track:4mFIxFJg3Di1OIyVs7mcYh,Little Miss Can't Be Wrong,spotify:artist:2PSiyldxmJze7xiqbz658m,Spin Doctors,spotify:album:2TWdmpnFNCMlZDQROleupK,Pocket Full Of Kryptonite,spotify:artist:2PSiyldxmJze7xiqbz658m,Spin Doctors,1991-08-27,https://i.scdn.co/image/ab67616d0000b273436e38032cf3389d01426eca,1,3,233093,https://p.scdn.co/mp3-preview/d462ce5a62f0453a68aeda8c644c59590cd22f10?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USSM19000781,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.526,0.905,0.0,-8.81,1.0,0.0392,0.0106,0.0191,0.373,0.941,116.454,4.0,,Epic,P (P) 1991 SONY BMG MUSIC ENTERTAINMENT,3599 +3600,spotify:track:3lN8PP6R2IxbLP05QpYXng,Born To Be Wild - Single Version,spotify:artist:1WRM9i067hd2ujxxi8FI3m,Steppenwolf,spotify:album:64q58AfjSrrX9Egp7Zryw8,Steppenwolf,spotify:artist:1WRM9i067hd2ujxxi8FI3m,Steppenwolf,1968-01-01,https://i.scdn.co/image/ab67616d0000b273e2aacda30b100cc33d523be0,1,5,212893,https://p.scdn.co/mp3-preview/6c1f5377ae30c65577835dce021c23bcf198591f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USMC16846563,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,blues rock,classic canadian rock,classic rock,hard rock,proto-metal,rock,singer-songwriter,soft rock",0.439,0.734,2.0,-12.168,1.0,0.097,0.262,0.333,0.244,0.54,145.703,4.0,,Geffen*,"C © 1980 MCA Records Inc., P ℗ 1968 UMG Recordings, Inc.",3600 +3601,spotify:track:7bPyCZzfImpH5jRAhix23Z,Maybe Tonight,spotify:artist:7Irt8Qpa5LLDNlkO2TPQyZ,Kate DeAraugo,spotify:album:1nhhmd5877bj2LfKxZEMkK,A Place I've Never Been,spotify:artist:7Irt8Qpa5LLDNlkO2TPQyZ,Kate DeAraugo,2005-12-11,https://i.scdn.co/image/ab67616d0000b273ac57e052fcfa548a813e5402,1,2,218413,https://p.scdn.co/mp3-preview/130d3b3638871694fd81327bc0bddc24a9575cf7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM00599636,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.492,0.511,3.0,-4.822,1.0,0.0283,0.702,1.59e-06,0.109,0.317,133.954,4.0,,Sony BMG Music Entertainment,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,3601 +3602,spotify:track:6t7089pe4VklogK683LdPM,Chew On My Heart,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,spotify:album:35CBeD16aEGo0xnm5ov6pM,Chew On My Heart,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,2020-07-09,https://i.scdn.co/image/ab67616d0000b2730f246bd202ca67283236d9b8,1,1,195212,https://p.scdn.co/mp3-preview/387132752c3e189878ec7150d99fec3d74b6552b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USUM72012813,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop,uk pop",0.545,0.719,11.0,-5.424,0.0,0.039,0.0696,0.0,0.146,0.196,123.075,4.0,,Republic Records,"C © 2020 Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Republic Records, a division of UMG Recordings, Inc.",3602 +3603,spotify:track:1I8tHoNBFTuoJAlh4hfVVE,Firestone,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:1rw8ZTLnDHd74TWDDukjVi","Kygo, Conrad Sewell",spotify:album:0uMIzWh1uEpHEBell4rlF8,Cloud Nine,spotify:artist:23fqKkggKUBHNkbKtXEls4,Kygo,2016-05-13,https://i.scdn.co/image/ab67616d0000b27335590cb9280d5a1f5221ae1a,1,5,271640,https://p.scdn.co/mp3-preview/fdc52b388511ac852714c41e37ade2cb51178716?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,SEBGA1400887,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,australian pop",0.704,0.634,11.0,-7.374,0.0,0.0428,0.393,3.17e-05,0.0952,0.411,113.927,4.0,,Kygo,"P (P) 2016 Kygo under exclusive license to Sony Music Entertainment International Ltd / Ultra Records, LLC",3603 +3604,spotify:track:7MAibcTli4IisCtbHKrGMh,Leave The Door Open,"spotify:artist:0du5cEVh5yTK9QJze8zA0C, spotify:artist:3jK9MiCrA42lLAdMGUZpwa, spotify:artist:6PvvGcCY2XtUcSRld1Wilr","Bruno Mars, Anderson .Paak, Silk Sonic",spotify:album:7dfPqXck6BB9wpThrVYBss,Leave The Door Open,"spotify:artist:0du5cEVh5yTK9QJze8zA0C, spotify:artist:3jK9MiCrA42lLAdMGUZpwa, spotify:artist:6PvvGcCY2XtUcSRld1Wilr","Bruno Mars, Anderson .Paak, Silk Sonic",2021-03-05,https://i.scdn.co/image/ab67616d0000b2736f9e6abbd6fa43ac3cdbeee0,1,1,242096,https://p.scdn.co/mp3-preview/2f06384101ad1a5aa6b02f6fc24b59789c2ab54d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USAT22100906,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,escape room,hip hop,indie soul,neo soul,neo soul",0.586,0.616,5.0,-7.964,1.0,0.0324,0.182,0.0,0.0927,0.719,148.088,4.0,,Aftermath Entertainment/Atlantic,"C © 2021 Aftermath Entertainment and Atlantic Recording Corporation, P ℗ 2021 Aftermath Entertainment and Atlantic Recording Corporation",3604 +3605,spotify:track:1MR7XamWS0XH6vZxeeRdE0,Take Good Care Of My Baby - 1990 Remastered,spotify:artist:5MX2l6ewjOaeWn1lYNhzlO,Bobby Vee,spotify:album:434hmQ0GM7ynBeMZz5BSQ3,The Legendary Masters Series,spotify:artist:5MX2l6ewjOaeWn1lYNhzlO,Bobby Vee,2011-01-01,https://i.scdn.co/image/ab67616d0000b273940b776a0ae7b0078d881daf,1,14,150866,https://p.scdn.co/mp3-preview/97209c3240df545c6c0948565cebf15621b79aa1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USEM39000237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,doo-wop,rock-and-roll,rockabilly",0.492,0.431,1.0,-12.257,1.0,0.0606,0.698,0.0,0.124,0.662,82.447,4.0,,Capitol Records,"C © 2011 Capitol Records, LLC, P This Compilation ℗ 2011 Capitol Records, LLC",3605 +3606,spotify:track:3xrn9i8zhNZsTtcoWgQEAd,Since U Been Gone,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:5gDAEao3VxFdbm8vS0koQq,Breakaway,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2004-01-17,https://i.scdn.co/image/ab67616d0000b27303dadde4d9d305c1c3e0d91c,1,2,188960,https://p.scdn.co/mp3-preview/2bbd88b6a46fd986e9e4057756bcf5d876f14cfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBCTA0400231,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.662,0.741,0.0,-5.406,1.0,0.0334,0.00165,0.0303,0.114,0.404,131.0,4.0,,RCA Records Label,"P (P) 2004 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",3606 +3607,spotify:track:3Q7JdfxAPsOz9nzcnHUP33,Teenager Of The Year,spotify:artist:7BjfoAjF32l7yC1fVbuZVm,Lo-tel,spotify:album:7qvYBrX54pH31YmhWm9CJw,The Essential Indie Album,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-08-05,https://i.scdn.co/image/ab67616d0000b27379c454696ceec4ca6bace7e6,2,13,267813,https://p.scdn.co/mp3-preview/38e8e7632d13ec6fe5563d1db721f6f79bea768c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUSM00000019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian alternative rock,0.469,0.599,10.0,-7.584,1.0,0.0292,0.175,0.0,0.122,0.0798,130.735,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,3607 +3608,spotify:track:5lRzEC0Hyj92nEr9JkDxM2,I Know You (feat. Bastille),"spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c, spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc","Craig David, Bastille",spotify:album:51vRvV83RdWGP9FpzGe4SQ,The Time Is Now (Expanded Edition),spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2018-01-26,https://i.scdn.co/image/ab67616d0000b2739cf054a65fffe6b17af200be,1,8,214960,https://p.scdn.co/mp3-preview/badcd8253f245486d4c5811d2cd5837e9bcde6f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBARL1701677,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,metropopolis,modern rock,pop",0.56,0.761,9.0,-5.202,1.0,0.0879,0.126,0.0,0.0896,0.236,140.555,4.0,,Speakerbox/Insanity Records,P (P) 2018 Insanity Records Limited under exclusive licence to Sony Music Entertainment UK Limited,3608 +3609,spotify:track:46lFttIf5hnUZMGvjK0Wxo,Runaway (U & I),spotify:artist:4sTQVOfp9vEMCemLw50sbu,Galantis,spotify:album:4QcXq4vTVN7dFb7bZa9jG2,Pharmacy,spotify:artist:4sTQVOfp9vEMCemLw50sbu,Galantis,2015-06-05,https://i.scdn.co/image/ab67616d0000b2732b517912fd69652ff10d8e11,1,4,227073,https://p.scdn.co/mp3-preview/07fb66554af09f90798cadd77255c35df6dda8f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USAT21404265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,progressive electro house",0.506,0.805,1.0,-4.119,1.0,0.0469,0.00711,0.00193,0.0856,0.383,126.008,4.0,,Big Beat Records/Atlantic,"C © 2015 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States. A Warner Music Group Company, P ℗ 2015 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States. A Warner Music Group Company",3609 +3610,spotify:track:54otluCUt7Pzvi8JC6aJE5,Nobody Likes A Bogan,spotify:artist:01HH0MeCU5B1FXwt2EyZlh,Area-7,spotify:album:6q26NNnqCKbYi9FqJ9MLai,Say It To My Face,spotify:artist:01HH0MeCU5B1FXwt2EyZlh,Area-7,2001,https://i.scdn.co/image/ab67616d0000b273046b64155e10bbc2085b9600,1,8,141333,https://p.scdn.co/mp3-preview/06e37fd75f3711c66c10d650073344ffafc49ec0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUAT10600008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian ska,0.604,0.962,2.0,-3.986,1.0,0.055,0.0171,0.000215,0.153,0.962,90.627,4.0,,Area-7,"C (C) 2001 Area-7, P (P) 2001 Area-7",3610 +3611,spotify:track:2Lhdl74nwwVGOE2Gv35QuK,Cupid's Chokehold / Breakfast in America,spotify:artist:4IJczjB0fJ04gs4uvP0Fli,Gym Class Heroes,spotify:album:4Ug3M4a8wAEebndVIF65fX,The Papercut Chronicles,spotify:artist:4IJczjB0fJ04gs4uvP0Fli,Gym Class Heroes,2005-02-22,https://i.scdn.co/image/ab67616d0000b273f335d8387c3658831112f914,1,10,243773,https://p.scdn.co/mp3-preview/512899019cfc95a1faf8ddeaaa6a584c81200755?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,US56V0407211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap",0.72,0.744,1.0,-6.938,0.0,0.12,0.237,0.0,0.255,0.619,78.953,4.0,,Decaydance/Fueled By Ramen/ATL,"C © 2006 Fueled By Ramen, Inc. All Rights Reserved., P ℗ 2006 Fueled By Ramen, Inc. All Rights Reserved.",3611 +3612,spotify:track:4VKbwCqcvG1vifu7WxpvdB,Dum Da Dum,spotify:artist:7I0w61rZB2mLGLRvqrlr0W,Melodie MC,spotify:album:2Lxuazq7BujXUrayVrqa3j,Northland Wonderland,spotify:artist:7I0w61rZB2mLGLRvqrlr0W,Melodie MC,1993,https://i.scdn.co/image/ab67616d0000b2731731a65c792c7ca8e38277cb,1,7,256413,https://p.scdn.co/mp3-preview/15c130cd7b766272781f887f30419ba951915504?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,SEAMA1001408,spotify:user:bradnumber1,2021-08-08T09:26:31Z,eurodance,0.967,0.976,7.0,-8.195,1.0,0.0947,0.0732,4.38e-05,0.262,0.944,129.948,4.0,,Parlophone Sweden,"C © 1993 Parlophone Music Sweden AB This Labelcopy information is the subject of Copyright Protection. All rights reserved. (C) 1993 Parlophone Music Sweden AB, P ℗ 1993 The copyright in this sound recording is owned by Parlophone Music Sweden AB",3612 +3613,spotify:track:307wdnyFVlUJSWMtX5IMVl,Polka,spotify:artist:3b0MIPzJo7aoAtxHKnRoCn,Yves Klein Blue,spotify:album:2ufnCCFf8Yf40CzuQVWyjQ,Ragged & Ecstatic,spotify:artist:3b0MIPzJo7aoAtxHKnRoCn,Yves Klein Blue,2009-01-01,https://i.scdn.co/image/ab67616d0000b273d5b40d309f132c023a6cd91d,1,8,251480,https://p.scdn.co/mp3-preview/eff5136d5914e15571d7f91ea8ba357f33219e24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUUM70901490,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie rock,0.514,0.823,9.0,-7.239,1.0,0.0643,0.0161,0.0,0.086,0.776,105.725,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Dew Process/Universal Music Australia, P ℗ 2009 Dew Process/Universal Music Australia",3613 +3614,spotify:track:3icdUKZ8qXTEqRJMa9YlTp,Ms. Vanity,spotify:artist:6t4LxgTrh1IcKhI2rs26Yz,Rob Mills,spotify:album:7pA8y4qaxrNxbzftI9ZxHq,Up All Night,spotify:artist:6t4LxgTrh1IcKhI2rs26Yz,Rob Mills,2004-06-14,https://i.scdn.co/image/ab67616d0000b273eab58c29da66d02d61a12a79,1,1,225106,https://p.scdn.co/mp3-preview/2a9c2638f0176ac993d7eceb85507246a37ff2a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM00448501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.568,0.752,7.0,-7.019,1.0,0.0316,3.19e-05,0.0123,0.0737,0.585,116.027,4.0,,BMG Music,P (P) 2004 Sony Music Entertainment Australia Pty Ltd,3614 +3615,spotify:track:4fW718TtzWhIfGMc6owKzZ,Too Funky - Single Edit,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:0ZeOyoJHPD6czbTPAT9Qaj,Listen Without Prejudice / MTV Unplugged (Deluxe),spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,2017-10-20,https://i.scdn.co/image/ab67616d0000b27329c1c454ed1b2acfa64dc37f,3,8,230893,https://p.scdn.co/mp3-preview/e91647b06c9c1a5b9304894853585441b464370a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBBBM9202007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.671,0.901,7.0,-8.536,0.0,0.0878,0.0223,0.293,0.27,0.845,98.319,4.0,,Sony Music CG,"P (P) 2017 G.K. Panayiotou, under exclusive license to Sony Music Entertainment UK Limited",3615 +3616,spotify:track:2E9Zp0uxsOmqbmy0C6Fi4N,Forever - Lady of Soul,spotify:artist:6Pwy6Wat9hp8g83y6gih5g,Damage,spotify:album:2Xy1s94fDhZluOrAO9ELog,Forever,spotify:artist:6Pwy6Wat9hp8g83y6gih5g,Damage,1998,https://i.scdn.co/image/ab67616d0000b2735a2b04dadc2fc6d63b08a931,1,10,449800,https://p.scdn.co/mp3-preview/faa1cdda819d548d11465d4a431667b4ff8f1ec4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBTYZ0800100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.561,0.354,9.0,-10.34,1.0,0.0494,0.54,0.0,0.771,0.408,130.642,4.0,,Prism Leisure Ltd,"C 2013 Phoenix Music International, P 1998 Prism Leisure Ltd.",3616 +3617,spotify:track:3Zi0l54Z62jWmaiWUQgo9w,Prayer in C - Robin Schulz Radio Edit,"spotify:artist:50OApTJurDusIo9dGTqSU4, spotify:artist:3t5xRXzsuZmMDkQzgOX35S","Lilly Wood and The Prick, Robin Schulz",spotify:album:1uMFVKi8n8T0Yjo3GI3wzh,Prayer,spotify:artist:3t5xRXzsuZmMDkQzgOX35S,Robin Schulz,2014-09-19,https://i.scdn.co/image/ab67616d0000b27358bc4150f6e6c590e8e6d136,1,1,189399,https://p.scdn.co/mp3-preview/decf568095bab0c78ac54ce42546580800251802?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,DEA621400537,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"french indie pop,french rock,deep euro house,deep house,edm,german dance,pop dance,tropical house",0.76,0.886,9.0,-5.356,0.0,0.0258,0.0219,7.43e-06,0.623,0.78,123.002,4.0,,Tonspiel,"C © 2014 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company, P ℗ 2014 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company",3617 +3618,spotify:track:5FljCWR0cys07PQ9277GTz,The Other Side,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:4PeZu0It7qVrTG40t3HM9A,Talk Dirty,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2013-09-10,https://i.scdn.co/image/ab67616d0000b2730376bdff8b70d934f297303e,1,8,226986,https://p.scdn.co/mp3-preview/b2c287f5dae13995dcbd84eebdcc17c85f48d882?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USWB11301002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.561,0.836,9.0,-3.939,1.0,0.1,0.0525,0.0,0.136,0.517,127.923,4.0,,Beluga Heights/Warner Records,"C © 2014 Warner Records Inc., P ℗ 2013, 2014 Warner Records Inc.",3618 +3619,spotify:track:73DeLWcLF5P3z7wqpI0oaB,After the Loving,spotify:artist:17XXKfRBMCWvLrqGoNkJXm,Engelbert Humperdinck,spotify:album:071HOUD3GRXz1XyprAa5ws,Engelbert Humperdinck. The 20 Greatest Hits,spotify:artist:17XXKfRBMCWvLrqGoNkJXm,Engelbert Humperdinck,2014-09-05,https://i.scdn.co/image/ab67616d0000b273fc65da1b9c70b87ebf880588,1,18,239040,https://p.scdn.co/mp3-preview/1c1d2cfb83c43074aae180c63c5ef8329afcec6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,ES20I1300274,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.532,0.604,0.0,-8.23,1.0,0.0292,0.675,0.00387,0.121,0.444,115.008,3.0,,Like Music,"C (C) 2014 Like Music, P (P) 2014 Like Music",3619 +3620,spotify:track:24Yi9hE78yPEbZ4kxyoXAI,Roses - Imanbek Remix,"spotify:artist:0H39MdGGX6dbnnQPt6NQkZ, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj","SAINt JHN, Imanbek",spotify:album:3GqSdhWjmMypMwPLtzoFYs,Roses (Imanbek Remix),"spotify:artist:0H39MdGGX6dbnnQPt6NQkZ, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj","SAINt JHN, Imanbek",2019-10-09,https://i.scdn.co/image/ab67616d0000b273b340b496cb7c38d727ff40be,1,1,176840,https://p.scdn.co/mp3-preview/577cd73a377297f9b7fa57d809cd270dfce8513f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,77,RUB421901499,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"melodic rap,slap house,electro house,pop dance,slap house",0.77,0.724,8.0,-5.484,1.0,0.0495,0.0167,0.0107,0.353,0.898,121.975,4.0,,Columbia/B1 Recordings,"P (P) 2019 HITCO AND Godd Complexx, Inc. under exclusive license to Effective Records / B1 Recordings GmbH, a Sony Music Entertainment company.",3620 +3621,spotify:track:5k68ZFktJA3JlRfenOJA9y,You and Me,spotify:artist:3EhbVgyfGd7HkpsagwL9GS,Alice Cooper,spotify:album:0lAB4vs5qeYbHwpLR7Ptai,Lace and Whiskey,spotify:artist:3EhbVgyfGd7HkpsagwL9GS,Alice Cooper,1977,https://i.scdn.co/image/ab67616d0000b273928eb8f04836d74894d4c9a7,1,5,306573,https://p.scdn.co/mp3-preview/bdaea4462bde4f1c8c2e58a53bd4958af1662dc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USWB10107689,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,detroit rock,glam metal,glam rock,hard rock,metal,protopunk,rock",0.613,0.317,10.0,-16.102,0.0,0.0293,0.369,0.000288,0.0775,0.473,113.124,4.0,,Rhino/Warner Records,"C © 1977 Warner Records Inc., P ℗ 2007 Warner Records Inc., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group Company.",3621 +3622,spotify:track:124NFj84ppZ5pAxTuVQYCQ,Take Care,"spotify:artist:3TVXtAsR1Inumwj472S9r4, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Drake, Rihanna",spotify:album:6X1x82kppWZmDzlXXK3y3q,Take Care (Deluxe),spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,2011-11-15,https://i.scdn.co/image/ab67616d0000b273c7ea04a9b455e3f68ef82550,1,5,277386,https://p.scdn.co/mp3-preview/576afa0b9a7724cac0378f64458d38cea6ee0524?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,USCM51100547,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian hip hop,canadian pop,hip hop,pop rap,rap,barbadian pop,pop,urban contemporary",0.629,0.515,0.0,-10.358,0.0,0.265,0.0267,1.22e-05,0.0888,0.299,121.845,4.0,,Cash Money Records/Young Money Ent./Universal Rec.,"C © 2012 Cash Money Records Inc., P ℗ 2012 Cash Money Records Inc.",3622 +3623,spotify:track:0xAhbD6lCf5re1RXl5yiTm,Sweet Talkin' Woman,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:3usnShwygMXVZB4IV5dwnU,Out of the Blue,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1977,https://i.scdn.co/image/ab67616d0000b2738c4e95986c803791125e8991,1,3,229866,https://p.scdn.co/mp3-preview/0394d59fd323d3d03cfd229d038f7bb9d84e646f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM17200398,spotify:user:bradnumber1,2023-11-08T04:09:39Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.609,0.611,0.0,-9.208,1.0,0.0298,0.513,0.0,0.093,0.916,121.836,4.0,,Epic/Legacy,"P (P) 1972, 1977, 1978 Epic Records, a division of Sony Music Entertainment",3623 +3624,spotify:track:300zfRaCgTmEm5Eqe3HqZZ,Ghostbusters,spotify:artist:0NyzfcGDZZ6GM25EBG9BYK,Ray Parker Jr.,spotify:album:1Fq1oCtmlSQabl1zIdoWCg,Arista Heritage Series: Ray Parker,spotify:artist:0NyzfcGDZZ6GM25EBG9BYK,Ray Parker Jr.,2000-02-08,https://i.scdn.co/image/ab67616d0000b27332f8412a7cae5f847aef07d8,1,4,240800,https://p.scdn.co/mp3-preview/107e8dfabb7be6126043e6ad26b86badd819675d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAR18400117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,theme,0.779,0.717,6.0,-9.7,0.0,0.0335,0.0125,0.0536,0.355,0.789,115.384,4.0,,Arista,"P (P) 1978, 1980, 1982, 1984, 2000 Arista Records, Inc.",3624 +3625,spotify:track:28OaEH5Baa8RRloKvFGBWu,Young Turks - 2008 Remaster,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:7Iz89r0GanEDFeAxByW9wI,Some Guys Have All the Luck,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,2008-11-16,https://i.scdn.co/image/ab67616d0000b273af5437d890d1a41486e0a322,1,15,302413,https://p.scdn.co/mp3-preview/616a6d9c38eb5f89d4760b4f210e78c7b4f51e2c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USWB10806971,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.641,0.821,5.0,-8.783,0.0,0.0325,0.274,0.487,0.138,0.705,161.143,4.0,,Rhino,"C © 2008 Warner Records Inc., P ℗ 2008 Warner Records Inc. Marketed by Warner Music Group.",3625 +3626,spotify:track:3V608tXKQzlFg59P1ddJ0x,How Come,spotify:artist:5Qi4Bb7a8C0a00NZcA77L0,D12,spotify:album:7cXnswCiASthZMBb4jKePJ,D-12 World,spotify:artist:5Qi4Bb7a8C0a00NZcA77L0,D12,2004-01-01,https://i.scdn.co/image/ab67616d0000b273549d4f1a1f1012acb30a11d2,1,9,249533,https://p.scdn.co/mp3-preview/b09bb50c5bf2e71c08991ae871782983635290f5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10400124,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,gangster rap,hip hop",0.75,0.851,9.0,-2.197,1.0,0.202,0.256,0.0,0.215,0.54,90.001,4.0,,Interscope,"C © 2004 Shady Records/Aftermath Records/Interscope Records, P ℗ 2004 Shady Records/Interscope Records",3626 +3627,spotify:track:2mwHXPl83bgvjdbYo7pvGe,Parachute,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,spotify:album:1wPy9RC3PjNVVPbFGcysdm,Parachute,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,2013-06-05,https://i.scdn.co/image/ab67616d0000b273644c1c04d8399220a622e41f,1,1,220173,https://p.scdn.co/mp3-preview/f64074eb1110119252df211d2e216c0d8757ded1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01300161,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.713,0.848,0.0,-5.25,0.0,0.0535,0.027,0.0,0.307,0.732,128.009,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,3627 +3628,spotify:track:5cOM0fTHceCkJVwuyHdMnk,Who Can It Be Now?,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,spotify:album:6GYIy1SuhPDrugCZ5yNeQy,The Best Of Men At Work: Contraband,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,1996-02-01,https://i.scdn.co/image/ab67616d0000b273d6a1f7a12629154fa274631f,1,1,200493,https://p.scdn.co/mp3-preview/4c1978bf8a92822469f1bbfe9f7393a046e1ca40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USSM18100057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,rock,soft rock",0.816,0.791,4.0,-4.21,1.0,0.0372,0.0353,0.000345,0.17,0.963,128.521,4.0,,Columbia,P (P) 1996 Sony Music Entertainment Inc.,3628 +3629,spotify:track:3v0uXfyMEZ1lGvBOv1Y4ar,Bring It All Back,spotify:artist:0HNGrIbq1ZNO2mTp3tMW4L,S Club,spotify:album:6Aw5MrjWmWcjECqpsp1Fz5,S Club,spotify:artist:0HNGrIbq1ZNO2mTp3tMW4L,S Club,1999-01-01,https://i.scdn.co/image/ab67616d0000b273904234ebed6cf856b54f9861,1,1,214400,https://p.scdn.co/mp3-preview/848d9b0fa6c9bdb43421bf9e838db47a09f5e2d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBCVL9900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,dance pop,europop,talent show",0.679,0.903,4.0,-4.914,1.0,0.0463,0.333,0.0,0.372,0.872,108.114,4.0,,UMC (Universal Music Catalogue),"C © 1999 Polydor Ltd. (UK), P ℗ 1999 S Club Ltd.",3629 +3630,spotify:track:2wnVggqXAcvtWSKfa6JkRQ,Long Tall Texan,spotify:artist:1cx6ptnYRvpA3mBlvKlDAL,Murry Kellum,spotify:album:4hBJzlgbRwpnBWEZHx0jzm,Country Comedy,spotify:artist:1cx6ptnYRvpA3mBlvKlDAL,Murry Kellum,1977-01-01,https://i.scdn.co/image/ab67616d0000b273e0d195516ba7d460bedc5ff8,1,10,117953,https://p.scdn.co/mp3-preview/d4632683f2d4a2850170c7df4343826f9b12057f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSE60412951,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.707,0.616,0.0,-8.512,1.0,0.0325,0.432,0.0,0.104,0.97,111.476,4.0,,Plantation Records,"C 1977 Sun Label Group, LLC, P 1977 Sun Label Group, LLC",3630 +3631,spotify:track:74BAFbLJPjwgw5UjS0jh5N,Oh Cecilia (Breaking My Heart),"spotify:artist:7gAppWoH7pcYmphCVTXkzs, spotify:artist:7n2wHs1TKAczGzO7Dd2rGr","The Vamps, Shawn Mendes",spotify:album:7ssIcTCxCxa9ieMm8nVCWn,Oh Cecilia (Breaking My Heart),spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,2014-01-01,https://i.scdn.co/image/ab67616d0000b2734febe14757c2cf8668f6379a,1,1,194396,https://p.scdn.co/mp3-preview/026d56d3182cbf694dd299605ccecbd80d9b47b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71404416,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,canadian pop,pop,viral pop",0.733,0.881,11.0,-4.868,1.0,0.036,0.0257,0.0,0.334,0.709,100.017,4.0,,Virgin EMI,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",3631 +3632,spotify:track:1oyT5XD0AUiWrQYWg0vlZm,One More Day (Stay with Me),spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,spotify:album:4sxj4Z8g8stVQ7eQKf0nrg,Live Life Living (Deluxe),spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,2014-07-07,https://i.scdn.co/image/ab67616d0000b273d0e45bb296c00440473ae4f4,1,3,207040,https://p.scdn.co/mp3-preview/8752bf50434af0fc53ad0d5118ad3c89caaaff5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBARL1400322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,uk dance",0.719,0.861,11.0,-6.317,0.0,0.0462,0.0868,0.0,0.108,0.51,119.934,4.0,,Epic,P (P) 2014 Sony Music Entertainment UK Limited,3632 +3633,spotify:track:34MX0UJQaC5RZSqtIon8ZK,Flaunt it,spotify:artist:4bTEVYNWoaihmJavrdOG9D,TV Rock feat. Seany B,spotify:album:4RqizxqbsSaKXwBUAU604A,Reflection sessions Vol.1,spotify:artist:1fxqf95uqYhN827zwXvBKC,Djfrancofabi,2006-01-01,https://i.scdn.co/image/ab67616d0000b273c06bc8336092015018010d53,1,4,304560,,False,0,CAZ700602078,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.898,0.507,11.0,-14.946,0.0,0.0752,0.00217,0.0292,0.0991,0.839,127.329,4.0,,Reflection records,"C 2007 Reflection Records, P 2007 Reflection Records",3633 +3634,spotify:track:5h9K3mGdCFECcAXGo3S8Zx,And I'm Telling You I'm Not Going,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:0kgt4qRi4nH6refkbZiCr6,Dami Im,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2013-11-15,https://i.scdn.co/image/ab67616d0000b273452b118417deb3a339339d2c,1,9,174586,https://p.scdn.co/mp3-preview/8393fc5b6330fa69c4f8fe384c59a99ba538f680?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUBM01300569,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.364,0.433,10.0,-5.381,1.0,0.0425,0.554,0.0,0.131,0.222,123.978,3.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,3634 +3635,spotify:track:0zeHw3Mv1L9mxRsZjYfGcr,I Do,spotify:artist:6fzQ81ouajOEFqCIB9VwrS,Morgan Evans,spotify:album:30VejVZUhvrqgAebHREG0t,I Do,spotify:artist:6fzQ81ouajOEFqCIB9VwrS,Morgan Evans,2017-12-08,https://i.scdn.co/image/ab67616d0000b273d43ef51466ac0f659fde7589,1,1,209685,https://p.scdn.co/mp3-preview/3b96a161424e544c1f1a56a98d5667aa32c8fbc6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USWB11702323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,contemporary country,country road,modern country rock",0.503,0.756,7.0,-5.891,0.0,0.0467,0.119,0.0,0.152,0.706,176.028,4.0,,Warner Records,"C © 2017 Warner Music Nashville LLC, P ℗ 2017 Warner Music Nashville LLC",3635 +3636,spotify:track:5rX6C5QVvvZB7XckETNych,All Summer Long,spotify:artist:7dOBabd5O4CvKrg4iriHTM,Kid Rock,spotify:album:2xChdOg0PvxzHzE1BooUpI,Rock n Roll Jesus,spotify:artist:7dOBabd5O4CvKrg4iriHTM,Kid Rock,2007-10-09,https://i.scdn.co/image/ab67616d0000b273a3473085a2a48547a5c290a8,1,3,297586,https://p.scdn.co/mp3-preview/deba72d95a6ea3960f6353ca105d0f2ee7d04099?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAT20704333,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nu metal,0.7,0.864,7.0,-3.629,1.0,0.0283,0.0212,0.0,0.0956,0.887,102.997,4.0,,Top Dog/Atlantic,"C © 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",3636 +3637,spotify:track:0p1cpgsmrHcYJ4kOvOSPsw,Saving All My Love For You,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:0kgt4qRi4nH6refkbZiCr6,Dami Im,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2013-11-15,https://i.scdn.co/image/ab67616d0000b273452b118417deb3a339339d2c,1,11,184840,https://p.scdn.co/mp3-preview/35640da08e92366577d3a8b3dd0441fbcab5d89d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUBM01300571,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.334,0.557,6.0,-5.961,0.0,0.0496,0.155,1.66e-06,0.106,0.362,197.622,3.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,3637 +3638,spotify:track:6W7YaHy8DaVSROgv3smsnh,Small Town,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:3GoJXycNVOi2U5Lb0P9rhR,Scarecrow (Remastered),spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1985,https://i.scdn.co/image/ab67616d0000b27349302bf2854b71786af518f4,1,3,221626,https://p.scdn.co/mp3-preview/c03e5e9155672539d3e1d09e661228a10eb21d33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJM18500005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.66,0.92,11.0,-2.658,1.0,0.0333,0.157,0.00545,0.312,0.632,123.132,4.0,,Universal Music Group,"C © 2005 John Mellencamp, under exclusive license to the Island Def Jam Music Group, P ℗ 2005 John Mellencamp, under exclusive license to the Island Def Jam Music Group",3638 +3639,spotify:track:2rbT0OTJYwy6Tn9cdcRamg,Crash And Burn,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:7zkjepWAvcH8fN5eisBZJk,Affirmation,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,2000-06-12,https://i.scdn.co/image/ab67616d0000b2735a7997b1322919a9d346fe9c,1,5,281973,https://p.scdn.co/mp3-preview/9ab5191aaf57875891e6d597bab99fbc233de8ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09900169,spotify:user:bradnumber1,2022-02-03T10:14:54Z,"boy band,dance pop,pop rock",0.582,0.606,4.0,-8.435,1.0,0.0276,0.194,2.53e-06,0.0949,0.228,102.024,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P This Compilation ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",3639 +3640,spotify:track:43PVNOKUk8rnT56ZCSYdaD,No One Else Comes Close,spotify:artist:3z0IVhtuFvt9VYUZGT98PU,Jay R,spotify:album:3GQZd6X6y34ngldOwc6CRW,Soul In Love,spotify:artist:3z0IVhtuFvt9VYUZGT98PU,Jay R,2008-01-01,https://i.scdn.co/image/ab67616d0000b2736337e748b48fced9c45de643,1,7,228280,https://p.scdn.co/mp3-preview/f7ab868b0cf700937e256098c9699d925b1351f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,usl4r0780749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,opm,0.566,0.498,0.0,-6.12,1.0,0.0262,0.397,0.0,0.352,0.307,109.87,4.0,,Universal Records Philippines,"C 2008 Universal Records Philippines, P 2008 Universal Records Philippines",3640 +3641,spotify:track:4NctFqJyGAqurHFEUQvWgR,Stronger (feat. Kesha),"spotify:artist:20gsENnposVs2I4rQ5kvrf, spotify:artist:6LqNN22kT3074XbTVUrhzX","Sam Feldt, Kesha",spotify:album:683szPAVY9vdNhI45ybBbP,Stronger (feat. Kesha),"spotify:artist:20gsENnposVs2I4rQ5kvrf, spotify:artist:6LqNN22kT3074XbTVUrhzX","Sam Feldt, Kesha",2021-01-29,https://i.scdn.co/image/ab67616d0000b2734e46d4acb7d4758325db1657,1,1,173714,https://p.scdn.co/mp3-preview/453e5469cc5d017de8961ba4a97f05c4b51402d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,NLZ542100009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,tropical house,dance pop,pop",0.648,0.672,1.0,-7.902,1.0,0.0436,0.36,0.0,0.097,0.435,104.987,4.0,,Heartfeldt Records,"C © 2021 Heartfeldt Records, P ℗ 2021 Heartfeldt Records",3641 +3642,spotify:track:0XF1XVfqplXk884pPURt6N,Breaking the Girl,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:53tvjWbVNZKd3CvpENkzOC,Greatest Hits,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,2003-11-18,https://i.scdn.co/image/ab67616d0000b2735590b4ee88187cb06a5b102d,1,10,294600,https://p.scdn.co/mp3-preview/91576db95175e02274fd4508d0ec03c5da2c58ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USWB19901568,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.355,0.922,8.0,-2.786,0.0,0.032,0.0567,0.000398,0.059,0.62,177.513,3.0,,Warner Records,"C © 2003 Warner Records Inc., P ℗ 1991, 1995, 1999, 2002, 2003 Warner Records Inc.; 1989 EMI Records",3642 +3643,spotify:track:4lojlvrqNJnqcrwNXTZapz,Hey DJ,spotify:artist:7AyywyUcQP99oit737gZK2,Lighter Shade Of Brown,spotify:album:3ntenTkjA9LRMbmZVNqRsu,Greatest Hits,spotify:artist:7AyywyUcQP99oit737gZK2,Lighter Shade Of Brown,2000-01-25,https://i.scdn.co/image/ab67616d0000b273ccc1f9051808e2c6ae971e78,1,5,239840,https://p.scdn.co/mp3-preview/6275adbce5911c7f64f3cb946c8dcd03e76569ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQY51009374,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicano rap,latin hip hop",0.741,0.928,6.0,-7.472,1.0,0.0759,0.0166,0.000869,0.0383,0.687,99.997,4.0,,Top Notch Inc.,,3643 +3644,spotify:track:4UuHWIkAWnN176A2rx7YFB,1985,spotify:artist:5ND0mGcL9SKSjWIjPd0xIb,Bowling For Soup,spotify:album:7JST4gPYSXFegyuk9nKFb0,A Hangover You Don't Deserve,spotify:artist:5ND0mGcL9SKSjWIjPd0xIb,Bowling For Soup,2004-09-11,https://i.scdn.co/image/ab67616d0000b273317148944ac33678369cb8f2,1,3,193000,https://p.scdn.co/mp3-preview/bb9f08506e687820b1f7b0478eaaa1459a78e21f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USJI10400613,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neon pop punk,pop punk,pop rock,texas pop punk",0.607,0.878,4.0,-4.422,1.0,0.0665,0.000246,0.0,0.337,0.853,119.955,4.0,,Jive,P (P) 2004 Zomba Recording LLC,3644 +3645,spotify:track:2DpnZMCoT2iYGkqIOO0bms,Please,spotify:artist:4IYYmybW7zLRFIPnOjBUUO,Frank Ifield,spotify:album:2WHgV8cxv9VOg01oNmb5VW,Lovesick Blues,spotify:artist:4IYYmybW7zLRFIPnOjBUUO,Frank Ifield,2014-10-01,https://i.scdn.co/image/ab67616d0000b27301d83e901be9438741ce0f02,1,10,151746,https://p.scdn.co/mp3-preview/2852b448676974db35a213651ca5b5f6444cddf4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBELT1228977,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic australian country,merseybeat,rock-and-roll,yodeling",0.668,0.473,0.0,-10.831,1.0,0.035,0.829,7.3e-06,0.0983,0.853,121.748,4.0,,Mach60 Music,"C 2014 Mach60 Music, P 2014 Mach60 Music",3645 +3646,spotify:track:4y6c5vMzKKM3KsMbHtjKx5,Stronger,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,spotify:album:0EXLFY4NFNx4FlpAlFO7ly,Graduation (UK Version),spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2007-09-11,https://i.scdn.co/image/ab67616d0000b2738c9c18cd0509e90c5d5e3c52,1,3,311866,https://p.scdn.co/mp3-preview/998124b19664ac7c039651111eda40e8ed4d4292?cid=9950ac751e34487dbbe027c4fd7f8e99,True,2,USUM70741299,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap",0.617,0.717,10.0,-7.858,0.0,0.153,0.00564,0.0,0.408,0.49,103.992,4.0,,Universal Music Group,"C © 2007 Roc-A-Fella Records, LLC, P ℗ 2007 Roc-A-Fella Records, LLC",3646 +3647,spotify:track:5njdVzhNvMNIK5Opyu4gLJ,BareNaked - Video Version,spotify:artist:2BZDbnjUHnL2XAPgkdqTpb,Jennifer Love Hewitt,spotify:album:4p123y0kTbiPHU15ociKAq,Barenaked,spotify:artist:2BZDbnjUHnL2XAPgkdqTpb,Jennifer Love Hewitt,2002,https://i.scdn.co/image/ab67616d0000b2738a9a82bdb579d55883e15d0b,1,1,222173,https://p.scdn.co/mp3-preview/52fdb97ee69392ae755086d72a2a18d632738cad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USJI10200200,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.577,0.834,7.0,-4.665,1.0,0.0405,0.0214,3.51e-06,0.0368,0.723,161.952,4.0,,Jive,P (P) 2002 Zomba Recording LLC,3647 +3648,spotify:track:0YSJCrlSWF3meRTNCu54WI,Make Me... (feat. G-Eazy) (feat. G-Eazy),"spotify:artist:26dSoYclwsYLMAKD3tpOr4, spotify:artist:02kJSzxNuaWGqwubyUba0Z","Britney Spears, G-Eazy",spotify:album:2AMoA7ZmuomSMmtBfjblck,Make Me... (feat. G-Eazy) (feat. G-Eazy),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2016-07-15,https://i.scdn.co/image/ab67616d0000b273775600df23210bde025e0c2f,1,1,231266,https://p.scdn.co/mp3-preview/0022ab1927fabaec31f56368160713c49a0503fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11601072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,indie pop rap,oakland hip hop,pop rap,rap",0.697,0.7,7.0,-6.651,0.0,0.0985,0.157,0.0,0.217,0.577,123.013,4.0,,RCA Records Label,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",3648 +3649,spotify:track:60WcXjimfbhk6T0gj1Eufg,Hate It Or Love It,"spotify:artist:0NbfKEOTQCcwd6o7wSDOHI, spotify:artist:3q7HBObVc0L8jNeTe5Gofh","The Game, 50 Cent",spotify:album:0d0QL1mV66wpb9cBvCSF0G,The Documentary,spotify:artist:0NbfKEOTQCcwd6o7wSDOHI,The Game,2005,https://i.scdn.co/image/ab67616d0000b2736ee6522fe61d76481c0bf366,1,4,206400,https://p.scdn.co/mp3-preview/6d21bd716841ab53e3a665dd4ea8060e9f37ddd4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10401121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,gangster rap,hip hop,pop rap,rap,southern hip hop,trap,east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap",0.802,0.785,9.0,-4.781,1.0,0.207,0.14,0.0,0.123,0.435,99.998,4.0,,Universal Music Group,"C © 2004 Aftermath/G Unit/Interscope Records, P ℗ 2004 Aftermath/G Unit/Interscope Records",3649 +3650,spotify:track:4ybRyv3DbkvDUH9sY37Qn6,You Got Nothing I Want,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:1Htwv3I81HU6YUWWs0ommZ,The Best of Cold Chisel - All for You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b27306dc40069e45da5e5d9f90e6,1,15,196641,https://p.scdn.co/mp3-preview/6c7c175ec2a3a00c8db9199df4050091fdac5036?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABB1158227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.508,0.981,4.0,-2.627,1.0,0.108,0.000458,0.00345,0.103,0.669,135.638,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",3650 +3651,spotify:track:5jlsg7onynIipVy5krMaRZ,Hair (feat. Sean Paul),"spotify:artist:3e7awlrlDSwF3iM0WBjGMp, spotify:artist:3Isy6kedDrgPYoTS1dazA9","Little Mix, Sean Paul",spotify:album:6HmxS6CD2IUZZg1Oxu8AVh,Hair (feat. Sean Paul),spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2016-04-15,https://i.scdn.co/image/ab67616d0000b2733eb0fe645d759041c9e41840,1,1,233826,https://p.scdn.co/mp3-preview/608171a7b1d4385b65ba1054413f9e66cdff45e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1600012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop,dance pop,dancehall,pop,pop rap",0.712,0.835,7.0,-4.676,1.0,0.0487,0.00623,1.68e-06,0.843,0.741,153.956,4.0,,Syco Music,P (P) 2016 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,3651 +3652,spotify:track:3eZYOQO4UzKrUDYDghtnFw,test drive,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:74vajFwEwXJ61OW1DKSPEa,Positions (Deluxe),spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2021-02-19,https://i.scdn.co/image/ab67616d0000b2739508fb7ca2eedc0d98b9139f,1,16,122174,https://p.scdn.co/mp3-preview/8c35c7d04761b3730e7e88287b0bbedb3d82f63a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USUM72102132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.698,0.708,9.0,-4.943,0.0,0.0454,0.0251,0.0,0.124,0.322,115.036,4.0,,Republic Records,"C © 2021 Republic Records, a division of UMG Recordings, Inc., P ℗ 2021 Republic Records, a division of UMG Recordings, Inc.",3652 +3653,spotify:track:2RWFncSWZEhSRRifqiDNVV,Run To You,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:2o2G49EPi4lua5zgxUKhLL,Reckless (30th Anniversary / Deluxe Edition),spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1984-11-05,https://i.scdn.co/image/ab67616d0000b273cf1fee2a55e98e22bf358512,1,3,233270,https://p.scdn.co/mp3-preview/fb04e9f864f93cbcea9c19dc4fedd2a6c848a6de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USAM18490003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.561,0.811,4.0,-6.157,1.0,0.0265,0.00515,3.66e-05,0.287,0.635,126.59,4.0,,A&M,"C © 2014 A&M Records, P ℗ 2014 A&M Records",3653 +3654,spotify:track:776qZppWpAKu1HPnWCROL4,What Do I Know About Pain?,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,spotify:album:2DZIOP38phaslClp6w5sYx,Cohesion,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,2010-01-01,https://i.scdn.co/image/ab67616d0000b27363e9deff8c266754fd39d9ac,1,8,209666,https://p.scdn.co/mp3-preview/5a83128626a826a0666d096107c99cdf6b106e41?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71000172,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.502,0.885,2.0,-3.89,1.0,0.0635,0.000211,0.000137,0.381,0.47,138.001,4.0,,Universal Music Group,"C © 2010 Universal Music Australia Pty Ltd., P ℗ 2010 Universal Music Australia Pty Ltd.",3654 +3655,spotify:track:2vEQ9zBiwbAVXzS2SOxodY,Nothing's Gonna Stop Us Now,spotify:artist:0kObWap02DEg9EAJ3PBxzf,Starship,spotify:album:6FTFKwFEs3hwpnj68VKXg3,No Protection,spotify:artist:0kObWap02DEg9EAJ3PBxzf,Starship,1987,https://i.scdn.co/image/ab67616d0000b2732e6fa92a6e6da0de1289027f,1,2,270333,https://p.scdn.co/mp3-preview/a17faa3145693e235f6eaddd17debde84dd503eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USRC18702968,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new romantic,new wave pop,soft rock,synthpop",0.643,0.801,6.0,-4.921,1.0,0.0228,0.0298,0.0,0.0719,0.534,95.988,4.0,,RCA Records Label,P (P) 1987 BMG,3655 +3656,spotify:track:4pvuSbZMRoyQiqJEf57mtx,I Wanna,spotify:artist:3vAaWhdBR38Q02ohXqaNHT,The All-American Rejects,spotify:album:3sgcD18svp2EKo25o1dsQK,When The World Comes Down (International Version),spotify:artist:3vAaWhdBR38Q02ohXqaNHT,The All-American Rejects,2008,https://i.scdn.co/image/ab67616d0000b27323876219d33fe38fe1aa28c3,1,1,208600,https://p.scdn.co/mp3-preview/c0f929ac3b7beef94218b1ca85b4d0d665882ecd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70843644,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neo mellow,neon pop punk,pop punk,pop rock,post-grunge",0.415,0.913,7.0,-5.361,1.0,0.0482,0.000543,3.02e-05,0.284,0.427,164.289,4.0,,Universal Music Group,"C © 2009 DGC/Interscope Records, P ℗ 2009 DGC/Interscope Records",3656 +3657,spotify:track:3l2hbXdvmaH3tUd3qWLKgm,I Am Woman,spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,spotify:album:1gzSC9J3Ffyl2m2MCVO4c1,I Am Woman,spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,1972,https://i.scdn.co/image/ab67616d0000b27364a08c929be2ef75c74dc8bf,1,2,205880,https://p.scdn.co/mp3-preview/a4b4c4678c84fa4fb6bedbe20d09372348785531?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USCA29200415,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,mellow gold,soft rock",0.392,0.681,0.0,-8.723,1.0,0.0367,0.408,2.31e-05,0.375,0.711,171.162,4.0,,Capitol Records,"C © 2006 Capitol Records, LLC, P ℗ 2006 Capitol Records, LLC",3657 +3658,spotify:track:1FLxW6LI6PZK8InYyYFULw,Malibu,spotify:artist:5SHQUMAmEK5KmuSb0aDvsn,Hole,spotify:album:0ZIlM7A6pZyNhfohaWjauj,Celebrity Skin,spotify:artist:5SHQUMAmEK5KmuSb0aDvsn,Hole,1998-01-01,https://i.scdn.co/image/ab67616d0000b27377575d3a52afb42e56a3c283,1,4,230106,https://p.scdn.co/mp3-preview/1cae9ad3531ec2d5b87698f3a06657503b246568?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19816406,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,riot grrrl",0.529,0.913,2.0,-5.85,1.0,0.0357,0.000976,0.0,0.181,0.674,122.344,4.0,,Geffen*,"C © 1998 Geffen Records Inc., P ℗ 1998 UMG Recordings, Inc.",3658 +3659,spotify:track:3cXO1BNBUvqaO5rR19PDKT,I Like It Both Ways,spotify:artist:6eAwF1ZzHVQjE3BABAlf1H,Supernaut,spotify:album:3gT1MBot1pHr49YTiYVFPt,Supernaut,spotify:artist:6eAwF1ZzHVQjE3BABAlf1H,Supernaut,1976,https://i.scdn.co/image/ab67616d0000b27327646b93b8c2d7781d73d6e1,1,6,225038,https://p.scdn.co/mp3-preview/fde70ba723af1c9ef0fc56e1fc75950b4a398869?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01501000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.503,0.576,4.0,-6.829,1.0,0.0463,0.0142,0.00294,0.187,0.454,119.708,4.0,,Bloodlines,"C 2015 Bloodlines, P 2015 Bloodlines",3659 +3660,spotify:track:5G5IX0zeEIYhHKe71Zecx6,Home (feat. Nico Santos),"spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:3A9B6c1CrSPauiOblw7pWz","Topic, Nico Santos",spotify:album:0vEA5nl8sPWBBv83H5XFZn,Home (feat. Nico Santos),spotify:artist:0u6GtibW46tFX7koQ6uNJZ,Topic,2016-01-19,https://i.scdn.co/image/ab67616d0000b27302f2d2d6aa0a0dca852e6fe3,1,1,204000,https://p.scdn.co/mp3-preview/e309a122cc57b91f496060c5b4b44ab3111a38d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,DELJ81519756,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german dance,pop dance,pop edm,uk dance,german pop",0.723,0.527,5.0,-7.792,0.0,0.0326,0.0267,0.0,0.111,0.324,126.072,4.0,,WM Germany,"C © 2016 Warner Music Group Germany Holding GmbH / A Warner Music Group Company, P ℗ 2016 Warner Music Group Germany Holding GmbH / A Warner Music Group Company",3660 +3661,spotify:track:5VSAonaAPhhGn0G7hMYwWK,Sister Golden Hair,spotify:artist:35U9lQaRWSQISxQAB94Meo,America,spotify:album:6Ef4yClroC8pMGktYOUd5n,Hearts,spotify:artist:35U9lQaRWSQISxQAB94Meo,America,1975,https://i.scdn.co/image/ab67616d0000b27346105d5f640bd249a6ba1cf1,1,10,199573,https://p.scdn.co/mp3-preview/1ec30499d0df5842ad353db8010be0e83201fab7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USWB19901801,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,folk rock,mellow gold,soft rock",0.441,0.546,4.0,-12.222,1.0,0.0336,0.13,0.000144,0.109,0.718,134.752,4.0,,Rhino,"C © 2004 Warner Records Inc. Manufactured and Marketed by Warner Strategic Marketing, P ℗ 2004 Warner Records Inc. Manufactured and Marketed by Warner Strategic Marketing",3661 +3662,spotify:track:3Hm77nRCpVDwViUNswLqyU,Twist and Shout,spotify:artist:53QzNeFpzAaXYnrDBbDrIp,The Isley Brothers,spotify:album:0hVZdWT5oinDiaEx3bL5qN,Shout,spotify:artist:53QzNeFpzAaXYnrDBbDrIp,The Isley Brothers,2017-01-27,https://i.scdn.co/image/ab67616d0000b273ea38ed01c806a5dc2b849fc6,1,20,157322,https://p.scdn.co/mp3-preview/e8c1a9db27ee0d3183ee6fb07137886f2e154bda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,DETL61600636,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,funk,motown,quiet storm,soul",0.751,0.835,5.0,-5.236,1.0,0.0373,0.636,0.0,0.0739,0.966,123.432,4.0,,Goldstar Records,"C 2017 Goldstar Records, P 2017 Goldstar Records",3662 +3663,spotify:track:47O9n1xan6o1PfCWy2WPWJ,Portrait of My Love,spotify:artist:271pvVqDFiREx6PqzwOX8p,Steve Lawrence,spotify:album:53OXxc7feVFlzCHddDLvc5,Going Solo with Steve Lawrence,spotify:artist:271pvVqDFiREx6PqzwOX8p,Steve Lawrence,2014-10-19,https://i.scdn.co/image/ab67616d0000b27312995b05070318931d4da3c3,1,14,173733,https://p.scdn.co/mp3-preview/9bfef5455b0e2cf7bab7ac7a42c10d596a62a3c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,FR2X41407264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.294,0.255,0.0,-12.845,1.0,0.0277,0.889,9.3e-06,0.342,0.282,92.136,4.0,,Shami Media Group 3,"C Shami Media Group, Inc., P Big A Media",3663 +3664,spotify:track:6KEemo78n0RnCQWKkeOdXz,Eyes Open,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:6FeANe1ewmN6sY0VY0qfyI,The Hunger Games: Songs From District 12 And Beyond,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-01-01,https://i.scdn.co/image/ab67616d0000b2739c351de6861e801c1b679d53,1,14,244586,https://p.scdn.co/mp3-preview/c106b234af349d4524b266de753088c74ec95a46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USUM71201814,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.598,0.724,7.0,-7.226,1.0,0.0344,0.00667,0.00187,0.0839,0.299,137.116,4.0,,Universal Records,"C © 2012 Universal Republic Records, a division of UMG Recordings, Inc., P This Compilation ℗ 2012 Universal Republic Records, a division of UMG Recordings, Inc.",3664 +3665,spotify:track:7vgv8KZBSo0TPzyIWG9yzV,Salt,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,spotify:album:6KPJTxKFCpuzrwyJGcURqK,Salt,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,2019-12-12,https://i.scdn.co/image/ab67616d0000b2739dafceda0875d6a7b39f4eea,1,1,180283,https://p.scdn.co/mp3-preview/9ae525ae27bf631d9b253529e440e1b1bc6a519d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USAT21906991,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.693,0.835,6.0,-3.242,1.0,0.0623,0.131,0.0,0.073,0.743,128.057,4.0,,Atlantic Records,"C 2019, P 2019",3665 +3666,spotify:track:71fPvIvMRr3JhbsLUtbM24,Release Me - Radio Edit,spotify:artist:16Mje1BDQmN1DWp4a94YOC,Zoë Badwi,spotify:album:7J59RMrbsiMS7za4aA0Qke,Release Me,spotify:artist:16Mje1BDQmN1DWp4a94YOC,Zoë Badwi,2011-06-14,https://i.scdn.co/image/ab67616d0000b273bc4b3224bf28cb2e8dcb92fb,1,9,208400,https://p.scdn.co/mp3-preview/beff91e90822995fa2557a559935890ffb651468?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNE31000106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.75,0.86,1.0,-3.931,1.0,0.0464,0.0126,0.000294,0.0993,0.456,127.996,4.0,,Big Beat Records/Atlantic,"C 2010 Neon Records Pty Limited, P 2010 Neon Records Pty Limited",3666 +3667,spotify:track:21MuKxxxaah6C4fkIHTv2G,Bad Blood,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:3GT1SFfrltwpfWM2FB7zV4,1989 (Deluxe),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-10-27,https://i.scdn.co/image/ab67616d0000b273eb4ef60f82fdc4b489ac1950,1,8,211933,https://p.scdn.co/mp3-preview/d386b9948db98318abac93a9e0f59f4b298f58d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1431369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.646,0.794,7.0,-6.104,1.0,0.19,0.0885,6.16e-06,0.201,0.287,170.216,4.0,,Universal Music Group,"C © 2014 Big Machine Records, LLC, P ℗ 2014 Big Machine Records, LLC",3667 +3668,spotify:track:3oesq5SJixN3VP0DhhwUNp,She's a MOD,"spotify:artist:5COmlgDSFQ4JoKVVOMLkgV, spotify:artist:4f3FWQMbohEtcKREId2jlu, spotify:artist:59uGSApcv2lsTPg5ERFqL0","Dino Jag, Damien Reilly, Ray Columbus and the Invaders",spotify:album:09zIADXmiInZlltFh9a3ux,She's a MOD- Bonus EP,spotify:artist:5COmlgDSFQ4JoKVVOMLkgV,Dino Jag,2018-07-06,https://i.scdn.co/image/ab67616d0000b273fba713216a8a803a3201e463,1,1,201520,https://p.scdn.co/mp3-preview/06ded2a97f2c12a10db66591ccc371b4e6a69202?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,US3DF1816348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.559,0.949,1.0,-4.511,1.0,0.0665,0.00429,0.00076,0.264,0.96,165.004,4.0,,DJ Central Records,"C 2018 DJ Central Records, P 2018 Blue Pie Publishing USA",3668 +3669,spotify:track:7DH5dXVuQaqcKf9oTy9oUN,He'll Have to Go,spotify:artist:2Ev0e8GUIX4u7d9etNLTXg,Jim Reeves,spotify:album:158F4r9awKr4bs7X5E49JA,The Essential Jim Reeves,spotify:artist:2Ev0e8GUIX4u7d9etNLTXg,Jim Reeves,1997-02-14,https://i.scdn.co/image/ab67616d0000b2732aedd8069da6df1e8a607320,1,15,138640,https://p.scdn.co/mp3-preview/c32a6f7b41070c929c0eb0a4e0fc9b0bd4fec547?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USRN19500172,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.554,0.186,1.0,-15.846,1.0,0.0379,0.909,0.00144,0.11,0.2,81.181,3.0,,RLG/Legacy,P (P) 1997 Sony Music Entertainment,3669 +3670,spotify:track:2N2yrmodOnVF10mKvItC9P,Don't Cry (Original),spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:0CxPbTRARqKUYighiEY9Sz,Use Your Illusion I,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1991-09-17,https://i.scdn.co/image/ab67616d0000b273e44963b8bb127552ac761873,1,4,283733,https://p.scdn.co/mp3-preview/9629f477f594def6531865c7783910a0a85473a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USGF19141504,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.455,0.589,11.0,-8.64,1.0,0.0328,0.00184,0.00358,0.104,0.254,124.634,4.0,,Guns N Roses P&D,"C © 1991 Geffen Records Inc., P This Compilation ℗ 1991 Geffen Records Inc.",3670 +3671,spotify:track:12PqS4oWgjhLzQHSKHKFXe,Make It Last,spotify:artist:2dPhXL2lcxM2VrD390c8Aq,Dada Pop,spotify:album:54IwtskpCDSu8nXJd5Je1Q,Make It Last,spotify:artist:2dPhXL2lcxM2VrD390c8Aq,Dada Pop,2021-07-30,https://i.scdn.co/image/ab67616d0000b273d9283223426c474018675936,1,1,209960,https://p.scdn.co/mp3-preview/a0d3262c0692d448c5404274cf3645e1726c4671?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZK6P2144372,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.575,0.653,5.0,-6.96,1.0,0.0341,0.0111,0.00214,0.175,0.314,81.058,4.0,,Dada Pop Music,"C 2021 Dada Pop Music, P 2021 Dada Pop Music",3671 +3672,spotify:track:3Voz5vnFfMu8nrVP6hIYte,This Is How a Heart Breaks,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,spotify:album:07hC5JSKAodpBIVR6A772E,Something to Be,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,2005-04-05,https://i.scdn.co/image/ab67616d0000b273db3d7550e11f7a132fb81c9f,1,1,230960,https://p.scdn.co/mp3-preview/02d8e83a4af809e4a11ee426c92fc3e5caae874b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USAT20403947,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.605,0.913,0.0,-4.345,1.0,0.0376,0.00159,0.0,0.0813,0.665,139.941,4.0,,Melisma/Atlantic Records,"C © 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",3672 +3673,spotify:track:7vidktgNZFQylTgH1GEnMs,Cold as Ice,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,spotify:album:1OU7zJvUfgxxPHgkTClt1M,Foreigner (Expanded),spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,1977-03-08,https://i.scdn.co/image/ab67616d0000b2730ef24611a73e7be48f6c2802,1,2,203133,https://p.scdn.co/mp3-preview/5d56702e68eb023f9e0c41b37b5e14ffd06a2851?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT29900657,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.562,0.609,3.0,-7.063,0.0,0.0271,0.0264,0.0,0.17,0.512,130.753,4.0,,Rhino Atlantic,"C © 1977 & 2001 Atlantic Recording Corporation., P ℗ 1977 & 2001 Atlantic Recording Corporation.",3673 +3674,spotify:track:4PkJ7c9y1CwpuVOiJODnCZ,Someday,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:4fygErqiNgFUic5hU42Z3E,The Long Road,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2003-09-23,https://i.scdn.co/image/ab67616d0000b27315a5f571e2e14b2c182bd0a3,1,3,207466,https://p.scdn.co/mp3-preview/a4d8a8dc29537ceb6d50b20e7571ff1b51886483?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,NLA320320275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.455,0.858,11.0,-5.659,0.0,0.0391,0.000616,0.000247,0.226,0.597,163.118,4.0,,Roadrunner Records,"C © 2003 The All Blacks B.V., P ℗ 2003 The All Blacks B.V.",3674 +3675,spotify:track:3dNv3OuX6ol9si6PZ9KSAh,Mama,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:3x2jF7blR6bFHtk4MccsyJ,Spice,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,1996-01-01,https://i.scdn.co/image/ab67616d0000b27363facc42e4a35eb3aa182b59,1,6,304960,https://p.scdn.co/mp3-preview/ae5d6d9c68e39795b7115c4805f1b95864e2fe2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAAA9600215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.615,0.734,8.0,-9.327,1.0,0.0321,0.342,0.531,0.0962,0.809,95.853,4.0,,Virgin Records,"C © 1996 Virgin Records Limited, P ℗ 1996 Virgin Records Limited",3675 +3676,spotify:track:5LwukQO2fCx35GUUN6d6NW,Riptide,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:4Yk9jX4ocLX3hk4HDqi39J,God Loves You When You're Dancing,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2013-03-22,https://i.scdn.co/image/ab67616d0000b27354e5be3c3be880a3fc572187,1,2,204266,https://p.scdn.co/mp3-preview/d2a7f46a047a571376722c395eeb8e44dd0611b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01385760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.489,0.736,1.0,-6.654,1.0,0.0355,0.436,0.0,0.153,0.529,101.782,4.0,,Liberation Records,"C 2013 Vance Joy under exclusive license to Liberation Music, P 2013 Vance Joy under exclusive license to Liberation Music",3676 +3677,spotify:track:2BkyYZmU4JuWW2sYi9EzpC,7 Minutes,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:48M2TlqiSdLFWXK1k7Hoar,7 Minutes,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2019-01-18,https://i.scdn.co/image/ab67616d0000b2730b5115f6d709f61ec084f26f,1,1,211453,https://p.scdn.co/mp3-preview/5b20cdcd3da9293da09a7eacb3ddad88f5be4450?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUUM71800254,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop",0.614,0.739,10.0,-6.478,1.0,0.0314,0.526,0.0,0.149,0.711,104.955,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Universal Music Australia Pty Ltd., P ℗ 2019 Universal Music Australia Pty Ltd.",3677 +3678,spotify:track:6wFNjvJ0qFj8QWsr313FDb,No Secrets,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:3Pov4TwvgYkm7VBr4uniMx,Dark Room,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,1980,https://i.scdn.co/image/ab67616d0000b2733a40ad11d0f82b2df12b1edf,1,1,257946,https://p.scdn.co/mp3-preview/079d5ca7ad61eaa819513d96b56ca4481f74bd17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00515860,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.478,0.69,7.0,-6.358,1.0,0.0278,0.00273,9.03e-06,0.127,0.699,142.031,4.0,,Bloodlines,"C 1980 Bloodlines, P 1980 Bloodlines",3678 +3679,spotify:track:6hRcrByB9i6rYRiHNh170N,Because You Loved Me,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:08aLDHdtfHxjtOmEHusqGC,Falling Into You,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1996-03-11,https://i.scdn.co/image/ab67616d0000b27361feffa2251775ae33dc789e,1,2,273066,https://p.scdn.co/mp3-preview/0eb419f98637381b3d5ef232c909eb541231ee37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAC220003047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.611,0.507,1.0,-7.975,1.0,0.0305,0.304,0.0,0.107,0.175,119.92,4.0,,550 Music - Epic,P 1996 Sony Music Entertainment (Canada) Inc.,3679 +3680,spotify:track:7pCjXgyRznK3nggkC6TtJn,Ooby Dooby,spotify:artist:7LYy7cGFjzSH9ykOwgev8g,Roy Orbison & Teen Kings,spotify:album:4EpWWMjlTMRrZi0zLH1SwX,The Ultimate Collection,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2016-10-28,https://i.scdn.co/image/ab67616d0000b2734281735dab01dc1dcca9ae2f,1,23,131186,https://p.scdn.co/mp3-preview/b41505e423013318460d37265a62552511115426?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSE60270273,spotify:user:bradnumber1,2022-06-30T00:05:40Z,,0.674,0.761,8.0,-9.635,1.0,0.059,0.724,0.0204,0.0711,0.889,90.695,4.0,,Legacy Recordings,P This compilation (P) 2016 Sony Music Entertainment,3680 +3681,spotify:track:7gFYlnip4bR9a98s52xE9Y,Ramona Was A Waitress,spotify:artist:11PYyk3kBXjDIFHiCc0psS,Paul Dempsey,spotify:album:43HSSJjbIgaVjhNibDE8OP,Everything Is True,spotify:artist:11PYyk3kBXjDIFHiCc0psS,Paul Dempsey,2009-01-01,https://i.scdn.co/image/ab67616d0000b273c6f2a11ec5410b5ba3299f01,1,4,216093,https://p.scdn.co/mp3-preview/6c390aa087a3b104a476411b2de40cfe14acd14b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUEI10900086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.549,0.597,4.0,-6.405,1.0,0.0297,0.016,0.00111,0.128,0.464,164.893,4.0,,Capitol Records,"C © 2009 Paul Dempsey, P ℗ 2009 Paul Dempsey",3681 +3682,spotify:track:6hnCx2jmD0RPkbtzUXSBn4,"I Want You to Want Me - Live at Nippon Budokan, Tokyo, JPN - April 1978",spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,spotify:album:37P9MBdJRekfOIbPSX9alR,The Essential Cheap Trick,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,2004-03-02,https://i.scdn.co/image/ab67616d0000b273bbf0089563c42c7710b7ca2f,1,13,223666,https://p.scdn.co/mp3-preview/c5f48857eb67b972dcabdfa3f316edc7a88fe640?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM19802599,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,glam metal,glam rock,hard rock,mellow gold,power pop,rock,singer-songwriter,soft rock",0.338,0.887,2.0,-8.873,1.0,0.0438,0.00962,0.011,0.556,0.399,206.255,4.0,,Epic/Legacy,P (P) 2004 Sony Music Entertainment,3682 +3683,spotify:track:753mHSQFnp1jpiYuqU3byN,Stay with Me,spotify:artist:2TL8gYTNgD6nXkyuUdDrMg,Jasmine Thompson,spotify:album:58YKBvNKOPjPquD6BgRcHs,Take Cover,spotify:artist:2TL8gYTNgD6nXkyuUdDrMg,Jasmine Thompson,2014-12-09,https://i.scdn.co/image/ab67616d0000b2733c992f6deaf661fe16141349,1,3,195669,https://p.scdn.co/mp3-preview/cab1539b686a132735f9f7ed411fd209325eb024?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USAT21404350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,viral pop,0.404,0.185,0.0,-11.889,1.0,0.0512,0.891,0.0,0.103,0.147,75.342,3.0,,Atlantic Records,"C 2014, P 2014",3683 +3684,spotify:track:0e1mMD6Pkn7zd9mhCQnrsY,I Walk The Line - Single Version,"spotify:artist:6kACVPfCOnqzgfEF5ryl0x, spotify:artist:3iGdenNgbzOak86BHrx0Nt","Johnny Cash, The Tennessee Two",spotify:album:1ybcnccmuEwjwx9Y8NzvRH,Get Rhythm / I Walk the Line,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,1956-01-01,https://i.scdn.co/image/ab67616d0000b273c7d390371a5444c940dff0c6,1,2,163045,https://p.scdn.co/mp3-preview/027ca0eb803fe3c26a40370ffe684e5f07adddeb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSE60070039,spotify:user:bradnumber1,2024-01-02T03:28:23Z,"arkansas country,outlaw country,rock",0.862,0.484,10.0,-11.183,1.0,0.0421,0.798,0.00105,0.105,0.787,105.834,4.0,,Sun Records,"C © 1956 Sun Label Group, LLC, P ℗ 1956 Sun Label Group, LLC",3684 +3685,spotify:track:60e1nB8fP9h4Yw44sIfeQx,Thong Song,spotify:artist:6x9QLdzo6eBZxJ1bHsDkjg,Sisqo,spotify:album:6WTTIoyBv6hUNYNnGsmRbJ,Unleash The Dragon,spotify:artist:6x9QLdzo6eBZxJ1bHsDkjg,Sisqo,1999-01-01,https://i.scdn.co/image/ab67616d0000b2739d002c061edb2ae1f908156b,1,8,253733,https://p.scdn.co/mp3-preview/6ff0fdd232b5d0434f1e30f1a86c47a3890c83aa?cid=9950ac751e34487dbbe027c4fd7f8e99,True,8,USDJ29905218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.706,0.888,2.0,-6.959,1.0,0.0654,0.119,9.64e-05,0.07,0.714,121.549,4.0,,Def Jam Recordings,"C © 1999 The Island Def Jam Music Group, P ℗ 1999 UMG Recordings, Inc.",3685 +3686,spotify:track:7gKIt3rDGIMJDFVSPBnGmj,Super Bass,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:2RfF6dGpYIN5u1mNkfG8Pb,Pink Friday,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2010-01-01,https://i.scdn.co/image/ab67616d0000b2739bf419fe907117ae12f74f45,1,14,200013,https://p.scdn.co/mp3-preview/35b028e2715bda58ffaabb3b8bde86f40d9288e6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USCM51000734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,queens hip hop,rap",0.721,0.867,11.0,-4.302,1.0,0.196,0.29,2.87e-06,0.503,0.639,127.033,4.0,,Universal Music Group,"C © 2010 Cash Money Records Inc., P ℗ 2010 Cash Money Records Inc.",3686 +3687,spotify:track:0shGCs5AkhwJIgUb0SSz2B,The Way You Look Tonight,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,spotify:album:7gmak9ZGm10y4PtZa9SBQn,Ultimate Sinatra,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,2015-04-17,https://i.scdn.co/image/ab67616d0000b273b19cb81319fbfd9ed54baeae,1,15,201200,https://p.scdn.co/mp3-preview/1bc569b4b613a246a1d466e40dba29e707bfea57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USRH10723024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge",0.592,0.369,5.0,-8.68,0.0,0.032,0.856,0.0,0.352,0.529,132.952,4.0,,FRANK SINATRA HYBRID,"C © 2015 Universal Music Enterprises, P This Compilation ℗ 2015 Universal Music Enterprises",3687 +3688,spotify:track:5aya1gja5njBgACYQOsNce,The Unicorn,spotify:artist:0tkKwWigaADLYB9HdFCjYo,The Irish Rovers,spotify:album:4myZOIXY0re1KKU0JHbhSa,The Irish Rovers 50 Years - Vol. 1,spotify:artist:0tkKwWigaADLYB9HdFCjYo,The Irish Rovers,2014-03-01,https://i.scdn.co/image/ab67616d0000b273d0eb4b953602aea868261753,1,27,179226,https://p.scdn.co/mp3-preview/1d8ee5977832425323820eb1802df6757b91c141?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,CA6BE1400027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian celtic,irish folk,irish pub song,shanty",0.572,0.881,3.0,-5.742,1.0,0.0715,0.659,0.0,0.349,0.819,123.19,4.0,,Rover Records,"C 2014 Rover Records, P 2014 Rover Records",3688 +3689,spotify:track:68PHBS4CsrBK8QnRmeGqup,Let Me Love You (Until You Learn To Love Yourself),spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:3IqZoTqfNBZtGDQLFRHBAR,Let Me Love You (Until You Learn To Love Yourself),spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2012-01-01,https://i.scdn.co/image/ab67616d0000b2738452270a78a9f27e0c66747d,1,1,254093,https://p.scdn.co/mp3-preview/c6d330e6e29ae3575ce528d254c2162bcc54964a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71207198,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.665,0.683,5.0,-5.502,1.0,0.0368,0.237,0.0,0.722,0.299,124.896,4.0,,Universal Music Group,"C (C) 2012 Motown Records, a Division of UMG Recordings, Inc., P (P) 2012 Motown Records, a Division of UMG Recordings, Inc.",3689 +3690,spotify:track:2hYlWnPvVZtQZGWfb35HPQ,I'm Not The Only One,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:1tA4JdOpNQUyutfQtmMesJ,In The Lonely Hour,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2014-01-01,https://i.scdn.co/image/ab67616d0000b273c1c177e193b3ebf1a16e158f,1,5,239316,https://p.scdn.co/mp3-preview/8959d5e6580b9d00fefd87bbbbf0dac0940a9d51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71308836,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.679,0.487,5.0,-5.811,1.0,0.0352,0.545,3.36e-05,0.0772,0.506,81.994,4.0,,Universal Music Group,"C © 2014 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2014 Capitol Records, a division of Universal Music Operations Limited",3690 +3691,spotify:track:0dc0eU5THc1uE0Q0KV73XN,"Please Help Me, I'm Falling",spotify:artist:46Unp6DY3Zmy7QS1Fx47yq,Hank Locklin,spotify:album:1mHCzqO6vjOdtwLZbWC4N6,RCA Country Legends,spotify:artist:46Unp6DY3Zmy7QS1Fx47yq,Hank Locklin,2003-03-03,https://i.scdn.co/image/ab67616d0000b27351626ff4836e45a4dafa5cda,1,7,141466,https://p.scdn.co/mp3-preview/d086f9501bad4aeef8a9c21041cf0f7cce3a3627?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USRN10200968,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.552,0.336,7.0,-10.712,1.0,0.0311,0.828,0.0,0.324,0.553,105.479,4.0,,RLG/BMG Heritage,P (P) 2003 BMG Heritage,3691 +3692,spotify:track:4wdvkTP86WAvmr1pB01KFw,Handle With Care,spotify:artist:2hO4YtXUFJiUYS2uYFvHNK,Traveling Wilburys,spotify:album:0FtmosiBG35MGb66MdmWsi,"The Traveling Wilburys, Vol. 1",spotify:artist:2hO4YtXUFJiUYS2uYFvHNK,Traveling Wilburys,1988-10-18,https://i.scdn.co/image/ab67616d0000b273ac235b17dc6bb2b1b42901dc,1,1,199586,https://p.scdn.co/mp3-preview/43b063180a0b73b8880237f2895b9d390ad36e24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBLVT0700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,country rock,folk,folk rock,mellow gold,rock,singer-songwriter,soft rock,supergroup",0.675,0.752,7.0,-5.949,1.0,0.0282,0.119,0.0,0.252,0.745,115.081,4.0,,Universal Music Group,"C © 2007 T. Wilbury Limited., Exclusively Licensed to Concord Music Group, Inc., P ℗ 2007 T. Wilbury Limited., Exclusively Licensed to Concord Music Group, Inc.",3692 +3693,spotify:track:6CALVb0iSu5qSTF5o8oAUH,Hercules - Remastered,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:55pf8p93XA7ydaT5wZiD3k,Species Deceases,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1985,https://i.scdn.co/image/ab67616d0000b273154f25fb8b653177fe912003,1,2,269626,https://p.scdn.co/mp3-preview/e646811700c3cd9a145fdb72b9603617ddf91802?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUBM00800396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.444,0.844,9.0,-3.62,1.0,0.0528,0.00149,1.64e-05,0.087,0.414,155.517,4.0,,Sony BMG Music Entertainment,P (P) 2008 Sony BMG Music Entertainment (Australia) Pty Limited,3693 +3694,spotify:track:5gOd6zDC8vhlYjqbQdJVWP,Baker Street,spotify:artist:7tjbDPvrdvDshcpEMXKRVb,Gerry Rafferty,spotify:album:35yZZTWeSrszSKjRlFETwf,City to City,spotify:artist:7tjbDPvrdvDshcpEMXKRVb,Gerry Rafferty,1978,https://i.scdn.co/image/ab67616d0000b273dc60cf9a010f86354e6735dd,1,2,365626,https://p.scdn.co/mp3-preview/624385519f6986ace940c37d1edd99d5b7d8a262?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBAYE7800619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,folk rock,mellow gold,soft rock",0.497,0.349,7.0,-14.0,1.0,0.0297,0.0929,0.028,0.259,0.421,113.762,4.0,,Parlophone UK,"C © 1978 Parlophone Records Ltd, P ℗ 1978 Parlophone Records Ltd. All rights reserved. Unauthorized reproduction is a violation of applicable laws.",3694 +3695,spotify:track:3XIEWK1V9n25PS9Vb6axj5,Born to Be Alive - The Original,spotify:artist:1CcEgi464SWZsKY5579u7z,Patrick Hernandez,spotify:album:0kVK9lFFTzhnEb4ETElbCD,Born to Be Alive (The Original),spotify:artist:1CcEgi464SWZsKY5579u7z,Patrick Hernandez,1978,https://i.scdn.co/image/ab67616d0000b273b2622bac004d3ef8fac1095b,1,1,188133,https://p.scdn.co/mp3-preview/5898691af1ed6722dfb6d16340d92a39e55e383d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,FRX957900007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg",0.704,0.868,2.0,-5.808,1.0,0.0315,0.0834,0.0,0.206,0.808,131.468,4.0,,Van Loo Music,"C 1979 Van Loo Music, P 1979 Jean Van Loo",3695 +3696,spotify:track:2FcE7B1p3qVvLvwV5qPljV,A Beautiful Lie,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,spotify:album:2jPmk6qQzuY5AvKkZxMh7h,A Beautiful Lie,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,2005,https://i.scdn.co/image/ab67616d0000b273a4f10a67aca8bf0eca668006,1,2,245306,https://p.scdn.co/mp3-preview/509a9c50c82a451ad3cb8023e3ca18fd4035f0ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USVI20500134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,post-grunge",0.479,0.929,9.0,-5.106,0.0,0.0921,0.00291,0.293,0.171,0.344,159.949,3.0,,Virgin Records,"C © 2005 Virgin Records America, Inc., P ℗ 2007 Virgin Records America, Inc.",3696 +3697,spotify:track:4PlEBjN3ntjMWDF5gvGDSF,Planet Earth - 2010 Remaster,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:2Tc7ILGF89w1PWOhzuZlqB,Duran Duran (Deluxe Edition),spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1981-06-15,https://i.scdn.co/image/ab67616d0000b2730fc83f41d5f0bd27105e5048,1,2,243266,https://p.scdn.co/mp3-preview/2ac91189c237a37b359eba6fd786f608089b9a50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAYE1000024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.588,0.916,0.0,-5.205,1.0,0.255,0.00228,0.000135,0.107,0.549,131.197,4.0,,Parlophone UK,"C © 2010 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2010 Parlophone Records Ltd, a Warner Music Group Company",3697 +3698,spotify:track:4cZ7dRrEPJoyM0m8IF3iTr,Forever Now - 2011 Remastered,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:0wvs4l6G2raakk5yuUMJBc,Circus Animals,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,1982,https://i.scdn.co/image/ab67616d0000b27378d8f5373c7fc2bab48990b1,1,3,268078,https://p.scdn.co/mp3-preview/f356f3432267ff9292bc914d80079d027c82224f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,AUU741100094,spotify:user:bradnumber1,2024-07-16T14:18:58Z,australian rock,0.619,0.874,4.0,-3.145,1.0,0.0313,0.011,3.68e-06,0.0898,0.775,129.962,4.0,,Cold Chisel,"C © 2011 Cold Chisel Pty Ltd, P ℗ 2011 Cold Chisel Pty Ltd",3698 +3699,spotify:track:6I9VzXrHxO9rA9A5euc8Ak,Toxic,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:0z7pVBGOD7HCIB7S8eLkLI,In The Zone,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2003-11-13,https://i.scdn.co/image/ab67616d0000b273efc6988972cb04105f002cd4,1,6,198800,https://p.scdn.co/mp3-preview/6de2791f84c1d637a0e24734b6df3997cc742da4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USJI10301005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.774,0.838,5.0,-3.914,0.0,0.114,0.0249,0.025,0.242,0.924,143.04,4.0,,Jive,P (P) 2003 Zomba Recording LLC,3699 +3700,spotify:track:0KTsmr6JOuhxZuiXUha1xC,Beauty And A Beat,"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","Justin Bieber, Nicki Minaj",spotify:album:7BWK3eXcbAdwYeulyQj5Kw,Believe (Deluxe Edition),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2012-01-01,https://i.scdn.co/image/ab67616d0000b273adc5af517133ca221870f112,1,10,227986,https://p.scdn.co/mp3-preview/7ee90f1ac5d956116da382002302bb6a6b0c0c3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71205367,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,hip pop,pop,queens hip hop,rap",0.601,0.845,0.0,-4.711,1.0,0.0653,0.00116,0.0001,0.0653,0.662,127.97,4.0,,Universal Music Group,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",3700 +3701,spotify:track:3OwPSJu609AMzotCEyoMiO,The Nights,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:6bV4Ee8NU7YubrdPec3ab5,The Days / Nights,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2014-12-01,https://i.scdn.co/image/ab67616d0000b27379e3dad4d452f452112d59d9,1,2,176658,https://p.scdn.co/mp3-preview/7866e9567e7398035a01f663104ea1c5c28d11b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,CH3131340464,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.529,0.854,6.0,-5.29,1.0,0.0436,0.0178,0.0,0.242,0.654,125.984,4.0,,Universal Music Group,"C © 2014 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2014 Avicii Music AB, under exclusive license to Universal Music AB",3701 +3702,spotify:track:0Gh2Dxzz86Y2hgMiMVR1rA,There She Goes,"spotify:artist:6MF9fzBmfXghAz953czmBC, spotify:artist:0TnOYISbd1XYRBk9myaseg","Taio Cruz, Pitbull",spotify:album:6gb2ElTs9F0IYPoW3XXo7B,TY.O,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,2011-01-01,https://i.scdn.co/image/ab67616d0000b273d7ed9ada47a0f517143771cd,1,3,224200,https://p.scdn.co/mp3-preview/38ab40791caba583b01c0d1194b962419ece730f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,GBUM71109578,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,dance pop,miami hip hop,pop",0.722,0.936,1.0,-3.608,0.0,0.166,0.0534,0.0,0.229,0.713,128.02,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Universal Island Records, a division of Universal Music Operations Limited",3702 +3703,spotify:track:3uxNmB0HZG2mrqz2qfwB08,Don't Call Me,spotify:artist:5uEeqYFuIChoWKy34jp8xE,Brando,spotify:album:69jTTuZqNHlGpt9Rk9euxQ,Don't Call Me,spotify:artist:5uEeqYFuIChoWKy34jp8xE,Brando,2020-09-25,https://i.scdn.co/image/ab67616d0000b2730e1d1c75aad9a8ba25c0c0a6,1,1,164096,https://p.scdn.co/mp3-preview/da1e9639af80821f507551d2b894aabe8db86826?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,NLF712006368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop dance,uk dance",0.681,0.726,0.0,-7.011,1.0,0.074,0.0285,6.09e-05,0.156,0.22,113.983,4.0,,Hussle Recordings AU,"C (C) 2020 Armada Music BV under exclusive license to Hussle Recordings a division of TMRW Music Pty Ltd, P (P) 2020 Armada Music BV under exclusive license to Hussle Recordings a division of TMRW Music Pty Ltd",3703 +3704,spotify:track:0XDv7SLyMkGcAnb12fMHa1,Senses Working Overtime - Remastered 2001,spotify:artist:2qT62DYO8Ajb276vUJmvhz,XTC,spotify:album:2fDm6GpssR8S6uQnDE4MKM,English Settlement,spotify:artist:2qT62DYO8Ajb276vUJmvhz,XTC,1982-02-12,https://i.scdn.co/image/ab67616d0000b273eaa71fe9c71d643584107f0f,1,3,290667,https://p.scdn.co/mp3-preview/14787d5ffc96f46e76792e14fe2f3f5119d85711?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAAA0001038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art punk,art rock,beatlesque,new romantic,new wave,new wave pop,post-punk,power pop,uk post-punk,zolo",0.68,0.665,0.0,-11.886,1.0,0.0355,0.0289,0.0289,0.659,0.862,129.899,4.0,,Virgin Records,"C © 2001 Virgin Records Limited, P ℗ 2001 Virgin Records Limited",3704 +3705,spotify:track:2iaHkcO4vBZgwhZXmCIAVH,Wish You Were Sober,spotify:artist:4Uc8Dsxct0oMqx0P6i60ea,Conan Gray,spotify:album:2QZwUk5Bpo8HPkshdBcoMU,Wish You Were Sober,spotify:artist:4Uc8Dsxct0oMqx0P6i60ea,Conan Gray,2020-03-18,https://i.scdn.co/image/ab67616d0000b2739e1eaeebe52042cfd68166e4,1,1,168883,https://p.scdn.co/mp3-preview/dec3fc372819a2dc44f3d6084b7255d06baf0bbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USUM71924853,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bedroom pop,pop,pov: indie",0.596,0.702,2.0,-5.219,1.0,0.0883,0.0175,0.0,0.236,0.652,182.038,4.0,,Republic Records,"C © 2020 Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Republic Records, a division of UMG Recordings, Inc.",3705 +3706,spotify:track:6Y0yv5p2AvHTjIpf2TazN8,Take Me Over,spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,spotify:album:4JTBXeHQ3n6koQtMxnWLJu,Zonoscope,spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,2011-01-01,https://i.scdn.co/image/ab67616d0000b27388bc48b6670ab2b29eb24bd4,1,2,350093,https://p.scdn.co/mp3-preview/b8a99f4156f900028942ad63b4cb1be0da728115?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71002404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian electropop,electronic rock,electronica,indietronica,neo-synthpop",0.673,0.79,1.0,-5.215,1.0,0.0357,0.0219,0.313,0.553,0.654,119.995,4.0,,Modular,"C © 2011 Modular Recordings, P ℗ 2011 Modular Recordings",3706 +3707,spotify:track:5x0rQU3Bd0ZlH2OiIvZQFz,No Matter What,spotify:artist:6X9aYHnQ75YI8o08aoa0iS,Boyzone,spotify:album:4qMB43IvJVKikOUv6lhPZj,Where We Belong,spotify:artist:6X9aYHnQ75YI8o08aoa0iS,Boyzone,1998-05-25,https://i.scdn.co/image/ab67616d0000b273ee0c6eae1d3fc8f9af27e288,1,16,274266,https://p.scdn.co/mp3-preview/2571885aaebcc610982bb1a387d4c800939cd780?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW9800269,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.704,0.417,7.0,-9.41,1.0,0.0243,0.187,2.13e-06,0.137,0.532,92.726,4.0,,Universal Music Group,"C © 1998 Universal Music Ireland Ltd., P ℗ 1998 Universal Music Ireland Ltd.",3707 +3708,spotify:track:3rfDfPjgHDQ1BUaSHr9xoI,The Freshmen,spotify:artist:242iqFnwNhlidVBMI9GYKp,The Verve Pipe,spotify:album:6Rv9Ajtycre9EYG75k3y9Q,Villains,spotify:artist:242iqFnwNhlidVBMI9GYKp,The Verve Pipe,1996,https://i.scdn.co/image/ab67616d0000b27362c9da28de379339f3081d9e,1,7,269466,https://p.scdn.co/mp3-preview/148ed75714674b046256569881a5ef46d412a510?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USRC19604480,spotify:user:bradnumber1,2021-11-11T04:15:15Z,"pop rock,post-grunge",0.577,0.497,1.0,-9.371,0.0,0.0235,0.0619,1.07e-05,0.11,0.279,99.662,4.0,,RCA Records Label,P (P) 1997 BMG Entertainment,3708 +3709,spotify:track:4czNORk5MjW5WOn98bki32,All Night Long (All Night) - Single Version,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,spotify:album:1ET5QG3pd6NGqEFuZh0Qiz,Back To Front,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,1992-01-01,https://i.scdn.co/image/ab67616d0000b273a47127db3e929f64a2795666,1,4,258665,https://p.scdn.co/mp3-preview/e1863bb8d50ae7b15abedc472abfc9bb63507e02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USMO18390005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.748,0.603,1.0,-12.044,1.0,0.043,0.149,0.000261,0.0269,0.828,108.834,4.0,,Motown,"C © 1992 Motown Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 1992 Motown Records, a Division of UMG Recordings, Inc.",3709 +3710,spotify:track:5IRWgQiN0c2i4U97iE3OoY,Heart of Gold - 2017 Remaster,spotify:artist:6v8FB84lnmJs434UJf2Mrm,Neil Young,spotify:album:2mFcOZBh8JmZdwIiOVeTw7,Decade,spotify:artist:6v8FB84lnmJs434UJf2Mrm,Neil Young,1977,https://i.scdn.co/image/ab67616d0000b273a297b232ab99a64e1ab9b302,1,22,187013,https://p.scdn.co/mp3-preview/30703f9dfefe67406f6ecf0b7f4d9d2378b477df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USRE11700218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian singer-songwriter,classic canadian rock,classic rock,folk rock,mellow gold,permanent wave,rock,roots rock,singer-songwriter",0.542,0.443,4.0,-11.568,0.0,0.0295,0.212,0.0477,0.102,0.828,171.719,4.0,,Reprise,"C © 1976 Warner Records Inc., P ℗ 1972, 1974, 1975,1976 Warner Records Inc.",3710 +3711,spotify:track:31sCDtVKSW2uCoDjumM4wW,Let Me Blow Ya Mind,"spotify:artist:4d3yvTptO48nOYTPBcPFZC, spotify:artist:4yiQZ8tQPux8cPriYMWUFP, spotify:artist:09A1kpyGbzYAPb8cEvee64","Eve, Gwen Stefani, Stevie J",spotify:album:67ma4XvpbAfD4UpUPRwRN4,RnB Fridays Vol. 3,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-04-21,https://i.scdn.co/image/ab67616d0000b2730e545611e016c993b81bbbce,1,3,229693,https://p.scdn.co/mp3-preview/d4bfde4369cfe78d5bb68fb2a71b3ba0b774c55f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USIR10110173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,hip pop,philly rap,r&b,urban contemporary,dance pop,pop",0.896,0.468,8.0,-6.973,0.0,0.126,0.304,0.0,0.0504,0.889,90.013,4.0,,Universal Music Australia Pty. Ltd.,"C © 2017 Universal Music Australia Pty Ltd., P This Compilation ℗ 2017 Universal Music Australia Pty Ltd.",3711 +3712,spotify:track:2Tky1eOpdLXo8yYawnTMcj,Somebody to Love Me,"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:5D19FUPuoRUpCBtWoY14C4","Mark Ronson, The Business Intl",spotify:album:0m8wvW3WNm9D7J0KUlbf3h,Record Collection,"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:5D19FUPuoRUpCBtWoY14C4","Mark Ronson, The Business Intl",2010-09-21,https://i.scdn.co/image/ab67616d0000b2734e1ce5c19325a80d8300cb64,1,4,297933,https://p.scdn.co/mp3-preview/bf1627d832ec0d766dc712b60c54285dbfb5d4c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBARL1000462,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop soul,0.694,0.853,6.0,-4.755,0.0,0.0415,0.107,1.63e-06,0.225,0.566,117.896,4.0,,Columbia,P (P) 2010 Mark Ronson under exclusive license to Sony Music Entertainment UK Limited,3712 +3713,spotify:track:1WYZdl58Vg7Hs19QPJOSWu,Lost Stars,spotify:artist:4bYPcJP5jwMhSivRcqie2n,Adam Levine,spotify:album:2xOAAj0YESnHbb0Fcrle5N,V (Deluxe),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2014-08-29,https://i.scdn.co/image/ab67616d0000b273892abc7071df009001376211,1,14,266706,https://p.scdn.co/mp3-preview/4f504aede713289f5fd6ecf229121dc76e09cdcc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71410382,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep talent show,0.491,0.59,0.0,-4.69,1.0,0.0277,0.0986,0.0,0.0792,0.419,82.038,4.0,,Polydor Associated Labels,"C (C) 2014 Interscope Records, P (P) 2014 Interscope Records",3713 +3714,spotify:track:4lUVB9OTN8ExX5EIDrAA0s,Feel The Love,"spotify:artist:48xCatjXaoohtyOHrHTijG, spotify:artist:6uNiUxDeo17yUnA472Zhni","Tigerlily, Nat Dunn",spotify:album:5lT8IQpcDecH6axCUJLeMS,Feel The Love,spotify:artist:48xCatjXaoohtyOHrHTijG,Tigerlily,2015-09-25,https://i.scdn.co/image/ab67616d0000b2737e5a83ed28f517d0f012ea8e,1,1,210767,https://p.scdn.co/mp3-preview/98e090df13754df374879154a51891b574429c96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUUM71501301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.569,0.91,9.0,-3.556,0.0,0.0703,0.00764,0.000171,0.563,0.34,122.937,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P ℗ 2015 Universal Music Australia Pty Ltd.",3714 +3715,spotify:track:0TwATqrZsK5b77bjaPAq23,Love In The Dark,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7uwTHXmFa1Ebi5flqBosig,25,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2015-11-20,https://i.scdn.co/image/ab67616d0000b2735ffbbc3dca25d5c81491af1f,1,8,285935,https://p.scdn.co/mp3-preview/71fccaf81d5bd85928d35ac65e311709f841e4b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1500221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.472,0.341,9.0,-6.057,0.0,0.0291,0.528,0.0,0.109,0.154,109.901,4.0,,XL Recordings,"C 2015 XL Recordings Limited., P 2015 XL Recordings Limited.",3715 +3716,spotify:track:3z87q6jHxY29bUeWeNvBn3,"Baby, You're So Strange",spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,spotify:album:04kK44hyDK1A4Yf9m4MejV,Measure For Measure (Bonus Track Edition),spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,1986-04-21,https://i.scdn.co/image/ab67616d0000b2731baa96bffb666bc630db4091,1,10,237240,https://p.scdn.co/mp3-preview/216e103ca004a521d6c6bd3ac925764d2678a778?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUC441100031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic,sophisti-pop,synthpop",0.509,0.798,2.0,-3.17,1.0,0.0401,0.0907,3.69e-06,0.167,0.557,112.749,4.0,,Diva,"C © 2012 Diva Records, P ℗ 2012 Diva Records, Manufactured and distributed by Universal Music Australia Pty Ltd",3716 +3717,spotify:track:3e5Zw5PAnVsdkmIzGMatrJ,Sing C'est La Vie,spotify:artist:71lGEtP9qYXDsSXjfexTqO,Sonny & Cher,spotify:album:4VFnAIRrYMA3iEHpjNP5cH,Look At Us,spotify:artist:71lGEtP9qYXDsSXjfexTqO,Sonny & Cher,1965,https://i.scdn.co/image/ab67616d0000b2736823f5ab3f87b902c35ef56b,1,4,223866,https://p.scdn.co/mp3-preview/fe008e988922df7a32f413d7af4c6d0443996833?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USEW10100389,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,folk,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.278,0.374,0.0,-9.542,1.0,0.0401,0.606,0.0,0.0546,0.65,190.295,3.0,,Rhino Atlantic,"C © 1965 Atlantic Records, P ℗ 1965 Atlantic Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",3717 +3718,spotify:track:2Tq2R8sRftNEqdgJK5HadO,My My My!,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,spotify:album:7wQrwQy96jtQETGmyGzxr8,My My My!,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2018-01-11,https://i.scdn.co/image/ab67616d0000b27363284e21910e6cd2ecbaff64,1,1,204726,https://p.scdn.co/mp3-preview/ecb419678fdb4fb56b1e5ddaaea3f9d7f9e27fc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71701255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,viral pop",0.699,0.479,1.0,-7.83,1.0,0.0919,0.00433,9.58e-05,0.0435,0.462,102.959,4.0,,Universal Music Group,"C © 2018 Universal Music Australia Pty Ltd., P ℗ 2018 Universal Music Australia Pty Ltd.",3718 +3719,spotify:track:0bMRhjlfy6RPryKkYXgg2g,These Days - Two Hands Version,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:3TDimUGd7RULilf8dvoGXf,Fingerprints & Footprints - The Ultimate Collection,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b273c99282eb112e0ad89430afc6,1,7,278546,https://p.scdn.co/mp3-preview/4f4624e22e9161a569097c19edc4376ca90b13b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUUM00430312,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.368,0.64,9.0,-6.388,1.0,0.036,0.0256,0.000204,0.0717,0.122,82.35,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P This Compilation ℗ 2011 Universal Music Australia Pty Ltd.",3719 +3720,spotify:track:76mzio0HuYMaCfIDd5EU1w,POWER - Album Version (Edited),spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,spotify:album:6klUp8sQyRXGuJhqZu4PG3,My Beautiful Dark Twisted Fantasy,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2010-01-01,https://i.scdn.co/image/ab67616d0000b273baf2a68126739ff553f2930a,1,3,292093,https://p.scdn.co/mp3-preview/6af32b278ce7c848b6d2aa2c482a74c7ad148ac6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USUM71018303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap",0.534,0.925,0.0,-4.945,0.0,0.14,0.0138,0.0,0.709,0.557,154.072,4.0,,Roc-A-Fella,"C © 2010 UMG Recordings, Inc., P ℗ 2010 UMG Recordings, Inc.",3720 +3721,spotify:track:0OpSYP9Oly3SqmeIgiRnzT,All These Things That I've Done,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,spotify:album:4OHNH3sDzIxnmUADXzv2kT,Hot Fuss,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,2004-06-15,https://i.scdn.co/image/ab67616d0000b2739c284a6855f4945dc5a3cd73,1,5,301746,https://p.scdn.co/mp3-preview/82f6357dd3ea3312dc12fdeb3f95a1f75f911d15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBFFP0300055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,modern rock,permanent wave,rock",0.552,0.71,6.0,-6.925,1.0,0.0425,0.00164,5.07e-06,0.116,0.206,118.276,4.0,,EMI,"C © 2005 The Island Def Jam Music Group, under exclusive license to Mercury Records Limited. Licensed courtesy of LK Records Limited, P ℗ 2005 The Island Def Jam Music Group, under exclusive license to Mercury Records Limited. Licensed courtesy of LK Records Limited",3721 +3722,spotify:track:1Dr1fXbc2IxaK1Mu8P8Khz,When I Come Around,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:4uG8q3GPuWHQlRbswMIRS6,Dookie,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,1994-02-01,https://i.scdn.co/image/ab67616d0000b273db89b08034de626ebee6823d,1,10,178000,https://p.scdn.co/mp3-preview/ce95ec4b7666e7efe290782e449bd96ba8f7a4e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USRE19900154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.531,0.909,11.0,-4.236,1.0,0.034,0.0175,0.0,0.231,0.814,97.546,4.0,,Reprise,"C © 1994 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S., P ℗ 1994 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S.",3722 +3723,spotify:track:0gsLWzySRe81KoY4LENNY4,UFO,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,spotify:album:3POXlpDv0cikb180eu6k5j,Sneaky Sound System,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,2006,https://i.scdn.co/image/ab67616d0000b2731e54836b82f6407233f06197,1,3,269200,https://p.scdn.co/mp3-preview/b882923513f530a200ccedfc0eb79cc383db3f04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUQK00600016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,funktronica",0.616,0.921,4.0,-4.514,0.0,0.0301,0.057,0.0016,0.853,0.76,131.95,4.0,,Whack Records,"C 2006 Whack Records, P 2006 Whack Records",3723 +3724,spotify:track:7rbWpbXVwY2DFrZpWYPtVj,Hey Porsche,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,spotify:album:77XMEpp4oeFFAMmqxBe16B,M.O. (Deluxe Edition),spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2013-09-30,https://i.scdn.co/image/ab67616d0000b273f4bfeac6bbddd76bfd021fab,1,12,209466,https://p.scdn.co/mp3-preview/d1c9a9bf2662c6d93cf55561954a3e966a640939?cid=9950ac751e34487dbbe027c4fd7f8e99,True,51,USUM71300653,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.726,0.795,9.0,-4.653,1.0,0.029,0.136,0.0,0.698,0.952,115.995,4.0,,Universal Records,"C © 2013 Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2013 Universal Republic Records, a division of UMG Recordings, Inc.",3724 +3725,spotify:track:1mr3616BzLdhXfJmLmRsO8,Fireflies,spotify:artist:07QEuhtrNmmZ0zEcqE9SF6,Owl City,spotify:album:5Afh5z6eTtJ62nfqpKZtGv,Ocean Eyes,spotify:artist:07QEuhtrNmmZ0zEcqE9SF6,Owl City,2009-01-01,https://i.scdn.co/image/ab67616d0000b2730d07cf2e2235ec0f2f1263f6,1,9,228346,https://p.scdn.co/mp3-preview/43dc49fcebcb6d83f3dd0570044bc20b1d01f5a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70972068,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,pop",0.513,0.661,3.0,-6.8,1.0,0.0439,0.0274,0.0,0.118,0.461,180.118,4.0,,Universal Music Group,"C © 2009 Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2009 Universal Republic Records, a division of UMG Recordings, Inc.",3725 +3726,spotify:track:6DSq5IghuzKhH3AYatSb6h,I Don't Know How To Love Him,spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,spotify:album:3pDoYPmWZOKa2fabrXVpaB,I Don't Know How To Love Him,spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,2006-01-01,https://i.scdn.co/image/ab67616d0000b273fe51253f59f54cdfd8f5c8f1,1,10,199146,https://p.scdn.co/mp3-preview/3c3e859db91110306846da9b7100a524dc4dbad0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USCA28700185,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,mellow gold,soft rock",0.284,0.396,3.0,-6.761,1.0,0.028,0.699,0.0386,0.129,0.303,79.628,4.0,,Capitol Records,"C © 2006 Capitol Records, LLC, P ℗ 2006 Capitol Records, LLC",3726 +3727,spotify:track:7JJmb5XwzOO8jgpou264Ml,There's Nothing Holdin' Me Back,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:3wBabo4pmzsYjALMSKY7Iq,Illuminate (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2017-04-20,https://i.scdn.co/image/ab67616d0000b273ea3ef7697cfd5705b8f47521,1,1,199440,https://p.scdn.co/mp3-preview/a484903cc14132afeb3614b674a01c42a45d8109?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USUM71702833,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.866,0.811,11.0,-4.063,0.0,0.0553,0.375,0.0,0.078,0.969,121.995,4.0,,Island Records,"C © 2016 Island Records, a division of UMG Recordings, Inc., P This Compilation ℗ 2017 Island Records, a division of UMG Recordings, Inc.",3727 +3728,spotify:track:46qtEi9qJOXxmY0qel1wpN,Crank That (Soulja Boy),spotify:artist:6GMYJwaziB4ekv1Y6wCDWS,Soulja Boy,spotify:album:49tXmS631KKId7U6Pu2tg8,souljaboytellem.com,spotify:artist:6GMYJwaziB4ekv1Y6wCDWS,Soulja Boy,2007-01-01,https://i.scdn.co/image/ab67616d0000b2738f330ffba4259cde9f3a3ad9,1,2,221933,https://p.scdn.co/mp3-preview/2c6a343f2b06b44074304846c47be0b2bb9178f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70742048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,chicago bop,dance pop,pop rap,rap,southern hip hop,trap",0.732,0.731,0.0,-2.171,1.0,0.0924,0.526,0.0,0.0496,0.799,140.211,4.0,,Interscope,"C © 2007 ColliPark Music/Interscope Records, P ℗ 2007 ColliPark Music/Interscope Records",3728 +3729,spotify:track:0IUAugkLGELvtFJfzPn2vi,Drunk Girls,spotify:artist:066X20Nz7iquqkkCW6Jxy6,LCD Soundsystem,spotify:album:4hnqM0JK4CM1phwfq1Ldyz,This Is Happening,spotify:artist:066X20Nz7iquqkkCW6Jxy6,LCD Soundsystem,2010-05-17,https://i.scdn.co/image/ab67616d0000b273ee0d0dce888c6c8a70db6e8b,1,2,222106,https://p.scdn.co/mp3-preview/6eca992763948ba844ea5c26de5169e219558a17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,US4GE1000020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,alternative rock,art pop,dance rock,dance-punk,electronic rock,electronica,indie rock,indietronica,neo-synthpop,new rave",0.599,0.878,4.0,-7.759,1.0,0.0387,0.000259,0.0258,0.0829,0.814,144.029,4.0,,Parlophone UK,"C © 2010 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2010 The copyright in this sound recording is owned by DFA LLC under exclusive licence to Parlophone Records Ltd",3729 +3730,spotify:track:7L59vVTpoS94JU3KEeolqt,Take Me Home (feat. Bebe Rexha),"spotify:artist:1LOB7jTeEV14pHai6EXSzF, spotify:artist:64M6ah0SkkRsnPGtGiRAbb","Cash Cash, Bebe Rexha",spotify:album:0KQDN58Lz8CXOsfIG6tQ7X,"Blood, Sweat & 3 Years",spotify:artist:1LOB7jTeEV14pHai6EXSzF,Cash Cash,2016-06-24,https://i.scdn.co/image/ab67616d0000b2738058c873c88c1740994a9182,1,14,206320,https://p.scdn.co/mp3-preview/22d9a84abc2944ca023f8d89c399759a0e8b6e4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT21301968,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,electropowerpop,pop dance,dance pop,pop",0.571,0.903,7.0,-2.184,1.0,0.214,0.0615,1.23e-06,0.186,0.477,127.951,4.0,,Big Beat Records,"C © 2016 Big Beat Records, Inc. for the United States and WEA International Inc. for the world outside of the United States except for Millionaire which is 2016 Tim & Danny Music, LLC under exclusive license to Big Beat Records, Inc. for the United States and WEA International Inc. for Canada and non-exclusive license to WEA International Inc. for the world outside of the United States and Canada., P ℗ 2016 Big Beat Records, Inc. for the United States and WEA International Inc. for the world outside of the United States except for Millionaire which is 2016 Tim & Danny Music, LLC under exclusive license to Big Beat Records, Inc. for the United States and WEA International Inc. for Canada and non-exclusive license to WEA International Inc. for the world outside of the United States and Canada.",3730 +3731,spotify:track:3q2gRjU2UdOYRDY1p4cNHr,It Must Be Love,spotify:artist:4AYkFtEBnNnGuoo8HaHErd,Madness,spotify:album:5TdKeSLPSowWxKkenaEK04,7,spotify:artist:4AYkFtEBnNnGuoo8HaHErd,Madness,1981-10-02,https://i.scdn.co/image/ab67616d0000b2730ffc657dc879af805c0534a5,1,20,206266,https://p.scdn.co/mp3-preview/4521cd00e767aaf2b5bbf585ff3917ca3c9f1c6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GB7GZ0900018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,new romantic,new wave,ska,ska revival",0.536,0.606,7.0,-5.364,1.0,0.0355,0.103,1.08e-05,0.255,0.719,146.425,4.0,,Salvo,"C © 2010 Stirling Holdings Ltd., under exclusive license to Union Square Music Limited, a BMG Company, P ℗ 2010 Stirling Holdings Ltd., under exclusive license to Union Square Music Limited, a BMG Company",3731 +3732,spotify:track:2NY7wAZz27S4t6PofNqBjr,Sorry,spotify:artist:6DgP9otnZw5z6daOntINxp,Joel Corry,spotify:album:2kBHFkLNaqDGInnr7WR4pz,Sorry,spotify:artist:6DgP9otnZw5z6daOntINxp,Joel Corry,2019-07-05,https://i.scdn.co/image/ab67616d0000b2739b336a12a12372a31e4c0a48,1,1,188640,https://p.scdn.co/mp3-preview/44d25bd4d2b79ecb7b85a393da9c1ff5ca8b63ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,UK4ZF1900052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop dance,uk dance",0.748,0.792,8.0,-4.606,0.0,0.0505,0.0548,0.000785,0.324,0.869,125.022,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Perfect Havoc Limited, under exclusive license to Neon Records Pty Ltd, P ℗ 2019 Perfect Havoc Limited, under exclusive license to Neon Records Pty Ltd",3732 +3733,spotify:track:11KJSRSgaDxqydKYiD2Jew,Too Good,"spotify:artist:3TVXtAsR1Inumwj472S9r4, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Drake, Rihanna",spotify:album:3hARKC8cinq3mZLLAEaBh9,Views,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,2016-05-06,https://i.scdn.co/image/ab67616d0000b273726abca207567d5e41cb9667,1,16,263373,https://p.scdn.co/mp3-preview/b9d7cf97144c9f29893e2f8572fd74c8726fa26d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USCM51600088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian hip hop,canadian pop,hip hop,pop rap,rap,barbadian pop,pop,urban contemporary",0.804,0.648,7.0,-7.805,1.0,0.117,0.0573,3.49e-05,0.102,0.392,117.983,4.0,,Universal Music Group,"C © 2016 Young Money Entertainment/Cash Money Records, P ℗ 2016 Young Money Entertainment/Cash Money Records",3733 +3734,spotify:track:5J1TCBAWhDZ272GLJmxoDY,Eternal Flame,spotify:artist:51l0uqRxGaczYr4271pVIC,The Bangles,spotify:album:3BH0mUvl0IrLMXd9lxJyEO,Everything,spotify:artist:51l0uqRxGaczYr4271pVIC,The Bangles,1988,https://i.scdn.co/image/ab67616d0000b27307c7dc36219c76b42b37951e,1,5,238773,https://p.scdn.co/mp3-preview/4234af755fa13d51fcbd73c3fcaab13d6c3df8e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,AUMU08900010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,jangle pop,new romantic,new wave,new wave pop,paisley underground,soft rock",0.518,0.253,4.0,-12.573,0.0,0.0245,0.649,0.0,0.0893,0.381,78.907,3.0,,WM Australia,"C © 1988 The Bangles, under license to Festival Mushroom Records, P ℗ 1988 The Bangles, under license to Festival Mushroom Records",3734 +3735,spotify:track:4d8Bqtm7ODdQLFXxPSuK64,Let The Music Play,spotify:artist:2O8QAJmRrwkFXq2aWZnHYB,Shannon,spotify:album:4cj641XM0e3LcGSTWr2oEV,The Best Is Yet To Come,spotify:artist:2O8QAJmRrwkFXq2aWZnHYB,Shannon,2000-12-01,https://i.scdn.co/image/ab67616d0000b273e01d9e2daf2e46614818ae77,1,3,216000,,False,0,USA2P0505202,spotify:user:bradnumber1,2020-03-06T08:57:30Z,"freestyle,hi-nrg,minneapolis sound,post-disco",0.765,0.872,10.0,-6.993,0.0,0.119,0.0038,0.482,0.275,0.901,118.074,4.0,,Contagious Records,,3735 +3736,spotify:track:0XpJNgmowvBgPDB6alRo6G,Love Will Lead You Back,spotify:artist:32lVGr0fSRGT6okLKHiP68,Taylor Dayne,spotify:album:7nlXYKVhhf7mMRxcq37TaF,Can't Fight Fate,spotify:artist:32lVGr0fSRGT6okLKHiP68,Taylor Dayne,1989-10-27,https://i.scdn.co/image/ab67616d0000b273ca6702a4beb558546517063d,1,3,279026,https://p.scdn.co/mp3-preview/94e019aeb0cc460cefe12bb796418122e23d5dda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR18900003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hi-nrg,new romantic,new wave pop,soft rock,synthpop",0.553,0.339,1.0,-13.478,1.0,0.0275,0.214,0.0,0.0872,0.227,146.354,4.0,,Arista,"P (P)1989 Arista Records, Inc.",3736 +3737,spotify:track:3p7XQpdt8Dr6oMXSvRZ9bg,Eyes Closed,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:2WFFcvzM0CgLaSq4MSkyZk,- (Deluxe),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2023-05-05,https://i.scdn.co/image/ab67616d0000b273a0aea3805ed6a87aa394c796,1,3,194848,https://p.scdn.co/mp3-preview/7cd2576f2d27799fe8c515c4e0fc880870a5cc88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBAHS2201304,spotify:user:bradnumber1,2023-05-07T11:59:56Z,"pop,singer-songwriter pop,uk pop",0.777,0.526,2.0,-6.221,1.0,0.0645,0.302,0.0,0.105,0.389,107.071,4.0,,Atlantic Records UK,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2023 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2023 Warner Music UK Limited",3737 +3738,spotify:track:7kyGvcO92A4qsfTib9soLV,If Tomorrow Never Comes,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,spotify:album:5No4CLtKLimJuCKGIHl902,If Tomorrow Never Comes (International CD1),spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,2002-01-01,https://i.scdn.co/image/ab67616d0000b2731df10342fadd40c6128a8984,1,1,215906,https://p.scdn.co/mp3-preview/6b94cdcf724a75486e52d4ee0aed55a1dbd087e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0201024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.56,0.485,10.0,-6.203,1.0,0.0272,0.359,0.0,0.0953,0.29,79.03,4.0,,Universal Music GmbH,"C (C) 2002 Polydor Ltd. (UK), P (P) 2002 Polydor Ltd. (UK)",3738 +3739,spotify:track:1LysqZOvGYyVNjPz0HYU7m,Living On The Ceiling,spotify:artist:3LtBdgNHdH0Ix8hCFZ4NJG,Blancmange,spotify:album:7oS0WvPmX0SuhAwMPm2w6I,The Platinum Collection,spotify:artist:3LtBdgNHdH0Ix8hCFZ4NJG,Blancmange,2006-10-02,https://i.scdn.co/image/ab67616d0000b2736814a89f0fa57035643d42d7,1,4,239959,https://p.scdn.co/mp3-preview/cf248f1fa553b5ff5e5c6f8e277c8c163209d460?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP0100383,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,synthpop",0.72,0.821,4.0,-5.257,1.0,0.108,0.0772,0.15,0.664,0.893,115.403,4.0,,Rhino,"C 2006 London Records 90 Ltd., P 2006 This compilation: (P) 2006 London Records 90 Ltd.",3739 +3740,spotify:track:0sDqo9UPzPUtu9wEkI3zRB,The Weight - Remastered,spotify:artist:4vpDg7Y7fU982Ds30zawDA,The Band,spotify:album:0nuPXgAXAfPmz9AW1PPrlk,Music From Big Pink (Expanded Edition),spotify:artist:4vpDg7Y7fU982Ds30zawDA,The Band,1968-07-01,https://i.scdn.co/image/ab67616d0000b2732988e1e2b301c38f756bf004,1,5,278626,https://p.scdn.co/mp3-preview/6080cc872d9a51c72705530a985d2ce9394c390d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA20000789,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,classic canadian rock,classic rock,cosmic american,country rock,folk,folk rock,heartland rock,jam band,mellow gold,rock,roots rock,southern rock,swamp rock",0.63,0.519,9.0,-10.997,1.0,0.0528,0.225,4.3e-06,0.0974,0.502,143.942,4.0,,Capitol Records,"C © 2000 Capitol Records Inc., P This Compilation ℗ 2000 Capitol Records Inc.",3740 +3741,spotify:track:2V65y3PX4DkRhy1djlxd9p,Don't You Worry Child - Radio Edit,"spotify:artist:1h6Cn3P4NGzXbaXidqURXs, spotify:artist:2auikkNYqigWStoHWK1Grq","Swedish House Mafia, John Martin",spotify:album:3RKhRsifs4RWrqvWV1YpPY,Don't You Worry Child,"spotify:artist:1h6Cn3P4NGzXbaXidqURXs, spotify:artist:2auikkNYqigWStoHWK1Grq","Swedish House Mafia, John Martin",2012-09-14,https://i.scdn.co/image/ab67616d0000b2739cfe80c0c05ce104f7bab18e,1,1,212862,https://p.scdn.co/mp3-preview/4e2b9b425c14fde73ba0a7c0c4fb31ab6be199ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBAAA1200728,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,progressive electro house,pop edm",0.612,0.84,11.0,-3.145,0.0,0.0509,0.112,0.0,0.116,0.438,129.042,4.0,,Virgin Records,"C © 2012 EMI Records Ltd, P ℗ 2012 EMI Records Ltd",3741 +3742,spotify:track:0qxYx4F3vm1AOnfux6dDxP,You Can Call Me Al,spotify:artist:2CvCyf1gEVhI0mX6aFXmVI,Paul Simon,spotify:album:6WgGWYw6XXQyLTsWt7tXky,Graceland (25th Anniversary Deluxe Edition),spotify:artist:2CvCyf1gEVhI0mX6aFXmVI,Paul Simon,1986-08-12,https://i.scdn.co/image/ab67616d0000b27309880a7b8636c5a0615dc0c8,1,6,280000,https://p.scdn.co/mp3-preview/6a17ed2e1ee8d45a933c4a86dd268ba8f12299a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM11002274,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,permanent wave,rock,singer-songwriter,soft rock",0.776,0.763,5.0,-8.124,1.0,0.0534,0.182,0.00647,0.077,0.82,128.433,4.0,,Legacy Recordings,P (P) 2012 Paul Simon under exclusive license of Sony Music Entertainment,3742 +3743,spotify:track:4QEbXYWpDDWHzXNINdZlzW,The Boys Are Back In Town,spotify:artist:6biWAmrHyiMkX49LkycGqQ,Thin Lizzy,spotify:album:01iw3ZO4AQKvvIjXq5wPEL,Wild One - The Very Best Of Thin Lizzy (Remastered Version),spotify:artist:6biWAmrHyiMkX49LkycGqQ,Thin Lizzy,1996-01-01,https://i.scdn.co/image/ab67616d0000b273dece56ffab5ef39a3ddab4fb,1,1,263826,https://p.scdn.co/mp3-preview/753aaed7d16ec2dac0ff8af05123177a44c19351?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF087600063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,glam metal,hard rock,irish rock,metal,rock",0.36,0.851,8.0,-5.542,1.0,0.0838,0.252,3.77e-06,0.0802,0.683,79.39,4.0,,Universal Music Group,"C © 1996 Mercury Records Limited, P ℗ 1996 Mercury Records Limited",3743 +3744,spotify:track:7L5MNmeJXeGJJOe8wzhuZU,Prince Charming,spotify:artist:2DppeCnNtvrLfEobq9Pw5r,Adam & The Ants,spotify:album:63zLXr9nukjE8hwuGBN6ms,Prince Charming,spotify:artist:2DppeCnNtvrLfEobq9Pw5r,Adam & The Ants,1981,https://i.scdn.co/image/ab67616d0000b273ebabf4c6f93b895ed3b00238,1,3,195240,https://p.scdn.co/mp3-preview/082f149900f7d28f3fe455baf033b879846dd6df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBN9999961,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.549,0.67,9.0,-11.108,1.0,0.0523,0.201,0.0,0.11,0.653,150.57,4.0,,Epic,P 1981 CBS RECORDS,3744 +3745,spotify:track:5Gz1PxujU62sfecQpB0Stm,Unpredictable,"spotify:artist:3whuHq0yGx60atvA2RCVRW, spotify:artist:5IHqlcCbQkyhWl0KmIwgeq","Olly Murs, Louisa Johnson",spotify:album:1UPwxoCoXHYu8REYovIkHR,Unpredictable,"spotify:artist:3whuHq0yGx60atvA2RCVRW, spotify:artist:5IHqlcCbQkyhWl0KmIwgeq","Olly Murs, Louisa Johnson",2017-05-31,https://i.scdn.co/image/ab67616d0000b2736abb2bf3e5a0a3f67a2de855,1,1,199585,https://p.scdn.co/mp3-preview/14db498497bf764c3ca65454a11fb820f519e3bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1700655,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop,talent show,uk pop",0.63,0.733,1.0,-4.338,1.0,0.0423,0.0551,0.0,0.102,0.486,104.007,4.0,,RCA Records Label,P (P) 2017 Sony Music Entertainment UK Limited,3745 +3746,spotify:track:0HqZX76SFLDz2aW8aiqi7G,Bones,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:1Q9SnHWPNEjVM0LrBFvJ1q,Bones,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2022-03-11,https://i.scdn.co/image/ab67616d0000b273813713582dcc508e7d5073c4,1,1,165264,https://p.scdn.co/mp3-preview/3d5f0dd33102d262fefd90acebff9087c896c83d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USUM72201759,spotify:user:bradnumber1,2022-11-02T00:26:26Z,"modern rock,pop,rock",0.773,0.742,5.0,-3.678,0.0,0.046,0.0206,0.0,0.0754,0.571,114.071,4.0,,KIDinaKORNER/Interscope Records,"C © 2022 KIDinaKORNER/Interscope Records, P ℗ 2022 KIDinaKORNER/Interscope Records",3746 +3747,spotify:track:59WN2psjkt1tyaxjspN8fp,Killing In The Name,spotify:artist:2d0hyoQ5ynDBnkvAbJKORj,Rage Against The Machine,spotify:album:4Io5vWtmV1rFj4yirKb4y4,Rage Against The Machine - XX (20th Anniversary Special Edition),spotify:artist:2d0hyoQ5ynDBnkvAbJKORj,Rage Against The Machine,1992,https://i.scdn.co/image/ab67616d0000b27354ab617bc2d4974ab6ffbece,1,2,313573,https://p.scdn.co/mp3-preview/998d3604b68754c11bc0a9af64291ac1f91fb0d8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,78,USSM11205433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,conscious hip hop,funk metal,hard rock,nu metal,political hip hop,post-grunge,rap metal,rap rock,rock",0.466,0.833,7.0,-4.215,1.0,0.304,0.0266,0.0,0.0327,0.661,88.785,4.0,,Epic/Legacy,"P (P) 1991, 2012 Rage Against The Machine/(P) 1992, 2012 Sony Music Entertainment",3747 +3748,spotify:track:1NACifFmu3vow0af1PPk70,Photograph,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:26qCxSTqoqXXXQ5qvrECi8,The Secret Daughter (Songs from the Original TV Series),spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2016,https://i.scdn.co/image/ab67616d0000b27364f72dc41389e464da4dbfe3,1,6,258333,https://p.scdn.co/mp3-preview/21a7e85062ccba366b327f07b6d1772464dc48c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01600277,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.705,0.439,5.0,-8.231,1.0,0.0327,0.534,0.0,0.0994,0.0864,107.962,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd / Screentime Pty Limited / Seven Network (Operations) Limited,3748 +3749,spotify:track:2hQifgLOa0k2tFD1es5T21,We Will Together,spotify:artist:48kXmrNGCBMAz7N8x1J2na,Eurogliders,spotify:album:7tH6DNmeYxzPP3LBB6Z0p9,Absolutely,spotify:artist:48kXmrNGCBMAz7N8x1J2na,Eurogliders,1985-08-08,https://i.scdn.co/image/ab67616d0000b273bec8c1515c265f7c1348492b,1,5,272826,https://p.scdn.co/mp3-preview/d72e558494602139837903ef9a961fbec1a6c137?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUSM08800071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,synthpop",0.655,0.456,11.0,-17.617,1.0,0.0354,0.15,1.27e-06,0.0753,0.586,139.599,4.0,,Columbia,P (P) 1985 Sony Music Entertainment Australia Pty Ltd,3749 +3750,spotify:track:1IYn7ytdb8byvHKS7S3Cat,"Somewhere, My Love (Lara's Theme from ""Doctor Zhivago"")",spotify:artist:6WtWmLPWn1imbcisSfmBvy,The Ray Conniff Singers,spotify:album:69McWz1Og4ZOjEeupHfpw7,"SOMEWHERE MY LOVE (Love Theme from ""Dr. Zhivago"") And Other Great Hits",spotify:artist:6WtWmLPWn1imbcisSfmBvy,The Ray Conniff Singers,1966,https://i.scdn.co/image/ab67616d0000b273c7971fe2f14fdff84abf03a8,1,7,148626,https://p.scdn.co/mp3-preview/76c58612aaf4ce2e33b4ac0f4cfcadfa5dd46fa7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USSM19916527,spotify:user:bradnumber1,2021-08-08T09:26:31Z,easy listening,0.477,0.259,7.0,-16.096,1.0,0.0264,0.867,0.0,0.238,0.374,88.59,3.0,,Columbia,P Originally Released 1966 Sony Music Entertainment Inc.,3750 +3751,spotify:track:3OvlDKEAhtjnceGhbrwQOX,Chained To The Wheel,spotify:artist:1iES8Ckei3eLmSBPo4vwU7,The Black Sorrows,spotify:album:1r92h0aJLyowD9ZO3ka60v,Hold On To Me,spotify:artist:1iES8Ckei3eLmSBPo4vwU7,The Black Sorrows,1988-09-23,https://i.scdn.co/image/ab67616d0000b27331083ca1c9c659ee9f25a937,1,3,237533,https://p.scdn.co/mp3-preview/ee000c712239c5620e139d4aaec3f58a89865037?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUSM08800006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.579,0.609,2.0,-12.158,1.0,0.0415,0.115,0.000247,0.0699,0.614,119.811,4.0,,Columbia,P (P) 1988 Sony Music Entertainment Pty Ltd,3751 +3752,spotify:track:1rPCgtaIF0CyKRgAwhtpbF,Adore,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:4XW4uoRtDulaUs4Qb81UDx,Adore,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2016-11-04,https://i.scdn.co/image/ab67616d0000b2737810b79692e17339fa4474be,1,1,184999,https://p.scdn.co/mp3-preview/6c5c27b1cb80e6894883f0bf53c707cae6063293?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USHM21621431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.592,0.438,1.0,-10.054,1.0,0.0391,0.193,0.0,0.0564,0.259,67.445,4.0,,Wonderlick,P (P) 2016 Amy Shark under exclusive license to the Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd.,3752 +3753,spotify:track:6ZqhUFyKgHyY5zPDq4cklv,Hats Off To Larry,spotify:artist:6bsbqU6d3OFRlSy2fB8gX8,Del Shannon with Orchestra,spotify:album:6GMnPSAsDDodzbR7tu7vzh,Runaway,spotify:artist:6bsbqU6d3OFRlSy2fB8gX8,Del Shannon with Orchestra,2016-11-09,https://i.scdn.co/image/ab67616d0000b273b539aae98a89cafd9edf4614,1,2,122733,https://p.scdn.co/mp3-preview/a756a8e1fe5dc77f379a3dca2771a1e9d79383ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,DETL61607507,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.497,0.528,11.0,-9.933,1.0,0.043,0.711,2.74e-06,0.269,0.638,80.048,4.0,,Goldstar Records,"C 2016 Goldfinestar Records, P 2016 Goldfinestar Records",3753 +3754,spotify:track:32cxjD3ufFrwGlxgOc0mUg,London Bridge,spotify:artist:3r17AfJCCUqC9Lf0OAc73G,Fergie,spotify:album:1mtWvoEOGCTV112yCmJayi,The Dutchess Deluxe,spotify:artist:3r17AfJCCUqC9Lf0OAc73G,Fergie,2007-01-01,https://i.scdn.co/image/ab67616d0000b2735adb68440da852d5a7d7d95e,1,4,241306,https://p.scdn.co/mp3-preview/6c101449f2cf312851453cbf582c40ce39e34217?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70609276,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.77,0.604,1.0,-5.817,1.0,0.356,0.199,0.0,0.208,0.65,90.937,4.0,,Universal Music Group,"C © 2007 A&M Records, P ℗ 2007 A&M Records",3754 +3755,spotify:track:5x5JM1BSB6vollcIzDocqT,The Climb,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:0IuHVgAvbNDJnJepuSZ8Oz,The Time Of Our Lives - International Version,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2009-01-01,https://i.scdn.co/image/ab67616d0000b2734ea6653890e297d53e93e3e0,1,8,234520,https://p.scdn.co/mp3-preview/a4409a22105a71d6c5ad5cd81e618b8ac8004e43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USWD10935758,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.336,0.602,4.0,-6.354,1.0,0.0325,0.0635,0.0,0.141,0.299,161.01,4.0,,Hollywood Records,"C © 2009 Hollywood Records, Inc., P ℗ 2009 Hollywood Records, Inc.",3755 +3756,spotify:track:1cOj24fUMnBSXhtp7waHVW,"That's What Friends Are For (with Elton John, Gladys Knight & Stevie Wonder)","spotify:artist:2JSjCHK79gdaiPWdKiNUNp, spotify:artist:3PhoLpVuITZKcymswpck5b, spotify:artist:2aXiJJHJei5BmCykxI37y0, spotify:artist:7guDJrEfX3qb6FEbdPA5qi","Dionne Warwick, Elton John, Gladys Knight, Stevie Wonder",spotify:album:0HpZFxWfSL8V4wzEtUvGFo,Greatest Hits 1979-1990,spotify:artist:2JSjCHK79gdaiPWdKiNUNp,Dionne Warwick,1989-10-31,https://i.scdn.co/image/ab67616d0000b2733c985752163b8575af080bfa,1,1,256466,https://p.scdn.co/mp3-preview/4b518e868e5921a24f6e20b2a11f281c55ca173f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USAR18500220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,disco,quiet storm,soft rock,soul,vocal jazz,glam rock,mellow gold,piano rock,rock,disco,motown,quiet storm,soul,motown,soul",0.673,0.286,8.0,-14.643,1.0,0.0313,0.294,0.0,0.086,0.199,120.117,4.0,,Arista,P This compilation (P) 1989 Sony Music Entertainment,3756 +3757,spotify:track:5AUb0sDQfwDmlV16vwLw5c,"Little Ole Wine Drinker, Me",spotify:artist:49e4v89VmlDcFCMyDv9wQ9,Dean Martin,spotify:album:3bCD76GPTntFdGOT6KXgO3,The Essential Dean Martin,spotify:artist:49e4v89VmlDcFCMyDv9wQ9,Dean Martin,2014-10-10,https://i.scdn.co/image/ab67616d0000b273330e9e8d6fa1037f43f0c5ad,2,12,167853,https://p.scdn.co/mp3-preview/24a788239d8391a803545c0fc017b79d273b63eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USQX91301951,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,vocal jazz",0.615,0.488,0.0,-12.797,1.0,0.0383,0.586,2.21e-06,0.191,0.488,122.815,4.0,,Legacy Recordings,P This Compilation (P) 2014 Dean Martin Family Trust,3757 +3758,spotify:track:1vla6V0ECMrhz2Xk3VNzlA,In the Summertime,spotify:artist:3uPSzsWGSzQZfihkPkAvfN,The Mixtures,spotify:album:21gWnRaQDXFufaTuhv2PUJ,In the Summertime,spotify:artist:3uPSzsWGSzQZfihkPkAvfN,The Mixtures,1970,https://i.scdn.co/image/ab67616d0000b2730828aef993b282a5e6c1d585,1,1,165733,https://p.scdn.co/mp3-preview/576f6e74681ca6a4504f544c1637c2114efe17cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.739,0.502,5.0,-11.892,1.0,0.0446,0.372,0.0,0.158,0.961,80.911,4.0,,Fable Records,"C 1970 Southern Cross Music Pty Limited, P 1970 Fable Records. Under exclusive license to Southern Cross Music Pty Limited.",3758 +3759,spotify:track:7InMEW0aUivYDTprvkfrsZ,So Tough,spotify:artist:53xt77SWSCBxurJQWuxUkM,Johnny O'Keefe,spotify:album:7dlDws3T6RBEO0QvFSVPow,The Wild One,spotify:artist:53xt77SWSCBxurJQWuxUkM,Johnny O'Keefe,2001,https://i.scdn.co/image/ab67616d0000b273b6ee8a754ff6dd988c24714e,1,13,156026,https://p.scdn.co/mp3-preview/5ec0987b9feba65c8905bd25c39b049a035c9919?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUFE07200025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.594,0.622,9.0,-7.873,1.0,0.0301,0.133,0.0,0.334,0.838,106.441,4.0,,WM Australia,"C © 2001 Festival Records, P ℗ 2001 Festival Records",3759 +3760,spotify:track:2TjnKXntLaDPb6ztssQq1J,Good Day,spotify:artist:1xrvnT8IPYpS6iOkAq8tLt,Hayley Warner,spotify:album:1iOQhu1EI8AxL4oLpqVKdJ,Good Day,spotify:artist:1xrvnT8IPYpS6iOkAq8tLt,Hayley Warner,2009-12-11,https://i.scdn.co/image/ab67616d0000b27330ad2b828dfacf09b1a6b470,1,1,192666,https://p.scdn.co/mp3-preview/789eefa614ecc793a2b3e93ab10bf956736d2e83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,AUBM00900466,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.435,0.852,6.0,-1.976,1.0,0.0455,5.59e-05,0.0,0.0876,0.531,148.097,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd.,3760 +3761,spotify:track:4u4NyuceXP7Uzh7XFJKCr1,Hold On,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:1btu3XEwHsImFreF8dVV6J,Hold On,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2021-03-05,https://i.scdn.co/image/ab67616d0000b273bc2dd68b840bb48db3177046,1,1,170813,https://p.scdn.co/mp3-preview/a0f89f3ed6c2ef0f3ee4e728a8b503028fd51a85?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM72102322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.658,0.634,1.0,-5.797,0.0,0.0413,0.0106,0.0,0.132,0.29,139.98,4.0,,RBMG/Def Jam,"C © 2021 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",3761 +3762,spotify:track:63xBKQr7HJkKaSyhwEWCnE,Run - Revised Album Version,spotify:artist:3rIZMv9rysU7JkLzEaC5Jp,Snow Patrol,spotify:album:61ydlH3GzijGrRrivGZASi,Up To Now,spotify:artist:3rIZMv9rysU7JkLzEaC5Jp,Snow Patrol,2009-01-01,https://i.scdn.co/image/ab67616d0000b27385b9ae129bb376968f1055d8,2,4,354613,https://p.scdn.co/mp3-preview/e8941b9e68ad1a3853b96c7d753d62236ee0abab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0300958,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,modern rock,neo mellow,permanent wave,pop rock",0.377,0.65,9.0,-5.243,0.0,0.0283,0.000421,1.36e-05,0.149,0.165,149.148,4.0,,Universal Music Group,"C © 2009 Polydor Ltd. (UK), P ℗ 2009 Polydor Ltd. (UK)",3762 +3763,spotify:track:14j4pqwWpzIi1lUVwUGwAl,Doesn't Mean Anything,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,spotify:album:0MjDAhbZm2Krv3GGpzzMLu,Doesn't Mean Anything,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2009-09-18,https://i.scdn.co/image/ab67616d0000b2738cabe987ec6e783acfb000c9,1,1,275000,https://p.scdn.co/mp3-preview/f334805c90057f5526945f8b84fe007ac08daf47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJAY0900211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b",0.713,0.378,4.0,-7.131,0.0,0.0268,0.0275,0.000126,0.0926,0.167,103.978,4.0,,J Records,"P (P) 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",3763 +3764,spotify:track:6haKhbnPZir7YohchSziFJ,Rock and Roll Love Letter,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,spotify:album:4NHxjcWLiVdPpT6VFnCJoi,Rock N' Roll Love Letter,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,1976-03,https://i.scdn.co/image/ab67616d0000b2735668d9faa0b479a191f81d61,1,3,174400,https://p.scdn.co/mp3-preview/41290c27bb28395c65dfa8cdb3bd8e9fa51f65d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USAR10000012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.528,0.966,4.0,-4.498,1.0,0.0659,0.0875,0.0,0.133,0.609,135.792,4.0,,Legacy Recordings,"P This compilation (P) 2014 RCA Records, a division of Sony Music Entertainment",3764 +3765,spotify:track:0nQLAOkMORezhM1K23UR6l,Not In Love - Radio Mix,"spotify:artist:7qG3b048QCHVRO5Pv1T5lw, spotify:artist:0IF46mUS8NXjgHabxk2MCM","Enrique Iglesias, Kelis",spotify:album:5nWQbcfW6yJlffvXITzIDM,Greatest Hits (International Version),spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,2008-01-01,https://i.scdn.co/image/ab67616d0000b2735cc7314273b9f3a5e3994e60,1,11,221786,https://p.scdn.co/mp3-preview/70dc4600feeaa3cd0112e95cf1fba315377de194?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10400024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,latin pop,mexican pop,dance pop,hip pop,neo soul,urban contemporary",0.765,0.885,0.0,-5.21,0.0,0.0387,0.0406,0.0,0.0604,0.873,117.032,4.0,,Universal Music Group,"C © 2008 Interscope Records, P ℗ 2008 Interscope Records",3765 +3766,spotify:track:1W3kOvOTfSRJgrAgeoUczq,He'll Have to Stay,spotify:artist:4f2WSqFHOISjWlyl9mYJJw,Jeanne Black,spotify:album:6jPO0ICPaAEChoTJRpH6fN,A Little Bit Lonely,spotify:artist:4f2WSqFHOISjWlyl9mYJJw,Jeanne Black,2001-09-20,https://i.scdn.co/image/ab67616d0000b27361f61ee1b746da6c81100957,1,2,159608,https://p.scdn.co/mp3-preview/19dd24347ef09dbab2fc879e8f0174f28628eae2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,ZA42A1538158,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.45,0.0843,10.0,-15.315,1.0,0.0406,0.984,7.58e-05,0.133,0.36,81.869,3.0,,TP4 Music,"C 2015 TP4 Music, P 2015 TP4 Music",3766 +3767,spotify:track:36vTL8WP4ZoD1bbUaW0V3E,Bad Company - 2015 Remaster,spotify:artist:5AEG63ajney2BoDXi0Vb84,Bad Company,spotify:album:4fuDpBLCt9ChDlqw48bj7p,Bad Company (Deluxe),spotify:artist:5AEG63ajney2BoDXi0Vb84,Bad Company,1974,https://i.scdn.co/image/ab67616d0000b2739adafd7f9d57380d1d0373af,1,5,288053,https://p.scdn.co/mp3-preview/fbaecabf8daaeba37f0ff4c2a113c70693020c59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT21405163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,glam metal,hard rock,mellow gold,rock,singer-songwriter,soft rock,southern rock",0.545,0.467,8.0,-10.862,1.0,0.0305,0.491,0.175,0.0805,0.444,113.713,4.0,,Rhino Atlantic,"C © 2015 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved., P ℗ 2015 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Manufactured & Marketed by Rhino Entertainment Company. Printed in U.S.A.",3767 +3768,spotify:track:0in4REtAn2V5JuPWmGDKMZ,I Love It,"spotify:artist:7dlqUnjoF2U2DkNDMhcgG4, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","Hilltop Hoods, Sia",spotify:album:16PFUJxmCvdQtqq5f2otKZ,Drinking From The Sun,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2012-01-01,https://i.scdn.co/image/ab67616d0000b273435925bbd64ededb613f952a,1,3,226413,https://p.scdn.co/mp3-preview/fb3e08cb379d712ad3bc63c40265ad5cfcaef419?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUHT01102001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,pop",0.683,0.87,11.0,-6.19,0.0,0.0714,0.00486,0.0,0.334,0.511,90.998,4.0,,Golden Era Records,"C © 2012 Hilltop Hoods Pty Ltd, P ℗ 2012 Hilltop Hoods Pty Ltd, under exclusive licence to UMA Pty Ltd",3768 +3769,spotify:track:46XMysg4VurmyAQ28tshqz,The Mess I Made,spotify:artist:2PCUhxD40qlMqsKHjTZD2e,Parachute,spotify:album:59YENayZZdriET9JqxZyLH,Losing Sleep (Deluxe Edition),spotify:artist:2PCUhxD40qlMqsKHjTZD2e,Parachute,2009-01-01,https://i.scdn.co/image/ab67616d0000b273034541812f648437766c5234,1,4,231453,https://p.scdn.co/mp3-preview/992d9af8765041f1379ac298332544c1cc209187?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USUM70964177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,charlottesville indie,neo mellow,neon pop punk,pop rock,viral pop",0.405,0.591,6.0,-5.129,1.0,0.0339,0.0153,0.0,0.199,0.173,165.377,4.0,,Mercury Records,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",3769 +3770,spotify:track:4rDbp1vnvEhieiccprPMdI,Somebody To Love - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:4KZGe18wZJbXL6JLW4KyLc,A Day At The Races (Deluxe Edition 2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1976-12-10,https://i.scdn.co/image/ab67616d0000b27367bc29c251c777361b17a190,1,6,296480,https://p.scdn.co/mp3-preview/5932351c4617463dc2f3dc4972df1c6818f38112?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBUM71029613,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.406,0.698,8.0,-7.024,1.0,0.0624,0.186,0.0,0.233,0.333,109.266,3.0,,EMI,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",3770 +3771,spotify:track:4qcaBnupWEEZO1jeiMonOY,This Love,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:6aL2SwYj5kSEvIcYORHP37,Hook Me Up,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2007-10-30,https://i.scdn.co/image/ab67616d0000b2730f3819fd1601ca0421194d32,1,4,178800,https://p.scdn.co/mp3-preview/d44ae2d132ad8821867a99e88d5890f76b25d75f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USWB10704604,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.636,0.747,8.0,-4.125,1.0,0.0881,0.0243,0.0,0.256,0.616,155.979,4.0,,Sire/Warner Records,"C © 2007 Sire Records for the U.S. Marketed by Warner Records Inc., A Warner Music Group Company., P ℗ 2007, 2008 Sire Records. Marketed by Warner Records Inc., A Warner Music Group Company",3771 +3772,spotify:track:3DXdjHnePKnh6oXw2ZgGSl,Smile,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:61HTU0pcDaTmotLnBQgoLs,Smile,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2020-07-10,https://i.scdn.co/image/ab67616d0000b273090ee9e18d8df70b863374b8,1,1,166898,https://p.scdn.co/mp3-preview/e914c237834342285bf5c60b5d6ab0edcd60be02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM72013803,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.783,0.912,0.0,-3.713,1.0,0.243,0.0238,0.0,0.339,0.749,98.025,4.0,,Capitol Records,"C © 2020 Capitol Records, LLC, P ℗ 2020 Capitol Records, LLC",3772 +3773,spotify:track:2eHj0klWkwRQuIrNlPpCPa,I'm Every Woman,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:7JVJlkNNobS0GSoy4tCS96,The Bodyguard - Original Soundtrack Album,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1992-11-17,https://i.scdn.co/image/ab67616d0000b273456c0b5d0316a80dc600802e,1,3,285106,https://p.scdn.co/mp3-preview/0af44b5e951a60994698fd23a857e7ee683ae372?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USAR19200003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.665,0.847,5.0,-8.314,0.0,0.0535,0.0178,0.00288,0.126,0.4,119.555,4.0,,Arista,P (P) 1992 Arista Records LLC,3773 +3774,spotify:track:5PYQUBXc7NYeI1obMKSJK0,Never Really Over,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:3KjXg0MDej2pG9fv6I22lT,Never Really Over,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2019-05-31,https://i.scdn.co/image/ab67616d0000b2739bea3b79b95f86d1b66ac960,1,1,223523,https://p.scdn.co/mp3-preview/b5f2e29c34fc8da8b5a576e18264120674cf0287?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM71901873,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.77,0.882,8.0,-4.792,1.0,0.0602,0.194,0.0,0.316,0.385,99.991,4.0,,Capitol Records,"C © 2019 Capitol Records, LLC, P ℗ 2019 Capitol Records, LLC",3774 +3775,spotify:track:55m1nHpipOmkTMaud26aSe,Somebody To You,"spotify:artist:7gAppWoH7pcYmphCVTXkzs, spotify:artist:6S2OmqARrzebs0tKUEyXyp","The Vamps, Demi Lovato",spotify:album:3fIJkvh7fe0WSyI5rxvOVP,Somebody To You,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,2014-01-01,https://i.scdn.co/image/ab67616d0000b273d360817b0ea7c138ac752242,1,1,183051,https://p.scdn.co/mp3-preview/cb0ebc4a12d57fc9bc5e82eaeb359c38184ae53b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71402611,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,pop,post-teen pop",0.562,0.871,3.0,-3.576,1.0,0.0445,0.0938,0.0,0.346,0.789,86.988,4.0,,Universal Music Group,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",3775 +3776,spotify:track:2bkpCVvOn2XZGhzA4fPyuZ,Mama Weer All Crazee Now,spotify:artist:1dLWg6m8RRhizsdqJbhyj3,Quiet Riot,spotify:album:2Vz8AIVn3YZNZME3QbZH3I,Condition Critical,spotify:artist:1dLWg6m8RRhizsdqJbhyj3,Quiet Riot,1984-11-24,https://i.scdn.co/image/ab67616d0000b2730859724f97d4b761a064d3b7,1,2,216560,https://p.scdn.co/mp3-preview/5dd8153ad6febff5b734275964f30127831be1fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM18300446,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,metal,rock",0.433,0.785,7.0,-13.527,1.0,0.0503,0.00726,0.0126,0.0889,0.421,136.484,4.0,,Pasha Records,P 1984 Sony Music Entertainment Inc.,3776 +3777,spotify:track:7MC4XR9M9amdmKQr2iDF7i,Iko Iko (My Bestie),"spotify:artist:5lTjv8Ag00qHSGhvK4JbeF, spotify:artist:6c8akjSeJQw2NYemV6qVT8","Justin Wellington, Small Jam",spotify:album:0IVeq4oFSUAAXmdQqXFTrU,Iko Iko (My Bestie),spotify:artist:5lTjv8Ag00qHSGhvK4JbeF,Justin Wellington,2019-06-03,https://i.scdn.co/image/ab67616d0000b2730953bc41694626f776e47ea5,1,1,182857,https://p.scdn.co/mp3-preview/80481173118041f19f77f59e02317186e852aa6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,QZFYX1950028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"melanesian pop,pacific islands pop,png pop,reggae do maranhao,solomon islands pop",0.862,0.753,5.0,-5.356,1.0,0.0625,0.131,2.01e-06,0.077,0.827,105.039,4.0,,RCA Records Label,P (P) 2021 Sony Music Entertainment UK Limited,3777 +3778,spotify:track:0idc0XRnLRovVqpWnGQ6hC,My Love,"spotify:artist:1dgdvbogmctybPrGEcnYf6, spotify:artist:4ScCswdRlyA23odg9thgIO","Route 94, Jess Glynne",spotify:album:4qugvZbeFLghKN67aQ6PAb,My Love,spotify:artist:1dgdvbogmctybPrGEcnYf6,Route 94,2014-01-01,https://i.scdn.co/image/ab67616d0000b273a8e5c3dc10bf00d4ed1abe8a,1,1,262000,https://p.scdn.co/mp3-preview/c98fbc08b450a1aef3b50323165ab6d44df52ac8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBQGW1300182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"house,uk dance,dance pop,pop,uk pop",0.818,0.595,8.0,-7.644,1.0,0.0515,0.00014,0.575,0.0612,0.729,119.99,4.0,,Universal Music Group,"C © 2014 Ammunition Promotions Ltd, under exclusive licence to UMO, P ℗ 2014 Ammunition Promotions Ltd, under exclusive licence to UMO",3778 +3779,spotify:track:1CnPYaKxTVb4LWOtiGOm0m,All Time Low,spotify:artist:50JJSqHUf2RQ9xsHs0KMHg,Jon Bellion,spotify:album:2e8nzTZ0HtK94IifOWgN7o,The Human Condition,spotify:artist:50JJSqHUf2RQ9xsHs0KMHg,Jon Bellion,2016-06-10,https://i.scdn.co/image/ab67616d0000b273a01c1fddc334c0bd15e4452d,1,3,217603,https://p.scdn.co/mp3-preview/ca348df191ad7d7b93a662c1c8457b1c513849ec?cid=9950ac751e34487dbbe027c4fd7f8e99,True,63,USUM71603666,spotify:user:bradnumber1,2021-08-08T09:26:31Z,indie pop rap,0.617,0.567,0.0,-4.188,1.0,0.0828,0.0584,0.0,0.0933,0.505,90.246,4.0,,Capitol Records (CAP),"C © 2016 Capitol Records, P ℗ 2016 Capitol Records",3779 +3780,spotify:track:21bM5kXcPqoIYPlhr1pWkB,The Breaking Point - 2015 Remaster,spotify:artist:5c9HsNOWkLSqCduVHX8iyO,Normie Rowe,spotify:album:3a7JXyIuAl4LZ4niKhEf2W,Frenzy! The 50th Anniversary Collection,spotify:artist:5c9HsNOWkLSqCduVHX8iyO,Normie Rowe,2015-06-05,https://i.scdn.co/image/ab67616d0000b273221b1558078e41a184f29a9e,1,11,136386,https://p.scdn.co/mp3-preview/57664f6fed229e54808e82cd02efecb12adaf099?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,AU3O01401509,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.377,0.905,5.0,-5.132,1.0,0.0597,0.0258,0.0,0.212,0.727,91.483,4.0,,WM Australia,"C © 2015 Warner Music Australia Pty Ltd, P ℗ 2015 Warner Music Australia Pty Ltd",3780 +3781,spotify:track:2fytePz8UsbUr8n33QBEcm,I Just Can't Stop Loving You (feat. Siedah Garrett) - 2012 Remaster,"spotify:artist:3fMbdgg4jU18AjLCKBhRSm, spotify:artist:7EVlecngyrLHfQUqFMpwkT","Michael Jackson, Siedah Garrett",spotify:album:24TAupSNVWSAHL0R7n71vm,Bad 25th Anniversary,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2012-09-18,https://i.scdn.co/image/ab67616d0000b2731bb21d27effb96a1d0fe8d6d,1,8,251760,https://p.scdn.co/mp3-preview/2dc9261ef732e5f5c0a259bc62bf79a63e8cac93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM11204987,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul,freestyle",0.657,0.467,5.0,-8.925,1.0,0.0341,0.667,1.92e-06,0.0295,0.276,100.139,4.0,,Epic/Legacy,P (P) 1993 MJJ Productions Inc./(P) 2012 MJJ Productions Inc./(P) 2012 MJJ Productions Inc.,3781 +3782,spotify:track:25Cv6pteVL6Wm4GIvPCFnO,Back Off Boogaloo,spotify:artist:6DbJi8AcN5ANdtvJcwBSw8,Ringo Starr,spotify:album:6HuHvPC7L7MiJgkqpZlmH4,Goodnight Vienna,spotify:artist:6DbJi8AcN5ANdtvJcwBSw8,Ringo Starr,1974,https://i.scdn.co/image/ab67616d0000b273493c660d0ab18d0524b601f8,1,12,202426,https://p.scdn.co/mp3-preview/ee96893e81175dc03f3acdf2ebb8573387ebd703?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAYE7200344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,rock drums",0.402,0.824,4.0,-10.258,1.0,0.0411,0.127,1.22e-05,0.0623,0.897,176.431,4.0,,Parlophone,"C © 1992 EMI Records Ltd, P ℗ 1992 EMI Records Ltd",3782 +3783,spotify:track:3NagMImAXyeYaMsXs2bjqt,Standing With You,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:5uIkJUDTbuKuR8RWB18VLk,Standing With You,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2020-06-26,https://i.scdn.co/image/ab67616d0000b273881b352a1ddb654c52347ce8,1,1,232049,https://p.scdn.co/mp3-preview/5e3f6d9e664295ec2de9ac4f28215d162c25f9d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUBM02000384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.476,0.652,0.0,-4.748,1.0,0.0353,0.159,0.0,0.0967,0.115,111.917,4.0,,Sony Music Entertainment,P (P) 2020 Sony Music Entertainment Australia Pty Ltd,3783 +3784,spotify:track:0fuP0ykgrDSxk5odNU7Gy2,22,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:5gb8MAEH9D2EYylqlWNBiK,22,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2012-01-01,https://i.scdn.co/image/ab67616d0000b2734c5607f129e9b28fced17fe6,1,1,231866,https://p.scdn.co/mp3-preview/1b4124cc7491388bee81e06097bdb5aa33fe7254?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1231040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.662,0.74,7.0,-6.558,1.0,0.0382,0.00248,0.000986,0.0625,0.649,104.007,4.0,,"Big Machine Records, LLC","C © 2013 Big Machine Records, LLC., P ℗ 2012 Big Machine Records, LLC.",3784 +3785,spotify:track:3YBZIN3rekqsKxbJc9FZko,Paradise City,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:3I9Z1nDCL4E0cP62flcbI5,Appetite For Destruction,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1987-07-21,https://i.scdn.co/image/ab67616d0000b27368384dd85fd5e95831252f60,1,6,405640,https://p.scdn.co/mp3-preview/6c99e08ad1885d08023354ac96b546ffe3dee44b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,9,USGF18714806,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.273,0.952,11.0,-8.762,1.0,0.0843,0.0169,0.0111,0.142,0.472,100.271,4.0,,Guns N Roses P&D,"C © 1987 The David Geffen Company, P ℗ 1987 UMG Recordings, Inc.",3785 +3786,spotify:track:1e9oZCCiX42nJl0AcqriVo,Watermelon Sugar,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,spotify:album:659e2eKbsMH0vYCs5qgFmy,Watermelon Sugar,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,2019-11-17,https://i.scdn.co/image/ab67616d0000b2737cf2b9825bb43083d123ac22,1,1,174000,https://p.scdn.co/mp3-preview/824cd58da2e9a15eeaaa6746becc09093547a09b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USSM11912587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.548,0.816,0.0,-4.209,1.0,0.0465,0.122,0.0,0.335,0.557,95.39,4.0,,Columbia,"P (P) 2019 Erskine Records Limited, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",3786 +3787,spotify:track:2CPqh63wRVscbceKcPxwvv,The Ocean (feat. Shy Martin),"spotify:artist:6lB8vOoI4DRrrVxXwuV19c, spotify:artist:7eCmccnRwPmRnWPw61x6jM","Mike Perry, shy martin",spotify:album:4pgNeQfSctryAw4e0uESHe,The Ocean (feat. Shy Martin),spotify:artist:6lB8vOoI4DRrrVxXwuV19c,Mike Perry,2016-04-15,https://i.scdn.co/image/ab67616d0000b2737f401862bfe87b552a75308d,1,1,183414,https://p.scdn.co/mp3-preview/515b1e8609dc4b1bb3338b4717b044e9762ed42e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,SE3AA1600005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,swedish tropical house,alt z,swedish electropop",0.632,0.575,5.0,-6.478,1.0,0.029,0.0225,1.81e-06,0.104,0.188,90.037,4.0,,DF Records,P (P) 2016 DF Records. Distributed by Sony Music Entertainment Sweden AB,3787 +3788,spotify:track:7GqIDx2QVGOpd4r1fZaUUW,25 or 6 to 4 - 2002 Remaster,spotify:artist:3iDD7bnsjL9J4fO298r0L0,Chicago,spotify:album:0PRgsdDXQ8QPaDUetVF7yN,Chicago II,spotify:artist:3iDD7bnsjL9J4fO298r0L0,Chicago,1970-01-26,https://i.scdn.co/image/ab67616d0000b273f97c928726d4abbaed5aebf9,1,14,289800,https://p.scdn.co/mp3-preview/d9ce63eb1efb4e1baf88ddfde5c04f6cd40d7a6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRH10285518,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,soft rock,yacht rock",0.604,0.905,4.0,-7.059,0.0,0.0578,0.309,0.0632,0.0837,0.723,147.448,4.0,,Rhino,"C © 2004 Warner Strategic Marketing, Inc., P ℗ 2004 Warner Strategic Marketing, Inc.",3788 +3789,spotify:track:4WsiGfiV4bPCa8jmnl5gnt,Ferry Cross the Mersey - Mono Version; 1997 Remaster,spotify:artist:3UmBeGyNwr4iDWi1vTxWi8,Gerry & The Pacemakers,spotify:album:51mN3VJrZjN6h30AuqAqGD,Ferry Cross The Mersey [Mono And Stereo Version],spotify:artist:3UmBeGyNwr4iDWi1vTxWi8,Gerry & The Pacemakers,1965-02-01,https://i.scdn.co/image/ab67616d0000b27334003545ff334efe7484112c,1,12,144520,https://p.scdn.co/mp3-preview/8dad98057239b72bc494749ab146728aba8e2a51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,GBAYE9701765,spotify:user:bradnumber1,2022-06-29T07:10:29Z,"british invasion,merseybeat,rock-and-roll",0.435,0.396,6.0,-9.246,0.0,0.0281,0.273,5.15e-06,0.112,0.587,104.318,4.0,,Parlophone UK,"C © 1997 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1997 Parlophone Records Ltd, a Warner Music Group Company",3789 +3790,spotify:track:0qUnBLZ8bJqUNEeQgayL9t,Out Of The Woods,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1yGbNOtRIgdIiGHOEBaZWf,1989 (Deluxe),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-01-01,https://i.scdn.co/image/ab67616d0000b27352b2a3824413eefe9e33817a,1,4,235800,https://p.scdn.co/mp3-preview/447e45abd2130003e87f3fd84c1c8bb87ea55358?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USCJY1431329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.553,0.841,7.0,-6.937,1.0,0.0396,0.000743,1.19e-05,0.341,0.338,92.008,4.0,,"Big Machine Records, LLC","C © 2014 Apollo A-1 LLC, P ℗ 2014 Apollo A-1 LLC",3790 +3791,spotify:track:4kLLWz7srcuLKA7Et40PQR,I Gotta Feeling,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:1dgbFU08pXJXZhGPlybdMX,THE E.N.D. (THE ENERGY NEVER DIES) [Deluxe Version],spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2009-01-01,https://i.scdn.co/image/ab67616d0000b2730bd44f5ff9ecc99f7770acc5,1,5,289133,https://p.scdn.co/mp3-preview/b3398fc473e546c85e965482e7b908342c46b7b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USUM70965169,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.744,0.766,0.0,-6.375,1.0,0.0265,0.0873,0.0,0.509,0.61,127.966,4.0,,Interscope,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",3791 +3792,spotify:track:0DSVKdlgw5l1A2p1jQVSAJ,The Sound,spotify:artist:3mIj9lX2MWuHmhNCA7LSCW,The 1975,spotify:album:26PjSvEuyRldVwA6DRb7m3,"I like it when you sleep, for you are so beautiful yet so unaware of it",spotify:artist:3mIj9lX2MWuHmhNCA7LSCW,The 1975,2016-03-11,https://i.scdn.co/image/ab67616d0000b2736d955443189610c5bfc8ff05,1,13,248879,https://p.scdn.co/mp3-preview/d33151ea8f83f00e753e0acb5ab8df0b6d6c1142?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBK3W1500429,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern alternative rock,modern rock,pop,pov: indie,rock",0.648,0.936,0.0,-4.745,1.0,0.0762,0.085,6.93e-06,0.482,0.566,120.708,4.0,,Dirty Hit Ltd,P (P) 2016 Dirty Hit under exclusive license to Sony Music Entertainment Australia Pty Ltd.,3792 +3793,spotify:track:1raiIrqaqRAqZmQWZlLuBd,Lady Madonna - Remastered 2015,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:7vEJAtP3KgKSpOHVgwm3Eh,1 (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,2000-11-13,https://i.scdn.co/image/ab67616d0000b273582d56ce20fe0146ffa0e5cf,1,20,136826,https://p.scdn.co/mp3-preview/bc07203fac8413aa9cee952973dc7727094745b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBUM71505905,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.65,0.777,2.0,-4.984,1.0,0.0294,0.141,0.343,0.215,0.574,109.608,4.0,,UMC (Universal Music Catalogue),"C © 2015 Apple Corps Ltd., P This Compilation ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",3793 +3794,spotify:track:5HrVgmO1govSOrPUehW1VV,On My Own,spotify:artist:0ty0xha1dbprYIUAQufkFn,Patti LaBelle,spotify:album:5wESpjGUZ1QKY2DziNM5fN,Winner In You,spotify:artist:0ty0xha1dbprYIUAQufkFn,Patti LaBelle,1986-01-01,https://i.scdn.co/image/ab67616d0000b273c2c5e9c6b9173a1379b951a3,1,2,290840,https://p.scdn.co/mp3-preview/f1a023726572954362477c3a1f2186182fb12cdb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USMC18618950,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,philly soul,quiet storm,r&b,soul,urban contemporary",0.62,0.402,5.0,-12.964,1.0,0.0264,0.337,6.13e-05,0.312,0.483,92.093,4.0,,Geffen,"C © 1986 MCA Records Inc., P ℗ 1986 UMG Recordings, Inc.",3794 +3795,spotify:track:3Ui2jdyxbZQrZohfM0NOgG,Tattoo,spotify:artist:2AQjGvtT0pFYfxR3neFcvz,Jordin Sparks,spotify:album:6JCNOvp9UeMrFuXwNW0JW6,Jordin Sparks,spotify:artist:2AQjGvtT0pFYfxR3neFcvz,Jordin Sparks,2007-11-20,https://i.scdn.co/image/ab67616d0000b273260e2444b3431b3b8b559bc3,1,1,233466,https://p.scdn.co/mp3-preview/f66621e67ea7213bdb828b61b08a01b09ca03d23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBCTA0700266,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,urban contemporary",0.566,0.766,2.0,-5.036,1.0,0.0399,0.431,0.0,0.101,0.547,168.005,4.0,,19 Recordings,"P (P) 2007 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",3795 +3796,spotify:track:1agVrzicFWExgEiAtk8lmr,Cum on Feel the Noize,spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,spotify:album:0gAA09tbZAALAGebq8R3mW,Sladest (Expanded),spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,1973-09-28,https://i.scdn.co/image/ab67616d0000b27323840816dd15f4053bdd494d,1,1,264880,https://p.scdn.co/mp3-preview/8f6fdcd20d9b2d4e2df63731fcf195b1004080fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBC267300010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.398,0.86,7.0,-4.574,1.0,0.0663,0.00155,0.683,0.154,0.564,138.09,4.0,,BMG Rights Management (UK) Limited,"C © 2011 Whild John Ltd. under exclusive licence to BMG Rights Management (UK) Ltd., P ℗ 2011 Whild John Ltd. under exclusive licence to BMG Rights Management (UK) Ltd.",3796 +3797,spotify:track:1KP6ieHBqTmEjqLy75gAEn,High,spotify:artist:6edGSAX5dVpeJVwu1Q0NwJ,Lighthouse Family,spotify:album:5yK7iXnoIpuJwW8FsAdgYf,Postcards From Heaven,spotify:artist:6edGSAX5dVpeJVwu1Q0NwJ,Lighthouse Family,1997-01-01,https://i.scdn.co/image/ab67616d0000b27315b1f612cacf1a84f2c074d6,1,6,309666,https://p.scdn.co/mp3-preview/3fbf1f8012496029c7a9a7d2e718a9d69f675b9b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALS9700072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,new wave pop",0.663,0.624,10.0,-8.484,1.0,0.0247,0.0902,0.0665,0.0985,0.587,102.317,4.0,,Polydor,"C © 1997 Polydor Ltd. (UK), P ℗ 1997 Polydor Ltd. (UK)",3797 +3798,spotify:track:4r3MJuJIArZTQfOinh1HFa,Livin' It Up,"spotify:artist:1J2VVASYAamtQ3Bt8wGgA6, spotify:artist:5aEWnrN8h3MhuFUPRfaVuy","Ja Rule, Case",spotify:album:4Xc3wBfUZ9yiszOrttoCXV,Pain Is Love (International Version),spotify:artist:1J2VVASYAamtQ3Bt8wGgA6,Ja Rule,2001-10-29,https://i.scdn.co/image/ab67616d0000b273e32189a249c2e0550eb97236,1,3,256959,https://p.scdn.co/mp3-preview/67aac99634ea486055b2015116ff30d38393b282?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDJ20110768,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,gangster rap,hip hop,hip pop,pop rap,queens hip hop,rap,urban contemporary,contemporary r&b,new jack swing,r&b",0.873,0.765,1.0,-4.088,1.0,0.321,0.0575,0.0,0.0498,0.638,106.024,4.0,,Def Jam Recordings,"C © 2001 The Island Def Jam Music Group, P ℗ 2001 The Island Def Jam Music Group",3798 +3799,spotify:track:1louJpMmzEicAn7lzDalPW,No Promises (feat. Demi Lovato),"spotify:artist:7DMveApC7UnC2NPfPvlHSU, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Cheat Codes, Demi Lovato",spotify:album:6301sWkK7hVwcrhcEwKPcH,No Promises (feat. Demi Lovato),spotify:artist:7DMveApC7UnC2NPfPvlHSU,Cheat Codes,2017-03-31,https://i.scdn.co/image/ab67616d0000b273e74ecdb2f1316c8f026970a8,1,1,223503,https://p.scdn.co/mp3-preview/90fc354b6cc17ebdd5289b54a869249ca3769bf0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,QMCE31700953,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,pop,post-teen pop",0.741,0.667,10.0,-5.445,1.0,0.134,0.0575,0.0,0.106,0.595,112.956,4.0,,Parlophone UK,"C © 2017 300 Entertainment under exclusive license to Parlophone Records Limited, a Warner Music Group Company, P ℗ 2017 300 Entertainment under exclusive license to Parlophone Records Limited, a Warner Music Group Company",3799 +3800,spotify:track:5dDPFVD26G55XYYaKIexRS,We Love You - Single Version/Mono,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:5nKpMsduwp5xqCKq2IbSKv,The Rolling Stones In Mono (Remastered 2016),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1966-01-01,https://i.scdn.co/image/ab67616d0000b2738d1570a03b9354518f0b618b,15,18,276960,https://p.scdn.co/mp3-preview/35ceb9a5e6458025a4c0dbea86e0c2e42164f204?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USA171610146,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.24,0.779,4.0,-6.961,1.0,0.0373,0.00259,0.134,0.319,0.47,101.931,4.0,,"ABKCO Music & Records, Inc.","C © 2016 ABKCO Music & Records, Inc., P ℗ 2016 This compilation ABKCO Music & Records, Inc.",3800 +3801,spotify:track:0f6pHbsLzpWxl5CfhOUjBA,I Knew You Were Waiting (For Me),"spotify:artist:19ra5tSw0tWufvUp8GotLo, spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok","George Michael, Aretha Franklin",spotify:album:7ykbGO2RgrrdQ1Yc6svUFy,Aretha,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,1986,https://i.scdn.co/image/ab67616d0000b2739ad81d6f54a9943c0d2ddc6f,1,2,241000,https://p.scdn.co/mp3-preview/e3428e98f26d9e8fb2c9e373acc23af2978fc6e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR18600111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock,classic soul,jazz blues,memphis soul,soul,southern soul,vocal jazz",0.71,0.639,4.0,-12.839,1.0,0.045,0.23,0.0,0.172,0.733,107.947,4.0,,Arista,"P (P) 1986 RCA Records, a division of Sony Music Entertainment",3801 +3802,spotify:track:5opuphTIXgUUClEs5mnIQN,I'm Sorry,spotify:artist:7EK1bQADBoqbYXnT4Cqv9w,John Denver,spotify:album:6IPZ8ArBkdRBDmI3zG5hpE,Windsong,spotify:artist:7EK1bQADBoqbYXnT4Cqv9w,John Denver,1975-09,https://i.scdn.co/image/ab67616d0000b2737602c46b0c1059cc0bdc9f10,1,9,211773,https://p.scdn.co/mp3-preview/e3a04f61b55cc4780aad2e58cfe8b6afb2688d9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USRC11100358,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.447,0.236,7.0,-15.258,1.0,0.0313,0.891,0.00151,0.201,0.527,127.596,4.0,,RCA/Legacy,"P (P) 1975 RCA Records, a division of Sony Music Entertainment",3802 +3803,spotify:track:6yHr9BVVIvYbmMLWzXppbh,Give a Little Love,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,spotify:album:1HG3FGlUe4Q5yQPtnBusYY,Bay City Rollers - The Best Of,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,2004-04-03,https://i.scdn.co/image/ab67616d0000b273aff2c1e541d73118b874324b,1,4,202813,https://p.scdn.co/mp3-preview/10a4b37e1b2fcf9dc1fca1fc3b910ad579e12f29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USAR17500211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.531,0.523,0.0,-7.646,1.0,0.0299,0.42,0.0,0.118,0.777,126.191,4.0,,Arista,P (P) 2004 BMG UK & Ireland Ltd.,3803 +3804,spotify:track:3sZWxtVuRc1Iet6ELwRz43,Anywhere Away From Here (Rag’n’Bone Man & P!nk),"spotify:artist:4f9iBmdUOhQWeP7dcAn1pf, spotify:artist:1KCSPY1glIKqW2TotWuXOR","Rag'n'Bone Man, P!nk",spotify:album:1I8e5aPdqwrP3UJUMyaOMD,Anywhere Away From Here (Rag’n’Bone Man & P!nk),"spotify:artist:4f9iBmdUOhQWeP7dcAn1pf, spotify:artist:1KCSPY1glIKqW2TotWuXOR","Rag'n'Bone Man, P!nk",2021-04-09,https://i.scdn.co/image/ab67616d0000b273fa4aa535d970e9ad91c50cb9,1,1,238639,https://p.scdn.co/mp3-preview/17e6b63bab8ceafb4d8093a37923512e373392a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL2001640,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,dance pop,pop",0.395,0.288,11.0,-10.465,1.0,0.0345,0.656,0.0,0.116,0.189,130.571,4.0,,Best Laid Plans/Columbia,P (P) 2021 Sony Music Entertainment UK Limited,3804 +3805,spotify:track:00QHQvdiK1uvCJcIClrFyP,Symphony of Life,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,spotify:album:3eArVEbkPCtNGoCFkFCftz,Greatest Hits 1994 - 2004,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,2004-11-06,https://i.scdn.co/image/ab67616d0000b273760ffd6240e045b0c0d7e17c,1,9,286106,https://p.scdn.co/mp3-preview/5ddd59bff410a10d2f6aba6a34d72d58c9f5075e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUSM00100152,spotify:user:bradnumber1,2022-02-03T10:03:57Z,"australian dance,australian pop,australian rock",0.579,0.625,4.0,-9.509,0.0,0.042,0.0231,1.61e-05,0.0992,0.0464,119.961,4.0,,Columbia,P (P) 2004 Sony Music Entertainment Australia Pty Ltd,3805 +3806,spotify:track:4FLZI7tQ5vjPKZ72rblySG,Dreamlover,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:6kRdK7cPgLqNfSoI7AMlyj,#1 to Infinity,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2015-05-15,https://i.scdn.co/image/ab67616d0000b2739ad666bef28b02eff5476ddd,1,5,233600,https://p.scdn.co/mp3-preview/534478be64a0ca334f4d327128c835c4f925cacb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USSM19303170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.693,0.743,5.0,-5.359,1.0,0.0359,0.196,0.0,0.192,0.726,100.675,4.0,,Columbia/Legacy,"P (P) 1990, 1991, 1992, 1993, 1995, 1997, 1999 Columbia Records, a division of Sony Music Entertainment, 2005, 2008 The Island Def Jam Music Group and Mariah Carey, 2015 Epic Records, a division of Sony Music Entertainment",3806 +3807,spotify:track:7aUuoq4oMfLxaLa5GVUDHi,Way down We Go,spotify:artist:7jdFEYD2LTYjfwxOdlVjmc,KALEO,spotify:album:28I1XWP7hYWdexJnuXE9HE,Way down We Go,spotify:artist:7jdFEYD2LTYjfwxOdlVjmc,KALEO,2015-08-07,https://i.scdn.co/image/ab67616d0000b273ff24db4bc917e09a986edf2b,1,1,219560,https://p.scdn.co/mp3-preview/4d0d579df9d5a1cc708f3bba52e243162f4fb3ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT21502122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"icelandic indie,icelandic rock,modern alternative rock",0.59,0.578,10.0,-5.798,0.0,0.0528,0.612,0.000162,0.0837,0.264,81.663,4.0,,Elektra (NEK),"C © 2015 Elektra/Atlantic Records for the United States and WEA International Inc. for the world excluding the United States and Iceland, P ℗ 2015 Elektra/Atlantic Records for the United States and WEA International Inc. for the world excluding the United States and Iceland",3807 +3808,spotify:track:56DahzmzLeMsmZYEOtPcCX,Punching In A Dream,spotify:artist:0oeUpvxWsC8bWS6SnpU8b9,The Naked And Famous,spotify:album:4kUEUO4zw6MCCYrVuecTIv,"Passive Me, Aggressive You (Deluxe Edition)",spotify:artist:0oeUpvxWsC8bWS6SnpU8b9,The Naked And Famous,2010,https://i.scdn.co/image/ab67616d0000b273382a64ccd5de095aea8b7e61,1,2,238133,https://p.scdn.co/mp3-preview/9aeac7fcb4bfbede51c8a39df79b5867aa847856?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,NZNK11000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"auckland indie,indietronica,kiwi rock,metropopolis",0.354,0.887,6.0,-3.525,1.0,0.0548,0.00153,0.000573,0.139,0.171,114.446,4.0,,Universal Music New Zealand Limited,"C © 2011 Somewhat Damaged, P ℗ 2011 Somewhat Damaged",3808 +3809,spotify:track:6sHsXIJoEN5JpdkGMQDJxt,The Boy Is Mine,"spotify:artist:05oH07COxkXKIMt6mIPRee, spotify:artist:6nzxy2wXs6tLgzEtqOkEi2","Brandy, Monica",spotify:album:1Co6e9ag1gRKcWdG7xKcCi,Never Say Never,spotify:artist:05oH07COxkXKIMt6mIPRee,Brandy,1998-05-29,https://i.scdn.co/image/ab67616d0000b27389c9590c941cec56429f2456,1,3,294786,https://p.scdn.co/mp3-preview/5634b0d8556704d10618540c8b86f2721ca6a04d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USAT29800316,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,hip pop,r&b,urban contemporary,contemporary r&b,hip pop,r&b,urban contemporary",0.704,0.707,1.0,-6.537,0.0,0.0391,0.539,0.00106,0.318,0.761,93.145,4.0,,Atlantic Records,"C © 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",3809 +3810,spotify:track:5hE3T2329sdMmIrHxjhQDL,Selling The Drama,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,spotify:album:3XbMeJ9zrtH806HuHWkZF2,Throwing Copper,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,1994-01-01,https://i.scdn.co/image/ab67616d0000b273cf4c914bea5aba3e3066595a,1,2,208293,https://p.scdn.co/mp3-preview/65a30ef7289605fe3a86b9c060fc29f6562c1e07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRR29342150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,pop rock,post-grunge",0.45,0.914,6.0,-6.741,1.0,0.0647,0.0106,8.18e-05,0.101,0.336,124.42,4.0,,Radioactive,"C © 1994 Radioactive Records J.V., P ℗ 1994 Radioactive Records J.V.",3810 +3811,spotify:track:3BZEcbdtXQSo7OrvKRJ6mb,MONTERO (Call Me By Your Name),spotify:artist:7jVv8c5Fj3E9VhNjxT4snq,Lil Nas X,spotify:album:5iZytG7j5DDp9RlsmkGI97,MONTERO (Call Me By Your Name),spotify:artist:7jVv8c5Fj3E9VhNjxT4snq,Lil Nas X,2021-03-26,https://i.scdn.co/image/ab67616d0000b273ddb9cf14094fa5b3f8683b14,1,1,137875,https://p.scdn.co/mp3-preview/6d0edb4a3a0061ad162b279081c3f573e9d0dd40?cid=9950ac751e34487dbbe027c4fd7f8e99,True,4,USSM12100531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,lgbtq+ hip hop,0.61,0.508,8.0,-6.682,0.0,0.152,0.297,0.0,0.384,0.758,178.818,4.0,,Columbia,"P (P) 2021 Columbia Records, a Division of Sony Music Entertainment",3811 +3812,spotify:track:54QN9vztCmMewuHjSlJVz6,Massachusetts - Mono,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:2oeuTgRudy4dVoFa15gf05,Horizontal (Deluxe Version),spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1968-02-01,https://i.scdn.co/image/ab67616d0000b2730038accd6a5c1b5130e3730a,1,19,141906,https://p.scdn.co/mp3-preview/cef7219a9ea39ee2e7c046ef3cbfaecb2070a0e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USRH10651846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.505,0.541,7.0,-9.269,1.0,0.0271,0.000237,0.0828,0.0783,0.703,103.963,4.0,,Bee Gees Catalog,"C © 2006 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, P This Compilation ℗ 2006 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb",3812 +3813,spotify:track:6jg5SRvdGxvJ0DzNV0UqEK,Please Don't Go,spotify:artist:2KsP6tYLJlTBvSUxnwlVWa,Mike Posner,spotify:album:2nnIlWcriIqcJtjduWcTRl,31 Minutes to Takeoff,spotify:artist:2KsP6tYLJlTBvSUxnwlVWa,Mike Posner,2010-08-09,https://i.scdn.co/image/ab67616d0000b273d6165c0d6eba7e5bf3fca16d,1,2,196813,https://p.scdn.co/mp3-preview/d33396175c666bd21031d96270b4cd015b6f5713?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USJAY1000077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop dance,pop rap",0.699,0.882,4.0,-3.896,0.0,0.0311,0.00296,0.0544,0.13,0.657,120.016,4.0,,J Records,"P (P) 2010 J Records, a unit of Sony Music Entertainment",3813 +3814,spotify:track:59iinItceTkO05vu2Yf6kX,Don't Stop (Wiggle Wiggle) - OHB Radio Edit,spotify:artist:4eb7QPyORtTxhMiLBo3YWK,The Outhere Brothers,spotify:album:3w2YJTPFOXO793xcjPhBWJ,1 Polish 2 Biscuits & a Fish Sandwich,spotify:artist:4eb7QPyORtTxhMiLBo3YWK,The Outhere Brothers,1994-01-01,https://i.scdn.co/image/ab67616d0000b2738e0d8a110fc374faee612657,1,8,197573,https://p.scdn.co/mp3-preview/a907fe3e4ee065ce9653fcd60ea563f7a0e43998?cid=9950ac751e34487dbbe027c4fd7f8e99,True,48,CAU119402051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house",0.855,0.984,7.0,-9.707,1.0,0.081,0.000663,0.533,0.286,0.891,129.954,4.0,,UNIDISC MUSIC INC.,"C 1994 Unidisc Music Inc., P 1994 Unidisc Music Inc.",3814 +3815,spotify:track:0OptZhhWJpXkuSB7NWXBhq,Let's Make A Night To Remember,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:3TUsU5vU8MIPNk8K3n0rea,The Best Of Me,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1999-01-01,https://i.scdn.co/image/ab67616d0000b273b2ff0bbd92e0489bb95cccaf,1,5,377906,https://p.scdn.co/mp3-preview/cded993cfd5b7f926e03780167d13045c35e4671?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19602288,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.472,0.625,0.0,-6.76,1.0,0.0251,0.198,0.00101,0.142,0.395,175.897,4.0,,Universal Music Australia Pty. Ltd.,"C © 1999 A&M Records Inc., P ℗ 1999 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",3815 +3816,spotify:track:2wTdZ6wy0AJp5LcYzWcVt5,Down in the Boondocks,spotify:artist:4WFTfNjxQYskBioYk39r9n,Billy Joe Royal,spotify:album:0Bf7v7RTkbrXDgs3T2SWh7,Down in the Boondocks,spotify:artist:4WFTfNjxQYskBioYk39r9n,Billy Joe Royal,1965,https://i.scdn.co/image/ab67616d0000b2731a8ad6f3e3d636a79ec5f3c3,1,6,153146,https://p.scdn.co/mp3-preview/e59bc44f122a98433210b94870a0478b40446868?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USSM11501552,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,swamp pop",0.675,0.588,9.0,-11.031,1.0,0.0457,0.492,9.45e-06,0.0953,0.94,82.949,4.0,,Columbia/Legacy,"P Originally released 1965. All rights reserved by Columbia Records, a division of Sony Music Entertainment",3816 +3817,spotify:track:3M2p6ih143unO1rVfezPBj,What's Up? - Edit,spotify:artist:0Je74SitssvJg1w4Ra2EK7,4 Non Blondes,spotify:album:7EDyx6Nf5MZReG8E1O5L3S,The Gold Seal Collection: 90’s Classics – 1990-1999,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-07-03,https://i.scdn.co/image/ab67616d0000b273f686c770af1bef2bffd20303,1,20,252853,https://p.scdn.co/mp3-preview/62b3c85312324863ae64f1b9b329168ba267d833?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10211669,spotify:user:bradnumber1,2020-03-05T09:20:39Z,"new wave pop,pop rock",0.575,0.684,2.0,-6.463,1.0,0.0265,0.14,0.0,0.0997,0.519,134.323,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",3817 +3818,spotify:track:3kiym836jU3q3eQhTRfayR,Trouble Trouble,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,spotify:album:2DxK0vgADaZa48ElwMkLIF,The Potbelleez,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,2016-06-03,https://i.scdn.co/image/ab67616d0000b27341e221ea3a3c810b92adbbee,1,1,209765,https://p.scdn.co/mp3-preview/496d0b42615f38336a72ae1dd01820b0178d71bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUNV01600915,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian house",0.69,0.985,8.0,-0.861,1.0,0.109,0.129,0.0,0.152,0.634,127.971,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Hussle Recordings, P ℗ 2016 Hussle Recordings",3818 +3819,spotify:track:3LlAyCYU26dvFZBDUIMb7a,Demons,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:6htgf3qv7vGcsdxLCDxKp8,Night Visions,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273b2b2747c89d2157b0b29fb6a,1,4,175200,https://p.scdn.co/mp3-preview/dffa47dbbfe06cff32e8b676e66e7d50ad358ca7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USUM71201071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.5,0.71,3.0,-3.015,1.0,0.0339,0.19,0.00025,0.329,0.419,89.929,4.0,,Kid Ina Korner / Interscope,"C © 2012 KIDinaKORNER/Interscope Records, P ℗ 2012 KIDinaKORNER/Interscope Records",3819 +3820,spotify:track:3mlMpmY8oZIBFc39D9zLbh,The Long And Winding Road - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:0jTGHV5xqHPvEcwL8f6YU5,Let It Be (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1970-05-08,https://i.scdn.co/image/ab67616d0000b27384243a01af3c77b56fe01ab1,1,10,218186,https://p.scdn.co/mp3-preview/e248bd884210ccf1dd62ee9fd3bf130202134522?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAYE0601717,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.299,0.329,3.0,-10.096,1.0,0.0279,0.756,0.0105,0.0559,0.392,132.282,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",3820 +3821,spotify:track:3DnzEB8Ffnp5sjnCbOugUX,Perfect,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:6jounr3SZ2ik5hDNmD3sYB,Perfect,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2015-10-16,https://i.scdn.co/image/ab67616d0000b2739bee2a8c095dc119e0259427,1,1,230333,https://p.scdn.co/mp3-preview/ba309a7db943a8cc2445d1f744685d1d30bb47ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1500104,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.647,0.823,2.0,-5.231,1.0,0.0762,0.0598,0.0,0.119,0.396,99.933,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,3821 +3822,spotify:track:7uUMd6zu3nz1EcMn21ns1P,Don't Worry Be Happy,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:7Dwm8phGxhSpcevMteSMnc,Armageddon,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2012-10-15,https://i.scdn.co/image/ab67616d0000b2731a53a2c21445ade01915125a,1,7,269213,https://p.scdn.co/mp3-preview/cd7ea2ba9439a78d79b32e88d2e1a588754ed016?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01200280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.695,0.804,5.0,-2.838,0.0,0.0553,0.00201,0.0,0.0531,0.798,125.002,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,3822 +3823,spotify:track:3y9zMGuxWS8xkpOxNPfiMZ,Miss You Love,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:10bobqzP8mtragmflBolOM,Neon Ballroom,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,1999-03-08,https://i.scdn.co/image/ab67616d0000b27302629081ad3b70375352dd19,1,5,240733,https://p.scdn.co/mp3-preview/f245488981d635a2784ebb5fa0270f8c36801885?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUSM09800227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.353,0.464,7.0,-8.543,1.0,0.0272,0.0378,0.000969,0.0944,0.148,144.222,3.0,,Sony Music Entertainment,P (P) 1999 Sony Music Entertainment Australia Pty Ltd,3823 +3824,spotify:track:6Sq8sCfsDR0345z088YFgU,Banks of the Ohio,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:4LZhAy9UsJ0EiqqeKyrlts,Hopelessly Devoted: The Hits,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2018-06-08,https://i.scdn.co/image/ab67616d0000b273ea73235699dcf414d1e1adae,1,10,194293,https://p.scdn.co/mp3-preview/689efadf5b1d49407d6e798a6fb0ceb907bc34c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,QM75X1800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.518,0.641,0.0,-5.98,1.0,0.0274,0.555,2.52e-06,0.174,0.674,130.097,4.0,,Sony Music Entertainment,"P (P) 2018 ONJ Productions, Ltd. under exclusive licence to Sony Music Entertainment Australia Pty Ltd",3824 +3825,spotify:track:5LOaKdW9D2Gl9neAN94NbR,Somewhere Only We Know,spotify:artist:53A0W3U0s8diEn9RhXQhVz,Keane,spotify:album:5QqVXRTiGpLgmo1YNoz9Bk,Hopes and Fears (Deluxe Edition),spotify:artist:53A0W3U0s8diEn9RhXQhVz,Keane,2009-01-01,https://i.scdn.co/image/ab67616d0000b273d1a0d9a7cf88083aac260c33,1,1,237546,https://p.scdn.co/mp3-preview/14b8c7f33de3a3a6558d3589b9f2260ae8c513c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN0300664,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop rock",0.445,0.59,9.0,-6.747,1.0,0.0258,0.0575,1.08e-05,0.0832,0.334,172.016,4.0,,Universal Music Group,"C © 2009 Universal-Island Records Ltd., P ℗ 2009 Universal-Island Records Ltd.",3825 +3826,spotify:track:190jyVPHYjAqEaOGmMzdyk,Beauty And A Beat,"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","Justin Bieber, Nicki Minaj",spotify:album:70f70xLCpH7wHaVvB2oZT9,Believe (Deluxe Edition),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2012-06-15,https://i.scdn.co/image/ab67616d0000b2736c20c4638a558132ba95bc39,1,10,227986,https://p.scdn.co/mp3-preview/971940ae12e29dbfcd17d52a8cac3c0a650afae7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USUM71205367,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,hip pop,pop,queens hip hop,rap",0.602,0.843,0.0,-4.831,1.0,0.0593,0.000688,5.27e-05,0.0682,0.526,128.003,4.0,,RBMG/Def Jam,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",3826 +3827,spotify:track:5vKM8TPIcXDDFlo82rlCgh,Raindrops Keep Fallin On My Head,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:3VpxYgNndpziZiCKslmAMY,Johnny Farnham,spotify:artist:3YW6OQ9tKlQ01mccFjXmtl,Johnny Farnham,1995-01-01,https://i.scdn.co/image/ab67616d0000b2739c54d225d57a10b62ee31185,1,1,151733,https://p.scdn.co/mp3-preview/dc42fe1416dc63f6fcfe67537a7788390035461e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUEM06900006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.383,0.595,10.0,-8.074,1.0,0.0496,0.443,0.0,0.114,0.637,105.393,4.0,,EMI Music Australia,"C © 2017 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2017 EMI Recorded Music Australia Pty Ltd.",3827 +3828,spotify:track:5tXyNhNcsnn7HbcABntOSf,DJ Got Us Fallin' In Love,"spotify:artist:23zg3TcAtWQy7J6upgbUnj, spotify:artist:0TnOYISbd1XYRBk9myaseg","USHER, Pitbull",spotify:album:3W9fTZ9MCMB8TWXrbjdNt5,DJ Got Us Fallin' In Love,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2010-07-13,https://i.scdn.co/image/ab67616d0000b273b911f456d11005e2fba6fc46,1,1,222160,https://p.scdn.co/mp3-preview/1619c7342806281d286f0ba4125ff59e80663c56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF21000041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary,dance pop,miami hip hop,pop",0.666,0.878,7.0,-2.85,0.0,0.0973,0.03,0.0,0.0828,0.669,119.932,4.0,,LaFace Records,"P (P) 2010 RCA Records, a division of Sony Music Entertainment",3828 +3829,spotify:track:3ef0fg5FGImMaZFdUSd3DY,R.I.P. (feat. Tinie Tempah),"spotify:artist:5CCwRZC6euC8Odo6y9X8jr, spotify:artist:0Tob4H0FLtEONHU1MjpUEp","Rita Ora, Tinie Tempah",spotify:album:66InqDn9SLDox1SADhsXKG,ORA,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2012-09-07,https://i.scdn.co/image/ab67616d0000b27347ef1a5b2207edf038cbdf74,1,4,228026,https://p.scdn.co/mp3-preview/913f73c1ac73a945d4cfc4eae5b6e79f9f809143?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQX91200342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,dance pop,grime,pop rap",0.603,0.831,11.0,-3.443,0.0,0.0479,0.027,0.0,0.652,0.358,72.022,4.0,,Roc Nation/Columbia,"P (P) 2012 Roc Nation LLC, 2012 Ministry Of Sound Recordings",3829 +3830,spotify:track:3m7Fne4xA0bsKzEaWbNucr,Shut Up And Drive,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:1G2ZRwcqN6warfakvcPgEs,Good Girl Gone Bad: Reloaded,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2008-06-02,https://i.scdn.co/image/ab67616d0000b273ad4ef80be7f5e15d64ac5c25,1,5,212280,https://p.scdn.co/mp3-preview/7f49e789b12015cf36370e9663b0262e585b421c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70734703,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.735,0.826,1.0,-4.902,1.0,0.0349,0.00101,0.129,0.197,0.74,132.964,4.0,,Universal Music Group,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",3830 +3831,spotify:track:2Q9V7buqRnWjMTujy8yMSC,Dakota,spotify:artist:21UJ7PRWb3Etgsu99f8yo8,Stereophonics,spotify:album:55AcfMUJfiigCrHrXuUaCl,Decade In The Sun - Best Of Stereophonics,spotify:artist:21UJ7PRWb3Etgsu99f8yo8,Stereophonics,2008-01-01,https://i.scdn.co/image/ab67616d0000b27372faa6e85dd32a75c21a6506,1,1,298253,https://p.scdn.co/mp3-preview/24671d65817ad6a985b6e8eb21c228aded321a38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBUM70812875,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,modern rock,welsh rock",0.503,0.93,4.0,-3.501,1.0,0.0679,0.112,0.00382,0.103,0.328,146.998,4.0,,UMC (Universal Music Catalogue),"C © 2008 V2 Music Limited, P This Compilation ℗ 2008 V2 Music Limited",3831 +3832,spotify:track:3vJSNF4QRZ2HZpZpsxecgu,Sorry Suzanne - 1998 Remaster,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:15Tn9yu64pxuvejk5FNAaG,Midas Touch - The Very Best of the Hollies,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,2010-02-19,https://i.scdn.co/image/ab67616d0000b2734db9610555e01a8b715134eb,1,6,182466,https://p.scdn.co/mp3-preview/61bf9086834f88113b5347b1734901030ddddfd6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBGYU9800063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.585,0.725,0.0,-7.337,1.0,0.0339,0.0424,0.0,0.209,0.711,123.77,4.0,,BMG Rights Management (US) LLC,"C © 2010 BMG Rights Management (US) LLC, P ℗ 2010 BMG Rights Management (US) LLC",3832 +3833,spotify:track:10SDxx0CFWGqgVVBeX22TP,No Pressure,"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0c173mlxpT3dSFRgMO8XPh","Justin Bieber, Big Sean",spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,7,286853,https://p.scdn.co/mp3-preview/7cd7e4d54c1fa2d83b8552c691c83d36ce21451a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516763,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,detroit hip hop,hip hop,pop rap,r&b,rap,southern hip hop,trap",0.644,0.595,1.0,-6.877,1.0,0.215,0.121,0.0,0.279,0.554,148.889,3.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",3833 +3834,spotify:track:2IHlaL8ELuRSZGlbpsXG9m,Rump Shaker,spotify:artist:6lLYZf9GpSq6Pf09g2N2xK,Wreckx-N-Effect,spotify:album:2JiFwhC4zEYUufGuNQMRLm,Jacked: Music Inspired by the Podcast (Episode 3: The Golden Child),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2020-11-24,https://i.scdn.co/image/ab67616d0000b27327df4336aced4ac0b7a7b4ff,1,5,310764,https://p.scdn.co/mp3-preview/2966937bccc8b5918f74774978f62e321f234862?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USMC19238663,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,miami bass,new jack swing",0.882,0.852,1.0,-5.728,1.0,0.22,0.00248,0.0211,0.187,0.237,102.774,4.0,,UME - Global Clearing House,"C © 2020 UMG Recordings, Inc., P ℗ 2020 UMG Recordings, Inc. FP",3834 +3835,spotify:track:6GzApXoBQiiAjak3tOQfV3,Lie To Me (feat. Julia Michaels),"spotify:artist:5Rl15oVamLq7FbSb0NNBNy, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","5 Seconds of Summer, Julia Michaels",spotify:album:2rSrRHcfwJXxni8HczqKAT,Lie To Me (feat. Julia Michaels),spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2018-12-21,https://i.scdn.co/image/ab67616d0000b2734be7119afe5f4282eb8d24c7,1,1,149877,https://p.scdn.co/mp3-preview/72fc8f546b5ccdabe9ff555e606753d815c4f342?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBUM71807929,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,pop",0.612,0.52,0.0,-5.445,1.0,0.0346,0.0132,0.0,0.105,0.772,159.932,4.0,,Capitol,"C © 2018 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited, P ℗ 2018 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited",3835 +3836,spotify:track:5zn1hpm9N0ylKB7kOtpCw2,No More (Baby I'ma Do Right),spotify:artist:2lFHVcUeJ9Gq6AZiU3ZAOa,3LW,spotify:album:7l1ra4zaCXyfr4yTby63t7,3LW,spotify:artist:2lFHVcUeJ9Gq6AZiU3ZAOa,3LW,2000-11-06,https://i.scdn.co/image/ab67616d0000b273152d0abf7dab6b4690c01442,1,1,263440,https://p.scdn.co/mp3-preview/6b230efb86f3c2e5f88ad4fca48b0daef91b668c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USSM10010610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,girl group,hip pop,r&b,urban contemporary",0.721,0.723,2.0,-7.08,0.0,0.0631,0.102,4.4e-06,0.0651,0.761,88.933,4.0,,Epic,P (P) 2000 Sony Music Entertainment Inc.,3836 +3837,spotify:track:6AttjDR4ReXvNYFm9hLOlK,Telephone Booth,spotify:artist:4RMdsc21y0aET1OCm32h1u,Ian Moss,spotify:album:2Pp2u2e1UeWgIeyimPVsxD,Matchbook,spotify:artist:4RMdsc21y0aET1OCm32h1u,Ian Moss,1989,https://i.scdn.co/image/ab67616d0000b2731828d3fbc34e04f33df33450,1,2,184133,https://p.scdn.co/mp3-preview/bf80122617f450d6394d312e72c23eabceffe30b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUWA00900761,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian rock",0.684,0.532,6.0,-11.322,1.0,0.0369,0.0441,1.86e-05,0.263,0.85,108.472,4.0,,WM Australia,"C © 1989 Warner Music Australia Pty Limited, P ℗ 1989 Warner Music Australia Pty Limited",3837 +3838,spotify:track:2kzRSiyignH8yzPTrWvyPo,No Sleep,spotify:artist:137W8MRPWKqSmrBGDBFSop,Wiz Khalifa,spotify:album:6ZOXiVL8rmk2ATHJiFJhiD,Rolling Papers,spotify:artist:137W8MRPWKqSmrBGDBFSop,Wiz Khalifa,2011-03-29,https://i.scdn.co/image/ab67616d0000b273fe3cf32b1320e8ded39d8c74,1,9,191320,https://p.scdn.co/mp3-preview/55937ed4b214fa310c9acd2885776caa20c20f6f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,60,USAT21100295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap",0.653,0.711,9.0,-6.454,1.0,0.0623,0.109,0.0,0.443,0.769,160.048,4.0,,Rostrum/Atlantic,"C © 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",3838 +3839,spotify:track:5rb9QrpfcKFHM1EUbSIurX,Yeah! (feat. Lil Jon & Ludacris),"spotify:artist:23zg3TcAtWQy7J6upgbUnj, spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi","USHER, Lil Jon, Ludacris",spotify:album:1RM6MGv6bcl6NrAG8PGoZk,Confessions (Expanded Edition),spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2004-03-23,https://i.scdn.co/image/ab67616d0000b273365b3fb800c19f7ff72602da,1,2,250373,https://p.scdn.co/mp3-preview/1eca1cb525c2b0df2ecba52f1105f139323e09a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USAR10301423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary,atl hip hop,crunk,dance pop,dirty south rap,old school atlanta hip hop,pop rap,southern hip hop,trap,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap",0.894,0.791,2.0,-4.699,1.0,0.112,0.0183,0.0,0.0388,0.583,105.018,4.0,,LaFace Records,P (P) 2004 LaFace Records,3839 +3840,spotify:track:4fwbGKNExPtPHbor1TBSY4,Unconditionally,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:5MQBzs5YlZlE28mD9yUItn,PRISM (Deluxe),spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2013-10-18,https://i.scdn.co/image/ab67616d0000b27347f930accd8ac01686401fa2,1,5,228878,https://p.scdn.co/mp3-preview/78f8c24576c9b19b44336736acf4f617f2197250?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUM71311295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.432,0.725,7.0,-4.862,1.0,0.0431,0.00273,0.0,0.208,0.353,128.902,4.0,,Capitol Records (CAP),"C © 2013 Capitol Records, LLC, P ℗ 2013 Capitol Records, LLC",3840 +3841,spotify:track:7ySbfLwdCwl1EM0zNCJZ38,One Sweet Day,"spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:6O74knDqdv3XaWtkII7Xjp","Mariah Carey, Boyz II Men",spotify:album:1ibYM4abQtSVQFQWvDSo4J,Daydream,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,1995-10-03,https://i.scdn.co/image/ab67616d0000b273749e9bfa78277f30ad2c9a9c,1,3,281066,https://p.scdn.co/mp3-preview/2395b7ab0950e061e0ddceca045de813c2d5e856?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USSM19501117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.568,0.495,1.0,-8.964,1.0,0.0299,0.353,0.0,0.0839,0.303,128.234,4.0,,Columbia,"P (P) 1995 Columbia Records, a division of Sony Music Entertainment",3841 +3842,spotify:track:3DN6cTbMSQ7gTqwDqYZFHN,Just So Lonely,spotify:artist:69vUB5BBarDyTccTGcDVhI,Get Wet,spotify:album:385M3K2JGTZClj9yzXN5BT,Get Wet,spotify:artist:69vUB5BBarDyTccTGcDVhI,Get Wet,2009-01-01,https://i.scdn.co/image/ab67616d0000b2733cdfee158818bd633092a022,1,2,219573,https://p.scdn.co/mp3-preview/1accc5efc01d45c07cae0096b0d31fd5bc3426f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,GBHFE0629380,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep eurodance,0.715,0.414,8.0,-11.577,1.0,0.129,0.49,2.87e-05,0.107,0.895,149.031,4.0,,Boardwalk,C (C) 2009 Boardwalk,3842 +3843,spotify:track:1H5tvpoApNDxvxDexoaAUo,Who Let The Dogs Out,spotify:artist:67FFKYikvTlvsPNk4NPOYJ,Baha Men,spotify:album:44UH34qoCNNfEqo0VnOkGd,Who Let The Dogs Out,spotify:artist:67FFKYikvTlvsPNk4NPOYJ,Baha Men,2000,https://i.scdn.co/image/ab67616d0000b27336c901204dd54a716c64932b,1,1,198400,https://p.scdn.co/mp3-preview/0c16f15b590639023663ed46d3aa1dfe184a1efe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USSC90000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bahamian pop,0.869,0.887,0.0,-4.505,1.0,0.0992,0.0605,0.0,0.148,0.784,129.223,4.0,,Capitol Records,"C © 2006 Capitol Records Inc., P ℗ 2006 Capitol Records Inc.",3843 +3844,spotify:track:7qD9lD0dabABT6y3Vw3uVX,We've Got It Goin' On - Radio Edit,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:1oWxRkI4V9d3hH3PqWpx9H,Backstreet Boys,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1996-05-06,https://i.scdn.co/image/ab67616d0000b2733d16809ca253f0f476195941,1,1,219466,https://p.scdn.co/mp3-preview/ba6bb47a07b37e99b373e76091e2ab228ec9bc01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAHK9500138,spotify:user:bradnumber1,2022-01-09T22:04:20Z,"boy band,dance pop,pop",0.757,0.868,3.0,-4.986,0.0,0.0358,0.0953,0.0,0.244,0.929,112.973,4.0,,Jive,P (P) 1996 Sony Music Entertainment,3844 +3845,spotify:track:4YkA5jaaYGslmvPW0GXMXP,Take It Home,spotify:artist:4L51owxaf23ElmXl3ZkvNC,Johnny Ruffo,spotify:album:35exHxQUF0jGZUNTiCsrVf,Take It Home,spotify:artist:4L51owxaf23ElmXl3ZkvNC,Johnny Ruffo,2012-10-19,https://i.scdn.co/image/ab67616d0000b273c409a78a1300ef616b5a3f02,1,1,189040,https://p.scdn.co/mp3-preview/c7da9778af7126034cb708a45fb2e9aef90be3e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUBM01200295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.683,0.834,0.0,-3.353,1.0,0.0382,0.0235,0.0,0.098,0.797,130.043,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,3845 +3846,spotify:track:3VGBUfN2EOVHJ4Y92yIh2f,With A Girl Like You,spotify:artist:57xdnSVt4ahJCIXYLieQ25,The Troggs,spotify:album:1myVNI7Ucy8g9HudbJ8Vu2,From Nowhere,spotify:artist:57xdnSVt4ahJCIXYLieQ25,The Troggs,1966-07-25,https://i.scdn.co/image/ab67616d0000b27327b24620f0b3b592472552f5,1,8,128493,https://p.scdn.co/mp3-preview/d84da3e99b67b11662bf92e0c42778beaee8138f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBF086600003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.65,0.68,7.0,-11.057,1.0,0.0485,0.497,6.77e-05,0.186,0.604,113.925,4.0,,UMC (Universal Music Catalogue),"C © 1966 Mercury Records Limited, P ℗ 1989 Mercury Records Limited",3846 +3847,spotify:track:0HRaZyX9m7CMnaGqQ2NCwz,In the Country,spotify:artist:4IdvJZeciaa37wYr2qBpjm,Cliff Richard & The Shadows,spotify:album:0SW33rIKZ2v0EmfqRLKufz,40 Golden Greats,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1977,https://i.scdn.co/image/ab67616d0000b2732effa5f5d8903fb4fea0838d,2,8,164266,https://p.scdn.co/mp3-preview/f9a53b7f40c1c8c41924f2c7155740857f862412?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GBAYE6700451,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"merseybeat,rock-and-roll,rockabilly",0.436,0.583,2.0,-12.196,1.0,0.0433,0.608,0.0,0.288,0.934,158.169,4.0,,Parlophone UK,"C © 1989 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1977 Parlophone Records Ltd, a Warner Music Group Company",3847 +3848,spotify:track:62YHs3LqJQjThYg5R9dFIr,Running,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,spotify:album:2aedsEpb4F7YInX0dsYvD0,Real Life,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,2006-07-08,https://i.scdn.co/image/ab67616d0000b2736f34d188e0a2aa038fe0c08d,1,2,263066,https://p.scdn.co/mp3-preview/ce4c62251cfbebeb3d3413a0cf3e773ba4bd569d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,AUWA00601210,spotify:user:bradnumber1,2022-11-28T01:00:30Z,"australian alternative rock,australian rock,kiwi rock",0.41,0.767,6.0,-4.7,1.0,0.0336,0.000896,0.0301,0.0484,0.204,139.94,4.0,,Evermore Music,"C 2021 Evermore Music, P 2021 Evermore Music",3848 +3849,spotify:track:6mIY6O7uNGgVqOoX70UAYh,Have I Told You Lately - 2008 Remaster,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:3jBeiXLyZM4kxbHLEJwtYt,Vagabond Heart - Expanded Edition,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1991,https://i.scdn.co/image/ab67616d0000b273cf5dca3c5d19ad90c0c61c6b,1,10,241506,https://p.scdn.co/mp3-preview/9a397d5138f5e23b04e77912ecf6c5a9bf05b42b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USWB10807203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.523,0.366,10.0,-14.069,1.0,0.0331,0.498,0.0,0.094,0.291,142.814,4.0,,Rhino/Warner Records,"C © 1991 Warner Records Inc., P ℗ 2009 Warner Records Inc. Marketed by Warner Music Group Company.",3849 +3850,spotify:track:33DxzZNm85rorgfnilllJg,Radioactive,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:3GQy3QdRfl7RZUix1rhLtB,Come Around Sundown,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2010-10-19,https://i.scdn.co/image/ab67616d0000b2731ac63a3c719dd37cab3d51be,1,2,206186,https://p.scdn.co/mp3-preview/5bad86221530be1fa5941932fa941a0f34a949e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11000673,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.408,0.925,5.0,-4.88,1.0,0.0533,0.00877,0.000454,0.12,0.361,126.405,4.0,,RCA Records Label,"P (P) 2010 RCA Records, a unit of Sony Music Entertainment",3850 +3851,spotify:track:2HuhUe6y5xpRVi3Ks3XwXg,Just Love You,spotify:artist:53spjjrMCorbDCyF9dHbns,DaChri,spotify:album:5t99Gaz1Xwm58MGGpsg2Uw,The Boy They Left Behind,spotify:artist:53spjjrMCorbDCyF9dHbns,DaChri,2021-07-09,https://i.scdn.co/image/ab67616d0000b2732b3025891d262b2d68f81194,1,10,210612,https://p.scdn.co/mp3-preview/5617a6c993653a24f886e27b82201f1f3f39e6f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZHN62088109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.793,0.621,10.0,-6.243,1.0,0.0556,0.328,5.13e-06,0.263,0.75,97.996,4.0,,Della's Boy,"C 2021 Della's Boy, P 2021 Della's Boy",3851 +3852,spotify:track:1di1BEgJYzPvXUuinsYJGP,Everybody (Backstreet's Back) - Radio Edit,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:2U9ONknz1iFEK9drEKLx8v,Backstreet's Back,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1997-08-12,https://i.scdn.co/image/ab67616d0000b273530cec85d4543693bd726167,1,1,225360,https://p.scdn.co/mp3-preview/d37b9e43352a59fd9f0f06bc7da96da1601e23cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USJI19710083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.731,0.853,10.0,-4.219,0.0,0.0363,0.0352,0.0,0.268,0.605,108.016,4.0,,Jive,P (P) 1997 Zomba Recording LLC,3852 +3853,spotify:track:3zAeo32M8GjbkOXz4VT6dj,Confessions Of A Broken Heart (Daughter To Father) - Radio,spotify:artist:4vRSocKbGh7PsQrYRDVMEF,Lindsay Lohan,spotify:album:71KnbtGsUAh7kMyiiey515,A Little More Personal (RAW),spotify:artist:4vRSocKbGh7PsQrYRDVMEF,Lindsay Lohan,2005-01-01,https://i.scdn.co/image/ab67616d0000b27315b6190d23afaec5472b4b60,1,1,220800,https://p.scdn.co/mp3-preview/7ef20b1590bd29e2462346ba02e1c67c1ce11de0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC7R0500038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.574,0.721,8.0,-4.312,0.0,0.0335,0.0254,0.0,0.0952,0.159,120.033,4.0,,Casablanca Records,"C © 2005 Casablanca Music, LLC, P ℗ 2005 Casablanca Music, LLC",3853 +3854,spotify:track:0PrlpSOlCkA1SJlqaSzpou,7 Seconds (feat. Neneh Cherry),"spotify:artist:77zlytAFjPFjUKda8TNIDY, spotify:artist:3JxCEqL9zjKnDJgUhRuRJD","Youssou N'Dour, Neneh Cherry",spotify:album:4K2xwEC31lTt6sFfC4tYoM,The Guide (Wommat),spotify:artist:77zlytAFjPFjUKda8TNIDY,Youssou N'Dour,1994-05-20,https://i.scdn.co/image/ab67616d0000b2736d1cbb9e5e5e7cf4593885ef,1,5,306226,https://p.scdn.co/mp3-preview/373da3f1cebf87f5887798be0bd2d0c00f8dba1a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM10021897,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"afropop,mbalax,world,new wave pop,urban contemporary",0.679,0.659,1.0,-10.826,0.0,0.0269,0.0771,4.12e-06,0.316,0.528,154.171,4.0,,Columbia,P (P) 1994 Sony Music Entertainment Inc.,3854 +3855,spotify:track:6VEcyQiE2bXGaduwVINWHE,Violet Hill,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:4Uo9tGSEkAUYHWfVGHhhZm,Viva La Vida or Death and All His Friends,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2008-06-19,https://i.scdn.co/image/ab67616d0000b273adcc90bbf8ffa384c25c4478,1,8,222653,https://p.scdn.co/mp3-preview/7aa7da3f8b5c795517e24dcf19fe8386056c16e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBAYE0800269,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.33,0.58,1.0,-7.875,0.0,0.0374,0.0614,0.00129,0.115,0.11,76.093,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",3855 +3856,spotify:track:0wDEiGfq4pw7FAkYKpkwMo,Trojans,spotify:artist:42vg2T0Xg9yPaAgogJzoQH,Atlas Genius,spotify:album:3yhETmhJwSVSLGDyTJgnqo,When It Was Now,spotify:artist:42vg2T0Xg9yPaAgogJzoQH,Atlas Genius,2013-02-18,https://i.scdn.co/image/ab67616d0000b2739286c81f1b4370213015153e,1,4,217386,https://p.scdn.co/mp3-preview/559baa9247e773ff05e24f1381a72340f9a9a427?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USWB11300017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern alternative rock,modern rock,shimmer pop",0.721,0.822,7.0,-4.843,1.0,0.0391,0.0113,7.01e-05,0.0898,0.536,140.002,4.0,,Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc.",3856 +3857,spotify:track:6CEKntwndUlmWhSRflWA5X,Morning Train (Nine to Five),spotify:artist:5dcOK4stT4JDkP6Dqhbz5s,Sheena Easton,spotify:album:7oYG4SA51T8d3QAMpImZ7G,Greatest Hits,spotify:artist:5dcOK4stT4JDkP6Dqhbz5s,Sheena Easton,1995-04-01,https://i.scdn.co/image/ab67616d0000b27302a2e144d07700c5e6615fc1,1,1,200973,https://p.scdn.co/mp3-preview/abb4e9e9cfc0dc67130ce42713e79dc392e3a714?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAYE8000046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,minneapolis sound,new romantic,new wave pop,soft rock",0.796,0.512,8.0,-10.618,1.0,0.0552,0.689,0.0,0.122,0.804,121.877,4.0,,RT Industries,"C © 1995 RT Industries, P ℗ 1995 RT Industries",3857 +3858,spotify:track:5xv4ggemGPNpowZAMwEYHH,Girlfriend - Radio Edit,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:6WRoFDc1f69ilu8DLaNOsS,Girlfriend EP,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2007-02-27,https://i.scdn.co/image/ab67616d0000b273ef2bfca7e7ab6648abbaef36,1,1,216560,https://p.scdn.co/mp3-preview/952f8229166b0dc5b88e04c77dd5d893f212af08?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USRC10700019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,candy pop,dance pop,pop",0.551,0.964,7.0,-1.883,1.0,0.114,0.00104,0.000253,0.245,0.668,163.965,4.0,,Sony Music Entertainment,"P (P) 2007 RCA Records, a division of Sony Music Entertainment",3858 +3859,spotify:track:47iISk7pwBuQDWhGNbVzFt,Paranoid,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,spotify:album:0bVfTg2mqWdasgCSMpclTN,Total Girl - Totally Stylin',spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-01-01,https://i.scdn.co/image/ab67616d0000b27347d370bd5888f95e9ef8cd0a,1,5,217066,https://p.scdn.co/mp3-preview/daddea3d852d7060dc2ea67c4489725acdf168e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR10924413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.637,0.831,10.0,-5.059,1.0,0.0404,0.00141,0.0,0.121,0.807,121.019,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Universal Music Australia Pty Ltd., P This Compilation ℗ 2009 Universal Music Australia Pty Ltd.",3859 +3860,spotify:track:1o0fE0o08bIKX1mExyRQbz,Saved in a Bottle - Radio Edit,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,spotify:album:3SvteappJF4cFwFf3OqMpG,Saved In A Bottle,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d9a30ef0969589a72158401c,1,1,186093,https://p.scdn.co/mp3-preview/f35334e8d515b77823a32002ddf3984f52f7701a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUNV01200800,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian house",0.512,0.834,5.0,-4.243,1.0,0.0358,0.00366,0.0,0.103,0.314,128.003,4.0,,Hussle,"C © 2013 Hussle Recordings, a division of Ministry Of Sound Australia Pty Ltd, P ℗ 2013 Hussle Recordings, a division of Ministry Of Sound Australia Pty Ltd",3860 +3861,spotify:track:4yy9bqYoWZaU3VJjGDkHOw,Take Me Back,spotify:artist:3IJFGnsUboabVEbJz1UR91,Noiseworks,spotify:album:3tELfbZ3YI1K8Ue21mu5bQ,Noiseworks,spotify:artist:3IJFGnsUboabVEbJz1UR91,Noiseworks,1988-02-08,https://i.scdn.co/image/ab67616d0000b27329870a9eca78ca4e774f7669,1,3,207133,https://p.scdn.co/mp3-preview/8ebe3139b8c8d181068b8ef8ace5a8455aac9cfd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,AUSM09200024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.439,0.677,4.0,-11.551,1.0,0.0384,0.00921,0.0,0.132,0.364,111.955,4.0,,Sony Music Entertainment,P (P) 1987 Sony Music Entertainment Australia Pty Ltd,3861 +3862,spotify:track:1NQCAC9lV9juokTcLPYm09,She's Got You - Single Version,spotify:artist:7dNsHhGeGU5MV01r06O8gK,Patsy Cline,spotify:album:2rT6sjpBTU4d027CoGvE3c,Sentimentally Yours,spotify:artist:7dNsHhGeGU5MV01r06O8gK,Patsy Cline,1988-01-01,https://i.scdn.co/image/ab67616d0000b2738dea191b410028b8802c6f5b,1,1,181800,https://p.scdn.co/mp3-preview/ef097240226cdfecec80b15b81507ac66bf9733a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16146419,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,nashville sound",0.389,0.137,5.0,-17.646,1.0,0.0404,0.936,0.000476,0.106,0.567,182.347,3.0,,Universal Music Group,"C © 1988 MCA Records Inc., P ℗ 1988 UMG Recordings, Inc.",3862 +3863,spotify:track:2KfEJZxkThjpOEZhuKPOFG,I See You Baby,"spotify:artist:67tgMwUfnmqzYsNAtnP6YJ, spotify:artist:3jE9LY400g6ZV1otfI3Zgq","Groove Armada, Gram'ma Funk",spotify:album:1ddwbPYRpYFVQVhmynFd0s,Original Album Classics,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2010-09-10,https://i.scdn.co/image/ab67616d0000b2739e0198701fa5d7e16fbd461c,1,7,281173,https://p.scdn.co/mp3-preview/20ac7ff82f411367ccb5eeb13a6788242361df18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK9900065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,nu skool breaks,trip hop",0.817,0.836,6.0,-8.499,1.0,0.0544,0.00306,0.11,0.0542,0.644,122.036,4.0,,Sony Music UK,P (P) 2010 Sony Music Entertainment UK Limited,3863 +3864,spotify:track:5EkzyG7P6JQXQutM5TL8tP,One More Time (The Sunshine Song),spotify:artist:1bA9XJwgaR3yVHNMTCqJ02,Groove Terminator,spotify:album:3UF3tfrHDa6avzB75PzTDb,Road Kill,spotify:artist:1bA9XJwgaR3yVHNMTCqJ02,Groove Terminator,2000-04-16,https://i.scdn.co/image/ab67616d0000b2730041806aa5f9f4d4b692e751,1,2,247333,https://p.scdn.co/mp3-preview/5ae46a5562e345e1f3b6b081651368db1b4fc09c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUEM09900182,spotify:user:bradnumber1,2023-08-10T00:20:50Z,,0.567,0.892,0.0,-3.192,1.0,0.0385,0.00299,0.627,0.507,0.744,122.983,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2018 Virgin Records Australia, P ℗ 2000 Virgin Records Australia",3864 +3865,spotify:track:2JVwsN6viHjR9t5pCPQ4Br,Pretty Shining People,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,spotify:album:2NaulYO6lGXTyIzWTJvRJj,Staying at Tamara's,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,2018-03-23,https://i.scdn.co/image/ab67616d0000b273103045cd1c29dd16a469f808,1,1,212446,https://p.scdn.co/mp3-preview/91dc6fb2dc345c392cdfe0b225185ea80d384fdd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBARL1701370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo-singer-songwriter",0.584,0.726,1.0,-4.604,1.0,0.0371,0.14,0.0,0.0984,0.398,106.979,4.0,,Columbia,P (P) 2018 Sony Music Entertainment UK Limited,3865 +3866,spotify:track:4AmJpaF86079ZjFVVYhFbJ,One Headlight,spotify:artist:0jJNGWrpjGIHUdTTJiIYeB,The Wallflowers,spotify:album:1lvj6DJXQcGVkX1V6oaN76,Bringing Down The Horse,spotify:artist:0jJNGWrpjGIHUdTTJiIYeB,The Wallflowers,1996-01-01,https://i.scdn.co/image/ab67616d0000b2730a3aa72bdf1c36f12046906e,1,1,312587,https://p.scdn.co/mp3-preview/6b0a1c1ab240bd452e9645e6a495b6fc32000a46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19600462,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.702,0.539,2.0,-8.968,1.0,0.0277,0.000655,0.005,0.0618,0.752,107.531,4.0,,Interscope,"C © 1996 Interscope Records, P ℗ 1996 Interscope Records",3866 +3867,spotify:track:27nSMBSuBs6b3OCEHPhXhu,Hang on Sloopy,spotify:artist:6etIM3JbzGPxTdfNWWfsVH,The McCoys,spotify:album:5UIbl2uZorhDzlGJSGZwd4,Hang on Sloopy,spotify:artist:6etIM3JbzGPxTdfNWWfsVH,The McCoys,1965,https://i.scdn.co/image/ab67616d0000b273a2a11d4580606a68859a6801,1,2,181733,https://p.scdn.co/mp3-preview/dbda36e25e722f7367a6e69f0c581cc087c8b825?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USSM11501608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,doo-wop,merseybeat,rock-and-roll",0.747,0.612,7.0,-9.009,1.0,0.0377,0.171,3e-05,0.05,0.96,114.903,4.0,,Columbia/Legacy,"P Originally released 1965. All rights reserved by Columbia Records, a division of Sony Music Entertainment",3867 +3868,spotify:track:3Fh9ulCvZ1Ez4PEy4fMdO3,Movin' Up,spotify:artist:7jbqQykxJ43VH0e0E3duGG,Dreamworld,spotify:album:7ufQp9Fne2uo1EenxWWdkj,Heaven Sent,spotify:artist:7jbqQykxJ43VH0e0E3duGG,Dreamworld,1996-10-18,https://i.scdn.co/image/ab67616d0000b273c0d5c96a96e08fb075cfd965,1,6,219866,https://p.scdn.co/mp3-preview/250256ec0c7c3f80c17e3de69bc00d1300339fd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAAR9501011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.654,0.885,4.0,-7.38,1.0,0.0357,0.022,0.00734,0.324,0.963,136.066,4.0,,Air Music,"C © 1996 Air Music, BMG Rights Management (Scandinavia) AB, P ℗ 1996 Air Music, BMG Rights Management (Scandinavia) AB",3868 +3869,spotify:track:1pXtUVmSS3Aky3j6nQ4sQT,Hello,spotify:artist:023YMawCG3OvACmRjWxLWC,The Cat Empire,spotify:album:7H3Bgvb3hs4vvLwccHDRlr,The Cat Empire,spotify:artist:023YMawCG3OvACmRjWxLWC,The Cat Empire,2003-10-24,https://i.scdn.co/image/ab67616d0000b27353f8172e38162a452d6cdaee,1,5,224133,https://p.scdn.co/mp3-preview/1a8e1a791b6df1bdd0da95bbaa3e45f713bd0ef0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUTW00300005,spotify:user:bradnumber1,2021-11-17T22:21:38Z,"australian reggae fusion,australian ska,ska jazz",0.716,0.748,9.0,-6.426,1.0,0.151,0.333,6.54e-06,0.0899,0.76,110.015,4.0,,Two Shoes,"C 2003 Two Shoes, P 2003 Two Shoes",3869 +3870,spotify:track:4kdar6ZbJg3lT0rVVNsUyv,Love On Display,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:1qRaP04UbnvSHdLMHfmDbv,Love On Display,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2020-09-25,https://i.scdn.co/image/ab67616d0000b2730f334295ac8dc417d9773ee1,1,1,183298,https://p.scdn.co/mp3-preview/0a45ba487a2967f247b9d9aefc6a047e9174c3a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUBM02000458,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.613,0.753,4.0,-4.659,1.0,0.0364,0.206,0.0,0.192,0.592,86.001,4.0,,Sony Music Entertainment,P (P) 2020 Sony Music Entertainment Australia Pty Ltd,3870 +3871,spotify:track:0yFWdhx0rDU4zNddqvfu33,Red Desert,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:0vX2Jo5xhltAA7kVdW2hwO,CALM,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2020-03-27,https://i.scdn.co/image/ab67616d0000b273631b12c5eaa661c6c793ba45,1,1,229557,https://p.scdn.co/mp3-preview/843f74666e717cacd2b7dd8adbe53a85978f8fc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG12000293,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.504,0.83,9.0,-4.474,1.0,0.121,0.0205,2.49e-06,0.0563,0.449,133.929,4.0,,5 Seconds Of Summer/Interscope,"C © 2020 5 Seconds of Summer, under exclusive license to Interscope Records, P ℗ 2020 5 Seconds of Summer, under exclusive license to Interscope Records",3871 +3872,spotify:track:1KGi9sZVMeszgZOWivFpxs,No Scrubs,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,spotify:album:1CvjjpvqVMoyprsf74bpYW,Fanmail,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,1999-02-23,https://i.scdn.co/image/ab67616d0000b27361ffafd5e31a37336531cf95,1,5,214400,https://p.scdn.co/mp3-preview/87c4c3435b531616e2d642009a18eb711f87be4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USLF29900479,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,girl group,hip pop,r&b,urban contemporary",0.743,0.675,8.0,-4.267,0.0,0.0953,0.0251,0.000717,0.0685,0.59,92.909,4.0,,Arista/LaFace Records,P (P) 1999 LaFace Records LLC,3872 +3873,spotify:track:2fawfJtQdxcyJItlg2a4Ht,What About Me?,spotify:artist:089zDeJWWSaHm6JE4V3ser,Moving Pictures,spotify:album:4SaBvIDYC4YMO5O8GkA3x5,Days Of Innocence - The Ultimate Collection,spotify:artist:089zDeJWWSaHm6JE4V3ser,Moving Pictures,2000-03-13,https://i.scdn.co/image/ab67616d0000b273a173a955e9b908f1610d1259,1,6,217013,https://p.scdn.co/mp3-preview/2cef3741b0693e8d935450fd34441dbc670431f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM08246101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.631,0.392,7.0,-10.229,1.0,0.029,0.631,0.0,0.145,0.191,126.534,4.0,,RCA Records Label,P (P) 2000 BMG Australia Limited,3873 +3874,spotify:track:6kwOrSwpr6R6kLtz82dpbI,Most People I Know,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,spotify:album:3cJuy4g8vnye5101NGQtmC,The Very Best Of,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,2007-02-06,https://i.scdn.co/image/ab67616d0000b273423d8fbd404e3a60d5e1dde8,1,5,257026,https://p.scdn.co/mp3-preview/4ceb61b7698e10fb4de6bb50469a6708d75bb665?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUMU07200001,spotify:user:bradnumber1,2023-02-15T04:33:09Z,australian rock,0.419,0.354,2.0,-16.101,1.0,0.0322,0.57,0.00136,0.098,0.81,122.397,4.0,,WM Australia,"C © 1994 Mushroom Records, P ℗ 1994 Mushroom Records",3874 +3875,spotify:track:1TZGMJxT3gPDkwZyfcc9ED,Plans,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:5SJkYrOgbOHRPTtvVm23FI,Birds Of Tokyo,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2010-07-23,https://i.scdn.co/image/ab67616d0000b2733d17fe2837c2f33e37296ae1,1,1,218000,https://p.scdn.co/mp3-preview/57cae78c3df92dd7b287f030c786c3a65a1a8916?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUYO01000023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.611,0.595,10.0,-9.388,1.0,0.0266,0.0447,8.48e-06,0.344,0.275,102.998,3.0,,Capitol Records,"C © 2010 Birds Of Tokyo Pty Ltd, P ℗ 2010 Birds Of Tokyo Pty Ltd, Manufactured and distributed by EMI Recorded Music Australia Pty Ltd",3875 +3876,spotify:track:1xpF92kg1hWLnkh3PGWEz4,Jingle Jangle,spotify:artist:33QmoCkSqADuQEtMCysYLh,The Archies,spotify:album:4gAdF0hBwzqhrmgkxHyRni,Sugar Sugar,spotify:artist:33QmoCkSqADuQEtMCysYLh,The Archies,1968-01-15,https://i.scdn.co/image/ab67616d0000b273659900ad24c52942a1b900cc,1,11,162150,https://p.scdn.co/mp3-preview/f3564a901221f3231ff1de32f930def89e71d46c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,QMDA61874620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic canadian rock,rock-and-roll",0.625,0.472,2.0,-11.18,1.0,0.0387,0.0368,0.0,0.148,0.617,109.302,4.0,,Calendar Records,"C (C) 1968 © Calendar Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",3876 +3877,spotify:track:0Dx3pLp5cHb5RKvCNHKdlK,From Yesterday,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,spotify:album:2jPmk6qQzuY5AvKkZxMh7h,A Beautiful Lie,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,2005,https://i.scdn.co/image/ab67616d0000b273a4f10a67aca8bf0eca668006,1,7,247373,https://p.scdn.co/mp3-preview/d5f2a6d9622f0f34c489cbd379c60c38637c4828?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USVI20500138,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,post-grunge",0.468,0.876,10.0,-4.841,1.0,0.0692,0.00578,0.00625,0.035,0.13,135.062,4.0,,Virgin Records,"C © 2005 Virgin Records America, Inc., P ℗ 2007 Virgin Records America, Inc.",3877 +3878,spotify:track:4D7ZvtLOG19HmtqKC8l0BI,In The Flesh - Remastered 2001,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,spotify:album:54V45InMvJ6uVtRtO6h1Co,Blondie (Remastered 2001),spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,1976-12-01,https://i.scdn.co/image/ab67616d0000b273d377fa9b12ba09ee525b60a8,1,3,153133,https://p.scdn.co/mp3-preview/ac8ecadb470661814ff819da2391d34be5e19626?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USCH30100025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop,permanent wave,power pop,rock,synthpop",0.347,0.483,9.0,-7.702,1.0,0.0329,0.586,4.44e-05,0.194,0.727,200.91,3.0,,Chrysalis\EMI Records (USA),"C © 2003 Capitol Records, LLC, P ℗ 2003 Capitol Records, LLC",3878 +3879,spotify:track:5EauMVTXVoQOkax03XXVaV,Adam's Song,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:1fF8kYX49s5Ufv4XEY5sjW,Enema Of The State,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,1999-01-01,https://i.scdn.co/image/ab67616d0000b27315a7914ef11f09b4c537f078,1,7,249753,https://p.scdn.co/mp3-preview/f028a65b6cf91d93e815a5c795c7dc512afce375?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19959122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.518,0.789,0.0,-5.806,1.0,0.0367,0.0372,0.0,0.337,0.393,136.023,4.0,,Universal Music Group,"C © 1999 Geffen Records, P ℗ 1999 Geffen Records",3879 +3880,spotify:track:5K3Q1gue9nWLLwh6bYQFoB,Kyrie,spotify:artist:7Bah8E0kCETqEpAHI6CPzQ,Mr. Mister,spotify:album:682sQ449vmcJXS2AGIMrsl,Welcome To The Real World,spotify:artist:7Bah8E0kCETqEpAHI6CPzQ,Mr. Mister,1985-11-27,https://i.scdn.co/image/ab67616d0000b273cfccabf39d00d34235d5bcd6,1,7,265840,https://p.scdn.co/mp3-preview/1af37e62bb9dc41f9651001c85e96e9e5e574032?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC19900944,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,new romantic,new wave pop,soft rock,synthpop",0.496,0.566,0.0,-13.749,1.0,0.035,0.0824,0.0,0.13,0.672,89.913,4.0,,RCA Records Label,P (P) 1985 BMG Entertainment,3880 +3881,spotify:track:4pKUJwmq9mYcs1KNUsqAHH,Exodus,"spotify:artist:41SzGMVZclC44YTVneXHlE, spotify:artist:6nqkjhZ5YWO4AKDD2wHXMq, spotify:artist:17rSwcIT9qu1OybU1lReJB","Ernest Gold, Charles Eugene Patrick Boone, Ferrante & Teicher",spotify:album:2p2qPa5OyxOHLZM0ti8nmL,All-Time Great Movie Themes,spotify:artist:17rSwcIT9qu1OybU1lReJB,Ferrante & Teicher,1993-02-09,https://i.scdn.co/image/ab67616d0000b273c5bfb7a153dbfe2a8fde91ff,1,2,176760,https://p.scdn.co/mp3-preview/7f6433e5b8b8d6b19a2741a9c852670a250678d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USEM39100179,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soundtrack,easy listening",0.477,0.231,2.0,-11.842,0.0,0.0259,0.857,0.497,0.0638,0.246,98.226,4.0,,Parlophone Catalogue,"C © 2006 Capitol Records Inc., P This Compilation ℗ 2006 Capitol Records Inc.",3881 +3882,spotify:track:43OdYMY7yMgBW3n5W4QQD9,Move Your Body,spotify:artist:64rxQRJsLgZwHHyWKB8fiF,Eiffel 65,spotify:album:65DySolRDG1LNSvRXcWQWN,Europop,spotify:artist:64rxQRJsLgZwHHyWKB8fiF,Eiffel 65,1999,https://i.scdn.co/image/ab67616d0000b273810117c8f9bbc79800076b3a,1,9,268863,https://p.scdn.co/mp3-preview/4064283350a8655b942b5e485d5c31bd08e60d36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ITT019910202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,italian adult pop,italo dance",0.745,0.958,7.0,-9.664,1.0,0.0287,0.0814,0.32,0.533,0.96,129.962,4.0,,,"C 1999 BlissCo., P 1999 BlissCo.",3882 +3883,spotify:track:3xiVh7Be0tcpU8MBap62nm,Goosebumps - Remix,"spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY, spotify:artist:2o08sCWF5yyo2G4DCiT7T9","Travis Scott, HVME",spotify:album:7N0XWQzj92gqmS5OmzX2YH,Goosebumps (Remix),"spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY, spotify:artist:2o08sCWF5yyo2G4DCiT7T9","Travis Scott, HVME",2021-01-13,https://i.scdn.co/image/ab67616d0000b2731cf7145f42edb14034a322eb,1,1,163024,https://p.scdn.co/mp3-preview/a60f61bb5804057fe854817ddc60ad8f4c898b50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USSM12100203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rap,slap house,slap house",0.837,0.565,1.0,-8.001,1.0,0.0405,0.475,0.0,0.216,0.81,124.981,4.0,,Cactus Jack/Epic,"P (P) 2021 Cactus Jack Records, LLC under exclusive license to Epic Records, a division of Sony Music Entertainment.",3883 +3884,spotify:track:421g9amcUikSqmfuG8EwON,Cousins,spotify:artist:5BvJzeQpmsdsFp4HGUYUEx,Vampire Weekend,spotify:album:0zeAijecFGZOS4OaRdPVz5,Contra,spotify:artist:5BvJzeQpmsdsFp4HGUYUEx,Vampire Weekend,2010-01-11,https://i.scdn.co/image/ab67616d0000b2732efbbd3b97ac33268266b805,1,7,145266,https://p.scdn.co/mp3-preview/78a3ab2016c109c4543e9a9f47268e0221ec503e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS0900321,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,chamber pop,garage rock,indie rock,indietronica,modern rock",0.494,0.811,11.0,-5.144,1.0,0.202,0.00122,0.0,0.0687,0.818,176.091,4.0,,XL,"C 2010 Vampire Weekend under exclusive license to XL Recordings Ltd., P 2010 Vampire Weekend under exclusive license to XL Recordings Ltd.",3884 +3885,spotify:track:0x5BKBAcia1th7UzcoHnD1,"I Do, I Do, I Do, I Do, I Do",spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1kM6xcSYO5ASJaWgygznL7,Abba,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1975,https://i.scdn.co/image/ab67616d0000b27392d0747a634fcc351c6ac3c2,1,7,195280,https://p.scdn.co/mp3-preview/3deee247451cf14be7e79b59985b8828c7a86316?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,SEAYD7501070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.461,0.806,0.0,-4.257,1.0,0.0355,0.677,0.0163,0.348,0.748,110.701,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",3885 +3886,spotify:track:2sy3y0825aefVtSJzuyOlA,Solutions,spotify:artist:5Lc6SH04SI5XYjM2caZlS7,The Sundance Kids,spotify:album:3nAUpf0YIlM6dsjvu4mVjn,Fall Into Place (Standard),spotify:artist:5Lc6SH04SI5XYjM2caZlS7,The Sundance Kids,2009-09-04,https://i.scdn.co/image/ab67616d0000b2730dc0e2aa1e20f2689984f475,1,2,198453,https://p.scdn.co/mp3-preview/675339d02394bd8d34b94a6b342f3c2f6e005d4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUWA00900072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.436,0.9,1.0,-3.099,1.0,0.078,0.0019,2.91e-06,0.146,0.401,156.921,4.0,,WM Australia,"C © 2009 Loud & Clear Entertainment Pty Limited Marketed and Distributed under exclusive licence by Warner Music Australia Pty Limited, P ℗ 2009 Loud & Clear Entertainment Pty Limited",3886 +3887,spotify:track:57paCKftbvFgAeG023x354,Paralyzer,spotify:artist:0niJkG4tKkne3zwr7I8n9n,Finger Eleven,spotify:album:3sjm2CgfGo0DmOWEC7MPBJ,Them Vs. You. Vs. Me,spotify:artist:0niJkG4tKkne3zwr7I8n9n,Finger Eleven,2007,https://i.scdn.co/image/ab67616d0000b273abd1efa7d1b9939f31f7c64d,1,1,208106,https://p.scdn.co/mp3-preview/38d80ad696391dd1c322f9bef722456d0bec3ac3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU30700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,funk metal,nu metal,post-grunge",0.644,0.939,11.0,-3.479,0.0,0.0447,0.149,0.0,0.227,0.882,106.013,4.0,,Wind Up,"C (C) 2010 Wind-Up Records LLCThis label copy information is the subject of copyright protection. All rights reserved.(C) EMI Music Germany GmbH & Co. KG, P (P) 2010 The copyright in this sound recording is owned by Wind-Up Records, LLC under exclusive licence to EMI Music Germany GmbH & Co. KG",3887 +3888,spotify:track:2yoCk1xYdULGPV1143r7CB,Joker And The Thief,spotify:artist:3yEnArbNHyTCwMRvD9SBy4,Wolfmother,spotify:album:747qcmgpdnnIG6lIBwNKhO,Wolfmother,spotify:artist:3yEnArbNHyTCwMRvD9SBy4,Wolfmother,2006-01-01,https://i.scdn.co/image/ab67616d0000b2733217cb59b28806950c7e1e25,1,6,280466,https://p.scdn.co/mp3-preview/295e3e10e9a1103e9d3787861eb75bf10bc40843?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,AUUM70500115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,australian psych,garage rock,modern blues rock,modern rock,rock",0.264,0.78,0.0,-2.741,1.0,0.0517,0.0452,0.0222,0.376,0.456,155.376,4.0,,Modular,"C © 2006 Modular Recordings, P ℗ 2006 Modular Recordings",3888 +3889,spotify:track:5IATbFZds3cbOx8YxuMuko,Emotional Rescue - Remastered 2009,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:5mEjFOLcBs94wSchOtMCTB,Emotional Rescue (2009 Re-Mastered),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1980-06-20,https://i.scdn.co/image/ab67616d0000b273fd7f25e52b730ad9b838f3d8,1,8,339400,https://p.scdn.co/mp3-preview/a98cd3b93a3495986b266e8921e50eedad1f59a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBUM70909391,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.678,0.621,5.0,-5.478,1.0,0.0623,0.111,0.0973,0.0394,0.776,113.389,4.0,,Polydor Records,"C © 2009 Promotone B.V., under exclusive licence to Universal International Music B.V.under exclusive licence to Universal International Music B.V., P ℗ 2009 Promotone B.V., under exclusive licence to Universal International Music B.V.",3889 +3890,spotify:track:29viePXNqWUw1cxqzOcuOD,I Love Rock 'N' Roll,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:5ax3GTsfX5uCUaNgnJsSG5,Britney (Digital Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2001-10-31,https://i.scdn.co/image/ab67616d0000b273e1a4e01cb7a1ecff468bbead,1,7,186533,https://p.scdn.co/mp3-preview/5ef86e587a9b8a85be7fcf4d6b436a8faff8428f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USJI10100427,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.709,0.728,9.0,-1.643,1.0,0.185,0.000811,0.105,0.564,0.572,180.107,4.0,,Jive,P (P) 2001 Zomba Recording LLC,3890 +3891,spotify:track:1sR4aKaHpLrc9u7g4ii90U,Need You Tonight,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:7CJvhqb2PJq5fBcY6eKqjl,INXS Remastered,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b273114b2baa75317b81a8c9c7ca,6,4,181106,https://p.scdn.co/mp3-preview/3b272d8783ab1350da669cb8fd71cbdbc174c23c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAMX8700008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.795,0.63,10.0,-7.217,0.0,0.084,0.0419,0.573,0.0894,0.785,108.701,4.0,,Petrol Records,"C © 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",3891 +3892,spotify:track:0DsSIgYP9q92m2DC9AiSyi,I'll Never Find Another You - Mono; 2009 Remaster,spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,spotify:album:48xoMFj55ye3ha1mLJNDi2,All Bound for Morningtown (Their EMI Recordings 1964-1968),spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,2009-05-25,https://i.scdn.co/image/ab67616d0000b27325dc006b75453b2ac229d20d,1,1,163813,https://p.scdn.co/mp3-preview/38301fbe99448ccb781bc254e41bfb19d74621b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBAYE0900177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.562,0.69,10.0,-7.713,1.0,0.0309,0.495,2.24e-06,0.406,0.849,126.105,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",3892 +3893,spotify:track:4GMJtV7vvTjRSmCj7TpJsx,Downhearted - Remastered,spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,spotify:album:4xDGaF0egAcfV0lDYc3PTV,The Boys Light Up (Remastered),spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,1980-01-01,https://i.scdn.co/image/ab67616d0000b273b7000e875518ee1d00018e9f,1,5,189000,https://p.scdn.co/mp3-preview/6a0ebf8368d7d25b5394cbd03b07c0471e3f3618?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUUM71301810,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.643,0.711,2.0,-6.77,0.0,0.0277,0.414,0.0,0.229,0.411,122.737,4.0,,Universal,"C © 2014 Universal Music Australia Pty Ltd., P ℗ 1980 Universal Music Australia Pty Ltd.",3893 +3894,spotify:track:1qUIyn3tNfkIJzfgJeeKCu,I've Got to Have You - 2015 Remaster,spotify:artist:4FtSnMlCVxCswABUmdhwpm,Carly Simon,spotify:album:5pl2dlCuEhZZ6J0JTXY2H7,Songs From the Trees (A Musical Memoir Collection),spotify:artist:4FtSnMlCVxCswABUmdhwpm,Carly Simon,2015-11-20,https://i.scdn.co/image/ab67616d0000b27354c838dcce8138704184c374,1,13,285773,https://p.scdn.co/mp3-preview/34134c6201d1054ba348808663f54ef49b523504?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USRH11507401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.55,0.167,2.0,-14.034,1.0,0.0331,0.722,6.76e-05,0.0981,0.106,115.173,4.0,,Rhino/Elektra,"C © 2015 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved., P ℗ 2015 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Marketed by Rhino Entertainment Company",3894 +3895,spotify:track:10sqe2FD4eb8MovY8Nyaii,Talking Body,spotify:artist:4NHQUGzhtTLFvgF5SZesLK,Tove Lo,spotify:album:2esdHJ5TiZcDXCnmy50hLa,Queen Of The Clouds (Blueprint Edition),spotify:artist:4NHQUGzhtTLFvgF5SZesLK,Tove Lo,2015-10-02,https://i.scdn.co/image/ab67616d0000b2735bb90a21a829668b348fa440,1,4,238426,https://p.scdn.co/mp3-preview/2350702484f0e449ef5e9827ac8b937f78e7490d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,40,SEUM71401533,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,metropopolis,pop,swedish electropop,swedish pop,swedish synthpop",0.736,0.761,4.0,-5.449,0.0,0.0338,0.0966,0.0,0.0823,0.114,119.999,4.0,,Universal Music AB,"C © 2015 Universal Music AB, P This Compilation ℗ 2015 Universal Music AB",3895 +3896,spotify:track:7Ar4G7Ci11gpt6sfH9Cgz5,Listen to the Music,spotify:artist:39T6qqI0jDtSWWioX8eGJz,The Doobie Brothers,spotify:album:2x1Yi30lsWJUoBj1kmovnm,Toulouse Street,spotify:artist:39T6qqI0jDtSWWioX8eGJz,The Doobie Brothers,1972,https://i.scdn.co/image/ab67616d0000b27391b51fa9b5967fb34c044498,1,1,227266,https://p.scdn.co/mp3-preview/8c0f0e1fcc1d1e6cb3baa54024b9181eff5ecf59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USWB10000626,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,mellow gold,rock,singer-songwriter,soft rock,yacht rock",0.645,0.598,1.0,-13.18,0.0,0.0334,0.221,3.53e-06,0.0721,0.913,105.929,4.0,,Warner Records,"C © 1972 Warner Records Inc., P ℗ 1972 Warner Records Inc.",3896 +3897,spotify:track:7JrliUN3sfsROFTiczOIII,Arthur's Theme (Best That You Can Do),spotify:artist:695W5F2Ih8dYahLdjVOIoH,Christopher Cross,spotify:album:32lmUaLZd5G6yoXvMNLVUI,80s Love,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2020-02-14,https://i.scdn.co/image/ab67616d0000b2731f5f70f909bb5a8767d97f0d,1,14,233720,https://p.scdn.co/mp3-preview/18b07f296062f19ab56c006441f547802b51cdf9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USWB10800109,spotify:user:bradnumber1,2021-10-30T21:35:44Z,"mellow gold,soft rock,yacht rock",0.463,0.663,9.0,-7.994,1.0,0.0382,0.157,2.22e-06,0.107,0.519,136.488,4.0,,Rhino,"C © 2020 This Compilation Rhino UK a division of Warner Music UK Ltd, P ℗ 2020 This Compilation Rhino UK a division of Warner Music UK Ltd",3897 +3898,spotify:track:4sOT0ksc174RY6GJUu8Wjy,"Fallin' - Original Song from the TV Series ""The Secret Daughter""",spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:73fkwrVXKsbBGHt19KQazX,The Secret Daughter Season Two (Songs from the Original 7 Series),spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2017-10-06,https://i.scdn.co/image/ab67616d0000b273941f6bb63a34ca7d89b86175,1,7,189230,https://p.scdn.co/mp3-preview/0570ab7994703dac1ed7d0304344048060f32b47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM01700549,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.716,0.465,6.0,-5.83,0.0,0.0331,0.176,0.0,0.102,0.299,125.012,4.0,,Sony Music Entertainment,P (P) 2017 Sony Music Entertainment Australia Pty Ltd / Screentime Pty Limited / Seven Network (Operations) Limited,3898 +3899,spotify:track:4gM6auSy5YoUSULkQmRuWZ,About You Now,spotify:artist:7rZNSLWMjTbwdLNskFbzFf,Sugababes,spotify:album:0t1p5iGv5IaRlWA7vs76HU,Change,spotify:artist:7rZNSLWMjTbwdLNskFbzFf,Sugababes,2007-01-01,https://i.scdn.co/image/ab67616d0000b2734bd9f61affd96a9a951bb77e,1,1,212400,https://p.scdn.co/mp3-preview/8a453489af651d93afa3e243df0d34b3798dff39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBUM70706601,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group,talent show",0.584,0.699,1.0,-6.065,0.0,0.0378,6.52e-05,6.05e-05,0.486,0.585,82.499,4.0,,Universal-Island Records Ltd.,"C © 2007 Universal Island Records Ltd. A Universal Music Company., P ℗ 2007 Universal Island Records Ltd. A Universal Music Company.",3899 +3900,spotify:track:12UzVR0M7asW2MHAZRJk0I,Tie a Yellow Ribbon Round the Ole Oak Tree (feat. Tony Orlando) - 1998 Remastered,"spotify:artist:1vjeJ712UQutRhn6WJI4sF, spotify:artist:6PNZ6ZfwWLiUA2BrranFl3","Dawn, Tony Orlando",spotify:album:3mrqSIFeycc3CccoaHR0Tq,Tuneweaving,spotify:artist:72NXpYBIaTfEeAAsxXLs0P,Tony Orlando & Dawn,1973-05-12,https://i.scdn.co/image/ab67616d0000b27326a5ecc163c7eee1d242f09b,1,6,206253,https://p.scdn.co/mp3-preview/3423ff61f0ff24fd184499f64bf2f1a283d78b84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USAR19800305,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.559,0.615,5.0,-12.27,1.0,0.0473,0.283,0.0,0.0957,0.68,87.601,4.0,,Arista,P (P) 1973 Arista Records LLC,3900 +3901,spotify:track:5kVU4z9zL3M7w7EVhBBbEF,She Said,spotify:artist:7qlh1IM1XMeQXA9ukp59au,Plan B,spotify:album:0HGOJnOv8G5EIWBZnbm2tC,The Defamation of Strickland Banks,spotify:artist:7qlh1IM1XMeQXA9ukp59au,Plan B,2010-04-09,https://i.scdn.co/image/ab67616d0000b273c94fa1e2013d10f1272e8155,1,4,208853,https://p.scdn.co/mp3-preview/9fa2f4fd3e6c57ffe98233aca1f9b25c3ecab61a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBFFS1000013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.72,0.538,3.0,-5.85,0.0,0.141,0.301,3.03e-06,0.144,0.815,147.007,4.0,,679 Recordings UK. Ltd.,"C © 2010 679 Recordings Ltd., P ℗ 2010 679 Recordings Ltd.",3901 +3902,spotify:track:0Tdh0VTkzmPGeAQIXHYhVJ,Antisocial (with Travis Scott),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY","Ed Sheeran, Travis Scott",spotify:album:5oUZ9TEZR3wOdvqzowuNwl,No.6 Collaborations Project,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2019-07-12,https://i.scdn.co/image/ab67616d0000b273d154d078766c19a437520f15,1,7,161746,https://p.scdn.co/mp3-preview/befcfc41a67cdec3871c7b4000e3e7195f62f89c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBAHS1900966,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop,rap,slap house",0.716,0.823,5.0,-5.313,0.0,0.0495,0.132,0.0,0.361,0.91,151.957,4.0,,Atlantic Records UK,"C © 2019 Warner Music UK Limited., P ℗ 2019 An Asylum Records UK release, a division of Atlantic Records UK; ℗ 2019 Warner Music UK Limited except track 6 ℗ 2019 Warner Music UK / Def Jam Recordings, a division of UMG Recordings, Inc",3902 +3903,spotify:track:0PsbWiVtix5FoTZ1s00mEl,Come Sail Away,spotify:artist:4salDzkGmfycRqNUbyBphh,Styx,spotify:album:6MFIBPVrZjHjP0pPkVF3IU,The Grand Illusion,spotify:artist:4salDzkGmfycRqNUbyBphh,Styx,1977-01-01,https://i.scdn.co/image/ab67616d0000b27388f0f719259b0dec23a7c367,1,4,367000,https://p.scdn.co/mp3-preview/1c4230c09ea44c03a840f872c69696e01678f88b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USUMG0000438,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,progressive rock,rock,soft rock",0.324,0.335,0.0,-15.595,1.0,0.0355,0.099,1.08e-06,0.0995,0.141,119.513,4.0,,A&M,"C © 1977 A&M Records, P ℗ 1977 A&M Records",3903 +3904,spotify:track:5EzNQowUZrW8dd92HLvRsK,Drink Too Much,spotify:artist:4SdIXLzfabqU61iK7SnKAU,G Flip,spotify:album:7yQv1Q9nUoJz6giVn95gax,Drink Too Much,spotify:artist:4SdIXLzfabqU61iK7SnKAU,G Flip,2019-01-18,https://i.scdn.co/image/ab67616d0000b273437d60f35824aee69d8f505b,1,1,220627,https://p.scdn.co/mp3-preview/e4167e398762bfe3d65b262e8059fc30158b0663?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFF01900007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian alternative pop,0.704,0.683,8.0,-4.536,0.0,0.0412,0.0681,0.0,0.166,0.71,93.959,4.0,,G Flip,"C 2019 G Flip, P 2019 G Flip",3904 +3905,spotify:track:1Slwb6dOYkBlWal1PGtnNg,Thinking out Loud,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:6NoBzYmh5gUusGPCfg0pct,x - Wembley Edition,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2013,https://i.scdn.co/image/ab67616d0000b273d08209944468440145f01524,1,11,281560,https://p.scdn.co/mp3-preview/7b5d54ffb3c4e5c28adafe19532de22508d62851?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAHS1400099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.781,0.445,2.0,-6.061,1.0,0.0295,0.474,0.0,0.184,0.591,78.998,4.0,,Atlantic Records UK,"C © 2015 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 / 2015 Asylum Records UK, a Warner Music UK Company except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",3905 +3906,spotify:track:5kX3W7UC1gCmudip31Jn5U,Blueberry Hill,spotify:artist:7gZMm6pQpLhYgWN2cABBP9,The Loved Ones,spotify:album:6o24C44s73co75GFoIZfwq,Magic Box,spotify:artist:7gZMm6pQpLhYgWN2cABBP9,The Loved Ones,1995-01-01,https://i.scdn.co/image/ab67616d0000b2730216a1458c48680240d64416,1,6,160106,https://p.scdn.co/mp3-preview/12579043537928f09574c2047bbfcb5c7cb703c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUUM71000575,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.5,0.355,2.0,-11.344,1.0,0.0359,0.177,3.24e-05,0.31,0.859,123.447,4.0,,Universal Music Australia Pty. Ltd.,"C © 1995 Polygram Pty Ltd, P ℗ 1995 Polygram Pty Ltd",3906 +3907,spotify:track:6bwY6k7dIZC14p8a3ELlGd,Come And See Her,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,spotify:album:6yczcYYmQiZslouFGXZAko,It's 2 Easy,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,1966-04-01,https://i.scdn.co/image/ab67616d0000b27344887f6663c15f178d5829e2,1,4,161666,https://p.scdn.co/mp3-preview/46bcb4a400cf570a84ef3618f3c76114459a547b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06600018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,freakbeat,protopunk,psychedelic rock",0.493,0.542,11.0,-7.345,0.0,0.0337,0.0783,0.00123,0.143,0.447,119.825,4.0,,Albert Productions,"C © 1966 BMG AM Pty Ltd., P ℗ 1966 BMG AM Pty Ltd.",3907 +3908,spotify:track:1zdGSzFBBjrFBKftLesPeH,"Love Is All Around - From ""Four Weddings and a Funeral"" Original Motion Picture Soundtrack",spotify:artist:2u0gw0uCWBMiqV7h0N8kai,Wet Wet Wet,spotify:album:1mnjhNxGlBdesgCqqileGw,Step By Step The Greatest Hits,spotify:artist:2u0gw0uCWBMiqV7h0N8kai,Wet Wet Wet,2013-11-25,https://i.scdn.co/image/ab67616d0000b273cecf5d59e55b0264215cbe12,1,20,237958,https://p.scdn.co/mp3-preview/db7bb0d198d775ed415e58199ca84ce23caa31e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF089400173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,new romantic,new wave pop,soft rock,sophisti-pop",0.438,0.673,10.0,-7.7,1.0,0.0314,0.255,0.0,0.208,0.596,169.851,4.0,,Universal Music Group,"C © 2013 Mercury Records Limited, P ℗ 2013 Mercury Records Limited",3908 +3909,spotify:track:5hvwx5i67IwnCkjl9VHkNv,Diamonds,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:2IAyprsfyoPBGDvbLjgsN5,Diamonds,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2020-09-17,https://i.scdn.co/image/ab67616d0000b273f207514228c0a5db1ae3b116,1,1,213869,https://p.scdn.co/mp3-preview/451f849a761c3ce4a54bf2caab5bcc7e34bf5be0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBUM72002531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.653,0.667,10.0,-6.764,0.0,0.0423,0.154,0.0,0.107,0.556,104.181,4.0,,PLG - Capitol,"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",3909 +3910,spotify:track:5qBZceO4REC6Gdouon1zjC,Disappear,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:5iRDO2cnFmb95rjzpiVJrT,The Very Best,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b27361720ec9790c8d7a64698ac7,1,7,248533,https://p.scdn.co/mp3-preview/c97e7f5710ce81042d83397262f5185c57e92a58?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMX9000004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.64,0.8,9.0,-5.542,1.0,0.0364,0.0102,1.64e-06,0.0801,0.869,125.076,4.0,,Universal Music Group,"C © 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",3910 +3911,spotify:track:2nWHzbBWBOePUvAImQv2So,Rockit,spotify:artist:2ZvrvbQNrHKwjT7qfGFFUW,Herbie Hancock,spotify:album:108uNBYGawRo3aQiaA7lQY,Future Shock,spotify:artist:2ZvrvbQNrHKwjT7qfGFFUW,Herbie Hancock,1983,https://i.scdn.co/image/ab67616d0000b273efab1b00214fb882506ae630,1,1,325133,https://p.scdn.co/mp3-preview/2d9a24d1a8ee70d639e1bb8cf87552f93fa89de0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USSM19804808,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary post-bop,instrumental funk,jazz,jazz funk,jazz fusion,jazz piano",0.878,0.951,7.0,-5.077,1.0,0.069,0.0317,0.544,0.0614,0.607,111.334,4.0,,Columbia/Legacy,"P (P) 1983, 1984 Sony Music Entertainment Inc.",3911 +3912,spotify:track:4z51Gf7Ppt9Lmu5zmnUIz9,Baby Don't Get Hooked on Me,spotify:artist:6HX8AbXUFaYRtlqKb4CCo0,Mac Davis,spotify:album:2xFMzRc1yucPQIk8P0CcxM,Baby Don't Get Hooked On Me,spotify:artist:6HX8AbXUFaYRtlqKb4CCo0,Mac Davis,1972-09-09,https://i.scdn.co/image/ab67616d0000b27343fe91d88224c0c916a104a2,1,10,183933,https://p.scdn.co/mp3-preview/9e89a21ff01ad0d055f45a62798c7c87565a76ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM19920756,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country rock",0.495,0.307,9.0,-18.168,1.0,0.0403,0.26,5.21e-05,0.103,0.802,80.97,4.0,,Columbia/Legacy,P (P) 1972 SONY BMG MUSIC ENTERTAINMENT,3912 +3913,spotify:track:6V4y4uuMAxe2EYDIWNToaH,Pictures Of You,spotify:artist:4UrGiQXrpB2CmzVGVFtH5E,The Last Goodnight,spotify:album:4EVjjpQd3Qw6tWIHgII6Rq,Pictures Of You,spotify:artist:4UrGiQXrpB2CmzVGVFtH5E,The Last Goodnight,2007-01-01,https://i.scdn.co/image/ab67616d0000b273d447e2c9f6a50202f76797eb,1,1,190173,https://p.scdn.co/mp3-preview/9643416803fa01850e02f85452ab15fb0771b98f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USVI20700726,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.325,0.816,2.0,-3.714,1.0,0.0633,0.165,0.0,0.0729,0.579,207.673,4.0,,Virgin Records,"C © 2007 Virgin Records America, Inc., P ℗ 2007 Virgin Records America, Inc.",3913 +3914,spotify:track:6DU7X9yhp4xgkhNHJxgEOZ,House of the Rising Sun,spotify:artist:0K24Tk5QTxx6tkcCdnY3Od,Frijid Pink,spotify:album:0iJw85z9TeTC0aVrIbwEEf,On the Edge,spotify:artist:0K24Tk5QTxx6tkcCdnY3Od,Frijid Pink,2018-05-10,https://i.scdn.co/image/ab67616d0000b273892fa7b1c6d2fddc9afda083,1,15,269933,https://p.scdn.co/mp3-preview/5c4d7baf79b468246956eef01b7026c81946d489?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,QZ6YL1700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit rock,proto-metal,psychedelic blues-rock",0.254,0.761,7.0,-3.744,1.0,0.0472,0.0006,0.0004,0.265,0.412,118.752,4.0,,Dynasty Records,"C 2018 Dynasty Records, P 2018 Dynasty Records",3914 +3915,spotify:track:1EKS9Hd3S5E4omE43acvsi,Coming Back,spotify:artist:5kYRleHXLNnjpYzC1pTLym,Dean Ray,spotify:album:4LBLIXX2V5Cc6RLVnI58F4,Dean Ray,spotify:artist:5kYRleHXLNnjpYzC1pTLym,Dean Ray,2014-11-21,https://i.scdn.co/image/ab67616d0000b2737adbc1d5b9ea81e41c2bc6d5,1,1,197320,,False,0,AUBM01400734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian talent show,0.666,0.893,4.0,-3.933,0.0,0.0471,0.0501,0.0,0.188,0.846,122.047,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,3915 +3916,spotify:track:5PoMpQ3ItAwMWCyHI7OpuO,S-S-S-Single Bed,spotify:artist:5ezs1quhJaLV7bq3FmNWxu,Fox,spotify:album:0qJDL0ydx380AAotBFG19z,Best of Fox,spotify:artist:5ezs1quhJaLV7bq3FmNWxu,Fox,2012-07-02,https://i.scdn.co/image/ab67616d0000b27390483067af35e826a0975979,1,10,232946,https://p.scdn.co/mp3-preview/325b011c854e2efb23fa99c9242a447dc1665ea0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBLY0605278,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.767,0.846,10.0,-9.014,0.0,0.066,0.0555,4.48e-05,0.0436,0.912,103.703,4.0,,Cherry Red Records,"C (C) 2012 Cherry Red Records, P (P) 2012 Cherry Red Records",3916 +3917,spotify:track:5gb9UJkh8TfrNMRYOJNbew,Gives You Hell,spotify:artist:3vAaWhdBR38Q02ohXqaNHT,The All-American Rejects,spotify:album:5doKZJ05r4UbAp9rmpDRDD,When The World Comes Down,spotify:artist:3vAaWhdBR38Q02ohXqaNHT,The All-American Rejects,2008-01-01,https://i.scdn.co/image/ab67616d0000b2733ebbaf69ee21176cc04c9182,1,4,213106,https://p.scdn.co/mp3-preview/d86175c06b0fe2d2b1357774a480cf0994c3a767?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM70837368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neo mellow,neon pop punk,pop punk,pop rock,post-grunge",0.718,0.691,4.0,-6.44,1.0,0.0387,0.0159,0.0,0.0627,0.552,100.008,4.0,,Interscope,"C © 2008 DGC/Interscope Records, P ℗ 2008 DGC/Interscope Records",3917 +3918,spotify:track:4bQGI1roeSr8Q85on2tQNU,Lean On Me,spotify:artist:4kEAjV4pCBOkoowYYQydvO,Club Nouveau,spotify:album:5bpExIDtRjmIzOIoGonn4R,Greatest Hits,spotify:artist:4kEAjV4pCBOkoowYYQydvO,Club Nouveau,2003-09-30,https://i.scdn.co/image/ab67616d0000b27339f3f214192cf68ea828f753,1,1,294946,https://p.scdn.co/mp3-preview/d265f7c4be2961811e7c67681d1fcdd632a78edd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US78T0723438,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,freestyle,funk,new jack swing,post-disco,quiet storm,urban contemporary",0.748,0.629,0.0,-8.42,1.0,0.066,0.0168,0.0,0.0991,0.919,182.448,4.0,,Classic Nouveau Music,"C 2007 Classic Nouveau Music, P 2007 Classic Nouveau Music",3918 +3919,spotify:track:44AtutBMMWw14r9CkZ0wna,Elevator (feat. Timbaland),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ","Flo Rida, Timbaland",spotify:album:5j1wrOAOm5KFd17pPiSvle,Mail on Sunday,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2008-03-17,https://i.scdn.co/image/ab67616d0000b273f9bd7a6c772ac496015be3f8,1,3,229973,https://p.scdn.co/mp3-preview/a77b65cdc370ac925c5c6f1200fe69d5e9644479?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USAT20800943,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,dance pop,pop,pop rap",0.812,0.874,6.0,-6.015,0.0,0.0905,0.109,2.48e-05,0.214,0.47,120.025,4.0,,Poe Boy/Atlantic,"C © 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",3919 +3920,spotify:track:6splO3UF8hSmK33y5fJTNk,Lay It All on Me (feat. Ed Sheeran),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Rudimental, Ed Sheeran",spotify:album:68s1AYwi1JtoTOD0ggqr2j,We the Generation,spotify:artist:4WN5naL3ofxrVBgFpguzKo,Rudimental,2015-10-02,https://i.scdn.co/image/ab67616d0000b2733dc1ad51381cfbb9800bced8,1,13,242440,https://p.scdn.co/mp3-preview/5f509081db5aae5ff3cc43b0029b9e70b55f9309?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAHS1400395,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,pop,singer-songwriter pop,uk pop",0.669,0.747,6.0,-7.108,1.0,0.0428,0.141,0.0,0.185,0.483,122.531,4.0,,Asylum/Major Tom's,"C © 2015 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company, P ℗ 2015 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company",3920 +3921,spotify:track:73QEvtBq1fNbMnlhQSFV9M,Bad Child,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,spotify:album:2WSnuau1j8jGUrrCvRo8rK,Bad Child / Can't Be Happy All the Time,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,2020-03-12,https://i.scdn.co/image/ab67616d0000b2733f977d08405e2c034b7c5fe4,1,1,221466,https://p.scdn.co/mp3-preview/30430b3cbdbc54e243af0ce5bc58abda130ff97b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,46,USAT22000730,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.758,0.555,6.0,-4.24,0.0,0.0342,0.412,0.0,0.158,0.578,118.003,4.0,,Sony Music Entertainment,P (P) 2020 Bad Batch Records,3921 +3922,spotify:track:7v1858htfU0srTDwhxeka8,Chain Gang,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,spotify:album:40y4Rm3Oum1bQlzIxZpVPq,Swing Low,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,1961-03,https://i.scdn.co/image/ab67616d0000b27388cede5df025bd95e70dce21,1,6,155173,https://p.scdn.co/mp3-preview/7dfa2d2341d8a454ef55f169eee0ce674ada2cc7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USRC10501179,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,soul,vocal jazz",0.703,0.724,7.0,-10.818,1.0,0.0467,0.73,0.0,0.518,0.963,131.821,4.0,,RCA/Legacy,"P Originally released 1961. All rights reserved by RCA Records, a division of Sony Music Entertainment",3922 +3923,spotify:track:1ZA8L9IOkRhmmz4nPXXx7h,Hotel California - 2013 Remaster,spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,spotify:album:21SQdfthbXUibmA8Jtf30b,The Complete Greatest Hits (2013 Remaster),spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,2013-04-26,https://i.scdn.co/image/ab67616d0000b2738ba7b9be0ea28900ee4e8f87,1,17,391376,https://p.scdn.co/mp3-preview/6fedc11d0f55bef176cc1c5725ac1c57f9a2534a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USEE11300353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,heartland rock,mellow gold,rock,soft rock,yacht rock",0.579,0.508,2.0,-9.484,1.0,0.027,0.00574,0.000494,0.0575,0.609,147.125,4.0,,Rhino/Elektra,"C © 2003 Elektra Records, P ℗ 2003 Elektra Records. Marketed by Warner Strategic Marketing, a Warner Music Group Company.",3923 +3924,spotify:track:4sOX1nhpKwFWPvoMMExi3q,Primadonna,spotify:artist:6CwfuxIqcltXDGjfZsMd9A,MARINA,spotify:album:49kf7gWWtReFwPcCNsvyUf,Electra Heart (Deluxe),spotify:artist:6CwfuxIqcltXDGjfZsMd9A,MARINA,2012-04-27,https://i.scdn.co/image/ab67616d0000b273203e4c6a048df02a21cdd813,1,2,221075,https://p.scdn.co/mp3-preview/348095fbb0f83352a3da25bcdcc45a206c83a963?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBFFS1200009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,pop,pov: indie,uk alternative pop",0.66,0.689,4.0,-2.671,0.0,0.0337,0.0884,0.0,0.0922,0.427,127.98,4.0,,Atlantic Records UK,"C 2013 © 2012 679 Recordings Ltd., P ℗ 2012 679 Recordings Ltd.",3924 +3925,spotify:track:0Nhu3zSYbEz32IYiobV75e,Now Or Never,spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,spotify:album:1fV3TdIojhb9lQXd72HiPq,hopeless fountain kingdom (Deluxe),spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,2017-06-02,https://i.scdn.co/image/ab67616d0000b2739357ea2dbe932b47fe8149d6,1,6,214801,https://p.scdn.co/mp3-preview/b4c9f2646fbf34d2deaa359bff897c6559eb801c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71701077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,etherpop,indie poptimism,pop",0.663,0.575,6.0,-4.907,0.0,0.0458,0.1,3.16e-06,0.133,0.458,110.04,4.0,,Universal Music Group,"C © 2017 Astralwerks, P ℗ 2017 Astralwerks",3925 +3926,spotify:track:2sKgjO8vxk7znTpwNAptaW,Small Bump,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:0W5GGnapMz0VwemQvJDqa7,+,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2011-09-09,https://i.scdn.co/image/ab67616d0000b273e6d489d359c546fea254f440,1,6,259413,https://p.scdn.co/mp3-preview/c8e668fd53f8bde5df210f489b78186d8c49aec1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAHS1100203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.81,0.436,10.0,-12.683,1.0,0.0717,0.689,0.000151,0.11,0.446,119.973,4.0,,Atlantic Records UK,"C © 2011 Warner Music UK Limited, P ℗ 2011 Warner Music UK Limited",3926 +3927,spotify:track:1eQuRtkMEPhf2DGzpBVTE6,Ode To My Family,spotify:artist:7t0rwkOPGlDPEhaOcVtOt9,The Cranberries,spotify:album:2KsgTeLQXz7yDV1joGOd2L,No Need To Argue (The Complete Sessions 1994-1995),spotify:artist:7t0rwkOPGlDPEhaOcVtOt9,The Cranberries,1994-10-03,https://i.scdn.co/image/ab67616d0000b27306954ee747746805e67fcbbd,1,1,271533,https://p.scdn.co/mp3-preview/554b3353b9e1eef5b42db40a9e2d30553c1a8aaa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USIR29400440,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,pop rock,rock",0.367,0.443,7.0,-10.11,1.0,0.0235,0.0472,1.46e-06,0.344,0.149,93.93,4.0,,Universal Music Group,"C © 2002 The Island Def Jam Music Group, P ℗ 2002 The Island Def Jam Music Group",3927 +3928,spotify:track:2GCCFm4IUNvWLyPEdk5U73,Beautiful Trauma,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:0pYHCWDHZulJiidjNYCZV4,Beautiful Trauma,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2017-10-13,https://i.scdn.co/image/ab67616d0000b2737ad599898d5097d08dc2ebab,1,1,250053,https://p.scdn.co/mp3-preview/422669464860359151b3b929adfd4265b5756556?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USRC11701969,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.641,0.624,7.0,-6.412,1.0,0.0678,0.0756,3.76e-06,0.387,0.207,95.969,4.0,,RCA Records Label,"P (P) 2017 RCA Records, a division of Sony Music Entertainment",3928 +3929,spotify:track:3Qvf812dY5JVlaZEbzI3nZ,The Rockafeller Skank - Full Version,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,spotify:album:4qicpEx9YhJukXDyin0bkC,"You've Come A Long Way, Baby",spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,1998-09-14,https://i.scdn.co/image/ab67616d0000b273c7e778ef5af408cd762995d4,1,2,412640,https://p.scdn.co/mp3-preview/9e4b75c6581f61158a4d8d1bac742c186417f6e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBMQ9800025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica",0.664,0.991,7.0,-6.693,1.0,0.23,0.0123,0.00402,0.227,0.101,152.565,4.0,,Skint,"C (C) 1998 Skint Records, P (P) 1998 Skint Records",3929 +3930,spotify:track:5fs6uHSuhtfrYTyfp4uJzv,Can We Fix It? (Opening Theme),spotify:artist:52VfGq3cCGwYsc5UGObOb0,Bob The Builder,spotify:album:6XEbBnSTB1R4h41kHn1JMJ,Can We Fix It? (Opening Theme) - Single,spotify:artist:52VfGq3cCGwYsc5UGObOb0,Bob The Builder,2017-04-07,https://i.scdn.co/image/ab67616d0000b273010955af1dbf63f5d0a947dc,1,1,123040,,False,0,QM4TX1754144,spotify:user:bradnumber1,2020-03-05T09:20:46Z,"british children's music,cartoon",0.697,0.37,4.0,-21.28,1.0,0.0443,0.164,0.0,0.231,0.899,140.047,4.0,,HiT Entertainment,"C (C) 2017 HIT Entertainment (Bob The Builder), P (P) 2017 Hit Entertainment",3930 +3931,spotify:track:0uNc5YAhFT2ssP50qWtbVi,Just Like a Pill,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2dpS2uYlkzDsPjl3IZbNjD,Greatest Hits...So Far!!!,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2010-11-12,https://i.scdn.co/image/ab67616d0000b2730eb56329734f9400c1639359,1,4,237466,https://p.scdn.co/mp3-preview/316fbd0dc1906249562b9521a7f329fc221e2846?cid=9950ac751e34487dbbe027c4fd7f8e99,True,40,USAR10100716,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.672,0.813,9.0,-3.568,1.0,0.0275,5.71e-05,0.0,0.0759,0.251,102.036,4.0,,LaFace Records,"P (P) 2010 LaFace Records, a unit of Sony Music Entertainment",3931 +3932,spotify:track:77IRyrOkpKBIlNQu59zdvX,"Can't Take My Eyes off of You - From ""Jersey Boys""",spotify:artist:4QTd2YuZS6ShgqWfeREdB3,John Lloyd Young,spotify:album:5sCVURwZOOd13unG0uJmNX,Jersey Boys Original Broadway Cast Recording,spotify:artist:28W9apMi2vgk9O9LnkijIC,Jersey Boys,2005-11-15,https://i.scdn.co/image/ab67616d0000b273719da63af6072078bb73536d,1,18,197373,https://p.scdn.co/mp3-preview/ad640626303e81431697239c9d7925ef1b76af4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USRH10531567,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.692,0.794,2.0,-6.629,1.0,0.11,0.11,0.0,0.138,0.464,131.999,4.0,,Rhino,"C © 2005 Jersey Boys Broadway Limited Partnership under exclusive license to Rhino Entertainment Co., A Warner Music Group Co., P ℗ 2005 Jersey Boys Broadway Limited Partnership under exclusive license to Rhino Entertainment Co., A Warner Music Group Co.",3932 +3933,spotify:track:0umt15SYRpRlkYbQLBzUvB,Watch Yo Bitch (feat. H2O),"spotify:artist:1wnKNQkgZlhI2HOkxyMDIc, spotify:artist:57lkuf4ovDqG4V3ntPubzn","Teflon Hustle Don, H2O",spotify:album:6zKbLop4wD4rxlXsZ9tqvv,Watch Yo Bitch (feat. H2O),spotify:artist:1wnKNQkgZlhI2HOkxyMDIc,Teflon Hustle Don,2021-05-28,https://i.scdn.co/image/ab67616d0000b273e49fe747d8b77f90ed3ba42b,1,1,150234,https://p.scdn.co/mp3-preview/b8b74dfd8fdb116bb83b7051cbe28e81afad20ae?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUYG1370979,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.803,0.765,1.0,-8.435,0.0,0.357,0.341,0.0,0.283,0.833,100.039,4.0,,Bay Area Block Report,"C 2021 Bay Area Block Report, P 2021 Bay Area Block Report",3933 +3934,spotify:track:1kU3wjrhiA3L20RLZAUBS4,We Love - Original,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,spotify:album:5cFLNOa2BnKCwb0XZs0FPf,From Here To Anywhere,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,2011-01-01,https://i.scdn.co/image/ab67616d0000b273e08d56fc06ac8ff777427539,1,2,171969,https://p.scdn.co/mp3-preview/f803dffb9e2f2d3ea7e485733a0a5db389f2118a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71100421,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,funktronica",0.93,0.792,7.0,-3.605,1.0,0.0712,0.00502,3.25e-05,0.143,0.891,124.992,4.0,,Universal Music Group,"C © 2011 Modular Recordings, P ℗ 2011 Modular Recordings",3934 +3935,spotify:track:4F2t297QK40XFcIHqkmLHs,I Wish It Would Rain Down - 2016 Remaster,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:2sS9l8uc3d3UsK9unJyrD8,...But Seriously (Deluxe Edition),spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1989-11-20,https://i.scdn.co/image/ab67616d0000b273fb2daafa0993f39d87a84385,1,6,327746,https://p.scdn.co/mp3-preview/558ae2dbbf71111385235816b64745a33f9067cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRH11602149,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.51,0.667,8.0,-4.715,1.0,0.0294,0.292,0.00683,0.313,0.356,125.887,4.0,,Rhino,"C © 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company, P ℗ 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company",3935 +3936,spotify:track:0mBKv9DkYfQHjdMcw2jdyI,Chunky,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:4PgleR09JVnm3zY1fW3XBA,24K Magic,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2016-11-17,https://i.scdn.co/image/ab67616d0000b273232711f7d66a1e19e89e28c5,1,2,186973,https://p.scdn.co/mp3-preview/cb1271bde07433fa99a73e11763003a1116722c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT21602946,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.571,0.539,5.0,-4.446,0.0,0.116,0.0208,0.0,0.125,0.727,202.103,4.0,,Atlantic Records,"C © 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",3936 +3937,spotify:track:1yHT4TeFm80QQgictSssmm,Personal,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:3hQ64JbgfPMbXwYRvmZ41z,Sweet Talker (Deluxe Version),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2014-10-10,https://i.scdn.co/image/ab67616d0000b27301b57b2d37dad2a9e1fb10b9,1,6,234906,https://p.scdn.co/mp3-preview/083d15ccd2e9d13b6f9f0c8b631aa8369b4a9671?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71412827,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.581,0.64,9.0,-5.633,1.0,0.239,0.412,0.0,0.225,0.402,136.105,4.0,,Universal Music Group,"C © 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC, P ℗ 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC",3937 +3938,spotify:track:5oSCqtN7I9XjeMrnmN0fWW,"Tom's Diner - 7"" Version","spotify:artist:2rGm8R7YDTbqDCVlNssQyL, spotify:artist:3X0tJzVYoWlfjLYI0Ridsw","DNA, Suzanne Vega",spotify:album:516WjuhfoWVrN3ihZN2iDX,RetroSpective: The Best Of Suzanne Vega,spotify:artist:3X0tJzVYoWlfjLYI0Ridsw,Suzanne Vega,2003-01-01,https://i.scdn.co/image/ab67616d0000b273e146a62685d8a76a59867d59,1,2,228533,https://p.scdn.co/mp3-preview/b89387075711416204b92aab73421fae19a02e30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19104302,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,lilith,new romantic,new wave pop,permanent wave,singer-songwriter",0.86,0.607,6.0,-6.706,0.0,0.042,0.0189,0.00816,0.0403,0.732,99.15,4.0,,A&M,"C © 2003 A&M Records, P ℗ 2003 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",3938 +3939,spotify:track:2cWHN0WK52RGAWHgaDamUA,Take It to the Limit - 2013 Remaster,spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,spotify:album:0F77QekrNe8vVAjU2sepja,One of These Nights (2013 Remaster),spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,1975-06-10,https://i.scdn.co/image/ab67616d0000b2735d0a8e54aba5181c79593b94,1,6,287090,https://p.scdn.co/mp3-preview/d4343a42d432371e7e1bacd25ade2634412f5948?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USEE11300349,spotify:user:bradnumber1,2022-08-26T01:22:24Z,"album rock,classic rock,heartland rock,mellow gold,rock,soft rock,yacht rock",0.435,0.423,11.0,-8.795,1.0,0.024,0.0916,0.000659,0.132,0.451,91.137,3.0,,Rhino/Elektra,"C © 1975 Asylum Records, P ℗ 1975 Asylum Records. Marketed by Warner Strategic Marketing, a Warner Music Group Company.",3939 +3940,spotify:track:7nYvUtkQMx1v80S2FH2s9J,Regulate,"spotify:artist:2B4ZHz4QDWJTXPFPgO5peE, spotify:artist:1Oa0bMld0A3u5OTYfMzp5h","Warren G, Nate Dogg",spotify:album:2VMGv3inRLPM4GOMXf37qu,Regulate… G Funk Era,spotify:artist:2B4ZHz4QDWJTXPFPgO5peE,Warren G,1994-06-07,https://i.scdn.co/image/ab67616d0000b273f6b9b62ea130943d371b69ef,1,1,248866,https://p.scdn.co/mp3-preview/c3611b7884c4ee7370f3a0a52622bf29ae5f3311?cid=9950ac751e34487dbbe027c4fd7f8e99,True,72,USPR39401366,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hardcore hip hop,hip hop,west coast rap,g funk,gangster rap,hardcore hip hop,hip hop,west coast rap",0.849,0.521,11.0,-12.999,0.0,0.216,0.304,1.65e-06,0.115,0.763,95.265,4.0,,Island Records,"C © 2007 The Island Def Jam Music Group, P This Compilation ℗ 2007 The Island Def Jam Music Group",3940 +3941,spotify:track:0bJbaBvSzfvlVxycGD5ER1,Like Lightning,"spotify:artist:1EVWYRr2obCRDoSoD6KSuM, spotify:artist:46GXASE9LHzyssNqKOInUu","Havana Brown, Dawin",spotify:album:11WqF3Hm93cp47jAGy6rg2,Like Lightning,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,2016-09-16,https://i.scdn.co/image/ab67616d0000b2730a995bcb3cc39fdf3e5174a6,1,1,229675,https://p.scdn.co/mp3-preview/60e6516bdbf4c57c89f9457e4cb1d2e7bf736da0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71600585,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,nyc pop",0.664,0.751,9.0,-6.393,0.0,0.075,0.000272,0.00565,0.201,0.598,94.985,4.0,,Universal Music Group,"C © 2016 Universal Music Australia Pty Ltd., P ℗ 2016 Universal Music Australia Pty Ltd.",3941 +3942,spotify:track:5vxf01xQ1wZ0hpGtG5vMIM,She Got That O,spotify:artist:4L51owxaf23ElmXl3ZkvNC,Johnny Ruffo,spotify:album:41dclCob78y0RXTBY7NHac,She Got That O,spotify:artist:4L51owxaf23ElmXl3ZkvNC,Johnny Ruffo,2015-05-15,https://i.scdn.co/image/ab67616d0000b2736bbb1ad84d977c830d9a2485,1,1,221152,https://p.scdn.co/mp3-preview/623911985a3e6b7bb429f0c02bdffd13c482ace2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,AUQZF1500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.877,0.733,11.0,-1.961,0.0,0.062,0.379,8.33e-06,0.256,0.851,116.978,4.0,,Sony Music Entertainment,P (P) 2015 Johnny Ruffo Music Pty Ltd,3942 +3943,spotify:track:1QQRBPMzXbL4z26mnIvgZD,Lovely Day,spotify:artist:1ThoqLcyIYvZn7iWbj8fsj,Bill Withers,spotify:album:36qxAJDnXvbjD2UVAkawwZ,The Essential Bill Withers,spotify:artist:1ThoqLcyIYvZn7iWbj8fsj,Bill Withers,2013-08-20,https://i.scdn.co/image/ab67616d0000b273351dac819b0fdd6066d3832b,2,8,254893,https://p.scdn.co/mp3-preview/910e659bdd3ac51907d476ede540f52bc25edd4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM10207844,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,funk,quiet storm,soul",0.692,0.594,9.0,-9.862,1.0,0.0319,0.301,0.00453,0.0997,0.733,97.921,4.0,,Columbia/Legacy,P This compilation (P) 2013 Sony Music Entertainment,3943 +3944,spotify:track:0YqdtgkhhcbzWQuBmN0Lik,I Like The Way - Radio Edit,spotify:artist:5GJmQjUNRyNQ2VZ4HOIx1C,Bodyrockers,spotify:album:6ezXr4Zv8ZvORzgPLmzbXw,Bodyrockers (International Version),spotify:artist:5GJmQjUNRyNQ2VZ4HOIx1C,Bodyrockers,2005-01-01,https://i.scdn.co/image/ab67616d0000b273a760dc74070e203690ffbcac,1,2,200053,https://p.scdn.co/mp3-preview/395eda5902fb038d4edbbd153c7b8b786ad7adad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF080500011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance rock,0.642,0.851,6.0,-3.638,1.0,0.0431,0.0248,0.0146,0.084,0.777,127.988,4.0,,Universal Music,"C © 2005 Mercury Records Limited, P ℗ 2005 Mercury Records Limited",3944 +3945,spotify:track:2HSAgsSb8dtdiQAOzaCCN4,Make Up Your Mind,spotify:artist:3b0MIPzJo7aoAtxHKnRoCn,Yves Klein Blue,spotify:album:2ufnCCFf8Yf40CzuQVWyjQ,Ragged & Ecstatic,spotify:artist:3b0MIPzJo7aoAtxHKnRoCn,Yves Klein Blue,2009-01-01,https://i.scdn.co/image/ab67616d0000b273d5b40d309f132c023a6cd91d,1,1,153013,https://p.scdn.co/mp3-preview/871d5b13bcb4bce994dd5dd97514e72188d88fa8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,AUUM70900388,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie rock,0.322,0.87,5.0,-5.066,1.0,0.0477,0.515,0.0,0.269,0.808,95.574,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Dew Process/Universal Music Australia, P ℗ 2009 Dew Process/Universal Music Australia",3945 +3946,spotify:track:60mAZrH4y79jlSKGD6RoAl,Bitter Tears,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:0JFOLMiRvHAZJD5AHrh6Am,X (Remastered),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b273d270fb51f9a16d09c6e25114,1,9,229306,https://p.scdn.co/mp3-preview/421ee706adf54434ade237e495d37aad5ac17a34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMX9000012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.587,0.818,0.0,-5.193,1.0,0.0304,0.0109,2.62e-06,0.195,0.682,113.97,4.0,,Universal Music Group,"C © 2011 Petrolelectric Pty Ltd under exclusive licence to Universal International Music B.V., P ℗ 2011 Petrolelectric Pty Ltd under exclusive licence to Universal International Music B.V.",3946 +3947,spotify:track:0UlHiqi7seV02XNHLMtfGK,Turn Up the Music,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,spotify:album:6sAeDMYVsr4YUFA8aWk4yj,Fortune (Deluxe Version),spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2012-06-29,https://i.scdn.co/image/ab67616d0000b27345dab83fce8c992ab0fd3bc8,1,1,227973,https://p.scdn.co/mp3-preview/f8d6e299a48bf82306fea74331c69547b4a6de96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11200099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap",0.594,0.841,1.0,-5.792,1.0,0.102,0.000238,2.22e-06,0.156,0.643,129.925,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",3947 +3948,spotify:track:5eRLl3t4hDq806TqdvJtU0,You Sexy Thing - Radio Edit,spotify:artist:09v1n02OCBEntKxrSTw1L1,T-Shirt,spotify:album:5b8TfAlvtOPrWF7OcKZd4t,15 Of The Best - Party Songs,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-07-26,https://i.scdn.co/image/ab67616d0000b27343f87bf390c2eb7e6626d9e5,1,13,240733,https://p.scdn.co/mp3-preview/80453dac35148a77b0642852e4c7084d059e8503?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHT9702414,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.682,0.865,7.0,-7.306,1.0,0.0776,0.11,0.000757,0.644,0.822,103.869,4.0,,WM Australia,"C 2008 Warner Music Australia Pty Limited, P 2008 Warner Music Australia Pty Limited",3948 +3949,spotify:track:4BKB9YW3ymCode03eAG9iY,Mama's Little Girl,spotify:artist:1WtyIizk8Ddnyt7CtnpNXO,Linda George,spotify:album:7yKqVsuvgs0GpROyXdyHMm,Miss Linda George,spotify:artist:1WtyIizk8Ddnyt7CtnpNXO,Linda George,1974,https://i.scdn.co/image/ab67616d0000b273a1d60ea344366b294a70372b,1,4,222506,https://p.scdn.co/mp3-preview/2ea501c646d1abf19434dd45922b2f7976d91a55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700391,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.388,0.738,5.0,-11.933,0.0,0.296,0.165,0.000942,0.0724,0.578,173.542,4.0,,Fable Records,"C 1974 Image records, P 2017 Southern Cross Music Pty Limited",3949 +3950,spotify:track:7Izh7zLJGw1Nscd62Exxj4,Believer,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:57lkUmA6WunanwJRN1RsGD,Evolve,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2017-06-23,https://i.scdn.co/image/ab67616d0000b273ee138477bb382419f3f165c5,1,4,204346,https://p.scdn.co/mp3-preview/7d2f1ec114c44ecfa8b9017ad1c01cb041c8e613?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71700626,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.762,0.787,10.0,-4.311,0.0,0.127,0.0537,0.0,0.126,0.691,125.067,4.0,,Universal Music Group,"C © 2018 KIDinaKORNER/Interscope Records, P ℗ 2018 KIDinaKORNER/Interscope Records",3950 +3951,spotify:track:4dVbhS6OiYvFikshyaQaCN,My Hero,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:30ly6F6Xl0TKmyBCU50Khv,The Colour And The Shape,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,1997-05-20,https://i.scdn.co/image/ab67616d0000b2730389027010b78a5e7dce426b,1,7,260026,https://p.scdn.co/mp3-preview/5ffdbc197d59a4bc15611a49ef51f23009432dbb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USRW29600007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.398,0.927,9.0,-4.212,1.0,0.0567,6.2e-05,0.000177,0.0575,0.311,77.106,4.0,,RCA Records Label,"P (P) 1997 Roswell Records, Inc.",3951 +3952,spotify:track:1qEHgdFqUxFebMPk8s2HLY,I Don't Feel Like Dancin' - Radio Edit,spotify:artist:3Y10boYzeuFCJ4Qgp53w6o,Scissor Sisters,spotify:album:6LPpLYrjQYKtMfDUT1qjOz,I Don't Feel Like Dancin',spotify:artist:3Y10boYzeuFCJ4Qgp53w6o,Scissor Sisters,2006-01-01,https://i.scdn.co/image/ab67616d0000b273d0a50cacfb47854fa416cd6c,1,1,248640,https://p.scdn.co/mp3-preview/5d9c90e4935a86a9c2cc5d25c66179a46f9861aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBUM70602112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dance rock",0.711,0.924,7.0,-3.398,1.0,0.0282,0.0156,0.0,0.114,0.912,108.033,4.0,,Polydor Records,"C © 2006 Polydor Ltd. (UK), P ℗ 2006 Polydor Ltd. (UK)",3952 +3953,spotify:track:5UU5FbITNm5OunvHQdsKME,"When the Going Gets Tough, The Tough Get Going",spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,spotify:album:7n4OT3zEZaEiyKKd6mFAhi,The Very Best of Billy Ocean,spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,2010-04-26,https://i.scdn.co/image/ab67616d0000b27399ee23dac7128cb5754f593c,1,1,248000,https://p.scdn.co/mp3-preview/a4fad9d3d2c5efdeeb3e8044c20264e9512acc0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBAHK9700110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new romantic,new wave pop,soft rock,yacht rock",0.755,0.763,4.0,-6.318,1.0,0.0473,0.405,0.0,0.318,0.932,122.045,4.0,,Sony Music UK,P This compilation (P) 2010 Sony Music Entertainment UK Limited,3953 +3954,spotify:track:2Q5wSOwq6BDSu7sSVMNrtT,Rock Lobster,spotify:artist:3gdbcIdNypBsYNu3iiCjtN,The B-52's,spotify:album:3eXETk1esvZPRluDCWH3GN,The B-52's,spotify:artist:3gdbcIdNypBsYNu3iiCjtN,The B-52's,1979-07-11,https://i.scdn.co/image/ab67616d0000b2739e2d3bc7ecb09e5124cd3f97,1,4,409400,https://p.scdn.co/mp3-preview/9a58d7d8c028ee030e2828fa45b2b94e48bf3389?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USWB19901100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,new romantic,new wave,new wave pop,permanent wave,post-punk,rock,zolo",0.592,0.882,8.0,-8.315,1.0,0.0468,0.00884,0.0155,0.0506,0.442,92.157,4.0,,Reprise,"C © 1979 Warner Records Inc., P ℗ 1979 Warner Records Inc.",3954 +3955,spotify:track:3aePQpQPQ1k35NDvJ71YRd,Underneath It All,"spotify:artist:0cQbJU1aAzvbEmTuljWLlF, spotify:artist:2X1VgNqQOiSbkyel3a9rjK","No Doubt, Lady Saw",spotify:album:6ENy8DWFCnqF4dfaeH6352,Rock Steady,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,2001-12-11,https://i.scdn.co/image/ab67616d0000b27320655547b89b7712ebc5554f,1,5,302720,https://p.scdn.co/mp3-preview/ed2aea8760d2a55de2cd91289c5330ff07cbeed7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10120441,spotify:user:bradnumber1,2022-01-12T23:24:07Z,"dance pop,dance rock,permanent wave,pop rock,rock,dancehall,dancehall queen,reggae fusion",0.729,0.731,4.0,-4.822,1.0,0.0684,0.232,1.57e-06,0.391,0.839,138.202,4.0,,Interscope,"C © 2001 Interscope Records, P ℗ 2001 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",3955 +3956,spotify:track:4hWc2hf2ViTAmhTvI8e4lv,All Your Exes,spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m,Julia Michaels,spotify:album:0R0y5MTwQfboLFlX9Zgx54,All Your Exes,spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m,Julia Michaels,2021-03-26,https://i.scdn.co/image/ab67616d0000b27330b5382fe54b3bc10741f5fb,1,1,209275,https://p.scdn.co/mp3-preview/be82403de14fb64092636b1a44986fe5fe58fdc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USUM72103743,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.528,0.608,1.0,-5.157,1.0,0.033,0.0237,0.0,0.118,0.267,112.067,3.0,,Republic Records,"C © 2021 Republic Records, a division of UMG Recordings, Inc., P ℗ 2021 Republic Records, a division of UMG Recordings, Inc.",3956 +3957,spotify:track:4cdOa74e9tBGA6FaVT5mgc,Get Down On It,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,spotify:album:7kHRfUycADjHtr01YFXSOp,The Very Best Of Kool & The Gang,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,1999-01-01,https://i.scdn.co/image/ab67616d0000b273d8159e565f1fa96cb9f83a5e,1,2,212906,https://p.scdn.co/mp3-preview/0759da9804568d6c1028681a1b23ce779977454b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR38100044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,soft rock,soul",0.88,0.633,7.0,-6.331,1.0,0.061,0.219,3.87e-05,0.0609,0.97,110.864,4.0,,Universal Special Markets,"C © 1999 The Island Def Jam Music Group, P ℗ 1999 The Island Def Jam Music Group",3957 +3958,spotify:track:2QsZVnbWVSjKMXK6K3uRBL,U Remind Me,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,spotify:album:6k16WXh4rKyusIoN00rmpi,8701,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2001-08-07,https://i.scdn.co/image/ab67616d0000b2737750146aac26aade0a867913,1,2,266893,https://p.scdn.co/mp3-preview/df188beb4f88284a6b4db41a7d8a7f8ab4150ac9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USLF20100029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.657,0.629,6.0,-4.938,1.0,0.0782,0.194,0.0,0.254,0.726,93.985,4.0,,Arista,P (P) 2001 Arista Records,3958 +3959,spotify:track:5dPz35akJjPqb17yeqNwqH,Ghost,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:0w1dwXfG5z6Xjjgj524JkD,Justice,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2021-03-19,https://i.scdn.co/image/ab67616d0000b2736036cfd2a718036fc523855f,1,11,153190,https://p.scdn.co/mp3-preview/468ec06e036337853655302652923533faba87ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USUM72102635,spotify:user:bradnumber1,2022-01-12T04:06:50Z,"canadian pop,pop",0.604,0.741,2.0,-5.571,1.0,0.0475,0.178,3.49e-05,0.409,0.473,153.947,4.0,,RBMG/Def Jam,"C © 2021 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",3959 +3960,spotify:track:4lcpWCMFXNhvqNIQhB6yDv,Peaches N Cream (feat. Charlie Wilson),"spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:6CxZzQFUTM6AzgluGwtq5w","Snoop Dogg, Charlie Wilson",spotify:album:3UesepjW7Scwi8DV62Qqyn,BUSH,spotify:artist:7hJcb9fa4alzcOq3EaNPoG,Snoop Dogg,2015-05-06,https://i.scdn.co/image/ab67616d0000b27308c3397fbd22e078f2a2212e,1,6,283760,https://p.scdn.co/mp3-preview/bade62e2382c08e4c86bd152fcad620b06a5cd93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USQX91500025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,pop rap,rap,west coast rap,contemporary r&b,r&b,urban contemporary",0.832,0.756,0.0,-5.332,1.0,0.0515,0.0274,1.39e-06,0.206,0.282,110.034,4.0,,Columbia,"P (P) 2015 Doggystyle Records, Inc./i am OTHER entertainment, LLC, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",3960 +3961,spotify:track:1k2ybm1oz7rVPchTKCgMMz,Use Me,spotify:artist:1ThoqLcyIYvZn7iWbj8fsj,Bill Withers,spotify:album:36qxAJDnXvbjD2UVAkawwZ,The Essential Bill Withers,spotify:artist:1ThoqLcyIYvZn7iWbj8fsj,Bill Withers,2013-08-20,https://i.scdn.co/image/ab67616d0000b273351dac819b0fdd6066d3832b,1,10,222533,https://p.scdn.co/mp3-preview/0e7192ce2ec4732f8167598fa322cb97d6d2ea13?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USSM10207818,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,funk,quiet storm,soul",0.767,0.666,11.0,-10.223,0.0,0.0545,0.0422,0.00276,0.0743,0.937,154.51,4.0,,Columbia/Legacy,P This compilation (P) 2013 Sony Music Entertainment,3961 +3962,spotify:track:7x5xYW5W42OGPAdHUyyguy,Locked Away (feat. Adam Levine),"spotify:artist:4TH4BHy0LdBi3dpBW4P2UX, spotify:artist:4bYPcJP5jwMhSivRcqie2n","R. City, Adam Levine",spotify:album:4AUTMNSP56xicSznzKgzjB,What Dreams Are Made Of,spotify:artist:4TH4BHy0LdBi3dpBW4P2UX,R. City,2015-10-09,https://i.scdn.co/image/ab67616d0000b2739519b1a9e2b552407e65b01a,1,2,227480,https://p.scdn.co/mp3-preview/9025fe433b0d74a91c370c50f7cf8f1239a3a15e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USRC11501369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,virgin islands reggae,deep talent show",0.509,0.671,1.0,-5.709,1.0,0.0678,0.304,0.0,0.0452,0.55,118.413,5.0,,Kemosabe Records/RCA Records,P (P) 2015 Kemosabe Records,3962 +3963,spotify:track:3AsAuGTaDQzavZZThyYlop,Sexual,"spotify:artist:5H6xmHXjsq98NLbEjuE29f, spotify:artist:4H1PNuHElBLVok0lnYMrRb","NEIKED, Dyo",spotify:album:39NO201BzBWoBo9WGBp6Dt,Sexual,spotify:artist:5H6xmHXjsq98NLbEjuE29f,NEIKED,2016-08-26,https://i.scdn.co/image/ab67616d0000b2739c5e27aff6792af94e972af9,1,1,188888,https://p.scdn.co/mp3-preview/bad84cfecbd27abc1cb57c4665c0055c1ac643b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKPL1667537,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"scandipop,alte",0.803,0.569,2.0,-7.392,1.0,0.0739,0.0623,0.0,0.083,0.809,107.986,4.0,,Universal Music Group,"C © 2016 Neiked Collective AB, under exclusive licence to Polydor Records, a division of Universal Music Operations Limited., P ℗ 2016 Neiked Collective AB, under exclusive licence to Polydor Records, a division of Universal Music Operations Limited.",3963 +3964,spotify:track:4AxSx0Sj1TcjcSpw90MigU,Go Let It Out,spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,spotify:album:0aRxDMhUIptrXI5TS29LOh,Standing On The Shoulder Of Giants,spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,2000-02-28,https://i.scdn.co/image/ab67616d0000b273279a923b5326eca20c3a39f1,1,2,278506,https://p.scdn.co/mp3-preview/86ca02fe5144e7d1fdb3f274c443a8e2f825bc80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBQY9902002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,britpop,madchester,permanent wave,rock",0.41,0.841,2.0,-5.633,1.0,0.0331,0.0136,2.39e-05,0.522,0.618,84.194,4.0,,Reprise,"C 2000 Big Brother Recordings Ltd., under exclusive license to Reprise Records for the U.S., P 2000 Big Brother Recordings Ltd., under exclusive license to Reprise Records for the U.S.",3964 +3965,spotify:track:3kGfazcbVvVkuZunzlLgTD,Came Here for Love,"spotify:artist:1IueXOQyABrMOprrzwQJWN, spotify:artist:66TrUkUZ3RM29dqeDQRgyA","Sigala, Ella Eyre",spotify:album:22x1g0NEicPMxuEOXlGUw5,Came Here for Love,"spotify:artist:1IueXOQyABrMOprrzwQJWN, spotify:artist:66TrUkUZ3RM29dqeDQRgyA","Sigala, Ella Eyre",2017-06-09,https://i.scdn.co/image/ab67616d0000b2733769e2973131468513fc59cd,1,1,202999,https://p.scdn.co/mp3-preview/515bee5cac5a597c17207bd40e1bd9912071f90b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBCEN1700157,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop dance,uk dance,dance pop,talent show,uk dance,uk pop",0.708,0.868,6.0,-3.287,1.0,0.0431,0.0313,0.0,0.122,0.72,124.994,4.0,,Ministry of Sound Recordings,"P (P) 2017 Ministry of Sound Recordings Limited / B1 Recordings GmbH, a Sony Music Entertainment Company",3965 +3966,spotify:track:1QMpN6RQXXlwMycmCBwwQz,Darlin' - 2011 Remaster,spotify:artist:2BSGptj55ZjV9ss2D17Hj6,Frankie Miller,spotify:album:3o8EkKrXD7B2a1XUt1vx5r,Falling in Love (2011 Remaster),spotify:artist:2BSGptj55ZjV9ss2D17Hj6,Frankie Miller,1979-04-14,https://i.scdn.co/image/ab67616d0000b2739be06afb6aa02e2547f4a255,1,4,184414,https://p.scdn.co/mp3-preview/8a5b7f5239f54a67c8e655b2c31dc61cdb982e32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK1100108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pub rock,0.754,0.399,9.0,-14.03,1.0,0.0305,0.321,1.03e-06,0.102,0.76,121.666,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 2011 Chrysalis Records Limited",3966 +3967,spotify:track:5oOFzaO8nJdDnFoSUax19p,Daisy Petal Pickin',"spotify:artist:6Rboxwjnvu3wLcwzhlnaSO, spotify:artist:6Vg8U5m1yHwqRyQMi87tay","The Fireballs, Jimmy Gilmer",spotify:album:1gzfhj9RFOuAHu68gblus8,Clovis Classics: The Definitive Collection,spotify:artist:6Rboxwjnvu3wLcwzhlnaSO,The Fireballs,2009-10-01,https://i.scdn.co/image/ab67616d0000b2737b38cd51716f6987d098dcff,1,11,134813,https://p.scdn.co/mp3-preview/670221bc1469bf84fe73e262b8f5222a84e7c150?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB03A0600253,spotify:user:bradnumber1,2021-08-08T09:26:31Z,surf music,0.721,0.805,2.0,-8.825,1.0,0.048,0.0278,0.000985,0.0495,0.885,135.679,4.0,,Ace Records,"C 2009 Ace Records, P 2009 Ace Records",3967 +3968,spotify:track:3RkQ3UwOyPqpIiIvGVewuU,Mr. Tambourine Man,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,spotify:album:1lPoRKSgZHQAYXxzBsOQ7v,Bringing It All Back Home,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,1965-03-22,https://i.scdn.co/image/ab67616d0000b2736960c5f4eb72f0c06aa92181,1,8,330533,https://p.scdn.co/mp3-preview/b2f4f1a18d1716f2343f6d9246b810f11b6b96f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM19922515,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,rock,roots rock,singer-songwriter",0.39,0.31,5.0,-14.545,1.0,0.0676,0.794,0.0,0.379,0.584,177.515,4.0,,Columbia,P Originally Released 1965 Sony Music Entertainment Inc.,3968 +3969,spotify:track:4zYTZvtcww7OWKie7fxA9E,Hit 'Em Up Style (Oops!),spotify:artist:6vytZ677lz4LzCrUDcDokM,Blu Cantrell,spotify:album:3EIwRVOXjqWAxVLt7raduU,So Blu,spotify:artist:6vytZ677lz4LzCrUDcDokM,Blu Cantrell,2001-01-18,https://i.scdn.co/image/ab67616d0000b27356d69fafe62a311092809b4a,1,2,250706,https://p.scdn.co/mp3-preview/4333958c016bc4acb6809c78c4af3575f50e85b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USAR10100372,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,urban contemporary",0.667,0.773,5.0,-4.983,0.0,0.0586,0.201,0.0,0.404,0.667,89.976,4.0,,Arista,"P (P) 2001 Arista Records, Inc.",3969 +3970,spotify:track:7I8PL2ZXS5CjmU6QPpX9Oc,I Wouldn't Trade You For The World,spotify:artist:0qDtyCZRYrja9CoeHXV6FD,The Bachelors,spotify:album:6fPWamZmTK0d03dzR0S2ab,The Bachelors - The Decca Years,spotify:artist:0qDtyCZRYrja9CoeHXV6FD,The Bachelors,1999-01-01,https://i.scdn.co/image/ab67616d0000b273589b9c6ea2c6bb65c047ca17,1,8,161160,https://p.scdn.co/mp3-preview/0a1979f4f8fe83848fa4adea5e51a99c9eaa2f1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBF076420540,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.499,0.443,2.0,-9.685,1.0,0.0265,0.0391,0.0,0.0855,0.395,82.909,4.0,,Decca Music Group Ltd.,"C © 1999 Decca Music Group Limited, P This Compilation ℗ 1999 Decca Music Group Limited",3970 +3971,spotify:track:6H57i1EV2JfkpvYi4zO4E5,Current Stand,spotify:artist:2O7qtwbMUKIK1Va8EF48Pr,Kids In The Kitchen,spotify:album:16yeGtpuBwC8tmk2LPw5Vb,Shine,spotify:artist:2O7qtwbMUKIK1Va8EF48Pr,Kids In The Kitchen,1985,https://i.scdn.co/image/ab67616d0000b2738ad0f30688510913ed47cbb1,1,2,241733,https://p.scdn.co/mp3-preview/ff2ce5ebcd1eb5305f29d78117453047621b7d8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUMU08500045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.561,0.641,7.0,-11.592,1.0,0.032,0.117,0.0,0.324,0.428,105.914,4.0,,WM Australia,"C © 1985 Mushroom Records, P ℗ 1985 Mushroom Records",3971 +3972,spotify:track:4r8lRYnoOGdEi6YyI5OC1o,Bye Bye Bye,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,spotify:album:5hMd4vAfSUT1cbYCnRUako,No Strings Attached,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,2000-03-21,https://i.scdn.co/image/ab67616d0000b273fceb9d92981970dbeea23257,1,1,200560,https://p.scdn.co/mp3-preview/be65bd81597e7c9689726b170a9b459e0b8a18ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USJI10000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.614,0.928,8.0,-4.806,0.0,0.0516,0.0408,0.00104,0.0845,0.879,172.656,4.0,,Jive,P (P) 2000 Zomba Recording LLC,3972 +3973,spotify:track:10YdhNF79cE9r9yyIDjot1,Man on Mars,spotify:artist:0LbLWjaweRbO4FDKYlbfNt,Kaiser Chiefs,spotify:album:4Zy4QEbCOIfB6PRyVvKQ7S,The Future Is Medieval,spotify:artist:0LbLWjaweRbO4FDKYlbfNt,Kaiser Chiefs,2011-07-27,https://i.scdn.co/image/ab67616d0000b27382f37f6c30793851a9d0b1f3,1,8,250746,https://p.scdn.co/mp3-preview/1329919532a9510de812cc5859befeba92eaad2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDVX1100022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,modern rock,0.311,0.686,4.0,-4.543,0.0,0.0476,0.0916,8.81e-05,0.0899,0.549,178.455,4.0,,B Unique UK Ltd,"C 2011 Hipgnosis Songs Fund Limited, P 2011 Hipgnosis Songs Fund Limited",3973 +3974,spotify:track:4rMpQ98ufDGEn2aPEdmlKQ,B-Boys & Fly Girls - Radio Edit,spotify:artist:0NeC6ploeJUq8oDwYQjNPS,Bomfunk MC's,spotify:album:03ONjebxNAa2pYrCzr6Lge,Lords Of The Boards 2001,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2000-12-29,https://i.scdn.co/image/ab67616d0000b273b0c08c822d754e56099b9b7e,2,2,193000,https://p.scdn.co/mp3-preview/a5ecc72a47be9a7810f0b70a7310cba2102e6702?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,FISME9800042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,eurodance,0.73,0.921,4.0,-5.885,0.0,0.0525,0.0075,0.00207,0.0477,0.899,133.911,4.0,,Ariola,P 2000 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,3974 +3975,spotify:track:0Ir0Esfpcg0EB6Kq8VbbAh,I Won't Back Down,spotify:artist:2UZMlIwnkgAEDBsw1Rejkn,Tom Petty,spotify:album:7ihweYjA1ck66NTB4bujGl,Full Moon Fever,spotify:artist:2UZMlIwnkgAEDBsw1Rejkn,Tom Petty,1989-01-01,https://i.scdn.co/image/ab67616d0000b2736fd5c003cc0daf6fc290fb5e,1,2,175733,https://p.scdn.co/mp3-preview/2efef1deacda363a01f8d713502bef6674c3cee4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC18925675,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.766,0.47,7.0,-13.501,1.0,0.0322,0.0424,3.81e-06,0.242,0.963,114.011,4.0,,Geffen*,"C © 1989 MCA Records Inc., P ℗ 1989 UMG Recordings, Inc.",3975 +3976,spotify:track:6QON2WlAI1QayzhgebwvWd,One Wish,spotify:artist:6gbGGM0E8Q1hE511psqxL0,Ray J,spotify:album:6PTPDE5KLE3IeCcqiz0712,Gracie Productions Presents: Hip Hop Volume 1,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-10-29,https://i.scdn.co/image/ab67616d0000b27360fc7b6e9ec05ac0b135b443,1,3,337640,https://p.scdn.co/mp3-preview/56721788fba7256e1bf080718029fc96cb71ec0e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,49,USDHM1218814,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,urban contemporary",0.524,0.635,5.0,-7.22,0.0,0.302,0.27,0.0,0.341,0.603,127.618,4.0,,Gracie Productions,"C 2012 Gracie Productions, P 2012 Gracie Productions",3976 +3977,spotify:track:0s8OMEGJQJIUr9VFwNEH1v,With Arms Wide Open - New Version With Strings,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,spotify:album:3Nyjm9NBEdiaiWr2BEaV46,Human Clay,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,1999-01-01,https://i.scdn.co/image/ab67616d0000b273f8f048a5f4749c970078a4fb,1,12,235266,https://p.scdn.co/mp3-preview/ca3c6b7def53f3a5d445c4eb1c73f7589eb3d4fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USWU39914053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.32,0.695,0.0,-5.756,1.0,0.0388,0.032,0.0,0.201,0.165,141.91,4.0,,The Bicycle Music Company,"C © 1999 The Bicycle Music Company, P ℗ 1999 The Bicycle Music Company",3977 +3978,spotify:track:2cKIcepRj6NOc1bKGjHuSl,1999 - Edit,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:7mhrGQKxLFJPY2J4TXtA0A,4Ever,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,2016-11-22,https://i.scdn.co/image/ab67616d0000b27392a29c45954d5d2eb8687dbc,1,1,218866,https://p.scdn.co/mp3-preview/209118e88516c11cd8bd33a74adcf8e9af9c387a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USWB18200029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.881,0.562,5.0,-10.971,1.0,0.0515,0.265,1.62e-05,0.745,0.715,119.162,4.0,,Warner Records,"C © This Compilation C2016 NPG Records Inc. under exclusive license to Warner Records Inc., P ℗ 2016 This Compilation NPG Records Inc. under exclusive license to Warner Records Inc.",3978 +3979,spotify:track:1HpzOCZbNWzxvvXfSGtSrX,Find U Again (feat. Camila Cabello),"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF","Mark Ronson, Camila Cabello",spotify:album:1GySemCUsaTUREhIPAF3hH,Find U Again (feat. Camila Cabello),"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF","Mark Ronson, Camila Cabello",2019-05-30,https://i.scdn.co/image/ab67616d0000b27318911141cdfc2a1c59169ade,1,1,176416,https://p.scdn.co/mp3-preview/c47ff032b10ebf44f088d557e6e4d099dc7e1e39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBARL1900429,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,dance pop,pop",0.605,0.664,8.0,-7.162,1.0,0.0316,0.00548,3e-06,0.204,0.164,103.997,4.0,,Columbia,P (P) 2019 Mark Ronson under exclusive licence to Sony Music Entertainment UK Limited,3979 +3980,spotify:track:6aRJ3Z7TpCpj58CjOwSSh2,True Colours,spotify:artist:6uATIQFyydDXPc2RlLzcUE,Kasey Chambers,spotify:album:2vlKm70T2lTLawrgDGaK7v,True Colours,spotify:artist:6uATIQFyydDXPc2RlLzcUE,Kasey Chambers,2003-01-01,https://i.scdn.co/image/ab67616d0000b273ec60cf4fed5f9402a4cb7ebe,1,1,227266,https://p.scdn.co/mp3-preview/390ebca96c3340ffec2d019f7c84c8f43b72bfcb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUEM00200340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian americana,australian country,australian rock",0.547,0.22,0.0,-9.299,1.0,0.037,0.635,0.0,0.0811,0.273,173.756,4.0,,EMI Music Australia,"C © 2003 EMI Recorded Music Australia Pty Ltd., P ℗ 2003 EMI Recorded Music Australia Pty Ltd.",3980 +3981,spotify:track:27QvYgBk0CHOVHthWnkuWt,Vogue,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,3,316813,https://p.scdn.co/mp3-preview/2627fcc5cadffcabf4b45ca7536fa66a894e52bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USWB10903600,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.737,0.88,6.0,-6.449,1.0,0.0433,0.00379,0.00351,0.417,0.329,115.997,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",3981 +3982,spotify:track:3Au6174rC3JSzZN5BhCl3D,I Want To Break Free - Single Remix,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:7K6YvloaUMP4rnQQVzdBEo,The Works (Deluxe Edition 2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1984-02-27,https://i.scdn.co/image/ab67616d0000b2736cb222fb74baa50762465044,2,2,258013,https://p.scdn.co/mp3-preview/f3235c7ecdd515606538e4432d93824df5ed8dee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71029625,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.795,0.435,4.0,-8.927,1.0,0.0324,0.0841,0.00026,0.0763,0.596,108.951,4.0,,Universal Music Group,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",3982 +3983,spotify:track:4SGPZVMQoFWSh2yvbThK2o,Team,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,spotify:album:4d6FkNbDWPNN08PFrk52rt,Team,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,2013-01-01,https://i.scdn.co/image/ab67616d0000b27394846b87ab42fd44cf3fc853,1,1,193058,https://p.scdn.co/mp3-preview/48fffa154188d885e332e8980b2a6a0f021c5f6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZUM71300124,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,metropopolis,nz pop,pop",0.68,0.584,6.0,-7.44,1.0,0.127,0.17,0.0,0.25,0.396,100.025,4.0,,Universal Music Ltd.,"C (C) 2013 Universal Music NZ Ltd., P (P) 2013 Universal Music NZ Ltd.",3983 +3984,spotify:track:5Hroj5K7vLpIG4FNCRIjbP,Best Day Of My Life,spotify:artist:0MlOPi3zIDMVrfA9R04Fe3,American Authors,spotify:album:0V4laGZGshNCpurfIdUhHv,"Oh, What A Life",spotify:artist:0MlOPi3zIDMVrfA9R04Fe3,American Authors,2014-01-01,https://i.scdn.co/image/ab67616d0000b273cc761ba55b0e7abad4539abe,1,3,194240,https://p.scdn.co/mp3-preview/caf61e3a88f77f587e097076ac1590f11a590e88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USUM71302187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop rock",0.673,0.902,2.0,-2.392,1.0,0.0346,0.0591,0.000227,0.0558,0.536,100.012,4.0,,Island Records,"C © 2014 The Island Def Jam Music Group, P ℗ 2014 The Island Def Jam Music Group",3984 +3985,spotify:track:0L0T4tMAaGqLgIVj1MOj9t,Father Figure - Remastered,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:34K1Kvskt9arWy8E1Gz3Lw,Faith,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1987-10-30,https://i.scdn.co/image/ab67616d0000b273b7a9a6a2bf311630d3fc6956,1,2,336666,https://p.scdn.co/mp3-preview/c4505ce3af65c50d3122718fe0fecc2e287c8de1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBARL1000856,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.689,0.333,3.0,-13.288,1.0,0.0262,0.163,3.36e-05,0.0853,0.284,101.988,4.0,,Epic,P (P) 2010 Sony Music Entertainment UK Limited,3985 +3986,spotify:track:7lVNTXkI3cHFvcXiI8damb,I Need a Girl (Pt. 1) [feat. Usher & Loon],"spotify:artist:59wfkuBoNyhDMQGCljbUbA, spotify:artist:2gie1bU1LwnxdFAJoTLjzT, spotify:artist:23zg3TcAtWQy7J6upgbUnj","Diddy, Loon, USHER",spotify:album:5Bp5PZqYJ9tiz0Hf6lOD5Q,R&B Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2005-10-04,https://i.scdn.co/image/ab67616d0000b2737ecfb05160a4e09bb3194137,1,5,268800,https://p.scdn.co/mp3-preview/f86cd690409682c4c1d96decaafa9196b8171af8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USBB40580385,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap,hip pop,atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.66,0.707,6.0,-5.758,1.0,0.208,0.397,0.0,0.211,0.761,89.279,4.0,,Bad Boy Records,"C © 2004 Bad Boy Records, Inc., P ℗ 2004 Bad Boy Records, Inc.",3986 +3987,spotify:track:7zP67rufQgoODWFI45jntD,Broken-Hearted Girl,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:3ROfBX6lJLnCmaw1NrP5K9,I AM...SASHA FIERCE - Platinum Edition,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2008,https://i.scdn.co/image/ab67616d0000b273b4c5982e1b92f97a126fc18c,1,8,278400,https://p.scdn.co/mp3-preview/a18e06918f2dcb2602a4cfe644a090d1fbc5cb94?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM10804727,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.453,0.425,5.0,-7.198,1.0,0.0325,0.495,0.0,0.254,0.144,83.413,4.0,,Music World Music/Columbia,"P (P) 2008, 2009 Sony Music Entertainment",3987 +3988,spotify:track:11jw9nN4jdQEb82hKJCgKG,Lazy Sunday (Mono Version) (2018 Remaster),spotify:artist:1YqGsKpdixxSVgpfaL2AEQ,Small Faces,spotify:album:2pM93DS0vpM3wt6ooVx5LS,Ogdens' Nut Gone Flake - 50th Anniversary Edition (2018 Remaster),spotify:artist:1YqGsKpdixxSVgpfaL2AEQ,Small Faces,2018-10-19,https://i.scdn.co/image/ab67616d0000b273bb47f3fdb225bdc8456b81fa,1,6,182854,https://p.scdn.co/mp3-preview/f50436506d68e342910543edb496a09831264cbb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBA7H1143348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,protopunk",0.577,0.644,2.0,-8.056,1.0,0.055,0.101,1.18e-05,0.695,0.313,134.084,4.0,,Charly | Immediate,"C 2018 Charly Acquisitions Ltd., P 2018 Charly Acquisitions Ltd.",3988 +3989,spotify:track:2kONpeXXK70YEs7c0UQbmq,Dancing With The Devil,spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,spotify:album:66iecOgRs3V9I0Ux27kDQK,Dancing With The Devil,spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,2021-03-26,https://i.scdn.co/image/ab67616d0000b273daf53a42c67345122cfa9ad2,1,1,243992,https://p.scdn.co/mp3-preview/57b136697f093574208ebe16f58649dae5ddd368?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USUM72101957,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.413,0.64,8.0,-5.811,1.0,0.0427,0.273,0.0,0.11,0.149,75.245,4.0,,Island Records,"C © 2021 Island Records, a division of UMG Recordings, Inc., P ℗ 2021 Island Records, a division of UMG Recordings, Inc.",3989 +3990,spotify:track:5yNEdBlZMxpcVtGKz5NFk5,Side Effects (feat. Emily Warren),"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:1oKdM70mJD8VvDOTKeS8t1","The Chainsmokers, Emily Warren",spotify:album:5aCENfD0bq3iECT2Mvx0mV,Sick Boy...Side Effects,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2018-07-27,https://i.scdn.co/image/ab67616d0000b27307d552042df8f8c0cebaccb7,1,1,173613,https://p.scdn.co/mp3-preview/1026cb4386088fe97a225acc96dc26ccd326096b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQX91801629,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,nyc pop",0.673,0.71,8.0,-6.744,1.0,0.0324,0.00277,0.0,0.55,0.54,110.017,4.0,,Disruptor Records/Columbia,P (P) 2018 Disruptor Records/Columbia Records,3990 +3991,spotify:track:7BlWK6ZJN4oYqlUKZBz4q0,Tell Me,spotify:artist:6TLwl6BCLZ5D1jwn4l2KGh,Dick & Dee Dee,spotify:album:60u6mGOEgg8QZdIi2ezSbp,Lost Hits Of The 60's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-01-01,https://i.scdn.co/image/ab67616d0000b273103d4ad66beb30043666d003,1,9,135906,https://p.scdn.co/mp3-preview/2754b6e1f9c74110c53adf8f6e2a82ec7be1d129?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USCA20703349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep adult standards,doo-wop,rhythm and blues",0.44,0.408,7.0,-9.774,1.0,0.0271,0.729,2.48e-06,0.0881,0.479,102.095,3.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P This Compilation ℗ 2012 Capitol Records, LLC",3991 +3992,spotify:track:0H1OyEooZ5SzBYYdJEzxoy,If I Had You,spotify:artist:6prmLEyn4LfHlD9NnXWlf7,Adam Lambert,spotify:album:0cUNjl7p6LYZJkKXJWzqP0,For Your Entertainment,spotify:artist:6prmLEyn4LfHlD9NnXWlf7,Adam Lambert,2009-11-23,https://i.scdn.co/image/ab67616d0000b273fe0d9870d6d8e18c3a00c658,1,8,228240,https://p.scdn.co/mp3-preview/0583d0dc079e90fc50ad6ac6187a9e629b4f184a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBCTA0900403,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,idol,pop,post-teen pop",0.648,0.908,4.0,-4.251,0.0,0.108,0.0113,0.0,0.374,0.793,131.147,4.0,,RCA Records Label,"P (P) 2009 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",3992 +3993,spotify:track:0SjnBEHZVXgCKvOrpvzL2k,Sundown,spotify:artist:23rleGXVOVVgTk3xgtmfE4,Gordon Lightfoot,spotify:album:2IPD9EcNjUmsHvqULDMU9Y,Sundown,spotify:artist:23rleGXVOVVgTk3xgtmfE4,Gordon Lightfoot,1974,https://i.scdn.co/image/ab67616d0000b2738f2b3a1c0559ca6188de574b,1,7,213400,https://p.scdn.co/mp3-preview/e3fbca55e784c9be8403f88b45930e27c13f1e19?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USRE10901178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian country,canadian singer-songwriter,classic rock,country rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.794,0.427,11.0,-15.492,1.0,0.029,0.334,1.04e-05,0.0703,0.751,105.732,4.0,,Rhino/Warner Records,"C © 1974 Reprise Records., P ℗ 1974 Reprise Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",3993 +3994,spotify:track:4nWuCWRHYgFucCKl39vZhQ,Girl's Life,spotify:artist:5oWq8Uaq2CNDJng3wq8IFL,Girlfriend,spotify:album:7Ma5wxUsNgQ898jTj5iD6m,Make It Come True,spotify:artist:5oWq8Uaq2CNDJng3wq8IFL,Girlfriend,1992-09-21,https://i.scdn.co/image/ab67616d0000b273bab818f84072bc45ee042808,1,1,243133,https://p.scdn.co/mp3-preview/089dfbd416993a185f6ddc6e6bc228432dac2e5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUBM01300706,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.818,0.831,1.0,-10.451,1.0,0.0994,0.00486,4.55e-05,0.0548,0.79,112.474,4.0,,Sony Music Entertainment,P (P) 1992 Sony Music Entertainment Australia Pty Ltd,3994 +3995,spotify:track:5lBI9isMBEHRn5Wxde058W,Nikita,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:77IyyuuRV7IDN1ri7mBEuI,Ice On Fire (Remastered With Bonus Tracks),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1985-11-07,https://i.scdn.co/image/ab67616d0000b273033eb472a3a280632cf70d35,1,4,343240,https://p.scdn.co/mp3-preview/f89dedccb2193a86f595f0de33b3533801307e7b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMS8500203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.632,0.656,7.0,-9.29,1.0,0.0277,0.123,0.000264,0.0735,0.752,86.605,4.0,,Universal Music Group,"C © 1998 Mercury Records Limited, P ℗ 1998 Mercury Records Limited",3995 +3996,spotify:track:5xMlTMjTEtFEJu7mlp0uDc,I Just Don't Know What To Do With Myself,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,spotify:album:3OWloNx2gY95VXXpotMvky,The Essential,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,2007-07-28,https://i.scdn.co/image/ab67616d0000b273cc2776d1c08d6f14acc450c2,1,4,188333,https://p.scdn.co/mp3-preview/b951ed1c965f3e304b140ad7a9b5d61f556ef802?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUBM00460317,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.363,0.741,0.0,-8.195,1.0,0.0456,0.0567,6.83e-06,0.294,0.465,96.453,4.0,,Sony Music Entertainment,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,3996 +3997,spotify:track:5tmVLmIPoX8dqjW2oeUi98,Wild Eyes,spotify:artist:3FhdIGOVc8Bpq7ECYf38MM,Darling Brando,spotify:album:4gIuwxr3fyJtb7TyCX0Mgz,Wild Eyes,spotify:artist:3FhdIGOVc8Bpq7ECYf38MM,Darling Brando,2020-10-09,https://i.scdn.co/image/ab67616d0000b273d262f38e08eaa015ed1cd2d8,1,1,182275,https://p.scdn.co/mp3-preview/31ea371fd25f28e77fbddfaa2207c8bccd8992b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUBM02000486,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.551,0.74,0.0,-4.397,1.0,0.041,0.0155,0.0,0.187,0.564,129.913,4.0,,Sony Music Entertainment,P (P) 2020 Darling Brando Pty Ltd under exclusive license to Sony Music Entertainment Australia Pty Ltd,3997 +3998,spotify:track:0o4ymDquSJdsx1CwXyRSow,Cosby Sweater,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,spotify:album:40JpdKCmhRLZgLe5vGDqgp,Walking Under Stars,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2014-08-08,https://i.scdn.co/image/ab67616d0000b273a9cf8c7aef92140882f60279,1,3,217720,https://p.scdn.co/mp3-preview/2c245007c3491d0f1cc99221b52c2e44496b52a0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,AUHT01403003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.796,0.81,3.0,-7.991,1.0,0.0429,0.621,3.67e-06,0.0873,0.816,125.256,4.0,,Hilltop Hoods Pty Ltd,"C © 2014 Hilltop Hoods Pty Ltd, P ℗ 2014 Hilltop Hoods Pty Ltd, under exclusive license to Universal Music Australia Pty Ltd",3998 +3999,spotify:track:1u8c2t2Cy7UBoG4ArRcF5g,Blank Space,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1yGbNOtRIgdIiGHOEBaZWf,1989 (Deluxe),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-01-01,https://i.scdn.co/image/ab67616d0000b27352b2a3824413eefe9e33817a,1,2,231826,https://p.scdn.co/mp3-preview/a4930adb3f973bf4b162940844b8ccc46277dc16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USCJY1431309,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.76,0.703,5.0,-5.412,1.0,0.054,0.103,0.0,0.0913,0.57,95.997,4.0,,"Big Machine Records, LLC","C © 2014 Apollo A-1 LLC, P ℗ 2014 Apollo A-1 LLC",3999 +4000,spotify:track:7pRKbx3PYJmz36cp92hDIE,If I Said You Had A Beautiful Body Would You Hold It Against Me,spotify:artist:5iB5AWIa7qreioi0AF3Bxa,The Bellamy Brothers,spotify:album:546Y4nzoT1Y85502L87DSf,Best Of The Bellamy Brothers,spotify:artist:5iB5AWIa7qreioi0AF3Bxa,The Bellamy Brothers,1992-03-16,https://i.scdn.co/image/ab67616d0000b27325c15eaf3b2c632d2afa8771,1,2,194066,https://p.scdn.co/mp3-preview/fe9b55e6d27adbad753ff9104b2cd325fa155be1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USCRB0101212,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,country rock",0.691,0.876,4.0,-5.187,1.0,0.0277,0.00996,3.47e-06,0.145,0.792,116.659,4.0,,Curb Records,"C 1992 Curb Records, Inc., P 1992 Curb Records, Inc.",4000 +4001,spotify:track:39C5FuZ8C8M0QI8CrMsPkR,Foreplay / Long Time,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,spotify:album:2QLp07RO6anZHmtcKTEvSC,Boston,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,1976,https://i.scdn.co/image/ab67616d0000b2738c1fadcc997a65384f34d694,1,3,467640,https://p.scdn.co/mp3-preview/eabd2479930dced0472b26d62224f49274f7820b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM17600873,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.435,0.657,5.0,-8.868,1.0,0.0545,0.00983,0.00748,0.0923,0.209,118.704,4.0,,Epic/Legacy,"P (P) 1976, 2006 Epic Records, a division of Sony Music Entertainment",4001 +4002,spotify:track:3hQ3u1yJvWKCOZzUHVzYxS,4 Seasons Of Loneliness,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,spotify:album:3yEJ1vzvED6QUYQ16lz5uo,Evolution,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,1997-03-23,https://i.scdn.co/image/ab67616d0000b273f1479f02472ef1cfe7551101,1,3,292400,https://p.scdn.co/mp3-preview/bc719716ba20e20d283081f99d7fb74d47d3e875?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO19783234,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.592,0.489,1.0,-10.509,1.0,0.0385,0.806,1.25e-05,0.116,0.196,98.47,4.0,,Universal Music Group,"C © 1997 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1997 Motown Records, a Division of UMG Recordings, Inc.",4002 +4003,spotify:track:6mrKP2jyIQmM0rw6fQryjr,Let You Down,spotify:artist:6fOMl44jA4Sp5b9PpYCkzz,NF,spotify:album:0H8gMD022h8O3OYt4HYxSr,Perception,spotify:artist:6fOMl44jA4Sp5b9PpYCkzz,NF,2017-10-06,https://i.scdn.co/image/ab67616d0000b27339e85b6ae069d1e25bbc89df,1,6,212120,https://p.scdn.co/mp3-preview/48e3201996af61c4e48bb5f8dbdd004db4a6a63b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71708226,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap",0.659,0.716,5.0,-5.673,0.0,0.111,0.33,0.0,0.173,0.437,148.015,4.0,,Universal Music Group,"C © 2017 NF Real Music, LLC, P Capitol Records; ℗ 2017 NF Real Music, LLC",4003 +4004,spotify:track:4zGUDJ9K2pyJpfWoD1YfiJ,There's a Kind of Hush (All Over the World),spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,spotify:album:2D6oebwuTVV5mrsmgTJc82,No Milk Today - Best of Herman's Hermits,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,2019-02-15,https://i.scdn.co/image/ab67616d0000b273f9907853a6afb16029738ed3,1,2,155186,https://p.scdn.co/mp3-preview/914649ab5fc7cc7aaee03889084dbc672d39293d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,GBAYE0300668,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock,rock-and-roll,singer-songwriter",0.567,0.595,0.0,-7.827,1.0,0.0325,0.168,3.84e-05,0.152,0.849,128.273,4.0,,Warner Music Group - X5 Music Group,"C 2019 Warner Music Group - X5 Music Group, P 2019 Warner Music Group - X5 Music Group",4004 +4005,spotify:track:7Ed6BkggCS2KaKY5YlINaF,MIC Drop (feat. Desiigner) [Steve Aoki Remix],"spotify:artist:3Nrfpe0tUJi4K4DXYWgMUX, spotify:artist:7pFeBzX627ff0VnN6bxPR4, spotify:artist:77AiFEVeAVj2ORpC85QVJs","BTS, Desiigner, Steve Aoki",spotify:album:2TpvJhw6RYTTn4eDrAb3eJ,MIC Drop (feat. Desiigner) [Steve Aoki Remix],"spotify:artist:3Nrfpe0tUJi4K4DXYWgMUX, spotify:artist:77AiFEVeAVj2ORpC85QVJs","BTS, Steve Aoki",2017-11-24,https://i.scdn.co/image/ab67616d0000b27315220cf0d8a63c67c8daaaa6,1,1,238726,https://p.scdn.co/mp3-preview/aa04f5a6ce51fa0c75376e5574740633e7e7ef5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM7281796627,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"k-pop,k-pop boy group,pop,pop rap,rap,southern hip hop,trap,viral trap,edm,electro house,pop dance",0.613,0.842,10.0,-4.332,0.0,0.219,0.0157,0.0,0.23,0.645,169.917,4.0,,BIGHIT MUSIC / HYBE,"C (C) 2017 BIGHIT MUSIC / HYBE, P (P) 2017 BIGHIT MUSIC / HYBE",4005 +4006,spotify:track:1tJ8nyy80jE07q5HYt8Xvc,(If You're Not In It For Love) I'm Outta Here!,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,spotify:album:1p2aLu1SLka28C2QCryykj,The Woman In Me,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,1995-01-01,https://i.scdn.co/image/ab67616d0000b273fecf79f8b988ca73fbdb4d92,1,4,270026,https://p.scdn.co/mp3-preview/6acdc365874fa0ab74699fc261750baa352135f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402724,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian country,canadian pop,contemporary country,country,country dawn",0.772,0.761,5.0,-8.271,1.0,0.0358,0.141,0.0,0.0814,0.868,120.056,4.0,,Universal Music Group,"C © 1995 Mercury Records, a Division of UMG Recordings, Inc., P ℗ 1995 Mercury Records, a Division of UMG Recordings, Inc.",4006 +4007,spotify:track:1Gg5sm1IeeKK6GeV8WXbQl,I Knew You Were Waiting (For Me),"spotify:artist:19ra5tSw0tWufvUp8GotLo, spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok","George Michael, Aretha Franklin",spotify:album:0IJcpy0eM4o63J43qij68g,Ladies & Gentlemen,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1998-11-09,https://i.scdn.co/image/ab67616d0000b273813629baee66b2ec5f90ebee,2,13,238000,https://p.scdn.co/mp3-preview/b556c6d39ec4dabf161f3d3e242dbcb562c1370d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USAR19800123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock,classic soul,jazz blues,memphis soul,soul,southern soul,vocal jazz",0.717,0.84,4.0,-5.497,1.0,0.0459,0.269,0.0,0.216,0.694,107.979,4.0,,Epic,P This compilation (P) 2011 Sony Music Entertainment UK Limited,4007 +4008,spotify:track:7pcjhiKODADooP7IFPgetr,Stayin' Alive,"spotify:artist:45InkbGypoMk5nVX6dsHkt, spotify:artist:7oofaqs3ZPfzIuamtI4cSw","N-Trance, Ricardo Da Force",spotify:album:0XgOO1wZhtLHQFWe4VlvJr,Stayin' Alive,spotify:artist:45InkbGypoMk5nVX6dsHkt,N-Trance,1995-09-11,https://i.scdn.co/image/ab67616d0000b2730b481f33a613605da1a2bfec,1,1,245906,https://p.scdn.co/mp3-preview/9aeff78857f9077fefbd4f626ecb7915ac1c5d56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCFZ9500000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house",0.805,0.863,6.0,-7.853,0.0,0.0771,0.0515,0.000427,0.98,0.826,106.787,4.0,,All Around The World,"C © 1995 Universal Music Operations Limited, P An AATW release; ℗ 1995 Universal Music Operations Limited",4008 +4009,spotify:track:47TqCCnEliDp8NRDyIQoQq,You Make Me Wanna...,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,spotify:album:0fQdoem8dnrl80YcZzQ8f0,My Way,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,1997-09-16,https://i.scdn.co/image/ab67616d0000b273734efb1df1c29f55b888c844,1,1,219120,https://p.scdn.co/mp3-preview/d14cafed1e8747de5f1bfccb4d8a3e708721d684?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USLF29900480,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.761,0.639,5.0,-7.577,0.0,0.0539,0.0359,0.0,0.0945,0.922,164.088,4.0,,Arista/LaFace Records,P (P) 1997 Sony Music Entertainment,4009 +4010,spotify:track:5t6q0AC5pTGxCnLSg3qu4i,1-2-3,spotify:artist:7mXnN0kZ67wigGTn1OuNkD,Len Barry,spotify:album:2nVaoyKCz1nGdNny3bqoUm,The Best Of The Dovells 1961-1965,spotify:artist:6LaraO4gcDKWw0fwIOTodm,The Dovells,2005-10-18,https://i.scdn.co/image/ab67616d0000b273a158ffad118b006851856bef,1,21,141840,https://p.scdn.co/mp3-preview/9af566982630a5b1c75b4ee136d3d41cd6e3cb20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USMC16516297,spotify:user:bradnumber1,2021-08-08T09:26:31Z,philly soul,0.65,0.691,5.0,-7.006,1.0,0.0409,0.145,0.0,0.305,0.736,126.564,4.0,,"ABKCO Music and Records, Inc.","C © 2005 ABKCO Music & Records, Inc., P This Compilation ℗ 2005 ABKCO Music & Records, Inc.",4010 +4011,spotify:track:407vJkfEQMGDu1MVCWNnMX,I'm Not Over,spotify:artist:0OuSnRyi1OkLPkR4AqzJwi,Carolina Liar,spotify:album:3UEZrwx6H0nszMN2g15JoD,Coming To Terms,spotify:artist:0OuSnRyi1OkLPkR4AqzJwi,Carolina Liar,2008-05-03,https://i.scdn.co/image/ab67616d0000b27311b32bddec78cb96bcd8154b,1,1,201626,https://p.scdn.co/mp3-preview/3c78c7f68a89abafc9f6535592f6f909b9c8d53f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USAT20801350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,modern alternative rock,0.533,0.903,11.0,-2.984,1.0,0.0797,0.000742,0.0777,0.0641,0.476,130.989,4.0,,Atlantic Records,"C © 2008 Maratone AB under exclusive license to Atlantic Recording Corp. for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2008 Maratone AB under exclusive license to Atlantic Recording Corp. for the United States and WEA International Inc. for the world outside of the United States.",4011 +4012,spotify:track:3rJ4vGBVEjli56mpmpTWiD,The Lies In Your Eyes,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,spotify:album:1pD2XJI6nHHSQAzbloHePx,Give Us A Wink,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,1976-02-16,https://i.scdn.co/image/ab67616d0000b2732a8a0ee776f47b3d7ace1a51,1,1,228626,https://p.scdn.co/mp3-preview/63aa878a692da7be2e1b51ef554c16cfeb7bc40b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBARL7500049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam rock,hard rock",0.546,0.879,4.0,-5.637,1.0,0.0578,0.00737,0.00143,0.12,0.354,130.784,4.0,,RCA Records Label,P (P) This compilation 2005 Sony BMG UK & Ireland Ltd.,4012 +4013,spotify:track:4h9TZLHS7AZ30pt5c1o5Em,Work - Freemasons Radio Edit,spotify:artist:3AuMNF8rQAKOzjYppFNAoB,Kelly Rowland,spotify:album:6mwFFBME5LCvDKyD9B0jZt,Ms. Kelly: Deluxe Edition,spotify:artist:3AuMNF8rQAKOzjYppFNAoB,Kelly Rowland,2007,https://i.scdn.co/image/ab67616d0000b273d843f1649dbd644a5610f722,1,1,191693,https://p.scdn.co/mp3-preview/f1c1bc86d4d5dad78c3738bf8c2231cbeaa0749d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USSM10705667,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dance pop,hip pop,r&b,urban contemporary",0.753,0.885,3.0,-5.509,0.0,0.0394,0.0504,0.000958,0.366,0.863,102.785,4.0,,Music World Music/Columbia,"P (P) 2006, 2007, 2008 Sony Music Entertainment",4013 +4014,spotify:track:2b8fOow8UzyDFAE27YhOZM,Memories,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:3nR9B40hYLKLcR0Eph3Goc,Memories,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2019-09-20,https://i.scdn.co/image/ab67616d0000b273b8c0135a218de2d10a8435f5,1,1,189486,https://p.scdn.co/mp3-preview/e0faeb5bd806d8c5673114e2aa9c57f72dd6330a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USUM71913350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.764,0.32,11.0,-7.209,1.0,0.0546,0.837,0.0,0.0822,0.575,91.019,4.0,,222 Records/Interscope Records,"C © 2019 Interscope Records (222 Records), P ℗ 2019 Interscope Records (222 Records)",4014 +4015,spotify:track:47hs3xNT3iOGvgmC4eXBAi,Coming Home,"spotify:artist:2QYEvpsWUOjqaYuxDPTCmV, spotify:artist:4utLUGcTvOJFr6aqIJtYWV","Diddy - Dirty Money, Skylar Grey",spotify:album:3IOhnJI294Jd2edw7ReJsy,Last Train To Paris (Deluxe),spotify:artist:2QYEvpsWUOjqaYuxDPTCmV,Diddy - Dirty Money,2010-01-01,https://i.scdn.co/image/ab67616d0000b2736a6e65581163b9708db37591,1,18,238760,https://p.scdn.co/mp3-preview/2f9894c946f3f89d87653991d6c428da7335afc7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71027542,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,piano rock,viral pop",0.353,0.815,7.0,-1.844,1.0,0.212,0.164,0.0,0.217,0.245,167.971,4.0,,Universal Music Group,"C © 2010 Bad Boy/Interscope Records, P ℗ 2010 Bad Boy/Interscope Records",4015 +4016,spotify:track:0xeSDTXE4yc7AyF5pleSe5,Mean Woman Blues,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:39L39Zc1OmLrQOY4P0xhhG,The Monument Singles Collection,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2011-04-25,https://i.scdn.co/image/ab67616d0000b273c8e397651625a503f15f26b3,2,8,143600,https://p.scdn.co/mp3-preview/f3fba71080bfa11ca1a4a97fcecf7b956018b1d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USSM19802327,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.325,0.789,9.0,-7.861,1.0,0.102,0.608,7.64e-05,0.0687,0.69,165.972,4.0,,Monument/Orbison Records/Legacy,P This Compilation (P) 2011 Sony Music Entertainment,4016 +4017,spotify:track:5WdF8jm3hBNi1t9qlqdjsE,(Love Is) Thicker Than Water,spotify:artist:4YPqbAiLzBg5DIfsgQZ8QK,Andy Gibb,spotify:album:3yBKvLLgqZfNTNtoUnq0Uf,Flowing Rivers,spotify:artist:4YPqbAiLzBg5DIfsgQZ8QK,Andy Gibb,1977-09-09,https://i.scdn.co/image/ab67616d0000b2739007e7e22a518d1a8647c70b,1,6,255960,https://p.scdn.co/mp3-preview/ce0e47fb6c8868022d3549365a53cb8274dd8754?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,NLF057790041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.582,0.462,6.0,-9.882,0.0,0.0254,0.137,4.98e-05,0.0755,0.528,96.361,4.0,,Andy Gibb,"C © 1977 Peta Gibb, P ℗ 1977 Peta Gibb",4017 +4018,spotify:track:0YZ3J8xzGwLOg4yEgST1YK,With A Little Help From My Friends,spotify:artist:3pFCERyEiP5xeN2EsPXhjI,Joe Cocker,spotify:album:74sIm8QdXqFwYeDS7OfYVw,With A Little Help From My Friends,spotify:artist:3pFCERyEiP5xeN2EsPXhjI,Joe Cocker,1969-05-01,https://i.scdn.co/image/ab67616d0000b2735bb09aa81ffb17ccf902629f,1,9,312173,https://p.scdn.co/mp3-preview/8a89af249b414004d86bcbda00c7931436faa37d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAM16800382,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.307,0.43,2.0,-11.333,1.0,0.0629,0.288,0.000994,0.0988,0.305,145.224,3.0,,A&M,"C © 1999 UMG Recordings, Inc., P ℗ 1969 UMG Recordings, Inc.",4018 +4019,spotify:track:1jy0RbDHyBMTupSdc98XbG,How Can You Mend A Broken Heart,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:2FHiXBmtRn9fuTRyRHWcnV,Trafalgar,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1971-09,https://i.scdn.co/image/ab67616d0000b273896cab1e89d6c500a0675359,1,1,237826,https://p.scdn.co/mp3-preview/5aa2cf2a7f12fcc164b9a863863c98dc1cea7cd3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBAKW7101044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.335,0.262,4.0,-13.832,1.0,0.0393,0.548,0.0,0.0971,0.203,68.82,4.0,,Bee Gees Catalog,"C © 1971 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 1971 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",4019 +4020,spotify:track:22yw6rIyhtDr08Dfh3ipwA,I Hate the Music,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,spotify:album:28L7sCuuF8Zt6dW1FuZqRh,I Hate the Music,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,2009-09-18,https://i.scdn.co/image/ab67616d0000b273c6cd995a8ad657da9a0c10f4,1,4,233653,https://p.scdn.co/mp3-preview/69e1c0fd88a884fbc80e90784c6feb5cd6d4f98d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07600019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,classic uk pop",0.533,0.956,2.0,-4.338,1.0,0.112,0.0363,0.0,0.0338,0.72,138.153,4.0,,Albert Productions,"C © 2009 BMG AM Pty Ltd., P ℗ 2009 BMG AM Pty Ltd.",4020 +4021,spotify:track:6NpO2qjMkMhmncI6hdhTH2,Steer,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,spotify:album:5a0yup4Q20b2TxoW5dWKI3,On A Clear Night (Deluxe),spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,2007,https://i.scdn.co/image/ab67616d0000b273dde7da9d00866b909437fff4,1,3,231640,https://p.scdn.co/mp3-preview/3e3120a9f93ef74836743a28e470cac8ba503a9e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUEL00700022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop",0.566,0.672,4.0,-7.112,1.0,0.0305,0.0913,0.0,0.246,0.299,120.001,4.0,,Universal Music Australia Pty. Ltd.,"C © 2007 Eleven: A Music Company, P ℗ 2007 Eleven: A Music Company",4021 +4022,spotify:track:1AplEQktuV5nyVhBeQypu1,Cuddly Toy - 2007 Remaster,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:05jMK1VY8Ua6yRIFXalP3F,The Monkees 50,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,2016-08-26,https://i.scdn.co/image/ab67616d0000b273df5f381a77489ddc6810dc6a,2,2,159373,https://p.scdn.co/mp3-preview/9f36d70229c838632ee6dba16246b77cfa9bf3ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,USRH10652883,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.631,0.618,7.0,-9.664,1.0,0.0421,0.617,2.22e-06,0.487,0.681,122.377,4.0,,Rhino,"C © 2016 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved., P ℗ 2016 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Manufactured & Marketed by Rhino Entertainment Company. Printed In U.S.A.",4022 +4023,spotify:track:1Co9NGodpCCvWuIfe0PzIS,One In A Million,"spotify:artist:1fTCSmuwhEaa6J6Hjq8xmi, spotify:artist:28w7CgAcq1WLbkQfz795SN","Jordie Ireland, Ava Hayz",spotify:album:68SzmgbXOVkYdNvvt6lpRW,One In A Million,spotify:artist:1fTCSmuwhEaa6J6Hjq8xmi,Jordie Ireland,2018-05-04,https://i.scdn.co/image/ab67616d0000b273407da20b8c124dbf6eddc7e1,1,1,178424,https://p.scdn.co/mp3-preview/c1d3ddc5ede970d8eeab75ab97bb134099e95504?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUUM71800336,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.748,0.551,5.0,-5.772,1.0,0.0907,0.327,1.43e-05,0.096,0.334,104.175,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Jordie Ireland, under exclusive license to Universal Music Australia, P ℗ 2018 Jordie Ireland, under exclusive license to Universal Music Australia",4023 +4024,spotify:track:4LOgi2TAAoKU9ImfzRrCPO,Heaven,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:1DCI0mQQdf0LYoXheONDXi,Reckless (30th Anniversary / Deluxe Edition),spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1984-11-05,https://i.scdn.co/image/ab67616d0000b273d0b17cab0d1a584d55ded42f,1,4,243360,https://p.scdn.co/mp3-preview/a02f96375ee67e1e572e9ff777a710f7e950a017?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM18490004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.269,0.572,9.0,-7.361,0.0,0.0278,0.059,1.3e-06,0.123,0.364,69.83,4.0,,Universal Music Group,"C © 2014 A&M Records, P ℗ 2014 A&M Records",4024 +4025,spotify:track:0SIb6UH95eW0VCGj22IhFo,Goodness Gracious,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:2Dw4fYqDQnxsgoXDdMbqh3,Halcyon Days,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2014-01-01,https://i.scdn.co/image/ab67616d0000b27360a98c3be4daffefe9014c7e,1,16,226910,https://p.scdn.co/mp3-preview/923b9f5dc5249ba655584f15e0fe26ac336e0037?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBUM71304065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.568,0.8,4.0,-5.153,1.0,0.0687,0.0449,0.0,0.343,0.55,115.104,4.0,,Polydor Records,"C © 2014 Polydor Ltd. (UK), P ℗ 2014 Polydor Ltd. (UK)",4025 +4026,spotify:track:5W3cjX2J3tjhG8zb6u0qHn,"Harder, Better, Faster, Stronger",spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,spotify:album:2noRn2Aes5aoNVsU6iWThc,Discovery,spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,2001-03-12,https://i.scdn.co/image/ab67616d0000b2736610c21366e613bfd9f5d197,1,4,226413,https://p.scdn.co/mp3-preview/0f9fdfb61717b99d9cbef7365ad444e1aaea1b5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBDUW0000059,spotify:user:bradnumber1,2023-09-20T06:30:09Z,"electro,filter house,rock",0.817,0.716,6.0,-8.898,0.0,0.144,0.0427,0.00263,0.358,0.692,123.474,4.0,,Daft Life Ltd./ADA France,"C 2001 Distributed exclusively by Warner Music France / ADA France, 2001 Daft Life Ltd., P 2001 Distributed exclusively by Warner Music France / ADA France, 2001 Daft Life Ltd.",4026 +4027,spotify:track:6rziy8I9tEo84qHCHz2a79,"Oh, Monah",spotify:artist:0WQ2X6sDzgN8xEboF4MBif,The Cherokees,spotify:album:2eOqMt2suCPNSvf0vDQh2P,Go!! Records the Complete Collection,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-08-17,https://i.scdn.co/image/ab67616d0000b27350340cba0b7963c42dd24abb,3,23,137400,,False,0,AU3O01802776,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.659,0.786,8.0,-5.204,1.0,0.0271,0.504,0.0,0.363,0.949,104.641,4.0,,Aztec Music,"C © 2018 Aztec Records, P ℗ 2018 Aztec Records",4027 +4028,spotify:track:2qXPtsP8KlbGeqAsWSdX22,In Your Room,spotify:artist:2lGzdlE3VJTdFZBXxb244X,Toni Pearen,spotify:album:6y8hYSmeD7mhmrDexxtjpC,Toni Pearen's Intimate Album,spotify:artist:2lGzdlE3VJTdFZBXxb244X,Toni Pearen,1994-11-28,https://i.scdn.co/image/ab67616d0000b2738fc4dad6abe621da94350b09,1,7,264000,https://p.scdn.co/mp3-preview/0a4b9bfc4b9d45b04017007ffeb88befc52e2848?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUWA01900558,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.735,0.719,7.0,-8.11,1.0,0.0503,0.291,0.00206,0.0926,0.355,112.016,4.0,,WM Australia,"C © 1994 Mushroom Records Pty Ltd, P ℗ 1994 Mushroom Records Pty Ltd",4028 +4029,spotify:track:2RexMVjpaxZzPrXZwDv2sj,Parlez Vous Francais,spotify:artist:4MlrZKzgi3UuZi2iDKjOar,Art vs Science,spotify:album:1qf9h2hmrUi1P1cjDdRP5I,Art vs Science,spotify:artist:4MlrZKzgi3UuZi2iDKjOar,Art vs Science,2009-01-01,https://i.scdn.co/image/ab67616d0000b27301a078ed8ba8058187419e5a,1,2,213453,https://p.scdn.co/mp3-preview/390000b6a185e65ca571fd757f2339eaa85faf47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVS30900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian dance,australian indie",0.648,0.898,0.0,-4.445,0.0,0.142,0.000377,1.28e-06,0.359,0.842,131.998,4.0,,Magellanic,"C 2009 Art vs. Science, P 2009 Art vs. Science",4029 +4030,spotify:track:7wMq5n8mYSKlQIGECKUgTX,Hall of Fame (feat. will.i.am),"spotify:artist:3AQRLZ9PuTAozP28Skbq8V, spotify:artist:085pc2PYOi8bGKj0PNjekA","The Script, will.i.am",spotify:album:7JOCOjZTcLysDMkZGWlcIj,#3 Deluxe Version,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2012-09-10,https://i.scdn.co/image/ab67616d0000b2732e3049fef96abebf336b7366,1,3,202533,https://p.scdn.co/mp3-preview/466ad3f7e7b495b95cc49fdf7eef90fde9ee7cc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,GBARL1201055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop,dance pop,pop",0.421,0.873,10.0,-4.343,1.0,0.0564,0.0654,0.0,0.123,0.629,84.786,4.0,,Epic/Phonogenic,P (P) 2012 Sony Music Entertainment UK Limited,4030 +4031,spotify:track:6A9mKXlFRPMPem6ygQSt7z,Three Little Birds,spotify:artist:2QsynagSdAqZj3U9HgDzjD,Bob Marley & The Wailers,spotify:album:1vHvJVBK0WnpbYFw4f4UTD,Exodus (Deluxe Edition),spotify:artist:2QsynagSdAqZj3U9HgDzjD,Bob Marley & The Wailers,1977-06-03,https://i.scdn.co/image/ab67616d0000b273420b2459f35e0fc98bcab288,1,9,180266,https://p.scdn.co/mp3-preview/30af46efcab458c3535755bc384cef034e2519b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USIR27700016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae,roots reggae",0.814,0.482,9.0,-10.493,1.0,0.0588,0.0111,1.57e-06,0.0476,0.615,148.404,4.0,,Tuff Gong,"C © 2001 Island Records Inc., P ℗ 1977 UMG Recordings, Inc.",4031 +4032,spotify:track:1IsvXZXAV9EBC4hBKW6yDN,Missing - Todd Terry Remix / Radio Edit,spotify:artist:13ccXrK7AmXb4TddMkE7jy,Everything But The Girl,spotify:album:3fZbJRKdX4TAoC43xo5kWK,Like The Deserts Miss The Rain,spotify:artist:13ccXrK7AmXb4TddMkE7jy,Everything But The Girl,2002-01-01,https://i.scdn.co/image/ab67616d0000b2736cf12136d266b6d906069694,1,10,235026,https://p.scdn.co/mp3-preview/5abd3b6efde2dcb1022498188f5a97795e679c06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAHT0109010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,sophisti-pop,trip hop",0.739,0.853,9.0,-6.539,0.0,0.0296,0.0217,0.00357,0.057,0.652,123.509,4.0,,Virgin Records,"C © 2002 Virgin Records Ltd/Warner Music UK Ltd, P This Compilation ℗ 2002 Virgin Records Ltd/Warner Music UK Ltd",4032 +4033,spotify:track:1VZ04sZSpTet7wVMyZphA8,Joy To The World,spotify:artist:4FAEZeJcsYYBkNq2D3KGTV,Three Dog Night,spotify:album:7aJFK6NvC4oConhV5f8waK,The Collection,spotify:artist:4FAEZeJcsYYBkNq2D3KGTV,Three Dog Night,2003-01-01,https://i.scdn.co/image/ab67616d0000b2737047e2284f51f35de225d36e,1,1,214960,https://p.scdn.co/mp3-preview/8933211c1a7b0ee6b67dcf80765529e815254729?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USMC17047804,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,mellow gold,soft rock",0.591,0.726,2.0,-13.545,1.0,0.0315,0.0384,2.49e-06,0.119,0.968,129.057,4.0,,Spectrum,"C © 2003 Spectrum Music, P This Compilation ℗ 2003 Spectrum Music",4033 +4034,spotify:track:1lskzydT4FspSI60plLSgV,Sky,spotify:artist:5xtqw2B8z8JGfDYi2eAZHI,Sonique,spotify:album:6F814TT256ngnAxubBSE9K,Hear My Cry,spotify:artist:5xtqw2B8z8JGfDYi2eAZHI,Sonique,1999-10-21,https://i.scdn.co/image/ab67616d0000b2734f01f0b33ea6b0bafd512a1a,1,11,266720,https://p.scdn.co/mp3-preview/c8a007c5c7cb9e094fb3ad6c3d3037c3b0bde457?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR10000043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.606,0.767,9.0,-7.302,1.0,0.0335,0.0887,4.17e-06,0.165,0.765,143.087,4.0,,Universal Music Group,"C (C) 2000 Serious Records Ltd., P (P) 2000 Serious Records Ltd.",4034 +4035,spotify:track:28mMAnwzlHLVMDz77jEDRM,Age of Reason,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4JHZh7UHLQxcdH0qQB757v,Age Of Reason,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1988-07-22,https://i.scdn.co/image/ab67616d0000b273cb198d60945857e704dc07b4,1,1,306266,https://p.scdn.co/mp3-preview/684c9c077839d4d027a1d7bb1ad3d2cfc17f9d0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM08841002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.644,0.698,11.0,-11.87,0.0,0.0356,0.0155,0.00136,0.296,0.782,119.99,4.0,,RCA Records Label,P (P) 1988 Sony Music Entertainment Australia Pty Ltd,4035 +4036,spotify:track:31AOj9sFz2gM0O3hMARRBx,Losing My Religion,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,spotify:album:6yEuIwTQpciH1qtj7mP5GK,Out Of Time (25th Anniversary Edition),spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,1991-03-12,https://i.scdn.co/image/ab67616d0000b273e2dd4e821bcc3f70dc0c8ffd,1,2,268426,https://p.scdn.co/mp3-preview/184d86f6c2b531830190011f00c5780fa7a2e1f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USC4R1605373,spotify:user:bradnumber1,2021-10-20T22:25:34Z,"alternative rock,athens indie,permanent wave,rock",0.666,0.855,9.0,-5.051,0.0,0.0295,0.179,1.2e-06,0.0987,0.803,125.639,4.0,,Concord Records,"C © 2016 R.E.M./Athens L.L.C., Under exclusive license to Concord Music Group, Inc., P ℗ 2016 R.E.M./Athens L.L.C., Under exclusive license to Concord Music Group, Inc.",4036 +4037,spotify:track:1mqydO6xMtyTPa8yo1SdVr,Amie,spotify:artist:1MXwwmS2JpmsHZhdMeOL2s,Pure Prairie League,spotify:album:41AdLTdErVUwftvr1dUVAf,Greatest Hits,spotify:artist:1MXwwmS2JpmsHZhdMeOL2s,Pure Prairie League,1999-09-14,https://i.scdn.co/image/ab67616d0000b273db6261d8f2a721efb34c1c35,1,6,260933,https://p.scdn.co/mp3-preview/77529fc30604faaf51845d6eff809a5389b85c32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USRC19900614,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk rock,mellow gold,singer-songwriter,soft rock",0.553,0.449,9.0,-11.722,1.0,0.0292,0.567,0.0,0.0892,0.423,88.788,4.0,,RCA Records Label,P (P) 1999 BMG Entertainment,4037 +4038,spotify:track:3c2kMiSB86tVq1J4oULmvL,Groovin',spotify:artist:5X3TuTi9OIsJXMGxPwTKM2,The Young Rascals,spotify:album:5aQE05ji4wayN65QCZkl0U,Groovin' (Mono),spotify:artist:5X3TuTi9OIsJXMGxPwTKM2,The Young Rascals,1967,https://i.scdn.co/image/ab67616d0000b273e93ad7c2b5032a9b07543c40,1,6,151289,https://p.scdn.co/mp3-preview/54521a3e9567da0e5fc35db2ca34d480e47bb21b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAT21402943,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,country rock,folk rock,merseybeat,psychedelic rock,rock-and-roll,singer-songwriter",0.605,0.455,5.0,-8.903,0.0,0.0301,0.595,0.0,0.0816,0.678,106.825,4.0,,Rhino Atlantic,"C © 1967 Atlantic Records, P ℗ 1967 Atlantic Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",4038 +4039,spotify:track:1iVS5CqbO8MirwvXndRltQ,Confetti (feat. Saweetie),"spotify:artist:3e7awlrlDSwF3iM0WBjGMp, spotify:artist:6cK3NBO6uP7hh0oyuVELFl","Little Mix, Saweetie",spotify:album:4uYzqsDNf8jAN35ThzylqR,Confetti (feat. Saweetie),spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2021-04-29,https://i.scdn.co/image/ab67616d0000b2738f1c7366f39ae8196d05c73b,1,1,185374,https://p.scdn.co/mp3-preview/1d97e348339167f7f89da5508627586cdc6f2403?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU2100003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop,cali rap,trap queen",0.733,0.631,9.0,-6.449,0.0,0.0554,0.177,0.0,0.0653,0.456,107.089,4.0,,RCA Records Label,"P (P) 2021 Under Exclusive Licence to RCA, a division of Sony Music Entertainment UK Limited",4039 +4040,spotify:track:3dNd4lCiUMnLpDhG6ziba9,"Fool, Fool, Fool",spotify:artist:0lmRxVVpx9hSmeQv9jGYYR,Ray Brown And The Whispers,spotify:album:7eZzdwhXvWOmGGe3C2SpPF,Miles Of Hits,spotify:artist:0lmRxVVpx9hSmeQv9jGYYR,Ray Brown And The Whispers,1988,https://i.scdn.co/image/ab67616d0000b27321c645d42f6e5681a523a966,1,3,162560,https://p.scdn.co/mp3-preview/ac6d103f53a65af692f23a42f7ad1f320548c445?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUFE09100006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.436,0.654,0.0,-12.113,0.0,0.0889,0.43,0.00427,0.335,0.749,121.269,4.0,,WM Australia,"C © 1988 Festival Records, P ℗ 1988 Festival Records",4040 +4041,spotify:track:3853uIOwh2L9F8TkDd1F49,Lay It All on Me (feat. Ed Sheeran),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Rudimental, Ed Sheeran",spotify:album:0fOmb5tlvVvK8SskoBQtVh,Lay It All on Me (feat. Ed Sheeran),spotify:artist:4WN5naL3ofxrVBgFpguzKo,Rudimental,2015-09-25,https://i.scdn.co/image/ab67616d0000b2735cb36e110db657cd7cb506c8,1,1,242440,https://p.scdn.co/mp3-preview/5f509081db5aae5ff3cc43b0029b9e70b55f9309?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAHS1400395,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,pop,singer-songwriter pop,uk pop",0.669,0.747,6.0,-7.108,1.0,0.0428,0.141,0.0,0.185,0.483,122.531,4.0,,Asylum/Major Tom's,"C © 2015 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company, P ℗ 2015 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company",4041 +4042,spotify:track:10LRRKPmx8uHcSxLVWK0ct,Tonight's the Night (Gonna Be Alright) - 2009 Remaster,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:7nge8Pafna5rU1a0ek7dKN,A Night on the Town - Deluxe Edition,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1976,https://i.scdn.co/image/ab67616d0000b2739d331b07d6714699ce5bda80,1,1,237120,https://p.scdn.co/mp3-preview/23ebd7a1923452f27c73c87aa2e0d8f3eadf40fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB10900470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.551,0.514,11.0,-12.617,1.0,0.0524,0.336,0.125,0.382,0.721,136.547,3.0,,Rhino/Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 Warner Records Inc. Marketed by Warner Strategic Marketing, a Warner Music Group Company.",4042 +4043,spotify:track:6FObiTylavj1SjqKWjhE8K,The Agenda,spotify:artist:5hA2fNOsOjec1PiwPcrQ3k,Ruby Velle & The Soulphonics,spotify:album:4czOMMgwzSR4Ifj1QSQacO,It's About Time,"spotify:artist:5hA2fNOsOjec1PiwPcrQ3k, spotify:artist:1MNIGuWcmHqrvCtsfGbdqr","Ruby Velle & The Soulphonics, Ruby Velle",2012-09-04,https://i.scdn.co/image/ab67616d0000b27353e83c4e8dde374372cbe131,1,4,305069,https://p.scdn.co/mp3-preview/a04e994ad1c8a1e6b289c781a0f4594cab4c9d4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMPDX1200004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.357,0.515,6.0,-4.125,0.0,0.0269,0.178,0.000192,0.104,0.521,173.184,3.0,,Gemco Recording Group,"C 2012 Gemco Recording Group, P 2012 Gemco Recording Group",4043 +4044,spotify:track:4f1k7D0TVAbmQsZIspTNdG,Black Is Black,spotify:artist:29r633A8MJhwlkoljEf1L0,Belle Epoque,spotify:album:2XHFyTbdRo7eQ2oNiKcBrb,Greatest Hits (Original Recordings),spotify:artist:29r633A8MJhwlkoljEf1L0,Belle Epoque,2011-11-20,https://i.scdn.co/image/ab67616d0000b2731402ec87a4b2193508264bf6,1,1,175120,https://p.scdn.co/mp3-preview/8f74a4227fb2c282c1758f7a993e6e02308ba423?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,DEA371241080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.687,0.569,5.0,-11.413,1.0,0.0673,0.287,0.013,0.261,0.963,133.204,4.0,,Belle Epoque,"C 2011 , Baierle Records, P 2011 Baierle Records",4044 +4045,spotify:track:2qxmye6gAegTMjLKEBoR3d,Let Me Down Slowly,spotify:artist:5IH6FPUwQTxPSXurCrcIov,Alec Benjamin,spotify:album:6jKZplJpy21R5lHaYHHjmZ,Narrated For You,spotify:artist:5IH6FPUwQTxPSXurCrcIov,Alec Benjamin,2018-11-16,https://i.scdn.co/image/ab67616d0000b273459d675aa0b6f3b211357370,1,4,169353,https://p.scdn.co/mp3-preview/19007111a4e21096bcefef77842d7179f0cdf12a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USAT21802284,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,pop,pov: indie",0.652,0.557,1.0,-5.714,0.0,0.0318,0.74,0.0,0.124,0.483,150.073,4.0,,2018,"C 2018, P 2018",4045 +4046,spotify:track:1IGce0abNTN99uNhpRpUyc,Someday Soon,spotify:artist:49NJc5qDmCRsN3SsBAqEa4,Natalie Bassingthwaighte,spotify:album:46ekOtyTUnhxvmaW1hJkI0,1000 Stars,spotify:artist:49NJc5qDmCRsN3SsBAqEa4,Natalie Bassingthwaighte,2009-02-20,https://i.scdn.co/image/ab67616d0000b27306714572d5d60e816237dc85,1,2,252133,https://p.scdn.co/mp3-preview/73c78fde0cd489db95f6d00a149b800e4052c219?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUBM00800659,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.596,0.965,0.0,-4.497,0.0,0.0728,0.00711,0.0,0.234,0.542,130.072,4.0,,Sony BMG Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd,4046 +4047,spotify:track:6H9qQdK4DhPV0E1mIYAo4N,If You Leave Me Can I Come Too?,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:5iTdMXmcuJl7bqVIsIJ76D,Essential As Anything,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,2015-10-02,https://i.scdn.co/image/ab67616d0000b273dd1b2cbb40cb1aa0e5e8484d,1,5,174040,https://p.scdn.co/mp3-preview/2b083d5643bf554d14f2aac497f45649bd5d1b3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUFE00800005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.741,0.875,7.0,-3.505,1.0,0.0272,0.24,0.00025,0.211,0.826,110.968,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Syray Music, P This Compilation ℗ 2015 Syray Music",4047 +4048,spotify:track:22HlzoAbV3ELj4Hb66axDV,Hello (Let’s Go),spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,spotify:album:2tZRoBOqmLy64lHwds1Kkl,Destination Now,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738387b53a693aba5553ef3175,1,6,207414,https://p.scdn.co/mp3-preview/717528600d95223cd8c33abf6a2eca0ee64f2ef3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC01006311,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian house",0.645,0.887,0.0,-3.805,0.0,0.0558,0.00321,5.3e-05,0.129,0.684,127.979,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Vicious Recordings Pty Ltd, P ℗ 2011 Vicious Recordings Pty Ltd",4048 +4049,spotify:track:6wo37KVqFJhtuxPTpLCcfe,Takeaway (feat. Lennon Stella),"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:45eNHdiiabvmbp4erw26rg, spotify:artist:1cZQSpDsxgKIX2yW5OR9Ot","The Chainsmokers, ILLENIUM, Lennon Stella",spotify:album:1JawI0XkEwmQ5Bwef3RMbq,World War Joy...Takeaway,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2019-07-24,https://i.scdn.co/image/ab67616d0000b273830ba1c24fc9e3d59517e5ec,1,1,209893,https://p.scdn.co/mp3-preview/6e1152903f9e9d41b8a9513278cf2b13be8eedca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USQX91901353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,edm,melodic dubstep,pop dance,alt z,canadian pop,uk pop",0.294,0.505,3.0,-8.106,1.0,0.042,0.12,0.0,0.0977,0.357,85.332,1.0,,Disruptor Records/Columbia,P (P) 2019 Disruptor Records/Columbia Records,4049 +4050,spotify:track:5kgqTe1BM720OjU78TGYDw,Tell Me You Love Me,"spotify:artist:4sTQVOfp9vEMCemLw50sbu, spotify:artist:6mPZJXtFVaakznkRxdgWtC","Galantis, Throttle",spotify:album:7DNmxxEuJe19wNVrinaXx4,The Aviary,spotify:artist:4sTQVOfp9vEMCemLw50sbu,Galantis,2017-09-15,https://i.scdn.co/image/ab67616d0000b27371340c55289f59acb3ecd40f,1,5,190400,https://p.scdn.co/mp3-preview/ba6d01be3248256b16ae45872e13019e74a09b31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USAT21703587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,progressive electro house",0.762,0.797,5.0,-2.71,1.0,0.135,0.117,0.0,0.202,0.525,122.066,4.0,,Big Beat Records,"C © 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",4050 +4051,spotify:track:4WCn0AgWKBJRjuFvHSfle8,Forever,spotify:artist:2JfrljViGl4PxMfa3Fd6kS,Walter Meego,spotify:album:5CuBGIzKwFTgiA0vPgsFgc,Voyager,spotify:artist:2JfrljViGl4PxMfa3Fd6kS,Walter Meego,2008,https://i.scdn.co/image/ab67616d0000b273a38c127cb3599420842f32e2,1,1,258093,https://p.scdn.co/mp3-preview/91994e2bd73fe9c96804dec60228d7ab1deebac4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USSM10800422,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.671,0.717,2.0,-5.213,1.0,0.0516,0.000771,0.000741,0.196,0.801,109.962,4.0,,Onelove,P (P) 2007 Walter Meego Inc.,4051 +4052,spotify:track:4G7KGkt4RfYqpvUsjXqKBL,Throw Your Hands Up (Dancar Kuduro) (Original Radio Edit),spotify:artist:2i47jyM5ckYIxJd9W13nT2,Qwote feat. Pitbull & Lucenzo,spotify:album:6aUqj2hAo69swK6E9B94P2,Throw Your Hands Up (Dancar Kuduro),spotify:artist:2i47jyM5ckYIxJd9W13nT2,Qwote feat. Pitbull & Lucenzo,2011-10-29,https://i.scdn.co/image/ab67616d0000b273081390b87b740858751eeb0e,1,1,209908,https://p.scdn.co/mp3-preview/a2d3b996bf817fc9275529142f75b4298ace4539?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USUS11100331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.595,0.932,0.0,-4.911,1.0,0.303,0.161,0.0,0.402,0.761,129.953,4.0,,Central Station Records,P 2011 Central Station Records,4052 +4053,spotify:track:4cAXvxzp3q7NIg0gFXjjvi,Style,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:6w36pmMA5bxECalu5rxQAw,1989,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-10-27,https://i.scdn.co/image/ab67616d0000b27304986cc325ba79fe52314a7b,1,3,231000,https://p.scdn.co/mp3-preview/5ed0bbbc40dda2bce0e008fe02949cd254f0ea69?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1431319,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.598,0.786,2.0,-5.572,1.0,0.0382,0.00256,0.00143,0.117,0.456,95.021,4.0,,Universal Music Group,"C © 2014 Big Machine Records, LLC, P ℗ 2014 Big Machine Records, LLC",4053 +4054,spotify:track:3kSXn1osC89W8JcPLozTzs,Stand By You,spotify:artist:3QLIkT4rD2FMusaqmkepbq,Rachel Platten,spotify:album:0mFDIOqypzHp6Xd0el1hoT,Wildfire,spotify:artist:3QLIkT4rD2FMusaqmkepbq,Rachel Platten,2016-01-01,https://i.scdn.co/image/ab67616d0000b273a9e4d7fae5dfcc8f9cc96bc9,1,1,219000,https://p.scdn.co/mp3-preview/534a2ea5bc6bd2f848d8aa272779abdeac7c2b28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM11506529,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,viral pop",0.506,0.897,9.0,-4.632,1.0,0.26,0.146,0.000451,0.0868,0.525,188.03,4.0,,Columbia,"P (P) 2015 Columbia Records, a Division of Sony Music Entertainment",4054 +4055,spotify:track:5G2c6FsfTzgYUzageCmfXY,One Thing,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:6cunQQ7YZisYOoiFu2ywIq,Up All Night,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2012-05-25,https://i.scdn.co/image/ab67616d0000b2734a5584795dc73860653a9a3e,1,3,197600,https://p.scdn.co/mp3-preview/3826acf16d202c55b190526192204cd69f2867da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBHMU1100171,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.713,0.718,2.0,-3.806,1.0,0.0278,0.00233,0.0,0.0838,0.656,126.999,4.0,,Syco Music UK,P Track 2 & 18 (P) 2011; all othertracks (P) 2012 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,4055 +4056,spotify:track:7zrWPRYubwn8k8Id80LDCv,Wishing I Was There,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,spotify:album:38alWeQVP9UUAGJvLptys9,Left Of The Middle,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,1997-11-10,https://i.scdn.co/image/ab67616d0000b27384bb2b1e87d5ba0bac8871a2,1,5,232560,https://p.scdn.co/mp3-preview/1689897bdcb4789e84d35462c78caae837895bf6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBARL9700538,spotify:user:bradnumber1,2021-11-20T11:27:44Z,"dance pop,europop,lilith,new wave pop,pop rock",0.585,0.867,10.0,-6.807,1.0,0.0539,0.019,4.7e-06,0.362,0.81,92.993,4.0,,RCA Records Label,P (P) 1997 BMG Entertainment International UK & Ireland Ltd,4056 +4057,spotify:track:2LVxvGhl2U5p2ql2ujc6vZ,Hands Clean,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,spotify:album:0kKfmdca8GY7bDWFWtY801,Under Rug Swept,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,2002-02-25,https://i.scdn.co/image/ab67616d0000b273d78336d6cea76829a83069f9,1,3,269400,https://p.scdn.co/mp3-preview/1a2ed20be19b5b1dce059667fe16186481756613?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USMV20100234,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,lilith,neo mellow,pop rock,singer-songwriter",0.513,0.82,7.0,-5.428,1.0,0.0299,0.00192,2.83e-06,0.504,0.52,99.952,4.0,,Reprise/Maverick,"C © 2002 Maverick Recording Company, P ℗ 2002 Maverick Recording Company",4057 +4058,spotify:track:6jKeXDUCImQkNdwKJviCPw,Live Your Life,"spotify:artist:4OBJLual30L7gRl5UkeRcT, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","T.I., Rihanna",spotify:album:3uH0v0aAhwz0UYwDphuc7W,Paper Trail,spotify:artist:4OBJLual30L7gRl5UkeRcT,T.I.,2008-09-07,https://i.scdn.co/image/ab67616d0000b2730dd170d60a89c5cbb8cb8bb3,1,5,338853,https://p.scdn.co/mp3-preview/9615b5d9e382cc78ebe4fa9beb2c25ec38233673?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USAT20803619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,gangster rap,hip hop,pop rap,rap,southern hip hop,trap,barbadian pop,pop,urban contemporary",0.434,0.861,11.0,-3.646,0.0,0.224,0.0582,0.0,0.2,0.453,108.34,5.0,,"Grand Hustle, LLC","C 2008 Grand Hustle, LLC | Cinq Recordings, P 2008 Grand Hustle, LLC | Cinq Recordings",4058 +4059,spotify:track:3vPcQctpI8eQxlIkzGaVju,Love Story - US Album Version,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:3hJQGLUpAAXYJ0M3e1mzps,Fearless (Australian Version),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2008-11-11,https://i.scdn.co/image/ab67616d0000b2730017a5d5443d62130cff1611,1,3,235266,https://p.scdn.co/mp3-preview/9f5f1d355bc50d138e3496823c2b2717e3961319?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY0803275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.618,0.741,2.0,-3.95,1.0,0.031,0.17,0.0,0.0822,0.296,118.984,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Big Machine Records, LLC, P ℗ 2008 Big Machine Records, LLC",4059 +4060,spotify:track:4pUqtEXcZiQxpP5FPciLmb,Turn Off The Light,spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,spotify:album:0on8zrPIIlANtVlNw6Uea7,"Whoa, Nelly! (Special Edition)",spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,2008-01-01,https://i.scdn.co/image/ab67616d0000b27335d2e2896ba7cf1e76069404,1,6,276106,https://p.scdn.co/mp3-preview/e1f3d68f8de1c9ccb3ff465cd2eaea8ccd833de2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10021999,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian latin,canadian pop,dance pop,pop",0.585,0.672,2.0,-6.211,1.0,0.105,0.0842,0.00044,0.459,0.666,180.176,4.0,,Universal Music Group,"C © 2008 Geffen Records, P ℗ 2008 Geffen Records",4060 +4061,spotify:track:1QkaME1J8C8Pau6DHwkrIO,Arms Around Me,spotify:artist:02A3cEvlLLCbIMVDrK2GHV,Starley,spotify:album:3J9Y9lm3Hyx8ajh3DmJlhf,Arms Around Me,spotify:artist:02A3cEvlLLCbIMVDrK2GHV,Starley,2020-03-13,https://i.scdn.co/image/ab67616d0000b2739c921ce076ac60220ccc94aa,1,1,181363,https://p.scdn.co/mp3-preview/699a23413dc1981cbdc168b9ba109a5c8a7d0015?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,AUCN32000045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,aussietronica,0.702,0.684,10.0,-5.669,1.0,0.035,0.101,0.0,0.0646,0.625,114.068,4.0,,Universal Music Australia (Distribution),"C © 2020 Central Station Records, P ℗ 2020 Central Station Records",4061 +4062,spotify:track:5oLObQcGpeEjrOHpPY80F5,Hard Rock Café,spotify:artist:319yZVtYM9MBGqmSQnMyY6,Carole King,spotify:album:5AJ4tMUKB5WOvIITI8JAZJ,Simple Things,spotify:artist:319yZVtYM9MBGqmSQnMyY6,Carole King,1977,https://i.scdn.co/image/ab67616d0000b27317ee1ceb2304a5b269d739b2,1,6,223733,https://p.scdn.co/mp3-preview/4e190e0938832a152d93fba4702dfa29bc17196e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USRG20710205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.653,0.754,0.0,-8.179,1.0,0.039,0.11,0.000127,0.754,0.708,133.751,4.0,,Legacy Recordings,"P (P) 2012 Rockingale Recordings, under exclusive license to Legacy Recordings / Sony Music Entertainment",4062 +4063,spotify:track:2wZw2HaaLxmICIBSD2QAQL,1901,spotify:artist:1xU878Z1QtBldR7ru9owdU,Phoenix,spotify:album:4BWhMPQUJWaFdTxzzKmVIE,Wolfgang Amadeus Phoenix,spotify:artist:1xU878Z1QtBldR7ru9owdU,Phoenix,2009-05-25,https://i.scdn.co/image/ab67616d0000b27342d59a803385a97f50f6f8cb,1,2,193120,https://p.scdn.co/mp3-preview/51f9b6a2218009fa259e44b6ba944744f44c0f37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR31Q0900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,indie rock,modern rock,new rave,rock independant francais,shimmer pop",0.607,0.835,0.0,-5.427,1.0,0.0415,0.0588,4.71e-05,0.195,0.719,144.087,4.0,,Liberator Music,"C 2013 Ghettoblaster S.A.R.L. under exlcuse license to Glassnote Entertainment Group LLC, P 2013 Ghettoblaster S.A.R.L. under exlcuse license to Glassnote Entertainment Group LLC",4063 +4064,spotify:track:634uqj923AYB4QruuYeKHI,Payphone - Edit,"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:137W8MRPWKqSmrBGDBFSop","Maroon 5, Wiz Khalifa",spotify:album:7ezRF0jJQIoSabdkMktfuL,Overexposed,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2012-06-25,https://i.scdn.co/image/ab67616d0000b273205182ba108cdaa51ce6bf86,1,2,231373,https://p.scdn.co/mp3-preview/3fa424cf3b47431d48b7a12368ce0eeb134fc03f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71203481,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap",0.738,0.758,4.0,-4.762,1.0,0.042,0.0171,0.0,0.373,0.52,110.01,4.0,,Universal Music Taiwan,"C © 2012 A&M/Octone Records, P ℗ 2012 Interscope Records",4064 +4065,spotify:track:5KwtMxjFSXoixWutWmxDee,Give Me Something,spotify:artist:23IZADrJHPStZ6aMxJVq3s,Jarryd James,spotify:album:4kZKz4ZQCnuKWV6MqOR2H2,Thirty One,spotify:artist:23IZADrJHPStZ6aMxJVq3s,Jarryd James,2015-09-11,https://i.scdn.co/image/ab67616d0000b2738819357f0210af47c90a4682,1,11,191162,https://p.scdn.co/mp3-preview/c437991dec69afe7c0f6f2a54e7f095f6853a53a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUUM71500628,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative pop,australian r&b",0.576,0.682,1.0,-7.041,1.0,0.055,0.186,0.0,0.0977,0.885,85.98,4.0,,Universal Music Australia (Distribution),"C © 2015 Dryden Street Ltd, P ℗ 2015 Dryden Street Ltd",4065 +4066,spotify:track:6PJ8FF6UR8FZXfEvpHkIVN,How Would You Feel (Paean),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:3T4tUhGYeRNVUGevb0wThu,÷ (Deluxe),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2017-03-03,https://i.scdn.co/image/ab67616d0000b273ba5db46f4b838ef6027e6f96,1,11,280533,https://p.scdn.co/mp3-preview/539bff3b1ecaa87e60c47f197749a26fe3ebab09?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAHS1700038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.617,0.439,9.0,-5.63,1.0,0.0269,0.424,0.0,0.127,0.242,139.979,4.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company.",4066 +4067,spotify:track:3FvQH46A4B37eNHjooIXcu,Bad,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:3OBhnTLrvkoEEETjFA3Qfk,"HIStory - PAST, PRESENT AND FUTURE - BOOK I",spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1995-06-16,https://i.scdn.co/image/ab67616d0000b273d0593178c6c2594693ee34b7,1,6,247133,https://p.scdn.co/mp3-preview/83448d86aa3e896040e6b98d83888d85150c0a70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USSM18700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.802,0.869,8.0,-5.03,1.0,0.0456,0.00712,0.241,0.0585,0.339,114.14,4.0,,Epic,"P (P) 1979, 1982, 1987, 1988, 1991, 1995 MJJ Productions Inc.",4067 +4068,spotify:track:0V3wPSX9ygBnCm8psDIegu,Anti-Hero,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:151w1FgRZfnKZA9FEcg9Z3,Midnights,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2022-10-21,https://i.scdn.co/image/ab67616d0000b273bb54dde68cd23e2a268ae0f5,1,3,200690,https://p.scdn.co/mp3-preview/8587a38f3496e9b17e33d89c322c4b69ba899d69?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USUG12205736,spotify:user:bradnumber1,2022-11-02T00:25:27Z,pop,0.633,0.648,4.0,-6.645,1.0,0.062,0.121,2.62e-06,0.161,0.49,96.888,4.0,,Taylor Swift,"C © 2022 Taylor Swift, P ℗ 2022 Taylor Swift",4068 +4069,spotify:track:325FgLfQLrjhAeLCBVNvLt,Jackie - Radio Edit,"spotify:artist:3fyHEOOcbca0AhyPGLErpG, spotify:artist:0aHcdeP3SwSYZsCtUbvSf7","BZ, Joanne",spotify:album:5DemDZRVQjI4nC8lKuBwAa,Jackie,"spotify:artist:3fyHEOOcbca0AhyPGLErpG, spotify:artist:0aHcdeP3SwSYZsCtUbvSf7","BZ, Joanne",1999,https://i.scdn.co/image/ab67616d0000b2738658bc031dfa8fd9f1081396,1,1,244015,https://p.scdn.co/mp3-preview/d2d2ef228ec75f231c920dbd9955e3abe53c0907?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBLFP1644907,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.852,0.994,2.0,-4.059,0.0,0.0973,0.0205,0.00127,0.357,0.933,137.112,4.0,,Colors Entertainment,"C 1999 Colors Entertainment, P 1999 Colors Entertainment",4069 +4070,spotify:track:0Sg5kWoILCs2zBoIHIsDAa,Making Memories Of Us,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,spotify:album:0xBQEVKKlFKaetqike1qXK,Greatest Hits,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,2007-01-01,https://i.scdn.co/image/ab67616d0000b2734a8f4a048bef3ade8fbddb25,1,6,236000,https://p.scdn.co/mp3-preview/dbfd982b12aaa6bab39af4fefb2420eb3a667bd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USCN10500012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road",0.688,0.454,4.0,-9.379,1.0,0.0256,0.614,0.000107,0.107,0.331,103.928,4.0,,Capitol Nashville,"C © 2007 Capitol Records Nashville, P ℗ 2007 Capitol Records Nashville",4070 +4071,spotify:track:23QoOLhWKM7AdVgEWLGkKl,I Need You,spotify:artist:5rAaG3OuMuWvPWYji9TDgh,3T,spotify:album:5lSFQLg4GgtOZcnY8yXabS,Brotherhood,spotify:artist:5rAaG3OuMuWvPWYji9TDgh,3T,1995-10-01,https://i.scdn.co/image/ab67616d0000b27363ec8bb2492f23f458f2a9d4,1,8,234666,https://p.scdn.co/mp3-preview/7e0126329646d22247ba39405117a9d5034124e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USSM19501654,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b",0.582,0.276,5.0,-11.57,1.0,0.0286,0.898,1.23e-05,0.0916,0.198,126.003,4.0,,MJJ Music/550 Music/Epic,P (P) 1995 MJJ Music,4071 +4072,spotify:track:76TpWFiK5YCgw1hy26DWZp,What Is Life - Remastered 2014,spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,spotify:album:4I4xtHaIFOzhZfp1NIHkY6,All Things Must Pass (Remastered 2014),spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,1970-11-27,https://i.scdn.co/image/ab67616d0000b273acc11d868a59008935e72299,1,5,264413,https://p.scdn.co/mp3-preview/956184a34849dda3878dae10305df363984fcd72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GB77R1400029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.468,0.833,4.0,-5.847,1.0,0.0324,0.00654,0.000332,0.326,0.884,131.248,4.0,,UMC (Universal Music Catalogue),"C © 2014 G.H. Estate Limited under exclusive license to Calderstone Productions Limited (a division of Universal Music Group), P ℗ 2014 G.H. Estate Limited under exclusive license to Calderstone Productions Limited (a division of Universal Music Group)",4072 +4073,spotify:track:43rA71bccXFGD4C8GOpIlN,I Forgot That You Existed,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1NAmidJlEaVgA3MpcPFYGq,Lover,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2019-08-23,https://i.scdn.co/image/ab67616d0000b273e787cffec20aa2a396a61647,1,1,170640,https://p.scdn.co/mp3-preview/e40e6c18800d39765329c3c14c5d2b18b7c2d7cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USUG11901471,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.664,0.316,5.0,-10.345,1.0,0.519,0.298,2.03e-06,0.0812,0.541,92.875,4.0,,Taylor Swift,"C © 2019 Taylor Swift, P ℗ 2019 Taylor Swift",4073 +4074,spotify:track:4wzjNqjKAKDU82e8uMhzmr,Face Down,spotify:artist:1SImpQO0GbjRgvlwCcCtFo,The Red Jumpsuit Apparatus,spotify:album:6TyPSzd5rA2rQ9yLJJ1Gg2,Don't You Fake It,spotify:artist:1SImpQO0GbjRgvlwCcCtFo,The Red Jumpsuit Apparatus,2006-01-01,https://i.scdn.co/image/ab67616d0000b273f98edbc89407338a90437d34,1,4,192000,https://p.scdn.co/mp3-preview/e8af2507a50c50224ef78d058dec1c60a1ab3c40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USVI20600108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,neon pop punk,pop punk,post-grunge,screamo",0.545,0.932,7.0,-2.189,0.0,0.0399,0.000665,0.0,0.127,0.464,92.956,4.0,,Virgin Records,"C © 2006 Capitol Records LLC, P ℗ 2006 Capitol Records, LLC",4074 +4075,spotify:track:1sBhJGPUKrdRycgKxve70v,Hot2Touch,"spotify:artist:4bL2B6hmLlMWnUEZnorEtG, spotify:artist:34SBu2kvAUh84umN8Pi0iI, spotify:artist:5KPJMJR9PCfMWSfco8i4W4","Felix Jaehn, Hight, Alex Aiono",spotify:album:6eBx4YwPpHIcdPmR9JBJT2,Hot2Touch,"spotify:artist:4bL2B6hmLlMWnUEZnorEtG, spotify:artist:34SBu2kvAUh84umN8Pi0iI, spotify:artist:5KPJMJR9PCfMWSfco8i4W4","Felix Jaehn, Hight, Alex Aiono",2017-05-12,https://i.scdn.co/image/ab67616d0000b273767ba597ba12ee255719cbd4,1,1,160825,https://p.scdn.co/mp3-preview/b5b9c104a67401032002ff4752c4667eda299c09?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEUM71707902,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,german dance,pop dance,tropical house,uk dance,uk dance,teen pop",0.755,0.719,1.0,-5.316,0.0,0.0421,0.000875,1.53e-05,0.326,0.813,121.986,4.0,,Universal Music Group,"C © 2017 L'Agentur, under exclusive license to Virgin Records, a division of Universal Music GmbH, P ℗ 2017 L'Agentur, under exclusive license to Virgin Records, a division of Universal Music GmbH",4075 +4076,spotify:track:7r7M8ZN5NVHxxFdkUzSKYQ,Freefallin - Radio Edit,spotify:artist:16Mje1BDQmN1DWp4a94YOC,Zoë Badwi,spotify:album:1AaoFuNEJeLAw9metGwbon,Zoë,spotify:artist:16Mje1BDQmN1DWp4a94YOC,Zoë Badwi,2011-06-14,https://i.scdn.co/image/ab67616d0000b273ef914a97a92a933e498206d5,1,1,196874,https://p.scdn.co/mp3-preview/6be4dd34839339b709d063e914cc20075845ebd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNE31000084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.528,0.93,8.0,-4.139,1.0,0.0903,0.152,0.0,0.356,0.22,127.932,4.0,,WM Australia,"C 2011 Neon Records Pty Limited Licensed courtesy of Neon Records Pty Limited marketed & distributed by Warner Music Australia Pty Limited, P 2011 Neon Records Pty Limited Licensed courtesy of Neon Records Pty Limited marketed & distributed by Warner Music Australia Pty Limited",4076 +4077,spotify:track:3iw6V4LH7yPj1ESORX9RIN,Wellerman - Sea Shanty / 220 KID x Billen Ted Remix,"spotify:artist:1PKErrAhYFdfrDymGHRQRo, spotify:artist:4Euia7UzdRshy1DJOSMTcs","Nathan Evans, 220 KID",spotify:album:1zEBi4O4AaY5M55dUcUp3z,Wellerman - Sea Shanty / 220 KID x Billen Ted Remix,"spotify:artist:1PKErrAhYFdfrDymGHRQRo, spotify:artist:4Euia7UzdRshy1DJOSMTcs","Nathan Evans, 220 KID",2021-01-21,https://i.scdn.co/image/ab67616d0000b273b55f1a2f0299d6525c6ac99e,1,1,116750,https://p.scdn.co/mp3-preview/e10dae6cd1f50eb5faa0eacd66eb78a4ab7a7f36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBUM72100298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk dance,0.722,0.893,0.0,-3.255,0.0,0.0475,0.0441,0.000937,0.0673,0.439,119.932,4.0,,Polydor Records,"C © 2021 Universal Music Operations Limited, P ℗ 2021 Universal Music Operations Limited",4077 +4078,spotify:track:4xmDwXBgfWYoshkeEL5B0R,The Orange and the Green,spotify:artist:0tkKwWigaADLYB9HdFCjYo,The Irish Rovers,spotify:album:4myZOIXY0re1KKU0JHbhSa,The Irish Rovers 50 Years - Vol. 1,spotify:artist:0tkKwWigaADLYB9HdFCjYo,The Irish Rovers,2014-03-01,https://i.scdn.co/image/ab67616d0000b273d0eb4b953602aea868261753,1,6,159013,https://p.scdn.co/mp3-preview/56e4cbcca05eae7f2e170893935acf13c4eefc24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,CA6BE1400006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian celtic,irish folk,irish pub song,shanty",0.789,0.684,3.0,-6.655,1.0,0.0368,0.637,2.01e-06,0.0312,0.965,117.007,4.0,,Rover Records,"C 2014 Rover Records, P 2014 Rover Records",4078 +4079,spotify:track:4umQbcdBF3YVsNBvvnFLiX,A Good Heart,spotify:artist:3zk5lgbVEre0rKRBqiKt0T,Feargal Sharkey,spotify:album:1fnuPLerUrbVfzcHyY6H5N,Feargal Sharkey,spotify:artist:3zk5lgbVEre0rKRBqiKt0T,Feargal Sharkey,1985-01-01,https://i.scdn.co/image/ab67616d0000b273f39e07ad24bcdc439834ee9f,1,1,281800,https://p.scdn.co/mp3-preview/d56acc1969c6019e14bde8d30255527b5e5840c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBAAA8500024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,solo wave",0.653,0.884,10.0,-10.224,1.0,0.0444,0.417,0.0,0.318,0.762,104.647,4.0,,Virgin Catalogue,"C © 1985 Feargal Sharkey Ltd, P ℗ 1985 Virgin Records Limited",4079 +4080,spotify:track:6jizk5lOUnfpaZXYMdfeC6,Trumpets,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:1OdcBxCNY52OXH0r4odXqP,Tattoos,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2013-09-10,https://i.scdn.co/image/ab67616d0000b273ba30e4d27e93015180b4924d,1,5,217306,https://p.scdn.co/mp3-preview/6d8ac1b5922833cf70005b93e23d921d29552bc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USWB11303249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.627,0.703,0.0,-4.884,1.0,0.236,0.563,0.0,0.0962,0.64,81.897,4.0,,Beluga Heights/Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc.",4080 +4081,spotify:track:66dq1YG0auwJN54rWMFfMj,Lady Luck,spotify:artist:3iOE5ItEv5xr9fmKi7GNh2,Lloyd Price,spotify:album:31zYrDzjDvnwd8G1icD0Ki,Mr Personality,spotify:artist:3iOE5ItEv5xr9fmKi7GNh2,Lloyd Price,2014-01-27,https://i.scdn.co/image/ab67616d0000b27364b462b044c2e92179f1002e,1,7,135853,https://p.scdn.co/mp3-preview/6bad4158d2f40c9ef43dc02ae1645c3d10597b9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDJN1410399,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,louisiana blues,memphis blues,new orleans blues,rhythm and blues,rock-and-roll,rockabilly",0.566,0.742,0.0,-5.045,1.0,0.0321,0.331,0.0,0.218,0.822,122.893,4.0,,SHOUT!,"C 2014 SHOUT!, P 2014 SHOUT!",4081 +4082,spotify:track:3qqho4PnTn3zlMPBzWhFFD,Ugly Heart,spotify:artist:3Yl4nkmEa8BSuGWbwhdLDq,G.R.L.,spotify:album:3EnagjeTqe4GvpF3dgVPtF,G.R.L.,spotify:artist:3Yl4nkmEa8BSuGWbwhdLDq,G.R.L.,2014-07-29,https://i.scdn.co/image/ab67616d0000b273cc5da1d919f3ee4b8318b38d,1,1,198306,https://p.scdn.co/mp3-preview/307937f897fdfb8127026b633451dd293fdd79f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USRC11400627,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,post-teen pop,talent show",0.65,0.786,9.0,-5.488,1.0,0.0463,0.019,0.0,0.323,0.446,124.96,4.0,,Kemosabe Records/RCA Records,P (P) 2014 Kemosabe Records,4082 +4083,spotify:track:50MfV7a1pnOEcf2t9kobxW,Then The Morning Comes,spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,spotify:album:2kyTLcEZe6nc1s6ve0zW9P,Astro Lounge,spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,1999-06-08,https://i.scdn.co/image/ab67616d0000b2734f3bbf9631faeb8de9912a23,1,9,182266,https://p.scdn.co/mp3-preview/1f119cba47aae9bc7411eb5e7954a869aeafee68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USIR19902224,spotify:user:bradnumber1,2022-04-20T22:29:06Z,"pop rock,post-grunge",0.729,0.882,5.0,-5.025,0.0,0.0283,0.0227,0.0,0.0873,0.964,118.58,4.0,,Interscope,"C © 1999 Interscope Records, P ℗ 1999 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",4083 +4084,spotify:track:2UVLuddklEVak5PXgC7baA,Groove Is in the Heart,spotify:artist:4eQJIXFEujzhTVVS1gIfu5,Deee-Lite,spotify:album:5ONmarDtpkKbrlhu0p83XM,Rhino Hi-Five: Deee-Lite,spotify:artist:4eQJIXFEujzhTVVS1gIfu5,Deee-Lite,2005-04-19,https://i.scdn.co/image/ab67616d0000b2739a78755d6cdef8bdd15b39bf,1,2,231786,https://p.scdn.co/mp3-preview/268080a2c342937913cdb292c260a7678cefefc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USEE19687204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hip house,0.694,0.881,1.0,-4.053,0.0,0.0701,0.0153,0.0196,0.0851,0.924,121.554,4.0,,Rhino/London-Sire,"C © 2005 Warner Strategic Marketing, P ℗ 2005 Warner Strategic Marketing",4084 +4085,spotify:track:1IBxtCOTtdU9StLpNK6wZh,Da Funk - Radio Edit,spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,spotify:album:4iPei0ERbLxTwUd888Hv5G,Da Funk,spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,1995,https://i.scdn.co/image/ab67616d0000b27319ccb730a0b9ed87d57b8889,1,1,229826,https://p.scdn.co/mp3-preview/807ab0b6dc0013b258d0f60b242051ea86a4c5d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,FRS949600412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electro,filter house,rock",0.795,0.696,0.0,-5.829,0.0,0.0698,0.00332,0.863,0.328,0.928,111.214,4.0,,Daft Life Ltd./ADA France,"C Distributed exclusively by Warner Music France / ADA France, © 1997 Daft Life Ltd., P Distributed exclusively by Warner Music France / ADA France, ℗ 1997 Daft Life Ltd.",4085 +4086,spotify:track:68pWLkspLFIfIPPtzyTkQy,Regulate,"spotify:artist:2B4ZHz4QDWJTXPFPgO5peE, spotify:artist:1Oa0bMld0A3u5OTYfMzp5h","Warren G, Nate Dogg",spotify:album:5qkK1yRfXz2JBpVZdKQHEv,Regulate… G Funk Era (Special Edition),spotify:artist:2B4ZHz4QDWJTXPFPgO5peE,Warren G,1994-06-07,https://i.scdn.co/image/ab67616d0000b2730728b2c9070279778afeb150,1,1,248866,https://p.scdn.co/mp3-preview/c3611b7884c4ee7370f3a0a52622bf29ae5f3311?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USPR39401366,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hardcore hip hop,hip hop,west coast rap,g funk,gangster rap,hardcore hip hop,hip hop,west coast rap",0.849,0.521,11.0,-12.999,0.0,0.216,0.306,1.65e-06,0.115,0.763,95.262,4.0,,Def Jam Recordings,"C © 2007 The Island Def Jam Music Group, P ℗ 2007 The Island Def Jam Music Group",4086 +4087,spotify:track:1JBlWcwiTsQifo3FIzqLeh,Be Right There,"spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:1D9XQXqh4YQfJwX7hyLWwr","Diplo, Sleepy Tom",spotify:album:6COyfLNUUSsBziesrpr378,Be Right There,"spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:1D9XQXqh4YQfJwX7hyLWwr","Diplo, Sleepy Tom",2015-10-09,https://i.scdn.co/image/ab67616d0000b273dac3a829e9da0c7e1ff9c431,1,1,237051,https://p.scdn.co/mp3-preview/33c5290b374812b06a5cb8f2532cd247f2a160da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USZ4V1500129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,moombahton,pop dance,canadian electronic,pop edm",0.695,0.796,7.0,-5.199,1.0,0.0548,0.00251,0.117,0.664,0.297,124.986,4.0,,WM Australia,"C © 2015 Mad Decent Protocol, LLC, P ℗ 2015 Mad Decent Protocol, LLC. Marketed and distributed by Warner Music Australia Pty. Limited under exclusive licence.",4087 +4088,spotify:track:1huvTbEYtgltjQRXzrNKGi,Don't,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:1xn54DMo2qIqBuMqHtUsFd,x (Deluxe Edition),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2014-06-21,https://i.scdn.co/image/ab67616d0000b27313b3e37318a0c247b550bccd,1,4,219840,https://p.scdn.co/mp3-preview/100a33b4b33fcde83e3fa0c6e25aa497f2220fde?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAHS1400090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.806,0.608,1.0,-7.008,1.0,0.0659,0.0113,0.0,0.635,0.849,95.049,4.0,,Atlantic Records UK,"C © 2014 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 Asylum Records UK, a Warner Music UK Company, except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",4088 +4089,spotify:track:7FwBtcecmlpc1sLySPXeGE,Dancing In the Dark,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,spotify:album:0PMasrHdpaoIRuHuhHp72O,Born In The U.S.A.,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,1984-06-04,https://i.scdn.co/image/ab67616d0000b273a7865e686c36a4adda6c9978,1,11,241306,https://p.scdn.co/mp3-preview/f98a1f3b07ca22d6ccda4a2e360981d1b0bfcbbc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USSM18400416,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"heartland rock,mellow gold,permanent wave,rock,singer-songwriter",0.527,0.942,1.0,-5.64,0.0,0.0366,0.0115,0.0,0.188,0.495,148.723,4.0,,Columbia,P (P) 1984 Bruce Springsteen,4089 +4090,spotify:track:3QdYxkiZu3ilLRHU6lXYvn,Bad Blood,"spotify:artist:06HL4z0CvFAxyc27GXpf02, spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg","Taylor Swift, Kendrick Lamar",spotify:album:4KUYGny3RuZSUC3RiPAmlX,Bad Blood,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2015-05-17,https://i.scdn.co/image/ab67616d0000b273d3a26b12cbfab7eec793601f,1,1,200106,https://p.scdn.co/mp3-preview/bf4f53510a500df6d7c0da026b6e8d4ff1b12c22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1531564,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,conscious hip hop,hip hop,rap,west coast rap",0.654,0.655,11.0,-7.388,0.0,0.106,0.0294,0.0,0.139,0.221,170.16,4.0,,"Big Machine Records, LLC.","C © 2015 Big Machine Records, LLC., P ℗ 2015 Big Machine Records, LLC.",4090 +4091,spotify:track:6fG3vZYXmaocQnKT8G2ZN2,We Won't Run,spotify:artist:75jU2q0uEWzSIlqRJtedJV,Sarah Blasko,spotify:album:2irmzJu4CDZifv7NquPDGM,As Day Follows Night,spotify:artist:75jU2q0uEWzSIlqRJtedJV,Sarah Blasko,2009-07-10,https://i.scdn.co/image/ab67616d0000b2739a1c2b0f4f9b6040eaa19a3e,1,5,240000,https://p.scdn.co/mp3-preview/33528bb3aeb61ebc26f5f48929d367417c9583eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUUM70900407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian singer-songwriter",0.71,0.564,10.0,-8.414,1.0,0.0591,0.474,3.25e-05,0.13,0.374,122.11,4.0,,Dew Process,"C © 2020 Dew Process/Universal Music Australia, P ℗ 2020 Dew Process/Universal Music Australia",4091 +4092,spotify:track:5fIooQsVIVja8kP3ojyAV7,Sun City,spotify:artist:6o2VsYOl5FxnOJYvod1Q8p,Artists United Against Apartheid,spotify:album:4u04kL3ZJo5enYkP0HgLZC,Sun City: Artists United Against Apartheid (Deluxe Edition),spotify:artist:6o2VsYOl5FxnOJYvod1Q8p,Artists United Against Apartheid,1985-12-07,https://i.scdn.co/image/ab67616d0000b273fede46cfa2a371861f3ce0e6,1,1,432413,https://p.scdn.co/mp3-preview/d1dc9e9e3b58dd3b1883a2ed39e8540a86852ef6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USEM38900298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,musical advocacy,0.63,0.943,7.0,-8.13,0.0,0.0558,0.0146,0.000734,0.299,0.398,115.272,4.0,,Steven Van Zandt P&D,"C © 2019 Wicked Cool Records LLC, P ℗ 1985 Wicked Cool Records LLC",4092 +4093,spotify:track:6iaugnXQQE3Pq5t7IIS8Ed,I Love The Nightlife (Disco 'Round),spotify:artist:1UY4oIFpjCKe5qIhKDcloe,Alicia Bridges,spotify:album:6YxZJJWvWQvFhXgdSSFe6Y,100 70s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-01-01,https://i.scdn.co/image/ab67616d0000b27339989a93bf26a4b1c2aab012,5,1,333584,https://p.scdn.co/mp3-preview/cf959b85e80f81f345acc56f199792540fb0e415?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USF067825140,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.751,0.672,7.0,-10.587,1.0,0.0383,0.0561,0.658,0.22,0.972,124.509,4.0,,Universal Music,"C © 2012 Universal International Music B.V., P ℗ 2012 Universal International Music B.V.",4093 +4094,spotify:track:7FlwylpJSe3ea6m1IrkizS,West End Girls - 2001 Remaster,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,spotify:album:3rnhCB65fDQFokoeKHmM0F,Please: Further Listening 1984-1986,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,1986-03-24,https://i.scdn.co/image/ab67616d0000b273421d7e97990720a9d55f67d7,1,2,245360,https://p.scdn.co/mp3-preview/cbbe144dceea12069b3f5a3dbc35bb3801a1c218?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE0100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,permanent wave,synthpop",0.648,0.947,4.0,-6.617,0.0,0.0369,0.0114,0.0567,0.105,0.602,113.255,4.0,,Parlophone UK,"C © 2001 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",4094 +4095,spotify:track:2hRMHB4ZEYrCBM0d0vVEdq,Skinny Love,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,spotify:album:7j7ykLBxerILBLBc8AICJS,Birdy,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,2011-11-07,https://i.scdn.co/image/ab67616d0000b2732ff207605dc090d11cd21d24,1,2,201080,https://p.scdn.co/mp3-preview/008ae295e184f0919abbeef444eb65e8f267058a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAHS1100350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,uk pop,viral pop",0.379,0.29,4.0,-8.485,1.0,0.051,0.952,0.00106,0.118,0.169,166.467,4.0,,EastWest U.K.,"C © 2011 except tracks 12 and 13 (P) 2012 Jasmine Van den Bogaerde under exclusive licence to Warner Music UK Limited, P ℗ 2011 Jasmine Van den Bogaerde under exclusive licence to Warner Music UK Limited",4095 +4096,spotify:track:4yT58y8x563elQoCqCd9Lw,A World of Our Own,spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,spotify:album:0zP5pE0rbIlJx55orn5ypX,"A's, B's & EP's",spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,2004-03-01,https://i.scdn.co/image/ab67616d0000b27373b01d9631093c4546c08dd8,1,1,161760,https://p.scdn.co/mp3-preview/df98ffb1d0b923ac20fe4b911582714ec20e8d97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,GBAYE6500713,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.381,0.75,10.0,-5.589,1.0,0.0354,0.224,7.61e-06,0.104,0.883,177.48,4.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",4096 +4097,spotify:track:1BDKqhEFRW5d9Y5CVXNUL1,You Could Be Mine,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:5NL0MCTSbQtO13G62ofWAf,Use Your Illusion II,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1991-09-18,https://i.scdn.co/image/ab67616d0000b2733a188eee204abd8a9abdaf44,1,12,343640,https://p.scdn.co/mp3-preview/bbf56f59852f3c987c0a69f7b1f81b572e5ebc9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19142012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.346,0.984,10.0,-5.674,0.0,0.132,0.00842,0.377,0.338,0.302,150.847,4.0,,Universal Music Group,"C © 1991 Geffen Records, P ℗ 1991 Geffen Records",4097 +4098,spotify:track:1mj5HO7KEAopJDRZXRnESe,Nobody's Perfect,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:0BZbTNqpXFg6lxNv78X7Lp,Who You Are (Platinum Edition),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2011-01-01,https://i.scdn.co/image/ab67616d0000b2737805aebd5a39023d553ada3a,1,2,259866,https://p.scdn.co/mp3-preview/e2e9a9a56419b951b15bd0b52da01a0939dbbbfe?cid=9950ac751e34487dbbe027c4fd7f8e99,True,49,USUM71100947,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.581,0.881,7.0,-3.22,0.0,0.28,0.00228,0.0,0.663,0.663,163.064,4.0,,Lava Music/Republic Records,"C © 2011 Universal Republic Records, P ℗ 2011 Universal Republic Records",4098 +4099,spotify:track:3L36ZdKZm4T31s4oTvvXOX,La La,spotify:artist:4hqDqHtBlgxXpLXVYf7c8L,Ashlee Simpson,spotify:album:47OwiaMei2WRjwrpy7lMew,Autobiography (International Version),spotify:artist:4hqDqHtBlgxXpLXVYf7c8L,Ashlee Simpson,2004-01-01,https://i.scdn.co/image/ab67616d0000b273b6709e1e560b8b2f02f580ad,1,4,222400,https://p.scdn.co/mp3-preview/34abec6200bae03941c334b0e8adba019dbdba66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10400366,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.533,0.903,11.0,-3.747,0.0,0.0755,9.5e-05,0.443,0.0828,0.495,129.984,4.0,,Geffen,"C © 2004 Geffen Records, P ℗ 2004 Geffen Records",4099 +4100,spotify:track:08jn5cU454h8B5QcdtpU1O,Summer Rain,spotify:artist:6QLt0DLtZG2ksJhs7XS8a1,Slinkee Minx,spotify:album:17xESFoodMJHVKsq5Hi7tk,Electric Dreams,spotify:artist:6QLt0DLtZG2ksJhs7XS8a1,Slinkee Minx,2006,https://i.scdn.co/image/ab67616d0000b2733ccd510dfd964550747996c9,1,1,254386,https://p.scdn.co/mp3-preview/c457101a91faf1d10f61440543094d95b220a174?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUCE00500074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bouncy house,0.665,0.932,7.0,-5.99,0.0,0.0318,0.000811,0.164,0.122,0.801,130.04,4.0,,Xelon Entertainment,C (C) 2006 Slinkee Minx,4100 +4101,spotify:track:1ZPlNanZsJSPK5h9YZZFbZ,Like a Virgin,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:2IU9ftOgyRL2caQGWK1jjX,Like a Virgin,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1984-11-12,https://i.scdn.co/image/ab67616d0000b27399d424b0873a9a714279a9f3,1,3,218626,https://p.scdn.co/mp3-preview/432313c4732bd242c04b5eafee08bdc93f616251?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USWB10002748,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.771,0.655,3.0,-10.842,0.0,0.0372,0.152,0.00197,0.0685,0.97,119.747,4.0,,Warner Records,"C © 1984, 2001 Warner Records Inc., P ℗ 1984 Warner Records Inc.",4101 +4102,spotify:track:6kEpjptnAwt11Atr4cEMe1,All Good Things (Come To An End),spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,spotify:album:2yboV2QBcVGEhcRlYuPpDT,Loose,spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a6f439c8957170652f9410e2,1,15,311186,https://p.scdn.co/mp3-preview/e29fe2a17a1bc68f00bd1749a8c6b96bf296c612?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USUM70603372,spotify:user:bradnumber1,2023-08-10T02:07:26Z,"canadian latin,canadian pop,dance pop,pop",0.661,0.648,9.0,-7.667,0.0,0.0342,0.245,1.24e-05,0.11,0.387,100.893,4.0,,Mosley / Geffen,"C © 2006 Geffen Records, P ℗ 2006 Geffen Records",4102 +4103,spotify:track:47xLbuUdmD03ATrke934S1,Freestyler,spotify:artist:0NeC6ploeJUq8oDwYQjNPS,Bomfunk MC's,spotify:album:7nXjjWeSGHn7R80Li8sffb,Freestyler,spotify:artist:0NeC6ploeJUq8oDwYQjNPS,Bomfunk MC's,2000,https://i.scdn.co/image/ab67616d0000b2738d4c27eb9cd0fbd022b153f0,1,5,306333,https://p.scdn.co/mp3-preview/a68d1b347d625ca8ca46b9224127e5ef689acbaa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,FISME9900023,spotify:user:bradnumber1,2021-11-20T11:13:48Z,eurodance,0.822,0.922,11.0,-5.798,0.0,0.0989,0.0291,0.325,0.252,0.568,163.826,4.0,,Epidrome,P 1999 Sony Music Entertainment (Finland) Oy,4103 +4104,spotify:track:55Dg4JYgrNSiNg68vawaaI,I Fall To Pieces - Single Version,"spotify:artist:7dNsHhGeGU5MV01r06O8gK, spotify:artist:6CXezToiGS8K6jr9kr8Muv","Patsy Cline, The Jordanaires",spotify:album:1fLXByGOkUFf63hMzaAe9P,Showcase,spotify:artist:7dNsHhGeGU5MV01r06O8gK,Patsy Cline,1963-01-01,https://i.scdn.co/image/ab67616d0000b27347a3c328c62a6f01d4e9bad7,1,1,171333,https://p.scdn.co/mp3-preview/7ef1a3c529669c19649e05b83e3b87b5d4a16793?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16048707,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,nashville sound,country gospel",0.481,0.0568,10.0,-20.508,1.0,0.0357,0.917,0.0,0.12,0.505,111.799,4.0,,Universal Music Group,"C © 1963 MCA Records Inc., P ℗ 1963 UMG Recordings, Inc.",4104 +4105,spotify:track:5rVj0WJEGMO0WQeX9GG4kh,Bus Stop,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:5ourevL93kFzjWH6lIyT42,20 Golden Greats,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1978-07-01,https://i.scdn.co/image/ab67616d0000b273759620a4e1348ace16d6c682,1,3,174640,https://p.scdn.co/mp3-preview/55b441ee6e37aabe3848403924bf863d7f6fe9fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GBAYE6600055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.601,0.698,4.0,-8.708,0.0,0.0313,0.103,0.0,0.0893,0.787,136.263,4.0,,BMG Rights Management (US) LLC,"C © 1978 BMG Rights Management (US) LLC, P ℗ 1978 BMG Rights Management (US) LLC",4105 +4106,spotify:track:3oYbe2YVDCOaHhtzY7JEHs,I'm Ready,spotify:artist:6s22t5Y3prQHyaHWUN1R1C,AJR,spotify:album:54g2q8y79M7eFZaIve8jY0,Living Room,spotify:artist:6s22t5Y3prQHyaHWUN1R1C,AJR,2015-03-06,https://i.scdn.co/image/ab67616d0000b27385195d50269783cda0c59d04,1,3,227378,https://p.scdn.co/mp3-preview/7694341d6be639b532b640d6207f865626a514e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABQ1306458,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pov: indie,0.601,0.877,9.0,-3.557,1.0,0.106,0.0108,0.0,0.31,0.598,77.969,4.0,,Liberator Music,"C 2015 Liberator Music, P 2015 Liberator Music",4106 +4107,spotify:track:4ZD6SiaJi75smnel0d7jl3,Spiderwebs,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,spotify:album:3VekjWskUut57hx6W9wqL8,Tragic Kingdom,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,1995-10-10,https://i.scdn.co/image/ab67616d0000b2736ebd5e789646a833b8f7d4ba,1,1,266760,https://p.scdn.co/mp3-preview/07169c8f375aa03c09827fa2db1cbab576ee3d63?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USIR19500270,spotify:user:bradnumber1,2022-01-12T23:24:34Z,"dance pop,dance rock,permanent wave,pop rock,rock",0.49,0.852,10.0,-7.192,1.0,0.0502,0.0376,2.21e-06,0.126,0.663,143.248,4.0,,Trauma,"C © 1995 Interscope Records, P ℗ 1995 UMG Recordings, Inc.",4107 +4108,spotify:track:35kyKr5ArvTnFlldwR7JAD,Move Your Feet,spotify:artist:7xNPROyVfkH4mcIxxCxySm,Junior Senior,spotify:album:7v89oAkBvKFnM6lXUfofda,D-D-Don't Don't Stop The Beat,spotify:artist:7xNPROyVfkH4mcIxxCxySm,Junior Senior,2002-03-04,https://i.scdn.co/image/ab67616d0000b2730ac888cc7f90f140ea29bc45,1,3,181826,https://p.scdn.co/mp3-preview/d2b6f4c1711d2984ef20ac39a244f947c671b6b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,dkmfa0300203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,danish pop,0.747,0.904,9.0,-2.623,1.0,0.0803,0.046,0.106,0.203,0.846,118.877,4.0,,Crunchy Frog,"C 2002 Crunchy Frog, P 2002 Crunchy Frog",4108 +4109,spotify:track:0YrPxxtE5Z82S4POLwguBy,Sunday,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:6HSNJOfam8FbuKabactPbu,Sunday,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2019-04-12,https://i.scdn.co/image/ab67616d0000b273f0fc5a34b91041fb4a1dbb4d,1,1,183013,https://p.scdn.co/mp3-preview/0bb49a93b14ea69de6beeae66ce04ebd7cc36089?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUBM01900034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.606,0.748,8.0,-4.508,1.0,0.169,0.0323,0.0,0.0588,0.498,139.131,4.0,,Sony Music Entertainment,P (P) 2019 Sony Music Entertainment Australia Pty Ltd,4109 +4110,spotify:track:7f0jXNMu2xjQUtmKMuWhGA,What's Up?,spotify:artist:0Je74SitssvJg1w4Ra2EK7,4 Non Blondes,spotify:album:7oqXnxR9Xg9Okhs17hL9aS,"Bigger, Better, Faster, More !",spotify:artist:0Je74SitssvJg1w4Ra2EK7,4 Non Blondes,1992-01-01,https://i.scdn.co/image/ab67616d0000b273b6661e358246261816ca707e,1,3,295493,https://p.scdn.co/mp3-preview/e24bda8c6ed805bc0c0cf62059034c0010f36b1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19200553,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,pop rock",0.566,0.57,11.0,-9.875,0.0,0.0285,0.156,0.0,0.118,0.491,134.537,4.0,,Interscope,"C © 1992 Interscope Records, P ℗ 1992 Interscope Records",4110 +4111,spotify:track:1WP1r7fuvRqZRnUaTi2I1Q,Stitches,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:5wKylB0Zwnxz046O7po25D,Handwritten (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2015-04-13,https://i.scdn.co/image/ab67616d0000b27347710f5e89677e4d048e744c,1,2,206880,https://p.scdn.co/mp3-preview/876dc08f43e2aee97a8ac8fb1d4535f6445f5a79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71500658,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.746,0.754,1.0,-6.681,1.0,0.067,0.0152,0.0,0.0486,0.764,149.882,4.0,,Universal Music Group,"C © 2015 Island Records, a division of UMG Recordings, Inc., P ℗ 2015 Island Records, a division of UMG Recordings, Inc.",4111 +4112,spotify:track:3zHq9ouUJQFQRf3cm1rRLu,"Love Me Like You Do - From ""Fifty Shades Of Grey""",spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:20Ol6zZ0nLlc5EGTH1zA0j,Delirium (Deluxe),spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2015-11-06,https://i.scdn.co/image/ab67616d0000b2736bdee14242f244d9d6ddf2fd,1,9,252534,https://p.scdn.co/mp3-preview/af7a33094ec0c2743a50e007c66acb07ded6b3ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBUM71406823,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.262,0.606,8.0,-6.646,1.0,0.0484,0.247,0.0,0.125,0.275,189.857,4.0,,Polydor Records,"C © 2015 Polydor Ltd. (UK), P ℗ 2015 Polydor Ltd. (UK)",4112 +4113,spotify:track:7v0mtl6oInUtHOmTk2b0gC,Rope,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:5lnQLEUiVDkLbFJHXHQu9m,Wasting Light,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2011-04-12,https://i.scdn.co/image/ab67616d0000b273cdac19bbaee5cc123edcc26f,1,2,259026,https://p.scdn.co/mp3-preview/eb1ee28bda42220673e0b84765e15dcf82637f00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRW31100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.507,0.728,11.0,-4.874,0.0,0.0382,2.52e-05,7.41e-05,0.0725,0.535,138.19,4.0,,RCA Records Label,"P (P) 2011 Roswell Records, Inc. under license to RCA Records, a unit of Sony Music Entertainment",4113 +4114,spotify:track:2JHs0rSCXLxdaDEyUoAkcz,Universal Soldier,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,spotify:album:1CuCleCDIPiBJFU0wpL4og,Fairytale (Deluxe Expanded Edition),spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,1965-10-22,https://i.scdn.co/image/ab67616d0000b273626e1d354540763dd71c5206,1,13,131800,https://p.scdn.co/mp3-preview/febf66b77786609018337d200077710a3bdf43d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAJE6500151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british folk,british invasion,classic rock,folk,folk rock,glam rock,psychedelic folk,psychedelic rock,scottish singer-songwriter,singer-songwriter",0.596,0.276,6.0,-12.558,1.0,0.0405,0.589,0.0,0.177,0.495,99.892,4.0,,Sanctuary Records Group Ltd.,"C (C) 2001 Sanctuary Records Group Ltd., P (P) 2001 Sanctuary Records Group Ltd.",4114 +4115,spotify:track:3vL9lPWBuv0ZR3c5YmdhDl,Given to Fly,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:5zsDtoSrXK4usJ4MB1tCh2,Yield,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,1998-02-17,https://i.scdn.co/image/ab67616d0000b273a53f06a45b489abe8f577134,1,4,238866,https://p.scdn.co/mp3-preview/a24484f5898020d606178700624f889ffbf80e33?cid=9950ac751e34487dbbe027c4fd7f8e99,True,56,USSM19703249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.317,0.764,7.0,-7.076,1.0,0.0282,0.000294,0.099,0.0996,0.341,101.173,4.0,,Epic,P 1998 Sony Music Entertainment Inc. WARNING: All rights reserved. Unauthorized duplication is a violation of applicable laws.,4115 +4116,spotify:track:0zV8gHHcSVDy9czQWrztC3,On a Carousel,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:15Tn9yu64pxuvejk5FNAaG,Midas Touch - The Very Best of the Hollies,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,2010-02-19,https://i.scdn.co/image/ab67616d0000b2734db9610555e01a8b715134eb,1,19,194533,https://p.scdn.co/mp3-preview/526b57f9fd5b9a97a8224e979839e4b2b9b45768?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBGYU6700015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.588,0.562,0.0,-10.861,1.0,0.0294,0.133,2.05e-05,0.639,0.698,121.312,4.0,,BMG Rights Management (US) LLC,"C © 2010 BMG Rights Management (US) LLC, P ℗ 2010 BMG Rights Management (US) LLC",4116 +4117,spotify:track:3YXRA8xdHcz2WSAN0m9g6z,Dolphin's Cry - Live At The Paradiso,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,spotify:album:2WfDPoOw7XTqk7qEo7B4R6,Live at the Paradiso,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,2008-11-07,https://i.scdn.co/image/ab67616d0000b2731f12347ebef2357404efc216,1,4,277973,https://p.scdn.co/mp3-preview/31dc8472f7dbedb06e73064fb1a31ce0ac049108?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,USJZK0800004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,pop rock,post-grunge",0.158,0.864,8.0,-5.397,1.0,0.0703,0.0351,0.0,0.965,0.348,161.144,4.0,,Sony BMG Music Entertainment,P (P) 2008 Action Front Unlimited exclusively licensed to SONY BMG MUSIC ENTERTAINMENT (NETHERLANDS) BV,4117 +4118,spotify:track:52LIpoHz2CL21G21C1VcPz,Substitute,spotify:artist:68DZmZtcs3qo3E6K0jycyA,Peaches,spotify:album:6ReVzXpQNiJwmU7IL0XaVc,Substitute,spotify:artist:68DZmZtcs3qo3E6K0jycyA,Peaches,1978-07-01,https://i.scdn.co/image/ab67616d0000b2738890d11a464da831a1571d8a,1,1,180962,https://p.scdn.co/mp3-preview/7b3ba6d32f52fa7bf6457d459281c32136e6f60a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,QMBZ91421303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.451,0.844,4.0,-4.075,1.0,0.0432,0.0346,1.16e-06,0.0602,0.551,103.537,4.0,,Lifestyle Music Group,C (C) 2014 Lifestyle Music Pty Ltd,4118 +4119,spotify:track:67eX1ovaHyVPUinMHeUtIM,Hurts So Good,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:4gouGcdQn9OvjX42xnWrF0,American Fool,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1982,https://i.scdn.co/image/ab67616d0000b273b1945b44ce8868740f132f8e,1,1,218960,https://p.scdn.co/mp3-preview/3914b9da1b68aafd95c84338844c2e60ee19552c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USJM18200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.785,0.737,9.0,-5.306,1.0,0.0363,0.042,0.000107,0.108,0.971,125.447,4.0,,John Mellencamp 2023 (Island),"C © 2005 Riva Recordings, Inc., under exclusive license to UMG Recordings, Inc. and Primary Wave Music IV, P ℗ 2005 Riva Recordings, Inc., under exclusive license to UMG Recordings, Inc. and Primary Wave Music IV",4119 +4120,spotify:track:5Ts1DYOuouQLgzTaisxWYh,Love Grows (Where My Rosemary Goes),spotify:artist:1NRzxuPpdGushT8YmF5NAa,Edison Lighthouse,spotify:album:4XDWk7zU6KDgLaqLxEYi8y,Love Grows (Where My Rosemary Goes) & Other Gems,spotify:artist:1NRzxuPpdGushT8YmF5NAa,Edison Lighthouse,1970-01-01,https://i.scdn.co/image/ab67616d0000b2739a0011cc9d31cf969b656905,1,1,174760,https://p.scdn.co/mp3-preview/7cf77688f02e03e242216149c4cc0b0742bbb7c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBBPJ9800675,spotify:user:bradnumber1,2022-08-31T00:10:05Z,,0.568,0.824,9.0,-4.613,1.0,0.0299,0.403,0.0,0.0855,0.753,108.625,4.0,,Crimson,"C (C) 2019 Demon Music Group Ltd., P (P) 1970 Laurence Myers Ltd",4120 +4121,spotify:track:04N18CfIbOJPnVLGOKgJNB,Wherever I Lay My Hat (That's My Home),spotify:artist:6rqU9HQ57NYGBnBzbrY3a4,Paul Young,spotify:album:0IHmWU4OIPZaW86nIeYeiv,The Essential Paul Young,spotify:artist:6rqU9HQ57NYGBnBzbrY3a4,Paul Young,2003-07-01,https://i.scdn.co/image/ab67616d0000b273878b6398593832e64701c01d,1,3,250053,https://p.scdn.co/mp3-preview/611d26dcf258e80a4533d7a17d1e71cdac7ffd0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBBBN0009259,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,new romantic,new wave,new wave pop,soft rock",0.63,0.514,10.0,-8.005,1.0,0.0521,0.247,0.0,0.0989,0.477,89.128,4.0,,Sony Music UK,P (P) 2003 Sony Music Entertainment (UK) Ltd.,4121 +4122,spotify:track:11QjTiAYuiJicKiZHeT0OD,Swallowed,spotify:artist:78SHxLdtysAXgywQ4vE0Oa,Bush,spotify:album:2KZjmR6WBDcck3aBbqlfsy,Razorblade Suitcase,spotify:artist:78SHxLdtysAXgywQ4vE0Oa,Bush,1996-11-19,https://i.scdn.co/image/ab67616d0000b2737990587e9b2be98ed44b3885,1,3,290866,https://p.scdn.co/mp3-preview/dabb700a73604ac12ec631c45ac5bfabc4b7c1ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US4L89601103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,nu metal,post-grunge,rock",0.257,0.54,1.0,-9.049,1.0,0.0338,0.00147,1.09e-05,0.289,0.184,179.788,4.0,,Round Hill Records,"C (C) 1996 Kirtland Records, P (P) 1996 Kirtland Records",4122 +4123,spotify:track:4sscDOZCkbLSlDqcCgUJnX,Whip It,spotify:artist:0UKfenbZb15sqhfPC6zbt3,DEVO,spotify:album:6UsP4NQ9K4L4Nqxj0Qis41,Freedom of Choice,spotify:artist:0UKfenbZb15sqhfPC6zbt3,DEVO,1980,https://i.scdn.co/image/ab67616d0000b273f4f1f36551dd41c5442c2a2f,1,3,161133,https://p.scdn.co/mp3-preview/173e063e18defd14c084c52a166d1ff34c987b2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USWB10000035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art punk,dance rock,new romantic,new wave,new wave pop,post-punk,synth punk,synthpop,zolo",0.78,0.869,9.0,-7.255,1.0,0.0517,0.0744,0.004,0.0621,0.957,157.902,4.0,,Warner Records,"C 1978 © 1980 Warner Records Inc., P 1978 ℗ 1980 Warner Records Inc.",4123 +4124,spotify:track:1RQnYh2xw2BPpnzQFbO5r5,Too Much,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:3sr6lAuO3nmB1u8ZuQgpiX,Spiceworld,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,1997-01-01,https://i.scdn.co/image/ab67616d0000b273f660420bcef3b16b4c7e5f2b,1,3,271933,https://p.scdn.co/mp3-preview/0874efeb1a878f7146f6ddf639f1738ff91d3cc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAAA9710054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.431,0.63,2.0,-4.992,1.0,0.0428,0.484,0.0,0.332,0.344,120.089,3.0,,Virgin Records,"C © 1997 Virgin Records Limited, P ℗ 1997 Virgin Records Limited",4124 +4125,spotify:track:6SLTPbDxDYR0uSMTT7gSb7,I'm In Control,"spotify:artist:2VAnyOxzJuSAj7XIuEOT38, spotify:artist:62DmErcU7dqZbJaDqwsqzR","AlunaGeorge, Popcaan",spotify:album:6KuHbuDiJNcgEvnLTnfQcY,I Remember,spotify:artist:2VAnyOxzJuSAj7XIuEOT38,AlunaGeorge,2016-09-16,https://i.scdn.co/image/ab67616d0000b27310e8d6268527e7c76fa9f8c7,1,7,209426,https://p.scdn.co/mp3-preview/6b8f2dd5b2f654f91707fc1c67ba75e7c9ca3788?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBUM71507516,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,house,uk dance,dancehall,jamaican hip hop,reggae fusion,traphall",0.725,0.844,11.0,-3.707,0.0,0.0347,0.363,0.000716,0.125,0.711,104.001,4.0,,Universal-Island Records Ltd.,"C © 2016 Island Records, a division of Universal Music Operations Limited and Interscope Records, P ℗ 2016 Island Records, a division of Universal Music Operations Limited and Interscope Records",4125 +4126,spotify:track:2qQ7QMDYUhAYOJyp2NztjZ,Keep Us Together,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:3hQ64JbgfPMbXwYRvmZ41z,Sweet Talker (Deluxe Version),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2014-10-10,https://i.scdn.co/image/ab67616d0000b27301b57b2d37dad2a9e1fb10b9,1,11,229426,https://p.scdn.co/mp3-preview/2e67551f6cc8cf8087a34d578140884f3664140d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71412832,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.675,0.785,4.0,-4.117,0.0,0.106,0.156,0.0,0.313,0.515,90.013,4.0,,Universal Music Group,"C © 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC, P ℗ 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC",4126 +4127,spotify:track:5XemaWz3MyU88H5OwifY7s,(Hey Won't You Play) Another Somebody Done Somebody Wrong Song - Re-Recorded In Stereo,spotify:artist:0uUNzXylqsZdmFDwdxaP1V,B.J. Thomas,spotify:album:3vgJKNIzVF4NF4mvjYK9DY,Best Of,spotify:artist:0uUNzXylqsZdmFDwdxaP1V,B.J. Thomas,2008-08-05,https://i.scdn.co/image/ab67616d0000b273743b8fe95e6e9e8ee36c9ee9,1,10,232013,https://p.scdn.co/mp3-preview/7d815faef0a34f1edbccf903fa60e3e11845920e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USCRB0807930,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,classic country pop,folk rock,mellow gold,soft rock",0.659,0.397,4.0,-11.019,1.0,0.0358,0.501,0.0,0.163,0.484,118.96,4.0,,Curb Records,"C 2008 Curb Records, Inc., P 2008 Curb Records, Inc.",4127 +4128,spotify:track:4cix9zymmhisLuM56RDcB7,Mellow Yellow,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,spotify:album:0J1VCLopDIqOyU2nxK0CZ9,Mellow Yellow,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,1967-03,https://i.scdn.co/image/ab67616d0000b273133c89e032d8478515ed526c,1,1,227226,https://p.scdn.co/mp3-preview/2242f7746be91aca782bff5bcaeca0af94b2e579?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USSM10102687,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british folk,british invasion,classic rock,folk,folk rock,glam rock,psychedelic folk,psychedelic rock,scottish singer-songwriter,singer-songwriter",0.71,0.319,2.0,-12.387,1.0,0.0667,0.534,0.0201,0.211,0.757,105.489,4.0,,Epic,P 1966 Sony Music Entertainment Inc.,4128 +4129,spotify:track:4jRJWlkCn3pAwezfqFODU3,For Your Eyes Only,spotify:artist:5dcOK4stT4JDkP6Dqhbz5s,Sheena Easton,spotify:album:4Enc1z5S8zcRxrVKcgnTyn,You Could Have Been With Me [Bonus Tracks Version],spotify:artist:5dcOK4stT4JDkP6Dqhbz5s,Sheena Easton,1981,https://i.scdn.co/image/ab67616d0000b27365169e9d81f021532fb65293,1,12,184480,https://p.scdn.co/mp3-preview/9284ee63345cb13a5bb3cf47a69cb73f168a0f32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USMG28100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,minneapolis sound,new romantic,new wave pop,soft rock",0.244,0.44,7.0,-7.777,1.0,0.0475,0.871,8.65e-05,0.372,0.113,82.02,4.0,,RT Industries,"C © 1981 RT Industries, P ℗ 1981 RT Industries",4129 +4130,spotify:track:4oJlQHvcgGMcnPdEsDVqNq,Catch - Radio Edit,spotify:artist:1u7OVFmWah4wQhOPIbUb8U,Will Sparks,spotify:album:2v161wEhC6xGOo0e51H9WK,Catch (Radio Edit),spotify:artist:1u7OVFmWah4wQhOPIbUb8U,Will Sparks,2014-02-14,https://i.scdn.co/image/ab67616d0000b273ad27cd1f5d5614795f1aacb7,1,1,176240,https://p.scdn.co/mp3-preview/ded53afd59cc4b10f80462ae82985aae9946b9a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USUS11202418,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dutch house,melbourne bounce,melbourne bounce international,progressive electro house",0.532,0.659,1.0,-4.198,0.0,0.437,0.00505,0.287,0.307,0.586,127.339,4.0,,"Ultra Records, LLC",P (P) 2014 Ultra Records / Sony Music Entertainment,4130 +4131,spotify:track:1aHzUrj07etvwKomVnB6aG,A Lover's Concerto,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,spotify:album:7vNmiLEdMqJYUlPxSx2zgg,I Hear A Symphony,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,1966-02-18,https://i.scdn.co/image/ab67616d0000b27316a6e92d6f1c8a02d68b4e44,1,8,156133,https://p.scdn.co/mp3-preview/76a6ffff89629b6f82b485a33f2f7d1aa94ccc3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USMO10400302,spotify:user:bradnumber1,2022-08-31T00:04:52Z,"adult standards,classic girl group,classic soul,disco,motown,soul",0.515,0.739,10.0,-7.898,0.0,0.0446,0.363,0.0,0.07,0.696,121.9,4.0,,UNI/MOTOWN,"C © 2004 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2004 Motown Records, a Division of UMG Recordings, Inc.",4131 +4132,spotify:track:3MWxrle9cpyWpHxaoGKFFR,Our Perfect Disease,spotify:artist:0Ya43ZKWHTKkAbkoJJkwIB,The Wombats,spotify:album:1hKNgyPKnkCjWtH5GtusTq,The Wombats Proudly Present... This Modern Glitch,spotify:artist:0Ya43ZKWHTKkAbkoJJkwIB,The Wombats,2011-04-22,https://i.scdn.co/image/ab67616d0000b27367c138b47ef3788cd065c35a,1,1,224348,https://p.scdn.co/mp3-preview/730434981739b4523bfb778eb324ea7a5e237238?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBFTG1100011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"liverpool indie,modern alternative rock,modern rock",0.565,0.872,6.0,-7.178,0.0,0.0399,0.000262,0.0,0.127,0.501,143.03,4.0,,14th Floor Records,"C © 2011 14th Floor Records, P ℗ 2011 14th Floor Records",4132 +4133,spotify:track:5HiKQLlJ3LAuz8J9yHB0HX,Teardrops - Single Version,spotify:artist:7qShKycqNUP0GLEiTENDVZ,Womack & Womack,spotify:album:2kGXFgIy6EBmYZRrQjTtON,Music For Groovin',spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b2738e05a1075eada1ffe2889aa1,1,2,230573,https://p.scdn.co/mp3-preview/a5acf4c96178102ba92273ce5b1a34e5f4c2379f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USIR28800141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.878,0.692,11.0,-10.577,1.0,0.0459,0.0376,0.121,0.18,0.966,133.231,4.0,,UMC (Universal Music Catalogue),"C © 2007 Spectrum Music, P This Compilation ℗ 2007 Spectrum Music",4133 +4134,spotify:track:4GmoKQoOE3NSYQO1xMcsIw,Who Put The Bomp,spotify:artist:3OmuR7XFXBig8yLeMSm9mU,Barry Mann,spotify:album:4Ur0tcSMVhS723Q19yodPK,"Lo Mejor de los Años 60, Vol. 3 Pop",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-03-13,https://i.scdn.co/image/ab67616d0000b27347aa8fb9cb64bb1b1153f3da,1,15,163653,https://p.scdn.co/mp3-preview/2c10be38bdeb0fa7a3193981e2e98837e8f285c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM6P41447369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,doo-wop",0.512,0.667,0.0,-8.342,1.0,0.042,0.357,1.02e-05,0.0626,0.841,86.13,4.0,,Musirama,C (C) 2015 Codex,4134 +4135,spotify:track:1ADciGUxOaUbBFd0rpYx7d,You And I,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:6LY3AerY6KNGOPsNPL63Kk,Born This Way (International Special Edition Version),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2011-05-23,https://i.scdn.co/image/ab67616d0000b273a5d31644260279be8d0c46c0,1,16,307360,https://p.scdn.co/mp3-preview/0b8e157a224971bd5bfaec283a9c4f7703ffec4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USUM71106457,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.521,0.701,2.0,-5.238,1.0,0.0458,0.0892,0.0,0.0876,0.518,127.082,4.0,,Interscope,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",4135 +4136,spotify:track:773vrxAjEGToyXjOR06mfb,Love Like This,spotify:artist:49NJc5qDmCRsN3SsBAqEa4,Natalie Bassingthwaighte,spotify:album:46ekOtyTUnhxvmaW1hJkI0,1000 Stars,spotify:artist:49NJc5qDmCRsN3SsBAqEa4,Natalie Bassingthwaighte,2009-02-20,https://i.scdn.co/image/ab67616d0000b27306714572d5d60e816237dc85,1,13,234666,https://p.scdn.co/mp3-preview/e4339b73f3ab034f27e968400490e8867f5738bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,AUBM00900017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.627,0.937,1.0,-3.241,0.0,0.052,0.00432,1.24e-05,0.342,0.653,125.974,4.0,,Sony BMG Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd,4136 +4137,spotify:track:6n8TMVyFKoUmDc4apxceRD,Breaking the Habit,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:4Gfnly5CzMJQqkUFfoHaP3,Meteora,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2003-09-16,https://i.scdn.co/image/ab67616d0000b2735f1f51d14e8bea89484ecd1b,1,9,196133,https://p.scdn.co/mp3-preview/c2d4c4690b3ac7dc7f8a1fe8d65c3629160f016a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USWB10300470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.58,0.865,4.0,-4.359,0.0,0.0313,0.105,0.0,0.106,0.587,100.016,4.0,,Warner Records,"C © 2003 Warner Records Inc., P ℗ 2003 Warner Records Inc.",4137 +4138,spotify:track:3FGcQkWQlkeB82RdZwlw8V,Kiss You All Over,spotify:artist:2enKa9Yqr6PZy3xGlxQEu7,Exile,spotify:album:7orQwVEEjByRj9hT98frwo,Greatest Hits,spotify:artist:2enKa9Yqr6PZy3xGlxQEu7,Exile,1986-09-23,https://i.scdn.co/image/ab67616d0000b273c7669e4c9435b61d1da0aa64,1,10,214400,https://p.scdn.co/mp3-preview/f3a6a90160c845e7a7c0780a06a65ab036ca186a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM19915889,spotify:user:bradnumber1,2021-08-08T09:26:31Z,yacht rock,0.741,0.267,0.0,-17.204,1.0,0.0285,0.253,0.000447,0.0987,0.497,102.428,4.0,,Epic,"P (P) 1983, 1984, 1985, 1986 SONY BMG MUSIC ENTERTAINMENT",4138 +4139,spotify:track:540f3QAeiRsbW9K4IETLdW,Step Back,spotify:artist:0LmgCb9GDONh4eFlyzIhUE,Johnny Young & Kompany,spotify:album:6fZ9nqISjg8XojtcExpB3i,Young Johnny,spotify:artist:0LmgCb9GDONh4eFlyzIhUE,Johnny Young & Kompany,1966-01-01,https://i.scdn.co/image/ab67616d0000b273fa82a717fe33298629656d8d,1,10,109820,,False,0,GBRKQ2017043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic australian country,0.449,0.811,4.0,-7.813,0.0,0.0848,0.375,0.0,0.346,0.891,200.618,4.0,,Planet Blue Records,"C 1966 Clarion Records, P 1966 Clarion Records",4139 +4140,spotify:track:7zIfO64TEMTe2O1P9XlnkR,"The Heat Is On - From ""Beverly Hills Cop"" Soundtrack",spotify:artist:3vMWY1bUrmYoSoEWLiQWOZ,Glenn Frey,spotify:album:3Zd4MI3Ja55JvK4Obzl6lV,Beverly Hills Cop - Music From The Motion Picture Soundtrack,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1984-01-01,https://i.scdn.co/image/ab67616d0000b273592aac5c14972ae94013746a,1,6,225600,https://p.scdn.co/mp3-preview/3d4b82a87c585370d8a093cefab36f376bcdb92c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USMC18416576,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,new wave pop,singer-songwriter,soft rock",0.636,0.645,7.0,-13.175,1.0,0.0433,0.0469,5.4e-05,0.0838,0.962,149.465,4.0,,Geffen,"C © 1984 Geffen Records, P This Compilation ℗ 1984 Geffen Records",4140 +4141,spotify:track:32G0h9eJinZuDu89USLU2V,Broken Leg,spotify:artist:7sCcPQQft3sSxcJaB30dlb,Bluejuice,spotify:album:5yegnN64UF97qcdooZ3xKw,Head of The Hawk,spotify:artist:7sCcPQQft3sSxcJaB30dlb,Bluejuice,2009-01-01,https://i.scdn.co/image/ab67616d0000b273e24e3354bbcc703ef09aea24,1,3,192946,https://p.scdn.co/mp3-preview/3d6bf9d8c5041dcd4e77c990783731dd5305a0ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUUM70901631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.537,0.828,2.0,-3.897,1.0,0.0547,0.11,0.0,0.379,0.612,142.973,4.0,,Dew Process,"C © 2009 Dew Process/Universal Music Australia, P ℗ 2009 Dew Process/Universal Music Australia",4141 +4142,spotify:track:6gRACp2CvsIhc7hyw8CecQ,The Devil Went Down to Georgia,spotify:artist:12d4iIvTOk7JkI6ecvc3ca,The Charlie Daniels Band,spotify:album:211gVLmc36aeE66qEHqN0a,Million Mile Reflections,spotify:artist:12d4iIvTOk7JkI6ecvc3ca,The Charlie Daniels Band,1979,https://i.scdn.co/image/ab67616d0000b273f6862fa8a9ae5d2375fbb014,1,6,215066,https://p.scdn.co/mp3-preview/67ec2e15e4cd9b0197cd871dc252310ec12fce9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM19916707,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country,country rock,southern rock",0.517,0.535,0.0,-12.027,1.0,0.0494,0.131,0.0,0.085,0.933,135.087,4.0,,Epic/Nashville,P (P) 1979 Sony Music Entertainment Inc.,4142 +4143,spotify:track:659uoDxjIVHj61UmPyNG0y,Are You Old Enough,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,spotify:album:1BlK4gJhBT89u7e5GPeBug,"Greatest Hits, Vol. 1",spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,1988-08-16,https://i.scdn.co/image/ab67616d0000b27352cd3be6eac6b483ec9e05e2,1,8,246026,https://p.scdn.co/mp3-preview/e485befabeffe22e014d111462f2ae841f97ee46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUSM08800038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,kiwi rock",0.701,0.427,2.0,-15.206,1.0,0.0407,0.559,1.19e-06,0.055,0.662,122.926,4.0,,Portrait,P (P) 1988 Sony Music Entertainment Australia Pty Ltd,4143 +4144,spotify:track:37zRksHz9dKYuhDoQfXJo3,Right There,"spotify:artist:40xbWSB4JPdOkRyuTDy1oP, spotify:artist:3q7HBObVc0L8jNeTe5Gofh","Nicole Scherzinger, 50 Cent",spotify:album:5MFBaLYIF033D8PUUETebv,Killer Love,spotify:artist:40xbWSB4JPdOkRyuTDy1oP,Nicole Scherzinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b2739d445625ae6f5006385d4d5f,1,15,262266,https://p.scdn.co/mp3-preview/c8b7344b6ba95e487cec3bd0e25639777605e3e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71106610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap",0.517,0.8,7.0,-3.893,1.0,0.329,0.144,0.0,0.42,0.619,93.909,4.0,,Nicole Scherzinger Solo,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",4144 +4145,spotify:track:0Zp4ug4hxrI798Ub5gy2qx,Sway,spotify:artist:1GLtl8uqKmnyCWxHmw9tL4,The Kooks,spotify:album:31wqiWXAnqxkTRoj3THohU,Konk,spotify:artist:1GLtl8uqKmnyCWxHmw9tL4,The Kooks,2008-01-01,https://i.scdn.co/image/ab67616d0000b2733b6c9a7e07376cb65176d3bb,1,8,216880,https://p.scdn.co/mp3-preview/824278230fd4153c62ab052ff09a713fe9cb9f34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAAA0800079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brighton indie,garage rock,modern rock,rock",0.397,0.772,2.0,-5.512,0.0,0.0453,0.124,0.0,0.107,0.615,152.376,4.0,,Virgin Records,"C © 2008 Virgin Records Limited, P ℗ 2008 Virgin Records Limited",4145 +4146,spotify:track:5fJJ2CZpXteg4wR7p9zLXL,Inside Out,spotify:artist:2tZDpI9XgBm5gltJVIssl4,Aleem,spotify:album:2zLJXmaV2KCIQx0TmPmRkR,Open Letters EP,spotify:artist:2tZDpI9XgBm5gltJVIssl4,Aleem,2016-11-11,https://i.scdn.co/image/ab67616d0000b27360b8114cde8f920df7906e18,1,1,209007,https://p.scdn.co/mp3-preview/c0aba48f0c3c63ebe32229017e71a8a39efd7845?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM4TW1641562,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.691,0.789,1.0,-6.968,1.0,0.0413,0.153,0.0,0.112,0.676,118.025,4.0,,"aMM Entertainment, LLC","C 2016 aMM Entertainment, LLC, P 2016 aMM Entertainment, LLC",4146 +4147,spotify:track:4bvTJU3T4h32HsXmrQmn3r,Misery,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:542tacdtTzqDY7BsZ9k11p,Good Morning Revival,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2008-05-20,https://i.scdn.co/image/ab67616d0000b273cbb5aebf323058ff06224338,1,2,229373,https://p.scdn.co/mp3-preview/3fe983d40d41ac66534c4e2995265e2a02b66603?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USSM10607446,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.343,0.977,11.0,-1.708,1.0,0.223,0.0747,0.0,0.345,0.564,123.284,4.0,,Epic/Daylight,"P (P) 2007 Epic Records, a division of Sony Music Entertainment",4147 +4148,spotify:track:2EiGECydkS2M8OCcRHQZhT,Take Me To Church,spotify:artist:2FXC3k01G6Gw61bmprjgqS,Hozier,spotify:album:6bcl0ZcPJWJtyuRsOyhvfv,Hozier (Special Edition),spotify:artist:2FXC3k01G6Gw61bmprjgqS,Hozier,2014-11-06,https://i.scdn.co/image/ab67616d0000b2739a7dfdafc9e4f8a5db391855,1,1,241688,https://p.scdn.co/mp3-preview/d6170162e349338277c97d2fab42c386701a4089?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,IEACJ1300031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish singer-songwriter,modern rock,pop,pov: indie",0.456,0.67,7.0,-5.212,1.0,0.0574,0.588,0.0,0.116,0.405,128.632,4.0,,Universal Music Group,"C © 2015 Rubyworks Limited, under assignment to Island Records, a division of Universal Music Operations Limited, P ℗ 2015 Rubyworks Limited, under assignment to Island Records, a division of Universal Music Operations Limited",4148 +4149,spotify:track:3PAYDLeC1RxDIbzi9hZYne,Every Little Step,spotify:artist:62sPt3fswraiEPnKQpAbdE,Bobby Brown,spotify:album:4JYhOe7TlnOQkwWNAcCfPt,Don't Be Cruel,spotify:artist:62sPt3fswraiEPnKQpAbdE,Bobby Brown,1988-06-20,https://i.scdn.co/image/ab67616d0000b2733fff4fb5e71f3b652a46ae29,1,5,236240,https://p.scdn.co/mp3-preview/7babcb30d21403b4cee3f64e978305c48d284415?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10000470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing,r&b,urban contemporary",0.781,0.638,1.0,-12.305,1.0,0.0401,0.00911,0.0,0.0357,0.909,100.231,4.0,,Geffen*,"C © 1988 MCA Records Inc., P ℗ 1988 UMG Recordings, Inc.",4149 +4150,spotify:track:5tNGlxadhL1pajDYFiKPy6,My Sentimental Friend,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,spotify:album:2zz4gHHDI0UJlbLWgrH21u,This Is... 1969,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-08-04,https://i.scdn.co/image/ab67616d0000b2736926ef786fcaabb4363945d6,1,3,199693,https://p.scdn.co/mp3-preview/48b1f0ecfa9727625531f544f816488a7662d34c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE6900133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock,rock-and-roll,singer-songwriter",0.513,0.759,0.0,-4.273,1.0,0.0304,0.043,3.71e-06,0.32,0.655,89.934,4.0,,Parlophone UK,"C 2008 Parlophone Records Ltd, a Warner Music Group Company, P 2008 Parlophone Records Ltd, a Warner Music Group Company",4150 +4151,spotify:track:167NczpNbRF7oWakJaY3Hh,Slow Hands,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,spotify:album:7BJ02LuWRn3RH7yDHZAJr2,Slow Hands,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,2017-05-04,https://i.scdn.co/image/ab67616d0000b273805efe949d48d6f50e604919,1,1,188174,https://p.scdn.co/mp3-preview/f47a9e84206ed56916d5cb4e2b583fc467c8c855?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11700631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.728,0.426,0.0,-6.69,1.0,0.0509,0.0142,0.0,0.0546,0.844,85.908,4.0,,Universal Music Group,"C © 2017 Neon Haze Music Ltd, under exclusive license to Capitol Records, P ℗ 2017 Neon Haze Music Ltd, under exclusive license to Capitol Records",4151 +4152,spotify:track:50kpGaPAhYJ3sGmk6vplg0,Love Yourself,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:6Fr2rQkZ383FcMqFyT7yPr,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273f46b9d202509a8f7384b90de,1,5,233720,https://p.scdn.co/mp3-preview/b750d9609aa454adb23284b1504d962a6ff9bb07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USUM71516761,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.609,0.378,4.0,-9.828,1.0,0.438,0.835,0.0,0.28,0.515,100.43,4.0,,RBMG/Def Jam,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",4152 +4153,spotify:track:1dy87UPkQpsA4fLpD6b8u1,Heartlines,spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS,BROODS,spotify:album:16WfWS1MmEsRiuFmCs9RMn,Conscious,spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS,BROODS,2016-06-24,https://i.scdn.co/image/ab67616d0000b2733ea2372dccf65e5120dc9d17,1,4,197000,https://p.scdn.co/mp3-preview/3c76df3b3bc188c0cb89652d3a34336a4ceadd32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USUM71603716,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"auckland indie,etherpop,indietronica,metropopolis,nz pop",0.661,0.683,3.0,-4.106,0.0,0.0713,0.444,0.0,0.0638,0.249,90.042,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Dryden Street Ltd, under exclusive license to Universal Music Australia, P ℗ 2016 Dryden Street Ltd, under exclusive license to Universal Music Australia",4153 +4154,spotify:track:6NncjnSD7JLEetWb9KqMRY,I Wanna Love You,"spotify:artist:0z4gvV4rjIZ9wHck67ucSV, spotify:artist:7hJcb9fa4alzcOq3EaNPoG","Akon, Snoop Dogg",spotify:album:13C2pc5O7ofZKd4p2VYO3S,Konvicted,spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,2006,https://i.scdn.co/image/ab67616d0000b2733ad505200e799d6cf2b09b0a,1,4,247066,https://p.scdn.co/mp3-preview/fba518b7086a7e74db4012f4a84ff1eee3a05eff?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70615284,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,g funk,gangster rap,hip hop,pop rap,rap,west coast rap",0.865,0.45,0.0,-9.387,1.0,0.0417,0.0359,1.28e-06,0.308,0.352,99.989,4.0,,Konvict/Upfront/SRC/Universal Records,"C © 2007 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2007 Universal Records, a Division of UMG Recordings, Inc.",4154 +4155,spotify:track:5rLdjZwKEVEH0NPCVGk43s,Something's Missing (In My Life),spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,spotify:album:7v0W3aBh7PkVYVD74bcrS0,Ooh Child,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,1979-06-01,https://i.scdn.co/image/ab67616d0000b273e460ce37779f09842efff635,1,2,280000,https://p.scdn.co/mp3-preview/ee9ba510ce132bc67ba122f0b79fcb77e007dee3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AUBM07960311,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.377,0.524,5.0,-9.945,0.0,0.0335,0.0677,0.0,0.283,0.269,83.357,4.0,,Sony Music Entertainment,P (P) 1979 Sony Music Entertainment Australia Pty Ltd,4155 +4156,spotify:track:5vdp5UmvTsnMEMESIF2Ym7,Another One Bites The Dust - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:58alCatewkjNm9IM1Ucj67,The Game (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1980-06-27,https://i.scdn.co/image/ab67616d0000b273056e90910cbaf5c5b892aeba,1,3,214653,https://p.scdn.co/mp3-preview/3047625c0a8fbe66de7c4d18a1503608c397a37e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,GBUM71029605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.933,0.528,5.0,-6.472,0.0,0.161,0.112,0.312,0.163,0.754,109.967,4.0,,EMI,"C © 2011 Raincloud Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Raincloud Productions Ltd. under exclusive licence to Universal International Music BV",4156 +4157,spotify:track:6D0QtayzCNVKoIZ8IX2npw,Oath (feat. Becky G),"spotify:artist:4m4SfDVbF5wxrwEjDKgi4k, spotify:artist:4obzFoKoKRHIphyHzJ35G3","Cher Lloyd, Becky G",spotify:album:16liSbjaxbH0oamsQlqJ4Z,Sticks & Stones,spotify:artist:4m4SfDVbF5wxrwEjDKgi4k,Cher Lloyd,2012-10-02,https://i.scdn.co/image/ab67616d0000b273392d37cdeccdcdb378fed318,1,5,218506,https://p.scdn.co/mp3-preview/94a7f6f09f42c67a771ff7de2bad7ff3540ed6ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBHMU1200295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,talent show,latin pop,latin viral pop,rap latina,reggaeton,trap latino,urbano latino",0.412,0.864,5.0,-3.65,1.0,0.13,0.0272,0.0,0.0808,0.719,113.23,5.0,,Syco Music UK,"P Tracks 1, 2, 6-8 & 10 (P) 2011 and Tracks 3-5 & 9 (P) 2012 Simco Limited under exclusive license to Sony Music Entertainment UK Limited",4157 +4158,spotify:track:4rcHWl68ai6KvpXlc8vbnE,Keep on Loving You,spotify:artist:55vs7NT1KxcFjbMC4y202E,REO Speedwagon,spotify:album:0X4ZNTZw7SYgrp5rlBQC3N,Hi Infidelity (30th Anniversary Edition),spotify:artist:55vs7NT1KxcFjbMC4y202E,REO Speedwagon,1980,https://i.scdn.co/image/ab67616d0000b273d514470784e3d02ee0bcdb80,1,2,200293,https://p.scdn.co/mp3-preview/3cdad676ebe5f7b2ff03b781834d7e596c279fe5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM11102617,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.306,0.722,0.0,-5.963,1.0,0.034,0.0519,0.0,0.117,0.41,174.732,4.0,,Epic/Legacy,"P (P) 1980, 2011 Sony Music Entertainment/(P) 2011 Sony Music Entertainment",4158 +4159,spotify:track:0Ph6L4l8dYUuXFmb71Ajnd,Livin' la Vida Loca,spotify:artist:7slfeZO9LsJbWgpkIoXBUJ,Ricky Martin,spotify:album:1k1Cr3nlJDa8pvwZUJ5xfj,Ricky Martin,spotify:artist:7slfeZO9LsJbWgpkIoXBUJ,Ricky Martin,1999,https://i.scdn.co/image/ab67616d0000b273e7e9b85cc1f021ec12130d80,1,1,243160,https://p.scdn.co/mp3-preview/efdd213308e7efa3d4e2f883cda1b2a059ab32a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,NLB639920005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,mexican pop,puerto rican pop",0.425,0.954,1.0,-3.756,0.0,0.0476,0.00414,0.0,0.0555,0.933,178.043,4.0,,C2Records/Columbia,"P 1995 Sony Music Entertainment (México) S.A. de C.V.,1998 Sony Music Entertainment Inc.,1999 Sony Music Entertainment (Holland) B.V",4159 +4160,spotify:track:37ChXB1nAYEFkzhNhgLt39,When Tomorrow Comes - Remastered Version,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",spotify:album:5vl4lQTP3L0avOrXQizFso,Revenge,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",1986-06-30,https://i.scdn.co/image/ab67616d0000b27339efc86eb5981f6de0bf96f5,1,3,268720,https://p.scdn.co/mp3-preview/ba23c1207feae63dc74c69aaeb9c4b5d5bec386e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBARL0300633,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard",0.421,0.98,5.0,-2.201,1.0,0.0887,0.0727,0.0,0.459,0.509,139.36,4.0,,RCA Records Label,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,4160 +4161,spotify:track:7pWK1kMgHy5lNNiIfuRbkP,Used To Love (with Dean Lewis),"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:3QSQFmccmX81fWCUSPTS7y","Martin Garrix, Dean Lewis",spotify:album:3YD1qyD9KPFzzTK1UC1Gvo,Used To Love (with Dean Lewis),"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:3QSQFmccmX81fWCUSPTS7y","Martin Garrix, Dean Lewis",2019-10-31,https://i.scdn.co/image/ab67616d0000b273dcc28379ce36e6fbf9a311a0,1,1,236764,https://p.scdn.co/mp3-preview/043e24abe15d74103311bf9efd9c66394d41b516?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,NLM5S1900686,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch edm,edm,pop,pop dance,progressive house,australian pop,pop",0.651,0.693,4.0,-4.722,1.0,0.0375,0.458,0.0,0.335,0.392,118.97,4.0,,Epic Amsterdam,"P (P) 2019 STMPD RCRDS B.V. exclusively licensed to Epic Amsterdam, a division of Sony Music Entertainment Netherlands B.V.",4161 +4162,spotify:track:7a86XRg84qjasly9f6bPSD,We Are Young (feat. Janelle Monáe),"spotify:artist:5nCi3BB41mBaMH9gfr6Su0, spotify:artist:6ueGR6SWhUJfvEhqkvMsVs","fun., Janelle Monáe",spotify:album:7iycyHwOW2plljYIK6I1Zo,Some Nights,spotify:artist:5nCi3BB41mBaMH9gfr6Su0,fun.,2012-02-21,https://i.scdn.co/image/ab67616d0000b27305fb4e9947c6edaf3836766e,1,3,250626,https://p.scdn.co/mp3-preview/71127da3ad33d0423fb257f079a2333caec0b0bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAT21101399,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,metropopolis,neo mellow,afrofuturism,alternative r&b,atl hip hop,neo soul,r&b",0.378,0.638,10.0,-5.576,1.0,0.075,0.02,7.66e-05,0.0849,0.735,184.086,4.0,,Fueled By Ramen,"C © 2012 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2012 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States.",4162 +4163,spotify:track:1Yw6ViCo3tuufI0Hg4mzSU,You Make It Real,spotify:artist:3LpLGlgRS1IKPPwElnpW35,James Morrison,spotify:album:4gbQkXljzPRUvYtqQscMO7,"Songs For You, Truths For Me (International Exclusive Bundle)",spotify:artist:3LpLGlgRS1IKPPwElnpW35,James Morrison,2008-01-01,https://i.scdn.co/image/ab67616d0000b273f55d805b0d28c9d908bd6df7,1,3,211400,https://p.scdn.co/mp3-preview/084ca52ad9c7d1d76d2e633e515cb89cce5a0dff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBUM70810071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.317,0.57,0.0,-5.331,1.0,0.0324,0.242,0.0,0.145,0.322,84.253,4.0,,Polydor Records,"C © 2008 Polydor Ltd. (UK), P ℗ 2008 Polydor Ltd. (UK)",4163 +4164,spotify:track:1XFYs8doNArJcIdbUEMEDB,Let It Go,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,spotify:album:31Xivhe6XTZ6Kb0ThEUlhw,Let It Go,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,2014-06-03,https://i.scdn.co/image/ab67616d0000b273c591b7bdf494000a6c56a336,1,1,261160,https://p.scdn.co/mp3-preview/a60716daa900634a540a8cdd10a229f3bb5b42ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71405265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop,uk pop",0.57,0.278,1.0,-11.411,1.0,0.0295,0.827,1.68e-05,0.11,0.271,146.944,4.0,,Universal Music Group,"C (C) 2014 Republic Records, a division of UMG Recordings, Inc., P (P) 2014 Republic Records, a division of UMG Recordings, Inc.",4164 +4165,spotify:track:55gmQUKsapiYVmiz4NyC0J,Winchester Cathedral,spotify:artist:4UD9XOagGdElo7BpVzLltZ,New Vaudeville Band,spotify:album:4AhYRwvfwBVeRwE9YDW4Zs,The Hits Of New Vaudeville Band,spotify:artist:4UD9XOagGdElo7BpVzLltZ,New Vaudeville Band,2009-07-20,https://i.scdn.co/image/ab67616d0000b2732f8be5c48a1414f69637df17,1,1,133040,https://p.scdn.co/mp3-preview/65952fb61656230369fb4d5adcb3ac4f740b0256?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,GBQRF0707128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,vaudeville",0.846,0.414,7.0,-11.866,1.0,0.0534,0.519,3.75e-06,0.245,0.927,122.54,4.0,,Vanilla OMP,C 2009 One Media Publishing,4165 +4166,spotify:track:2eiM9kila9dNq3Qxqe8VK4,Zebra,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,spotify:album:54mO0kYyC8uoVgd0BpPoxL,Zebra,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,2003-12-01,https://i.scdn.co/image/ab67616d0000b2735bda57ccd67987936e359ed1,1,1,237226,https://p.scdn.co/mp3-preview/304357e330dd17be7f170e221632392e2948f721?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUFC00300015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,banjo,0.632,0.668,6.0,-4.975,0.0,0.0609,0.231,0.0978,0.132,0.735,77.944,4.0,,Jarrah Records,"C 2003 Jarrah Records, P 2003 Jarrah Records",4166 +4167,spotify:track:5uuJruktM9fMdN9Va0DUMl,Play That Funky Music,spotify:artist:4apX9tIeHb85yPyy4F6FJG,Wild Cherry,spotify:album:27ompw8zlrCkWMacS21ysX,Wild Cherry,spotify:artist:4apX9tIeHb85yPyy4F6FJG,Wild Cherry,1976,https://i.scdn.co/image/ab67616d0000b273d419ed4f1e89669ce14bd369,1,1,300000,https://p.scdn.co/mp3-preview/4b3c574d2e102bf5140c29d2934f2f0d5dc7bfcf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM19912699,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk rock",0.814,0.672,9.0,-12.068,1.0,0.0619,0.0435,0.0,0.061,0.933,109.394,4.0,,Epic,P (P) 1976 Sony Music Entertainment Inc.,4167 +4168,spotify:track:4MAxq4eEuuyE97wodPnisY,Sad,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:6ijGiBcBfUwkoyHn5VUHU2,Overexposed Track By Track,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2012-01-01,https://i.scdn.co/image/ab67616d0000b273fc8633e22a7dba6aab817bff,1,18,193826,https://p.scdn.co/mp3-preview/a8554ff77812bce922444820628aaa6c89155bcb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USUM71204777,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.781,0.262,7.0,-9.189,1.0,0.0321,0.797,0.0,0.1,0.338,111.92,4.0,,Interscope Records*,"C © 2012 A&M/Octone Records, P ℗ 2012 Interscope Records",4168 +4169,spotify:track:6ZPRExukAxweKNOHkBUZ4O,Mysterious Ways,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7k7aHoW1MGWWQR0KXvswkx,U218 Singles (Deluxe Version),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a589a051c46a5ff41125e9d6,1,7,242773,https://p.scdn.co/mp3-preview/2d4e0bae238e9130178189499623d1c4b0dd2f01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN9190008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.673,0.713,8.0,-6.514,1.0,0.027,0.00176,0.0125,0.107,0.721,99.76,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",4169 +4170,spotify:track:4kOfxxnW1ukZdsNbCKY9br,What's Love Got to Do with It,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,spotify:album:5HmYiJnUkFuciiqRrAAv4o,What's Love Got to Do with It?,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,1993,https://i.scdn.co/image/ab67616d0000b273e9c361da971c6e81b51ef06b,1,12,226880,https://p.scdn.co/mp3-preview/765249201f9cb6cd6d5251c83929d56805821194?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USCA28400002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.851,0.406,1.0,-11.631,1.0,0.0661,0.219,6.41e-06,0.0853,0.792,97.84,4.0,,Parlophone UK,"C © 1993 Parlophone Records, P ℗ 1993 Touchstone Pictures Inc under exclusive license to Parlophone Records Ltd. All rights reserved. Unauthorized reproduction is a violation of applicable laws.",4170 +4171,spotify:track:4tTf4ZJSJeKYTFwkZ1RLH2,Why Won't You Explain,spotify:artist:5q6VciRalEjD86zNamQBj6,Karen Knowles,spotify:album:3JvMw9lK3M7M7tF974rHub,You Are the Reason,spotify:artist:5q6VciRalEjD86zNamQBj6,Karen Knowles,1981,https://i.scdn.co/image/ab67616d0000b273f317a1afc3ad580766c1193b,1,1,228213,https://p.scdn.co/mp3-preview/94931055b06f10e718fa169605e60363c5478f3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.196,0.288,8.0,-13.946,1.0,0.0319,0.79,0.00235,0.0994,0.258,34.999,4.0,,Fable Records,"C 1981 Fable records, P 2017 Southern Cross Music Pty Limited",4171 +4172,spotify:track:70fe354BpVKEvMY0de78YO,Real World,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:4vUXTcKz7tXxrNl84meN6i,Yourself or Someone Like You,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,1996-10-01,https://i.scdn.co/image/ab67616d0000b27323dbfb8b3b1be429587f5380,1,1,231693,https://p.scdn.co/mp3-preview/d9a3368df06704296f59203a7d15e50361a260df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAT29600001,spotify:user:bradnumber1,2023-05-22T00:22:35Z,"neo mellow,pop rock,post-grunge",0.504,0.761,10.0,-5.446,1.0,0.0437,0.00628,0.0,0.0892,0.884,117.999,4.0,,Lava/Atlantic,"C © 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4172 +4173,spotify:track:4x6gUDeNzAB273nhsNIeuG,As I Lay Me Down,spotify:artist:3gdIwZY6Q3RXhDteYr4ZvC,Sophie B. Hawkins,spotify:album:191wfG4xD0VAgJH7rJ97iD,The Best Of Sophie B. Hawkins,spotify:artist:3gdIwZY6Q3RXhDteYr4ZvC,Sophie B. Hawkins,2003,https://i.scdn.co/image/ab67616d0000b273fa4447affb87fed97b2f7890,1,8,248893,https://p.scdn.co/mp3-preview/7c075ba5f96c974739327ed52e2896cc27cfded9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USSM10205018,spotify:user:bradnumber1,2021-11-20T11:12:37Z,"lilith,new wave pop",0.646,0.721,10.0,-9.158,1.0,0.0413,0.589,2.04e-06,0.277,0.7,83.72,4.0,,Columbia/Legacy,"P (P) 1992, 1994, 2003 Sony Music Entertainment Inc.",4173 +4174,spotify:track:4aX4pkZnzrqGDQ2S2XJsmQ,Jerusalema (feat. Burna Boy & Nomcebo Zikode) - Remix,"spotify:artist:523y9KSneKh6APd1hKxLuF, spotify:artist:4cfKtwkefMW3aiXtxfw8w6, spotify:artist:3wcj11K77LjEY1PkEazffa","Master KG, Nomcebo Zikode, Burna Boy",spotify:album:1HBjNCWaJ2SzolwRxedA9z,Jerusalema (feat. Burna Boy & Nomcebo Zikode) [Remix],"spotify:artist:523y9KSneKh6APd1hKxLuF, spotify:artist:4cfKtwkefMW3aiXtxfw8w6","Master KG, Nomcebo Zikode",2020-07-09,https://i.scdn.co/image/ab67616d0000b2736f8fc0d643e18b0ecc233b2b,1,1,328000,https://p.scdn.co/mp3-preview/19e38ab3aac086b3b92758e6633b3820a7e358ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,ZA56E2002088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bolobedu house,south african house,afro soul,south african pop,afrobeats,dancehall,nigerian hip hop,nigerian pop",0.837,0.449,1.0,-7.019,1.0,0.0554,0.0301,5.37e-05,0.0604,0.825,124.021,4.0,,Elektra France,"C Exclusive licence Warner Music France, Label Elektra France, © 2020 Open Mic Productions, P Exclusive licence Warner Music France, Label Elektra France, ℗ 2020 Open Mic Productions",4174 +4175,spotify:track:4LFwNJWoj74Yd71fIr1W8x,Right Here Waiting,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,spotify:album:0Zf6FJVyK6qUxmg1WMNruG,Repeat Offender,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,1989-01-01,https://i.scdn.co/image/ab67616d0000b273edc27582d8f5c3a7c56893bf,1,5,264333,https://p.scdn.co/mp3-preview/83c1cefb497290ece6857f2787c76b04a42c7d5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USEM38900208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.395,0.252,0.0,-13.589,1.0,0.0301,0.8,0.0,0.101,0.126,177.679,4.0,,Capitol Records,"C © 1989 Capitol Records Inc., P ℗ 1989 Capitol Records Inc.",4175 +4176,spotify:track:4KPq1367Nd9DtkmSmPsycY,Matthew & Son - Stereo Version,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,spotify:album:1EOnmB8FWY9Fn8p7RrRxkx,Matthew & Son,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,1967-03-10,https://i.scdn.co/image/ab67616d0000b27335547b2b824396ad0bcb93bf,1,1,161840,https://p.scdn.co/mp3-preview/10d9143289cf5f33bc2d86e037ab13adc229041a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF076620660,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british folk,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.534,0.327,4.0,-16.789,1.0,0.0335,0.0503,0.00213,0.281,0.767,139.867,4.0,,Decca Music Group Ltd.,"C © 1988 Decca Music Group Limited, P This Compilation ℗ 1988 Decca Music Group Limited",4176 +4177,spotify:track:18GC3F8YPGB8CePXcTUizQ,Thnks fr th Mmrs,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,spotify:album:03Og8YvbFYbe3hmr9MfZHT,Infinity On High (Deluxe Edition),spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2007-01-01,https://i.scdn.co/image/ab67616d0000b273a2acd73823d95cb66d0d98fd,1,7,203506,https://p.scdn.co/mp3-preview/efc79db86b5ce942f8cb8f693a42bf1da6a5bf30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70700326,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop,rock",0.459,0.891,10.0,-5.057,0.0,0.0623,0.00511,0.0,0.106,0.588,154.837,4.0,,Universal Music Group,"C © 2007 The Island Def Jam Music Group, P ℗ 2007 The Island Def Jam Music Group",4177 +4178,spotify:track:17VdFYdW18VZgyZdXTuvHg,Still Fighting It,spotify:artist:55tif8708yyDQlSjh3Trdu,Ben Folds,spotify:album:2dBujXNmYf1xnNqVvmtezB,Rockin' The Suburbs,spotify:artist:55tif8708yyDQlSjh3Trdu,Ben Folds,2001-08-29,https://i.scdn.co/image/ab67616d0000b273cfe0ea65058f2584a17bca19,1,3,265893,https://p.scdn.co/mp3-preview/d155f0e2033cc562451eed68b7340b78e6a4498c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USSM10105172,spotify:user:bradnumber1,2023-01-31T06:05:59Z,"permanent wave,piano rock",0.438,0.627,0.0,-5.787,1.0,0.0288,0.232,0.0,0.113,0.233,138.353,4.0,,Epic,P (P) 2001 Sony Music Entertainment Inc.,4178 +4179,spotify:track:0gLQ6jhJsyYfl7PrD1RZ7X,Vision of Love,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:5SwNGsGw1I8H361DKiYnnn,Mariah Carey,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,1990-06-12,https://i.scdn.co/image/ab67616d0000b2735084c69ed3f70e8fb139e1ea,1,1,209293,https://p.scdn.co/mp3-preview/93028ee4a4a10edc9fc6b99c6f17445d885db1fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM19000412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.256,0.464,5.0,-10.959,1.0,0.0382,0.433,0.0,0.121,0.355,205.362,3.0,,Columbia,"P (P) 1990 Columbia Records, a division of Sony Music Entertainment",4179 +4180,spotify:track:4rZtjSXxcGkRutV0GiBEgp,White Noise,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:1ErcZ8dabd9xHa2hcqyTDT,White Noise Rarities Collector's Edition,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,2008-01-01,https://i.scdn.co/image/ab67616d0000b273dc14169563e3f057d2e2d7ac,1,3,224266,https://p.scdn.co/mp3-preview/a1794934770eb66faa6c3f0bfa7a5479f751d198?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUUM70800420,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,australian ska",0.261,0.965,0.0,-4.53,1.0,0.0967,0.000371,0.000427,0.156,0.397,140.918,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Dew Process/Universal Music Australia, P ℗ 2008 Dew Process/Universal Music Australia",4180 +4181,spotify:track:3HCQPIYsCT6JBf79KdYtA4,Coming Up - 2011 Remaster,spotify:artist:4STHEaNw4mPZ2tzheohgXB,Paul McCartney,spotify:album:7eEYDv4xof4uQei8Y6SCzs,McCartney II,spotify:artist:4STHEaNw4mPZ2tzheohgXB,Paul McCartney,1980-05-16,https://i.scdn.co/image/ab67616d0000b2732be917cc67c4a6906c88739b,1,1,231880,https://p.scdn.co/mp3-preview/1e282c029be2ea8e3a638d77bb452711fbe3396f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBCCS1000164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,mellow gold,rock,soft rock",0.817,0.767,8.0,-7.194,1.0,0.0468,0.457,0.0723,0.0606,0.878,128.93,4.0,,Paul McCartney Catalog,"C © 1993 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 1993 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",4181 +4182,spotify:track:3tfVgoh2zXTq0rpPcm3Vvy,Feel It - Radio Version,"spotify:artist:1hK5unnJvXQcBMO25YxOFZ, spotify:artist:0woPP4aoXH17kAKggWIYzA, spotify:artist:4FVWo02JNAzbxhp5FIXQLe, spotify:artist:5wexzX1W2zWN2fZ1iXhxSl","The Tamperer, Get Far, Alex Farolfi, Maya",spotify:album:4aLuGBoXT0PEo7KIYq1Ew3,Feel It,"spotify:artist:1hK5unnJvXQcBMO25YxOFZ, spotify:artist:0woPP4aoXH17kAKggWIYzA, spotify:artist:4FVWo02JNAzbxhp5FIXQLe","The Tamperer, Get Far, Alex Farolfi",1998-01-12,https://i.scdn.co/image/ab67616d0000b27352b6ba601afa9afe20af6c95,1,1,178880,https://p.scdn.co/mp3-preview/2547ce3f9c36434c16af1a312b0187d231aca1c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,ITL019800032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,italo dance,italo dance",0.871,0.974,11.0,-6.722,1.0,0.0486,0.097,0.0384,0.0542,0.653,125.05,4.0,,Time Records,"C 1998 Time S.p.A., P 1998 Time S.p.A.",4182 +4183,spotify:track:3lyLqIn8mybyEFTs8JJaLf,Home,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:1f9vWKabhNPNQnHLleExSh,It's Time,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2005-02-08,https://i.scdn.co/image/ab67616d0000b273c6ad2b2b62b581a23a7c1759,1,5,225906,https://p.scdn.co/mp3-preview/07d87ee0985a6ff28152775f2f364c3d32d42059?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USRE10401888,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.608,0.37,7.0,-9.207,1.0,0.0306,0.844,1.87e-05,0.112,0.349,127.631,4.0,,143/Reprise,"C © 2005 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2005 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",4183 +4184,spotify:track:5l0nX3AhmmF717aKSs8qSH,Edge of Midnight (Midnight Sky Remix) (feat. Stevie Nicks),"spotify:artist:5YGY8feqx7naU7z4HrwZM6, spotify:artist:7crPfGd2k81ekOoSqQKWWz","Miley Cyrus, Stevie Nicks",spotify:album:7Lx1rMMZesU7oswEwP2MQX,Edge of Midnight (Midnight Sky Remix) (feat. Stevie Nicks),"spotify:artist:5YGY8feqx7naU7z4HrwZM6, spotify:artist:7crPfGd2k81ekOoSqQKWWz","Miley Cyrus, Stevie Nicks",2020-11-06,https://i.scdn.co/image/ab67616d0000b273a11119d93d213de96081c6e7,1,1,220636,https://p.scdn.co/mp3-preview/a8b7edda6405dceb16e9e0505f486e1690bea8be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USRC12003767,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,heartland rock",0.681,0.737,4.0,-5.246,0.0,0.0384,0.0291,7.16e-06,0.0856,0.278,109.95,4.0,,RCA Records Label,"P (P) 2020 RCA Records, a division of Sony Music Entertainment",4184 +4185,spotify:track:4vwLjB2NRtl9b34jRe6cWd,Love Plus One,spotify:artist:6imyM8T1Xbe8v2iZe41dR7,Haircut 100,spotify:album:6VIiHu2RCwWo4151YCG7ND,Pelican West Plus,spotify:artist:6imyM8T1Xbe8v2iZe41dR7,Haircut 100,1982,https://i.scdn.co/image/ab67616d0000b273ca2a6b12f41678ee5fec068c,1,2,212573,https://p.scdn.co/mp3-preview/2a3c40caa7a01da1f571f8dbc585e841aa7f6f28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBARK8200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brit funk,new romantic,new wave,new wave pop,sophisti-pop",0.786,0.517,0.0,-14.507,1.0,0.0445,0.034,0.546,0.0998,0.958,136.923,4.0,,RCA Camden,P (P) This compilation 1992 BMG Entertainment International UK & Ireland Ltd.,4185 +4186,spotify:track:1MaqkdFNIKPdpQGDzme5ss,Two Is Better Than One (feat. Taylor Swift),"spotify:artist:0vWCyXMrrvMlCcepuOJaGI, spotify:artist:06HL4z0CvFAxyc27GXpf02","BOYS LIKE GIRLS, Taylor Swift",spotify:album:7DphDayDRJ1NtRmveflFWD,Love Drunk,spotify:artist:0vWCyXMrrvMlCcepuOJaGI,BOYS LIKE GIRLS,2009-09-07,https://i.scdn.co/image/ab67616d0000b27308a2b8e9210f518f6f4fbb8a,1,4,242840,https://p.scdn.co/mp3-preview/491d36e2f1ec90e7b948c726a35a80fca6153c38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM10904174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neon pop punk,pop punk,pop",0.521,0.702,0.0,-5.189,1.0,0.0331,0.189,0.0,0.0962,0.25,127.976,4.0,,Columbia,"P (P) 2009 Sony Music Entertainment and Big Machine Records, LLC, Sony Music Entertainment",4186 +4187,spotify:track:3EJDX96b1RHCREPEZyBdhd,Last Train To Trancentral - Live From The Lost Continent,spotify:artist:6dYrdRlNZSKaVxYg5IrvCH,The KLF,spotify:album:1kJY7mRPwF5eJOf8DMZdwa,Solid State Logik 1,spotify:artist:6dYrdRlNZSKaVxYg5IrvCH,The KLF,2021-01-01,https://i.scdn.co/image/ab67616d0000b2738a8ed71d7332a6a4d1497f3e,1,4,231807,https://p.scdn.co/mp3-preview/51914fd572d1b902f525b338ceba03078c98d851?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBCEL2000616,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid house,ambient house,big beat,hip house",0.484,0.991,6.0,-4.648,0.0,0.118,0.000546,0.00624,0.277,0.3,121.545,4.0,,KLF Communications,"C 2021 KLF Communications, P 2021 KLF Communications",4187 +4188,spotify:track:1Q5kgpp4pmyGqPwNBzkSrw,Roadhouse Blues,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,spotify:album:6AFLOkpJjFF652jevcSOZX,Morrison Hotel,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,1970-02-09,https://i.scdn.co/image/ab67616d0000b273f12a8a7e0b2cbe16d2bef4dc,1,1,243826,https://p.scdn.co/mp3-preview/32d2b47751f9641e7d0a0bf1cfefada6be904c3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USEE19900375,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,classic rock,hard rock,psychedelic rock,rock",0.623,0.633,9.0,-8.212,1.0,0.0304,0.336,4.6e-05,0.147,0.895,121.119,4.0,,Rhino/Elektra,"C © 1970 Elektra Entertainment for United States and WEA International Inc. for the world outside of the United States., P ℗ 1970 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States",4188 +4189,spotify:track:7ERSQrRptZVM7q3VOdM7OL,Tubular Bells - Pt. I,spotify:artist:562Od3CffWedyz2BbeYWVn,Mike Oldfield,spotify:album:0a3YQpBnRzJzNktOjb6Dum,Tubular Bells,spotify:artist:562Od3CffWedyz2BbeYWVn,Mike Oldfield,1973-02-01,https://i.scdn.co/image/ab67616d0000b273631093c9071b1211de4be4c1,1,1,1561133,https://p.scdn.co/mp3-preview/2da01a5ad77fddb1bc2b0ed9e138a74eabe43333?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBUM70904642,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"progressive rock,symphonic rock",0.374,0.219,4.0,-19.104,0.0,0.0343,0.564,0.56,0.114,0.0579,103.535,4.0,,UMC (Universal Music Catalogue),"C © 2015 Oldfield Music Limited, under exclusive licence to Mercury Records Limited, P ℗ 2015 Oldfield Music Limited, under exclusive licence to Mercury Records Limited",4189 +4190,spotify:track:4x68ANg3fJgpzEqvNSCvWh,Up,spotify:artist:4kYSro6naA4h99UJvo89HB,Cardi B,spotify:album:0XXBP9KTzW79JekhzXAVR0,Up,spotify:artist:4kYSro6naA4h99UJvo89HB,Cardi B,2021-02-04,https://i.scdn.co/image/ab67616d0000b2736023c05997e7d7ab8b5faae3,1,1,156944,https://p.scdn.co/mp3-preview/6c3d1322bb66a3dcf9d16b90aa159742d99bec2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USAT22100272,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,rap",0.864,0.803,11.0,-5.923,0.0,0.245,0.0017,0.021,0.0488,0.805,166.053,4.0,,Atlantic Records,"C © 2021 Atlantic Recording Corporation, P ℗ 2021 Atlantic Recording Corporation",4190 +4191,spotify:track:7KWoeBqSdZHEloYKVxssfG,In the Ghetto,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:3ekkFrfotMsEAKc5g71GHk,From Elvis in Memphis,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1969-06-17,https://i.scdn.co/image/ab67616d0000b273fdc0aa7765f3197ac9179ec7,1,12,167413,https://p.scdn.co/mp3-preview/5d4caf17fe9f5e0b2cbeea7e915669c1bf777ea4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USRC16906016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.404,0.266,10.0,-16.688,1.0,0.0334,0.716,0.133,0.107,0.491,88.916,4.0,,RCA/Legacy,P (P) 1969 Sony Music Entertainment,4191 +4192,spotify:track:1ahAVyeP1B027c03NlVSRd,Uh La La La,spotify:artist:09ao6AC5gW8AxRBUVkqWIB,Alexia,spotify:album:385wsbH2dVjZDB9rdVOHUH,Disco 90's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-03-16,https://i.scdn.co/image/ab67616d0000b273e4394524a1086c597def051c,1,9,225640,https://p.scdn.co/mp3-preview/3b6bc115c2e68f771ca975c865ac94499d7b983e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,IT00C9700201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic greek pop,eurodance,italo dance",0.779,0.589,5.0,-11.562,1.0,0.0886,0.288,0.000404,0.331,0.818,92.309,4.0,,DWA Records,"C 2008 Extravaganza Publishing Srl, P 2008 Robyx Srl",4192 +4193,spotify:track:7hQJA50XrCWABAu5v6QZ4i,Don't Stop Me Now - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:21HMAUrbbYSj9NiPPlGumy,Jazz (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1978-11-10,https://i.scdn.co/image/ab67616d0000b273008b06ec71019afd70153889,1,12,209413,https://p.scdn.co/mp3-preview/857030fc088d0d4f72f7795b260bb052d20f7146?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBUM71029610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.563,0.865,5.0,-5.277,1.0,0.16,0.0472,0.000191,0.77,0.601,156.271,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",4193 +4194,spotify:track:6zmRoCPjIZA9ysAVBYiU9Z,Don't Let Go (Love),spotify:artist:5fikk4h5qbEebqK2Fc6e48,En Vogue,spotify:album:6ABqEktNUuYULXWUubkHKg,The Very Best of En Vogue,spotify:artist:5fikk4h5qbEebqK2Fc6e48,En Vogue,2001-08-21,https://i.scdn.co/image/ab67616d0000b2735a335126b1854bd315d1fd4f,1,4,291880,https://p.scdn.co/mp3-preview/a9048f027bab4ec9aa219433235cd7ae774354d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USEW19605702,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,girl group,hip pop,new jack swing,r&b,urban contemporary",0.618,0.688,5.0,-5.867,0.0,0.0477,0.409,6.32e-06,0.3,0.561,78.311,4.0,,Rhino/Elektra,"C © 2006 Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2006 Elektra Entertainment Group Manufactured & Marketed by Rhino Entertainment Company, a Warner Music Group Company",4194 +4195,spotify:track:0xdRi3MDWHvqOED2nvhe3L,"Never Knew I Needed (From ""the Princess and the Frog"")",spotify:artist:6EH6O1QSalscuR0WfdczUt,Kathryn,spotify:album:4yUnu4HsEkr6ntCORXhRDw,"Never Knew I Needed (From ""the Princess and the Frog"")",spotify:artist:6EH6O1QSalscuR0WfdczUt,Kathryn,2009-11-16,https://i.scdn.co/image/ab67616d0000b27376882f7b119a9651e77ec654,1,1,216760,https://p.scdn.co/mp3-preview/a1af667c74bd13a061cc7235c76f4123ddf765d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USTCB0951152,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.646,0.59,6.0,-7.7,1.0,0.0329,0.0122,1.67e-06,0.124,0.489,141.916,4.0,,Bigshig Music,"C 2013 Bigshig Music, P 2013 Bigshig Music",4195 +4196,spotify:track:0iOZM63lendWRTTeKhZBSC,"Mrs. Robinson - From ""The Graduate"" Soundtrack",spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,spotify:album:3bzgbgiytguTDnwzflAZr2,Bookends,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,1968-04-03,https://i.scdn.co/image/ab67616d0000b273d8fb5b4308dc27f210064ef4,1,10,244026,https://p.scdn.co/mp3-preview/b48d5e6bd6312c23e674b6d3c5293438190cd99b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USSM16800379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,melancholia,mellow gold,rock,soft rock",0.606,0.457,6.0,-14.035,0.0,0.0497,0.713,2.53e-05,0.0747,0.813,92.033,4.0,,Columbia,"P (P) Originally released 1968. All rights reserved by Columbia Records, a division of Sony Music Entertainment",4196 +4197,spotify:track:39IsH7B5byx8NRlEKlZVg9,Pretty Girl - Cheat Codes X CADE Remix,"spotify:artist:0uGk2czvcpWQA383Im6ajf, spotify:artist:0CEK8AzyeD5ZUdUloB6yQV, spotify:artist:7DMveApC7UnC2NPfPvlHSU","Maggie Lindemann, CADE, Cheat Codes",spotify:album:6jO7hs4GsF6924w10xQTyA,Pretty Girl (Cheat Codes X CADE Remix),spotify:artist:0uGk2czvcpWQA383Im6ajf,Maggie Lindemann,2017-03-03,https://i.scdn.co/image/ab67616d0000b2735640c17778d716bd35f45b3e,1,1,193613,https://p.scdn.co/mp3-preview/4d3b53aa5ac76080ebeae0177eb57117ddd1a898?cid=9950ac751e34487dbbe027c4fd7f8e99,True,51,QMCE31700923,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,dark pop,pop,pop edm,edm,pop,pop dance",0.703,0.868,7.0,-4.661,0.0,0.0291,0.15,0.132,0.104,0.733,121.03,4.0,,300 Entertainment,"C © 2017 300 Entertainment, P ℗ 2017 300 Entertainment",4197 +4198,spotify:track:7bkUOZXh8FDTcQmeAP9r6n,Home,spotify:artist:1UTPBmNbXNTittyMJrNkvw,Blake Shelton,spotify:album:7hMWp3HxPi3PGnjTe7eRt8,Country Love,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-02-03,https://i.scdn.co/image/ab67616d0000b27389ecea735f5765f16d3fd07d,1,3,230146,https://p.scdn.co/mp3-preview/db97ac0633bdce12e5acc25d22aaecd935958359?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USWB10800054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic oklahoma country,contemporary country,country,country road",0.558,0.436,7.0,-7.433,1.0,0.0259,0.548,4.62e-06,0.114,0.314,127.836,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 Warner Records Inc.",4198 +4199,spotify:track:1jlG3KJ3gdYmhfuySFfpO1,I'm with You,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:3zXjR3y2dUWklKmmp6lEhy,Let Go,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2002-06-04,https://i.scdn.co/image/ab67616d0000b273f7ec724fbf97a30869d06240,1,4,223066,https://p.scdn.co/mp3-preview/b5ea35e1e3d74a99fb72ee4b486f94c87c4d1acd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USAR10200224,spotify:user:bradnumber1,2024-02-27T01:36:55Z,"canadian pop,candy pop,dance pop,pop",0.457,0.406,9.0,-7.462,1.0,0.0291,0.08,0.0,0.117,0.208,151.95,3.0,,Arista,"P (P) 2002 Arista Records, LLC",4199 +4200,spotify:track:0rlTAl25usHDCFxw5T08dA,Blah Blah Blah,"spotify:artist:6LqNN22kT3074XbTVUrhzX, spotify:artist:0FWzNDaEu9jdgcYTbcOa4F","Kesha, 3OH!3",spotify:album:5peRwC6pQh8eaoIPtvmmOB,Animal,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010,https://i.scdn.co/image/ab67616d0000b2737e531970051e341bfbbdc115,1,6,172053,https://p.scdn.co/mp3-preview/bf95a49463e1166491b73e5765754311ce56e508?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10900738,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,electropowerpop,pop punk,pop rap,post-teen pop",0.752,0.832,10.0,-3.243,1.0,0.0971,0.0833,0.000265,0.424,0.534,120.003,4.0,,RCA Records Label,"P (P) 2009 RCA/Jive Label Group, a unit of Sony Music Entertainment",4200 +4201,spotify:track:5luWJxS799LLp2e88RffUx,Starlight,"spotify:artist:08dJ0NJ9jMf8qdLmdhQ2yA, spotify:artist:4h5uH2PyDzfpfZresu96cw","The Supermen Lovers, Mani Hoffman",spotify:album:3UO75WLhEfcx45md7M3bBX,Starlight,"spotify:artist:08dJ0NJ9jMf8qdLmdhQ2yA, spotify:artist:4h5uH2PyDzfpfZresu96cw","The Supermen Lovers, Mani Hoffman",2001-01-01,https://i.scdn.co/image/ab67616d0000b2731931000ca1d76961d8b16f8a,1,2,364333,https://p.scdn.co/mp3-preview/31379643ccaa8199866d5c0672e09f99653ce8eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,FR48U0000010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,filter house,0.706,0.661,0.0,-5.126,1.0,0.034,0.000411,0.0514,0.139,0.642,127.48,4.0,,Lafessé Records,"C 2001 Lafessé Records, P 2001 Lafessé Records",4201 +4202,spotify:track:0ZfM5XfJTtFPhOxAERRnNY,The Look,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:1iI5YZkqNUV7VmrEi4uOP9,Look Sharp! (2009 Version),spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,1988-10-19,https://i.scdn.co/image/ab67616d0000b273dc9cb1ac37f5131948ddc257,1,1,237320,https://p.scdn.co/mp3-preview/60f5a01123d6c7a28a3d0ca3b8f04f16c704b03d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAME8878010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.634,0.838,2.0,-5.363,1.0,0.0413,0.0531,8.34e-06,0.0522,0.541,95.011,4.0,,Parlophone Sweden,"C 1988, 2009 Parlophone Music Sweden AB, a Warner Music Group Company, P 1988, 2009 Parlophone Music Sweden AB, a Warner Music Group Company",4202 +4203,spotify:track:6aSB6i7gxdmPwa2SfpaTpK,Baby It's You,spotify:artist:2c4srBOs5cFc2giau5Rxop,Promises,spotify:album:5sY8E2EcFhYEJBRL4QjyTJ,Promises,spotify:artist:2c4srBOs5cFc2giau5Rxop,Promises,1978-05-13,https://i.scdn.co/image/ab67616d0000b2737c953558eadf54e017fb6d00,1,1,229417,https://p.scdn.co/mp3-preview/42d878a37cf5c1fc01b91bf317b05becd6f96464?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USCA27800193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.42,0.863,5.0,-6.951,1.0,0.074,0.000956,0.00336,0.109,0.261,132.154,4.0,,"Universal Music, a division of Universal International Music BV","C © 1978 Capitol Records, LLC, P ℗ 1978 Capitol Records, LLC",4203 +4204,spotify:track:3ZP4dDCVQ1wk2asZk789kX,All You Need,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,spotify:album:5On5KkGWU5cpkAoGQchjm6,Alex Lloyd,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,2005-10-09,https://i.scdn.co/image/ab67616d0000b2737afbed4abea556e71a7aea6e,1,4,183600,https://p.scdn.co/mp3-preview/77e4adab82106dff7c0e40af672e7122f59a427f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUSM00500159,spotify:user:bradnumber1,2022-08-31T00:31:25Z,"australian alternative rock,australian rock",0.588,0.753,2.0,-5.394,1.0,0.0247,0.0326,0.0,0.109,0.391,99.984,4.0,,Epic,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,4204 +4205,spotify:track:7tqQI7nmRAqX0g8bIYDXmF,(Just Like) Starting Over - Remastered 2010,spotify:artist:4x1nvY2FN8jxqAFA0DA02H,John Lennon,spotify:album:1NWA2fPLUAW5df7UGI5thp,Double Fantasy,"spotify:artist:4x1nvY2FN8jxqAFA0DA02H, spotify:artist:2s4tjL6W3qrblOe0raIzwJ","John Lennon, Yoko Ono",1980-11-17,https://i.scdn.co/image/ab67616d0000b2730488a5c4e21edc24526652ae,1,1,236546,https://p.scdn.co/mp3-preview/6aa3e7ae42a061bfe95f8a519555c3762b1e8263?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USTO11000015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,rock",0.701,0.79,9.0,-6.16,1.0,0.0725,0.301,6.06e-05,0.179,0.421,99.104,4.0,,BEATLES CATALOG MKT (C91),"C © 2010 Calderstone Productions Limited (a division of Universal Music Group), P ℗ 2010 Calderstone Productions Limited (a division of Universal Music Group)",4205 +4206,spotify:track:6pDI3J5Cyt5cCauyWYYuS6,Incredible,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,spotify:album:2tbVb2SlU8ovbP2sx7CsSF,Timomatic,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,2012-08-24,https://i.scdn.co/image/ab67616d0000b2732f6060ca84e503e4e06d6284,1,5,236386,https://p.scdn.co/mp3-preview/83b2efd80dba7099bd2bddd5c3a6cd4c064b2ca9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUBM01200117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.666,0.919,4.0,-3.031,1.0,0.0293,0.00164,0.00042,0.106,0.528,115.051,4.0,,Sony Music Entertainment,P All tracks (P) 2012 Sony Music Entertainment Australia Pty Ltd except track 6. (P) 2011 Sony Music Entertainment Australia Pty Ltd.,4206 +4207,spotify:track:0Xy9xPPs2zRRFqljGqKXel,Pyro,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:3GQy3QdRfl7RZUix1rhLtB,Come Around Sundown,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2010-10-19,https://i.scdn.co/image/ab67616d0000b2731ac63a3c719dd37cab3d51be,1,3,250533,https://p.scdn.co/mp3-preview/ef195c9111f437478cd33d724226c1cb88ad4c3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11000687,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.365,0.606,1.0,-7.174,0.0,0.0415,0.00757,0.052,0.103,0.191,114.995,4.0,,RCA Records Label,"P (P) 2010 RCA Records, a unit of Sony Music Entertainment",4207 +4208,spotify:track:6UXoE1DEpHFwmPT1fGS7av,"Know No Better (feat. Travis Scott, Camila Cabello & Quavo)","spotify:artist:738wLrAtLtCtFOLvQBXOXp, spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF, spotify:artist:0VRj0yCOv2FXJNP47XQnx5","Major Lazer, Travis Scott, Camila Cabello, Quavo",spotify:album:6GwYS55GmxErwdaHQm8zue,Know No Better,spotify:artist:738wLrAtLtCtFOLvQBXOXp,Major Lazer,2017-06-02,https://i.scdn.co/image/ab67616d0000b2730c9bb2a12c0f577251173dcc,1,1,225849,https://p.scdn.co/mp3-preview/08de94ef692ac7754dc68c3d82704f3678d10646?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMUY41700058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,moombahton,pop,pop dance,rap,slap house,dance pop,pop,atl hip hop,melodic rap,rap,trap",0.738,0.814,7.0,-4.414,0.0,0.0999,0.132,9.64e-06,0.126,0.483,119.041,4.0,,WM Australia,"C © 2017 Third Pardee, LLC, P ℗ 2017 Third Pardee, LLC. Marketed and distributed by Warner Music Australia Pty Ltd under exclusive licence.",4208 +4209,spotify:track:7bWCQHQh8xBbd83RRXR0II,I Remember,"spotify:artist:2CIMQHirSU0MQqyYHq0eOx, spotify:artist:6TQj5BFPooTa08A7pk8AQ1","deadmau5, Kaskade",spotify:album:18fxBZwWroGh7bIGUk6eNW,50 Best Trance Hits Ever,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-09-09,https://i.scdn.co/image/ab67616d0000b27399f09e16ca00c5c5e6616b8e,1,2,201493,https://p.scdn.co/mp3-preview/a0aba7060b535877e5b30c2319bc9d13820287fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBTDG0900063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian electronic,complextro,edm,electro house,pop dance,progressive electro house,progressive house,edm,electro house,pop dance,progressive electro house,progressive house,vocal house",0.642,0.551,2.0,-9.158,1.0,0.0334,0.00397,0.00225,0.835,0.642,127.949,4.0,,Armada Music Albums,"C 2011 Armada Music B.V., P 2011 Armada Music B.V.",4209 +4210,spotify:track:1UH4AtG1GAXi5dNpYY5fOb,Somebody's Crying,spotify:artist:7290H8m1Dwt8G7jm1y9CQx,Chris Isaak,spotify:album:3OM7o4WVM3PkHtDJ4ahWcL,The Best Of,spotify:artist:7290H8m1Dwt8G7jm1y9CQx,Chris Isaak,2012-01-01,https://i.scdn.co/image/ab67616d0000b2739b1e83e6382b861cd4d4b3f7,1,2,167093,https://p.scdn.co/mp3-preview/d68fc2b586c2756f99fcd9dbe2ba6508418f2731?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRE19500352,spotify:user:bradnumber1,2021-08-08T09:26:31Z,mellow gold,0.513,0.656,5.0,-6.146,1.0,0.0278,0.284,0.0732,0.151,0.716,113.768,4.0,,Universal Music Australia Pty. Ltd.,"C © 2012 Wicked Game Records, P ℗ 2012 Wicked Game Records",4210 +4211,spotify:track:7vFv0yFGMJW3qVXbAd9BK9,Your Body Is a Wonderland,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:3yHOaiXecTJVUdn7mApZ48,Room For Squares,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2001-08-16,https://i.scdn.co/image/ab67616d0000b2738848d57cbfa7751e028f4dc9,1,4,249626,https://p.scdn.co/mp3-preview/a7d335b30248ec70bf01b823af25d5c4126841a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM10102943,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.647,0.729,5.0,-6.251,1.0,0.0236,0.0206,0.0489,0.134,0.687,94.01,4.0,,Aware/Columbia,P 2001 Sony Music Entertainment Inc.,4211 +4212,spotify:track:1CZOrmHUUjeDP7N2B4Ba6S,Bad Romance,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:4Rt6psVqmhnvrZLEoHocb6,The Fame Monster (Explicit Version),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2009-01-01,https://i.scdn.co/image/ab67616d0000b2734aea834a7b3878bd43a8a4b4,1,1,294573,https://p.scdn.co/mp3-preview/a58b8677ea3858185308224d36808920e587cec5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70918596,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.696,0.921,0.0,-3.755,1.0,0.0363,0.00314,5.24e-05,0.0842,0.714,119.001,4.0,,Streamline/Interscope,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",4212 +4213,spotify:track:5PZTuGuAEb9tavQklihOaR,Something So Strong,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:0Vw2BOifLhBx5mvnepOGVf,Crowded House,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1986,https://i.scdn.co/image/ab67616d0000b27376177060a17476581dbe276e,1,6,171573,https://p.scdn.co/mp3-preview/ee95cd706acfa4bb66e0253e4b37472b51d791c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA28700545,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.578,0.673,7.0,-13.156,1.0,0.0446,0.0968,8.33e-05,0.0927,0.721,119.786,4.0,,Capitol Records,"C (C) 1986 Capitol Records, Inc.. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Capitol Records, Inc., 1750 North Vine Street, Hollywood, CA 90028., P (P) 2005 Capitol Records, Inc.. All rights reserved.",4213 +4214,spotify:track:0UAJH0k4k3slcE83a9UGCe,Lola,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:4jaLfcNpIrOgcPyXuuiHTi,"Lola Versus Powerman and the Moneygoround, Pt. One",spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,1970-11-27,https://i.scdn.co/image/ab67616d0000b27322874c7fad7dee046bd69594,1,5,241040,https://p.scdn.co/mp3-preview/f94cad9e017ec344d390fe1d9c0c6034abbda35f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAJE0701939,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.474,0.917,9.0,-4.19,1.0,0.0395,0.582,0.231,0.201,0.902,152.113,4.0,,Castle Communications,"C © 2004 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1998 Sanctuary Records Group Ltd., a BMG Company",4214 +4215,spotify:track:6kTakcO9wwXh8tEqmJSV8h,"How Come, How Long (feat. Stevie Wonder)","spotify:artist:3aVoqlJOYx31lH1gibGDt3, spotify:artist:7guDJrEfX3qb6FEbdPA5qi","Babyface, Stevie Wonder",spotify:album:66Vhr3F0vp90jhQUlcf4Sk,The Day,spotify:artist:3aVoqlJOYx31lH1gibGDt3,Babyface,1996-10-29,https://i.scdn.co/image/ab67616d0000b2739943ee0d87becde8aac0a930,1,9,315093,https://p.scdn.co/mp3-preview/109caf84af1a635d71f2fbd96f54e5f4a6706246?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USSM19602994,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,r&b,urban contemporary,motown,soul",0.636,0.555,4.0,-8.121,0.0,0.0264,0.0141,3e-06,0.0966,0.289,80.912,4.0,,Epic,"P (P) 1996, 1997, 2001 Sony Music Entertainment",4215 +4216,spotify:track:2smFxko1zyj5QA7mWDTNIw,Tuff,spotify:artist:5tZo7rC9bqWAmhJ1bsejXb,Ace Cannon,spotify:album:4tlCXg1A8HJYLIqVE9ASxe,The Originals: Ace Cannon,spotify:artist:5tZo7rC9bqWAmhJ1bsejXb,Ace Cannon,2003,https://i.scdn.co/image/ab67616d0000b273d936b42690f94cce3cf21f88,1,1,139093,https://p.scdn.co/mp3-preview/9a3a27c8510b55fb24af006c73b2751de58e2741?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USR011200389,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.409,0.02,7.0,-16.406,1.0,0.0345,0.971,0.276,0.102,0.215,68.93,3.0,,YOYO USA Digital Only Originals,"C 2003 Disonex S.A., P 2003 EJD Records",4216 +4217,spotify:track:26wqIUptf8HaWyESxVNuHr,I Don't Want A Lover,spotify:artist:5JsdVATHNPE0XdMFMRoSuf,Texas,spotify:album:4GxwvVpR9MD0loIZcCiSLn,Southside,spotify:artist:5JsdVATHNPE0XdMFMRoSuf,Texas,1989-01-01,https://i.scdn.co/image/ab67616d0000b273439e85473c7b94ffbb34a316,1,1,300440,https://p.scdn.co/mp3-preview/515ba6897e965fa755c6974cf9e91ab3c7a7f0e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088900156,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,scottish rock",0.759,0.449,7.0,-13.186,1.0,0.0393,0.196,0.000273,0.121,0.46,120.488,4.0,,Universal Music Group,"C © 1989 Mercury Records Limited, P ℗ 1989 Mercury Records Limited",4217 +4218,spotify:track:40IpRI7wP0gLbIeuSnOO8M,Over The Rainbow,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,spotify:album:7LtezZWrkfw86vkJzKo7EZ,Extended Play,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,2014-06-06,https://i.scdn.co/image/ab67616d0000b273ac4610f43e278cad4e5937b1,1,9,273546,https://p.scdn.co/mp3-preview/237904c6c028ca9a651f4ba92dcdcbc59ced4f4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAL06400024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.367,0.183,3.0,-16.938,1.0,0.0329,0.941,0.0125,0.12,0.413,87.54,3.0,,Albert Productions,"C © 2014 BMG AM Pty Ltd., P ℗ 2014 BMG AM Pty Ltd.",4218 +4219,spotify:track:6Um3XCAxl9YfFmAnGl93xc,I Fought the Law - Single Version,spotify:artist:5XoM6cP8fQykllfuK5V5TR,The Bobby Fuller Four,spotify:album:7KEDLBdqvyiV4D2uH9SgbV,Never To Be Forgotten - The Mustang Years,spotify:artist:5XoM6cP8fQykllfuK5V5TR,The Bobby Fuller Four,1998,https://i.scdn.co/image/ab67616d0000b2737808c94d787cfceb6b28f294,1,43,138360,https://p.scdn.co/mp3-preview/a1566fbf3ab94f7ab2c0b8883d8fc4cbb47bdfc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRH10721938,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,surf music",0.593,0.804,7.0,-5.497,1.0,0.0319,0.105,2.22e-06,0.047,0.962,148.959,4.0,,Rhino,"C © 1997 Rhino Entertainment Company, a Warner Music Group company, P ℗ 1997 Rhino Entertainment Company, a Warner Music Group company",4219 +4220,spotify:track:1Q7gCIpOjIIU0bUKcGzrG4,I Feel Fine - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:3GmCXW10kLxmZrEY0JpRlw,Past Masters (Vols. 1 & 2 / Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1988-03-07,https://i.scdn.co/image/ab67616d0000b2738d23bdb7c0a6c420f4ffa644,1,14,139680,https://p.scdn.co/mp3-preview/bda700ba22d5130951fa52bad6d93b21d00d0727?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAYE0801392,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.571,0.788,7.0,-8.159,1.0,0.0447,0.311,4.09e-06,0.287,0.769,90.138,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P This Compilation ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",4220 +4221,spotify:track:5loIRrZU3ez3r102qFzJI2,Thunder in My Heart Again (Radio Edit),"spotify:artist:6CisEcpNg7X1sXXhLoMIp4, spotify:artist:04LIHk1SobiQwt2tlupoAV","Meck, Leo Sayer",spotify:album:5uXdXVCCNonteO8miVdr04,Thunder in My Heart Again,"spotify:artist:6CisEcpNg7X1sXXhLoMIp4, spotify:artist:04LIHk1SobiQwt2tlupoAV","Meck, Leo Sayer",2016-03-25,https://i.scdn.co/image/ab67616d0000b273e07e9a84c2b81748bfe8a5ef,1,1,189800,https://p.scdn.co/mp3-preview/080a0f0a8d90c79662bd401fce4c1386ab19d7f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBHHM0500101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.679,0.922,2.0,-4.67,0.0,0.0294,0.000241,0.69,0.0697,0.806,129.016,4.0,,Crimson,C (C) 2016 Demon Music Group Ltd.,4221 +4222,spotify:track:7e3RGqZ2FkFmcInDdgfJze,You Only Live Twice,spotify:artist:3IZrrNonYELubLPJmqOci2,Nancy Sinatra,spotify:album:7hPfjyHX0LOUZwjUfmrRqw,Nancy In London,spotify:artist:3IZrrNonYELubLPJmqOci2,Nancy Sinatra,2006-04-25,https://i.scdn.co/image/ab67616d0000b27308c29b95a3d31d286d7f5eaa,1,13,178840,https://p.scdn.co/mp3-preview/63b902a1908e78c084635391f949522a9c62438f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USASE0510255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lounge,sunshine pop",0.256,0.536,0.0,-6.308,1.0,0.0307,0.705,0.0,0.1,0.422,88.981,4.0,,"Boots Enterprises, Inc.","C (C) 2006 Boots Enterprises, Inc.",4222 +4223,spotify:track:0gcJYi0reGtzqF3WzQHG0I,Dedicated To The One I Love,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,spotify:album:1R3qFksePO77giU1iO4Pjn,Will You Still Love Me Tomorrow,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,2005,https://i.scdn.co/image/ab67616d0000b273510895928dc5b3d662296a6f,1,2,124186,https://p.scdn.co/mp3-preview/2c715df696fecde7d5eaabfa276abbb64976a29d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,doo-wop,motown,rock-and-roll,soul",0.459,0.191,10.0,-11.901,1.0,0.0341,0.8,0.0,0.164,0.537,80.351,4.0,,Gusto Records,"C 2005 Gusto Records Inc, P 2005 Gusto Records Inc",4223 +4224,spotify:track:4650WGL6InVqP7YN5POqIz,Party Rock Anthem,"spotify:artist:3sgFRtyBnxXD5ESfmbK4dl, spotify:artist:2jLE4BoXHriQ96JagEtiDP, spotify:artist:53sIBaVjXQhfH89Vu6nEGh","LMFAO, Lauren Bennett, GoonRock",spotify:album:6g2Ig47IgyqyatDpj7UpHo,Sorry For Party Rocking,spotify:artist:3sgFRtyBnxXD5ESfmbK4dl,LMFAO,2010-12-01,https://i.scdn.co/image/ab67616d0000b27373cbe62524627a0fdfc06a8a,1,3,262146,https://p.scdn.co/mp3-preview/5dbe51b865d0ef9bf91bd169e366110487d645dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USUM71100061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.75,0.736,5.0,-4.168,0.0,0.155,0.0202,0.0,0.265,0.355,130.011,4.0,,Will I Am / A&M,"C © 2011 Foo & Blu, LLC, under exclusive License to Interscope Records, P ℗ 2011 Foo & Blu, LLC, under exclusive License to Interscope Records",4224 +4225,spotify:track:2VxeLyX666F8uXCJ0dZF8B,Shallow,"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:4VIvfOurcf0vuLRxLkGnIG","Lady Gaga, Bradley Cooper",spotify:album:4sLtOBOzn4s3GDUv3c5oJD,A Star Is Born Soundtrack,"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:4VIvfOurcf0vuLRxLkGnIG","Lady Gaga, Bradley Cooper",2018-10-05,https://i.scdn.co/image/ab67616d0000b273e2d156fdc691f57900134342,1,12,215733,https://p.scdn.co/mp3-preview/ad2317459e4acec34d54fc34282089bfb58fc9c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USUM71813192,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop,hollywood",0.577,0.385,7.0,-6.362,1.0,0.03,0.371,0.0,0.231,0.331,95.82,4.0,,A Star is Born OST,"C © 2018 Interscope Records, Motion Picture Artwork © 2018 Warner Bros. Entertainment Inc. Motion Picture Photography © 2018 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Inc.,, P ℗ 2018 Interscope Records",4225 +4226,spotify:track:3S2R0EVwBSAVMd5UMgKTL0,Thriller,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:1C2h7mLntPSeVYciMRTF4a,Thriller 25 Super Deluxe Edition,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2008-02-08,https://i.scdn.co/image/ab67616d0000b2734121faee8df82c526cbab2be,1,4,357266,https://p.scdn.co/mp3-preview/5bca96de79c617b119930b4e44f5d6119b08994a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM19902989,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.773,0.859,11.0,-4.913,1.0,0.0747,0.0855,0.000187,0.914,0.813,118.459,4.0,,Epic/Legacy,"P (P) 1982, 2001, 2008 MJJ Productions Inc.",4226 +4227,spotify:track:05KszEaueVtod0ROmFrcxn,d.a.f,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:3TDimUGd7RULilf8dvoGXf,Fingerprints & Footprints - The Ultimate Collection,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b273c99282eb112e0ad89430afc6,1,9,212080,https://p.scdn.co/mp3-preview/489a11b45d43aeac1b74a98af3de5a0c31b31ac0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUPO09620141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.56,0.808,2.0,-5.556,1.0,0.0298,0.00335,2.16e-05,0.185,0.332,106.225,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P This Compilation ℗ 2011 Universal Music Australia Pty Ltd.",4227 +4228,spotify:track:2yBVeksU2EtrPJbTu4ZslK,What a Fool Believes,spotify:artist:39T6qqI0jDtSWWioX8eGJz,The Doobie Brothers,spotify:album:7je2uv9QBH65HhADDZitbB,Minute by Minute,spotify:artist:39T6qqI0jDtSWWioX8eGJz,The Doobie Brothers,1978,https://i.scdn.co/image/ab67616d0000b273ba6340ac3b1653b6ea0e5da5,1,2,223866,https://p.scdn.co/mp3-preview/64635139a882867c50a4da283c36822c5608abcc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USWB10902441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,mellow gold,rock,singer-songwriter,soft rock,yacht rock",0.758,0.378,8.0,-15.308,0.0,0.0449,0.284,0.0,0.049,0.985,120.736,4.0,,Rhino/Warner Records,"C © 1978 Warner Records Inc., P ℗ 1978 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",4228 +4229,spotify:track:3jjujdWJ72nww5eGnfs2E7,Adore You,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,spotify:album:7xV2TzoaVc0ycW7fwBwAml,Fine Line,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,2019-12-13,https://i.scdn.co/image/ab67616d0000b27377fdcfda6535601aff081b6a,1,3,207133,https://p.scdn.co/mp3-preview/a42d5e9f6f5c3375db9723bb2356239351eead31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USSM11912588,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.676,0.771,8.0,-3.675,1.0,0.0483,0.0237,7e-06,0.102,0.569,99.048,4.0,,Columbia,"P (P) 2019 Erskine Records Limited, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",4229 +4230,spotify:track:3O9zeBmAi5JRBMSpIQGx2v,A View to a Kill,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:7xbWtTByfdMWFfxXmeFFl0,Greatest,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1998-11-09,https://i.scdn.co/image/ab67616d0000b2738fb8aca87001515a6945b9b7,1,3,217693,https://p.scdn.co/mp3-preview/09ced60fdc2ba6877baef44189389239ed822d47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USMG28500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.706,0.813,1.0,-5.404,1.0,0.0569,0.0157,0.0,0.262,0.777,125.468,4.0,,Parlophone UK,"C © 1998 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1998 Parlophone Records Ltd, a Warner Music Group Company",4230 +4231,spotify:track:2e2XwMMNEdERsHLpOg7aEM,Russian Roulette,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:0lpi9UvopEQr9sVpFVv52w,Rated R,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2009-11-20,https://i.scdn.co/image/ab67616d0000b273b6f5afe63c28be5287e5f232,1,6,227533,https://p.scdn.co/mp3-preview/215f67679102808d1b17614e36d7b43d946b4ee8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70912464,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.48,0.486,6.0,-5.754,0.0,0.0447,0.046,0.0,0.107,0.265,80.051,4.0,,Universal Music Group,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",4231 +4232,spotify:track:4uLU6hMCjMI75M1A2tKUQC,Never Gonna Give You Up,spotify:artist:0gxyHStUsqpMadRV0Di1Qt,Rick Astley,spotify:album:6N9PS4QXF1D0OWPk0Sxtb4,Whenever You Need Somebody,spotify:artist:0gxyHStUsqpMadRV0Di1Qt,Rick Astley,1987-11-12,https://i.scdn.co/image/ab67616d0000b273255e131abc1410833be95673,1,1,213573,https://p.scdn.co/mp3-preview/b4c682084c3fd05538726d0a126b7e14b6e92c83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBARL9300135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock,sophisti-pop,synthpop",0.721,0.939,8.0,-11.823,1.0,0.0376,0.115,3.79e-05,0.108,0.914,113.309,4.0,,Sony Music CG,P (P) 1987 Sony Music Entertainment UK Limited under exclusive license to BMG Rights Management (UK) Limited,4232 +4233,spotify:track:7BB7wL3mHd7kVslimbTqGw,Out With My Baby,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:0f8Xtk0NDPGz4PpwlzEMBT,Twenty Ten,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2010-11-19,https://i.scdn.co/image/ab67616d0000b2739b9984688fe057a6af29d60e,1,7,219626,https://p.scdn.co/mp3-preview/04f922340dcf7aa5416aabccb65fc0553e212e81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUBM00447705,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.804,0.777,9.0,-3.658,1.0,0.161,0.11,0.0,0.198,0.386,101.031,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd.,4233 +4234,spotify:track:3xoAQkH410WVVQOfvwcAqu,Raincloud,spotify:artist:6edGSAX5dVpeJVwu1Q0NwJ,Lighthouse Family,spotify:album:5yK7iXnoIpuJwW8FsAdgYf,Postcards From Heaven,spotify:artist:6edGSAX5dVpeJVwu1Q0NwJ,Lighthouse Family,1997-01-01,https://i.scdn.co/image/ab67616d0000b27315b1f612cacf1a84f2c074d6,1,1,272400,https://p.scdn.co/mp3-preview/f7a8f56e280069b2177f34e10cd02c547fc0fb04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALS9700035,spotify:user:bradnumber1,2022-01-12T23:18:07Z,"europop,new wave pop",0.651,0.803,2.0,-8.372,0.0,0.0327,0.0362,2.07e-05,0.327,0.788,116.874,4.0,,Polydor,"C © 1997 Polydor Ltd. (UK), P ℗ 1997 Polydor Ltd. (UK)",4234 +4235,spotify:track:7HWetAoWK9qkFM575HONAY,Lonely (with benny blanco),"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:5CiGnKThu5ctn9pBxv7DGa","Justin Bieber, benny blanco",spotify:album:3ILTeVimMva0ImF0dWtoQC,Lonely (with benny blanco),"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:5CiGnKThu5ctn9pBxv7DGa","Justin Bieber, benny blanco",2020-10-16,https://i.scdn.co/image/ab67616d0000b2730582ff975f99f0ab842f4915,1,1,149297,https://p.scdn.co/mp3-preview/eb95e31cdcb9292fa8cb8041e839eea270bb8b1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USUM72019037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,pop",0.631,0.226,11.0,-7.257,0.0,0.0396,0.879,0.0,0.115,0.0765,79.968,4.0,,Friends Keep Secrets/Def Jam Recordings/Interscope Records,"C © 2020 Friends Keep Secrets/Def Jam Recordings/Interscope Records, P ℗ 2020 Friends Keep Secrets/Def Jam Recordings/Interscope Records",4235 +4236,spotify:track:2HXmVCs1kJrJlOo0HJJkSH,Shaka Jam - Radio Edit,spotify:artist:5r5CoxvqnhfhYswityEIJ6,Kulcha,spotify:album:23Y7HMUDmR6pdX1wRWqX4C,Shaka Jam,spotify:artist:5r5CoxvqnhfhYswityEIJ6,Kulcha,1994,https://i.scdn.co/image/ab67616d0000b273734fabaa452103572263cf9a,1,1,215226,https://p.scdn.co/mp3-preview/9b1fd7b37b2122e32a57761a191e3f6098ba2281?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUWA01000421,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.774,0.809,1.0,-7.433,1.0,0.0648,0.0504,0.0,0.141,0.833,113.204,4.0,,WM Australia,"C © 1994 East West Records Australia, P ℗ 1994 East West Records Australia",4236 +4237,spotify:track:79ceMo37JJnDgz2U4AIR79,Cassandra,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:5zkK9olctrQZL4mu363row,Greatest Hits,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,2006-07-15,https://i.scdn.co/image/ab67616d0000b27352568cf788a239ff702cc4b3,1,5,197546,https://p.scdn.co/mp3-preview/4a153b93cbfca38788d20ab6d1a1aae497f87048?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00621290,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.502,0.556,7.0,-6.651,0.0,0.0281,0.0347,7.44e-05,0.0975,0.334,117.23,4.0,,Bloodlines,"C 2006 Bloodlines, P 2006 Bloodlines",4237 +4238,spotify:track:5LhVyL9Epc7QaAgKEsIXY6,Girl Crazy - 2011 Remaster,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,spotify:album:75sqVZTa8HIi8pZzEUfoRk,Mystery,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,1982,https://i.scdn.co/image/ab67616d0000b273406744353b2baea6f7d97279,1,1,200426,https://p.scdn.co/mp3-preview/b00b596d2adc4ee0a0cf748594eff8439031d66d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAYE1001325,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.808,0.883,9.0,-6.346,1.0,0.113,0.689,0.000211,0.177,0.918,124.06,4.0,,Rhino,"C © 1982 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1982 Parlophone Records Ltd, a Warner Music Group Company",4238 +4239,spotify:track:07itbZUgkAmBi4CEH5NniJ,I Got You Babe,"spotify:artist:69MEO1AADKg1IZrq2XLzo5, spotify:artist:2ozLlEZTdSV3pjHgWwZMsi","UB40, Chrissie Hynde",spotify:album:6UjYrQhvKY0dq6nos8TVc8,Baggariddim,spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,1985-01-01,https://i.scdn.co/image/ab67616d0000b273ac36739ab6c641370c7c7686,1,12,189093,https://p.scdn.co/mp3-preview/465498d91916d7fff9e40f09e1d59fb4df895057?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBAAA8500025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,uk reggae,solo wave",0.756,0.61,5.0,-13.002,1.0,0.0709,0.0806,7.89e-05,0.114,0.863,173.818,4.0,,Virgin Records,"C © 1985 DEP International, P ℗ 1985 Virgin Records Limited",4239 +4240,spotify:track:1mPt6pPmOcVYFsVqT2N03V,Don't Be Cruel,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0uJJdEZ8sRLNPoKEkjvqTD,Elvis 30 #1 Hits (Expanded Edition),spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2022-02-18,https://i.scdn.co/image/ab67616d0000b2735cc9e097906397c45324ea08,1,2,122866,https://p.scdn.co/mp3-preview/67ff12d8aedb11cd1784f2d194de98bf7bab908f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USRC10200073,spotify:user:bradnumber1,2023-08-05T14:24:56Z,"rock-and-roll,rockabilly",0.68,0.675,2.0,-7.998,1.0,0.191,0.772,0.0,0.069,0.805,84.967,4.0,,RCA/Legacy,P This Compilation (P) 2022 Sony Music Entertainment,4240 +4241,spotify:track:1D7WYNNdz27qV6HFxfmw0K,Got to Be Certain,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:7FfyAlMb6eoZbUTZ7V2tBG,Kylie Greatest Hits,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2006-08-05,https://i.scdn.co/image/ab67616d0000b2730dd530f4c8e2424f3d31679a,1,2,199853,https://p.scdn.co/mp3-preview/8028c9bd05276e7ef18d2de7b325a2bb83f93bb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBAHK0200208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.749,0.985,4.0,-4.502,0.0,0.0406,0.0288,0.406,0.126,0.963,117.475,4.0,,WM Australia,"C © 1997 Mushroom Records, P ℗ 1997 Mushroom Records",4241 +4242,spotify:track:6oXa5pLk2L2ZfmeUPHxP35,Say You Will - 2008 Remaster,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,spotify:album:4VRXqPaa2ZTwC2AG364RWO,No End in Sight: The Very Best of Foreigner,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,2008-07-08,https://i.scdn.co/image/ab67616d0000b273738e5e351defcc02d1fd3774,1,21,255520,https://p.scdn.co/mp3-preview/c0b6ea9f455c86897f318c2c51c2b9b4173f94be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USAT20802344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.693,0.816,3.0,-4.488,0.0,0.027,0.195,0.0,0.0406,0.589,126.063,4.0,,Rhino,"C © 2008 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Marketed by Rhino Entertainment Company, P ℗ 2008 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Marketed by Rhino Entertainment Company",4242 +4243,spotify:track:1A6X8840ZrptR1oJu8skSW,I Should Have Known Better,spotify:artist:4MC3knlcFjcW7nt2hdn4Dk,Jim Diamond,spotify:album:7i9Ifsw1L8PsGAmX6t3xOk,Music For Lovers,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2003-01-01,https://i.scdn.co/image/ab67616d0000b273b85d2257df9d9eedde0dae4b,1,7,244506,https://p.scdn.co/mp3-preview/eaedada6a4a734707419a49da6368fc48bb0a208?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAAM8400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,scottish new wave,0.494,0.44,5.0,-8.849,1.0,0.0267,0.214,0.000393,0.155,0.187,78.445,4.0,,Spectrum,"C © 2003 Spectrum Music, P This Compilation ℗ 2003 Spectrum Music",4243 +4244,spotify:track:5YSI1311X8t31PBjkBG4CZ,Wuthering Heights,spotify:artist:1aSxMhuvixZ8h9dK9jIDwL,Kate Bush,spotify:album:5NKTuBLCYhN0OwqFiGdXd1,The Kick Inside,spotify:artist:1aSxMhuvixZ8h9dK9jIDwL,Kate Bush,1978-02-17,https://i.scdn.co/image/ab67616d0000b2733c9aa0b150e1a982fd76b1c5,1,6,269066,https://p.scdn.co/mp3-preview/bac34b1ec1c8f0db8e76e30e96e020420d55261d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAYE7700223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,art rock,baroque pop,new wave pop,permanent wave,piano rock,singer-songwriter",0.484,0.392,1.0,-11.381,1.0,0.0313,0.366,0.0452,0.124,0.521,124.564,4.0,,Parlophone UK,"C © 1978 Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 1978 Parlophone Records Ltd, P ℗ 1978 The copyright in this sound recording is owned by Parlophone Records Ltd",4244 +4245,spotify:track:1N62wozuHCvczCkY4QidpP,Over My Head (Cable Car),spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,spotify:album:1IM3GwptCGYjRkzCBolyFK,How To Save A Life,spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,2005-09-13,https://i.scdn.co/image/ab67616d0000b27359b8b957f164ce660919f1f4,1,2,236266,https://p.scdn.co/mp3-preview/f0978588a370818de23bd9fb215c6d2e4a2b0ee6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM10502369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop,pop rock",0.592,0.729,8.0,-4.156,1.0,0.0448,0.022,0.0,0.0653,0.709,116.03,4.0,,Epic,P (P) 2005 Sony Music Entertainment,4245 +4246,spotify:track:0Ult84lvFuqNvbyXwyRQ58,I Miss You (feat. Julia Michaels),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","Clean Bandit, Julia Michaels",spotify:album:1MvF4ulZKH7SaDQs9rE5nc,What Is Love? (Deluxe Edition),spotify:artist:6MDME20pz9RveH9rEXvrOM,Clean Bandit,2018-11-30,https://i.scdn.co/image/ab67616d0000b27337fb0680110fbb107740de5d,1,11,205986,https://p.scdn.co/mp3-preview/8130edc24ce3f1110a625364086ebbf58aa93f21?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAHS1701011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,pop",0.693,0.624,0.0,-7.482,0.0,0.0448,0.299,7.64e-06,0.0955,0.369,105.002,4.0,,Atlantic Records UK,"C © 2018 Atlantic Records UK, a division of Warner Music UK Limited., P ℗ 2018 Atlantic Records UK, a division of Warner Music UK Limited. Tracks 1 & 11 (P) 2017 Atlantic Records UK, a division of Warner Music UK Limited. Tracks 4 & 16 (P) 2016 Atlantic Records UK, a division of Warner Music UK Limited",4246 +4247,spotify:track:2Cy7QY8HPLk925AyNAt6OG,Black or White - Single Version,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:77dNyQA0z8dV33M4so4eRY,The Essential Michael Jackson,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2005-07-19,https://i.scdn.co/image/ab67616d0000b273ed1c305cd1e673fe925407ce,2,9,202853,https://p.scdn.co/mp3-preview/2e642263af640afcfd751abbfef51b24cdcb3fd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM10312784,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.741,0.894,4.0,-3.826,1.0,0.0496,0.0814,0.0527,0.089,0.96,114.879,4.0,,Epic/Legacy,"P (P) 1972 Motown Records, a Division of UMG Recordings, Inc., 1976, 1978, 1980 Sony Music Entertainment, 1979, 1982, 1987, 1991, 1995, 2001, 2005 MJJ Productions Inc.",4247 +4248,spotify:track:0I4yYE831a8SW8QIx6bz4x,Crimson & Clover,spotify:artist:01hRNr3yF5bYnPq4wZ88iI,Tommy James & The Shondells,spotify:album:3yS8gcHmbKBK6XhLmq7ZcK,Anthology,spotify:artist:01hRNr3yF5bYnPq4wZ88iI,Tommy James & The Shondells,1989,https://i.scdn.co/image/ab67616d0000b273716103d47a4f8fa9820c49ac,1,19,209640,https://p.scdn.co/mp3-preview/230514b3f69a9a5da71ac17775bf18a28f61448a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAYE6800094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,classic rock,country rock,folk rock,mellow gold,merseybeat,psychedelic rock,rock-and-roll",0.408,0.692,11.0,-9.478,1.0,0.0685,0.235,0.0255,0.197,0.684,82.499,4.0,,Parlophone UK,"C © 2007 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1990 Parlophone Records Ltd, a Warner Music Group Company",4248 +4249,spotify:track:0PlyPJ1MKfuQk29El1oWkU,Seventeen,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,spotify:album:6tPS897buniFpmJo5KhE9g,Shaka Rock,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,2009-01-01,https://i.scdn.co/image/ab67616d0000b273bfe269b2f7d4cec2bacc92d3,1,5,221173,https://p.scdn.co/mp3-preview/902b3054851cc2ba544053f9542e7402f077aa7e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDPK0916005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,pop rock",0.527,0.806,2.0,-3.245,1.0,0.0344,0.0782,1.42e-06,0.0656,0.244,131.602,4.0,,Virgin Records,"C © 2009 Real Horrorshow Records/Five Seven Music, P ℗ 2009 Real Horrorshow Records/Five Seven Music",4249 +4250,spotify:track:5SUlhldQJtOhUr2GzH5RI7,Nowhere Man - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:50o7kf2wLwVmOTVYJOTplm,Rubber Soul (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1965-12-03,https://i.scdn.co/image/ab67616d0000b273ed801e58a9ababdea6ac7ce4,1,4,163693,https://p.scdn.co/mp3-preview/0bcb4005d67e96f91754824ffa92d01194254382?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBAYE0601482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.534,0.624,4.0,-9.589,1.0,0.0462,0.00797,0.0,0.128,0.687,121.402,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",4250 +4251,spotify:track:18AXbzPzBS8Y3AkgSxzJPb,In The Air Tonight - 2015 Remastered,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:1cM3r0WQZWNkCpEbmFjLln,Face Value (Deluxe Editon),spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1981-01-01,https://i.scdn.co/image/ab67616d0000b273f6954c1f074f66907a8c5483,1,1,336453,https://p.scdn.co/mp3-preview/31c39a7bd82cc18f28c48ead9b95a0fa03147c3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USAT21502120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.446,0.239,0.0,-13.945,1.0,0.0316,0.551,4.1e-06,0.0697,0.298,189.507,4.0,,Rhino,"C 2015 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company, P 2015 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company",4251 +4252,spotify:track:5XJJdNPkwmbUwE79gv0NxK,Gold Digger,"spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:7LnaAXbDVIL75IVPnndf7w","Kanye West, Jamie Foxx",spotify:album:4GRDFQ9HRoO0by8H0r2a3I,Late Registration,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2005-01-01,https://i.scdn.co/image/ab67616d0000b2734c7dd2b7fc516356e037bf68,1,4,207626,https://p.scdn.co/mp3-preview/c07d8315fb8fc3a820a312e29961c96a2e7d7229?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70500143,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap,contemporary r&b,hip pop,pop rap,r&b,southern hip hop,trap,urban contemporary",0.646,0.696,1.0,-5.572,0.0,0.342,0.0192,0.0,0.0762,0.625,92.88,4.0,,Universal Music Group,"C © 2005 Roc-A-Fella Records, LLC, P ℗ 2005 Roc-A-Fella Records, LLC",4252 +4253,spotify:track:7ICMhHYyv1vM3S1XzcEFIq,CHANT (feat. Tones And I),"spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:2NjfBq1NflQcKSeiDooVjY","Macklemore, Tones And I",spotify:album:6K5RX7xasf8WdeQjapsThS,BEN,spotify:artist:3JhNCzhSMTxs9WLGJJxWOY,Macklemore,2023-03-03,https://i.scdn.co/image/ab67616d0000b273033b871ae27b16ddd8139806,1,1,270635,https://p.scdn.co/mp3-preview/7bcc0da7ed9abb9574ea6880afb31eaf38747fbf?cid=9950ac751e34487dbbe027c4fd7f8e99,True,54,ZZOPM2236812,spotify:user:bradnumber1,2023-03-08T22:16:43Z,"pop rap,seattle hip hop,australian pop",0.698,0.782,1.0,-5.347,1.0,0.0853,0.213,0.0,0.181,0.506,112.176,4.0,,Bendo LLC,"C © 2023 Bendo, LLC, P ℗ 2023 Bendo, LLC",4253 +4254,spotify:track:43GS3mtezoIFiuIZCLLiDY,Every Rose Has Its Thorn - 2003 Remaster,spotify:artist:1fBCIkoPOPCDLUxGuWNvyo,Poison,spotify:album:2AMWVB3FWknjcMeb6hMZnd,Open Up And Say...Ahh! (20th Anniversary Edition),spotify:artist:1fBCIkoPOPCDLUxGuWNvyo,Poison,1988-03-21,https://i.scdn.co/image/ab67616d0000b273b4e4e7ee52c6fc8be77d8a33,1,8,260173,https://p.scdn.co/mp3-preview/0f4b7c6d7971c4cbbe38a54775ac41a301ace5e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USCA20300335,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,rock",0.531,0.632,6.0,-5.557,1.0,0.0312,0.16,1.14e-05,0.364,0.294,140.176,4.0,,Capitol Records,"C © 2006 Capitol Records Inc., P ℗ 2006 Capitol Records Inc.",4254 +4255,spotify:track:0mbE6Og3HBzKmafxSzvQjp,Words Are Not Enough,spotify:artist:6H2LnEj5myKc4vVz0huuxW,Jon English,spotify:album:6dFooahujbUF42R0H6kRZY,English History,spotify:artist:6H2LnEj5myKc4vVz0huuxW,Jon English,1979-01-01,https://i.scdn.co/image/ab67616d0000b2732139eea45af00569df0573ba,1,3,214866,https://p.scdn.co/mp3-preview/a7987b5371894822aeb705a59dd7660b9dc804e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAY21100905,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.725,0.459,9.0,-13.884,0.0,0.0344,0.152,0.0433,0.271,0.708,104.066,4.0,,Ambition Entertainment Pty Ltd,"C © 2011 Sound One Pty Limited, P ℗ 1979 Sound One Pty Limited",4255 +4256,spotify:track:0aBKFfdyOD1Ttvgv0cfjjJ,More - RedOne Jimmy Joker Remix,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,spotify:album:5GNPZT1Bxq0EP7PQDQmK3U,More,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2010-11-22,https://i.scdn.co/image/ab67616d0000b27398bf79b7ca17c9612f0470ac,1,1,219986,https://p.scdn.co/mp3-preview/949b282e22c207ca2f658045cc94b354de54d40d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USLF21000098,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.551,0.893,7.0,-2.628,1.0,0.0543,0.00166,0.0,0.348,0.794,125.083,4.0,,LaFace Records,"P (P) 2010 LaFace Records, a unit of Sony Music Entertainment",4256 +4257,spotify:track:2qT1uLXPVPzGgFOx4jtEuo,no tears left to cry,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:3tx8gQqWbGwqIGZHqDNrGe,Sweetener,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2018-08-17,https://i.scdn.co/image/ab67616d0000b273c3af0c2355c24ed7023cd394,1,10,205920,https://p.scdn.co/mp3-preview/e5b04ad7398a7c8f5c4c788f4ab43f3f4cef150a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USUM71805289,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.699,0.713,9.0,-5.507,0.0,0.0594,0.04,3.11e-06,0.294,0.354,121.993,4.0,,Republic Records,"C © 2018 Republic Records, a Division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a Division of UMG Recordings, Inc.",4257 +4258,spotify:track:30w9SEmvLQTrWf9LFxA7IO,On My Way,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:3ezCvHQlNEaFkZflL2FXIh,On My Way,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2019-02-01,https://i.scdn.co/image/ab67616d0000b27365217f8077e98e4f233af908,1,1,203100,https://p.scdn.co/mp3-preview/f04d4d29c450c38f7f4bc8140836e4207a5be13f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUIYA1900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.57,0.821,4.0,-7.347,1.0,0.0574,0.257,0.0,0.104,0.534,138.024,4.0,,Empire Of Song,"C 2019 Empire of Song (Australia) Pty Ltd, P 2019 Empire of Song (Australia) Pty Ltd",4258 +4259,spotify:track:5hAwt1qOVxErw456dGVLmi,Mr Mysterious - Single Version,"spotify:artist:5M0fvL9GMc2zTuIIQwresj, spotify:artist:3Nt2NcCHdJFvvSoowWH4jL","Vanessa Amorosi, Seany B",spotify:album:3a4N8evJWuI8IyQKLtmDKp,Mr Mysterious,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273f88027c8f67bcd5b5ae89013,1,1,226520,https://p.scdn.co/mp3-preview/34ff05bccdbe22219d04c10e6d0c1cd3c0144ee3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71000404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,australian dance,melbourne bounce",0.687,0.967,5.0,-2.447,1.0,0.0474,0.211,0.0,0.135,0.501,120.005,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Universal Music Australia Pty Ltd., P ℗ 2010 Universal Music Australia Pty Ltd.",4259 +4260,spotify:track:76nvqWPFucUra1xCkN1tnD,Mmm Mmm Mmm Mmm,spotify:artist:1YEGETLT2p8k97LIo3deHL,Crash Test Dummies,spotify:album:6MEFBcD0a87GMYiHW3VsVI,God Shuffled His Feet,spotify:artist:1YEGETLT2p8k97LIo3deHL,Crash Test Dummies,1993-04-05,https://i.scdn.co/image/ab67616d0000b273e11a0aabd1ea6d29254e06cf,1,3,235173,https://p.scdn.co/mp3-preview/9c0f2b94c3c85fc12c085e439ac0d8c8fef096fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,CAA359300084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian rock,pop rock,post-grunge",0.58,0.575,3.0,-7.72,1.0,0.0231,0.25,1.83e-05,0.0813,0.37,92.934,4.0,,Arista,P (P) 1993 BMG Music Canada Inc.,4260 +4261,spotify:track:58zsLZPvfflaiIbNWoA22O,Human,spotify:artist:4f9iBmdUOhQWeP7dcAn1pf,Rag'n'Bone Man,spotify:album:1rMmiDKa8V5H9yYTPAbLng,Human (Deluxe),spotify:artist:4f9iBmdUOhQWeP7dcAn1pf,Rag'n'Bone Man,2017-02-10,https://i.scdn.co/image/ab67616d0000b27390a788beadaad34ff684d3ec,1,1,200186,https://p.scdn.co/mp3-preview/8c1cad46231be436ff9e13a71f52df2135398850?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBARL1600665,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo soul,0.602,0.707,9.0,-4.097,1.0,0.302,0.393,0.0,0.165,0.554,75.087,4.0,,Best Laid Plans/Columbia,P Tracks 1 & 19 (P) 2016 Sony Music Entertainment UK Limited; All other tracks (P) 2017 Sony Music Entertainment UK Limited,4261 +4262,spotify:track:2RC7ChxXoEhpTmlkAQzVNP,Over & Out,spotify:artist:0pf1lcBxh6HiiHQAIzhTI5,Newton Faulkner,spotify:album:5EGjY4kYhEgg8zAPtiVu1B,Rebuilt By Humans,spotify:artist:0pf1lcBxh6HiiHQAIzhTI5,Newton Faulkner,2009-09-28,https://i.scdn.co/image/ab67616d0000b273c79237b3d167deedf389453e,1,14,199080,https://p.scdn.co/mp3-preview/c393a4dc00fff88513c1c7541f9025bcdfe09062?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GBHKB0900021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,folk-pop,0.55,0.727,5.0,-5.997,1.0,0.0325,0.0567,0.0,0.114,0.441,88.043,4.0,,RCA Records Label,P (P) 2009 Peer-Southern Productions Limited under exclusive license to Blue Sky Music Limited,4262 +4263,spotify:track:55whbebR4olz2HHcRQa2kx,Sorry,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:1hg0pQJLE9dzfT1kgZtDPr,Confessions on a Dance Floor,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2005-11-11,https://i.scdn.co/image/ab67616d0000b273aaa9d84415623c1e790cd07b,1,3,281880,https://p.scdn.co/mp3-preview/5d197614a3887976e8cd091c5b943b4aa1edead4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USWB10504974,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.589,0.877,0.0,-6.229,0.0,0.046,0.00121,0.013,0.169,0.443,132.971,4.0,,Warner Records,"C © 2005 Warner Records Inc., P ℗ 2005 Warner Records Inc.",4263 +4264,spotify:track:4RCWB3V8V0dignt99LZ8vH,Hey There Delilah,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,spotify:album:4vUClKTFaDWnsHE8rK52GY,All That We Needed,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,2005-01-01,https://i.scdn.co/image/ab67616d0000b273beae6e69d6505fd379ef3081,1,13,232533,https://p.scdn.co/mp3-preview/fcd477890854d132e79a028d17d89bf7812652dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,US5260507213,spotify:user:bradnumber1,2021-11-11T04:12:41Z,"modern rock,neo mellow,neon pop punk,pop punk,pop rock",0.658,0.291,2.0,-10.572,1.0,0.0292,0.872,0.0,0.114,0.295,103.962,4.0,,Fearless Records,"C © 2005 Fearless Records, a division of Concord Music Group, Inc., P ℗ 2005 Fearless Records, a division of Concord Music Group, Inc.",4264 +4265,spotify:track:3DXncPQOG4VBw3QHh3S817,"I'm the One (feat. Justin Bieber, Quavo, Chance the Rapper & Lil Wayne)","spotify:artist:0QHgL1lAIqAw0HtD7YldmP, spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0VRj0yCOv2FXJNP47XQnx5, spotify:artist:1anyVhU62p31KFi8MEzkbf, spotify:artist:55Aa2cqylxrFIXC767Z865","DJ Khaled, Justin Bieber, Quavo, Chance the Rapper, Lil Wayne",spotify:album:4JBZ0QHveEpESepanNBG8A,Grateful,spotify:artist:0QHgL1lAIqAw0HtD7YldmP,DJ Khaled,2017-06-22,https://i.scdn.co/image/ab67616d0000b273f2b55cfff049e03f92834b50,1,4,288600,https://p.scdn.co/mp3-preview/80ca4bb6fc9469ab141650c2ace64e641382db96?cid=9950ac751e34487dbbe027c4fd7f8e99,True,70,USSM11703300,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,miami hip hop,pop rap,rap,canadian pop,pop,atl hip hop,melodic rap,rap,trap,chicago rap,conscious hip hop,hip hop,pop rap,rap,trap,hip hop,new orleans rap,pop rap,rap,trap",0.609,0.668,7.0,-4.284,1.0,0.0367,0.0552,0.0,0.167,0.811,80.924,4.0,,Epic/We The Best,"P (P) 2017 We The Best x Influence. Exclusively distributed by Epic Records, a division of Sony Music Entertainment.",4265 +4266,spotify:track:7zprGKxSOueSzoB4qjgM4U,United We Stand,spotify:artist:4Cyr5aqgXza16isOrQNOvo,Brotherhood of Man,spotify:album:2uJMmxjFjsTcT7VSxMbjG8,United We Stand,spotify:artist:4Cyr5aqgXza16isOrQNOvo,Brotherhood of Man,1994-01-01,https://i.scdn.co/image/ab67616d0000b27350af19a579e1fb1f21965b58,1,1,171866,https://p.scdn.co/mp3-preview/c060261c8eb9e64e117c53dfd92358d4db3331ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBF077020510,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic uk pop",0.443,0.478,5.0,-13.476,1.0,0.0266,0.0454,0.0,0.39,0.692,82.148,4.0,,Decca Music Group Ltd.,"C © 1994 Decca Music Group Limited, P This Compilation ℗ 1994 Decca Music Group Limited",4266 +4267,spotify:track:2dCmGcEOQrMQhMMS8Vj7Ca,Super Freak,spotify:artist:0FrpdcVlJQqibaz5HfBUrL,Rick James,spotify:album:2DBFUBBqJQvfXpodPi2WP5,Street Songs (Deluxe Edition),spotify:artist:0FrpdcVlJQqibaz5HfBUrL,Rick James,1981-04-07,https://i.scdn.co/image/ab67616d0000b27317f9e7e7784ed40b223e261c,1,5,205466,https://p.scdn.co/mp3-preview/ef2c59a916249d860115a1fb2f99c0854a6b6b25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USMO18100048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,p funk,quiet storm,soul,synth funk",0.838,0.794,9.0,-8.245,0.0,0.0531,0.22,0.0,0.0575,0.962,132.446,4.0,,Motown,"C © 1981 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1981 Motown Records, a Division of UMG Recordings, Inc.",4267 +4268,spotify:track:6RgSSndg8PUH2UcaCgia5V,Die In Your Arms,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7BWK3eXcbAdwYeulyQj5Kw,Believe (Deluxe Edition),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2012-01-01,https://i.scdn.co/image/ab67616d0000b273adc5af517133ca221870f112,1,8,237293,https://p.scdn.co/mp3-preview/4b8bf321bd2b269383c446d199221b8ebf197744?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71205353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.568,0.876,7.0,-5.11,1.0,0.116,0.0402,3.49e-06,0.203,0.763,171.66,4.0,,Universal Music Group,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",4268 +4269,spotify:track:518zXKRiPKL5RhMddyXkBB,Eyes Shut,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),spotify:album:0bWYlK9rRmIB68icHx9PNR,Communion (Deluxe),spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),2015-07-10,https://i.scdn.co/image/ab67616d0000b273b84e077bb3f2e36adbdeb6d4,1,6,198226,https://p.scdn.co/mp3-preview/df9db5898c28e80ff2042bf321a33f1df22c45c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBUM71501268,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gauze pop,pop,pop dance,uk pop",0.593,0.671,0.0,-6.956,1.0,0.0409,0.54,0.0,0.123,0.195,97.935,4.0,,Polydor Records,"C © 2016 Polydor Ltd. (UK), P ℗ 2016 Polydor Ltd. (UK)",4269 +4270,spotify:track:0yhDca7Z4TOiEejtAx6R3g,Sacrifice,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:2eNwbtNeveYa2jhCc2cz7c,Sleeping With The Past (Remastered with bonus tracks),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1989-08-29,https://i.scdn.co/image/ab67616d0000b273d3a4359de062677ffd7304aa,1,7,305760,https://p.scdn.co/mp3-preview/c05cfff4bb6571ca0b1e304a30dcc513f4cb80c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALX8900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.749,0.414,11.0,-13.036,0.0,0.0288,0.0149,0.00344,0.0401,0.465,112.751,4.0,,Universal Music Group,"C © 1998 Mercury Records Limited, P ℗ 1998 Mercury Records Limited",4270 +4271,spotify:track:6Qs4SXO9dwPj5GKvVOv8Ki,Dancing With A Stranger (with Normani),"spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:2cWZOOzeOm4WmBJRnD5R7I","Sam Smith, Normani",spotify:album:1V9oE8bVilClrk5naqyyvL,Dancing With A Stranger (with Normani),"spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:2cWZOOzeOm4WmBJRnD5R7I","Sam Smith, Normani",2019-01-11,https://i.scdn.co/image/ab67616d0000b2733b52eca47232bedfbb5e9443,1,1,171029,https://p.scdn.co/mp3-preview/b7569664e112640a6125846e25340f3c8c2cfa14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBUM71807386,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop,pop,r&b",0.741,0.52,8.0,-7.513,1.0,0.0656,0.447,1.97e-06,0.222,0.347,102.998,4.0,,PLG - Capitol,"C © 2019 Universal Music Operations Limited, P ℗ 2019 Universal Music Operations Limited",4271 +4272,spotify:track:3UjxO35ogJAaSLi6h1jgbr,Maggie,spotify:artist:53UCUopHRBowldiFYqYdzA,Foster & Allen,spotify:album:4WnOooVDcsps8nst9sWM4n,The Golden Collection,spotify:artist:53UCUopHRBowldiFYqYdzA,Foster & Allen,2017-04-04,https://i.scdn.co/image/ab67616d0000b2730b6b58cd87b0b2fc780757f9,1,60,212720,https://p.scdn.co/mp3-preview/f44d15e616cc289cf513be80d50256ad340951b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBLG0400327,spotify:user:bradnumber1,2021-08-08T09:26:31Z,irish country,0.343,0.265,4.0,-6.549,1.0,0.028,0.786,5.46e-05,0.232,0.326,106.726,4.0,,CMR Records International Pty Ltd,"C 2017 CMR Records International Pty Ltd, P 2017 CMR Records International Pty Ltd",4272 +4273,spotify:track:4zweVv3Wa6XgexhoUOzkYs,Secrets,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:4ySSx2L6h2siW22LK6dwhN,Waking Up,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2009-01-01,https://i.scdn.co/image/ab67616d0000b273ab4c5504803f9287ffd670ae,1,3,224693,https://p.scdn.co/mp3-preview/9d4f7b744f64701c619f255693a33367039981ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70985644,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.516,0.764,2.0,-6.223,1.0,0.0366,0.0717,0.0,0.115,0.376,148.021,4.0,,Universal Music Group,"C © 2009 Mosley Music/Interscope Records, P ℗ 2009 Mosley Music/Interscope Records",4273 +4274,spotify:track:4RE3vueod5PL48rvHtuu9C,Peer Pressure,"spotify:artist:4EzkuveR9pLvDVFNx6foYD, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","James Bay, Julia Michaels",spotify:album:2aIsEIVLrAP75xdEhdVm1d,Oh My Messy Mind,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,2019-05-10,https://i.scdn.co/image/ab67616d0000b2734b32688c63234ca628de1cc9,1,1,176826,https://p.scdn.co/mp3-preview/0fee1bcb679049f6a5041de5052b7a18fd9027bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USUM71901255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop,uk pop,pop",0.631,0.715,1.0,-6.083,0.0,0.0277,0.0299,0.0,0.122,0.42,135.826,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",4274 +4275,spotify:track:2xBmOFFbjtgCgl9vciZsj6,Love Love Love,spotify:artist:1PX8bguYn6ba8NaBOJuu8A,Avalanche City,spotify:album:4947V6p7q0jYID24M3r7Aw,Our New Life Above The Ground,spotify:artist:1PX8bguYn6ba8NaBOJuu8A,Avalanche City,2011,https://i.scdn.co/image/ab67616d0000b273326ccbc8bd3b61faad78ed04,1,1,192826,https://p.scdn.co/mp3-preview/386ff592b10289dfe83089401b34138358a80d06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUWA01100032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nz folk,0.519,0.494,6.0,-5.399,1.0,0.0263,0.188,0.0,0.159,0.243,99.909,4.0,,WM Australia,"C © 2010 WARNER MUSIC AUSTRALIA PTY LIMITED. MARKETED, MANUFACTURED AND DISTRIBUTED IN AUSTRALIA BY WARNER MUSIC AUSTRALIA PTY LIMITED. A WARNER MUSIC GROUP COMPANY. www.warnermusic.com.au, P ℗ 2010 WARNER MUSIC AUSTRALIA PTY LIMITED",4275 +4276,spotify:track:7CR5YKdvJj0bzUnWOfn2Yy,Earthquake (feat. Tinie Tempah) - Radio Edit,"spotify:artist:2feDdbD5araYcm6JhFHHw7, spotify:artist:0Tob4H0FLtEONHU1MjpUEp","Labrinth, Tinie Tempah",spotify:album:438LlcFxOoGZ37sJiITrVd,Earthquake - EP,spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,2011-10-23,https://i.scdn.co/image/ab67616d0000b27326c7ae68a581f71f46a6089c,1,3,217531,https://p.scdn.co/mp3-preview/8849885461a0e3c4286eced50a62c8e609de190f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBHMU1100056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie poptimism,pop,dance pop,grime,pop rap",0.52,0.853,0.0,-3.62,0.0,0.133,0.14,0.0,0.0927,0.306,153.09,4.0,,Syco Music,P (P) 2020 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,4276 +4277,spotify:track:3t7sGit21WDOjYkqh3Y9yB,The Itch,spotify:artist:3OsUvoKmZA2gw8rETtxGlz,Vitamin C,spotify:album:1gWjx7YRfHyTr2ixHiPhCV,More,spotify:artist:3OsUvoKmZA2gw8rETtxGlz,Vitamin C,2001-01-30,https://i.scdn.co/image/ab67616d0000b2736d66154bddae29858a63a23a,1,1,208733,https://p.scdn.co/mp3-preview/aa7a2974cb78b81588a133f9819c36b836348eee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USEE10001499,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.694,0.947,11.0,-3.91,0.0,0.0546,0.00621,0.0395,0.133,0.518,105.019,4.0,,Elektra Records,"C © 2000 Elektra Entertainment Group Inc., for the United States and WEA International, Inc. for the world outside of the United States., P ℗ 2000 Elektra Entertainment Group Inc., for the United States and WEA International, Inc. for the world outside of the United States.",4277 +4278,spotify:track:2EK2AZ0MYNsO8cgkC6DwAT,100% Pure Love,spotify:artist:2sd9Q3r0Jhqpe3w9WVuG43,Crystal Waters,spotify:album:7e1IudUOM1OAsNpazQAbti,"Body By Jake: '90s Throwback Tune-Up: Biking, Hiking, Climbing, Walking, Lifting (BPM 99-140)",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-12-11,https://i.scdn.co/image/ab67616d0000b273d74c046902354511f75beb3e,2,4,280613,https://p.scdn.co/mp3-preview/ac91c3b81acc22929a52dce052d53dceeee5ca23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39400444,spotify:user:bradnumber1,2021-08-08T09:26:31Z,diva house,0.814,0.854,1.0,-4.818,1.0,0.0485,0.166,0.00822,0.0754,0.74,120.238,4.0,,Universal Music Group,"C © 2015 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2015 Universal Music Enterprises, a Division of UMG Recordings, Inc.",4278 +4279,spotify:track:3tSmXSxaAnU1EPGKa6NytH,In the End,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:2pKw6GERJVAD61449B1EEM,Hybrid Theory,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2000,https://i.scdn.co/image/ab67616d0000b2736741ca6e9ba6fdc166037321,1,8,216800,https://p.scdn.co/mp3-preview/40d41971c056daf99908b1dd1792b7f7b8e9c06d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USWB10002407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.555,0.844,3.0,-6.567,0.0,0.0554,0.00834,0.0,0.0895,0.464,105.195,4.0,,Warner Records,"C © 2000 Warner Records Inc., P ℗ 2000 Warner Records Inc.",4279 +4280,spotify:track:58fOMJ6wNZrptyUfp3yvYL,Where Did I Go Wrong,spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,spotify:album:3kJykwbganHXDTgnqNSFXT,UB40,spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,1988-01-01,https://i.scdn.co/image/ab67616d0000b273d6c53bf664d55a36fa07724a,1,7,232733,https://p.scdn.co/mp3-preview/7d9abf6ba933bffee03c7ef407c409d8309992e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAAA8800354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,uk reggae",0.789,0.444,10.0,-13.998,0.0,0.042,0.0929,0.000551,0.156,0.968,96.893,4.0,,Virgin Records,"C © 1988 DEP International, P ℗ 1988 Virgin Records Limited",4280 +4281,spotify:track:4oDZ5L8izBals6jKBJDBcX,Your Love,spotify:artist:1zxDewzd2j1ZdSBGaYcr0y,The Outfield,spotify:album:2d5GU9ms5JCSS9GjsFebu8,Play Deep,spotify:artist:1zxDewzd2j1ZdSBGaYcr0y,The Outfield,1985-06-29,https://i.scdn.co/image/ab67616d0000b273d8b8307316208d35b9d7094d,1,2,216466,https://p.scdn.co/mp3-preview/bff1bf9d33dfeec5c01501b023a6c59a44af2be4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USSM10100176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,power pop,0.579,0.654,1.0,-12.421,0.0,0.0553,0.121,3.62e-06,0.0673,0.616,129.537,4.0,,Columbia/Legacy,P (P) 1985 Sony Music Entertainment,4281 +4282,spotify:track:6NGi23FFKq9tH5NR1NcTw2,Let Her Cry,spotify:artist:08ct2eZF5lUPdJpHwNKWof,Hootie & The Blowfish,spotify:album:5AYmpTfdv1OoASUJ5rZB7K,Cracked Rear View,spotify:artist:08ct2eZF5lUPdJpHwNKWof,Hootie & The Blowfish,1994-07-01,https://i.scdn.co/image/ab67616d0000b273820d2376b2fb84aa99823903,1,3,318533,https://p.scdn.co/mp3-preview/37f8eeafeb0c900febb1e19ecaaabce2b329e387?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT29400022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.352,0.698,7.0,-6.278,1.0,0.0303,0.0353,0.0,0.113,0.256,142.57,4.0,,Atlantic Records,"C © 1994 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved. Made in U.S.A. Warning: Unauthorized reproduction of this recording is prohibited by Federal law and subject to criminal prosecution. 82613-2, P ℗ 1994 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved. Made in U.S.A. Warning: Unauthorized reproduction of this recording is prohibited by Federal law and subject to criminal prosecution. 82613-2",4282 +4283,spotify:track:4FCb4CUbFCMNRkI6lYc1zI,Hero,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:2NKxb7pk04CuZab5udkGUl,Music Box,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,1993-08-31,https://i.scdn.co/image/ab67616d0000b2734c0f9e15bccb777f14b9a228,1,2,257733,https://p.scdn.co/mp3-preview/f40d552f45eea5ec65a49d096c0c65690f8ca97a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USSM19303171,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.495,0.378,4.0,-9.37,1.0,0.0293,0.734,0.0,0.119,0.177,120.06,4.0,,Columbia,"P (P) 1993 Columbia Records, a division of Sony Music Entertainment",4283 +4284,spotify:track:0qV46pQUvzzq0pgibcm9Ut,Unbreakable,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:0LrMWmjzLGEWIvJwnFqFLt,Unbreakable,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,2015-09-04,https://i.scdn.co/image/ab67616d0000b273551a235a3c1458bb07c12979,1,1,218342,https://p.scdn.co/mp3-preview/9cf16f07b5ad2a6f455d82012c787ce76482a2b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMRSZ1501295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.599,0.524,1.0,-8.036,1.0,0.13,0.157,0.0,0.238,0.43,83.013,4.0,,Rhythm Nation/BMG Recorded Music,"C 2015 Black Doll, Inc. under exclusive license to BMG Rights Management (US) LLC, P 2015 Black Doll, Inc. under exclusive license to BMG Rights Management (US) LLC",4284 +4285,spotify:track:7glzqUBop8ap2uWx9J0SC6,Monsters,spotify:artist:47yawJswuSfSvizYhItoOP,Something For Kate,spotify:album:5s4K0h0B1ILpWyC0lrKe79,Echolalia (Deluxe Edition),spotify:artist:47yawJswuSfSvizYhItoOP,Something For Kate,2001-07-04,https://i.scdn.co/image/ab67616d0000b273036e1a7db04c755fda395262,1,4,219173,https://p.scdn.co/mp3-preview/a775e2551dca43a77167c16c59bb85cbe48b0ffa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUSM00100031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian rock",0.423,0.783,1.0,-6.052,1.0,0.0357,0.000337,0.000245,0.169,0.522,110.728,4.0,,Sony Music Entertainment,P (P) 2001 Sony Music Entertainment (Australia) Limited,4285 +4286,spotify:track:2TxCwUlqaOH3TIyJqGgR91,Mamma Mia,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1kM6xcSYO5ASJaWgygznL7,Abba,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1975,https://i.scdn.co/image/ab67616d0000b27392d0747a634fcc351c6ac3c2,1,1,213266,https://p.scdn.co/mp3-preview/b578f8867804a1545b49ef6aea52bd0b8ec766d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,SEAYD7501010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.749,0.748,2.0,-7.011,1.0,0.0323,0.295,0.000443,0.469,0.827,137.547,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",4286 +4287,spotify:track:3BSRcRHsiEy4ooWA7jw7Wg,Easy Lover,"spotify:artist:6ZNeppgfBLPUyugks9Yn1u, spotify:artist:4lxfqrEsLX6N1N4OCSkILp","Philip Bailey, Phil Collins",spotify:album:7JMCp01zeOklwKDLtsOdKC,Chinese Wall,spotify:artist:6ZNeppgfBLPUyugks9Yn1u,Philip Bailey,1985-05-05,https://i.scdn.co/image/ab67616d0000b273bb2f5d5fc61499aaa62bfdb5,1,6,304306,https://p.scdn.co/mp3-preview/67ae8df6bc4b94656d0ffad5d17e91ca0ec28cbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USSM18400801,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"yacht rock,rock drums,soft rock",0.746,0.701,1.0,-13.093,1.0,0.0356,0.0635,0.00132,0.0628,0.934,128.912,4.0,,Columbia,P (P) 1984 Sony Music Entertainment Inc.,4287 +4288,spotify:track:4kux0P5UfguojB4h0lQnsj,STAY (with Justin Bieber),"spotify:artist:2tIP7SsRs7vjIcLrU85W8J, spotify:artist:1uNFoZAHBGtllmzznpCI3s","The Kid LAROI, Justin Bieber",spotify:album:4Lc269uQdu2XPJC1aZBR1E,STAY (with Justin Bieber),"spotify:artist:2tIP7SsRs7vjIcLrU85W8J, spotify:artist:1uNFoZAHBGtllmzznpCI3s","The Kid LAROI, Justin Bieber",2021-07-09,https://i.scdn.co/image/ab67616d0000b273809ac854713e65ce1f4d4bdd,1,1,141805,https://p.scdn.co/mp3-preview/27954d3eda82a608c10ca156f841fcff6d3aa2c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM12104470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,canadian pop,pop",0.585,0.794,1.0,-5.518,1.0,0.0521,0.0356,0.0,0.104,0.477,169.965,4.0,,Columbia,"P (P) 2021 Columbia Records, a Division of Sony Music Entertainment",4288 +4289,spotify:track:0ZvsBTqdcOKdvQSV11YG9V,True Blue - 1986 Version,spotify:artist:5kPsbSWuadXAb2wheoVRkf,John Williamson,spotify:album:5M2PUXuOVJ4YhsSkQNIKD3,Mallee Boy,spotify:artist:5kPsbSWuadXAb2wheoVRkf,John Williamson,1986,https://i.scdn.co/image/ab67616d0000b2736de24deb3929515c62de0a1a,1,7,242240,https://p.scdn.co/mp3-preview/1215e25e5aca4e2228004a1f90a02e19b6237d0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUEQ08600008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian children's music,australian country,australian rock,bush ballad",0.545,0.282,5.0,-13.797,1.0,0.0356,0.699,1.83e-05,0.106,0.519,108.868,4.0,,WM Australia,"C © 1986 Emusic Pty. Ltd, P ℗ 1986 Emusic Pty. Ltd.",4289 +4290,spotify:track:5gTzTrw6ORSPWK9qxVKCnf,Live It Up,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:5iTdMXmcuJl7bqVIsIJ76D,Essential As Anything,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,2015-10-02,https://i.scdn.co/image/ab67616d0000b273dd1b2cbb40cb1aa0e5e8484d,1,16,227826,https://p.scdn.co/mp3-preview/db49e24a207b9c0cc14b6ca39feaa684496195bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUFE00800015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.675,0.897,7.0,-4.26,1.0,0.0282,0.291,0.0,0.0861,0.944,119.835,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Syray Music, P This Compilation ℗ 2015 Syray Music",4290 +4291,spotify:track:42ziF34uW56yqVpDQKLVp9,Enough (feat. Gizzle),"spotify:artist:2g6fa86fL6oLcoDqanBbuR, spotify:artist:0xukYGKRRwBWS1N9sfCQoq","Delta Goodrem, Gizzle",spotify:album:3nAFLD3z8uMzU6BOo13jai,Wings of the Wild,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2016-07-01,https://i.scdn.co/image/ab67616d0000b27365028f49de79b27dc653d9df,1,6,268527,https://p.scdn.co/mp3-preview/a70bbda8c614a9f43f952477d5f24e8fd1ec4bb8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUBM01600232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.433,0.761,0.0,-3.873,1.0,0.0482,0.133,1.16e-06,0.147,0.357,83.797,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,4291 +4292,spotify:track:3wuCCNCnBhJlwkIJTBZFiv,They Don't Care About Us,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:3OBhnTLrvkoEEETjFA3Qfk,"HIStory - PAST, PRESENT AND FUTURE - BOOK I",spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1995-06-16,https://i.scdn.co/image/ab67616d0000b273d0593178c6c2594693ee34b7,2,2,284160,https://p.scdn.co/mp3-preview/bd1e519e31341a8bdebb46c96f759d74e18e98c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM19500629,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.859,0.905,0.0,-5.539,0.0,0.129,0.205,0.00837,0.322,0.731,89.946,4.0,,Epic,"P (P) 1979, 1982, 1987, 1988, 1991, 1995 MJJ Productions Inc.",4292 +4293,spotify:track:6gFIFMI3tsrM5QojcvVMfZ,Strut,spotify:artist:5dcOK4stT4JDkP6Dqhbz5s,Sheena Easton,spotify:album:2lKV4ibm7fbNuU0sfGuRmK,A Private Heaven [Bonus Tracks Version],spotify:artist:5dcOK4stT4JDkP6Dqhbz5s,Sheena Easton,1984,https://i.scdn.co/image/ab67616d0000b273f83590ebf04aec664a3b47e9,1,1,240960,https://p.scdn.co/mp3-preview/f1e64d1fab1944df003f0a4c6c59c928c923c838?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAYE8400117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,minneapolis sound,new romantic,new wave pop,soft rock",0.912,0.751,1.0,-11.29,1.0,0.0391,0.295,0.00223,0.141,0.975,114.659,4.0,,RT Industries,"C © 2013 RT Industries, P ℗ 2013 RT Industries",4293 +4294,spotify:track:2x0RZdkZcD8QRI53XT4GI5,SOS (feat. Aloe Blacc),"spotify:artist:1vCWHaC5f2uS3yhpwWbIA6, spotify:artist:0id62QV2SZZfvBn9xpmuCl","Avicii, Aloe Blacc",spotify:album:6Ad1E9vl75ZB3Ir87zwXIJ,TIM,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2019-06-06,https://i.scdn.co/image/ab67616d0000b273660ee24281a547103f466ff5,1,3,157202,https://p.scdn.co/mp3-preview/5f708e2e99298b3ff1842b5c2da565dbd7b1f608?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,SE5R71900201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,pop soul,r&b",0.802,0.645,5.0,-6.181,0.0,0.0715,0.272,0.0,0.119,0.376,100.001,4.0,,Universal Music AB,"C © 2019 Avicii Recordings AB, under exclusive license to Universal Music AB, P ℗ 2019 Avicii Recordings AB, under exclusive license to Universal Music AB",4294 +4295,spotify:track:4g2B1iGsws8hpI5c2Rx7Ko,You've Got Your Troubles - Remastered,spotify:artist:4GpIeE34rBNFppvYsWle9c,The Fortunes,spotify:album:3fCrHxhyBJAOwsC88DFsNE,The Very Best (Remastered),spotify:artist:4GpIeE34rBNFppvYsWle9c,The Fortunes,2015-11-07,https://i.scdn.co/image/ab67616d0000b27300176de56409ab687f6ec82d,1,7,208143,https://p.scdn.co/mp3-preview/ebba9f9d2efeba238ee2a09d79262b83043af597?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,ES6601503735,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.628,0.764,4.0,-9.184,1.0,0.0319,0.28,0.0,0.415,0.587,131.469,4.0,,Rock Me Tender,"C 2015 Caribe Sound, P 2015 Caribe Sound",4295 +4296,spotify:track:4qiVbHlE4gdQHM79Hx4hPD,What If,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:0DEsmIQ5ir7tz52Nkf4i1K,Jason Derulo (International),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2010-02-26,https://i.scdn.co/image/ab67616d0000b273293e8055dd8814fcdf4742f7,1,5,203240,https://p.scdn.co/mp3-preview/cc97a171bc969dc298f8eb09919a2fa3b7a4c5b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB10905330,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.429,0.757,1.0,-2.912,1.0,0.0306,0.14,0.0,0.144,0.538,82.517,4.0,,Beluga Heights/Warner Records,"C © 2010 Warner Records Inc., P ℗ 2010 Warner Records Inc.",4296 +4297,spotify:track:3oap5wNMWwX1dT3AVKwLzH,Nine in the Afternoon - Single Mix,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:78EcStHa23JPRmLNan5fST,Pretty. Odd.,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,2008-03-24,https://i.scdn.co/image/ab67616d0000b273b3fa57a93a0305d26cb06223,1,2,191560,https://p.scdn.co/mp3-preview/2074eeef1ae2d59fcde4e006c5825bce765ed6c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT20801101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.405,0.689,10.0,-5.75,1.0,0.0365,0.0843,0.0,0.207,0.397,155.189,4.0,,Decaydance/Fueled By Ramen/ATL,"C © 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4297 +4298,spotify:track:0CNjoQozZP0mB9rKVdrKGx,Toothbrush,spotify:artist:6T5tfhQCknKG4UnH90qGnz,DNCE,spotify:album:7K89F9bgY1jks0uIlMerm3,DNCE,spotify:artist:6T5tfhQCknKG4UnH90qGnz,DNCE,2016-11-18,https://i.scdn.co/image/ab67616d0000b273a19a2912e1618ada66b2e6e8,1,5,231813,https://p.scdn.co/mp3-preview/f0fdce4aa1e0bad7f86bd5f36c6b4cf2ceae5be4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516725,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.557,0.791,7.0,-5.771,1.0,0.138,0.12,0.0,0.397,0.85,104.908,4.0,,Universal Music Group,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",4298 +4299,spotify:track:37BZB0z9T8Xu7U3e65qxFy,Save Your Tears (with Ariana Grande) (Remix),"spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR","The Weeknd, Ariana Grande",spotify:album:2fyOpT5c9kxR8zbDh6UtXh,Save Your Tears (Remix),"spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR","The Weeknd, Ariana Grande",2021-04-23,https://i.scdn.co/image/ab67616d0000b273c6af5ffa661a365b77df6ef6,1,1,191013,https://p.scdn.co/mp3-preview/111eb776b2884b2940e31b769f5dd99e8cc6ce6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USUG12101839,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop,pop",0.65,0.825,0.0,-4.645,1.0,0.0325,0.0215,2.44e-05,0.0936,0.593,118.091,4.0,,Republic Records,"C © 2021 UMG Recordings, Inc., P ℗ 2021 UMG Recordings, Inc.",4299 +4300,spotify:track:0yv6BYFfviMImtUPwzEXQp,Secret,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,15,268413,https://p.scdn.co/mp3-preview/ca2efb41e383195db54b13aba37383c6165f19ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USWB10903612,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.769,0.702,1.0,-5.705,1.0,0.027,0.0581,2.09e-06,0.114,0.453,100.096,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",4300 +4301,spotify:track:1eFOYKVociYWN0RwUgJFvY,The Very Thought of You,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:2OXZJLXxM8jrY3gBoVNfmz,Nobody but Me (Deluxe),spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2016-10-21,https://i.scdn.co/image/ab67616d0000b273576629f3c4631eb55612a7c7,1,6,211613,https://p.scdn.co/mp3-preview/3fa9d84c15417e421eabb191990df2a9fb8ff22e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USRE11600455,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.255,0.131,5.0,-10.896,1.0,0.0323,0.713,0.00102,0.107,0.11,173.134,3.0,,Reprise,"C © 2016 Reprise Records, P ℗ 2016 Reprise Records",4301 +4302,spotify:track:69bp2EbF7Q2rqc5N3ylezZ,Sorry,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,4,200786,https://p.scdn.co/mp3-preview/eca5a32b13f68f700b06e06ffdc8110e61e232ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USUM71516760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.654,0.76,0.0,-3.669,0.0,0.045,0.0797,0.0,0.299,0.41,99.945,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",4302 +4303,spotify:track:5v2IyRFbo4cEc2vZyGTAs0,If It's Love,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:7tEPbuzTMNGSytEMdezXtS,"Save Me, San Francisco (Golden Gate Edition)",spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2009,https://i.scdn.co/image/ab67616d0000b2735d3e2c61526cb8e62a6a341d,1,6,239040,https://p.scdn.co/mp3-preview/45430fc925f9ea60b8095f6d770bdc2792c1954b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10904110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.625,0.918,6.0,-3.481,1.0,0.145,0.0127,2.94e-06,0.302,0.639,94.965,4.0,,Columbia,"P (P) 2009, 2010 Sony Music Entertainment",4303 +4304,spotify:track:7KB4SeLfd4Ko7rjByIuiOx,Just a Gigolo / I Ain't Got Nobody,spotify:artist:0KyCXNSa7ZMb5LydfKbLG3,David Lee Roth,spotify:album:2CLt8z7ozftRAx6I37C7rE,Crazy from the Heat,spotify:artist:0KyCXNSa7ZMb5LydfKbLG3,David Lee Roth,1985-01-15,https://i.scdn.co/image/ab67616d0000b2736cf7c4cfee80ee7ec11bfd87,1,2,284680,https://p.scdn.co/mp3-preview/2b77cb84dc41cf9f74d94f55f634a55d7d4f4136?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USWB10102430,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock",0.577,0.903,8.0,-4.736,1.0,0.0592,0.447,1.44e-05,0.0477,0.629,124.515,4.0,,Warner Records,"C © 1985 Diamond Dave Enterprises, Inc., P ℗ 1985 Warner Records Inc.",4304 +4305,spotify:track:2ZcNJZJZlXP9GFBqnBwBON,Stagger Lee,spotify:artist:3g4Os4LNZvOQUaokeSLCwG,P.J. Proby,spotify:album:0b2xrTpWhBe6DUzrP1I4ij,The EP Collection,spotify:artist:3g4Os4LNZvOQUaokeSLCwG,P.J. Proby,1996,https://i.scdn.co/image/ab67616d0000b27343020d8e3d10c17de7458ce0,1,26,137626,https://p.scdn.co/mp3-preview/3ff8749f86070eae6e01de2c97d27e61afe57bb0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBVVQ1501356,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"merseybeat,rock-and-roll",0.28,0.721,2.0,-9.5,1.0,0.0713,0.413,0.0,0.217,0.505,102.88,3.0,,See For Miles,"C 1996 See For Miles Ltd, P 1996 See For Miles Records Ltd",4305 +4306,spotify:track:0emd9tHSVP4dK6UG4pcOFD,Something In The Air,spotify:artist:1USHlPahTZrCeJXS2v5pkF,Thunderclap Newman,spotify:album:0McWkQTsU9eYngOswvNs87,Hollywood Dream (Expanded Edition),spotify:artist:1USHlPahTZrCeJXS2v5pkF,Thunderclap Newman,1969-01-01,https://i.scdn.co/image/ab67616d0000b2732aa39070340f902ce294caec,1,1,234360,https://p.scdn.co/mp3-preview/9b8ca8470838e7f9a018098159199dcc8c4df1c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBF066925310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.506,0.402,8.0,-11.743,0.0,0.0256,0.307,1.25e-05,0.0814,0.54,94.221,4.0,,UMC (Universal Music Catalogue),"C © 1990 Polydor Ltd. (UK), P ℗ 1990 Polydor Ltd. (UK)",4306 +4307,spotify:track:32fKHW6Eac4yBXn9WY7Aic,All Those Years Ago - Remastered 2004,spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,spotify:album:574Ws1iXSN3oLjtWyfoMZH,Somewhere In England,spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,1981-06-01,https://i.scdn.co/image/ab67616d0000b2732a7068a793c8ed7451a870d2,1,4,227320,https://p.scdn.co/mp3-preview/ffccfe912136d6fd33aecb94de662452add7e4a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEXP0300025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.555,0.639,2.0,-6.832,1.0,0.033,0.137,1.99e-05,0.0733,0.518,125.77,4.0,,Parlophone,"C © 2007 Umlaut Corp, P ℗ 2007 Umlaut Corp",4307 +4308,spotify:track:6FKEKabBd5U1zFsALjml4l,Need U (100%) - Radio Edit,"spotify:artist:61lyPtntblHJvA7FMMhi7E, spotify:artist:0tMbQtD3YwrVFk9Lb6abmB","Duke Dumont, A*M*E",spotify:album:2CqlH8mZqjkSWz3eT00wRl,Need U (100%),spotify:artist:61lyPtntblHJvA7FMMhi7E,Duke Dumont,2013-01-01,https://i.scdn.co/image/ab67616d0000b273bc85cda35258780c850c25ba,1,1,174121,https://p.scdn.co/mp3-preview/58f1d65170cd53fc32f3246fb5077a77d3ed1d81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBCEN1300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,house,pop dance,progressive house,uk dance,uk pop",0.67,0.848,0.0,-5.103,0.0,0.0537,0.00174,0.00168,0.385,0.457,124.029,4.0,,Hussle,"C © 2013 Ministry of Sound Recordings Ltd., P ℗ 2013 Ministry of Sound Recordings Ltd., under exclusive license to etcetc Music Pty Ltd",4308 +4309,spotify:track:63SevszngYpZOwf63o61K4,Nevermind,spotify:artist:3EOEK57CV77D4ovYVcmiyt,Dennis Lloyd,spotify:album:6c5gDwB7Xo58thk2vap4Ch,Nevermind,spotify:artist:3EOEK57CV77D4ovYVcmiyt,Dennis Lloyd,2017-06-30,https://i.scdn.co/image/ab67616d0000b2734dbdd4d3c69bec0d471fc479,1,1,156600,https://p.scdn.co/mp3-preview/53dfd244b22ffa132a91d7b224885f44c2a776ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USHM91642610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,israeli pop,0.6,0.688,5.0,-8.339,0.0,0.201,0.159,1.29e-05,0.409,0.0793,99.977,4.0,,WM Italy,"C © 2017 TIME SpA under exclusive license to Warner Music Italia S.r.l., P ℗ 2017 TIME SpA under exclusive license to Warner Music Italia S.r.l.",4309 +4310,spotify:track:0c55VBoJ66KEqYtUFryoFI,Cuz I Love You,spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,spotify:album:7hBV0wo7cDHZQLYnuOJ312,Cuz I Love You (Super Deluxe),spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,2019-04-17,https://i.scdn.co/image/ab67616d0000b273bf7d271b8f3051af3cf0bf55,1,1,180954,https://p.scdn.co/mp3-preview/e2ac7ea9895f51f0c1ecbc6594fdf51c9709612b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USAT21902515,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"escape room,minnesota hip hop,pop,trap queen",0.565,0.659,1.0,-4.057,1.0,0.0489,0.0159,0.0,0.235,0.519,162.178,3.0,,Nice Life/Atlantic,"C © 2019 Nice Life Recording Company and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2019 Nice Life Recording Company and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4310 +4311,spotify:track:41UNhdanhm2iPiwxzt3iZH,The Day Before I Met You,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:3XT3rHDWteNpQNhnARN7Ap,Beautiful (Platinum Edition),spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2014-11-21,https://i.scdn.co/image/ab67616d0000b27317cd27fa89c1fcb8e845d88e,1,15,213440,https://p.scdn.co/mp3-preview/2cc62f1497a2a4dd9c0b08a7546a0c84b6593d7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUBM01400575,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.655,0.803,1.0,-4.708,0.0,0.118,0.0439,0.0,0.172,0.518,107.976,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd. except tracks 14-18 (P) 2014 Sony Music Entertainment Australia Pty Ltd.,4311 +4312,spotify:track:3f7gYMirBEKuc57218BjOY,California Gurls,"spotify:artist:6jJ0s89eD6GaHleKKya26X, spotify:artist:7hJcb9fa4alzcOq3EaNPoG","Katy Perry, Snoop Dogg",spotify:album:06SY6Ke6mXzZHhURLVU57R,Teenage Dream,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2010-08-24,https://i.scdn.co/image/ab67616d0000b273f619042d5f6b2149a4f5e0ca,1,3,234653,https://p.scdn.co/mp3-preview/68a9e935c2d5b857dc4da49d5be2789f3d392e03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USCA21001135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,g funk,gangster rap,hip hop,pop rap,rap,west coast rap",0.789,0.753,0.0,-3.71,1.0,0.0537,0.0038,0.0,0.18,0.403,125.007,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",4312 +4313,spotify:track:6lrRIfQDcikJ5y5DtyZPuJ,Can't Let You Go (feat. Mike Shorey & Lil' Mo),"spotify:artist:0YWxKQj2Go9CGHCp77UOyy, spotify:artist:15qg3Tr23aMVGAruYtlMdg, spotify:artist:5wBDD4FNJvob5fAGkAIQ92","Fabolous, Mike Shorey, Lil' Mo",spotify:album:46tIBaFs0Ov0HJsCDrq1Kl,Street Dreams (Bonus Track),spotify:artist:0YWxKQj2Go9CGHCp77UOyy,Fabolous,2003-02-01,https://i.scdn.co/image/ab67616d0000b273037fdf3967f20c4191ed0a39,1,5,223973,https://p.scdn.co/mp3-preview/ac46593c4808bc6c8ffa515dafe14a183530c903?cid=9950ac751e34487dbbe027c4fd7f8e99,True,57,USEE10340000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gangster rap,hip hop,pop rap,rap,trap,urban contemporary,contemporary r&b,hip pop,r&b,urban contemporary",0.646,0.6,9.0,-6.569,1.0,0.458,0.231,0.0,0.0794,0.811,192.082,4.0,,Elektra Records,"C © 2003 Elektra Entertainment for the United States and WEA International Inc. for the world outside of the United States.2, P ℗ 2003 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States.",4313 +4314,spotify:track:0hb4WhqDKbFV0H17HGy47u,So Yesterday,spotify:artist:2S9W9aSAd7e5mp8WqWxN2h,Hilary Duff,spotify:album:0avvQ4S2b7fCEXqnrnzxw7,Most Wanted,spotify:artist:2S9W9aSAd7e5mp8WqWxN2h,Hilary Duff,2005-01-01,https://i.scdn.co/image/ab67616d0000b273bd9e74a68a22edc07f7338de,1,6,215693,https://p.scdn.co/mp3-preview/c50af7e9b2b7cb59d960a9778204918961428d14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USWD10321207,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.562,0.799,0.0,-4.256,1.0,0.0561,0.251,0.0,0.305,0.793,78.244,4.0,,Hollywood Records,"C © 2005 Hollywood Records, Inc., P ℗ 2005 Hollywood Records, Inc.",4314 +4315,spotify:track:42yb3aUH2iUYzbcIelm2f9,This Is How We Party,spotify:artist:4tc5xhcuEtiRizloAL4wZI,S.O.A.P.,spotify:album:7kQtr0cIKu7qZCrCvvkHOD,Not Like Other Girls,spotify:artist:4tc5xhcuEtiRizloAL4wZI,S.O.A.P.,1998-03-17,https://i.scdn.co/image/ab67616d0000b273abd3fef453dcf3536c34b635,1,3,198066,https://p.scdn.co/mp3-preview/cb00faf5adf09278ae9fbc3ac3421762c18b68ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,DKAXS9740001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum dance,0.758,0.911,6.0,-4.192,0.0,0.0409,0.0467,0.00252,0.687,0.911,109.974,4.0,,Soap Records,P (P) 1998 Sony Music Entertainment (Denmark) A/S,4315 +4316,spotify:track:5dnCAH77Y38EqhOKrw4A6G,So Sad The Song,"spotify:artist:2aXiJJHJei5BmCykxI37y0, spotify:artist:1K522fT5ULeq6z60EHOWRt","Gladys Knight, The Pips",spotify:album:3ba2qFLqdzFKot4LoV9LDt,Music & Highlights: Gladys Knight - The Album,spotify:artist:2aXiJJHJei5BmCykxI37y0,Gladys Knight,2013-01-01,https://i.scdn.co/image/ab67616d0000b2734b3f1be055e8dd294280cf95,1,7,233626,https://p.scdn.co/mp3-preview/077f9436b2c16723668663ab1076d5a262ded309?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEB790625063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,motown,quiet storm,soul",0.276,0.237,3.0,-14.046,1.0,0.0298,0.692,0.0983,0.128,0.175,143.706,3.0,,Music & Highlights,"C 2013 Sinostate, P 2013 Memo Media",4316 +4317,spotify:track:3CIyK1V4JEJkg02E4EJnDl,Enemy (with JID) - from the series Arcane League of Legends,"spotify:artist:53XhwfbYqKCa1cC15pYq2q, spotify:artist:6U3ybJ9UHNKEdsH7ktGBZ7, spotify:artist:57nPqD7z62gDdq37US9XJR, spotify:artist:47mIJdHORyRerp4os813jD","Imagine Dragons, JID, Arcane, League of Legends",spotify:album:6yiXkzHvC0OTmhfDQOEWtS,Mercury - Acts 1 & 2,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2022-07-01,https://i.scdn.co/image/ab67616d0000b273fc915b69600dce2991a61f13,1,1,173381,https://p.scdn.co/mp3-preview/7f4f896ba1b8bca78a515778f0ee0da380d198a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USUM72119916,spotify:user:bradnumber1,2022-10-15T22:25:08Z,"modern rock,pop,rock,hip hop,pop rap,rap,underground hip hop,speedrun,video game music",0.728,0.783,11.0,-4.424,0.0,0.266,0.237,0.0,0.434,0.555,77.011,4.0,,Kid Ina Korner / Interscope,"C © 2022 KIDinaKORNER/Interscope Records, P ℗ 2022 KIDinaKORNER/Interscope Records",4317 +4318,spotify:track:3MOECVkNshqHYTPt5DZcdN,Five More Hours,"spotify:artist:6VD4UEUPvtsemqD3mmTqCR, spotify:artist:7bXgB6jMjp9ATFy66eO08Z","Deorro, Chris Brown",spotify:album:1J6b7W1nSHH7BObK8zIoEY,Good Evening,spotify:artist:6VD4UEUPvtsemqD3mmTqCR,Deorro,2017-03-31,https://i.scdn.co/image/ab67616d0000b273fe3951b474a76b0f25e3c760,1,26,211975,https://p.scdn.co/mp3-preview/39cb89399b05a99dd14a7cc0ddf13fd426db97df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUS11203275,spotify:user:bradnumber1,2022-05-18T21:48:48Z,"dutch house,edm,electro house,melbourne bounce,melbourne bounce international,pop dance,progressive electro house,r&b,rap",0.699,0.883,5.0,-3.226,0.0,0.219,0.0288,0.0,0.817,0.499,127.961,4.0,,"Ultra Records, LLC","P (P) 2017 Ultra Records, LLC",4318 +4319,spotify:track:2IAQnOWKWjj1iA166KznVd,Never Ending Story,spotify:artist:7LTzUnZaptYfAFmvqW5M6D,Limahl,spotify:album:6ufy7fmrQRv2sh2cJI5GES,The Never Ending Story,"spotify:artist:2nwNBRZ0DZlRAQBBO0Pdym, spotify:artist:6jU2Tt13MmXYk0ZBv1KmfO","Klaus Doldinger, Giorgio Moroder",1984,https://i.scdn.co/image/ab67616d0000b27312c639f81260096132a4332f,1,1,210013,https://p.scdn.co/mp3-preview/79ebfa0e736046f461a17f1f9d9de20cd0cc5f9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAYE8400104,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.579,0.803,0.0,-7.588,1.0,0.0281,0.22,0.00116,0.22,0.77,122.422,4.0,,Parlophone UK,"C © 1984 Neue Constantin Film GmbH under exclusive licence to Parlophone Records Ltd, P ℗ 1984 Neue Constantin Film GmbH under exclusive licence to Parlophone Records Ltd",4319 +4320,spotify:track:3bbUkaQYGQHkx1TJi7gPSL,Kryptonite,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,spotify:album:6P77jds0hG6gVzUuIQVj7E,The Better Life - Deluxe Edition,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,2007-01-01,https://i.scdn.co/image/ab67616d0000b273a9a6642f0f265090c8150282,1,1,233826,https://p.scdn.co/mp3-preview/55c8389bc8dfbe118e97ecd05f027e9ad59cd99d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR19980187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.547,0.87,11.0,-5.098,0.0,0.0286,0.00494,3.48e-05,0.161,0.514,99.014,4.0,,Universal Music Group,"C © 2007 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2007 Universal Records, a Division of UMG Recordings, Inc.",4320 +4321,spotify:track:1OAh8uOEOvTDqkKFsKksCi,Wild Thoughts (feat. Rihanna & Bryson Tiller),"spotify:artist:0QHgL1lAIqAw0HtD7YldmP, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:2EMAnMvWE2eb56ToJVfCWs","DJ Khaled, Rihanna, Bryson Tiller",spotify:album:4JBZ0QHveEpESepanNBG8A,Grateful,spotify:artist:0QHgL1lAIqAw0HtD7YldmP,DJ Khaled,2017-06-22,https://i.scdn.co/image/ab67616d0000b273f2b55cfff049e03f92834b50,1,3,204173,https://p.scdn.co/mp3-preview/6cb559942aad2251877b4a4d0a911a21cb4b2d80?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,USSM11705088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,miami hip hop,pop rap,rap,barbadian pop,pop,urban contemporary,kentucky hip hop,r&b,rap",0.671,0.672,0.0,-3.094,0.0,0.0688,0.0329,0.0,0.118,0.632,97.979,4.0,,Epic/We The Best,"P (P) 2017 We The Best x Influence. Exclusively distributed by Epic Records, a division of Sony Music Entertainment.",4321 +4322,spotify:track:3YyRYbYOpR3LrPUL1B41Mx,Sugar Me,spotify:artist:4JGuGmGbuR0IenXlKVLXRN,Lynsey De Paul,spotify:album:2cwy5r6rmqUf04gK998o05,Surprise,spotify:artist:4JGuGmGbuR0IenXlKVLXRN,Lynsey De Paul,1973-03-10,https://i.scdn.co/image/ab67616d0000b2738724ad3facb58ff09f3677d1,1,1,220133,https://p.scdn.co/mp3-preview/2dd2f0e6819f152b4490374cddc6b353d2bbaf65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEHT0600022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.556,0.605,6.0,-9.811,0.0,0.0852,0.14,0.000309,0.346,0.606,92.253,4.0,,Chrysalis Copyrights,"C © 1973 Chrysalis Copyrights Ltd., a BMG Company, P ℗ 1973 Chrysalis Copyrights Ltd., a BMG Company",4322 +4323,spotify:track:7pzdiluN2tVrxsFGyM2Asc,I Lived,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:1Cm6wsvnTlOXrfI9PkD8i4,Native,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2013-01-01,https://i.scdn.co/image/ab67616d0000b2730dcd4d3fb73a5d9ba449a5f3,1,5,234546,https://p.scdn.co/mp3-preview/f81a9290b84a758db43e278aa603de77bb413f6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71301307,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.596,0.846,9.0,-5.415,1.0,0.0456,0.0734,0.0,0.248,0.317,120.017,4.0,,Universal Music Group,"C © 2013 Mosley Music/Interscope Records, P ℗ 2013 Mosley Music/Interscope Records",4323 +4324,spotify:track:0jVPEBd4wyHupkTHwzQRyc,Stranger (feat. Elliphant),"spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY, spotify:artist:134GdR5tUtxJrf8cpsfpyY","Peking Duk, Elliphant",spotify:album:3rYMuQ0Ix2efxlGmtZPCfn,Stranger (feat. Elliphant),spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,2016-10-21,https://i.scdn.co/image/ab67616d0000b273dc11eea274724bffa9e4d82c,1,1,206393,https://p.scdn.co/mp3-preview/6fc602fdc0b68015a254fa7c608eeefb889d3465?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUBM01600357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian electropop,australian indie,edm,electropop,swedish indie pop",0.528,0.874,1.0,-3.028,0.0,0.0456,0.045,0.0,0.0888,0.376,105.042,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,4324 +4325,spotify:track:1Quf5Hv5j6az3QavlmZiQG,To Be Human,"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN, spotify:artist:2feDdbD5araYcm6JhFHHw7","Sia, Labrinth",spotify:album:1GNOX84dUwQ8ZKrLbihyRb,Wonder Woman: Original Motion Picture Soundtrack,spotify:artist:2vuXYcTqreOLLnlKtMV5UG,Rupert Gregson-Williams,2017-06-02,https://i.scdn.co/image/ab67616d0000b273365702ae8e6ecf723db68e2e,1,15,240960,https://p.scdn.co/mp3-preview/64d60a3eb43aabdb0f20daf9eb01408876f926b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USNLR1700370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,indie poptimism,pop",0.437,0.562,0.0,-6.327,0.0,0.0403,0.162,1.64e-05,0.0838,0.23,81.884,4.0,,WaterTower Music,"C © 2017 Warner Bros. Entertainment Inc. and Ratpac-Dune Entertainment LLC All rights reserved. "", P ℗ 2017 WaterTower Music",4325 +4326,spotify:track:1mv4lh1rW1K6xhxhJmEezy,Music Sounds Better With You - Radio Edit,"spotify:artist:2w7IutHv5g4e8LumrwtjWR, spotify:artist:2XOvFG8pp1XAV1V6ZJABim, spotify:artist:24JRvbKfTcF2x7c2kCCJrW, spotify:artist:41vv2Tj1knysv6MuFUmdwi","Stardust, Benjamin Diamond, Alan Braxe, Thomas Bangalter",spotify:album:7Kusf5plZjl76X5ARWJbNO,Music Sounds Better With You,spotify:artist:2w7IutHv5g4e8LumrwtjWR,Stardust,1998-07-20,https://i.scdn.co/image/ab67616d0000b273b98afa12c212cbbda4f1799b,1,2,260906,https://p.scdn.co/mp3-preview/c37f0b88c0ab49d59d4dac14321e41bd7c5ad418?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,FR11Q9800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"filter house,filter house,electrofox,filter house,filter house",0.729,0.662,5.0,-7.191,0.0,0.337,0.00128,0.208,0.305,0.359,124.149,4.0,,Because Music,"C 1998 Because Music LC33186, P 1998 Because Music LC33186",4326 +4327,spotify:track:51as6hlkLOl04nFxsse2Fk,Stack It Up (feat. A Boogie Wit da Hoodie),"spotify:artist:5pUo3fmmHT8bhCyHE52hA6, spotify:artist:31W5EY0aAly4Qieq6OFu6I","Liam Payne, A Boogie Wit da Hoodie",spotify:album:6tTFC9pgrJpcmgaC6R8ITd,LP1,spotify:artist:5pUo3fmmHT8bhCyHE52hA6,Liam Payne,2019-12-06,https://i.scdn.co/image/ab67616d0000b2731eb5c51221691627b1fb6cfa,1,2,166410,https://p.scdn.co/mp3-preview/a65878ad2116e20f71d27f627894064e182bbcd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,GBUM71903468,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,melodic rap,rap,trap",0.737,0.818,7.0,-3.036,1.0,0.103,0.111,0.0,0.0655,0.612,100.036,4.0,,Capitol Records UK / EMI,"C © 2019 Hampton Records Limited, under exclusive licence to Universal Music Operations Limited, P ℗ 2019 Hampton Records Limited, under exclusive licence to Universal Music Operations Limited",4327 +4328,spotify:track:15MJ5NThPjj6xhPcts8MiY,"Take My Breath Away - Love Theme from ""Top Gun""",spotify:artist:2aS6jYh7ysTL1ZUsHneNgM,Berlin,spotify:album:6K8iDZW8jPaoiqSzFFebJA,Top Gun - Motion Picture Soundtrack (Special Expanded Edition),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1999-01-01,https://i.scdn.co/image/ab67616d0000b273fa183fdd680f1d249ba2f893,1,5,255733,https://p.scdn.co/mp3-preview/78d34bdf4463c73eaf49fd2255a45c8b9eaa7444?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM19801613,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.497,0.719,6.0,-9.397,1.0,0.0266,0.0613,0.0,0.411,0.547,95.769,4.0,,Columbia/Legacy,P (P) 1999 Sony Music Entertainment,4328 +4329,spotify:track:4gnOpKlv94UlMJem9sU1jd,Stupid Love,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:1OdcBxCNY52OXH0r4odXqP,Tattoos,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2013-09-10,https://i.scdn.co/image/ab67616d0000b273ba30e4d27e93015180b4924d,1,9,214493,https://p.scdn.co/mp3-preview/c36a36912620eb0f7e2001aca96ad38611d7a0f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USWB11303253,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.627,0.706,1.0,-6.416,0.0,0.047,0.0153,0.0,0.126,0.763,78.019,4.0,,Beluga Heights/Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc.",4329 +4330,spotify:track:7F9vK8hNFMml4GtHsaXui6,Back to You (feat. Bebe Rexha & Digital Farm Animals),"spotify:artist:57WHJIHrjOE3iAxpihhMnp, spotify:artist:64M6ah0SkkRsnPGtGiRAbb, spotify:artist:5fyDppLDl1juIu1BcUT5zh","Louis Tomlinson, Bebe Rexha, Digital Farm Animals",spotify:album:4sBgGazGb7S9ZUQJu2Y0qa,Back to You (feat. Bebe Rexha & Digital Farm Animals),spotify:artist:57WHJIHrjOE3iAxpihhMnp,Louis Tomlinson,2017-07-21,https://i.scdn.co/image/ab67616d0000b273327d7ffa53a268bf7411c28b,1,1,190427,https://p.scdn.co/mp3-preview/c914b4123bc55777b9e35403a0f96a0b36e40474?cid=9950ac751e34487dbbe027c4fd7f8e99,True,62,GBHMU1700037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,pop,uk dance",0.683,0.53,5.0,-4.918,0.0,0.142,0.207,0.0,0.394,0.645,75.016,4.0,,Syco Music,P (P) 2017 78 PRODUCTIONS LIMITED under exclusive licence to Simco Limited / Sony Music Entertainment UK Limited,4330 +4331,spotify:track:45bE4HXI0AwGZXfZtMp8JR,you broke me first,spotify:artist:45dkTj5sMRSjrmBSBeiHym,Tate McRae,spotify:album:1RWiRfdNZKDe8VXzzf2VEc,you broke me first,spotify:artist:45dkTj5sMRSjrmBSBeiHym,Tate McRae,2020-04-17,https://i.scdn.co/image/ab67616d0000b2730c2c97099fd6a637ed0aa4a4,1,1,169265,https://p.scdn.co/mp3-preview/58f29d1e29100ef77247a4bf0fa22b2cc3528c3f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,18,USRC12000832,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.667,0.373,4.0,-9.389,1.0,0.05,0.785,0.0,0.0906,0.0823,124.148,4.0,,RCA Records Label,"P (P) 2020 RCA Records, a division of Sony Music Entertainment",4331 +4332,spotify:track:1GTC0gBd5B8YmVf3tRl9Ln,Right Round (feat. Ke$ha),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:6LqNN22kT3074XbTVUrhzX","Flo Rida, Kesha",spotify:album:4TjIFwqydSLXrDlm9RzQ6b,R.O.O.T.S. (Route of Overcoming the Struggle),spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2009-03-23,https://i.scdn.co/image/ab67616d0000b2739c3cb61727d66803558f6815,1,5,202680,https://p.scdn.co/mp3-preview/aa6819dace2539d3cb23bfdc55c8e7e30865ab53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT20900316,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,dance pop,pop",0.453,0.975,7.0,-3.074,1.0,0.291,0.0518,1.57e-06,0.223,0.155,129.174,4.0,,Poe Boy/Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",4332 +4333,spotify:track:1rqqCSm0Qe4I9rUvWncaom,High Hopes,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:6ApYSpXF8GxZAgBTHDzYge,Pray for the Wicked,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,2018-06-22,https://i.scdn.co/image/ab67616d0000b273c5148520a59be191eea16989,1,4,190946,https://p.scdn.co/mp3-preview/f6995ad54d79b7ffaf0da6833409666ada11a173?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USAT21801174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.579,0.904,5.0,-2.729,1.0,0.0618,0.193,0.0,0.064,0.681,82.014,4.0,,DCD2 / Fueled By Ramen,"C © 2018 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P ℗ 2018 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",4333 +4334,spotify:track:1NpW5kyvO4XrNJ3rnfcNy3,Wild Ones (feat. Sia),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","Flo Rida, Sia",spotify:album:7eLwoxxWs6lfkVYJGkGNbk,Wild Ones,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2012-06-22,https://i.scdn.co/image/ab67616d0000b273871d85943145dde548f4ae09,1,2,232946,https://p.scdn.co/mp3-preview/d508be7a9bbcfafb67a58ff3b7f6954881d0c6b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USAT21104103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,pop",0.608,0.86,5.0,-5.324,0.0,0.0554,0.0991,0.0,0.262,0.437,127.075,4.0,,Poe Boy/Atlantic,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",4334 +4335,spotify:track:0TwxA1UTqCXyihWqu6PMWh,Dreaming My Dreams with You,spotify:artist:5rEdctzMWxizV00szOsWfD,Colleen Hewett,spotify:album:5PaA4XfumS872ge1aeCr8b,Colleen,spotify:artist:5rEdctzMWxizV00szOsWfD,Colleen Hewett,1983,https://i.scdn.co/image/ab67616d0000b273a001a3840ad30ffecb74efa3,1,7,229040,https://p.scdn.co/mp3-preview/8a2d25787c2951721e79815ae7841a848cd2d2f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.254,0.238,6.0,-14.821,1.0,0.0303,0.588,0.0535,0.0772,0.0809,84.126,4.0,,Fable Records,"C 1983 Avenue Records, P 2017 Southern Cross Music Pty Limited",4335 +4336,spotify:track:6XVpKaD3oxpA2ohiLyTGPC,It Must Be Him,spotify:artist:3tM3DTmG7ahfACzwqtazLD,Vikki Carr,spotify:album:031Opw10ZrHaGAoKVgyHEA,The Best Of Vikki Carr: It Must Be Him,spotify:artist:3tM3DTmG7ahfACzwqtazLD,Vikki Carr,1992-01-01,https://i.scdn.co/image/ab67616d0000b273ed40a887653ee19d9ba64b7f,1,14,172640,https://p.scdn.co/mp3-preview/6165b3407139bc5fb84dfebfc9ac9c029eef83fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USEM38800163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.55,0.332,4.0,-12.365,1.0,0.0551,0.572,0.0,0.719,0.499,108.731,4.0,,Capitol Records,"C © 1992 Capitol Records, LLC, P This Compilation ℗ 1992 Capitol Records, LLC",4336 +4337,spotify:track:2PolnevtHIyrxe6CjWYpXx,Took the Children Away,spotify:artist:4LtYxILg8YPMwQjKnXb5kh,Archie Roach,spotify:album:2cB16btwYMf8hOu2BlFvLl,Charcoal Lane,spotify:artist:4LtYxILg8YPMwQjKnXb5kh,Archie Roach,1990,https://i.scdn.co/image/ab67616d0000b2732373d7fbecc7e72f9b846cbb,1,6,324066,https://p.scdn.co/mp3-preview/15f710bfb3432647e0eca86745dae7c885f94b9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUMU09000026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indigenous music,0.351,0.203,7.0,-12.881,1.0,0.0336,0.837,1.97e-06,0.0703,0.325,110.071,4.0,,WM Australia,"C © 1990 Mushroom Records, P ℗ 1990 Mushroom Records",4337 +4338,spotify:track:45FLu3nL1iMYXYPzhqLdko,"Where Do I Begin - Love Theme from ""Love Story""",spotify:artist:4sj6D0zlMOl25nprDJBiU9,Andy Williams,spotify:album:3iZ02t8Wkhp51QxieO0ErJ,Love Story,spotify:artist:4sj6D0zlMOl25nprDJBiU9,Andy Williams,1971-02-03,https://i.scdn.co/image/ab67616d0000b2739ffbe027325528769963c0ce,1,1,189066,https://p.scdn.co/mp3-preview/b339757c065dccaa3570d08c70edf2b69c398e22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM19912772,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.259,0.473,6.0,-10.187,1.0,0.0324,0.512,1.5e-06,0.4,0.232,84.897,4.0,,Columbia,P Originally released 1971 SONY BMG MUSIC ENTERTAINMENT,4338 +4339,spotify:track:2PxefLyJ3Fw7ZZlROnbpTp,Put It In a Love Song (feat. Beyoncé Knowles),"spotify:artist:3DiDSECUqqY1AuBP8qtaIa, spotify:artist:6vWDO969PvNqNYHIOW5v0m","Alicia Keys, Beyoncé",spotify:album:0Rxab8t0y7GlaTJTHX2wEN,The Element Of Freedom,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2009-12-15,https://i.scdn.co/image/ab67616d0000b273fe6a98e875958c7d7080584e,1,10,195586,https://p.scdn.co/mp3-preview/15d0fbf446ce09515dadba0b1bac99f48afed693?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USJAY0900277,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b,pop,r&b",0.634,0.689,8.0,-7.904,1.0,0.285,0.0793,0.0,0.296,0.653,184.87,4.0,,J Records,P (P) 2009 Sony Music Entertainment,4339 +4340,spotify:track:1WQesdW1KcJML5TWna3FoU,Baby Come Back,spotify:artist:0l7TxYWNUtEgWocjz8IaOt,The Equals,spotify:album:5FElYPmRnizOccEUTAj65J,The Equals - All the Hits Plus More,spotify:artist:0l7TxYWNUtEgWocjz8IaOt,The Equals,2010-10-25,https://i.scdn.co/image/ab67616d0000b2739d276bb63a9d468b5fe857a1,1,1,152333,https://p.scdn.co/mp3-preview/fe8fe131bdf9a2b72c399bc9a0fc79d2dc5648b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHQC0505700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,merseybeat",0.72,0.645,0.0,-16.496,1.0,0.0331,0.433,0.00487,0.153,0.806,135.059,4.0,,P.E.R Records,,4340 +4341,spotify:track:28GUjBGqZVcAV4PHSYzkj2,So Good,spotify:artist:5ndkK3dpZLKtBklKjxNQwT,B.o.B,spotify:album:7qqCw47pAWFzhwTpVRd0zE,Strange Clouds,spotify:artist:5ndkK3dpZLKtBklKjxNQwT,B.o.B,2012-04-27,https://i.scdn.co/image/ab67616d0000b273a191830c8b300bc71c2faac7,1,6,213253,https://p.scdn.co/mp3-preview/8658dd3cea34ac407c0b43212a447c60c03e1e8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USAT21200255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dance pop,pop rap,rap,southern hip hop",0.66,0.9,7.0,-5.02,1.0,0.14,0.0403,0.0,0.219,0.591,85.51,4.0,,Rebel Rock/Grand Hustle/Atlantic,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",4341 +4342,spotify:track:4T4NLIMypdmyUwK54jECk4,Too Little Too Late,spotify:artist:5xuNBZoM7z1Vv8IQ6uM0p6,JoJo,spotify:album:3ym3JtyhWmVIJzEzTCCsHa,The High Road,spotify:artist:5xuNBZoM7z1Vv8IQ6uM0p6,JoJo,2006-10-17,https://i.scdn.co/image/ab67616d0000b2736b8ae56ceacf4720347d71c5,1,3,221720,https://p.scdn.co/mp3-preview/4829302b1b79ab0c97d7cd569f2b6208a06310fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USUYG1352918,spotify:user:bradnumber1,2023-02-22T06:09:40Z,"dance pop,pop,post-teen pop",0.421,0.799,6.0,-5.183,0.0,0.0562,0.00871,1.63e-05,0.0794,0.731,82.408,4.0,,"Blackground Records, LLC","C 2006 Blackground Records, LLC, P 2006 Blackground Records, LLC",4342 +4343,spotify:track:0ELgmt7slRKsOFfkb2lSoe,Dirty Talk,spotify:artist:4nmrm4zpgJ0RC6aZRSUEjF,Wynter Gordon,spotify:album:7ge2XRwQBXK0oAtQn52ggh,With The Music I Die,spotify:artist:4nmrm4zpgJ0RC6aZRSUEjF,Wynter Gordon,2010-11-09,https://i.scdn.co/image/ab67616d0000b2730421ed6fd19cbe84cb84950e,1,2,197586,https://p.scdn.co/mp3-preview/acda89bf69ab35013dcd874d51656a339bffb533?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USAT20902954,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.679,0.808,11.0,-5.137,1.0,0.0333,0.0305,0.00125,0.105,0.88,130.018,4.0,,Big Beat Records/Atlantic,"C © 2011 Big Beat Records, Inc. for the United States and WEA International for the world outside the United States, P ℗ 2011 Big Beat Records, Inc. for the United States and WEA International for the world outside the United States",4343 +4344,spotify:track:2Si43OSoa3MW5mmc0mBs36,Sing For The Moment,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:1ftvBBcu7jYIvXyt3JWB8S,The Eminem Show,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2002-05-26,https://i.scdn.co/image/ab67616d0000b273ccdb1982626f299b3b1d3efd,1,12,339666,https://p.scdn.co/mp3-preview/2c2218eb50111c78745e5de8793c39722e9c87a1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10211061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.672,0.818,5.0,-4.209,0.0,0.109,0.00185,2.29e-06,0.0612,0.164,164.078,4.0,,Universal Music Group,"C © 2002 Aftermath Records, P ℗ 2002 Aftermath Records",4344 +4345,spotify:track:7HlxqDDzdWE3gK0i6fS6Bt,Feels Like Heaven,spotify:artist:1QYMj6ouUhi6yis1HE8M68,Urban Cookie Collective,spotify:album:6IjQa4ZCnkSa9cnUvA3yJG,The Very Best Of,spotify:artist:1QYMj6ouUhi6yis1HE8M68,Urban Cookie Collective,2004,https://i.scdn.co/image/ab67616d0000b273213d4607bc4ec16c452b153d,1,2,210133,https://p.scdn.co/mp3-preview/12aee0370b862e7f9dc4746737a1c8d7e6dc8c4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBBLG0400735,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,hip house",0.639,0.952,1.0,-5.905,1.0,0.0364,0.114,0.00267,0.0415,0.787,129.845,4.0,,Demon,"C (C) 2004 Amazon Records Limited, P (P) 2004 Amazon Records Limited",4345 +4346,spotify:track:3TlIt0ReIxPsVZcOEivT5U,It's Not Unusual,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,spotify:album:15rjWnMzpMTz2wJ67NzJRR,Along Came Jones,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,1965-05-01,https://i.scdn.co/image/ab67616d0000b27337c9e9907888dea39387df7c,1,8,119800,https://p.scdn.co/mp3-preview/f17723085ec14102961588629e84d0f6bbadb8a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBF076520010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion",0.476,0.722,0.0,-10.017,1.0,0.0646,0.598,0.0,0.184,0.909,92.966,4.0,,UMC (Universal Music Catalogue),"C © 1965 Decca Music Group Limited, P ℗ 1965 Decca Music Group Limited",4346 +4347,spotify:track:22i1Mf8U86PP8PqXh6S6DG,Lady Marmalade,"spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS, spotify:artist:5tth2a3v0sWwV1C7bApBdX, spotify:artist:6lHL3ubAMgSasKjNqKb8HF, spotify:artist:1KCSPY1glIKqW2TotWuXOR","Christina Aguilera, Lil' Kim, Mýa, P!nk",spotify:album:6v8bG4qgPgS1YR6TRSBlAZ,Keeps Gettin' Better: A Decade Of Hits,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2008-11-07,https://i.scdn.co/image/ab67616d0000b27325956d8daeb0d6ec51958ad8,1,6,265973,https://p.scdn.co/mp3-preview/607f6f1a18b4a42df14e984a600484e499fcfe36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10110334,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,east coast hip hop,hip hop,hip pop,pop rap,r&b,rap,southern hip hop,trap queen,urban contemporary,contemporary r&b,hip pop,r&b,urban contemporary,dance pop,pop",0.741,0.859,5.0,-2.223,1.0,0.057,0.0148,1.84e-06,0.664,0.611,109.905,4.0,,RCA Records Label,"P (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",4347 +4348,spotify:track:0FOQOr2M57GI3aESpAgElX,Mood (feat. iann dior),"spotify:artist:6fWVd57NKTalqvmjRd2t8Z, spotify:artist:6ASri4ePR7RlsvIQgWPJpS","24kGoldn, iann dior",spotify:album:0M0Zxu7KVzFZZ8q4z2i4gi,El Dorado,spotify:artist:6fWVd57NKTalqvmjRd2t8Z,24kGoldn,2021-03-24,https://i.scdn.co/image/ab67616d0000b273efaa566ca883ed59a503333c,1,13,140877,https://p.scdn.co/mp3-preview/bec4c0745ac082a40367d5b58a1348733b270049?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USQX92003031,spotify:user:bradnumber1,2023-02-15T04:30:27Z,"cali rap,pop rap,melodic rap",0.701,0.727,7.0,-3.644,0.0,0.0358,0.192,0.0,0.128,0.76,91.008,4.0,,Records/Columbia,"P (P) 2021 Records Label, LLC / Columbia",4348 +4349,spotify:track:4vvOv6MDFFPpEb1gwwb2ZD,Baby Got Back,spotify:artist:3TQ9JTBI2n2hfo7aRONEYV,Sir Mix-A-Lot,spotify:album:0kY8aFxApiXIksV7quPoVF,Mack Daddy,spotify:artist:3TQ9JTBI2n2hfo7aRONEYV,Sir Mix-A-Lot,1992-01-01,https://i.scdn.co/image/ab67616d0000b27396f68aaa099dab30fe7f17ff,1,3,262826,https://p.scdn.co/mp3-preview/9a1d617b9ff3cda69d84aceb5cfcd3918f462536?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USSM19100221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,old school hip hop,0.937,0.654,8.0,-11.187,1.0,0.322,0.00533,1.26e-06,0.0542,0.607,128.462,4.0,,Universal Special Markets,"C © 1992 American Recordings, LLC, P ℗ 1992 American Recordings, LLC",4349 +4350,spotify:track:6hacGohCl4dvzLcnbKP0Ma,You Don't Bring Me Flowers (with Neil Diamond),spotify:artist:7jmTilWYlKOuavFfmQAcu6,Barbra Streisand,spotify:album:4JpntKV9S08fzohdRL8aAK,Duets,spotify:artist:7jmTilWYlKOuavFfmQAcu6,Barbra Streisand,2002-11-26,https://i.scdn.co/image/ab67616d0000b273d8c5d4a8af240a4e5ed16039,1,3,204200,https://p.scdn.co/mp3-preview/f978731a09803ef9ea1a36f7de02c87df81b5bd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USSM10020874,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,operatic pop,soft rock",0.192,0.212,0.0,-13.018,1.0,0.0356,0.889,6.48e-05,0.162,0.212,86.984,3.0,,NITRON concepts,P (P) 2002 Sony Music Entertainment Inc.,4350 +4351,spotify:track:7pszcrE10CThu1inqXw2R4,Nothing's Real but Love,spotify:artist:0CrCKxXekxMpkYfMEf8mca,Rebecca Ferguson,spotify:album:1WInfTGKr6R4CA3ZbkAOhM,Heaven (Deluxe),spotify:artist:0CrCKxXekxMpkYfMEf8mca,Rebecca Ferguson,2011,https://i.scdn.co/image/ab67616d0000b273af3b37c017ef8f022c102a1a,1,1,173626,https://p.scdn.co/mp3-preview/9eff913005fe0f30e085ed36c6f2527260be21de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1101210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,talent show,0.45,0.494,8.0,-5.368,1.0,0.0389,0.533,1.3e-06,0.0517,0.354,143.988,4.0,,RCA Records Label,"P (P) 2011 / 2012 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited except track 14 (P) 2012 Decca, a division of Universal Music Operations Limited.",4351 +4352,spotify:track:6uwT4xzDhCY7vtJsqHv67c,(Theme From) The Monkees,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:338yWfNJWW2SXxVfIdczUD,The Best of The Monkees,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,2008-07-01,https://i.scdn.co/image/ab67616d0000b2730b74e9fcbe76d8245535a207,1,1,138120,https://p.scdn.co/mp3-preview/3cff52801134d74753fbb17068fe4c83414a7dc6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USRH10125831,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.456,0.7,0.0,-8.292,1.0,0.0515,0.16,0.0,0.665,0.283,83.517,4.0,,Rhino,"C © 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co., P ℗ 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co.",4352 +4353,spotify:track:2RAK199yQmx0FGs5fYTBvL,Delete,spotify:artist:1iUTUix5kea176M0uJTsh4,DMA'S,spotify:album:11jIp237sUgfyrPM2Z3lwA,Delete,spotify:artist:1iUTUix5kea176M0uJTsh4,DMA'S,2014-02-17,https://i.scdn.co/image/ab67616d0000b273d5fba6ec03a4d0c442281163,1,1,271939,https://p.scdn.co/mp3-preview/b8753c382b53bf7fb464f2ca5f5eda729b9dc469?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01495310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian surf rock",0.544,0.446,11.0,-7.709,1.0,0.0324,0.338,0.0,0.198,0.229,124.868,4.0,,I OH YOU,"C 2014 I OH YOU, P 2014 I OH YOU",4353 +4354,spotify:track:19klrUEpeyhYNyy7YDdVdc,Gee Baby,spotify:artist:1Rqm4lxi4IhNatGFqKSXlW,Peter Shelley,spotify:album:6Tewgu9o90p6DFqON1eAMi,The Platinum Collection,spotify:artist:1Rqm4lxi4IhNatGFqKSXlW,Peter Shelley,2005-12-05,https://i.scdn.co/image/ab67616d0000b273dbcc60b7fe040393dc9e95cc,1,1,175906,https://p.scdn.co/mp3-preview/9e59391859ea229de0d2b3be937b06f6767d453e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAHS0500665,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.398,0.517,4.0,-8.661,0.0,0.0328,0.31,1.66e-06,0.165,0.527,97.773,4.0,,Rhino,"C © 2005 Warner Music UK Ltd, P ℗ 2005 Warner Music UK Ltd",4354 +4355,spotify:track:1GR1U3xkN1gf8dzvcyGxfa,From The Sea,spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,spotify:album:3qUUxffTYleIODTFlc2CXh,A Song Is A City,spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,2004,https://i.scdn.co/image/ab67616d0000b27389517c391fd9145f8a29d216,1,2,202906,https://p.scdn.co/mp3-preview/56abd5af47f5763c6d2d8c691484c26092635997?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUMU00400051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,perth indie",0.587,0.786,10.0,-6.553,0.0,0.0308,0.1,3.24e-05,0.0808,0.486,129.88,4.0,,WM Australia,"C © 2004 Mushroom Records Pty Ltd, P ℗ 2004 Mushroom Records Pty Ltd",4355 +4356,spotify:track:5R7NpevGafxSzispzQpv1x,Animal,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,spotify:album:6vBcVTsQZ7jkIPL7Z7fvJ4,Contrast,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,2012-07-09,https://i.scdn.co/image/ab67616d0000b273ccb8077ec19ddfe98c8fa747,1,1,196337,https://p.scdn.co/mp3-preview/d2c44ff5a7a9bb8f3880b2fbb7f06fbd7891568b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAYE1201085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,uk pop,viral pop",0.682,0.893,9.0,-3.563,1.0,0.0578,0.109,0.0,0.0692,0.613,129.964,4.0,,WM Indonesia,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",4356 +4357,spotify:track:3Iyzdie1LZW22Z9S2hIvHl,You Don't Know Love,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:0KkBk51wuZ5hUPwHQAiYG9,You Don't Know Love,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2016-07-08,https://i.scdn.co/image/ab67616d0000b273d6b5d9fa1cb7bf58e2fde17b,1,1,198480,https://p.scdn.co/mp3-preview/ffd4d806a904186cfef93dda800e1a7f0a6dc5e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1600726,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.676,0.655,2.0,-5.705,0.0,0.0496,0.00091,0.0,0.224,0.371,118.673,4.0,,RCA Records Label,P (P) 2016 Sony Music Entertainment UK Limited,4357 +4358,spotify:track:6EIVLz5xM1xE29r0OmIkWt,Falling Slowly,"spotify:artist:3Caot8EtHX6wLpNF2wRzS0, spotify:artist:4SklVMGMsWTq7cJd9MixUx","Glen Hansard, Markéta Irglová",spotify:album:4BUG3kfPOB6DWVKKDY2icE,Music From The Motion Picture Once,"spotify:artist:3Caot8EtHX6wLpNF2wRzS0, spotify:artist:4SklVMGMsWTq7cJd9MixUx","Glen Hansard, Markéta Irglová",2007-05-22,https://i.scdn.co/image/ab67616d0000b273d580d7902a74ec0468d99373,1,1,244133,https://p.scdn.co/mp3-preview/d2c667bbf15c5e76bbbde2fb8fd5189eaa562f1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USLIC0700662,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,irish singer-songwriter,melancholia,chamber folk,czech singer-songwriter,melancholia",0.34,0.209,0.0,-11.869,1.0,0.0279,0.679,0.000443,0.101,0.151,137.042,4.0,,Columbia,P (P) 2007 Summit Entertainment LP,4358 +4359,spotify:track:65ES1qwOB577ZnTkizMXJJ,HUMBLE. - SKRILLEX REMIX,"spotify:artist:5he5w2lnU9x7JFhnwcekXX, spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg","Skrillex, Kendrick Lamar",spotify:album:1X4aaOIXvs6gWtQZQpln4V,HUMBLE. (SKRILLEX REMIX),"spotify:artist:5he5w2lnU9x7JFhnwcekXX, spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg","Skrillex, Kendrick Lamar",2017-09-29,https://i.scdn.co/image/ab67616d0000b273bd01ceabd584855b2edd838d,1,1,156800,https://p.scdn.co/mp3-preview/f63f0e3a387c0fe676200dcd7c9dfeb754a89434?cid=9950ac751e34487dbbe027c4fd7f8e99,True,66,USUM71710562,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,complextro,edm,electro,pop dance,conscious hip hop,hip hop,rap,west coast rap",0.901,0.934,11.0,-2.345,1.0,0.273,0.00794,7.68e-05,0.194,0.868,150.037,4.0,,Aftermath,"C © 2017 Aftermath/Interscope (Top Dawg Entertainment), P ℗ 2017 Aftermath/Interscope (Top Dawg Entertainment)",4359 +4360,spotify:track:4Oun2ylbjFKMPTiaSbbCih,WAP (feat. Megan Thee Stallion),"spotify:artist:4kYSro6naA4h99UJvo89HB, spotify:artist:181bsRPaVXVlUKXrxwZfHK","Cardi B, Megan Thee Stallion",spotify:album:2ogiazbrNEx0kQHGl5ZBTQ,WAP (feat. Megan Thee Stallion),"spotify:artist:4kYSro6naA4h99UJvo89HB, spotify:artist:181bsRPaVXVlUKXrxwZfHK","Cardi B, Megan Thee Stallion",2020-08-07,https://i.scdn.co/image/ab67616d0000b273c450c89d3eb750d3535b0a0c,1,1,187541,https://p.scdn.co/mp3-preview/ad79b922940884cd57a17df2dede2c5d106d907c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,76,USAT22005111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,rap,houston rap,pop,rap,trap queen",0.935,0.454,1.0,-7.509,1.0,0.375,0.0194,0.0,0.0824,0.357,133.073,4.0,,Atlantic/KSR,"C © 2020 Atlantic Recording Corporation, P ℗ 2020 Atlantic Recording Corporation",4360 +4361,spotify:track:0H8AN0RfgU1Pa19S4BhtHQ,Read My lips,spotify:artist:64fbN3FGr1FkRhFh1AoGQA,Melissa Tkautz,spotify:album:4t6TxxtRbqaV8aNnCIpoeZ,Read My lips,spotify:artist:64fbN3FGr1FkRhFh1AoGQA,Melissa Tkautz,2005-10-15,https://i.scdn.co/image/ab67616d0000b273eab74a1d082a273d30746e98,1,1,226426,https://p.scdn.co/mp3-preview/df6bcd7a4dd49e96088dd48b14a5998185c3752a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUDD30905313,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,europop",0.682,0.805,4.0,-12.864,0.0,0.0856,0.0589,0.000683,0.0588,0.873,120.507,4.0,,Melissa Tkautz,"C 2005 Melissa Tkautz, P 2005 Melissa Tkautz",4361 +4362,spotify:track:7jC9IKyq3NOrvmVImExR8E,Listen Like Thieves,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:7CJvhqb2PJq5fBcY6eKqjl,INXS Remastered,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b273114b2baa75317b81a8c9c7ca,5,2,226346,https://p.scdn.co/mp3-preview/afe85b92102a80f44fec0af4dac69e61865bd8ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GBAMX8500011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.567,0.919,7.0,-4.424,1.0,0.0713,0.0108,0.0106,0.0819,0.593,116.034,4.0,,Petrol Records,"C © 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",4362 +4363,spotify:track:3wRiwV9HdarzkktRH7If46,Me and You and a Dog Named Boo,spotify:artist:1sldhz8tzC100cRAdfnMht,Lobo,spotify:album:5FXBEje9MaN8rSPODQaXAL,The Best Of Lobo,spotify:artist:1sldhz8tzC100cRAdfnMht,Lobo,1993-06-11,https://i.scdn.co/image/ab67616d0000b27311bdb729983420341631a561,1,1,177933,https://p.scdn.co/mp3-preview/bc8163823121fc0104f2aa3e2118bf51d989d10f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USAT20108547,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.628,0.603,6.0,-10.286,1.0,0.0312,0.178,1.73e-05,0.0686,0.951,120.782,4.0,,Rhino Atlantic,"C © 2005 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing., P ℗ 1996 Atlantic Recording Corp. Manufactured & Marketed by Rhino Entertainment",4363 +4364,spotify:track:6CK4xXnpKHJQA4YFoQ6Ads,Why Can't This Be Love - 2004 Remaster,spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,spotify:album:4RJcoQhc3aupccH9YnZ69o,The Very Best of Van Halen (UK Release),spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,2007-05-14,https://i.scdn.co/image/ab67616d0000b273c55701722ddba5ee3663ab3d,1,25,228333,https://p.scdn.co/mp3-preview/98c21d5bff4005be06dc53249c09b55626c9c609?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USWB10401753,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.54,0.82,7.0,-5.255,1.0,0.0977,0.0512,0.0,0.0835,0.55,88.469,4.0,,Rhino/Warner Records,"C © 2004 Rhino Entertainment Company, a Warner Music Group company, P ℗ 2004 Warner Music Inc., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group company, for the US and WEA International for outside the United States",4364 +4365,spotify:track:6YZwJSMNL7hB4ItxZtn7jx,Psycho,spotify:artist:2RVvqRBon9NgaGXKfywDSs,Maisie Peters,spotify:album:5UBAspHjoGNtNAvHAf5aSI,Psycho,spotify:artist:2RVvqRBon9NgaGXKfywDSs,Maisie Peters,2021-07-01,https://i.scdn.co/image/ab67616d0000b273b6bada331b20a3219981e67f,1,1,184640,https://p.scdn.co/mp3-preview/9e51c163fcafad10f11a6107f37c3d844ad81886?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAHS2100331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,uk pop",0.562,0.765,3.0,-2.967,1.0,0.21,0.613,0.0,0.0774,0.707,118.879,4.0,,Atlantic Records UK,"C A Gingerbread Man Records / Asylum Records UK release, Under exclusive license to Warner Music UK Limited., © 2021 Felion Limited, P A Gingerbread Man Records / Asylum Records UK release, Under exclusive license to Warner Music UK Limited., ℗ 2021 Felion Limited.",4365 +4366,spotify:track:2BdSaGVMxZzEeJYjjrlo6n,American Woman,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,spotify:album:1cW0de5T5fdedlS4YqvyCv,Greatest Hits,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,2000,https://i.scdn.co/image/ab67616d0000b273550699c44dd74a7663c6ebfa,1,8,261706,https://p.scdn.co/mp3-preview/2a0cc47a878795809655def30eda2f2bf4902096?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USVI29900084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,rock",0.669,0.698,1.0,-7.971,1.0,0.0713,0.0243,0.0,0.0782,0.6,83.987,4.0,,Virgin Records,"C © 2000 Virgin Records America, Inc., P This Compilation ℗ 2000 Virgin Records America, Inc.",4366 +4367,spotify:track:70Fh5TuuER28hcq407Xxqc,1 2 3 Red Light,spotify:artist:17vIaBTHJOVxnU4v7t1DiY,1910 Fruitgum Company,spotify:album:0PNKl7mesKlRgsUqhKwJTA,Bubblegum's Best,spotify:artist:17vIaBTHJOVxnU4v7t1DiY,1910 Fruitgum Company,2009-03-20,https://i.scdn.co/image/ab67616d0000b273235d154f14fb11c9945ed9db,1,2,154293,https://p.scdn.co/mp3-preview/ca3f376efb28dae57f52f0aa8aa492eaddb19a7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USDEI0907919,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat",0.617,0.465,0.0,-15.768,0.0,0.0426,0.0538,0.0,0.118,0.908,117.428,4.0,,K-Tel,,4367 +4368,spotify:track:6Bh21G1OwdiRGnhnCV6v95,What It's Like,spotify:artist:14ZxDAK6ITtZZqPdiWrvSn,Everlast,spotify:album:0w4iEUa0Ch6Xrj5ATZwBNj,Whitey Ford Sings The Blues,spotify:artist:14ZxDAK6ITtZZqPdiWrvSn,Everlast,1998-09-08,https://i.scdn.co/image/ab67616d0000b273239e0cd38c83a844427718ab,1,4,304306,https://p.scdn.co/mp3-preview/047da91bb54c1f477d955a6e213027cc7343320f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRH10904471,spotify:user:bradnumber1,2021-11-20T11:14:37Z,post-grunge,0.652,0.584,0.0,-6.703,1.0,0.0269,0.0916,0.00686,0.114,0.417,85.191,4.0,,"Tommy Boy Music, LLC","C 1998 Tommy Boy Music, LLC, P 1998 Tommy Boy Music, LLC",4368 +4369,spotify:track:5uobZKt1MSQ40JDrXJ11SU,Shimmy A Go Go,spotify:artist:0EdNPfEHC714LHuN0NPIyU,Short Stack,spotify:album:1Q5kXLIjDPlX6Qav7mVoOR,Stack Is The New Black,spotify:artist:0EdNPfEHC714LHuN0NPIyU,Short Stack,2008-01-01,https://i.scdn.co/image/ab67616d0000b273521f853ff4f2193dff4e075e,1,3,242626,https://p.scdn.co/mp3-preview/f8bf76efa629ef66b143ed665a1e8d4eb6452c91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70801197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.53,0.897,1.0,-4.266,1.0,0.0457,0.00023,8.32e-05,0.684,0.483,140.038,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Sunday Morning Records Pty Ltd, P ℗ 2008 Sunday Morning Records Pty Ltd",4369 +4370,spotify:track:53fP1JzpjywHdJKx1flKCA,Let’s Go Home Together,"spotify:artist:7nDsS0l5ZAzMedVRKPP8F1, spotify:artist:5SHxzwjek1Pipl1Yk11UHv","Ella Henderson, Tom Grennan",spotify:album:7DrqGKIDV8xq1LwSTlEqlv,Let’s Go Home Together,"spotify:artist:7nDsS0l5ZAzMedVRKPP8F1, spotify:artist:5SHxzwjek1Pipl1Yk11UHv","Ella Henderson, Tom Grennan",2021-02-19,https://i.scdn.co/image/ab67616d0000b27374bf643e82126b1b46b5127a,1,1,208692,https://p.scdn.co/mp3-preview/37fdb555f36577813e15d2eaf61e1918caadb54a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAHS2100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop dance,talent show,uk pop,uk pop",0.661,0.486,5.0,-4.438,1.0,0.0431,0.454,0.0,0.0994,0.309,78.31,4.0,,Atlantic Records UK,"C A Major Toms / Asylum Records UK release, © 2021 Warner Music UK Limited., P A Major Toms / Asylum Records UK release, ℗ 2021 Warner Music UK Limited.",4370 +4371,spotify:track:6rBgZvSsyJrk5ZXtKc8mcf,You're the One,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,spotify:album:4oa2hZ1r8L8Egf9ec6ncCM,The Classic Collection,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,1997-01-01,https://i.scdn.co/image/ab67616d0000b27324178f04350f2f94a5b2736d,1,12,143834,https://p.scdn.co/mp3-preview/8e5cc06982217e33bd96f0f2e4392b4d6fc847ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,GBAJE6500257,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,folk rock,merseybeat,rock-and-roll,rockabilly",0.408,0.676,5.0,-8.253,0.0,0.0434,0.658,0.0,0.757,0.789,137.256,4.0,,Sanctuary Budget,"C © 1997 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1997 Sanctuary Records Group Ltd., a BMG Company",4371 +4372,spotify:track:3HJWtYWnBYcA2eMc5E8ec2,Heaven,"spotify:artist:4z4m1P0iX2nRSPDBEZ8LBT, spotify:artist:5SWX583ExJOL7cv8572Crs, spotify:artist:7sQECgfT3RtfL0RZWK63Wg","DJ Sammy, Yanou, Do",spotify:album:7vf6vexmeG6vzYhbuZ6UHr,"Wild Reunion, Vol. 4","spotify:artist:7Lk3qnu0GGnvG33t23iz5k, spotify:artist:5RSTvtzYhTIr0ARC1PRaDD, spotify:artist:5XTxV2ifoYkmNb13Gb6cKz","Alex K, KCB, Sash!",2016-10-28,https://i.scdn.co/image/ab67616d0000b27332712e1073376f24c4ed07ad,1,1,235240,https://p.scdn.co/mp3-preview/d3bf29d91b606aaa46bd0aefcfc5ffffb03d508a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUCN31209338,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,dutch pop,dutch rock",0.568,0.906,8.0,-6.938,1.0,0.0465,0.00127,0.0195,0.135,0.517,137.959,4.0,,Central Station Records,"C 2016 Central Station Records, P 2016 Central Station Records",4372 +4373,spotify:track:5Pxz3z0ey5S7bEcio7W6n8,A.I.M. Fire!,spotify:artist:4MlrZKzgi3UuZi2iDKjOar,Art vs Science,spotify:album:4jSYqbenhyolbSdJmEOTpx,The Experiment,spotify:artist:4MlrZKzgi3UuZi2iDKjOar,Art vs Science,2011-02-25,https://i.scdn.co/image/ab67616d0000b2738994a126ca446570218b57f8,1,3,239493,https://p.scdn.co/mp3-preview/562980802ccfe708555f4e46fc7da0ee50b218e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVS31000014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian dance,australian indie",0.602,0.887,9.0,-3.122,1.0,0.0339,0.00148,0.00135,0.191,0.822,125.947,4.0,,Magellanic,"C 2011 Art vs Science, P 2011 Art vs Science",4373 +4374,spotify:track:6xy6jNeNTYwjnKTDzMyHw2,Zombie,spotify:artist:7t0rwkOPGlDPEhaOcVtOt9,The Cranberries,spotify:album:2KsgTeLQXz7yDV1joGOd2L,No Need To Argue (The Complete Sessions 1994-1995),spotify:artist:7t0rwkOPGlDPEhaOcVtOt9,The Cranberries,1994-10-03,https://i.scdn.co/image/ab67616d0000b27306954ee747746805e67fcbbd,1,4,306440,https://p.scdn.co/mp3-preview/17be792bc7651304002a6dcea847087501c8305a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR29400443,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,pop rock,rock",0.309,0.649,7.0,-8.994,1.0,0.035,0.0158,0.00595,0.367,0.313,166.915,4.0,,Universal Music Group,"C © 2002 The Island Def Jam Music Group, P ℗ 2002 The Island Def Jam Music Group",4374 +4375,spotify:track:7jKEokbeRzFjPGeMUg6WpW,Oceans,spotify:artist:32okPFmVcEJ9DiKLRqFVMr,Slip-On Stereo,spotify:album:3QuXijPOWeoWHzBzy1VI7B,Oceans,spotify:artist:32okPFmVcEJ9DiKLRqFVMr,Slip-On Stereo,2016-04-15,https://i.scdn.co/image/ab67616d0000b2738aa1cc34931dce0fac23191c,1,1,203240,https://p.scdn.co/mp3-preview/87f285e606cf55902758dfc4c9516e6ca06064b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,uscgj1620162,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indigenous music,0.725,0.381,2.0,-5.171,1.0,0.0288,0.658,0.0,0.147,0.604,100.026,4.0,,Slip on Stereo,"C 2016 Slip on Stereo, P 2016 Slip on Stereo",4375 +4376,spotify:track:0weAUscowxeqDtpCgtbpgp,Gettin' Jiggy Wit It,spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,spotify:album:2esWeP8Ln1sXA0jbDmi3Zq,Big Willie Style,spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,1997-10-03,https://i.scdn.co/image/ab67616d0000b273ddf2f9edabd166c60047e3c4,1,3,227933,https://p.scdn.co/mp3-preview/c16a2bdebb583a5af11ab642f7411b87e8f7f396?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM19702582,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap",0.881,0.874,6.0,-4.505,1.0,0.139,0.0175,1.14e-06,0.154,0.858,107.891,4.0,,Columbia,"P 1997 Sony Music Entertainment Inc., 1997 Columbia Pictures Industries Inc. WARNING: All Rights Reserved. Unuauthorized duplic",4376 +4377,spotify:track:4QAKfScH8kLJTbJqhb2jp2,Gypsy Woman (She's Homeless) (La Da Dee La Da Da) - Radio Edit,spotify:artist:2sd9Q3r0Jhqpe3w9WVuG43,Crystal Waters,spotify:album:7MtJHdiKmt3Gbus6oyXhy1,Surprise,spotify:artist:2sd9Q3r0Jhqpe3w9WVuG43,Crystal Waters,1991-01-01,https://i.scdn.co/image/ab67616d0000b273cb8b730e1ee1f92121480cf5,1,1,229573,https://p.scdn.co/mp3-preview/e4df186aea3bfc4e86a6ff7320220095bf67694a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USPR39102713,spotify:user:bradnumber1,2023-02-01T19:20:55Z,diva house,0.645,0.779,9.0,-10.529,0.0,0.0315,0.000165,0.214,0.0941,0.453,120.007,4.0,,Island Mercury,"C © 1991 The Island Def Jam Music Group, P ℗ 1991 UMG Recordings, Inc.",4377 +4378,spotify:track:2DnJjbjNTV9Nd5NOa1KGba,You're So Vain,spotify:artist:4FtSnMlCVxCswABUmdhwpm,Carly Simon,spotify:album:79x0PRGIZv33znrCkPkCZ5,No Secrets,spotify:artist:4FtSnMlCVxCswABUmdhwpm,Carly Simon,1972,https://i.scdn.co/image/ab67616d0000b2731af9e8390e2d251b916d9185,1,3,258411,https://p.scdn.co/mp3-preview/f4a1b79744edc4652f60e676e77193b4bf1e9528?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USEE19900883,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.66,0.68,0.0,-8.18,1.0,0.0313,0.153,6.7e-06,0.0784,0.671,106.187,4.0,,Rhino/Elektra,"C © 1972 Elektra Entertainment, P ℗ 1972 Elektra Entertainment, manufactured and marketed by Rhino Entertainment Company",4378 +4379,spotify:track:2iWyrSHvs6qhFzfpiLAK0z,Born to Try,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:26h1O5W89WLiEzxTztbGfu,Innocent Eyes,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2003-03-21,https://i.scdn.co/image/ab67616d0000b273da57f76f2fc20c1ed0bede9b,1,1,251280,https://p.scdn.co/mp3-preview/fa659b48f35f0fe7e8819ae69d5238090bef4260?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUSM00200166,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.542,0.589,8.0,-6.813,1.0,0.0284,0.246,0.0,0.188,0.336,133.838,4.0,,Epic,P (P) 2002/2003 Sony Music Entertainment (Australia) Limited,4379 +4380,spotify:track:47NBXLVNoAP6nzPOICYfid,Poetry In Motion,spotify:artist:36msvw9B10rxW90NSQ2794,Johnny Tillotson,spotify:album:62N9znca7VeEvahgwKaEbs,25 All-Time Greatest Hits,spotify:artist:36msvw9B10rxW90NSQ2794,Johnny Tillotson,2001-04-02,https://i.scdn.co/image/ab67616d0000b27326ca6475bf9dc8ac201974fc,1,6,154466,https://p.scdn.co/mp3-preview/f18aebcac4c5259209967be3debef25e5936564b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US3M50121006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,merseybeat,nashville sound,rock-and-roll",0.483,0.708,8.0,-7.351,1.0,0.0328,0.415,0.0,0.0904,0.879,135.247,4.0,,Varese Sarabande,"C © 2001 Varese Sarabande Records, P ℗ 2001 Varese Sarabande Records",4380 +4381,spotify:track:3niRbOZgjebfO1c83aMhf2,Kiss Kiss,spotify:artist:7gRmesSjINzb4xXApfMV5E,Holly Valance,spotify:album:7seZ3imYKykXVsNkMG7Z0v,Kids Party,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-23,https://i.scdn.co/image/ab67616d0000b273cdf5572204277279f26afde2,1,31,204400,https://p.scdn.co/mp3-preview/25c4c4009641d895711d3cd462dd654d0866345a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP0200049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,bubblegum dance,europop,talent show",0.705,0.717,4.0,-4.944,0.0,0.125,0.00369,0.461,0.0701,0.554,97.036,4.0,,Rhino,"C This Compilation 2015 Rhino UK, a division of Warner Music UK Ltd, P This Compilation 2015 Rhino UK, a division of Warner Music UK Ltd",4381 +4382,spotify:track:1kMOJBmpfWD9fir6st9uqS,Without You,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:2NKxb7pk04CuZab5udkGUl,Music Box,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,1993-08-31,https://i.scdn.co/image/ab67616d0000b2734c0f9e15bccb777f14b9a228,1,7,213666,https://p.scdn.co/mp3-preview/2c8c96b5e7e48bc8fd76a14eafd71de463b3116d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USSM19303176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.576,0.526,6.0,-8.524,1.0,0.0326,0.323,1.72e-06,0.0548,0.147,122.06,4.0,,Columbia,"P (P) 1993 Columbia Records, a division of Sony Music Entertainment",4382 +4383,spotify:track:4BVE5tIIpYabZcYCbephNW,Touch Me,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,spotify:album:75bLu4Ung5QbMdJYxx7wTI,The Soft Parade,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,1969-07-21,https://i.scdn.co/image/ab67616d0000b273a0c993789a4875837cf7cf71,1,2,190253,https://p.scdn.co/mp3-preview/315a8f566b7e4e0099c6212513a21b064f6e5552?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USEE19900756,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,classic rock,hard rock,psychedelic rock,rock",0.425,0.903,1.0,-4.801,1.0,0.0732,0.405,0.0128,0.117,0.769,108.748,4.0,,Rhino/Elektra,"C © 2006 Elektra Entertainment Co., P ℗ 2006 Elektra Entertainment Co.",4383 +4384,spotify:track:54VrNceI4ZgJ4ldmcYNHAR,Hold On,spotify:artist:4tvKz56Tr39bkhcQUTO0Xr,Angus & Julia Stone,spotify:album:0C29hfEJQdcyzpTHy8tTXr,Down The Way,spotify:artist:4tvKz56Tr39bkhcQUTO0Xr,Angus & Julia Stone,2010-03-12,https://i.scdn.co/image/ab67616d0000b273f11a093d3322196862fd7ce5,1,1,265264,https://p.scdn.co/mp3-preview/6ab9daa1a82ba5fb3c7522ad91c476aab65546a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUAP10900003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie folk,indie folk",0.514,0.457,0.0,-10.075,1.0,0.0325,0.38,0.473,0.12,0.275,122.99,4.0,,Capitol,"C © 2010 Angus and Julia Stone Pty Limited, P ℗ 2010 Angus and Julia Stone Pty Limited",4384 +4385,spotify:track:7KY40pRBPKQSaSe0j5nKUK,The Boys Of Summer,spotify:artist:5dbuFbrHa1SJlQhQX9OUJ2,Don Henley,spotify:album:2yPVB4tLlnfBl8SgcX8qDv,The Very Best Of,spotify:artist:5dbuFbrHa1SJlQhQX9OUJ2,Don Henley,2009-01-01,https://i.scdn.co/image/ab67616d0000b273ac343b9fd4ea9833f24b30df,1,2,288333,https://p.scdn.co/mp3-preview/9c54ce8fd84b10aa931182e1797ae7b1f71c7940?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF18502601,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.516,0.776,6.0,-6.409,1.0,0.0412,0.399,0.00128,0.21,0.859,177.399,4.0,,Universal Music Group,"C © 2009 Geffen Records, P ℗ 2009 Geffen Records",4385 +4386,spotify:track:2Im3R7renXAHrqfFmP3kxN,Broken Humans,"spotify:artist:72BTmmAO3QfETWlFjwjfJ1, spotify:artist:5PjekOABtfU2Kwo0AHVmci","Human Nature, Guy Sebastian",spotify:album:07ZDF9k7r4dIusR6tAXJUZ,Broken Humans,"spotify:artist:72BTmmAO3QfETWlFjwjfJ1, spotify:artist:5PjekOABtfU2Kwo0AHVmci","Human Nature, Guy Sebastian",2021-05-21,https://i.scdn.co/image/ab67616d0000b2734542ced282cc9f9e91079e0e,1,1,183913,https://p.scdn.co/mp3-preview/0b5a2383d682f57758a85d28947f88872048736b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUBM02000051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,boy band,australian pop",0.544,0.634,11.0,-6.05,1.0,0.0423,0.294,0.0,0.108,0.382,91.876,4.0,,Sony Music Entertainment,P (P) 2020 Sony Music Entertainment Australia Pty Ltd,4386 +4387,spotify:track:40X6HCyVmoQyF43jhBNtHp,The Promised Land,spotify:artist:65Gh3BfK84aTIugiRCgLBA,Dave Edmunds,spotify:album:7gdnNeLNm05j7gzB3qEB90,The Best Of The EMI Years,spotify:artist:65Gh3BfK84aTIugiRCgLBA,Dave Edmunds,2005-07-04,https://i.scdn.co/image/ab67616d0000b273bc10b4d35eaf9e5c33090cbb,1,14,157133,https://p.scdn.co/mp3-preview/eb3b5eb239096d700faff15205e6aa7a6fe79946?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,GBAYE7100136,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,power pop,pub rock,rockabilly",0.52,0.446,0.0,-17.329,1.0,0.0549,0.146,0.0,0.0937,0.959,164.413,4.0,,Parlophone UK,"C © 2005 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2005 Parlophone Records Ltd, a Warner Music Group Company",4387 +4388,spotify:track:6syOdAs4IK8kPWR7gDyjRw,Congratulations,"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:0VRj0yCOv2FXJNP47XQnx5","Post Malone, Quavo",spotify:album:7J0uECwRkAFLiZljgYFq1w,Stoney,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2016-12-09,https://i.scdn.co/image/ab67616d0000b27309a51bd361845073cbd501b7,1,12,220293,https://p.scdn.co/mp3-preview/41367bd297b91aa6c277d10ea06ca33d18f60e10?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71614484,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,atl hip hop,melodic rap,rap,trap",0.629,0.817,6.0,-4.261,1.0,0.0357,0.199,0.0,0.317,0.466,123.087,4.0,,Universal Music Group,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",4388 +4389,spotify:track:282tXApVpQcnChcNldULmN,Batter Up,"spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:07W0YfsvHM7Mw7Bq48Mb0A, spotify:artist:7k5N7JJKEPUPQfK8whGITe","Nelly, Murphy Lee, Ali",spotify:album:2ixev48xYzspaWS6mxTPRU,Country Grammar,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2000-06-27,https://i.scdn.co/image/ab67616d0000b2733bb75f3881099847e140020b,1,14,327933,https://p.scdn.co/mp3-preview/dd588a749b3acd4b26c25d66d667654539bf82b1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10000177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary,dirty south rap,st louis rap",0.84,0.591,8.0,-6.422,1.0,0.258,0.128,0.0,0.251,0.581,159.711,4.0,,Universal Music Group,"C © 2000 Universal Records Inc., P ℗ 2000 Universal Motown Records, a division of UMG Recordings, Inc.",4389 +4390,spotify:track:7hIo2An8IJ0gBtzogU7Lud,If I Can't Have You,spotify:artist:2d6JU9LvNhZR7AAtu4x2rS,Yvonne Elliman,spotify:album:6kFmH2VMMFaUrK4QhY4hLi,Saturday Night Fever (The Original Movie Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1977-12-12,https://i.scdn.co/image/ab67616d0000b273605128d275ca60ccc9cd3b6d,1,5,178066,https://p.scdn.co/mp3-preview/6b42f8c037c6931d4125ce93fbb05304e3ca24cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,NLF057790003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.619,0.602,11.0,-12.244,1.0,0.0373,0.463,1.02e-06,0.856,0.909,109.217,4.0,,Bee Gees Catalog,"C © 1977 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P This Compilation ℗ 1977 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",4390 +4391,spotify:track:2ZpjnusToPrH3KCFKJIcTJ,I Will Always Love You,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:2No9DisAfser7YCYQcYpj3,I Will Always Love You: The Best Of Whitney Houston,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,2012-11-12,https://i.scdn.co/image/ab67616d0000b273bddfe60a1ae03aeb8f7460c9,1,11,270760,https://p.scdn.co/mp3-preview/db431eff82899d9af76c9156d66d29aa951c21d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR19200110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.311,0.216,4.0,-12.555,1.0,0.0355,0.841,5.31e-06,0.0862,0.104,134.051,4.0,,Arista Records/RCA Records,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",4391 +4392,spotify:track:5q0o6ujHDxIpajWRP6ouVG,From A Jack To A King,spotify:artist:59zvXMeM3koefoJWQhBki6,Ned Miller,spotify:album:5V8YLenv5lgnEo1lqVi9hu,From A Jack To A King - Greatest Hits,spotify:artist:59zvXMeM3koefoJWQhBki6,Ned Miller,2011-03-01,https://i.scdn.co/image/ab67616d0000b2734b1b99a39d63e812be8005b6,1,1,131426,https://p.scdn.co/mp3-preview/2596c4c80aeb94bf5c1f50fac4f22795f5f488c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USA371249218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.627,0.44,3.0,-7.779,1.0,0.0279,0.752,0.0,0.133,0.833,99.223,4.0,,"Nifty Music, Inc.",C (C) 2011 Goldenlane Records,4392 +4393,spotify:track:02wPeiptJ7S9H9eL8F6jOk,Stop The Cavalry,spotify:artist:3nohf4qILMr5aUSOsolwxB,Jona Lewie,spotify:album:1uiVojMoLof71K5GJ0KeLR,Heart Skips Beat,spotify:artist:3nohf4qILMr5aUSOsolwxB,Jona Lewie,1982-06-01,https://i.scdn.co/image/ab67616d0000b273ad84c7471c228c9190156bfc,1,3,176360,https://p.scdn.co/mp3-preview/14a109438e71bc6c699440343e435477845eded6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHW0500394,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.7,0.384,9.0,-9.472,1.0,0.0396,0.338,0.00342,0.0766,0.754,97.216,4.0,,Stiff Records,C (C) 2004 Stiff Records,4393 +4394,spotify:track:113sWqjcYyjbb4caE8wVsV,Boom Clap,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,spotify:album:4UWPrrDdzEsdMUDzYM8FC6,SUCKER,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,2014-12-15,https://i.scdn.co/image/ab67616d0000b273bddb7e74745c5a208728abf2,1,6,169866,https://p.scdn.co/mp3-preview/9ace654d50ca2e58e36cf23ec42c432196def289?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAHS1400160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,candy pop,metropopolis,pop,uk pop",0.659,0.911,4.0,-2.28,1.0,0.0786,0.154,0.000304,0.191,0.576,91.999,4.0,,Atlantic Records UK,"C © 2014 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company, P ℗ 2014 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company",4394 +4395,spotify:track:3fjmSxt0PskST13CSdBUFx,Somewhere I Belong,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:0f7R0jf0pcTb6K6IVVPcMD,Meteora (Bonus Edition),spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2003-09-16,https://i.scdn.co/image/ab67616d0000b2738b5b6fa1326d996181e71dd7,1,3,213933,https://p.scdn.co/mp3-preview/e4cec97c55fab6b6360901c1da2525e08a029b03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USWB10300376,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.451,0.951,1.0,-3.754,1.0,0.0645,0.000386,2.56e-06,0.261,0.441,162.041,4.0,,Warner Records,"C © 2003 Warner Records Inc., P ℗ 2003 Warner Records Inc.",4395 +4396,spotify:track:0dzbfio3qTYG9uk40SJNcr,The 59th Street Bridge Song (Feelin' Groovy),spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,spotify:album:1sh32o99zA04PJIUJUpEj7,"Parsley, Sage, Rosemary And Thyme",spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,1966-10-10,https://i.scdn.co/image/ab67616d0000b273fb107b5a07df183f1836d9cb,1,6,103560,https://p.scdn.co/mp3-preview/1cdbe06121e20986ca1658395c5253094c69b4b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM16600262,spotify:user:bradnumber1,2022-09-25T11:33:05Z,"classic rock,folk,folk rock,melancholia,mellow gold,rock,soft rock",0.467,0.431,0.0,-13.274,0.0,0.0439,0.564,7.7e-06,0.0727,0.577,75.74,4.0,,Columbia/Legacy,"P (P) Originally released 1966. All rights reserved by Columbia Records, a division of Sony Music Entertainment",4396 +4397,spotify:track:1xFliXOpcu7E89AsDAZ7JV,Breathe Again,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,spotify:album:73ojqvZakvdkBxSg9pyPqz,Toni Braxton,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,1993-07-13,https://i.scdn.co/image/ab67616d0000b273d54131134a4b22bf1ccd6042,1,2,269173,https://p.scdn.co/mp3-preview/79db74fe998fc9953c089b2dc8d8aa401462b8ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USLF29300109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,r&b,urban contemporary",0.689,0.677,0.0,-6.36,1.0,0.0326,0.0697,0.0,0.0877,0.259,153.922,4.0,,Arista/LaFace Records,P (P) 1993 LaFace Records LLC,4397 +4398,spotify:track:49RUdNvwSiUTC8fBh4KKoC,Nobody Does It Better,"spotify:artist:1VN38ZSdtQnHLa8PfTTKZD, spotify:artist:4FtSnMlCVxCswABUmdhwpm","Marvin Hamlisch, Carly Simon",spotify:album:5k55f89cnXdy0BikkUeBHJ,The Spy Who Loved Me,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1977-01-01,https://i.scdn.co/image/ab67616d0000b27320e6977c6146e375f7e1669d,1,1,212666,https://p.scdn.co/mp3-preview/192d7824afac1275abe27c9b32d404812a1cf29e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USMG27700012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"broadway,classic soundtrack,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.368,0.403,10.0,-12.699,1.0,0.0288,0.703,7.66e-06,0.202,0.338,135.384,4.0,,Capitol Records,"C © 1977 Capitol Records, LLC, P This Compilation ℗ 1977 Danjaq, LLC/MGM",4398 +4399,spotify:track:2EvwLVrnYbCZEG6Kx5DCRy,Piece of Me,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:1ePkYcH5ZQCb1b4tQeiEDj,Blackout,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2007-10-25,https://i.scdn.co/image/ab67616d0000b273ca10fae7d292c52f7e8b11ca,1,2,212106,https://p.scdn.co/mp3-preview/e6bdf1063d11374cd1d63eb417b6bc88294e6fd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USJI10700729,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.769,0.638,11.0,-5.054,1.0,0.216,0.0902,0.0,0.0857,0.782,115.007,4.0,,Jive,P (P) 2007 Zomba Recording LLC,4399 +4400,spotify:track:0CGse8cU7ViXqtgCqoXWIs,Smile,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:6BfgDdkVUsERG4SZQTbO97,Bombs Away,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2014-07-11,https://i.scdn.co/image/ab67616d0000b2737f80e1c7ed450180dd8f93e6,1,6,230277,https://p.scdn.co/mp3-preview/e5e9376216b808ae854001b7482f4b76a441dffc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUIYA1400006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.703,0.723,9.0,-6.267,1.0,0.0518,0.415,5.41e-06,0.371,0.673,96.979,4.0,,Empire Of Song,"C 2014 Empire of Song, P 2014 Empire of Song",4400 +4401,spotify:track:2Tg2aW6Qfh9fYoUbDgYDXL,"No Light, No Light",spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,spotify:album:3JODIzr9NLL7CMojdUR70g,Ceremonials,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2011,https://i.scdn.co/image/ab67616d0000b273ad73995480ca0ca7c7d1e882,1,7,274821,https://p.scdn.co/mp3-preview/dd068f7788a06cbe5a472c6973beef4f0b11bb57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBUM71107581,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop",0.422,0.754,0.0,-5.628,1.0,0.0514,0.0118,1.27e-05,0.445,0.162,131.949,4.0,,Universal-Island Records Ltd.,"C © 2012 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2012 Universal Island Records, a division of Universal Music Operations Limited",4401 +4402,spotify:track:3HssHqJVOhSMw9MeeYFeKf,Cry Baby,"spotify:artist:4ZCIgBrYKaZyj4j1H0Lr4E, spotify:artist:1jIEuh0p5MfwmNR1PWRT6Z","Garnet Mimms, The Enchanters",spotify:album:1rbBU5gXS62W9mkPLiF0Ba,Cry Baby,"spotify:artist:4ZCIgBrYKaZyj4j1H0Lr4E, spotify:artist:1jIEuh0p5MfwmNR1PWRT6Z","Garnet Mimms, The Enchanters",2014-03-06,https://i.scdn.co/image/ab67616d0000b27322ecbf68696abe5a21b01447,1,1,203572,https://p.scdn.co/mp3-preview/cac7dd36ab943c3d9ab64562663373c46ffeb233?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,QMDA71489350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,northern soul,0.476,0.298,10.0,-13.607,1.0,0.0379,0.809,3.12e-06,0.579,0.682,152.712,3.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,4402 +4403,spotify:track:4Pg0FrBXiwj4ROQPGwgc6a,Every Hour,spotify:artist:1TulCA2zO3YxAjQ7ZsvtDq,KIAN,spotify:album:6O55k6SctsYAKMNvSBNBnV,Every Hour,spotify:artist:1TulCA2zO3YxAjQ7ZsvtDq,KIAN,2020-05-01,https://i.scdn.co/image/ab67616d0000b2732496d8a40fa08b86511b8da0,1,1,202066,https://p.scdn.co/mp3-preview/0f47571b0071a11b1c591d5729b73e4df04c9fd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USUG12001474,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.684,0.505,6.0,-7.534,1.0,0.0378,0.494,1.48e-06,0.321,0.726,79.946,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2020 KB Recording Pty Ltd, under exclusive license to Universal Music Australia Pty Ltd, P ℗ 2020 KB Recording Pty Ltd, under exclusive license to Universal Music Australia Pty Ltd",4403 +4404,spotify:track:7lGKEWMXVWWTt3X71Bv44I,Unsteady,spotify:artist:3NPpFNZtSTHheNBaWC82rB,X Ambassadors,spotify:album:7A8fZ2jjiu5heq7wNCutKN,VHS,spotify:artist:3NPpFNZtSTHheNBaWC82rB,X Ambassadors,2015-06-30,https://i.scdn.co/image/ab67616d0000b27352e8aa3275f7a3ee9c1e3628,1,4,193546,https://p.scdn.co/mp3-preview/57e999ab4c8f7315556692682da27b78501d24e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUM71400108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern alternative rock,modern rock,stomp pop",0.389,0.665,0.0,-6.169,1.0,0.0644,0.178,0.000732,0.116,0.199,117.055,4.0,,Kid Ina Korner / Interscope,"C © 2015 KIDinaKORNER/Interscope Records, P ℗ 2015 KIDinaKORNER/Interscope Records",4404 +4405,spotify:track:4hObp5bmIJ3PP3cKA9K9GY,Don't Worry Be Happy,spotify:artist:2FjkZT851ez950cyPjeYid,Bobby McFerrin,spotify:album:4zhRkgoZKC2xCPPys1gK4b,Simple Pleasures,spotify:artist:2FjkZT851ez950cyPjeYid,Bobby McFerrin,1988-01-01,https://i.scdn.co/image/ab67616d0000b273a88b9eddbf3650ea0529f2cc,1,1,294400,https://p.scdn.co/mp3-preview/25772b4593e5e27963b087ad470b0361eee46d19?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USEM38800361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,a cappella,0.675,0.166,11.0,-22.602,1.0,0.171,0.88,7.14e-05,0.0461,0.747,68.837,4.0,,Parlophone Catalogue,"C © 1988 Capitol Records Inc., P ℗ 1988 Capitol Records Inc.",4405 +4406,spotify:track:4rc9kQ6qyssElIccFJgbJb,My Name Is,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:71xFWYFtiHC8eP99QB30AA,Curtain Call (Deluxe),spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2005-12-06,https://i.scdn.co/image/ab67616d0000b273a8a32ae2a279b9bf03445738,1,4,268853,https://p.scdn.co/mp3-preview/f0c37f64c44c619f3c9325a20defb30eb89009ae?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR19902059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.882,0.678,1.0,-6.165,1.0,0.312,0.0427,0.0,0.118,0.809,85.491,4.0,,Universal Music Group,"C © 2005 Aftermath Entertainment/Interscope Records, P ℗ 2005 Aftermath Entertainment/Interscope Records",4406 +4407,spotify:track:5f1joOtoMeyppIcJGZQvqJ,Be Like That - feat. Swae Lee & Khalid,"spotify:artist:3oSJ7TBVCWMDMiYjXNiCKE, spotify:artist:1zNqQNIdeOUZHb8zbZRFMX, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Kane Brown, Swae Lee, Khalid",spotify:album:7MKfE4IRGdrH5bMkqaZ2Tp,Be Like That (feat. Swae Lee & Khalid),"spotify:artist:3oSJ7TBVCWMDMiYjXNiCKE, spotify:artist:1zNqQNIdeOUZHb8zbZRFMX, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Kane Brown, Swae Lee, Khalid",2020-07-10,https://i.scdn.co/image/ab67616d0000b273b670be86ddfa9d49caa56971,1,1,191406,https://p.scdn.co/mp3-preview/20679a7cde8904f459d1a5b668b9f95390a3151e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USRN11900133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"black americana,contemporary country,country,country road,melodic rap,rap,trap,pop,pop r&b",0.727,0.626,7.0,-8.415,1.0,0.0726,0.0469,2.58e-05,0.126,0.322,86.97,4.0,,RCA Records Label Nashville,P (P) 2020 Sony Music Entertainment. All rights reserved.,4407 +4408,spotify:track:7z3N2W7Xz1t2G2sAO8wFVH,Burn,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,spotify:album:1RM6MGv6bcl6NrAG8PGoZk,Confessions (Expanded Edition),spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2004-03-23,https://i.scdn.co/image/ab67616d0000b273365b3fb800c19f7ff72602da,1,6,231933,https://p.scdn.co/mp3-preview/a15cae966f178c01b964b77ba508302db778f4ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USAR10400974,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.796,0.477,1.0,-7.161,1.0,0.108,0.314,0.0,0.12,0.685,119.928,4.0,,LaFace Records,P (P) 2004 LaFace Records,4408 +4409,spotify:track:235LXPXfi0SmOaS9TaCh3c,Teenage Dream,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:06SY6Ke6mXzZHhURLVU57R,Teenage Dream,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2010-08-24,https://i.scdn.co/image/ab67616d0000b273f619042d5f6b2149a4f5e0ca,1,1,227741,https://p.scdn.co/mp3-preview/b473f475ab258017d44a716b9dc77d7596d16a01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USCA21001255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.719,0.798,10.0,-4.582,1.0,0.0361,0.0162,2.34e-06,0.134,0.591,120.012,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",4409 +4410,spotify:track:3RmKpob8xzv1pzHEQrMJah,Let Me Blow Ya Mind,"spotify:artist:4d3yvTptO48nOYTPBcPFZC, spotify:artist:4yiQZ8tQPux8cPriYMWUFP","Eve, Gwen Stefani",spotify:album:6ZWL1xSTEvqs5A6dBh8vZw,Scorpion,spotify:artist:4d3yvTptO48nOYTPBcPFZC,Eve,2001-01-01,https://i.scdn.co/image/ab67616d0000b2730a825fea8b9095572e5130ef,1,4,230133,https://p.scdn.co/mp3-preview/53db459e35419d85ead0512b5144df7e1e176f6b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USIR10110155,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,hip pop,philly rap,r&b,urban contemporary,dance pop,pop",0.908,0.557,8.0,-4.243,0.0,0.107,0.242,0.0,0.0709,0.897,90.032,4.0,,Ruff Ryders RECORDS,"C © 2001 Ruff Ryders/Interscope Records, P ℗ 2001 Ruff Ryders/Interscope Records",4410 +4411,spotify:track:4Ff4tlRfY51a7OoDBmEQ73,Lost!,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:4Uo9tGSEkAUYHWfVGHhhZm,Viva La Vida or Death and All His Friends,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2008-06-19,https://i.scdn.co/image/ab67616d0000b273adcc90bbf8ffa384c25c4478,1,3,236213,https://p.scdn.co/mp3-preview/67027d61bbd4bebe2d2252296d7690bd4423cf7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAYE0800255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.359,0.779,7.0,-7.52,1.0,0.0412,0.0057,0.837,0.379,0.582,86.951,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",4411 +4412,spotify:track:2Abm5Sqqjj5PtWmGuEPjdj,Have a Little Faith (In Us) - Edit,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4Zm7KcV47uD0sHageJyq2h,One Voice,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,2003-10-20,https://i.scdn.co/image/ab67616d0000b2733a1db30857beb481aa6e5345,2,8,287666,https://p.scdn.co/mp3-preview/0c763497ec86a2e8bf66c660a8f9caaca89eb753?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUBM09641001,spotify:user:bradnumber1,2021-11-20T11:22:34Z,"australian pop,australian rock",0.564,0.736,11.0,-10.393,1.0,0.0467,0.292,2.12e-06,0.157,0.303,93.963,4.0,,BMG Music,P (P) 2003 BMG Australia Limited,4412 +4413,spotify:track:3lKZf71jeNi14udIFPJ29V,I Knew You Were Trouble.,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1KVKqWeRuXsJDLTW0VuD29,Red (Deluxe Edition),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2012-10-22,https://i.scdn.co/image/ab67616d0000b273254c8a09649551438b20f4c0,1,4,219720,https://p.scdn.co/mp3-preview/9acb9a869e7bd8e7154c7d816c59f4cda6a42447?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USCJY1231039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.622,0.469,3.0,-6.798,0.0,0.0363,0.00454,2.25e-06,0.0335,0.679,77.019,4.0,,"Big Machine Records, LLC","C © 2012 Apollo A-1 LLC, P ℗ 2012 Apollo A-1 LLC",4413 +4414,spotify:track:6VNKR6W04bCKdgEvTPXaHp,Total Eclipse of the Heart - Dance Mix,spotify:artist:1RfiRshRC2YlSG4Y1zNkAE,Nicki French,spotify:album:6z48iHES7MV26TZrZB3NNW,Total Eclipse of the Heart (Dance Mix) - Single,spotify:artist:1RfiRshRC2YlSG4Y1zNkAE,Nicki French,2010-06-22,https://i.scdn.co/image/ab67616d0000b2739e4dacac4dbb1e1d755703da,1,1,244280,https://p.scdn.co/mp3-preview/1fdd8ad96ac5c9a8152a024a40dfed357cb0a799?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRZR0791402,spotify:user:bradnumber1,2021-08-08T09:26:31Z,diva house,0.574,0.924,0.0,-7.074,1.0,0.0293,0.00433,3.77e-05,0.132,0.486,135.966,4.0,,Razor & Tie,,4414 +4415,spotify:track:5FDi3EQIZcm94ds65tp4MM,Santa Never Made It into Darwin,spotify:artist:7bzzp2TDqSg6rXfOv501Eb,Bill & Boyd,spotify:album:2E6N8C7OPoB97d1JO5sV4q,Good Old Aussie Country,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-04-04,https://i.scdn.co/image/ab67616d0000b273324c71dfe2a7aec0966e644c,1,14,255826,https://p.scdn.co/mp3-preview/0d68751342367d5e6840a2a34eee6f770e2c81ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic australian country,classic nz pop",0.656,0.592,4.0,-10.818,1.0,0.0294,0.414,0.0,0.139,0.741,137.99,4.0,,Fable Records,"C 2018 Image Records, P 2018 Southern Cross Music Pty Limited",4415 +4416,spotify:track:01u6AEzGbGbQyYVdxajxqk,Don't Be Cruel,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0C3t1htEDTFKcg7F2rNbek,Elvis' Golden Records,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1958-03-21,https://i.scdn.co/image/ab67616d0000b27320ee3e86e17f17239bef1f76,1,8,122893,https://p.scdn.co/mp3-preview/873f2231a4d75b183a538d6d7d942ed6171d0afe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRC15602859,spotify:user:bradnumber1,2024-01-02T05:24:44Z,"rock-and-roll,rockabilly",0.697,0.55,2.0,-11.496,1.0,0.179,0.856,3.44e-05,0.0907,0.844,84.802,4.0,,RCA Records Label,P (P) 1958 Sony Music Entertainment,4416 +4417,spotify:track:1pKeFVVUOPjFsOABub0OaV,Side To Side,"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","Ariana Grande, Nicki Minaj",spotify:album:3OZgEywV4krCZ814pTJWr7,Dangerous Woman,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2016-05-20,https://i.scdn.co/image/ab67616d0000b2735f9393fda71e7df39b34defd,1,5,226160,https://p.scdn.co/mp3-preview/1329c0e2020647a601d298c61408690508c4b977?cid=9950ac751e34487dbbe027c4fd7f8e99,True,2,USUM71602107,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,hip pop,pop,queens hip hop,rap",0.65,0.736,6.0,-5.84,0.0,0.229,0.0528,0.0,0.235,0.613,159.173,4.0,,Universal Records,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",4417 +4418,spotify:track:2dO88mixgzqmgy56wFUVSY,I Think We're Alone Now,spotify:artist:4C3uGP8vRDzxrhJxZiOjTe,Tiffany,spotify:album:298E55DESLiYPECZUKXd7I,Tiffany,spotify:artist:4C3uGP8vRDzxrhJxZiOjTe,Tiffany,1987-01-01,https://i.scdn.co/image/ab67616d0000b2736a528d36b71d8fdcb4353a3c,1,9,228840,https://p.scdn.co/mp3-preview/7b9838d0d6d5b71189ec6761c7069818babf278b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC18722580,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.75,0.723,7.0,-12.117,1.0,0.0485,0.0247,0.00414,0.0215,0.946,130.515,4.0,,Universal Music Group,"C © 1987 MCA Records Inc., P ℗ 1987 UMG Recordings, Inc.",4418 +4419,spotify:track:6JRLFiX9NJSoRRKxowlBYr,Is This Love,spotify:artist:2QsynagSdAqZj3U9HgDzjD,Bob Marley & The Wailers,spotify:album:13dXX35pYjr8FqRla40K2a,Kaya,spotify:artist:2QsynagSdAqZj3U9HgDzjD,Bob Marley & The Wailers,1978,https://i.scdn.co/image/ab67616d0000b273387799441ba867649dfbb702,1,3,232200,https://p.scdn.co/mp3-preview/8bbaf3fbb1801c0b9a94fdec7d4eaa69f5b36a9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USIR27800259,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae,roots reggae",0.776,0.561,6.0,-8.375,0.0,0.103,0.111,0.0,0.067,0.743,122.246,4.0,,Island Records,"C © 1978 The Island Def Jam Music Group, P ℗ 2001 The Island Def Jam Music Group",4419 +4420,spotify:track:2RSHsoi04658QL5xgQVov3,Bad Liar,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:3JfSxDfmwS5OeHPwLSkrfr,Origins (Deluxe),spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2018-11-09,https://i.scdn.co/image/ab67616d0000b273da6f73a25f4c79d0e6b4a8bd,1,5,260773,https://p.scdn.co/mp3-preview/56413ec463879763e7f9f347f82675e2cff6654c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USUM71816161,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.307,0.637,3.0,-6.993,1.0,0.0569,0.0732,0.0,0.368,0.0805,88.693,4.0,,Kid Ina Korner / Interscope,"C © 2018 KIDinaKORNER/Interscope Records, P ℗ 2018 KIDinaKORNER/Interscope Records",4420 +4421,spotify:track:2UIRHeHi72VP5WBMAfkPe5,Hello Friday (feat. Jason Derulo),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Flo Rida, Jason Derulo",spotify:album:4Fu9gz8BZgtVVpuc2r1l2H,Hello Friday (feat. Jason Derulo),spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2016-02-26,https://i.scdn.co/image/ab67616d0000b2739bead0ea894c213ae8c11039,1,1,201237,https://p.scdn.co/mp3-preview/bd1bca65dd59a87681cb94e879dd1f8a51871565?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USAT21600405,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,dance pop,pop",0.768,0.881,9.0,-4.392,0.0,0.113,0.0188,3.65e-06,0.298,0.502,99.98,4.0,,Poe Boy/Atlantic,"C © 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",4421 +4422,spotify:track:0T6MHrvUEI97Iy1USmsfft,To Kingdom Come,spotify:artist:7gjAu1qr5C2grXeQFFOGeh,Passion Pit,spotify:album:4iaO0b0rnbBmE4QHM0EYbH,Manners,spotify:artist:7gjAu1qr5C2grXeQFFOGeh,Passion Pit,2009,https://i.scdn.co/image/ab67616d0000b273049ea6f324aaeb08ac6a70ef,1,8,247533,https://p.scdn.co/mp3-preview/d647c6c5fd6db0a55f149c010418c0b0a573f7d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10901013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,indietronica,modern rock,neo-synthpop,shimmer pop",0.538,0.8,11.0,-4.571,1.0,0.0291,0.00635,1.57e-05,0.148,0.645,91.995,4.0,,Columbia,"P (P) 2009, 2010 frenchkiss records under exclusive license to Sony Music Entertainment",4422 +4423,spotify:track:1SLWLZPU1gP4UbJ7RniOFq,Love Is Easy,spotify:artist:47izDDvtOxxz3FzHYuUptd,McFly,spotify:album:4wIUJ6kVdgsKdppNMYXKsF,Memory Lane (The Best Of McFly) [Deluxe Edition],spotify:artist:47izDDvtOxxz3FzHYuUptd,McFly,2012-01-01,https://i.scdn.co/image/ab67616d0000b2735f9856c6b6bd3f14fdecf95b,1,1,222920,https://p.scdn.co/mp3-preview/449d55cec6a9435771b9c7e005d49ddfacdde9cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBUM71207143,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,talent show",0.68,0.666,9.0,-6.953,1.0,0.115,0.0694,0.0,0.157,0.789,151.995,4.0,,Universal-Island Records Ltd.,"C © 2012 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2012 Universal Island Records, a division of Universal Music Operations Limited",4423 +4424,spotify:track:36HHD09FNIwTnlYcPWiCrZ,Livin' It Up,"spotify:artist:1J2VVASYAamtQ3Bt8wGgA6, spotify:artist:5aEWnrN8h3MhuFUPRfaVuy","Ja Rule, Case",spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,9,259906,https://p.scdn.co/mp3-preview/67aac99634ea486055b2015116ff30d38393b282?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDJ20110767,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,gangster rap,hip hop,hip pop,pop rap,queens hip hop,rap,urban contemporary,contemporary r&b,new jack swing,r&b",0.874,0.742,1.0,-4.384,1.0,0.315,0.0705,0.0,0.0396,0.599,106.022,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",4424 +4425,spotify:track:6AGOKlMZWLCaEJGnaROtF9,Put Your Records On,spotify:artist:7MPGCB854Qo4alYMOPkBka,Ritt Momney,spotify:album:6K7559pAYrNCJwsv1uIIK7,Put Your Records On,spotify:artist:7MPGCB854Qo4alYMOPkBka,Ritt Momney,2020-04-24,https://i.scdn.co/image/ab67616d0000b273d52d8eb3be188231e120dbbd,1,1,210463,https://p.scdn.co/mp3-preview/5f8e41ff69918de51a17df2f9b4517c1fa319b9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USQX92004148,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bedroom pop,0.399,0.491,6.0,-10.778,0.0,0.0538,0.0563,0.00089,0.11,0.151,91.066,4.0,,Columbia,P (P) 2020 Disruptor Records/Columbia Records,4425 +4426,spotify:track:1bp2IO61zbQrbWNmKKxg3f,The Joker,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,spotify:album:5uYNj1HkZrWKAkhEYcGmJr,The Joker,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,1973-01-01,https://i.scdn.co/image/ab67616d0000b273375445cc7a2aedff11361b51,1,5,264503,https://p.scdn.co/mp3-preview/6291f55a2e6ef6e126bb2c25cc4b62288ba804e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USCA29100532,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.596,0.448,5.0,-9.616,1.0,0.0396,0.365,5.3e-06,0.206,0.796,83.293,4.0,,CAPITOL CATALOG MKT (C92),"C © 1973 Capitol Records, LLC, P ℗ 1973 Capitol Records, LLC",4426 +4427,spotify:track:48D177fBErMz5p4zeAW1N5,Unforgettable (Duet with Nat King Cole),spotify:artist:5tTsrGPwQRWUsHR2Xf7Ke9,Natalie Cole,spotify:album:3Z4DrrPcAsTWOhDelLNwrK,Unforgettable: With Love,spotify:artist:5tTsrGPwQRWUsHR2Xf7Ke9,Natalie Cole,1991,https://i.scdn.co/image/ab67616d0000b273580e35f4899ddf291f503fe0,1,22,210906,https://p.scdn.co/mp3-preview/116272b281e88e8dce8df6d65e468d9be89e1a6d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE19100030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,disco,quiet storm,soft rock,soul,vocal jazz",0.307,0.289,5.0,-13.369,1.0,0.0281,0.851,0.000126,0.0798,0.145,85.948,4.0,,Craft Recordings,"C 1991 Craft Recordings, a division of Concord Music Group, Inc., P 1991 Craft Recordings, a division of Concord Music Group, Inc.",4427 +4428,spotify:track:1IBk5PttmnPcGnysEwtiXi,Simple Man,spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,spotify:album:4zQRIyATzfm8RQ8ZOI47la,The Essential Lynyrd Skynyrd,spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,1998,https://i.scdn.co/image/ab67616d0000b2735491e85a66233fb508f02fa0,1,6,356960,https://p.scdn.co/mp3-preview/e3cdaf6405fbc0518787a1a4de2777adad40ea11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC17301726,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock,southern rock",0.433,0.756,6.0,-8.763,1.0,0.0443,0.00296,0.00166,0.268,0.415,120.574,4.0,,Strategic Marketing,"C © 2011 Geffen Records, P ℗ 2011 Geffen Records",4428 +4429,spotify:track:5px6upUHM3fhOP621Edp4V,Physical,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:5Vzq1wKBUXMxEZl3NPjJpS,Physical,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-01-30,https://i.scdn.co/image/ab67616d0000b273537e007e6eebfc945d9361f7,1,1,193829,https://p.scdn.co/mp3-preview/cef21e04a9987e7f988f96eec4cc161671735563?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAHT1901298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.647,0.844,0.0,-3.756,1.0,0.0457,0.0137,0.000658,0.102,0.746,146.962,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",4429 +4430,spotify:track:3JAd2QfH0rdNycmHOVcKpT,Too Many Times,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:5iTdMXmcuJl7bqVIsIJ76D,Essential As Anything,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,2015-10-02,https://i.scdn.co/image/ab67616d0000b273dd1b2cbb40cb1aa0e5e8484d,1,6,158266,https://p.scdn.co/mp3-preview/d366c1e0cc9e3f763ec77bf489d72d60683a2ae1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUFE00800006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.654,0.862,6.0,-3.936,0.0,0.127,0.298,1.04e-06,0.162,0.838,159.434,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Syray Music, P This Compilation ℗ 2015 Syray Music",4430 +4431,spotify:track:2z4pcBLQXF2BXKFvd0BuB6,Tip Toe (feat. French Montana),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:6vXTefBL93Dj5IqAWq6OTv","Jason Derulo, French Montana",spotify:album:6W6kkscDtohJAnJ9M8Nc5b,Tip Toe (feat. French Montana),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:6vXTefBL93Dj5IqAWq6OTv","Jason Derulo, French Montana",2017-11-10,https://i.scdn.co/image/ab67616d0000b273067d0339779c7cbefbf10fe5,1,1,187521,https://p.scdn.co/mp3-preview/2775b5b4d02a4df9d0b0672cbbdb64e67c368f0d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USWB11702102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,hip hop,pop rap,rap,southern hip hop,trap",0.847,0.702,10.0,-5.151,0.0,0.0596,0.0246,0.0,0.0678,0.647,98.008,4.0,,Beluga Heights/Warner Records,"C © 2017 Warner Records Inc., P ℗ 2017 Warner Records Inc.",4431 +4432,spotify:track:3ctoHckjyd13eBi2IDw2Ip,Seven Nation Army,spotify:artist:4F84IBURUo98rz4r61KF70,The White Stripes,spotify:album:0VXcqDD3sHdOIGtO6oYv3d,Elephant,spotify:artist:4F84IBURUo98rz4r61KF70,The White Stripes,2003-04-01,https://i.scdn.co/image/ab67616d0000b273a740e40ad00eaf662962f91d,1,1,231800,https://p.scdn.co/mp3-preview/eca519f0a85862d9510d57d59df557081d375e3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USVT10300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,blues rock,detroit rock,garage rock,modern blues rock,permanent wave,punk blues,rock",0.75,0.462,0.0,-7.664,1.0,0.0779,0.00576,0.545,0.307,0.309,123.865,4.0,,,,4432 +4433,spotify:track:6vODhpvfWwdsO0i9MBWnEq,Dani California,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:3rrvHWzZCF8TvqT9oJtfVZ,Dani California,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,2006-04-03,https://i.scdn.co/image/ab67616d0000b2739eece7a1b7140aaf4056b9b4,1,1,282160,https://p.scdn.co/mp3-preview/0454b7cef05f7db734eb04bd4f3948009838f380?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USWB10600700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.556,0.913,0.0,-2.36,1.0,0.0437,0.0193,8.59e-06,0.346,0.73,96.184,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",4433 +4434,spotify:track:0tKcYR2II1VCQWT79i5NrW,Thunder,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:5GlPAy2PRJW06GVFhKwGTl,Evolve,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2017-06-23,https://i.scdn.co/image/ab67616d0000b2737956bd9a3d7a15e4c2e37cc6,1,9,187146,https://p.scdn.co/mp3-preview/ef62eb257ada5dd10002ebb8aa6ba2889a96dde4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USUM71704167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.6,0.81,0.0,-4.749,1.0,0.0479,0.00683,0.21,0.155,0.298,167.88,4.0,,Universal Music Group,"C © 2017 KIDinaKORNER/Interscope Records, P ℗ 2017 KIDinaKORNER/Interscope Records",4434 +4435,spotify:track:7gtcp27cze07lru5sRcV4o,All I Ask Of You,"spotify:artist:7Ead768rc4ShGxnqtqccU5, spotify:artist:2nvKpWcP8etYTq4JrRiUiy","Sarah Brightman, Cliff Richard",spotify:album:0UAAKDyRT4bLMSibfsdsVn,Private Collection,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1988-11-07,https://i.scdn.co/image/ab67616d0000b2739c5f77a25a3a41050fb65b9b,1,3,252333,https://p.scdn.co/mp3-preview/a55c39b68673b63d963ae151d23a810fba608780?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBALG8600002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"operatic pop,adult standards,rock-and-roll",0.209,0.247,1.0,-15.144,1.0,0.0357,0.938,0.000834,0.11,0.204,82.354,4.0,,Parlophone UK,"C © 1988 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1988 Parlophone Records Ltd, a Warner Music Group Company",4435 +4436,spotify:track:6NdcSEhpGGAYXNnnhGS2s6,What I Like About You,spotify:artist:3daM7asS0gCFvyLemNx2EE,The Romantics,spotify:album:5ZwUOFZdWQ81RYMwXc4j3B,What I Like About You (And Other Romantic Hits),spotify:artist:3daM7asS0gCFvyLemNx2EE,The Romantics,1990,https://i.scdn.co/image/ab67616d0000b273058ddb36033c3ed71aeef22a,1,1,175400,https://p.scdn.co/mp3-preview/b7234cc36a1df8c2eac3e093397b956bea560218?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM10020612,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,mellow gold,new romantic,new wave,new wave pop,power pop,soft rock",0.542,0.915,9.0,-9.637,1.0,0.0549,0.319,5.34e-05,0.171,0.92,159.81,4.0,,Epic,"P 1979,1980,1983,1985,1990 CBS Records Inc.",4436 +4437,spotify:track:7hpFYWL3cw5m4y70cce7Zb,We Used To Be Friends,spotify:artist:7siPLyFwRFYQkKgWKJ5Sod,The Dandy Warhols,spotify:album:2SS8nVmmgJqJhRuYGboIOx,Welcome To The Monkey House,spotify:artist:7siPLyFwRFYQkKgWKJ5Sod,The Dandy Warhols,2003-01-01,https://i.scdn.co/image/ab67616d0000b2731dd9303a64f5e6205f4a562f,1,2,199960,https://p.scdn.co/mp3-preview/4a917aaf22fbe2b5e38e81132ca9c52aea7d978d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA20300003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance-punk",0.712,0.665,6.0,-4.878,0.0,0.0266,7.18e-05,0.192,0.306,0.594,105.284,4.0,,Capitol Records,"C © 2003 Capitol Records Inc., P ℗ 2003 Capitol Records Inc.",4437 +4438,spotify:track:1pTGc8pwyo6xtgXBKCBcFn,Woman in Love,spotify:artist:7jmTilWYlKOuavFfmQAcu6,Barbra Streisand,spotify:album:5mMebbufullX8FIhpCxwCt,Guilty,spotify:artist:7jmTilWYlKOuavFfmQAcu6,Barbra Streisand,1980-09-23,https://i.scdn.co/image/ab67616d0000b273788aec6603253d0d95169042,1,2,231840,https://p.scdn.co/mp3-preview/aa6668f4106c65a80ca07677fcd8ab580d4a5467?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM10006441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,operatic pop,soft rock",0.469,0.278,3.0,-16.311,0.0,0.028,0.248,0.000126,0.133,0.331,169.735,4.0,,Columbia,"P (P) 1980 Columbia Records, a division of Sony Music Entertainment",4438 +4439,spotify:track:4lgZJvM3yx4jdfRRUjDG3I,A Little Bit of Soap,spotify:artist:6EJmqnuK0r6qiAevFFiNNR,Paul Davis,spotify:album:0AINe3aXvD5RgTYooG7iGm,A Little Bit Of Paul Davis (Expanded Edition),spotify:artist:6EJmqnuK0r6qiAevFFiNNR,Paul Davis,1971,https://i.scdn.co/image/ab67616d0000b27323198ec095a629ff4d1524c6,1,6,152760,https://p.scdn.co/mp3-preview/335887c5fcb144759d4879bdbd20fd062fb89522?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USSM10903620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"soft rock,yacht rock",0.736,0.262,0.0,-13.234,1.0,0.0473,0.649,1.97e-06,0.148,0.738,126.596,4.0,,Legacy Recordings,"P This compilation (P) 2009 Epic Records, a division of Sony Music Entertainment",4439 +4440,spotify:track:52EWTw5ALe9OnjgAxX3Luo,Terrible Love,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,spotify:album:1WGjSVIw0TVfbp5KrOFiP0,Birdy,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,2011-11-04,https://i.scdn.co/image/ab67616d0000b2733661c01b54e181d01bd439a1,1,11,283880,https://p.scdn.co/mp3-preview/be14f9ea85a2f1a18b3996dc3d9211e9b66bb29b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAHS1100348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,uk pop,viral pop",0.46,0.451,2.0,-6.802,1.0,0.0253,0.499,4.71e-06,0.155,0.141,77.928,4.0,,Atlantic Records UK,"C © 2011 Jasmine Van den Bogaerde under exclusive licence to Warner Music UK Limited, P ℗ 2011 Jasmine Van den Bogaerde under exclusive licence to Warner Music UK Limited",4440 +4441,spotify:track:6Mfv6JuhcRtWnsABIJU9jv,Comin' Home,spotify:artist:5ZSYjpSDJAL5UxGSoVOPEa,The Radiators,spotify:album:3GUxDlBcIzmcST8V4PbKZH,Feel The Heat,spotify:artist:5ZSYjpSDJAL5UxGSoVOPEa,The Radiators,1979,https://i.scdn.co/image/ab67616d0000b27345d5a7bcac7cabd41b00b156,1,4,188280,https://p.scdn.co/mp3-preview/38eac69aa17a9e3b52a0ba45ff11eb7cb6db04a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUWA08700150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.624,0.797,9.0,-7.967,1.0,0.168,0.00308,0.0,0.0763,0.515,82.328,4.0,,WM Australia,"C © 1979 WEA Records, P ℗ 1979 WEA Records",4441 +4442,spotify:track:1zB4vmk8tFRmM9UULNzbLB,Thunder,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:33pt9HBdGlAbRGBHQgsZsU,Evolve,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2017-06-23,https://i.scdn.co/image/ab67616d0000b2735675e83f707f1d7271e5cf8a,1,10,187146,https://p.scdn.co/mp3-preview/ef62eb257ada5dd10002ebb8aa6ba2889a96dde4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USUM71704167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.604,0.822,0.0,-4.833,1.0,0.0438,0.00672,0.134,0.147,0.288,167.997,4.0,,Kid Ina Korner / Interscope,"C © 2018 KIDinaKORNER/Interscope Records, P ℗ 2018 KIDinaKORNER/Interscope Records",4442 +4443,spotify:track:6fA7akEuTUL3dW1V0GELaZ,Bent,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:2HqQR5SkxWX7uUWaxlLksn,Mad Season,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2000-05-23,https://i.scdn.co/image/ab67616d0000b2733813e6d5d97334659fb1daed,1,9,256133,https://p.scdn.co/mp3-preview/e265e2c09e915fa77e52a53a72641e3dcda0a4fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USAT20001176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.518,0.83,6.0,-6.814,0.0,0.0386,0.0404,3.85e-06,0.375,0.527,95.468,4.0,,Atlantic Records,"C © 2000 Atlantic Recording Corporation for the United states and WEA International Inc. for the world outside of the United States., P ℗ 2000 Atlantic Recording Corporation for the United states and WEA International Inc. for the world outside of the United States.",4443 +4444,spotify:track:7F4b4327TVVxloXy5dGCiX,Power of a Woman,spotify:artist:7zYGAXxAaq15C9eM29M8Fj,Eternal,spotify:album:0xkihXvGNRt4UMQ1Rsi5Mb,Power Of A Woman/Club #1,spotify:artist:7zYGAXxAaq15C9eM29M8Fj,Eternal,1995,https://i.scdn.co/image/ab67616d0000b2731c4e10af094420b1cd37fbd2,1,1,264493,https://p.scdn.co/mp3-preview/a2dbafd531d413a4620f3ba2ab2b8163ce22c8f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBAYE9500007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,girl group",0.75,0.739,0.0,-9.993,1.0,0.038,0.0275,1.71e-06,0.0558,0.911,106.39,4.0,,Parlophone UK,"C © 1995 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1995 Parlophone Records Ltd, a Warner Music Group Company",4444 +4445,spotify:track:4nS1sut0R2mgmFitKIShVe,On My Mind,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:5nhoVKDcCXvi3AruUFJWnv,Delirium (Deluxe),spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2015-11-13,https://i.scdn.co/image/ab67616d0000b273e9cbe14ad3ce1507e449adb6,1,5,213445,https://p.scdn.co/mp3-preview/185bb4038affc598692ac0e18a323a1a73fa9f94?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBUM71505456,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.702,0.705,0.0,-6.665,1.0,0.0543,0.258,5.93e-06,0.0879,0.743,154.909,4.0,,Polydor Records,"C © 2015 Polydor Ltd. (UK), P ℗ 2015 Polydor Ltd. (UK)",4445 +4446,spotify:track:5EEsZl9wCWtPHXoi9I9PY7,James Brown Is Dead (Original Mix),spotify:artist:4reUSabzsXZWM3BMH4fU1Q,L.A. Style,spotify:album:4pz0ozBafTLKaLCezi5zUB,James Brown Is Dead (Original Mix) - Single,spotify:artist:4reUSabzsXZWM3BMH4fU1Q,L.A. Style,2010-11-05,https://i.scdn.co/image/ab67616d0000b2735ce77e452bce6490a315481e,1,1,344400,https://p.scdn.co/mp3-preview/4edbb48bc5c30a27189f3abf2c0f7ee3e4cff0fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,BEI619100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new beat,rave",0.599,0.976,0.0,-7.649,0.0,0.0859,0.0013,0.787,0.383,0.501,130.724,4.0,,INFINITY RECORDS,"C 2010 INFINITY RECORDS, P 2010 INFINITY RECORDS",4446 +4447,spotify:track:5a42aKUmLpLRLE4XrBE8uJ,Daydreamer,spotify:artist:0isDnZYMWbwDz7hzw0XRjt,David Cassidy,spotify:album:4Ze1fA73mUq8aEKK2fa3Ih,The Definitive Collection,"spotify:artist:0isDnZYMWbwDz7hzw0XRjt, spotify:artist:7u1mqP3ykglpCB2c1p1p5I","David Cassidy, The Partridge Family",1974,https://i.scdn.co/image/ab67616d0000b27309eba48d48ebd1ab53b85f19,1,16,167533,https://p.scdn.co/mp3-preview/7f1a88ce0e57b0af6269fe54ced949274370eb93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USAR19901043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop",0.469,0.445,0.0,-13.177,1.0,0.1,0.713,0.0,0.0675,0.386,94.043,4.0,,Arista,"P (P) 1974, 2000 Arista Records, Inc.",4447 +4448,spotify:track:3iT4vWUWxqsn4hFTkEaJCi,Jenny,spotify:artist:01lz5VBfkMFDteSA9pKJuP,The Click Five,spotify:album:55RSBmhYzRPjydHzNNJF4l,Modern Minds and Pastimes (U.S. Version),spotify:artist:01lz5VBfkMFDteSA9pKJuP,The Click Five,2007-06-26,https://i.scdn.co/image/ab67616d0000b27388868e66ae0f54ee25c73499,1,2,202360,https://p.scdn.co/mp3-preview/43859d488de3575c643d1cc5548f75072bdc430c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAT20701822,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,neon pop punk,pixie",0.546,0.832,1.0,-2.679,1.0,0.0247,0.000316,0.0,0.177,0.633,96.019,4.0,,Lava/Atlantic,"C © 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4448 +4449,spotify:track:4Xgr8IWwGSGyqLjwiwOxqk,Walking On The Moon - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:4dB2uBf7IEazBMreDVZmB2,Reggatta De Blanc (Remastered),spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1979-10-02,https://i.scdn.co/image/ab67616d0000b273abc86ca2136f79ccc8c054cc,1,6,300826,https://p.scdn.co/mp3-preview/b5e467a9e818fe472c26171124e018560b843337?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM0201175,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.514,0.34,0.0,-12.779,1.0,0.0537,0.00142,0.0173,0.213,0.269,145.992,4.0,,Universal Music Group,"C © 2003 A&M Records, P ℗ 2003 A&M Records",4449 +4450,spotify:track:1J2HX4G9B5nvJoMP5qZYiI,Do What You Do Well,spotify:artist:59zvXMeM3koefoJWQhBki6,Ned Miller,spotify:album:5V8YLenv5lgnEo1lqVi9hu,From A Jack To A King - Greatest Hits,spotify:artist:59zvXMeM3koefoJWQhBki6,Ned Miller,2011-03-01,https://i.scdn.co/image/ab67616d0000b2734b1b99a39d63e812be8005b6,1,16,153666,https://p.scdn.co/mp3-preview/67bf94f235e0c8d8e6e52f8481fa4d61b1aace28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USA371249233,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.612,0.532,2.0,-13.63,1.0,0.0415,0.744,0.0,0.304,0.827,117.399,4.0,,"Nifty Music, Inc.",C (C) 2011 Goldenlane Records,4450 +4451,spotify:track:3jJZVeExYzVYiV6Y9Fl3DX,Plush,spotify:artist:2UazAtjfzqBF0Nho2awK4z,Stone Temple Pilots,spotify:album:7k1YOwYf369EX0aHeXApWp,Core,spotify:artist:2UazAtjfzqBF0Nho2awK4z,Stone Temple Pilots,1992-09-29,https://i.scdn.co/image/ab67616d0000b273147e0a8a7c795a4eb7c511db,1,9,310346,https://p.scdn.co/mp3-preview/34fc34262498af6b4d598e0cb5439ce952f08770?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAT29200016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,nu metal,post-grunge,rock",0.423,0.954,7.0,-3.157,0.0,0.047,0.0021,0.0,0.177,0.5,144.553,4.0,,Rhino,"C © 1992 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 1992 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",4451 +4452,spotify:track:2KjpWqvSKoQh0XIAywplWn,Give It To Me,"spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ, spotify:artist:31TPClRtHm23RisEBtV3X7, spotify:artist:2jw70GZXlAI8QzWeY2bgRc","Timbaland, Justin Timberlake, Nelly Furtado",spotify:album:2nbVfJlA3nGuaYPuMjq2sv,Shock Value Deluxe Version (International Version),spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ,Timbaland,2007-01-01,https://i.scdn.co/image/ab67616d0000b2738465721317be19add6d61927,1,2,234057,https://p.scdn.co/mp3-preview/02e7e2edd1efd9db51742c6490112d9f38aaf847?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70700995,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,dance pop,pop,canadian latin,canadian pop,dance pop,pop",0.978,0.687,8.0,-4.957,1.0,0.0646,0.197,0.00708,0.107,0.784,110.616,4.0,,Universal Music Group,"C © 2007 Blackground Records/Interscope Records, P ℗ 2007 Blackground Records/Interscope Records",4452 +4453,spotify:track:2effasDhaWmjIYjyS13A0e,Going Home - 2015 Remaster,spotify:artist:5c9HsNOWkLSqCduVHX8iyO,Normie Rowe,spotify:album:3a7JXyIuAl4LZ4niKhEf2W,Frenzy! The 50th Anniversary Collection,spotify:artist:5c9HsNOWkLSqCduVHX8iyO,Normie Rowe,2015-06-05,https://i.scdn.co/image/ab67616d0000b273221b1558078e41a184f29a9e,1,26,148266,https://p.scdn.co/mp3-preview/ac3feb680a97c2f99be93130c5affc692a6762ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA01500189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.389,0.802,7.0,-4.729,1.0,0.0333,0.0142,0.000119,0.172,0.707,129.918,4.0,,WM Australia,"C © 2015 Warner Music Australia Pty Ltd, P ℗ 2015 Warner Music Australia Pty Ltd",4453 +4454,spotify:track:1Eb4PqQq7mRiANziMK6f45,Garden Party,"spotify:artist:73sSFVlM6pkweLXE8qw1OS, spotify:artist:4VPrTgtrZqcXCy5nGYKDAe","Ricky Nelson, The Stone Canyon Band",spotify:album:1bZHbHtUvjGqUOKNla4lo0,Legacy,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,2000-01-01,https://i.scdn.co/image/ab67616d0000b273e8e386154ad8315823340cdd,3,18,228066,https://p.scdn.co/mp3-preview/6c4e7075aca1d29e8b0376b97d34c554cc935cad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USMCI0001322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,doo-wop,rock-and-roll,rockabilly",0.78,0.37,2.0,-15.946,1.0,0.0788,0.486,3.75e-05,0.129,0.815,144.036,4.0,,Capitol Records,"C © 2000 Capitol Records, LLC, P This Compilation ℗ 2000 Capitol Records, LLC",4454 +4455,spotify:track:3SaIsrEzrQGDcG1jCeaK8q,Bang Bang,"spotify:artist:2gsggkzM5R49q6jpPvazou, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","Jessie J, Ariana Grande, Nicki Minaj",spotify:album:3hQ64JbgfPMbXwYRvmZ41z,Sweet Talker (Deluxe Version),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2014-10-10,https://i.scdn.co/image/ab67616d0000b27301b57b2d37dad2a9e1fb10b9,1,4,199386,https://p.scdn.co/mp3-preview/e6f9a45cb4bf45d8d041d999f5904ed1d248cc15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUM71409737,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop,hip pop,pop,queens hip hop,rap",0.711,0.774,0.0,-3.391,0.0,0.0922,0.259,0.0,0.371,0.715,150.032,4.0,,Universal Music Group,"C © 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC, P ℗ 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC",4455 +4456,spotify:track:7GCeNa5UQHGxLW11zmeWJa,All I Know,spotify:artist:6rX8AFY10dsJkJsv23Z9Um,Karnivool,spotify:album:7988TZgR0U8ATWjiBluZ7Z,Sound Awake,spotify:artist:6rX8AFY10dsJkJsv23Z9Um,Karnivool,2009-06-05,https://i.scdn.co/image/ab67616d0000b273e0f9285954871808df42ca1b,1,6,293693,https://p.scdn.co/mp3-preview/84d16d3dc1133f0378bf8074da3aeab55b319f0d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUKA00900006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,progressive metal",0.333,0.838,4.0,-6.033,0.0,0.0404,0.00948,0.000109,0.105,0.254,98.481,4.0,,Cymatic Records,P (P) 2009 Karnivool,4456 +4457,spotify:track:6AkFxZzBfyzV5RF7mGkASM,8 Letters,spotify:artist:2jnIB6XdLvnJUeNTy5A0J2,Why Don't We,spotify:album:3Ky2Vo4QtYRrMIqIu9Nv3r,8 Letters,spotify:artist:2jnIB6XdLvnJUeNTy5A0J2,Why Don't We,2018-08-09,https://i.scdn.co/image/ab67616d0000b2735c45b46662728a83d99d58c8,1,1,190026,https://p.scdn.co/mp3-preview/76dd11284fdc92015576718c24f15189315b32df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21810389,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.607,0.478,1.0,-5.702,0.0,0.031,0.649,0.0,0.0928,0.255,88.979,4.0,,Atlantic Records,"C 2018 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world excluding the United States, P 2018 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world excluding the United States",4457 +4458,spotify:track:24ATpf896KofEEDCd13myS,Take Over Control,"spotify:artist:4D75GcNG95ebPtNvoNVXhz, spotify:artist:2d6W4cnC5XsVOaxtgaj9hA","AFROJACK, Eva Simons",spotify:album:1GXqE2FTs1xeanQheyjtCA,Take Over Control,spotify:artist:4D75GcNG95ebPtNvoNVXhz,AFROJACK,2010-01-01,https://i.scdn.co/image/ab67616d0000b273589db0381e2339f0face7300,1,1,208619,https://p.scdn.co/mp3-preview/8a04f80cb1920e5219df783c8b984f4bf45d1d96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLC281010987,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,dutch house,edm,electro house,pop dance,dutch pop",0.718,0.81,0.0,-3.443,0.0,0.106,0.238,0.0,0.0933,0.653,129.998,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Wall Recordings / SpinninRecords, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd., P ℗ 2010 Wall Recordings / SpinninRecords, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd.",4458 +4459,spotify:track:5Jaju68YS0OV6k3b3WLejP,Switch,spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,spotify:album:294cRyVzDokbjoBzdh2U4k,Lost And Found (International Version),spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,2005-03-29,https://i.scdn.co/image/ab67616d0000b2738417b40005a5a19303bd260c,1,3,196653,https://p.scdn.co/mp3-preview/2076f5514c2a48fcc3bb92f1b53a3b4adc1bedcb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10500153,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap",0.877,0.884,1.0,-4.967,1.0,0.171,0.00697,0.00049,0.557,0.523,102.512,4.0,,Interscope,"C © 2005 Interscope Records, P ℗ 2005 Interscope Records",4459 +4460,spotify:track:4Vj8J4iRkzjTsRLbwSOS4v,Daddy's Home,spotify:artist:3xaiq6cHhYX5xclwRkT6Jf,Shep And The Limelites,spotify:album:07Q1h0jTel4y0WLU5vfazN,100 Greatest Rock 'n' Roll Hits from the 50s & 60s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-02-19,https://i.scdn.co/image/ab67616d0000b27361648f1944669744404b855c,1,40,173906,https://p.scdn.co/mp3-preview/6ec1d6e2611f2ba66441e4c029d738205357ac1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,DEAR41442410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.478,0.254,5.0,-7.723,1.0,0.0315,0.922,1.54e-05,0.134,0.338,146.629,3.0,,Domestic Special Marketing,"C 2016 Domestic Special Marketing, P 2016 Domestic Special Marketing",4460 +4461,spotify:track:6HJizCbaqaEQG1eLjn341Z,Hurtless,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:1WKIR7hhHN1DvJPn09gIST,Hurtless,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2022-03-31,https://i.scdn.co/image/ab67616d0000b2735a2ed586c163472d6d3f8532,1,1,180274,https://p.scdn.co/mp3-preview/dc60ead6024d3850679822d2d7b35c0a6c4de45b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,AUUM72100595,spotify:user:bradnumber1,2022-05-19T22:39:23Z,"australian pop,pop",0.37,0.559,0.0,-5.589,1.0,0.0526,0.186,0.0,0.121,0.316,162.816,4.0,,Universal Music Australia Pty. Ltd.,"C © 2022 Universal Music Australia Pty Ltd., P ℗ 2022 Universal Music Australia Pty Ltd.",4461 +4462,spotify:track:5troof8mcGO3AafoDbk1gc,Look What You Made Me Do,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:4fW1sFeE43nuZlAw2xtmC3,reputation,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2017-11-10,https://i.scdn.co/image/ab67616d0000b2732bc33ce6acd39112e88b4c0e,1,6,211853,https://p.scdn.co/mp3-preview/d84e23333b83d492e778d55447e2eb47d71415ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1750000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.766,0.709,9.0,-6.471,0.0,0.123,0.204,1.41e-05,0.126,0.506,128.07,4.0,,"Big Machine Records, LLC","C © 2017 Big Machine Label Group, LLC, P ℗ 2017 Big Machine Label Group, LLC",4462 +4463,spotify:track:0Si6MQzSdOyfWTy0LP5ojD,Release Me,"spotify:artist:0e1jJi30tgwjWTSrt6CJZT, spotify:artist:2W96jIq7YDNjCi3iHsx7vm, spotify:artist:2iMIX1m4cwkuqKJbBIdwnt, spotify:artist:17XXKfRBMCWvLrqGoNkJXm","Eddie Miller, Robert Yount, Dub Williams, Engelbert Humperdinck",spotify:album:4upZ5RN2GZaWwYvGYhjjWO,Release Me,spotify:artist:17XXKfRBMCWvLrqGoNkJXm,Engelbert Humperdinck,1967-05-20,https://i.scdn.co/image/ab67616d0000b27374c609134e47c0cd35614d54,1,1,204413,https://p.scdn.co/mp3-preview/f43fa219292722ed2abffb3b3345f98085946503?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBF076700560,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new orleans jazz,adult standards,easy listening",0.205,0.299,5.0,-11.076,1.0,0.0293,0.839,1.06e-05,0.105,0.275,87.107,4.0,,Decca (UMO),"C © 1967 Decca, a division of Universal Music Operations Limited, P ℗ 2017 Decca, a division of Universal Music Operations Limited",4463 +4464,spotify:track:2lxXXI3hF46APE0wZlTeUZ,When It All Falls Apart,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:0iFKQKmkSxKjoKvI6j45to,The Secret Life Of...,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2005-10-18,https://i.scdn.co/image/ab67616d0000b273dd5ead55bbde87d6f73b86ef,1,3,192560,https://p.scdn.co/mp3-preview/25fc7717944ed3a1447c8df72e0fca7648f0cfe5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USWB10503583,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.678,0.855,5.0,-3.628,0.0,0.0298,0.00248,0.0,0.305,0.705,107.975,4.0,,Sire/Warner Records,"C © 2005 Sire Records. Marketed by Warner Records Inc., A Warner Music Group Company., P ℗ 2005 Sire Records. Marketed by Warner Records Inc., A Warner Music Group Company.",4464 +4465,spotify:track:2u3K5ImL5pQOsjYH8sszUG,Hard To Say I'm Sorry (feat. Peter Cetera),"spotify:artist:4UGMQyNcbGHYg5CDMKkSw3, spotify:artist:5xWPOujQqd4wXyB08slZ9Z","Az Yet, Peter Cetera",spotify:album:5hiQZaZeGH7HWy2VjDwTcZ,Hits Of The 90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2002-05-20,https://i.scdn.co/image/ab67616d0000b273b32c683cba9d35640c19ef21,1,15,194293,https://p.scdn.co/mp3-preview/3943941653f8b44fec2adc145fa627d961abab56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USLF29600012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,soft rock",0.544,0.389,5.0,-11.078,0.0,0.036,0.616,0.0,0.137,0.226,127.87,4.0,,RCA Camden,P (P) This compilation 2002 BMG UK & Ireland Ltd.,4465 +4466,spotify:track:1EwjnN6oVhgJI8uMXLsKqv,Generation Why,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,spotify:album:4ZAt2G4EguE7sBlmcA22Mp,Seizures,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,2009-01-01,https://i.scdn.co/image/ab67616d0000b27334292920eeb06dd4071061b8,1,2,162440,https://p.scdn.co/mp3-preview/a0b980eaf844dcb7690709bcca70dbb0018d7fe4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUEL00900024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussie emo,australian alternative rock,australian indie",0.529,0.854,2.0,-4.875,1.0,0.0426,0.000131,1.79e-05,0.222,0.595,129.936,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Eleven: A Music Company, P ℗ 2009 Eleven: A Music Company",4466 +4467,spotify:track:3OT3Kg4jyVkdZm4Ncz6JgX,Poker Face,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:4yHr095BMG5I3IRH4ToE5l,The Fame Monster (Deluxe),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2009-01-01,https://i.scdn.co/image/ab67616d0000b273ebb720684d839c8909d1dac3,1,12,237213,https://p.scdn.co/mp3-preview/36abf77572983417d63a3aed8923d00e07167efa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70824409,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.848,0.828,8.0,-4.557,0.0,0.0714,0.136,1.35e-06,0.114,0.794,119.0,4.0,,Interscope,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",4467 +4468,spotify:track:3N0s4EcFNoVEvHa4MPF38u,Waiting for Tonight,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:35pQoBuosurSPDG6vQlT0I,On The 6,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,1999,https://i.scdn.co/image/ab67616d0000b2730ef67d97344822ad1fffcb16,1,8,246426,https://p.scdn.co/mp3-preview/1dda429c3edad0ec9be128a23ecfa41183658ea3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19900596,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.695,0.945,10.0,-6.165,0.0,0.0418,0.00341,0.0727,0.103,0.84,125.013,4.0,,Work,P (P) 1999 Sony Music Entertainment Inc.,4468 +4469,spotify:track:3r7L0AZv76PzUI8qRD8Zj8,Think of Me,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:5hL1WtvNd5Nv9gfws8A4bN,Think of Me,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2019-03-29,https://i.scdn.co/image/ab67616d0000b273249230384f320404bbe053ed,1,1,184454,https://p.scdn.co/mp3-preview/3e5ff4c4ae4b5a3b2de599d335bc2388e7403d6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUBM01900011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.725,0.778,7.0,-5.499,1.0,0.0913,0.00945,3.69e-06,0.102,0.483,113.049,4.0,,Sony Music Entertainment,P (P) 2019 Sony Music Entertainment Australia Pty Ltd,4469 +4470,spotify:track:7aRNccA1RsVl7lD7steC5N,Tell Me (feat. Christina Aguilera),"spotify:artist:59wfkuBoNyhDMQGCljbUbA, spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS","Diddy, Christina Aguilera",spotify:album:7kIi4z3UO8ZqH3GVX18p7h,Press Play,spotify:artist:59wfkuBoNyhDMQGCljbUbA,Diddy,2006-10-16,https://i.scdn.co/image/ab67616d0000b27360c99c564024a5432e81eb5f,1,7,246146,https://p.scdn.co/mp3-preview/c6cd9b840ee8d15bbd7ed662be03ee4243047d68?cid=9950ac751e34487dbbe027c4fd7f8e99,True,49,USBB40610592,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap,dance pop,pop",0.548,0.938,8.0,-4.97,1.0,0.279,0.235,0.0,0.531,0.334,98.868,4.0,,Bad Boy Records,"C © 2006 Bad Boy Records LLC for the United States and WEA International Inc. for the world excluding the United States, South America and Central America., P ℗ 2006 Bad Boy Records LLC for the United States and WEA International Inc. for the world excluding the United States, South America and Central America.",4470 +4471,spotify:track:74nl6X5WEfxdRvGkr5weof,Wanted Dead Or Alive,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:3Ad4QdO0EJr1c2livr9cmm,Bon Jovi Greatest Hits,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273f0d41275363a36b5772b49b2,1,5,308560,https://p.scdn.co/mp3-preview/660a7d68333d424601daee029aab3f95ad26ca39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.258,0.817,7.0,-3.609,1.0,0.0419,0.0842,0.0179,0.315,0.263,148.742,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",4471 +4472,spotify:track:4wr2LEc4Inxv0M1Fch9uVj,Ma Baker,spotify:artist:54R6Y0I7jGUCveDTtI21nb,Boney M.,spotify:album:3qanmly9I3vfv593JutFbB,The Essential Boney M.,spotify:artist:54R6Y0I7jGUCveDTtI21nb,Boney M.,2012-08-27,https://i.scdn.co/image/ab67616d0000b273783d09e4b4096f51281a9fa7,1,5,274773,https://p.scdn.co/mp3-preview/7325be9638d27ade43e2b6308f4849464414fd19?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,DED167700026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.744,0.728,2.0,-7.03,0.0,0.142,0.0392,4.9e-05,0.318,0.904,129.001,4.0,,MCI,P This compilation (P) 2012 Sony Music Entertainment Germany GmbH,4472 +4473,spotify:track:5PH5tPV276ZpbLeWAeYXPq,Only Thing Missing,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:42w25uAncdyETcTJyOV16K,T. R. U. T. H.,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2020-10-16,https://i.scdn.co/image/ab67616d0000b27331c4d69ad8350750f8d2bedd,1,6,161120,https://p.scdn.co/mp3-preview/29bea24ddd54d0b82ab5a5eeb4d9095f75ba51ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUBM02000457,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.667,0.719,8.0,-4.768,0.0,0.263,0.349,0.0,0.116,0.533,94.956,4.0,,Sony Music Entertainment,P (P) 2020 Sony Music Entertainment Australia Pty Ltd,4473 +4474,spotify:track:2cHfcVPM15WgSg5K45Um7L,Black Superman (Muhammad Ali),spotify:artist:7s8sBDHfKZL7gFBtdObnTm,Johnny Wakelin,spotify:album:1UHdgRzNBVksMYaH0escmU,Black Superman (Muhammad Ali),spotify:artist:7s8sBDHfKZL7gFBtdObnTm,Johnny Wakelin,2008-07-01,https://i.scdn.co/image/ab67616d0000b273e58a0c8ad53431645beecb0b,1,1,223240,https://p.scdn.co/mp3-preview/ad227cc48f53d7122bd92763969b9cfd14066752?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USA560807272,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.777,0.39,5.0,-15.895,1.0,0.0321,0.121,4.48e-05,0.0655,0.861,104.981,4.0,,"Nifty Music, Inc.",C (C) 2008 Goldenlane Records,4474 +4475,spotify:track:4IBihEaN04iwfX5I9sGFj9,Jump,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:5pLlGJrxuQO3jMoQe1XxZY,Unapologetic (Deluxe),spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2012-12-11,https://i.scdn.co/image/ab67616d0000b2736dee21d6cd1823e4d6231d37,1,6,264453,https://p.scdn.co/mp3-preview/52b3d7ce47d4ba56541711363c2c439578ac9d11?cid=9950ac751e34487dbbe027c4fd7f8e99,True,47,USUM71214742,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.629,0.819,0.0,-6.181,1.0,0.254,0.227,0.00733,0.169,0.47,162.048,4.0,,Def Jam Recordings,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",4475 +4476,spotify:track:19Shlms2uTnOjIUg50TXzd,Never Going Back Again - 2004 Remaster,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:0BwWUstDMUbgq2NYONRqlu,Rumours (Super Deluxe),spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1977-02-04,https://i.scdn.co/image/ab67616d0000b273e52a59a28efa4773dd2bfe1b,1,3,134400,https://p.scdn.co/mp3-preview/b6b7b7598c6e07019d85b116741e5f7b95d515c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USWB11301112,spotify:user:bradnumber1,2023-08-20T21:10:52Z,"album rock,classic rock,rock,soft rock,yacht rock",0.654,0.336,6.0,-12.825,1.0,0.0379,0.858,0.385,0.0786,0.947,176.083,4.0,,Rhino/Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",4476 +4477,spotify:track:1KK070iuoUVsOuHRKu3zh9,World,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:1AlUOeduSVZarFYrLHaPqR,Horizontal,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1968-01-01,https://i.scdn.co/image/ab67616d0000b2730672d9218e3a81286c752555,1,1,195040,https://p.scdn.co/mp3-preview/395aab20edb90e90feba1b900d42d113dada052b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBAKW6701006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.276,0.528,2.0,-9.862,1.0,0.0334,0.452,0.233,0.133,0.26,86.301,4.0,,Bee Gees Catalog,"C © 1968 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P This Compilation ℗ 1968 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",4477 +4478,spotify:track:5FlstTJ6lSmn2qyfemHoZi,Handy Man,spotify:artist:7ydcRbgt0yM9etADb1Ackp,Jimmy Jones,spotify:album:1eJCXO4NTUdA6K56f5y3I8,Handy Man,spotify:artist:7ydcRbgt0yM9etADb1Ackp,Jimmy Jones,2013-05-15,https://i.scdn.co/image/ab67616d0000b273cf3cac9ff86d7fa488d5d554,1,1,124107,https://p.scdn.co/mp3-preview/a3b2ac8ebed39cdaeb3b805756de7fb71b4d60b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMFME1332468,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues,rock-and-roll",0.505,0.683,10.0,-8.354,1.0,0.0452,0.647,0.0,0.209,0.852,146.71,4.0,,Black Sheep Music,C (C) 2013 Entertain Me Europe LTD,4478 +4479,spotify:track:1vbmdeXAV4fXR12I5FR5tD,Please Stay - Single Version,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,spotify:album:4Pazwl8nUfQj49K6xyADQ7,All-Time Greatest Hits & More 1959-1965,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,2007-01-29,https://i.scdn.co/image/ab67616d0000b2736cc86253da56d570d934421f,1,13,135480,https://p.scdn.co/mp3-preview/9bebfe164daef3f58f7141fe8b4cc4635b65a073?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USEW20180249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,doo-wop,rock-and-roll,rockabilly,soul",0.727,0.448,10.0,-7.833,1.0,0.0282,0.323,0.0,0.194,0.71,112.986,4.0,,Rhino,"C © 1988 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1988 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4479 +4480,spotify:track:1VyvZr4jkMtHER7iBQsDIz,Green River,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:1P7vH1YuqEcFndyDMwlgKT,Green River (40th Anniversary Edition),spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1969-08-03,https://i.scdn.co/image/ab67616d0000b273fe82c2a8689fd60c7a0ae2e0,1,1,154120,https://p.scdn.co/mp3-preview/c0d04e38daa83f5a00cfeda53ec3e8bc07afea6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC4R0817600,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.702,0.772,9.0,-9.677,1.0,0.0277,0.0312,0.00837,0.0809,0.973,141.694,4.0,,Fantasy Records,"C © 2008 Concord Music Group, Inc., P ℗ 2008 Concord Music Group, Inc.",4480 +4481,spotify:track:0nox76VxGYPIIIP7yr5I6o,7 rings,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:6sUzNE1SPNLBXBCZs3PIAO,"thank u, next",spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2018-02-07,https://i.scdn.co/image/ab67616d0000b27379826f235cf8bc00256db3a6,1,10,178626,https://p.scdn.co/mp3-preview/eddb7dc7bded9d15e16e669b0b718e745a6ee748?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USUM71900111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.78,0.321,1.0,-10.747,0.0,0.372,0.562,0.0,0.0881,0.315,139.961,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",4481 +4482,spotify:track:0Y6LOyCGL6AgWDc0zGcLKt,Monkey Wrench,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:6t0KW8iHL9e8Q60nW5KYsR,The Colour And The Shape,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,1997-05-20,https://i.scdn.co/image/ab67616d0000b27372fedf674e905d44d3e205d7,1,2,231160,https://p.scdn.co/mp3-preview/3f31f7aff62d944564cff30e1927bf94610c0bc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRW29600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.405,0.962,4.0,-4.81,1.0,0.0766,2.99e-05,5.11e-05,0.124,0.703,174.098,4.0,,RCA Records Label,"P (P) 1997 Roswell Records, Inc",4482 +4483,spotify:track:4l7YIni9bAiGwWMqK5wvgV,You Learn - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,spotify:album:5Ap3F8CxjjsQKZGASDcHNA,Jagged Little Pill - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,1995,https://i.scdn.co/image/ab67616d0000b273242e643ea07118ecf677a6ef,1,7,239640,https://p.scdn.co/mp3-preview/6ab11ce6ecb8a7a5689876e82dd7921311abfc6d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USMV21500007,spotify:user:bradnumber1,2022-01-11T11:13:46Z,"canadian pop,canadian singer-songwriter,lilith,neo mellow,pop rock,singer-songwriter",0.401,0.706,8.0,-7.554,1.0,0.0404,0.00415,0.0,0.0916,0.458,168.669,4.0,,Rhino/Maverick Records,"C © 1995 Maverick Recording Company. All Rights Reserved, P ℗ 1995 Maverick Recording Company. Marketed by Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",4483 +4484,spotify:track:0zaWQBwkfh9OmK77CiDmRI,Always On Time,"spotify:artist:1J2VVASYAamtQ3Bt8wGgA6, spotify:artist:5rkVyNGXEgeUqKkB5ccK83","Ja Rule, Ashanti",spotify:album:4Xc3wBfUZ9yiszOrttoCXV,Pain Is Love (International Version),spotify:artist:1J2VVASYAamtQ3Bt8wGgA6,Ja Rule,2001-10-29,https://i.scdn.co/image/ab67616d0000b273e32189a249c2e0550eb97236,1,5,245093,https://p.scdn.co/mp3-preview/e092bf82bcb5d96acd231028be273e323a8ac010?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USDJ20110760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,gangster rap,hip hop,hip pop,pop rap,queens hip hop,rap,urban contemporary,dance pop,hip pop,r&b,urban contemporary",0.838,0.705,5.0,-6.131,0.0,0.29,0.195,0.0,0.336,0.837,96.643,4.0,,Def Jam Recordings,"C © 2001 The Island Def Jam Music Group, P ℗ 2001 The Island Def Jam Music Group",4484 +4485,spotify:track:07KYQySlrmE94gaLbhvp4X,Over Under Sideways Down - The Mono Album,spotify:artist:2lxX1ivRYp26soIavdG9bX,The Yardbirds,spotify:album:3s6wTRMDispMa4gCd26FPc,Roger the Engineer,spotify:artist:2lxX1ivRYp26soIavdG9bX,The Yardbirds,1966-07-15,https://i.scdn.co/image/ab67616d0000b273af3dcf0dbaeb18878ab061fe,1,4,142506,https://p.scdn.co/mp3-preview/c6d38a12e69ab194461c3821f84d64813872051c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAFR6610027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,british invasion,classic rock,country rock,folk rock,hard rock,psychedelic rock,rock,singer-songwriter",0.529,0.861,11.0,-10.581,1.0,0.0784,0.292,0.225,0.314,0.387,96.52,4.0,,Edsel,C (C) 2015 Demon Music Group Ltd.,4485 +4486,spotify:track:0shGCs5AkhwJIgUb0SSz2B,The Way You Look Tonight,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,spotify:album:7gmak9ZGm10y4PtZa9SBQn,Ultimate Sinatra,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,2015-04-17,https://i.scdn.co/image/ab67616d0000b273b19cb81319fbfd9ed54baeae,1,15,201200,https://p.scdn.co/mp3-preview/1bc569b4b613a246a1d466e40dba29e707bfea57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USRH10723024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge",0.592,0.369,5.0,-8.68,0.0,0.032,0.856,0.0,0.352,0.529,132.952,4.0,,FRANK SINATRA HYBRID,"C © 2015 Universal Music Enterprises, P This Compilation ℗ 2015 Universal Music Enterprises",4486 +4487,spotify:track:0PAj9Y5kFEzhGeWkockoxv,Wild Things,spotify:artist:2wUjUUtkb5lvLKcGKsKqsR,Alessia Cara,spotify:album:2AGNF8r2y8HL85yVk2bwmS,Know-It-All (Deluxe),spotify:artist:2wUjUUtkb5lvLKcGKsKqsR,Alessia Cara,2016-03-11,https://i.scdn.co/image/ab67616d0000b2730a48794d471447a030998815,1,6,188493,https://p.scdn.co/mp3-preview/47fd4719a2e96b544e6266c82f54e2589e012e39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM71504407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.741,0.626,1.0,-4.826,0.0,0.0886,0.02,0.0,0.0828,0.706,108.029,4.0,,"EP Entertainment, LLC / Def Jam","C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",4487 +4488,spotify:track:0E7XUbcz9dkKD3xYx8BoPB,The Ending Is Just The Beginning Repeating,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:3mxAryyZ7SWirYbXkp58y4,The Ending Is Just The Beginning Repeating,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,2011-01-01,https://i.scdn.co/image/ab67616d0000b2733b39539b2efe8a44de9b24d5,1,11,248000,https://p.scdn.co/mp3-preview/82743ec2e8865b48279236ff0a77fa2361bd145a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUUM71100371,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,australian ska",0.485,0.902,9.0,-4.674,0.0,0.102,0.000154,0.01,0.0989,0.634,144.246,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Dew Process/Universal Music Australia, P ℗ 2011 Dew Process/Universal Music Australia",4488 +4489,spotify:track:4xGzYDMgJ2YeSz7xuI8gSL,Check It Out,"spotify:artist:085pc2PYOi8bGKj0PNjekA, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","will.i.am, Nicki Minaj",spotify:album:35zNOPsABsN4mPIFj95y4X,Check It Out (Main Radio Mix),"spotify:artist:085pc2PYOi8bGKj0PNjekA, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","will.i.am, Nicki Minaj",2010-01-01,https://i.scdn.co/image/ab67616d0000b27334962cb3a414c1a1ad77572e,1,1,238160,https://p.scdn.co/mp3-preview/586f61441739ee9a8a1e4c0ae72e89bab84f6e30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71023474,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,hip pop,pop,queens hip hop,rap",0.858,0.676,3.0,-4.835,0.0,0.0746,0.0523,3.68e-05,0.103,0.7,129.991,4.0,,Interscope,"C © 2010 Interscope Records, P ℗ 2010 Interscope Records",4489 +4490,spotify:track:2A6yzRGMgSQCUapR2ptm6A,True Colors,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,spotify:album:31TRqoVBTQi0lzlPLtvINn,True Colors,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,1986-10-14,https://i.scdn.co/image/ab67616d0000b2735128af6747a56ccb3c7ea5b3,1,4,227600,https://p.scdn.co/mp3-preview/9a4a7d15bbde0b95dd8f3af4a69259eb70535130?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USSM18600632,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,permanent wave,soft rock",0.397,0.207,0.0,-13.155,1.0,0.0331,0.701,3.07e-05,0.116,0.268,171.282,4.0,,Epic,"P (P) 1986 Epic Records, a division of Sony Music Entertainment",4490 +4491,spotify:track:5F2lWCeBZMxpo6SG1Q3PlL,Don't You Know - Radio Edit,"spotify:artist:7keGfmQR4X5w0two1xKZ7d, spotify:artist:2FsZnS8gQ8jG1HGnPYNlm9","Kungs, Jamie N Commons",spotify:album:66KCBRiOFSs9bki2A15WlB,Layers,spotify:artist:7keGfmQR4X5w0two1xKZ7d,Kungs,2016-11-04,https://i.scdn.co/image/ab67616d0000b273af72d0856c5527dc97f3ea08,1,3,184986,https://p.scdn.co/mp3-preview/e38f33875e51dc281e2b69ee6b7b0067a0bfaa72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,FR9W11610792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,uk dance,modern blues rock",0.743,0.736,2.0,-4.849,1.0,0.0628,0.0651,0.0078,0.121,0.605,119.981,4.0,,Universal Music Division Island Def Jam,"C © 2016 Val Production, under exclusive license to Island Def Jam, a Universal Music France label, P ℗ 2016 Val Production, under exclusive license to Island Def Jam, a Universal Music France label",4491 +4492,spotify:track:3NWpG50DNlO8IiVdx6Ig3w,Dead Skunk,spotify:artist:3loACRmkzdtOMNJEaB6j8L,Loudon Wainwright III,spotify:album:2cJ9IMbEO6RiWs3jh4I8zd,Album III,spotify:artist:3loACRmkzdtOMNJEaB6j8L,Loudon Wainwright III,1972,https://i.scdn.co/image/ab67616d0000b2738d4c80af74160fefd02e3154,1,1,185733,https://p.scdn.co/mp3-preview/3c4e50aced34f6c9a67a33d73f77d2b8b64562ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USSM19912588,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk,singer-songwriter",0.633,0.655,7.0,-11.514,1.0,0.0312,0.617,2.79e-06,0.113,0.967,146.868,4.0,,Columbia,P (P) 1972 Sony Music Entertainment Inc.,4492 +4493,spotify:track:7ycWLEP1GsNjVvcjawXz3z,Praise The Lord (Da Shine) (feat. Skepta),"spotify:artist:13ubrt8QOOCPljQ2FL1Kca, spotify:artist:2p1fiYHYiXz9qi0JJyxBzN","A$AP Rocky, Skepta",spotify:album:3MATDdrpHmQCmuOcozZjDa,TESTING,spotify:artist:13ubrt8QOOCPljQ2FL1Kca,A$AP Rocky,2018-05-25,https://i.scdn.co/image/ab67616d0000b2739feadc48ab0661e9b3a9170b,1,5,205040,https://p.scdn.co/mp3-preview/ba69e5d1385c353090c2c6c30d398501e611315d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,80,USRC11800930,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hip hop,rap,birmingham grime,grime,instrumental grime,uk hip hop",0.854,0.569,5.0,-8.151,0.0,0.106,0.0609,0.0816,0.1,0.294,80.015,4.0,,A$AP Worldwide/Polo Grounds Music/RCA Records,P (P) 2018 A$AP Rocky Recordings LLC/RCA Records. Marketed & Distributed by Polo Grounds Music/RCA Records.,4493 +4494,spotify:track:631AQDVTn4ZJRBFDeFMlZ4,Hole In My Shoe,spotify:artist:1CD77o9fbdyQFrHnUPUEsF,Traffic,spotify:album:3E9GiUlnRL2Sq0mstTSElN,Mr. Fantasy,spotify:artist:1CD77o9fbdyQFrHnUPUEsF,Traffic,1967-12-08,https://i.scdn.co/image/ab67616d0000b2730de1166a425366bf512133f4,1,14,181266,https://p.scdn.co/mp3-preview/536d81cb94b8b4d45751b9da36db180c711b2772?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAAN0080068,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,british blues,classic rock,country rock,folk rock,mellow gold,progressive rock,psychedelic rock",0.493,0.721,11.0,-8.795,1.0,0.0368,0.406,2.93e-05,0.0713,0.334,101.666,4.0,,Universal-Island Records Ltd.,"C © 1968 Island Records, a division of Universal Music Operations Limited, P This Compilation ℗ 1999 Island Records, a division of Universal Music Operations Limited",4494 +4495,spotify:track:5jYKQ3iM1mvwLhM4ynOFd1,...Baby One More Time,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:3DFnN7SaYffZ6BrSmIhtkR,100 Hits of the '90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-02-26,https://i.scdn.co/image/ab67616d0000b273528024cf242c37a7946933e5,1,1,211066,https://p.scdn.co/mp3-preview/174e01719c3b06ee1437cb13f892e539df14b6d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI19810404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.759,0.649,0.0,-7.727,0.0,0.0306,0.199,0.000313,0.449,0.912,92.957,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment,4495 +4496,spotify:track:61QIfqud4mdN8JgTgIlW9M,Stand and Deliver,spotify:artist:2DppeCnNtvrLfEobq9Pw5r,Adam & The Ants,spotify:album:3g5lZ39hstGGkkYzG4GfSY,Prince Charming (Remastered),spotify:artist:2DppeCnNtvrLfEobq9Pw5r,Adam & The Ants,2004,https://i.scdn.co/image/ab67616d0000b27328f7ab42c6c453f2139a9c59,1,6,215626,https://p.scdn.co/mp3-preview/5fef98cc7a9e23f0de4b29d6863cfb540b545fae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBBBN0400484,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.549,0.857,9.0,-10.156,1.0,0.0659,0.00542,8.05e-05,0.393,0.63,141.688,4.0,,Columbia,P (P) 2004 Sony Music Entertainment (UK) Ltd.,4496 +4497,spotify:track:6XUHsYE38CEbYunT983O9G,Give A Little Bit,spotify:artist:3JsMj0DEzyWc0VDlHuy9Bx,Supertramp,spotify:album:4X87hQ57jTYQTcYTaJWK5w,Even In The Quietest Moments,spotify:artist:3JsMj0DEzyWc0VDlHuy9Bx,Supertramp,1977-01-01,https://i.scdn.co/image/ab67616d0000b273bddcc30c6a3288e725aec2df,1,1,248173,https://p.scdn.co/mp3-preview/1e49176e48cf7142220b4e212b5230d4063b8925?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USAM19500634,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,glam rock,mellow gold,piano rock,progressive rock,rock,soft rock,symphonic rock",0.531,0.818,2.0,-5.358,1.0,0.0452,0.0694,0.0096,0.263,0.471,90.767,4.0,,A&M,"C © 2002 A&M Records, P ℗ 1977 UMG Recordings, Inc.",4497 +4498,spotify:track:0H0ahZpih9KvOvECJbS5re,There's a Moon Out Tonight,spotify:artist:42SCX0E1m3YSaY2l3zHVJ4,The Capris,spotify:album:5TWMD5uhb4uCFgWEZvwi0P,Morse Code Of Love,spotify:artist:42SCX0E1m3YSaY2l3zHVJ4,The Capris,1992,https://i.scdn.co/image/ab67616d0000b2737a49ca78fc6923a1d7d75e27,1,14,132306,https://p.scdn.co/mp3-preview/ec654aae551df4429c66ade91f801696a0fc8d9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMWN31100348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,doo-wop,0.325,0.382,6.0,-13.324,1.0,0.0387,0.896,0.0,0.387,0.619,201.924,3.0,,Resnik Music Group,C (C) 2011 Resnik Music Group,4498 +4499,spotify:track:3e5HBY6zqDoIPIizKnEqFb,Footsteps,spotify:artist:3UGt9zfBCSaU5vva68ShwQ,Gordon Taggart,spotify:album:2eoUzJrBxYkXLCShuvxkrl,Footsteps,spotify:artist:3UGt9zfBCSaU5vva68ShwQ,Gordon Taggart,2021-07-09,https://i.scdn.co/image/ab67616d0000b273a0d97e0adb370da126923b92,1,1,165000,https://p.scdn.co/mp3-preview/7650681ea78d62b2b3290b0f4d555e82895bc8c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZHNC2117512,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.608,0.839,7.0,-6.321,0.0,0.0407,0.00918,1.02e-06,0.0879,0.931,131.457,4.0,,Citadel Records,"C 2021 Citadel Records, P 2021 Citadel Records",4499 +4500,spotify:track:1Z6lKdYhwp8WYoBqGCKxlM,Unskinny Bop,spotify:artist:1fBCIkoPOPCDLUxGuWNvyo,Poison,spotify:album:7alngtync76VqYWSKxcBhB,Flesh & Blood,spotify:artist:1fBCIkoPOPCDLUxGuWNvyo,Poison,1990,https://i.scdn.co/image/ab67616d0000b273ab1c39d5972e681e9662a35c,1,5,228066,https://p.scdn.co/mp3-preview/a23704739159cfea46f013a8dadfe3f1d4a03b5a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USCA20501449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,rock",0.574,0.93,1.0,-2.949,1.0,0.0413,0.0657,7.78e-06,0.108,0.69,92.303,4.0,,Capitol Records,"C © 2006 Capitol Records, LLC, P ℗ 2006 Capitol Records, LLC",4500 +4501,spotify:track:3XC7jqT27zQWdesY2rbwMf,Don't Hold Back,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,spotify:album:2DxK0vgADaZa48ElwMkLIF,The Potbelleez,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,2016-06-03,https://i.scdn.co/image/ab67616d0000b27341e221ea3a3c810b92adbbee,1,3,215041,https://p.scdn.co/mp3-preview/c19c6992685384fd10e96e56c124e18632f6ed32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUNV01600917,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian house",0.646,0.811,6.0,-4.694,1.0,0.0526,0.00175,3.78e-05,0.103,0.311,127.951,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Hussle Recordings, P ℗ 2016 Hussle Recordings",4501 +4502,spotify:track:38rau7v1Q8RX4ZYmpdFUpn,My Sunshine,spotify:artist:0G5lZVxoMwoY8oV6zR8E7k,Mashd N Kutcher,spotify:album:0G5UjJ3Z9ImOPahaJnfxbn,My Sunshine,spotify:artist:0G5lZVxoMwoY8oV6zR8E7k,Mashd N Kutcher,2015-12-11,https://i.scdn.co/image/ab67616d0000b27329d0ccc6f57b0986b0c02712,1,1,174882,https://p.scdn.co/mp3-preview/9a9d501e31981fc22f25565ae105b491d67759cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUWA01500427,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.699,0.811,4.0,-2.886,1.0,0.0467,0.0112,0.000275,0.137,0.592,125.964,4.0,,WM Australia,"C © 2015 Parlophone, a division of Warner Music Australia Pty Limited., P ℗ 2015 Parlophone, a division of Warner Music Australia Pty Limited. Marketed and Distributed by Warner Music Australia Pty Limited",4502 +4503,spotify:track:6fenHIxXuuzKB55wY4WCHP,God Is A Dancer (with Mabel),"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:1MIVXf74SZHmTIp4V4paH4","Tiësto, Mabel",spotify:album:2T0NPRcdhIt71ifDWm328R,God Is A Dancer (with Mabel),"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:1MIVXf74SZHmTIp4V4paH4","Tiësto, Mabel",2019-09-20,https://i.scdn.co/image/ab67616d0000b2731e3f58e2a9d74333ba8f2392,1,1,168125,https://p.scdn.co/mp3-preview/c92dd29ac2152267b3833109cef5f18f829abde7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,CYA111900298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance,pop,uk pop",0.774,0.747,1.0,-3.908,0.0,0.082,0.0241,6.11e-06,0.342,0.833,119.964,4.0,,"Universal Music, a division of Universal International Music BV","C © 2019 Musical Freedom Label Ltd., under exclusive license to PM:AM Recordings/Universal Music, a division of Universal International Music B.V., P ℗ 2019 Musical Freedom Label Ltd., under exclusive license to PM:AM Recordings/Universal Music, a division of Universal International Music B.V.",4503 +4504,spotify:track:7LmDmvqagpX0PKxveGtZTa,Jeopardy,spotify:artist:1Yyag4BRejtPxsKTrSkKDz,The Greg Kihn Band,spotify:album:0bKkOfLzf0a3gl9I0Yrm3M,Kihnspiracy,spotify:artist:1Yyag4BRejtPxsKTrSkKDz,The Greg Kihn Band,1983,https://i.scdn.co/image/ab67616d0000b27397b1c2b7c4970564949648ba,1,1,229653,https://p.scdn.co/mp3-preview/00f107f77d6fff9271425e3cd672d64381aefdfc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMFME1498698,spotify:user:bradnumber1,2021-08-08T09:26:31Z,album rock,0.851,0.808,0.0,-4.695,1.0,0.0355,0.0712,0.0504,0.156,0.89,110.566,4.0,,Riot Records,"C (C) 2014 Riot Records, P (P) 2014 Riot Records",4504 +4505,spotify:track:0lnxrQAd9ZxbhBBe7d8FO8,MMMBop,spotify:artist:0SdiiPkr02EUdekHZJkt58,Hanson,spotify:album:3StpQT9Qd87FSeWeQAdg1h,Middle Of Nowhere,spotify:artist:0SdiiPkr02EUdekHZJkt58,Hanson,1997-01-01,https://i.scdn.co/image/ab67616d0000b273184227f002623fc19f44551a,1,2,268653,https://p.scdn.co/mp3-preview/3ea5068e4b9ff95e3adbd05626ce3692b634952c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USMR19786791,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.683,0.937,9.0,-6.335,1.0,0.0449,0.00481,0.0046,0.07,0.619,104.879,4.0,,Island Mercury,"C © 1997 The Island Def Jam Music Group, P This Compilation ℗ 1997 The Island Def Jam Music Group",4505 +4506,spotify:track:3u8rkDej65qwCkQT18o1jR,She's so Mean,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:7GHROYaPxZr0dRMYQ7xHHu,The Matchbox Twenty Collection,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2013-11-08,https://i.scdn.co/image/ab67616d0000b273a09220722ea0004d7da146a7,5,2,232320,https://p.scdn.co/mp3-preview/4f05afe0d0fd6770e39897db5d52d114f48d37f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USAT21202561,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.672,0.875,0.0,-3.728,1.0,0.0378,0.0136,0.0,0.279,0.676,118.014,4.0,,Emblem / Atlantic,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",4506 +4507,spotify:track:4LmN3eU1R1vVEdKuDELpGk,All I Know So Far,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:0uVOhoZbkmOIM4kxJFT2IH,All I Know So Far,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2021-05-07,https://i.scdn.co/image/ab67616d0000b2734bbe90f83d8fcf0c88e0b3cc,1,1,277413,https://p.scdn.co/mp3-preview/e7a2d01cb89ec09e74053cfd1bc8ed7b0a7ca015?cid=9950ac751e34487dbbe027c4fd7f8e99,True,59,USRC12100608,spotify:user:bradnumber1,2023-02-15T04:31:19Z,"dance pop,pop",0.578,0.639,4.0,-5.749,1.0,0.0374,0.0586,0.0,0.0944,0.296,108.045,4.0,,RCA Records Label,"P (P) 2021 RCA Records, a division of Sony Music Entertainment",4507 +4508,spotify:track:6Jub05dvpbF4Im83NqMCUg,United States Of Whatever,spotify:artist:4NlzjQkGReI7SiSeMNHbWP,Liam Lynch,spotify:album:6LGx2GBdjcJb4naTlvyPMw,Fake Songs,spotify:artist:4NlzjQkGReI7SiSeMNHbWP,Liam Lynch,2003-01-01,https://i.scdn.co/image/ab67616d0000b2737b1f8a6d8332d726cf5bfc95,1,2,91226,https://p.scdn.co/mp3-preview/537658d29e828bdfe0b78d626075c8e07448ac91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USESC0300018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.452,0.817,7.0,-2.27,1.0,0.273,0.00383,0.0,0.138,0.867,161.362,4.0,,S-Curve Records,"C © 2003 EMI Music North America, P ℗ 2003 EMI Music North America",4508 +4509,spotify:track:773DGKEG4ItA2vwbVrtOy6,Wild Things,spotify:artist:0Ou0138wEd8XWebhc4j7O0,San Cisco,spotify:album:27uIN8MofwAU3jvOnIRSGb,San Cisco,spotify:artist:0Ou0138wEd8XWebhc4j7O0,San Cisco,2012-11-23,https://i.scdn.co/image/ab67616d0000b273b6736af54c4811da9b992633,1,4,185626,https://p.scdn.co/mp3-preview/757d3be2699a1d806b9220ed3771dac0e41ed9a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUU221200004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,fremantle indie,metropopolis,perth indie",0.69,0.817,2.0,-8.625,1.0,0.0673,0.0304,0.00807,0.145,0.942,112.128,4.0,,Island City Records,"C 2012 San Cisco, P 2012 San Cisco",4509 +4510,spotify:track:5HmwYfynpGAjgrj4bp9eMy,Things Can Only Get Better,spotify:artist:2dCQKsTjB762AhtIACbAQA,D:Ream,spotify:album:1xo1nQrV2vHnZB3CSkcaIj,On Vol.1,spotify:artist:2dCQKsTjB762AhtIACbAQA,D:Ream,1993,https://i.scdn.co/image/ab67616d0000b2734e84c9af373691d918ef33bd,1,9,258000,https://p.scdn.co/mp3-preview/4651c8bff80b7886f00e941a23f09858dd6d485b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBAHS0500255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,new wave pop",0.671,0.74,10.0,-12.43,0.0,0.0389,0.122,0.0,0.196,0.102,125.0,4.0,,New State Music,"C 2017 New State Entertainment Ltd, P 1993 New State Entertainment Ltd",4510 +4511,spotify:track:7cwZG5WSgYtBKmIeSHouwY,Double Vision,spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,spotify:album:4AxDQ4lIaW71hmUQnbYDVE,Streets Of Gold,spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,2010-06-25,https://i.scdn.co/image/ab67616d0000b273b9933fcc3668139db9c4bdb5,1,10,190706,https://p.scdn.co/mp3-preview/ac3df0a92ea00c0743bff618d16d81e4fc68d09c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USAT21000801,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropowerpop,pop punk,pop rap,post-teen pop",0.581,0.888,0.0,-3.198,1.0,0.0587,0.0018,0.0,0.413,0.629,120.041,4.0,,Photo Finish,"C © 2010 Photo Finish Records, LLC. All Rights Reserved. Manufactured and Distributed by Atlantic Recording Corporation, a Warner Music Group Company., P ℗ 2010 Photo Finish Records, LLC. All Rights Reserved. Manufactured and Distributed by Atlantic Recording Corporation, a Warner Music Group Company.",4511 +4512,spotify:track:3g1lO88iZch6L409lEIF1D,Crazy Stupid Love,"spotify:artist:3NyNPJaemMYsL14DK2tO01, spotify:artist:0Tob4H0FLtEONHU1MjpUEp","Cheryl, Tinie Tempah",spotify:album:2mAihmMoVNgIzhVsJfIYh1,Only Human (Deluxe),spotify:artist:3NyNPJaemMYsL14DK2tO01,Cheryl,2014-01-01,https://i.scdn.co/image/ab67616d0000b2735d7778c02abad7f0d8ba2ce2,1,4,225740,https://p.scdn.co/mp3-preview/9d5e0ec9130bc3ad75b770fafe797ddd2702f7b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBUM71402380,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop,talent show,dance pop,grime,pop rap",0.823,0.914,11.0,-3.521,0.0,0.0498,0.0016,0.000729,0.276,0.8,120.588,4.0,,Polydor Records,"C © 2014 Polydor Ltd. (UK), P ℗ 2014 Polydor Ltd. (UK)",4512 +4513,spotify:track:5cTzvLAGCtOedIzJmz5Exg,Shout,"spotify:artist:7AhwU55MQG9KtNtwr9JoZN, spotify:artist:3wMgvdVNslqdsSKX0kcQ6i","Joey Dee, The Starliters",spotify:album:10FxJm1b06bLLoX2BEYnxA,"Hey, Lets Twist (Original Soundtrack Plus Bonus Tracks 1962)",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-01-01,https://i.scdn.co/image/ab67616d0000b2738796d79954b1cb1167d7a474,1,11,268320,https://p.scdn.co/mp3-preview/f4e621ee501a4830e75b3eadcab9695ae078f44e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,DEBL60676865,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian talent show,0.437,0.434,5.0,-14.375,0.0,0.055,0.182,0.0,0.0872,0.876,159.842,4.0,,The Twist,"C 2013 Salt & Peppper, P 2013 Salt & Pepper",4513 +4514,spotify:track:0uHYplBhwLYey7f9qAmnSM,The Night They Drove Old Dixie Down,spotify:artist:1EevBGfUh3RSQSGpluxgBm,Joan Baez,spotify:album:7q86S3pRwfE5sWVWa8x1ye,Blessed Are...,spotify:artist:1EevBGfUh3RSQSGpluxgBm,Joan Baez,1971,https://i.scdn.co/image/ab67616d0000b273e07e9acfb0d37857447a3b69,1,2,206066,https://p.scdn.co/mp3-preview/3f7afcc2d37d020cffe25d95b9cdf4690b03dd52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USVG20500225,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"american folk revival,folk,folk rock,singer-songwriter",0.564,0.357,1.0,-12.752,1.0,0.0326,0.558,0.0,0.233,0.477,129.242,4.0,,Vanguard Records,"C © 2005 Vanguard Records, a Welk Music Group Company, P ℗ 2005 Vanguard Records, a Welk Music Group Company",4514 +4515,spotify:track:0sQ594D1EuU66VDdtHBE6j,Spanish Harlem,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,spotify:album:2jfJMNfHt2kIqSOyQyq7Jn,The Very Best of Aretha Franklin - The 70's,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,1994-03-22,https://i.scdn.co/image/ab67616d0000b273e80a4cf3e805729a5ed49b60,1,2,213560,https://p.scdn.co/mp3-preview/d928facada405246d16281e3d64cb3abee6507df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USAT20801296,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,jazz blues,memphis soul,soul,southern soul,vocal jazz",0.66,0.619,2.0,-12.577,1.0,0.0466,0.235,0.00793,0.0828,0.913,115.419,4.0,,Rhino Atlantic,"C © 1972 Atlantic Recording Corp., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group Company, P ℗ 1972 Atlantic Recording Corp., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group Company",4515 +4516,spotify:track:65ihkXjmeZ7vDsbPp13Jp5,Adelante,spotify:artist:5XTxV2ifoYkmNb13Gb6cKz,Sash!,spotify:album:1hSpIFkE9VZ8ZeP26T7hiy,"Wild Reunion Vol 2 - Mixed by Pee Wee, Sgt Slick & KCB",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-08-17,https://i.scdn.co/image/ab67616d0000b27347a86fc16dcadecc47581086,1,24,224773,https://p.scdn.co/mp3-preview/ea5f74e778db7e7a6b1f8bc8062367726b3b90a1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,AUXN21201485,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,german techno",0.66,0.989,11.0,-4.836,0.0,0.243,0.057,0.0615,0.0931,0.534,136.017,4.0,,Central Station Records,"C 2012 Central Station Records, P 2012 Central Station Records",4516 +4517,spotify:track:5QlnFnIhd6O37bmErQyYxV,Shake That (feat. Pitbull),"spotify:artist:5i84V8Zk7YqCN6xxb7SWgw, spotify:artist:0TnOYISbd1XYRBk9myaseg","Samantha Jade, Pitbull",spotify:album:1OYl5abBuSaZFR4SgjASGe,Nine,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,2015-11-20,https://i.scdn.co/image/ab67616d0000b273aafb7291383a709c33ee40c2,1,6,218560,https://p.scdn.co/mp3-preview/da43c4024ce54ac70eb287081c3243ade878c1f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUBM01500095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,dance pop,miami hip hop,pop",0.764,0.974,2.0,-2.71,1.0,0.107,0.0119,0.0,0.161,0.558,106.067,4.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,4517 +4518,spotify:track:1rJnjpFes5MSrn0xphsTUN,Bound for Glory,spotify:artist:2lyDLsnU3pS26GoJzrppCS,Angry Anderson,spotify:album:0XCWIloQjMehVf4cZE0qeG,Blood From Stone,spotify:artist:5G8dT4FEBQqXpdJLCJ0kex,Angry,1990,https://i.scdn.co/image/ab67616d0000b27383636ec09f2bd8bb39e314b0,1,1,239293,https://p.scdn.co/mp3-preview/5da146d61c1657f9dabab75f5b1aa58cab213bf9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUMU09000019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.568,0.776,8.0,-8.56,1.0,0.0319,0.00851,0.00263,0.184,0.658,126.962,4.0,,WM Australia,"C © 1992 Mushroom Records, P ℗ 1990 Mushroom Records",4518 +4519,spotify:track:5NBWyzJWYFy6kx5Gmp8Q2u,Sugar Free,spotify:artist:5h3WBrCy3VcEj0IGf347dz,Wa Wa Nee,spotify:album:4oA6B7kcWN3xfmhDIPPKjP,Wa Wa Nee,spotify:artist:5h3WBrCy3VcEj0IGf347dz,Wa Wa Nee,1986,https://i.scdn.co/image/ab67616d0000b273013af8e32b471ae77b4a9b0d,1,6,269160,https://p.scdn.co/mp3-preview/74516e31fe5d624f68e1de4cd86f39f533ac1530?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM00600838,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.722,0.596,0.0,-13.285,1.0,0.046,0.0181,7.77e-05,0.0456,0.885,117.996,4.0,,Sony Music Entertainment,P (P) 1986 Sony Music Entertainment Australia Pty Ltd,4519 +4520,spotify:track:2I5CPUnMIKjEXeg61OI9uV,I Do Not Hook Up,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:4h8seeFAi6iYhslcWIxTSG,All I Ever Wanted,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2009-03-06,https://i.scdn.co/image/ab67616d0000b2737ed87984e7f39ba42ee1b50a,1,2,200346,https://p.scdn.co/mp3-preview/f77667594c55f3587eeae0af60ac36769f44ab3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBCTA0900006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.502,0.938,9.0,-3.114,1.0,0.13,0.00098,0.0,0.318,0.35,144.077,4.0,,RCA Records Label,P (P) 2009 19 Recordings Limited,4520 +4521,spotify:track:0LH5xRQz5D36FpIkYUFv2e,In Your Arms,spotify:artist:0awl5piYwO0CDTHEkCjUhn,Nico & Vinz,spotify:album:6zXb9FQMzawvY2Au8Kxky3,Black Star Elephant,spotify:artist:0awl5piYwO0CDTHEkCjUhn,Nico & Vinz,2014,https://i.scdn.co/image/ab67616d0000b273eb3c078694b007169dab4a4f,1,14,205800,https://p.scdn.co/mp3-preview/f3946c0f0a365ccef47bb9abcb7eb9dd70414ef0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USWB11402584,spotify:user:bradnumber1,2021-08-08T09:26:31Z,afrobeats,0.431,0.81,7.0,-6.051,1.0,0.0958,0.299,0.0,0.249,0.674,110.118,4.0,,Warner Records,"C © 2014 Warner Records Inc., P ℗ 2014 Warner Records Inc.",4521 +4522,spotify:track:05qXhd5dgfDS5mDEf7dbfN,Let's Get It Started,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:1N6L8kfSIHHTFjPwJ4on3z,Let's Get It Started,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b27328b996fb1f9c481f3d0e7f0a,1,1,228706,https://p.scdn.co/mp3-preview/93f48fd10c205e8006bf8cbdd2da1bddecee919f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10400344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.775,0.743,11.0,-5.037,0.0,0.106,0.115,0.0,0.123,0.768,104.992,4.0,,Universal Music,"C © 2010 Universal International Music B.V., P ℗ 2010 Universal International Music B.V.",4522 +4523,spotify:track:2kJu14V7hbZw3I4K8L8SXb,Stupid Love,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:2HDW1EX8IBI3jqobswAfrZ,Stupid Love,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2020-02-28,https://i.scdn.co/image/ab67616d0000b273f80f544565b410d292349893,1,1,193530,https://p.scdn.co/mp3-preview/3ec826c3f1f534147cd31b3849e507504dbfe185?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USUM71917357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.676,0.815,8.0,-4.294,1.0,0.0625,0.00146,0.0004,0.275,0.796,117.973,4.0,,Interscope Records,"C © 2020 Interscope Records, P ℗ 2020 Interscope Records",4523 +4524,spotify:track:55bIfh0vPxXhTr5FHqFSDE,Happy Birthday Baby,spotify:artist:7KK6M2jPylHa6gLbMBI6V0,Tony Christie,spotify:album:4a6GUAbbutF0SJOhIZB9pI,The Ultimate Collection,spotify:artist:7KK6M2jPylHa6gLbMBI6V0,Tony Christie,1991-01-01,https://i.scdn.co/image/ab67616d0000b2730b8444b7dff0a489e2f3bec7,1,8,225826,https://p.scdn.co/mp3-preview/78609fbb9c720e5f954762cd0c41a93150025298?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USMC17403621,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.576,0.458,0.0,-12.469,1.0,0.0377,0.242,0.0,0.146,0.557,117.399,4.0,,Geffen*,"C © 1991 Geffen Records, P This Compilation ℗ 1991 Geffen Records",4524 +4525,spotify:track:2f5N826udWfjT9iomeaBJt,If You're Gone,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:2HqQR5SkxWX7uUWaxlLksn,Mad Season,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2000-05-23,https://i.scdn.co/image/ab67616d0000b2733813e6d5d97334659fb1daed,1,5,274933,https://p.scdn.co/mp3-preview/e219c8a9f667dba77642f28b6ea7d4af34a2ed0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT20001326,spotify:user:bradnumber1,2021-10-14T00:02:21Z,"neo mellow,pop rock,post-grunge",0.544,0.659,9.0,-7.191,1.0,0.0298,0.427,1.33e-06,0.126,0.361,109.933,4.0,,Atlantic Records,"C © 2000 Atlantic Recording Corporation for the United states and WEA International Inc. for the world outside of the United States., P ℗ 2000 Atlantic Recording Corporation for the United states and WEA International Inc. for the world outside of the United States.",4525 +4526,spotify:track:5pbajJXEPdcoXQPXoAVR1t,You're Beautiful,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,spotify:album:1wklsLLbGIZg1RDpoJovrb,Back to Bedlam,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,2005-10-04,https://i.scdn.co/image/ab67616d0000b2739489b7675f782feada134658,1,2,209493,https://p.scdn.co/mp3-preview/98c6db960673dd8b3ea13eb082ae6c25679600ce?cid=9950ac751e34487dbbe027c4fd7f8e99,True,61,USAT20401588,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.675,0.479,0.0,-9.87,0.0,0.0278,0.633,1.76e-05,0.088,0.454,81.998,4.0,,Atlantic Records,"C An Atlantic Records Release, © 2005 Warner Music UK Limited, P An Atlantic Records Release, ℗ 2005 Warner Music UK Limited",4526 +4527,spotify:track:7vUfTjiMjFfXe7Brz62tXH,Rockaria!,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:7a35UzxXYuKQGMGImyB0Un,A New World Record,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1976-09-01,https://i.scdn.co/image/ab67616d0000b273ee5b1065368b0981e3cb0a33,1,3,192840,https://p.scdn.co/mp3-preview/b2e1888a30102ae9a4c50f1f99dd613f1a598b46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM17800850,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.45,0.689,2.0,-6.686,1.0,0.0342,0.338,3.68e-06,0.119,0.665,146.736,4.0,,Epic/Legacy,"P (P) 1976 Epic Records, a division of Sony Music Entertainment",4527 +4528,spotify:track:6r2BECwMgEoRb5yLfp0Hca,Born This Way,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:5maeycU97NHBgwRr2h2A4O,Born This Way (Special Edition),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2011-01-01,https://i.scdn.co/image/ab67616d0000b273a47c0e156ea3cebe37fdcab8,1,2,260252,https://p.scdn.co/mp3-preview/0babf4d4a9541ef3f664e3dd87ab51be6f16c610?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USUM71100638,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.587,0.828,11.0,-5.108,1.0,0.161,0.00327,0.0,0.331,0.493,123.907,4.0,,Interscope,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",4528 +4529,spotify:track:5AyL2kgLtTWEu3qO3B9SqK,Like A G6,"spotify:artist:698hF4vcwHwPy8ltmXermq, spotify:artist:7C64wNX3howEFZjAYRKsfP, spotify:artist:7Ip2u3e5Nv6fFb5xyIHxEE","Far East Movement, The Cataracs, DEV",spotify:album:4axgysRjIB7ToC0DA7uxXC,Free Wired,spotify:artist:698hF4vcwHwPy8ltmXermq,Far East Movement,2010-01-01,https://i.scdn.co/image/ab67616d0000b273fc7cbacf9d506c92aa7d7720,1,2,216893,https://p.scdn.co/mp3-preview/c582b7a59c285d2396c0695999a48d69d5495fe3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USUM71008138,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"asian american hip hop,dance pop,pop rap,dance pop,electropop",0.355,0.838,7.0,-8.126,0.0,0.471,0.00682,0.0,0.117,0.783,165.457,5.0,,Interscope,"C © 2010 Cherrytree/Interscope, P ℗ 2010 Cherrytree/Interscope",4529 +4530,spotify:track:4ZzXPeOfMXk0iKNQGdlzDq,Surf City - Remastered 1990/Stereo Remix,spotify:artist:0pqGj6vO9YHsXuZmaJaP2Y,Jan & Dean,spotify:album:1q3jhhU1DSw1zNAoeyhCsE,Surf City: The Best Of Jan & Dean,spotify:artist:0pqGj6vO9YHsXuZmaJaP2Y,Jan & Dean,1990-01-01,https://i.scdn.co/image/ab67616d0000b273c978cc865c254d7c07ce3845,1,6,163026,https://p.scdn.co/mp3-preview/e32856a589207ec13c8f572ebe65c001b5f4d513?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USCA21002682,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,doo-wop,rock-and-roll,rockabilly,sunshine pop,surf music",0.469,0.647,8.0,-13.913,1.0,0.0315,0.595,1.65e-06,0.339,0.942,147.878,4.0,,Capitol Records,"C © 1990 Capitol Records, LLC, P This Compilation ℗ 1990 Capitol Records, LLC",4530 +4531,spotify:track:3XajF4Puvy3Loxbeo3kpia,Sunshine Of Your Love,spotify:artist:74oJ4qxwOZvX6oSsu1DGnw,Cream,spotify:album:4sV0lfUAxF1kwo6GJKtLj4,The Very Best Of Cream,spotify:artist:74oJ4qxwOZvX6oSsu1DGnw,Cream,1995-05-09,https://i.scdn.co/image/ab67616d0000b273803c87cb405a98458999d9bd,1,8,250733,https://p.scdn.co/mp3-preview/e860117e795dc984f43d781541e932c16676f986?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBA076700020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,classic rock,folk rock,hard rock,psychedelic rock,rock,singer-songwriter,supergroup",0.683,0.477,2.0,-12.606,1.0,0.0384,0.497,0.000114,0.122,0.777,115.075,4.0,,Universal Music Group,"C © 1995 Universal International Music B.V., P ℗ 1995 Universal International Music B.V.",4531 +4532,spotify:track:6CnjrPmgbsqTkYRiByMa4d,Chase That Feeling,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,spotify:album:7D2fIZ0LaCA7mY4hSXi3CD,State Of The Art,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2009-01-01,https://i.scdn.co/image/ab67616d0000b2737711c2be5c0ca4ce287feac2,1,3,209266,https://p.scdn.co/mp3-preview/820dfca986006eade7b6a26850853af5f3db6d60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70900291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.604,0.874,9.0,-4.784,0.0,0.0634,0.621,0.0,0.132,0.522,97.929,4.0,,Universal Music Group,"C © 2009 Hilltop Hoods Pty Ltd, under exclusive licence to UMA Pty Ltd, P ℗ 2009 Hilltop Hoods Pty Ltd, under exclusive licence to UMA Pty Ltd",4532 +4533,spotify:track:6uED24Lri4axYr74rfN4aT,Check Yes Juliet (Run Baby Run),spotify:artist:3ao3jf5d70Tf4fPh2bnXVl,We The Kings,spotify:album:0cwf9VoAZ6ErmXsc1OntXs,We The Kings,spotify:artist:3ao3jf5d70Tf4fPh2bnXVl,We The Kings,2007,https://i.scdn.co/image/ab67616d0000b2734261211a583f9445d8a58a23,1,3,220146,https://p.scdn.co/mp3-preview/b30464072007fdd04750d5850b6ba36d4e024e9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USKFE0700003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neon pop punk,piano rock,pop punk",0.347,0.916,2.0,-4.197,1.0,0.0741,0.00287,0.0,0.159,0.369,166.874,4.0,,Liberator Music,"C 2010 S-Curve Records, P 2010 S-Curve Records",4533 +4534,spotify:track:7ut4Y7gxOFe3d3rLJQ7i5w,Gorgeous,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:4fW1sFeE43nuZlAw2xtmC3,reputation,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2017-11-10,https://i.scdn.co/image/ab67616d0000b2732bc33ce6acd39112e88b4c0e,1,8,209680,https://p.scdn.co/mp3-preview/125e0060ec083c1a2c45966b68f51f3d892b0d29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1750009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.8,0.535,7.0,-6.684,1.0,0.135,0.0713,9.48e-06,0.213,0.451,92.027,4.0,,"Big Machine Records, LLC","C © 2017 Big Machine Label Group, LLC, P ℗ 2017 Big Machine Label Group, LLC",4534 +4535,spotify:track:0QnONzv3TvHAWk294h6DaQ,Last Kiss,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:11BDZR6NRHwPiPy1WQr4Jf,Last Kiss,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,1999,https://i.scdn.co/image/ab67616d0000b273d7db5abcbc899f3994c66fc6,1,1,195466,https://p.scdn.co/mp3-preview/083e2353ef0b32995c84626204cca20ae0f704e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM19805513,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.622,0.692,7.0,-6.97,1.0,0.0276,0.363,0.000158,0.193,0.774,112.053,4.0,,Epic,P (P) 1999 Sony Music Entertainment,4535 +4536,spotify:track:0ChHBmij3WHKGmyan2tPST,Honey,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,spotify:album:1xB1tmm50ZhXwrNs89u7Jx,Play,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,1999-05-17,https://i.scdn.co/image/ab67616d0000b27373b063d18cd9be91eb12284a,1,1,208666,https://p.scdn.co/mp3-preview/feded7930b264a80bfa22f1fdeaad1b27cc5a04b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAJH9800206,spotify:user:bradnumber1,2023-01-31T06:33:25Z,"downtempo,electronica",0.829,0.733,8.0,-8.59,1.0,0.0342,0.128,0.194,0.078,0.685,102.128,4.0,,"Mute, a BMG Company","C © 1999 Mute Records Ltd., a BMG Company, P ℗ 1999 Mute Records Ltd., a BMG Company",4536 +4537,spotify:track:2UVO1199zxVyTEFqnA8Oij,You Got It All,spotify:artist:7DTZkttLXeUXamkocrRzeh,Union J,spotify:album:312WowjvJsuTSfaxXBXi6Q,You Got It All,spotify:artist:7DTZkttLXeUXamkocrRzeh,Union J,2017-12-25,https://i.scdn.co/image/ab67616d0000b273f249873c66e8115a271f6958,1,2,212933,https://p.scdn.co/mp3-preview/de8f723fc6b392de6599f3b59b90436d551904ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBHMU1400156,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,post-teen pop,talent show",0.459,0.583,5.0,-6.644,1.0,0.0295,0.385,0.0,0.157,0.278,92.88,4.0,,Union J,C (C) 2017 Union J,4537 +4538,spotify:track:5fztgDIt1Nq32VHJrAHq0Y,Big Yellow Taxi,"spotify:artist:0vEsuISMWAKNctLlUAhSZC, spotify:artist:5ILrArfIV0tMURcHJN8Q07","Counting Crows, Vanessa Carlton",spotify:album:4ZY9wbPTIFpX5IdFemqIyZ,Hard Candy,spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,2002-01-01,https://i.scdn.co/image/ab67616d0000b27392b51c3e8110df47af53e53c,1,15,226826,https://p.scdn.co/mp3-preview/4098f541056c43bb4690a09feeca27b70bcda548?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USIR10211754,spotify:user:bradnumber1,2021-10-20T22:25:39Z,"neo mellow,pop rock,post-grunge,rock,lilith,neo mellow,piano rock,pop rock,post-teen pop",0.674,0.867,1.0,-4.329,1.0,0.0462,0.00199,0.0,0.206,0.821,88.04,4.0,,Geffen,"C © 2002 Geffen Records, P ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",4538 +4539,spotify:track:7s25THrKz86DM225dOYwnr,Respect,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,spotify:album:5WndWfzGwCkHzAbQXVkg2V,I Never Loved a Man the Way I Love You,spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok,Aretha Franklin,1967-03-10,https://i.scdn.co/image/ab67616d0000b2736aa9314b7ddfbd8f036ba3ac,1,1,147600,https://p.scdn.co/mp3-preview/7768dd513193e30ab1ad19deeff2dcc63d2c7555?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USAT20801240,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,jazz blues,memphis soul,soul,southern soul,vocal jazz",0.805,0.558,0.0,-5.226,1.0,0.041,0.164,2.2e-05,0.0546,0.965,114.95,4.0,,Rhino Atlantic,"C © 1967 Atlantic Recording Corp., manufactured and mareketed by Rhino Entertainment Company, a Warner Music Group company, P ℗ 1967 Atlantic Recording Corp., manufactured and mareketed by Rhino Entertainment Company, a Warner Music Group company",4539 +4540,spotify:track:6cIYFBwTv4JGpX7wOk5VIu,Goodbyes (feat. Young Thug),"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:50co4Is1HCEo8bhOyUWKpn","Post Malone, Young Thug",spotify:album:3xiq77UtnlDXfcRz5IJu20,Hollywood's Bleeding,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2019-09-06,https://i.scdn.co/image/ab67616d0000b27391bf597d2ed7528de53f71be,1,14,174840,https://p.scdn.co/mp3-preview/255c7f96ab5fe4e112122a60d352f314f0d32081?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USUM71912331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,atl hip hop,atl trap,gangster rap,hip hop,melodic rap,rap,trap",0.593,0.653,5.0,-3.772,1.0,0.0731,0.411,0.0,0.105,0.175,150.029,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",4540 +4541,spotify:track:5ACSBbCZf73uC1iIYfVjZn,Only One,spotify:artist:2NdeV5rLm47xAvogXrYhJX,Ciara,spotify:album:1vxEYHEzZI2l1AyZOtVHKJ,Jackie (Deluxe),spotify:artist:2NdeV5rLm47xAvogXrYhJX,Ciara,2015-05-04,https://i.scdn.co/image/ab67616d0000b273cd342d8095cbf7f794883d7d,1,11,211800,https://p.scdn.co/mp3-preview/e497410aea43d30fc3852df38c2589823aa35753?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USSM11502983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,pop,r&b,urban contemporary",0.61,0.504,7.0,-6.643,1.0,0.0325,0.0542,0.000806,0.399,0.0748,89.95,4.0,,Epic,"P (P) 2015 Epic Records, a division of Sony Music Entertainment",4541 +4542,spotify:track:7oeAmjYo4MJDklImlVSavw,Almost,spotify:artist:0le01dl1WllSHhjEXRl4in,Tamia,spotify:album:3fWRZINvsj236ZaWNo6g9J,Between Friends,spotify:artist:0le01dl1WllSHhjEXRl4in,Tamia,2006,https://i.scdn.co/image/ab67616d0000b273bb32c6646012a37443dbb4b4,1,3,221320,https://p.scdn.co/mp3-preview/766fa87ff5ee95a8e8df3d4242a4f8834a78513e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USQY51319559,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,contemporary r&b,hip pop,r&b,urban contemporary",0.816,0.596,1.0,-6.426,0.0,0.0651,0.235,0.0,0.389,0.809,130.102,4.0,,Plus 1 Music Group LLC.,"C 2013 (C) Plus 1 Music Group LLC., P 2013 (P) Plus 1 Music Group LLC.",4542 +4543,spotify:track:3YsjLfBqaMeX9vFIiQlnvk,Shy Boy,spotify:artist:3sc7iUG1Wwpwx7bHeZolgx,Bananarama,spotify:album:4v3E9sT3n9mz3MWlrtmtVw,Deep Sea Skiving (Collector's Edition),spotify:artist:3sc7iUG1Wwpwx7bHeZolgx,Bananarama,1983-01-01,https://i.scdn.co/image/ab67616d0000b27322f6928ddd3c8dbe2ec74bf8,1,1,193780,https://p.scdn.co/mp3-preview/30acf91f3f20caaca3473b1209b5ac1e43698d48?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAAP9400296,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,hi-nrg,new romantic,new wave,new wave pop,soft rock",0.749,0.893,7.0,-5.566,1.0,0.0349,0.0547,1.89e-05,0.0539,0.968,123.506,4.0,,London Records (Because Ltd),"C © 1983 London Records Ltd, P ℗ 1983 London Records Ltd",4543 +4544,spotify:track:0wegjSmMmGyIt8hr0KCu9u,Bottle Of Wine,spotify:artist:6Rboxwjnvu3wLcwzhlnaSO,The Fireballs,spotify:album:1AD44MeoSIgCJNcPAFCSCo,Clovis Classics: The Definitive Collection,spotify:artist:6Rboxwjnvu3wLcwzhlnaSO,The Fireballs,2009-10-01,https://i.scdn.co/image/ab67616d0000b2737fc5c579995af498dd41d442,1,22,130226,https://p.scdn.co/mp3-preview/3a6abf98a297102a264139de73668ab27581566c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB03A0600265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,surf music,0.65,0.8,9.0,-8.202,1.0,0.0321,0.00849,0.155,0.0678,0.956,136.2,4.0,,Ace Records,"C 2009 Ace Records, P 2009 Ace Records",4544 +4545,spotify:track:1yTQ39my3MoNROlFw3RDNy,Say You'll Be There,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:3x2jF7blR6bFHtk4MccsyJ,Spice,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,1996-01-01,https://i.scdn.co/image/ab67616d0000b27363facc42e4a35eb3aa182b59,1,2,235973,https://p.scdn.co/mp3-preview/3db0ccda5923ca9fdb8e540b2c64d215d2ec0994?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAAA9600211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.726,0.676,1.0,-6.22,1.0,0.0476,0.0148,1.48e-06,0.0837,0.76,107.022,4.0,,Virgin Records,"C © 1996 Virgin Records Limited, P ℗ 1996 Virgin Records Limited",4545 +4546,spotify:track:1FkoVC85Ds3mFoK0fVqEqP,Self Esteem,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:7IDywTRaCI8qzS3X8tNU3x,Smash,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,1994-04-08,https://i.scdn.co/image/ab67616d0000b2730158cbde70672dd821972907,1,8,257826,https://p.scdn.co/mp3-preview/29a0dd6febfac9310051074de46eefbb7a6f5cbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USEP40312208,spotify:user:bradnumber1,2022-01-11T11:17:21Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.488,0.862,0.0,-7.595,1.0,0.0476,0.0204,0.0,0.359,0.706,104.56,4.0,,Epitaph,"C 1994 Epitaph, P 1994 Epitaph",4546 +4547,spotify:track:0tKjVEJlX3IZ5L1rEJc5hh,When I See You Smile,spotify:artist:5fhMbh4PVSLSODF2fhWwqt,Bad English,spotify:album:0oNZnqsNbKKMKedFNNRs69,Bad English,spotify:artist:5fhMbh4PVSLSODF2fhWwqt,Bad English,1989-06-15,https://i.scdn.co/image/ab67616d0000b2739b5df9355cf2a5465038b740,1,5,257440,https://p.scdn.co/mp3-preview/eb805c04d4dc75eca72897a10470236fbbbdcb42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM18900345,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam metal,hard rock,soft rock",0.495,0.609,7.0,-9.902,1.0,0.0339,0.42,0.0,0.187,0.33,135.671,4.0,,Epic,P (P) 1989 Sony Music Entertainment Inc.,4547 +4548,spotify:track:3kpuidZaDOsLP3YgFi8sxu,Down By the Station,spotify:artist:5MsnoFODDc5nxWrjm99Zew,The Four Preps,spotify:album:4t7FMh02YcXjrIkKi1wP2x,Down By the Station,spotify:artist:5MsnoFODDc5nxWrjm99Zew,The Four Preps,2007-11-27,https://i.scdn.co/image/ab67616d0000b27399a6b395bb1dbcf5aec1ac45,1,1,172066,https://p.scdn.co/mp3-preview/2ebe0bb3f325ca34a6b3c8dca17a7622dcc16deb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,US25T0810107,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,vocal harmony group",0.754,0.442,3.0,-15.178,1.0,0.0403,0.324,0.0,0.0634,0.971,118.641,4.0,,Bruce Belland,"C 2008 Bruce Belland, P 2008 Bruce Belland",4548 +4549,spotify:track:3z2ZSQZXaWAufdyv3xnuLe,Baby I Love You,spotify:artist:5MYBNUKoFf9LAg30ByaBli,Andy Kim,spotify:album:15emnnjQ7yKnmIpMMCiQjV,Baby I Love You,spotify:artist:5MYBNUKoFf9LAg30ByaBli,Andy Kim,1969-06-01,https://i.scdn.co/image/ab67616d0000b2733ce355de14886ec6ef94d8ca,1,1,176440,https://p.scdn.co/mp3-preview/2553adec8463eb419e15439544f0688484664ea7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USUM70600890,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic uk pop",0.556,0.722,9.0,-6.962,1.0,0.0331,0.485,0.000324,0.142,0.717,109.155,4.0,,CAPITOL CATALOG MKT (C92),"C © 1969 Capitol Records, LLC, P ℗ 1969 Capitol Records, LLC",4549 +4550,spotify:track:5LDNTJvA9PT2XuK2RAQ5Bv,Impossible,spotify:artist:6HD2mo0Gz8wd8IbOXYwUfN,Daniel Merriweather,spotify:album:2KGZi6Ox73lyqOlMexAKsX,Love & War (Nokia Exclusive),spotify:artist:6HD2mo0Gz8wd8IbOXYwUfN,Daniel Merriweather,2009-01-01,https://i.scdn.co/image/ab67616d0000b2737119b2eeafa828ad8d87d9c9,1,2,259826,https://p.scdn.co/mp3-preview/c23aa38c8aa7ea61ed6269096610c514db59e9d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,USJAY0800285,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.741,0.935,9.0,-3.709,0.0,0.0401,0.011,0.00106,0.162,0.928,120.021,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Marlin Records, P ℗ 2009 Marlin Records",4550 +4551,spotify:track:1VrFr3YhQ4rwQ7HEis83Rg,Bread and Butter,spotify:artist:5zysAE2ng4N9fyBNMdqTgo,NEWBEATS,spotify:album:7nt9Ifqq9g0bHDnZiPudnv,The Best of….,spotify:artist:5zysAE2ng4N9fyBNMdqTgo,NEWBEATS,1965-01-01,https://i.scdn.co/image/ab67616d0000b2730b47879e5daf5602207c671c,1,3,124720,https://p.scdn.co/mp3-preview/abf12582798e96e43f4ec7dbe76d2f15683f0970?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USATV0600556,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.698,0.652,2.0,-14.582,1.0,0.139,0.74,0.0087,0.117,0.623,164.319,4.0,,Sony ATV,C (C) 2006 Sony ATV,4551 +4552,spotify:track:5nTODgLl2IWaHgP86f6a0F,1000 Stars,spotify:artist:49NJc5qDmCRsN3SsBAqEa4,Natalie Bassingthwaighte,spotify:album:46ekOtyTUnhxvmaW1hJkI0,1000 Stars,spotify:artist:49NJc5qDmCRsN3SsBAqEa4,Natalie Bassingthwaighte,2009-02-20,https://i.scdn.co/image/ab67616d0000b27306714572d5d60e816237dc85,1,3,240213,https://p.scdn.co/mp3-preview/044ef7daa88886c6ea1990fb8f9a2ee86abce597?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM00900008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.496,0.568,9.0,-5.08,1.0,0.0336,0.0445,1.47e-06,0.0977,0.455,82.907,4.0,,Sony BMG Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd,4552 +4553,spotify:track:23DjJ1MQIoVTF5JYJiCq3R,Glory Days,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,spotify:album:56JtQFrVKdKT70rkKligWx,The Essential Bruce Springsteen,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,1973,https://i.scdn.co/image/ab67616d0000b2739e994564d5e7fff06c7c7fd5,2,2,255066,https://p.scdn.co/mp3-preview/b4228bc31b0040da6fa0cc4a50bb82a29c351a8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM18400415,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"heartland rock,mellow gold,permanent wave,rock,singer-songwriter",0.562,0.948,9.0,-6.547,1.0,0.0332,0.165,0.0,0.118,0.977,117.153,4.0,,Columbia,"P (P) 1973, 1995 Sony Music Entertainment, Inc., 1975, 1978, 1980, 1982, 1984, 1987, 1992, 1993, 1995, 1999, 2001, 2002, 2003 Bruce Springsteen",4553 +4554,spotify:track:06HUJRcD0t95ogCb2pMQJF,Golden Years - M-Phazes Remix,"spotify:artist:5xkAtLTf309LAGZTbvULBn, spotify:artist:4B1CeNsCcLfOvRBJ34UUSX","Ruel, M-Phazes",spotify:album:71Vxpu75TtB7Hy7XoJ6AoQ,Golden Years (M-Phazes Remix),"spotify:artist:5xkAtLTf309LAGZTbvULBn, spotify:artist:4B1CeNsCcLfOvRBJ34UUSX","Ruel, M-Phazes",2018-03-16,https://i.scdn.co/image/ab67616d0000b27322cadd0e2daf3231ae238d61,1,1,234293,https://p.scdn.co/mp3-preview/537a220cd9a6b05a48e7aec41efc8b284048b32c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USRC11801008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,australian alternative pop,singer-songwriter pop",0.722,0.559,10.0,-5.249,0.0,0.0342,0.187,8.96e-06,0.125,0.255,110.065,4.0,,RCA Records Label,"P (P) 2017 RCA Records, a division of Sony Music Entertainment. In AUS/NZ: (P) 2017 M-Phazes Productions Pty Ltd, under exclusive license to Sony Music Australia",4554 +4555,spotify:track:0bLRXQaWzmSXRXPmP6JnEF,Don't Cry for Me Argentina,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:7FEyjOwZ7Hjvtb92GjM286,Evita: The Complete Motion Picture Music Soundtrack,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1996-10-25,https://i.scdn.co/image/ab67616d0000b273bac86bb82a4a61b67e2bfd64,1,16,335733,https://p.scdn.co/mp3-preview/3956954c975d6f5a6b996f5fe81ee48766827ee2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USWB19600674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.323,0.149,11.0,-13.906,1.0,0.0339,0.898,4.2e-06,0.099,0.0788,105.033,5.0,,Warner Records,"C © 1996 Warner Records Inc., P ℗ 1996 Warner Records Inc.",4555 +4556,spotify:track:2V4bv1fNWfTcyRJKmej6Sj,Cooler Than Me - Single Mix,"spotify:artist:2KsP6tYLJlTBvSUxnwlVWa, spotify:artist:1Bo8Afb2Qbjs4x6kJHyjle","Mike Posner, Gigamesh",spotify:album:2nnIlWcriIqcJtjduWcTRl,31 Minutes to Takeoff,spotify:artist:2KsP6tYLJlTBvSUxnwlVWa,Mike Posner,2010-08-09,https://i.scdn.co/image/ab67616d0000b273d6165c0d6eba7e5bf3fca16d,1,4,213293,https://p.scdn.co/mp3-preview/649f480a624454b97a73e354568fcfb9214fdd46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USJAY1000035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop dance,pop rap,filter house,nu disco",0.768,0.82,7.0,-4.63,0.0,0.0474,0.179,0.0,0.689,0.625,129.965,4.0,,J Records,"P (P) 2010 J Records, a unit of Sony Music Entertainment",4556 +4557,spotify:track:7GSCnEFxiD6Im98CbfySDw,Couldn't Get It Right,spotify:artist:4eeRviM714mXXeILmKHxh2,Climax Blues Band,spotify:album:46b5kxxgs65r2SQYf6BYfO,Gold Plated,spotify:artist:4eeRviM714mXXeILmKHxh2,Climax Blues Band,1976-01-01,https://i.scdn.co/image/ab67616d0000b27349c1de284f05b46d67bc14e0,1,5,198946,https://p.scdn.co/mp3-preview/9ab9478a3a1e43e8054bc5c2efc8278639346d1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEHT0400579,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,country rock,mellow gold,soft rock",0.727,0.641,2.0,-11.074,1.0,0.0392,0.0234,0.0136,0.109,0.652,102.589,4.0,,Chrysalis Copyrights,"C © 1976 Chrysalis Copyrights Ltd., a BMG Company, P ℗ 1976 Chrysalis Copyrights Ltd., a BMG Company",4557 +4558,spotify:track:3PHYPaguCDKLK1a9cp3uXZ,Because of You,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:3xkK5tqB1kP84ZzWPnJ1x3,Breakaway,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2004,https://i.scdn.co/image/ab67616d0000b2731573829abee986ce991c3e26,1,4,219493,https://p.scdn.co/mp3-preview/0cd74a6a46dfee06ce4ad63c8cb0febdc10cd730?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCTA0400265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.584,0.583,5.0,-5.284,0.0,0.0313,0.248,0.0,0.124,0.15,139.93,4.0,,RCA Records Label,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT,4558 +4559,spotify:track:4tmXsNoNOk37DPBhVk5wK1,Crazy,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,spotify:album:5Pf2kkz10HySmJjWu2Fhd4,Man Of Colours,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,1987-09-21,https://i.scdn.co/image/ab67616d0000b273d1565d17bd1808f0ee0da90d,1,1,203920,https://p.scdn.co/mp3-preview/34e5ed0aa0efa5b73b45e90591945fbbda7a782a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUC441100032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic,sophisti-pop,synthpop",0.516,0.949,5.0,-3.512,1.0,0.125,0.0162,0.0045,0.319,0.367,115.593,4.0,,Diva,"C © 2012 Diva Records, P ℗ 2012 Diva Records",4559 +4560,spotify:track:2BW5SkCO9UoosqyxpY3CVq,Hush Not a Word to Mary,spotify:artist:40f70JVK5anPhD3fGoXkra,John Rowles,spotify:album:1lrdX1B5CylQkgRLKpxxTY,The Singer & the Songs / Sings the Classics,spotify:artist:40f70JVK5anPhD3fGoXkra,John Rowles,2008-05-02,https://i.scdn.co/image/ab67616d0000b2731a4457aedfd729e62b0636b8,1,18,184013,,False,0,NZRJ00900130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic nz pop,0.479,0.5,10.0,-8.185,1.0,0.0261,0.0292,0.0,0.258,0.718,185.076,3.0,,Rajon Music Group New Zealand,"C 2008 John Rowles, P 2008 John Rowles",4560 +4561,spotify:track:6A6am7JK6SNzIKOGlU53sw,Ayo Technology,"spotify:artist:3q7HBObVc0L8jNeTe5Gofh, spotify:artist:31TPClRtHm23RisEBtV3X7, spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ","50 Cent, Justin Timberlake, Timbaland",spotify:album:4BSvr6wzkjv5t76Sw067hI,Curtis,spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,2007-01-01,https://i.scdn.co/image/ab67616d0000b27368489727dc4bd7caaac5087f,1,7,247946,https://p.scdn.co/mp3-preview/082f3b939b12a1bae9b1802f229cf33d39d19e60?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70735445,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap,dance pop,pop,dance pop,pop,pop rap",0.63,0.782,8.0,-5.44,0.0,0.132,0.0828,0.0,0.034,0.418,140.144,4.0,,Universal Music Group,"C © 2007 Shady Records/Aftermath Records/Interscope Records, P ℗ 2007 Shady Records/Aftermath Records/Interscope Records",4561 +4562,spotify:track:2yr2HnFYl7XvqJk4fXoQBt,I Don't Wanna Know (feat. Enya & P. Diddy) - 2016 Remaster,"spotify:artist:4BIQA9vRkqXEnA2twmq7mU, spotify:artist:6uothxMWeLWIhsGeF7cyo4, spotify:artist:59wfkuBoNyhDMQGCljbUbA","Mario Winans, Enya, Diddy",spotify:album:52TqKxbJkOBsbjKxlKgLwu,Bad Boy 20th Anniversary Box Set Edition,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-08-12,https://i.scdn.co/image/ab67616d0000b2733478b3ee9ec84b07c18a6ea5,2,10,257333,https://p.scdn.co/mp3-preview/45e0e77e758c63e07c4b5b15296794cd2cfc9d65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USRH11603418,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic,gregorian dance,operatic pop,dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap",0.833,0.515,11.0,-5.0,0.0,0.0462,0.347,0.00156,0.116,0.4,97.007,4.0,,Rhino Atlantic,"C © 2016 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved., P ℗ 2016 Bad Boy Records LLC.",4562 +4563,spotify:track:6pYOR2eGyQRkEawi8B5L04,Never Knew Love Like This Before,spotify:artist:0PcIlEZa7rreM7729ot05g,Stephanie Mills,spotify:album:3sTk3Dr9RAHaHthxdJ7LdC,The Best Of Stephanie Mills,spotify:artist:0PcIlEZa7rreM7729ot05g,Stephanie Mills,1995-01-01,https://i.scdn.co/image/ab67616d0000b273f363f601bff9681a4452a6fa,1,10,327933,https://p.scdn.co/mp3-preview/09a97e17d952a2cc42b5d5b531653c5720f358f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR38002470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,funk,new jack swing,quiet storm,r&b,urban contemporary",0.738,0.563,11.0,-13.523,1.0,0.0336,0.375,1.74e-06,0.0547,0.739,114.039,4.0,,Mercury,"C © 1995 The Island Def Jam Music Group, P ℗ 1995 The Island Def Jam Music Group",4563 +4564,spotify:track:1EXNyTN6Ux1sIuea1R8GqE,C'MON (feat. Travis Barker),"spotify:artist:2DORQjKJVYZMx9uu82UGtT, spotify:artist:4exLIFE8sISLr28sqG1qNX","Amy Shark, Travis Barker",spotify:album:3i16WXOYEYO0v6kA1KfeAb,C'MON (feat. Travis Barker),"spotify:artist:2DORQjKJVYZMx9uu82UGtT, spotify:artist:4exLIFE8sISLr28sqG1qNX","Amy Shark, Travis Barker",2020-10-22,https://i.scdn.co/image/ab67616d0000b273008d18b97c846126d1637f64,1,1,220461,https://p.scdn.co/mp3-preview/3534c6d1a7b6441ffb0ae0c573d1d5efa7c4f607?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUBM02000720,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,rap rock",0.626,0.665,4.0,-5.59,1.0,0.0458,0.425,0.0,0.0331,0.303,122.004,4.0,,Wonderlick,P (P) 2020 Amy Shark under exclusive license to the Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd.,4564 +4565,spotify:track:6MMCmTM5NY65MYgFHK3eQt,Let's Think About Living,spotify:artist:7GHomDn4a8u8k0AlUTwBWQ,Bob Luman,spotify:album:55jklXRL3MwrO85cV5i4d5,Livin' Lovin' Sounds,spotify:artist:7GHomDn4a8u8k0AlUTwBWQ,Bob Luman,2016-10-28,https://i.scdn.co/image/ab67616d0000b2738c4663317cc8a79b2b4182bc,1,12,124800,https://p.scdn.co/mp3-preview/1b407d1adfdc9811ccab408154a4cd19df009746?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USJGN1605638,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rockabilly,0.613,0.636,2.0,-13.398,1.0,0.0713,0.717,0.0,0.446,0.962,96.762,4.0,,Sony/ATV Music,C (C) 2016 Sony/ATV Nashville,4565 +4566,spotify:track:7fCNUWi6uflDTQ08srxMZk,No Excuses,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:4qq2wMyCT0xIFiO9MkUWOW,No Excuses,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2018-03-01,https://i.scdn.co/image/ab67616d0000b2737dd351028c93448824d07edb,1,1,152862,https://p.scdn.co/mp3-preview/73c8003db1510de088f0580901da465ced8b93a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM11801528,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop",0.827,0.658,6.0,-3.846,1.0,0.0517,0.0224,0.0,0.0417,0.523,115.016,4.0,,Epic,"P (P) 2018 Epic Records, a division of Sony Music Entertainment",4566 +4567,spotify:track:0Oj0TT23GBH2XuHAaSsloH,My Love - 2018 Remaster,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,spotify:album:0ht0PyiPPsG3mYqvFhTfgD,Red Rose Speedway,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,1973-04-30,https://i.scdn.co/image/ab67616d0000b273e44542129b01401ab7a17ac7,1,2,247733,https://p.scdn.co/mp3-preview/c94af9e1d1127b146757588685b9e47b54082b4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBCCS1800076,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.41,0.361,5.0,-14.061,1.0,0.0351,0.431,0.000174,0.0779,0.134,120.0,4.0,,Paul McCartney Catalog,"C © 1973 MPL Communications Inc, P ℗ 2018 MPL Communications Inc",4567 +4568,spotify:track:05vJ7T5PZFNCyTVULUaPI6,Let the Little Girl Dance,spotify:artist:4mDEpwlcBham5q1dmykSG0,Billy Bland,spotify:album:1HKXPyou540eKlbE3XskXA,The Original Hit Recording - Let the Little Girl Dance,spotify:artist:4mDEpwlcBham5q1dmykSG0,Billy Bland,2012-08-14,https://i.scdn.co/image/ab67616d0000b273ab6952f2ad9324f11c8ed422,1,1,143098,https://p.scdn.co/mp3-preview/9d415f22056bf43b90aa0bbb010e6f86d3c57946?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLG620497304,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.585,0.527,5.0,-9.551,1.0,0.0716,0.255,0.0,0.361,0.965,143.418,4.0,,MS Embassy,C (C) 2012 MS Embassy,4568 +4569,spotify:track:1Q1PFhRcNqXuvCSyc3hZzR,Sealed With A Kiss - Single Version,spotify:artist:6YROFUbu5zRCHi2xkir5pk,Brian Hyland,spotify:album:5McYcCiBlQAN0TG456mxVk,Sixties,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2003-01-01,https://i.scdn.co/image/ab67616d0000b273f28aff49812a454dc64c59aa,1,13,160080,https://p.scdn.co/mp3-preview/9d18b5116b814114b1a4aa7aa271498fe562ed58?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16250933,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,doo-wop,merseybeat,rock-and-roll",0.448,0.52,5.0,-5.854,0.0,0.028,0.698,0.0,0.186,0.537,90.277,4.0,,Universal Music,"C © 2003 Universal International Music B.V., P ℗ 2003 Universal International Music B.V.",4569 +4570,spotify:track:4dvQg9sD8k9y4qiEURuj8v,Lose My Breath,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,spotify:album:0b6ivSFfDs38MG7aLn9rvO,Destiny Fulfilled,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,2004-11-16,https://i.scdn.co/image/ab67616d0000b2735a4df8a804866955ab8c4def,1,1,242013,https://p.scdn.co/mp3-preview/0f5f66a92c272e4726a0178c5dfef0ac2454534f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM10412855,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary",0.814,0.899,1.0,-5.958,1.0,0.0637,0.00727,0.219,0.0979,0.545,119.011,4.0,,Sony Urban Music/Columbia,P (P) 2004 SONY BMG MUSIC ENTERTAINMENT,4570 +4571,spotify:track:7L06pF5o819jflseQ4Wde5,Never Keeping Secrets,spotify:artist:3aVoqlJOYx31lH1gibGDt3,Babyface,spotify:album:0PkkUYZMtKN25rvrt50EhX,For The Cool In You,spotify:artist:3aVoqlJOYx31lH1gibGDt3,Babyface,1993-08-24,https://i.scdn.co/image/ab67616d0000b273a202265ed54518b6434b7f51,1,3,293266,https://p.scdn.co/mp3-preview/d2b6bb3f1ab4c6a063a865907b69902aad2a5be7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM19908993,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,r&b,urban contemporary",0.693,0.648,11.0,-6.411,0.0,0.0248,0.0949,0.0,0.14,0.319,113.117,4.0,,Epic,"P (P) 1993, 1994, 2001 Sony Music Entertainment Inc.",4571 +4572,spotify:track:5nbNdS5SKdpiDZjCBh8W7b,Get It On,spotify:artist:3dBVyJ7JuOMt4GE9607Qin,T. Rex,spotify:album:6hPt04r4KtO00nwhdGJ8Ox,Electric Warrior (Deluxe Edition),spotify:artist:3dBVyJ7JuOMt4GE9607Qin,T. Rex,1971-09-24,https://i.scdn.co/image/ab67616d0000b2736b5c27aa80054957c984a931,1,6,262613,https://p.scdn.co/mp3-preview/140ac147a161594b2af013c36f29ee52495df989?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCHM7100038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,protopunk,rock,singer-songwriter",0.728,0.878,11.0,-6.926,0.0,0.0564,0.176,0.856,0.61,0.911,126.59,4.0,,Universal Music Group International,"C © 2012 Universal International Music B.V., P This Compilation ℗ 2012 Universal International Music B.V.",4572 +4573,spotify:track:53yAFiPcO7NPpKsaMCQgQ9,Lips Of An Angel,spotify:artist:6BMhCQJYHxxKAeqYS1p5rY,Hinder,spotify:album:16k9BtslYWgs4H0opBExyJ,Extreme Behavior,spotify:artist:6BMhCQJYHxxKAeqYS1p5rY,Hinder,2005-01-01,https://i.scdn.co/image/ab67616d0000b273152aefe609e8efd5ca086c81,1,8,261853,https://p.scdn.co/mp3-preview/1cb981bd31abec3a21858f6a169cd739abc41a3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70503185,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge",0.476,0.736,2.0,-5.38,1.0,0.0343,0.0217,1.08e-06,0.203,0.251,129.084,4.0,,Universal Records,"C © 2005 Universal Records, a Division of UMG Recordings Inc and Disturbing Tha Peace Records Inc., P ℗ 2005 Universal Records, a Division of UMG Recordings Inc and Disturbing Tha Peace Records Inc.",4573 +4574,spotify:track:14DYFbc6F1vPyoikkqPiAh,Something I Need,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:1Cm6wsvnTlOXrfI9PkD8i4,Native,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2013-01-01,https://i.scdn.co/image/ab67616d0000b2730dcd4d3fb73a5d9ba449a5f3,1,10,240080,https://p.scdn.co/mp3-preview/4703ca7fb7b2dc0d38d6ad27ed57e7e963de09dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71301310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.681,0.587,7.0,-6.97,1.0,0.0316,0.13,0.0,0.198,0.651,98.986,4.0,,Universal Music Group,"C © 2013 Mosley Music/Interscope Records, P ℗ 2013 Mosley Music/Interscope Records",4574 +4575,spotify:track:2yIWGeH9w7vwbZE9x9z6va,In the Summertime,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,spotify:album:4ATe4EfAkzTRcyXCWIIy4u,Thirsty Merc (with Bonus Tracks),spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,2004-08-16,https://i.scdn.co/image/ab67616d0000b2736681375da7e43ba067f123d6,1,5,240080,https://p.scdn.co/mp3-preview/d9c00f72ef1b312249fd5a97359f08cabb83765c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUWA00413580,spotify:user:bradnumber1,2022-02-03T10:23:53Z,"australian pop,australian rock",0.504,0.862,9.0,-4.421,1.0,0.0779,0.0012,0.0013,0.157,0.77,156.469,4.0,,WM Australia,"C © 2005 Warner Music Australia Pty Limited, P ℗ 2005 Warner Music Australia",4575 +4576,spotify:track:6g1GfM69yPWBt5nYEN04xu,The Stripper,spotify:artist:5ZsSQKAEppzogR04EeQ60l,David Rose & His Orchestra,spotify:album:5l2dl30d8X3bZZriwIExPv,Music Of The Stripper,spotify:artist:5ZsSQKAEppzogR04EeQ60l,David Rose & His Orchestra,2006-01-01,https://i.scdn.co/image/ab67616d0000b2736113b5a9d5a002a5b3efe901,1,1,117640,https://p.scdn.co/mp3-preview/e30f5730fcb1b87a978150af0c3e321ce46c948b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,ADA010903901,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"light music,man's orchestra",0.464,0.42,5.0,-12.649,1.0,0.028,0.843,0.973,0.262,0.591,94.57,4.0,,Gambit Records,C 2006 Gambit Records,4576 +4577,spotify:track:1mFrjW8e8fuAOowlU3Q3Dr,Dedicated To The One I Love,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,spotify:album:0zR6CIh3f8DFFzIee5AWwp,Deliver,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,1967-01-01,https://i.scdn.co/image/ab67616d0000b27391d092488eaff72ece2451dd,1,1,178733,https://p.scdn.co/mp3-preview/04716eddf51c275e05b7dd4c7eac8961e323f7e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USMC16746383,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,mellow gold,psychedelic rock,rock,soft rock,sunshine pop",0.396,0.452,7.0,-8.809,1.0,0.0326,0.814,0.0,0.192,0.307,103.264,4.0,,Geffen,"C © 1967 Geffen Records, P ℗ 1967 Geffen Records",4577 +4578,spotify:track:77ReLQdDAovYH9UY0lCILB,One Step Ahead,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,spotify:album:5TQesikArCubeIQvEsHTJB,Corroboree,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,1981,https://i.scdn.co/image/ab67616d0000b2736f82a19c96258fc69779fcd2,1,4,171066,https://p.scdn.co/mp3-preview/2a0e0b0cbfabc9c21a3f11911491f700623e6505?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUWA00601610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,kiwi rock,zolo",0.696,0.523,9.0,-7.85,0.0,0.0321,0.49,1.11e-06,0.11,0.665,102.166,4.0,,WM Australia,"C © 2006 Warner Music Australia Pty Limited, P ℗ 2006 Warner Music Australia",4578 +4579,spotify:track:696DnlkuDOXcMAnKlTgXXK,ROXANNE,spotify:artist:0vRvGUQVUjytro0xpb26bs,Arizona Zervas,spotify:album:6HJDrXs0hpebaRFKA1sF90,ROXANNE,spotify:artist:0vRvGUQVUjytro0xpb26bs,Arizona Zervas,2019-10-10,https://i.scdn.co/image/ab67616d0000b273069a93617a916760ab88ffea,1,1,163636,https://p.scdn.co/mp3-preview/18dbed71a2ee41dec2edbecd76e2f67250675dc6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,72,USSM11914320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie pop rap,pop rap,rhode island rap",0.621,0.601,6.0,-5.616,0.0,0.148,0.0522,0.0,0.46,0.457,116.735,5.0,,Arizona Zervas,P (P) 2019 Arizona Zervas,4579 +4580,spotify:track:6cg3CWWHTui9KAew9dHIjT,See My Baby Jive - 2006 Remaster,spotify:artist:7823Dim2TzjiQQ9wRQxyi9,Wizzard,spotify:album:4nDZxxwsvUNhJUmBhhec4N,Wizzard Brew,spotify:artist:7823Dim2TzjiQQ9wRQxyi9,Wizzard,1973,https://i.scdn.co/image/ab67616d0000b273cfa6e6e1fc2b6cd5895dad69,1,9,302333,https://p.scdn.co/mp3-preview/1551d94e4a41d7dceb4a5a2319dacdf4d0efc7d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAYE0600806,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.359,0.945,9.0,-5.176,1.0,0.0785,0.178,1.54e-05,0.344,0.518,137.372,4.0,,Parlophone UK,"C © 2006 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2006 Parlophone Records Ltd, a Warner Music Group Company",4580 +4581,spotify:track:6z5Yh7kOKeLjqIsNdokIpU,a thousand years,spotify:artist:7H55rcKCfwqkyDFH9wpKM6,Christina Perri,spotify:album:2lkbTVYUYHXoXt17WXIAVc,The Twilight Saga: Breaking Dawn - Part 1 (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-11-04,https://i.scdn.co/image/4aaa9fae84be9e79c1a58845784441d65327bcba,1,6,285120,https://p.scdn.co/mp3-preview/be3f3ae6466123836bb05ce0a23a368c196e62f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USAT21102141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.421,0.407,10.0,-7.445,1.0,0.0267,0.309,0.000961,0.11,0.161,139.028,3.0,,Chop Shop/Atlantic,"C © 2011 TM & 2011 Summit Entertainment, LLC. All rights reserved., P ℗ 2011 This compilation 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",4581 +4582,spotify:track:49EoBTPBSmPUeRmPTJsIBX,Valleri,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:338yWfNJWW2SXxVfIdczUD,The Best of The Monkees,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,2008-07-01,https://i.scdn.co/image/ab67616d0000b2730b74e9fcbe76d8245535a207,1,23,140520,https://p.scdn.co/mp3-preview/cbb776b8de10aba4fa4d119f1fd1c5bc64441707?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USRH10125804,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.401,0.637,8.0,-6.415,0.0,0.0703,0.234,0.0181,0.322,0.515,152.612,4.0,,Rhino,"C © 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co., P ℗ 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co.",4582 +4583,spotify:track:5TxdQaqp2Xn9IBTlfq26l7,Girlfriend,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,spotify:album:7gfXFkA259SkaFeJxSFtKE,Celebrity,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,2001-07-24,https://i.scdn.co/image/ab67616d0000b2733503d55e718abb353a905d29,1,4,253600,https://p.scdn.co/mp3-preview/46e18a2db0de817b39674a0ddf3ca16822407250?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USJI10100232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.745,0.807,0.0,-5.191,0.0,0.0884,0.0887,1.49e-05,0.0283,0.858,93.967,4.0,,Jive,P (P) 2001 Zomba Recording LLC,4583 +4584,spotify:track:5AzpZ5ADn1AFPxcEBd2Ugf,Don't Do Me Like That,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:708Whrc4abJEtqBINv9S2b,Damn The Torpedoes (Deluxe Edition),spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,1979-10-19,https://i.scdn.co/image/ab67616d0000b273ebca7d93f21ba366fe005966,1,6,161786,https://p.scdn.co/mp3-preview/1a4ce921c024096232b302116a5125349537fadb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USMC17909362,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.758,0.806,0.0,-4.243,1.0,0.0279,0.213,1.52e-05,0.0983,0.962,116.543,4.0,,Geffen,"C © 2010 Geffen Records, P This Compilation ℗ 2010 Geffen Records",4584 +4585,spotify:track:3LtwPeiF7qpP6YFLn9D6K9,How Do I Deal,spotify:artist:2BZDbnjUHnL2XAPgkdqTpb,Jennifer Love Hewitt,spotify:album:5pVLaGn7eFTpeFGY6iKfVm,I Still Know What You Did Last Summer Soundtrack,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1998-11-17,https://i.scdn.co/image/ab67616d0000b273fc58aa09feea68cc9a93864e,1,2,203826,https://p.scdn.co/mp3-preview/ab98e3449327fa812e33b6e1faeec52273ce5252?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USWB19801034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.596,0.831,5.0,-6.319,1.0,0.112,0.017,0.0,0.0766,0.322,94.846,4.0,,143/Warner Records,"C © 1998 Columbia Pictures Industries, Inc., P ℗ 1998 London Records 90 Limited; 1998 Mercury Records Ltd.; 1998 Reprise Records; 1998 Almo Sounds, Inc.; 1998 Slash Records; 1998 Restless Records; 1998 Columbia Pictures Industries, Inc. This compilation 1998 143 Records.",4585 +4586,spotify:track:6ZbqIybNIVv2KBZkbYbIRA,Touch The Sky,"spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:01QTIT5P1pFP3QnnFSdsJf","Kanye West, Lupe Fiasco",spotify:album:4yJqrqT2BpuXLj5BMJlAXR,Late Registration,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2005-08-30,https://i.scdn.co/image/ab67616d0000b273cdcd1e0c30e10686af48baad,1,3,236600,https://p.scdn.co/mp3-preview/72c17e40da6a3c4f05284c4b4f0ffafbe72f072d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USUM70502838,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap,chicago rap,conscious hip hop,hip hop,political hip hop,pop rap,rap,southern hip hop",0.654,0.841,9.0,-4.941,1.0,0.311,0.0144,0.0,0.345,0.592,106.772,4.0,,Roc-A-Fella,"C © 2005 UMG Recordings, Inc., P ℗ 2005 UMG Recordings, Inc.",4586 +4587,spotify:track:1SqvnNuECvid6XdiJ9OCH5,Keeping Score (feat. Paige IV),"spotify:artist:2RnDmyX1zzOkK5Cj9QPhMq, spotify:artist:7FhrJLDe6bQ0Hqt9Wf7zXh","L D R U, Paige IV",spotify:album:3yO38jQA7jc7MCnnHoXKGz,Keeping Score (feat. Paige IV),spotify:artist:2RnDmyX1zzOkK5Cj9QPhMq,L D R U,2015-09-25,https://i.scdn.co/image/ab67616d0000b273b6173c7bee623781e6aac15c,1,1,182950,https://p.scdn.co/mp3-preview/b5381bf4cbecf1f305cef00960ba59517ef63b6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUBM01500352,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.629,0.618,5.0,-5.51,0.0,0.0918,0.0245,0.0,0.0938,0.644,92.071,4.0,,Audio Paxx Agency,P (P) 2015 Audiopaxx,4587 +4588,spotify:track:2QqbBVwpyJn7SL7thga35w,Tonight,spotify:artist:55qiaow2sDYtjqu1mwRua6,New Kids On The Block,spotify:album:4dCdnfD0shXGuHtyTOtx8q,Step By Step,spotify:artist:55qiaow2sDYtjqu1mwRua6,New Kids On The Block,1990-06-04,https://i.scdn.co/image/ab67616d0000b273f4a3db1e7551dab2fb1c06e2,1,2,207466,https://p.scdn.co/mp3-preview/608d43df0f257eb493649bd9c8f8e4ccd5a839a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM19917888,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.469,0.386,2.0,-12.112,1.0,0.0272,0.103,1.2e-05,0.291,0.383,102.476,4.0,,Columbia,P (P) 1990 Sony Music Entertainment Inc..,4588 +4589,spotify:track:1rIKgCH4H52lrvDcz50hS8,Lush Life,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,spotify:album:5YLRVHDVRw3QqWbeTGpC5B,So Good,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,2017-03-17,https://i.scdn.co/image/ab67616d0000b2739e1683774b22648f4f178ed3,1,2,201122,https://p.scdn.co/mp3-preview/2f14e67d9660815897317b300241b228e40bcd97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,SEWEE1500509,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,scandipop,swedish electropop,swedish pop",0.694,0.712,7.0,-3.923,0.0,0.046,0.132,0.0,0.211,0.799,98.023,4.0,,Epic/Record Company TEN,"P (P) 2017 Record Company TEN, exclusively licensed by Epic Records, a division of Sony Music Entertainment",4589 +4590,spotify:track:2GD8Ia7rtJzfgTIy20TaRI,"This Ain't A Scene, It's An Arms Race",spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,spotify:album:03Og8YvbFYbe3hmr9MfZHT,Infinity On High (Deluxe Edition),spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2007-01-01,https://i.scdn.co/image/ab67616d0000b273a2acd73823d95cb66d0d98fd,1,3,212040,https://p.scdn.co/mp3-preview/a223021088b2a9ca739fbe73f8cf916aec3105b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70619006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop,rock",0.435,0.887,9.0,-4.07,1.0,0.0636,0.000747,0.0,0.0327,0.408,199.935,4.0,,Universal Music Group,"C © 2007 The Island Def Jam Music Group, P ℗ 2007 The Island Def Jam Music Group",4590 +4591,spotify:track:33XpXmKmVTopPKnxTgbVOD,True Colours,spotify:artist:6uATIQFyydDXPc2RlLzcUE,Kasey Chambers,spotify:album:5edluM30Us1pl4LA8umamH,Storybook,spotify:artist:6uATIQFyydDXPc2RlLzcUE,Kasey Chambers,2011-09-23,https://i.scdn.co/image/ab67616d0000b273e741bd11a11f2b62647a27d5,1,10,225960,https://p.scdn.co/mp3-preview/20acd6816513df613f683cf8e585464a98fab6ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM00200340,spotify:user:bradnumber1,2022-03-24T08:37:05Z,"australian americana,australian country,australian rock",0.704,0.247,0.0,-8.736,1.0,0.0297,0.64,1.72e-06,0.085,0.236,86.952,4.0,,Bloodlines,"C 2011 Bloodlines, P 2011 Bloodlines",4591 +4592,spotify:track:1WFTQr6oAHx6E1BcGiXqk4,First Heartbreak,spotify:artist:1vSN1fsvrzpbttOYGsliDr,Tori Kelly,spotify:album:2mH2TVd6euTmrn9Pcw9XHS,Unbreakable Smile,spotify:artist:1vSN1fsvrzpbttOYGsliDr,Tori Kelly,2016-01-29,https://i.scdn.co/image/ab67616d0000b273575a053c1fec8e5ca7da3005,1,6,204960,https://p.scdn.co/mp3-preview/569588fefe7fba3c2a8f178be97cb8fb6bc6166e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USUM71505911,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.637,0.494,3.0,-5.737,0.0,0.0755,0.507,0.0,0.0888,0.358,135.755,4.0,,Tori Kelly,"C © 2016 Capitol Records & Schoolboy Records, P ℗ 2016 Capitol Records & Schoolboy Records",4592 +4593,spotify:track:2tAYoHaFbx6e7QOkOkAhrX,Spill The Wine,"spotify:artist:3miNucraVWk4hdVsIxn7id, spotify:artist:3ICyfoySNDZqtBVmaBT84I","Eric Burdon, War",spotify:album:4HUntZg0YV0qCvRxmIhq2U,Boogie Nights / Music From The Original Motion Picture,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1997-01-01,https://i.scdn.co/image/ab67616d0000b273a4a3752f48cf0bb54e1dffc1,1,5,242066,https://p.scdn.co/mp3-preview/f36a8e4ad3281046b1a90a5e9aafdf5dae9ff4a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USAV20800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,classic soul,funk,motown,p funk,soul",0.819,0.528,2.0,-10.666,0.0,0.0713,0.377,0.0,0.131,0.894,120.357,4.0,,Capitol Records,"C © 1997 Capitol Records, LLC, P This Compilation ℗ 1997 Capitol Records, LLC",4593 +4594,spotify:track:2e0x2iafqVsId3HP4Fjgd1,Where The City Meets The Sea,spotify:artist:5JmeloS88DjYXJulG7qgwF,The Getaway Plan,spotify:album:3NsslLpsdANxC2pqG44UNL,"Other Voices, Other Rooms",spotify:artist:5JmeloS88DjYXJulG7qgwF,The Getaway Plan,2008,https://i.scdn.co/image/ab67616d0000b2739eaae4a2a55a38caf533ef09,1,3,218386,https://p.scdn.co/mp3-preview/098ae784e2fbef5a41683f6d61f4b4a7f5d1f84b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBV10800002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian alternative rock,0.48,0.863,6.0,-4.988,0.0,0.0553,0.00386,0.0,0.158,0.501,144.064,4.0,,WM Australia,"C © 2008 We Are Unified, P ℗ 2008 We Are Unified",4594 +4595,spotify:track:33jt3kYWjQzqn3xyYQ5ZEh,Cheek To Cheek,"spotify:artist:5V0MlUE1Bft0mbLlND7FJz, spotify:artist:19eLuQmk9aCobbVDHc6eek","Ella Fitzgerald, Louis Armstrong",spotify:album:2uqlkJu6vckJahCsp6Hfcn,The Complete Ella And Louis On Verve,"spotify:artist:5V0MlUE1Bft0mbLlND7FJz, spotify:artist:19eLuQmk9aCobbVDHc6eek","Ella Fitzgerald, Louis Armstrong",1997-05-20,https://i.scdn.co/image/ab67616d0000b273a0b669c5273f36ffefcf1ebc,1,9,354533,https://p.scdn.co/mp3-preview/c5d5f5400cc3a2e3f50f476032e5d1d384e0cf99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USPR35612075,spotify:user:bradnumber1,2023-01-31T06:28:27Z,"adult standards,jazz,jazz blues,soul,swing,vocal jazz,adult standards,dixieland,harlem renaissance,jazz trumpet,lounge,new orleans jazz,soul,swing,vocal jazz",0.663,0.264,0.0,-14.571,1.0,0.0914,0.706,0.0,0.1,0.657,122.482,4.0,,Verve Reissues,"C © 1997 UMG Recordings Inc., P This Compilation ℗ 1997 UMG Recordings Inc.",4595 +4596,spotify:track:23jaOlnV7vHmly51DPBr35,Half-Breed,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,spotify:album:4TJXWeFHnc18VgIAwXtRVS,Half-Breed,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,1973-01-01,https://i.scdn.co/image/ab67616d0000b273517f6c519515c9774a0f61a3,1,3,167533,https://p.scdn.co/mp3-preview/a91d16907aa9becf5334b133f1bbe396ba1d3d41?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USMC17301682,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.646,0.467,9.0,-12.678,0.0,0.0325,0.524,0.0,0.329,0.877,102.704,4.0,,Geffen,"C © 1973 Geffen Records, P ℗ 1973 Geffen Records",4596 +4597,spotify:track:1mfZlMWHWLesCMRl9JwkvL,Conqueror,spotify:artist:1WgXqy2Dd70QQOU7Ay074N,AURORA,spotify:album:4AJyEdjXcSmFJo3RJGd2ac,All My Demons Greeting Me As A Friend,spotify:artist:1WgXqy2Dd70QQOU7Ay074N,AURORA,2016-03-11,https://i.scdn.co/image/ab67616d0000b273652c57b9dd47a9802eb1bca0,1,2,207506,https://p.scdn.co/mp3-preview/1ab1249493f868b055e0a0eb1a6a0e8636f435c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71506322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,norwegian pop",0.467,0.565,7.0,-6.732,1.0,0.0403,0.00411,0.00475,0.175,0.522,184.014,4.0,,Liberator Music,"C 2016 Glassnote Entertainment Group LLC, P 2016 Glassnote Entertainment Group LLC",4597 +4598,spotify:track:71Flk3ZlAs3lLCLbxMKpcu,Moonshine,"spotify:artist:1GbrJTB56Xs4XQGlmVbaCf, spotify:artist:0z4gvV4rjIZ9wHck67ucSV","Savage, Akon",spotify:album:4RGNV1d5LVskVxfjhIapsb,Moonshine,spotify:artist:1GbrJTB56Xs4XQGlmVbaCf,Savage,2005-01-01,https://i.scdn.co/image/ab67616d0000b27391203bb4a541e41df076778c,1,5,303746,https://p.scdn.co/mp3-preview/bf4139c5c6682137e8028ee736d99da20bda6ad7?cid=9950ac751e34487dbbe027c4fd7f8e99,True,47,NZDR00500009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"nz hip hop,dance pop",0.525,0.652,2.0,-6.971,0.0,0.469,0.168,0.0,0.0544,0.371,127.55,3.0,,Frequency,"C Dawn Raid Entertainment, P Dawn Raid Entertainment",4598 +4599,spotify:track:3xYJgyDaDaTEetvC0IAee5,Heaven (Must Be There) - 2007 Remastered,spotify:artist:48kXmrNGCBMAz7N8x1J2na,Eurogliders,spotify:album:0KAv7K0ZTcXPAbwoUneSbK,The Essential,spotify:artist:48kXmrNGCBMAz7N8x1J2na,Eurogliders,2007-03-05,https://i.scdn.co/image/ab67616d0000b27320ccbf156f1e2ce2632db5d1,1,4,220733,https://p.scdn.co/mp3-preview/9deaa5091384167769a485536841f12b8dc69c7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUBM00700249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,synthpop",0.588,0.803,2.0,-7.713,1.0,0.045,0.0115,0.00468,0.0592,0.589,122.496,4.0,,Columbia,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,4599 +4600,spotify:track:0vGWBo1b6KyE9klUQfxqwJ,Someone You Loved,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,spotify:album:2wiPF3m0ylst0JSk1IvZL8,Divinely Uninspired To A Hellish Extent (Extended Edition),spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,2019-11-22,https://i.scdn.co/image/ab67616d0000b2737b9639babbe96e25071ec1d4,1,4,182173,https://p.scdn.co/mp3-preview/1180be3a0d0d27d51eebdec177622d47c37858dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,DEUM71807062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.501,0.405,1.0,-5.679,1.0,0.032,0.751,0.0,0.105,0.447,109.889,4.0,,Vertigo Berlin,"C © 2019 Universal Music GmbH, P ℗ 2019 Universal Music GmbH",4600 +4601,spotify:track:69uJi5QsBtqlYkGURTBli8,I Can't Make You Love Me,spotify:artist:4KDyYWR7IpxZ7xrdYbKrqY,Bonnie Raitt,spotify:album:6blrkOZ0VmkhYPjfoD7eqf,Luck Of The Draw,spotify:artist:4KDyYWR7IpxZ7xrdYbKrqY,Bonnie Raitt,1991-01-01,https://i.scdn.co/image/ab67616d0000b273a1113af3a19a41dc8eec534e,1,3,332960,https://p.scdn.co/mp3-preview/12c8ccd0aa3e8cbd44eb989775038b0ec54cec56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USCA29100113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,electric blues,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.588,0.149,7.0,-16.728,0.0,0.0319,0.846,9.65e-05,0.236,0.113,124.689,4.0,,Capitol Records,"C © 1991 Capitol Records Inc., P ℗ 1991 Capitol Records Inc.",4601 +4602,spotify:track:2o1snIISD13qYK7JiFFIR8,Get Up (Rattle) [feat. Far East Movement],spotify:artist:1pbHrVayIcVpHI9z97u4bK,Bingo Players,spotify:album:1c93UUROeWFJIjwTIQLaPa,Get Up (Rattle),spotify:artist:1pbHrVayIcVpHI9z97u4bK,Bingo Players,2013-01-21,https://i.scdn.co/image/ab67616d0000b2732506b308cddc05c4d470b626,1,1,166932,https://p.scdn.co/mp3-preview/6e5f37dc22af990c98680081c354605d8989b7f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLC281211931,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dutch house,edm,electro house,melbourne bounce,pop dance,progressive electro house,progressive house",0.801,0.985,7.0,-2.69,1.0,0.0647,0.0205,7.21e-06,0.298,0.722,127.992,4.0,,onelove,P 2013 SpinninRecords.com under exclusive license to ONELOVE,4602 +4603,spotify:track:4eaynYNbGdL9F90LGLcUsU,Kill For Your Love,spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,spotify:album:3EEpn39R3tZZnBiaWJFyfQ,Kill For Your Love,spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,2022-09-09,https://i.scdn.co/image/ab67616d0000b273ef5475418def3013608a5614,1,1,192170,https://p.scdn.co/mp3-preview/ac0aa263f2d4d0d97c93f61a665bbd1bcf030b78?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSM12106349,spotify:user:bradnumber1,2022-09-12T00:31:05Z,"indie poptimism,pop",0.81,0.704,7.0,-8.739,1.0,0.205,0.211,2.44e-06,0.371,0.42,119.991,4.0,,Columbia,"P (P) 2022 Columbia Records, a Division of Sony Music Entertainment",4603 +4604,spotify:track:4HcSK64Cy7JJ5gv1Txzhzo,The Book of Love - EP Version,spotify:artist:25tMQOrIU4LlUo6Sv8v5SE,Gavin James,spotify:album:0vQOkW8jvRYdf0wzonmLMK,For You,spotify:artist:25tMQOrIU4LlUo6Sv8v5SE,Gavin James,2015-05-18,https://i.scdn.co/image/ab67616d0000b2739933925a2a2a8a910b5bd211,1,2,193111,https://p.scdn.co/mp3-preview/f7d41d7b4895bce5eacd14bada51689ff972fe2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GB45A1500062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,irish pop,0.669,0.308,0.0,-13.798,1.0,0.0279,0.824,0.000477,0.101,0.224,104.916,4.0,,Sony Music Entertainment,P (P) 2015 GS Believe LLP exclusively licensed to Sony Music Entertainment Netherlands B.V.,4604 +4605,spotify:track:23prqukOZaHgnIqI0JhwVz,Nervous,spotify:artist:25tMQOrIU4LlUo6Sv8v5SE,Gavin James,spotify:album:2D0eR39YHfnXBRNsduVaXj,Bitter Pill,spotify:artist:25tMQOrIU4LlUo6Sv8v5SE,Gavin James,2016-03-11,https://i.scdn.co/image/ab67616d0000b2735dc49127f91fc5ebd6187cb6,1,2,216200,https://p.scdn.co/mp3-preview/320b54e5be610d61672686e609b82bb980ae1be4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB45A1500191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,irish pop,0.516,0.663,7.0,-10.783,1.0,0.0398,0.375,4.9e-05,0.126,0.149,83.17,4.0,,Liberator Music,"C 2016 GS Believe, P 2016 GS Believe",4605 +4606,spotify:track:7xHWNBFm6ObGEQPaUxHuKO,The Greatest (feat. Kendrick Lamar),"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN, spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg","Sia, Kendrick Lamar",spotify:album:2eV6DIPDnGl1idcjww6xyX,This Is Acting (Deluxe Version),spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2016-10-21,https://i.scdn.co/image/ab67616d0000b273754b2fddebe7039fdb912837,1,14,210226,https://p.scdn.co/mp3-preview/b064bf63626e35f4ff467329843445fcebfee2bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRC11601332,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,conscious hip hop,hip hop,rap,west coast rap",0.668,0.725,1.0,-6.127,1.0,0.266,0.0102,0.000479,0.0561,0.729,191.944,4.0,,Monkey Puzzle Records/RCA Records,"P (P) 2016 Monkey Puzzle Records, under exclusive license to RCA Records",4606 +4607,spotify:track:4RGxUjaCmVtD30pIhtEi7w,Sunshine Superman,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,spotify:album:2ULhVPvdhT7RREnqRWM06G,Sunshine Superman,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,1966-09,https://i.scdn.co/image/ab67616d0000b27332ddd18dc88969d84dbff3ab,1,1,195000,https://p.scdn.co/mp3-preview/8e2ae5850d0099ae4f8df0556d0e30277034852b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM19805194,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british folk,british invasion,classic rock,folk,folk rock,glam rock,psychedelic folk,psychedelic rock,scottish singer-songwriter,singer-songwriter",0.629,0.677,1.0,-7.239,1.0,0.0299,0.122,9.72e-06,0.0962,0.627,132.783,4.0,,Epic,P Originally Released 1966 Sony Music Entertainment Inc.,4607 +4608,spotify:track:5go7pj7RuuNBsZRaI86hZl,Hymn to Her - 2007 Remaster,spotify:artist:0GByy3DcfbQwDvXGCWmzv9,Pretenders,spotify:album:1d7D1MLaFW6rp9N1kBZDn3,Get Close (Expanded & Remastered),spotify:artist:0GByy3DcfbQwDvXGCWmzv9,Pretenders,1986-11-04,https://i.scdn.co/image/ab67616d0000b273d74e228a3e1b3d3e3245e2a8,1,10,298319,https://p.scdn.co/mp3-preview/971c49263856d93a19c145b99b5a5a30b0b3978d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAHT0700204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,rock,soft rock",0.546,0.552,0.0,-9.351,1.0,0.0355,0.126,0.0,0.118,0.241,95.158,4.0,,Rhino/Warner Records,"C © 2007 Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2007 Warner Music UK Ltd. Manufactured & Marketed by Rhino Entertainment Company, a Warner Music Group Company",4608 +4609,spotify:track:6YffUZJ2R06kyxyK6onezL,Ring of Fire,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,spotify:album:0ucV57dbnqmrGv9d60r6X2,Ring Of Fire: The Best Of Johnny Cash,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,1963-08-06,https://i.scdn.co/image/ab67616d0000b273dfe4bfe695c4192e547e72c7,1,1,158426,https://p.scdn.co/mp3-preview/382c983e90ad3f326539e1330f2195dba9c9b169?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM11201688,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,outlaw country,rock",0.659,0.585,7.0,-8.189,1.0,0.0288,0.623,0.000213,0.348,0.784,104.111,4.0,,Columbia Nashville Legacy,P Originally released 1963. All rights reserved by Sony Music Entertainment,4609 +4610,spotify:track:27ycaQnQAxaPiyeg3nr2aB,Midnight Sky,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:7z5fmW3FDD6jlpJtwMXV51,Midnight Sky,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2020-08-14,https://i.scdn.co/image/ab67616d0000b273d59c3c489691c8b41043cab2,1,1,223279,https://p.scdn.co/mp3-preview/f96154dc52234269b2d5625084acf7d3e38c77f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USRC12002653,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.705,0.814,4.0,-5.466,0.0,0.0346,0.00115,0.00312,0.203,0.259,110.0,4.0,,RCA Records Label,"P (P) 2020 RCA Records, a division of Sony Music Entertainment",4610 +4611,spotify:track:2DjWsDGgL1xNbhnr7f6t5F,Baby Can I Hold You,spotify:artist:7oPgCQqMMXEXrNau5vxYZP,Tracy Chapman,spotify:album:6hmmX5UP4rIvOpGSaPerV8,Tracy Chapman,spotify:artist:7oPgCQqMMXEXrNau5vxYZP,Tracy Chapman,1988-04-05,https://i.scdn.co/image/ab67616d0000b27390b8a540137ee2a718a369f9,1,5,193120,https://p.scdn.co/mp3-preview/c2bb675f67e498694633c81f3e8c1682b0197e30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USEE10180931,spotify:user:bradnumber1,2022-04-20T22:31:48Z,"folk,lilith,singer-songwriter,women's music",0.692,0.422,2.0,-10.533,1.0,0.0333,0.0811,0.0,0.0848,0.468,74.375,4.0,,Elektra Records,"C © 1988 Elektra/Asylum Records for the United States and WEA International for the world outside of the United States., P ℗ 1988 Elektra/Asylum Records for the United States and WEA International for the world outside of the United States.",4611 +4612,spotify:track:2famEVqMMVijRxsFexsk05,Hey Mr. D.J. - Original Mix - Edit,spotify:artist:6cjSmkVvMvyE6tCAo1M9Is,Zhané,spotify:album:5sNugaEroUdacOk1TiY7PQ,Pure... Hip Hop,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-04-12,https://i.scdn.co/image/ab67616d0000b2731bb3d4119d862f3f6a931134,3,9,256186,https://p.scdn.co/mp3-preview/28b644be579bfebdcdd03ff039e8514ca68aef8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USSM19303563,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,r&b",0.84,0.668,2.0,-5.841,1.0,0.0631,0.0187,0.00167,0.1,0.89,101.295,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment,4612 +4613,spotify:track:55qBw1900pZKfXJ6Q9A2Lc,Teenage Dream,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:5BvgP623rtvlc0HDcpzquz,Teenage Dream: The Complete Confection,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2012-03-12,https://i.scdn.co/image/ab67616d0000b273937af329667311f4b2831616,1,1,227760,https://p.scdn.co/mp3-preview/985a3dc42ceba4eace0baedfb9942dd533f4ce50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USCA21001255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.719,0.804,10.0,-4.581,1.0,0.0355,0.0132,3.22e-06,0.139,0.605,119.999,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",4613 +4614,spotify:track:2VTQAjZr7FPoEJD2sNoH3o,Celebrity Skin,spotify:artist:5SHQUMAmEK5KmuSb0aDvsn,Hole,spotify:album:0ZIlM7A6pZyNhfohaWjauj,Celebrity Skin,spotify:artist:5SHQUMAmEK5KmuSb0aDvsn,Hole,1998-01-01,https://i.scdn.co/image/ab67616d0000b27377575d3a52afb42e56a3c283,1,1,162493,https://p.scdn.co/mp3-preview/615d15ae8b1d4b94c1a17822495dbb68c0cb83a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19816401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,riot grrrl",0.443,0.896,9.0,-6.163,1.0,0.0457,1.35e-05,0.000101,0.369,0.733,134.145,4.0,,Geffen*,"C © 1998 Geffen Records Inc., P ℗ 1998 UMG Recordings, Inc.",4614 +4615,spotify:track:2376IJzmJ9UJY5wWLTce2I,I'm Outta Love,spotify:artist:2siHvYaxjaW5rKVRiIrMYH,Anastacia,spotify:album:4lCN7JEjQdvWsxW39lZs4E,Not That Kind,spotify:artist:2siHvYaxjaW5rKVRiIrMYH,Anastacia,2000-06-13,https://i.scdn.co/image/ab67616d0000b2735b4639f7df1ba7a582a5b5ab,1,2,242773,https://p.scdn.co/mp3-preview/ff20923705e67f99605ded5ab385ba182e196b22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USSM19921724,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop soul,0.761,0.717,10.0,-5.836,0.0,0.054,0.407,0.0,0.114,0.685,119.437,4.0,,Epic,"P (P) 1999, 2000, 2001 SONY BMG MUSIC ENTERTAINMENT",4615 +4616,spotify:track:0vbbhcA6okLzvsy6WSTlLg,Lay It All on Me (feat. Ed Sheeran),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Rudimental, Ed Sheeran",spotify:album:6NoBzYmh5gUusGPCfg0pct,x - Wembley Edition,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2013,https://i.scdn.co/image/ab67616d0000b273d08209944468440145f01524,1,24,242440,https://p.scdn.co/mp3-preview/5f509081db5aae5ff3cc43b0029b9e70b55f9309?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAHS1400395,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,pop,singer-songwriter pop,uk pop",0.669,0.747,6.0,-7.108,1.0,0.0428,0.141,0.0,0.185,0.483,122.531,4.0,,Atlantic Records UK,"C © 2015 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 / 2015 Asylum Records UK, a Warner Music UK Company except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",4616 +4617,spotify:track:5xhQChGGhKLWqBqX4XhtYE,Sail,spotify:artist:4njdEjTnLfcGImKZu1iSrz,AWOLNATION,spotify:album:6dMfMvS3hyk3ZCl4yljEDD,Megalithic Symphony Deluxe,spotify:artist:4njdEjTnLfcGImKZu1iSrz,AWOLNATION,2011,https://i.scdn.co/image/ab67616d0000b2735a41b6c530b167ffba6a92f5,1,10,259102,https://p.scdn.co/mp3-preview/f14574baf46e2fb574059f16f9d4e94774bd00b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USP6L1000053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"la indie,modern alternative rock,modern rock,rock,stomp pop",0.825,0.435,1.0,-9.582,1.0,0.0568,0.452,0.609,0.0953,0.243,119.038,4.0,,Red Bull Records,"C (C) 2013 Red Bull Records, Inc., P (P) 2011 Red Bull Records, Inc.",4617 +4618,spotify:track:1woFG35C47HlZ8v4hjgmMx,Break Away (From That Boy),spotify:artist:6LK7EEHFApe9FZbFRFyBDN,The Newbeats,spotify:album:06q9kt4UZs8dqyMOt4BuJK,The Newbeats,spotify:artist:6LK7EEHFApe9FZbFRFyBDN,The Newbeats,2011-09-20,https://i.scdn.co/image/ab67616d0000b273fab3af0749df6ab01bee5129,1,4,150906,https://p.scdn.co/mp3-preview/f7b781e81cbe4f8e62446a62d937bdc29bafa31d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USJGN0801467,spotify:user:bradnumber1,2021-08-08T09:26:31Z,northern soul,0.6,0.362,10.0,-14.238,1.0,0.0331,0.764,0.00201,0.108,0.62,122.754,4.0,,Hickory Records (2009 Deal),C (C) 2011 Sony / ATV,4618 +4619,spotify:track:12m1CEDKG364RUC0pQiHHQ,A Fifth Of Beethoven,spotify:artist:73JBR5s2PVvUjGu6tIqjqx,Walter Murphy,spotify:album:6kFmH2VMMFaUrK4QhY4hLi,Saturday Night Fever (The Original Movie Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1977-12-12,https://i.scdn.co/image/ab67616d0000b273605128d275ca60ccc9cd3b6d,1,6,182533,https://p.scdn.co/mp3-preview/45ffc902c21f97a312b82c9ca523c2e36eacb0c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBA157600010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hammond organ,0.687,0.506,0.0,-13.311,0.0,0.0407,0.315,0.692,0.0611,0.783,108.759,4.0,,Bee Gees Catalog,"C © 1977 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P This Compilation ℗ 1977 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",4619 +4620,spotify:track:05SBRd4fXgn8FX7bf8BCAE,I Need Your Love (feat. Ellie Goulding),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:0X2BH1fck6amBIoJhDVmmJ","Calvin Harris, Ellie Goulding",spotify:album:7w19PFbxAjwZ7UVNp9z0uT,18 Months,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2012-10-29,https://i.scdn.co/image/ab67616d0000b273dcef905cb144d4867119850b,1,8,234506,https://p.scdn.co/mp3-preview/b7eebf69c35c95e49505405bc14b9e78fe3c4736?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBARL1201390,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,indietronica,metropopolis,pop,uk pop",0.695,0.869,8.0,-5.066,1.0,0.0483,0.41,0.0,0.237,0.58,124.989,4.0,,Columbia,P (P) 2012 Sony Music Entertainment UK Limited,4620 +4621,spotify:track:3id2EVGKc3eFAMn9nFnB0r,Love Someone,spotify:artist:25u4wHJWxCA9vO0CzxAbK7,Lukas Graham,spotify:album:3r31ml7fFfNaoSSMH0sda9,3 (The Purple Album),spotify:artist:25u4wHJWxCA9vO0CzxAbK7,Lukas Graham,2018-10-26,https://i.scdn.co/image/ab67616d0000b273d266be64b095db17c5b6814a,1,4,205440,https://p.scdn.co/mp3-preview/76ee1ecda2e190469c8aaa7f0c094c6296a5a367?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USWB11801903,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"danish pop,scandipop",0.538,0.409,9.0,-6.581,0.0,0.0505,0.172,0.0,0.11,0.265,171.838,4.0,,Copenhagen Records / Then We Take The World,"C © 2018 Universal Music (Denmark) A/S, P ℗ 2018 Universal Music (Denmark) A/S",4621 +4622,spotify:track:0zeqKbySjKbfW5jyl3PMsW,About A Girl - Remastered,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,spotify:album:1TjncssmpzxUYTZic79o7T,Bleach: Deluxe Edition,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,1989-06-15,https://i.scdn.co/image/ab67616d0000b273eb4aa51554d00887eb5a5173,1,3,168160,https://p.scdn.co/mp3-preview/21a44c2cce969651f84906817a016d894508eb50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSUB0983403,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,permanent wave,rock",0.402,0.898,11.0,-6.467,0.0,0.0316,8.86e-06,8.89e-05,0.279,0.675,132.092,4.0,,Sub Pop,"C 2009 Sub Pop Records, P 2009 Sub Pop Records",4622 +4623,spotify:track:1ffslNl0FbbFvorcEVLUFL,Waiting for Tonight,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:43CV8Hxctvm8BUCesUaxMk,On The 6,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,1999-04-20,https://i.scdn.co/image/ab67616d0000b2739f8872d948b2f5ec7b7c830b,1,8,245333,https://p.scdn.co/mp3-preview/1dda429c3edad0ec9be128a23ecfa41183658ea3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM19900596,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.697,0.945,10.0,-6.169,0.0,0.0419,0.00331,0.0482,0.0946,0.861,125.022,4.0,,Work,P 1999 Sony Music Entertainment Inc.,4623 +4624,spotify:track:1UBcwKIAUHo7BYAvae6yeA,Wishin' And Hopin',spotify:artist:5zaXYwewAXedKNCff45U5l,Dusty Springfield,spotify:album:2coXvs2zYk60U9Dd2hm6St,Stay Awhile / I Only Want To Be With You,spotify:artist:5zaXYwewAXedKNCff45U5l,Dusty Springfield,1964-06-26,https://i.scdn.co/image/ab67616d0000b273bb09aed3154e3eed4dbba057,1,7,176400,https://p.scdn.co/mp3-preview/0728cc582d44160e90938f9b68089f6e12b52994?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBF086400349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion,folk rock,soul,vocal jazz",0.683,0.374,11.0,-10.084,1.0,0.0381,0.232,0.0,0.146,0.707,108.125,4.0,,Mercury Records,"C © 1964 UMG Recordings Inc., P This Compilation ℗ 1999 UMG Recordings Inc.",4624 +4625,spotify:track:5CXfTjIX7bAlFxSlMBaJVU,Doesn't Somebody Want To Be Wanted,"spotify:artist:0isDnZYMWbwDz7hzw0XRjt, spotify:artist:7u1mqP3ykglpCB2c1p1p5I","David Cassidy, The Partridge Family",spotify:album:4Ze1fA73mUq8aEKK2fa3Ih,The Definitive Collection,"spotify:artist:0isDnZYMWbwDz7hzw0XRjt, spotify:artist:7u1mqP3ykglpCB2c1p1p5I","David Cassidy, The Partridge Family",1974,https://i.scdn.co/image/ab67616d0000b27309eba48d48ebd1ab53b85f19,1,4,167733,https://p.scdn.co/mp3-preview/c9072b56af4f6e22406964e428792645b3101733?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USAR19901027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,bubblegum pop",0.742,0.387,10.0,-13.822,1.0,0.0349,0.634,0.0,0.0424,0.878,113.045,4.0,,Arista,"P (P) 1974, 2000 Arista Records, Inc.",4625 +4626,spotify:track:41Za52zU5QKSgVg0CxWO68,Truly Madly Deeply,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:2FSVwM8ysmI2tXIPpBJbfs,Savage Garden,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,1997-03-04,https://i.scdn.co/image/ab67616d0000b2736829cf8da7c5706fc42a3852,1,5,277600,https://p.scdn.co/mp3-preview/1cba9835eaabeb9bb3e308ce2323777b20fa3718?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09700005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop rock",0.6,0.614,0.0,-6.132,1.0,0.0375,0.315,2.38e-05,0.0911,0.663,168.068,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P This Compilation ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",4626 +4627,spotify:track:5po2HCMZvJ0aPSxRRGKm3p,Substitute,spotify:artist:1Y9R6sacgLlWFGYFGK9M0P,Clout,spotify:album:7zRC8iLx8ixniN0rfJwdzc,Since We've Been Gone,spotify:artist:1Y9R6sacgLlWFGYFGK9M0P,Clout,2005,https://i.scdn.co/image/ab67616d0000b27375836de15d18f2fc114fcf1a,1,8,209186,https://p.scdn.co/mp3-preview/cc5699660aad56bb1d163394e2b9e270c1ab8117?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ZAC010500028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.703,0.726,4.0,-7.089,1.0,0.0245,0.0108,0.0,0.161,0.785,103.019,4.0,,Electromode,"C 2005 Electromode, P 2005 Electromode",4627 +4628,spotify:track:5pLgH1bCkBV3bbmvm0qvom,High Voltage,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:19AUoKWRAaQYrggVvdQnqq,High Voltage,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1976-05-14,https://i.scdn.co/image/ab67616d0000b273286a0837ff3424065a735e0a,1,9,254200,https://p.scdn.co/mp3-preview/8e131323802a44913e6e9d13c7cfe63be2d3025a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,AUAP07600013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.561,0.785,9.0,-4.973,1.0,0.0629,0.0282,0.451,0.0615,0.546,137.153,4.0,,Columbia,P (P) 1976 Australian Music Corporation Pty Ltd.,4628 +4629,spotify:track:6ouDN7H9yT30dxKSIDGapB,I Know a Place,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,spotify:album:5IhqVCU8v1xX3efFYl8dSP,Downtown - The Best of Petula Clark,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,1996-01-01,https://i.scdn.co/image/ab67616d0000b27377b2be898ac1ae1e3ffe3141,1,2,161640,https://p.scdn.co/mp3-preview/e412d88e73c374ec4706117ae90675aab39b8ca5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6500256,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,folk rock,merseybeat,rock-and-roll,rockabilly",0.493,0.76,4.0,-9.08,1.0,0.0608,0.714,9.51e-06,0.196,0.584,137.654,4.0,,Sanctuary Budget,"C © 1996 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1996 Sanctuary Records Group Ltd., a BMG Company",4629 +4630,spotify:track:6gpcs5eMhJwax4mIfKDYQk,Slide (feat. Frank Ocean & Migos),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:2h93pZq0e7k5yf4dywlkpM, spotify:artist:6oMuImdp5ZcFhWP0ESe6mG","Calvin Harris, Frank Ocean, Migos",spotify:album:1UIlzhqJLiA3f6OVw7QKn6,Slide (feat. Frank Ocean & Migos),spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2017-02-24,https://i.scdn.co/image/ab67616d0000b2731e439ac0ed08d612808f7122,1,1,230813,https://p.scdn.co/mp3-preview/16f9a0b74ce7aa75cfcfcd2bd928cda87ba11045?cid=9950ac751e34487dbbe027c4fd7f8e99,True,68,GBARL1700262,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,lgbtq+ hip hop,neo soul,atl hip hop,hip hop,pop rap,rap,southern hip hop,trap",0.736,0.795,1.0,-3.299,0.0,0.0545,0.498,1.21e-06,0.254,0.511,104.066,4.0,,Columbia,P (P) 2017 Sony Music Entertainment UK Limited,4630 +4631,spotify:track:1GYjMhOZ4sLd3xGvelcsi3,Adorn,spotify:artist:360IAlyVv4PCEVjgyMZrxK,Miguel,spotify:album:4c37f9SDnzZ4Sj9ZLF35r0,Kaleidoscope Dream,spotify:artist:360IAlyVv4PCEVjgyMZrxK,Miguel,2012-10-01,https://i.scdn.co/image/ab67616d0000b273c715538e42f5071202438755,1,1,193146,https://p.scdn.co/mp3-preview/026e82b4f5792e50f8a0aa0a53d7b8a46feeb235?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USRC11200647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,urban contemporary",0.625,0.576,11.0,-5.693,0.0,0.175,0.0543,4.07e-05,0.187,0.235,179.063,4.0,,ByStorm Entertainment/RCA Records,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",4631 +4632,spotify:track:3PjKoeIjpJVTN92y69NvD2,Hurricane,spotify:artist:0RaO9p4AomXaVUXzV8SPVW,Faker,spotify:album:2SHiEqr12OA7pbAAa4Qq7y,Addicted Romantic,spotify:artist:0RaO9p4AomXaVUXzV8SPVW,Faker,2005-01-01,https://i.scdn.co/image/ab67616d0000b273644868b30729e9bccadb84e5,1,9,199666,https://p.scdn.co/mp3-preview/0ec7e11732f43e7ffa7b26754b2f3298806dbc7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUEM00400223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.406,0.906,1.0,-2.073,0.0,0.0817,0.000344,0.0361,0.278,0.589,95.799,4.0,,Capitol Records,"C © 2005 EMI Recorded Music Australia Pty Ltd., P ℗ 2005 EMI Recorded Music Australia Pty Ltd.",4632 +4633,spotify:track:3qXrbGbHxebsNXtFXPerG4,Drive Away,spotify:artist:5Lc6SH04SI5XYjM2caZlS7,The Sundance Kids,spotify:album:3nAUpf0YIlM6dsjvu4mVjn,Fall Into Place (Standard),spotify:artist:5Lc6SH04SI5XYjM2caZlS7,The Sundance Kids,2009-09-04,https://i.scdn.co/image/ab67616d0000b2730dc0e2aa1e20f2689984f475,1,4,195760,https://p.scdn.co/mp3-preview/f93a475541f5bad32f461481abd21100d375155c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUWA00900276,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.486,0.766,4.0,-5.575,1.0,0.0362,0.000165,0.0,0.0878,0.256,77.502,4.0,,WM Australia,"C © 2009 Loud & Clear Entertainment Pty Limited Marketed and Distributed under exclusive licence by Warner Music Australia Pty Limited, P ℗ 2009 Loud & Clear Entertainment Pty Limited",4633 +4634,spotify:track:6YnUxW8CtOnI6mp3oh61Gr,April Sun In Cuba,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,spotify:album:32j7iaDRlYck1n1tFWtfxU,Sunshine To Rain,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,2006-01-01,https://i.scdn.co/image/ab67616d0000b27304d76a9789d2cfa63b2ea108,1,3,227373,https://p.scdn.co/mp3-preview/d0dbfdf989b353b61416afac5875ec3dda533a16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00620980,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,kiwi rock",0.743,0.779,1.0,-6.076,1.0,0.0325,0.232,2.07e-06,0.058,0.749,118.746,4.0,,Bloodlines,"C 2006 Bloodlines, P 2006 Bloodlines",4634 +4635,spotify:track:0ifSeVGUr7py5GggttDhXw,All About That Bass,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:2Gf7TGoOt6FyRi7p32OzUM,All About That Bass,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2014-06-30,https://i.scdn.co/image/ab67616d0000b273344ff7c990f123679535da32,1,1,188754,https://p.scdn.co/mp3-preview/511e5f2f35ae29c9b30b766dc4418b8c10d13020?cid=9950ac751e34487dbbe027c4fd7f8e99,True,57,USSM11401317,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop",0.811,0.879,9.0,-3.724,1.0,0.0514,0.0476,1.91e-06,0.109,0.962,134.064,4.0,,Epic,"P (P) 2014 Epic Records, a division of Sony Music Entertainment",4635 +4636,spotify:track:0VgKyMKRCGT4SKdqYJWzSk,I Couldn't Live Without Your Love,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,spotify:album:4oa2hZ1r8L8Egf9ec6ncCM,The Classic Collection,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,1997-01-01,https://i.scdn.co/image/ab67616d0000b27324178f04350f2f94a5b2736d,1,17,175272,https://p.scdn.co/mp3-preview/6815e5c7f64ccd90ff0d4811b04f7a9697c89bbc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAJE6600106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,folk rock,merseybeat,rock-and-roll,rockabilly",0.585,0.6,2.0,-7.804,1.0,0.0349,0.677,5.87e-06,0.677,0.377,126.964,4.0,,Sanctuary Budget,"C © 1997 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1997 Sanctuary Records Group Ltd., a BMG Company",4636 +4637,spotify:track:5kE33DBadQiJH6xVJh8vR5,Let Me Think About It - Ida Corr Vs Fedde Le Grand / Radio Edit,"spotify:artist:30ut8L4gmEz4vNr1zNhpbh, spotify:artist:7dc6hUwyuIhrZdh80eaCEE","Ida Corr, Fedde Le Grand",spotify:album:7aCT4jAFDlF5nVUYLW4mg2,Output,spotify:artist:7dc6hUwyuIhrZdh80eaCEE,Fedde Le Grand,2009-01-01,https://i.scdn.co/image/ab67616d0000b2736be7e5940243b457d8c41a95,1,15,150933,https://p.scdn.co/mp3-preview/9a19af1fb267c81bb4194add985d843fc87592b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DKUCA0700015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"scandipop,dutch house,edm,electro house,house,pop dance,progressive electro house,progressive house",0.779,0.731,0.0,-3.458,0.0,0.047,0.00059,0.0708,0.134,0.765,129.087,4.0,,Ministry Of Sound,"C © 2009 Flamingo Recordings, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd., P ℗ 2009 Flamingo Recordings, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd.",4637 +4638,spotify:track:3ZUALyBZfm4pRaMXMYRbbg,In My Mind,"spotify:artist:3v6Ji4uoWtKRkhuDUaxi9n, spotify:artist:1OAjDaKgg00KCUYqDe68un","Dynoro, Gigi D'Agostino",spotify:album:3jtOeny1Xh5fp6aSOHahe2,In My Mind,"spotify:artist:3v6Ji4uoWtKRkhuDUaxi9n, spotify:artist:1OAjDaKgg00KCUYqDe68un","Dynoro, Gigi D'Agostino",2018-06-08,https://i.scdn.co/image/ab67616d0000b273c1d25017774b9744920fad83,1,1,183366,https://p.scdn.co/mp3-preview/a4eae56650495ebc3897691cd3c14c9a40dd1df1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,QZ22B1859046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,eurodance,italo dance",0.687,0.75,6.0,-5.266,1.0,0.145,0.255,1.69e-05,0.151,0.133,125.898,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 B1 Recordings GmbH, a Sony Music Entertainment Company, under exclusive license to Neon Records, P ℗ 2018 B1 Recordings GmbH, a Sony Music Entertainment Company, under exclusive license to Neon Records",4638 +4639,spotify:track:3YVPpVJvJG2EauXurPA90F,Tell It to My Heart,spotify:artist:32lVGr0fSRGT6okLKHiP68,Taylor Dayne,spotify:album:2hlHv54WpTInFIRMk3Hwjk,Tell It to My Heart (Expanded Edition),spotify:artist:32lVGr0fSRGT6okLKHiP68,Taylor Dayne,1988-01-19,https://i.scdn.co/image/ab67616d0000b2734f7420eec423c20556744d7d,1,1,220880,https://p.scdn.co/mp3-preview/b76b2949107586ab377c3c84c89c9c919df61300?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USAR18700173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hi-nrg,new romantic,new wave pop,soft rock,synthpop",0.638,0.988,1.0,-5.042,1.0,0.0921,0.0302,1.16e-05,0.371,0.723,117.955,4.0,,Arista/Legacy,P This compilation (P) 2015 Arista Records LLC,4639 +4640,spotify:track:6ToFxXRBtl5TJFEyIoYK3f,Mirrors - Radio Edit,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:28GWVLkctSuSWQ1EUIxZ8m,Mirrors (Radio Edit),spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2013-02-11,https://i.scdn.co/image/ab67616d0000b273187d11964b2d17c5227bbcef,1,1,277306,https://p.scdn.co/mp3-preview/a91d5335fa3ba9c21cbb69a3915418bd6ba10346?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC11300246,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.578,0.6,8.0,-5.7,1.0,0.0455,0.144,0.0,0.426,0.646,76.999,4.0,,RCA Records Label,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",4640 +4641,spotify:track:16QN8cBubEq706vNtPpOME,Love So Soft,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:6GBu7GU6dztLYlZuUHiwA2,Meaning of Life,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2017-10-27,https://i.scdn.co/image/ab67616d0000b2731b808f1c7fff4f3e81f79523,1,2,172426,https://p.scdn.co/mp3-preview/a52c824160da1344b8d4bf34be06d7242cbf8ba6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT21703569,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.808,0.581,11.0,-5.43,1.0,0.07,0.0053,1.19e-05,0.0828,0.758,130.012,4.0,,Atlantic Records,"C © 2017 Kelly Clarkson under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2017 Kelly Clarkson under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4641 +4642,spotify:track:7rFNG5N6QnhsTW2aQADMEG,Selfish,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:36JKBe1pJrnrxPOFLCE0uj,HILDA,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2019-10-18,https://i.scdn.co/image/ab67616d0000b273fcab9ac564d8b668bcc35613,1,3,206066,https://p.scdn.co/mp3-preview/12fb5d00c763313d1dcbd6591e1c0d375f96c28b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUBM01900127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.718,0.744,6.0,-4.535,1.0,0.234,0.134,0.0,0.273,0.943,99.609,4.0,,Sony Music Entertainment,P (P) 2019 Sony Music Entertainment Australia Pty Ltd,4642 +4643,spotify:track:2kN05N1AQQplsgFweFAqYb,These Days,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:5lnQLEUiVDkLbFJHXHQu9m,Wasting Light,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2011-04-12,https://i.scdn.co/image/ab67616d0000b273cdac19bbaee5cc123edcc26f,1,6,298266,https://p.scdn.co/mp3-preview/3cb72ea43adfb7f92333a58ddc80c6681eda51a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USRW31100008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.531,0.664,2.0,-4.428,1.0,0.0304,0.000261,0.0,0.205,0.215,135.3,4.0,,RCA Records Label,"P (P) 2011 Roswell Records, Inc. under license to RCA Records, a unit of Sony Music Entertainment",4643 +4644,spotify:track:7kMGj4v3CAH026A4JImfhV,Oh Julie - Remastered Single Version,spotify:artist:0wi4yTYlGtEnbGo4ltZTib,Shakin' Stevens,spotify:album:3fi0yPXUa72eJAOQRN8W9R,Shakin' Stevens - The Collection,spotify:artist:0wi4yTYlGtEnbGo4ltZTib,Shakin' Stevens,2005-04-11,https://i.scdn.co/image/ab67616d0000b27311edcfff47b27a1a0a8e3c92,1,13,153760,https://p.scdn.co/mp3-preview/e4fb431b8e26f17733ee4ae47fe991b0d089c0ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBM0400166,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,rockabilly",0.478,0.994,0.0,-2.349,1.0,0.114,0.204,0.000702,0.177,0.814,160.205,4.0,,Epic,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (UK) LIMITED,4644 +4645,spotify:track:69XUpOpjzDKcfdxqZebGiI,"Independent Women, Pt. 1",spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,spotify:album:2HcjLD0ButtKsQYqzoyOx9,Survivor,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,2001-05-01,https://i.scdn.co/image/ab67616d0000b273163cdae7f1e2c82786a84e3e,1,1,221133,https://p.scdn.co/mp3-preview/35339a11f3ced04937c61fdca65ed874b1a3e5b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM10013276,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary",0.73,0.602,6.0,-3.782,0.0,0.206,0.362,3.69e-06,0.169,0.927,97.954,4.0,,Columbia,"P (P) 2000, 2001 Sony Music Entertainment Inc.",4645 +4646,spotify:track:5rEvuW4YhwobKwGL1HPrXA,Let Her Go,spotify:artist:0gadJ2b9A4SKsB1RFkBb66,Passenger,spotify:album:6WBDLlICqs6YmZPBQJKsKM,All the Little Lights (Deluxe Version),spotify:artist:0gadJ2b9A4SKsB1RFkBb66,Passenger,2013-11-29,https://i.scdn.co/image/ab67616d0000b2733e94984ffd2929be2df61582,1,2,252733,https://p.scdn.co/mp3-preview/e0faba1e76516cba5782ab915e948e8d901c61e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBMQN1100004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo mellow",0.479,0.545,7.0,-7.346,1.0,0.0688,0.365,0.0,0.0963,0.243,74.897,4.0,,Black Crow Records,"C 2013 Black Crow Records, P 2013 Black Crow Records",4646 +4647,spotify:track:0mkRjDV6wzXg9rFUL1BEW0,iYiYi (feat. Flo Rida),"spotify:artist:79Xp2rRN7wdsaTJgttdX3K, spotify:artist:0jnsk9HBra6NMjO2oANoPY","Cody Simpson, Flo Rida",spotify:album:4OFvKdVDW2iJBGbxZCqGad,4 U EP,spotify:artist:79Xp2rRN7wdsaTJgttdX3K,Cody Simpson,2010-12-20,https://i.scdn.co/image/ab67616d0000b273b62bb08bc41faa385fae2c6b,1,2,235800,https://p.scdn.co/mp3-preview/cfce2ddc6018372a2e5301c27f01c5bd9e065655?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USAT21001075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,post-teen pop,dance pop,miami hip hop,pop,pop rap",0.629,0.721,5.0,-4.299,1.0,0.0287,0.0395,0.0,0.349,0.787,159.951,4.0,,Atlantic Records,"C 2011 © 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4647 +4648,spotify:track:5DPpbYqJi4OfgnV8fz1JsQ,Twilight Zone,spotify:artist:1iTlOqIrZy8DlvCPJY2sjS,Golden Earring,spotify:album:6pZPC3Y5hoYgA13UfBm8wO,The Continuing Story Of Radar Love,spotify:artist:1iTlOqIrZy8DlvCPJY2sjS,Golden Earring,1989-01-01,https://i.scdn.co/image/ab67616d0000b2737c491c030ed522f857df9dea,1,12,474466,https://p.scdn.co/mp3-preview/421fee26519b44efff69a042d9e4b6766f61797c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USMC10110282,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dutch prog,dutch rock,nederpop",0.666,0.667,11.0,-9.486,0.0,0.0388,0.00394,0.000148,0.0733,0.558,118.556,4.0,,Geffen*,"C © 1989 Geffen Records, P This Compilation ℗ 1989 Geffen Records",4648 +4649,spotify:track:2nmaEzFZrSm2aMLtfJDzyG,Werewolves of London,spotify:artist:3mY9Ii0cL5SQxpOTAm8SHx,Warren Zevon,spotify:album:41u8E08e0jIP808qLi1GHB,A Quiet Normal Life: The Best of Warren Zevon,spotify:artist:3mY9Ii0cL5SQxpOTAm8SHx,Warren Zevon,1986-10-07,https://i.scdn.co/image/ab67616d0000b2731b68ea95d2884c556fe9ce4f,1,1,208173,https://p.scdn.co/mp3-preview/f7fd6838f8441f5ca60ff097c0769fed2724c2ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USEE19901101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,folk,folk rock,piano rock,roots rock,singer-songwriter",0.749,0.614,7.0,-10.594,1.0,0.0264,0.0372,0.00286,0.0603,0.878,103.868,4.0,,Rhino/Elektra,"C © 1986 Elektra/Asylum Records, P ℗ 1986 Elektra/Asylum Records",4649 +4650,spotify:track:1NaFFCePlPUpsxUGoi9h8t,Ordinary Angels - 2014 Remaster,spotify:artist:2qgHV12WsnwzHZGUB9nd9U,Frente!,spotify:album:6xiH0ZemrUXOxgR7xfLlIQ,Marvin The Album - 21st Anniversary Edition,spotify:artist:2qgHV12WsnwzHZGUB9nd9U,Frente!,1999-05-14,https://i.scdn.co/image/ab67616d0000b273b86523d34ec4636084b4974b,1,12,169680,https://p.scdn.co/mp3-preview/b3c893c4d48c7c26dfab4aa1dac1b8c6acbdc1ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUWA01400099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian alternative rock,0.782,0.754,9.0,-7.958,1.0,0.0626,0.0873,0.00942,0.139,0.789,96.985,4.0,,WM Australia,"C © 2014 Warner Music Australia Pty Ltd, P ℗ 2014 Warner Music Australia Pty Ltd",4650 +4651,spotify:track:0cGG2EouYCEEC3xfa0tDFV,Tainted Love,spotify:artist:6aq8T2RcspxVOGgMrTzjWc,Soft Cell,spotify:album:3KFWViJ1wIHAdOVLFTVzjD,Non-Stop Erotic Cabaret,spotify:artist:6aq8T2RcspxVOGgMrTzjWc,Soft Cell,1981,https://i.scdn.co/image/ab67616d0000b27349c982dae436bac27c336f45,1,2,153800,https://p.scdn.co/mp3-preview/03f13a169368253ffeb3a9ff37f69659e5c7d728?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBF088100017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop",0.5,0.501,0.0,-8.284,0.0,0.0376,0.462,0.0,0.26,0.623,144.438,4.0,,EMI,"C © 1996 Mercury Records Limited, P This Compilation ℗ 1996 Mercury Records Limited",4651 +4652,spotify:track:2ymeOsYijJz09LfKw3yM2x,Joy To The World,spotify:artist:4FAEZeJcsYYBkNq2D3KGTV,Three Dog Night,spotify:album:2v8XEhOPoKX7iVWq5mWWBM,Naturally,spotify:artist:4FAEZeJcsYYBkNq2D3KGTV,Three Dog Night,1970-01-01,https://i.scdn.co/image/ab67616d0000b2738036855102edddcdbe84127d,1,10,220573,https://p.scdn.co/mp3-preview/bbfe9df2f7657e4c6e52ee0945d66110cef8ca57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USMC17047804,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,mellow gold,soft rock",0.649,0.679,2.0,-12.515,1.0,0.0316,0.464,0.00121,0.339,0.971,126.867,4.0,,Geffen*,"C © 1989 MCA Records Inc., P ℗ 1970 UMG Recordings, Inc.",4652 +4653,spotify:track:5Tqqa2b9DOjXF6WLhjlrN0,Sweet Talk,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,spotify:album:5cu4tyy7iaY5faApxmEZM3,Sweet Talk,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,2014-11-18,https://i.scdn.co/image/ab67616d0000b273856cee29b114f0353c6cd5f7,1,1,212826,https://p.scdn.co/mp3-preview/114085c5cc573ba9fd4b9a16b0e5beeda372ac9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUBM01400681,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.696,0.719,11.0,-4.284,1.0,0.0396,0.012,0.000326,0.219,0.671,114.932,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,4653 +4654,spotify:track:1wHSxWBfPr3GO31y8KGrWe,Wish You Were Here - 2011 Remastered Version,spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,spotify:album:1x0uzT3ETlIYjPueTyNfnQ,Wish You Were Here [2011 - Remaster] (2011 Remastered Version),spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,1975-09-12,https://i.scdn.co/image/ab67616d0000b273502bbf975cb8d7537f206780,1,4,334743,https://p.scdn.co/mp3-preview/e3d046771206da9115d0a619ede2210b610dc9f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBN9Y1100088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,progressive rock,psychedelic rock,rock,symphonic rock",0.481,0.262,7.0,-15.73,1.0,0.0414,0.735,0.0114,0.832,0.375,122.883,4.0,,Pink Floyd Records,"C 2016 Pink Floyd Music Ltd., P 2016 Pink Floyd Music Ltd., marketed and distributed by Parlophone Records Ltd., a Warner Music Group Company",4654 +4655,spotify:track:4P9kOK2PafbamK95SJOCbO,You're in My Heart (The Final Acclaim),spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:2GmrcFfoRPSKmmSyh36Bu6,If We Fall in Love Tonight,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1996-11-12,https://i.scdn.co/image/ab67616d0000b2739b6cec855adacecc6a140f75,1,7,267906,https://p.scdn.co/mp3-preview/dc21a5e6aec27d51983f1a20ba06475316749a37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USWB19600842,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.554,0.293,9.0,-12.336,1.0,0.0341,0.632,0.0,0.13,0.354,103.293,4.0,,Warner Records,"C © 1996 Warner Records Inc., P ℗ 1996 Warner Records Inc.",4655 +4656,spotify:track:35eI7JN7aJ9lkCUgcPWn4h,Best Of You,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:02jqf49ws9bcTvXLPGtjbT,In Your Honour,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2005-06-14,https://i.scdn.co/image/ab67616d0000b273cd50e70c28814039f76b0d84,1,3,255626,https://p.scdn.co/mp3-preview/663c0b487fce5c988d695cba4c20916a56760bdb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRW30500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.372,0.943,1.0,-5.049,0.0,0.0752,0.000678,0.000125,0.171,0.39,129.8,4.0,,RCA Records Label,"P (P) 2005 Roswell Records, Inc.",4656 +4657,spotify:track:7ef4DlsgrMEH11cDZd32M6,One Kiss (with Dua Lipa),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:6M2wZ9GZgrQXHCFfjv46we","Calvin Harris, Dua Lipa",spotify:album:7GEzhoTiqcPYkOprWQu581,One Kiss (with Dua Lipa),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:6M2wZ9GZgrQXHCFfjv46we","Calvin Harris, Dua Lipa",2018-04-06,https://i.scdn.co/image/ab67616d0000b273d09f96d82310d4d77c14c108,1,1,214846,https://p.scdn.co/mp3-preview/0c09da1fe6f1da091c05057835e6be2312e2dc18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,GBARL1800368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,dance pop,pop,uk pop",0.791,0.862,9.0,-3.24,0.0,0.11,0.037,2.19e-05,0.0814,0.592,123.994,4.0,,Sony Music UK,P (P) 2018 Sony Music Entertainment UK Limited,4657 +4658,spotify:track:73vIOb4Q7YN6HeJTbscRx5,Miss You,"spotify:artist:6TLwD7HPWuiOzvXEa3oCNe, spotify:artist:3t5xRXzsuZmMDkQzgOX35S","Oliver Tree, Robin Schulz",spotify:album:32G4vFNwLJQjpzkOoGEUUo,Miss You,"spotify:artist:6TLwD7HPWuiOzvXEa3oCNe, spotify:artist:3t5xRXzsuZmMDkQzgOX35S","Oliver Tree, Robin Schulz",2022-08-05,https://i.scdn.co/image/ab67616d0000b2735b1bff1152ef6d402c9b75a8,1,1,206000,https://p.scdn.co/mp3-preview/44c504a7bb97d3ee67be1003326e5362044dce34?cid=9950ac751e34487dbbe027c4fd7f8e99,True,25,USAT22211992,spotify:user:bradnumber1,2023-07-05T22:57:12Z,"alternative hip hop,deep euro house,deep house,edm,german dance,pop dance,tropical house",0.587,0.742,6.0,-6.64,0.0,0.0529,0.0128,0.00107,0.146,0.199,145.007,4.0,,Atlantic Records,"C © 2022 Atlantic Recording Corporation, P ℗ 2022 Atlantic Recording Corporation",4658 +4659,spotify:track:1pe09cQOZT6dW92fe9Xc5X,Gotta Get Away,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:05KCErQSjTlYICS9KJJocl,Smash [Remastered],spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,1994-04-08,https://i.scdn.co/image/ab67616d0000b27326d75cba41fb3beceaefb0d4,1,4,232160,https://p.scdn.co/mp3-preview/6bdd04d86ef4cde0dbded3a16a728acb27dc12d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEP40710204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.552,0.919,4.0,-3.32,0.0,0.057,0.00426,2.53e-05,0.0794,0.688,132.764,4.0,,Epitaph,"C 2007 Epitaph, P 2007 Epitaph",4659 +4660,spotify:track:04UWtAIMwi67MG8uHwYqgK,Joey,spotify:artist:2ICSjfBpos9PxMhGhX25N2,Concrete Blonde,spotify:album:0Qny7PmxUlBMrw4xdeiHaU,Bloodletting,spotify:artist:2ICSjfBpos9PxMhGhX25N2,Concrete Blonde,1990-09-16,https://i.scdn.co/image/ab67616d0000b2738cdaba8fdcd659d7f18a1630,1,9,248959,https://p.scdn.co/mp3-preview/c309707ffc4ad3252bcccd98313bca7b2af0aa85?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USIR39000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,lilith,0.607,0.788,7.0,-5.326,1.0,0.0293,0.0151,0.0136,0.173,0.334,118.696,4.0,,CAPITOL CATALOG MKT (C92),"C © 1990 Capitol Records, LLC, P ℗ 2017 Capitol Records, LLC",4660 +4661,spotify:track:3SjS9Y86t8BiecD1Wq7r4o,How Could You,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,spotify:album:4qqrq2LYJYvKOV5Xrcajvp,Turning Point,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,2004-12-06,https://i.scdn.co/image/ab67616d0000b273c2248a5b79dededa74edfde0,1,5,236000,https://p.scdn.co/mp3-preview/f13d7692c5c268e32996abbd577e9a226a74a700?cid=9950ac751e34487dbbe027c4fd7f8e99,True,44,USJAY0400195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,southern hip hop,urban contemporary",0.843,0.48,11.0,-7.031,0.0,0.143,0.0468,0.0,0.081,0.743,122.005,4.0,,J Records,"P (P) 2004 J Records, a unit of BMG",4661 +4662,spotify:track:2HgTjAqxAlGiajHvwfYssX,Need Your Love,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,spotify:album:1ZJ4xpGek7G3i9HdHa5ShC,The Temper Trap,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,2012-05-18,https://i.scdn.co/image/ab67616d0000b2732bdaba3d7c25e73a208dc7a9,1,1,220640,https://p.scdn.co/mp3-preview/4964436b0111597e7f99ffd63e9366d02f5a0c73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01281150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern rock,shimmer pop",0.466,0.903,0.0,-4.325,1.0,0.071,0.00569,0.000156,0.112,0.244,169.273,4.0,,Liberation Records,"C 2012 Liberation Music, P 2012 Liberation Music",4662 +4663,spotify:track:7fBCWZgjkNsROz2b6IIOJL,Every Time You Cry (with Human Nature) - Remastered,"spotify:artist:1QxaPWG1POM8Ul6WwsHq4y, spotify:artist:72BTmmAO3QfETWlFjwjfJ1","John Farnham, Human Nature",spotify:album:1xN9jGFs73atuQ02PrazLf,Here And Now - The Best Of Human Nature,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,2001-10-30,https://i.scdn.co/image/ab67616d0000b273c26c16c6b599a919c482d01d,1,11,286560,https://p.scdn.co/mp3-preview/550376e8d219d8592ffbe5029e7278e5bf923aa0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUSM00100179,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,australian pop,australian rock,boy band",0.347,0.784,4.0,-4.202,1.0,0.0427,0.032,0.0,0.146,0.494,199.888,4.0,,Sony Music Entertainment,P (P) 2001 Sony Music Entertainment Australia Pty Ltd,4663 +4664,spotify:track:0jmdMkRc7bmnmF9TNRfxF5,Dedication To My Ex (Miss That),"spotify:artist:1Xfmvd48oOhEWkscWyEbh9, spotify:artist:74V3dE1a51skRkdII8y2C6, spotify:artist:55Aa2cqylxrFIXC767Z865","Lloyd, André 3000, Lil Wayne",spotify:album:0h9YfjL8ThHExpJcxHw6bj,King Of Hearts,spotify:artist:1Xfmvd48oOhEWkscWyEbh9,Lloyd,2011-01-01,https://i.scdn.co/image/ab67616d0000b273a2b8d098b518cf88c284085a,1,2,236146,https://p.scdn.co/mp3-preview/03a932afbdf9e36d7602158f883d0c4ab8bc3dfd?cid=9950ac751e34487dbbe027c4fd7f8e99,True,44,USUM71109709,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop rap,r&b,southern hip hop,trap,urban contemporary,atl hip hop,dirty south rap,hip hop,southern hip hop,hip hop,new orleans rap,pop rap,rap,trap",0.835,0.724,0.0,-4.624,1.0,0.057,0.0169,5.48e-06,0.0936,0.964,119.037,4.0,,Zone 4 Inc/Interscope,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",4664 +4665,spotify:track:2OuNgtXKeCSORKqdl0MxKk,Chasing Pavements,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:2YO1F9DHVEzXPriA1JHoOQ,19,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2008-01-28,https://i.scdn.co/image/ab67616d0000b2730a5d334a63fd4455ce83b38b,1,3,210506,https://p.scdn.co/mp3-preview/209e4b33acb8fd535c65ab403087a6c0c3dabc65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS0700574,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.614,0.47,5.0,-6.09,0.0,0.0255,0.291,0.0,0.111,0.329,80.045,4.0,,XL Recordings,"C 2008 XL Recordings Ltd., P 2008 XL Recordings Ltd.",4665 +4666,spotify:track:4lYTkvMkcNRj9uoSr8Zpws,Mercy,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:5k3xD5FmMQjKuqJgK4Qk4k,Mercy,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2016-08-18,https://i.scdn.co/image/ab67616d0000b273ce29d3846a24ff0e24f72a98,1,1,208733,https://p.scdn.co/mp3-preview/7814718df164c0b2e3543430b3482b4b6f6f5717?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71603531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.563,0.684,11.0,-4.916,0.0,0.0919,0.109,0.0,0.11,0.405,147.92,4.0,,Universal Music Group,"C (C) 2016 Island Records, a division of UMG Recordings, Inc., P (P) 2016 Island Records, a division of UMG Recordings, Inc.",4666 +4667,spotify:track:4z7maGZkAonDlXlwo8q69f,Da Ya Think I'm Sexy?,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:38tXOrjXUUfQWWV2DRwMio,Blondes Have More Fun,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1978-11-24,https://i.scdn.co/image/ab67616d0000b273d6806ddfc58bbaa0cb3e9fa5,1,1,331333,https://p.scdn.co/mp3-preview/d7c9823901cd954ea4ecdb90f920f422d7238714?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USWB10807926,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.715,0.689,2.0,-8.065,0.0,0.029,0.0143,0.000192,0.111,0.852,111.504,4.0,,Rhino/Warner Records,"C 2008 © 1978 WEA Records B.V., P 2008 ℗ 1978 WEA Records B.V. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",4667 +4668,spotify:track:6dpKQiQzZE2r9rZVWeLGom,Live My Life,"spotify:artist:698hF4vcwHwPy8ltmXermq, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Far East Movement, Justin Bieber",spotify:album:78ysj0YXG9moP8Gv9izzm4,Dirty Bass (Deluxe),spotify:artist:698hF4vcwHwPy8ltmXermq,Far East Movement,2012,https://i.scdn.co/image/ab67616d0000b27374bbe4c371b16d97f112f0ba,1,2,237106,https://p.scdn.co/mp3-preview/052ecc600ab6b713434fb432f8a1b5ab6b57d0a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71201831,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"asian american hip hop,dance pop,pop rap,canadian pop,pop",0.683,0.804,9.0,-6.592,0.0,0.0849,0.00289,0.0,0.0949,0.522,128.006,4.0,,Cherrytree Records/Kierszenbaum 33%,"C © 2013 Interscope Records, P ℗ 2013 Interscope Records",4668 +4669,spotify:track:4YD0lpe3vKfUQ8XCx7bY6a,I Kiss Your Lips,spotify:artist:7xqqOKmWS7KYlorTLXFMiI,Tokyo Ghetto Pussy,spotify:album:33222CFKu2WiAslsbyj2c1,Disco 2001,spotify:artist:7xqqOKmWS7KYlorTLXFMiI,Tokyo Ghetto Pussy,1996,https://i.scdn.co/image/ab67616d0000b273275596af943301cff5473a76,1,2,337173,https://p.scdn.co/mp3-preview/b2e8ceff6469d9ee76f1948abb94de722a128fcd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEMW61000136,spotify:user:bradnumber1,2022-10-03T11:14:16Z,german techno,0.633,0.836,7.0,-8.147,1.0,0.0449,0.00829,0.0266,0.171,0.328,164.956,4.0,,Allstar Music,"C 2011 Allstar Music Productions GmbH, P 1995 Sony Music Entertainment",4669 +4670,spotify:track:4x5WbFaTTCexxBKbUyfBcG,Four to the Floor,spotify:artist:0G8zjE6SsFTlbglCkU8pm3,Starsailor,spotify:album:5O6gC1eGSGRFXbALNjveVv,Silence Is Easy,spotify:artist:0G8zjE6SsFTlbglCkU8pm3,Starsailor,2003-09-15,https://i.scdn.co/image/ab67616d0000b273dd1e78b24a9636465430cf8a,1,9,233840,https://p.scdn.co/mp3-preview/277caf362a886bb17ea0030a8931916c5045e7aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAYE0301040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,lancashire indie,piano rock",0.533,0.832,1.0,-5.123,0.0,0.0273,0.0253,0.000125,0.0889,0.735,93.08,4.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",4670 +4671,spotify:track:13IjqfJVwLCZJr0QQzBIld,Bye Bye,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:2MPszrhxym9bdlFJUZhxqY,Bye Bye (Int'l ECD Maxi),spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2008-01-01,https://i.scdn.co/image/ab67616d0000b273b8888992fa6c787de20b2a1a,1,1,266506,https://p.scdn.co/mp3-preview/2f193d5877af9006e0822ffaaffceb91a26c382d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70809439,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.788,0.559,10.0,-5.953,1.0,0.0406,0.276,0.0,0.352,0.809,135.977,4.0,,Island Records,"C © 2008 Mariah Carey, P ℗ 2008 The Island Def Jam Music Group and Mariah Carey",4671 +4672,spotify:track:5g4BYABjxLYha5U88JFtbT,"Mary, Mary",spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:338yWfNJWW2SXxVfIdczUD,The Best of The Monkees,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,2008-07-01,https://i.scdn.co/image/ab67616d0000b2730b74e9fcbe76d8245535a207,1,8,135640,https://p.scdn.co/mp3-preview/61c4dd1ec4ba386018555609be4bce2d4c431473?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USRH10174183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.682,0.564,11.0,-8.011,1.0,0.0278,0.0315,0.0,0.19,0.934,126.895,4.0,,Rhino,"C © 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co., P ℗ 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co.",4672 +4673,spotify:track:63OFKbMaZSDZ4wtesuuq6f,Born To Be Wild,spotify:artist:1WRM9i067hd2ujxxi8FI3m,Steppenwolf,spotify:album:6GLHwIp1K3u1zdLOdPRG0W,Steppenwolf,spotify:artist:1WRM9i067hd2ujxxi8FI3m,Steppenwolf,1968,https://i.scdn.co/image/ab67616d0000b273ec7e2c5c7ecd29301f1c4b93,1,5,210373,https://p.scdn.co/mp3-preview/6c1f5377ae30c65577835dce021c23bcf198591f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USMC16846563,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,blues rock,classic canadian rock,classic rock,hard rock,proto-metal,rock,singer-songwriter,soft rock",0.438,0.71,2.0,-12.412,1.0,0.0919,0.262,0.537,0.221,0.53,145.928,4.0,,Geffen*,"C © 1980 Geffen Records, P ℗ 1980 Geffen Records",4673 +4674,spotify:track:3iOYMfhECtjETkMB2d9ODY,Choices,spotify:artist:4LlDtNr8qFwhrT8eL2wzH4,The Hoosiers,spotify:album:1xMuoFVsjlYibAHYVNVKpU,The Illusion Of Safety,spotify:artist:4LlDtNr8qFwhrT8eL2wzH4,The Hoosiers,2010-01-06,https://i.scdn.co/image/ab67616d0000b273d4eecfbbeb83155927bc721a,1,1,168546,https://p.scdn.co/mp3-preview/003a75cb5a0c3cadd65643e357bd5c8fbfbdb34e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1000713,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.543,0.857,1.0,-3.696,0.0,0.0799,0.0029,0.0,0.083,0.526,120.069,4.0,,Crab Race Ltd,"C (C) 2014 Crab Race Limited, P (P) 2014 Crab Race Limited",4674 +4675,spotify:track:0tY6WuVkmCth6YHl8xKrew,Silence Is Golden,spotify:artist:2VL8sLEJ6lHEwocjc1pN9w,The Tremeloes,spotify:album:13AsNmNDRM8UvAp7XSXZBV,Love Songs,spotify:artist:2VL8sLEJ6lHEwocjc1pN9w,The Tremeloes,1997-05-20,https://i.scdn.co/image/ab67616d0000b27343bd3fbd0468ed1356ca3188,1,1,190933,https://p.scdn.co/mp3-preview/720271aadd5a0eb9a64227f6c2e3086f05537b83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE0401413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,british invasion",0.436,0.565,4.0,-7.268,1.0,0.0294,0.0557,0.0,0.244,0.582,112.169,4.0,,Castle Communications,"C © 2003 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2003 Sanctuary Records Group Ltd., a BMG Company",4675 +4676,spotify:track:5nujrmhLynf4yMoMtj8AQF,Levitating (feat. DaBaby),"spotify:artist:6M2wZ9GZgrQXHCFfjv46we, spotify:artist:4r63FhuTkUYltbVAg5TQnk","Dua Lipa, DaBaby",spotify:album:5lKlFlReHOLShQKyRv6AL9,Future Nostalgia,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-03-27,https://i.scdn.co/image/ab67616d0000b2732172b607853fa89cefa2beb4,1,12,203064,https://p.scdn.co/mp3-preview/6af6db91dba9103cca41d6d5225f6fe120fcfcd3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,GBAHT2000942,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,hip hop,north carolina hip hop,pop rap,rap,trap",0.702,0.825,6.0,-3.787,0.0,0.0601,0.00883,0.0,0.0674,0.915,102.977,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, with the exception of track 1 & 2 2019 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",4676 +4677,spotify:track:1JeRFLoIpWHUgYogZCNUPY,What Would You Do?,spotify:artist:0LlPal5iJGcCWwZp8VefVs,City High,spotify:album:26rNzzSvgLNMhpVPpClpRV,20 #1's: Modern Hip-Hop,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-06-15,https://i.scdn.co/image/ab67616d0000b27305043a74b708ade6d006ba0c,1,20,175399,https://p.scdn.co/mp3-preview/812b4b2aca3e9787507e46f3506de0f634fc57d8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10110002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.738,0.776,7.0,-7.32,1.0,0.235,0.244,0.0,0.469,0.833,95.942,4.0,,Universal Music,"C © 2015 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2015 Universal Music Enterprises, a Division of UMG Recordings, Inc.",4677 +4678,spotify:track:2IFl6p0LoIfIZOn5IaxZOO,Sax,spotify:artist:37mtx80nMDETlbsq2eFCzc,Fleur East,spotify:album:1nFgJpjh2doGfve56uADlm,"Love, Sax & Flashbacks (Track by Track)",spotify:artist:37mtx80nMDETlbsq2eFCzc,Fleur East,2015-12-03,https://i.scdn.co/image/ab67616d0000b27340ab5a3c8e7e7c8f12cca2bb,1,2,236440,https://p.scdn.co/mp3-preview/6d74e1c14810c12a9ccea0c523c740ab98a262fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBHMU1500146,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"talent show,uk pop",0.728,0.892,4.0,-5.172,1.0,0.126,0.0144,0.0,0.469,0.826,117.976,4.0,,Syco Music,P (P) 2015 Simco Limited,4678 +4679,spotify:track:2MxvlboakUTeqVPamhUNcM,Don't You Wanna Feel,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:5o8IrQOjfnuWNpQtzvZEOP,The Sound Of Drums,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2003,https://i.scdn.co/image/ab67616d0000b273ebec5ce374c862d77327d614,1,5,197320,https://p.scdn.co/mp3-preview/eb137850996091c5e50e9c548f249f1634fb0525?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM00700634,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.408,0.723,9.0,-5.765,1.0,0.084,0.00023,1.87e-05,0.291,0.619,170.144,4.0,,Sony Music Entertainment,"P (P) 2011 Sony Music Entertainment Australia Pty Ltd. except tracks 2 & 9 (P) 2010 & (P) 2009, and tracks/(P) 2011 Sony Music Entertainment Australia Pty Ltd. except tracks 2 & 9 (P) 2010 & (P) 2009, and tracks 10, 13 & 14 (P) 2003 Vicious Recordings Pty Ltd Australia",4679 +4680,spotify:track:3NLrRZoMF0Lx6zTlYqeIo4,Here Without You,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,spotify:album:72olNArm75vOycSziqIX9Y,Away From The Sun,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,2002-11-12,https://i.scdn.co/image/ab67616d0000b27383c39b0d32eb4a2064e1e228,1,6,238733,https://p.scdn.co/mp3-preview/9b68307f4204ff0342561d75a6c48312abb3e0d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USUR10200764,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.557,0.533,10.0,-6.817,0.0,0.0252,0.0492,0.0,0.205,0.233,143.994,4.0,,Universal Records,"C © 2002 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2002 Universal Motown Records, a division of UMG Recordings, Inc.",4680 +4681,spotify:track:331l3xABO0HMr1Kkyh2LZq,I Don't Wanna Wait,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5Pwc4xIPtQLFEnJriah9YJ","David Guetta, OneRepublic",spotify:album:0wCLHkBRKcndhMQQpeo8Ji,I Don't Wanna Wait,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5Pwc4xIPtQLFEnJriah9YJ","David Guetta, OneRepublic",2024-04-05,https://i.scdn.co/image/ab67616d0000b2732f479a6c1825c1f29e0a3d49,1,1,149667,https://p.scdn.co/mp3-preview/4cb51b19221d76ecd319faec63c4221c96d7fdd0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,88,UKWLG2400013,spotify:user:bradnumber1,2024-06-25T09:28:48Z,"big room,dance pop,edm,pop,pop dance,piano rock,pop",0.681,0.714,1.0,-4.617,0.0,0.0309,0.0375,0.0,0.232,0.554,129.976,4.0,,Parlophone UK,"C Under license to Warner Music UK Limited, © 2024 What A DJ Ltd, P Under license to Warner Music UK Limited, ℗ 2024 What A DJ Ltd",4681 +4682,spotify:track:3twVQ7o8aw8SmAwqMcm1fZ,Beautiful Noise,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:3I8Dj6DKFx982tQKLfYdt9,In My Lifetime,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1996-10-29,https://i.scdn.co/image/ab67616d0000b273415b6f6af36223184c4e423f,2,18,193333,https://p.scdn.co/mp3-preview/88a6f26c4bc0bd77ba1ecb68aa7c89bdee409294?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USUG11400707,spotify:user:bradnumber1,2022-09-25T11:08:18Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.525,0.346,7.0,-15.218,1.0,0.0287,0.119,0.0,0.152,0.729,127.078,4.0,,Neil Diamond,"C © 1996 Neil Diamond, under exclusive license to Capitol Records LLC, P This Compilation ℗ 2014 Neil Diamond, under exclusive license to Capitol Records LLC",4682 +4683,spotify:track:7pP4JaoLc73z6JZDPUDSNy,Too Fake,spotify:artist:0UaUeprRolTdlmZVU4yzPS,Hockey,spotify:album:50PfmRc7RDMSw0EHlbXoSc,Mind Chaos,spotify:artist:0UaUeprRolTdlmZVU4yzPS,Hockey,2009-01-01,https://i.scdn.co/image/ab67616d0000b2733b99ba0cc12c42fc85d87a83,1,1,247413,https://p.scdn.co/mp3-preview/ab0a271a15f04a5fa069d8808452208cfc1a3fee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USCA20900064,spotify:user:bradnumber1,2021-08-08T09:26:31Z,portland indie,0.668,0.653,1.0,-7.752,1.0,0.056,0.026,7.3e-05,0.11,0.506,138.45,4.0,,Capitol Records,"C © 2009 Capitol Records, LLC, P ℗ 2009 Capitol Records, LLC",4683 +4684,spotify:track:3CFRrpmTnGYi0JC7QDIxFP,Don't Lose My Number - 2016 Remaster,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:7avlHipAwnKsxcXwC9Wpin,No Jacket Required (Deluxe Edition),spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1985-02-18,https://i.scdn.co/image/ab67616d0000b27357480be4ce4fd7659a25b7d9,1,6,288906,https://p.scdn.co/mp3-preview/a5f7d5274d1e0504b1056f572d7dbcb2c69e66d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USRH11600248,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.581,0.833,5.0,-5.03,0.0,0.0799,0.172,7.48e-05,0.0581,0.952,80.575,4.0,,Rhino,"C © 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company, P ℗ 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company",4684 +4685,spotify:track:6Udg88zGCFc2xA9M4EavzH,My Cherie Amour,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:5LkcwHaOv2jNRuC7cGbnoF,My Cherie Amour,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1969-08-01,https://i.scdn.co/image/ab67616d0000b273dd098bd4e707b3299a94a35d,1,1,173306,https://p.scdn.co/mp3-preview/453cfd07e0367eb028e37e382c4f3dc38848d746?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18500078,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.57,0.523,6.0,-11.052,1.0,0.0277,0.282,2.69e-06,0.248,0.508,101.137,4.0,,Universal Music Group,"C © 1989 The Motown Record Company LP, P ℗ 1969 The Motown Record Company LP",4685 +4686,spotify:track:63ORXJXw7BvMJfabDND9di,Angel of the Morning,spotify:artist:5Ao1vYvPBQUjsfPbPHQPhZ,Merrilee Rush,spotify:album:2OsXziDLBhFZ5PrvWgEW9o,Angel of the Morning,spotify:artist:5Ao1vYvPBQUjsfPbPHQPhZ,Merrilee Rush,2017-11-10,https://i.scdn.co/image/ab67616d0000b273eaf442ddaa51aff694c4dbb8,1,1,188207,https://p.scdn.co/mp3-preview/0952ea40f96cc7c4aec4ce4edc8b959722f35c59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,US6X81700034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.512,0.165,8.0,-12.401,1.0,0.0261,0.526,0.0,0.161,0.332,81.059,4.0,,Pacific North West,C (C) 2017 Pacific North West,4686 +4687,spotify:track:4Y7XAxTANhu3lmnLAzhWJW,Fireball (feat. John Ryan),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:3s73tswJycj6HTBNNN393z","Pitbull, John Ryan",spotify:album:4EUf4YyNjuXypWY6W5wEDm,Globalization,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2014-11-21,https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7,1,3,236200,https://p.scdn.co/mp3-preview/35405481ffdcf06063ceb15cc7943e772e2f2e86?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USRC11401783,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop",0.761,0.933,10.0,-5.38,1.0,0.056,0.0908,8.53e-05,0.0607,0.836,122.959,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2014 RCA Records, a division of Sony Music Entertainment",4687 +4688,spotify:track:2ZQx5u9vsLKzhJFfLecxyG,The Writing on the Wall (Rerecorded),spotify:artist:0BNxfP4DUsUc29iR4LjF3m,Adam Wade,spotify:album:2Ab5wh7bQCKhwPl4PtfDLX,His Very Best (Rerecorded Version),spotify:artist:0BNxfP4DUsUc29iR4LjF3m,Adam Wade,2008-06-09,https://i.scdn.co/image/ab67616d0000b273fb29fd1cdac2ee154f6fe514,1,2,151640,https://p.scdn.co/mp3-preview/e4f00b8b44e7a6626f97a7d856c214c0bea7aefd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USDEI7902657,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.666,0.522,1.0,-7.842,1.0,0.0466,0.319,0.0,0.0636,0.629,120.903,4.0,,K-Tel,"C 2008 K-tel, P 2008 K-tel",4688 +4689,spotify:track:5mkGfmJGFZpwK9nA5amOhv,Sex & Candy,spotify:artist:7AQzXO3NPNQsI7oNu5rC3r,Marcy Playground,spotify:album:5dR0fhE3oveLRSUMMQ3oRB,Marcy Playground,spotify:artist:7AQzXO3NPNQsI7oNu5rC3r,Marcy Playground,1997-01-01,https://i.scdn.co/image/ab67616d0000b27337d1e5c1ca98ce1ecd754d04,1,2,173493,https://p.scdn.co/mp3-preview/86d9c0d94b7aaa5710bc4d05f3d5b21e30dae50c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USEM39600079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,pop rock,post-grunge",0.664,0.558,2.0,-9.159,1.0,0.0257,0.238,0.0,0.106,0.64,80.556,4.0,,Capitol Records,"C © 1997 Capitol Catalog, P ℗ 1997 Capitol Catalog",4689 +4690,spotify:track:5I1T3D3uYdTQJCfon5xNtR,Hey Paula,spotify:artist:2pycVt1qR9u8bKdb4oLI98,Paul & Paula,spotify:album:51JeG1EArx0LFpzoaHvVN4,Hey Paula,spotify:artist:2pycVt1qR9u8bKdb4oLI98,Paul & Paula,2014-03-07,https://i.scdn.co/image/ab67616d0000b273da4514062404081ae1db47b3,1,1,149237,https://p.scdn.co/mp3-preview/4f4d88f9080525b726baa2a68288678e2d0684c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,QMDA71491614,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep adult standards,doo-wop,merseybeat,rock-and-roll",0.478,0.336,7.0,-11.145,1.0,0.0285,0.838,0.00336,0.139,0.58,108.975,3.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,4690 +4691,spotify:track:4OMv0O6o3tJka9Y8zw2sk5,When The River Runs Dry,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,spotify:album:0kKLmR8xFi2mg4NkOL70y8,Ghost Nation,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,1989-01-01,https://i.scdn.co/image/ab67616d0000b273a2bfb9e9b3648ef67f468016,1,1,302266,https://p.scdn.co/mp3-preview/168c2ea9958cfa50e8d8f506ab50a6e2e25f1d5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00508610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.667,0.829,1.0,-3.829,0.0,0.0308,0.0244,0.019,0.0651,0.94,127.286,4.0,,Bloodlines,"C 1989 Bloodlines, P 1989 Bloodlines",4691 +4692,spotify:track:3TCauNPqFiniaYHBvEVoHG,Beautiful,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:2USigX9DhGuAini71XZEEK,Stripped,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2002-07-19,https://i.scdn.co/image/ab67616d0000b2737cd872c7701c4737b2f81d87,1,11,238560,https://p.scdn.co/mp3-preview/c0187def7753b97d1ff388ef4cfb6078da0d7481?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USRC10201067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.456,0.573,5.0,-3.866,0.0,0.0275,0.578,3.05e-06,0.114,0.0992,76.19,4.0,,RCA Records Label,P (P) 2002 Sony Music Entertainment,4692 +4693,spotify:track:2y5aJvzXhHPA94U5GFAcXe,I Don’t Wanna Live Forever (Fifty Shades Darker),"spotify:artist:5ZsFI1h6hIdQRw2ti0hz81, spotify:artist:06HL4z0CvFAxyc27GXpf02","ZAYN, Taylor Swift",spotify:album:5VML6S956h4YfoYPooqLEi,Fifty Shades Darker (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-02-10,https://i.scdn.co/image/ab67616d0000b2735997605214d568d73fd365c2,1,1,245653,https://p.scdn.co/mp3-preview/21ef895ef69c7267bab26ae7b8a028f5b7276cda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USQ4E1602586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop,pop",0.735,0.443,0.0,-8.432,1.0,0.0556,0.0601,1.91e-05,0.213,0.107,117.968,4.0,,Fifty Shades Darker,"C © 2017 Universal Studios and Republic Records, a division of UMG Recordings, Inc., P This Compilation ℗ 2017 Universal Studios and Republic Records, a division of UMG Recordings, Inc.",4693 +4694,spotify:track:1uPrIHgYztXSkkcts9jet8,She Bangs - English Version,spotify:artist:7slfeZO9LsJbWgpkIoXBUJ,Ricky Martin,spotify:album:3zI9R2ktXKRwcPpZH1zpPe,Sound Loaded,spotify:artist:7slfeZO9LsJbWgpkIoXBUJ,Ricky Martin,2000,https://i.scdn.co/image/ab67616d0000b2737067e13923911540f8bb7218,1,1,280626,https://p.scdn.co/mp3-preview/544ce8f1e66476d1e6de3cd25b33162f98b5656c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,NLB630000023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,mexican pop,puerto rican pop",0.63,0.95,1.0,-4.012,1.0,0.0806,0.000915,6.51e-06,0.373,0.858,143.866,4.0,,Columbia,P (P) 2000 Sony Music Entertainment (Holland) B.V.,4694 +4695,spotify:track:0zjORbo98bRxMmyS3wzeKW,Don't Give Up,"spotify:artist:5GxyeQagayzZOg4UwffQlD, spotify:artist:3Z02hBLubJxuFJfhacLSDc","Chicane, Bryan Adams",spotify:album:44vqzi1IjdNLJ6AtkTuzIh,Twenty,spotify:artist:5GxyeQagayzZOg4UwffQlD,Chicane,2016-07-29,https://i.scdn.co/image/ab67616d0000b273564be16de50a667fe552dc87,2,5,210786,https://p.scdn.co/mp3-preview/5ec0c392707feb89ed87f135a411bf0c6b6a2a77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBRDU0800040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"trance,canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.644,0.719,10.0,-9.635,0.0,0.0415,0.00143,0.517,0.0839,0.531,132.011,4.0,,Armada Music Albums,"C 2016 Armada Music B.V. under exclusive license from Enzo Recordings Limited, P 2016 Armada Music B.V. under exclusive license from Hidden Man Music Ltd",4695 +4696,spotify:track:2o9gl4YG0YQ1HaSVsUiFoU,You're Such a Good Looking Woman,spotify:artist:3sebqZKFZ8aJsgQu4YaKQh,Joe Dolan,spotify:album:44n6n12uSkozxlbWPB3dxP,The Best of Joe Dolan,spotify:artist:3sebqZKFZ8aJsgQu4YaKQh,Joe Dolan,1993-09-13,https://i.scdn.co/image/ab67616d0000b273d8d02deeb99c6c6ad622ca5f,1,3,175306,https://p.scdn.co/mp3-preview/3015c4b8aea03af9a1d6fbbea78667bddb36dba0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE7001072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.438,0.654,2.0,-10.504,1.0,0.0524,0.00826,0.000142,0.173,0.918,96.509,4.0,,Sanctuary Records,"C © 1997 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1997 Sanctuary Records Group Ltd., a BMG Company",4696 +4697,spotify:track:2hZ6hSyXaAIqnwqUfiiL9X,Palisades Park,spotify:artist:1ffNa7yLg0ncUpBm5P03pm,Freddy Cannon,spotify:album:2ro1YGQ0NLPSVtUv7Kryta,The EP Collection,spotify:artist:1ffNa7yLg0ncUpBm5P03pm,Freddy Cannon,1999-08-11,https://i.scdn.co/image/ab67616d0000b273d88fe34afd2950a18cc2409e,1,21,113840,https://p.scdn.co/mp3-preview/d566ce15d223161607fcb2281cf35dea38e59693?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,GBVVQ1302059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic garage rock,doo-wop,merseybeat,rhythm and blues,rock-and-roll,rockabilly,surf music",0.504,0.807,1.0,-4.949,1.0,0.0365,0.333,9.45e-06,0.185,0.952,166.103,4.0,,See For Miles,"C 1999 See For Miles Records Ltd, P 1999 See For Miles Records Ltd",4697 +4698,spotify:track:75SH7qKifZ0Mzl4UFmps31,Power And The Passion - Remastered Version,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:1iWFOvjt1FQfkMJrZxtwiF,"10,9,8,7,6,5,4,3,2,1",spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1982-11-22,https://i.scdn.co/image/ab67616d0000b273c2291f09e7181e3ec0910977,1,7,339400,https://p.scdn.co/mp3-preview/168e59b0e23cca0ae2712b7a1750bae78043ebc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUBM00800387,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.779,0.737,4.0,-5.568,1.0,0.0847,0.0491,0.00593,0.238,0.874,153.389,4.0,,Sony BMG Music Entertainment,P (P) 2008 Sony BMG Music Entertainment (Australia) Pty Limited,4698 +4699,spotify:track:07KHJvlYBeQVqrmifTEqEp,Dream On,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,spotify:album:0YlgzYfI3a1OrGBBN0wWTG,The Essential Aerosmith,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,2011-09-13,https://i.scdn.co/image/ab67616d0000b273a7af122cd50575f63a156586,1,2,265093,https://p.scdn.co/mp3-preview/b56a69c9cddc7358e940daa656a8dd5874e5f58f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10207880,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.412,0.528,1.0,-6.613,1.0,0.0259,0.298,5.03e-05,0.332,0.175,79.962,4.0,,Columbia/Legacy,P This compilation (P) 2011 Sony Music Entertainment,4699 +4700,spotify:track:6g3kvt7e2oocO9UWAJ5qcR,Sunsets,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:20NuHYF4fcLXgQcqkjq9rI,Footprints: The Best of Powderfinger 2001 - 2011,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b27329c8f244b0044e3aaac83927,1,4,230626,https://p.scdn.co/mp3-preview/aaf64c78cb80827944cb59a6c0231ed0afb5db5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00330026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.263,0.834,2.0,-4.096,1.0,0.0405,1.17e-05,0.0481,0.0818,0.706,167.433,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P This Compilation ℗ 2011 Universal Music Australia Pty Ltd.",4700 +4701,spotify:track:2MuOQdl7uyEteKYCQtG4XE,I Said Hi,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:6XzwQObXzn3JgzuOcIAgUQ,I Said Hi,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2018-04-11,https://i.scdn.co/image/ab67616d0000b2731ce9087cfd83aa9d2d1fc538,1,1,168664,https://p.scdn.co/mp3-preview/96b61a9f1e17e6d8fa3a49b5d60d6773d5b03a5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM01800110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.317,0.86,6.0,-3.798,1.0,0.132,0.00753,0.0,0.0554,0.352,72.101,4.0,,Wonderlick,P (P) 2018 Amy Shark under exclusive license to the Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd.,4701 +4702,spotify:track:32DGGj6KlNuBr6WaqRxpxi,How Long,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:4dVUvKA6YlFJvIKInOBDcu,How Long,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2017-10-05,https://i.scdn.co/image/ab67616d0000b273872353e715cccea67fe3de91,1,1,198237,https://p.scdn.co/mp3-preview/f7c09279fe91c88bb8a55062fbf368ec1087aeba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21702278,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop",0.849,0.581,1.0,-5.243,0.0,0.0767,0.189,3.61e-06,0.0805,0.779,110.008,4.0,,Artist Partner,"C 2017 Artist Partner Group, Inc. for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P 2017 Artist Partner Group, Inc. for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",4702 +4703,spotify:track:6ft4hAq6yde8jPZY2i5zLr,Paradise (feat. Dermot Kennedy),"spotify:artist:0xRXCcSX89eobfrshSVdyu, spotify:artist:5KNNVgR6LBIABRIomyCwKJ","MEDUZA, Dermot Kennedy",spotify:album:15sy3XQFShOFiDpKoxByyA,Paradise,"spotify:artist:0xRXCcSX89eobfrshSVdyu, spotify:artist:5KNNVgR6LBIABRIomyCwKJ","MEDUZA, Dermot Kennedy",2020-10-30,https://i.scdn.co/image/ab67616d0000b273b6567be9f8b996a2b5f9b7fa,1,1,167903,https://p.scdn.co/mp3-preview/66a59d261f11b44de034bebb89360abad0c389d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBUM72005075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,pop house,uk dance,folk-pop,irish pop,uk pop",0.632,0.595,8.0,-7.644,0.0,0.0401,0.0689,0.0,0.209,0.435,124.114,4.0,,Universal-Island Records Ltd.,"C © 2020 Secondo Piano SRL, under exclusive licence to Universal Music Operations Limited, P ℗ 2020 Secondo Piano SRL, under exclusive licence to Universal Music Operations Limited",4703 +4704,spotify:track:2fP9aII1LkmZZmzdAiuNVz,Won't Forget You,"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:0Cs47vvRsPgEfliBU9KDiB, spotify:artist:7hssUdpvtY5oiARaUDgFZ3","Jax Jones, D.O.D, Ina Wroldsen",spotify:album:2b2p2llc051aP6YlPG5AnK,Won't Forget You,"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:0Cs47vvRsPgEfliBU9KDiB, spotify:artist:7hssUdpvtY5oiARaUDgFZ3","Jax Jones, D.O.D, Ina Wroldsen",2023-09-29,https://i.scdn.co/image/ab67616d0000b273cb23b61f174de4ff29600f36,1,1,153817,https://p.scdn.co/mp3-preview/b379ad38815eda16ec01a88034bdf7b2debfaa3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBUM72308250,spotify:user:bradnumber1,2023-11-23T07:08:25Z,"dance pop,edm,house,pop dance,uk dance,electro house,house,pop dance,uk dance,norwegian pop",0.663,0.956,0.0,-3.373,0.0,0.0495,0.0556,0.00129,0.0795,0.433,136.039,4.0,,Polydor Records,"C © 2023 Universal Music Operations Limited, P ℗ 2023 Universal Music Operations Limited",4704 +4705,spotify:track:22vgEDb5hykfaTwLuskFGD,Sucker,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,spotify:album:1Uf67JAtkVWfdydzFFqNF2,Happiness Begins,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,2019-06-07,https://i.scdn.co/image/ab67616d0000b273de1a3a5eaa0c75bb18e7b597,1,1,181026,https://p.scdn.co/mp3-preview/7a486bf71e7c934be7b84f145bf8abf8303143db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USUG11900515,spotify:user:bradnumber1,2021-11-11T04:12:51Z,"boy band,pop",0.842,0.734,1.0,-5.065,0.0,0.0588,0.0427,0.0,0.106,0.952,137.958,4.0,,Jonas Brothers Recording,"C © 2019 Jonas Brothers Recording, Limited Liability Company, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Jonas Brothers Recording, Limited Liability Company, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",4705 +4706,spotify:track:4VP8QiCeaZq8BeTIUrMQOG,No You Girls,spotify:artist:0XNa1vTidXlvJ2gHSsRi4A,Franz Ferdinand,spotify:album:6ppF24fU5pqbPrPuK5zVnS,Tonight,spotify:artist:0XNa1vTidXlvJ2gHSsRi4A,Franz Ferdinand,2009-01-27,https://i.scdn.co/image/ab67616d0000b273e58d58919ffc7451cf4a6b56,1,3,223786,https://p.scdn.co/mp3-preview/b48d97574dce71d594a541f04acf119c30dfb0df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBCEL0800926,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,indie rock,modern rock,rock,scottish rock",0.677,0.916,2.0,-4.102,0.0,0.0296,0.0086,7.68e-05,0.0967,0.878,104.78,4.0,,Domino Recording Co,"C 2009 Domino Recording Co Ltd, P 2009 Domino Recording Co Ltd",4706 +4707,spotify:track:0S2cMsSo3KgOQF8QdxgYrk,Layla,"spotify:artist:2rc78XDH9zuJP6bm78lU8Z, spotify:artist:6PAt558ZEZl0DmdXlnjMgD","Derek & The Dominos, Eric Clapton",spotify:album:3VQ8cDODpk6DOheNKugffg,The Cream Of Clapton,"spotify:artist:6PAt558ZEZl0DmdXlnjMgD, spotify:artist:74oJ4qxwOZvX6oSsu1DGnw, spotify:artist:2rc78XDH9zuJP6bm78lU8Z","Eric Clapton, Cream, Derek & The Dominos",1995-03-07,https://i.scdn.co/image/ab67616d0000b2739729cc8f76828c0d92cf17d3,1,1,433106,https://p.scdn.co/mp3-preview/8563d016ae70ed290ba446194adbe39f0cbf3cdb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057090038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,classic rock,country rock,electric blues,folk rock,hard rock,mellow gold,psychedelic rock,rock,singer-songwriter,album rock,blues rock,classic rock,electric blues,mellow gold,rock,singer-songwriter,soft rock",0.415,0.653,5.0,-11.787,1.0,0.054,0.475,0.469,0.301,0.234,114.363,4.0,,Universal Music Group,"C © 1994 Universal International Music B.V., P ℗ 1994 Universal International Music B.V.",4707 +4708,spotify:track:1Bk4EBm8pg5BXhPHbxILSd,Moments (feat. Gavin James),"spotify:artist:1xSSjJrKTO2ZNPU81uLtmI, spotify:artist:25tMQOrIU4LlUo6Sv8v5SE","Bliss n Eso, Gavin James",spotify:album:2pl3YWa3HJgELCI7C8f73f,Moments (feat. Gavin James),spotify:artist:1xSSjJrKTO2ZNPU81uLtmI,Bliss n Eso,2017-03-28,https://i.scdn.co/image/ab67616d0000b273074576f40dcd4896300286b3,1,1,237613,https://p.scdn.co/mp3-preview/59a9fdedeb4f77901703768943b74fc5afc722e6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,AULI01609090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,irish pop",0.661,0.725,8.0,-7.183,1.0,0.295,0.388,0.0,0.0993,0.311,82.194,4.0,,ILLUSIVE,"C 2017 Illusive, P 2017 Illusive",4708 +4709,spotify:track:5k68G0l4XbYskcczLtgPLs,Hide U,spotify:artist:5squ8uM6fhMQY71t9xobJC,Kosheen,spotify:album:4BZb4Yb4GJyYlLCBrsXaRS,Resist,spotify:artist:5squ8uM6fhMQY71t9xobJC,Kosheen,2001-07-02,https://i.scdn.co/image/ab67616d0000b273d6f76ddb447ef984b0abf33d,1,2,251466,https://p.scdn.co/mp3-preview/60e61d3f8dbebb327d8785e38176eddbad0f4b79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAZG0010102,spotify:user:bradnumber1,2021-11-20T11:15:20Z,"big beat,trip hop",0.67,0.672,8.0,-5.22,1.0,0.0566,0.0129,0.0782,0.111,0.329,169.991,4.0,,Arista,P (P) Moksha Recordings Ltd 2001,4709 +4710,spotify:track:4yLvWkiGacPp3BAOSxiiHf,Sounds Of Then (This Is Australia),spotify:artist:3CDzOX9D1buMRHeTNFHXMm,GANGgajang,spotify:album:1CnWPTs4PtojKci9nIZpAR,GANGgajang,spotify:artist:3CDzOX9D1buMRHeTNFHXMm,GANGgajang,1985-01-01,https://i.scdn.co/image/ab67616d0000b27341b01eb810ce63a9a6e2588c,1,2,231991,https://p.scdn.co/mp3-preview/2f5f70738834a8740bbdbc7bb0562896e39c7e71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,AUIS20700002,spotify:user:bradnumber1,2021-12-01T04:22:33Z,australian rock,0.701,0.696,11.0,-11.313,0.0,0.0276,0.0266,0.0354,0.275,0.922,130.294,4.0,,Universal Music Australia (Distribution),"C © 2021 Gajang Productions, P ℗ 2021 Gajang Productions",4710 +4711,spotify:track:7nXZCcFAy1oCKQG2SqLszv,We've Only Just Begun,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,spotify:album:5z8MFnoVUIfVo6MQW0uIul,Close To You,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,1970-01-01,https://i.scdn.co/image/ab67616d0000b273f33f1738a2764489750e3535,1,1,184426,https://p.scdn.co/mp3-preview/617d576f9d2cf6652a679c8123a04d7a422214f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USAM17000368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock",0.373,0.287,9.0,-13.461,1.0,0.0306,0.749,9.41e-06,0.102,0.317,86.467,4.0,,UMC (Universal Music Catalogue),"C © 1970 A&M Records, P ℗ 1970 UMG Recordings, Inc.",4711 +4712,spotify:track:5TM2eqdzfWPHklI7YnBmsD,Blister in the Sun - 2002 Remastered Version,spotify:artist:0rpMdBzQXf7aYRnu5fDBJy,Violent Femmes,spotify:album:2G9onFLGqlMJd1ThYf0vIB,Violent Femmes,spotify:artist:0rpMdBzQXf7aYRnu5fDBJy,Violent Femmes,1983,https://i.scdn.co/image/ab67616d0000b273e189ca336471c85cf01d1635,1,1,144333,https://p.scdn.co/mp3-preview/a2bddde0266df507b9923288c5e37ff6bd00e87b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRH10900138,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic punk,alternative rock,punk",0.701,0.261,0.0,-19.846,1.0,0.0938,0.219,0.0,0.0821,0.89,97.042,4.0,,Concord Music Group,"C 1983 Concord Music Group, Inc., P 1983 Concord Music Group, Inc.",4712 +4713,spotify:track:2PblW8OleBJvl2DPRsWGha,When You Look At Me - Radio Edit,spotify:artist:4eAOcbAXIF4BmbN6E1QIlw,Christina Milian,spotify:album:7wToXNzrsnCiEbH1OGrDRW,Christina Milian,spotify:artist:4eAOcbAXIF4BmbN6E1QIlw,Christina Milian,2001-01-01,https://i.scdn.co/image/ab67616d0000b273d7068ffa74371ffbedf9dfe7,1,3,222800,https://p.scdn.co/mp3-preview/b8e5da0a07e60bec54e447277640b05f7aeaaf8c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20110361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,r&b,urban contemporary",0.963,0.835,3.0,-3.394,0.0,0.137,0.08,0.000217,0.0774,0.852,108.976,4.0,,Island Mercury,"C © 2001 The Island Def Jam Music Group, P ℗ 2001 The Island Def Jam Music Group",4713 +4714,spotify:track:1AIGp3gpj1NXJvh3engmUQ,Smokin' in the Boy's Room,spotify:artist:67SxctqWYOGe8lthWjTDwu,Brownsville Station,spotify:album:0sOT2G3ov21Lc8t5UNEoi3,Yeah! (US Internet Release),spotify:artist:67SxctqWYOGe8lthWjTDwu,Brownsville Station,1973,https://i.scdn.co/image/ab67616d0000b273aea0152947566e511ba178be,1,10,176453,https://p.scdn.co/mp3-preview/073000bcb15a4060cbf32a1340a2768124a2c934?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USAT20107576,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,michigan indie,southern rock",0.575,0.756,2.0,-9.414,1.0,0.0544,0.735,0.0401,0.0755,0.844,127.434,4.0,,Rhino Atlantic,"C © 2004 Atlantic Recording Corp. Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Marketed by Warner Strategic Marketing",4714 +4715,spotify:track:7EbpUdQ4nQ5VnnFlZjvqYl,New Divide,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:6LmnONweGRT8w2vLwkl5tk,Iridescent,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2011-05-27,https://i.scdn.co/image/ab67616d0000b27370c65c7b3a8addf368dae274,1,2,268613,https://p.scdn.co/mp3-preview/49571b8245b3d660c3095f302cbdbfc974a6319b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USWB10901893,spotify:user:bradnumber1,2023-05-01T11:12:55Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.492,0.808,5.0,-3.365,0.0,0.0362,0.000235,0.0,0.0983,0.38,117.972,4.0,,Warner Records,"C © 2011 Motion Picture Artwork and Copyright C2011 PARAMOUNT PICTURES. All rights reserved. HASBRO, TRANSFORMERS and all related characters are trademarks of HASBRO. C2011 HASBRO. C2011 Warner Records Inc., P ℗ 2011, 2009, 2007 Warner Records Inc.",4715 +4716,spotify:track:1YRjRHdl0aEtzHEn1uGi8k,What I Did for Love (feat. Emeli Sandé),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:7sfgqEdoeBTjd8lQsPT3Cy","David Guetta, Emeli Sandé",spotify:album:77UW17CZFyCaRLHdHeofZu,Listen,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2014-11-10,https://i.scdn.co/image/ab67616d0000b2733862d62a50dc6b928651bdeb,1,2,207200,https://p.scdn.co/mp3-preview/3d7cdc44829245cff3cc5b197cbe60d3453a82ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GB28K1400044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,r&b,talent show,uk pop",0.494,0.721,2.0,-4.855,1.0,0.0416,0.107,0.0,0.119,0.356,128.1,4.0,,Parlophone (France),"C © 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company, P ℗ 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company",4716 +4717,spotify:track:7nnEIiUzTgXbXzqSN4Ann8,Turn Back Time,spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,spotify:album:2fMLZjqCrVeAknRbcPKwGz,Aquarium,spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,1997-01-01,https://i.scdn.co/image/ab67616d0000b273d2510cf70b57530d14fa7cba,1,10,249200,https://p.scdn.co/mp3-preview/7ed9b00fae31e79aaf651d5e012dc1f18e23ab04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DKBKA9700410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,eurodance,europop",0.682,0.738,8.0,-9.849,1.0,0.0274,0.149,1.65e-06,0.0692,0.537,103.989,4.0,,Universal Music,"C © 1997 Universal Music (Denmark) A/S, P ℗ 1997 Universal Music (Denmark) A/S",4717 +4718,spotify:track:03xyN1GTdGjDE2k0jA57dq,#Beautiful,"spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:360IAlyVv4PCEVjgyMZrxK","Mariah Carey, Miguel",spotify:album:2YQMF6Mc6YufySJdb0uIw8,Me. I Am Mariah... The Elusive Chanteuse,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2014-05-23,https://i.scdn.co/image/ab67616d0000b273fcfceb8eb843c6732b724d40,1,4,199866,https://p.scdn.co/mp3-preview/aec4d3c011b2986b59b7220bf09bd5b1ddecc0ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USUM71305567,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,r&b,urban contemporary",0.678,0.757,4.0,-5.487,1.0,0.042,0.292,0.0,0.314,0.45,106.927,4.0,,Def Jam Recordings,"C © 2014 Mariah Carey, P ℗ 2014 Def Jam Recordings, a division of UMG Recordings, Inc. and Mariah Carey",4718 +4719,spotify:track:4WGyY671Z37inSpCTBJoIm,"Earned It (Fifty Shades Of Grey) - From The ""Fifty Shades Of Grey"" Soundtrack",spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:28ar4s0wTogBoh3hcMGfzQ,"Earned It (Fifty Shades Of Grey) [From The ""Fifty Shades Of Grey"" Soundtrack]",spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2014-12-23,https://i.scdn.co/image/ab67616d0000b273aff7d7ee382ca4451e1b4d9e,1,1,252226,https://p.scdn.co/mp3-preview/9c609b29b141fadf3d19130d0dbba7e2cd7aa869?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11401951,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.66,0.372,2.0,-6.025,0.0,0.0314,0.417,0.0,0.0954,0.432,119.946,3.0,,Universal Music Group,"C © 2014 Universal Studios, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2014 Universal Studios, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",4719 +4720,spotify:track:1Sdm9VVwIErkGjXrY79R5L,Love In Motion,"spotify:artist:3IUisqn0mluZR0LITs8Sqk, spotify:artist:3W8CbCS38EF7Q320Mj6mHT","ICEHOUSE, Christina Amphlett",spotify:album:3UuP7QQWY6hXNiESqZei92,White Heat: 30 Hits,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,2011-08-26,https://i.scdn.co/image/ab67616d0000b273c1e97e3b542ffb0713d1bd8d,2,15,282400,https://p.scdn.co/mp3-preview/bbae83daec40292a55d272573792542f90174b70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUC441100045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic,sophisti-pop,synthpop",0.476,0.66,0.0,-7.935,1.0,0.0551,0.0179,4.67e-06,0.334,0.503,177.771,4.0,,Universal Music Group,"C © 2011 Diva Records, P ℗ 2011 Diva Records",4720 +4721,spotify:track:6wAV49hRfOiCTHztORMy8Y,Crush,spotify:artist:26PDtWYDJ1KD0brukKsJH1,Jennifer Paige,spotify:album:4043DNu4jVlMNetxtdh68B,Crush,spotify:artist:26PDtWYDJ1KD0brukKsJH1,Jennifer Paige,1998-08-31,https://i.scdn.co/image/ab67616d0000b27334bfa7108f9a2be5f9270fa5,1,1,200293,https://p.scdn.co/mp3-preview/ec9bff3fc75d06866018f5ef6a4ff8577b549e9b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,DEB349800301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.73,0.698,1.0,-5.629,0.0,0.0288,0.0324,0.0,0.0928,0.603,115.033,4.0,,earMUSIC,"C 1998 Edel America Records, Inc., P 1998 Edel America Records, Inc.",4721 +4722,spotify:track:28PaUaK6GLb0AcnOBdfyTs,I Should Be so Lucky,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:5bwtR8I9eFLsOU9WWNlw5b,Kylie,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,1988-07-04,https://i.scdn.co/image/ab67616d0000b27318f74e46bedbecababbc64ce,1,1,204893,https://p.scdn.co/mp3-preview/3ff3a232aec22e92ea45d77c4bbfc8bc67a3380c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUMU08700133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.745,0.918,7.0,-10.263,1.0,0.0296,0.0626,0.42,0.356,0.875,116.081,4.0,,WM Australia,"C © 1988 Mushroom Records Pty Ltd, P ℗ 1988 Mushroom Records Pty Ltd",4722 +4723,spotify:track:6sIXG1mxHIAAk3mW5meJZG,Reckless (Don't Be So...) - Remastered,spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,spotify:album:0PO4cvpGuKcP1BwQyPhHpf,The Greatest Hits (Remastered),spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,2014-01-01,https://i.scdn.co/image/ab67616d0000b273c037d33ffd7af564bb2f090b,1,16,321337,https://p.scdn.co/mp3-preview/cd28fc6bcdf4273b282f988fdc7985b58a403cd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71301885,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.699,0.37,2.0,-9.182,1.0,0.0369,0.195,3.27e-05,0.0591,0.222,60.197,4.0,,Universal,"C © 2014 Universal Music Australia Pty Ltd., P ℗ 2014 Universal Music Australia Pty Ltd., Except Tracks 16-19 (P) 2014 Simon Binks, Fermata Nominees Pty Ltd, Staccato Nominees Pty Ltd, J M Reyne Family Trust and Paul Williams.",4723 +4724,spotify:track:4dLcHjpTkLMhJ3AExZrdV6,I Want You Back,spotify:artist:3sc7iUG1Wwpwx7bHeZolgx,Bananarama,spotify:album:1hYzVhiIl9VwcANMorgSBn,Really Saying Something - The Platinum Collection,spotify:artist:3sc7iUG1Wwpwx7bHeZolgx,Bananarama,2005-09-12,https://i.scdn.co/image/ab67616d0000b27391233df9240978bf34dc9896,1,11,231637,https://p.scdn.co/mp3-preview/4cc80f847996efeb68a0e06a61bdd714a9fc7b2c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP0000055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,hi-nrg,new romantic,new wave,new wave pop,soft rock",0.721,0.971,0.0,-4.167,1.0,0.0596,0.207,0.000214,0.354,0.629,123.814,4.0,,London Records,"C 2005 London Records 90 Ltd, P 2005 This compilation: (P) 2005 London Records 90 Ltd",4724 +4725,spotify:track:1y7agAufBsudgRXuq6Ekqb,Ready For Your Love,"spotify:artist:4VNQWV2y1E97Eqo2D5UTjx, spotify:artist:7uMh23xWiuR7zsNkuNcm2G","Gorgon City, MNEK",spotify:album:3u3wA2mFU0UgAtyMJW3xa5,Sirens (Deluxe),spotify:artist:4VNQWV2y1E97Eqo2D5UTjx,Gorgon City,2014-01-01,https://i.scdn.co/image/ab67616d0000b2730a02384f1dfa6614b7994caf,1,2,198880,https://p.scdn.co/mp3-preview/3ca2379bf7e17d891dd0b536f65509f9adb75116?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBUM71307023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"future garage,house,pop dance,uk dance,house,pop dance,uk contemporary r&b,uk dance,uk pop",0.677,0.753,5.0,-7.038,1.0,0.154,0.0531,0.0128,0.333,0.471,121.939,4.0,,EMI,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",4725 +4726,spotify:track:7ANPTG2WxsM08kTBUjIi0r,Cry for Help,spotify:artist:0gxyHStUsqpMadRV0Di1Qt,Rick Astley,spotify:album:6Cgd6xYLzcC6wdtuuMlyiS,The Best of Rick Astley,spotify:artist:0gxyHStUsqpMadRV0Di1Qt,Rick Astley,2014-10-03,https://i.scdn.co/image/ab67616d0000b273a26a3ef645c2e3f3ea00ff27,1,9,243600,https://p.scdn.co/mp3-preview/844a4a77faa91ddce5a806260d5c2b584da73648?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9100126,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock,sophisti-pop,synthpop",0.565,0.596,0.0,-7.765,1.0,0.0218,0.518,0.0,0.294,0.436,89.974,4.0,,Sony Music CG,P This compilation (P) 2014 Sony Music Entertainment,4726 +4727,spotify:track:4EFE0Cvf3caqwaM5K3udBR,Beat Of My Heart,spotify:artist:2S9W9aSAd7e5mp8WqWxN2h,Hilary Duff,spotify:album:0avvQ4S2b7fCEXqnrnzxw7,Most Wanted,spotify:artist:2S9W9aSAd7e5mp8WqWxN2h,Hilary Duff,2005-01-01,https://i.scdn.co/image/ab67616d0000b273bd9e74a68a22edc07f7338de,1,3,189760,https://p.scdn.co/mp3-preview/0cb44bf337459234eb0f3b085f6137046a13d480?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USHR10521707,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.598,0.727,6.0,-5.26,1.0,0.0719,0.0131,0.0,0.405,0.56,136.992,4.0,,Hollywood Records,"C © 2005 Hollywood Records, Inc., P ℗ 2005 Hollywood Records, Inc.",4727 +4728,spotify:track:2jrsywnNPJiJRIP2u21hmD,Russian Roulette,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:5oMe51UhWt6rsnkAvNRd1A,Rated R,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2009-11-20,https://i.scdn.co/image/ab67616d0000b2734cae51022c6881ac94a7b3a2,1,6,227573,https://p.scdn.co/mp3-preview/431204fb880f98511d1c44fc8d6ba272a6e6dff4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USUM70905503,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.39,0.473,6.0,-5.79,0.0,0.0485,0.0492,0.0,0.115,0.293,77.276,4.0,,Def Jam Recordings,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",4728 +4729,spotify:track:17Li4ZicsYYVuh0ECDLxUv,Come Said The Boy - Digitally Remastered,spotify:artist:0f7ChwXkRvmj2ViLbEQwYK,Mondo Rock,spotify:album:6oEmdfXUk1M4TSNMYKBeez,The Greatest Hits,spotify:artist:0f7ChwXkRvmj2ViLbEQwYK,Mondo Rock,2017-01-27,https://i.scdn.co/image/ab67616d0000b2737f4a1833df2728830de4a293,1,1,315986,https://p.scdn.co/mp3-preview/c349a07e7b5eaa9d06e988838a391ef2759dd60d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,AUMF08300001,spotify:user:bradnumber1,2021-12-01T04:22:52Z,australian rock,0.692,0.636,9.0,-6.151,0.0,0.0342,0.244,0.00261,0.163,0.481,117.847,4.0,,Bloodlines,"C 2016 Bloodlines, P 2016 Bloodlines",4729 +4730,spotify:track:4N4eMrKCKFl3AcYJIeXVz9,Better Be Home Soon,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:5VE8DrwkQzbVX04iZWpvfu,Temple Of Low Men (Deluxe),spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1988,https://i.scdn.co/image/ab67616d0000b27330cca4f9ccaaad4574953d87,1,10,188412,https://p.scdn.co/mp3-preview/59ee7444cead3cc1296cab68a2eb6064b3801221?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA28800035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.424,0.5,0.0,-8.674,1.0,0.0261,0.386,0.0,0.108,0.39,93.697,4.0,,Universal Music Group,"C © 1988 Capitol Records Inc., P ℗ 1988 Capitol Records Inc.",4730 +4731,spotify:track:6sZo5nJIsFWXefRCCexpx0,Never Gonna Not Dance Again,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:6MCHSjoEVriUjWE6LERAaR,Never Gonna Not Dance Again,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2022-11-04,https://i.scdn.co/image/ab67616d0000b273a342edc8d90ae68d99333bab,1,1,225789,https://p.scdn.co/mp3-preview/96b50eaa40c424a387ccca75668e283f49c23d4a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,64,USRC12203282,spotify:user:bradnumber1,2022-12-11T23:08:46Z,"dance pop,pop",0.668,0.802,5.0,-4.005,0.0,0.0917,0.0273,0.0,0.163,0.769,113.796,4.0,,RCA Records Label,"P (P) 2022 RCA Records, a division of Sony Music Entertainment",4731 +4732,spotify:track:1Bt06pqlg8pqlpnl4R6Rd2,Those Kinda Nights (feat. Ed Sheeran),"spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Eminem, Ed Sheeran",spotify:album:2LWLgGY15e9im0KUaASnFa,Music To Be Murdered By,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2020-01-17,https://i.scdn.co/image/ab67616d0000b2730bb096916743c3b7852ea818,1,5,177693,https://p.scdn.co/mp3-preview/013a48787b9a6cbf113a42c72a680d0ce155ab7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USUM72000806,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap,pop,singer-songwriter pop,uk pop",0.813,0.641,4.0,-6.279,0.0,0.337,0.0269,0.0,0.0864,0.39,103.827,4.0,,Shady/Aftermath/Interscope Records,"C © 2020 Marshall B. Mathers III, P ℗ 2020 Marshall B. Mathers III",4732 +4733,spotify:track:2ifpWVChV5iLsHozrX6IHQ,Jesse,spotify:artist:4FtSnMlCVxCswABUmdhwpm,Carly Simon,spotify:album:6xM7kh50xxcGtQn3KDf5Oz,Come Upstairs,spotify:artist:4FtSnMlCVxCswABUmdhwpm,Carly Simon,1980,https://i.scdn.co/image/ab67616d0000b27391fc47214fce3cd746031aca,1,4,261000,https://p.scdn.co/mp3-preview/6f8be09de6771163f3e3552e5ea4021a45fbd983?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USWB18000017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.73,0.61,0.0,-13.418,1.0,0.0408,0.24,0.0,0.0969,0.779,106.512,4.0,,Warner Records,"C © 1980 Warner Records Inc., P ℗ 1980 Warner Records Inc.",4733 +4734,spotify:track:2v0FHlUsRKKSCZE0SchaSu,Always Be Here,spotify:artist:5OzhylFImS2180xpCx4FZF,Dane Rumble,spotify:album:6mWTrAqIZsij9EgNqtYeyE,The Experiment,spotify:artist:5OzhylFImS2180xpCx4FZF,Dane Rumble,2011-01-01,https://i.scdn.co/image/ab67616d0000b27353fc2478e63c773e767c9c3b,1,1,225480,https://p.scdn.co/mp3-preview/79504b32cda0ab3420eece572b6505455968cecf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZRB10900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nz pop,0.768,0.852,9.0,-3.538,0.0,0.0613,0.0892,0.0,0.07,0.84,129.993,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Rumble Music Ltd, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd, P ℗ 2011 Rumble Music Ltd, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd",4734 +4735,spotify:track:4oNwYmtBE8ZCmupHynpqR8,Warp 1.9,"spotify:artist:0QJKELJZZuLAjqLOOixJm5, spotify:artist:77AiFEVeAVj2ORpC85QVJs","The Bloody Beetroots, Steve Aoki",spotify:album:6A1GklD4VSaJlWK5MdQG3N,Romborama (Limited Australian Tour Edition),spotify:artist:0QJKELJZZuLAjqLOOixJm5,The Bloody Beetroots,2009,https://i.scdn.co/image/ab67616d0000b273678dcc6ad50150e0cc03ef78,1,10,203853,https://p.scdn.co/mp3-preview/e0c6220f63fb6e941eed64397e1e68bf6e8646f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDM30900035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance-punk,electro house,fidget house,filter house,edm,electro house,pop dance",0.64,0.623,1.0,-5.652,1.0,0.286,0.000849,0.802,0.0585,0.408,130.087,4.0,,Ministry Of Sound,"C (C) 2010 Dim Mak LLC, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd., P (P) 2010 Dim Mak LLC, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd.",4735 +4736,spotify:track:2PuUFT13yCzUOZun94WOXv,Suite: Judy Blue Eyes - 2005 Remaster,spotify:artist:2pdvghEHZJtgSXZ7cvNLou,"Crosby\, Stills & Nash",spotify:album:6vUWpE8qciYHOhf7mgaGny,"Crosby, Stills & Nash",spotify:artist:2pdvghEHZJtgSXZ7cvNLou,"Crosby\, Stills & Nash",1969-05-29,https://i.scdn.co/image/ab67616d0000b273a32339b8818323380682a889,1,1,444053,https://p.scdn.co/mp3-preview/8b8343fedd340428bb33b5b7ab069190e6aeadc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAT20506555,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk,folk rock,mellow gold,rock,soft rock",0.458,0.364,9.0,-13.126,1.0,0.0431,0.467,0.0,0.197,0.3,154.215,4.0,,Rhino Atlantic,"C © 2006 Atlantic Recording Corp. Manufactured & Marketed by Rhino Entertainment Co. A Warner Music Group Co., P ℗ 2006 Atlantic Recording Corp. Manufactured & Marketed by Rhino Entertainment Co. A Warner Music Group Co.",4736 +4737,spotify:track:14ei1YNdnnNTuWnTj06vtE,I Am,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,spotify:album:5522D0Y5jQXUvCIXQi9JwI,Killing Heidi,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,2004,https://i.scdn.co/image/ab67616d0000b273b1e63f0733fc6c8e34fbb71b,1,1,206293,https://p.scdn.co/mp3-preview/6a4206afcc0c29c735a6f22e0c01d9d9a1ddc3a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUSM00400084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.502,0.954,10.0,-2.466,1.0,0.0527,0.0193,1.94e-05,0.262,0.657,93.031,4.0,,Columbia,P All recordings (P) 2004 The Music Catalogue Co Ltd. Marketed in Australia by SME(A)L under exclusive license.,4737 +4738,spotify:track:43Ui9JiJXhjznzdOTAansW,One of Us Has Changed,spotify:artist:2nnKVDTsTBYyf3wvsRmKBr,Aleesha Rome,spotify:album:4PS5Cwv0HJDriH50sfWnUI,Aleesha Rome,spotify:artist:2nnKVDTsTBYyf3wvsRmKBr,Aleesha Rome,2000-01-01,https://i.scdn.co/image/ab67616d0000b273714f049e688702032fb77de0,1,2,220440,https://p.scdn.co/mp3-preview/7b4746642702e4b6ec99621543ead806675896b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP09900004,spotify:user:bradnumber1,2023-06-21T02:42:01Z,,0.548,0.944,4.0,-3.834,1.0,0.104,0.157,0.0,0.162,0.458,96.116,4.0,,Albert Music,"C © 2000 BMG AM Pty Ltd., P ℗ 2000 BMG AM Pty Ltd.",4738 +4739,spotify:track:5sAlmL7Qp9N9BJTADkwEt9,Scream,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,spotify:album:4YPSP5Mi5C0vdbgLTaYucB,Looking 4 Myself (Deluxe Version),spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2012-06-08,https://i.scdn.co/image/ab67616d0000b273dd2f87dcad9798a4c177f105,1,2,234693,https://p.scdn.co/mp3-preview/52ea8ee0ebccd5ae5a62873a3b5f749fa068ab1b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11200367,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.616,0.862,7.0,-5.18,0.0,0.0973,0.00117,0.0,0.179,0.569,127.992,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",4739 +4740,spotify:track:5djwPnr9kffOaIr7SmmOFK,Don't You Know It's Magic,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:0pn89FD5YCTfzUKDzKKVDL,The Classic Gold Collection: 1967 - 1985,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1995-01-01,https://i.scdn.co/image/ab67616d0000b27317d8851027cc483df23788a9,1,14,242346,https://p.scdn.co/mp3-preview/38d1ddc04664673a9310f4ec8119ebaf96db0ea4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUEM07200021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.538,0.73,7.0,-7.022,1.0,0.03,0.637,0.0,0.126,0.558,134.514,4.0,,EMI Australia,"C © 1995 EMI Recorded Music Australia Pty Ltd., P ℗ 1995 EMI Recorded Music Australia Pty Ltd.",4740 +4741,spotify:track:2bS2tETCzUmjALnXEvhOGo,Lotta Love,spotify:artist:0NCXrh1XOnHNp4mM0JUFJw,Nicolette Larson,spotify:album:4IYDdR6uUcazKjPPzJJzfu,Nicolette,spotify:artist:0NCXrh1XOnHNp4mM0JUFJw,Nicolette Larson,1978,https://i.scdn.co/image/ab67616d0000b273416f0a9079e66e77bab10c96,1,1,191773,https://p.scdn.co/mp3-preview/56bed98a3f5b21468282e9231a9a89bd1ed6a677?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB10100567,spotify:user:bradnumber1,2021-08-08T09:26:31Z,yacht rock,0.646,0.406,5.0,-15.616,0.0,0.0264,0.159,0.00114,0.27,0.895,113.708,4.0,,Rhino/Warner Records,"C © 1978 Warner Records Inc., Marketed by Rhino Entertainment Company, a Warner Music Group Company, P ℗ 1978 Warner Records Inc., Marketed by Rhino Entertainment Company, a Warner Music Group Company",4741 +4742,spotify:track:6aXY8SXfIcDU1FTNqo5fHz,Fading Like A Flower (Every Time You Leave),spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:5Q4kTNheoI86WVk1YQKt4x,Joyride (2009 Version),spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,1991-03-28,https://i.scdn.co/image/ab67616d0000b273d68032457ff512d4d9c6dccb,1,3,230680,https://p.scdn.co/mp3-preview/e23d212ad451670a816a4e87f67c5ef7df8e396a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAMA9079030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.609,0.668,0.0,-5.738,1.0,0.026,0.195,0.0,0.219,0.319,105.419,4.0,,Parlophone Sweden,"C 1991 Parlophone Music Sweden AB, a Warner Music Group Company, P 1991Parlophone Music Sweden AB, a Warner Music Group Company",4742 +4743,spotify:track:1I95liM3akfvKNP8TWnzP2,Papercuts (feat. Vera Blue),"spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt, spotify:artist:5ujrA1eZLDHR7yQ6FZa2qA","Illy, Vera Blue",spotify:album:2MQnrXJl4XflhyDma1l6vt,Papercuts (feat. Vera Blue),spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt,Illy,2016-07-08,https://i.scdn.co/image/ab67616d0000b2730ac8225612ae286ca828596c,1,1,255889,https://p.scdn.co/mp3-preview/f8442c0ad6dc945d825b957c4100d48e1473b7eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUWA01600211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian trap,australian indie,australian pop",0.369,0.618,6.0,-6.304,0.0,0.249,0.161,0.0,0.257,0.467,191.863,4.0,,WM Australia,"C © 2016 ONETWO, P ℗ 2016 ONETWO. Marketed and distributed by Warner Music Australia Pty Ltd under exclusive license",4743 +4744,spotify:track:7FNIEfhhBlzsZFxCwI5Nwh,A Little Less Conversation - JXL Radio Edit Remix,"spotify:artist:43ZHCT0cAZBISjO8DG9PnE, spotify:artist:5svDnd8joFhbpbA3Ar0CfN","Elvis Presley, Junkie XL",spotify:album:0QVoYzGd1p8Z3ohEaM0lsc,Elvis 30 #1 Hits,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2002-09-24,https://i.scdn.co/image/ab67616d0000b273a0b8a1ce10fddbba6879262e,1,31,213240,https://p.scdn.co/mp3-preview/8b3e42207e46eb96aa275654f99edd2a6803054d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USRC10200288,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly,big beat,soundtrack",0.59,0.976,11.0,-4.866,0.0,0.0488,0.000154,0.293,0.155,0.686,114.996,4.0,,RCA Records Label,P This Compilation (P) 2002 Sony Music Entertainment,4744 +4745,spotify:track:43L7sXzJLKnto5PpKLf28r,Pass The Dutchie,spotify:artist:2CuzDPkRD6BJBvdWqCrt2I,Musical Youth,spotify:album:2tSQIit38XqA1gYe4KfHvk,Anthology,spotify:artist:2CuzDPkRD6BJBvdWqCrt2I,Musical Youth,1994-02-28,https://i.scdn.co/image/ab67616d0000b273d7f02a98ae6cd9e6630b89da,1,1,205426,https://p.scdn.co/mp3-preview/6ff7a75a64a0fa80540f63900cc662305e0c59a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBY0300024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk reggae,0.799,0.409,7.0,-14.37,1.0,0.101,0.442,0.0,0.286,0.966,149.745,4.0,,Universal Music Group,"C © 1994 Geffen Records, P ℗ 1994 Geffen Records",4745 +4746,spotify:track:1N3dZ7TTWO6VcD4Y3hHYLZ,Try Everything,spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,spotify:album:3X6netsswLt0U97Doga56C,Zootopia (Original Motion Picture Soundtrack),spotify:artist:4kLvhMAuCloLxoP1aVM7Lr,Michael Giacchino,2016-02-12,https://i.scdn.co/image/ab67616d0000b273bb8981af04f38a53e2be34f5,1,1,196853,https://p.scdn.co/mp3-preview/b93b4e2af9045699cfc2795f541d7d5333ae53d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USWD11575402,spotify:user:bradnumber1,2021-11-11T04:11:55Z,"colombian pop,dance pop,latin pop,pop",0.705,0.609,1.0,-4.897,1.0,0.0307,0.0257,0.0,0.0846,0.476,115.474,4.0,,Walt Disney Records,"C © 2016 Disney Enterprises, Inc., P ℗ 2016 Walt Disney Records",4746 +4747,spotify:track:3YbFev4mbmKXDozmsaXZFK,Old Sid,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,spotify:album:5rnejagAyJWdJnny3CfhVO,The Lemon Tree,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,2008-09-06,https://i.scdn.co/image/ab67616d0000b273e2addf69063f795b53e75294,1,12,197760,https://p.scdn.co/mp3-preview/b756599b3b27b34cc7fdb1b136d62d52922ddd6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00849110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.4,0.349,5.0,-7.619,1.0,0.0305,0.905,5.25e-06,0.0833,0.27,130.006,3.0,,Bloodlines,"C 2008 Bloodlines, P 2008 Bloodlines",4747 +4748,spotify:track:2ZMEdXxVSRfMshCDBMjt0o,All Right Now,spotify:artist:2e53aHBQdCMKWqHDuyJsjC,Free,spotify:album:0y1k7yzTo230VF9VPZhV1k,20th Century Masters: The Millennium Collection: Best Of Free,spotify:artist:2e53aHBQdCMKWqHDuyJsjC,Free,2002-01-01,https://i.scdn.co/image/ab67616d0000b2734618c7f48fad3d71d27a7494,1,5,334000,https://p.scdn.co/mp3-preview/a8f7f4c2bd905094421be159e16538977acd3c82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAAN7000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,classic rock,hard rock",0.786,0.47,2.0,-11.336,1.0,0.105,0.00767,0.0,0.0834,0.801,119.926,4.0,,A&M,"C © 2002 A&M Records, P This Compilation ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",4748 +4749,spotify:track:6pceknxOgA22HKs99yPEm1,Rhythm of My Heart,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:3jBeiXLyZM4kxbHLEJwtYt,Vagabond Heart - Expanded Edition,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1991,https://i.scdn.co/image/ab67616d0000b273cf5dca3c5d19ad90c0c61c6b,1,1,254866,https://p.scdn.co/mp3-preview/53d021daadd7aefb9e75b14ec8e4e48df46ce4fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USWB10807931,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.582,0.54,1.0,-11.021,1.0,0.0321,0.0621,0.0,0.178,0.433,94.955,4.0,,Rhino/Warner Records,"C © 1991 Warner Records Inc., P ℗ 2009 Warner Records Inc. Marketed by Warner Music Group Company.",4749 +4750,spotify:track:5tjrH5xrpkgKgYd8zQgU8X,Stolen Dance,spotify:artist:1hzfo8twXdOegF3xireCYs,Milky Chance,spotify:album:4C58vZjv4ya4YOZZhiE3VK,Stolen Dance,spotify:artist:1hzfo8twXdOegF3xireCYs,Milky Chance,2014-05-01,https://i.scdn.co/image/ab67616d0000b2733410db6606d5e5a0d865282f,1,1,311333,https://p.scdn.co/mp3-preview/a5a49157caae8d8fbb5c82b70a6244a9ec828562?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEL211300741,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german pop,modern rock",0.879,0.574,11.0,-8.794,1.0,0.037,0.405,0.00015,0.0913,0.682,114.001,4.0,,Republic Records,"C (C) 2014 Lichtdicht Records Under exclusive license in the US to Republic Records, Inc., A Divison Of UMG Recordings, P (P) 2014 Lichtdicht Records Under exclusive license in the US to Republic Records, Inc., A Divison Of UMG Recordings",4750 +4751,spotify:track:366wRPrx2airjcCRkxgoS2,Surrender,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:5Iec810oL6PorbyBVjLnmD,"Elvis' Golden Records, Vol. 3",spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1963-08-11,https://i.scdn.co/image/ab67616d0000b273a22455d1ff7031adeaa90a40,1,5,114200,https://p.scdn.co/mp3-preview/0385f60ba7690f4204cb7924c8661e246b098a22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USRC19708191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.38,0.638,3.0,-9.647,0.0,0.0504,0.75,0.0,0.258,0.749,79.125,4.0,,RCA/Legacy,P (P) 1963 Sony Music Entertainment,4751 +4752,spotify:track:5BnFZLH99sYav2cxJFGO2n,Gone Away - 1997,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:2PSgMApk089eV6e5LPbQeS,Ixnay On The Hombre,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,1997-02-04,https://i.scdn.co/image/ab67616d0000b273ba12c467b8cc7eb3be9e7d8b,1,7,268826,https://p.scdn.co/mp3-preview/d764706a543bbb30c826a27a592d36991fe26af4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM19603682,spotify:user:bradnumber1,2022-08-31T00:13:48Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.45,0.945,3.0,-3.995,1.0,0.0806,0.012,0.00687,0.0683,0.294,111.342,4.0,,Round Hill Music (Offspring),"C © 1996 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc., P ℗ 1996 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc.",4752 +4753,spotify:track:4ZoBC5MhSEzuknIgAkBaoT,My Life,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:1HmCO8VK98AU6EXPOjGYyI,52nd Street,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1978-10-13,https://i.scdn.co/image/ab67616d0000b2731d4675d5a0345bb93686e4b6,1,3,284000,https://p.scdn.co/mp3-preview/ea8d69cbc7ef1b94ddf42817cc14454c3bd9988d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM17800448,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.741,0.647,2.0,-12.878,1.0,0.0427,0.108,0.00139,0.0555,0.804,131.097,4.0,,Columbia,"P (P) 1978 Columbia Records, a division of Sony Music Entertainment",4753 +4754,spotify:track:2Gy7qnDwt8Z3MNxqat4CsK,Wouldn't It Be Nice,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:6GphKx2QAPRoVGWE9D7ou8,Pet Sounds (Original Mono & Stereo Mix),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1966-06-16,https://i.scdn.co/image/ab67616d0000b273bde8dfd1922129f3d9e3732f,1,15,153205,https://p.scdn.co/mp3-preview/4ea74155d6f9a3c0f93f8fc06aac20c3d962c894?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USCA20000220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.392,0.629,5.0,-7.056,1.0,0.0334,0.718,3.65e-06,0.129,0.72,124.511,4.0,,Capitol Records,"C © 2001 Capitol Records, LLC, P ℗ 2001 Capitol Records, LLC",4754 +4755,spotify:track:1F7s27lLKshLPt9TPCgMDL,The Ballad Of John And Yoko - Remastered 2015,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:7vEJAtP3KgKSpOHVgwm3Eh,1 (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,2000-11-13,https://i.scdn.co/image/ab67616d0000b273582d56ce20fe0146ffa0e5cf,1,23,179480,https://p.scdn.co/mp3-preview/02faf9e2bc111c57f2fa64706c352f503a53444b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBUM71505912,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.651,0.892,4.0,-6.551,1.0,0.0313,0.00465,2.85e-06,0.127,0.962,135.309,4.0,,UMC (Universal Music Catalogue),"C © 2015 Apple Corps Ltd., P This Compilation ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",4755 +4756,spotify:track:4oTIuUmpE2xdXrpon9lgfJ,Heaven,spotify:artist:7sfgqEdoeBTjd8lQsPT3Cy,Emeli Sandé,spotify:album:0QwbgAJnx9FEFFC3EsyLrQ,Our Version Of Events (Special Edition),spotify:artist:7sfgqEdoeBTjd8lQsPT3Cy,Emeli Sandé,2012-01-01,https://i.scdn.co/image/ab67616d0000b273623108b3d24c016e5a14374b,1,1,251946,https://p.scdn.co/mp3-preview/880ea5ebc17c4186b185f5880dace0ac8bbb2333?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAAA1100192,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,talent show,uk pop",0.615,0.953,8.0,-3.103,0.0,0.129,0.0347,0.0245,0.288,0.282,86.632,5.0,,Virgin,"C © 2012 Virgin Records Limited, P ℗ 2012 Virgin Records Limited",4756 +4757,spotify:track:4xiyq1iRdsxuU1BPUJ490Z,Close To Me,spotify:artist:7bu3H8JO7d0UbMoVzbo70s,The Cure,spotify:album:1keBgl5vblFhSc3nMZxPXG,The Head On The Door - Remastered,spotify:artist:7bu3H8JO7d0UbMoVzbo70s,The Cure,1985-08-26,https://i.scdn.co/image/ab67616d0000b27326590dee77103a16e935eadc,1,7,203266,https://p.scdn.co/mp3-preview/391f80bf6008a2082fcb557293712b256bf5d051?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBALB8500007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave,permanent wave,rock,uk post-punk",0.724,0.523,11.0,-11.139,1.0,0.116,0.0745,0.703,0.0811,0.965,185.075,4.0,,UMC (Universal Music Catalogue),"C © 2006 Polydor Ltd. (UK), P ℗ 1985 Polydor Ltd. (UK)",4757 +4758,spotify:track:0Zx8khUcEfCFK2AEoIhC92,Don't Leave,"spotify:artist:2FwJwEswyIUAljqgjNSHgP, spotify:artist:0bdfiayQAKewqEvaU6rXCv","Snakehips, MØ",spotify:album:6buSUFSCXUIj3DOH3gUoRe,Don't Leave,"spotify:artist:2FwJwEswyIUAljqgjNSHgP, spotify:artist:0bdfiayQAKewqEvaU6rXCv","Snakehips, MØ",2017-01-06,https://i.scdn.co/image/ab67616d0000b273b72a28b6f92b180a8a423e29,1,1,214693,https://p.scdn.co/mp3-preview/1c5488d7fd88a18316bbd867d11973b76fdabc9d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,58,GBARL1601799,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,uk dance,vapor soul,dance pop,danish pop,electropop,pop dance",0.657,0.703,1.0,-3.402,1.0,0.0753,0.222,0.0,0.256,0.338,122.381,4.0,,Hoffman West/Columbia,P (P) 2017 Sony Music Entertainment UK Limited,4758 +4759,spotify:track:72SaLo5XZeIxvVD7Xv61Qq,Bristol Stomp,spotify:artist:6LaraO4gcDKWw0fwIOTodm,The Dovells,spotify:album:4Fy80EgMqasVPmgoOJertw,Cameo Parkway - The Best Of The Dovells (Original Hit Recordings) [International Version],spotify:artist:6LaraO4gcDKWw0fwIOTodm,The Dovells,1963-01-01,https://i.scdn.co/image/ab67616d0000b27331fcf9d9cdac646dc3a87444,1,1,138893,https://p.scdn.co/mp3-preview/87a125f21b48dd9e30cf69a3d5b7f247d6236e30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176140330,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.655,0.77,2.0,-6.338,1.0,0.0649,0.626,0.0,0.541,0.9,105.394,4.0,,Universal Music Group,"C © 2006 ABKCO Records Inc., P ℗ 2006 ABKCO Records Inc.",4759 +4760,spotify:track:7KIbDUwumrpG5f30kEYW1v,Pump It,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:6Gdt5ogiuJ9knp8Q5148ea,Monkey Business,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2005-01-01,https://i.scdn.co/image/ab67616d0000b27377234f29940be7edb73bff87,1,1,213066,https://p.scdn.co/mp3-preview/c3aa3b2a8c6451a3ce6c20084cca89799722db46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USIR10500407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.648,0.931,1.0,-3.15,0.0,0.181,0.00937,0.0,0.752,0.744,153.649,4.0,,Universal Music Group,"C © 2005 Interscope Records, P ℗ 2005 Interscope Records",4760 +4761,spotify:track:69DjteqfRStIehqJoeCmrC,The Only Way Is Up (Original),spotify:artist:5ApKaVHAStk5kAuyBW1wG8,Yazz,spotify:album:5ceo5SFcYPIbb6BXYsf1e0,Wanted,spotify:artist:5ApKaVHAStk5kAuyBW1wG8,Yazz,1988-05-10,https://i.scdn.co/image/ab67616d0000b2730d9bf67733a44bd0c85a0bf6,1,1,269266,https://p.scdn.co/mp3-preview/a666db8d6d0b130b45f688c900e6ae202e839cd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0201571,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.623,0.782,11.0,-11.736,1.0,0.0416,0.101,0.00403,0.267,0.712,124.614,4.0,,Big Life,"C 1988 Big Life, P 1988 Big Life",4761 +4762,spotify:track:7IByJvSqRFltGyiiIiL4wn,Who You Love (feat. Katy Perry),"spotify:artist:0hEurMDQu99nJRq8pTxO14, spotify:artist:6jJ0s89eD6GaHleKKya26X","John Mayer, Katy Perry",spotify:album:712VoD72K500yLhhgqCyVe,Paradise Valley,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2013-08-20,https://i.scdn.co/image/ab67616d0000b2738e3ab1cbd76d15dc64450a13,1,6,249933,https://p.scdn.co/mp3-preview/0dea97918e8c65bb990cf78498309bc804f915d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM11303945,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter,pop",0.694,0.351,9.0,-10.92,1.0,0.0382,0.813,0.00165,0.097,0.691,145.907,4.0,,Columbia,"P (P) 2013 Columbia Records, a Division of Sony Music Entertainment",4762 +4763,spotify:track:0HLQBvIEEdJhdl8jd2Pt1E,I Just Called To Say I Love You - Single Version,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:2aZDAIPPNMn1HT2TfW42pP,The Definitive Collection,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,2002-01-01,https://i.scdn.co/image/ab67616d0000b273a903bd95437a375a76d295fe,1,19,261773,https://p.scdn.co/mp3-preview/b74be3987a64ad264aabf0acb55f7447c0118e57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUMG9900476,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.742,0.542,1.0,-9.147,1.0,0.0235,0.241,4.1e-06,0.0836,0.644,113.552,4.0,,Universal Music Group,"C © 2002 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2002 Universal Motown Records, a division of UMG Recordings, Inc.",4763 +4764,spotify:track:6rvldt6EoZwzogApECUCwd,Who Made Who,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:07EFoHHspqSwsmkbnWaB4A,Who Made Who,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1986-05-24,https://i.scdn.co/image/ab67616d0000b273febe8d3decc4565315adff23,1,1,207146,https://p.scdn.co/mp3-preview/c8f25ab62224d71bd683604aa9ddcba85df60c0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,AUAP08600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.514,0.825,0.0,-5.135,1.0,0.0487,0.000286,0.293,0.607,0.655,125.274,4.0,,Columbia,P (P) Compilation 1986 Australian Music Corporation Pty Ltd./Leidseplein Presse B.V.,4764 +4765,spotify:track:1uSkjP4X0GSFJ8W3ZZtnMY,We Gotta Get Out Of This Place,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:6uCbMWdl9Wyc7PufqGozM7,Howling,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,1986-01-01,https://i.scdn.co/image/ab67616d0000b273b81e2cb9887c4eeb0c89d803,1,8,279866,https://p.scdn.co/mp3-preview/897d7289204ebb3b168261cc2d86fb861e194644?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AULI00623260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.503,0.841,4.0,-10.396,1.0,0.0495,0.00599,0.000388,0.189,0.515,136.025,4.0,,Bloodlines,"C 1986 Bloodlines, P 1986 Bloodlines",4765 +4766,spotify:track:34PsixEmIceg39NpaYxBsH,I Think I'm in Love with You,spotify:artist:2tFN9ubMXEhdAQvdQxcsma,Jessica Simpson,spotify:album:2z4kcQqO0W8des2nWq5ECY,Sweet Kisses,spotify:artist:2tFN9ubMXEhdAQvdQxcsma,Jessica Simpson,1999-11-16,https://i.scdn.co/image/ab67616d0000b27381bc5415310a2739d3940b7d,1,2,197693,https://p.scdn.co/mp3-preview/cca7b43f360919e88359f45c12ff11026c871c01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USSM19924776,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.715,0.815,9.0,-5.867,1.0,0.0576,0.0689,0.0,0.233,0.804,106.001,4.0,,Columbia,P (P) 1999 Sony Music Entertainment Inc.,4766 +4767,spotify:track:68IngNKFxLJQZvTyzYIKIg,"Gee Whiz, Look at His Eyes",spotify:artist:1QAGLCom3FHTTiuRFsjzOj,Carla Thomas,spotify:album:4XDhPzZCGU4hmEiVlccvHT,Gee Whiz,spotify:artist:1QAGLCom3FHTTiuRFsjzOj,Carla Thomas,1961,https://i.scdn.co/image/ab67616d0000b27344a22eb814554e43cbfc30ad,1,1,141840,https://p.scdn.co/mp3-preview/4ea257f4635f7d1ee859bba6961d6e7891a10a6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USAT20003725,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"memphis soul,soul,southern soul",0.228,0.358,5.0,-7.161,1.0,0.0306,0.582,2.84e-06,0.129,0.324,179.652,3.0,,Rhino Atlantic,"C © 1961 Atlantic Recording Corp., a Warner Music Group Company, P ℗ 1961 Atlantic Recording Corp., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group Company",4767 +4768,spotify:track:2lp8xjq0WTm3HZKHuDEweg,Tell Me,spotify:artist:7opRqRgF9lvnVraBFCMvIj,Groove Theory,spotify:album:0VVegiriO1eyyfOKrLmxtc,Groove Theory,spotify:artist:7opRqRgF9lvnVraBFCMvIj,Groove Theory,1995-07-25,https://i.scdn.co/image/ab67616d0000b2738392098a96a694c07b78333e,1,6,236066,https://p.scdn.co/mp3-preview/9a9a6cb5eb50521250750f8870e661545b8390eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM19300027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing",0.8,0.362,6.0,-10.849,0.0,0.0634,0.035,3.99e-06,0.0667,0.888,93.059,4.0,,Epic,P (P) 1995 Sony Music Entertainment Inc.,4768 +4769,spotify:track:7LLi0lN4VDUOPNQVjWwzar,Dance Little Lady,spotify:artist:7Jbs4wPCLaKXPxrTxZ2zaa,Tina Charles,spotify:album:253XCXxUcJtKdNJ31xputl,Tina Charles - Greatest Hits,spotify:artist:7Jbs4wPCLaKXPxrTxZ2zaa,Tina Charles,2015-10-27,https://i.scdn.co/image/ab67616d0000b27321c647407f1039e845196db4,1,1,194000,https://p.scdn.co/mp3-preview/0dbc92c97200c66122f6ddef4b67908ccf3692d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,UK6821409363,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg",0.687,0.74,7.0,-7.028,1.0,0.0288,0.0192,0.0,0.25,0.961,105.968,4.0,,Burning Girl Productions,"C 2015 Burning Girl Productions, P 2015 Burning Girl Productions",4769 +4770,spotify:track:695RxpwiDj0crqVH55tKkr,Nasty Girl,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,spotify:album:480AZOo2VQ1kf3GedAiKV9,Survivor,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,2001-05-01,https://i.scdn.co/image/ab67616d0000b2737c83e8f225e70de4bb866c96,1,4,257826,https://p.scdn.co/mp3-preview/36302ab536c9845fdffa22149293b779c3df5674?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USSM10102688,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary",0.753,0.881,1.0,-3.782,1.0,0.259,0.0126,0.00137,0.114,0.684,129.923,4.0,,Columbia,P (P) 2001 Sony Music Entertainment Inc.,4770 +4771,spotify:track:4qrSd9NMui1V19MEnIAhj7,Best Song Ever,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:7slbkjkfIPufuEa858735n,Best Song Ever (From THIS IS US),spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2013-07-22,https://i.scdn.co/image/ab67616d0000b273de2c37047c30834c562030da,1,1,202440,https://p.scdn.co/mp3-preview/c46e04c0c2985d99535b1c83666d41fd516fbdbb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBHMU1300102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.654,0.877,1.0,-2.988,1.0,0.045,0.025,0.0,0.0699,0.561,118.499,4.0,,Syco Music,P (P) 2013 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,4771 +4772,spotify:track:0L2W0uykC2hsWySDg5qEly,Pamela Pamela,spotify:artist:3LUkBWNeAcbLju5dL8poH3,Wayne Fontana,spotify:album:1xePXZSE1x8pUgYvEJPo0D,The Best of Wayne Fontana,spotify:artist:3LUkBWNeAcbLju5dL8poH3,Wayne Fontana,1984-02-08,https://i.scdn.co/image/ab67616d0000b273b5a7dedd03f74206e9b0f994,1,2,129274,https://p.scdn.co/mp3-preview/6cfead948ef2b4f14a0449bbe0581bc8ddbeda74?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,QMDA61863747,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.508,0.482,6.0,-12.847,0.0,0.0306,0.845,0.000652,0.216,0.851,128.417,4.0,,Gulf Coast Records,"C (C) 1984 © Gulf Coast Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",4772 +4773,spotify:track:5oULOZhGMqgVcszFbyshz3,The More I See You,spotify:artist:6748v9yNrbb4PPJuvfoMRa,Peter Allen,spotify:album:3TGewCKkjcPNdmanYvpBzb,Taught By Experts,spotify:artist:6748v9yNrbb4PPJuvfoMRa,Peter Allen,1976-01-01,https://i.scdn.co/image/ab67616d0000b2734fa497ca158ff04c1fc0bad6,1,8,215266,https://p.scdn.co/mp3-preview/7afcd6edc74e03502388316937e9beffce33aafa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USAM10110075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep soft rock,0.628,0.545,11.0,-7.724,0.0,0.0419,0.272,1.38e-05,0.571,0.504,130.093,4.0,,A&M,"C © 1976 A&M Records, P ℗ 2015 A&M Records",4773 +4774,spotify:track:4hwp60UEuCH6JjqbPCqk1R,Got the Feelin' - Radio Edit,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,spotify:album:5jSAkaiC1BBKZQSZ7wFYOY,Greatest Hits,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,2003-06-02,https://i.scdn.co/image/ab67616d0000b27310df926bec224d743644ea3e,1,7,208466,https://p.scdn.co/mp3-preview/ac11b92ac7da1ecb51baf945f748078e2b075db8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBARL9800071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.762,0.879,0.0,-5.871,1.0,0.119,0.0547,0.0,0.144,0.861,98.591,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,4774 +4775,spotify:track:5ar17JbimrwoAM4NTVbSKT,I Don't Believe You,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2MqP4akeOQpLkq7jpQqlHT,Funhouse: The Tour Edition,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2008,https://i.scdn.co/image/ab67616d0000b273faef39535383dcf65ab03f02,1,3,276280,https://p.scdn.co/mp3-preview/775988d6da23df86c16cf185a22fab5cd0a6a28a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF20800180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.261,0.274,8.0,-9.04,1.0,0.0291,0.786,0.0,0.108,0.249,91.285,4.0,,LaFace Records,"P (P) 2008, 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",4775 +4776,spotify:track:7FvS9PhfQkRRSYnw8IqWYC,The Unforgiven II,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:6mEOyKfRASrT8SpT3C6bUT,Reload,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1997-01-01,https://i.scdn.co/image/ab67616d0000b273d48acd856275dbe05a45dd95,1,4,396440,https://p.scdn.co/mp3-preview/da788750fbfaa0135806fb7e056bb02181856cdf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMC9700004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.497,0.89,8.0,-4.559,0.0,0.0445,0.00055,0.00129,0.255,0.249,133.047,4.0,,Universal Music Group,"C © 1997 Metallica, P ℗ 1997 Metallica",4776 +4777,spotify:track:2uiteX5tbMNU3qekVbdUll,Refugee,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:6E2lDnV61v2HJaNCjLgOIg,Greatest Hits,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,1993-11-16,https://i.scdn.co/image/ab67616d0000b2737acd9268bbb13eff5eb65c23,1,6,200893,https://p.scdn.co/mp3-preview/134dd64b86a65e14aa19a8a6c97469c4d7117f20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC17909357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.569,0.636,6.0,-8.169,0.0,0.033,0.0239,3.18e-06,0.0573,0.798,116.055,4.0,,Universal Music Group,"C © 1999 Geffen Records, P ℗ 1999 Geffen Records",4777 +4778,spotify:track:1a1r5s7ivXUVQQrIvo5VSs,Love Me Again,spotify:artist:34v5MVKeQnIo0CWYMbbrPf,John Newman,spotify:album:3DAnhgU4IBAEaQQ9m2yHLi,Tribute,spotify:artist:34v5MVKeQnIo0CWYMbbrPf,John Newman,2013-01-01,https://i.scdn.co/image/ab67616d0000b273e1c5c70a17902baeb207f6b0,1,2,239894,https://p.scdn.co/mp3-preview/d93764618dc3778f36fb12ae7e6160600506e187?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71301538,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.5,0.892,2.0,-4.714,0.0,0.0433,0.00445,0.000422,0.0969,0.233,126.019,4.0,,Universal Music Group,"C © 2013 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2013 Universal Island Records, a division of Universal Music Operations Limited",4778 +4779,spotify:track:0Hf4aIJpsN4Os2f0y0VqWl,Feel This Moment (feat. Christina Aguilera),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS","Pitbull, Christina Aguilera",spotify:album:2F7tejLHzTqFq2XLol9ZGy,Global Warming: Meltdown (Deluxe Version),spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2012,https://i.scdn.co/image/ab67616d0000b273f2486b438645e97b523e4f90,1,3,229506,https://p.scdn.co/mp3-preview/deb34682637ed436b1d85841d7ac385541a1225c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USRC11201328,spotify:user:bradnumber1,2022-11-16T13:23:32Z,"dance pop,miami hip hop,pop,dance pop,pop",0.673,0.758,7.0,-3.632,1.0,0.158,0.039,0.0,0.341,0.542,135.956,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",4779 +4780,spotify:track:0HZhYMZOcUzZKSFwPOti6m,jar of hearts,spotify:artist:7H55rcKCfwqkyDFH9wpKM6,Christina Perri,spotify:album:3XNK8vPk3O1rjhDZyOMJ6n,lovestrong.,spotify:artist:7H55rcKCfwqkyDFH9wpKM6,Christina Perri,2011-05-10,https://i.scdn.co/image/ab67616d0000b27326a2f5224465a369f8abbf88,1,5,246587,https://p.scdn.co/mp3-preview/c9c3a5b998035b9c85726857683c7cd1a37167d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT21001508,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.349,0.348,3.0,-6.142,1.0,0.0316,0.726,0.0,0.12,0.0886,74.541,4.0,,Atlantic Records,"C © 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4780 +4781,spotify:track:53eJFr4Mfbw5PXJ01K6cFw,Daughter - Remastered,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:3BSOiAas8BpJOii3kCPyjV,Vs.,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,1993-10-19,https://i.scdn.co/image/ab67616d0000b273777344aba9d5b5785b4593a5,1,3,234333,https://p.scdn.co/mp3-preview/78311745e8fc6229d80ee4bd44e45738ca20d93b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USSM11100214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.615,0.702,7.0,-9.686,1.0,0.0278,0.00746,0.00431,0.0608,0.734,96.987,4.0,,Epic/Legacy,"P (P) 1993, 2011 Sony Music Entertainment",4781 +4782,spotify:track:2zaUUlQqyUUP0fehfvLuHz,Tucker's Daughter,spotify:artist:4RMdsc21y0aET1OCm32h1u,Ian Moss,spotify:album:2Pp2u2e1UeWgIeyimPVsxD,Matchbook,spotify:artist:4RMdsc21y0aET1OCm32h1u,Ian Moss,1989,https://i.scdn.co/image/ab67616d0000b2731828d3fbc34e04f33df33450,1,1,274866,https://p.scdn.co/mp3-preview/2198e30aa743bc146f28f56ca43cf57b32642d40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUWA00900760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian rock",0.639,0.861,10.0,-11.31,0.0,0.0435,0.221,0.0,0.0525,0.824,133.268,4.0,,WM Australia,"C © 1989 Warner Music Australia Pty Limited, P ℗ 1989 Warner Music Australia Pty Limited",4782 +4783,spotify:track:5lA3pwMkBdd24StM90QrNR,P.Y.T. (Pretty Young Thing),spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:1C2h7mLntPSeVYciMRTF4a,Thriller 25 Super Deluxe Edition,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2008-02-08,https://i.scdn.co/image/ab67616d0000b2734121faee8df82c526cbab2be,1,8,238733,https://p.scdn.co/mp3-preview/d692f3799ca86b3689946fa39dda52dbd9c574ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM19902993,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.888,0.816,11.0,-4.909,0.0,0.0404,0.233,0.00042,0.127,0.961,127.276,4.0,,Epic/Legacy,"P (P) 1982, 2001, 2008 MJJ Productions Inc.",4783 +4784,spotify:track:2qeYY4SxrPLyGCdCXL6tbg,Horror Movie - 2009 Remaster,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,spotify:album:32i7Qwqgg3Kd1qlmXWc1rH,Living In The 70's - 2009 Remaster,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,1974,https://i.scdn.co/image/ab67616d0000b273ff788288e4e06310084f63ab,1,4,227720,https://p.scdn.co/mp3-preview/c2f73e779afea9b3163368da2ec4adda22034f2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUFE00900026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.687,0.661,9.0,-6.654,1.0,0.0979,0.282,3.17e-05,0.193,0.15,140.501,4.0,,WM Australia,"C © 1974 Mushroom Records Pty Limited, P ℗ 1974 Mushroom Records Pty Limited",4784 +4785,spotify:track:7hzY0LHz8KdEr1PowHhbdu,Shake Your Groove Thing,spotify:artist:6qI4LTzMRpTxRzMZPvv2C6,Peaches & Herb,spotify:album:0qf42mS1W0tr6L7yaGor0Y,2 Hot!,spotify:artist:6qI4LTzMRpTxRzMZPvv2C6,Peaches & Herb,1978,https://i.scdn.co/image/ab67616d0000b27366ade54d4c31ad2d4fcc6021,1,2,346133,https://p.scdn.co/mp3-preview/fdc3b8fdfc69e142576e9225f31a6164d04be9c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USF067825160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,post-disco,quiet storm,soul",0.867,0.73,9.0,-6.605,1.0,0.0496,0.45,0.0143,0.0817,0.917,132.57,4.0,,"Universal Records, a Division of UMG Recordings, Inc.","C (C) 1978 Universal Records, a Division of UMG Recordings, Inc., P (P) 1978 Universal Records, a Division of UMG Recordings, Inc.",4785 +4786,spotify:track:5Q30xdABnojqN3wBIhrsQp,Everybody Hurts,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,spotify:album:3ImeTxETbPlg8S6cFNlova,Automatic For The People,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,1992-10-05,https://i.scdn.co/image/ab67616d0000b27348692187909ed3418b7bacf2,1,4,320266,https://p.scdn.co/mp3-preview/23bc35da41a99d4f3a686ac24d4da5305a4cdfc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB19901548,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,athens indie,permanent wave,rock",0.303,0.319,2.0,-10.435,1.0,0.0282,0.65,0.0306,0.114,0.178,188.348,3.0,,Universal Music Group,"C © 1992 R.E.M./Athens L.L.C., under exclusive license to Concord Music Group, Inc., P ℗ 1992 R.E.M./Athens L.L.C., under exclusive license to Concord Music Group, Inc.",4786 +4787,spotify:track:2kNYcE79Yu778nqdOgBHEb,Will You Love Me Tomorrow,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,spotify:album:2Dlx1iEoprySbpvRIXtZQv,The Best Of The Shirelles,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,1984,https://i.scdn.co/image/ab67616d0000b273d1ae445ca6316d04b755aed5,1,4,162893,https://p.scdn.co/mp3-preview/9d453033b0eec2e9ecd5a396e85d4d4353b53f36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,doo-wop,motown,rock-and-roll,soul",0.49,0.384,0.0,-11.315,1.0,0.0275,0.438,3.17e-05,0.539,0.47,137.047,4.0,,Scepter Records,"C 2017 Gusto Records Inc., P 1984 Gusto Records Inc.",4787 +4788,spotify:track:0J6mQxEZnlRt9ymzFntA6z,Livin' On A Prayer,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:5uU2uM1RGHfzlA12opjqol,Slippery When Wet,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1986-01-01,https://i.scdn.co/image/ab67616d0000b273ebfe4419da90f76a5b278564,1,3,249293,https://p.scdn.co/mp3-preview/2a84c209d6bfe17da820bbc28d1e610a5d304a53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USPR38619998,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.534,0.887,0.0,-3.777,1.0,0.0345,0.0768,9.93e-05,0.325,0.72,122.494,4.0,,Universal/Island Def Jam,"C © 1986 The Island Def Jam Music Group, P ℗ 1986 The Island Def Jam Music Group",4788 +4789,spotify:track:5qkdkjXxKp0z8VvMORjUAG,"Go, Jimmy, Go",spotify:artist:2XZXvrqedRMiKv6UWjAT4B,Jimmy Clanton,spotify:album:4GOtaKr5OwfIpd2F0W6HOB,"Go, Jimmy, Go",spotify:artist:2XZXvrqedRMiKv6UWjAT4B,Jimmy Clanton,2017-03-01,https://i.scdn.co/image/ab67616d0000b273f246eaf0bd7fa7fc4137c594,1,1,128888,https://p.scdn.co/mp3-preview/eeda242e36b92cf23b5f09ccc17a168b41006318?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DETL61610888,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep adult standards,doo-wop,rhythm and blues,rock-and-roll,swamp pop",0.502,0.731,0.0,-7.413,1.0,0.0444,0.76,0.0,0.103,0.875,137.36,4.0,,American Popsongs,"C 2016 American Popsongs, P 2016 American Popsongs",4789 +4790,spotify:track:40LQiUUUKXVGyNs09lHVjW,Lips Of An Angel,spotify:artist:6BMhCQJYHxxKAeqYS1p5rY,Hinder,spotify:album:2SmDuZSWtjukp9gkG2mcBQ,Extreme Behavior,spotify:artist:6BMhCQJYHxxKAeqYS1p5rY,Hinder,2005-01-01,https://i.scdn.co/image/ab67616d0000b273395bf2151b99ef7f8b3116b5,1,8,261853,https://p.scdn.co/mp3-preview/1cb981bd31abec3a21858f6a169cd739abc41a3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USUM70503185,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge",0.476,0.736,2.0,-5.38,1.0,0.0343,0.0217,1.08e-06,0.203,0.251,129.084,4.0,,Universal Records,"C © 2005 Universal Records, a Division of UMG Recordings Inc and Disturbing Tha Peace Records Inc., P ℗ 2005 Universal Records, a Division of UMG Recordings Inc and Disturbing Tha Peace Records Inc.",4790 +4791,spotify:track:2Oehrcv4Kov0SuIgWyQY9e,Demons,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:1vAEF8F0HoRFGiYOEeJXHW,Night Visions (Deluxe),spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273dee648abe19dd6e10902c4ae,1,4,175200,https://p.scdn.co/mp3-preview/dffa47dbbfe06cff32e8b676e66e7d50ad358ca7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USUM71201071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.327,0.71,3.0,-2.928,1.0,0.0547,0.202,9e-05,0.28,0.416,179.561,4.0,,Universal Music Group,"C © 2013 KIDinaKORNER/Interscope Records, P ℗ 2013 KIDinaKORNER/Interscope Records",4791 +4792,spotify:track:2CY0ijmcivcrupPLn0KYls,Lana,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:21REQ6X34DCAcoxtj654TI,Crying,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,1962-01-01,https://i.scdn.co/image/ab67616d0000b2732b150c08d3c57a785b02c578,1,8,137200,https://p.scdn.co/mp3-preview/0170c2019b552cb63c6274b66d96e304f16ac355?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USSM16101245,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.688,0.524,1.0,-10.485,0.0,0.0292,0.698,0.00824,0.568,0.917,94.604,4.0,,Columbia Nashville Legacy,P Originally released 1962. All rights reserved by Sony Music Entertainment,4792 +4793,spotify:track:5v4sZRuvWDcisoOk1PFv6T,Bloodstream,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:1xn54DMo2qIqBuMqHtUsFd,x (Deluxe Edition),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2014-06-21,https://i.scdn.co/image/ab67616d0000b27313b3e37318a0c247b550bccd,1,7,300253,https://p.scdn.co/mp3-preview/ef55bc7502630f64512534026e7b80580a14875e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBAHS1400095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.66,0.316,3.0,-11.567,0.0,0.0364,0.529,0.000294,0.104,0.543,91.207,4.0,,Atlantic Records UK,"C © 2014 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 Asylum Records UK, a Warner Music UK Company, except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",4793 +4794,spotify:track:094RugjgLW6CdPLOJctBZ3,Boom Clap,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,spotify:album:2fGpw56D35My0c82eNfKJF,SUCKER,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,2015-02-09,https://i.scdn.co/image/ab67616d0000b2732a7f876dbed7f7ae56edba22,1,6,169866,https://p.scdn.co/mp3-preview/9ace654d50ca2e58e36cf23ec42c432196def289?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBAHS1400160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,candy pop,metropopolis,pop,uk pop",0.659,0.911,4.0,-2.28,1.0,0.0786,0.154,0.000304,0.191,0.576,91.999,4.0,,Asylum,"C © 2014 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company, P ℗ 2014 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company",4794 +4795,spotify:track:6xCNYRfzZtoQRo1xruPmNq,Problem,"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:5yG7ZAZafVaAlMTeBybKAL","Ariana Grande, Iggy Azalea",spotify:album:5AMOKSM1ftb3opIbGT2d4q,My Everything (Deluxe),spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2014-08-22,https://i.scdn.co/image/ab67616d0000b273be58cd5a2dbe92c2b43cc713,1,2,193920,https://p.scdn.co/mp3-preview/1edf67d05cf19de530fb50c5dc74e1b192578661?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71405403,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,australian hip hop,dance pop,pop",0.66,0.805,1.0,-5.352,0.0,0.153,0.0192,8.83e-06,0.159,0.625,103.009,4.0,,Universal Music Group,"C © 2014 Republic Records, a division of UMG Recordings, Inc., P ℗ 2014 Republic Records, a division of UMG Recordings, Inc.",4795 +4796,spotify:track:5K7AMlpc4796JRWXb26nCV,I'll Be,spotify:artist:0L6Gwm0JDrgIQJfjarWSUR,Edwin McCain,spotify:album:1JB1Zvcddt81PiipQQC319,Misguided Roses,spotify:artist:0L6Gwm0JDrgIQJfjarWSUR,Edwin McCain,1997,https://i.scdn.co/image/ab67616d0000b273e1076bcd33dbf8d74f88e4a9,1,4,266533,https://p.scdn.co/mp3-preview/fc999d35138648fc3645e6da9eaa0691cb32b16e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USAT29700005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock",0.371,0.609,11.0,-5.524,1.0,0.0295,0.386,0.0,0.104,0.426,136.526,3.0,,Rhino Atlantic,"C © 1997 Atlantic Recording Corp., P ℗ 1997 Atlantic Recording Corp. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",4796 +4797,spotify:track:1aJtdcYdncvyNrVKCcj0eD,Shandi,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,spotify:album:3PlYLejxpxhtJcynfE08vE,Unmasked,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,1980-05-20,https://i.scdn.co/image/ab67616d0000b27323d04b20480a3ed0809d36ab,1,2,216866,https://p.scdn.co/mp3-preview/0e15da87c8a2dc8e691bb22f10b9bddf38d261b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USMR18010005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,hard rock,rock",0.533,0.771,4.0,-6.512,1.0,0.028,0.0883,0.0,0.0428,0.853,103.262,4.0,,Casablanca Records,"C © 1997 Kiss Catalog, Ltd., P ℗ 1980 The Island Def Jam Music Group",4797 +4798,spotify:track:7vur3M2Dinfhod8CO0AA06,Angels Brought Me Here,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:0f8Xtk0NDPGz4PpwlzEMBT,Twenty Ten,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2010-11-19,https://i.scdn.co/image/ab67616d0000b2739b9984688fe057a6af29d60e,1,6,240093,https://p.scdn.co/mp3-preview/40cfb9c452b694f7443258c6daaa9e2cad1b3cd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUBM00347701,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.553,0.415,7.0,-6.595,1.0,0.0279,0.123,0.0,0.0965,0.26,130.111,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd.,4798 +4799,spotify:track:3xZfgZ2RxqZ76gYmU8rgKy,Yesterday Once More,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:0wBP8GaN80GPolmY8M19em,Classic Carpenters,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2016-04-22,https://i.scdn.co/image/ab67616d0000b273e0883bb3ac31d595172c0a82,1,3,242200,https://p.scdn.co/mp3-preview/57ae650637df9bd38fb8d5f1b6c712cd1d45a101?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUBM01600040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.313,0.413,7.0,-7.043,1.0,0.0289,0.671,4.15e-06,0.127,0.264,173.83,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,4799 +4800,spotify:track:5liQj4sVRmEEESvvcb64o8,Wearing My Rolex - Radio Edit,spotify:artist:7k9T7lZlHjRAM1bb0r9Rm3,Wiley,spotify:album:6jyCINx0IQwks3MnchgcOR,See Clear Now,spotify:artist:7k9T7lZlHjRAM1bb0r9Rm3,Wiley,2008-11-10,https://i.scdn.co/image/ab67616d0000b2730265fb96ccfadb41cbd0cc71,1,2,170480,https://p.scdn.co/mp3-preview/150e97b7e47626e574bd1406d55aa60d5e69eead?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAHS0800120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grime,uk dancehall,uk hip hop",0.876,0.716,1.0,-6.884,1.0,0.135,0.0468,0.000482,0.0667,0.755,131.942,4.0,,Atlantic Records UK,"C © 2008 Warner Music UK Limited, P ℗ 2008 Warner Music UK Limited",4800 +4801,spotify:track:7MRyJPksH3G2cXHN8UKYzP,American Girl,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:6TLTd0P2CUI0Q29AQ1LyFi,Tom Petty & The Heartbreakers,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,1976-11-09,https://i.scdn.co/image/ab67616d0000b2730e8f67afe794200ccb01ac73,1,10,214733,https://p.scdn.co/mp3-preview/4b57b25e821e59d606538aa963ea63ea828ae9bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USMC17641688,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.55,0.824,2.0,-5.988,1.0,0.0334,0.448,0.000127,0.366,0.777,114.512,4.0,,Rhino/Warner Records,"C © 1976 Gone Gator Records, P ℗ 1976 Gone Gator Records",4801 +4802,spotify:track:5WvAo7DNuPRmk4APhdPzi8,No Brainer,"spotify:artist:0QHgL1lAIqAw0HtD7YldmP, spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0VRj0yCOv2FXJNP47XQnx5, spotify:artist:1anyVhU62p31KFi8MEzkbf","DJ Khaled, Justin Bieber, Quavo, Chance the Rapper",spotify:album:02drHFQa59AoJWU6DXSSjd,No Brainer,"spotify:artist:0QHgL1lAIqAw0HtD7YldmP, spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0VRj0yCOv2FXJNP47XQnx5","DJ Khaled, Justin Bieber, Quavo",2018-07-27,https://i.scdn.co/image/ab67616d0000b273675b26746823f1049dc39342,1,1,260000,https://p.scdn.co/mp3-preview/ca155bc7dbbb26f01ff11228ab65dc7b5d6722f9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,60,USSM11806283,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,miami hip hop,pop rap,rap,canadian pop,pop,atl hip hop,melodic rap,rap,trap,chicago rap,conscious hip hop,hip hop,pop rap,rap,trap",0.552,0.76,0.0,-4.706,1.0,0.342,0.0733,0.0,0.0865,0.639,135.702,5.0,,Epic/We The Best,"P (P) 2018 Epic Records, a division of Sony Music Entertainment",4802 +4803,spotify:track:0R8AELdcEW3HIb4QzpWZdR,Swingin' School,spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,spotify:album:0VXuhIf2sm4plEZkEv84Wm,Greatest Hits,spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,2015-02-01,https://i.scdn.co/image/ab67616d0000b273812864f2b2bc4dd66e8cd7d1,1,14,135560,https://p.scdn.co/mp3-preview/75827d71cde92dd712d602d59f959479c7a1edc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM6N21454286,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,merseybeat,rock-and-roll",0.528,0.756,5.0,-5.497,1.0,0.0328,0.554,0.0,0.086,0.967,150.364,3.0,,Rockabilly Records,C (C) 2015 Rockabilly Records,4803 +4804,spotify:track:1w6R4C1WQYRHCKLq1FBuIs,Agadoo,spotify:artist:1QHjQhUk1uAo0IjVFl5BUm,Black Lace,spotify:album:4u7OFJ96UYQtu53rHZ89EQ,What a Party!,spotify:artist:1QHjQhUk1uAo0IjVFl5BUm,Black Lace,1998-09-07,https://i.scdn.co/image/ab67616d0000b2736e0448c2e88c3e01788d9e9a,1,1,189293,https://p.scdn.co/mp3-preview/0f50ac319eebf80d28e4601a47acebce2dd7ab06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,DK5C50078191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,football,0.619,0.955,4.0,-6.381,1.0,0.0324,0.00548,0.0,0.0433,0.952,131.988,4.0,,Music Manager,"C 1998 John Wagstaff, under exclusive license to Music Manager, P 1998 John Wagstaff, under exclusive license to Music Manager",4804 +4805,spotify:track:3IRovqSVYx3CNtDWRebsET,Alive - 2006 Remaster,spotify:artist:6KO6G41BBLTDNYOLefWTMU,P.O.D.,spotify:album:1i3YXOzNkaykTt6CxWGOOU,Greatest Hits (The Atlantic Years),spotify:artist:6KO6G41BBLTDNYOLefWTMU,P.O.D.,2006-10-27,https://i.scdn.co/image/ab67616d0000b273e01ea2023dc5e7316a44267f,1,5,203693,https://p.scdn.co/mp3-preview/49e1734d9d5522ada991d08141f2c8e24d61b5f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT20621525,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,rap metal,rap rock",0.409,0.952,2.0,-3.761,0.0,0.0756,1.23e-05,0.000156,0.31,0.55,80.899,4.0,,Rhino Atlantic,"C © 2006 Rhino Entertainment Company, a Warner Music Group company, P ℗ 2006 Rhino Entertainment Company, a Warner Music Group company",4805 +4806,spotify:track:6Iocm6VMu6bVNYwiDoyQFW,Coming Home,"spotify:artist:2QYEvpsWUOjqaYuxDPTCmV, spotify:artist:4utLUGcTvOJFr6aqIJtYWV","Diddy - Dirty Money, Skylar Grey",spotify:album:2psjRixnoePs8ZqE8cuU5Z,Last Train To Paris,spotify:artist:2QYEvpsWUOjqaYuxDPTCmV,Diddy - Dirty Money,2010-01-01,https://i.scdn.co/image/ab67616d0000b2730b1cfc3df4d9d5d4cbce9208,1,15,238693,https://p.scdn.co/mp3-preview/2f9894c946f3f89d87653991d6c428da7335afc7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM71027542,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,piano rock,viral pop",0.392,0.839,7.0,-1.921,1.0,0.193,0.158,0.0,0.3,0.232,168.001,4.0,,Bad Boy / Interscope,"C © 2010 Bad Boy/Interscope Records, P ℗ 2010 Bad Boy/Interscope Records",4806 +4807,spotify:track:1YW369EbVyjpeLE3YbsjKQ,Love My Life,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:002H8sA77XFikjH4kbPaph,The Heavy Entertainment Show (Deluxe),spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2016-11-04,https://i.scdn.co/image/ab67616d0000b2730f7ea7d45b75a3dabac59140,1,4,208320,https://p.scdn.co/mp3-preview/8b275787f2d6529f7ae41567a65e09194b08af00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBPS61600023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.543,0.686,10.0,-7.061,1.0,0.0285,0.00601,5.23e-06,0.133,0.375,95.995,4.0,,Columbia,P (P) 2016 Robert Williams/Farrell Music Limited,4807 +4808,spotify:track:252YuUdUaC5OojaBU0H1CP,Come A Little Bit Closer,spotify:artist:0DAqhikcMKLo2lPADVz2fs,Jay & The Americans,spotify:album:0LMJo3p9QqRjaap3qvlTY6,Come A Little Bit Closer: The Best Of Jay & The Americans,spotify:artist:0DAqhikcMKLo2lPADVz2fs,Jay & The Americans,1964,https://i.scdn.co/image/ab67616d0000b2733fb91f6d6c412ef519dd3dee,1,9,166666,https://p.scdn.co/mp3-preview/05dcfc937c53e8a6906936197012dbd282eeddc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USEM38500084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,doo-wop,merseybeat,rock-and-roll",0.636,0.684,3.0,-9.302,1.0,0.057,0.52,0.0015,0.534,0.881,132.509,4.0,,Capitol Records,"C © 2005 Capitol Records, LLC, P This Compilation ℗ 2005 Capitol Records, LLC",4808 +4809,spotify:track:1pHPpLVH2XEN0xYRoQs4wq,Word Up!,spotify:artist:3RNrq3jvMZxD9ZyoOZbQOD,Korn,spotify:album:1L9iPuSu8FZFaFzzqHQarF,Word Up! (The Remixes),spotify:artist:3RNrq3jvMZxD9ZyoOZbQOD,Korn,2004-11-16,https://i.scdn.co/image/ab67616d0000b273d28bc84c691163fb094787fa,1,1,172666,https://p.scdn.co/mp3-preview/2650a4d7de64834ec27f3542517c289dccb4fc6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM10411917,spotify:user:bradnumber1,2022-05-03T23:07:45Z,"alternative metal,funk metal,hard rock,nu metal,post-grunge,rap metal,rock",0.577,0.94,6.0,-4.439,0.0,0.0361,2.42e-05,0.0715,0.347,0.818,116.045,4.0,,Epic/Legacy,"P (P) 2004 Epic Records, a division of Sony Music Entertainment",4809 +4810,spotify:track:75PXvu3SRur4rQyMYoBmAK,Pretty Little Angel Eyes - Remastered,spotify:artist:2CM4LFqAr2MS4rIp25pxfg,Curtis Lee,spotify:album:2P5eD1yMfVgPlnBYyjOeJx,"Caravana Musical, Vol. 4",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-01-10,https://i.scdn.co/image/ab67616d0000b273a86ef15ab23c6bee09433f9a,2,10,163973,https://p.scdn.co/mp3-preview/578ed6601df0b6f128e181e003aa9945384c53d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ES6341700085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.604,0.652,1.0,-4.899,0.0,0.0482,0.314,0.0,0.257,0.93,106.384,4.0,,Rama Lama Music,C (C) 2017 Rama Lama Music,4810 +4811,spotify:track:0pn6qyOJYNwP9nhGg3L7dV,Somebody,"spotify:artist:2qdONMCoDngQk0eV4Avs1i, spotify:artist:3KV3p5EY4AvKxOlhGHORLg","Natalie La Rose, Jeremih",spotify:album:3GD5rN7BaRG8kg63Xse1To,Somebody,spotify:artist:2qdONMCoDngQk0eV4Avs1i,Natalie La Rose,2014-01-06,https://i.scdn.co/image/ab67616d0000b273e90c069a275e75859c23b8fc,1,1,189906,https://p.scdn.co/mp3-preview/0a397289ea531d6a280fa7430789ea40c720fb75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71417961,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,pop rap,r&b,southern hip hop,trap,urban contemporary",0.845,0.534,0.0,-8.722,1.0,0.0385,0.00108,1.18e-05,0.0689,0.726,104.972,4.0,,Universal Music Group,"C © 2015 Republic Records, a division of UMG Recordings, Inc., P ℗ 2015 Republic Records, a division of UMG Recordings, Inc.",4811 +4812,spotify:track:5QO79kh1waicV47BqGRL3g,Save Your Tears,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:4yP0hdKOZPNshxUOjY0cZj,After Hours,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2020-03-20,https://i.scdn.co/image/ab67616d0000b2738863bc11d2aa12b54f5aeb36,1,11,215626,https://p.scdn.co/mp3-preview/4bb5ee4441a2342502372f80f78a92cf3fe22549?cid=9950ac751e34487dbbe027c4fd7f8e99,True,84,USUG12000658,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.679,0.825,0.0,-5.487,1.0,0.0309,0.0212,1.21e-05,0.543,0.644,118.049,4.0,,Republic Records,"C © 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.",4812 +4813,spotify:track:3tYksAuEMrfk2t9kYjJs2h,The Boys Of Summer,"spotify:artist:4z4m1P0iX2nRSPDBEZ8LBT, spotify:artist:7ugN9bU7x54gVI2295brJF, spotify:artist:1yHQHPrgaF1Oe8LuYgBW8a","DJ Sammy, Loona, Mel",spotify:album:15UjVcCwrMwAEPzAoVrZ55,Heaven,spotify:artist:4z4m1P0iX2nRSPDBEZ8LBT,DJ Sammy,2002-08-06,https://i.scdn.co/image/ab67616d0000b273b9dd37fb0442b61faf252ab7,1,4,295560,https://p.scdn.co/mp3-preview/154f03098681bfff10aeb73218d358032622a189?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USRE50200431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,bubblegum dance",0.568,0.866,6.0,-5.352,1.0,0.0275,0.025,0.000143,0.202,0.558,144.961,4.0,,Robbins Entertainment LLC,"C (C) 2002 Robbins Entertainment LLC, P (P) 2002 Robbins Entertainment LLC",4813 +4814,spotify:track:0EDFJsD9zRaegdT8UAwCy1,Alisha Rules The World,spotify:artist:43lLY3aEg3yQz8sYhyvdn5,Alisha's Attic,spotify:album:6jFcmuubDjnganfQrvdHDs,Alisha Rules The World,spotify:artist:43lLY3aEg3yQz8sYhyvdn5,Alisha's Attic,1996-01-01,https://i.scdn.co/image/ab67616d0000b27313fd44e9f2ef9d47f4f517ce,1,4,272266,https://p.scdn.co/mp3-preview/b797e0c3c322a190caf824fe8f29d6f37ae38828?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBF089601269,spotify:user:bradnumber1,2022-08-26T01:28:26Z,"candy pop,new wave pop",0.72,0.877,9.0,-4.923,1.0,0.0347,0.202,0.0,0.375,0.929,104.16,4.0,,EMI,"C © 1996 Mercury Records Limited, P ℗ 1996 Mercury Records Limited",4814 +4815,spotify:track:3SHSWxOXqCrw55LiXAB8J1,I'm Gonna Be Alright (feat. Nas),"spotify:artist:2DlGxzQSjYe5N6G9nkYghR, spotify:artist:20qISvAhX20dpIbOOzGK3q, spotify:artist:6v0jNVxRKCvjwXIU2SuqKo, spotify:artist:7M8EwIpyu0mZ9oA8sqcsWj","Jennifer Lopez, Nas, Cory Rooney, Poke and Tone",spotify:album:1l8TpRDfjJjKdtbzNtSycM,This Is Me...Then,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2002,https://i.scdn.co/image/ab67616d0000b273a1bf4c1efc808162ac95090f,1,13,172240,https://p.scdn.co/mp3-preview/c96fc706388d7ae2a2be230119b743bb7aad5560?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USSM10203144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,conscious hip hop,east coast hip hop,gangster rap,hardcore hip hop,hip hop,queens hip hop,rap",0.718,0.69,10.0,-4.382,0.0,0.265,0.106,0.0,0.271,0.774,93.401,4.0,,Epic,P (P) 2002 Sony Music Entertainment Inc.,4815 +4816,spotify:track:15JINEqzVMv3SvJTAXAKED,Love The Way You Lie,"spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Eminem, Rihanna",spotify:album:47BiFcV59TQi2s9SkBo2pb,Recovery,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2010-06-18,https://i.scdn.co/image/ab67616d0000b273c08d5fa5c0f1a834acef5100,1,15,263373,https://p.scdn.co/mp3-preview/3824afd426e7ebbba4e107f811f7506ea3416db0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,83,USUM71015397,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap,barbadian pop,pop,urban contemporary",0.749,0.925,10.0,-5.034,1.0,0.227,0.241,0.0,0.52,0.641,86.989,4.0,,Aftermath,"C © 2010 Aftermath Records, P ℗ 2010 Aftermath Records",4816 +4817,spotify:track:7hfhtzSwQ8TtomJFFLLNwc,The Perfect Day,spotify:artist:3fRV5Jo7lNKhRSx4C3sLMZ,Fischer-Z,spotify:album:6GWFdmFPmJdEWVnqWNzGuP,Reveal,spotify:artist:3fRV5Jo7lNKhRSx4C3sLMZ,Fischer-Z,1987-10-19,https://i.scdn.co/image/ab67616d0000b273d5c8a4ab651b65921f9235db,1,1,261226,https://p.scdn.co/mp3-preview/836aec8d9e179ed4beed3fc1441329008829495c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCDM8410001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,zolo,0.63,0.85,4.0,-9.867,1.0,0.0345,0.263,0.000316,0.115,0.87,149.93,4.0,,BMG Rights Management GmbH,"C © 1987 John Watts under exclusive license to BMG Rights Management GmbH, P ℗ 1987 John Watts under exclusive license to BMG Rights Management GmbH",4817 +4818,spotify:track:7ytR5pFWmSjzHJIeQkgog4,ROCKSTAR (feat. Roddy Ricch),"spotify:artist:4r63FhuTkUYltbVAg5TQnk, spotify:artist:757aE44tKEUQEqRuT6GnEB","DaBaby, Roddy Ricch",spotify:album:623PL2MBg50Br5dLXC9E9e,BLAME IT ON BABY,spotify:artist:4r63FhuTkUYltbVAg5TQnk,DaBaby,2020-04-17,https://i.scdn.co/image/ab67616d0000b27320e08c8cc23f404d723b5647,1,7,181733,https://p.scdn.co/mp3-preview/72babd91d3e74ef7e967d57bb46f9fe217be9320?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USUM72007941,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,north carolina hip hop,pop rap,rap,trap,melodic rap,rap,trap",0.746,0.69,11.0,-7.956,1.0,0.164,0.247,0.0,0.101,0.497,89.977,4.0,,South Coast Music Group/Interscope Records,"C © 2020 Interscope Records, P ℗ 2020 Interscope Records",4818 +4819,spotify:track:6N7gPTru90HYLRUIVDQ185,More Than This,spotify:artist:3fhOTtm0LBJ3Ojn4hIljLo,Roxy Music,spotify:album:3JXODSjT9mUz2lIb4YIErw,Avalon,spotify:artist:3fhOTtm0LBJ3Ojn4hIljLo,Roxy Music,1982-05-01,https://i.scdn.co/image/ab67616d0000b273c7972702cff224328b39f8a6,1,1,270651,https://p.scdn.co/mp3-preview/15929aedfa5e49626b187576e18f901303b31948?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBAAA9900092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,glam rock,melancholia,new romantic,new wave,new wave pop,sophisti-pop",0.653,0.665,6.0,-7.806,1.0,0.025,0.0507,0.0461,0.139,0.755,128.503,4.0,,EG Records,"C © 1999 Virgin Records Limited, P ℗ 1999 Virgin Records Limited",4819 +4820,spotify:track:0yM1uqEoDMZ4qzHEMfnvgb,Footsteps,spotify:artist:271pvVqDFiREx6PqzwOX8p,Steve Lawrence,spotify:album:11UDFAap2iO6R6dQU8aySt,Footsteps,spotify:artist:271pvVqDFiREx6PqzwOX8p,Steve Lawrence,2006-01-20,https://i.scdn.co/image/ab67616d0000b2733fa0d5dfc190ec54cf65126d,1,1,127017,https://p.scdn.co/mp3-preview/80573baf0e5457ec074d01c4155109ab61dedc99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ZA42A1708468,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.499,0.378,5.0,-14.889,1.0,0.0361,0.779,1.39e-06,0.711,0.654,147.597,4.0,,TP4 Music,"C 2017 TP4 Music, P 2017 TP4 Music",4820 +4821,spotify:track:5x6EGByCHCfGtVCwg1Z1PG,Shout Shout (Knock Yourself Out),spotify:artist:0b9n4vhaTCuL23DoRJ1XHj,Ernie Maresca,spotify:album:5VyKvzMRm4syftBZM3qB5T,Shout! Shout! (Knock Yourself Out),spotify:artist:0b9n4vhaTCuL23DoRJ1XHj,Ernie Maresca,1962,https://i.scdn.co/image/ab67616d0000b273ec3c8114dc2a1f98f1361e65,1,1,130093,https://p.scdn.co/mp3-preview/8e8c288ca3cad8cb67f20bd7dbda97504d3872b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAFQ9300350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.654,0.721,8.0,-8.476,1.0,0.139,0.273,0.0,0.344,0.967,94.851,4.0,,President Records,"C 1993 President Records Ltd. London, England, P 1962 President Records Ltd.,London England",4821 +4822,spotify:track:719fGqEAqBb9J7WdDdIP6f,Loud,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:314DEYqtr3bYNvSPtZpVFE,What Matters The Most,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2009-05-01,https://i.scdn.co/image/ab67616d0000b273d81b8b0252c200994b2cfd0a,1,2,191960,https://p.scdn.co/mp3-preview/1e2cc228f76c895d922c89b1993cf8b53d539062?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUBM00700664,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,australian pop,australian rock",0.369,0.688,9.0,-4.328,1.0,0.0445,0.000293,4.36e-05,0.0764,0.181,173.963,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2009 Sony Music Entertainment Australia Pty Ltd.,4822 +4823,spotify:track:3fkGBJpICw9zqateHbV2Eg,Teenage Rampage,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,spotify:album:1jEk0k3VNGLcezveTCUFfU,Action! The Ultimate Story,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,2015-09-25,https://i.scdn.co/image/ab67616d0000b273725ba02a279ac666fb72978d,2,1,213520,https://p.scdn.co/mp3-preview/e60fbd3b1b69ed5afaf49962066b24f5053c1037?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,DEC767400021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam rock,hard rock",0.469,0.951,11.0,-5.093,1.0,0.194,0.049,0.00706,0.919,0.424,136.397,4.0,,RCA Records Label,P (P) 2015 Sony Music Entertainment Germany GmbH,4823 +4824,spotify:track:0h3A3hdDq762DzIOKUoF21,Heatseeker,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:5jfgUmvXCar7Qf5lidVkqI,Blow Up Your Video,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1988-02-01,https://i.scdn.co/image/ab67616d0000b2737d29629468b9a39131b6d718,1,1,230400,https://p.scdn.co/mp3-preview/84ffeaff65c7c83255d88df1fd371e40d2efcfb2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUAP08800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.372,0.873,8.0,-5.049,1.0,0.0426,0.00225,0.137,0.0638,0.481,159.991,4.0,,Columbia,P (P) 1988 Leidseplein Presse B.V.,4824 +4825,spotify:track:5eoEwktJ1CQrOBD8R6Dbcq,Not In That Way,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:0kJbDT8VGMScK8YDzNNvzV,In The Lonely Hour (Drowning Shadows Edition),spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2015-11-06,https://i.scdn.co/image/ab67616d0000b273a56534bde4ee3ca23b15a018,1,9,172452,https://p.scdn.co/mp3-preview/32cdf2f0ac611f6c65bfbee3e2cef248da8e1379?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71308838,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.392,0.15,2.0,-12.494,1.0,0.0322,0.94,0.0,0.116,0.296,144.268,3.0,,Universal Music Group,"C © 2015 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2015 Capitol Records, a division of Universal Music Operations Limited",4825 +4826,spotify:track:1bgKnEPujoiQzz0pc6gdt7,You Belong To Me,spotify:artist:6nYTjfJFNic9m83TROYHUS,The Duprees,spotify:album:0pcBefwnYyOH6eaRAQYIRZ,For Collectors Only,spotify:artist:6nYTjfJFNic9m83TROYHUS,The Duprees,1996-11-05,https://i.scdn.co/image/ab67616d0000b2731d6bc3c9cc277593ab53a1b9,1,1,170186,https://p.scdn.co/mp3-preview/937487d3a8533cd0abb6b4f0192471ad410a97de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USPB81010934,spotify:user:bradnumber1,2021-08-08T09:26:31Z,doo-wop,0.322,0.36,1.0,-8.429,1.0,0.0273,0.893,2.92e-06,0.0918,0.378,97.63,3.0,,Oldies.com,C (C) 2009 Oldies.com,4826 +4827,spotify:track:7g9nkMae9kLQ8pmUhQoSbX,Dogs Are Talking,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:16Eoc0fkUuk0lRTsdNo6i4,Beyond Salvation,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,1990-07-17,https://i.scdn.co/image/ab67616d0000b2732ac6f018fa75e22960af0949,1,3,203066,https://p.scdn.co/mp3-preview/a4c394513385312a74b8918ce0dae6200e4acfc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AULI00619850,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.511,0.693,2.0,-11.926,1.0,0.0337,0.0119,1.47e-05,0.338,0.906,166.773,4.0,,Bloodlines,"C 1990 Bloodlines, P 1990 Bloodlines",4827 +4828,spotify:track:2HYFX63wP3otVIvopRS99Z,Houdini,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:6Xuu2z00jxRPZei4IJ9neK,Houdini,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2024-05-31,https://i.scdn.co/image/ab67616d0000b273810603c94c9246379604cf1a,1,1,227239,https://p.scdn.co/mp3-preview/fbc02b088cac7def5bac093173f173577d27aeac?cid=9950ac751e34487dbbe027c4fd7f8e99,True,84,USUG12403398,spotify:user:bradnumber1,2024-06-25T09:03:35Z,"detroit hip hop,hip hop,rap",0.936,0.887,9.0,-2.76,0.0,0.0683,0.0292,1.88e-06,0.0582,0.889,127.003,4.0,,Shady/Aftermath/Interscope Records,"C © 2024 Marshall B. Mathers III, P ℗ 2024 Marshall B. Mathers III",4828 +4829,spotify:track:6eEih3sYE69plp2fCKZInS,When I Get Where I'm Going (feat. Dolly Parton) (feat. Dolly Parton),"spotify:artist:13YmWQJFwgZrd4bf5IjMY4, spotify:artist:32vWCbZh0xZ4o9gkz4PsEU","Brad Paisley, Dolly Parton",spotify:album:10XgYRGRtKApBh2P1K9yHS,Hits Alive,spotify:artist:13YmWQJFwgZrd4bf5IjMY4,Brad Paisley,2010-11-02,https://i.scdn.co/image/ab67616d0000b2736217585c07b7417999f03d92,1,6,246546,https://p.scdn.co/mp3-preview/f4b988a83bb3261ce041afb626744c8188a237b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USAN21000077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road,classic country pop,country,country dawn",0.497,0.462,0.0,-6.705,1.0,0.0269,0.443,0.0,0.111,0.21,85.973,4.0,,Arista Nashville,P (P) 2010 Sony Music Entertainment,4829 +4830,spotify:track:6H1Kjxu2NlJCMxg0Pay0Rd,Total Control,spotify:artist:6scOultrkXrQsClcbGKM7e,The Motels,spotify:album:4DTDui9VdOwPXkNjh5LejY,The Motels,spotify:artist:6scOultrkXrQsClcbGKM7e,The Motels,1979-01-01,https://i.scdn.co/image/ab67616d0000b273406fbe6276f0c61a40780ea1,1,3,354066,https://p.scdn.co/mp3-preview/fca8335fab1818aef8a4734e456eb89a93f481fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USCA29000080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic,new wave,new wave pop",0.758,0.287,2.0,-15.1,1.0,0.179,0.00445,0.0417,0.0627,0.636,166.401,4.0,,Capitol Records,"C © 1979 Capitol Records, LLC, P ℗ 1979 Capitol Records, LLC",4830 +4831,spotify:track:7AFQTSNKqlj6dAuygbAKda,Shes So Fine,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,spotify:album:2LTIOQBvQt6ubWJQiQSxS9,Easy,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,1965-01-01,https://i.scdn.co/image/ab67616d0000b2736f69cc280f4d0f6df3d2107e,1,7,126573,https://p.scdn.co/mp3-preview/8c0f1760d0d0a466408172d7b0f1b5a3cf6bb479?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06500006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,freakbeat,protopunk,psychedelic rock",0.449,0.726,11.0,-10.106,1.0,0.103,0.00268,1.16e-06,0.0785,0.952,166.352,4.0,,Albert Productions,"C © 1965 BMG AM Pty Ltd., P ℗ 1965 BMG AM Pty Ltd.",4831 +4832,spotify:track:1uUs2rFyx5cSfarZ3Qaftg,He Won't Go,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7n3QJc7TBOxXtlYh4Ssll8,21,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2011-01-19,https://i.scdn.co/image/ab67616d0000b273ba764098164f221484bcc309,1,6,278040,https://p.scdn.co/mp3-preview/08f3520ab7b922797beff86baffb4f20a0f95d15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1000353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.705,0.57,0.0,-7.045,0.0,0.0864,0.0223,0.0,0.0754,0.729,159.914,4.0,,XL Recordings,"C 2011 XL Recordings Ltd., P 2011 XL Recordings Ltd.",4832 +4833,spotify:track:59zWQR2wQnSlkG4xTTwY9d,Choir,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:2hUAylf7T3fSNbqZW5E8aO,Choir,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2019-05-31,https://i.scdn.co/image/ab67616d0000b27316b72294e1c0b718d71784ff,1,1,171437,https://p.scdn.co/mp3-preview/b8dce12186c62e10bb437cfbc59c87dbf7913cd6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUBM01900061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.653,0.709,5.0,-3.19,1.0,0.0656,0.0707,0.0,0.0878,0.671,87.01,4.0,,Sony Music Entertainment,P (P) 2019 Sony Music Entertainment Australia Pty Ltd,4833 +4834,spotify:track:7KdF7Zac5eC9jutk9Qret4,The Wire,spotify:artist:4Ui2kfOqGujY81UcPrb5KE,HAIM,spotify:album:7CzrzGbCwqT8Y43tvIUPBX,Days Are Gone (Deluxe Edition),spotify:artist:4Ui2kfOqGujY81UcPrb5KE,HAIM,2013-01-01,https://i.scdn.co/image/ab67616d0000b2735841140a46549b7e95202b9f,1,3,245800,https://p.scdn.co/mp3-preview/09f08d0e8e5cea5f6c8c0ba217812cc92f1bba1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBUM71304660,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis",0.548,0.632,2.0,-5.569,1.0,0.145,0.0126,4.95e-06,0.0769,0.535,113.682,4.0,,Polydor Records,"C © 2013 HAIM Productions Inc., under exclusive licence to Polydor Records, a division of Universal Music Operations Ltd, P ℗ 2013 HAIM Productions Inc., under exclusive licence to Polydor Records, a division of Universal Music Operations Ltd",4834 +4835,spotify:track:7o9PkTfxL0Mm7gk3Bp98hv,I See You Baby (feat. Gramma Funk) - Fatboy Slim Radio Edit,"spotify:artist:67tgMwUfnmqzYsNAtnP6YJ, spotify:artist:09dzhikZDQAWGs8jyIylqj","Groove Armada, Gramma Funk",spotify:album:4gAC6u1x2Bld7EBhJppCnQ,Groove Armada Greatest Hits,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2017-09-21,https://i.scdn.co/image/ab67616d0000b2732aa2ad150b13e8703233fe8d,1,3,244706,https://p.scdn.co/mp3-preview/c17d6fbbab9d8ba0a60f4d045e6cd19d8f30c996?cid=9950ac751e34487dbbe027c4fd7f8e99,True,49,GBAHK9900141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,nu skool breaks,trip hop",0.572,0.992,1.0,-5.43,1.0,0.233,0.073,0.00065,0.18,0.472,129.997,4.0,,Columbia,P This compilation (P) 2007 Sony Music Entertainment UK Limited,4835 +4836,spotify:track:06yREZ9X92R2e9RJpdzZ2O,Nutbush City Limits,spotify:artist:1ZikppG9dPedbIgMfnfx8k,Ike & Tina Turner,spotify:album:6FkWiSUX7YAdxOlHPrIzMj,Tina!,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,2008-09-30,https://i.scdn.co/image/ab67616d0000b2736f797e607164ef94ab773398,1,16,181533,https://p.scdn.co/mp3-preview/47aab4270b346d46f0b9d04c8b75554ca3d87c9e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USEM37300029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,rock-and-roll,soul,southern soul",0.622,0.886,2.0,-5.846,1.0,0.0322,0.089,0.153,0.0292,0.921,153.078,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, P ℗ 2008 Compilation (P) 2008 Parlophone Records Ltd. All rights reserved. Unauthorized reproduction is a violation of applicable laws. 1750 North Vine Street, Hollywood, CA 90028.",4836 +4837,spotify:track:1ZozJfi8u9cO2Ob8KwiwNT,Higher,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,spotify:album:3Nyjm9NBEdiaiWr2BEaV46,Human Clay,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,1999-01-01,https://i.scdn.co/image/ab67616d0000b273f8f048a5f4749c970078a4fb,1,9,316733,https://p.scdn.co/mp3-preview/cd38d3d55bda0fc1c8e8be9a7f9198999fad7b95?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USWU39909053,spotify:user:bradnumber1,2021-11-17T22:20:45Z,"alternative metal,nu metal,post-grunge,rock",0.459,0.83,2.0,-6.254,1.0,0.0364,5.15e-05,0.00014,0.206,0.431,155.827,4.0,,The Bicycle Music Company,"C © 1999 The Bicycle Music Company, P ℗ 1999 The Bicycle Music Company",4837 +4838,spotify:track:2pJZ1v8HezrAoZ0Fhzby92,What Do I Know?,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:3T4tUhGYeRNVUGevb0wThu,÷ (Deluxe),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2017-03-03,https://i.scdn.co/image/ab67616d0000b273ba5db46f4b838ef6027e6f96,1,10,237333,https://p.scdn.co/mp3-preview/cd5d36e4158bc884176f185846f7c451d95e2b00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAHS1700036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.838,0.492,1.0,-5.69,0.0,0.038,0.251,0.0,0.262,0.895,115.092,4.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company.",4838 +4839,spotify:track:3eBnEo9WL34ulBCZlLpUQO,Chicken Fried,spotify:artist:6yJCxee7QumYr820xdIsjo,Zac Brown Band,spotify:album:5GP6INOrUkZJyXOqoTUlxZ,The Foundation,spotify:artist:6yJCxee7QumYr820xdIsjo,Zac Brown Band,2008-11-17,https://i.scdn.co/image/ab67616d0000b27335841dbae637a50adcaa5c0f,1,6,238146,https://p.scdn.co/mp3-preview/88d6f7a1fa2c4714a6a77ca64d6af26ec952830a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USAT20804178,spotify:user:bradnumber1,2021-10-21T07:10:47Z,"contemporary country,country,country road,modern country rock",0.566,0.713,6.0,-4.25,1.0,0.0418,0.645,0.0,0.114,0.805,169.861,4.0,,Home Grown Music,P 2008 Home Grown Music,4839 +4840,spotify:track:3Y2hdirGeE0JalLAsw7Fqi,With Every Heartbeat,"spotify:artist:2YL0l5fnyHE9FEf1bwFGCc, spotify:artist:6UE7nl9mha6s8z0wFQFIZ2","Kleerup, Robyn",spotify:album:1DNb4vAjHkxX4coDuV7L4Q,Kleerup,spotify:artist:2YL0l5fnyHE9FEf1bwFGCc,Kleerup,2009-05-22,https://i.scdn.co/image/ab67616d0000b2731e31ec18bb04dc45290c0603,1,4,253186,https://p.scdn.co/mp3-preview/1b42c52f60918988bd39a22d9558c7f34a1dbf3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,SEAMA0600774,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,swedish electropop,dance pop,electropop,neo-synthpop,scandipop,swedish electropop,swedish pop",0.499,0.874,4.0,-4.001,0.0,0.0397,0.00965,0.00028,0.238,0.377,120.872,3.0,,Parlophone Sweden,"C © 2009 Parlophone Music Sweden AB, P ℗ 2009 Parlophone Music Sweden AB",4840 +4841,spotify:track:0HdcunWW5FsRqKr3lwJOIo,Follow You Follow Me - Remastered 2007,spotify:artist:3CkvROUTQ6nRi9yQOcsB50,Genesis,spotify:album:0lTuVJuCbD3FHEjIeQqyXg,And Then There Were Three,spotify:artist:3CkvROUTQ6nRi9yQOcsB50,Genesis,1978-04-07,https://i.scdn.co/image/ab67616d0000b273d778b320e46cf2b801afc386,1,11,240991,https://p.scdn.co/mp3-preview/bb36343382dce6bbd4204fbca1f5f9fd20214526?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,GBAAA0700083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,hard rock,mellow gold,new romantic,progressive rock,rock,soft rock,symphonic rock",0.531,0.747,7.0,-9.368,1.0,0.0344,0.146,0.0722,0.07,0.761,93.559,4.0,,Virgin Catalogue,"C © 2007 Virgin Records Limited, P ℗ 2007 Virgin Records Limited",4841 +4842,spotify:track:0vhCcrN8ULryq1KuEEYlm2,Do It Again - Remastered 2001,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:2vFDenbFedYVMOwDqTiw82,20/20 (Remastered),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1969-02-10,https://i.scdn.co/image/ab67616d0000b27300342f9f40e80ee0440c954d,1,1,146373,https://p.scdn.co/mp3-preview/acf4b1235efb5a76079507287862fddfcaec5219?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USCA20100316,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.726,0.576,3.0,-6.487,1.0,0.0337,0.609,0.00117,0.242,0.823,117.691,4.0,,Capitol Records,"C © 1969 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",4842 +4843,spotify:track:3iqSMhrYkWQqc4q7qwHHnM,Midas Touch - Starskee Radio Edit,"spotify:artist:0KMLfCXYb3Dhf1hLpu8cVd, spotify:artist:5c8Dgks0Ky4HKsC5VSzGUa","Midnight Star, Starskee",spotify:album:4zF1GMseGvAMskhoLAgz2i,Midas Touch,spotify:artist:0KMLfCXYb3Dhf1hLpu8cVd,Midnight Star,2005-02-28,https://i.scdn.co/image/ab67616d0000b2739eecfc7a5d2e21ab0d9c678a,1,1,209240,https://p.scdn.co/mp3-preview/17022bf1a570123e9a384efb151f29bbe1b684a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUVC00520111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,funk,motown,new jack swing,post-disco,quiet storm,urban contemporary",0.841,0.611,0.0,-5.977,1.0,0.0416,0.0028,1.16e-05,0.0851,0.959,128.001,4.0,,Vicious Recordings Pty Ltd,"C 2005 Bluebag Music / Sample courtesy of Sanctuary Records under license to Vicious Recordings Pty Ltd, P 2005 Bluebag Music / Sample courtesy of Sanctuary Records under license to Vicious Recordings Pty Ltd",4843 +4844,spotify:track:1FSWSs9CL01RCYxXtm08Rf,Dance with Me Tonight,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:2OvZ8JCShhvxNkptwoGjve,In Case You Didn't Know,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2011-11-28,https://i.scdn.co/image/ab67616d0000b273ff2057b7343d2233451ff8e7,1,3,202226,https://p.scdn.co/mp3-preview/e595f2baba3d5eeb3b5b6fc5a2aebafd1e96d2ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBARL1101197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.672,0.748,11.0,-5.922,0.0,0.0589,0.305,0.0,0.0811,0.964,163.984,4.0,,Epic,P (P) 2011 Sony Music Entertainment UK Limited,4844 +4845,spotify:track:72DhHiAebMzvG4R8MJNPXF,Viva Forever,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:3diiYWB32h7c7Eo2x8oxjK,Spiceworld (25th Anniversary),spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,2022-11-04,https://i.scdn.co/image/ab67616d0000b273b46b64eddae90e1ab0404187,1,9,310666,https://p.scdn.co/mp3-preview/a46435c20bf1d9b4caf07bb718d7a6fde3a2547e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBAAA9710060,spotify:user:bradnumber1,2023-03-08T22:17:46Z,"dance pop,girl group,pop",0.468,0.69,6.0,-8.165,1.0,0.0359,0.0768,0.442,0.127,0.201,168.852,4.0,,UMC (Universal Music Catalogue),"C © 2022 Virgin Records Limited, P ℗ 2022 Virgin Records Limited",4845 +4846,spotify:track:7qRVFsoeUr2BnMuju47OJ6,Edge of the Night,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:4kKJtTy8YxuHjNdAMlCNxT,Edge of the Night,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2017-06-23,https://i.scdn.co/image/ab67616d0000b273d08b7f93f23123d3852a8415,1,1,204210,https://p.scdn.co/mp3-preview/8e691a0321dd176605e7e64b99481b22c586bf23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUIYA1700003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.823,0.756,9.0,-7.542,0.0,0.0572,0.0686,0.0,0.0631,0.75,114.024,4.0,,Empire Of Song,"C 2017 Empire Of Song (Australia Pty Ltd), P 2017 Empire Of Song (Australia Pty Ltd)",4846 +4847,spotify:track:7DSwyrYR8nHyVIZNsfs6ei,Kiss Your Mama!,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,spotify:album:5LzlBCGsQKZzAMpMPNM27a,Somewhere In The Real World,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,2008-05-24,https://i.scdn.co/image/ab67616d0000b27385ff0357d242cb1cd70e8b4d,1,4,189453,https://p.scdn.co/mp3-preview/86e234baa4022bbb829cdc66d39b3f2272dbcc2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUUM70700549,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.658,0.984,7.0,-2.38,1.0,0.0671,0.212,0.000117,0.347,0.523,129.45,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Universal Music Australia Pty Ltd., P ℗ 2008 Universal Music Australia Pty Ltd.",4847 +4848,spotify:track:4kPLmTsTwA6wvtcbb0LtbM,Romeo's Tune,spotify:artist:3oAbjWINfcTSAuVUlXXMty,Steve Forbert,spotify:album:1PxGKfviBr0ReG7ghmysEm,Jack Rabbit Slim,spotify:artist:3oAbjWINfcTSAuVUlXXMty,Steve Forbert,1979-12-07,https://i.scdn.co/image/ab67616d0000b27398f321d03449e05ac186f2ec,1,1,212471,https://p.scdn.co/mp3-preview/6b067ec2c90c9ab92f26748d66a6dcd7c7f09f52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USSM17900089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk,roots rock,singer-songwriter",0.571,0.721,9.0,-5.645,1.0,0.0307,0.404,0.00961,0.299,0.733,95.027,4.0,,Rolling Tide Music,"C 2011 Rolling Tide Music, P 2011 Rolling Tide Music",4848 +4849,spotify:track:4pmc2AxSEq6g7hPVlJCPyP,"Jumpin', Jumpin'",spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,spotify:album:283NWqNsCA9GwVHrJk59CG,The Writing's On The Wall,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,1999-07-27,https://i.scdn.co/image/ab67616d0000b2733718df75b57340c1947747e8,1,11,230200,https://p.scdn.co/mp3-preview/3aee9825783b667dd6677d58183fa0025fae8137?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM19901054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary",0.771,0.685,1.0,-4.639,1.0,0.0567,0.00543,0.00157,0.0537,0.683,88.997,4.0,,Columbia,P (P) 1999 SONY BMG MUSIC ENTERTAINMENT,4849 +4850,spotify:track:3KzgdYUlqV6TOG7JCmx2Wg,Beyond the Sea,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,spotify:album:5MsJK0kqiYIJDmd3cjkGMn,That's All,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,1959,https://i.scdn.co/image/ab67616d0000b273e774643594281699bde1e4ed,1,2,172480,https://p.scdn.co/mp3-preview/ab71015cd8957e29f04aadf38fb40741c8e2b711?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USEW10000026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rock-and-roll,rockabilly,vocal jazz",0.521,0.516,2.0,-7.456,0.0,0.0369,0.723,0.0,0.257,0.569,136.483,4.0,,Rhino Atlantic,"C © 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing",4850 +4851,spotify:track:6D0JWPMLPhOvM22cI2UGJS,2.0,spotify:artist:2luRh7SpSZXnyXw4MiObqJ,Jump Jump Dance Dance,spotify:album:7ymFa2DxIgAfK5vjFyU61N,Jump Jump Dance Dance,spotify:artist:2luRh7SpSZXnyXw4MiObqJ,Jump Jump Dance Dance,2011-01-01,https://i.scdn.co/image/ab67616d0000b2739cac136b10693f595211fe2b,1,3,215266,https://p.scdn.co/mp3-preview/f4efed2d90863b37e6b520fb1fe385e1ce15865a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV01100303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.635,0.864,0.0,-3.828,0.0,0.0431,0.00899,0.0,0.144,0.742,132.001,4.0,,Universal Music Australia (Distribution),"C © 2011 etcetc Music Pty Ltd, P ℗ 2011 etcetc Music Pty Ltd",4851 +4852,spotify:track:0LTbEzpuUCelZi8VgZ8MUh,My Heart Has A Mind Of Its Own,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,spotify:album:5B9weDFlXPPdoxM5HRyreL,The Collection,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,1996-01-01,https://i.scdn.co/image/ab67616d0000b2738bb1230d0450aa5e271637ba,1,11,150933,https://p.scdn.co/mp3-preview/a624df860289023093085c7fb76ef0b1d81dfc2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USF096000370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,easy listening,rock-and-roll,rockabilly",0.397,0.576,6.0,-6.751,1.0,0.0389,0.742,1.67e-06,0.31,0.754,54.282,4.0,,Spectrum,"C © 1998 Spectrum Music, P This Compilation ℗ 1996 Spectrum Music",4852 +4853,spotify:track:6WQLkih8nE0JdUCEyLaGnQ,Heroes (we could be),"spotify:artist:4AVFqumd2ogHFlRbKIjp1t, spotify:artist:4NHQUGzhtTLFvgF5SZesLK","Alesso, Tove Lo",spotify:album:3yqh9ozOA2cAgPUJaveAuG,Forever,spotify:artist:4AVFqumd2ogHFlRbKIjp1t,Alesso,2015-05-22,https://i.scdn.co/image/ab67616d0000b273ab578b2e38e4d7bac39413ad,1,3,210012,https://p.scdn.co/mp3-preview/e5664babfba07567c4e002c7bd9c043835bc6521?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71411636,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,progressive electro house,dance pop,metropopolis,pop,swedish electropop,swedish pop,swedish synthpop",0.5,0.726,5.0,-4.124,1.0,0.0643,0.0362,0.0,0.441,0.397,125.904,4.0,,Universal Music Group,"C © 2015 Alefune, under exclusive license in the United States to Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Alefune, under exclusive license in the United States to Def Jam Recordings, a division of UMG Recordings, Inc.",4853 +4854,spotify:track:67eX1ovaHyVPUinMHeUtIM,Hurts So Good,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:4gouGcdQn9OvjX42xnWrF0,American Fool,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1982,https://i.scdn.co/image/ab67616d0000b273b1945b44ce8868740f132f8e,1,1,218960,https://p.scdn.co/mp3-preview/3914b9da1b68aafd95c84338844c2e60ee19552c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USJM18200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.785,0.737,9.0,-5.306,1.0,0.0363,0.042,0.000107,0.108,0.971,125.447,4.0,,John Mellencamp 2023 (Island),"C © 2005 Riva Recordings, Inc., under exclusive license to UMG Recordings, Inc. and Primary Wave Music IV, P ℗ 2005 Riva Recordings, Inc., under exclusive license to UMG Recordings, Inc. and Primary Wave Music IV",4854 +4855,spotify:track:1mi9JKzRZP5gkNm4p5WHZd,I'm Your Funny Bear - The Gummi Bear Song,spotify:artist:6NJb7ZCMVLu2ZXwWJa2O3G,Gummibär,spotify:album:2FQd3FBDmWKsloifQpTwS5,Gummi Bear,spotify:artist:6NJb7ZCMVLu2ZXwWJa2O3G,Gummibär,2009-01-01,https://i.scdn.co/image/ab67616d0000b27310dd9beecb53e61a91fc6caa,1,1,190240,https://p.scdn.co/mp3-preview/393f6b2edb00e307e98828cda7aaf099ae09a527?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV00801290,spotify:user:bradnumber1,2021-08-08T09:26:31Z,cartoon,0.928,0.901,9.0,-7.789,0.0,0.0383,0.0485,7.66e-06,0.0927,0.99,128.093,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",4855 +4856,spotify:track:0D75ciM842cdUMKSMfAR9y,Baila Conmigo (with Rauw Alejandro),"spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx, spotify:artist:1mcTU81TzQhprhouKaTkpq","Selena Gomez, Rauw Alejandro",spotify:album:3DWab9ul4t4YpZuOPmUJvd,Baila Conmigo (with Rauw Alejandro),"spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx, spotify:artist:1mcTU81TzQhprhouKaTkpq","Selena Gomez, Rauw Alejandro",2021-01-29,https://i.scdn.co/image/ab67616d0000b273bb607a63a7dceb48b4d189e3,1,1,186087,https://p.scdn.co/mp3-preview/abfabb61d813b8189f44394edcbb47be3daefe85?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUG12100193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop,puerto rican pop,reggaeton,trap latino,urbano latino",0.824,0.545,5.0,-7.127,1.0,0.0699,0.0221,0.00375,0.097,0.683,149.912,4.0,,Interscope Records,"C © 2021 SMG Music LLC, under exclusive license to Interscope Records, P ℗ 2021 SMG Music LLC, under exclusive license to Interscope Records",4856 +4857,spotify:track:4ztwMHfPZhPoruZdBbgriM,Three Times A Lady,spotify:artist:6twIAGnYuIT1pncMAsXnEm,Commodores,spotify:album:5ZsWgDWvZ2luAHlczO8h2o,All The Great Love Songs,spotify:artist:6twIAGnYuIT1pncMAsXnEm,Commodores,1985,https://i.scdn.co/image/ab67616d0000b273187f78d47a59b77f5f075496,1,4,217426,https://p.scdn.co/mp3-preview/90f91bc84157daad589480f5b8320322db29db36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USMO17800521,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,disco,funk,mellow gold,motown,quiet storm,soft rock,soul",0.39,0.0803,8.0,-20.518,1.0,0.0306,0.874,0.000639,0.127,0.184,150.503,3.0,,Motown,"C © 1984 Motown Record Company L.P., P This Compilation ℗ 1984 Motown Record Company L.P.",4857 +4858,spotify:track:7bu0znpSbTks0O6I98ij0W,"Tonight, Tonight - Remastered 2012",spotify:artist:40Yq4vzPs9VNUrIBG5Jr2i,The Smashing Pumpkins,spotify:album:55RhFRyQFihIyGf61MgcfV,Mellon Collie And The Infinite Sadness (Deluxe Edition),spotify:artist:40Yq4vzPs9VNUrIBG5Jr2i,The Smashing Pumpkins,1995,https://i.scdn.co/image/ab67616d0000b273431ac6e6f393acf475730ec6,1,2,254626,https://p.scdn.co/mp3-preview/b32ad2530bbf76539d0190927331dae2a6dcfbc6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USVI21200893,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,permanent wave,rock,spacegrunge",0.277,0.67,6.0,-9.381,1.0,0.0376,6.28e-05,0.751,0.237,0.217,148.342,4.0,,Virgin Records,"C © 2012 VIRGIN RECORDS, P ℗ 2012 VIRGIN RECORDS",4858 +4859,spotify:track:6g6A7qNhTfUgOSH7ROOxTD,Talk Dirty (feat. 2 Chainz),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:17lzZA2AlOHwCwFALHttmp","Jason Derulo, 2 Chainz",spotify:album:4PeZu0It7qVrTG40t3HM9A,Talk Dirty,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2013-09-10,https://i.scdn.co/image/ab67616d0000b2730376bdff8b70d934f297303e,1,1,177685,https://p.scdn.co/mp3-preview/1bc07a5c8add955817ff4570e10ae0b31a1d8677?cid=9950ac751e34487dbbe027c4fd7f8e99,True,66,USWB11302648,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,atl hip hop,hip hop,pop rap,rap,southern hip hop,trap",0.76,0.652,6.0,-7.321,1.0,0.232,0.0348,0.0,0.307,0.759,100.315,4.0,,Beluga Heights/Warner Records,"C © 2014 Warner Records Inc., P ℗ 2013, 2014 Warner Records Inc.",4859 +4860,spotify:track:6RsWqX8zABZLhZydXxEFOm,Can't Feel My Face,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:28ZKQMoNBB0etKXZ97G2SN,Beauty Behind The Madness,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2015-08-28,https://i.scdn.co/image/ab67616d0000b273aac98daa18e4edf54d7a0a70,1,7,213520,https://p.scdn.co/mp3-preview/99b0d35b74903a1807c2f0a7b4e54f844c93fb68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11500741,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.702,0.77,9.0,-5.416,0.0,0.0482,0.124,0.0,0.103,0.593,107.951,4.0,,Universal Music Group,"C © 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc., P ℗ 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.",4860 +4861,spotify:track:2mqB7fvAVhz2aFB0c5ra2S,Where Did All the Love Go?,spotify:artist:11wRdbnoYqRddKBrpHt4Ue,Kasabian,spotify:album:2DHGeuRTttjurZDb0pSjx6,West Ryder Pauper Lunatic Asylum,spotify:artist:11wRdbnoYqRddKBrpHt4Ue,Kasabian,2009,https://i.scdn.co/image/ab67616d0000b273358f726999166b87f00e7066,1,2,258200,https://p.scdn.co/mp3-preview/9aa243e65be4bae6ede3f9c6bd21924728f241cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBARL0801797,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,garage rock,leicester indie,modern rock,rock",0.656,0.833,1.0,-5.13,1.0,0.0304,0.00877,0.0126,0.328,0.71,134.007,4.0,,Columbia,P Track 4 (P) 2007; all other tracks (P) 2009 Sony Music Entertainment UK Limited,4861 +4862,spotify:track:5fgkjhICZnqFctrV0AyuQD,Walking in Memphis,spotify:artist:2C8mKwk3z5DtqLcSwUdYJ9,Marc Cohn,spotify:album:0Zndfz8u9OTb8sXDkve96m,Marc Cohn,spotify:artist:2C8mKwk3z5DtqLcSwUdYJ9,Marc Cohn,1991-02-08,https://i.scdn.co/image/ab67616d0000b2735908f448fb4605e4eba3dbf9,1,1,252613,https://p.scdn.co/mp3-preview/87b81c129df5a138b68f4fb8897973f81bce7e77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USAT29900737,spotify:user:bradnumber1,2021-08-08T09:26:31Z,mellow gold,0.567,0.512,0.0,-8.831,1.0,0.0357,0.545,0.0,0.296,0.334,130.271,4.0,,Rhino,"C © 1991 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1991 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4862 +4863,spotify:track:02acUMylPHMjJ9miDc9b38,Ever the Same,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,spotify:album:07hC5JSKAodpBIVR6A772E,Something to Be,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,2005-04-05,https://i.scdn.co/image/ab67616d0000b273db3d7550e11f7a132fb81c9f,1,3,256600,https://p.scdn.co/mp3-preview/0eef697ee37e51072cde67be160440a676bc5b8c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USAT20403944,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.435,0.729,1.0,-4.818,0.0,0.0307,0.0152,2.63e-05,0.11,0.524,188.017,4.0,,Melisma/Atlantic Records,"C © 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4863 +4864,spotify:track:5Qa2KJyA58OSPDktQBHkzN,The Power,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,spotify:album:2PYf4m3Bgu4ljRACdnfMCZ,The Power (15 Year Anniversary Re-Issue),spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,2004-04-03,https://i.scdn.co/image/ab67616d0000b2736d3e26f9fff8d30245519b11,1,8,216773,https://p.scdn.co/mp3-preview/54b5a59049b16177db8e5581af33b663bfdfcb44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUV401421334,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.66,0.978,9.0,-5.969,1.0,0.117,0.312,1.02e-06,0.571,0.52,128.01,4.0,,CBK Productions,"C 1915 CBK Productions, P 2015 CBK Productions",4864 +4865,spotify:track:2QbFClFyhMMtiurUjuQlAe,Don't Wanna Know (feat. Kendrick Lamar),"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg","Maroon 5, Kendrick Lamar",spotify:album:1Jmq5HEJeA9kNi2SgQul4U,Red Pill Blues (Deluxe),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2017-11-03,https://i.scdn.co/image/ab67616d0000b2739ccf08d3f74b36b7880522b5,1,14,214265,https://p.scdn.co/mp3-preview/7e9c77a2e24e979397d07e24be75e4e3148670e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71609975,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,conscious hip hop,hip hop,rap,west coast rap",0.775,0.617,7.0,-6.166,1.0,0.0701,0.341,0.0,0.0985,0.485,100.048,4.0,,Universal Music Group,"C © 2017 Interscope Records, P A 222 Records/Interscope Records Release; ℗ 2017 Interscope Records",4865 +4866,spotify:track:0XAokZfz6DkQuruUVEX1ei,Drive You Mad,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:2DRo3csimVdO1FGEQHKrZu,Night Thinker - EP,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2017-04-21,https://i.scdn.co/image/ab67616d0000b273ba61e688ca485e08e29a94f1,1,1,212182,https://p.scdn.co/mp3-preview/437417b4536778a7581afce65209041d80dbc130?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUBM01700387,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.5,0.714,7.0,-6.758,1.0,0.0522,0.0136,0.0628,0.088,0.356,162.009,4.0,,Wonderlick,P (P) 2017 Amy Shark under exclusive license to the Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd.,4866 +4867,spotify:track:2hbA72TFulrNGTEBUMAnzG,There Must Be an Angel (Playing with My Heart),"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",spotify:album:2TKsB0j63p4cM14CBqPEtq,Ultimate Collection,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",2005-11-04,https://i.scdn.co/image/ab67616d0000b2732c6cfdf3693e239f5e718dee,1,8,281040,https://p.scdn.co/mp3-preview/6ea7d5e426d1bbf69bedb6c72dccb0bc177fef2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBARL0300617,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard",0.584,0.776,0.0,-5.495,1.0,0.0358,0.267,0.0,0.112,0.608,112.139,4.0,,RCA Records Label,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,4867 +4868,spotify:track:1joM5RLNRDmsR2AiF5XaRF,Galaxy (feat. Stan Walker),"spotify:artist:6rHWAH6F4mr2AViSxMV673, spotify:artist:7fRw4ouudxR1jHgyrTIKuY","Jessica Mauboy, Stan Walker",spotify:album:7t6s6NWaLUEkRQEDqp8yNN,Get 'Em Girls,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2011-08-15,https://i.scdn.co/image/ab67616d0000b2736bb2da94c1f0c017c022ad7f,1,14,244733,https://p.scdn.co/mp3-preview/7166a12affa38970c80b396737f059835caa8800?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUBM01100320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show,australian talent show,nz christian,nz pop",0.483,0.947,7.0,-3.3,0.0,0.0633,0.000308,0.329,0.381,0.589,186.127,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,4868 +4869,spotify:track:0YGQ3hZcRLC5YX7o0hdmHg,Naughty Girl,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:6oxVabMIqCMJRYN1GqR3Vf,Dangerously In Love,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2003-06-24,https://i.scdn.co/image/ab67616d0000b27345680a4a57c97894490a01c1,1,2,208573,https://p.scdn.co/mp3-preview/91f9a0fc0759da59823abb0c00673ef86a8f204e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM10305418,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.588,0.461,6.0,-8.686,0.0,0.161,0.237,1.54e-05,0.0913,0.659,200.053,4.0,,Columbia,"P (P) 2003 J Records, 2003 Sony Music Entertainment Inc.",4869 +4870,spotify:track:2wOFqEtlkTOdtR8Jlfboh2,Only One Road,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:6Po5zdKMIH5Xk99vjXyQpC,The Colour Of My Love,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1993-11-09,https://i.scdn.co/image/ab67616d0000b27363e07c2dbc7450974a146e96,1,4,288333,https://p.scdn.co/mp3-preview/1e14d6f411ea8897ae3049eadaf62b8f5767732a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,CAC229300028,spotify:user:bradnumber1,2022-05-01T14:14:44Z,canadian pop,0.551,0.496,5.0,-8.049,1.0,0.0293,0.157,1.43e-06,0.0934,0.2,105.837,3.0,,Columbia,P (P) 1993 Sony Music Entertainment (Canada) Inc.,4870 +4871,spotify:track:6rxEjkoar48SssZePbtb2x,Crystalised,spotify:artist:3iOvXCl6edW5Um0fXEBRXy,The xx,spotify:album:2nXJkqkS1tIKIyhBcFMmwz,xx,spotify:artist:3iOvXCl6edW5Um0fXEBRXy,The xx,2009-08-16,https://i.scdn.co/image/ab67616d0000b273055437bf35e8ba027bed0882,1,3,201946,https://p.scdn.co/mp3-preview/93a08ec3393ceaeddd12342158095bbc852b133b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS0900025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,dream pop,indietronica",0.763,0.484,11.0,-12.368,0.0,0.0311,0.812,0.393,0.0841,0.416,122.913,4.0,,Young Turks,"C 2009 Young Turks/ XL Recordings Ltd., P 2009 Young Turks/ XL Recordings Ltd.",4871 +4872,spotify:track:0RyMaI0EvCiiXBx96vwcgH,I'll Be There,spotify:artist:3UmBeGyNwr4iDWi1vTxWi8,Gerry & The Pacemakers,spotify:album:7G6c96b4YRF5evxK0bLH5F,"A's, B's & EP's",spotify:artist:3UmBeGyNwr4iDWi1vTxWi8,Gerry & The Pacemakers,2004-03-01,https://i.scdn.co/image/ab67616d0000b2736a4138194775ff313c68167f,1,21,191693,https://p.scdn.co/mp3-preview/3d7aee4a3039cac37c640cb82457e9ce2de5cf76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBAYE6400709,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,merseybeat,rock-and-roll",0.551,0.532,7.0,-8.487,1.0,0.0294,0.28,0.000251,0.326,0.608,115.71,4.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",4872 +4873,spotify:track:4bQNusmmVudLxIiexglzh6,Orinoco Flow - 2009 Remaster,spotify:artist:6uothxMWeLWIhsGeF7cyo4,Enya,spotify:album:0NJjvdOd3ULUTvoVFCCFJN,Watermark (2009 Remaster),spotify:artist:6uothxMWeLWIhsGeF7cyo4,Enya,1988-09-05,https://i.scdn.co/image/ab67616d0000b273b9b09b7eabe5274035553f98,1,7,266200,https://p.scdn.co/mp3-preview/622ffca0e0dedeeb81a99790f21e73133dc78ee9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAHT0900037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic,gregorian dance,operatic pop",0.692,0.466,0.0,-10.741,1.0,0.0292,0.743,0.109,0.1,0.561,114.999,4.0,,WM UK,"C © 2009 Warner Music UK Ltd, P ℗ 2009 Warner Music UK Ltd",4873 +4874,spotify:track:0VjIjW4GlUZAMYd2vXMi3b,Blinding Lights,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:4yP0hdKOZPNshxUOjY0cZj,After Hours,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2020-03-20,https://i.scdn.co/image/ab67616d0000b2738863bc11d2aa12b54f5aeb36,1,9,200040,https://p.scdn.co/mp3-preview/51c08d92815cce4ac2de94a7335a430b81234624?cid=9950ac751e34487dbbe027c4fd7f8e99,False,88,USUG11904206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.513,0.73,1.0,-5.94,1.0,0.0598,0.00143,9.54e-05,0.0897,0.334,171.001,4.0,,Republic Records,"C © 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.",4874 +4875,spotify:track:3Xg626UpqQo2ZgMA82CbbA,Young Forever,"spotify:artist:3nFkdlSjzX9mRTtwJOzDYB, spotify:artist:1zV9UjTUevjp5VUddqIUUn","JAY-Z, Mr Hudson",spotify:album:1g3Ek21j6qDWt2CtravhrX,The Blueprint 3,spotify:artist:3nFkdlSjzX9mRTtwJOzDYB,JAY-Z,2009-09-08,https://i.scdn.co/image/ab67616d0000b2734b328c297d151d432c7b1aa3,1,15,253880,https://p.scdn.co/mp3-preview/6e9be1679f86c58e1cbfc3c2d584fcea8dc57b00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USJZ10900028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,rap",0.632,0.686,9.0,-3.299,0.0,0.0777,0.401,0.0,0.276,0.0847,140.296,4.0,,Roc Nation / Jay-Z,"C © 2009 S. Carter Enterprises, LLC., Distributed by Roc Nation, P ℗ 2009 S. Carter Enterprises, LLC., Distributed by Roc Nation",4875 +4876,spotify:track:2iXBZ32Fz5VDCLeE0JIdX5,Better in Time,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,spotify:album:0VaAFegRAAn4OCg7p4QjN5,Spirit,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,2007,https://i.scdn.co/image/ab67616d0000b27334fd9eb8cd48e518598aec55,1,2,234173,https://p.scdn.co/mp3-preview/242263a7514bbc4be3bd5dd0c83302e4e9f846a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBHMU0700069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,dance pop,pop,talent show",0.584,0.7,6.0,-4.251,1.0,0.0505,0.512,2.44e-05,0.13,0.545,163.95,4.0,,Syco Music UK,"P Tracks 5 & 6 (P) 2008, all other tracks (P) 2007 Simco Limited exclusively licensed to Sony Music Entertainment UK Limited",4876 +4877,spotify:track:5mtEjqOsssQ7kwH8uxNKO9,Harbor Lights,spotify:artist:6KWcxMWVNVIYbdOQyJtsSy,The Platters,spotify:album:48VpGQRP9z2Nhw2iq1uyaN,The Best Of The Platters,spotify:artist:6KWcxMWVNVIYbdOQyJtsSy,The Platters,1995-01-01,https://i.scdn.co/image/ab67616d0000b2738f596fd18c96d6f32513d854,1,11,187666,https://p.scdn.co/mp3-preview/811dd768221dd4ff147b364b8366976227b7e629?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR16088002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,rock-and-roll,rockabilly",0.246,0.283,10.0,-16.806,0.0,0.0349,0.892,0.0062,0.0993,0.244,83.178,4.0,,Spectrum,"C © 1995 Karussell International, P ℗ 1995 Karussell International",4877 +4878,spotify:track:0tDC3KJPPu5eonGTtCURpq,Headlights (feat. Ilsey),"spotify:artist:3t5xRXzsuZmMDkQzgOX35S, spotify:artist:2ZKzqJz3pPfWKVRgz9b39j","Robin Schulz, Ilsey",spotify:album:5XyJzEROSmup2TcWmVjTIt,Sugar,spotify:artist:3t5xRXzsuZmMDkQzgOX35S,Robin Schulz,2015-09-25,https://i.scdn.co/image/ab67616d0000b2733c9047f9aa5d0d1e03827039,1,1,209208,https://p.scdn.co/mp3-preview/111e0cf465a46206fe1c61a2ba8fe18a367d0b29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,DEA621500407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep euro house,deep house,edm,german dance,pop dance,tropical house",0.597,0.685,11.0,-6.371,1.0,0.0367,0.0245,0.000335,0.182,0.369,122.002,4.0,,Tonspiel,"C © 2015 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company, P ℗ 2015 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company",4878 +4879,spotify:track:5TAf4lnZCZTLlZHNZMLFLi,I Try,spotify:artist:4ylR3zwA0zaapAu94fktwa,Macy Gray,spotify:album:50DkoLL4ArRVXhWx9ssQSe,On How Life Is,spotify:artist:4ylR3zwA0zaapAu94fktwa,Macy Gray,1999-07-03,https://i.scdn.co/image/ab67616d0000b2736fb355dfc944cce3598e30a1,1,4,239440,https://p.scdn.co/mp3-preview/48c1c7bdf2f8bb250d80fc123752dee589154b51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM19900346,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo soul,0.593,0.642,2.0,-7.284,1.0,0.0299,0.313,0.000582,0.0804,0.736,76.403,4.0,,Epic,P (P) 1999 SONY BMG MUSIC ENTERTAINMENT,4879 +4880,spotify:track:5r29mFrurlVBbqJzjr2XW6,"My Neck, My Back (Lick It)",spotify:artist:3q7isf09BuwXLyR2khBs60,Khia,spotify:album:4Xa2dq99gQqzGj4vq0rGoV,Thug Misses (Digitally Remastered),spotify:artist:3q7isf09BuwXLyR2khBs60,Khia,2015-05-05,https://i.scdn.co/image/ab67616d0000b273c1bcb570a5fcbdcce74c2b07,1,1,222560,https://p.scdn.co/mp3-preview/3f637647d8f74ab8dc1d56b9b7fe3b985f3caa54?cid=9950ac751e34487dbbe027c4fd7f8e99,True,58,USGZ21559413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,trap queen",0.859,0.625,9.0,-4.234,0.0,0.13,0.0296,0.0,0.0537,0.71,102.072,4.0,,Conscious Manifesto / Essential Media Group,C (C) 2015 Essential Media Group LLC,4880 +4881,spotify:track:6uRH1qMz30ZBwwUG0IYE5s,Dance With Me,spotify:artist:7urq0VfqxEYEEiZUkebXT4,112,spotify:album:6QlbqTqKJt1UnuH3PLz9mb,Part III,spotify:artist:7urq0VfqxEYEEiZUkebXT4,112,2001,https://i.scdn.co/image/ab67616d0000b273272145dc06dd718118e8a349,1,2,231800,https://p.scdn.co/mp3-preview/2351f86def51c7b05274252306cd676354630482?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USBB40581356,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,boy band,contemporary r&b,hip pop,r&b,urban contemporary",0.912,0.511,9.0,-6.365,1.0,0.203,0.0259,0.0,0.0442,0.611,101.628,4.0,,Rhino Atlantic,"C © 2001 Bad Boy Records, P ℗ 2001 Bad Boy Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",4881 +4882,spotify:track:1bVZN6zCNu6oENygsy0Mw0,Come Back Again - 2011 Remaster,spotify:artist:5ht2HGrvbN9eDWJarHsou6,Daddy Cool,spotify:album:4ZejRTERcKwWr0bc8CslGV,Daddy Who? Daddy Cool (40th Anniversary Edition),spotify:artist:5ht2HGrvbN9eDWJarHsou6,Daddy Cool,1971-07-01,https://i.scdn.co/image/ab67616d0000b2738a62b3ddb1b4eaa7739cc770,1,3,293293,https://p.scdn.co/mp3-preview/d1cab4a9008b6036ba72e925100132d41aff6c92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUBM01100324,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.739,0.763,2.0,-6.042,1.0,0.0353,0.00787,0.00691,0.0412,0.643,121.231,4.0,,Sony Music Entertainment,P (P) 1971 Sony Music Entertainment Australia Pty Ltd.,4882 +4883,spotify:track:0RkH9mnwB5jCVsq4XJKaIN,Can't Hold Back (feat. Macy Gray),"spotify:artist:1XGHs7YFtpCbDGKaNdPPtA, spotify:artist:4ylR3zwA0zaapAu94fktwa","Kaz James, Macy Gray",spotify:album:15Zb2g4RVnUvTv5Z9dd2TA,If They Knew,spotify:artist:1XGHs7YFtpCbDGKaNdPPtA,Kaz James,2008-10-11,https://i.scdn.co/image/ab67616d0000b273fb37c03777e64670e3b21aaa,1,3,152253,https://p.scdn.co/mp3-preview/7a485a4a9ee57435925d685b4ba99a579e83ec6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,GBVKY0800008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,neo soul",0.741,0.785,0.0,-3.252,1.0,0.116,0.0409,0.0,0.0497,0.73,114.896,4.0,,Sony BMG Music Entertainment,"P (P) 2008 KJM Limited, under exclusive licence to SONY BMG Music Entertainment (Australia) Pty Limited",4883 +4884,spotify:track:7bliRZuMFa2JmUzzNd62kk,Talk Is Cheap,spotify:artist:6UcJxoeHWWWyT5HZP064om,Chet Faker,spotify:album:2CAPvFwJunN99YvQOJ6CDt,Built On Glass,spotify:artist:6UcJxoeHWWWyT5HZP064om,Chet Faker,2014-04-11,https://i.scdn.co/image/ab67616d0000b273b210f55698ccb77d879e815b,1,2,218067,https://p.scdn.co/mp3-preview/9decda9b03bac39fbf6c68af5d5c9c386307c1a3?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,AUFF81300504,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,indietronica",0.656,0.61,0.0,-7.894,0.0,0.171,0.416,0.000172,0.245,0.52,140.058,4.0,,Future Classic,"C 2014 Future Classic, P 2014 Future Classic",4884 +4885,spotify:track:4cG7HUWYHBV6R6tHn1gxrl,Friday (feat. Mufasa & Hypeman) - Dopamine Re-Edit,"spotify:artist:7i9j813KFoSBMldGqlh2Z1, spotify:artist:1gALaWbNDnwS2ECV09sn2A, spotify:artist:4L2dV3zY7RmkeiNO035Fi0, spotify:artist:23rdR5gsZI5BqncTEKLtDU, spotify:artist:3Edve4VIATi0OZngclQlkN","Riton, Nightcrawlers, Mufasa & Hypeman, Mufasa, Dopamine",spotify:album:39qsmsNRXjVaFqTZj9af0j,Friday (feat. Mufasa & Hypeman) [Dopamine Re-Edit],"spotify:artist:7i9j813KFoSBMldGqlh2Z1, spotify:artist:1gALaWbNDnwS2ECV09sn2A, spotify:artist:4L2dV3zY7RmkeiNO035Fi0","Riton, Nightcrawlers, Mufasa & Hypeman",2021-01-15,https://i.scdn.co/image/ab67616d0000b273815cb538fd7821595b2bc8c5,1,1,169153,https://p.scdn.co/mp3-preview/0a9ed687dddcd95c83e37099958bdc6d54430e4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBCEN2000163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"house,pop dance,uk dance,disco house,hip house,vocal house,pop dance",0.824,0.862,2.0,-3.424,1.0,0.126,0.0076,0.000132,0.303,0.801,122.98,4.0,,Ministry of Sound Recordings,P (P) 2021 Ministry of Sound Recordings Limited,4885 +4886,spotify:track:6HNruFQlzQx4ulL4ppRLYI,The Pretender,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:1zCNrbPpz5OLSr6mSpPdKm,Greatest Hits,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-11-03,https://i.scdn.co/image/ab67616d0000b273136d7250568820409f8fdd60,1,4,267360,https://p.scdn.co/mp3-preview/2f0ad774749cf426596c4914bf450e4143f62e97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRW30700007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.43,0.955,9.0,-4.767,1.0,0.0424,0.000807,0.0,0.044,0.366,172.975,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",4886 +4887,spotify:track:09Ye4UiReVCKbF2sXIZHGq,We Are Done,spotify:artist:5geIMZUDvBE9CwP2iBnBuM,The Madden Brothers,spotify:album:0ZhJMo3vyoOjTfpxPKPdxp,We Are Done,spotify:artist:5geIMZUDvBE9CwP2iBnBuM,The Madden Brothers,2014-01-01,https://i.scdn.co/image/ab67616d0000b2735c14c56fbbe60e7b49e7255e,1,1,216467,https://p.scdn.co/mp3-preview/45a442217cad6dabfed0b688b3f4097f3fdb5fa5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71406586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.78,0.706,1.0,-8.346,0.0,0.0321,0.139,0.000184,0.106,0.834,121.155,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2014 Capitol Records, LLC, P ℗ 2014 Capitol Records, LLC",4887 +4888,spotify:track:3SPDQfj2UfWq6A2NllZnzn,What Makes You Beautiful,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:53DrBEDi1AvhWOtCdljUiu,Up All Night,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2012-05-25,https://i.scdn.co/image/ab67616d0000b273fd20e3d8ad722ecc509c3324,1,1,198053,https://p.scdn.co/mp3-preview/3abcba42a4cb3566c4840c29fd6695459065b1ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBHMU1100018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.729,0.771,4.0,-2.451,1.0,0.0725,0.00761,0.0,0.087,0.873,125.011,4.0,,Syco Music UK,P Track 2 (P) 2012; all other tracks (P) 2011 Simco Limited Under exclusive license to Sony Music Entertainment UK Limited,4888 +4889,spotify:track:2wfrWAfJ34NbQcl4c1DPC3,1996,spotify:artist:0Ya43ZKWHTKkAbkoJJkwIB,The Wombats,spotify:album:1hKNgyPKnkCjWtH5GtusTq,The Wombats Proudly Present... This Modern Glitch,spotify:artist:0Ya43ZKWHTKkAbkoJJkwIB,The Wombats,2011-04-22,https://i.scdn.co/image/ab67616d0000b27367c138b47ef3788cd065c35a,1,7,260400,https://p.scdn.co/mp3-preview/c2380f6b07eea23508e5032d2e12da3eed1d5ab9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBFTG1100013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"liverpool indie,modern alternative rock,modern rock",0.493,0.913,8.0,-5.093,0.0,0.0315,0.000214,0.0,0.77,0.606,106.156,4.0,,14th Floor Records,"C © 2011 14th Floor Records, P ℗ 2011 14th Floor Records",4889 +4890,spotify:track:6ORqU0bHbVCRjXm9AjyHyZ,Good Riddance (Time of Your Life),spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:3x2uer6Xh0d5rF8toWpRDA,Nimrod,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,1997-10-14,https://i.scdn.co/image/ab67616d0000b273da4f6706ae0f2501c61ce776,1,17,153466,https://p.scdn.co/mp3-preview/25e3289a356f376e09cc0089de4fcff05f1ec838?cid=9950ac751e34487dbbe027c4fd7f8e99,True,82,USRE19700545,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.475,0.432,7.0,-7.844,1.0,0.0302,0.183,0.0,0.161,0.648,94.605,4.0,,Reprise,"C © 1997 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S., P ℗ 1997 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S.",4890 +4891,spotify:track:3u2s7Dppp5ID2MxKnqxFyh,Blinded by the Light,spotify:artist:2utNxkLhreF1oIfO8kQT3q,Manfred Mann's Earth Band,spotify:album:26KSRCe7hYlBnONSypsaEM,The Roaring Silence,spotify:artist:2utNxkLhreF1oIfO8kQT3q,Manfred Mann's Earth Band,1976-08-27,https://i.scdn.co/image/ab67616d0000b27301bfd74814310f0b21d29d8a,1,1,428133,https://p.scdn.co/mp3-preview/036aea5fa3353816d8dc571aa45a1a5f589c7e05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBXM7610001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,blues rock,british blues,classic rock,folk rock,hard rock,mellow gold,progressive rock,soft rock,symphonic rock",0.456,0.696,5.0,-10.0,1.0,0.0653,0.291,0.000207,0.0853,0.508,142.156,4.0,,Creature Music,"C 1976 Petbrook Limited on exclusive licence to Creature Music Limited, P 1976 Petbrook Limited on exclusive licence to Creature Music Limited",4891 +4892,spotify:track:6FcjitC1iHMGJxsX3rCCct,How Deep Is Your Love,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,spotify:album:6ELHuXZkto0gI7imw9lX7J,Take That Greatest Hits,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,1996-03-25,https://i.scdn.co/image/ab67616d0000b2731139512d877ddfbd6e5a80ee,1,1,221000,https://p.scdn.co/mp3-preview/83e6cde5a2f02fb5065ff26673a2b9537190868a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9600020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop,talent show",0.786,0.376,4.0,-14.285,1.0,0.0273,0.672,0.000611,0.186,0.437,99.992,4.0,,RCA Records Label,P (P) 1996 BMG Entertainment International UK & Ireland Ltd.,4892 +4893,spotify:track:4ZnkygoWLzcGbQYCm3lkae,Rush,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,spotify:album:5UcGyEltve5psjxSRsHx8E,Something To Give Each Other,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2023-10-13,https://i.scdn.co/image/ab67616d0000b27367103283a4eb57578a428252,1,1,156391,https://p.scdn.co/mp3-preview/e25b1963b15dc0685aeb91493b9a638ef69bcb48?cid=9950ac751e34487dbbe027c4fd7f8e99,True,78,AUUM72300170,spotify:user:bradnumber1,2024-01-14T19:58:07Z,"australian pop,pop,viral pop",0.728,0.841,10.0,-7.682,0.0,0.0567,0.00242,9.09e-05,0.106,0.402,125.991,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2023 Universal Music Australia Pty Ltd., P ℗ 2023 Universal Music Australia Pty Ltd.",4893 +4894,spotify:track:5BpGb1TfAXdhJKagUBhd0G,"Hey, Western Union Man","spotify:artist:7Ew8IOlYDqnmn7wO68vSnc, spotify:artist:7a2sloQlmdKSmj3fwMMpg9","Max Merritt, The Meteors",spotify:album:1VDkBRZnbQJsbYsuAEOvyf,The Essential Max Merritt & The Meteors,"spotify:artist:7Ew8IOlYDqnmn7wO68vSnc, spotify:artist:7a2sloQlmdKSmj3fwMMpg9","Max Merritt, The Meteors",2007-11-17,https://i.scdn.co/image/ab67616d0000b273295b6f6dba803d0bf89d5024,1,1,232053,https://p.scdn.co/mp3-preview/3e9eafb80bec73f627726a007980ffc00de1d3eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM07646003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,classic nz pop,psychobilly,pub rock",0.612,0.701,5.0,-9.989,1.0,0.131,0.583,6.12e-05,0.0418,0.81,91.192,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,4894 +4895,spotify:track:7DLe5d6DPmsHTsExc7Kemu,Breakaway,spotify:artist:5Z7pOsavFP8sACkWxYHMW1,Big Pig,spotify:album:0AjnpyapxYx4AlAvDm0D8N,Bonk,spotify:artist:5Z7pOsavFP8sACkWxYHMW1,Big Pig,1987,https://i.scdn.co/image/ab67616d0000b2733fb7d6b77cb64c9a8b8705a1,1,4,218333,https://p.scdn.co/mp3-preview/2a18d96d91e30f2acee0c667aac29a5aaf5524b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUMU08800118,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,double drumming",0.782,0.673,1.0,-10.088,1.0,0.0278,0.222,2.51e-05,0.271,0.5,119.949,4.0,,WM Australia,"C © 1992 Mushroom Records, P ℗ 1987 Mushroom Records",4895 +4896,spotify:track:0qUCUYPr7GIitxFxanw5xu,Til I Make Peace With War,spotify:artist:5Xod5X5IpGhJGmDr30uJJi,Sam Winston,spotify:album:1hMNewdYOipsNv7OCndxxv,Til I Make Peace With War,spotify:artist:5Xod5X5IpGhJGmDr30uJJi,Sam Winston,2021-07-16,https://i.scdn.co/image/ab67616d0000b273e0c96004fc5e98e2f925972e,1,1,251840,https://p.scdn.co/mp3-preview/7b40d7ee3d64a2e9b87ab61d34dff7a1d3b54d5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBLLT2134828,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.569,0.275,2.0,-9.815,0.0,0.0369,0.755,0.0,0.0817,0.203,117.087,4.0,,Geppetto Records,"C 2021 Sam Winston, P 2021 Sam Winston",4896 +4897,spotify:track:3PzsbWSQdLCKDLxn7YZfkM,I'm On Fire,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,spotify:album:0PMasrHdpaoIRuHuhHp72O,Born In The U.S.A.,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,1984-06-04,https://i.scdn.co/image/ab67616d0000b273a7865e686c36a4adda6c9978,1,6,155880,https://p.scdn.co/mp3-preview/839fc52b6dca91c584207dbd9da6232640e5940a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USSM18400411,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"heartland rock,mellow gold,permanent wave,rock,singer-songwriter",0.62,0.446,1.0,-14.451,0.0,0.0347,0.589,0.0299,0.0727,0.868,88.591,4.0,,Columbia,P (P) 1984 Bruce Springsteen,4897 +4898,spotify:track:519uJbE3zyKLlToVA65PrP,Counting Stars,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:24REY1t8dFi2VXi6oUVO8j,Native (Deluxe),spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2013-01-01,https://i.scdn.co/image/ab67616d0000b273f5eaf1b4d675b763303a127b,1,1,257266,https://p.scdn.co/mp3-preview/6316f6cf12631da62c5b786421b25e66c3ab4ea6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUM71301306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.665,0.7,1.0,-4.946,0.0,0.042,0.066,0.0,0.119,0.473,121.961,4.0,,Interscope,"C (C) 2013 Mosley Music/Interscope Records, P (P) 2013 Mosley Music/Interscope Records",4898 +4899,spotify:track:0TjOyjjHJb9WmyUQlq1F12,You Can Get It If You Really Want,spotify:artist:1FcB6xMihhP9Hb6AdGVbWe,Desmond Dekker,spotify:album:6MVF2k2tOc6nHwa0yDtBHK,You Can Get It If You Really Want,spotify:artist:1FcB6xMihhP9Hb6AdGVbWe,Desmond Dekker,1970-01-01,https://i.scdn.co/image/ab67616d0000b27355739efaee1db119672beb35,1,1,162893,https://p.scdn.co/mp3-preview/ec7593c5a09b880e7245469534d9b37281a8ae1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE7000326,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"jamaican ska,reggae,rocksteady,ska,ska revival",0.797,0.388,1.0,-13.3,1.0,0.0557,0.192,0.0,0.0599,0.756,128.529,4.0,,Sanctuary Records,"C © 2018 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1970 Sanctuary Records Group Ltd., a BMG Company",4899 +4900,spotify:track:2e7Ek1y84iMzo1vL2djgvq,High Hopes - Live,spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,spotify:album:3NQJAg6DHRY2x2GsRT3WwQ,Pulse,spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,1995-06-13,https://i.scdn.co/image/ab67616d0000b2734582f64ffcbb1707c47c82c6,1,10,472266,https://p.scdn.co/mp3-preview/1cf9864f93bdb6b07399b2317cc61cc769498b6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDJQ9400050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,progressive rock,psychedelic rock,rock,symphonic rock",0.454,0.374,0.0,-14.035,0.0,0.0257,0.518,0.0104,0.944,0.157,75.113,4.0,,Parlophone UK,"C 1995 Pink Floyd (1987) Ltd, P 1995 Pink Floyd (1987) Ltd under exclusive licence to Parlophone Records Ltd, a Warner Music Group Company",4900 +4901,spotify:track:4BdIF3xsMAUhOjuh0BSzOo,Gold,spotify:artist:1IEICAjQ2utMbLHi7zoc5f,John Stewart,spotify:album:6wF5TxOUi2DpBkH9QnAGlx,Airdream Believer,spotify:artist:1IEICAjQ2utMbLHi7zoc5f,John Stewart,2005-06-20,https://i.scdn.co/image/ab67616d0000b2730fafd272ac6998f25836a8be,1,11,244133,https://p.scdn.co/mp3-preview/95d57bf9d12409863c87a30fd7dd2f7d36e6233c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA560558793,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.692,0.598,9.0,-7.893,0.0,0.0373,0.464,1.2e-06,0.0926,0.519,124.045,4.0,,Shanachie,"C 2005 Shanachie, P 2005 Shanachie",4901 +4902,spotify:track:66PfPTUffMiRMhaXES6saZ,Tsunami (Jump) [feat. Tinie Tempah],"spotify:artist:5X4LWwbUFNzPkEas04uU82, spotify:artist:4uiMn2g0pgTrhN096QJhbp, spotify:artist:0Tob4H0FLtEONHU1MjpUEp","DVBBS, Borgeous, Tinie Tempah",spotify:album:6eYc36pqswRhpMbJ0FxUk0,"Bombsquad, Vol. 1 (Mixed by Bombs Away & Tenzin)",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-09-26,https://i.scdn.co/image/ab67616d0000b2731d88c78c55cbb6fc5b6f8d92,1,26,159492,https://p.scdn.co/mp3-preview/3029fd04d7411262ca490ff7022937410e1567ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,NLZ541300982,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian electronic,dutch house,edm,electro house,pop dance,progressive electro house,slap house,dutch house,edm,electro house,pop dance,progressive electro house,progressive house,dance pop,grime,pop rap",0.699,0.982,11.0,-1.115,0.0,0.142,0.0416,0.000343,0.0851,0.389,127.955,4.0,,Bombsquad,"C 2014 Bombsquad, P 2014 Bombsquad",4902 +4903,spotify:track:30EN9Tgoc1nZfoUD6pNapa,"What's The Frequency, Kenneth?",spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,spotify:album:6Kz3n3bib9jVdPVQPfCFDN,Monster,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,1994-09-27,https://i.scdn.co/image/ab67616d0000b27389e518ca66da529643bcd30e,1,1,239466,https://p.scdn.co/mp3-preview/f3f3aef8cbe2170ca6b9b2539bcf4c1ef0bc17a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB19901508,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,athens indie,permanent wave,rock",0.367,0.922,2.0,-4.53,1.0,0.0343,0.177,0.308,0.174,0.712,94.733,4.0,,Warner Bros.,"C 1994 R.E.M./Athens Ltd.,, P 1994 R.E.M./Athens Ltd.,",4903 +4904,spotify:track:2EtPb0zzvhRj3Mq1qicOpo,The Fly,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:1U69hFsxaQxP6fquZmOmNH,Achtung Baby,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1991-11-18,https://i.scdn.co/image/ab67616d0000b273b1bdbab41920011be3f223a7,1,7,269053,https://p.scdn.co/mp3-preview/7b512e55a1c6ea18c7da1372a9ff851056f30c73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71106459,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.524,0.923,11.0,-8.866,0.0,0.0569,4.55e-05,0.0273,0.194,0.402,108.295,4.0,,Universal Music Group,"C © 2011 Universal-Island Records Limited under exclusive licence to Mercury Records Limited in the UK, Interscope Records in the US and Universal Music Group for the rest of the world, P ℗ 2011 Universal-Island Records Limited under exclusive licence to Mercury Records Limited in the UK, Interscope Records in the US and Universal Music Group for the rest of the world",4904 +4905,spotify:track:3Nf8oGn1okobzjDcFCvT6n,I'll Stand by You,spotify:artist:0GByy3DcfbQwDvXGCWmzv9,Pretenders,spotify:album:6MH35oajuCbpS9YBmwTrPf,Last of the Independents,spotify:artist:0GByy3DcfbQwDvXGCWmzv9,Pretenders,1994-06-01,https://i.scdn.co/image/ab67616d0000b273b2bcbfcf7d8e8c326ab8481b,1,7,240760,https://p.scdn.co/mp3-preview/17b0d153b1bacadb1f96bf74a99da63b6c1d40a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBAHT9403736,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,rock,soft rock",0.438,0.606,7.0,-6.549,1.0,0.0305,0.3,4.49e-06,0.0754,0.266,133.822,4.0,,Rhino/Warner Records,"C © 2004 Warner Records Inc. Manufactured and Marketed by Warner Strategic Marketing, P ℗ 2004 Warner Records Inc. Manufactured and Marketed by Warner Strategic Marketing",4905 +4906,spotify:track:5Hnje8d8AJsNVF85VicaCE,Creep,spotify:artist:1NFdLYtu29c6NKzd49BdEd,ELAZ,spotify:album:7FnTvqpagU1bCiMpFYlbwv,Creep,spotify:artist:1NFdLYtu29c6NKzd49BdEd,ELAZ,2021-08-06,https://i.scdn.co/image/ab67616d0000b27369d002017b1f0aebbb784c70,1,1,236608,https://p.scdn.co/mp3-preview/5311c8624e9ce650c33df957a8ed898a1e1786c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ESA011665983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.524,0.378,2.0,-7.595,1.0,0.0279,0.625,8.26e-05,0.111,0.0946,93.03,4.0,,"ELAZ ENTERPRISES, LLC","C 2021 ELAZ, P 2021 ELAZ",4906 +4907,spotify:track:4VlUF9CigmUOU2gyXDCmP8,It's Only Make Believe,spotify:artist:7gi3jmwpUpNWdswT8eEprF,Conway Twitty,spotify:album:40IMW6THJLdzfyxx5ngRc7,Greatest Hits - Finest Performances,spotify:artist:7gi3jmwpUpNWdswT8eEprF,Conway Twitty,1995-01-01,https://i.scdn.co/image/ab67616d0000b273c01d6486f8c016be893a8945,1,7,150133,https://p.scdn.co/mp3-preview/09d7535b02458a66deb09f6b390d37d31337aed4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USSE60414217,spotify:user:bradnumber1,2022-05-18T21:50:19Z,"arkansas country,classic country pop,country,country rock",0.562,0.381,10.0,-11.303,1.0,0.032,0.777,5.25e-05,0.12,0.479,115.2,3.0,,Sun Records,"C © 1995 Sun Label Group, LLC, P ℗ 1995 Sun Label Group, LLC",4907 +4908,spotify:track:0UUpyDCYzkziXJ1TM4awHM,Blame It on the Rain,spotify:artist:3vRclCt9VnNhYIxFMQCxuM,Milli Vanilli,spotify:album:6YOOLhdZhPoLDhEe8862YD,4 Hits: Milli Vanilli,spotify:artist:3vRclCt9VnNhYIxFMQCxuM,Milli Vanilli,2011-06-03,https://i.scdn.co/image/ab67616d0000b27327633a9334316bf2ce9d6bc2,1,3,248533,https://p.scdn.co/mp3-preview/087f1482fdf31ae8ea29b547e2d4e92bd1eff15e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,DEC738900004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,new jack swing,new wave pop",0.758,0.827,4.0,-6.151,0.0,0.0774,0.00326,0.000169,0.0946,0.506,97.515,4.0,,MCI,P (P) 2011 Sony Music Entertainment Germany GmbH,4908 +4909,spotify:track:3dwfXV65mB1oGbqGx845JT,Lost In Love,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,spotify:album:5s5iUa9XoCRVXNJiTawxjB,Lost In Love,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,1980-01-01,https://i.scdn.co/image/ab67616d0000b273ce152af8c51f3030bbd6435e,1,1,234160,https://p.scdn.co/mp3-preview/0606b2c7940b938255a9c4e7e4a1cb02607e4df1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USAR18000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.587,0.421,7.0,-15.122,1.0,0.0308,0.458,4.56e-05,0.116,0.498,114.393,4.0,,EMI Music Australia,"C © 1980 Big Time Phonograph Recording Co. Pty. Ltd., P ℗ 1980 Big Time Phonograph Recording Co. Pty. Ltd.",4909 +4910,spotify:track:359mcwgSBkbB6FSWnl6c4F,Touch It,spotify:artist:7peqq4aACFkBwIWGG0YRJ9,Monifah,spotify:album:2ZI9aEoe4mxZ6zoH3kn9eb,Rhythm 'N' Grooves,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-10-12,https://i.scdn.co/image/ab67616d0000b2735deb331a3fedb8b0ee15b478,1,3,283830,https://p.scdn.co/mp3-preview/f0feffbf0e7a0458256f7fbda582f9206a9e5f2c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USUR19801497,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing,r&b",0.858,0.545,8.0,-7.834,0.0,0.0768,0.0287,0.0517,0.136,0.815,115.458,4.0,,Everything to Everyone,"C © 2018 UMG Recordings, Inc., P This Compilation ℗ 2018 UMG Recordings, Inc.",4910 +4911,spotify:track:0mIuRQsRez89DqQ1jXmske,Long Day,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:7GHROYaPxZr0dRMYQ7xHHu,The Matchbox Twenty Collection,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2013-11-08,https://i.scdn.co/image/ab67616d0000b273a09220722ea0004d7da146a7,1,2,225666,https://p.scdn.co/mp3-preview/09fe3d69aa16e746c6c048d73b84105a22b5e07d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USAT29600050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.458,0.822,8.0,-6.613,0.0,0.0431,0.00279,0.0,0.15,0.6,104.103,4.0,,Emblem / Atlantic,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",4911 +4912,spotify:track:3ZWGhhdpOgBJCHI4HZ2xrn,Frozen Orange Juice,spotify:artist:3ExGDjEKejMhyciAgxPe0B,Peter Sarstedt,spotify:album:6dBpKIruDjddNXc5ps2eW3,Playlist: The Best Of Peter Sarstedt,spotify:artist:3ExGDjEKejMhyciAgxPe0B,Peter Sarstedt,2016-05-20,https://i.scdn.co/image/ab67616d0000b273be8f688f6b18a9e29ee1477b,1,5,190626,https://p.scdn.co/mp3-preview/22ca9451a837cd6e1ecf59d1e3cbfd6cc089bcf8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBAYE6900365,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british folk,0.524,0.604,5.0,-9.698,1.0,0.0415,0.0757,5.49e-06,0.438,0.517,119.494,4.0,,Rhino,"C © 2016 Parlophone Records Limited, a Warner Music Group Company, P ℗ 2016 Parlophone Records Limited, a Warner Music Group Company",4912 +4913,spotify:track:0PxYWaGiwWtcuL1VIMiEW4,The Loco-Motion - Remastered 2002,spotify:artist:0qEcf3SFlpRcb3lK3f2GZI,Grand Funk Railroad,spotify:album:4Z0J6OrdQQjFXtqBW0XXsA,Shinin' On (Expanded Edition),spotify:artist:0qEcf3SFlpRcb3lK3f2GZI,Grand Funk Railroad,1974-03-01,https://i.scdn.co/image/ab67616d0000b2733ec90d54a77d59942d91f229,1,3,165800,https://p.scdn.co/mp3-preview/e81c4ad74db600584e7099bca3b0159a8d55bac9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USCA20200346,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.456,0.933,0.0,-5.212,1.0,0.153,0.375,0.0,0.563,0.367,125.051,4.0,,Capitol Records,"C © 1974 Capitol Records, LLC, P ℗ 2003 Capitol Records, LLC",4913 +4914,spotify:track:7vw6f0Kw6iviClqb47nf1y,See You Again,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:5Cwc6WwjnYmtiIOILVm9le,See You Again,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2009-01-01,https://i.scdn.co/image/ab67616d0000b273096ad7426bd56a20539a7965,1,1,190373,https://p.scdn.co/mp3-preview/e0e3e1251adf32cf1ae35c6ada40b589b7103b4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USHR10723141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.692,0.911,9.0,-5.098,0.0,0.177,0.0149,7.34e-05,0.112,0.801,138.976,4.0,,Hollywood Records,"C © 2009 Hollywood Records, Inc, P ℗ 2009 Hollywood Records, Inc",4914 +4915,spotify:track:0UOguLYTbPVXplQwFBpaDH,Sweet Hitch-Hiker,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:4HirIvj3y4Ok3o2MCZtdfB,Mardi Gras,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1972-04-11,https://i.scdn.co/image/ab67616d0000b2738be6c7e974cc6c9ac8d5be86,1,10,177266,https://p.scdn.co/mp3-preview/9199f8959ba09c277ac9f908beb3a5538d9dfc5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USFI87200112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.58,0.849,2.0,-11.664,1.0,0.0325,0.0316,0.0405,0.341,0.929,142.706,4.0,,Craft Recordings,"C © 1989 Fantasy, Inc., P This Compilation ℗ 1989 Fantasy, Inc.",4915 +4916,spotify:track:5kTvymHsmlmcy5yQWbWO1U,Won't Go Home Without You,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:1cCm3jwAW9eJtEGyzpxlXY,It Won't Be Soon Before Long (International Version),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2007-01-01,https://i.scdn.co/image/ab67616d0000b27321c49f0a1e28ad3ab71311bc,1,5,231173,https://p.scdn.co/mp3-preview/6c1a81e518b21018bd08dc38cefea909b76ad736?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70731562,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.737,0.615,3.0,-3.76,1.0,0.0317,0.0149,0.0,0.102,0.41,110.023,4.0,,Universal Music Group,"C © 2007 A&M/Octone Records, P ℗ 2007 Interscope Records",4916 +4917,spotify:track:3LUWWox8YYykohBbHUrrxd,We R Who We R,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:0pGumY11G8OGH05ti6jh23,Cannibal (Expanded Edition),spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010-11-19,https://i.scdn.co/image/ab67616d0000b2733556ff5e46e50eb27be71ebe,1,2,204760,https://p.scdn.co/mp3-preview/87e275c268cbc6f76b509f4dd237bcea41d92059?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USRC11000862,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.736,0.817,8.0,-4.9,1.0,0.0407,0.00987,0.00167,0.117,0.653,119.95,4.0,,RCA Records Label,"P (P) 2010 RCA Records, a division of Sony Music Entertainment",4917 +4918,spotify:track:4XX1pFUkQOZTYp6Hb6a6Ae,Venus,spotify:artist:3sc7iUG1Wwpwx7bHeZolgx,Bananarama,spotify:album:6CVuruIUWoYViZM97wgq9h,True Confessions (Collector's Edition),spotify:artist:3sc7iUG1Wwpwx7bHeZolgx,Bananarama,1986-01-01,https://i.scdn.co/image/ab67616d0000b27307d3de253ec02c26c04b95f1,1,6,229164,https://p.scdn.co/mp3-preview/d123a2e42246dd400e8f5c42c7d25ff576dcc6e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBAAP9600095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,hi-nrg,new romantic,new wave,new wave pop,soft rock",0.722,0.961,9.0,-4.812,1.0,0.0514,0.0883,0.61,0.278,0.911,126.113,4.0,,London Records (Because Ltd),"C © 1986 London Records Ltd, P ℗ 1986 London Records Ltd",4918 +4919,spotify:track:2wCgOxYof67qXam24a3pHz,Holiday Rap - Version 1986,spotify:artist:4LxtkdZFFbBjqvRkehIbAq,MC Miker & DJ Sven,spotify:album:3V5IbtfYHbFSr2dHQ0944q,Holiday Rap: Best of Collector Mc Miker & DJ Sven (Original Version),spotify:artist:4LxtkdZFFbBjqvRkehIbAq,MC Miker & DJ Sven,1986,https://i.scdn.co/image/ab67616d0000b273ca34bbada4c69bf9dd874775,1,1,266274,https://p.scdn.co/mp3-preview/ab920fac586047395e81ca30fb03bd49ed031232?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,NLE320400069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.882,0.816,2.0,-6.967,1.0,0.0762,0.0388,0.0,0.0841,0.888,115.993,4.0,,Musiques & Solutions,"C Musiques & Solutions, P 1986, Dureco / Strengholt Music Group / Musiques & Solutions",4919 +4920,spotify:track:3XAiXl3dKpG7b0qcrCtBD4,So Long,spotify:artist:3fRV5Jo7lNKhRSx4C3sLMZ,Fischer-Z,spotify:album:6KBvF1C8AjaPR8UttypxGk,Going Deaf For A Living,spotify:artist:3fRV5Jo7lNKhRSx4C3sLMZ,Fischer-Z,1980-05,https://i.scdn.co/image/ab67616d0000b2737b7d80c4d70f3c02237f4fe5,1,2,302733,https://p.scdn.co/mp3-preview/b4f9681f21b527b592d7eca7c874f9d60bdb91d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBAYE8000054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,zolo,0.556,0.384,0.0,-14.98,1.0,0.0407,0.00697,0.000926,0.0545,0.891,126.841,4.0,,Parlophone UK,"C © 1980 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1980 Parlophone Records Ltd, a Warner Music Group Company",4920 +4921,spotify:track:7LqjznQwfrax7MjQXmxqdQ,Jenny from the Block (feat. Jadakiss & Styles P.) - Track Masters Remix,"spotify:artist:2DlGxzQSjYe5N6G9nkYghR, spotify:artist:5pnbUBPifNnlusY8kTBivi, spotify:artist:2x8KDZdSONA3872CnhaAlX","Jennifer Lopez, Jadakiss, Styles P",spotify:album:1l8TpRDfjJjKdtbzNtSycM,This Is Me...Then,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2002,https://i.scdn.co/image/ab67616d0000b273a1bf4c1efc808162ac95090f,1,7,187840,https://p.scdn.co/mp3-preview/14dfbec7bba1a77ba0cc970c0c3fd96ba8cfff0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM10212454,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,battle rap,east coast hip hop,trap,battle rap,dirty south rap,east coast hip hop",0.845,0.768,6.0,-5.448,1.0,0.188,0.00733,5.04e-06,0.0575,0.96,100.0,4.0,,Epic,P (P) 2002 Sony Music Entertainment Inc.,4921 +4922,spotify:track:1iGOWSHgpxYuVz3nObp7et,Rock and Roll Ain't Noise Pollution,spotify:artist:3csPGzuEd89ehDO17NPOdy,Rock Hits,spotify:album:6r6J7hh5g8BWmKWI8Awmab,Back in Black + Thunderstruck (Bonus Track) - Tribute to AC/DC - Highway to Hell - TNT,spotify:artist:3csPGzuEd89ehDO17NPOdy,Rock Hits,2012-10-24,https://i.scdn.co/image/ab67616d0000b2730bbaaec0303ae1a3de435311,1,10,253075,https://p.scdn.co/mp3-preview/28c763357aa27db26c76badcad1ce543e452e3f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABK1213178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.626,0.517,9.0,-5.147,1.0,0.0444,0.00149,0.158,0.123,0.634,94.556,4.0,,Rock Hits,"C 2012 Rock Hits, P 2012 Rock Hits",4922 +4923,spotify:track:0ZEhlT9v8CdOKu55zhYGv9,Don't Cry (Original),spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:4L5pz06MVlsWaTEjSQPN8h,Use Your Illusion I,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1991-09-17,https://i.scdn.co/image/ab67616d0000b273c5803d7a2712cc6beee72281,1,4,284800,https://p.scdn.co/mp3-preview/9629f477f594def6531865c7783910a0a85473a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19141504,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.437,0.572,8.0,-8.648,0.0,0.0339,0.00191,0.00243,0.116,0.239,124.172,4.0,,Universal Music Group,"C © 1991 Geffen Records Inc., P ℗ 1991 Geffen Records Inc.",4923 +4924,spotify:track:66DVrZXykWtHNqWIQw9HVO,Dance Again,"spotify:artist:1vtjEEpXUblXe3FHKOALcD, spotify:artist:3UEWPRL5vRlNOP1zhRQf71","NEWEM, Baby Alpaca",spotify:album:29HGdZJkCWTi6mLIGRsjXh,Dance Again,"spotify:artist:1vtjEEpXUblXe3FHKOALcD, spotify:artist:3UEWPRL5vRlNOP1zhRQf71","NEWEM, Baby Alpaca",2021-06-18,https://i.scdn.co/image/ab67616d0000b2739b0f9b1642b59e9cb1732d06,1,1,262018,,False,0,QZ4K31600237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,brooklyn indie,0.642,0.653,1.0,-7.832,1.0,0.0366,0.0387,0.00845,0.0949,0.0334,109.055,4.0,,bORDEL,"C 2021 bORDEL, P 2021 Scratch Massive",4924 +4925,spotify:track:0CtkjgZpkgnW7U6WmHsakD,It's Like That,"spotify:artist:3CQIn7N5CuRDP8wEI7FiDA, spotify:artist:5w0ka9nPOmEH6CcZrutyP2","Run–D.M.C., Jason Nevins",spotify:album:3bRdFxQZdU5g6VjLq8KaU7,The Greatest Hits,spotify:artist:3CQIn7N5CuRDP8wEI7FiDA,Run–D.M.C.,2002-09-10,https://i.scdn.co/image/ab67616d0000b273a4ad282a80ca274058a0618d,1,1,250626,https://p.scdn.co/mp3-preview/96c34eb444ca9d7fb771afc47a1fd85c556eda29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAR19700609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,golden age hip hop,hip hop,old school hip hop,queens hip hop,rap",0.852,0.874,7.0,-11.209,1.0,0.0427,0.0168,0.434,0.133,0.667,129.03,4.0,,Arista,P (P) 2003 BMG UK & Ireland Ltd,4925 +4926,spotify:track:2X9HHYtslWjm1rnh1Vy91g,Alive,spotify:artist:49NJc5qDmCRsN3SsBAqEa4,Natalie Bassingthwaighte,spotify:album:46ekOtyTUnhxvmaW1hJkI0,1000 Stars,spotify:artist:49NJc5qDmCRsN3SsBAqEa4,Natalie Bassingthwaighte,2009-02-20,https://i.scdn.co/image/ab67616d0000b27306714572d5d60e816237dc85,1,4,211000,https://p.scdn.co/mp3-preview/6ab5031dc826ff71424bfd03b404c9378cca0839?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUBM00800547,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.506,0.849,2.0,-3.782,1.0,0.0431,0.00676,5.65e-06,0.329,0.319,129.935,4.0,,Sony BMG Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd,4926 +4927,spotify:track:1dU1RZwl8B3IbkJ2Wfod5o,Amazing,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,spotify:album:0NlWxGZ1FFqI9qxjeKLiin,Amazing - The Best Of,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,2006-01-01,https://i.scdn.co/image/ab67616d0000b27324ca4afd5fde51f4ebc23bc0,1,1,202133,https://p.scdn.co/mp3-preview/6f6285c6b312a4c13180aa068c2c47cd5a982ad4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUEM00100083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.497,0.778,9.0,-5.443,1.0,0.0366,0.00271,1.32e-06,0.071,0.454,99.973,4.0,,EMI Music Australia,"C © 2006 EMI Recorded Music Australia Pty Ltd., P ℗ 2006 EMI Recorded Music Australia Pty Ltd.",4927 +4928,spotify:track:3Ubzvmqs1Dp2y3zjpZ0W0l,Luv Your Life,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:0Zq85Us1Vyb4BhbjvIx9VN,Diorama (U.S. Version),spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,2002-07-29,https://i.scdn.co/image/ab67616d0000b273f3b8847b4ae44d7583d7e65b,1,8,269493,https://p.scdn.co/mp3-preview/06bfa43349227b6d75a805e16dc25ee41ee9731c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USAT20200745,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.366,0.472,0.0,-8.713,1.0,0.0262,0.00762,0.00106,0.537,0.399,80.047,4.0,,Atlantic Records,"C © 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the rest of the world (including Japan but excluding the rest of Asia and Australasia)., P ℗ 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the rest of the world (including Japan but excluding the rest of Asia and Australasia).",4928 +4929,spotify:track:5nvAjuMBkiyztv3bpyCBNd,The Minute You're Gone - 2000 Remaster,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:6YZb35WBIM7ZlJf782E6gO,The Singles Collection,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,2002-08-12,https://i.scdn.co/image/ab67616d0000b273b2e5e39ce3f621e9ca2a8ec5,2,5,139026,https://p.scdn.co/mp3-preview/535180a5c1d283faa7c26037e57db53d8521f3a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,GBAYE0001130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.386,0.43,7.0,-7.602,0.0,0.0333,0.412,0.0,0.144,0.606,86.712,3.0,,Parlophone UK,"C © 2002 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2002 Parlophone Records Ltd, a Warner Music Group Company",4929 +4930,spotify:track:2rKjTiwhbkdM2focSdHc7p,Friday on My Mind,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,spotify:album:3SyxsGqgDR1LZFWU3Z48jE,Friday On My Mind,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,1965,https://i.scdn.co/image/ab67616d0000b273a90ebf74836caf37e5c25844,1,6,162106,https://p.scdn.co/mp3-preview/96c6daf190025c11d8687690bce1968053e46770?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06600062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,freakbeat,protopunk,psychedelic rock",0.418,0.882,2.0,-9.083,1.0,0.0405,0.279,0.000678,0.111,0.733,94.717,4.0,,Albert Productions,P (P) 1965-1968 Albert Productions,4930 +4931,spotify:track:1RSy7B2vfPi84N80QJ6frX,Blue Monday - 2016 Remaster,spotify:artist:0yNLKJebCb8Aueb54LYya3,New Order,spotify:album:2ODAEaYlqS88SU4ZZu1bI6,Singles (2016 Remaster),spotify:artist:0yNLKJebCb8Aueb54LYya3,New Order,2005-09-30,https://i.scdn.co/image/ab67616d0000b273f142205e336ec0af3e1a4eb0,1,5,450800,https://p.scdn.co/mp3-preview/cb250216b0325d8a3168db2d234fa4edf451144f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBAAP1500066,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,madchester,new romantic,new wave,permanent wave,post-punk,synthpop,uk post-punk",0.793,0.703,0.0,-9.548,1.0,0.0581,0.000726,0.88,0.075,0.856,130.27,4.0,,Rhino/Warner Records,"C © 2016 Warner Music UK Limited, P ℗ 2016 Warner Music UK Limited",4931 +4932,spotify:track:3BMwUo9vfHHiJ9NsMyubBu,Burn for You,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:5jnIkqro2uzzkqKe67UiPT,Chain Reaction,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1990-09-24,https://i.scdn.co/image/ab67616d0000b273bc42a3c1798a35d10a72b052,1,3,212933,https://p.scdn.co/mp3-preview/330c5b8eec43f3544e08066af41fff1bde388c20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUBM09041013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.547,0.132,8.0,-15.204,0.0,0.0303,0.896,0.0,0.0981,0.33,97.136,4.0,,BMG Music,P (P) 1990 BMG Arista/Ariola Limited,4932 +4933,spotify:track:0WxSQtLMCLcsAOhliamv5W,Five More Minutes,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,spotify:album:0i96PtPJV65ddxsfMfo45F,XV,"spotify:artist:7gOdHgIoIKoe4i9Tta6qdD, spotify:artist:790FomKkXshlbRYZFtlgla","Jonas Brothers, KAROL G",2020-05-15,https://i.scdn.co/image/ab67616d0000b2733b3cd45dfa6f779c01d63fdb,1,2,150366,https://p.scdn.co/mp3-preview/b15183f87c2388aafbe72ca3f4a00d77545c5086?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USUG12000189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.836,0.304,4.0,-7.948,1.0,0.0666,0.305,0.0,0.0979,0.688,94.037,4.0,,Republic Records,"C © 2020 Jonas Brothers Recording, Limited Liability Company, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Jonas Brothers Recording, Limited Liability Company, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",4933 +4934,spotify:track:444WxrvrKV9E83k7KJfIpj,Stumblin' In,"spotify:artist:2Pawr6MMX9VBIQ9oUHg7jc, spotify:artist:15jHZ1EZwmm2QDjKctvqJQ","Chris Norman, Suzi Quatro",spotify:album:7464gRzPYTyKQONjnZVCH7,The Montreux Album (New Extended Version),spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,1978,https://i.scdn.co/image/ab67616d0000b2739e98e24b09e51df80c6ce3f1,1,13,236720,https://p.scdn.co/mp3-preview/705f1d5e20726273f8b6252155a488a09fd5fef8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,DEA817800048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,glam rock",0.723,0.828,7.0,-6.185,1.0,0.0419,0.0165,4.48e-05,0.33,0.84,129.272,4.0,,Sony Music Catalog,P (P) 2016 Sony Music Entertainment Germany GmbH,4934 +4935,spotify:track:14lVbqA42Q0Z6w9B0wDbJj,Ten Days,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,spotify:album:51IhiDgn6im5wmat5BMbZP,The Sound Of White (Deluxe),spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,2005-06-06,https://i.scdn.co/image/ab67616d0000b273c6d229f127d15fb04c00487e,1,2,225146,https://p.scdn.co/mp3-preview/38f52862e5f1c03023cff3be73ce2693be163b5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB10403635,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop",0.516,0.592,5.0,-6.843,1.0,0.0327,0.46,0.0,0.129,0.342,83.613,4.0,,Reprise,"C 2005 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P 2005 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",4935 +4936,spotify:track:5qqabIl2vWzo9ApSC317sa,Wonderwall - Remastered,spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,spotify:album:1VW1MFNstaJuygaoTPkdCk,(What's The Story) Morning Glory? [Remastered],spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,1995-10-02,https://i.scdn.co/image/ab67616d0000b27385e5dcc05cc216a10f141480,1,3,258773,https://p.scdn.co/mp3-preview/a983b69e865235e4874c8bb1d6b6f700bdebe5e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBQCP1400109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,britpop,madchester,permanent wave,rock",0.376,0.896,2.0,-4.065,1.0,0.0395,0.000452,0.0,0.194,0.472,174.379,4.0,,Big Brother,P (P) 2014 Big Brother Recordings Ltd exclusively licensed to Sony Music Entertainment UK Limited/(P) 2014 Big Brother Recordings Ltd exclusively licensed to Sony Music Entertainment UK Limited),4936 +4937,spotify:track:3CIsbbo8UeaKuIq0D0iVsB,Timebomb,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:58ndBvmdV2CNeWQNonCEk7,Timebomb,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2012-05-25,https://i.scdn.co/image/ab67616d0000b273378d7b9c4f97bfafb7da81dc,1,1,177331,https://p.scdn.co/mp3-preview/bb1a53639564bea74c22f447464be49b49c1e276?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAYE1200818,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.711,0.942,0.0,-6.352,1.0,0.0422,0.0146,0.551,0.227,0.938,128.027,4.0,,WM Australia,"C © 2012 KDB Pty Limited, P ℗ 2012 KDB Pty Limited",4937 +4938,spotify:track:4Wr14AISsCuBGdkA6rids4,Fly Robin Fly,spotify:artist:5QHvbEwccF3WANUD5lEIuA,Silver Convention,spotify:album:7oBAC7hVvGjIOWYyPpRYYI,Silver Convention - Fly Robin Fly,spotify:artist:5QHvbEwccF3WANUD5lEIuA,Silver Convention,2010-09-20,https://i.scdn.co/image/ab67616d0000b2738daf12b034cab3d5442003dc,1,1,230920,https://p.scdn.co/mp3-preview/a0a5275b00576ec045eefc592770f1f6e2a2f199?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USRDC7520003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.826,0.406,0.0,-14.153,0.0,0.0317,0.00719,0.731,0.0725,0.939,100.278,4.0,,Butterfly Productions,"C 2010 Butterfly Productions, P 2010 Butterfly Productions",4938 +4939,spotify:track:5sdb5pMhcK44SSLsj1moUh,I Found You (with Calvin Harris),"spotify:artist:5CiGnKThu5ctn9pBxv7DGa, spotify:artist:7CajNmpbOovFoOoasH2HaY","benny blanco, Calvin Harris",spotify:album:3jfSJj7tHJxk1a4i2KZt9F,I Found You (with Calvin Harris),"spotify:artist:5CiGnKThu5ctn9pBxv7DGa, spotify:artist:7CajNmpbOovFoOoasH2HaY","benny blanco, Calvin Harris",2018-11-02,https://i.scdn.co/image/ab67616d0000b2737a20c455aa928fbac1fc7ddc,1,1,191495,https://p.scdn.co/mp3-preview/be7e82004c6a80f03a6bb4bcad463f8ad9c1e081?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USUM71817583,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,edm,electro house,house,pop,progressive house,uk dance",0.775,0.872,6.0,-4.194,1.0,0.0469,0.033,0.0579,0.298,0.379,122.994,4.0,,Benny Blanco Solo Album PS,"C © 2018 Friends Keep Secrets/Interscope Records, P ℗ 2018 Friends Keep Secrets/Interscope Records",4939 +4940,spotify:track:734dv5bToSYHk3yvN4t6F4,The Prize (feat. Bridgette Amofah),"spotify:artist:3D6cosC5ZOLCpRxt6T3XS7, spotify:artist:56M3ygaDkvVGUlMTDm0LAV","The Kite String Tangle, Bridgette Amofah",spotify:album:6fx8qUYs9hACUZHMgv58vT,The Kite String Tangle,spotify:artist:3D6cosC5ZOLCpRxt6T3XS7,The Kite String Tangle,2017-07-14,https://i.scdn.co/image/ab67616d0000b27343d46aa2f801a6e6c45a1434,1,3,214333,https://p.scdn.co/mp3-preview/5890f71952a2bbade339091b13c0ca407c78d2e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUWA01700149,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian indie,brisbane indie",0.7,0.722,6.0,-4.728,0.0,0.0384,0.316,0.00355,0.104,0.408,123.986,4.0,,WM Australia,"C © 2017 The Kite String Tangle Pty Ltd, P ℗ 2017 The Kite String Tangle Pty Ltd. Marketed and distributed by Warner Music Australia Pty Ltd under exclusive licence",4940 +4941,spotify:track:7yCm5uEZcQ6uzt9E5Py6IR,Middle Of The Night,"spotify:artist:7gAppWoH7pcYmphCVTXkzs, spotify:artist:4ehtJnVumNf6xzSCDk8aLB","The Vamps, Martin Jensen",spotify:album:52bwpFP1d8uri0V5oWQLF0,Night & Day (Night Edition),spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,2017-07-14,https://i.scdn.co/image/ab67616d0000b2736d212964f44127ddabdac111,1,1,174600,https://p.scdn.co/mp3-preview/128edc2a4e1d6ce60da643c9f672afe659b13791?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71701537,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,danish electronic,edm,pop dance",0.607,0.724,11.0,-4.313,0.0,0.0517,0.00392,0.0,0.0712,0.414,130.008,4.0,,Universal Music Group,"C © 2017 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2017 Virgin EMI Records, a division of Universal Music Operations Limited",4941 +4942,spotify:track:2Mik4RyMTMGXscX9QGiDoX,Surfin' Bird,spotify:artist:5QEA3sofVt5QckQA6QX2nN,The Trashmen,spotify:album:0Jd1JEB052GzXxma58o1nX,Surfin' Bird,spotify:artist:5QEA3sofVt5QckQA6QX2nN,The Trashmen,1995-02-24,https://i.scdn.co/image/ab67616d0000b2730878cd5242b4698a0483ce71,1,1,143293,https://p.scdn.co/mp3-preview/b6fa4d1359bde203f970efd0e65d2a1bc7f015ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCWY0610054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic garage rock,protopunk,surf music",0.587,0.968,11.0,-9.393,1.0,0.0527,0.000869,0.000606,0.329,0.845,99.231,4.0,,Sundazed Music / Modern Harmonic,"C 1995 Sundazed Music, P 1995 ATLANTIC MUSIC CORP., BEECHWOOD MUSIC",4942 +4943,spotify:track:0D9uT7MkZeaxOq6ka9QoHC,Burn,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:2PzvfJGK74FgwPrvMB0qOh,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2008-11-17,https://i.scdn.co/image/ab67616d0000b2732e14e3c145c0cac92a12feac,1,3,174000,https://p.scdn.co/mp3-preview/c5572db7b5fc14cf04d8c13f55926eeba726a0ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUBM00800491,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.771,0.691,5.0,-3.885,0.0,0.0909,0.0346,1.69e-06,0.249,0.409,126.009,4.0,,Sony BMG Music Entertainment,P (P) 2008 SONY BMG Music Entertainment (Australia) Pty Limited,4943 +4944,spotify:track:0bS8xXUFf2TIFzPOfCjFai,Kosciusko - Remastered Version,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:6uNRClJFgtpoSaAS6jUeeV,Essential Oils,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,2012-11-02,https://i.scdn.co/image/ab67616d0000b27356ab0253febac2d352479f25,1,16,281213,https://p.scdn.co/mp3-preview/211adb57a1f44a6a1fcf78b6366116f486ad1805?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUBM00800415,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.573,0.923,9.0,-3.443,1.0,0.0393,0.0144,0.00473,0.125,0.536,81.107,4.0,,Midnight Oil,P This compilation (P) 2012 Midnight Oils Ents Pty Ltd. under exclusive license to Sony Music Entertainment Australia Pty Ltd.,4944 +4945,spotify:track:0PCGfA36HrVPmsBZJ57zOU,"Love Is All Around - From ""Four Weddings And A Funeral""",spotify:artist:2u0gw0uCWBMiqV7h0N8kai,Wet Wet Wet,spotify:album:2ddZd59LSTHIyH8QGSisjY,Picture This (20th Anniversary Edition),spotify:artist:2u0gw0uCWBMiqV7h0N8kai,Wet Wet Wet,1995-04-10,https://i.scdn.co/image/ab67616d0000b273cbea7e7a20a9df4b22dc5148,1,12,246240,https://p.scdn.co/mp3-preview/db7bb0d198d775ed415e58199ca84ce23caa31e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBF089400173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,new romantic,new wave pop,soft rock,sophisti-pop",0.523,0.689,10.0,-6.58,1.0,0.027,0.228,0.0,0.109,0.547,84.09,4.0,,UMC (Universal Music Catalogue),"C © 1995 Mercury Records Limited, P ℗ 2015 Mercury Records Limited",4945 +4946,spotify:track:0g1BxXBhdbhImlgjJoIGal,Keeping Score (feat. Paige IV),"spotify:artist:2RnDmyX1zzOkK5Cj9QPhMq, spotify:artist:7FhrJLDe6bQ0Hqt9Wf7zXh","L D R U, Paige IV",spotify:album:4AVhMub7KtxGzPlBrKJ6L7,Sizzlar,spotify:artist:2RnDmyX1zzOkK5Cj9QPhMq,L D R U,2017-07-14,https://i.scdn.co/image/ab67616d0000b273ddfc39d59df0d7a0bce687a4,1,2,182950,https://p.scdn.co/mp3-preview/b5381bf4cbecf1f305cef00960ba59517ef63b6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUBM01500352,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.629,0.618,5.0,-5.51,0.0,0.0918,0.0245,0.0,0.0938,0.644,92.071,4.0,,Audio Paxx Agency,P (P) 2017 Audiopaxx,4946 +4947,spotify:track:0IrrQTPGrIw3sn3doKPM02,First Time,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:4ioayqjumXhYgfBenmymIH,Dream Your Life Away (Deluxe Edition),spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2015-09-04,https://i.scdn.co/image/ab67616d0000b2730280b311a8531a25b36476d9,1,10,224626,https://p.scdn.co/mp3-preview/3410f0ebc204105fc78b4c0162d0b1d63fc88af5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21402871,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.644,0.889,0.0,-7.491,1.0,0.14,0.328,4.81e-06,0.164,0.393,116.053,4.0,,Liberation Records,"C 2015 Vance Joy under exclusive license to Liberation Music, P 2015 Vance Joy under exclusive license to Liberation Music",4947 +4948,spotify:track:53968oKecrFxkErocab2Al,November Rain,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:4L5pz06MVlsWaTEjSQPN8h,Use Your Illusion I,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1991-09-17,https://i.scdn.co/image/ab67616d0000b273c5803d7a2712cc6beee72281,1,10,537506,https://p.scdn.co/mp3-preview/98deb9c370bbaa350be058b3470fbe3bc1e28d9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19141510,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.197,0.629,11.0,-9.291,1.0,0.03,0.0165,0.279,0.125,0.221,79.495,4.0,,Universal Music Group,"C © 1991 Geffen Records Inc., P ℗ 1991 Geffen Records Inc.",4948 +4949,spotify:track:0xRDqhYsCW6F9LM4s7gY5z,Macho Man,spotify:artist:0dCKce6tJJdHvlWnDMwzPW,Village People,spotify:album:6MB1ND9U8BGyiBv3zx3Zca,San Francisco Macho Man,spotify:artist:0dCKce6tJJdHvlWnDMwzPW,Village People,1978,https://i.scdn.co/image/ab67616d0000b2732e85e4a4d3b2756d6a8f14e4,1,5,321000,https://p.scdn.co/mp3-preview/b9d9cd9e4d0b386b323558f5e2a8d9404baaa19d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,FR6V80878887,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,new wave pop,soft rock",0.708,0.805,5.0,-9.103,1.0,0.0612,0.0472,0.0,0.0867,0.776,133.419,4.0,,Scorpio Music,"C 1978 Can't Stop Productions NYC, P Can't Stop Productions NYC 1978",4949 +4950,spotify:track:6EbduYTr62sSzvl36wWiFM,BLOW (with Chris Stapleton & Bruno Mars),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:4YLtscXsxbVgi031ovDDdh, spotify:artist:0du5cEVh5yTK9QJze8zA0C","Ed Sheeran, Chris Stapleton, Bruno Mars",spotify:album:4uoEruXjt0APvHaSqrwqPH,BLOW (with Chris Stapleton & Bruno Mars),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:4YLtscXsxbVgi031ovDDdh, spotify:artist:0du5cEVh5yTK9QJze8zA0C","Ed Sheeran, Chris Stapleton, Bruno Mars",2019-07-05,https://i.scdn.co/image/ab67616d0000b2733d75fe24ebd1741bb74603b9,1,1,209120,https://p.scdn.co/mp3-preview/e94d6e3f4887f999227c86b3ecf2d2a22dbe160e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBAHS1900940,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop,contemporary country,outlaw country,dance pop,pop",0.631,0.796,1.0,-5.35,1.0,0.0401,0.000245,0.0115,0.38,0.596,92.469,4.0,,Atlantic Records UK,"C © 2019 Warner Music UK Limited, P ℗ 2019 An Asylum Records UK release, a division of Atlantic Records UK; ℗ 2019 Warner Music UK Limited",4950 +4951,spotify:track:6jXFwTXcjdAm2ZW41d7GNR,Things Don't Seem - Remastered,spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,spotify:album:0PO4cvpGuKcP1BwQyPhHpf,The Greatest Hits (Remastered),spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,2014-01-01,https://i.scdn.co/image/ab67616d0000b273c037d33ffd7af564bb2f090b,1,6,237197,https://p.scdn.co/mp3-preview/d5c6a0e696f667fbdbb3ed9396dea254c8fdf677?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71301820,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.326,0.867,11.0,-4.99,0.0,0.0447,0.00707,3.27e-06,0.349,0.807,172.698,4.0,,Universal,"C © 2014 Universal Music Australia Pty Ltd., P ℗ 2014 Universal Music Australia Pty Ltd., Except Tracks 16-19 (P) 2014 Simon Binks, Fermata Nominees Pty Ltd, Staccato Nominees Pty Ltd, J M Reyne Family Trust and Paul Williams.",4951 +4952,spotify:track:3eGmv9sxK60p8XIBLhBtC0,Everybody Rise,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:116julihD6RXmoi525fLtU,Everybody Rise,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2020-06-18,https://i.scdn.co/image/ab67616d0000b2735488144ce2fa23bd91d4725f,1,1,190322,https://p.scdn.co/mp3-preview/d1e226e36a238377e3b39bd6c2ad47d6a86741ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUBM02000132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.702,0.676,0.0,-6.679,1.0,0.0526,0.0335,0.0,0.102,0.65,103.057,4.0,,Wonderlick,P (P) 2020 Amy Shark under exclusive license to the Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd.,4952 +4953,spotify:track:2OqCyO684ShnEOqFQieN3Z,The Saints Are Coming,"spotify:artist:51Blml2LZPmy7TTiAg47vQ, spotify:artist:7oPftvlwr6VrsViSDV7fJY","U2, Green Day",spotify:album:3s9hW1Wjsxf2LDyIa9J0il,The Saints Are Coming,"spotify:artist:51Blml2LZPmy7TTiAg47vQ, spotify:artist:7oPftvlwr6VrsViSDV7fJY","U2, Green Day",2006-01-01,https://i.scdn.co/image/ab67616d0000b273e2e5dd93e6c7da0ebc453e93,1,1,202413,https://p.scdn.co/mp3-preview/c3d81f240fe0b4c09ee962f38dbc13c0e436fe7b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBUM70604745,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock,modern rock,permanent wave,punk,rock",0.298,0.815,11.0,-7.004,0.0,0.0438,0.0613,0.00136,0.108,0.113,152.155,4.0,,Universal-Island Records Ltd.,"C © 2006 Mercury Records Limited, P ℗ 2006 Universal International Music B.V., under license to Mercury Records Limited",4953 +4954,spotify:track:4kWO6O1BUXcZmaxitpVUwp,Jackie Chan,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:5vQfv3s2Z2SRdPZKr82ABw, spotify:artist:0bdJZl7TDeiymDYzMJnVh2, spotify:artist:246dkjvS1zLTtiykXe5h60","Tiësto, Dzeko, Preme, Post Malone",spotify:album:0vRcQquqBlFvnezWldWfmt,Jackie Chan,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:5vQfv3s2Z2SRdPZKr82ABw","Tiësto, Dzeko",2018-05-18,https://i.scdn.co/image/ab67616d0000b2738c5e26c45a7703cf16f509f7,1,1,215759,https://p.scdn.co/mp3-preview/8b3de770a2b29ad9514ddd2ccb11f0920794fe58?cid=9950ac751e34487dbbe027c4fd7f8e99,True,66,CYA111800123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance,canadian electronic,dutch house,edm,electro house,pop dance,pop edm,progressive electro house,canadian hip hop,canadian trap,dfw rap,melodic rap,pop,rap",0.747,0.834,3.0,-2.867,0.0,0.045,0.374,0.0,0.0586,0.687,128.005,4.0,,"Universal Music, a division of Universal International Music BV","C © 2018 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings/Universal Music, a division of Universal International Music B.V., P ℗ 2018 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings/Universal Music, a division of Universal International Music B.V.",4954 +4955,spotify:track:3v8vsQfMQio7ohYqFrEsaZ,"Get Outta My Dreams, Get into My Car",spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,spotify:album:07Vx4BMLibfALsM5pkSyVP,Tear Down These Walls,spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,1988,https://i.scdn.co/image/ab67616d0000b2730e1a44c830d7d3099c76abf0,1,6,333506,https://p.scdn.co/mp3-preview/7d5bf20ebbded9bc89f06a40fd1fdc4f25bfae9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK0800054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new romantic,new wave pop,soft rock,yacht rock",0.661,0.911,4.0,-6.571,1.0,0.0417,0.0557,5.68e-06,0.349,0.919,117.147,4.0,,Jive,P (P) 1988 Sony BMG Music Entertainment (UK) Limited,4955 +4956,spotify:track:1PgYN6hOBCpnftBXE1dCux,Mr. Lonely,spotify:artist:6bOYtKnpLPQSfMpS2ilotK,Bobby Vinton,spotify:album:5DQ9EidSrkP33MvwxonHLl,Mr. Lonely,spotify:artist:6bOYtKnpLPQSfMpS2ilotK,Bobby Vinton,1964-09-12,https://i.scdn.co/image/ab67616d0000b273fbcd256ce3e0a3eef1fcb083,1,1,159173,https://p.scdn.co/mp3-preview/5d02a2be58e1bf9cb0a1771e5114f3a0dde52e60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USSM10013729,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,easy listening,rock-and-roll,rockabilly",0.389,0.333,4.0,-8.121,1.0,0.0262,0.731,0.0,0.267,0.343,84.257,3.0,,Legacy Recordings,"P Originally released 1964. All rights reserved by Epic Records, a division of Sony Music Entertainment",4956 +4957,spotify:track:2pxxVkNhrRST8fpgA12ru8,My Happiness,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:1fgfp2op6DHKCrtWiMFiws,Odyssey Number Five,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2000-01-01,https://i.scdn.co/image/ab67616d0000b273ceba92eb0f296101eca62342,1,2,276626,https://p.scdn.co/mp3-preview/2162bc46117da76c69fdf3c25ef2372264913c4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,AUUM00010045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.445,0.823,0.0,-5.415,1.0,0.0302,0.00163,0.0,0.43,0.487,85.935,4.0,,Universal Music Australia Pty. Ltd.,"C © 2000 Grudge Records Australia, A Universal Music Company, P ℗ 2000 Grudge Records Australia, A Universal Music Company",4957 +4958,spotify:track:5lQKRR3MdJLtAwNBiT8Cq0,Lyin' Eyes - 2013 Remaster,spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,spotify:album:0F77QekrNe8vVAjU2sepja,One of These Nights (2013 Remaster),spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,1975-06-10,https://i.scdn.co/image/ab67616d0000b2735d0a8e54aba5181c79593b94,1,5,381998,https://p.scdn.co/mp3-preview/7591ef3ecaeef3609e06379918228198c83b3c48?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USEE11300348,spotify:user:bradnumber1,2022-08-26T01:22:18Z,"album rock,classic rock,heartland rock,mellow gold,rock,soft rock,yacht rock",0.669,0.673,7.0,-9.754,1.0,0.0248,0.203,0.0271,0.164,0.867,132.68,4.0,,Rhino/Elektra,"C © 1975 Asylum Records, P ℗ 1975 Asylum Records. Marketed by Warner Strategic Marketing, a Warner Music Group Company.",4958 +4959,spotify:track:2jpDwcQ5z7P3mYjXEtGjUe,Don't Stop Movin' - Paul Morrell Radio Mix,"spotify:artist:3PUzVXdNnsJGPDTIU7xvqu, spotify:artist:6j1mNIIhInjB8jf28UMVuq","Livin' Joy, Paul Morrell",spotify:album:1R8QqR8CInjogDJm0UsONX,Don't Stop Movin',"spotify:artist:3PUzVXdNnsJGPDTIU7xvqu, spotify:artist:2BGaTlVAaNtSSQS8T3Es1S, spotify:artist:2bOfePuOZWJq83HphzhELq, spotify:artist:3HjlnNiL0hd5E3lsFfbhB8, spotify:artist:7u1QnXmPmBkNgz56Yxvgay, spotify:artist:6j1mNIIhInjB8jf28UMVuq, spotify:artist:4TRXuls32T0GywkRdyChJP","Livin' Joy, Andrea Monta, Handell, Ma, Michael Andre, Paul Morrell, Smb",2016-01-08,https://i.scdn.co/image/ab67616d0000b2737105ca0301adcdba29a0565d,1,6,201929,https://p.scdn.co/mp3-preview/d934de50d749a2c1cc5b19a9f64954d0c2041ada?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCGZ1500203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,diva house,0.61,0.967,9.0,-5.82,0.0,0.121,0.103,9.97e-05,0.78,0.457,126.032,4.0,,Undiscovered Records,"C 2015 Undiscovered Recordings, P 2015 Undiscovered",4959 +4960,spotify:track:6WnKYxScQLOSuz5FsPo6Vd,I'm Coming Home,spotify:artist:39sD1XmAU2FEzdpsjfdY1j,Birtles & Goble,spotify:album:1pZ6850dC8ANCJDQzeNzJJ,The Last Romance,spotify:artist:39sD1XmAU2FEzdpsjfdY1j,Birtles & Goble,1980,https://i.scdn.co/image/ab67616d0000b2733fe4b1885d87f4878a76b9df,1,3,225373,https://p.scdn.co/mp3-preview/67e7f534c40b1789918c1bbf90a517328d713dfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USCA20707802,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.76,0.564,9.0,-10.237,1.0,0.0248,0.187,4.53e-05,0.101,0.912,90.735,4.0,,Capitol Records,"C © 1980 Capitol Records, LLC, P ℗ 2020 Capitol Records, LLC",4960 +4961,spotify:track:4t0UsYzmmmZRMTWn77jiGF,Show Me Love,spotify:artist:2WvLeseDGPX1slhmxI59G3,Robin S,spotify:album:2xpjgSvZVYjzdlWxeAJFy8,Show Me Love,spotify:artist:2WvLeseDGPX1slhmxI59G3,Robin S,1993-06-15,https://i.scdn.co/image/ab67616d0000b273b4bd024fb05eb2c0ddf6ea61,1,1,252106,https://p.scdn.co/mp3-preview/cd193fd380af0cc58cfba77c25ff533ac1d6c6b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USAT29300075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,diva house,0.811,0.833,5.0,-4.259,1.0,0.153,0.014,2.06e-05,0.0769,0.567,120.258,4.0,,Atlantic Records,"C © 1993 Atlantic Recording Corporation, P ℗ 1993 Atlantic Recording Corporation",4961 +4962,spotify:track:4EnkwZd0UJAuHpNMMemQaA,Closing Time,spotify:artist:1TqQi97nqeiuOJrIFv5Sw0,Semisonic,spotify:album:7c6A82iJXXYlZq2huhkU3E,Feeling Strangely Fine,spotify:artist:1TqQi97nqeiuOJrIFv5Sw0,Semisonic,1998-01-01,https://i.scdn.co/image/ab67616d0000b273e6a8bab4965d9ee15a16c85b,1,1,273533,https://p.scdn.co/mp3-preview/a37f72b06f19632f5174eed3e0ce8b305556e976?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19800013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.481,0.865,7.0,-5.498,1.0,0.0283,0.0204,1.24e-06,0.17,0.241,92.086,4.0,,Geffen*,"C © 1998 Geffen Records, P ℗ 1998 Geffen Records",4962 +4963,spotify:track:4zVyMSnXjxM734u4SQTqVx,Better Be Home Soon,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:1a89uP7otjpXF9UvMKy02M,The Very Very Best Of Crowded House,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,2010-10-15,https://i.scdn.co/image/ab67616d0000b273ed0c9d87136532ab57be5324,1,7,188049,https://p.scdn.co/mp3-preview/efbc06104de687068933aad93eb1e363c1cd21b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USCA28800035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.445,0.49,0.0,-8.809,1.0,0.0264,0.301,1.43e-06,0.0964,0.342,93.611,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P This Compilation ℗ 2010 Capitol Records, LLC",4963 +4964,spotify:track:5uw9UIOXj6R8pOwXte8F5h,Little Lies,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:1W5YP0TlKjFtb2UZJThLpV,Tango In The Night,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1987-04-13,https://i.scdn.co/image/ab67616d0000b2732af4ba32452b996f603c0b4d,1,7,218040,https://p.scdn.co/mp3-preview/aa049a8851031bd8e5636fa91f51041bdafc59d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB19900207,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.63,0.688,2.0,-9.816,1.0,0.0266,0.124,4.78e-05,0.158,0.893,124.825,4.0,,Warner Bros.,"C 1987 Warner Bros. Records Inc., P 1987 Warner Bros. Records Inc.",4964 +4965,spotify:track:1KxnWLIsj61EWmZbH2A7KV,Kiddio,spotify:artist:2ttm3uT0N1RN7vwKv1pQgh,Brook Benton,spotify:album:4XsGwDdFyme74MjLqWQXDP,Brook Benton - The Best of Brook Benton,spotify:artist:2ttm3uT0N1RN7vwKv1pQgh,Brook Benton,2016-03-25,https://i.scdn.co/image/ab67616d0000b2739154d1d237ec2ad5f2c2d329,1,7,153103,https://p.scdn.co/mp3-preview/ad81bfe94315c74c375057a3d2f0f695b67059cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,UKDNQ1504958,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rhythm and blues,southern soul",0.796,0.258,3.0,-13.163,1.0,0.056,0.779,1.56e-05,0.165,0.713,112.356,4.0,,Westmill,"C 2016 Westmill, P 2016 Westmill",4965 +4966,spotify:track:6fsSZbNL7XP9gf1kJ2l155,"Gypsys, Tramps & Thieves",spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,spotify:album:4NsAwBNLIHDpmlCCGNGzH9,"Gypsys, Tramps & Thieves",spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,1971-01-01,https://i.scdn.co/image/ab67616d0000b2738c097583959947d229e0ab2e,1,2,158000,https://p.scdn.co/mp3-preview/34710f870fc92e7ae9bd19a0d23b9e2bf6863153?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USMC17112760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.476,0.677,0.0,-11.175,1.0,0.0365,0.211,0.0,0.0601,0.691,170.879,4.0,,Geffen,"C © 1998 MCA Records Inc., P ℗ 1971 UMG Recordings, Inc.",4966 +4967,spotify:track:2ADU49RKktDsdPj0vKqJ6j,Let's Groove,spotify:artist:7EUjDdRgLHcgFIL4sfhvFo,CDB,spotify:album:6Pc4pvG04k30NmxMxYe6Xz,The Essential,spotify:artist:7EUjDdRgLHcgFIL4sfhvFo,CDB,2010-11-08,https://i.scdn.co/image/ab67616d0000b273650c94ea9edcc528307a2f45,1,1,256519,https://p.scdn.co/mp3-preview/1fb736ffd089770889c506f4e339d7d1b9c3e117?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUSM09500119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.833,0.683,4.0,-5.44,0.0,0.0778,0.127,0.000157,0.101,0.916,126.184,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Pty Ltd,4967 +4968,spotify:track:4eM7bZnwoRQbVXktBxwlXa,Alice Long (You're Still My Favorite Girlfriend) - Mono Version,"spotify:artist:6V92xGMFMr4619y6ZvEUFR, spotify:artist:3PFXkVDrL495eCxfaMZd1F","Tommy Boyce, Bobby Hart",spotify:album:4jkhCUPpX5TvwMbcTaaPUx,It's All Happening On The Inside,"spotify:artist:6V92xGMFMr4619y6ZvEUFR, spotify:artist:3PFXkVDrL495eCxfaMZd1F","Tommy Boyce, Bobby Hart",1969-02-16,https://i.scdn.co/image/ab67616d0000b2733811343b4197262360cfe5fe,1,12,171240,https://p.scdn.co/mp3-preview/bf3395d92b72ff04ff48e9adc16e1c0c63edd4aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USUM70503702,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,brill building pop,bubblegum pop",0.531,0.848,0.0,-6.438,1.0,0.0384,0.0281,0.571,0.114,0.776,144.385,4.0,,A&M,"C © 1969 UMG Recordings, Inc., P ℗ 1969 UMG Recordings, Inc.",4968 +4969,spotify:track:23fecagpmaDqzJzf0nDWRS,Inescapable - Youngboyz Mix,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:7t6s6NWaLUEkRQEDqp8yNN,Get 'Em Girls,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2011-08-15,https://i.scdn.co/image/ab67616d0000b2736bb2da94c1f0c017c022ad7f,1,8,215906,https://p.scdn.co/mp3-preview/2d46e485e1cb6301a186d00ea4b2f41e8f95443f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUBM01100222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.742,0.847,8.0,-3.995,1.0,0.0392,0.00573,0.0,0.196,0.602,129.048,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,4969 +4970,spotify:track:3oQomOPRNQ5NVFUmLJHbAV,Over the Rainbow,spotify:artist:4ogvuDRerGhZfSf7TtzHlr,Israel Kamakawiwo'ole,spotify:album:4aM85igbrBcoRZVt7L11Zn,Alone In Iz World,spotify:artist:4ogvuDRerGhZfSf7TtzHlr,Israel Kamakawiwo'ole,2001-09-25,https://i.scdn.co/image/ab67616d0000b27356c868c8c85e7e4e62bd9ec1,1,10,211933,https://p.scdn.co/mp3-preview/2b0ebc854ece09122c1918aeff6af258493defe9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USMAC0100119,spotify:user:bradnumber1,2021-11-20T11:30:41Z,hawaiian,0.671,0.153,0.0,-13.569,1.0,0.0404,0.912,5.53e-05,0.0771,0.658,85.6,4.0,,Big Boy Records,"C 2001 Mountain Apple Company HAWAII / Big Boy Records, P 2001 Mountain Apple Company HAWAII / Big Boy Records",4970 +4971,spotify:track:35Nxvpb2sYmh4w9mZmiqOB,Take These Chains from My Heart,spotify:artist:1eYhYunlNJlDoQhtYBvPsi,Ray Charles,spotify:album:6Anl5OCWfkRsfYmG6uDUSk,"Ray Charles, The Very Best Of",spotify:artist:1eYhYunlNJlDoQhtYBvPsi,Ray Charles,2013-07-22,https://i.scdn.co/image/ab67616d0000b273f8ccdcc27f48d459f0f80814,2,16,175240,https://p.scdn.co/mp3-preview/624d97d6040a29f1a748f5d44ac577c72f3d40f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,FR6F31357210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,jazz blues,piano blues,soul,soul blues,vocal jazz",0.4,0.179,5.0,-8.315,1.0,0.0281,0.871,0.0,0.141,0.473,102.159,4.0,,Wagram Music,"C 2013 Wagram Music, P 2013 Wagram Music",4971 +4972,spotify:track:3gsCAGsWr6pUm1Vy7CPPob,Killing Me Softly With His Song,spotify:artist:0W498bDDNlJIrYMKXdpLHA,Roberta Flack,spotify:album:4GxrvKiysSiDU1HHifh1PA,Killing Me Softly,spotify:artist:0W498bDDNlJIrYMKXdpLHA,Roberta Flack,1973-01-01,https://i.scdn.co/image/ab67616d0000b2737ff730d1580c27bc461d0ccf,1,1,286920,https://p.scdn.co/mp3-preview/86f729251aeaa50bbbb8c022de6861091c0cb180?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USAT29901394,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,disco,quiet storm,soft rock,soul,vocal jazz",0.476,0.381,5.0,-10.238,0.0,0.0342,0.727,0.0,0.0614,0.33,121.948,4.0,,Atlantic Records,"C © 1973 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1973 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",4972 +4973,spotify:track:79s3pSe1u6ggQBEwVPm58Z,Tossin' And Turnin',spotify:artist:6KfBWaX13etjtEZ4d9aTWW,Bobby Lewis,spotify:album:31JyXxhju4kXiYJwdjb3u3,Tossin' and Turnin',spotify:artist:6KfBWaX13etjtEZ4d9aTWW,Bobby Lewis,2005,https://i.scdn.co/image/ab67616d0000b27327a14ffdb3f5209b6e1e8fa3,1,1,159640,https://p.scdn.co/mp3-preview/c71df736ec2a1f231748166baf373511c3653863?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USPB81010318,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.569,0.722,0.0,-8.914,1.0,0.0393,0.225,0.0,0.108,0.965,142.736,4.0,,Oldies.com,"C 2005 Oldies.com, P 2005 Oldies.com",4973 +4974,spotify:track:05cDiyB11m5M25cDsJYEMS,No Air (feat. Chris Brown),"spotify:artist:2AQjGvtT0pFYfxR3neFcvz, spotify:artist:7bXgB6jMjp9ATFy66eO08Z","Jordin Sparks, Chris Brown",spotify:album:7pGk91GOMtNZ0iruHgZFsv,No Air Duet With Chris Brown Acoustic Version,spotify:artist:2AQjGvtT0pFYfxR3neFcvz,Jordin Sparks,2008-05-20,https://i.scdn.co/image/ab67616d0000b2736a605206132ef455f6475b7c,1,1,264546,https://p.scdn.co/mp3-preview/64c125009031a7a7f9e346a5418a1bf4db94415d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBCTA0700277,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,urban contemporary,r&b,rap",0.458,0.765,11.0,-5.002,1.0,0.205,0.0551,0.0,0.0593,0.33,159.948,4.0,,Jive,"P 2008 (P) 19 Recordings Ltd, under exclusive license to Zomba Recording LLC",4974 +4975,spotify:track:1w0JL6vJdl82xqyRW30HrK,Lost Without You,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:26h1O5W89WLiEzxTztbGfu,Innocent Eyes,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2003-03-21,https://i.scdn.co/image/ab67616d0000b273da57f76f2fc20c1ed0bede9b,1,5,248546,https://p.scdn.co/mp3-preview/487d16c1ba8484eff8cd6f145e24a9b5d914d016?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUSM00300002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.581,0.747,7.0,-6.682,1.0,0.0283,0.0365,1.69e-06,0.193,0.514,146.301,4.0,,Epic,P (P) 2002/2003 Sony Music Entertainment (Australia) Limited,4975 +4976,spotify:track:3ndKgw7LvKO7zIk1rgOQJ2,Ship of Fools,"spotify:artist:0THUMJMWUd5L8os9K6O4FE, spotify:artist:1Dg0yaGc5vawe984BMXIIh","World Party, Anthony Thistlethwaite",spotify:album:6NbdjT5mdw0oTZDiEZOgey,Private Revolution,spotify:artist:0THUMJMWUd5L8os9K6O4FE,World Party,1987-03-03,https://i.scdn.co/image/ab67616d0000b273492a842a84a56c7583fd5e85,1,3,268493,https://p.scdn.co/mp3-preview/e3e897b180d330819d1ae7c478aa386635090078?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBCZS0000052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,jangle pop,power pop",0.638,0.869,0.0,-4.867,1.0,0.0308,0.082,0.000995,0.517,0.851,116.288,4.0,,Seaview,"C 2006 Seaview Under Exclusive License To Fontana, P 2006 1987 Seaview Under Exclusive License To Fontana",4976 +4977,spotify:track:51wrmElSLxFzc0vSQPeTxs,Where Were You In The Morning?,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:6AjREacSERvnQTe6GFTx3c,Shawn Mendes,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2018-05-25,https://i.scdn.co/image/ab67616d0000b2733a2178ae7cf4e68cad643f7e,1,4,200600,https://p.scdn.co/mp3-preview/0615aeda0e3400b42bff7787f3dae3f8a2493509?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71804952,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.709,0.516,7.0,-7.468,1.0,0.0615,0.557,0.0,0.0992,0.465,87.992,4.0,,Island Records,"C © 2018 Island Records, a division of UMG Recordings, Inc., P ℗ 2018 Island Records, a division of UMG Recordings, Inc.",4977 +4978,spotify:track:1znPMY3zq78mVuTAmOA9O7,Nothing Else Matters,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:3A4zAmE5c4dUAAqEJz6hCH,Metallica,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1991-01-01,https://i.scdn.co/image/ab67616d0000b273aeef6d1f525548aabcea0f6e,1,8,388266,https://p.scdn.co/mp3-preview/05659fbb6426fc9ecc7e08cf86b049226190578d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF089190020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.553,0.362,4.0,-11.218,0.0,0.0263,0.0458,6.01e-06,0.075,0.158,142.352,3.0,,Universal Music Group,"C © 1991 Metallica, P ℗ 1991 Metallica",4978 +4979,spotify:track:0ddj5KtNqJ75lOJzgZNFFc,The Edge Of Glory,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:30D9CrjDAZRrN7esS8CCgO,Born This Way (International Standard Version),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2011-05-23,https://i.scdn.co/image/ab67616d0000b27300e1d8265195799790277e5a,1,14,321173,https://p.scdn.co/mp3-preview/fc4408ad3433f92d9329dcaf4a186439ad68da5a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USUM71106458,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.581,0.774,9.0,-6.547,1.0,0.0399,0.000334,0.0171,0.109,0.359,127.952,4.0,,Interscope,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",4979 +4980,spotify:track:0F2rLjrLIE4LzZXxUzhOx2,Wings,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:6NIIUQ0KSN5orDTZ8XaPvI,Wings,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2015-07-24,https://i.scdn.co/image/ab67616d0000b27394b94cda79b5d8d04c5c4f2c,1,1,207095,https://p.scdn.co/mp3-preview/b1e7995f7eefbcbe57fa1609d68b7c1dd7f56b64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01500249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.631,0.849,9.0,-4.391,0.0,0.0353,0.0728,0.0,0.122,0.332,119.991,4.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,4980 +4981,spotify:track:1w2b6f5Cgwy8ZmKdHUBSiW,Teenage Dirtbag,spotify:artist:4mYFgEjpQT4IKOrjOUKyXu,Wheatus,spotify:album:2c2nyMqKUqDvFmCubBKhuW,Wheatus,spotify:artist:4mYFgEjpQT4IKOrjOUKyXu,Wheatus,2000-07-25,https://i.scdn.co/image/ab67616d0000b273d60ba065aae8a7c065fed7e5,1,3,241666,https://p.scdn.co/mp3-preview/830e4b0ea66c5bfeca23600d9d4114b8eca8a22d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10009451,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.624,0.853,4.0,-3.889,1.0,0.0517,0.336,0.000131,0.17,0.608,94.66,4.0,,Columbia,P (P) 2000 Sony Music Entertainment Inc.,4981 +4982,spotify:track:6ZLGthToczpvnL5Eoy6yrY,Pure Shores,spotify:artist:5TDVKqW9uhqGjwwwKGuma4,All Saints,spotify:album:2gQvc1j1WnM5EAORW7u01W,Saints & Sinners,spotify:artist:5TDVKqW9uhqGjwwwKGuma4,All Saints,2000-08-16,https://i.scdn.co/image/ab67616d0000b273c919cc963e27a28375201a5a,1,1,268746,https://p.scdn.co/mp3-preview/a6ec2efde6ef4607d05ae00b75d1e38f6a61b712?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBAAP0000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group,new wave pop",0.631,0.664,6.0,-9.197,1.0,0.0242,0.0498,0.00042,0.0696,0.407,100.618,4.0,,Rhino,"C 2000 Warner Music UK Limited, © 2000 Warner Music UK Limited, P 2000 Warner Music UK Limited, ℗ 2000 Warner Music UK Limited",4982 +4983,spotify:track:1fr92Vupmcs2vgLMFVQ7rd,In the Shadows,spotify:artist:76ptJV8617638xrpeoUtzl,The Rasmus,spotify:album:1J9W7Fkg34vdOVa8gR7dx7,Dead Letters,spotify:artist:76ptJV8617638xrpeoUtzl,The Rasmus,2003-03-24,https://i.scdn.co/image/ab67616d0000b2739ee03a565b0bbf6af8b9733c,1,2,257920,https://p.scdn.co/mp3-preview/c720eedfca3d850dcf5ecade2c31ab5101c12fe2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,SEVJH0201601,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"finnish alternative rock,funk metal",0.6,0.796,2.0,-4.481,1.0,0.0275,0.000109,5.2e-05,0.484,0.75,105.991,4.0,,Playground Music,"C 2003 Playground Music Scandinavia AB, P 2003 Playground Music Scandinavia AB",4983 +4984,spotify:track:01gDLZsi0j5fWC28FLPNO8,Move on Up - Extended Version,spotify:artist:2AV6XDIs32ofIJhkkDevjm,Curtis Mayfield,spotify:album:3tgJmEz0R0ZsRSrpwafp4R,Curtis (Expanded Edition),spotify:artist:2AV6XDIs32ofIJhkkDevjm,Curtis Mayfield,1970,https://i.scdn.co/image/ab67616d0000b273775a6bee6c704ec29aec00f4,1,5,535333,https://p.scdn.co/mp3-preview/6f75b5f94f3cc431dd3ddc12e1e173c56da98d05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USRH10401528,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago soul,classic soul,funk,soul",0.584,0.975,11.0,-6.534,0.0,0.0651,0.141,0.501,0.101,0.876,138.341,4.0,,Rhino,"C © 2000 Warner Strategic Marketing, P ℗ 2000 Warner Strategic Marketing",4984 +4985,spotify:track:4rV3AYCf4BBBCkIpyLPwUP,Dreams,spotify:artist:7rftfGIYEeZ79sLb58ZBDi,GABRIELLE,spotify:album:3G14jXmb8ul7FmkRnPZooj,Find Your Way,spotify:artist:7rftfGIYEeZ79sLb58ZBDi,GABRIELLE,1993-01-01,https://i.scdn.co/image/ab67616d0000b2739ac2d9662ce98ad3ded9fe7d,1,5,222773,https://p.scdn.co/mp3-preview/665d73817532dd86d4c771abf5b94de5df4af8d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBARA9300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,new wave pop",0.751,0.467,9.0,-13.652,1.0,0.036,0.173,0.0,0.217,0.568,98.783,4.0,,Universal-Island Records Ltd.,"C © 1993 Go! Discs Ltd., P ℗ 1993 Go! Discs Ltd.",4985 +4986,spotify:track:4YyuwoqVL9qudymoZ6n69O,All Cried Out,spotify:artist:1VPr8y4GGZJBtWyaoLdYUT,Allure,spotify:album:3ChG0pQjLzXun4DNbqnDfp,90s R&B,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-09-26,https://i.scdn.co/image/ab67616d0000b273defddcc1c5b525859b81ebc8,1,14,268626,https://p.scdn.co/mp3-preview/26f0909f9824d8b213a876fe76930167e51c2406?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USSM19700179,spotify:user:bradnumber1,2021-08-08T09:26:31Z,contemporary r&b,0.596,0.541,1.0,-6.689,1.0,0.0251,0.117,0.0,0.0942,0.179,139.821,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment,4986 +4987,spotify:track:0PsGiTiLXmSpotcvpe5AsN,I See Red,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,spotify:album:15Z6ao7aiBmEzzNcIXR8Du,The Living Enz,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,1985,https://i.scdn.co/image/ab67616d0000b27398665cdec86c439023e2bea4,1,5,255360,https://p.scdn.co/mp3-preview/a9f29e1b2dbd2f616dff0bdff4c48fcda08620db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUMU07900051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,kiwi rock,zolo",0.298,0.824,0.0,-12.773,1.0,0.0731,0.357,6.57e-06,0.471,0.393,187.284,4.0,,WM Australia,"C © 1991 Mushroom Records, P ℗ 1985 Mushroom Records",4987 +4988,spotify:track:0bNKoOshkbM0HmS3KXeM89,Borrow My Heart,spotify:artist:40usJiKvNyNHy3GAcNXSWx,Taylor Henderson,spotify:album:4MCld6WjAzS4chIDFJL9en,Taylor Henderson,spotify:artist:40usJiKvNyNHy3GAcNXSWx,Taylor Henderson,2013-12-02,https://i.scdn.co/image/ab67616d0000b273551e84ac02ee56dbe238be25,1,1,212626,https://p.scdn.co/mp3-preview/316b8c7ba98d91537b4ae4424429255a7495ea34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUBM01300573,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.571,0.714,11.0,-5.005,1.0,0.0303,0.08,0.0,0.478,0.741,122.955,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,4988 +4989,spotify:track:5ehVOC0zSdwWqyZlhomJSi,Have You Never Been Mellow,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:0nDDIFFIpw5F1fSKe84UU9,Have You Never Been Mellow,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,1975,https://i.scdn.co/image/ab67616d0000b27329f6ad64a6074544895966a7,1,1,213533,https://p.scdn.co/mp3-preview/ead98b2db7bf85f9c9bb8893ecae40b4c1166458?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAYE7500091,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.542,0.324,0.0,-14.07,1.0,0.0329,0.566,2.27e-06,0.0876,0.421,121.802,4.0,,Parlophone UK,"C © 1995 EMI Music Special Markets, P ℗ Compilation 1995 EMI Music Special Markets. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by EMI Music Special Markets, 1750 N. Vine St., Hollywood, CA 90028",4989 +4990,spotify:track:4OtJkWJtjWcxeGdVEwc6JZ,Standing In The Rain,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,spotify:album:28L7sCuuF8Zt6dW1FuZqRh,I Hate the Music,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,2009-09-18,https://i.scdn.co/image/ab67616d0000b273c6cd995a8ad657da9a0c10f4,1,11,251866,https://p.scdn.co/mp3-preview/ed3e0e8a1efbb338e5b6cc065fe35dd8cfa65cdd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07600039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,classic uk pop",0.737,0.837,8.0,-8.689,0.0,0.0482,0.0128,0.191,0.0568,0.896,122.074,4.0,,Albert Productions,"C © 2009 BMG AM Pty Ltd., P ℗ 2009 BMG AM Pty Ltd.",4990 +4991,spotify:track:6ksRossV4vKsXntCCZbhaM,Show Me Love,"spotify:artist:20gsENnposVs2I4rQ5kvrf, spotify:artist:3dfslm6CkJXlsvGSQxGgxt","Sam Feldt, Kimberly Anne",spotify:album:1Ba3HDw1at35UVxMxLCdCa,Show Me Love,spotify:artist:20gsENnposVs2I4rQ5kvrf,Sam Feldt,2015-05-18,https://i.scdn.co/image/ab67616d0000b27329d246b919d7d05b87d7c200,1,1,181867,https://p.scdn.co/mp3-preview/ba1a3d990648e60fa597d381af32097d1ba6678b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,NLZ541500291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,tropical house,indie anthem-folk",0.589,0.613,0.0,-5.034,1.0,0.0327,0.568,0.0,0.0675,0.19,114.853,4.0,,Polydor Records,"C © 2015 Spinnin Records B.V., under exclusive licence to Polydor Records (a division of Universal Music Operations Limited), P ℗ 2015 Spinnin Records B.V., under exclusive licence to Polydor Records (a division of Universal Music Operations Limited)",4991 +4992,spotify:track:4CDoeHIz44HzXq3j6LkZq6,Bring Me To Life,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,spotify:album:5ozEqFzXMZyJkfekXLkUUo,Fallen,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,2003,https://i.scdn.co/image/ab67616d0000b273b452e368a6ab2cff47147b3c,1,2,237293,https://p.scdn.co/mp3-preview/d318a788a3a6a1ecb8cd0f1c924cef18832ff8d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU30200093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alternative metal,0.322,0.947,4.0,-3.173,0.0,0.12,0.00846,3.95e-06,0.238,0.269,189.994,4.0,,Wind Up,"C (C) 2003 Wind-Up Records, LLCThis label copy information is the subject of copyright protection. All rights reserved.(C) EMI Music Germany GmbH & Co. KG, P (P) 2003 The copyright in this sound recording is owned by Wind-Up Records, LLC under exclusive licence to EMI Music Germany GmbH & Co. KG",4992 +4993,spotify:track:31QuJZfFiMk1uOawow8ejS,Nobody Told Me - Remastered 2010,spotify:artist:4x1nvY2FN8jxqAFA0DA02H,John Lennon,spotify:album:1HRCspKjuNI3bGzZgvFU3y,Milk And Honey,"spotify:artist:4x1nvY2FN8jxqAFA0DA02H, spotify:artist:2s4tjL6W3qrblOe0raIzwJ","John Lennon, Yoko Ono",1984-01-27,https://i.scdn.co/image/ab67616d0000b2734a82d19a6315bad34b34be61,1,5,214280,https://p.scdn.co/mp3-preview/daafa005536f313be18f58d9ee93a20fca3eb745?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAYE1000908,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,rock",0.712,0.936,2.0,-4.246,1.0,0.0364,0.177,0.000837,0.0443,0.917,118.425,4.0,,Capitol Records,"C © 2010 Yoko Ono Lennon, P ℗ 2010 Yoko Ono Lennon under exclusive license to Capitol Records Inc.",4993 +4994,spotify:track:3oI95Uihdvu7uCiirC1DQA,If You Don't Know Me by Now (feat. Teddy Pendergrass),"spotify:artist:438JBZR1AR0l04AzcYW9gy, spotify:artist:68kACMx6A3D2BYiO056MeQ","Harold Melvin & The Blue Notes, Teddy Pendergrass",spotify:album:4FyAsercGqajQeEdk2Isj6,The Best Of Harold Melvin & The Blue Notes: If You Don't Know Me By Now (Featuring Teddy Pendergrass) (feat. Teddy Pendergrass),spotify:artist:438JBZR1AR0l04AzcYW9gy,Harold Melvin & The Blue Notes,1995-02-28,https://i.scdn.co/image/ab67616d0000b273efe108fd52bee77d29571e0f,1,3,205573,https://p.scdn.co/mp3-preview/8077357c945f9924ce6b43cb4deddae15a1961b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM17200001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,philly soul,quiet storm,soul,southern soul,classic soul,funk,motown,philly soul,quiet storm,soul,urban contemporary",0.467,0.371,11.0,-12.514,1.0,0.0322,0.659,6.67e-05,0.756,0.478,93.681,3.0,,Legacy/Pir/Epic Associated,P 1995 Sony Music Entertainment Inc.,4994 +4995,spotify:track:2KeAqVOxKLU4XyPLcHTL2h,Groovejet,spotify:artist:4bmymFwDu9zLCiTRUmrewb,Spiller,spotify:album:0vlkJT7l0tsjGVYLk2bVW7,"Power up 2000's, Vol. 2",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-04-21,https://i.scdn.co/image/ab67616d0000b273f79d66ad32f17ee72d548051,1,4,450455,,False,0,FR2X41760450,spotify:user:bradnumber1,2020-03-05T09:20:46Z,"disco house,vocal house",0.794,0.595,9.0,-9.125,0.0,0.0715,0.000496,0.121,0.353,0.681,123.008,4.0,,Da Crime Recordings,"C 2011 Da Crime Recordings, P 2011 Da Crime Recordings",4995 +4996,spotify:track:2eSJflipjhSKLExuSwuFrO,What's Luv? (feat. Ashanti),"spotify:artist:3ScY9CQxNLQei8Umvpx5g6, spotify:artist:5rkVyNGXEgeUqKkB5ccK83","Fat Joe, Ashanti",spotify:album:5gpXJRhfDU4rl7MIL1MyC0,What's Luv? (feat. Ashanti),spotify:artist:3ScY9CQxNLQei8Umvpx5g6,Fat Joe,2002-02-05,https://i.scdn.co/image/ab67616d0000b273255e85615947b914ebb50889,1,1,230400,https://p.scdn.co/mp3-preview/f66e5bb8d9beec2cdf078a55b22be3f12c04585e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USAT20111228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bronx hip hop,east coast hip hop,gangster rap,hardcore hip hop,hip hop,pop rap,rap,trap,dance pop,hip pop,r&b,urban contemporary",0.829,0.688,8.0,-7.652,1.0,0.0978,0.0142,2.05e-06,0.0461,0.869,93.857,4.0,,Razor & Tie,"C © 2002 RT Industries, P ℗ 2002 RT Industries",4996 +4997,spotify:track:7zRmGvtSy36Jr19U5OInJT,Yellow Submarine - Remastered 2015,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:7vEJAtP3KgKSpOHVgwm3Eh,1 (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,2000-11-13,https://i.scdn.co/image/ab67616d0000b273582d56ce20fe0146ffa0e5cf,1,15,158800,https://p.scdn.co/mp3-preview/705edb78d9158933eb99e0668eb655ee2f3a460b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBUM71505916,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.66,0.557,1.0,-9.597,1.0,0.03,0.158,0.0,0.543,0.788,110.743,4.0,,UMC (Universal Music Catalogue),"C © 2015 Apple Corps Ltd., P This Compilation ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",4997 +4998,spotify:track:2nvC4i2aMo4CzRjRflysah,In My Place,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:0RHX9XECH8IVI3LNgWDpmQ,A Rush of Blood to the Head,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2002-08-27,https://i.scdn.co/image/ab67616d0000b273de09e02aa7febf30b7c02d82,1,2,226680,https://p.scdn.co/mp3-preview/601677ed6c8fa893554bd225a488aa21d5181730?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBAYE0200606,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.424,0.588,9.0,-5.455,1.0,0.0278,0.0553,4.95e-06,0.298,0.193,144.636,4.0,,Parlophone Records Limited,"C © 2002 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2002 Parlophone Records Ltd, a Warner Music Group Company",4998 +4999,spotify:track:2SVW5774QbmEjWfbHOEnz3,Before The Next Teardrop Falls,spotify:artist:0SNdq9iJyup4XY6JbNHbt6,Freddy Fender,spotify:album:3gy2ynEvSm1yV3gydcPWxd,Before The Next Teardrop Falls,spotify:artist:0SNdq9iJyup4XY6JbNHbt6,Freddy Fender,1975,https://i.scdn.co/image/ab67616d0000b2739ebc397a6511e15d19229b2d,1,8,149951,https://p.scdn.co/mp3-preview/f48e8bf5f4423999a751f72b033f86338996fe39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USMC17412632,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,new mexico music,swamp pop",0.778,0.307,10.0,-9.356,1.0,0.0341,0.892,0.000287,0.0985,0.699,92.299,4.0,,Geffen,"C © 1975 Geffen Records, P ℗ 2016 Geffen Records",4999 +5000,spotify:track:3jnvoZjYSccaivu3hz2aOD,Dumb Things - triple j Like A Version,"spotify:artist:6Lgfto5TiWLnHMpERQXlB9, spotify:artist:0SNWoGaDlrCompmg9rXeNq","A.B. Original, Paul Kelly",spotify:album:4pzPk5WAxGdnRlKWnKQz7r,Dumb Things (triple j Like A Version),spotify:artist:6Lgfto5TiWLnHMpERQXlB9,A.B. Original,2017-12-15,https://i.scdn.co/image/ab67616d0000b2734c8e962e4d5cbd6f5a7fc7bb,1,1,274226,https://p.scdn.co/mp3-preview/c0c7eee0d77bb680be65ccd10c63071627ec76e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAB01700820,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian indigenous hip hop,australian indigenous music,australian underground hip hop,australian indigenous music,australian rock",0.593,0.704,9.0,-7.041,0.0,0.139,0.202,0.0,0.0997,0.255,130.044,4.0,,Australian Broadcasting Corp (ABC),"C © 2017 Australian Broadcasting Corporation, P ℗ 2017 Australian Broadcasting Corporation",5000 +5001,spotify:track:4qGBF3l5Es0EKp0fasrpNc,These New Knights,spotify:artist:1m3jswEIBazYObuVL9NriQ,Ou Est Le Swimming Pool,spotify:album:3GWYIMDxdxduqGRzeTR6ze,These New Knights,spotify:artist:1m3jswEIBazYObuVL9NriQ,Ou Est Le Swimming Pool,2010-01-01,https://i.scdn.co/image/ab67616d0000b2731f80b418870f1721749c8835,1,1,205120,https://p.scdn.co/mp3-preview/a1d5cc6aa39f60f01a7c693be8cd87657b280da4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,GB7QY1000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,neo-synthpop",0.711,0.754,8.0,-3.523,1.0,0.216,0.00304,4.48e-05,0.485,0.876,119.992,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Fire & Manoeuvre, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty ltd., P ℗ 2010 Fire & Manoeuvre, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty ltd.",5001 +5002,spotify:track:7ohnowZCOV55QfU5Ifn5Kr,Touch Me (Radio Edit),spotify:artist:2J84sVYLHiP0snY2dOlYhI,Rui Da Silva feat. Cassandra,spotify:album:0qJxFeZk5qzZgMWCdSzhEm,Touch Me,spotify:artist:2J84sVYLHiP0snY2dOlYhI,Rui Da Silva feat. Cassandra,2000,https://i.scdn.co/image/ab67616d0000b2734a2834e670d5d4176cdc8f01,1,1,207066,https://p.scdn.co/mp3-preview/76c5a92ec7b35798ce19359fa15f1cd0e485f7a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,AUXN20903391,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.435,0.95,0.0,-7.006,1.0,0.107,0.163,0.658,0.0832,0.658,129.017,4.0,,Central Station Records,P 2009 Central Station Records,5002 +5003,spotify:track:5oWQhRi8yOgtSpbEPopz7g,Most People I Know Think That Im Crazy,spotify:artist:3XGBZeimYdPt1rLdy0JqrQ,Billy Thorpe,spotify:album:6HpyDtTXuhktRNOWhDADGB,Pick Me Up And Play Me Loud,spotify:artist:3XGBZeimYdPt1rLdy0JqrQ,Billy Thorpe,1976,https://i.scdn.co/image/ab67616d0000b273cdc63386e56affbaeb830792,1,4,369826,https://p.scdn.co/mp3-preview/d5afa9990fb46b52d636d3d0001e29174d1c3a71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUFE09400017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.394,0.602,2.0,-12.39,1.0,0.0437,0.513,0.00175,0.144,0.633,127.766,4.0,,WM Australia,"C © 1993 Festival Records, P ℗ 1976 Festival Records",5003 +5004,spotify:track:0S9VTVfhfH8QnvQCd6DSMh,Shame and Scandal in the Family,spotify:artist:1eSVNZWXnk23LHL1XoVo1b,Johnny Chester,spotify:album:533wwvk9BgLG697I8Xl14w,The Best Of,spotify:artist:1eSVNZWXnk23LHL1XoVo1b,Johnny Chester,2016-07-29,https://i.scdn.co/image/ab67616d0000b27369d3eee9864e40235596de0a,1,14,154546,https://p.scdn.co/mp3-preview/19551ed47ba47a65721ef9c041401100eca2235b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUPD41000357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,classic australian country",0.802,0.427,9.0,-14.044,1.0,0.104,0.761,0.0,0.132,0.949,128.736,4.0,,Checked Label Services,"C 2016 Johnny Chester. Under exclusive licence to Checked Label Services, P 2016 Johnny Chester. Under exclusive licence to Checked Label Services",5004 +5005,spotify:track:15ADURMdkO25JGD5mIcodM,Lucille,spotify:artist:4tw2Lmn9tTPUv7Gy7mVPI4,Kenny Rogers,spotify:album:5LYk7eiOau7NSQn6GQbF9k,Kenny Rogers,spotify:artist:4tw2Lmn9tTPUv7Gy7mVPI4,Kenny Rogers,1976-10-18,https://i.scdn.co/image/ab67616d0000b273c478c6674ce0b3219e8e3e7e,1,7,220866,https://p.scdn.co/mp3-preview/b128e3042bb5cb566a3d76b9d996154fb7ddb2c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USCN18600057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,nashville sound,soft rock",0.646,0.362,5.0,-11.954,1.0,0.0312,0.724,0.0,0.134,0.387,142.46,3.0,,EMI Music Nashville (ERN),"C © 1976 Capitol Records, LLC, P ℗ 1976 Capitol Records, LLC",5005 +5006,spotify:track:4WY3HyGXsWqjFRCVD6gnTe,Baby Boy (feat. Sean Paul),"spotify:artist:6vWDO969PvNqNYHIOW5v0m, spotify:artist:3Isy6kedDrgPYoTS1dazA9","Beyoncé, Sean Paul",spotify:album:6oxVabMIqCMJRYN1GqR3Vf,Dangerously In Love,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2003-06-24,https://i.scdn.co/image/ab67616d0000b27345680a4a57c97894490a01c1,1,3,244826,https://p.scdn.co/mp3-preview/37ba481ac4415f51185a2a27520857d4e346bc05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM10305420,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b,dance pop,dancehall,pop,pop rap",0.655,0.488,1.0,-9.17,1.0,0.22,0.0825,1.16e-06,0.221,0.791,91.025,4.0,,Columbia,"P (P) 2003 J Records, 2003 Sony Music Entertainment Inc.",5006 +5007,spotify:track:5hGSM1NIumwLgI0Y97X9xB,New Thang,spotify:artist:3mH3OBKopDDVgnJcT5PrPk,Redfoo,spotify:album:4ZoXZAcycK6K704FR735Ax,Party Rock Mansion,spotify:artist:3mH3OBKopDDVgnJcT5PrPk,Redfoo,2016-03-18,https://i.scdn.co/image/ab67616d0000b273733d0f6b5127f249106c29d1,1,8,226800,https://p.scdn.co/mp3-preview/c377606c762e2ecf1e483235306e215b857b8b71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,QM7UU1500011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.743,0.841,0.0,-5.189,1.0,0.0391,0.0156,0.0,0.133,0.814,100.003,4.0,,Party Rock Records,"C © 2016 Party Rock Records, P ℗ 2016 Party Rock Records",5007 +5008,spotify:track:1riTgBBgmCdrm169m2CFzO,Wonderful Life - Radio Edit,spotify:artist:3w4VAlllkAWI6m0AV0Gn6a,Hurts,spotify:album:3pmGRyIPJ2HcJRvVgOfwzx,110% POP,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-05-26,https://i.scdn.co/image/ab67616d0000b273ca743d98ebb621d8d70cad0c,1,83,215080,https://p.scdn.co/mp3-preview/3680f99e4a04a0ccf585a1f482d8a14b5c24dc44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1000260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,neo-synthpop",0.694,0.804,11.0,-8.784,0.0,0.0557,0.187,0.000304,0.273,0.516,120.042,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Denmark A/S,5008 +5009,spotify:track:2q7525kRHfkZnCpQNDxJf1,My Gun,spotify:artist:2hrWpLNoJcs1EnWSXvB6JI,The Rubens,spotify:album:1SmR2unWU6dPXtH72M67dX,The Rubens,spotify:artist:2hrWpLNoJcs1EnWSXvB6JI,The Rubens,2012-09-14,https://i.scdn.co/image/ab67616d0000b2735524a496d9d8515c723d4c75,1,2,190060,https://p.scdn.co/mp3-preview/85b95c5bbcb37ceff1d066aee96cbd48fa7a850e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01283240,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.511,0.864,1.0,-4.357,1.0,0.0424,0.00322,0.00184,0.0826,0.658,200.029,4.0,,Ivy League Records,"C 2012 Ivy League Records, P 2012 Ivy League Records",5009 +5010,spotify:track:28rzHxVgXXcYtmlfxyPMvm,The Cheater,spotify:artist:6mvCluPyR7DZS5PTHNjp5O,Bob Kuban & The In-Men,spotify:album:2VG3y0tw1F1aU7GkGSszCN,The Cheater,spotify:artist:1o2vRobBERBogRqx8q1PQX,Bob Kuban,2011-03-29,https://i.scdn.co/image/ab67616d0000b27385b087427643b195b14d9293,1,1,162693,https://p.scdn.co/mp3-preview/a07cbd6d75611137f18ba7826d8c5cdacb086390?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,USXTN1049966,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.62,0.728,3.0,-10.069,0.0,0.0617,0.674,6.37e-05,0.126,0.755,135.278,4.0,,Classic Music International,"C 2011 Classic Music International, P 2011 Classic Music International",5010 +5011,spotify:track:4jUuqKRr1fB4c1RvU6syls,Oops!...I Did It Again,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:3caKTh2tJMowPiMz0cguLI,Greatest Hits: My Prerogative,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2004-11-08,https://i.scdn.co/image/ab67616d0000b27338a33970ad21a2a1d1315875,1,4,210853,https://p.scdn.co/mp3-preview/334d856d61af2faa55b175c6789654aaca4c6da1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USJI10000100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.755,0.832,11.0,-4.869,1.0,0.0462,0.317,1.9e-05,0.219,0.888,95.044,4.0,,Jive,P (P) 2004 Zomba Recording LLC,5011 +5012,spotify:track:6B4bbxgcToDVMkw92Oj356,Ti Amo,spotify:artist:4463nfFMmK1cwAWBQDwT5e,Laura Branigan,spotify:album:5cwUCXPFFfNsnk4qipc40D,Self Control,spotify:artist:4463nfFMmK1cwAWBQDwT5e,Laura Branigan,1984,https://i.scdn.co/image/ab67616d0000b2731310670cbb82f06474372cfd,1,3,254333,https://p.scdn.co/mp3-preview/7d91666e5d165ddbe100652a3a7cd16c7e750c7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USAT20903048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock,synthpop",0.578,0.519,5.0,-11.897,1.0,0.0297,0.425,0.0,0.141,0.638,184.358,3.0,,Rhino Atlantic,"C © 1984 Atlantic Recording Corp., P ℗ 1984 Atlantic Recording Corp. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",5012 +5013,spotify:track:26AYR77170U49cMcXB7aRV,Feeling This,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:4hBTxv4QRPePXCFcEI7Vjp,blink-182,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,2003-11-01,https://i.scdn.co/image/ab67616d0000b2730538b48c180256e0bdd8363f,1,1,172645,https://p.scdn.co/mp3-preview/3c79ccb458b45c4af6e34fa9e9c8bc12ecd2ec7d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,USMC10346225,spotify:user:bradnumber1,2023-08-08T22:03:57Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.411,0.962,4.0,-5.952,1.0,0.0917,0.103,0.0,0.529,0.622,173.143,4.0,,Geffen,"C © 2016 Geffen Records, P ℗ 2016 Geffen Records",5013 +5014,spotify:track:4UE8T2GKceEaNhn5ORTkyo,Caught in the Middle,spotify:artist:5lPsVvHVDr6R5mDxRUXdOs,A1,spotify:album:7aMMpyDflUCZzDFp6LNul0,Make It Good,spotify:artist:5lPsVvHVDr6R5mDxRUXdOs,A1,2001,https://i.scdn.co/image/ab67616d0000b273d898a5b0f91ad3005f0b8e00,1,1,206466,https://p.scdn.co/mp3-preview/683fb6237a1c008b8d44553ed0e244cd6d0fa580?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBBBN0102623,spotify:user:bradnumber1,2023-03-10T13:13:02Z,boy band,0.519,0.874,5.0,-5.122,1.0,0.034,0.0524,0.0,0.243,0.572,96.072,4.0,,Columbia,"P (P) 2001, 2002 Byrne Blood Productions Ltd. Sony BMG Music Entertainment (UK) Limited are the exclusive licensees for the world",5014 +5015,spotify:track:6qF3qHvzEmh7bkdBatxQuS,Snoopy Vs. The Red Baron,spotify:artist:2ltpcCK86foogli20z9raq,The Royal Guardsmen,spotify:album:66FUaC2xaOHfVL8ku219Wp,Snoopy Vs. The Red Baron,spotify:artist:2ltpcCK86foogli20z9raq,The Royal Guardsmen,1967-01-01,https://i.scdn.co/image/ab67616d0000b27352be24ca8d22c4c671cc6535,1,1,160680,https://p.scdn.co/mp3-preview/e34ca73622b95a18cfff9f1a86ae573b7feb151e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USLA19500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.612,0.837,6.0,-8.504,1.0,0.0609,0.436,0.0,0.337,0.749,126.783,4.0,,Capitol Records,"C © 1967 Capitol Records, LLC, P ℗ 1967 Capitol Records, LLC",5015 +5016,spotify:track:6C5YJu3CEIVSrKUr3ZQPcq,Where Have All The Flowers Gone?,spotify:artist:3qtcbDvdIgQOXkPbtRvBaQ,The Kingston Trio,spotify:album:058obq8zYwui6cPRPLcOQZ,The Capitol Years,spotify:artist:3qtcbDvdIgQOXkPbtRvBaQ,The Kingston Trio,1995-08-12,https://i.scdn.co/image/ab67616d0000b2738b73f3649a8755efc09c5be6,3,8,183066,https://p.scdn.co/mp3-preview/54f7308048c0d0894b9e5e6eaa31cf30db2e9731?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA28700114,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"american folk revival,folk",0.623,0.14,10.0,-19.324,1.0,0.0341,0.922,0.000171,0.155,0.574,130.884,4.0,,Capitol Records,"C © 1995 Capitol Records, P ℗ 1995 Capitol Records",5016 +5017,spotify:track:5TYv5CM1NEFVi2t6QPDjtW,Who You Lovin,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,spotify:album:63rkq51xFTk7XtMmB4B6Dw,Who You Lovin,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,2015-10-06,https://i.scdn.co/image/ab67616d0000b273d6d6a51490f505a830511198,1,1,232080,https://p.scdn.co/mp3-preview/e39cb3d949554eb310ae5fadff29ff5badc18edd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,QMCE31500423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.85,0.852,7.0,-3.855,0.0,0.0601,0.22,1.49e-06,0.0681,0.766,110.979,4.0,,300 Entertainment,"C © 2015 300 Entertainment for the United States and 300 Entertainment under exclusive license to WEA International, Inc. for the world excluding the United States., P ℗ 2015 300 Entertainment for the United States and 300 Entertainment under exclusive license to WEA International, Inc. for the world excluding the United States.",5017 +5018,spotify:track:55h7vJchibLdUkxdlX3fK7,Treasure,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:58ufpQsJ1DS5kq4hhzQDiI,Unorthodox Jukebox,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2012-12-07,https://i.scdn.co/image/ab67616d0000b273926f43e7cce571e62720fd46,1,4,178560,https://p.scdn.co/mp3-preview/2265c5b16b2e19f65da045df41cf2b4b8fd66ea3?cid=9950ac751e34487dbbe027c4fd7f8e99,True,81,USAT21206909,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.874,0.692,5.0,-5.28,0.0,0.0431,0.0412,7.24e-05,0.324,0.937,116.017,4.0,,Atlantic Records,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",5018 +5019,spotify:track:0u9rjPUcYJvAbm2lJJxffT,Selling Me Out,spotify:artist:2D9eG3B30VlpA1uME35LeB,Tuka,spotify:album:3L5T8HDAyOIlbRZaI8dHbM,Selling Me Out,spotify:artist:2D9eG3B30VlpA1uME35LeB,Tuka,2019-09-05,https://i.scdn.co/image/ab67616d0000b273e085c258174492b2747bda25,1,1,213287,https://p.scdn.co/mp3-preview/6494980a32be260676278fb6fe418b738cbca4fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUUM71900674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.739,0.723,9.0,-6.19,1.0,0.0772,0.325,0.0,0.0733,0.473,89.897,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2019 Universal Music Australia Pty Ltd., P ℗ 2019 Universal Music Australia Pty Ltd.",5019 +5020,spotify:track:2BVFLo6PlycBOOer2MmGi3,Running Back (feat. Flo Rida),"spotify:artist:6rHWAH6F4mr2AViSxMV673, spotify:artist:0jnsk9HBra6NMjO2oANoPY","Jessica Mauboy, Flo Rida",spotify:album:2PzvfJGK74FgwPrvMB0qOh,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2008-11-17,https://i.scdn.co/image/ab67616d0000b2732e14e3c145c0cac92a12feac,1,1,226093,https://p.scdn.co/mp3-preview/ada3df1734555119f1d8719f1593d71019012afb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUBM00800514,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show,dance pop,miami hip hop,pop,pop rap",0.512,0.916,5.0,-3.715,0.0,0.284,0.0231,0.0,0.095,0.363,85.873,4.0,,Sony BMG Music Entertainment,P (P) 2008 SONY BMG Music Entertainment (Australia) Pty Limited,5020 +5021,spotify:track:6xSsJNkReuJzerqcIlBzBi,I Bet,spotify:artist:2NdeV5rLm47xAvogXrYhJX,Ciara,spotify:album:7cR9MbK9VXNEQKpFjqkDHT,I Bet,spotify:artist:2NdeV5rLm47xAvogXrYhJX,Ciara,2015-01-26,https://i.scdn.co/image/ab67616d0000b2734106e7f708e7979d34cfe84b,1,1,287850,https://p.scdn.co/mp3-preview/3e7df15ba9740a4c59ba40e623631a7bde212ae4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,41,USSM11500082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,pop,r&b,urban contemporary",0.739,0.616,8.0,-7.246,1.0,0.0621,0.0808,0.0,0.0759,0.341,129.016,4.0,,Epic,"P (P) 2015 Epic Records, a division of Sony Music Entertainment",5021 +5022,spotify:track:3LQde40NABYOH14hWse0Yi,Two Strong Hearts,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4JHZh7UHLQxcdH0qQB757v,Age Of Reason,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1988-07-22,https://i.scdn.co/image/ab67616d0000b273cb198d60945857e704dc07b4,1,4,213333,https://p.scdn.co/mp3-preview/21f2c2491fbe7089b41169b5483039517cbc5904?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUBM08841001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.646,0.839,2.0,-8.178,1.0,0.0332,0.0833,0.0,0.315,0.834,109.854,4.0,,RCA Records Label,P (P) 1988 Sony Music Entertainment Australia Pty Ltd,5022 +5023,spotify:track:1erDNx55IWAE9OYuBTRYgc,Bad Liar,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:77FDbkcDlmgOn4OXbLkiba,Bad Liar,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2018-11-06,https://i.scdn.co/image/ab67616d0000b273272737b42d9e9eaa05200d54,1,1,260773,https://p.scdn.co/mp3-preview/56413ec463879763e7f9f347f82675e2cff6654c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71816161,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.383,0.637,3.0,-6.993,1.0,0.0703,0.0722,0.0,0.368,0.0827,177.913,4.0,,Kid Ina Korner / Interscope,"C © 2018 KIDinaKORNER/Interscope Records, P ℗ 2018 KIDinaKORNER/Interscope Records",5023 +5024,spotify:track:0zkiQH567SDLqfWNBaU3hv,#SELFIE,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,spotify:album:1CwTQl3oL06qrjTithl9lB,#SELFIE,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2014-01-01,https://i.scdn.co/image/ab67616d0000b2732a0330f83b1c7f133119514a,1,1,183750,https://p.scdn.co/mp3-preview/6099c4eb39bcc9d1d04a3400cb7c78c3a235d4f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDM31400016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.808,0.915,0.0,-3.277,1.0,0.233,0.0136,9.03e-06,0.0788,0.647,127.984,4.0,,Universal Music Group,"C © 2014 Dim Mak Inc., P ℗ 2014 Dim Mak Inc.",5024 +5025,spotify:track:6lXU19ivffGmhE9a3HMPH7,Get Ready - Rapversion Edit,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,spotify:album:3iG8PBNaym1FnRn1OSov7H,Get Ready,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,1992-02-24,https://i.scdn.co/image/ab67616d0000b2730ed6f9af272265af055c211b,1,1,222910,https://p.scdn.co/mp3-preview/46511038bc80e3e1acea4b5e24608aa9c488d5f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BEAA11301362,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,hip house",0.769,0.873,11.0,-5.234,0.0,0.106,0.0182,3.94e-05,0.0456,0.824,124.844,4.0,,Byte Records,"C 2016 Byte Records, P 2016 Byte Records",5025 +5026,spotify:track:2JZKXgq5zsokN01KWyiY6n,Mirrors,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:41br7lBSZOr9RjJAjk0om6,The 20/20 Experience,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2013-03-15,https://i.scdn.co/image/ab67616d0000b2733bdcce59b390456941d964d1,1,9,484146,https://p.scdn.co/mp3-preview/46994b2d9a44ac2bae88959e424bf960a42ede13?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11300059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.574,0.512,5.0,-6.664,0.0,0.0503,0.234,0.0,0.0946,0.512,76.899,4.0,,RCA Records Label,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",5026 +5027,spotify:track:36gPq8WG7tDxrblyGVUCiT,Up Around The Bend,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:4GLxEXWI3JiRKp6H7bfTIK,Cosmo's Factory (Expanded Edition),spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1970-07-25,https://i.scdn.co/image/ab67616d0000b27361834aa14b97a7d9c693134f,1,7,161466,https://p.scdn.co/mp3-preview/fbb595c1ad7ea5ddea5e66f81df07d0aca9cd0fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USC4R0817632,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.589,0.85,2.0,-6.143,1.0,0.0343,0.0606,0.779,0.274,0.813,130.318,4.0,,Craft Recordings,"C © 2008 Concord Music Group, Inc., P ℗ 2008 Concord Music Group, Inc.",5027 +5028,spotify:track:2eSj0HHwB9aHJQ7zFOu90G,Don't Cry Daddy,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:3ekkFrfotMsEAKc5g71GHk,From Elvis in Memphis,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1969-06-17,https://i.scdn.co/image/ab67616d0000b273fdc0aa7765f3197ac9179ec7,1,14,167746,https://p.scdn.co/mp3-preview/49c49df59858e248f5cb98076e6abb7e43082b21?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USRC16908264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.44,0.196,2.0,-17.375,1.0,0.0272,0.804,8.95e-06,0.179,0.333,85.776,4.0,,RCA/Legacy,P (P) 1969 Sony Music Entertainment,5028 +5029,spotify:track:0hLOdmtyc64hpej3kfaV1F,Turn Me Loose,spotify:artist:2CLVPk9FcywjClBcTvWPkT,Loverboy,spotify:album:5KGgntYNq9H1MiSaM13cb2,Super Hits,spotify:artist:2CLVPk9FcywjClBcTvWPkT,Loverboy,1997-07-08,https://i.scdn.co/image/ab67616d0000b27309457d01cfe4df92f0f88433,1,1,336733,https://p.scdn.co/mp3-preview/193ecc0c0e6713d87d6d649e00c6f3216948c482?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAC220000211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic canadian rock,classic rock,glam metal,hard rock,mellow gold,soft rock",0.519,0.784,5.0,-8.68,1.0,0.0323,0.0741,0.000942,0.198,0.558,119.405,4.0,,Columbia/Legacy,"P (P) 1980, 1981, 1983, 1985, 1997 Sony Music Entertainment (Canada) Inc. WARNING: All rights reserved. Unauthorized duplication is a violation of applicable laws.",5029 +5030,spotify:track:3H7ihDc1dqLriiWXwsc2po,Breaking Me,"spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:5Wg2b4Mp42gicxEeDNawf7","Topic, A7S",spotify:album:3nBQlhUvErkw8DVpF47WAn,Breaking Me,"spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:5Wg2b4Mp42gicxEeDNawf7","Topic, A7S",2019-12-19,https://i.scdn.co/image/ab67616d0000b273ca801dab96017456b9847ac2,1,1,166793,https://p.scdn.co/mp3-preview/f4e4f6b589e662b7b433d05d4bf130f6bd91fce1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,DEUM71906724,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german dance,pop dance,pop edm,uk dance,pop dance,scandipop",0.789,0.72,8.0,-5.652,0.0,0.218,0.223,0.0,0.129,0.664,122.031,4.0,,Virgin,"C © 2019 Topic, under exclusive license to Universal Music GmbH, P ℗ 2019 Topic, under exclusive license to Universal Music GmbH",5030 +5031,spotify:track:1HObBPACB4IZFuB2bVOPeQ,Some Of The Places I Know,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,spotify:album:2DZIOP38phaslClp6w5sYx,Cohesion,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,2010-01-01,https://i.scdn.co/image/ab67616d0000b27363e9deff8c266754fd39d9ac,1,4,231026,https://p.scdn.co/mp3-preview/015a8713663dcf535f91324c947239262549fb83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71000168,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.372,0.86,2.0,-3.401,0.0,0.0435,0.0501,4.69e-06,0.369,0.544,203.648,4.0,,Universal Music Group,"C © 2010 Universal Music Australia Pty Ltd., P ℗ 2010 Universal Music Australia Pty Ltd.",5031 +5032,spotify:track:7EfCJIUryOFgdBEXDCfcmG,Takin' Care Of Business,spotify:artist:5q4AzEtCoYJyXjMMoEkSU5,Bachman-Turner Overdrive,spotify:album:59waWGYzyiilnhNaiqpXD7,Bachman-Turner Overdrive II,spotify:artist:5q4AzEtCoYJyXjMMoEkSU5,Bachman-Turner Overdrive,1973-01-01,https://i.scdn.co/image/ab67616d0000b2733b5f41341d2b7da10600753e,1,8,289893,https://p.scdn.co/mp3-preview/083f1b16036f2b8b2687cd5fb1c4c9a6bfb18dbc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR17387011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic canadian rock,classic rock,country rock,folk rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.728,0.708,10.0,-14.01,1.0,0.0532,0.0518,2.34e-06,0.147,0.964,129.988,4.0,,Universal Music Group,"C © 1973 The Island Def Jam Music Group, P ℗ 1973 The Island Def Jam Music Group",5032 +5033,spotify:track:1qbRBE3P3feRkXcWkO0u97,Now That We Found Love,"spotify:artist:4KHdmkq99PXA6QEJ2lKpA3, spotify:artist:772SIFJQiXTCfxncTK1UMn","Heavy D & The Boyz, Aaron Hall",spotify:album:2an6aIBJgsoTV37uZKORhU,Peaceful Journey,spotify:artist:4KHdmkq99PXA6QEJ2lKpA3,Heavy D & The Boyz,1991-07-02,https://i.scdn.co/image/ab67616d0000b27351007e96de8b49fe5c424cce,1,1,258200,https://p.scdn.co/mp3-preview/12dba3ced247ed49784f6535fecfaa9a8525a678?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19135589,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,east coast hip hop,new jack swing,old school hip hop,contemporary r&b,new jack swing,r&b",0.747,0.696,0.0,-14.737,0.0,0.0631,0.0409,0.0,0.181,0.674,119.954,4.0,,Universal Music Group,"C © 1991 MCA Records Inc., P ℗ 1991 UMG Recordings, Inc.",5033 +5034,spotify:track:0iji1rGXWEbJRumLdIpgGt,The World I Know,spotify:artist:4e5V1Q2dKCzbLVMQ8qbTn6,Collective Soul,spotify:album:79iv4A0IZv4fRYZEJORcbF,7even Year Itch Collective Soul Greatest Hits 1994-2001 (Int'l Version),spotify:artist:4e5V1Q2dKCzbLVMQ8qbTn6,Collective Soul,2001-09-18,https://i.scdn.co/image/ab67616d0000b273b5d4e28bbd9544884f875e26,1,10,255466,https://p.scdn.co/mp3-preview/2726b1be74183d3bbe937e2211294c4c38f67fbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT29500011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,nu metal,pop rock,post-grunge,rock",0.514,0.704,2.0,-4.724,1.0,0.0261,0.0515,0.00219,0.228,0.386,76.975,4.0,,Concord Music Group,"C 2001 Concord Music Group, Inc., P 2001 Concord Music Group, Inc.",5034 +5035,spotify:track:7bsEgxdswhGfqGspJp4vBd,I Wanna Be Around,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:2OXZJLXxM8jrY3gBoVNfmz,Nobody but Me (Deluxe),spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2016-10-21,https://i.scdn.co/image/ab67616d0000b273576629f3c4631eb55612a7c7,1,7,222120,https://p.scdn.co/mp3-preview/4eb70a8f75810a13f122974213f7661220a7e7e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USRE11600456,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.258,0.501,8.0,-5.309,1.0,0.0455,0.518,2.26e-06,0.107,0.491,186.778,3.0,,Reprise,"C © 2016 Reprise Records, P ℗ 2016 Reprise Records",5035 +5036,spotify:track:7nZGbjwTis0dJGaupJo1Pb,I Don't Care,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,spotify:album:48jgCCT2dQpdJXhO3QRUI8,Folie à Deux,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2008-01-01,https://i.scdn.co/image/ab67616d0000b2731aaa593b71501a07a5a78fb5,1,2,214493,https://p.scdn.co/mp3-preview/a4fddd6463cb7c3f612509569b52055c05e53746?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70835313,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop,rock",0.55,0.938,11.0,-3.556,0.0,0.0522,0.00171,2.18e-05,0.555,0.433,133.99,4.0,,Universal Music Group,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",5036 +5037,spotify:track:7lzWxlYqqHhtPQ1WUNmyYB,Soul Kind of Feeling,spotify:artist:6xrurMjtUUYPWeQ2UphcwK,Dynamic Hepnotics,spotify:album:1rm7DuO4hESibL5922Ry5A,Hepnobest,spotify:artist:6xrurMjtUUYPWeQ2UphcwK,Dynamic Hepnotics,2016-06-20,https://i.scdn.co/image/ab67616d0000b273a60dbf9a25f3146083ef9ba0,1,1,232520,https://p.scdn.co/mp3-preview/fdbfa75fa1b7a6d0af6353794c1bddbcaba2d5c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AURI31603101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.674,0.732,4.0,-5.726,1.0,0.0496,0.308,2.47e-05,0.0517,0.767,123.55,4.0,,Right on Records,"C 2016 Dynamic Hepnotics, P 2016 Dynamic Hepnotics",5037 +5038,spotify:track:77W6VUoJdasCQgjc5DW19q,Wings,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:0SHgpefjbVvnR2NnMPj1ve,DNA: The Deluxe Edition,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2012,https://i.scdn.co/image/ab67616d0000b273a72a9f6d0b66322e367c40c9,1,1,219733,https://p.scdn.co/mp3-preview/0864d68918f3940b5a47d6e8c530ed511c6652f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1200137,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.738,0.875,7.0,-3.141,1.0,0.127,0.000673,0.000556,0.285,0.538,114.962,4.0,,Syco Music,P (P) 2013 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,5038 +5039,spotify:track:1IbElKiARztcn0HvvKP28Z,"Say, Has Anybody Seen My Sweet Gypsy Rose (feat. Tony Orlando) - Digitally Remastered 1998","spotify:artist:1vjeJ712UQutRhn6WJI4sF, spotify:artist:6PNZ6ZfwWLiUA2BrranFl3","Dawn, Tony Orlando",spotify:album:3VVewTnDOIwecO59w2DsNz,New Ragtime Follies,spotify:artist:72NXpYBIaTfEeAAsxXLs0P,Tony Orlando & Dawn,1973-04-22,https://i.scdn.co/image/ab67616d0000b27348cabf52d43dfaa5ef3fd967,1,3,172160,https://p.scdn.co/mp3-preview/aa208117d2db5a9195536543ad7d52d4261ac1ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USAR19800303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.527,0.702,1.0,-9.271,1.0,0.177,0.524,1.43e-05,0.0833,0.611,170.565,4.0,,Arista,P (P) 1973 Arista Records LLC,5039 +5040,spotify:track:66f0rfiEAjfM7mqhp7Gyy1,Solitaire,spotify:artist:4463nfFMmK1cwAWBQDwT5e,Laura Branigan,spotify:album:2bfvV9aRLN1BseXz4FbVnW,The Best of Branigan,spotify:artist:4463nfFMmK1cwAWBQDwT5e,Laura Branigan,1995-06-06,https://i.scdn.co/image/ab67616d0000b273f0f7c1d151ae7ad826643e2f,1,1,245933,https://p.scdn.co/mp3-preview/94dcd06eb8cbe148f65d38a72ad73f2b098e863a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USAT28300012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock,synthpop",0.695,0.826,6.0,-5.298,0.0,0.03,0.363,0.00391,0.113,0.797,138.677,4.0,,Atlantic Records,"C © 1995 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1995 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",5040 +5041,spotify:track:1ATiocRsFUbrnEFhb5Y4y9,You Must Have Been a Beautiful Baby,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,spotify:album:65okcRJHUVUrFiDG3I1Sz8,The Ultimate Bobby Darin,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,2004-11-23,https://i.scdn.co/image/ab67616d0000b27332ca9d1b933d95925e170c90,1,9,129706,https://p.scdn.co/mp3-preview/0442a29f91c6629727fecd43f03d5b632b1849e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USEE10180039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rock-and-roll,rockabilly,vocal jazz",0.707,0.549,7.0,-15.712,1.0,0.0356,0.763,5.88e-05,0.121,0.974,134.563,4.0,,Rhino/Warner Records,"C © 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing",5041 +5042,spotify:track:1ODvWtPXDX84saex9CwzqS,The Shoop Shoop Song (It's in His Kiss),spotify:artist:6VTladttdVHzolv7aq6Q5B,The Bootleg Family Band,spotify:album:5mcbAoGZJoZjeRlwtbiccg,Collected,spotify:artist:6VTladttdVHzolv7aq6Q5B,The Bootleg Family Band,2018-06-06,https://i.scdn.co/image/ab67616d0000b273a7aa6cb2325f8b7ea7c5c5aa,1,2,181680,https://p.scdn.co/mp3-preview/0a6c0ef2e7616a9cae4ae585c4082ba39139a84e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.603,0.736,2.0,-11.212,1.0,0.0853,0.13,0.0,0.0445,0.936,125.169,4.0,,Fable Records,"C 2018 Bootleg Records, P 2018 Southern Cross Music Pty Limited",5042 +5043,spotify:track:50PWlIBU7PlGGwzgN8TiFJ,Million Reasons,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:4JiY4JUvXdEA7UFIbiAyor,Joanne (Deluxe),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2016-10-21,https://i.scdn.co/image/ab67616d0000b273dd0b256c733c96b653ab5cde,1,7,205280,https://p.scdn.co/mp3-preview/a0b49cbeb2ecb04823c02c731c5d58aa4a9f39a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71609736,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.668,0.449,0.0,-7.897,1.0,0.0451,0.477,0.0,0.107,0.154,129.889,4.0,,Universal Music Group,"C © 2016 Interscope Records, P ℗ 2016 Interscope Records",5043 +5044,spotify:track:4R6LAvOMzkTJcFbSOmmEh9,The Twist,spotify:artist:7qQJQ3YtcGlqaLg5tcypN2,Chubby Checker,spotify:album:3t848NFNAVru2orxLI3QOy,Cameo Parkway - The Best Of Chubby Checker (Original Hit Recordings) [International Version],spotify:artist:7qQJQ3YtcGlqaLg5tcypN2,Chubby Checker,1961-01-01,https://i.scdn.co/image/ab67616d0000b27331b14a6be50bdc7e60f9dbac,1,2,153760,https://p.scdn.co/mp3-preview/c7ff17e9b040b0fbadbfe929fa814e3889ce1607?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176040010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.533,0.638,4.0,-7.13,1.0,0.0341,0.202,0.0,0.0729,0.937,156.663,4.0,,Universal Music Group,"C © 2005 ABKCO Records Inc., P ℗ 2005 ABKCO Records Inc.",5044 +5045,spotify:track:34wBwGT1Jhr8JUkJDcFGvk,"If You Gotta Go, Go Now - 2007 Remaster",spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,spotify:album:13VP0DyGZZq15NzDVoh79y,Down the Road Apiece - the Recordings 1963-1966,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,1963,https://i.scdn.co/image/ab67616d0000b273aeff13eeab0e4f608bc5c070,1,61,151746,https://p.scdn.co/mp3-preview/2dfed11732e9767c218e43240883bbf420508dd5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE0702192,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,classic rock,singer-songwriter",0.592,0.571,7.0,-8.406,1.0,0.0357,0.372,0.0,0.408,0.879,129.272,4.0,,East Central One,"C 2020 East Central One Limited, P 1963 East Central One Limited",5045 +5046,spotify:track:4tfUdNH8JBzWRmB2vMSfFg,I Was Only 19 (A Walk in the Light Green),spotify:artist:2FBQIV8BJF5SrvXpziFE2M,Redgum,spotify:album:7v02qR2p5gXvYJl55uXlXc,The Essential,spotify:artist:2FBQIV8BJF5SrvXpziFE2M,Redgum,2011-05-27,https://i.scdn.co/image/ab67616d0000b273b7119a8d152b44b6ccb7f119,2,8,259506,https://p.scdn.co/mp3-preview/3a0873b96f3b0f374fb7ae2f66064257b7e45830?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUSM08300002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.652,0.545,9.0,-9.86,1.0,0.0474,0.142,0.0,0.0806,0.368,88.032,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,5046 +5047,spotify:track:46n2EGFnPC3tzWCN1Aqe26,This I Promise You,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,spotify:album:20RMokVwJ2wjQ0s8FOdOFC,No Strings Attached,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,2000-03-21,https://i.scdn.co/image/ab67616d0000b273a6cb8fab778e1efc406a5909,1,6,284760,https://p.scdn.co/mp3-preview/40bc0db1da6efd3f0907ae55269738daa86c08d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USJI10000047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.55,0.587,2.0,-6.279,1.0,0.0329,0.354,0.0,0.128,0.466,165.975,4.0,,Jive,P (P) 2000 Zomba Recording LLC,5047 +5048,spotify:track:6ZOBP3NvffbU4SZcrnt1k6,Kryptonite,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,spotify:album:5gO2acKSOaJnP0Mcy8IpU6,The Better Life,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,2000,https://i.scdn.co/image/ab67616d0000b2732868c4713a3912fd476b42f1,1,1,233933,https://p.scdn.co/mp3-preview/55c8389bc8dfbe118e97ecd05f027e9ad59cd99d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USUR19980187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.545,0.865,11.0,-5.708,0.0,0.0286,0.00664,1.1e-05,0.168,0.543,99.005,4.0,,Universal Records,"C © 2000 Universal Records Inc., P ℗ 1999 Universal Motown Records, a division of UMG Recordings, Inc.",5048 +5049,spotify:track:5MTqczrMNkxZbFghiopgHL,Wonderful,"spotify:artist:1J2VVASYAamtQ3Bt8wGgA6, spotify:artist:2mxe0TnaNL039ysAj51xPQ, spotify:artist:5rkVyNGXEgeUqKkB5ccK83","Ja Rule, R. Kelly, Ashanti",spotify:album:1IzGIg7yq3LsiP2kH0Yusz,R.U.L.E.,spotify:artist:1J2VVASYAamtQ3Bt8wGgA6,Ja Rule,2004-01-01,https://i.scdn.co/image/ab67616d0000b273b229dcbe02f1c9119148dadb,1,3,270506,https://p.scdn.co/mp3-preview/b8e89710943d2379e7a4a5b910148a1dca6ba4ed?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USDJ20400973,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,gangster rap,hip hop,hip pop,pop rap,queens hip hop,rap,urban contemporary,dance pop,hip pop,r&b,urban contemporary",0.663,0.777,11.0,-4.954,0.0,0.109,0.277,0.0,0.0466,0.758,92.681,4.0,,Def Jam Recordings,"C © 2004 The Island Def Jam Music Group, P ℗ 2004 The Island Def Jam Music Group",5049 +5050,spotify:track:69YyPU1oElukhL5jgMi2wA,Come Home with Me,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:2ploE2Xfb4u43TnK7OAos3,Madness,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2014-11-21,https://i.scdn.co/image/ab67616d0000b27394e513cf40e6e38ddf847fb9,1,11,204400,https://p.scdn.co/mp3-preview/a59198c76b05d0933878cd09dfe3a6770b15d2c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUBM01400393,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.706,0.719,2.0,-4.239,1.0,0.0573,0.00706,0.0,0.0377,0.495,126.112,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,5050 +5051,spotify:track:72FdcAg79So8xaAHs2mbrB,Old School Love (feat. Ed Sheeran),"spotify:artist:01QTIT5P1pFP3QnnFSdsJf, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Lupe Fiasco, Ed Sheeran",spotify:album:4Pd4rwnwatvI9RO6vFdc3e,Old School Love (feat. Ed Sheeran),spotify:artist:01QTIT5P1pFP3QnnFSdsJf,Lupe Fiasco,2013-10-15,https://i.scdn.co/image/ab67616d0000b27377eaba5c1bb0fe62109bb2e5,1,1,273903,https://p.scdn.co/mp3-preview/75ccdb55bae0cbc062d8b89900534ec799523a41?cid=9950ac751e34487dbbe027c4fd7f8e99,True,41,USAT21303689,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,conscious hip hop,hip hop,political hip hop,pop rap,rap,southern hip hop,pop,singer-songwriter pop,uk pop",0.701,0.781,5.0,-8.493,1.0,0.134,0.0908,1.75e-06,0.358,0.459,86.006,4.0,,1st & 15th/Atlantic,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",5051 +5052,spotify:track:6lvsJDZ7336YmpBzcNGhbe,fOoL fOr YoU,spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,spotify:album:5amj9zNeZ3B2EdpBgXrOZ0,Mind Of Mine (Deluxe Edition),spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,2016-03-25,https://i.scdn.co/image/ab67616d0000b273a15e26d05b7ce776b566579d,1,10,202213,https://p.scdn.co/mp3-preview/6ec2ac3c0db2d5fdbb5dd1f4e97e0963a2440627?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USRC11600394,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.52,0.513,7.0,-7.208,1.0,0.0256,0.281,0.0,0.0976,0.17,77.903,4.0,,RCA Records Label,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",5052 +5053,spotify:track:7jyvUW9Zny8tt0yHP0TX8R,Uptown Funk,"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:0du5cEVh5yTK9QJze8zA0C","Mark Ronson, Bruno Mars",spotify:album:1r5LKtrdiP9nb1ts1JeLCG,"Now That's What I Call Music, Vol. 69",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-03-05,https://i.scdn.co/image/ab67616d0000b2739f84d904cf0888f63e94bf65,1,1,268800,https://p.scdn.co/mp3-preview/3074e956e6794c0eadea660b9cef671db6b27234?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1401524,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,dance pop,pop",0.855,0.658,0.0,-5.767,1.0,0.0978,0.0106,0.0001,0.0305,0.944,114.994,4.0,,Universal Music (Pty) Ltd.,"C © 2015 Universal Music (Pty) Ltd South Africa, P ℗ 2015 Universal Music (Pty) Ltd South Africa",5053 +5054,spotify:track:4HlFJV71xXKIGcU3kRyttv,"Hey, Soul Sister",spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:1CwXS6MAz8Wo7K4TzW9iuR,"Save Me, San Francisco (Golden Gate Edition)",spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2010-12-01,https://i.scdn.co/image/ab67616d0000b2736ff8bc258e3ebc835ffe14ca,1,2,216773,https://p.scdn.co/mp3-preview/518c823cf0f8b862bed0fa45e34cc63db5ea58e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USSM10904113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.673,0.886,1.0,-4.44,0.0,0.0431,0.185,0.0,0.0826,0.795,97.012,4.0,,Columbia,"P (P) 2009, 2010 Sony Music Entertainment",5054 +5055,spotify:track:0WdJC0q7wanEYkjNctwSQc,Colors Of The Wind,spotify:artist:75L9s8KVrhCNtBUkZFnDFW,Vanessa Williams,spotify:album:2uwdRPFo4TcPJsCGcuT6mm,Greatest Hits,spotify:artist:75L9s8KVrhCNtBUkZFnDFW,Vanessa Williams,1998-01-01,https://i.scdn.co/image/ab67616d0000b273f11cfcc931ab6f532ad0d5d2,1,11,258706,,False,0,USUG10914185,spotify:user:bradnumber1,2020-03-05T09:20:39Z,"contemporary r&b,disco,quiet storm,urban contemporary",0.561,0.388,10.0,-12.535,1.0,0.0448,0.407,6.47e-06,0.156,0.153,83.997,4.0,,Mercury,"C © 1998 The Island Def Jam Music Group, P ℗ 1998 The Island Def Jam Music Group",5055 +5056,spotify:track:7fFCnttacpotkyhTOxKv14,Play,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:76QqoE30i9HVwxtxYMkWXT,J.Lo,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2001-01-23,https://i.scdn.co/image/ab67616d0000b273bfa0a1de59696c7a6fe15ebb,1,3,211493,https://p.scdn.co/mp3-preview/ef54e06568495eb9c2fdf965121be14ebf3e4c78?cid=9950ac751e34487dbbe027c4fd7f8e99,True,50,USSM10018514,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.775,0.729,1.0,-4.229,0.0,0.162,0.0303,0.00247,0.0361,0.895,104.719,4.0,,Epic,"P (P) 2001 Epic Records, a division of Sony Music Entertainment",5056 +5057,spotify:track:3PGAgwFWnFCisvjb3rLyuh,Piece Of My Heart,spotify:artist:4NgfOZCL9Ml67xzM0xzIvC,Janis Joplin,spotify:album:3Z0LdhZyBaeniH7m9VpSrR,Introducing the Dwights,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-07-17,https://i.scdn.co/image/ab67616d0000b2734094cb2d91b2a33de8730012,1,13,253804,https://p.scdn.co/mp3-preview/7f5967e0c7641caf84d13724f286c534db49e514?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM16800983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,psychedelic rock,rock",0.482,0.883,4.0,-3.348,1.0,0.0754,0.0891,0.00422,0.266,0.594,80.687,4.0,,Milan Records,"C © 2007 RB Films in conjunction with J. Albert & Son Pty Limited, P ℗ 2007 RB Films in conjunction with J. Albert & Son Pty Limited",5057 +5058,spotify:track:5Y2n6pW4Vqr4Mzkd9V4Uk8,Ray Of Solar,spotify:artist:1h6Cn3P4NGzXbaXidqURXs,Swedish House Mafia,spotify:album:3qoGM4yHcw91XeCA6bC7Pb,Ray Of Solar,spotify:artist:1h6Cn3P4NGzXbaXidqURXs,Swedish House Mafia,2023-08-04,https://i.scdn.co/image/ab67616d0000b2730fc292cdb91adc5fb804351e,1,1,241793,https://p.scdn.co/mp3-preview/b1b99bdb709844bf6db59492b28c712b0ab4c862?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USUG12306525,spotify:user:bradnumber1,2023-11-23T07:07:56Z,"edm,pop dance,progressive electro house",0.526,0.822,6.0,-5.137,0.0,0.0493,0.0324,6.18e-06,0.143,0.0382,134.991,4.0,,Swedish House Mafia,"C © 2023 SSA Recording, LLP, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2023 SSA Recording, LLP, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",5058 +5059,spotify:track:5tUEIByLWg1sYWajZ2x5zx,People Got to Be Free,spotify:artist:5g2n2H9ndqvejERtwZ1rHh,The Rascals,spotify:album:1enXeZO8gZgjo33N0Iy0gq,Freedom Suite,spotify:artist:5g2n2H9ndqvejERtwZ1rHh,The Rascals,1969,https://i.scdn.co/image/ab67616d0000b273ccf73c2b39353b087f61bcfa,1,9,181786,https://p.scdn.co/mp3-preview/5e9e3c15dffd5fda9db6bb268502e7af7c883029?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USAT21101226,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.685,0.696,10.0,-8.137,1.0,0.0364,0.466,0.0,0.195,0.96,126.019,4.0,,Rhino,"C © 1969 Atlantic Records, P ℗ 1969 Atlantic Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",5059 +5060,spotify:track:1zDER0tdPIScu7PLau1zB8,Victory,spotify:artist:3G4zK7ipHdaAZkG6EBwIoW,Bond,spotify:album:3hRXnnMnuM0ZLv11a3ZsQy,Instrumentales Para La Cena de Navidad,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2020-12-04,https://i.scdn.co/image/ab67616d0000b273d3001cfeedba14194c2b313e,1,4,205800,https://p.scdn.co/mp3-preview/05510c8f8b82dba43ec51c060e353950b47698c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBA0040113,spotify:user:bradnumber1,2023-01-31T06:08:25Z,pop violin,0.577,0.925,5.0,-4.868,0.0,0.0476,0.0336,0.929,0.538,0.831,110.02,4.0,,UME - Global Clearing House,"C © 2020 UMG Recordings, Inc., P ℗ 2020 UMG Recordings, Inc. FP",5060 +5061,spotify:track:45PF1Y3RcW5MK0jxWvhc4D,Don't Wait Up,spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,spotify:album:5xEtia4eFu6W3Ql7xgR3Dp,Don't Wait Up,spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,2021-07-16,https://i.scdn.co/image/ab67616d0000b273834b78005348ea6b59e99504,1,1,204043,https://p.scdn.co/mp3-preview/4b7a258d46cee937bfa476db2bb1d28406185c6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USQX92102647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"colombian pop,dance pop,latin pop,pop",0.916,0.552,3.0,-5.051,0.0,0.0546,0.344,0.000722,0.0566,0.349,118.981,4.0,,Sony Music Latin,"P (P) 2021 Ace Entertainment S.ar.l., under exclusive license to Sony Music Entertainment US Latin LLC",5061 +5062,spotify:track:7EXgO1bRnEArE58rtrgMWB,Street Fighting Man - 50th Anniversary Edition,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:6OHri5qNxwCdVSdyCslspd,Beggars Banquet (50th Anniversary Edition),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1968-12-06,https://i.scdn.co/image/ab67616d0000b27344934a06d21864415376f5f2,1,6,195146,https://p.scdn.co/mp3-preview/30228056b15894ad6aa954ef912914ad30c339cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USA171810015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.583,0.855,0.0,-7.213,1.0,0.0333,0.102,0.0173,0.262,0.696,128.181,4.0,,ABKCO Music & Records,"C © 2018 ABKCO Music & Records, Inc., P ℗ 2018 ABKCO Music & Records, Inc.",5062 +5063,spotify:track:5ChkMS8OtdzJeqyybCc9R5,Billie Jean,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:1C2h7mLntPSeVYciMRTF4a,Thriller 25 Super Deluxe Edition,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2008-02-08,https://i.scdn.co/image/ab67616d0000b2734121faee8df82c526cbab2be,1,6,293826,https://p.scdn.co/mp3-preview/0f6b8a3524ec410020457da4cdd7717f9addce2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USSM19902991,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.92,0.654,11.0,-3.051,0.0,0.0401,0.0236,0.0153,0.036,0.847,117.046,4.0,,Epic/Legacy,"P (P) 1982, 2001, 2008 MJJ Productions Inc.",5063 +5064,spotify:track:1O0BTayCdWgQYAYYUynSpe,I'm Free,"spotify:artist:5BEYGWk6aPdNXxBx9pwU8S, spotify:artist:0qPUDOVD0aYR2lmCilnscs","The Soup Dragons, Junior Reid",spotify:album:6WLRzKWVxm6qPEUBMVG5cH,20 Golden Greats,spotify:artist:5BEYGWk6aPdNXxBx9pwU8S,The Soup Dragons,2012,https://i.scdn.co/image/ab67616d0000b2736c7cafd01f0541a44b794dda,1,2,211693,https://p.scdn.co/mp3-preview/d6cf7f23bb56764996a84cc45664ecf38609cd75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71104914,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,c86,madchester,scottish indie,lovers rock,old school dancehall,reggae,reggae fusion,roots reggae",0.648,0.936,7.0,-5.968,1.0,0.0797,0.0981,2.24e-05,0.0712,0.856,103.272,4.0,,Universal Music Group,"C © 2012 Mercury Records Limited, P ℗ 2012 Mercury Records Limited",5064 +5065,spotify:track:0B3x40yF0GalVYyje2jMLG,Dynamite (feat. Allday),"spotify:artist:3cmUhYaAl8ZVz3coS1T3VC, spotify:artist:2Ltr0s15RyvsjqWzSmiSRs","Asta, Allday",spotify:album:7z5RjyCFHX0hiVJZKfDqQa,Dynamite (feat. Allday),spotify:artist:3cmUhYaAl8ZVz3coS1T3VC,Asta,2015-06-09,https://i.scdn.co/image/ab67616d0000b27356609c2744862553a9f3136e,1,1,237491,https://p.scdn.co/mp3-preview/6bfb3049dfa994813dace4012dbc7edcb53c655a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,TCACE1548887,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian hip hop,australian trap",0.79,0.758,5.0,-5.982,0.0,0.0557,0.0671,3.72e-05,0.0452,0.901,107.98,4.0,,WM Australia,"C © 2015 Parlophone Records, a division of Warner Music Australia Pty. Limited., P ℗ 2015 Parlophone Records, a division of Warner Music Australia Pty. Limited.",5065 +5066,spotify:track:6wZI4mdT8JwXgkGURnBQiq,Say,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:1BCSXIQn5NuqM19MjZuOQY,Say,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2006-10-13,https://i.scdn.co/image/ab67616d0000b2736fa5036b2308292143ae5d2a,1,1,230213,https://p.scdn.co/mp3-preview/b97f58187534f12e91a85399d74443c57cfff03d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM10704655,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.485,0.723,10.0,-6.565,1.0,0.0317,0.541,1.12e-06,0.075,0.541,167.845,4.0,,Columbia,P (P) 2007 Aware Records LLC,5066 +5067,spotify:track:6y0Etr2KJr0sdcEp7ajoUK,Cosmic Girl - Remastered 2013,spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,spotify:album:4yrrPNjd9RcqnuDnoEhlER,Travelling Without Moving (Remastered),spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,1996-09-09,https://i.scdn.co/image/ab67616d0000b2736407aa9a5e5215cf554ad5d1,1,2,244146,https://p.scdn.co/mp3-preview/99b77e06eadef8eb4c9892935438a36b4d4e5144?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBARL1201221,spotify:user:bradnumber1,2024-05-07T06:49:47Z,dance pop,0.633,0.921,11.0,-7.719,0.0,0.0495,0.0261,0.00102,0.309,0.925,119.865,4.0,,Sony Music CG,P This compilation (P) 2013 Sony Music Entertainment UK Limited,5067 +5068,spotify:track:672pbi6q4UuyJYIuThNsq3,Give You Love (feat. Jason Derulo),"spotify:artist:6rHWAH6F4mr2AViSxMV673, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Jessica Mauboy, Jason Derulo",spotify:album:19F2dOW0JWTAuK941khqsA,Give You Love (feat. Jason Derulo),"spotify:artist:6rHWAH6F4mr2AViSxMV673, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Jessica Mauboy, Jason Derulo",2023-08-11,https://i.scdn.co/image/ab67616d0000b273ec0ce28859bfce03fcbc6bf5,1,1,174125,https://p.scdn.co/mp3-preview/5fe6980823904e1cd67864ec404e0b62709e74db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,AUWA02300721,spotify:user:bradnumber1,2023-09-12T21:16:52Z,"australian indigenous music,australian pop,australian talent show,dance pop,pop",0.667,0.687,10.0,-3.541,1.0,0.0393,0.28,0.0,0.221,0.592,95.992,4.0,,WM Australia,"C © 2023 Jamally Ptd Ltd under exclusive licence to Warner Music Australia Pty Limited, P ℗ 2023 Jamally Ptd Ltd under exclusive licence to Warner Music Australia Pty Limited",5068 +5069,spotify:track:3Bh370SaZZ0BPHKKOqvAgy,Love Is Strange,spotify:artist:2PnyEnxPA8H95IhFEBu5u7,Mickey Baker,spotify:album:4c0VimEddLBQamrcfimtQG,Presenting Mickey Baker,spotify:artist:2PnyEnxPA8H95IhFEBu5u7,Mickey Baker,1957-12-10,https://i.scdn.co/image/ab67616d0000b2737a2ec8ee34934ac8353e3ba6,1,1,172640,https://p.scdn.co/mp3-preview/7a848c05965a0056e68becd1f5de52c481333e2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,DEZZ52172842,spotify:user:bradnumber1,2024-01-02T05:24:03Z,,0.59,0.64,0.0,-4.174,1.0,0.0287,0.336,7.77e-05,0.0545,0.824,121.84,4.0,,Universal Digital Enterprises,"C 2021 Universal Digital Enterprises, P 1957 RCA Victor Records",5069 +5070,spotify:track:2gkyOTZQJ7mWf32KK0zEXc,The Trouble with Us,"spotify:artist:6l5dAUNRhHnRSPPmRJSKQr, spotify:artist:2Q0MyH5YMI5HPQjFjlq5g3","Marcus Marr, Nick Murphy",spotify:album:2EeXc6ouAHTBnCnNZAbHXG,The Trouble with Us,"spotify:artist:6l5dAUNRhHnRSPPmRJSKQr, spotify:artist:2Q0MyH5YMI5HPQjFjlq5g3","Marcus Marr, Nick Murphy",2015-10-16,https://i.scdn.co/image/ab67616d0000b273f1e6efe54bc01c4798425f24,1,1,222066,https://p.scdn.co/mp3-preview/23b390660be216562e513b32f807dcbf9be1acfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJ81501360,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"uk alternative pop,australian electropop,downtempo,indietronica",0.828,0.735,2.0,-4.929,1.0,0.0636,0.323,0.000893,0.159,0.835,121.094,4.0,,Detail Co,"C 2015 Detail Co, P 2015 Detail Co",5070 +5071,spotify:track:3hfy2qoO5wHVpgHw28Pd03,Hello Hello I'm Back Again,spotify:artist:61zv3hX7l838ZyhaDyAx8S,Gary Glitter,spotify:album:2OJ3hrfbAj2sdswRqIj5CB,The Ultimate Gary Glitter,spotify:artist:61zv3hX7l838ZyhaDyAx8S,Gary Glitter,2011-11-13,https://i.scdn.co/image/ab67616d0000b2730a80d9a18e73dffcd033e9f6,1,5,200866,https://p.scdn.co/mp3-preview/3adef032476a72dcf499c96630aa5b276802d285?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBCQV7500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.453,0.887,9.0,-7.133,1.0,0.343,0.00331,0.00645,0.0899,0.83,152.832,4.0,,Snapper Music,"C (C) 2011 Snapper Music, P (P) 2011 Snapper Music",5071 +5072,spotify:track:4VgEM12OeaN3GyBV487Me7,Holiday,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:3id4t9IqRoB1f1smOERtrY,Greatest Hits: God's Favorite Band,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,2017-11-17,https://i.scdn.co/image/ab67616d0000b2737f213369d5265a60af5f7e82,1,13,232680,https://p.scdn.co/mp3-preview/cb902a4e57d4e17ed3ff8f416b2b4a1e3a4a128b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USRE10400984,spotify:user:bradnumber1,2021-11-11T04:03:19Z,"modern rock,permanent wave,punk,rock",0.552,0.89,8.0,-3.409,1.0,0.0342,0.000143,0.0,0.888,0.716,146.525,4.0,,Reprise,"C © 2017 Reprise Records, P ℗ 2017 Reprise Records",5072 +5073,spotify:track:1oGJKk5O0692N3n2mYu2wv,The Logical Song,spotify:artist:0HlxL5hisLf59ETEPM3cUA,Scooter,spotify:album:7dUMZyedn0jRXotWHq3S4g,20 Years Of Hardcore,spotify:artist:0HlxL5hisLf59ETEPM3cUA,Scooter,2013-10-18,https://i.scdn.co/image/ab67616d0000b273e8cc7f5a6d39e5b8d2d08491,1,16,234116,https://p.scdn.co/mp3-preview/045de0f6497156483f1655d64b467ab55df466fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEN061302570,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,german techno,hamburg electronic,happy hardcore",0.528,0.933,6.0,-6.275,0.0,0.0382,0.00112,0.0379,0.432,0.49,144.031,4.0,,Central Station Records,"C 2013 Central Station Records, P 2013 Central Station Records",5073 +5074,spotify:track:2tyW1uBUnYMKAFEfKDKi9B,Livin' On A Prayer,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:3gORsZp3xSbkN1ymRNonp1,Slippery When Wet,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1986-01-01,https://i.scdn.co/image/ab67616d0000b273a82359c9fefa599be35017b1,1,3,250306,https://p.scdn.co/mp3-preview/2a84c209d6bfe17da820bbc28d1e610a5d304a53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR38619998,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.559,0.687,0.0,-10.912,1.0,0.0311,0.0591,3.59e-05,0.0896,0.854,122.666,4.0,,Universal Music Group,"C © 1986 The Island Def Jam Music Group, P ℗ 1986 The Island Def Jam Music Group",5074 +5075,spotify:track:0dAFQEbrg5ge3Qm37Vocdv,Let Me Be There,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:4LZhAy9UsJ0EiqqeKyrlts,Hopelessly Devoted: The Hits,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2018-06-08,https://i.scdn.co/image/ab67616d0000b273ea73235699dcf414d1e1adae,1,3,176917,https://p.scdn.co/mp3-preview/db455fe037e3d664efca91eac07a457e50fa81ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,QM75X1500009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.552,0.672,2.0,-8.823,1.0,0.0376,0.26,1.04e-05,0.142,0.835,129.115,4.0,,Sony Music Entertainment,"P (P) 2018 ONJ Productions, Ltd. under exclusive licence to Sony Music Entertainment Australia Pty Ltd",5075 +5076,spotify:track:6iXQrhhgBisdfvS34EMTZ3,Mandy,spotify:artist:3alW3LYQS8K29z8C8NSLIX,Barry Manilow,spotify:album:0D6b0oLPjrrV4YA4bRSkks,Barry Manilow II,spotify:artist:3alW3LYQS8K29z8C8NSLIX,Barry Manilow,1974,https://i.scdn.co/image/ab67616d0000b2738d45df295851f8e7a8ebdf56,1,3,213333,https://p.scdn.co/mp3-preview/5ac5bfe4979f19066a5567d0c14053eb079ebf28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USAR17400164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock,yacht rock",0.308,0.464,10.0,-9.032,1.0,0.0279,0.418,2.49e-06,0.143,0.318,103.734,4.0,,Arista/Legacy,"P (P) 1974, 1996, 2006 Arista Records LLC",5076 +5077,spotify:track:2tQT99n74yfiWeRpj9rnyF,Two Faces Have I,spotify:artist:3UmfCgpdKzg2WTa6453o4E,Ol' 55,spotify:album:3ZvPtBot3EgVMwoHIltH8R,Time to Rock'n'Roll: The Anthology,spotify:artist:3UmfCgpdKzg2WTa6453o4E,Ol' 55,2016-08-26,https://i.scdn.co/image/ab67616d0000b273b7f9a4e5c1c2583aa2003488,1,43,179520,https://p.scdn.co/mp3-preview/4fdf686e1f83e1d6a2241b22a0816e1778f2c4c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUWA01600328,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.621,0.629,0.0,-11.264,1.0,0.0394,0.13,0.000282,0.0637,0.943,143.344,4.0,,WM Australia,"C © 2016 Warner Music Australia Pty Ltd, P ℗ 2016 Warner Music Australia Pty Ltd",5077 +5078,spotify:track:1yeUF5CgjLXd3yPPSgrrYn,Cry In Shame,spotify:artist:0Nlg1HCtb8dpeVpxQojDiq,Johnny Diesel & The Injectors,spotify:album:5dIHfc6O2EPWxdevZi6DkZ,Johnny Diesel And The Injectors,spotify:artist:0Nlg1HCtb8dpeVpxQojDiq,Johnny Diesel & The Injectors,1989-01-01,https://i.scdn.co/image/ab67616d0000b273277659fad2498fd48648d3b4,1,3,282640,https://p.scdn.co/mp3-preview/029559246607048489991a1a3a8b42b94b175cc3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM08900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.602,0.454,4.0,-14.507,1.0,0.0315,0.0461,5.85e-06,0.327,0.816,97.955,4.0,,Chrysalis,"C © 1989 Chrysalis Records Ltd, P ℗ 1989 EMI Recorded Music Australia Pty Ltd.",5078 +5079,spotify:track:4WrwO9Un3ji5wnNySDGHwQ,Islands In The Stream,"spotify:artist:4tw2Lmn9tTPUv7Gy7mVPI4, spotify:artist:32vWCbZh0xZ4o9gkz4PsEU","Kenny Rogers, Dolly Parton",spotify:album:0AtWFXOdX6hnMIXRfpYoyS,A Love Song Collection,spotify:artist:4tw2Lmn9tTPUv7Gy7mVPI4,Kenny Rogers,2008-01-01,https://i.scdn.co/image/ab67616d0000b273a69390d3fbb3dc68b5f24446,1,13,249880,https://p.scdn.co/mp3-preview/529de121886f65d6c7d288675591cb4d2199f74a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC18307961,spotify:user:bradnumber1,2021-08-08T09:27:38Z,"classic country pop,country,nashville sound,soft rock,classic country pop,country,country dawn",0.589,0.641,8.0,-5.533,1.0,0.0313,0.427,0.0,0.0558,0.795,204.003,4.0,,Capitol Nashville,"C © 2008 Capitol Records Nashville, P This Compilation ℗ 2008 Capitol Records Nashville",5079 +5080,spotify:track:6LCbPOnvjxSaRnNBKH1JII,There You Go,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:1FtowJguLCYT0Fe2xAsKMb,Can't Take Me Home,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2000,https://i.scdn.co/image/ab67616d0000b273b6d42aa9edfe910a7f85b2d5,1,4,202706,https://p.scdn.co/mp3-preview/96006b456658bd8fdac85e1212a2325e5e60e7d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF29900351,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.829,0.86,10.0,-6.381,0.0,0.0845,0.085,0.0,0.0412,0.669,107.91,4.0,,Arista/LaFace Records,"P (P) 1999, 2000 LaFace Records LLC",5080 +5081,spotify:track:7a3y3gJtRWXugcxgi8TPNW,"Luv Me, Luv Me","spotify:artist:5EvFsr3kj42KNv97ZEnqij, spotify:artist:4qwGe91Bz9K2T8jXTZ815W","Shaggy, Janet Jackson",spotify:album:1ObChmQf8QPcervdZ5BxC6,Mr Lover Lover - The Best Of Shaggy... (Part 1),spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,2002-01-01,https://i.scdn.co/image/ab67616d0000b2733c91d328c912c112858e8b94,1,4,356840,https://p.scdn.co/mp3-preview/8270e7cd101420bc1bf5a3f44e1025a0d30e70b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USMC19858181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,reggae fusion,dance pop,r&b,urban contemporary",0.869,0.776,1.0,-6.918,0.0,0.225,0.175,1.08e-06,0.165,0.771,96.905,4.0,,Virgin Records,"C © 2002 Virgin Records Limited, P This Compilation ℗ 2002 Virgin Records Limited",5081 +5082,spotify:track:4baNC6PNq37xOVRqoZcNY5,My Boy,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0bVlE6dhJEsCzCX2CWrOCw,Good Times,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1974-05-20,https://i.scdn.co/image/ab67616d0000b2733726a52f61b6e7c4a5973c3d,1,7,198853,https://p.scdn.co/mp3-preview/8790d60ff48298090cbcdb1acfaff66b91ddf4ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USRC17300209,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.387,0.534,11.0,-11.809,0.0,0.0331,0.586,0.00084,0.607,0.372,92.475,4.0,,Legacy Recordings,P (P) 1974 Sony Music Entertainment,5082 +5083,spotify:track:6ztstiyZL6FXzh4aG46ZPD,Boogie Wonderland,"spotify:artist:4QQgXkCYTt3BlENzhyNETg, spotify:artist:64CuUOOirKmdAYLQSfaOyr","Earth\, Wind & Fire, The Emotions",spotify:album:4RLVTxnuVN5ZWZqBFnaaQt,I Am,spotify:artist:4QQgXkCYTt3BlENzhyNETg,"Earth\, Wind & Fire",1979-06,https://i.scdn.co/image/ab67616d0000b2735ccd022a69a4da9551efd988,1,5,288293,https://p.scdn.co/mp3-preview/06c36139896754af7269ca5540bcd522e598518a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USSM19922860,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,jazz funk,motown,soul,chicago soul,classic soul,disco,funk,girl group,motown,post-disco,quiet storm,soul,southern soul",0.802,0.756,2.0,-10.791,0.0,0.0349,0.0843,0.00765,0.0521,0.963,131.715,4.0,,Columbia/Legacy,"P (P) 1979 Columbia Records, a division of Sony Music Entertainment",5083 +5084,spotify:track:06KyNuuMOX1ROXRhj787tj,We Don't Talk Anymore (feat. Selena Gomez),"spotify:artist:6VuMaDnrHyPL1p4EHjYLi7, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","Charlie Puth, Selena Gomez",spotify:album:5Nwsra93UQYJ6xxcjcE10x,Nine Track Mind,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2016-01-29,https://i.scdn.co/image/ab67616d0000b273633a2d775747bccfbcb17a45,1,5,217706,https://p.scdn.co/mp3-preview/0af9ac246a60236b73e34854631a6c3de5cca602?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USAT21502909,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop,pop,post-teen pop",0.728,0.563,1.0,-8.053,0.0,0.134,0.621,0.0,0.179,0.352,100.017,4.0,,Artist Partner,"C © 2016 Artist Partners for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P ℗ 2016 Artist Partners for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",5084 +5085,spotify:track:4s4r3ItsNHGJ1K8pHC2Dv1,The Nips Are Getting Bigger - Remastered,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:0rmLPTLbzfxlD0zHFsepUR,Essential As Anything,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,2009-05-01,https://i.scdn.co/image/ab67616d0000b273250f566fd18eca6fc5f75c72,1,1,200800,https://p.scdn.co/mp3-preview/26fc68896f19891d692015e02ed759819c678b0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFE00800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.822,0.863,7.0,-5.327,1.0,0.0811,0.0332,0.0229,0.142,0.961,150.116,4.0,,WM Australia,"C 2009 Warner Music Australia Pty Limited, P 2009 Warner Music Australia Pty Limited",5085 +5086,spotify:track:4yPl1mK1oluIrCwI4HInPR,Soul Deep,spotify:artist:3KGQvnOoqUHi3KxKQMZtXr,The Box Tops,spotify:album:02UT6tTcqWjnyPwFZrupKb,Dimensions,spotify:artist:3KGQvnOoqUHi3KxKQMZtXr,The Box Tops,1969,https://i.scdn.co/image/ab67616d0000b27372900daaf47584ec0de5dc25,1,1,147760,https://p.scdn.co/mp3-preview/092b7e22f77761fd11c76522c0449d62c90e58cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USAR16900103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,folk rock,merseybeat,psychedelic rock,rock-and-roll",0.749,0.53,9.0,-12.94,1.0,0.0326,0.195,3.53e-05,0.0748,0.966,121.395,4.0,,Arista/Legacy,P (P) 2000 Arista Records LLC,5086 +5087,spotify:track:2TIlqbIneP0ZY1O0EzYLlc,Someone You Loved,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,spotify:album:0NVQ9k3wKmuK6T02lLMl6y,Breach,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,2018-11-08,https://i.scdn.co/image/ab67616d0000b273b280aea74eef855675d7b93b,1,3,182160,https://p.scdn.co/mp3-preview/1180be3a0d0d27d51eebdec177622d47c37858dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,DEUM71807062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.501,0.405,1.0,-5.679,1.0,0.032,0.751,0.0,0.105,0.447,109.889,4.0,,Vertigo Berlin,"C © 2018 Universal Music GmbH, P ℗ 2018 Universal Music GmbH",5087 +5088,spotify:track:1DqdF42leyFIzqNDv9CjId,Dynamite,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,spotify:album:159jpldDCgsgH6KGgjy63c,Rokstarr,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,2010-01-01,https://i.scdn.co/image/ab67616d0000b273a9006ae892a2255a865c0f7a,1,1,203866,https://p.scdn.co/mp3-preview/128637d4f9dc972909321fd62a6e6b44506ccd61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBUM71003721,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.754,0.804,4.0,-3.177,1.0,0.0853,0.00332,0.0,0.0329,0.818,119.968,4.0,,Universal-Island Records Ltd.,"C © 2010 Universal Island Records Ltd. A Universal Music Company., P ℗ 2010 Universal Island Records Ltd. A Universal Music Company.",5088 +5089,spotify:track:3LQPTJEqOfljGBxmpgUnoC,American Woman - 2024 Remaster,spotify:artist:0cQuYRSzlItquYxsQKDvVc,The Guess Who,spotify:album:4Z3eBMaRmWCbTguaeiYUjV,American Woman,spotify:artist:0cQuYRSzlItquYxsQKDvVc,The Guess Who,1970-01-01,https://i.scdn.co/image/ab67616d0000b2731bc7a864d1cf403ec8e57308,1,1,307493,https://p.scdn.co/mp3-preview/9cf2448c360dc6215a7fe0aa0e6eb22e96f1eee9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USRC10001083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic canadian rock,classic rock,country rock,folk rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.55,0.726,2.0,-8.51,1.0,0.0516,0.146,0.00608,0.428,0.37,92.697,4.0,,Buddha Records,P Originally released 1970. All rights reserved by Sony Music Entertainment,5089 +5090,spotify:track:1sxUaLi0G2vB7dl4ogtCxH,Never Let You Go - 2008 Remaster,spotify:artist:6TcnmlCSxihzWOQJ8k0rNS,Third Eye Blind,spotify:album:7z6LqzGLGd6tnWvsH9iojB,Blue,spotify:artist:6TcnmlCSxihzWOQJ8k0rNS,Third Eye Blind,1999,https://i.scdn.co/image/ab67616d0000b273651ac92d939a31217c54a1cb,1,4,237240,https://p.scdn.co/mp3-preview/3ddbcbb2cf96406c1d0caeb042e444c0770e608e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USEE10801710,spotify:user:bradnumber1,2021-11-20T11:13:23Z,"alternative metal,alternative rock,pop rock,post-grunge",0.728,0.94,4.0,-5.034,1.0,0.0368,0.0814,0.000162,0.109,0.967,113.76,4.0,,Elektra Records,"C © 1999 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1999 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States.",5090 +5091,spotify:track:4sj8qFcEDnRPNv3tBbUVUf,Me and Mrs. Jones,spotify:artist:187xgSpsFH8mMbAcoCW0zE,Billy Paul,spotify:album:3x36ONTtlbPuXrAjI3aNI6,360 Degrees Of Billy Paul,spotify:artist:187xgSpsFH8mMbAcoCW0zE,Billy Paul,1972,https://i.scdn.co/image/ab67616d0000b273fba4ccdae3e1de7b926f70db,1,4,285760,https://p.scdn.co/mp3-preview/ac43e178bafb5e508d24468a11c8400c71c0be2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM17200413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,philly soul,soul",0.303,0.555,0.0,-9.259,0.0,0.0482,0.388,1.16e-06,0.468,0.447,67.322,4.0,,Epic/Legacy,"P (P) 1972, 1974 Sony Music Entertainment Inc.",5091 +5092,spotify:track:59dGGhAN6dwccCk3STVMR5,Evie Pt. 1 (Let Your Hair Hang Down),spotify:artist:4tyua0wKtVDZVBVlRwyBRl,Stevie Wright,spotify:album:05o4THCHuyJHhKYyYeLhen,Hard Road,spotify:artist:4tyua0wKtVDZVBVlRwyBRl,Stevie Wright,1974,https://i.scdn.co/image/ab67616d0000b2735363f66faed20ad3654350b8,1,7,237986,https://p.scdn.co/mp3-preview/90bf3020d62fcb7ce73232d038e96600df837dae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07400019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.461,0.948,9.0,-4.615,1.0,0.129,0.0317,0.000269,0.508,0.751,90.364,4.0,,Albert Productions,P (P) 1974 J. Albert & Son Pty Ltd,5092 +5093,spotify:track:1GqlvSEtMx5xbGptxOTTyk,Peace of Mind,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,spotify:album:2QLp07RO6anZHmtcKTEvSC,Boston,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,1976,https://i.scdn.co/image/ab67616d0000b2738c1fadcc997a65384f34d694,1,2,303586,https://p.scdn.co/mp3-preview/3968a8001698e00fed591f0112f6603a56f2cef1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USSM17600644,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.419,0.677,4.0,-6.183,1.0,0.0343,0.00101,9.99e-05,0.211,0.684,127.678,4.0,,Epic/Legacy,"P (P) 1976, 2006 Epic Records, a division of Sony Music Entertainment",5093 +5094,spotify:track:22c2pt75xtnDddA5Zlm0yy,All Star,spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,spotify:album:44zMHQz2GkFUEifL4DuDNY,All Star Smash Hits,spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,2005-01-01,https://i.scdn.co/image/ab67616d0000b2730ce3b69f5e3f67cebe3ed3c1,1,1,200560,https://p.scdn.co/mp3-preview/2e63cdb1c3dd5808abce774674f5c440c614f53a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19902220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.73,0.862,11.0,-5.876,1.0,0.0313,0.0398,0.0,0.0818,0.77,104.018,4.0,,Universal Music Group,"C © 2005 Interscope Records, P ℗ 2005 Interscope Records",5094 +5095,spotify:track:39dccfOy2CAYQ8laaW0oIc,Love in California,spotify:artist:4lpRP3ylFagpUiPMqV0T2t,Rooftop Heroes,spotify:album:5vGPxRrQAfBvzcnuXWut5O,Love In California,spotify:artist:4lpRP3ylFagpUiPMqV0T2t,Rooftop Heroes,2021-06-25,https://i.scdn.co/image/ab67616d0000b273861fbb1d62bd5acf42cdf867,1,1,195720,https://p.scdn.co/mp3-preview/1b65f1d53cd543dfd19ce5664be94593c753e386?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,QM6P42129532,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.411,0.89,7.0,-3.442,1.0,0.138,0.0059,0.0,0.627,0.919,199.385,4.0,,The Heroes Network Agency,"C (C) 2021 The Heroes Network Agency, P (P) 2021 The Heroes Network Agency",5095 +5096,spotify:track:4bHsxqR3GMrXTxEPLuK5ue,Don't Stop Believin',spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,spotify:album:43wpzak9OmQfrjyksuGwp0,Escape (Bonus Track Version),spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,1981,https://i.scdn.co/image/ab67616d0000b273c5653f9038e42efad2f8a266,1,1,250986,https://p.scdn.co/mp3-preview/50923c629a4d9ab470b0ca6a10495ecb945c1500?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USSM18100116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,rock,soft rock",0.5,0.748,4.0,-9.072,1.0,0.0363,0.127,0.0,0.447,0.514,118.852,4.0,,Columbia,P (P) 1981 Sony Music Entertainment,5096 +5097,spotify:track:6eUncuJutsFi9BGO1JaBHh,If I'm Lucky,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:4MyNxudSugDwmImYJgQeXm,If I'm Lucky,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2017-08-31,https://i.scdn.co/image/ab67616d0000b2733d4b1b9e8a5863294562d76b,1,1,212013,https://p.scdn.co/mp3-preview/0d643b209ad61803d7d4492a5d30dbd1d9a65be1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB11701514,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.897,0.634,4.0,-6.264,0.0,0.161,0.00413,0.0,0.0686,0.506,112.048,4.0,,Beluga Heights/Warner Records,"C © 2017 Warner Records Inc., P ℗ 2017 Warner Records Inc.",5097 +5098,spotify:track:0sf12qNH5qcw8qpgymFOqD,Blinding Lights,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:2ZfHkwHuoAZrlz7RMj0PDz,Blinding Lights,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2019-11-29,https://i.scdn.co/image/ab67616d0000b273c464fabb4e51b72d657f779a,1,1,201573,https://p.scdn.co/mp3-preview/51c08d92815cce4ac2de94a7335a430b81234624?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USUG11904206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.512,0.796,1.0,-4.075,1.0,0.0645,0.00147,0.000209,0.0938,0.344,171.014,4.0,,Republic Records,"C © 2019 The Weeknd XO, Inc., manufactured and marketed by Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 The Weeknd XO, Inc., manufactured and marketed by Republic Records, a division of UMG Recordings, Inc.",5098 +5099,spotify:track:57yeWyaoeTt26p0dlEZukQ,Spectrum (Say My Name) - Calvin Harris Remix,"spotify:artist:1moxjboGR7GNWYIMWsRjgG, spotify:artist:7CajNmpbOovFoOoasH2HaY","Florence + The Machine, Calvin Harris",spotify:album:3JODIzr9NLL7CMojdUR70g,Ceremonials,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2011,https://i.scdn.co/image/ab67616d0000b273ad73995480ca0ca7c7d1e882,1,13,218190,https://p.scdn.co/mp3-preview/dacbcd98e02fc9dc3767990027cdcc705a2d045d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBUM71203723,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop,dance pop,edm,electro house,house,pop,progressive house,uk dance",0.579,0.946,11.0,-3.85,0.0,0.0482,0.00225,0.00412,0.0966,0.588,126.088,4.0,,Universal-Island Records Ltd.,"C © 2012 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2012 Universal Island Records, a division of Universal Music Operations Limited",5099 +5100,spotify:track:2vDT1uU6hZgdp3PbWGr0Xy,7 Years,spotify:artist:25u4wHJWxCA9vO0CzxAbK7,Lukas Graham,spotify:album:2EiK8K5y2z2RFVP6ZBnnOO,7 Years,spotify:artist:25u4wHJWxCA9vO0CzxAbK7,Lukas Graham,2015-10-22,https://i.scdn.co/image/ab67616d0000b27315c9243019c64cf7ef51ad1c,1,1,237300,https://p.scdn.co/mp3-preview/9fa9d1f4ac0d0c32c1cd0e6ab8d64fefef55e81d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB11506516,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"danish pop,scandipop",0.765,0.473,10.0,-5.829,1.0,0.0514,0.287,0.0,0.391,0.34,119.992,4.0,,Warner Bros.,"C 2015 Warner Bros. Records Inc., P 2015 Warner Bros. Records Inc.",5100 +5101,spotify:track:3vZO25GdYuqFrR1kzZADnp,Ready or Not,"spotify:artist:2WKdxPFRD7IqZvlIAvhMgY, spotify:artist:2Mu5NfyYm8n5iTomuKAEHl, spotify:artist:7aBzpmFXB4WWpPl2F7RjBe, spotify:artist:0kJMPTXq7h3ztpDukSx5iD","Fugees, Ms. Lauryn Hill, Wyclef Jean, Pras",spotify:album:18XFe4CPBgVezXkxZP6rTb,The Score (Expanded Edition),"spotify:artist:2WKdxPFRD7IqZvlIAvhMgY, spotify:artist:2Mu5NfyYm8n5iTomuKAEHl, spotify:artist:7aBzpmFXB4WWpPl2F7RjBe","Fugees, Ms. Lauryn Hill, Wyclef Jean",1996-02-13,https://i.scdn.co/image/ab67616d0000b2735b7865be7f7fcc05faec6137,1,3,226933,https://p.scdn.co/mp3-preview/d12fb072f6c4bbb371da8a199786bd5034706cae?cid=9950ac751e34487dbbe027c4fd7f8e99,True,71,USSM19600051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hip hop,neo soul,new jersey rap,alternative r&b,conscious hip hop,hip hop,neo soul,new jersey rap,r&b,rap kreyol,new jersey rap",0.544,0.428,10.0,-13.392,0.0,0.514,0.245,0.0,0.0899,0.524,89.129,4.0,,Columbia,"P (P) 1996 Columbia Records, a division of Sony Music Entertainment",5101 +5102,spotify:track:0DnnyQXxtuRzVABEzjW9WP,Stingray,spotify:artist:7n2bs5q3whSUnindQssIGC,The Shadows,spotify:album:4XeSxu0v0YVAR0BojopTwD,Shadows Are Go!,spotify:artist:7n2bs5q3whSUnindQssIGC,The Shadows,1996,https://i.scdn.co/image/ab67616d0000b2730ad3b2f55143d448884077a6,1,21,149106,https://p.scdn.co/mp3-preview/ae9b5eb8a87b70663a8932a200f339f2dbed9e51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAYE6500221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.563,0.801,9.0,-6.273,1.0,0.0322,0.672,0.0453,0.134,0.813,151.954,4.0,,Parlophone UK,"C © 1996 Parlophone Records Ltd, P ℗ 1996 Compilation (P) 1996 Parlophone Records Ltd. All rights reserved. Unauthorized reproduction is a violation of applicable laws.",5102 +5103,spotify:track:7LI1qAsZiRaIpSA7FaWLXa,Fire and the Flood,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:4ioayqjumXhYgfBenmymIH,Dream Your Life Away (Deluxe Edition),spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2015-09-04,https://i.scdn.co/image/ab67616d0000b2730280b311a8531a25b36476d9,1,14,249382,https://p.scdn.co/mp3-preview/52f0771260f51213e649e7d9b14c12d21f077e07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21502316,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.6,0.79,5.0,-5.466,1.0,0.0365,0.026,0.0,0.0959,0.345,115.063,4.0,,Liberation Records,"C 2015 Vance Joy under exclusive license to Liberation Music, P 2015 Vance Joy under exclusive license to Liberation Music",5103 +5104,spotify:track:70eFcWOvlMObDhURTqT4Fv,Beautiful People (feat. Khalid),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Ed Sheeran, Khalid",spotify:album:3oIFxDIo2fwuk4lwCmFZCx,No.6 Collaborations Project,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2019-07-12,https://i.scdn.co/image/ab67616d0000b27373304ce0653c7758dd94b259,1,1,197866,https://p.scdn.co/mp3-preview/2b06c65cce16bd4ef3280275951b612cbc423411?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBAHS1900885,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop,pop,pop r&b",0.64,0.647,5.0,-8.114,0.0,0.186,0.124,0.0,0.0801,0.546,92.979,4.0,,Atlantic Records UK,"C © 2019 Warner Music UK Limited., P ℗ 2019 An Asylum Records UK release, a division of Atlantic Records UK; ℗ 2019 Warner Music UK Limited except track 6 ℗ 2019 Warner Music UK / Def Jam Recordings, a division of UMG Recordings, Inc",5104 +5105,spotify:track:7fGwROu7fgPGy0Ru8Q5nBJ,One,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7k7aHoW1MGWWQR0KXvswkx,U218 Singles (Deluxe Version),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a589a051c46a5ff41125e9d6,1,12,275400,https://p.scdn.co/mp3-preview/e53bba655120cb3e8bc77f2afa387b595ef38a59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN9190003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.556,0.616,0.0,-5.76,1.0,0.0275,0.242,0.00137,0.148,0.286,90.759,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",5105 +5106,spotify:track:7BqBn9nzAq8spo5e7cZ0dJ,Just the Way You Are,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:1uyf3l2d4XYwiEqAb7t7fX,Doo-Wops & Hooligans,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2010-05-11,https://i.scdn.co/image/ab67616d0000b273f6b55ca93bd33211227b502b,1,2,220734,https://p.scdn.co/mp3-preview/6d1a901b10c7dc609d4c8628006b04bc6e672be8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USAT21001269,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.635,0.841,5.0,-5.379,1.0,0.0422,0.0134,0.0,0.0622,0.424,109.021,4.0,,Atlantic Records,"C © 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States., P ℗ 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States.",5106 +5107,spotify:track:7LF0YY1gON8rBECsyEs0Wb,Roll To Me,spotify:artist:2Q4FnG5T6NTUcAAZwuMV5K,Del Amitri,spotify:album:0eMkSSaQQ9cWk4l07WPRPy,Twisted,spotify:artist:2Q4FnG5T6NTUcAAZwuMV5K,Del Amitri,1995-01-01,https://i.scdn.co/image/ab67616d0000b27301eeafbe77180ad32cc1b250,1,7,132306,https://p.scdn.co/mp3-preview/6186b1f6ff17181d572f86f076d73cf08c2ba3bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAAM9500007,spotify:user:bradnumber1,2021-11-11T04:16:30Z,"britpop,melancholia,new wave pop,scottish rock",0.567,0.821,6.0,-5.894,1.0,0.0371,0.418,0.0,0.108,0.895,150.106,4.0,,EMI,"C © 1995 A&M Records Limited, P ℗ 1995 A&M Records Limited",5107 +5108,spotify:track:6urCAbunOQI4bLhmGpX7iS,Don't Speak,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,spotify:album:3VekjWskUut57hx6W9wqL8,Tragic Kingdom,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,1995-10-10,https://i.scdn.co/image/ab67616d0000b2736ebd5e789646a833b8f7d4ba,1,10,263560,https://p.scdn.co/mp3-preview/895422f5af05f2213308a75a9bd24aebbda22b60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USIR19500279,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dance rock,permanent wave,pop rock,rock",0.52,0.709,5.0,-7.125,0.0,0.0352,0.247,1.78e-05,0.18,0.536,76.039,4.0,,Trauma,"C © 1995 Interscope Records, P ℗ 1995 UMG Recordings, Inc.",5108 +5109,spotify:track:3asFGFY3uLjMDmML1p0tYm,Savior,spotify:artist:6Wr3hh341P84m3EI8qdn9O,Rise Against,spotify:album:3smHEWBKoqDUFuJrV8BCg1,Appeal To Reason,spotify:artist:6Wr3hh341P84m3EI8qdn9O,Rise Against,2008-01-01,https://i.scdn.co/image/ab67616d0000b273128020330aaa0b1513283caf,1,11,242280,https://p.scdn.co/mp3-preview/b491175b1886f246b0561f82b1c8334d640879ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USUM70832584,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,chicago hardcore,chicago punk,hardcore punk,modern rock,pop punk,post-grunge,punk",0.339,0.931,5.0,-3.425,0.0,0.062,0.0015,0.000142,0.425,0.467,112.545,4.0,,Geffen,"C © 2008 DGC Records, P ℗ 2008 DGC Records",5109 +5110,spotify:track:4oivs3WWV3XwAWESvPk5eG,We Close Our Eyes,spotify:artist:7bKupnlF7XOfR1En3K8oAL,Go West,spotify:album:648bpQGlee7iXM8BCOqYaR,Go West,spotify:artist:7bKupnlF7XOfR1En3K8oAL,Go West,1985-01-01,https://i.scdn.co/image/ab67616d0000b273f1cd3ee4ac4661c629fe642a,1,1,221506,https://p.scdn.co/mp3-preview/5dc49639106b5710f95295373e3cf6a34cbd38fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK8500016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.696,0.854,11.0,-6.719,1.0,0.0326,0.0217,0.0,0.0393,0.912,130.6,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1985 Chrysalis Records Limited",5110 +5111,spotify:track:4qbLOU1T7xgTH87eUSkvJ1,(Marie's The Name) His Latest Flame,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0QVoYzGd1p8Z3ohEaM0lsc,Elvis 30 #1 Hits,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2002-09-24,https://i.scdn.co/image/ab67616d0000b273a0b8a1ce10fddbba6879262e,1,19,127093,https://p.scdn.co/mp3-preview/010ba6edcfdede2d75bc976b1611d9a05796cc00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USRC10200342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.661,0.917,4.0,-6.329,0.0,0.0375,0.565,0.00202,0.134,0.893,105.289,4.0,,RCA Records Label,P This Compilation (P) 2002 Sony Music Entertainment,5111 +5112,spotify:track:2gn0n3dnSPeMVycXBIL4yO,Flavours (feat. Juai),"spotify:artist:3ICo3DF8pXFJEdzph2b6gh, spotify:artist:55xSTCgtKgSy0nUJxcJg1e","Charlie Sloth, Juai",spotify:album:0Kb1VL0NOY2X8WHemJSITc,Flavours (feat. Juai),"spotify:artist:3ICo3DF8pXFJEdzph2b6gh, spotify:artist:55xSTCgtKgSy0nUJxcJg1e","Charlie Sloth, Juai",2021-07-08,https://i.scdn.co/image/ab67616d0000b27352b785d18ebddc8a88eeca9c,1,1,150000,https://p.scdn.co/mp3-preview/500d2f9896604cfbcdd4377f1ac7ecae0393edc9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,19,UK93X2100315,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.592,0.611,9.0,-8.381,1.0,0.526,0.102,0.0,0.135,0.537,139.566,4.0,,Grimey Limey,"C © 2021 Grimey Limey Records, P ℗ 2021 Grimey Limey Records",5112 +5113,spotify:track:3oAWTk92mZBxKBOKf8mR5v,Summertime Blues,spotify:artist:1p0t3JtUTayV2wb1RGN9mO,Eddie Cochran,spotify:album:2Hr6il1ZLPbeLnKUzhWkF6,12 Of His Biggest Hits,spotify:artist:1p0t3JtUTayV2wb1RGN9mO,Eddie Cochran,1960-05-01,https://i.scdn.co/image/ab67616d0000b27324c50e31cea9cf898d05448c,1,7,119360,https://p.scdn.co/mp3-preview/a8e11ef4a01644ac5652d8612d812a82c4954140?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USEM38800220,spotify:user:bradnumber1,2022-09-25T11:53:36Z,"rock-and-roll,rockabilly",0.714,0.886,11.0,-8.629,0.0,0.0554,0.116,0.184,0.18,0.954,156.351,4.0,,Parlophone Catalogue,"C © 1960 Capitol Records, LLC, P This Compilation ℗ 1960 Capitol Records, LLC",5113 +5114,spotify:track:1zaaaGPDU60KYY60M4JVl2,It’s My Birthday,"spotify:artist:085pc2PYOi8bGKj0PNjekA, spotify:artist:0gizY5GNZ4QV1vGB1bg0Gi","will.i.am, Cody Wise",spotify:album:4Gwwrx84ydaG2T5YfkXDu2,It’s My Birthday,spotify:artist:085pc2PYOi8bGKj0PNjekA,will.i.am,2014-01-01,https://i.scdn.co/image/ab67616d0000b27329d1d791a3f35872577e1a41,1,1,252613,https://p.scdn.co/mp3-preview/9ea2c911c23190693b94ccd2743883f09d38c462?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71406587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.76,0.718,5.0,-4.443,0.0,0.0476,0.0817,0.0,0.0903,0.419,100.01,4.0,,Universal Music Group,"C © 2014 Interscope Records, P ℗ 2014 Interscope Records",5114 +5115,spotify:track:3lgekJA82cb8nsnQ0juPPP,Stranger On The Shore,spotify:artist:5bdgb81IJMXag724quaNSA,Acker Bilk,spotify:album:5ZrJ8KxUjKNgpznvd097Pq,Reflections,spotify:artist:5bdgb81IJMXag724quaNSA,Acker Bilk,2000,https://i.scdn.co/image/ab67616d0000b273eb3c2f06f927c52023c42547,1,1,175640,https://p.scdn.co/mp3-preview/32663f1ac1643d53e0736c37a5afce3f31049536?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0201599,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"easy listening,jazz clarinet",0.334,0.411,10.0,-7.996,1.0,0.0338,0.913,0.606,0.121,0.256,104.814,5.0,,Spectrum,"C © 1993 Karussell Ltd., P ℗ 1993 Karussell Ltd.",5115 +5116,spotify:track:7Fw5i56my24ZBnGS7hFX2n,Pompeii,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,spotify:album:5LdqbRBfjz6qfhC4Q77rDe,Pompeii,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,2013-01-01,https://i.scdn.co/image/ab67616d0000b273a3765c103221266e231b4a47,1,1,214147,https://p.scdn.co/mp3-preview/37ee26a5e72878264f86f4532024e6f921f14d83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAAA1200795,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop",0.681,0.71,9.0,-6.488,1.0,0.0411,0.0749,0.0,0.266,0.591,127.442,4.0,,Virgin Records,"C © 2013 Virgin Records Limited, P ℗ 2013 Virgin Records Limited",5116 +5117,spotify:track:44zMDRTlT2foBBiumPmdWR,Silvery Moon,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:2jmqR9W54z9VIZN4qAQv1Y,Anthology,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,2008-10-11,https://i.scdn.co/image/ab67616d0000b273d3f56b11a56d0b0f192da1a7,1,10,210480,https://p.scdn.co/mp3-preview/a1bc114ff9671055b4575ff03bc0dafb10808723?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00621320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.445,0.59,9.0,-7.04,1.0,0.0298,0.488,0.000508,0.0963,0.645,114.761,4.0,,Bloodlines,"C 2008 Bloodlines, P 2008 Bloodlines",5117 +5118,spotify:track:6cFZ4PLC19taNlpl9pbGMf,Somebody To Love - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:0lmQ6rAGcChLjGXM52Qu3i,A Day At The Races (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1976-12-10,https://i.scdn.co/image/ab67616d0000b27395313a5eee00d9bdf37883e2,1,6,296493,https://p.scdn.co/mp3-preview/5932351c4617463dc2f3dc4972df1c6818f38112?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBUM71029613,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.497,0.693,8.0,-7.024,1.0,0.0565,0.19,0.0,0.215,0.358,111.539,3.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",5118 +5119,spotify:track:5BmagRD7Thki6O1zZwbxBy,The Boys of Summer,spotify:artist:3LC8PXXgk7YtAIobtjSdNi,The Ataris,spotify:album:6prPsuR3shSCqcxPB84dkg,"So Long, Astoria",spotify:artist:3LC8PXXgk7YtAIobtjSdNi,The Ataris,2003-03-04,https://i.scdn.co/image/ab67616d0000b2730182816d9fe797a551832bf2,1,10,258000,https://p.scdn.co/mp3-preview/d2c1625d1512f0fb0e8d1e6cbdaaafeb404820d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM10214990,spotify:user:bradnumber1,2023-08-08T22:18:33Z,"emo,pop punk,pop rock,skate punk",0.251,0.954,6.0,-2.879,1.0,0.0691,0.000674,0.000132,0.0975,0.264,191.059,4.0,,Columbia,"P (P) 2001, 2002, 2003 Sony Music Entertainment Inc.",5119 +5120,spotify:track:5yFSF6qQA1rcLsQRnBsZgb,All Falls Down (feat. Juliander),"spotify:artist:7vk5e3vY1uw9plTHJAMwjN, spotify:artist:55fhWPvDiMpLnE4ZzNXZyW, spotify:artist:5fyDppLDl1juIu1BcUT5zh, spotify:artist:4gvkdged3Xw3ImXFm3jiay","Alan Walker, Noah Cyrus, Digital Farm Animals, Juliander",spotify:album:4hlAdqONoJhkjf8u9XMjQr,All Falls Down (feat. Juliander),"spotify:artist:7vk5e3vY1uw9plTHJAMwjN, spotify:artist:55fhWPvDiMpLnE4ZzNXZyW, spotify:artist:5fyDppLDl1juIu1BcUT5zh","Alan Walker, Noah Cyrus, Digital Farm Animals",2017-10-27,https://i.scdn.co/image/ab67616d0000b273206fdebc66bd04d9913f035d,1,1,199111,https://p.scdn.co/mp3-preview/66574523adc388fbc6394b2c374a87e19a373429?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,NOG841715010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electro house,alt z,pop,uk dance,swedish pop",0.658,0.678,1.0,-4.407,1.0,0.058,0.303,0.0,0.361,0.662,97.976,4.0,,Kreatell Music,P (P) 2017 Kreatell Music under exclusive license to Sony Music Entertainment Sweden AB,5120 +5121,spotify:track:3dFAXD9FtN2gmoZToyoJl2,Turtle Power,spotify:artist:3RhQ4wZ4x4RC2oY2QeLRad,Partners In Kryme,spotify:album:3wfnvFWWYA8kPNXOvjkIlo,Lost Hits Of The 90's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-01-01,https://i.scdn.co/image/ab67616d0000b27378e4d01ea44778d115ca4bd3,1,10,260560,https://p.scdn.co/mp3-preview/14132c7f6570ce811d91ed0661f8913825744890?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USSB29000010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.622,0.627,9.0,-14.456,1.0,0.0441,0.119,0.0,0.185,0.55,105.937,4.0,,Capitol Records,"C © 2011 Capitol Records, LLC, P This Compilation ℗ 2011 Capitol Records, LLC",5121 +5122,spotify:track:7gEpTMp9MQc1uJwivtL37R,Do Wah Diddy Diddy,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,spotify:album:24uIWywoZqArplgomqtvfW,Groovin' with Manfred Mann,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,1964,https://i.scdn.co/image/ab67616d0000b273a542402446272ba066cefeae,1,2,143400,https://p.scdn.co/mp3-preview/4299850bf0a1b77c14df3476af0d5efe89a8a991?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE6400100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,classic rock,singer-songwriter",0.661,0.557,4.0,-8.244,1.0,0.049,0.262,0.0,0.0557,0.957,125.445,4.0,,East Central One,"C 1964 East Central One Limited, P 1964 East Central One Limited",5122 +5123,spotify:track:77loZpT5Y5PRP1S451P9Yz,The Reason,spotify:artist:2MqhkhX4npxDZ62ObR5ELO,Hoobastank,spotify:album:2zE1YKY7Okj10Tjl09jjth,The Reason (15th Anniversary Deluxe),spotify:artist:2MqhkhX4npxDZ62ObR5ELO,Hoobastank,2003-12-09,https://i.scdn.co/image/ab67616d0000b27376cc6eedca8eb381afcd1e46,1,8,232800,https://p.scdn.co/mp3-preview/31e2a53851fac8e61f947fd27da327c0493721dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USIR20300704,spotify:user:bradnumber1,2021-11-11T04:12:27Z,"alternative metal,funk metal,nu metal,pop rock,post-grunge",0.474,0.671,4.0,-4.649,1.0,0.0289,0.0129,0.0,0.159,0.0682,82.94,4.0,,Island Def Jam,"C © 2019 UMG Recordings, Inc., P ℗ 2019 UMG Recordings, Inc.",5123 +5124,spotify:track:2E1X9CKQruwLgB9m8SY7Lm,The Middle - Acoustic Version,spotify:artist:3Ayl7mCk0nScecqOzvNp6s,Jimmy Eat World,spotify:album:4ZqTPNXU0MBXs2iCcwjOPe,Bleed American (Deluxe Edition),spotify:artist:3Ayl7mCk0nScecqOzvNp6s,Jimmy Eat World,2001,https://i.scdn.co/image/ab67616d0000b273c42de59f6893457d392f4d88,2,7,190640,https://p.scdn.co/mp3-preview/a57b6129aa0fd8369d980817375848e242de0209?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10110510,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,emo,modern power pop,modern rock,neon pop punk,pop punk,pop rock,post-grunge,punk,rock",0.787,0.316,2.0,-7.556,1.0,0.0388,0.365,0.0,0.0845,0.738,147.521,4.0,,Universal Music Group,"C © 2008 Geffen Records, P ℗ 2008 Geffen Records",5124 +5125,spotify:track:1ynmMEK1fkyiZ6Z6F3ThEt,Centerfold,spotify:artist:69Mj3u4FTUrpyeGNSIaU6F,The J. Geils Band,spotify:album:48joW5905AMbTFLvy8ZWch,Freeze Frame,spotify:artist:69Mj3u4FTUrpyeGNSIaU6F,The J. Geils Band,1981,https://i.scdn.co/image/ab67616d0000b27338b2429ef948e6ca8d3ab599,1,3,216533,https://p.scdn.co/mp3-preview/1ebd889311c2ec02bf018627615966e859de3e13?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USCA28100075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.653,0.677,0.0,-12.244,1.0,0.0396,0.249,0.0,0.403,0.888,114.374,4.0,,EMI/EMI Records (USA),"C © 2006 EMI Catalog, P ℗ 2006 EMI Catalog",5125 +5126,spotify:track:0B8B8cVRFIG1yznoQe7c9s,Setting Fires,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:6ioOEWNNGK40H8xrGj6XPW","The Chainsmokers, XYLØ",spotify:album:5BJeN4SVEKe204y2SiszOe,Setting Fires,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:6ioOEWNNGK40H8xrGj6XPW","The Chainsmokers, XYLØ",2016-11-04,https://i.scdn.co/image/ab67616d0000b2739e076dc24d45c52fbf7232bb,1,1,247426,https://p.scdn.co/mp3-preview/f2a467c1a0aeda766c50bcd00d1ef00dd51b39d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQX91602152,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,alt z,indie poptimism,la pop",0.626,0.717,8.0,-5.751,0.0,0.0375,0.017,0.0,0.261,0.56,105.039,4.0,,Disruptor Records/Columbia,P (P) 2016 Disruptor Records/Columbia Records,5126 +5127,spotify:track:4AEObGzm9VUNJ3IDgD9TH3,Doing It (feat. Rita Ora),"spotify:artist:25uiPmTg16RbhZWAqwLBy5, spotify:artist:5CCwRZC6euC8Odo6y9X8jr","Charli xcx, Rita Ora",spotify:album:2fGpw56D35My0c82eNfKJF,SUCKER,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,2015-02-09,https://i.scdn.co/image/ab67616d0000b2732a7f876dbed7f7ae56edba22,1,7,228520,https://p.scdn.co/mp3-preview/4dbe5a479943dcaf1e2ae15c8ce0d82cffecf3a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBAHS1500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,candy pop,metropopolis,pop,uk pop,dance pop,pop,uk pop",0.611,0.947,4.0,-1.538,0.0,0.0558,0.0282,0.0,0.303,0.564,105.94,4.0,,Asylum,"C © 2014 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company, P ℗ 2014 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company",5127 +5128,spotify:track:07tIFArv3ZMAVCwQE3nvA2,I've Lost You,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:2J7LSpd6suKj8qd9MkjuGK,That's the Way It Is (Deluxe Edition),spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1970-11-11,https://i.scdn.co/image/ab67616d0000b273f967e601531a95195609ba51,1,8,220773,https://p.scdn.co/mp3-preview/08c343dcba154fc5d322e1114c47775c98810ae8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USRC19900343,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.246,0.385,10.0,-11.783,1.0,0.0395,0.587,0.0,0.697,0.458,155.949,4.0,,RCA/Legacy,P (P) 1970 Sony Music Entertainment,5128 +5129,spotify:track:3j0oJtPonSYt9f5jHVLb91,Boom Clap,spotify:artist:720fJ5sGqAOhvU2IUypqIr,Lennon & Maisy,spotify:album:2R7c2w7VihO8ouuNAjjOKj,Boom Clap,spotify:artist:720fJ5sGqAOhvU2IUypqIr,Lennon & Maisy,2015-02-03,https://i.scdn.co/image/ab67616d0000b273cce720043d8ac0683b969721,1,1,175615,https://p.scdn.co/mp3-preview/d79e2448ec112f52d8dc2fc1ca543ccd0c79951f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,TCACD1556585,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian country,0.653,0.525,4.0,-7.446,1.0,0.0414,0.57,0.0,0.141,0.633,156.996,4.0,,Back 40 Entertainment,"C 2015 Back 40 Entertainment, P 2015 Back 40 Entertainment",5129 +5130,spotify:track:0PA3mDYqvmpIGOJeccw71U,It's Time To Cry,spotify:artist:49cKvpgrR0tAJFwUTdpqwV,Paul Anka et son orchestre,spotify:album:7gI505p2BwCjweF5MspqoU,Diana,spotify:artist:49cKvpgrR0tAJFwUTdpqwV,Paul Anka et son orchestre,2017-03-18,https://i.scdn.co/image/ab67616d0000b27347a65e41d8c84374a131a01c,1,22,146733,https://p.scdn.co/mp3-preview/b95454d233434a749e705fb5865c0c5ad2915470?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,DETL61615134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.451,0.42,3.0,-8.348,1.0,0.028,0.827,8.51e-05,0.344,0.45,110.309,3.0,,Finestar Records,"C 2017 Singers Lounge, P 2017 Singers Lounge",5130 +5131,spotify:track:1nZzRJbFvCEct3uzu04ZoL,Part Of Me,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:5BvgP623rtvlc0HDcpzquz,Teenage Dream: The Complete Confection,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2012-03-12,https://i.scdn.co/image/ab67616d0000b273937af329667311f4b2831616,1,14,216160,https://p.scdn.co/mp3-preview/7a454631475bbbeaa6b2b414b6c924fafeaf6fcd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USCA21102809,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.678,0.918,5.0,-4.63,1.0,0.0355,0.000417,0.0,0.0744,0.77,130.03,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",5131 +5132,spotify:track:2xit5ObjfPmY14dKVFEcWJ,The Island - Radio Edit [Radio Edit],spotify:artist:7MqnCTCAX6SsIYYdJCQj9B,Pendulum,spotify:album:6mruWsKBUnLIxqDzBoX5r4,The Island,spotify:artist:7MqnCTCAX6SsIYYdJCQj9B,Pendulum,2010-09-17,https://i.scdn.co/image/ab67616d0000b273598605f9031e541dd9778bbf,1,2,219244,https://p.scdn.co/mp3-preview/0cc918421230f9ac6bf942a04107a3397c488b75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAHT1000222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,dancefloor dnb,drum and bass",0.543,0.838,9.0,-2.753,0.0,0.0532,4.04e-05,0.000391,0.328,0.568,126.032,4.0,,WM UK,"C © 2010 Warner Music UK Limited, P ℗ 2010 Warner Music UK Limited",5132 +5133,spotify:track:3QOyz2OttQFNrSGKGxJI5s,Always On The Run,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,spotify:album:1cW0de5T5fdedlS4YqvyCv,Greatest Hits,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,2000,https://i.scdn.co/image/ab67616d0000b273550699c44dd74a7663c6ebfa,1,10,232440,https://p.scdn.co/mp3-preview/1e3365b1875b56c15d3af190a7e85da4922023cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USVI29100013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,rock",0.512,0.946,9.0,-3.756,1.0,0.148,0.0119,0.0191,0.0646,0.85,169.222,4.0,,Virgin Records,"C © 2000 Virgin Records America, Inc., P This Compilation ℗ 2000 Virgin Records America, Inc.",5133 +5134,spotify:track:1DftXdxEFzsrTVG6qZHAjT,Do It Like That,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,spotify:album:6L8KVdP0dIxENiMAP0sR2o,Fear & Freedom,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,2012-01-01,https://i.scdn.co/image/ab67616d0000b273a1ec8d7e6cd2c99e14cc7f23,1,4,165581,https://p.scdn.co/mp3-preview/8d95c8f51bb04809e652d227acd6fdb3be68ec18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUEM01200005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian talent show",0.401,0.888,10.0,-2.52,0.0,0.394,0.0637,0.0,0.167,0.526,198.954,4.0,,Virgin Records,"C © 2013 EMI Recorded Music Australia Pty Ltd., P ℗ 2012 EMI Recorded Music Australia Pty Ltd.",5134 +5135,spotify:track:6nxqGWJUxbGqGtqfXZrVem,Worship,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),spotify:album:7BZ81dThqcxbFTXKY36Oek,Communion,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),2015-07-10,https://i.scdn.co/image/ab67616d0000b27375c5155be757f8d8e15aa0c0,1,5,221813,https://p.scdn.co/mp3-preview/b3e6aafaf6052bb44ef3118c2cd826c43933e406?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71501274,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gauze pop,pop,pop dance,uk pop",0.669,0.808,4.0,-4.491,0.0,0.0402,0.0864,0.0,0.0855,0.56,117.98,4.0,,Universal Music Group,"C © 2015 Polydor Ltd. (UK), P ℗ 2015 Polydor Ltd. (UK)",5135 +5136,spotify:track:6stLgIm9CG2ma9eHUabpnj,1981,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,spotify:album:57kpLskpXv5xKy3o316RqX,Breed Obsession,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,2008,https://i.scdn.co/image/ab67616d0000b273e80bba32b5fb4fc98c5ad232,1,10,218173,https://p.scdn.co/mp3-preview/b3625909280208c3d8fb39e8362a5ed9ee0308c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUWA00701360,spotify:user:bradnumber1,2021-11-20T11:19:21Z,"australian alternative rock,australian indie",0.441,0.96,7.0,-3.882,1.0,0.0704,0.00977,1.1e-05,0.124,0.303,151.944,4.0,,WM Australia,"C © 2008 Mushroom Records Pty Limited, P ℗ 2007 Mushroom Records Pty Limited",5136 +5137,spotify:track:43cFjTTCD9Cni4aSL0sORz,Playinwitme (feat. Kehlani),"spotify:artist:4qBgvVog0wzW75IQ48mU7v, spotify:artist:0cGUm45nv7Z6M6qdXYQGTX","KYLE, Kehlani",spotify:album:2lgOc40hhHqjUGAKMWqGxO,Playinwitme (feat. Kehlani),"spotify:artist:4qBgvVog0wzW75IQ48mU7v, spotify:artist:0cGUm45nv7Z6M6qdXYQGTX","KYLE, Kehlani",2018-03-20,https://i.scdn.co/image/ab67616d0000b273fa7b2b60e85950ee93dcdc04,1,1,193093,https://p.scdn.co/mp3-preview/190ead2808101ae33f9c4a1c3dc94cb1cef67a67?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21801141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep underground hip hop,indie pop rap,meme rap,pop rap,viral trap,pop,r&b,rap",0.687,0.587,1.0,-5.772,0.0,0.124,0.302,0.0,0.278,0.676,156.575,4.0,,independently popular.,"C 2018 independently popular. under exclusive license to Atlantic Recording Corporation for the US and WEA International Inc. for the world outside of the United States, P 2018 independently popular. under exclusive license to Atlantic Recording Corporation for the US and WEA International Inc. for the world outside of the United States",5137 +5138,spotify:track:0HOrDVS349XFcpCYsO2hAP,You Ain't Seen Nothing Yet,spotify:artist:5q4AzEtCoYJyXjMMoEkSU5,Bachman-Turner Overdrive,spotify:album:3TtCMt4XLddj9PQeVBfsK1,Not Fragile,spotify:artist:5q4AzEtCoYJyXjMMoEkSU5,Bachman-Turner Overdrive,1974,https://i.scdn.co/image/ab67616d0000b273d109a35f286685993cf03050,1,4,234866,https://p.scdn.co/mp3-preview/b43ee975293a1b1f420a9fae91c7087e66770e64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USPR39401742,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic canadian rock,classic rock,country rock,folk rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.475,0.439,11.0,-15.039,0.0,0.0427,0.000146,0.000277,0.223,0.76,118.392,4.0,,EMI,"C © 1990 Mercury Records Inc., P ℗ 1990 Mercury Records Inc.",5138 +5139,spotify:track:56GbZVwxMdf1DENCluYS8A,Don't Dream It's Over,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:6W8rZvQ97nvTyOj26TRHJJ,Crowded House (Deluxe),spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1986-08-01,https://i.scdn.co/image/ab67616d0000b2737cef65b561af10a25acbc2df,1,4,238173,https://p.scdn.co/mp3-preview/79d24cbed581bdbb12b224e95cfd473947924739?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USCA28600048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.435,0.752,8.0,-6.993,1.0,0.0421,0.00939,0.000204,0.0844,0.358,80.854,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Capitol Records Inc., P ℗ 2016 Capitol Records Inc.",5139 +5140,spotify:track:13vDH7LlES2hajU7yR07Mz,One More Time,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,spotify:album:3EDdhO2oG6eEJN8MUeefbl,One More Time,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,1997-03-25,https://i.scdn.co/image/ab67616d0000b2739969178a22a28525cd85750a,1,1,238706,https://p.scdn.co/mp3-preview/4031b34f00be703fd2ef5b785191ffd16009e66d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,DEC739701185,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,german techno,hip house",0.671,0.862,5.0,-11.367,1.0,0.0351,0.000889,0.7,0.167,0.855,133.117,3.0,,Hansa Local,P (P) 1997 Hansa/BMG,5140 +5141,spotify:track:0hPuF2Z5fZjnuwYPvIdPC1,Really Don't Care,"spotify:artist:6S2OmqARrzebs0tKUEyXyp, spotify:artist:4m4SfDVbF5wxrwEjDKgi4k","Demi Lovato, Cher Lloyd",spotify:album:7KAoB1N8QmvYVQv5cwe9Xp,Demi,spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,2013-01-01,https://i.scdn.co/image/ab67616d0000b2736ef894ee6ba1f5e9a5ee1dc5,1,8,201600,https://p.scdn.co/mp3-preview/c90789b0bf7c7193073bc35c2e96d25fd15e495e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR11334431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop,dance pop,pop,post-teen pop,talent show",0.703,0.733,7.0,-3.598,1.0,0.0852,0.111,0.0,0.119,0.82,121.008,4.0,,Universal Music,"C © 2013 Hollywood Records, Inc., P ℗ 2013 Hollywood Records, Inc.",5141 +5142,spotify:track:6eYbHXkYM5m3Eg6WJzU3NW,Good Lord,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:6IZSXBsJDisI8hLczptkaq,Good Lord,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2019-02-26,https://i.scdn.co/image/ab67616d0000b27363833015be953d6378af877c,1,1,203266,https://p.scdn.co/mp3-preview/cf5e1c4002f4e8a58776ec11ec63167ff7fb72e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUYO01800003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.578,0.696,0.0,-4.916,1.0,0.0392,0.00615,0.0,0.346,0.226,78.012,4.0,,EMI Recorded Music Australia Pty Ltd (Distribution),"C © 2019 Birds Of Tokyo Pty Ltd, P ℗ 2019 Birds Of Tokyo Pty Ltd, manufactured and distributed by Universal Music Australia Pty Limited",5142 +5143,spotify:track:5wzEKaovqFK2LXKKzScukl,Philadelphia Freedom,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:7bcUz60MilxMGurjN2T5nS,Captain Fantastic (Deluxe Edition),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1975-05-19,https://i.scdn.co/image/ab67616d0000b273be1ce5ee1bf02a3d23523d19,1,13,321933,https://p.scdn.co/mp3-preview/1cd629f8a9aae0d66f71c4099e3bf5238c5a86d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMB7500013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.702,0.626,0.0,-8.448,0.0,0.0298,0.0744,2e-05,0.072,0.799,125.199,4.0,,Universal Strategic Marketing,"C © 2005 This Record Company Ltd., P ℗ 2005 This Record Company Ltd. Manufactured by the Island Def Jam Music Group",5143 +5144,spotify:track:6uA1FgFbQkI6L6BvOOmx3x,Counting The Beat,spotify:artist:7IwgYVMAMcynxPDNtJjmfg,The Swingers,spotify:album:5y3FwMHa9D6hLx184MIMJb,Counting The Beat,spotify:artist:7IwgYVMAMcynxPDNtJjmfg,The Swingers,1981,https://i.scdn.co/image/ab67616d0000b273f993a90884300e817467cc21,1,6,183680,https://p.scdn.co/mp3-preview/e7304022c6c334b744b602153e979e14a85fcdff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUMU08100009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,classic nz pop,kiwi rock",0.417,0.705,9.0,-7.661,1.0,0.0656,0.211,0.0296,0.423,0.922,193.668,4.0,,WM Australia,"C © 1997 Mushroom Records, P ℗ 1981 Mushroom Records",5144 +5145,spotify:track:0aOM2ETJlzd3zUArCePEOW,The Rise and Fall of Flingel Bunt,spotify:artist:7n2bs5q3whSUnindQssIGC,The Shadows,spotify:album:2gAGmZC3MmhKQI8Muu5IDG,Another String of Hot Hits (And More!),spotify:artist:7n2bs5q3whSUnindQssIGC,The Shadows,1987-10-05,https://i.scdn.co/image/ab67616d0000b27322c7a428d6bdc9cf796f43db,1,6,166480,https://p.scdn.co/mp3-preview/3a1a8ab80a0afe1713040d564d59108d1d0c880b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBAYE6400165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.637,0.667,5.0,-7.555,1.0,0.0434,0.099,0.756,0.108,0.971,132.802,4.0,,Parlophone UK,"C © 1987 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1987 Parlophone Records Ltd, a Warner Music Group Company",5145 +5146,spotify:track:794O0j1i57zgUMC7BCBMqY,"They're Coming to Take Me Away, Ha-Haaa!",spotify:artist:47LaejbXqR0KTC7A8khfqS,Napoleon XIV,spotify:album:2OJsSKpvqw6MxslThYMnHq,"They're Coming to Take Me Away, Ha-Haaa!",spotify:artist:47LaejbXqR0KTC7A8khfqS,Napoleon XIV,1966-05-23,https://i.scdn.co/image/ab67616d0000b273d28d956ebb179650bb92184d,1,1,134066,https://p.scdn.co/mp3-preview/44b694853e6370b12be1100ddec0211499f2c9a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,NLG620467215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.821,0.707,1.0,-17.299,1.0,0.27,0.488,0.0,0.537,0.226,107.03,4.0,,Novello & Co.,"C (C) 2011 Chester Music Ltd., P (P) 2011 Chester Music Ltd.",5146 +5147,spotify:track:0zscy4RolfjsihJlXuQLzG,Pumpkin Soup,spotify:artist:5vBKu1igxFo6g1sHADkIdg,Kate Nash,spotify:album:2gDCBa5P6SnAaY0cadefQS,Made of Bricks,spotify:artist:5vBKu1igxFo6g1sHADkIdg,Kate Nash,2007-08-06,https://i.scdn.co/image/ab67616d0000b273ff2b692066dfd6f3c74d654b,1,9,179573,https://p.scdn.co/mp3-preview/c149626142724ff9ff0ded6377fc12141c40f6ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBUM70706075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"anti-folk,piano rock",0.585,0.693,0.0,-5.524,1.0,0.068,0.0142,3.59e-06,0.244,0.723,97.439,4.0,,Polydor Records,"C © 2007 Polydor Ltd. (UK), P ℗ 2007 Polydor Ltd. (UK)",5147 +5148,spotify:track:6rlgy1boD69A3mcV7VzPRL,You're Nobody 'Til Somebody Loves You,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:029WUoBjWc7Js1QiPH3mw0,James Arthur (Deluxe),spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2013-11-04,https://i.scdn.co/image/ab67616d0000b273192221f838b7b6b9cb4629bf,1,1,201373,https://p.scdn.co/mp3-preview/1ee36a675652445da872819e7835886936bec41b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBHMU1300188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.418,0.925,6.0,-2.798,0.0,0.0926,0.0113,0.0,0.0773,0.596,155.73,4.0,,Syco Music,P (P) 2013 Simco Limited,5148 +5149,spotify:track:0afhq8XCExXpqazXczTSve,Galway Girl,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:3T4tUhGYeRNVUGevb0wThu,÷ (Deluxe),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2017-03-03,https://i.scdn.co/image/ab67616d0000b273ba5db46f4b838ef6027e6f96,1,6,170826,https://p.scdn.co/mp3-preview/9b7635464dc2caea3837fcc5680d0f5f5d39ab03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBAHS1700026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.624,0.876,9.0,-3.374,1.0,0.1,0.0735,0.0,0.327,0.781,99.943,4.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company.",5149 +5150,spotify:track:0JmGVy7IzUM27My3UuEOOZ,Knock You Down,"spotify:artist:63wjoROpeh5f11Qm93UiJ1, spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:21E3waRsmPlU7jZsS13rcj","Keri Hilson, Kanye West, Ne-Yo",spotify:album:4ujRfwvBeflZJ7tzzA0XBJ,In A Perfect World...,spotify:artist:63wjoROpeh5f11Qm93UiJ1,Keri Hilson,2009-01-01,https://i.scdn.co/image/ab67616d0000b273fee6d75ac789524b5a382308,1,5,326186,https://p.scdn.co/mp3-preview/5126341c437ddc853fec4f51eaad41dd29036c04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USUM70955396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,r&b,urban contemporary,chicago rap,hip hop,rap,dance pop,pop,r&b,urban contemporary",0.587,0.878,8.0,-4.781,1.0,0.16,0.00922,0.0,0.171,0.646,155.167,4.0,,Mosley / Interscope,"C © 2009 Mosley Music/Interscope Records, P ℗ 2009 Mosley Music/Interscope Records",5150 +5151,spotify:track:7lbS6qE0XwACVxgQQehVZD,We Are Golden,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,spotify:album:22wHkYnvPuHbiiYKDinVWk,The Boy Who Knew Too Much,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,2009-01-01,https://i.scdn.co/image/ab67616d0000b2733abd86b2438cb9cb48811332,1,1,238040,https://p.scdn.co/mp3-preview/3449c2d988a9cdf1ed00602a4f96a59d3c244b67?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC7R0900125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electropop,0.544,0.86,0.0,-5.181,1.0,0.0678,0.00484,0.122,0.115,0.398,123.024,4.0,,Universal Music Group,"C © 2009 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2009 Casablanca Music, LLC",5151 +5152,spotify:track:6fLTxkL2wgC40fBM6IIe7r,It's All Over Now - Mono Version,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:2Hnje5QVKaPVNuGJ5yHC7Z,12 X 5,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1964-10-17,https://i.scdn.co/image/ab67616d0000b2739d6ee4590d050ec9563daa92,1,6,206440,https://p.scdn.co/mp3-preview/7dd4f69982cde7b53b759b80e9c75d4a42a40097?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USA176410180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.603,0.689,0.0,-10.729,1.0,0.0304,0.0235,3.27e-06,0.33,0.762,99.088,4.0,,"ABKCO Music and Records, Inc.","C © 2002 ABKCO Music & Records Inc., P ℗ 2002 ABKCO Music & Records Inc.",5152 +5153,spotify:track:4IoYz8XqqdowINzfRrFnhi,You Found Me,spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,spotify:album:3ibdlhMmbFPMYoWvwHCzI3,The Fray,spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,2009-02-02,https://i.scdn.co/image/ab67616d0000b27392b32435efed601fc8f1045d,1,3,241853,https://p.scdn.co/mp3-preview/9cfbb71ac7b2247137f25f9018820bb515c23ff1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USSM10803009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop,pop rock",0.338,0.803,8.0,-5.412,0.0,0.0413,0.0187,0.0,0.136,0.4,151.994,4.0,,Epic,P (P) 2009 Sony Music Entertainment,5153 +5154,spotify:track:5DL9fBmlM0r0nrlLIKwTrc,Junior’s Farm - 2014 Remaster,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,spotify:album:5Wk54X9LiXEsCFEXWRNpN6,Venus And Mars (Archive Collection),spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,1975-05-27,https://i.scdn.co/image/ab67616d0000b273d68c3c79add58f178fa7cfba,1,14,263773,https://p.scdn.co/mp3-preview/21a8cfc2e1036fe77946ae7dedd89b48bc7d28a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCCS1400027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.522,0.823,0.0,-7.115,1.0,0.034,0.0185,0.000145,0.0991,0.508,132.065,4.0,,Paul McCartney Catalog,"C © 2014 MPL Communications Inc/Ltd, P ℗ 1975 MPL Communications Inc/Ltd",5154 +5155,spotify:track:6pymOcrCnMuCWdgGVTvUgP,3,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:325wcm5wMnlfjmKZ8PXIIn,The Singles Collection,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2009-11-09,https://i.scdn.co/image/ab67616d0000b273cc8fa71a43ad87783b3f64be,1,57,213173,https://p.scdn.co/mp3-preview/ddbd0f9d3ec4e6de41bb800d1fd584a6150d5ff3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USJI10900602,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.697,0.709,5.0,-1.917,0.0,0.0455,0.0452,0.0,0.138,0.787,134.91,4.0,,Jive,"P (P) 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",5155 +5156,spotify:track:6A1MJbqxcHvNcT0u9qMqEP,Don't Be Cruel,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,spotify:album:1aYjx4tcmci0lYwT5sKgvM,Lap Of Luxury,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,1988-04-12,https://i.scdn.co/image/ab67616d0000b273ee30d27bd0a70b01e14eca11,1,6,187200,https://p.scdn.co/mp3-preview/3419cb9ab4650b3ac41cc72c743052f9c52ae67d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSM18800499,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,glam metal,glam rock,hard rock,mellow gold,power pop,rock,singer-songwriter,soft rock",0.538,0.497,2.0,-12.068,1.0,0.0357,0.0747,1.64e-06,0.0713,0.89,168.065,4.0,,Epic/Legacy,P (P) 1988 Sony Music Entertainment,5156 +5157,spotify:track:5ZsPy9wHH733NlU6c4v2Hi,When It's Over - David Kahne Main,spotify:artist:4uN3DsfENc7dp0OLO0FEIb,Sugar Ray,spotify:album:7rq2iwU4TVxeZJbR4Gb2ht,Sugar Ray,spotify:artist:4uN3DsfENc7dp0OLO0FEIb,Sugar Ray,2001-06-12,https://i.scdn.co/image/ab67616d0000b2739f19fc47081afc1abeb6eb6d,1,2,217853,https://p.scdn.co/mp3-preview/05715a56d98f0c36ea81ef22f7f2419791929d75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT20102062,spotify:user:bradnumber1,2021-11-11T04:15:14Z,"alternative metal,funk metal,pop rock,post-grunge",0.675,0.775,4.0,-5.772,1.0,0.0522,0.0387,0.0,0.383,0.933,99.945,4.0,,RT Industries,"C © 2001 RT Industries, P ℗ 2001 RT Industries",5157 +5158,spotify:track:6PXeGUkzPvwvX5jWiJRgq2,Hello Me,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,spotify:album:32KHPKzWF6TfY24vDWUjXM,Back to Love,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,2019-11-08,https://i.scdn.co/image/ab67616d0000b273bc5ce86a86bfb0ab9dceaed5,1,1,207808,https://p.scdn.co/mp3-preview/a24990a91a242ab5b12188813c39a5bee3d000a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUUM71900725,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.567,0.712,1.0,-4.823,0.0,0.0347,0.0931,0.0,0.156,0.457,108.031,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Angel Works Productions (AWP) / Universal, P ℗ 2019 Angel Works Productions (AWP) / Universal",5158 +5159,spotify:track:5id3Rqn7SPj1LX4FfY4nGz,Together,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:4TM7wmWEakp4xk1ZffVkL8,Together,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2020-05-20,https://i.scdn.co/image/ab67616d0000b273e279a8ea467c75ed400f812f,1,1,205207,https://p.scdn.co/mp3-preview/760983d5786a1b41f4b4c937c4e80e77bc58416b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT22001187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.521,0.877,7.0,-5.444,1.0,0.0683,0.0132,0.0806,0.0929,0.199,180.007,4.0,,Monkey Puzzle/Atlantic,"C © 2020 Monkey Puzzle Music, Inc., under exclusive license to Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States., P ℗ 2020 Monkey Puzzle Music, Inc., under exclusive license to Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States.",5159 +5160,spotify:track:3bmgkdM9DOmaby60QvQiLc,No Lies,spotify:artist:3IJFGnsUboabVEbJz1UR91,Noiseworks,spotify:album:7AszIyfkX9nTYs6Md4tBhh,Greatest Hits,spotify:artist:3IJFGnsUboabVEbJz1UR91,Noiseworks,1992-03-05,https://i.scdn.co/image/ab67616d0000b2738ab3a3015d39464755d92500,1,1,233333,https://p.scdn.co/mp3-preview/6023d1573c9be8b299eba9b6a573252836068190?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUSM09200023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.565,0.892,9.0,-7.994,1.0,0.0721,0.00645,0.0863,0.0907,0.345,101.718,4.0,,Columbia,P (P) 1992 Sony Music Entertainment Australia Pty Ltd,5160 +5161,spotify:track:6QOg1CWFpLAsIK7I54JX4G,Those Were The Days - Remastered,spotify:artist:5pBljwfwnohfSNDXixEYHm,Mary Hopkin,spotify:album:4TrA2bhBgwdyuy3mzzJWmW,Post Card (Remastered 2010 / Deluxe Edition),spotify:artist:5pBljwfwnohfSNDXixEYHm,Mary Hopkin,1969-02-21,https://i.scdn.co/image/ab67616d0000b2732af71bc7c47b3ae12aadcbb8,1,1,310213,https://p.scdn.co/mp3-preview/3ddd5697448d59d8be5aff2d2cdd0809de843e4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBDCE1000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.374,0.292,6.0,-9.404,0.0,0.0319,0.869,0.000581,0.108,0.497,169.685,3.0,,EMI Catalogue,"C © 2010 Apple Corps Ltd, P This Compilation ℗ 2010 Apple Corps Ltd",5161 +5162,spotify:track:3aazUPRslL7uysi1xjjYPv,It Was Always You,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:0t0pUZSbSfU305juszE1en,It Was Always You,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2014-07-29,https://i.scdn.co/image/ab67616d0000b273fc9c7d6fc6fa0da79019f53d,1,1,238333,https://p.scdn.co/mp3-preview/4d9ca960597c01ce7d869c55803bca1608538f77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71410331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.61,0.756,11.0,-6.567,1.0,0.0441,0.0731,1.32e-06,0.1,0.31,103.982,4.0,,Universal Music Group,"C © 2014 Interscope Records, P ℗ 2014 Interscope Records",5162 +5163,spotify:track:4Uc6BcPeBKfZUlX6jhumGv,Can't Remember to Forget You,"spotify:artist:0EmeFodog0BfCgMzAIvKQp, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Shakira, Rihanna",spotify:album:3pIrfgAYjBpTBBKgtrwKgZ,Shakira. (Deluxe Version),spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,2014-03-21,https://i.scdn.co/image/ab67616d0000b27329c64e2ed18911a211cfc5b7,1,2,206866,https://p.scdn.co/mp3-preview/0537ddabd29926b78d4773f32d31db65ee415020?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11301790,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"colombian pop,dance pop,latin pop,pop,barbadian pop,pop,urban contemporary",0.694,0.81,11.0,-3.556,0.0,0.0661,0.122,0.0,0.141,0.824,137.968,4.0,,RCA/Sony Latin Iberia,P (P) 2014 Ace Entertainment S.ar.l.,5163 +5164,spotify:track:7t4c2dRPcikOFVODa0qlQu,Mull Of Kintyre,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,spotify:album:0jXLd4eGxSh8TIGEdRbdH4,All The Best - UK Version,spotify:artist:4STHEaNw4mPZ2tzheohgXB,Paul McCartney,1987-11-02,https://i.scdn.co/image/ab67616d0000b27354c5b44fb18030a3385c7b88,1,17,283626,https://p.scdn.co/mp3-preview/b86394e8d323d11270d1224db3cf2727ee2b07b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBCCS7700746,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.346,0.303,2.0,-13.604,1.0,0.0271,0.00128,0.0,0.116,0.43,91.715,3.0,,Paul McCartney Catalog,"C © 1987 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 1987 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",5164 +5165,spotify:track:3IeCYkdKI55mNMl2o4vX0k,Bust A Move,spotify:artist:5n30a5V4ftXNMHCHChmK2h,Young MC,spotify:album:5epYkQqWldhYysHIH9mrmE,Stone Cold Rhymin',spotify:artist:5n30a5V4ftXNMHCHChmK2h,Young MC,1989-01-01,https://i.scdn.co/image/ab67616d0000b2736399e0c1729dbaf36d7026c3,1,3,263914,https://p.scdn.co/mp3-preview/e3403c0ca7bdf211494f04876a48362703a37ace?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USA370507645,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,miami bass",0.946,0.772,4.0,-7.537,0.0,0.121,0.0512,2.26e-06,0.0612,0.743,116.972,4.0,,The Bicycle Music Company,"C © 1989 The Bicycle Music Company, P ℗ 1989 The Bicycle Music Company",5165 +5166,spotify:track:5UwbnHhjnbinJH8TefuQfN,Long Cool Woman (In a Black Dress) - 1999 Remaster,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:6b5osVLAcVTBvnqwDaPV4w,Distant Light (1999 Remaster),spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1971-10-08,https://i.scdn.co/image/ab67616d0000b273eaaa0a2a94066c69ed93d4ab,1,7,199200,https://p.scdn.co/mp3-preview/718bebe2fac6d26d559b6babee20cbbdd66d5390?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBGYU9900019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.757,0.868,9.0,-9.326,1.0,0.062,0.411,0.00221,0.355,0.815,138.923,4.0,,BMG Rights Management (US) LLC,"C © 2000 BMG Rights Management (US) LLC, P ℗ 1999 BMG Rights Management (US) LLC",5166 +5167,spotify:track:6OnfBiiSc9RGKiBKKtZXgQ,We Built This City,spotify:artist:0kObWap02DEg9EAJ3PBxzf,Starship,spotify:album:0YCraVqAWvJHiBYP2AXgV6,Knee Deep In The Hoopla,spotify:artist:0kObWap02DEg9EAJ3PBxzf,Starship,1985-09-10,https://i.scdn.co/image/ab67616d0000b273da6790936a48b6719083dcac,1,1,296080,https://p.scdn.co/mp3-preview/7c136e7220892133e94c4d13d4ca7262d3d5cf4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USRC18503424,spotify:user:bradnumber1,2022-08-31T00:08:24Z,"album rock,classic rock,mellow gold,new romantic,new wave pop,soft rock,synthpop",0.661,0.908,5.0,-4.897,1.0,0.039,0.052,0.0,0.0708,0.656,144.091,4.0,,Rhino,"C © 1985 Jefferson Starship, Inc., under exclusive license to Rhino Entertainment Company, a Warner Music Group Company., P ℗ 1985 Jefferson Starship, Inc., under exclusive license to Rhino Entertainment Company, a Warner Music Group Company.",5167 +5168,spotify:track:4DKwSX88UJIeAc5P5JUYrw,Peek a Boo,spotify:artist:4UD9XOagGdElo7BpVzLltZ,New Vaudeville Band,spotify:album:4Eb3V972J7hNApVN2hbPfk,The New Vaudeville Band,spotify:artist:4UD9XOagGdElo7BpVzLltZ,New Vaudeville Band,2020-05-29,https://i.scdn.co/image/ab67616d0000b2733b498823c9576ef7abbcddb4,1,13,141226,https://p.scdn.co/mp3-preview/c9aa431dfe399bfc3f2a276229265d80b42f711d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBYDR1903486,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,vaudeville",0.678,0.488,0.0,-7.157,1.0,0.0361,0.487,9.68e-06,0.192,0.815,115.662,4.0,,Tic Toc Music,"C 2020 Tic Toc Music, P 2020 Tic Toc Music",5168 +5169,spotify:track:5QTxFnGygVM4jFQiBovmRo,(Don't Fear) The Reaper,spotify:artist:00tVTdpEhQQw1bqdu8RCx2,Blue Öyster Cult,spotify:album:6C9WzlQANeoD0GW5B41YJt,Agents Of Fortune,spotify:artist:00tVTdpEhQQw1bqdu8RCx2,Blue Öyster Cult,1976,https://i.scdn.co/image/ab67616d0000b2733ac318439ae56ce048d7bf5d,1,3,308120,https://p.scdn.co/mp3-preview/ad97ce828e504498e211b6525c5ccee86642786b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USSM17600477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,progressive rock,rock",0.333,0.927,9.0,-8.55,0.0,0.0733,0.0029,0.000208,0.297,0.385,141.466,4.0,,Columbia,P (P) 1976 SONY BMG MUSIC ENTERTAINMENT,5169 +5170,spotify:track:5QqeZ3Cqg0UAOXhH6kyJfv,Chosen Armies,spotify:artist:05STafdfQBBQIV9duONwod,Children Collide,spotify:album:09wmAvJnyP6AiHy688REXD,The Long Now,spotify:artist:05STafdfQBBQIV9duONwod,Children Collide,2008-01-01,https://i.scdn.co/image/ab67616d0000b273aedb00f8dc47c61e13e8ca75,1,7,266093,https://p.scdn.co/mp3-preview/c346a98d41c1fc96788e6384d0b7da436d6217d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUUM70800802,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian indie rock",0.461,0.934,9.0,-4.486,1.0,0.0548,0.000234,0.237,0.255,0.272,152.018,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Universal Music Australia Pty Ltd., P ℗ 2008 Universal Music Australia Pty Ltd.",5170 +5171,spotify:track:7lY8aoN3wUR3NY4nUwigPv,"Paint It, Black - (Original Single Mono Version)",spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:1IeXdR2ptc5Jhxmko89CgE,Singles 1965-1967,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,2004-07-12,https://i.scdn.co/image/ab67616d0000b273196ddacc8968e22242285745,1,11,224133,https://p.scdn.co/mp3-preview/32e0a3df9984a3addfc49bf02b6608df5700775b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USA176610020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.496,0.859,5.0,-7.927,0.0,0.0934,0.0135,0.065,0.349,0.768,159.694,4.0,,"ABKCO Music and Records, Inc.","C © 2004 ABKCO Music & Records Inc., P This Compilation ℗ 2004 ABKCO Music & Records Inc.",5171 +5172,spotify:track:0CI422U7nhDLnk43s1BS1F,Sun Goes Down (feat. Jasmine Thompson) - Radio Mix,"spotify:artist:3t5xRXzsuZmMDkQzgOX35S, spotify:artist:2TL8gYTNgD6nXkyuUdDrMg","Robin Schulz, Jasmine Thompson",spotify:album:1uMFVKi8n8T0Yjo3GI3wzh,Prayer,spotify:artist:3t5xRXzsuZmMDkQzgOX35S,Robin Schulz,2014-09-19,https://i.scdn.co/image/ab67616d0000b27358bc4150f6e6c590e8e6d136,1,3,179960,https://p.scdn.co/mp3-preview/d7adcc0e1c18d1476c9c37dbaae76ed8371a7147?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,DEA621400666,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep euro house,deep house,edm,german dance,pop dance,tropical house,viral pop",0.548,0.723,6.0,-6.002,1.0,0.0375,0.0969,1.28e-05,0.337,0.499,125.088,4.0,,Tonspiel,"C © 2014 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company, P ℗ 2014 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company",5172 +5173,spotify:track:7E7sAg5qPv0cObXCWRsYMJ,Lay Me Down,"spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:5y2Xq6xcjJb2jVM54GHK3t","Sam Smith, John Legend",spotify:album:0kJbDT8VGMScK8YDzNNvzV,In The Lonely Hour (Drowning Shadows Edition),spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2015-11-06,https://i.scdn.co/image/ab67616d0000b273a56534bde4ee3ca23b15a018,1,23,219535,https://p.scdn.co/mp3-preview/d338f20d10cd67dddb6d32fd01818a52229cce4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71500850,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop,neo soul,pop,pop soul,urban contemporary",0.468,0.205,4.0,-11.014,1.0,0.0412,0.921,0.0,0.107,0.325,125.343,4.0,,Universal Music Group,"C © 2015 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2015 Capitol Records, a division of Universal Music Operations Limited",5173 +5174,spotify:track:4TBK6E1ERSKdIvD1jF4lt5,Louder (feat. Sian Evans) - Radio Edit,"spotify:artist:6r20qOqY7qDWI0PPTxVMlC, spotify:artist:2DTw633fgdoxrqv7uPdcCw","DJ Fresh, Sian Evans",spotify:album:5IqZHG6yO5SL6biWicPG3Y,Nextlevelism,spotify:artist:6r20qOqY7qDWI0PPTxVMlC,DJ Fresh,2012-09-28,https://i.scdn.co/image/ab67616d0000b273f36e1963b8fdcd13c531235b,1,1,206776,https://p.scdn.co/mp3-preview/f282df937938db8b55102fba652e9d4d6500ea00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBCEN1101013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dancefloor dnb,drum and bass,uk dance",0.31,0.926,6.0,-1.131,0.0,0.0464,0.0184,0.00792,0.483,0.493,139.85,4.0,,Ministry of Sound Recordings,P (P) 2012 Ministry of Sound Recordings Limited,5174 +5175,spotify:track:1sGIS3GjvpkoSf3s1r9gmH,Love Runs Out,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:2gXOM6eutmpn8P8vjcZFO5,Love Runs Out,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2014-01-01,https://i.scdn.co/image/ab67616d0000b273e47105708a46ff06c63f1ff8,1,1,224560,https://p.scdn.co/mp3-preview/f4fa98cd255f1184707eac63e211944150d7f93d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71404631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.716,0.937,7.0,-3.811,1.0,0.0601,0.164,0.0,0.138,0.739,119.995,4.0,,Universal Music Group,"C (C) 2014 Mosley Music/Interscope Records, P (P) 2014 Mosley Music/Interscope Records",5175 +5176,spotify:track:7zT1g7FxLVIZKwrw41jBci,I Got U - Radio Edit,"spotify:artist:61lyPtntblHJvA7FMMhi7E, spotify:artist:4Q6nIcaBED8qUel8bBx6Cr","Duke Dumont, Jax Jones",spotify:album:2YOE2KzyHzRZ992VxAaEAH,Access All Areas (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-10-20,https://i.scdn.co/image/ab67616d0000b2739c3e368d0f0c43578ec7d0d4,1,18,197786,https://p.scdn.co/mp3-preview/037e39416f03772b6e88d8c8c464c489e3ae8933?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBUM71400383,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,house,pop dance,progressive house,uk dance,dance pop,edm,house,pop dance,uk dance",0.678,0.751,0.0,-6.948,1.0,0.0478,0.0141,0.0322,0.169,0.549,120.853,4.0,,Universal Ltd.,"C © 2017 Globe: Soundtrack and Score, a division of Universal Music Operations Limited, P This Compilation ℗ 2017 Globe: Soundtrack and Score, a division of Universal Music Operations Limited",5176 +5177,spotify:track:285hMzLhJwHVLe9QT9qilk,Breakeven,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:1r5J0N6Ep181K0i8YuTYgO,The Script,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2008-07-14,https://i.scdn.co/image/ab67616d0000b273f33a9f529c12f79b116eb218,1,5,261426,https://p.scdn.co/mp3-preview/b71065334974c4f663a14410c64932fdf6125682?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBARL0800147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.63,0.696,10.0,-4.501,1.0,0.0242,0.144,0.0,0.0835,0.491,94.034,4.0,,Epic/Phonogenic,P (P) All 2008 except Track 8 2009 Sony Music Entertainment UK Limited,5177 +5178,spotify:track:6eLL7QTdMWdhhG4i3jHDR9,Crying,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:21REQ6X34DCAcoxtj654TI,Crying,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,1962-01-01,https://i.scdn.co/image/ab67616d0000b2732b150c08d3c57a785b02c578,1,1,166466,https://p.scdn.co/mp3-preview/76f2185a874e5bf9814a371532cceb1599b2754f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USSM16101208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.35,0.293,2.0,-9.502,1.0,0.0258,0.758,8.21e-06,0.104,0.162,96.685,4.0,,Columbia Nashville Legacy,P Originally released 1962. All rights reserved by Sony Music Entertainment,5178 +5179,spotify:track:4bfyeYgNLENrwLRRSKXfM3,Pictures Of You,spotify:artist:4UrGiQXrpB2CmzVGVFtH5E,The Last Goodnight,spotify:album:3MOMO36PjOCsTjRgN7D7IE,Poison Kiss,spotify:artist:4UrGiQXrpB2CmzVGVFtH5E,The Last Goodnight,2007-01-01,https://i.scdn.co/image/ab67616d0000b27359dd3f7ab7af203d5d28153f,1,3,189933,https://p.scdn.co/mp3-preview/26554fe8eec2a24115fc5c5a15a359c791d4391b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USVI20700977,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.555,0.773,2.0,-3.982,1.0,0.0341,0.214,0.0,0.0763,0.6,104.065,4.0,,Virgin Records,"C © 2007 Virgin Records America, Inc., P ℗ 2007 Virgin Records America, Inc.",5179 +5180,spotify:track:078bUQP8PIcG9SdwF5cUM7,Throw It Away,"spotify:artist:3vn7rk7VNMfDhuZNB9sDYP, spotify:artist:4UzQ37Y0rzonVpsXpcNyFH","360, Josh Pyke",spotify:album:6j0ZByTaV8Uirtm0PaXFZl,Falling & Flying (Platinum Edition),spotify:artist:3vn7rk7VNMfDhuZNB9sDYP,360,2012-08-24,https://i.scdn.co/image/ab67616d0000b273c6e20219c8481ef24c1b6f47,1,4,214146,https://p.scdn.co/mp3-preview/63cf03e43c5f18e3e1edd9f1852330a09e28b944?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUSR21100081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian alternative rock,australian indie,australian singer-songwriter",0.765,0.632,5.0,-8.954,0.0,0.0687,0.108,0.0,0.0624,0.583,100.016,4.0,,Soulmate Records,"C © 2012 Soulmate Records Pty Limited, P ℗ 2011 Soulmate Records Pty Limited, Except Tracks 15-18 ℗ 2012 Australian Broadcasting Corporation.",5180 +5181,spotify:track:1UfBHvzFNDZ9m0tak8enie,You Don't Own Me,spotify:artist:0PiRjlucuuHSHR8u2fZ6n0,The Ormsby Brothers,spotify:album:5oizfQJlt22zgVG2OgzbeQ,The Ormsby Brothers,spotify:artist:0PiRjlucuuHSHR8u2fZ6n0,The Ormsby Brothers,1973-01-01,https://i.scdn.co/image/ab67616d0000b2736d6eb017c8151474365de608,1,1,206906,https://p.scdn.co/mp3-preview/1fda0a96a03039a6d7f3eb73e1fa5e2e41d84c50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,NZUM71900149,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.459,0.515,0.0,-9.543,1.0,0.0246,0.112,0.00415,0.158,0.48,101.706,3.0,,Universal Music New Zealand Limited,"C © 1973 EMI Australia Ltd., P ℗ 1973 EMI Australia Ltd.",5181 +5182,spotify:track:61esk2u8nvDUmf5kbOla8b,You're My World,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,spotify:album:5rnejagAyJWdJnny3CfhVO,The Lemon Tree,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,2008-09-06,https://i.scdn.co/image/ab67616d0000b273e2addf69063f795b53e75294,1,8,182866,https://p.scdn.co/mp3-preview/8cce1139ad0098d90cf6b643d14364ed87ad0229?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00849130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.353,0.273,5.0,-9.097,1.0,0.0303,0.927,7.85e-05,0.123,0.332,100.439,3.0,,Bloodlines,"C 2008 Bloodlines, P 2008 Bloodlines",5182 +5183,spotify:track:1ezKo3T8GMhfj16KKAKzEp,Don't You Love Me Anymore,spotify:artist:3pFCERyEiP5xeN2EsPXhjI,Joe Cocker,spotify:album:4h3tie4ibwXWOZmV1VuSVg,Cocker,spotify:artist:3pFCERyEiP5xeN2EsPXhjI,Joe Cocker,1986,https://i.scdn.co/image/ab67616d0000b273d848a37b6e95e5c0fc47af65,1,3,323533,https://p.scdn.co/mp3-preview/58dbc6d5e4c0d86256f9759128559d5b5159f8a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA28600014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.407,0.831,8.0,-2.417,1.0,0.0328,0.252,2.61e-05,0.101,0.626,81.465,4.0,,Bloodlines,"C 1986 Bloodlines, P 1986 Bloodlines",5183 +5184,spotify:track:6XUIbizGHk6EJiUDWEJtpY,Blow,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:4HD4hyCi2n5gc5yyRVnirU,Animal + Cannibal (Deluxe Edition),spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010-11-19,https://i.scdn.co/image/a03f39f6ae96bde56c4814a90d012d099987b6c2,1,18,219973,https://p.scdn.co/mp3-preview/299be6d52d4bf03652a23ee1d9c596f612bdb7cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11000889,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.752,0.73,11.0,-3.897,0.0,0.0412,0.00272,3.62e-05,0.0967,0.769,120.032,4.0,,RCA Records Label,"P (P) 2010 RCA Records, a unit of Sony Music Entertainment",5184 +5185,spotify:track:6zTUlTbwdSVC61yrNY0SfS,Don't Give Me Your Life - Radio Version,spotify:artist:41VxAgbLRHo2ZYZEq5P1mD,Alex Party,spotify:album:0fYJIhjxCdKwWSYcF8Po99,Alex Party,spotify:artist:41VxAgbLRHo2ZYZEq5P1mD,Alex Party,1995,https://i.scdn.co/image/ab67616d0000b273588d8c367995a84b18cc0587,1,3,197591,https://p.scdn.co/mp3-preview/109bd57726d0593904d25a6df48b3835e603ab25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,ITC899500043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,hip house,italo house",0.678,0.88,3.0,-7.396,1.0,0.0358,0.119,0.0,0.0615,0.901,127.83,4.0,,Antibemusic,"C Goodymusic Music Production, P Goodymusic Music Production",5185 +5186,spotify:track:5oBaKT5xC8Qjr1E5xIGQGa,One Thing,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,spotify:album:3qqhNVbjLFNdLviBFrFwCa,Girl On Fire,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2012-11-26,https://i.scdn.co/image/ab67616d0000b2739f76cf235d4b3c3403cbbf5b,1,12,248573,https://p.scdn.co/mp3-preview/45cccce291d6767a15f9ad9b454f7242a5eab38e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USRC11201321,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b",0.614,0.501,2.0,-10.36,1.0,0.0699,0.67,0.00107,0.123,0.163,83.005,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",5186 +5187,spotify:track:4Hp94NbceTlIZhhA5yb2bh,I Could Make You Love Me,spotify:artist:5h3WBrCy3VcEj0IGf347dz,Wa Wa Nee,spotify:album:4oA6B7kcWN3xfmhDIPPKjP,Wa Wa Nee,spotify:artist:5h3WBrCy3VcEj0IGf347dz,Wa Wa Nee,1986,https://i.scdn.co/image/ab67616d0000b273013af8e32b471ae77b4a9b0d,1,10,236773,https://p.scdn.co/mp3-preview/d0fb9a19f9e0ab8a9fbf86c994486fd573c39f1b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUSM00000419,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.558,0.771,2.0,-11.228,0.0,0.0368,0.00322,0.000562,0.109,0.382,129.493,4.0,,Sony Music Entertainment,P (P) 1986 Sony Music Entertainment Australia Pty Ltd,5187 +5188,spotify:track:4BtLrtedxhMHdlLr6mWdg5,Too Big - 2017 Remaster,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,spotify:album:7J7hokoYf6Osgbsv5eZacy,Legend: The Best Of,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,2017-09-22,https://i.scdn.co/image/ab67616d0000b273964242c322fb5465a8c71556,1,9,202662,https://p.scdn.co/mp3-preview/ee6c3cc0634ea6e4b11eda0e0d88ebf523e00a49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UKKP21700025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.673,0.843,7.0,-7.826,1.0,0.147,0.147,0.0,0.625,0.847,113.92,4.0,,Chrysalis Records,"C 2017 Chrysalis Records Limited, P 2017 Chrysalis Records Limited",5188 +5189,spotify:track:1QNqrsNQ1JVLEwncov3lEY,True Love (feat. Lily Allen),"spotify:artist:1KCSPY1glIKqW2TotWuXOR, spotify:artist:13saZpZnCDWOI9D4IJhp1f","P!nk, Lily Allen",spotify:album:2Q9oTK48eb85waX1fFJsvj,The Truth About Love,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2012-09-18,https://i.scdn.co/image/ab67616d0000b2739d0f0d226987b449808e7b6f,1,5,230733,https://p.scdn.co/mp3-preview/584661dc4de0d2866939648924817bc5051a4454?cid=9950ac751e34487dbbe027c4fd7f8e99,True,66,USRC11200787,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,electropop,neo mellow",0.449,0.825,9.0,-4.762,1.0,0.324,0.00146,0.0,0.108,0.575,192.241,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",5189 +5190,spotify:track:6nTiIhLmQ3FWhvrGafw2zj,American Idiot,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:5dN7F9DV0Qg1XRdIgW8rke,American Idiot,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,2004-09-21,https://i.scdn.co/image/ab67616d0000b27308a1b1e0674086d3f1995e1b,1,1,176346,https://p.scdn.co/mp3-preview/2e9359e821b18414235d870a4d2671f4337c8682?cid=9950ac751e34487dbbe027c4fd7f8e99,True,80,USRE10400888,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.38,0.988,1.0,-2.042,1.0,0.0639,2.64e-05,7.86e-05,0.368,0.769,186.113,4.0,,Reprise,"C © 2004 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2004 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",5190 +5191,spotify:track:4JWQC6gyYoPRnxRxk0ta2M,Peer Pressure (feat. Julia Michaels),"spotify:artist:4EzkuveR9pLvDVFNx6foYD, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","James Bay, Julia Michaels",spotify:album:4pPJ0Hwrvadty8bGsg4Msg,Peer Pressure (feat. Julia Michaels),"spotify:artist:4EzkuveR9pLvDVFNx6foYD, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","James Bay, Julia Michaels",2019-02-22,https://i.scdn.co/image/ab67616d0000b2730256f9774fa82bbc8239cc1c,1,1,176880,https://p.scdn.co/mp3-preview/0fee1bcb679049f6a5041de5052b7a18fd9027bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71901255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop,uk pop,pop",0.631,0.715,1.0,-6.083,0.0,0.0277,0.0299,0.0,0.121,0.42,135.826,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",5191 +5192,spotify:track:5bTysxqGHXdSGiZVgljzCY,Brooklyn In The Summer,spotify:artist:0id62QV2SZZfvBn9xpmuCl,Aloe Blacc,spotify:album:2e2K7qbaFSqnBQWvYmgS4L,Brooklyn In The Summer,spotify:artist:0id62QV2SZZfvBn9xpmuCl,Aloe Blacc,2018-05-11,https://i.scdn.co/image/ab67616d0000b273b63e6d81b3486f5801264707,1,1,208214,https://p.scdn.co/mp3-preview/9483262f2921ecad041f1707e0a39302527bbb92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,QMB8Q1400066,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,r&b",0.656,0.514,5.0,-5.27,1.0,0.0672,0.0914,0.0,0.058,0.818,120.073,4.0,,Interscope,"C © 2018 Aloe Blacc Recording, Inc., under exclusive license to XIX Recordings LLC/Interscope Records, P ℗ 2018 Aloe Blacc Recording, Inc., under exclusive license to XIX Recordings LLC/Interscope Records",5192 +5193,spotify:track:4WnYuVFXe6Si4fZqkxbnvS,Hold My Hand,spotify:artist:08ct2eZF5lUPdJpHwNKWof,Hootie & The Blowfish,spotify:album:5AYmpTfdv1OoASUJ5rZB7K,Cracked Rear View,spotify:artist:08ct2eZF5lUPdJpHwNKWof,Hootie & The Blowfish,1994-07-01,https://i.scdn.co/image/ab67616d0000b273820d2376b2fb84aa99823903,1,2,258333,https://p.scdn.co/mp3-preview/47458a9ca8d511ffaef159d18e286b1ac9e3a0b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT29400016,spotify:user:bradnumber1,2022-08-26T01:29:30Z,"pop rock,post-grunge",0.22,0.769,11.0,-5.125,1.0,0.054,0.208,0.0,0.0985,0.495,170.773,4.0,,Atlantic Records,"C © 1994 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved. Made in U.S.A. Warning: Unauthorized reproduction of this recording is prohibited by Federal law and subject to criminal prosecution. 82613-2, P ℗ 1994 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved. Made in U.S.A. Warning: Unauthorized reproduction of this recording is prohibited by Federal law and subject to criminal prosecution. 82613-2",5193 +5194,spotify:track:4Rugk1I0nE88JIbr7ApWK5,Gasoline Alley Bred,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:5ourevL93kFzjWH6lIyT42,20 Golden Greats,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1978-07-01,https://i.scdn.co/image/ab67616d0000b273759620a4e1348ace16d6c682,1,14,233840,https://p.scdn.co/mp3-preview/b27986330da0555346f65823049b95b157d51031?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBGYU7000004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.333,0.589,3.0,-11.416,1.0,0.035,0.22,7.18e-06,0.138,0.76,162.067,4.0,,BMG Rights Management (US) LLC,"C © 1978 BMG Rights Management (US) LLC, P ℗ 1978 BMG Rights Management (US) LLC",5194 +5195,spotify:track:5TrIHwld2ERD75B5TfceEt,These Days,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:5EmYAq4NagWeuaaEvzOmac,Odyssey Number Five,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2000-01-01,https://i.scdn.co/image/ab67616d0000b273c2c400c36db8870048859fe1,1,8,298973,https://p.scdn.co/mp3-preview/54e72acaa9ffada51da08c5f7c717b007027d34e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00010054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.156,0.446,9.0,-7.62,1.0,0.033,0.0368,0.0128,0.161,0.0942,83.806,4.0,,Universal Music Group,"C © 2000 Grudge Records Australia, A Universal Music Company, P ℗ 2000 Grudge Records Australia, A Universal Music Company",5195 +5196,spotify:track:63jNwcJ6BABHoxMNnvEt4A,When Your Love Is Gone,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:5Hw7vceIgo04O7AAq6RCcc,Hits,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1996,https://i.scdn.co/image/ab67616d0000b2733dd4fb220d9107082b3f858b,1,15,314200,https://p.scdn.co/mp3-preview/49a452d5d2c85f125c18e866bf953ae26c0253c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI09601010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.46,0.77,9.0,-3.678,1.0,0.0317,0.076,4.06e-05,0.314,0.481,164.009,4.0,,Bloodlines,"C 1996 Bloodlines, P 1996 Bloodlines",5196 +5197,spotify:track:2nr7Ueoj836o32p7105GbG,Freefallin' (Radio Edit),spotify:artist:16Mje1BDQmN1DWp4a94YOC,Zoë Badwi,spotify:album:21ec28CLjUhFi4R0bAf9Mt,Freefallin',spotify:artist:16Mje1BDQmN1DWp4a94YOC,Zoë Badwi,2010-09-18,https://i.scdn.co/image/ab67616d0000b273a26ac1d9aa7c9abff82426f8,1,1,196874,https://p.scdn.co/mp3-preview/6be4dd34839339b709d063e914cc20075845ebd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNE31000084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.528,0.93,8.0,-4.139,1.0,0.0903,0.152,0.0,0.356,0.22,127.932,4.0,,Neon Records,"C (C) 2010 Neon Records, P (P) 2010 Neon Records",5197 +5198,spotify:track:275KAjHjZOtnTVWZ2Kcr7k,Walking On The Moon,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:5vLIfhDpTmdyQ0YrlnXzSr,The Very Best Of Sting And The Police,"spotify:artist:0Ty63ceoRnnJKVEYP0VQpk, spotify:artist:5NGO30tJxFlKixkPSgXcFE","Sting, The Police",2002-01-01,https://i.scdn.co/image/ab67616d0000b273032ecf340e696eeb51b0e7a3,1,6,301813,https://p.scdn.co/mp3-preview/b5e467a9e818fe472c26171124e018560b843337?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM7900007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.658,0.355,2.0,-13.634,0.0,0.0405,0.00638,0.00598,0.228,0.417,145.928,4.0,,Universal Music Group,"C © 2002 A&M Records Inc., P ℗ 2002 A&M Records Inc.",5198 +5199,spotify:track:3aGYAW4jJUNzqNdYpY1N0T,6 Words,spotify:artist:0T2sGLJKge2eaFmZJxX7sq,Wretch 32,spotify:album:5E8KZ029okUIKWrrt0lZgD,6 Words,spotify:artist:0T2sGLJKge2eaFmZJxX7sq,Wretch 32,2015-01-23,https://i.scdn.co/image/ab67616d0000b273f4c8173b62e88ad878197e03,1,1,213999,https://p.scdn.co/mp3-preview/624919d88e7c8c3bb1b54e65f30bb57502092d1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBCEN1401028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grime,uk hip hop",0.496,0.726,5.0,-5.429,1.0,0.0655,0.381,2.95e-05,0.136,0.37,115.302,5.0,,Hussle,"C © 2014 Ministry of Sound Recordings Ltd., P ℗ 2014 Ministry of Sound Recordings Ltd., under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd.",5199 +5200,spotify:track:0KMGxYKeUzK9wc5DZCt3HT,If You Leave Me Now,spotify:artist:3iDD7bnsjL9J4fO298r0L0,Chicago,spotify:album:4asBn7hzIq2Ka7rDzJN24P,Chicago X,spotify:artist:3iDD7bnsjL9J4fO298r0L0,Chicago,1976-06-14,https://i.scdn.co/image/ab67616d0000b2731de27f12958ceb8b1f65461a,1,4,235373,https://p.scdn.co/mp3-preview/0c2f81d7582232eac12276cc093f67583b9a81d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USRH10285535,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,soft rock,yacht rock",0.434,0.563,11.0,-6.784,1.0,0.0268,0.0197,0.000824,0.128,0.275,104.183,4.0,,Rhino,"C © 2004 Warner Strategic Marketing., P ℗ 2004 Warner Strategic Marketing.",5200 +5201,spotify:track:2nIVheVpEYNABxmWsltzX1,Deeper Water,spotify:artist:1SyEBlvc4XJL7C41bDlt3R,Deadstar,spotify:album:4hXYUtljaHhnvkzUIkDDq6,Somewhere Over The Radio,spotify:artist:1SyEBlvc4XJL7C41bDlt3R,Deadstar,1999,https://i.scdn.co/image/ab67616d0000b2732e3e89964e1588984ed49085,1,2,264866,https://p.scdn.co/mp3-preview/30f307839476580534956d12a391ea20be9a38a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUMU09900023,spotify:user:bradnumber1,2022-11-20T23:08:11Z,australian alternative rock,0.487,0.875,7.0,-6.054,1.0,0.0301,0.000103,0.000483,0.0873,0.275,128.944,4.0,,WM Australia,"C © 1999 Mushroom Records, P ℗ 1999 Mushroom Records",5201 +5202,spotify:track:6F8eAnRFXeQwCMgWSMScgB,Pornstar,spotify:artist:2ZmmVo9SlM8XJH97UWEu7l,Amy Meredith,spotify:album:7BKUaIZLd76SofqrLIusog,Restless,spotify:artist:2ZmmVo9SlM8XJH97UWEu7l,Amy Meredith,2010-07-02,https://i.scdn.co/image/ab67616d0000b27399d7025a81839a8b0e7f4a15,1,2,196413,https://p.scdn.co/mp3-preview/3e07fd24a3e29d14b5b53964ac437850e8f279b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00900282,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.456,0.949,2.0,-3.692,1.0,0.15,0.00499,0.0,0.367,0.515,148.061,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd. except track 2 (P) 2009 Sony Music Entertainment Australia Pty Ltd.,5202 +5203,spotify:track:0qDUJiDCBIKn6n8km7KvUO,Je T'aime,spotify:artist:2Ri2A9I850gTv0k0a9O6MO,Abigail,spotify:album:4GjKYOvByCQI4rqLsRIOfC,The du Monde Years,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-03-03,https://i.scdn.co/image/ab67616d0000b273c277999169477ae768016116,1,12,204760,https://p.scdn.co/mp3-preview/2054eac00560c8f3174f583e41add8ae989fad6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,AULB41700036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.457,0.561,7.0,-10.309,0.0,0.029,0.552,0.505,0.362,0.631,81.383,4.0,,Southern Cross Music,"C 2017 Southern Cross Music, P 2017 Southern Cross Music",5203 +5204,spotify:track:3QvtXiPD5vlfWrb9FF42PB,Last Train to Trancentral (Live from the Lost Continent) [Us Version],spotify:artist:6dYrdRlNZSKaVxYg5IrvCH,The KLF,spotify:album:4MC0ZjNtVP1nDD5lsLxFjc,Songs Collection,spotify:artist:6dYrdRlNZSKaVxYg5IrvCH,The KLF,1992-08-03,https://i.scdn.co/image/ab67616d0000b27355346bc1f268730f607f9544,1,5,212752,,False,0,QMARG1760058,spotify:user:bradnumber1,2020-03-05T09:20:39Z,"acid house,ambient house,big beat,hip house",0.464,0.983,6.0,-9.968,0.0,0.0676,0.00323,0.276,0.81,0.286,122.647,4.0,,Jams Communications,"C 1992 Copyright Control, P 1992 Jams Communications",5204 +5205,spotify:track:4uUG5RXrOk84mYEfFvj3cK,I'm Good (Blue),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:64M6ah0SkkRsnPGtGiRAbb","David Guetta, Bebe Rexha",spotify:album:7M842DMhYVALrXsw3ty7B3,I'm Good (Blue),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:64M6ah0SkkRsnPGtGiRAbb","David Guetta, Bebe Rexha",2022-08-26,https://i.scdn.co/image/ab67616d0000b273933c036cd61cd40d3f17a9c4,1,1,175238,https://p.scdn.co/mp3-preview/c1de960c1a98f7ab652331e5223c50baba75c460?cid=9950ac751e34487dbbe027c4fd7f8e99,True,86,UKWLG2200055,spotify:user:bradnumber1,2022-08-31T00:29:21Z,"big room,dance pop,edm,pop,pop dance,dance pop,pop",0.561,0.965,7.0,-3.673,0.0,0.0343,0.00383,7.07e-06,0.371,0.304,128.04,4.0,,Parlophone UK,"C Under license to Warner Music UK Limited, © 2022 What A DJ Ltd, P Under license to Warner Music UK Limited, ℗ 2022 What A DJ Ltd",5205 +5206,spotify:track:2TjnCxxQRYn56Ye8gkUKiW,Desperado - 2013 Remaster,spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,spotify:album:09WBxbis5Sixt01FVMs8UM,Desperado (2013 Remaster),spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,1973-04-17,https://i.scdn.co/image/ab67616d0000b2732d73b1bb77cee09f0278be04,1,5,213712,https://p.scdn.co/mp3-preview/4aefef1e5008470e7d74ba3c2730b69e1b238959?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USEE11300307,spotify:user:bradnumber1,2022-08-26T01:22:07Z,"album rock,classic rock,heartland rock,mellow gold,rock,soft rock,yacht rock",0.228,0.224,7.0,-12.749,1.0,0.0311,0.946,0.000222,0.273,0.18,60.3,4.0,,Rhino/Elektra,"C © 1973 Asylum Records, P ℗ 1973 Asylum Records. Marketed by Warner Stategic Marketing, a Warner Music Group Company.",5206 +5207,spotify:track:1LD75COdR1n8jTIjommyS2,As Tears Go By - Mono Version,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:2p2xSwHP4rTPzNCaOveDIP,December’s Children (And Everybody’s),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1965-12-04,https://i.scdn.co/image/ab67616d0000b2737caed93c71f969a3aa69f041,1,9,165213,https://p.scdn.co/mp3-preview/c2a165f4f0ca5567bb7fa6351c2f5f62f0fffd2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USA176510290,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.331,0.277,7.0,-11.035,1.0,0.0295,0.723,0.00263,0.181,0.366,112.78,4.0,,"ABKCO Music and Records, Inc.","C © 2002 ABKCO Music & Records Inc., P ℗ 2002 ABKCO Music & Records Inc.",5207 +5208,spotify:track:5rwq6R0Uq0BngM3rdmCeNg,Collide - Acoustic Version,spotify:artist:0ekbDNE2eOq8QiaXM34wer,Howie Day,spotify:album:5OmZitvmVXYsjEXkTD3P6Y,Stop All the World Now (Special Edition),spotify:artist:0ekbDNE2eOq8QiaXM34wer,Howie Day,2003-11-04,https://i.scdn.co/image/ab67616d0000b2730be69a8375b7b1227f60bd61,1,15,277000,https://p.scdn.co/mp3-preview/e2bef2dff8818e9c409d9e6a9e4fb85eb789ccba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM10413799,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,neo mellow,pop rock",0.582,0.253,10.0,-11.43,1.0,0.0259,0.827,2.95e-05,0.091,0.294,90.186,4.0,,Epic,"P (P) 2003, 2004 Sony BMG Music Entertainment",5208 +5209,spotify:track:2yi3ApqTToRGeWwHBw3Zat,Runaway Boys,spotify:artist:2ibPkysx2PXqWLmxFD7jSg,Stray Cats,spotify:album:1EKPvDwIw66YEBF2TjOQn8,Stray Cats,spotify:artist:2ibPkysx2PXqWLmxFD7jSg,Stray Cats,1981-09-26,https://i.scdn.co/image/ab67616d0000b2739777ab5b0c73b096f4bb532f,1,1,180320,https://p.scdn.co/mp3-preview/01ff929705ac9ecf8a935aae6d7d7b28d3268783?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBARK8000013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"instrumental surf,rockabilly",0.374,0.724,1.0,-12.004,0.0,0.0366,0.0293,0.000195,0.314,0.649,178.261,4.0,,Arista,P (P)1981 Arista Records Ltd,5209 +5210,spotify:track:1lCRw5FEZ1gPDNPzy1K4zW,We Are The Champions - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:7tB40pGzj6Tg0HePj2jWZt,News Of The World (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1977-10-28,https://i.scdn.co/image/ab67616d0000b2731f7077ae1018b5fbab08dfa8,1,2,179200,https://p.scdn.co/mp3-preview/edb9b92942f6c44cea060e481d2f6fecff19fbb9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBUM71029619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.268,0.459,10.0,-6.94,1.0,0.0346,0.378,0.0,0.118,0.175,64.177,4.0,,EMI,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",5210 +5211,spotify:track:2G5Uvo1Qhnfr3fpJJlS4Ot,Mississippi - Single Version,spotify:artist:4O8NcI06slOnzcloI95qfe,John Phillips,spotify:album:5FOYvwWiyb1aF2qAKERuO7,John The Wolfking Of L.A.,spotify:artist:4O8NcI06slOnzcloI95qfe,John Phillips,2006-12-09,https://i.scdn.co/image/ab67616d0000b273506706426f4e3a5d64935232,1,18,187880,,False,0,US3M50675218,spotify:user:bradnumber1,2020-03-05T09:20:26Z,cosmic american,0.647,0.634,7.0,-9.681,1.0,0.0428,0.191,0.00487,0.507,0.962,96.178,4.0,,Varese,"C © 2006 John E. A. Phillips Trust, P ℗ 2006 Varese Sarabande Records, Inc.",5211 +5212,spotify:track:6nM9Sr6MPcfpqwQTD7PZGi,Wrapped Up (feat. Travie McCoy),"spotify:artist:3whuHq0yGx60atvA2RCVRW, spotify:artist:7o9Nl7K1Al6NNAHX6jn6iG","Olly Murs, Travie McCoy",spotify:album:0jD1tOJpP0Qz8UcLq3FFkr,Never Been Better (Deluxe),spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2014-11-21,https://i.scdn.co/image/ab67616d0000b2739bf59f7a0e061de08140d425,1,2,185640,https://p.scdn.co/mp3-preview/d09e87b87859bdec216d5e6e84c5325b847d21da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1400826,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop,pop rap",0.787,0.848,1.0,-4.696,1.0,0.0549,0.0915,0.0,0.15,0.947,121.989,4.0,,Epic,P (P) 2014 Sony Music Entertainment UK Limited,5212 +5213,spotify:track:6WCeFNVAXUtNczb7lqLiZU,Crocodile Rock,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:1reJ8DttK5EGwdyf7y9FBR,Don't Shoot Me I'm Only The Piano Player,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1973-01-22,https://i.scdn.co/image/ab67616d0000b273f67fbf0d465cca2b3e25af96,1,9,235440,https://p.scdn.co/mp3-preview/d3765af7908ffc35ba5c4e8dc04e17013effa486?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBAMB7200001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.621,0.8,4.0,-7.284,0.0,0.0344,0.0264,1.53e-05,0.059,0.968,149.908,4.0,,EMI,"C © 1995 Mercury Records Limited, P This Compilation ℗ 1973 This Record Company Ltd.",5213 +5214,spotify:track:6KqWBiEZxRmPPGDc0PkRoV,Venus,spotify:artist:3sc7iUG1Wwpwx7bHeZolgx,Bananarama,spotify:album:2vDObObqBd5ivU4g0RmP4v,True Confessions (Platinum Re-Issue),spotify:artist:3sc7iUG1Wwpwx7bHeZolgx,Bananarama,1986,https://i.scdn.co/image/ab67616d0000b2734bc4108a4cf097ed123b94e7,1,6,229164,https://p.scdn.co/mp3-preview/d123a2e42246dd400e8f5c42c7d25ff576dcc6e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP9600095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,hi-nrg,new romantic,new wave,new wave pop,soft rock",0.722,0.961,9.0,-4.812,1.0,0.0514,0.0883,0.61,0.278,0.91,126.113,4.0,,Rhino,"C 2007 London Records 90 Ltd, P 2007 This compilation: (P) 2007 London Records 90 Ltd",5214 +5215,spotify:track:64uuZJe9IxX3Fjuz3AJbID,Why Do You Lie To Me,"spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:5Wg2b4Mp42gicxEeDNawf7, spotify:artist:5f7VJjfbwm532GiveGC0ZK","Topic, A7S, Lil Baby",spotify:album:1dmSfK9xlrXuWCATb2mMEu,Why Do You Lie To Me,"spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:5Wg2b4Mp42gicxEeDNawf7","Topic, A7S",2020-08-28,https://i.scdn.co/image/ab67616d0000b273bb1c28bf6c03239fb32d6269,1,1,171054,https://p.scdn.co/mp3-preview/d3b4b40d67ec23b06d890196a1e701904d2c2823?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEUM72004630,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german dance,pop dance,pop edm,uk dance,pop dance,scandipop,atl hip hop,atl trap,rap,trap",0.664,0.778,4.0,-5.995,0.0,0.158,0.0553,0.0,0.174,0.343,120.048,4.0,,Virgin,"C © 2020 Topic, under exclusive license to Universal Music GmbH, P A Virgin Records release; ℗ 2020 Topic, under exclusive license to Universal Music GmbH",5215 +5216,spotify:track:5ScGaVnhdNugKAe12sgBbE,Chemical Heart,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,spotify:album:4yWWn7gZzmPzxhoeCT0UUS,Chemical Heart,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,2002-01-01,https://i.scdn.co/image/ab67616d0000b2732c3be58e946a18bca1f284ed,1,1,280106,https://p.scdn.co/mp3-preview/b1f08126d6a1367d1a2436c470d31bdfd0bdeb2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUUM00130067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian psych,australian rock",0.472,0.609,0.0,-7.398,1.0,0.0276,0.00689,0.0,0.157,0.379,153.945,4.0,,Universal Music Australia Pty. Ltd.,"C © 2002 Universal Music Australia Pty Ltd., P ℗ 2002 Universal Music Australia Pty Ltd.",5216 +5217,spotify:track:7Dm3dV3WPNdTgxoNY7YFnc,The Chain - 2004 Remaster,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:1bt6q2SruMsBtcerNVtpZB,Rumours,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1977-02-04,https://i.scdn.co/image/ab67616d0000b27357df7ce0eac715cf70e519a7,1,7,269813,https://p.scdn.co/mp3-preview/93de8b97f51f60e086c141c9d27622ab37944cc3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USWB10400053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.522,0.755,9.0,-6.95,1.0,0.0524,0.0517,6.63e-05,0.0781,0.637,151.796,4.0,,Rhino/Warner Records,"C © 2004 Warner Records Inc., P ℗ 2004 Warner Records Inc.",5217 +5218,spotify:track:5tf1VVWniHgryyumXyJM7w,Sugar (feat. Francesco Yates),"spotify:artist:3t5xRXzsuZmMDkQzgOX35S, spotify:artist:5X1JzPIIonP3u9lA580pPT","Robin Schulz, Francesco Yates",spotify:album:5XyJzEROSmup2TcWmVjTIt,Sugar,spotify:artist:3t5xRXzsuZmMDkQzgOX35S,Robin Schulz,2015-09-25,https://i.scdn.co/image/ab67616d0000b2733c9047f9aa5d0d1e03827039,1,2,219043,https://p.scdn.co/mp3-preview/702017a73955b159f7da9108fff25bcac045b8d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,DEA621501057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep euro house,deep house,edm,german dance,pop dance,tropical house,canadian pop",0.636,0.815,5.0,-5.098,0.0,0.0581,0.0185,0.0,0.163,0.636,123.063,4.0,,Tonspiel,"C © 2015 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company, P ℗ 2015 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company",5218 +5219,spotify:track:6rLqjzGV5VMLDWEnuUqi8q,Dancing In The Street,spotify:artist:1Pe5hlKMCTULjosqZ6KanP,Martha Reeves & The Vandellas,spotify:album:3lFGAL3WruNTdBXfct7ZbZ,Dance Party,spotify:artist:1Pe5hlKMCTULjosqZ6KanP,Martha Reeves & The Vandellas,1965-01-01,https://i.scdn.co/image/ab67616d0000b273fc466e0c9ac165ac85ddbedf,1,1,165226,https://p.scdn.co/mp3-preview/6c26960ba87ad8f8b4ae0ed884804d3da13c57b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USMO16400446,spotify:user:bradnumber1,2023-02-14T22:24:41Z,"classic girl group,classic soul,motown,soul,southern soul",0.556,0.57,2.0,-9.472,1.0,0.0393,0.0118,0.000526,0.198,0.304,126.01,4.0,,UNI/MOTOWN,"C © 1965 UMG Recordings, Inc., P ℗ 1965 UMG Recordings, Inc.",5219 +5220,spotify:track:2iUXsYOEPhVqEBwsqP70rE,Youngblood,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:2D0Hi3Jj6RFnpWDcSa0Otu,Youngblood (Deluxe),spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2018-06-15,https://i.scdn.co/image/ab67616d0000b27341aa6776dc15fbd71a2b4557,1,1,203417,https://p.scdn.co/mp3-preview/87357ede3ba123385a24c959696a6512b878430c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBUM71800366,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.597,0.854,7.0,-5.114,0.0,0.463,0.0169,0.0,0.124,0.152,120.276,4.0,,Capitol,"C © 2018 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited, P ℗ 2018 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited",5220 +5221,spotify:track:5edBgVtRD0fvWk140Sl21T,Counting Stars,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:1Cm6wsvnTlOXrfI9PkD8i4,Native,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2013-01-01,https://i.scdn.co/image/ab67616d0000b2730dcd4d3fb73a5d9ba449a5f3,1,1,257266,https://p.scdn.co/mp3-preview/6316f6cf12631da62c5b786421b25e66c3ab4ea6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUM71301306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.662,0.71,1.0,-4.945,0.0,0.0364,0.0603,0.0,0.119,0.465,121.979,4.0,,Universal Music Group,"C © 2013 Mosley Music/Interscope Records, P ℗ 2013 Mosley Music/Interscope Records",5221 +5222,spotify:track:0ahoy8jrLmwsLDkgu1yV9U,Oh No Not You Again - Remastered,spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,spotify:album:5FCC3e09sFPqZrXfozCXhF,Sirocco (Remastered),spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,1981-01-01,https://i.scdn.co/image/ab67616d0000b273be12aec8b32a132da28d3e3b,1,4,308746,https://p.scdn.co/mp3-preview/820295f0acfb5eba7ba8d6308c3164d4c240dc40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,AUUM71301823,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.673,0.732,2.0,-6.989,1.0,0.0255,0.0908,0.0,0.254,0.778,118.763,4.0,,Universal,"C © 2014 Universal Music Australia Pty Ltd., P ℗ 1981 Universal Music Australia Pty Ltd.",5222 +5223,spotify:track:0SLtqCrXBRrnkxSOMA3X4W,Let Me Entertain You,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:31Sx9uz9KqlvmX07Pvp0wN,Life Thru A Lens,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,1997-01-01,https://i.scdn.co/image/ab67616d0000b273c36cf94d717475042f6bb0f3,1,8,262000,https://p.scdn.co/mp3-preview/83bdc1dde65e0e007c56334b6e87e4d985ef3082?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAYE9701083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.478,0.965,10.0,-5.022,1.0,0.0642,0.000169,0.00251,0.0854,0.347,125.152,4.0,,Universal-Island Records Ltd.,"C © 2013 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2013 Universal Island Records, a division of Universal Music Operations Limited",5223 +5224,spotify:track:6XYktvAOFBlDr4TUKHUxPS,Our Winter Love,spotify:artist:1kuS9H3D0hmnPHIa96VAS9,Bill Pursell,spotify:album:7MFB27HYNDTUAddZIT8Oc5,Our Winter Love,spotify:artist:1kuS9H3D0hmnPHIa96VAS9,Bill Pursell,2014-01-13,https://i.scdn.co/image/ab67616d0000b273fb3e7746e273d0c0b935bd22,1,1,148212,https://p.scdn.co/mp3-preview/235b992b7129214074f9b7cfc8221813c6261dfd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,FR6V82164585,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.434,0.149,1.0,-15.618,1.0,0.0282,0.87,0.812,0.0911,0.306,76.455,4.0,,JB Production,"C JB Production, P JB Production",5224 +5225,spotify:track:600aa3duGYN8cI3tnkt4Y4,Gimme Little Sign,spotify:artist:4zVfvSWs6FvSD6B5lQGs2S,Peter Andre,spotify:album:3I21H0IlgMGXL4N20TCaxH,Peter Andre,spotify:artist:4zVfvSWs6FvSD6B5lQGs2S,Peter Andre,1993-01-01,https://i.scdn.co/image/ab67616d0000b273d46d312e6bfeb0cce2993107,1,10,206442,https://p.scdn.co/mp3-preview/f7daee6c02b26c5e30a4139298c811ec7c89af72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUMU09300030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.706,0.807,10.0,-7.719,0.0,0.0387,0.000683,0.016,0.203,0.766,108.755,4.0,,WM Australia,"C © 1993 Melodian Records Pty Ltd, P ℗ 1993 Melodian Records Pty Ltd",5225 +5226,spotify:track:3GfOAdcoc3X5GPiiXmpBjK,Song 2,spotify:artist:7MhMgCo0Bl0Kukl93PZbYS,Blur,spotify:album:1bgkxe4t0HNeLn9rhrx79x,Blur: The Best Of,spotify:artist:7MhMgCo0Bl0Kukl93PZbYS,Blur,2000-10-23,https://i.scdn.co/image/ab67616d0000b27334cbf7013afccc7df67fa43f,1,2,121880,https://p.scdn.co/mp3-preview/292139885ad767b4b8f01d18a4bb437d0075cdf9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAYE9600015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,britpop,madchester,permanent wave,rock",0.658,0.709,8.0,-6.736,1.0,0.0904,0.00188,0.00447,0.0657,0.855,129.701,4.0,,Parlophone UK,"C © 2000 Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 2000 Parlophone Records Ltd, P ℗ 2000 The copyright in this compilation is owned by Parlophone Records Ltd",5226 +5227,spotify:track:1p6rk9R8SCum97WnvGNt6O,I Love You Always Forever,spotify:artist:0t3QQl52F463sxGXb1ckhB,Betty Who,spotify:album:3hB9OJw377uPbysIRkNjfF,I Love You Always Forever,spotify:artist:0t3QQl52F463sxGXb1ckhB,Betty Who,2016-06-03,https://i.scdn.co/image/ab67616d0000b2732ca40678cd6a213773c8a48f,1,1,222957,https://p.scdn.co/mp3-preview/7d3d1e5cf74e8bd6b7906767ccf7f1eb94848f4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USRC11601058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,dance pop,electropop,metropopolis",0.532,0.613,0.0,-7.64,1.0,0.0576,0.326,0.0,0.292,0.493,106.081,4.0,,RCA Records Label,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",5227 +5228,spotify:track:2MvTUatppQVNsis0xnsWXi,Peggy Sue,"spotify:artist:3wYyutjgII8LJVVOLrGI0D, spotify:artist:4r7JUeiYy24L7BuzCq9EjR","Buddy Holly, The Crickets",spotify:album:1tTTDe47X0rTO4q7RidIan,The Definitive Collection,spotify:artist:3wYyutjgII8LJVVOLrGI0D,Buddy Holly,2006-04-18,https://i.scdn.co/image/ab67616d0000b273988665e0435d5283cfd38b1d,1,10,148546,https://p.scdn.co/mp3-preview/5a52275c718957099ab02fa41d0034e1034d7ed7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USMC15703180,spotify:user:bradnumber1,2022-01-12T23:09:22Z,"classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,doo-wop,rock-and-roll,rockabilly",0.693,0.394,9.0,-10.263,1.0,0.033,0.93,1.53e-05,0.121,0.657,148.806,4.0,,Geffen,"C © 2006 UMG Recordings, Inc., P This Compilation ℗ 2006 UMG Recordings, Inc.",5228 +5229,spotify:track:4kyD6BInAY3o9LFBShenzn,Rich,spotify:artist:3PGiywHOqNwJ1bv4S3fgZF,Big Yavo,spotify:album:6NlERu10nQMrPqP9ZRQDMv,On God II,spotify:artist:3PGiywHOqNwJ1bv4S3fgZF,Big Yavo,2021-06-18,https://i.scdn.co/image/ab67616d0000b2732a0f57e8fd9477c93ae77ee9,1,4,141000,https://p.scdn.co/mp3-preview/a3d9354cfcede2c1dfa05825bd1fcd98f8adb87b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,24,QMKSC2101514,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alabama rap,0.862,0.645,11.0,-8.288,1.0,0.437,0.0115,0.0,0.206,0.552,140.117,4.0,,Cinematic Music Group,"C © 2021 Cinematic Music Group / Gorilla Gang, P ℗ 2021 Cinematic Music Group / Gorilla Gang",5229 +5230,spotify:track:6L0lc5CsefJjumnnbU94qv,It's Not Over,spotify:artist:4a8lth8CeT9IQYFWAwXJCx,Rockmelons,spotify:album:0Hr5pYpc4oW2drfD62oqMr,Form One Planet,spotify:artist:4a8lth8CeT9IQYFWAwXJCx,Rockmelons,2015-06-19,https://i.scdn.co/image/ab67616d0000b273f4d67354ad52440ba0bf4932,1,4,388000,https://p.scdn.co/mp3-preview/bec7a382463a278f90441726277574fdeaeba5c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUMU09200044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.575,0.577,10.0,-14.909,0.0,0.033,0.178,0.000125,0.0461,0.751,83.071,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 The Rockmelons, P ℗ 2015 The Rockmelons",5230 +5231,spotify:track:3oobWqIgYrSRg18uqRuPIF,Superstar,spotify:artist:3f5W9NEwkc1SAIPFuumcaf,Jamelia,spotify:album:0XUV61T420G79IxYhTzrX7,Thank You,spotify:artist:3f5W9NEwkc1SAIPFuumcaf,Jamelia,2003-06-30,https://i.scdn.co/image/ab67616d0000b2733c0f5882f5ad3bc6fa4e2b8d,1,1,215480,https://p.scdn.co/mp3-preview/358d988a49cb3b5d627b0c36564a2d3a38149505?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAYE0202055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,europop,talent show",0.801,0.645,1.0,-6.93,1.0,0.0356,0.0457,0.0,0.0357,0.824,110.01,4.0,,Woah Dad!,"C 2003 Woah Dad!, P 2003 Woah Dad!",5231 +5232,spotify:track:6iIDSE4gBXuq5ZOkXjyLYl,Don't Fight It,spotify:artist:1kmmvExwG8zvYSADt6V09T,The Panics,spotify:album:21qkOAP6AH5zGH3OyCmfAi,Cruel Guards (Standard Edition),spotify:artist:1kmmvExwG8zvYSADt6V09T,The Panics,2007-10-20,https://i.scdn.co/image/ab67616d0000b273187754d21a57be7fca7c37ea,1,4,301186,https://p.scdn.co/mp3-preview/a2964055e397bb9457cc4e8d87f7528fec8e5d9e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70700604,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.4,0.464,4.0,-7.428,1.0,0.048,0.477,0.0166,0.121,0.152,178.918,4.0,,Universal Music,"C (C) 2007 Dew Process/Universal Music Australia, P (P) 2007 Dew Process/Universal Music Australia",5232 +5233,spotify:track:60lwJa695S26FsYbhCVFVa,Hurts So Good,spotify:artist:3AVfmawzu83sp94QW7CEGm,Astrid S,spotify:album:5xzkyCZ5LEOmI3a3bvrNIa,Astrid S,spotify:artist:3AVfmawzu83sp94QW7CEGm,Astrid S,2016-05-20,https://i.scdn.co/image/ab67616d0000b273eb65850941ef56d36318a1a8,1,2,208728,https://p.scdn.co/mp3-preview/4a22f88fd5338f7b6efa56453b8c9c69cd74d94e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NOUM71600843,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,norwegian pop,pop,uk pop",0.681,0.594,7.0,-4.986,0.0,0.0486,0.0777,0.0,0.0961,0.417,120.141,4.0,,Universal Music Group,"C © 2016 Universal Music A/S, P ℗ 2016 Universal Music A/S",5233 +5234,spotify:track:5JpOV1GfgLcKc2lzR6lywq,Cheap Thrills,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:1ZMYMTP0S4hp9AlGkAWWjt,Cheap Thrills,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2015-12-17,https://i.scdn.co/image/ab67616d0000b2731e6901561bb0cd5697cbfded,1,1,210973,https://p.scdn.co/mp3-preview/9143b32f6e1928b204708ce605e0ba42dc84b7c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USRC11502935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.629,0.698,6.0,-5.639,0.0,0.103,0.0472,0.00152,0.0949,0.73,89.969,4.0,,Monkey Puzzle Records/RCA Records,"P (P) 2015 Monkey Puzzle Records, under exclusive license to RCA Records",5234 +5235,spotify:track:5QiLMbkYocbcJeAc5QP948,Bend It,spotify:artist:3tKmZgJAXrog8SnYpzWSbe,"Dave Dee\, Dozy\, Beaky\, Mick & Tich",spotify:album:0kjuhBY6qEv4uEQiOarbRb,Dave Dee Dozy Beaky Mick & Tich,spotify:artist:3tKmZgJAXrog8SnYpzWSbe,"Dave Dee\, Dozy\, Beaky\, Mick & Tich",2006-02-27,https://i.scdn.co/image/ab67616d0000b273e67dc67dcf25c0c46efa7e6e,1,1,152266,https://p.scdn.co/mp3-preview/51cfb89add30365d0c3e23e76718bfd905c30984?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,NLA240305202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.626,0.369,2.0,-8.491,1.0,0.0514,0.293,0.000211,0.0733,0.701,115.831,4.0,,CNR Entertainment BV,"C CNR Music B.V., P CNR Music B.V.",5235 +5236,spotify:track:33LC84JgLvK2KuW43MfaNq,"My Heart Will Go On - Love Theme from ""Titanic""",spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:1tfS7Fo1UtAxQSf256fnYs,Let's Talk About Love,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1997-11-14,https://i.scdn.co/image/ab67616d0000b273def7146ca744f3b1bf838404,1,12,280000,https://p.scdn.co/mp3-preview/68c13229ec9b1b4a5ea580e801061fd7791857c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,CAC229700120,spotify:user:bradnumber1,2023-03-22T00:05:45Z,canadian pop,0.428,0.276,4.0,-11.729,1.0,0.0312,0.732,5.33e-06,0.117,0.0382,99.195,1.0,,Columbia,P (P) 1997 Sony Music Entertainment Canada Inc.,5236 +5237,spotify:track:4gJAWJnE5cvAAWyTMTxgdY,You Are The Reason - Duet Version,"spotify:artist:6ydoSd3N2mwgwBHtF6K7eX, spotify:artist:5lKZWd6HiSCLfnDGrq9RAm","Calum Scott, Leona Lewis",spotify:album:3SMV4ooENmCNDQHXa23gRa,You Are The Reason (Duet Version),"spotify:artist:6ydoSd3N2mwgwBHtF6K7eX, spotify:artist:5lKZWd6HiSCLfnDGrq9RAm","Calum Scott, Leona Lewis",2018-02-09,https://i.scdn.co/image/ab67616d0000b27338f2aeb626d3cb61893181e8,1,1,190299,https://p.scdn.co/mp3-preview/da4717697952362ca1da495510503a70771e02b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71801246,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,british soul,dance pop,pop,talent show",0.379,0.329,10.0,-8.796,1.0,0.0301,0.447,0.0,0.148,0.127,171.09,3.0,,Universal Music Group,"C © 2018 Capitol Records, P ℗ 2018 Capitol Records",5237 +5238,spotify:track:2yiZyjMEByt9sJBZWnWaDR,Bye Bye Bye,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,spotify:album:7MNoY9pyL6QnnVNeV3XfVR,Greatest Hits,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,2005-10-21,https://i.scdn.co/image/ab67616d0000b27377d7eb27ad62530422db5b8e,1,1,199640,https://p.scdn.co/mp3-preview/f8e804845748b8a50d02ca783a700574d4814605?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USJI10000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.571,0.87,8.0,-3.877,0.0,0.0644,0.0198,6.57e-06,0.0564,0.811,172.716,4.0,,Jive,P This compilation (P) 2005 Zomba Recording LLC,5238 +5239,spotify:track:6aOKVfqnOFeglptmhhL6bG,Gangsta,spotify:artist:2zFZiWQJFFshzojycnXoTL,Bell Biv DeVoe,spotify:album:73DKYrTQukL4iHrDoqt7he,Crave Volume 5,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b2738a9194b447167cdf4b6ad98f,3,3,260945,https://p.scdn.co/mp3-preview/7aa43df86b446be11f658703c4708fdaba0438c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19240070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.743,0.813,1.0,-8.806,1.0,0.0706,0.00262,0.0489,0.227,0.694,111.168,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Universal Music Australia Pty Ltd., P This Compilation ℗ 2010 Universal Music Australia Pty Ltd.",5239 +5240,spotify:track:3Z2tPWiNiIpg8UMMoowHIk,We Are The World,spotify:artist:7sF6m3PpW6G6m6J2gzzmzM,U.S.A. For Africa,spotify:album:2O6gXGWFJcNrLYAqDINrDa,We Are The World,spotify:artist:7sF6m3PpW6G6m6J2gzzmzM,U.S.A. For Africa,1985-01-01,https://i.scdn.co/image/ab67616d0000b273920f421260033ee54865d673,1,1,427333,https://p.scdn.co/mp3-preview/2157889701d1e849f5ee7c5c2b58578d9a9652d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,US25T8511672,spotify:user:bradnumber1,2021-08-08T09:26:31Z,musical advocacy,0.528,0.447,4.0,-15.255,1.0,0.0435,0.189,0.0,0.0745,0.292,72.58,4.0,,USA for Africa,"C (C) 1985 USA for Africa, P (P) 1985 USA for Africa",5240 +5241,spotify:track:4bk78jvK8Fe9YHqruOJW0v,Get the Party Started,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:03pT16iWbhVKpDodI37D8b,M!ssundaztood,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2001-11-16,https://i.scdn.co/image/ab67616d0000b2730516080f83d31290bcd9773e,1,4,191666,https://p.scdn.co/mp3-preview/8d0a2dd9c081c59db027f235d8baf1a2cec602c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR10100717,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.806,0.902,11.0,-3.387,0.0,0.0475,0.00127,0.0,0.212,0.961,128.943,4.0,,Arista,"P (P) 2001 RCA/JIVE Label Group, a unit of Sony Music Entertainment",5241 +5242,spotify:track:397sjadktaQXJbur7QFdNO,Chains,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,spotify:album:0NLEDUOmZQ4dvh0mIa7iQe,Don't Ask,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,1994-04-30,https://i.scdn.co/image/ab67616d0000b273ab4332b95c9425e87aa06238,1,1,262133,https://p.scdn.co/mp3-preview/b10b3f6ca7805989cffbfb36f27e4c44cdbe9bec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUSM09600080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.684,0.464,0.0,-9.37,0.0,0.0298,0.267,0.00103,0.0994,0.55,92.132,4.0,,Epic,P 1994 Sony Music Entertainment (Australia) PTY. Ltd.,5242 +5243,spotify:track:0Qv7xi6uPSqH2k82tOkGSt,Mad World,spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,spotify:album:3sIFpEctox1XOs3FEkqrgr,The Hurting,spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,1983-03-07,https://i.scdn.co/image/ab67616d0000b27345546ed4af1a0d4c58a8ff50,1,2,215400,https://p.scdn.co/mp3-preview/68f5b15d3bcf47016ffef8fceaa528eb26f10a18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBF088200040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,rock,sophisti-pop,synthpop",0.628,0.907,4.0,-6.047,1.0,0.0412,0.0471,0.0579,0.0635,0.954,118.724,4.0,,EMI,"C © 1999 Mercury Records Limited, P This Compilation ℗ 1999 Mercury Records Limited",5243 +5244,spotify:track:7L7DgjhqnYYuIfgyhKTcxs,Lies,spotify:artist:3L13VZ9rCpmR1p7p6A2WGu,The Knickerbockers,spotify:album:7uKWPUXqgyvhx9XBJ9t6WW,Rockin'! with the Knickerbockers,spotify:artist:3L13VZ9rCpmR1p7p6A2WGu,The Knickerbockers,1997,https://i.scdn.co/image/ab67616d0000b27382fc75133ddad4b231f53ea6,1,1,167026,https://p.scdn.co/mp3-preview/882e646b678933f500e668658d8468260eb7beea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USATV0400115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic garage rock,0.493,0.83,4.0,-7.104,0.0,0.0316,0.449,0.0,0.253,0.915,145.843,4.0,,Sundazed Music / Modern Harmonic,"C 1997 Sundazed Music, P 1997 SONY/ATV ACUFF ROSE",5244 +5245,spotify:track:2c1upHOAHb35yh0ArhS2rE,Fools Rush In,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,spotify:album:1ofseNwr8KVVThuO1A8vMl,Rick Nelson Sings For You,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,1963-01-01,https://i.scdn.co/image/ab67616d0000b2730b121a212dd48b3cf947e829,1,2,154360,https://p.scdn.co/mp3-preview/cbacd20e7d8c997d0572c69ba91e17b3628891db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16313247,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,doo-wop,rock-and-roll,rockabilly",0.451,0.654,9.0,-10.239,1.0,0.035,0.0245,1.5e-05,0.207,0.869,119.878,4.0,,Universal Music Group,"C © 1963 Geffen Records, P ℗ 1963 Geffen Records",5245 +5246,spotify:track:4AVRF0HQlBh62hgE3s3R75,Right Type of Mood,spotify:artist:5PfGQ1ZADHPl42iFtJX1wF,HERBIE,spotify:album:2KkZKAzcM4njK2nD7TGQwA,Fingers,spotify:artist:5PfGQ1ZADHPl42iFtJX1wF,HERBIE,1995-04-25,https://i.scdn.co/image/ab67616d0000b273362304407e2c66083bcbd6b4,1,1,193666,https://p.scdn.co/mp3-preview/f6c864e26b2ad7fd3f3de03fa2a301d8425ca7e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,SEPAS1600023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.698,0.932,4.0,-7.484,1.0,0.0503,0.0233,0.000261,0.399,0.836,150.02,4.0,,Columbia,P (P) 1995 Sony Music Entertainment Sweden AB,5246 +5247,spotify:track:1jdYw3H8GOCSnA0mDxhqQO,The Power Of Love - Remix Edit,spotify:artist:3JQyV3wkc3mUPwSvy42ozl,Beverlee,spotify:album:3EF3HIHPRKy9i7e0oMwmks,House The 80s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-05-01,https://i.scdn.co/image/ab67616d0000b273194e4a2bbd2d96530924a11a,1,28,184163,https://p.scdn.co/mp3-preview/bb238f2bbd1c30d9532fb84b869848f02a2b593f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,DEB551219067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.692,0.85,7.0,-4.739,1.0,0.194,0.0401,1.33e-06,0.305,0.754,130.01,4.0,,Sounds United,"C 2012 Sounds United Records, P 2012 Sounds United Records",5247 +5248,spotify:track:2d7fRuDlFZfKIoSuf8bhGv,3,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:2ti2e8J05nwg9ikcMjW8aS,The Essential Britney Spears,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2014-07-29,https://i.scdn.co/image/ab67616d0000b273e2d88ce9b368639664aa7847,2,12,205533,https://p.scdn.co/mp3-preview/8afd65d7ae176517f9cf20acef003638833b59f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USJI10900602,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.701,0.72,5.0,-1.948,0.0,0.0475,0.0518,0.0,0.199,0.761,134.962,4.0,,Jive/Legacy,"P This Compilation (P) 2013 RCA Records, a division of Sony Music Entertainment",5248 +5249,spotify:track:0HMjXBAZmSYOTTi33WpMso,History,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:1gMxiQQSg5zeu4htBosASY,Made In The A.M. - Deluxe Edition,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2015-11-13,https://i.scdn.co/image/ab67616d0000b273241e4fe75732c9c4b49b94c3,1,13,187426,https://p.scdn.co/mp3-preview/f84f8f2935178b89d417086a35eadf0824ee4f9e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBHMU1500114,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.655,0.697,11.0,-4.421,1.0,0.0493,0.0359,0.0,0.0646,0.802,86.704,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,5249 +5250,spotify:track:6VtSR2Nw3IozhsRmsKzIET,Better - Remastered,spotify:artist:3vgQA38yGGMvn4DHjsVre5,The Screaming Jets,spotify:album:23oBYIND4OaOyAJMzg2iHW,Hits & Pieces,spotify:artist:3vgQA38yGGMvn4DHjsVre5,The Screaming Jets,1999,https://i.scdn.co/image/ab67616d0000b273e265ff97933ca59efd4ea6c1,1,2,277680,https://p.scdn.co/mp3-preview/49614e4830696f2627193491bc8bb9bb73d0e841?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUBM09920202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.486,0.819,2.0,-5.334,1.0,0.0711,0.000226,0.0,0.0366,0.439,101.536,4.0,,rooArt,"P (P) 1991, 1992, 1995, 1997, 1999 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED",5250 +5251,spotify:track:4Ekg9NEwMbyJ9jzbgEEJZM,Nightmare (Sinister Strings Mix),spotify:artist:79U8DYZtwF1YIh5tn5bDwW,Brainbug,spotify:album:2HFZiSZJoBzDVO57f19v2o,Nightmare (Classic Remixes Volume 1),spotify:artist:79U8DYZtwF1YIh5tn5bDwW,Brainbug,2012-12-06,https://i.scdn.co/image/ab67616d0000b27326188e9bf4aa768a7dce9f44,1,1,409866,https://p.scdn.co/mp3-preview/e25cfe8491ab05d7f7616845bf20aa2b913f79ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,ITC059710064,spotify:user:bradnumber1,2021-08-08T09:26:31Z,italian trance,0.713,0.988,0.0,-5.455,0.0,0.0338,0.0276,0.0255,0.102,0.0354,134.04,4.0,,Attiva sas,P Attiva sas under exclusive license to Pirames International Srl,5251 +5252,spotify:track:1lJZSsMoWEbrgaY6CxPMf8,Would I Lie to You? - Remastered Version,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",spotify:album:2tbXCl8en5ZDVnHIk1OZGI,Be Yourself Tonight,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",1985-04-29,https://i.scdn.co/image/ab67616d0000b2738b9d4820655b6bf032ed41f3,1,1,268240,https://p.scdn.co/mp3-preview/6abdba39bc8fee122bb42ede57085f6c32b043f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBARL0300616,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard",0.613,0.912,2.0,-4.638,1.0,0.0328,0.0378,3.65e-05,0.52,0.733,131.968,4.0,,RCA Records Label,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,5252 +5253,spotify:track:2fja4gHzPsIXiK4bMeU0hN,Listen to the Music,spotify:artist:39T6qqI0jDtSWWioX8eGJz,The Doobie Brothers,spotify:album:32xyhzHlGGsDvs1E7qihRA,Best of The Doobies,spotify:artist:39T6qqI0jDtSWWioX8eGJz,The Doobie Brothers,1976-10-29,https://i.scdn.co/image/ab67616d0000b273338ef055d7501cf241e7437e,1,4,227173,https://p.scdn.co/mp3-preview/644776ab9d2025b8bb2a2bef4cb3b85169dec555?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB10902078,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,mellow gold,rock,singer-songwriter,soft rock,yacht rock",0.643,0.526,1.0,-15.147,0.0,0.0349,0.214,4.21e-06,0.069,0.881,105.922,4.0,,Rhino/Warner Records,"C © 1976 Warner Records Inc., P ℗ 1976 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",5253 +5254,spotify:track:2d5vz9uU5Jan1rX8mkxw2w,Manhattan,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:5CZR6ljD0x9fTiS4mh9wMp,Only By The Night,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2008-09-23,https://i.scdn.co/image/ab67616d0000b2732519d01c0cca06f134eeadd8,1,5,204226,https://p.scdn.co/mp3-preview/74b3c74010be755698ff91b551bd88d22f1d149c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USRC10800307,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.497,0.802,9.0,-5.807,1.0,0.0404,0.0154,0.000219,0.0775,0.402,112.287,4.0,,RCA/Legacy,"P (P) 2008 RCA Records, a division of Sony Music Entertainment",5254 +5255,spotify:track:5juT8DyDF6RwjxG2FkC4Sl,Do You Wanna Be - Single Version,spotify:artist:3XPRtRLPlhM1KHk3P1vQ3G,I'm Talking,spotify:album:3vRIiH3fltcWxUFtAbTBw6,Bear Witness (Collectors Edition),spotify:artist:3XPRtRLPlhM1KHk3P1vQ3G,I'm Talking,2018-03-23,https://i.scdn.co/image/ab67616d0000b273c99551af2739488020fb7a4d,1,27,250902,https://p.scdn.co/mp3-preview/cc54fcea3563740807fc3cc9bff069a2c404b432?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01713790,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian r&b,0.655,0.949,11.0,-5.588,0.0,0.0654,0.0327,0.723,0.161,0.619,120.009,4.0,,Bloodlines,"C 2017 Bloodlines, P 2017 Bloodlines",5255 +5256,spotify:track:0l3GEbH3CviUytD6iX4wzg,Right Thurr,spotify:artist:3s2wTjWxK8NOX09dmsvVOh,Chingy,spotify:album:0Hv5X7RRaM7F3hfAq0YmzB,Jackpot,spotify:artist:3s2wTjWxK8NOX09dmsvVOh,Chingy,2003-01-01,https://i.scdn.co/image/ab67616d0000b273f9aefc986924f7e9e5e71b74,1,4,250746,https://p.scdn.co/mp3-preview/753246f1664be55a064ec88ef1a1ce8c20be606e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,USCA20300283,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"crunk,dirty south rap,hip pop,pop rap,southern hip hop",0.866,0.749,2.0,-3.977,1.0,0.253,0.15,0.0,0.0614,0.891,92.069,4.0,,Capitol Records,"C © 2003 Capitol Records, LLC, P ℗ 2003 Capitol Records, LLC",5256 +5257,spotify:track:1vuU11KzqTt084vufdrzIa,Shape I'm In,spotify:artist:063AxhAs6zx8UYdPahb5Gi,Jo Jo Zep and The Falcons,spotify:album:7w8GzUMezQSr5XpBGJt7Pv,Screaming Targets,spotify:artist:063AxhAs6zx8UYdPahb5Gi,Jo Jo Zep and The Falcons,1979,https://i.scdn.co/image/ab67616d0000b273483bea3d9e997e9c80b4db56,1,7,214373,https://p.scdn.co/mp3-preview/9d955dfba36ad914ddcf7be368f63b63c1340fa7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUMU07900088,spotify:user:bradnumber1,2023-02-15T04:33:22Z,australian rock,0.694,0.618,7.0,-12.261,0.0,0.0575,0.0411,2.42e-05,0.0659,0.737,101.004,4.0,,WM Australia,"C © 1991 Mushroom Records Pty Limited, P ℗ 1979 Mushroom Records Pty Limited",5257 +5258,spotify:track:24mZHxxTvEpNUAmcY1o9vw,Joanne,"spotify:artist:5Tic1bWAbmRoLrqaJ5SxU2, spotify:artist:08xBftDfAD7CMC51uxUuZF","Michael Nesmith, The First National Band",spotify:album:2JdE6W8pxUtwNET1xI3OZ7,Magnetic South (Expanded Edition),"spotify:artist:5Tic1bWAbmRoLrqaJ5SxU2, spotify:artist:08xBftDfAD7CMC51uxUuZF","Michael Nesmith, The First National Band",1970-06-01,https://i.scdn.co/image/ab67616d0000b2732579cc0a4b7d66089904e42b,1,5,190560,https://p.scdn.co/mp3-preview/7f75d21dfd30146a48f266111395f749858f5250?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USRC17007921,spotify:user:bradnumber1,2021-08-08T09:26:31Z,country rock,0.408,0.28,0.0,-12.409,1.0,0.0302,0.846,0.0,0.64,0.466,71.544,4.0,,RCA/Legacy,"P This compilation (P) 2018 RCA Records, a division of Sony Music Entertainment",5258 +5259,spotify:track:0AO6H4lEJhuqWcmIebNhKO,1-2-3,spotify:artist:2Gop8SbSVt5SaJzuaRFa7D,Gloria Estefan And Miami Sound Machine,spotify:album:1QFhYMcCFGK1pVVwStxf4x,Let It Loose,spotify:artist:2Gop8SbSVt5SaJzuaRFa7D,Gloria Estefan And Miami Sound Machine,1987-06-02,https://i.scdn.co/image/ab67616d0000b273274b32a7c63ffd43950a5021,1,9,208266,https://p.scdn.co/mp3-preview/1c516a536068df515bfd6d662cdf04a89865c569?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USSM10011984,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.71,0.788,7.0,-9.783,1.0,0.0376,0.219,6.05e-05,0.357,0.841,125.008,4.0,,Epic,P (P) 1987 Sony Music Entertainment Inc.,5259 +5260,spotify:track:1pHP4JeQV9wDx87D6qH9hD,Here It Goes Again,spotify:artist:3hozsZ9hqNq7CoBGYNlFTz,OK Go,spotify:album:1qN6qh1gwgrYTCdSq21gov,Oh No,spotify:artist:3hozsZ9hqNq7CoBGYNlFTz,OK Go,2005-01-01,https://i.scdn.co/image/ab67616d0000b27371e01645abce04dda00e1c0c,1,3,179813,https://p.scdn.co/mp3-preview/fd0089d7569720548da693681b77cc73a2c07185?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USCA20500270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago indie,modern rock,permanent wave",0.537,0.882,0.0,-2.306,1.0,0.0403,0.00035,9.06e-05,0.12,0.81,145.73,4.0,,Capitol Records,"C © 2005 Capitol Records Inc., P ℗ 2005 Capitol Records Inc.",5260 +5261,spotify:track:2GLaiGf1gBC5GKdmwYOzrl,On Call,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:2oqYhFDdwd65MHfHKdlkua,Because Of The Times,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2007-04-03,https://i.scdn.co/image/ab67616d0000b273e332bef2092236a99909af39,1,3,201800,https://p.scdn.co/mp3-preview/b2fbd28e25648e32c981fda9dfeb16d5529cbb23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10700014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.307,0.791,7.0,-5.408,1.0,0.119,0.0285,0.000804,0.395,0.141,193.356,4.0,,RCA/Legacy,"P (P) 2007 RCA Records, a division of Sony Music Entertainment",5261 +5262,spotify:track:29KiGwvYBw6JGQWrAlLhGg,Perfect,spotify:artist:1sAkg8871iPVI0wPbOfIZa,Fairground Attraction,spotify:album:62mLQgDQRUFS65hQZcsKhs,The First Of A Million Kisses,spotify:artist:1sAkg8871iPVI0wPbOfIZa,Fairground Attraction,1988,https://i.scdn.co/image/ab67616d0000b27325481743ca76881559f8d6c2,1,2,216573,https://p.scdn.co/mp3-preview/a8be61bb6d8dcf545b80947948f37d4b95273399?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBARL8800011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.58,0.203,9.0,-15.214,0.0,0.0646,0.286,0.0,0.0866,0.609,138.793,4.0,,RCA Records Label,P (P)1988 BMG Records (UK) Ltd,5262 +5263,spotify:track:3VZmChrnVW8JK6ano4gSED,Sexual Healing,spotify:artist:3koiLjNrgRTNbOwViDipeA,Marvin Gaye,spotify:album:3gPlX9Zs3tXZZKNCyoOkSm,Midnight Love,spotify:artist:3koiLjNrgRTNbOwViDipeA,Marvin Gaye,1982-10-01,https://i.scdn.co/image/ab67616d0000b27346e859872ed30a898160aeb2,1,2,238600,https://p.scdn.co/mp3-preview/4d3782db4a920600f51dcaaee044519384990f28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM19803028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,neo soul,northern soul,quiet storm,soul",0.805,0.602,0.0,-9.7,0.0,0.0579,0.119,0.000122,0.0581,0.744,94.382,4.0,,Columbia/Legacy,P (P) 1982 Sony Music Entertainment,5263 +5264,spotify:track:0YeRxIsv9547EmlsP5wDU2,Calling All Hearts (feat. Robin Thicke & Jessie J),"spotify:artist:1xLOb1CC0N70wA28T7Q5uE, spotify:artist:0ZrpamOxcZybMHGg1AYtHP, spotify:artist:2gsggkzM5R49q6jpPvazou","DJ Cassidy, Robin Thicke, Jessie J",spotify:album:1GaInUv1ODjtrAA04SpUj8,Calling All Hearts (feat. Robin Thicke & Jessie J),spotify:artist:1xLOb1CC0N70wA28T7Q5uE,DJ Cassidy,2014-02-18,https://i.scdn.co/image/ab67616d0000b273c8a65f5dbbbcb399b18d78d3,1,1,288720,https://p.scdn.co/mp3-preview/d7e65de3099fb28229980cb9c3e97fce575361e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USSM11400023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo soul,pop rap,r&b,urban contemporary,dance pop,pop",0.712,0.906,6.0,-2.596,0.0,0.0357,0.0138,2.19e-05,0.169,0.703,118.002,4.0,,Columbia,"P (P) 2014 Columbia Records, a Division of Sony Music Entertainment",5264 +5265,spotify:track:0RZyUsKfiC7MtiGKatCtGc,Misery,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:1snrPQMoTrBsKl73wzSxbn,Hands All Over (Revised International Standard version),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2010,https://i.scdn.co/image/ab67616d0000b2739585ff55fff75c5c07a619cb,1,1,216200,https://p.scdn.co/mp3-preview/77072d2da66935a98b650ebd582f6ac713e2de61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM71015280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.703,0.81,4.0,-4.874,0.0,0.0425,0.000315,0.0,0.216,0.726,102.981,4.0,,Interscope Records*,"C © 2011 A&M/Octone Records, P ℗ 2011 Interscope Records",5265 +5266,spotify:track:3MbaQ2D6856Md6HhCSpj9Z,I'd Go With You Anywhere,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:3AeaTDw55VVnJeaKvkrzWN,Playlist,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2015-11-06,https://i.scdn.co/image/ab67616d0000b273d434d8f21738e18dd0b6bd98,1,1,199343,https://p.scdn.co/mp3-preview/dc765d1ae79451124cd94f3bd92260459f51ad08?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUYO01500011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.613,0.703,1.0,-4.926,1.0,0.0297,0.0479,4.43e-06,0.0726,0.464,121.046,4.0,,EMI Recorded Music Australia Pty Ltd (Distribution),"C © 2015 Birds Of Tokyo Pty Ltd, P This Compilation ℗ 2015 Birds Of Tokyo Pty Ltd, manufactured and distributed by EMI Music Australia Pty. Ltd under exclusive license",5266 +5267,spotify:track:0xzEDBVP6SmgByZePlbUvT,We Made You,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:04r9yvH25PwePggAYZQYq8,Relapse,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2009-05-15,https://i.scdn.co/image/ab67616d0000b2733192b6bb91211e0f499b3fff,1,9,269613,https://p.scdn.co/mp3-preview/fab146bc463de01395b2168ac9de034c46070c89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70965164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.924,0.853,2.0,-1.203,1.0,0.0792,0.107,1.45e-06,0.129,0.67,114.003,4.0,,Universal Music Group,"C © 2009 Aftermath Records, P ℗ 2009 Aftermath Records",5267 +5268,spotify:track:2btKtacOXuMtC9WjcNRvAA,ILYSB,spotify:artist:49tQo2QULno7gxHutgccqF,LANY,spotify:album:0HiwsXForePsWdIZW6EEkK,LANY,spotify:artist:49tQo2QULno7gxHutgccqF,LANY,2017-06-30,https://i.scdn.co/image/ab67616d0000b2734011de7822423ed7557c3c81,1,7,211149,https://p.scdn.co/mp3-preview/46b6997a89f01f5e405cf86e041a23c237b71f72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,TCABY1418887,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"la pop,opm",0.636,0.623,5.0,-7.016,1.0,0.0603,0.468,0.00453,0.351,0.389,100.026,4.0,,Polydor Records,"C © 2017 Side Street Entertainment LLC, under exclusive licence to Polydor Records (a division of Universal Music Operations Limited), P ℗ 2017 Side Street Entertainment LLC, under exclusive licence to Polydor Records (a division of Universal Music Operations Limited)",5268 +5269,spotify:track:13s6dCsNpSZflwVu2uzzPi,Touch Me (I Want Your Body),spotify:artist:0ym94xKp2PIOJtTZKpxbAa,Samantha Fox,spotify:album:2MLEz0a0JzhNpbqXn2UxgG,Samantha Fox Greatest Hits,spotify:artist:0ym94xKp2PIOJtTZKpxbAa,Samantha Fox,2004-12-27,https://i.scdn.co/image/ab67616d0000b273c565597d79e4005c31532e6f,1,1,222133,https://p.scdn.co/mp3-preview/973c4e065ad684efb52fefedf05a98292812f8b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAHK9500206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hi-nrg,new romantic,new wave pop",0.664,0.679,9.0,-9.08,0.0,0.0298,0.154,0.000307,0.0694,0.722,104.851,4.0,,Jive,P (P) 2004 Zomba Recording LLC,5269 +5270,spotify:track:3kBxPxScpjt991JdhvkCPA,Wedding Ring,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,spotify:album:6yczcYYmQiZslouFGXZAko,It's 2 Easy,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,1966-04-01,https://i.scdn.co/image/ab67616d0000b27344887f6663c15f178d5829e2,1,14,123680,https://p.scdn.co/mp3-preview/2e789f4525105674a01ec27c98e4b61868671df4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06500027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,freakbeat,protopunk,psychedelic rock",0.435,0.981,2.0,-1.905,1.0,0.14,0.155,0.0,0.119,0.618,115.3,4.0,,Albert Productions,"C © 1966 BMG AM Pty Ltd., P ℗ 1966 BMG AM Pty Ltd.",5270 +5271,spotify:track:1MzXFDFEdndvOReLnoZ0p7,Wiggle (feat. Snoop Dogg),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:7hJcb9fa4alzcOq3EaNPoG","Jason Derulo, Snoop Dogg",spotify:album:45WiY2DUJyqbIKfHnQo4lN,Tattoos (Special Edition),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2013-09-10,https://i.scdn.co/image/ab67616d0000b273341bcc4171814393eb34a2bf,1,12,193295,https://p.scdn.co/mp3-preview/b1d1ab725a181b112a275db230ed8ad94eb4f33b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USWB11400672,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,g funk,gangster rap,hip hop,pop rap,rap,west coast rap",0.697,0.621,9.0,-6.886,0.0,0.25,0.0802,0.0,0.162,0.721,81.946,4.0,,Beluga Heights/Warner Records,"C © 2014 Warner Records Inc., P ℗ 2014, 2013 Warner Records Inc.",5271 +5272,spotify:track:0ZNvWriZYR5QTU4NAKow7p,You've Gotta Get up and Dance,spotify:artist:1menQjPJs09NV7iW82f6Qp,Albie Donnelly's Supercharge,spotify:album:3aAA5od1nmElu5eN8CcQvL,Local Lads Make Good,spotify:artist:1menQjPJs09NV7iW82f6Qp,Albie Donnelly's Supercharge,2011-12-02,https://i.scdn.co/image/ab67616d0000b273c51621f6caae8eddf9c9661f,1,8,176893,https://p.scdn.co/mp3-preview/fb16f9073ceb855a6eff20c46d5f4ed00aeeed02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,DEKM67602144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.637,0.879,0.0,-8.324,0.0,0.0648,0.0896,0.000536,0.141,0.954,122.476,4.0,,7Jazz,"C Virgin Records, P 7Jazz, A Division Of 7us media group GmbH",5272 +5273,spotify:track:7mZtB3OcRpeRJXEIXMzwJ8,Where Have You Been,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:6UePYY36ZdLQCObZr3wvFf,Talk That Talk,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2011-11-18,https://i.scdn.co/image/ab67616d0000b27340add42a5a6d5474ced11939,1,2,242680,https://p.scdn.co/mp3-preview/71c35cb0c63e46f1a8c62135283cb2723c675ecf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71118074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.715,0.846,8.0,-6.335,1.0,0.0844,0.00277,0.0152,0.252,0.455,127.994,4.0,,Universal Music Group,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",5273 +5274,spotify:track:5K8qwhQQSAj9ebIvlNJY8q,Tennessee - Remastered 2001,spotify:artist:5Va9LuEmaZxnbk1gMnjMD7,Arrested Development,spotify:album:4Q0QBX3Td4FfHeG7fiJcVW,Classic Masters,spotify:artist:5Va9LuEmaZxnbk1gMnjMD7,Arrested Development,2002-01-01,https://i.scdn.co/image/ab67616d0000b273406ca7a421c0f83b14aba4e1,1,1,272706,https://p.scdn.co/mp3-preview/68e31c7cc5b20e8b9f1cc9445c8b0ec643e517bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USCH30100128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,conscious hip hop,hip hop,old school atlanta hip hop",0.815,0.851,1.0,-3.667,0.0,0.178,0.0284,0.0,0.343,0.674,99.915,4.0,,Capitol Records,"C © 2002 Capitol Records, LLC, P This Compilation ℗ 2002 Capitol Records, LLC",5274 +5275,spotify:track:6K8qKeWo5MsFED7wCR6Kop,Sing,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:1xn54DMo2qIqBuMqHtUsFd,x (Deluxe Edition),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2014-06-21,https://i.scdn.co/image/ab67616d0000b27313b3e37318a0c247b550bccd,1,3,235382,https://p.scdn.co/mp3-preview/6427953465d954b73d4b2bebec48d01b806ba8f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBAHS1400082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.818,0.67,8.0,-4.451,0.0,0.0472,0.304,1.22e-06,0.0601,0.939,119.988,4.0,,Atlantic Records UK,"C © 2014 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 Asylum Records UK, a Warner Music UK Company, except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",5275 +5276,spotify:track:63xBnyUVKIupzjHno4wFs3,Into The Great Wide Open,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:42G5ULkCRRl3crJMlg6eKd,Into The Great Wide Open,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,1991-01-01,https://i.scdn.co/image/ab67616d0000b27327bd7d234a31296df34b9a64,1,3,223333,https://p.scdn.co/mp3-preview/813a50aeee7aba3150f086025f7e9cc0277ff427?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USMC19135649,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.608,0.584,4.0,-9.727,0.0,0.0235,0.186,0.0,0.129,0.714,82.226,4.0,,Tom Petty P&D,"C © 1991 MCA Records Inc., P ℗ 1991 Geffen Records",5276 +5277,spotify:track:6tNQ70jh4OwmPGpYy6R2o9,Beautiful Things,spotify:artist:22wbnEMDvgVIAGdFeek6ET,Benson Boone,spotify:album:29aSKB1qPEbN0Qf9OPSQpw,Beautiful Things,spotify:artist:22wbnEMDvgVIAGdFeek6ET,Benson Boone,2024-01-18,https://i.scdn.co/image/ab67616d0000b273bef221ea02a821e7feeda9cf,1,1,180304,https://p.scdn.co/mp3-preview/e213f23e6fe5938299eebbe364d06c1682a6619f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,87,USWB12307016,spotify:user:bradnumber1,2024-03-27T20:52:29Z,singer-songwriter pop,0.472,0.471,10.0,-5.692,1.0,0.0603,0.151,0.0,0.14,0.219,105.029,3.0,,"Night Street Records, Inc./Warner Records Inc.","C Night Street Records/Warner Records, © 2024 Warner Records Inc., P Night Street Records/Warner Records, ℗ 2024 Warner Records Inc.",5277 +5278,spotify:track:55UDEdpcearZqBPO2aZaGV,How Do I Live,spotify:artist:3XlIhgydjvC4EniPFZT20j,Trisha Yearwood,spotify:album:4B7Py5rD8NGboCG8Fr0BHE,Songbook: A Collection Of Hits,spotify:artist:3XlIhgydjvC4EniPFZT20j,Trisha Yearwood,1997-01-01,https://i.scdn.co/image/ab67616d0000b27389b28f8cb80916de7143a42a,1,1,242800,https://p.scdn.co/mp3-preview/633cd0a32b1ed486e037cbcb385d956dcd945b0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USMC19701033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country road",0.565,0.408,2.0,-8.781,1.0,0.0267,0.579,0.0,0.103,0.153,125.896,4.0,,MCA Nashville,"C © 1997 MCA Nashville, P This Compilation ℗ 1997 MCA Nashville",5278 +5279,spotify:track:28XkPUMCSPJq6C9ZB1lGcX,Morningtown Ride,spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,spotify:album:3vMmPXoijRRhpE9lPpUyq4,The Seekers,spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,1989-01-30,https://i.scdn.co/image/ab67616d0000b273e517ee64fd625057c25108fc,1,1,161400,https://p.scdn.co/mp3-preview/85ef53e1e2fa46133afb1161f32b7eaf4ce8a2d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAYE6600153,spotify:user:bradnumber1,2024-02-03T01:34:53Z,british invasion,0.472,0.377,7.0,-10.096,1.0,0.0304,0.85,0.0,0.255,0.588,116.456,4.0,,Parlophone UK,"C © 1990 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1990 Parlophone Records Ltd, a Warner Music Group Company",5279 +5280,spotify:track:37ZJ0p5Jm13JPevGcx4SkF,Livin' On A Prayer,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0kBfgEilUFCMIQY5IOjG4t,Slippery When Wet,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1986-08-16,https://i.scdn.co/image/ab67616d0000b2731336b31b6a1799f0de5807ac,1,3,249293,https://p.scdn.co/mp3-preview/2a84c209d6bfe17da820bbc28d1e610a5d304a53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USPR38619998,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.532,0.887,0.0,-3.757,1.0,0.0335,0.0778,0.000206,0.294,0.794,122.509,4.0,,Island Records,"C © 1986 UMG Recordings, Inc., P ℗ 1986 UMG Recordings, Inc.",5280 +5281,spotify:track:5GjnIpUlLGEIYk052ISOw9,This Is What It Feels Like,"spotify:artist:0SfsnGyD8FpIN4U4WCkBZ5, spotify:artist:6NXk2pLFocS2OkNdT7ncBt","Armin van Buuren, Trevor Guthrie",spotify:album:5ZsK5SUsZilbAJ4B0vRVxF,Intense,spotify:artist:0SfsnGyD8FpIN4U4WCkBZ5,Armin van Buuren,2013-05-03,https://i.scdn.co/image/ab67616d0000b273048012a99d7a62440392f529,1,2,204360,https://p.scdn.co/mp3-preview/3f200355f2d70cb3eb2957c8b88578b1cc272a27?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,NLF711303312,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch house,dutch trance,edm,pop dance,progressive house,trance,canadian pop",0.551,0.833,8.0,-5.217,1.0,0.03,0.0391,2.77e-06,0.0632,0.145,129.885,5.0,,ARVA,"C 2013 Armada Music B.V., P 2013 Armada Music B.V.",5281 +5282,spotify:track:6sbXGUn9V9ZaLwLdOfpKRE,Larger Than Life,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:5ySxm9hxBNss01WCL7GLyQ,Millennium,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1999-05-18,https://i.scdn.co/image/ab67616d0000b2732160c02bc56f192df0f4986b,1,1,232826,https://p.scdn.co/mp3-preview/6ebe0f30bdbf9c9b504cdc6df0fa3eaeeeb4e9d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USJI19910620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.661,0.973,0.0,-2.994,0.0,0.037,0.11,1.74e-05,0.617,0.75,108.037,4.0,,Jive,P (P) 1999 Zomba Recording LLC,5282 +5283,spotify:track:2073QOEC8rBtSyTsRyaWiP,I Can Change,spotify:artist:066X20Nz7iquqkkCW6Jxy6,LCD Soundsystem,spotify:album:4hnqM0JK4CM1phwfq1Ldyz,This Is Happening,spotify:artist:066X20Nz7iquqkkCW6Jxy6,LCD Soundsystem,2010-05-17,https://i.scdn.co/image/ab67616d0000b273ee0d0dce888c6c8a70db6e8b,1,5,352003,https://p.scdn.co/mp3-preview/791068b5d25b29210ecf3de1aeeea57e2f046c4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,US4GE1000023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,alternative rock,art pop,dance rock,dance-punk,electronic rock,electronica,indie rock,indietronica,neo-synthpop,new rave",0.644,0.73,1.0,-6.565,1.0,0.0287,0.00215,0.00178,0.233,0.695,116.981,4.0,,Parlophone UK,"C © 2010 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2010 The copyright in this sound recording is owned by DFA LLC under exclusive licence to Parlophone Records Ltd",5283 +5284,spotify:track:2HP8EOfdW5ALuWuSZLswWK,Our Time Now,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,spotify:album:6B1zAt00OKGfPCru3T07wa,Every Second Counts,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,2006,https://i.scdn.co/image/ab67616d0000b2730378dcb3d772717e88c56b5e,1,1,170213,https://p.scdn.co/mp3-preview/c050ebc7cb2d8cab09af1e323c5748bc9b446b8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR10622242,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,neo mellow,neon pop punk,pop punk,pop rock",0.579,0.921,0.0,-4.431,1.0,0.0347,0.0137,1.16e-06,0.368,0.951,102.988,4.0,,Universal Music Taiwan,"C © 2007 Hollywood Records, P ℗ 2007 Hollywood Records",5284 +5285,spotify:track:3Xls4cNOwy01dtrNXb1inG,White Room,spotify:artist:74oJ4qxwOZvX6oSsu1DGnw,Cream,spotify:album:0zrtTZC7yY2TOEhnbJzSb9,Wheels Of Fire,spotify:artist:74oJ4qxwOZvX6oSsu1DGnw,Cream,1968-07-01,https://i.scdn.co/image/ab67616d0000b2735c7731f5acdcb2d02d78b7ee,1,1,298333,https://p.scdn.co/mp3-preview/1e5f8d2a744179d883d2f052047f143b126e5ce0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBA076800030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,classic rock,folk rock,hard rock,psychedelic rock,rock,singer-songwriter,supergroup",0.553,0.576,0.0,-13.458,1.0,0.0304,0.191,0.00664,0.0365,0.457,109.827,4.0,,Polydor Records,"C © 1997 Universal International Music B.V., P ℗ 1968 Universal International Music B.V.",5285 +5286,spotify:track:2gMbtLfhkR6koXb7K3a321,Watching You,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:3JCSQWn36aUTqN794ZmbSm,Here Come The Drums,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2005-10-23,https://i.scdn.co/image/ab67616d0000b2730320f53151cb67998449bd09,1,6,207200,https://p.scdn.co/mp3-preview/b9c7723c9565e91759952388001ee4450cb3fc77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUBM00599338,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.7,0.935,7.0,-4.857,1.0,0.095,0.00338,0.0,0.286,0.741,130.024,4.0,,Columbia,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,5286 +5287,spotify:track:140ZbgLGULQbXjBpVII1ZB,Goodnight,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:39L39Zc1OmLrQOY4P0xhhG,The Monument Singles Collection,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2011-04-25,https://i.scdn.co/image/ab67616d0000b273c8e397651625a503f15f26b3,1,17,149133,https://p.scdn.co/mp3-preview/45461cac216a3b7b29a938b36c3113787f569268?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USSM16301521,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.628,0.577,0.0,-7.361,1.0,0.0305,0.631,0.00117,0.13,0.693,113.15,4.0,,Monument/Orbison Records/Legacy,P This Compilation (P) 2011 Sony Music Entertainment,5287 +5288,spotify:track:0Fe6xsCMU4LunNxH9SWLhO,Set You Free - 1994 Edit,spotify:artist:45InkbGypoMk5nVX6dsHkt,N-Trance,spotify:album:4wsaaUdjIB0qQYf4rcLtvh,100% Clubland,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-10-14,https://i.scdn.co/image/ab67616d0000b273641be6c9ce3f71c62500467f,1,6,249289,https://p.scdn.co/mp3-preview/24d22e794919522ead45bb337b2f856cd4bfed21?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCFZ9400652,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house",0.261,0.97,8.0,-5.868,1.0,0.106,0.000532,8.29e-06,0.0782,0.376,138.964,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Central Station Records, P ℗ 2016 Central Station Records",5288 +5289,spotify:track:1f10VvKPbV21VcPYti2D5n,Good Times,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:5Hw7vceIgo04O7AAq6RCcc,Hits,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1996,https://i.scdn.co/image/ab67616d0000b2733dd4fb220d9107082b3f858b,1,8,233093,https://p.scdn.co/mp3-preview/e726089e81a9e9f33951eb36495b8f2b4f744fac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI09600940,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.46,0.992,7.0,-5.064,1.0,0.0732,0.09,0.025,0.323,0.722,156.417,4.0,,Bloodlines,"C 1996 Bloodlines, P 1996 Bloodlines",5289 +5290,spotify:track:5o4yGlG0PfeVUa6ClIyOxq,Boys,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,spotify:album:4cdqRn65PB3wyN2Yog1nc8,Boys,spotify:artist:25uiPmTg16RbhZWAqwLBy5,Charli xcx,2017-07-26,https://i.scdn.co/image/ab67616d0000b273eb4121feca968298ac9e2720,1,1,162585,https://p.scdn.co/mp3-preview/87befe8274ddedb48c78c7017bd7be2682c2a724?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAHS1700564,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,candy pop,metropopolis,pop,uk pop",0.867,0.545,2.0,-5.192,1.0,0.0625,0.0646,0.000289,0.0505,0.525,139.943,4.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group Company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group Company.",5290 +5291,spotify:track:1NHSfIEu5a1mH9ThzMk6eC,Don't Be Shy,spotify:artist:5r5CoxvqnhfhYswityEIJ6,Kulcha,spotify:album:1q6qCVLUR8gxsD2cwRNoOA,Kulcha,spotify:artist:5r5CoxvqnhfhYswityEIJ6,Kulcha,1994-09-05,https://i.scdn.co/image/ab67616d0000b27348b3bd74aa325b382ccc2d5b,1,2,251706,https://p.scdn.co/mp3-preview/0ccedaeaf053cdc82d4e35b2385b890a2e632797?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUWA09417550,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.733,0.911,8.0,-4.892,1.0,0.054,0.259,0.0,0.758,0.845,118.0,4.0,,WM Australia,"C © 1995 East West Records Australia, P ℗ 1995 East West Records Australia",5291 +5292,spotify:track:2oqcM9cd19JrVS9jAvciUm,Porcelain,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,spotify:album:1ZFjvEN3C2J1Q1xVhu2YaC,Play,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,1999,https://i.scdn.co/image/ab67616d0000b27328b5ffb477f5dc8cf9b3c6a9,1,3,241160,https://p.scdn.co/mp3-preview/74b02d624e85e9d7a78d5faf9a9cd6f95578a326?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJH9900036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,electronica",0.551,0.628,0.0,-7.874,0.0,0.0294,0.00133,0.188,0.282,0.336,95.03,4.0,,Mute,"C (C) 1999 Mute Records LimitedThis label copy information is the subject of copyright protection. All rights reserved.(C) Mute Records Limited, P (P) 1999 The copyright in this sound recording is owned by Mute Records Limited",5292 +5293,spotify:track:1GcVa4jFySlun4jLSuMhiq,Angie - Remastered 2009,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:6iVOz2hudE6dv5Yrcsw2c9,Goats Head Soup - Remastered 2009,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1973-08-31,https://i.scdn.co/image/ab67616d0000b273fa3c4374e2cdd3cc1636c79b,1,5,272000,https://p.scdn.co/mp3-preview/e956dbcf6232ee5d1fb9ace688ce332b22f15a63?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBUM70909413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.429,0.554,9.0,-6.128,0.0,0.0291,0.67,0.000152,0.105,0.407,136.302,4.0,,Polydor Records,"C © 2009 Promotone B.V., under exclusive licence to Universal International Music B.V.under exclusive licence to Universal International Music B.V., P ℗ 2009 Promotone B.V., under exclusive licence to Universal International Music B.V.",5293 +5294,spotify:track:4zrl5YGi2OqMar45Kdn4BM,Take Me To The Clouds Above - LMC Vs. U2 / Radio Edit,"spotify:artist:69QKcDt724e93ZYkBSjsYP, spotify:artist:51Blml2LZPmy7TTiAg47vQ","LMC, U2",spotify:album:2jOxjU5Mw0eIKQIFohnghC,Take Me To The Clouds Above (LMC Vs. U2 / Remixes),"spotify:artist:69QKcDt724e93ZYkBSjsYP, spotify:artist:51Blml2LZPmy7TTiAg47vQ","LMC, U2",2004-01-26,https://i.scdn.co/image/ab67616d0000b27314457e6b3f7d1d95d9318d7f,1,1,171546,https://p.scdn.co/mp3-preview/a2a7e63386e06714940f1c805479e0d3ca610c68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBCFZ0400232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bouncy house,uk dance,irish rock,permanent wave,rock",0.668,0.905,6.0,-5.395,1.0,0.038,0.00232,0.0331,0.141,0.667,128.658,4.0,,All Around The World,"C © 2004 Universal Music Operations Limited, P ℗ 2004 Universal Music Operations Limited",5294 +5295,spotify:track:7AKgxiLhthTcCq1wEtKlGB,Cry,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,spotify:album:1wklsLLbGIZg1RDpoJovrb,Back to Bedlam,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,2005-10-04,https://i.scdn.co/image/ab67616d0000b2739489b7675f782feada134658,1,9,246413,https://p.scdn.co/mp3-preview/c1340a1a59f008e530d21a643e1d95ffae3c4cbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USAT20401595,spotify:user:bradnumber1,2023-01-06T22:12:18Z,neo mellow,0.499,0.583,7.0,-9.191,1.0,0.0322,0.464,0.00747,0.0971,0.194,151.999,4.0,,Atlantic Records,"C An Atlantic Records Release, © 2005 Warner Music UK Limited, P An Atlantic Records Release, ℗ 2005 Warner Music UK Limited",5295 +5296,spotify:track:2PXVoi5YvTedhFEFCS1tNL,Gangsta Lovin',"spotify:artist:4d3yvTptO48nOYTPBcPFZC, spotify:artist:3DiDSECUqqY1AuBP8qtaIa","Eve, Alicia Keys",spotify:album:5A9UabtONgCPtZiwBsbXNN,Eve-Olution,spotify:artist:4d3yvTptO48nOYTPBcPFZC,Eve,2002-01-01,https://i.scdn.co/image/ab67616d0000b27337bf627e809bd57de88a7767,1,3,239266,https://p.scdn.co/mp3-preview/acd613d90c6155d9167059cf756afc790579c659?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10211227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,hip pop,philly rap,r&b,urban contemporary,neo soul,pop,r&b",0.723,0.84,1.0,-3.523,0.0,0.0608,0.0619,0.0,0.0945,0.827,94.332,4.0,,Universal Music Group,"C © 2002 Ruff Ryders, P ℗ 2002 Ruff Ryders",5296 +5297,spotify:track:35keiknicSk7ZiEl1Wa4Hg,"Just the Way It Is, Baby",spotify:artist:0gDg7FEsF4Y1jWddJJgcn4,The Rembrandts,spotify:album:7F6tDLnY17vgTeXEMt024V,The Rembrandts,spotify:artist:0gDg7FEsF4Y1jWddJJgcn4,The Rembrandts,1990-08-14,https://i.scdn.co/image/ab67616d0000b273ded9d9cdaa0a6d4ff1047c98,1,1,243893,https://p.scdn.co/mp3-preview/23f7c5524d1747c6edc7311c710434ee8b764cfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USEW29000012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.794,0.613,3.0,-8.711,1.0,0.0295,0.329,2.67e-06,0.0764,0.823,110.738,4.0,,Atlantic Records,"C © 1990 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1990 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",5297 +5298,spotify:track:3dipSm7lWInMbL3hRuMNBg,Remember Me - Sure Is Pure 7 Inch Edit,"spotify:artist:5wAkbDfgFUeXzWO4rdPQiG, spotify:artist:1PFa1mYyMKyimqFtX8XTsG","Blue Boy, Sure Is Pure",spotify:album:12VFylHDX01Xw4joC9wH6Z,Remember Me,spotify:artist:5wAkbDfgFUeXzWO4rdPQiG,Blue Boy,1997-03-03,https://i.scdn.co/image/ab67616d0000b273a43eef3a375edc6220dca517,1,1,229626,https://p.scdn.co/mp3-preview/ef59d20cb4f3ad508c51dc71e04c83d6dee40d98?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,NLML61100072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic house,0.837,0.877,1.0,-7.314,1.0,0.0498,0.0864,0.0141,0.0337,0.962,101.088,4.0,,Altra Moda Music,"C 1997 Altra Moda Music, P 1997 Altra Moda Music",5298 +5299,spotify:track:2GFExyKXf9383tSRSrEHEt,Can't Take My Eyes Off of You - (I Love You Baby),spotify:artist:2Mu5NfyYm8n5iTomuKAEHl,Ms. Lauryn Hill,spotify:album:1BZoqf8Zje5nGdwZhOjAtD,The Miseducation of Lauryn Hill,spotify:artist:2Mu5NfyYm8n5iTomuKAEHl,Ms. Lauryn Hill,1998-08-25,https://i.scdn.co/image/ab67616d0000b273e08b1250db5f75643f1508c9,1,15,221466,https://p.scdn.co/mp3-preview/cfeb0464fde5d2473830418a70f7f9bcfaa781a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM19803115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative r&b,conscious hip hop,hip hop,neo soul,new jersey rap,r&b",0.747,0.662,1.0,-7.9,0.0,0.0796,0.0118,0.0,0.138,0.63,88.926,4.0,,Ruffhouse/Columbia,P (P) 1998 Ruffhouse Records LP,5299 +5300,spotify:track:2t77hjgJY4sC9DoX5uaVUD,Don't Give Up,spotify:artist:7C4sUpWGlTy7IANjruj02I,Peter Gabriel,spotify:album:0hQb1KT6L3iEYRkS5u8cjm,So (Remastered),spotify:artist:7C4sUpWGlTy7IANjruj02I,Peter Gabriel,1986-05-19,https://i.scdn.co/image/ab67616d0000b27311bb04f55be562c76d8e8ecf,1,3,394826,https://p.scdn.co/mp3-preview/e5fdf44353aacfd5eb9d0d1a92e345c3929bde6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBCPB1200865,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,mellow gold,new romantic,new wave,permanent wave,progressive rock,rock,singer-songwriter,soft rock",0.671,0.283,3.0,-14.198,1.0,0.0508,0.831,0.000818,0.0911,0.331,80.806,3.0,,Real World Productions Ltd.,"C © 2012 Peter Gabriel Ltd, P ℗ 2012 Peter Gabriel Ltd",5300 +5301,spotify:track:6WLS56xiRrXjSm9RSdL3zD,Never Forget You,"spotify:artist:1Xylc3o4UrD53lo9CvFvVg, spotify:artist:7uMh23xWiuR7zsNkuNcm2G","Zara Larsson, MNEK",spotify:album:1sd9bVAWxBl0qeVS8tzlzL,Never Forget You,"spotify:artist:1Xylc3o4UrD53lo9CvFvVg, spotify:artist:7uMh23xWiuR7zsNkuNcm2G","Zara Larsson, MNEK",2015-09-10,https://i.scdn.co/image/ab67616d0000b2736fe5072e9b91105ca3fa8091,1,1,213427,https://p.scdn.co/mp3-preview/ee5474924adea2b97280f2000afdf50eda3f6e4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEWEE1500801,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,scandipop,swedish electropop,swedish pop,house,pop dance,uk contemporary r&b,uk dance,uk pop",0.583,0.732,11.0,-5.728,0.0,0.0457,0.00312,9.86e-06,0.269,0.276,145.992,4.0,,Epic/Record Company TEN,"P (P) 2015 Record Company TEN, under exclusive rights to Epic Records US/Sony Music Entertainment Sweden AB",5301 +5302,spotify:track:1nZkrUFLq265za9lofFO3p,Caught Out There,spotify:artist:0IF46mUS8NXjgHabxk2MCM,Kelis,spotify:album:2VQFbPduHKk3SAyczWfpok,Kaleidoscope,spotify:artist:0IF46mUS8NXjgHabxk2MCM,Kelis,1999-12-07,https://i.scdn.co/image/ab67616d0000b2736cd319100464445bf22eba38,1,3,291706,https://p.scdn.co/mp3-preview/5bc91bc94a2a0dffd86cb19d804d913dc2490381?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USVI29900284,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,neo soul,urban contemporary",0.848,0.691,7.0,-6.775,1.0,0.093,0.0512,0.00803,0.0723,0.922,92.996,4.0,,Virgin Records,"C © 1999 Virgin Records America, Inc., P ℗ 1999 Virgin Records America, Inc.",5302 +5303,spotify:track:6EqXJqk5hLV8WpfmzZxP68,Chick-a-Boom (Don't Ya Jes Love It),spotify:artist:5rFi4jPBgt63Z1JXcLE9QX,Daddy Dewdrop,spotify:album:0CocD9Sk15OaYQj5dAEjRK,Chick-a-Boom (Don't Ya Jes Love It),spotify:artist:5rFi4jPBgt63Z1JXcLE9QX,Daddy Dewdrop,2012-10-01,https://i.scdn.co/image/ab67616d0000b273945fb1dd8b6887343d9e776e,1,1,171533,https://p.scdn.co/mp3-preview/8ee4440bcbcbe745bd6a2c2823f48f9b41aa496d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USA561342164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.781,0.734,0.0,-6.777,1.0,0.0511,0.0309,0.0,0.216,0.964,124.55,4.0,,Ten12 Entertainment,C 2012 Ten12 Entertainment,5303 +5304,spotify:track:2M9ro2krNb7nr7HSprkEgo,Fast Car,spotify:artist:7oPgCQqMMXEXrNau5vxYZP,Tracy Chapman,spotify:album:6hmmX5UP4rIvOpGSaPerV8,Tracy Chapman,spotify:artist:7oPgCQqMMXEXrNau5vxYZP,Tracy Chapman,1988-04-05,https://i.scdn.co/image/ab67616d0000b27390b8a540137ee2a718a369f9,1,2,296800,https://p.scdn.co/mp3-preview/ce0d4429f7d48e488e464ecf03a690ada14da02c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USEE10180719,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk,lilith,singer-songwriter,women's music",0.711,0.292,4.0,-15.523,0.0,0.037,0.313,0.0,0.131,0.194,103.951,4.0,,Elektra Records,"C © 1988 Elektra/Asylum Records for the United States and WEA International for the world outside of the United States., P ℗ 1988 Elektra/Asylum Records for the United States and WEA International for the world outside of the United States.",5304 +5305,spotify:track:3oEekS4xhmFQ88ieCVTZ7H,Bang Bang,"spotify:artist:2gsggkzM5R49q6jpPvazou, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","Jessie J, Ariana Grande, Nicki Minaj",spotify:album:5AMOKSM1ftb3opIbGT2d4q,My Everything (Deluxe),spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2014-08-22,https://i.scdn.co/image/ab67616d0000b273be58cd5a2dbe92c2b43cc713,1,13,199320,https://p.scdn.co/mp3-preview/e6f9a45cb4bf45d8d041d999f5904ed1d248cc15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71409737,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop,hip pop,pop,queens hip hop,rap",0.703,0.747,0.0,-4.446,0.0,0.0895,0.283,0.0,0.396,0.7,149.974,4.0,,Universal Music Group,"C © 2014 Republic Records, a division of UMG Recordings, Inc., P ℗ 2014 Republic Records, a division of UMG Recordings, Inc.",5305 +5306,spotify:track:1HfMVBKM75vxSfsQ5VefZ5,Lose You To Love Me,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:3tBkjgxDqAwss76O1YHsSY,Lose You To Love Me,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2019-10-23,https://i.scdn.co/image/ab67616d0000b2731802a56bb1927590b91677bd,1,1,206458,https://p.scdn.co/mp3-preview/49b7dbbb7d6d873d96723d26b3b03c28c19bb76c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USUM71918727,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.4,0.341,4.0,-9.0,1.0,0.0521,0.579,0.0,0.21,0.0852,102.744,4.0,,Interscope Records,"C © 2019 Interscope Records, P ℗ 2019 Interscope Records",5306 +5307,spotify:track:5aIVCx5tnk0ntmdiinnYvw,Water,spotify:artist:3SozjO3Lat463tQICI9LcE,Tyla,spotify:album:22sXXkKgjEuawIFL1e1tRw,Water,spotify:artist:3SozjO3Lat463tQICI9LcE,Tyla,2023-07-28,https://i.scdn.co/image/ab67616d0000b273d20231861e86a6f74ef2393e,1,1,200255,https://p.scdn.co/mp3-preview/92479d43666b31ca72b7e2a4fad74568f98ee41e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USSM12305126,spotify:user:bradnumber1,2024-01-14T19:56:56Z,,0.673,0.722,3.0,-3.495,0.0,0.0755,0.0856,0.0,0.137,0.519,117.187,4.0,,FAX Records/Epic,"P (P) 2023 FAX Records, under exclusive license to Epic Records, a division of Sony Music Entertainment",5307 +5308,spotify:track:1FP9s72rDYty6mfoOEYKnE,All We Got (feat. KIDDO),"spotify:artist:3t5xRXzsuZmMDkQzgOX35S, spotify:artist:5pXe6yFchq1oyYK3rq2A8i","Robin Schulz, KIDDO",spotify:album:7wzcIKvtXDWs1VA2BMHuaY,All We Got (feat. KIDDO),"spotify:artist:3t5xRXzsuZmMDkQzgOX35S, spotify:artist:5pXe6yFchq1oyYK3rq2A8i","Robin Schulz, KIDDO",2020-10-16,https://i.scdn.co/image/ab67616d0000b273815f7de523fb03ff606b7943,1,1,190218,https://p.scdn.co/mp3-preview/bea17b7a4dca81d7f90b25b07b508c107f11dda6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,58,DEA622000934,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep euro house,deep house,edm,german dance,pop dance,tropical house,scandipop",0.504,0.76,4.0,-4.246,1.0,0.0426,0.286,0.0,0.151,0.64,183.933,4.0,,WM Germany,"C Under exclusive license to Warner Music Group Germany Holding GmbH, © 2020 Robin Schulz, P Under exclusive license to Warner Music Group Germany Holding GmbH, ℗ 2020 Robin Schulz",5308 +5309,spotify:track:6SgN8X1NZfV5cQURC72t5u,Riverside,spotify:artist:3XonXgjEAAXVl0WKLF1Z4g,Sidney Samson,spotify:album:5zhKPeMtFe1Bc7CwgIKbMo,"JimmyZ Presents 4Play, Vol. 9",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-10-24,https://i.scdn.co/image/ab67616d0000b2739275c209399d12ce19acabe1,1,2,323066,https://p.scdn.co/mp3-preview/496fac27bf3e7d69ce18ef34633eb3ad3cef2f25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLC280810779,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch house,electro house,melbourne bounce,progressive electro house",0.804,0.977,1.0,-2.458,0.0,0.0453,0.000311,0.876,0.133,0.203,126.008,4.0,,Central Station Records,P 2009 Central Station Records,5309 +5310,spotify:track:7K0Jghh9by2jPjU0IuA1r6,Sadie The Cleaning Lady,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:0pn89FD5YCTfzUKDzKKVDL,The Classic Gold Collection: 1967 - 1985,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1995-01-01,https://i.scdn.co/image/ab67616d0000b27317d8851027cc483df23788a9,1,1,198506,https://p.scdn.co/mp3-preview/ab080a4235e75242653f116a39abb2ec75336498?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUEM06700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.436,0.622,7.0,-7.074,1.0,0.157,0.37,1.06e-06,0.0833,0.935,177.278,4.0,,EMI Australia,"C © 1995 EMI Recorded Music Australia Pty Ltd., P ℗ 1995 EMI Recorded Music Australia Pty Ltd.",5310 +5311,spotify:track:2l6uZK0T18rviqNQMQ3k17,Skin Deep,spotify:artist:0RUEHcBiENFEqxgicqS2ig,The Stranglers,spotify:album:1czXkVzstJU0OZFwEPTQci,Greatest Hits 1977-1990,spotify:artist:0RUEHcBiENFEqxgicqS2ig,The Stranglers,1990-11-16,https://i.scdn.co/image/ab67616d0000b273e9c3bfac42dc49aa93648cb7,1,9,235266,https://p.scdn.co/mp3-preview/6833221a03dafa1da1a2a5d0005e6f1fedc8ee32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBM8400018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,new romantic,new wave,new wave pop,protopunk,pub rock,zolo",0.622,0.769,9.0,-10.215,1.0,0.029,0.23,0.673,0.135,0.776,128.21,4.0,,Epic,P (P) 1990 Sony Music Entertainment UK Limited,5311 +5312,spotify:track:28Y2taEFmHofu2EsU04ILf,Anyone Who Had a Heart - 2003 Remaster,spotify:artist:3bCvHtuIXWXPbCMdSYudmZ,Cilla Black,spotify:album:1OYFI2ylkl9kluPmY4SUmD,Beginnings,spotify:artist:3bCvHtuIXWXPbCMdSYudmZ,Cilla Black,2003,https://i.scdn.co/image/ab67616d0000b273b8adb62e42a607432f06048a,1,1,171373,https://p.scdn.co/mp3-preview/95aca1a848679a9860bf35100e6e7f160df1c41e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAYE0301100,spotify:user:bradnumber1,2022-08-26T01:43:44Z,"brill building pop,merseybeat,rock-and-roll",0.49,0.455,7.0,-10.708,1.0,0.0312,0.821,0.257,0.221,0.413,80.371,3.0,,Parlophone UK,"C © 2003 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2003 Parlophone Records Ltd, a Warner Music Group Company",5312 +5313,spotify:track:13UzAYJ4PUO65PTnjZZ2pf,Roll With It,spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,spotify:album:1n1Ddsw4ydu5MTODo8lAHQ,(What's The Story) Morning Glory,spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,1995-10-02,https://i.scdn.co/image/ab67616d0000b2730f9bc98a8b342fb18f41cf1b,1,2,239826,https://p.scdn.co/mp3-preview/a9590039ff8d21b2fe9bedae69ee80b2dd2309da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBQY9502002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,britpop,madchester,permanent wave,rock",0.251,0.983,9.0,-1.806,0.0,0.111,0.00299,4.91e-05,0.263,0.234,126.62,4.0,,Helter Skelter Records,P (P) 1995 Sony Music Entertainment (UK) Ltd.,5313 +5314,spotify:track:0zL9dieoCcjBWV01y73Cj1,Faded,spotify:artist:28j8lBWDdDSHSSt5oPlsX2,ZHU,spotify:album:75iYmhihZaJXZ0LmA7JGum,THE NIGHTDAY,spotify:artist:28j8lBWDdDSHSSt5oPlsX2,ZHU,2014-04-20,https://i.scdn.co/image/ab67616d0000b27330e314ad00bee99cf64c9b88,1,2,223484,https://p.scdn.co/mp3-preview/d3ba7b1d388b159b8bef46479d44a21165ce0b51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,QMALR1400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,electro house",0.863,0.475,9.0,-7.195,0.0,0.0487,0.0086,0.114,0.122,0.586,124.964,4.0,,Mind of a Genius,"C 2014 Mind of a Genius, P 2014 Mind of a Genius",5314 +5315,spotify:track:7bx8UJqhwiQWWIjxuqotYK,Never Forget,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,spotify:album:6ELHuXZkto0gI7imw9lX7J,Take That Greatest Hits,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,1996-03-25,https://i.scdn.co/image/ab67616d0000b2731139512d877ddfbd6e5a80ee,1,2,384093,https://p.scdn.co/mp3-preview/fed4746aa005cb933c3e0f07d35bcf1be1ab5761?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9500052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop,talent show",0.627,0.687,9.0,-9.85,1.0,0.0424,0.382,1.56e-06,0.0493,0.576,91.201,4.0,,RCA Records Label,P (P) 1996 BMG Entertainment International UK & Ireland Ltd.,5315 +5316,spotify:track:1SQBrDt9Qpektc2VLUK8yc,Se a Vida E (That's the Way Life Is) - 2001 Remaster,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,spotify:album:7x4QGVpvnb3NKPdGQzDcsM,Bilingual: Further Listening 1995-1997,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,1996-09-02,https://i.scdn.co/image/ab67616d0000b273af04b437d9f88f07bc798ca3,1,5,241200,https://p.scdn.co/mp3-preview/912d06d14b85be222d2a140abef91e741ad557c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEW0100097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,permanent wave,synthpop",0.513,0.88,9.0,-6.018,1.0,0.0722,0.213,0.0,0.0768,0.623,93.018,4.0,,Parlophone UK,"C © 2009 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd, P ℗ 2009 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd",5316 +5317,spotify:track:3s4U7OHV7gnj42VV72eSZ6,Rather Be (feat. Jess Glynne),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:4ScCswdRlyA23odg9thgIO","Clean Bandit, Jess Glynne",spotify:album:4UB0J5V3JsZZtNR360pZ6r,Rather Be (feat. Jess Glynne),spotify:artist:6MDME20pz9RveH9rEXvrOM,Clean Bandit,2014-01-17,https://i.scdn.co/image/ab67616d0000b2737e519297d9876b6afff2ab7b,1,1,227833,https://p.scdn.co/mp3-preview/358cc2906abb9789b9c1d4a7e07dc2601b7ade4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBAHS1300498,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,dance pop,pop,uk pop",0.799,0.586,11.0,-6.735,1.0,0.0377,0.162,2.03e-06,0.193,0.549,120.97,4.0,,Atlantic Records,"C © 2013 Warner Music UK Limited, P ℗ 2013 Warner Music UK Limited",5317 +5318,spotify:track:5ihZarJQzsvrLE7R9zjwTq,Super Freaky Girl,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:2gZPcOhS7Q0lRmTV5qRcSe,Super Freaky Girl,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2022-08-12,https://i.scdn.co/image/ab67616d0000b273db7c181d6552ebef77cbca38,1,1,170977,https://p.scdn.co/mp3-preview/c8c097394136c7b9b6adfb6ec74117dcc49cc0c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USUM72215261,spotify:user:bradnumber1,2022-10-27T23:57:25Z,"hip pop,pop,queens hip hop,rap",0.952,0.882,2.0,-2.634,1.0,0.217,0.0537,1.82e-05,0.314,0.9,133.051,4.0,,Republic Records,"C © 2022 Republic Records, a division of UMG Recordings, Inc., P ℗ 2022 Republic Records, a division of UMG Recordings, Inc.",5318 +5319,spotify:track:3HSkqVRl0x6LdolfYMtJlH,Leave Me Alone (I'm Lonely),spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2gccJPbfddWfxNdvsRxL8J,I'm Not Dead,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2006-03-31,https://i.scdn.co/image/ab67616d0000b273f366eba0d5127af7a7acc52a,1,8,198653,https://p.scdn.co/mp3-preview/a23360dae14a3a0dfd41241c8ba26c4f52613f8d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USLF20600028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.476,0.866,7.0,-3.696,1.0,0.0407,0.000433,6.98e-05,0.0724,0.469,150.051,4.0,,LaFace Records,"P (P) 2006 RCA/JIVE Label Group, a unit of Sony Music Entertainment",5319 +5320,spotify:track:4EAPO5ADkf8QMEYnUyeDaI,Lover Lover,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:5Hw7vceIgo04O7AAq6RCcc,Hits,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1996,https://i.scdn.co/image/ab67616d0000b2733dd4fb220d9107082b3f858b,1,3,210573,https://p.scdn.co/mp3-preview/a53fd8212351af90a7ab137d65e1555f520b225a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI09600890,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.605,0.69,10.0,-6.631,1.0,0.028,0.00428,4.36e-06,0.107,0.904,113.167,4.0,,Bloodlines,"C 1996 Bloodlines, P 1996 Bloodlines",5320 +5321,spotify:track:2EMbzZQTDR9lr94U8aZyRY,Too Young,spotify:artist:5ZEAzHE2TzAwUcOj6jMIgf,Donny Osmond,spotify:album:5oO27KqKzv4COrgp6mVV5R,Too Young,spotify:artist:5ZEAzHE2TzAwUcOj6jMIgf,Donny Osmond,1972-07-15,https://i.scdn.co/image/ab67616d0000b273b6500e03699f742395f707e5,1,2,186506,https://p.scdn.co/mp3-preview/4ecf9cf6a9a92ee521894244faf68459b5c8e85c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USPR37207324,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.145,0.637,5.0,-4.411,1.0,0.0403,0.427,1.21e-06,0.316,0.347,171.892,3.0,,Universal Records,"C © 1972 UMG Recordings, Inc., P ℗ 1972 UMG Recordings, Inc.",5321 +5322,spotify:track:5Yq58BC5k14EVUJ63cmg8g,Afternoon Delight,spotify:artist:66QeIFuFJDNCImNHlFzrY1,Starland Vocal Band,spotify:album:5DDpGgEdJKpH99oD4jlvQ8,Starland Vocal Band,spotify:artist:66QeIFuFJDNCImNHlFzrY1,Starland Vocal Band,1976,https://i.scdn.co/image/ab67616d0000b273a870ef45e2a636668cf7272f,1,8,193040,https://p.scdn.co/mp3-preview/c8a7a045da9803025b1af64bea9fac23d82d121f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRZR0491708,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.483,0.439,5.0,-11.756,1.0,0.0304,0.494,0.0,0.104,0.767,147.07,4.0,,Razor & Tie,,5322 +5323,spotify:track:2JdzB67NvIa90K4gEZPLeX,Lump,spotify:artist:1lZvg4fNAqHoj6I9N8naBM,The Presidents Of The United States Of America,spotify:album:5xxeAo8AVneH1OKO5vR604,The Presidents of The United States of America: Ten Year Super Bonus Special Anniversary Edition,spotify:artist:1lZvg4fNAqHoj6I9N8naBM,The Presidents Of The United States Of America,1995,https://i.scdn.co/image/ab67616d0000b273a82d10a00b1821ce323645c0,1,3,134200,https://p.scdn.co/mp3-preview/d7784790327227c50699e2f6efc33414569d37d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,US35G0400023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,pop rock",0.499,0.873,6.0,-3.902,1.0,0.0386,0.00468,0.0,0.165,0.864,142.726,4.0,,PUSA Music,"C (C) 2004 PUSA Music, P (P) 2004 PUSA Music",5323 +5324,spotify:track:1Etdq9veihusHBIemDgxO2,Where Them Girls At - feat. Nicki Minaj & Flo Rida,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","David Guetta, Flo Rida, Nicki Minaj",spotify:album:0qCuRUxCZIQuqlboSVQ1tB,Nothing But The Beat,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2011,https://i.scdn.co/image/ab67616d0000b27354e095b51d4ba95496cd60d7,1,1,210080,https://p.scdn.co/mp3-preview/66097ef2519b9e7227e7362ccb5b039e50be3eca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB28K1100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,dance pop,miami hip hop,pop,pop rap,hip pop,pop,queens hip hop,rap",0.662,0.873,0.0,-3.116,0.0,0.0395,0.0292,0.0,0.224,0.592,129.902,4.0,,Virgin local,"C (C) 2011 What A Music Ltd, licence exclusive EMI Music France, P (P) 2011 What A Music Ltd, licence exclusive EMI Music France",5324 +5325,spotify:track:4HaKJH8swiAIRuiU2mgr6f,Over Now (with The Weeknd),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ","Calvin Harris, The Weeknd",spotify:album:79zI2ebmyzsx3FHn6EmN2X,Over Now (with The Weeknd),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ","Calvin Harris, The Weeknd",2020-08-28,https://i.scdn.co/image/ab67616d0000b273bd1215d30d42cb4c5fbad463,1,1,210795,https://p.scdn.co/mp3-preview/d4a069daf20fcf37d93ed687f53f82cbad73f0dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBARL2001062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,canadian contemporary r&b,canadian pop,pop",0.6,0.89,4.0,-4.106,0.0,0.0427,0.0791,0.00222,0.3,0.668,177.995,4.0,,Columbia,P (P) 2020 Sony Music Entertainment UK Limited / XO Records/Republic Records,5325 +5326,spotify:track:7GyPQhLE8lYMlyFY8n5s1A,F**kin' Perfect,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:3uok8QCPYBgdWV2HxQp5zw,F**kin' Perfect,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2010-12-24,https://i.scdn.co/image/ab67616d0000b27336d75a2637c3860404de1e2f,1,1,213413,https://p.scdn.co/mp3-preview/d86197ecbaf78ce1d4d8d2926b97eb34485a5ede?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USLF21000091,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.563,0.671,7.0,-4.788,1.0,0.0372,0.0422,0.0,0.36,0.45,91.965,4.0,,LaFace Records,"P (P) 2010 LaFace Records, a unit of Sony Music Entertainment",5326 +5327,spotify:track:4U9arGcc4ATa7shChhLQP0,Walk On Water,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,spotify:album:0Dth0vv2bqxXkFMcF4andk,Walk On Water,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,2017-08-22,https://i.scdn.co/image/ab67616d0000b273b00e4412564dd9c92661de4a,1,1,188227,https://p.scdn.co/mp3-preview/b24a40896af0276240af3ea23e6c115205b8886e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11700409,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,post-grunge",0.494,0.778,8.0,-7.041,1.0,0.0359,0.000115,0.0,0.0904,0.406,139.963,4.0,,Universal Music Group,"C © 2017 Thirty Seconds to Mars, under exclusive license to Interscope Records, P ℗ 2017 Thirty Seconds to Mars, under exclusive license to Interscope Records",5327 +5328,spotify:track:1mXVgsBdtIVeCLJnSnmtdV,Too Good At Goodbyes,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:3TJz2UBNYJtlEly0sPeNrQ,The Thrill Of It All (Special Edition),spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2017-11-03,https://i.scdn.co/image/ab67616d0000b273005cd7d0ae87b081601f6cca,1,1,201000,https://p.scdn.co/mp3-preview/2e2100af8cd386f628684caafb50662b67656de0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,GBUM71704089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.715,0.372,5.0,-8.237,1.0,0.0443,0.638,0.0,0.169,0.474,91.931,4.0,,PLG - Capitol,"C © 2017 Universal Music Operations Limited, P ℗ 2017 Universal Music Operations Limited",5328 +5329,spotify:track:3iEABTE7uVYkVQA8wCUnVZ,"The Good, the Bad and the Ugly - From ""The Good, the Bad and the Ugly""","spotify:artist:5g64xp3hpxoCXRJkNd5tmE, spotify:artist:0JBc7Jztn7EdEVjyMCN6Wi","Hugo Montenegro & His Orchestra, Hugo Montenegro",spotify:album:7lGcyvjCwYiIp510uKa38v,All-Time Greatest Movie Themes & Schemes,spotify:artist:5g64xp3hpxoCXRJkNd5tmE,Hugo Montenegro & His Orchestra,1999-08-24,https://i.scdn.co/image/ab67616d0000b273fa844d949377ce2704ee2a25,1,15,165693,https://p.scdn.co/mp3-preview/82852d9d92211e4f6d596d3b482ed59b11c1731e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USRC16707524,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"easy listening,man's orchestra,easy listening",0.531,0.648,0.0,-10.648,1.0,0.0412,0.649,0.501,0.442,0.589,116.572,4.0,,RCA Records Label,P (P) 1999 BMG Entertainment,5329 +5330,spotify:track:1CS7Sd1u5tWkstBhpssyjP,Take Me to Church,spotify:artist:2FXC3k01G6Gw61bmprjgqS,Hozier,spotify:album:4Pv7m8D82A1Xun7xNCKZjJ,Hozier (Expanded Edition),spotify:artist:2FXC3k01G6Gw61bmprjgqS,Hozier,2014-09-19,https://i.scdn.co/image/ab67616d0000b2734ca68d59a4a29c856a4a39c2,1,1,241693,https://p.scdn.co/mp3-preview/d6170162e349338277c97d2fab42c386701a4089?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USSM11307291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish singer-songwriter,modern rock,pop,pov: indie",0.566,0.664,4.0,-5.303,0.0,0.0464,0.634,0.0,0.116,0.437,128.945,4.0,,Columbia,"P (P) 2014 Rubyworks, under license to Columbia Records, a Division of Sony Music Entertainment",5330 +5331,spotify:track:7w3klLQ4XYHxEdYL50qX9M,New Year's Day,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7k7aHoW1MGWWQR0KXvswkx,U218 Singles (Deluxe Version),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a589a051c46a5ff41125e9d6,1,6,258093,https://p.scdn.co/mp3-preview/3116e1c7f08dfdd248f6cf5e9f956eb303976cec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8300023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.52,0.864,8.0,-4.243,0.0,0.0328,0.00253,0.0244,0.507,0.6,133.465,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",5331 +5332,spotify:track:5Nbe9vDQ1YJdreVIlhZEpP,Lay Me Down,"spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:5y2Xq6xcjJb2jVM54GHK3t","Sam Smith, John Legend",spotify:album:100d23wjLypr8mJKUMssRk,Lay Me Down,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2015-03-09,https://i.scdn.co/image/ab67616d0000b2731f355bbe04babe9142678f06,1,1,219662,https://p.scdn.co/mp3-preview/d338f20d10cd67dddb6d32fd01818a52229cce4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71500850,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop,neo soul,pop,pop soul,urban contemporary",0.463,0.198,4.0,-11.003,1.0,0.0387,0.915,0.0,0.106,0.369,123.63,4.0,,UMG-EMI,"C (C) 2015 Capitol Records Ltd., P (P) 2015 Capitol Records Ltd.",5332 +5333,spotify:track:0U969xYNlAyfzi8P1TaO7u,Wait for You,spotify:artist:4am1I89OWXUzFh4ctRLkdd,Elliott Yamin,spotify:album:4G390E1M4qCVxgAcbYaFwu,Elliott Yamin,spotify:artist:4am1I89OWXUzFh4ctRLkdd,Elliott Yamin,2007-03-23,https://i.scdn.co/image/ab67616d0000b2739fdd7d1b6b208937157ee182,1,2,261320,https://p.scdn.co/mp3-preview/ce6f3d0c4be875125ef9fb735269150794b1789e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USYYK0700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,idol,0.764,0.487,0.0,-6.734,1.0,0.0281,0.25,0.0,0.184,0.352,116.027,4.0,,Hickory/Sony ATV/RSM/RED,"C (C) 2007 Hickory Records, P (P) 2007 Sony/ATV Music Publishing, Elliott Yamin",5333 +5334,spotify:track:09RQez2cCVx1DC1vIan2oS,"Operation Blade (7"" Radio Edit)",spotify:artist:2OF3TwBOVWNJLMQSUwLC6z,Public Domain,spotify:album:6aUOnon0SzOA8ZxmY53HPj,Hard Hop Superstars,spotify:artist:2OF3TwBOVWNJLMQSUwLC6z,Public Domain,2001,https://i.scdn.co/image/ab67616d0000b273ef3104d588d140532cd9a65d,1,4,186066,https://p.scdn.co/mp3-preview/5adb276064ee499df7f624b686e6a8b5361b6275?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBCUY0070001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.536,0.977,1.0,-6.379,1.0,0.0658,0.000243,0.74,0.441,0.346,140.07,4.0,,Demon,"C (C) 2011 Demon Music Group Ltd, P (P) 2011 Demon Music Group Ltd",5334 +5335,spotify:track:6ezg5Mm5UEEi3Oqsbb7Cjn,"Do You Mind (feat. Nicki Minaj, Chris Brown, August Alsina, Jeremih, Future & Rick Ross)","spotify:artist:0QHgL1lAIqAw0HtD7YldmP, spotify:artist:0hCNtLu0JehylgoiP8L4Gh, spotify:artist:7bXgB6jMjp9ATFy66eO08Z, spotify:artist:19Fi1Rj7kk8kyiwxpXy3yM, spotify:artist:3KV3p5EY4AvKxOlhGHORLg, spotify:artist:1RyvyyTE3xzB2ZywiAwp0i, spotify:artist:1sBkRIssrMs1AbVkOJbc7a","DJ Khaled, Nicki Minaj, Chris Brown, August Alsina, Jeremih, Future, Rick Ross",spotify:album:6ZQyMrmlg95L8gy63Pnm33,Major Key,spotify:artist:0QHgL1lAIqAw0HtD7YldmP,DJ Khaled,2016-08-05,https://i.scdn.co/image/ab67616d0000b27322b8ce40e34df47defbeeb77,1,7,325614,https://p.scdn.co/mp3-preview/0ca7da14001164026a7cbde3ebff5f30c236a666?cid=9950ac751e34487dbbe027c4fd7f8e99,True,60,USSM11605482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,miami hip hop,pop rap,rap,hip pop,pop,queens hip hop,rap,r&b,rap,pop r&b,pop rap,r&b,southern hip hop,trap,urban contemporary,chicago rap,pop rap,r&b,southern hip hop,trap,urban contemporary,atl hip hop,hip hop,rap,southern hip hop,trap,dirty south rap,gangster rap,hip hop,rap,southern hip hop,trap",0.412,0.548,10.0,-6.981,1.0,0.243,0.0173,0.0,0.181,0.176,81.293,4.0,,Epic/We The Best,"P (P) 2016 We The Best x Influence. Exclusively distributed by Epic Records, a division of Sony Music Entertainment.",5335 +5336,spotify:track:2T3pa8WivYPDXohhyQqLML,Bust A Move,spotify:artist:5n30a5V4ftXNMHCHChmK2h,Young MC,spotify:album:0L9f74kFxdc0JEBHacgvci,The Replacements (Music From The Motion Picture),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2000-09-19,https://i.scdn.co/image/ab67616d0000b273711ff39c1ec9fa4065c5784e,1,4,265666,https://p.scdn.co/mp3-preview/e3403c0ca7bdf211494f04876a48362703a37ace?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US3M50018004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,miami bass",0.954,0.616,4.0,-11.55,1.0,0.114,0.0872,5.03e-05,0.0926,0.836,117.552,4.0,,Varese Sarabande,"C © 2000 Warner Bros., P ℗ 2000 Warner Bros., under exclusive license to Varese Sarabande Records LLC",5336 +5337,spotify:track:5HNCy40Ni5BZJFw1TKzRsC,Comfortably Numb,spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,spotify:album:5Dbax7G8SWrP9xyzkOvy2F,The Wall,spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,1979-11-30,https://i.scdn.co/image/ab67616d0000b2735d48e2f56d691f9a4e4b0bdf,2,6,382296,https://p.scdn.co/mp3-preview/ac032e24ed332f7d57306ca32aead2daf5ee1be4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBN9Y1100113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,progressive rock,psychedelic rock,rock,symphonic rock",0.472,0.366,11.0,-12.595,0.0,0.0286,0.15,0.312,0.0837,0.171,127.163,4.0,,Pink Floyd Records,"P (P) 2016 The copyright in this sound recording is owned by Pink Floyd Music Ltd., marketed and distributed by Sony Music Entertainment",5337 +5338,spotify:track:3mxLhgOwg4QjYxrP7rO8Rq,Jai Ho! (You Are My Destiny),"spotify:artist:1mYsTxnqsietFxj1OgoGbG, spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ, spotify:artist:40xbWSB4JPdOkRyuTDy1oP","A.R. Rahman, The Pussycat Dolls, Nicole Scherzinger",spotify:album:6WGJ3lgccWlOoOQLFyjvBe,Doll Domination (Revised International Version),spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2008,https://i.scdn.co/image/ab67616d0000b273ad514c6d527d38c25faa6bd2,1,17,222413,https://p.scdn.co/mp3-preview/23302bf2bcb436cfc738931264f06cd4322c34fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70954362,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"filmi,dance pop,girl group,pop,dance pop,pop,post-teen pop",0.643,0.934,8.0,-3.967,0.0,0.0573,0.0521,3.02e-06,0.0773,0.896,136.191,4.0,,Pussycat Dolls LP2 / Timbaland,"C © 2009 Pussycat Dolls, LLC, P ℗ 2009 Pussycat Dolls, LLC",5338 +5339,spotify:track:13P5rwmk2EsoFRIz9UCeh9,Cool Kids,spotify:artist:1PbBg2aYjWLKRk84zJK15x,Echosmith,spotify:album:1oHY6eQmEG8skElDvFgKz2,Talking Dreams - Deluxe Edition,spotify:artist:1PbBg2aYjWLKRk84zJK15x,Echosmith,2013-10-04,https://i.scdn.co/image/ab67616d0000b273106fa02aaa287ec63af85aae,1,3,237626,https://p.scdn.co/mp3-preview/2d57e97d9ab849b35b6462fdd736872a2b983849?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USWB11301764,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,indie poptimism,viral pop",0.719,0.671,8.0,-6.279,1.0,0.0336,0.0372,8.21e-06,0.12,0.786,130.027,4.0,,Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc.",5339 +5340,spotify:track:3QCATKyR7mzqvQB750qNxs,Daddy Don't You Walk So Fast,spotify:artist:5NX29TmuYrENlpvz6IgYMJ,Wayne Newton,spotify:album:36WJKCqLTXQ4kdbVrpwI2a,The Best Of Wayne Newton,spotify:artist:5NX29TmuYrENlpvz6IgYMJ,Wayne Newton,1994-01-01,https://i.scdn.co/image/ab67616d0000b2737fc7f578da97ebf5eada6041,1,11,206333,https://p.scdn.co/mp3-preview/d0879b521b731eb1766bc2849159d2240fa0bd08?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USCA20807014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge",0.541,0.305,5.0,-14.475,1.0,0.0385,0.826,2.29e-06,0.148,0.515,146.596,4.0,,CAPITOL CATALOG MKT (C92),"C © 1994 Capitol Records, LLC, P This Compilation ℗ 1994 Capitol Records, LLC",5340 +5341,spotify:track:7M16mAuWuFA5rC9HvkXaGx,You Don't Know Me,"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2","Jax Jones, RAYE",spotify:album:6g7W3OT9BzZFULW0c3kjGb,You Don't Know Me,spotify:artist:4Q6nIcaBED8qUel8bBx6Cr,Jax Jones,2016-12-09,https://i.scdn.co/image/ab67616d0000b273e533ba402e44b89a13685154,1,1,211935,https://p.scdn.co/mp3-preview/64933e484bac3efd46f361f86652217cc874c30e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBUM71606456,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,house,pop dance,uk dance,uk contemporary r&b,uk pop",0.877,0.658,11.0,-6.055,0.0,0.132,0.163,0.0,0.0967,0.693,123.994,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Polydor Ltd. (UK), under exclusive license to etcetc Music Pty. Ltd, P ℗ 2016 Polydor Ltd. (UK), under exclusive license to etcetc Music Pty. Ltd",5341 +5342,spotify:track:06TuMCjDEYjTOJScCRzmjf,Don't Let Go (Love),spotify:artist:5fikk4h5qbEebqK2Fc6e48,En Vogue,spotify:album:3mn8mLqRknZCD8o7Ruy4BN,EV3,spotify:artist:5fikk4h5qbEebqK2Fc6e48,En Vogue,1997-06-17,https://i.scdn.co/image/ab67616d0000b273b3f0da6220b1c2bc11876f76,1,2,291880,https://p.scdn.co/mp3-preview/a9048f027bab4ec9aa219433235cd7ae774354d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USEW19605702,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,girl group,hip pop,new jack swing,r&b,urban contemporary",0.618,0.688,5.0,-5.867,0.0,0.0477,0.409,6.32e-06,0.3,0.561,78.311,4.0,,Atlantic Records,"C © 1997 Elektra Entertainment Group, A Division of Warner Communications Inc. for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1997 Elektra Entertainment Group, A Division of Warner Communications Inc. for the United States and WEA International Inc. for the world outside of the United States.",5342 +5343,spotify:track:6fQcqEcXfnY0L6VwS0c3gT,Cheerleader (Felix Jaehn Remix) - Radio Edit,"spotify:artist:5MouCg6ta7zAxsfMEbc1uh, spotify:artist:4bL2B6hmLlMWnUEZnorEtG","OMI, Felix Jaehn",spotify:album:0Yf3Dt43zUssZqS4JhzXsZ,Cheerleader (Felix Jaehn Remix Radio Edit),spotify:artist:5MouCg6ta7zAxsfMEbc1uh,OMI,2014-12-02,https://i.scdn.co/image/ab67616d0000b273a85745e57c37f7180dbff6df,1,1,180021,https://p.scdn.co/mp3-preview/c3df170713ca9a47e4ef1cca5bb4811bbe6d7ea8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USUS11202574,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,edm,german dance,pop dance,tropical house,uk dance",0.827,0.576,4.0,-7.774,1.0,0.0372,0.184,0.029,0.0656,0.41,118.04,4.0,,"Ultra Records, LLC","P (P) 2014 Ultra Records, LLC under exclusive license to Columbia",5343 +5344,spotify:track:3VrgdoAzs5plHzLlVGlJJt,If We Try,spotify:artist:1gRNBaI4yn6wCCTvRhGWh8,Don McLean,spotify:album:420xo0cugEiChNYB6uanu9,The Very Best Of Don McLean,spotify:artist:1gRNBaI4yn6wCCTvRhGWh8,Don McLean,2000-01-01,https://i.scdn.co/image/ab67616d0000b273bdfea0231c750c8c13afc747,1,15,214866,https://p.scdn.co/mp3-preview/47178086c8a33349f8cca05c8eb9eb2c07d36bc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USEM39200207,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.558,0.323,2.0,-13.495,1.0,0.0304,0.873,0.000204,0.118,0.542,109.774,4.0,,EMI/EMI Records (USA),"C © 2000 Capitol Records, LLC, P This Compilation ℗ 2000 Capitol Records, LLC",5344 +5345,spotify:track:48ByhmhBjgyWIRzdHDuQMD,High - Original Mix,"spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY, spotify:artist:0lYzZ91QzokaPrRK1vq6tW","Peking Duk, Nicole Millar",spotify:album:743OdX8tEleANbq4TrHjgI,High,spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,2014-02-14,https://i.scdn.co/image/ab67616d0000b273b8837cc1da91ac49365983f5,1,1,228000,https://p.scdn.co/mp3-preview/575942d4fde64b4a8b154e248fb5a7f3e2c08d7e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC01434911,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian electropop,australian indie,edm,australian pop,gauze pop",0.524,0.798,0.0,-4.092,0.0,0.0491,0.00127,0.00134,0.347,0.357,100.1,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 Vicious Bitch, P ℗ 2014 Vicious Bitch",5345 +5346,spotify:track:5T490vvoFNU6psep0NPmxs,Savage Love (Laxed - Siren Beat),"spotify:artist:56mfhUDKa1vec6rSLZV5Eg, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Jawsh 685, Jason Derulo",spotify:album:0dnmmbHWt1kH47FWDhwBHq,Savage Love (Laxed - Siren Beat),"spotify:artist:56mfhUDKa1vec6rSLZV5Eg, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Jawsh 685, Jason Derulo",2020-06-09,https://i.scdn.co/image/ab67616d0000b27337267b1f51858337b0299127,1,1,171374,https://p.scdn.co/mp3-preview/e760d348cf18a0b048fd461ff460f5e09d2b112b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USSM12003872,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"nz pop,dance pop,pop",0.795,0.48,3.0,-8.556,1.0,0.0688,0.243,0.0,0.271,0.723,149.919,4.0,,Columbia,"P (P) 2020 Columbia Records, a Division of Sony Music Entertainment",5346 +5347,spotify:track:55ZWTl8lj0Ms5wynXffjk8,Key To My Heart,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,spotify:album:7EHwCUqSn2hlNi666MPwSt,Born To Do It,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2000-08-14,https://i.scdn.co/image/ab67616d0000b273fc5d04af946ab1c572278415,1,6,253026,https://p.scdn.co/mp3-preview/9b74418cf22ce35b246d68506e6710c6d259f2ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAWV0102579,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.595,0.612,1.0,-6.638,1.0,0.0278,0.0555,0.0,0.105,0.487,93.863,4.0,,WM UK,"C 2001 Teacup, P 2001 Teacup",5347 +5348,spotify:track:4RnCPWlBsY7oUDdyruod7Y,Drunk,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:02pi98kE0nra0yBqCStzbC,+,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2011-09-09,https://i.scdn.co/image/ab67616d0000b2736567a393a964a845a89b7f70,1,2,200093,https://p.scdn.co/mp3-preview/3d7b3c0258387530d5947259ce4ae4532d63dca5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAHS1100199,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.733,0.652,7.0,-9.101,1.0,0.0696,0.419,2.37e-06,0.521,0.459,99.998,4.0,,Atlantic Records UK,"C © 2011 Warner Music UK Limited, P ℗ 2011 Warner Music UK Limited",5348 +5349,spotify:track:6HA97v4wEGQ5TUClRM0XLc,99 Luftballons,spotify:artist:6Tz0QRoe083BcOo2YbG9lV,Nena,spotify:album:0V8ETNFjMiaCoG45ZPWsUs,99 Luftballons,spotify:artist:6Tz0QRoe083BcOo2YbG9lV,Nena,1984-08-21,https://i.scdn.co/image/ab67616d0000b273bab7a6c80b9da5e76f8e3fa6,1,11,233000,https://p.scdn.co/mp3-preview/c4c8b07136c8d99f1f1ba95f43162e1774e8b30c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEE868300011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german pop,new wave pop",0.466,0.438,4.0,-12.858,1.0,0.0608,0.089,5.62e-06,0.113,0.587,193.1,4.0,,Epic,"P (P) 1983, 1984 Sony Music Entertainment (Germany) GmbH",5349 +5350,spotify:track:7cbzwT8UAoNSMrK0sm6ZtP,Hey Boys and Girls (Truth of the World Pt. 2),spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,spotify:album:6SmGB5TdTWtCjNZWChZ9tC,Truth Of The World: Welcome To The Show (Standard),spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,2009-03-20,https://i.scdn.co/image/ab67616d0000b273e50d608214d3e38988fd9bf4,1,5,348386,https://p.scdn.co/mp3-preview/0bd720a1d83ff7b84fc00f2b81ef3a8c5484041f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA00900022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,kiwi rock",0.654,0.877,4.0,-3.921,0.0,0.0327,0.00531,0.000281,0.0734,0.76,128.058,4.0,,WM Australia,"C © 2009 Evermore Music Pty Ltd Under Exclusive License to Warner Music Australia Pty Ltd, P ℗ 2009 Evermore Music Pty Ltd Under Exclusive License to Warner Music Australia Pty Ltd",5350 +5351,spotify:track:6r9pbQMonlu66Cjc8olaya,1993 (No Chill),"spotify:artist:5xO9868Xc1mjAzmaN1efoK, spotify:artist:6UAI6cR7qAewlSTWkRc7wI","Paces, Jess Kent",spotify:album:53sQMgQDuj5EJHYzPjA1PO,Vacation,spotify:artist:5xO9868Xc1mjAzmaN1efoK,Paces,2016-03-02,https://i.scdn.co/image/ab67616d0000b27365eff9b92db12acb92ee7b17,1,3,184688,https://p.scdn.co/mp3-preview/e97fdc47185cb35ff4421361e782e969d3d5d67e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUNV01500879,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,australian pop",0.848,0.566,8.0,-6.288,1.0,0.0878,0.281,0.00816,0.051,0.723,100.051,4.0,,etcetc Music Pty Ltd,"C © 2016 etcetc Music Pty Ltd. www.etcetc.tv, P ℗ 2016 etcetc Music Pty Ltd. www.etcetc.tv",5351 +5352,spotify:track:7yZvWX3xZ50oh555vREpin,Let's Go To Bed,spotify:artist:7bu3H8JO7d0UbMoVzbo70s,The Cure,spotify:album:5tAMx7VbNpPCvn35reMtFN,Japanese Whispers,spotify:artist:7bu3H8JO7d0UbMoVzbo70s,The Cure,1983-01-01,https://i.scdn.co/image/ab67616d0000b27348ead1ce9bee56c7e1d1f4c0,1,1,214160,https://p.scdn.co/mp3-preview/af1cb0034af7445cfe274430994a8726a9bca23d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBALB8300002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave,permanent wave,rock,uk post-punk",0.8,0.767,0.0,-13.148,0.0,0.103,0.52,0.333,0.312,0.737,128.175,4.0,,Polydor Records,"C © 1983 Fiction Records Ltd., P This Compilation ℗ 1983 Fiction Records Ltd.",5352 +5353,spotify:track:2h1IPjP471JJRSShTHRUhi,Dangerous Woman,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:4lVR2fg3DAUQpGVJ6DciHW,Dangerous Woman,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2016-05-20,https://i.scdn.co/image/ab67616d0000b2737227f5854239a059af211d5b,1,2,235946,https://p.scdn.co/mp3-preview/d79bcd03785cf98232b895ca8829d439a4f55df7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71601826,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.677,0.604,7.0,-5.32,1.0,0.0385,0.0612,0.0,0.353,0.297,134.052,3.0,,Universal Music Group,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",5353 +5354,spotify:track:4eItapj64PXkaDmXYcuX6w,Before I Fall in Love,spotify:artist:3ioHf138TiMxYRCWmC8yJX,CoCo Lee,spotify:album:2nJQyqtmt5VjiiqFA68jER,Just No Other Way,spotify:artist:3ioHf138TiMxYRCWmC8yJX,CoCo Lee,1999-11-04,https://i.scdn.co/image/ab67616d0000b273394526a2e1a4394442b4e8e6,1,5,224200,https://p.scdn.co/mp3-preview/19e17fffc50ff5747446ea89520b96f843ae36af?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,NLB639970001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mandopop,taiwan pop",0.612,0.501,8.0,-6.197,1.0,0.0283,0.473,0.0,0.108,0.175,116.43,4.0,,Epic,P 1999 Sony Music Entertainment (Holland) B.V.,5354 +5355,spotify:track:0Ytxje4D5iXTHN3MOCC5jS,"Together In Electric Dreams - Remastered 2003 / From ""Electric Dreams"" Original Motion Picture Soundtrack","spotify:artist:6ne5YmZH7oCXcZUBsY66sn, spotify:artist:6jU2Tt13MmXYk0ZBv1KmfO","Phil Oakey, Giorgio Moroder",spotify:album:2VL7fCZeDWVJAWpIhlRoDm,Philip Oakey & Giorgio Moroder,"spotify:artist:6ne5YmZH7oCXcZUBsY66sn, spotify:artist:6jU2Tt13MmXYk0ZBv1KmfO","Phil Oakey, Giorgio Moroder",1985-07-29,https://i.scdn.co/image/ab67616d0000b273552acba326b181859e17e092,1,7,232666,https://p.scdn.co/mp3-preview/ed99444ca0f42903591ad81d7f46e5fcd19af31c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAAA0300612,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,synthpop,disco",0.705,0.524,3.0,-14.051,1.0,0.026,0.236,1.3e-05,0.0767,0.798,129.847,4.0,,EMI Marketing,"C © 1985 Virgin Records Limited, P ℗ 2003 Virgin Records Limited",5355 +5356,spotify:track:1HOMkjp0nHMaTnfAkslCQj,My Sharona,spotify:artist:0Nn9YwJzcaeuU1jJL06e3r,The Knack,spotify:album:6H0wsYDvFlATzXHn0IqVpi,Get The Knack,spotify:artist:0Nn9YwJzcaeuU1jJL06e3r,The Knack,1979-01-01,https://i.scdn.co/image/ab67616d0000b273af6b486fa0a2959f79c8acd8,1,7,295400,https://p.scdn.co/mp3-preview/5ef1f80be4197f4863d1e0f3f267259a97d26f15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USCA28900153,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new wave,new wave pop,power pop,soft rock",0.586,0.7,0.0,-9.558,1.0,0.0363,0.0589,0.00125,0.0318,0.897,147.245,4.0,,Capitol Records,"C © 1979 Capitol Records Inc., P ℗ 1979 Capitol Records Inc.",5356 +5357,spotify:track:3pyTksNccLM1jRvzQ4zTke,Never Tear Us Apart,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:7CJvhqb2PJq5fBcY6eKqjl,INXS Remastered,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b273114b2baa75317b81a8c9c7ca,6,8,184586,https://p.scdn.co/mp3-preview/f823ba04c17d41b80ee811623cd2b7eb97b6af32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBAMX8700005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.664,0.613,0.0,-7.56,1.0,0.0273,0.00294,0.000129,0.175,0.193,96.6,3.0,,Petrol Records,"C © 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",5357 +5358,spotify:track:62R1MRux3R0v2cngA2xdJn,Would I Lie To You?,spotify:artist:5rIhaCHkbFVvLJpKHWwOJD,Charles & Eddie,spotify:album:6DUy5QdkKXI15NFbk3pYAZ,Playlist: 90s Pop,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-04-28,https://i.scdn.co/image/ab67616d0000b2737972a71a8bd676a54d6a564e,1,10,204386,https://p.scdn.co/mp3-preview/0a7ff2947b53ef21855c6dbfaee9246ffa88f1b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA29200183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo soul,0.737,0.647,11.0,-7.076,0.0,0.0368,0.389,0.0,0.201,0.71,101.098,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",5358 +5359,spotify:track:0Uyh92tLyb9JawG8lmWCzJ,Differences,spotify:artist:7r8RF1tN2A4CiGEplkp1oP,Ginuwine,spotify:album:5IZeegMeRHlyKE6LKrVuYt,The Life,spotify:artist:7r8RF1tN2A4CiGEplkp1oP,Ginuwine,2001-04-03,https://i.scdn.co/image/ab67616d0000b273a7a72fa27131a7aa9048e738,1,4,265533,https://p.scdn.co/mp3-preview/315004b74f73d6087fa08da2c91e1cd83e847157?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM10102379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.562,0.594,3.0,-4.578,0.0,0.0558,0.318,0.0,0.311,0.423,62.876,4.0,,Epic,P (P) 2001 SONY BMG MUSIC ENTERTAINMENT,5359 +5360,spotify:track:1lItf5ZXJc1by9SbPeljFd,Juju on That Beat (TZ Anthem),"spotify:artist:7nKeLE1toRtW4M279iS26h, spotify:artist:5AsWcQXw4RJFRWBbwa0ti0","Zay Hilfigerrr, Zayion McCall",spotify:album:5sQTfUX9uSwfCtPiYGO20V,Juju on That Beat (TZ Anthem),"spotify:artist:7nKeLE1toRtW4M279iS26h, spotify:artist:5AsWcQXw4RJFRWBbwa0ti0","Zay Hilfigerrr, Zayion McCall",2016-09-30,https://i.scdn.co/image/ab67616d0000b273186678fe32d915298c28d576,1,1,144244,https://p.scdn.co/mp3-preview/69045952c8eea22dbb74b62ab8a404c92e6f14fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAT21602928,spotify:user:bradnumber1,2021-08-08T09:26:31Z,viral trap,0.807,0.887,1.0,-3.892,1.0,0.275,0.00381,0.0,0.391,0.78,160.517,4.0,,"Tha Lights Global, INC/Atlantic Recording Corp","C © 2016 Tha Lights Global, INC / Atlantic Recording Corporation, P ℗ 2016 Tha Lights Global, INC / Atlantic Recording Corporation",5360 +5361,spotify:track:6Qrai9GOIMzU6URzM6F7zs,Lifestyle (feat. Adam Levine),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:4bYPcJP5jwMhSivRcqie2n","Jason Derulo, Adam Levine",spotify:album:3kO6W0mz3kDvJS9G2EvqRJ,Lifestyle (feat. Adam Levine),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:4bYPcJP5jwMhSivRcqie2n","Jason Derulo, Adam Levine",2021-01-20,https://i.scdn.co/image/ab67616d0000b273246b27b8c89494a1015a3fbd,1,1,153865,https://p.scdn.co/mp3-preview/d731a351d2ea9e94689920023d976674c77546ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USAT22100198,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,deep talent show",0.752,0.679,10.0,-5.127,0.0,0.0396,0.0205,0.0,0.133,0.607,122.979,4.0,,"Future History/Artist Partner Group, Inc.","C © 2021 Future History/Artist Partner Group, Inc. for the world, under exclusive license to Atlantic Recording Corporation for the United States, Germany, Austria, Switzerland, the United Kingdom, and Norway., P ℗ 2021 Future History/Artist Partner Group, Inc. for the world, under exclusive license to Atlantic Recording Corporation for the United States, Germany, Austria, Switzerland, the United Kingdom, and Norway.",5361 +5362,spotify:track:0IloFL8WR5fHmZYyWiTLBd,Slave,spotify:artist:4v0Hh2bdIAJnaUqAOipfYs,James Reyne,spotify:album:1fSBNE2G8MdQ7xWcSdBJI0,Electric Digger Dandy,spotify:artist:4v0Hh2bdIAJnaUqAOipfYs,James Reyne,1991,https://i.scdn.co/image/ab67616d0000b273ed6aea23ee127e3e884df25b,1,2,253360,https://p.scdn.co/mp3-preview/4c8e22dd758c1d387be635f382aa5eb7f2ce88b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUEM09100027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.673,0.489,5.0,-11.68,1.0,0.0263,0.00163,0.000657,0.0365,0.851,108.981,4.0,,EMI,"C © 2014 EMI Recorded Music Australia Pty Ltd., P ℗ 1991 EMI Recorded Music Australia Pty Ltd.",5362 +5363,spotify:track:2l7njxIZf3LEN9k061vcYa,Good Life,"spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:3aQeKQSyrW4qWr35idm0cy","Kanye West, T-Pain",spotify:album:6V0srAdQfEIarFvIxAYilH,Graduation,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2007-09-11,https://i.scdn.co/image/ab67616d0000b273f1376598af09249b6d699f7c,1,5,206840,https://p.scdn.co/mp3-preview/e2841a3fe451f164a30b8f82e1943466ab28bedc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70749088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap,dance pop,gangster rap,hip hop,pop rap,r&b,rap,southern hip hop,trap,urban contemporary",0.399,0.745,1.0,-7.903,1.0,0.362,0.00274,0.0,0.514,0.449,170.614,4.0,,Roc-A-Fella,"C © 2007 UMG Recordings, Inc., P A Roc-A-Fella Records release; ℗ 2007 UMG Recordings, Inc.",5363 +5364,spotify:track:0isgbeeMY5DM0sQl1TRd85,Chicken Tikka Masala,spotify:artist:1E1j4bKRLT2qWAp50o5nDh,Joe Publick,spotify:album:0shEN7pP9kOFtxHhyAD4TP,Chicken Tikka Masala,spotify:artist:1E1j4bKRLT2qWAp50o5nDh,Joe Publick,2020-06-12,https://i.scdn.co/image/ab67616d0000b2738e24b1e23ec762e250cbe799,1,2,185325,https://p.scdn.co/mp3-preview/38acc54fdced5440acb7105a89204ecfa9a1ee62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UKTUY2023097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.68,0.949,0.0,-3.285,1.0,0.16,0.137,0.0,0.156,0.747,125.946,4.0,,Karma Records,"C 2020 Karma Records, P 2020 Karma Records",5364 +5365,spotify:track:6AzCBeiDuUXGXjznBufswB,Stockholm Syndrome,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:4gCNyS7pidfK3rKWhB3JOY,FOUR (Deluxe),spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2014-11-17,https://i.scdn.co/image/ab67616d0000b273d304ba2d71de306812eebaf4,1,11,214720,https://p.scdn.co/mp3-preview/a0575caf7ecca29c6351ed6c9bf87d28bd3906fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBHMU1400169,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.678,0.933,2.0,-4.959,1.0,0.14,0.0734,0.0,0.0863,0.336,120.572,4.0,,Syco Music,P (P) 2014 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,5365 +5366,spotify:track:4hd4YTkABCn2zuTZeYEA6D,Geronimo,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:6BfgDdkVUsERG4SZQTbO97,Bombs Away,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2014-07-11,https://i.scdn.co/image/ab67616d0000b2737f80e1c7ed450180dd8f93e6,1,1,218227,https://p.scdn.co/mp3-preview/2da2b805a4347b73ac0801ac7ff788ffb850bd89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,AUIYA1400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.705,0.745,7.0,-7.455,1.0,0.0862,0.467,0.00425,0.122,0.526,142.014,4.0,,Empire Of Song,"C 2014 Empire of Song, P 2014 Empire of Song",5366 +5367,spotify:track:2OetRiA7svb9KwiXkRjhLw,Without You Here,spotify:artist:2sil8z5kiy4r76CRTXxBCA,The Goo Goo Dolls,spotify:album:2EaUXdvwjATa08yxT8uGzR,Let Love In,spotify:artist:2sil8z5kiy4r76CRTXxBCA,The Goo Goo Dolls,2006,https://i.scdn.co/image/ab67616d0000b273d2cf74bd97456053a7b7de98,1,5,229400,https://p.scdn.co/mp3-preview/7f640742323d7df82eff64495c2ab00d5d382e17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USWB10601333,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,permanent wave,pop rock,post-grunge",0.494,0.712,5.0,-5.438,1.0,0.0272,0.00257,1.06e-06,0.362,0.04,87.917,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2004, 2005, 2006 Warner Records Inc.",5367 +5368,spotify:track:0lfPPoWG4b3OmhieJ2YDF0,If It Makes You Happy,spotify:artist:4TKTii6gnOnUXQHyuo9JaD,Sheryl Crow,spotify:album:3FiplT4vIgWCRwLZSn0EDd,Sheryl Crow,spotify:artist:4TKTii6gnOnUXQHyuo9JaD,Sheryl Crow,1996-09-24,https://i.scdn.co/image/ab67616d0000b273a192258deb7084638a5f3a47,1,5,324840,https://p.scdn.co/mp3-preview/3ff7b4d6b2b6c36acf272727b51ea6f01e7cc124?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAM19604339,spotify:user:bradnumber1,2021-11-11T04:18:06Z,"lilith,new wave pop,permanent wave,pop rock,singer-songwriter",0.544,0.691,7.0,-7.056,1.0,0.028,0.0409,0.000164,0.108,0.312,95.451,4.0,,A&M,"C © 1996 UMG Recordings, Inc., P ℗ 1996 UMG Recordings, Inc.",5368 +5369,spotify:track:2v32CGfALncxmdlF4JbKZ4,Lady Willpower,spotify:artist:4asCC4oxQcDzFXhCth2SgQ,Gary Puckett & The Union Gap,spotify:album:15Oqj9h8TSkGsoOKDKjsqA,Young Girl: The Best Of Gary Puckett & The Union Gap,spotify:artist:4asCC4oxQcDzFXhCth2SgQ,Gary Puckett & The Union Gap,1968,https://i.scdn.co/image/ab67616d0000b273004dcd74f13a40f050de0e03,1,3,159533,https://p.scdn.co/mp3-preview/a841bcbf163b96552a8e16a0aa1fbf0fe4c8db64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USSM16801073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,country rock,folk rock,mellow gold,merseybeat,rock-and-roll,soft rock",0.548,0.518,2.0,-8.037,1.0,0.0288,0.506,0.0,0.435,0.617,122.811,4.0,,Columbia/Legacy,"P Originally Recorded 1969 & Released 1992, Originally Released 1968, 1969, 1970, 1971, (P) 2004 Sony Music Entertainment Inc.",5369 +5370,spotify:track:3ydfhgIZIc2j39NLIhpJpq,Fuck You,spotify:artist:5nLYd9ST4Cnwy6NHaCxbj8,CeeLo Green,spotify:album:5uR0dqBMYWZFYJT7mvPZ82,The Lady Killer (Deluxe),spotify:artist:5nLYd9ST4Cnwy6NHaCxbj8,CeeLo Green,2010-11-09,https://i.scdn.co/image/ab67616d0000b2731c44d79c994c1a26aa387617,1,17,223694,https://p.scdn.co/mp3-preview/d5cb48a0ed304549b6355bf346236d020bb768a9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,61,USAT21001785,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,pop rap",0.693,0.879,0.0,-3.988,1.0,0.0578,0.193,0.0,0.124,0.753,127.457,4.0,,Radiculture/Elektra,"C © 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",5370 +5371,spotify:track:3fyDzAD4eC4X8KcZFpD3zT,Rollover DJ,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,spotify:album:4UUcIdL8KRbUCGvkx4gIgK,Get Born,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,2003,https://i.scdn.co/image/ab67616d0000b27319067435dd0e90fef4ff9d30,1,3,196600,https://p.scdn.co/mp3-preview/06e4b6628aea42b50418a970547ea8a589ad5bd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10340562,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,pop rock",0.488,0.913,0.0,-3.789,1.0,0.0525,0.000321,5.19e-06,0.0976,0.622,133.607,4.0,,Capitol Records,"C Artwork (C) 2003 Real Horrorshow Pty Ltd., P All recordings (P) 2003 Real Horrorshow Pty Ltd. Manufactured and marketed in Australia by EMI Music Australia Pty Limited under exclusive licence.",5371 +5372,spotify:track:6QzJcnl5cvlDHVrx9mhE99,Hide Away,spotify:artist:6Dd3NScHWwnW6obMFbl1BH,Daya,spotify:album:6hZQdRjpTaKiZ3Z6wqNlEz,"Sit Still, Look Pretty",spotify:artist:6Dd3NScHWwnW6obMFbl1BH,Daya,2016-10-07,https://i.scdn.co/image/ab67616d0000b273b0ab0cedbd0a743d339249b4,1,6,192376,https://p.scdn.co/mp3-preview/75db3fa8425153819a2f46794a403854f9a45dce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM4ZV1500057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,pop",0.885,0.801,11.0,-4.716,0.0,0.0882,0.225,1.65e-06,0.0733,0.466,95.011,4.0,,Z-Entertainment,"C (C) 2016 ARTBEATZ Entertainment LLC. Distributed by Sony Music Entertainment, P (P) 2016 ARTBEATZ Entertainment LLC. Distributed by Sony Music Entertainment",5372 +5373,spotify:track:0HbnrPqF37MUvH1K08RxFT,This Fire,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:7ytz5cDMLL5ud6Q77X8Dtg,March Fires,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2013-01-01,https://i.scdn.co/image/ab67616d0000b27336b14b0faf9f22297b4a87b4,1,2,287067,https://p.scdn.co/mp3-preview/297863dfae2e7f871ccd004eab520eddb7fba893?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUYO01200087,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.53,0.797,8.0,-5.671,1.0,0.0344,0.000627,0.0112,0.104,0.248,115.456,4.0,,EMI Music Australia,"C © 2013 Birds Of Tokyo Pty Ltd, P ℗ 2013 Birds Of Tokyo Pty Ltd",5373 +5374,spotify:track:7lrDNvF3TwuC5vC2fGiMjy,Mess Is Mine,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:1TIkCvpgUWCpjKOuMVaGZD,Dream Your Life Away,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2014-09-05,https://i.scdn.co/image/ab67616d0000b273bcf5a4f38fba7a4bceef0591,1,2,223640,https://p.scdn.co/mp3-preview/bfa77eb015369df054e965dc5b96d0696636c90a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21402865,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.595,0.723,7.0,-8.256,1.0,0.0349,0.047,0.0286,0.0995,0.272,108.043,1.0,,Liberation Records,"C 2014 Liberation Music, P 2014 Liberation Music",5374 +5375,spotify:track:5VU6nvX3BqkqBmOJ2d9vhW,I Write The Songs,spotify:artist:3alW3LYQS8K29z8C8NSLIX,Barry Manilow,spotify:album:29MkM2BlD2jnF6g8lcMDuP,The Greatest Songs Of The Seventies,spotify:artist:3alW3LYQS8K29z8C8NSLIX,Barry Manilow,2007-09-18,https://i.scdn.co/image/ab67616d0000b273767b55c1ffce72ae56dbe38f,1,18,239186,https://p.scdn.co/mp3-preview/dd2926c529eafcae2bc4099333ec81a4bb36aa7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USAR10700437,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock,yacht rock",0.397,0.381,3.0,-8.553,1.0,0.0294,0.835,0.0,0.0829,0.423,148.649,4.0,,Arista,"P (P) 2007 Arista Records LLC, a unit of SONY BMG MUSIC ENTERTAINMENT",5375 +5376,spotify:track:2LgpYNQtQCkSnCYp01sYFc,Jailbreak,spotify:artist:7D7R9UL0A4ngSASP5yW9ZQ,Back In Black,spotify:album:76VDwh1H6aDqirqL4y1ABx,Back in Black,spotify:artist:7D7R9UL0A4ngSASP5yW9ZQ,Back In Black,2012-06-14,https://i.scdn.co/image/ab67616d0000b2733ad5858333ae0ddaae61e5df,1,5,276291,https://p.scdn.co/mp3-preview/cc13484ea7c7a3445c177d667b70e17c3ccd2a2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUUS00606440,spotify:user:bradnumber1,2021-08-08T09:26:31Z,britcore,0.46,0.775,9.0,-2.634,1.0,0.0884,0.00269,0.0,0.14,0.582,131.72,4.0,,Rachelle Productions,C 2012 Rachelle Productions,5376 +5377,spotify:track:1qE47wUKG2juJwPoLqg4C9,Lean On (feat. MØ & DJ Snake),"spotify:artist:78895QQcLtTagD8auJBHfE, spotify:artist:0bdfiayQAKewqEvaU6rXCv, spotify:artist:540vIaP2JwjQb9dm3aArA4","Major Lazer, MØ, DJ Snake",spotify:album:4b6Si351g8brcy6TtHFn13,Peace Is The Mission,spotify:artist:78895QQcLtTagD8auJBHfE,Major Lazer,2015-06-01,https://i.scdn.co/image/ab67616d0000b273472c58102c67fd247d7707b6,1,4,176561,https://p.scdn.co/mp3-preview/5cdeec9f8b351372aa5e9f36f39d03d7bb58cef8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,QMUY41500008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,danish pop,electropop,pop dance,dance pop,edm,electronic trap,pop,pop dance",0.723,0.809,7.0,-3.081,0.0,0.0625,0.00346,0.00123,0.565,0.274,98.007,4.0,,WM Singapore,"C © 2015 Downtown Music LLC. Licensed exclusive to Warner Music Singapore for South East Asia., P ℗ 2015 Downtown Music LLC. Licensed exclusive to Warner Music Singapore for South East Asia.",5377 +5378,spotify:track:0C80KJWvQWIGjbOiIurV1W,Because Of You,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:48ben69fRtEbMTGqGYU8Qw,Because Of You,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2007-01-01,https://i.scdn.co/image/ab67616d0000b2732bc0b1d944e52a3c294baad9,1,1,266840,https://p.scdn.co/mp3-preview/b25efd0fe6e150e2dae59af5f1b125c66ba204eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70731570,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.81,0.538,0.0,-5.784,0.0,0.0356,0.528,0.0,0.0951,0.828,109.97,4.0,,Universal Music Group,"C © 2007 The Island Def Jam Music Group, P ℗ 2007 The Island Def Jam Music Group",5378 +5379,spotify:track:2mRNUz2RbAFf0AkPeQWelt,Satisfaction - Uk Radio Edit,"spotify:artist:4Ws2otunReOa6BbwxxpCt6, spotify:artist:1jQDgp9Fak4WYVZedWLF4G","Benny Benassi, The Biz",spotify:album:4fQC9i9e9rDI7MwoY0M0HX,Satisfaction (Benny Benassi Presents The Biz),"spotify:artist:4Ws2otunReOa6BbwxxpCt6, spotify:artist:1jQDgp9Fak4WYVZedWLF4G","Benny Benassi, The Biz",2002-06-12,https://i.scdn.co/image/ab67616d0000b273d418827591ad466fc89096ef,1,8,143933,https://p.scdn.co/mp3-preview/3899121dd2df84d958bbd6051101ad7ff758bd16?cid=9950ac751e34487dbbe027c4fd7f8e99,True,55,IT00D0206423,spotify:user:bradnumber1,2023-11-28T13:16:08Z,"dutch house,edm,electro house,pop dance,electro house",0.818,0.732,9.0,-4.253,1.0,0.209,0.0997,0.0389,0.074,0.37,130.063,4.0,,D:Vision,"C 2002 d:vision / Energy Production S.r.l., P 2002 d:vision / Energy Production S.r.l.",5379 +5380,spotify:track:6uJwPeBGb3swi85TSr9iIz,Miracles (Someone Special),"spotify:artist:4gzpq5DPGxSnKTe4SA8HAU, spotify:artist:0c173mlxpT3dSFRgMO8XPh","Coldplay, Big Sean",spotify:album:0CE9VXSH70pz4BQzMPm9gO,Kaleidoscope EP,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2017-07-13,https://i.scdn.co/image/ab67616d0000b273e7da341ab1f16253e0d5f70e,1,2,276906,https://p.scdn.co/mp3-preview/b02539982f0e4f7258f75967348104c7e20c9f82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAYE1700917,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop,detroit hip hop,hip hop,pop rap,r&b,rap,southern hip hop,trap",0.624,0.824,6.0,-5.501,1.0,0.0445,0.0167,0.00029,0.138,0.366,97.012,4.0,,Parlophone UK,"C © 2017 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2017 Parlophone Records Ltd, a Warner Music Group Company except track 4 (P)2017 Disruptor Records/Columbia Records used under license from Sony Music Entertainment",5380 +5381,spotify:track:0UJQ9o00J10izX9R65u8PX,Runnin',"spotify:artist:1ZwdS5xdxEREPySFridCfh, spotify:artist:5me0Irg2ANcsgc93uaYrpb","2Pac, The Notorious B.I.G.",spotify:album:34Y8rvV1qwZPmkDviUwYno,American Gangstaz,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-03-27,https://i.scdn.co/image/ab67616d0000b2737a1ffc70577d0213ae89fcf2,1,4,293653,,True,0,NLD910700840,spotify:user:bradnumber1,2020-03-05T09:20:39Z,"g funk,gangster rap,hip hop,rap,west coast rap,east coast hip hop,gangster rap,hardcore hip hop,hip hop,rap",0.708,0.502,11.0,-11.285,1.0,0.255,0.108,0.0,0.12,0.341,82.952,4.0,,Street Dance Records,"C 2013 Street Dance Records, P 2013 Street Dance Records",5381 +5382,spotify:track:7sziTn5nHwrWf4K7gISaaU,Summer Paradise (feat. Sean Paul) - Single Version,"spotify:artist:2p4FqHnazRucYQHyDCdBrJ, spotify:artist:3Isy6kedDrgPYoTS1dazA9","Simple Plan, Sean Paul",spotify:album:3Lg4pp9DVSsqcCA0IP82n6,Get Your Heart On!,spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,2011-06-20,https://i.scdn.co/image/ab67616d0000b273f1a7e98c66e32bf63d0ac2dc,1,12,234786,https://p.scdn.co/mp3-preview/057ad23b87da97a5385260aab27f6230b6835239?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USAT21200343,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop punk,canadian punk,canadian rock,modern rock,neon pop punk,pop punk,pop rock,dance pop,dancehall,pop,pop rap",0.421,0.822,2.0,-4.415,1.0,0.0542,0.0132,0.0,0.092,0.751,171.935,4.0,,Atlantic Records,"C © 2011 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States, P ℗ 2012 This compilation 2012 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",5382 +5383,spotify:track:44AiNlGSY8Uf43EAeHpoOC,I Will Come To You,spotify:artist:0SdiiPkr02EUdekHZJkt58,Hanson,spotify:album:0IaT8AWtzOSAzWB1KXoTD8,MmmBop : The Collection,spotify:artist:0SdiiPkr02EUdekHZJkt58,Hanson,2005-01-01,https://i.scdn.co/image/ab67616d0000b273aeb97994467b5a33f2b3fa12,1,3,250653,https://p.scdn.co/mp3-preview/483616efdefce51b24398769521c4fd1f589215f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19786798,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.43,0.756,1.0,-5.805,1.0,0.0441,0.0861,9.75e-05,0.116,0.39,139.804,4.0,,Universal Music Group,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",5383 +5384,spotify:track:6kwAbEjseqBob48jCus7Sz,Elastic Heart,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:3xFSl9lIRaYXIYkIn3OIl9,1000 Forms Of Fear,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2014-07-04,https://i.scdn.co/image/ab67616d0000b2735d199c9f6e6562aafa5aa357,1,8,257200,https://p.scdn.co/mp3-preview/2bef181d8579dca5a3a83a75f1934cc8d820944c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USRC11400976,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.421,0.791,9.0,-4.998,1.0,0.0496,0.0117,1.48e-05,0.146,0.499,130.075,4.0,,Monkey Puzzle Records/RCA Records,"P (P) 2014 RCA Records, a division of Sony Music Entertainment",5384 +5385,spotify:track:2dCmGcEOQrMQhMMS8Vj7Ca,Super Freak,spotify:artist:0FrpdcVlJQqibaz5HfBUrL,Rick James,spotify:album:2DBFUBBqJQvfXpodPi2WP5,Street Songs (Deluxe Edition),spotify:artist:0FrpdcVlJQqibaz5HfBUrL,Rick James,1981-04-07,https://i.scdn.co/image/ab67616d0000b27317f9e7e7784ed40b223e261c,1,5,205466,https://p.scdn.co/mp3-preview/ef2c59a916249d860115a1fb2f99c0854a6b6b25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USMO18100048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,p funk,quiet storm,soul,synth funk",0.838,0.794,9.0,-8.245,0.0,0.0531,0.22,0.0,0.0575,0.962,132.446,4.0,,Motown,"C © 1981 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1981 Motown Records, a Division of UMG Recordings, Inc.",5385 +5386,spotify:track:7B1QliUMZv7gSTUGAfMRRD,Live Like You Were Dying,spotify:artist:6roFdX1y5BYSbp60OTJWMd,Tim McGraw,spotify:album:0os1Gz3XMM6dduZSMxVuXs,Live Like You Were Dying,spotify:artist:6roFdX1y5BYSbp60OTJWMd,Tim McGraw,2004-08-17,https://i.scdn.co/image/ab67616d0000b273e6b859b16a880b851822871d,1,5,300333,https://p.scdn.co/mp3-preview/ef7cb0d3ffa9f96a41a0711b241f16c8b1a2be79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USCRB0406175,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road",0.416,0.546,7.0,-7.728,1.0,0.0297,0.492,0.0,0.0845,0.418,159.929,4.0,,Curb Records,"C 2004 Curb Records, Inc., P 2004 Curb Records, Inc.",5386 +5387,spotify:track:3Q8jH8E6Sl2JiAhNVq1GIK,Make Me an Island - 1969 Recording,spotify:artist:3sebqZKFZ8aJsgQu4YaKQh,Joe Dolan,spotify:album:44n6n12uSkozxlbWPB3dxP,The Best of Joe Dolan,spotify:artist:3sebqZKFZ8aJsgQu4YaKQh,Joe Dolan,1993-09-13,https://i.scdn.co/image/ab67616d0000b273d8d02deeb99c6c6ad622ca5f,1,1,178960,https://p.scdn.co/mp3-preview/c88b837c645bbf64c3e97aa255f85151054af7e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6900195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.472,0.561,2.0,-9.595,1.0,0.031,0.394,0.0,0.085,0.261,94.791,3.0,,Sanctuary Records,"C © 1997 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1997 Sanctuary Records Group Ltd., a BMG Company",5387 +5388,spotify:track:0Xxww5aUyamJlEm8GkP21i,Scar,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,spotify:album:5Dd14nVQOJIUg9UgKkVyIQ,The Sound Of White,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,2004-01-01,https://i.scdn.co/image/ab67616d0000b273d1012e47b1270d2c81e38cf2,1,3,213733,https://p.scdn.co/mp3-preview/3ec49e381329754c3c54e3b4bcb6e20715f5ad49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USWB10401947,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop",0.653,0.789,0.0,-5.669,1.0,0.0522,0.378,0.0,0.276,0.834,91.787,4.0,,Universal Music Australia Pty. Ltd.,"C © 2005 Eleven: A Music Company, P ℗ 2004 Eleven: A Music Company",5388 +5389,spotify:track:7lNxDmqhKTOAlFBPCmkvLc,My Sacrifice,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,spotify:album:72wsQyk1EzDuXa7bRlHv1x,Weathered,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,2001-01-01,https://i.scdn.co/image/ab67616d0000b2731243bd32b70de6cf1c60fe79,1,6,294600,https://p.scdn.co/mp3-preview/6bd8890cc20262f03cb5601dd8a780472a397242?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU30107501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.318,0.879,2.0,-6.06,1.0,0.0506,8.66e-05,1.04e-06,0.0808,0.25,146.312,4.0,,Universal Music Group,"C © 2001 The Bicycle Music Company, P ℗ 2001 The Bicycle Music Company",5389 +5390,spotify:track:49kWSA6Ic4UX8czjBAZFq4,We Belong Together,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:2OFEeb1ruGsR1pARO4oM3C,The Emancipation of Mimi (Ultra Platinum Edition),spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2005-01-01,https://i.scdn.co/image/ab67616d0000b273923a022be6dd466f96aa13a0,1,2,201400,https://p.scdn.co/mp3-preview/7d50c3b94dd974002f6185412479f13bf2f21a0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20500195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.837,0.462,0.0,-7.89,1.0,0.0601,0.0339,0.0,0.09,0.762,139.986,4.0,,Universal Music Group,"C © 2005 Mariah Carey, P ℗ 2005 The Island Def Jam Music Group and Mariah Carey",5390 +5391,spotify:track:0BTGqPIW9acmhhUmENkq5r,If You Love Me,spotify:artist:6dQgkiJm1fRkcqKOvPzysr,Brownstone,spotify:album:4AqJY8SxoiR6MWWfawrxVz,From The Bottom Up,spotify:artist:6dQgkiJm1fRkcqKOvPzysr,Brownstone,1993-06-01,https://i.scdn.co/image/ab67616d0000b27309f1bb99a848c77c21f4f121,1,3,304160,https://p.scdn.co/mp3-preview/b64c226366893b996092aab7cc6af3c2b8b55876?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM19400975,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,girl group,r&b",0.687,0.583,7.0,-10.224,1.0,0.0639,0.225,0.0,0.105,0.211,95.138,4.0,,MJJ Music,P (P) 1994 MJJ Music,5391 +5392,spotify:track:36WIzCl50ssu8Ee3Szcv3Q,Now You're In Heaven,spotify:artist:4Tvos0a5rRrBu4Oodu5f79,Julian Lennon,spotify:album:5S5YQqgZ60OKRL4HgWA6z1,Mr Jordan,spotify:artist:4Tvos0a5rRrBu4Oodu5f79,Julian Lennon,1989,https://i.scdn.co/image/ab67616d0000b273f651ae2b081066e3db592873,1,1,219373,https://p.scdn.co/mp3-preview/123a871454ed27ab83a8cf4eae675559329ad2f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBAAA8900608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,new wave pop",0.629,0.91,2.0,-8.572,1.0,0.0312,0.409,0.000261,0.0665,0.808,128.237,4.0,,Virgin Catalogue,"C © 2012 Virgin Records Limited, P ℗ 2012 Virgin Records Limited",5392 +5393,spotify:track:1TSehAcbBAcmZlSNMjmf6U,Emotion,"spotify:artist:1IvJtmPLbzpxDxfrw4rMFa, spotify:artist:1LZEQNv7sE11VDY3SdxQeN","Samantha Sang, Bee Gees",spotify:album:3eMoXktkFOAWgM9WsW6Zci,Emotion,spotify:artist:1IvJtmPLbzpxDxfrw4rMFa,Samantha Sang,1977-12-06,https://i.scdn.co/image/ab67616d0000b273c2ae2d53662bce5a52083674,1,3,237293,https://p.scdn.co/mp3-preview/696c5aff065d0995046fd370fda743acda1a1a01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USS8D7820038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.52,0.364,0.0,-9.484,1.0,0.0427,0.76,1.36e-05,0.251,0.716,184.244,4.0,,Private Stock Records,"C (C) 1977 Originally Released © Private Stock Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",5393 +5394,spotify:track:2OZyDYkNED6mIDi8RXLnWy,Kokomo,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:77YBl020A0guYeVdTNXGXK,Greatest Hits,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,2012-01-01,https://i.scdn.co/image/ab67616d0000b273f6c4c6ceb8280e36670e5385,1,20,215573,https://p.scdn.co/mp3-preview/8a33ab47e93de0203c7e3fd39fc41d5513884d4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USNPD0713481,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.684,0.643,0.0,-10.252,1.0,0.0329,0.0107,0.0,0.292,0.922,115.571,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",5394 +5395,spotify:track:1l0d6figJdZJ2pJofLRMrF,Two Pina Coladas,spotify:artist:6RuIbUAQK9fmBq08AbY6XE,Brooks Jefferson,spotify:album:2d0u2yReCiVSyN3iCsogFM,Strummin' On Garth,spotify:artist:6RuIbUAQK9fmBq08AbY6XE,Brooks Jefferson,2015-03-13,https://i.scdn.co/image/ab67616d0000b273680ac0a0e8f39e6e2ae80406,1,20,215295,https://p.scdn.co/mp3-preview/d4ec3da24aab07d416651dba36706b29dbc139cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,uscgj1501682,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.759,0.788,5.0,-5.11,1.0,0.0351,0.525,0.0,0.223,0.703,117.201,4.0,,Brooks Jefferson,"C 2015 Brooks Jefferson, P 2015 Brooks Jefferson",5395 +5396,spotify:track:7Ddi06B8VGqrF4xcrvbwjr,"1,2,3 Red Light",spotify:artist:17vIaBTHJOVxnU4v7t1DiY,1910 Fruitgum Company,spotify:album:51glvu0oGf7bfZFJuWt43E,The Best of the 1910 Fruitgum Co.,spotify:artist:17vIaBTHJOVxnU4v7t1DiY,1910 Fruitgum Company,2001,https://i.scdn.co/image/ab67616d0000b273c61d5c11b24ff4ce65278096,1,6,128160,https://p.scdn.co/mp3-preview/d54546e68d56803b494aeff68ae76443e49c97f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,USBR10000164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat",0.754,0.764,2.0,-6.419,1.0,0.0344,0.0416,0.00692,0.077,0.984,115.146,4.0,,Buddha Records,P (P) 2001 Buddha Records,5396 +5397,spotify:track:4pSUZynH5q1xQgN0W4dZ3U,Bubblegum (feat. Tyga),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:5LHRHt1k9lMyONurDHEdrp","Jason Derulo, Tyga",spotify:album:45WiY2DUJyqbIKfHnQo4lN,Tattoos (Special Edition),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2013-09-10,https://i.scdn.co/image/ab67616d0000b273341bcc4171814393eb34a2bf,1,14,205971,https://p.scdn.co/mp3-preview/13fa3a7ae28f039a4e3e845814b41e88b1620267?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USWB11400674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,hip hop,pop rap,rap,southern hip hop,trap",0.856,0.633,11.0,-6.429,0.0,0.34,0.0718,0.0,0.112,0.77,109.011,4.0,,Beluga Heights/Warner Records,"C © 2014 Warner Records Inc., P ℗ 2014, 2013 Warner Records Inc.",5397 +5398,spotify:track:4Hv5jUXVQveCj36wN6dPmD,Long Road To Ruin,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:1zCNrbPpz5OLSr6mSpPdKm,Greatest Hits,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-11-03,https://i.scdn.co/image/ab67616d0000b273136d7250568820409f8fdd60,1,11,228346,https://p.scdn.co/mp3-preview/8019ec56495464b6583f76e067dc42ba52bee72c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USRW30700010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.403,0.858,0.0,-5.107,1.0,0.0389,0.000294,0.0,0.0743,0.364,146.763,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",5398 +5399,spotify:track:6PKh3j7EQYjURTrcOPls5e,Save The Best For Last,spotify:artist:75L9s8KVrhCNtBUkZFnDFW,Vanessa Williams,spotify:album:4LbbUj2bytdZ1PWEs69QCn,'90s Soul Number 1's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b273a9b18710e8f15c9c6ed078ec,1,11,220040,https://p.scdn.co/mp3-preview/cddec4e9741b05b9860e0eb70caf8a20242f4b83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USPG19190052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,disco,quiet storm,urban contemporary",0.525,0.342,3.0,-10.902,1.0,0.0266,0.673,0.0,0.212,0.193,95.864,4.0,,Universal Music Group International,"C © 2007 Universal International Music B.V., P This Compilation ℗ 2007 Universal International Music B.V.",5399 +5400,spotify:track:46dWvPwaO8mNLgUIU35y3q,Hoops,spotify:artist:2hrWpLNoJcs1EnWSXvB6JI,The Rubens,spotify:album:0AUSepZqLXKHfzqa8us2ts,Hoops,spotify:artist:2hrWpLNoJcs1EnWSXvB6JI,The Rubens,2015-08-07,https://i.scdn.co/image/ab67616d0000b273914850da7c3ffb2532ffcebb,1,3,158973,https://p.scdn.co/mp3-preview/621c01a958d4667e33704c40f3a972cc646ad37a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB11505307,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.731,0.498,8.0,-6.571,0.0,0.0339,0.229,4.06e-05,0.505,0.802,96.038,4.0,,Ivy League Records,"C 2015 Ivy League Records, P 2015 Ivy League Records",5400 +5401,spotify:track:2ztJRRWvvqGuSfSSQYZEXK,Show Me,spotify:artist:0PHiin6bQggP8WzI7LgTtr,Aston Merrygold ,spotify:album:2jcN4vE8SV5cE7Vxl0f0xA,Show Me,spotify:artist:0PHiin6bQggP8WzI7LgTtr,Aston Merrygold ,2016-06-13,https://i.scdn.co/image/ab67616d0000b273d6bacaf1a4182f1b09576eb2,1,1,204795,https://p.scdn.co/mp3-preview/8f628a955abe0a9821ec4d7616e6bd320c8a30ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,GBAHT1500556,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.787,0.874,8.0,-2.814,1.0,0.0717,0.044,0.0,0.329,0.959,133.984,4.0,,LME Records Ltd,"C © 2017 LME Records Limited, P ℗ 2017 LME Records Limited",5401 +5402,spotify:track:5Gu0PDLN4YJeW75PpBSg9p,"Let Me Go (with Alesso, Florida Georgia Line & watt)","spotify:artist:5p7f24Rk5HkUZsaS3BLG5F, spotify:artist:4AVFqumd2ogHFlRbKIjp1t, spotify:artist:3b8QkneNDz4JHKKKlLgYZg, spotify:artist:4olE3I5QU0dvSR7LIpqTXc","Hailee Steinfeld, Alesso, Florida Georgia Line, WATT",spotify:album:3ggBBGRhkDVAu7pQRXRPXO,"Let Me Go (with Alesso, Florida Georgia Line & watt)","spotify:artist:5p7f24Rk5HkUZsaS3BLG5F, spotify:artist:4AVFqumd2ogHFlRbKIjp1t","Hailee Steinfeld, Alesso",2017-09-08,https://i.scdn.co/image/ab67616d0000b273523eb48df1fa22b6d450833e,1,1,174800,https://p.scdn.co/mp3-preview/abe198a0c5a10d311d5c7c21297def76d5a0ee84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USUM71709685,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,edm,pop,pop dance,progressive electro house,contemporary country,country,country pop,country road,modern country rock,modern alternative rock",0.664,0.708,8.0,-4.154,1.0,0.0474,0.0337,0.0,0.0841,0.742,103.07,4.0,,Universal Records,"C © 2017 Republic Records, a division of UMG Recordings, Inc., P ℗ 2017 Republic Records, a Division of UMG Recordings, Inc.",5402 +5403,spotify:track:1hFwaausMlZ1rSUnUAh0fu,Sunny Afternoon - Mono Version,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:6nctX6EMyPd1yUsSLfHAIA,Classics (The Best of The Kinks),spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,2014-07-25,https://i.scdn.co/image/ab67616d0000b273c9ec52c083e2cf507a66848f,1,12,214592,https://p.scdn.co/mp3-preview/44f976e3aa6c13c968724957eb0d4a33493b2cce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6600005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.578,0.59,0.0,-4.663,1.0,0.0257,0.135,0.0,0.076,0.43,123.081,4.0,,Sony Music/BMG Rights Management,"P (P) 2014 Sanctuary Records Group Limited, a BMG company",5403 +5404,spotify:track:48GBbQiTSlXX5i0cn3iIiJ,In The Arms Of A Stranger - Grey Remix,"spotify:artist:2KsP6tYLJlTBvSUxnwlVWa, spotify:artist:4lDBihdpMlOalxy1jkUbPl","Mike Posner, Grey",spotify:album:2VfoTfFSY7PGXlCtXXKpk9,In The Arms Of A Stranger (Grey Remix),"spotify:artist:2KsP6tYLJlTBvSUxnwlVWa, spotify:artist:4lDBihdpMlOalxy1jkUbPl","Mike Posner, Grey",2017-02-17,https://i.scdn.co/image/ab67616d0000b2730f3a38330c2c3b32b1e98c48,1,1,212626,https://p.scdn.co/mp3-preview/cbb4333e4215b79340a4aef8c9c5608f9dc2e1e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USUM71701080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop dance,pop rap,pop edm",0.763,0.839,0.0,-3.437,1.0,0.117,0.429,0.0,0.109,0.655,104.977,4.0,,"Monster Mountain, LLC / Island","C © 2017 Island Records, a division of UMG Recordings, Inc., P ℗ 2017 Island Records, a division of UMG Recordings, Inc.",5404 +5405,spotify:track:4Pthfbs6lQNEUx1MmQMyax,Car Wash (Shark Tale Mix),"spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS, spotify:artist:2wIVse2owClT7go1WT98tk","Christina Aguilera, Missy Elliott",spotify:album:4MZm4xKXqKV7pNDCiWOew1,Shark Tale,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2004-01-01,https://i.scdn.co/image/ab67616d0000b273b0a4724b6b15e756bfc0f449,1,2,228666,,False,0,USUG10400312,spotify:user:bradnumber1,2020-03-05T09:20:46Z,"dance pop,pop,dance pop,hip hop,hip pop,neo soul,pop rap,r&b,rap,urban contemporary,virginia hip hop",0.794,0.818,0.0,-4.24,0.0,0.0728,0.152,4.95e-06,0.221,0.927,116.032,4.0,,Universal Music,"C © 2004 Dreamworks Records, P ℗ 2004 Dreamworks Records",5405 +5406,spotify:track:7rVBmwJsClMU6vOlggk5Ad,What's Your Flava? - Radio Edit,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,spotify:album:6USRXUZXe4keGs2yUj3Fis,Slicker than Your Average,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2002-11-19,https://i.scdn.co/image/ab67616d0000b273152fa8f891c1214e8b5489e3,1,2,215960,https://p.scdn.co/mp3-preview/b201fe319ac1959f018c6185e329e9b1e89e26c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBAWV0202994,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.836,0.806,5.0,-4.837,0.0,0.12,0.0646,0.0,0.193,0.892,108.118,4.0,,Sony Music CG,"P (P) 2002 Wildstar Records Limited, licensed exclusively to Sony Music Entertainment UK Limited",5406 +5407,spotify:track:5RA7DYE2n9Nwqlw1vkUJmw,Dear One,spotify:artist:5PVlrxc9rQMfzZACGYv2Ns,Larry Finnegan,spotify:album:6heQ4Rwz7ZHSfxlfgO3VUe,Dear One: The Old Town Single,spotify:artist:5PVlrxc9rQMfzZACGYv2Ns,Larry Finnegan,2012-08-09,https://i.scdn.co/image/ab67616d0000b273b5889f96cb5ce11d1add73f1,1,2,183562,https://p.scdn.co/mp3-preview/368487a2c359c79d9e599f8e66478e8e97e076ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLG620497450,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.367,0.896,4.0,-10.893,1.0,0.0537,0.394,0.0,0.129,0.748,180.644,4.0,,MS Embassy,C (C) 2012 MS Embassy,5407 +5408,spotify:track:17tb2ctUuwWdBCOwyrwGea,What Do I Have to Do,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:7FfyAlMb6eoZbUTZ7V2tBG,Kylie Greatest Hits,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2006-08-05,https://i.scdn.co/image/ab67616d0000b2730dd530f4c8e2424f3d31679a,1,14,213760,https://p.scdn.co/mp3-preview/0bf78aa585ac30786d1e3e8f1155b9290ae354fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,GBAHK0200213,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.565,0.966,2.0,-5.752,1.0,0.0437,0.121,0.0395,0.115,0.948,122.079,4.0,,WM Australia,"C © 1997 Mushroom Records, P ℗ 1997 Mushroom Records",5408 +5409,spotify:track:1euDTbMNRPNfKd8zZz4zTT,Give In to Me,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:0oX4SealMgNXrvRDhqqOKg,Dangerous,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1991-11-13,https://i.scdn.co/image/ab67616d0000b2733b9f8b18cc685e1502128aa8,1,10,328626,https://p.scdn.co/mp3-preview/7c11943b59c094644060d52ef4bc9be2ded30c21?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM10024729,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.502,0.855,4.0,-3.27,0.0,0.0305,0.152,0.000488,0.106,0.337,86.968,4.0,,Epic/Legacy,P (P) 1991 MJJ Productions Inc.,5409 +5410,spotify:track:12bCzRvt0PD9CCDko2IQIL,You Ruin Me,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:1R7sI4gveZqmU3UYUkRxWd,You Ruin Me,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2014-09-19,https://i.scdn.co/image/ab67616d0000b2734b9868ed1ce877b96b01fe5e,1,1,230693,https://p.scdn.co/mp3-preview/06834bcae4174d7184efd335cd60b57faefa7139?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUBM01400384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.469,0.47,5.0,-4.103,1.0,0.028,0.719,0.0,0.12,0.229,92.995,5.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,5410 +5411,spotify:track:0GuQcX8wTe8bUZ72ZncR7m,All Along The Watchtower,spotify:artist:776Uo845nYHJpNaStv1Ds4,Jimi Hendrix,spotify:album:5643V0ojEFh2bULWiPhuhs,Music From The Motion Picture Watchmen,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-02-24,https://i.scdn.co/image/ab67616d0000b273bbd4a4c7ac3f037863e01ff3,1,10,239666,https://p.scdn.co/mp3-preview/4f5eb4f96894dcab22691ebc7605cdbc4a7e70aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10000797,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,alternative rock,classic rock,hard rock,proto-metal,psychedelic rock,rock",0.433,0.787,8.0,-6.747,1.0,0.0581,0.00287,2.97e-05,0.0883,0.562,113.363,4.0,,Reprise,"C 2008 © 2009 Motion Picture Artwork and Photography (C) 2009 Warner Bros. Entertainment Inc., Paramount Pictures Corporation and Legendary Pictures. WATCHMEN and all related characters and elements are trademarks of and (C) DC Comics. Smiley Logo: TM The Smiley Company; C2009 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P 2008 ℗ 2009 This Compilation P2009 Reprise Records.",5411 +5412,spotify:track:4MLBqAEzNN89o2M9h92Z26,Get Back - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:0jTGHV5xqHPvEcwL8f6YU5,Let It Be (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1970-05-08,https://i.scdn.co/image/ab67616d0000b27384243a01af3c77b56fe01ab1,1,12,189386,https://p.scdn.co/mp3-preview/016bc7349bdedf2d8e0fb4b481378435ed3de400?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAYE0601719,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.761,0.592,2.0,-9.836,1.0,0.0586,0.492,0.00626,0.61,0.332,123.095,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",5412 +5413,spotify:track:3AA8xNhDC0MpqwkGX3EP5V,If I Ever Feel Better,spotify:artist:1xU878Z1QtBldR7ru9owdU,Phoenix,spotify:album:5MBUL8d9FAYCCMrogOFX68,United,spotify:artist:1xU878Z1QtBldR7ru9owdU,Phoenix,2000-03-06,https://i.scdn.co/image/ab67616d0000b273713c1d89bb16872821ab7ac7,1,4,266600,https://p.scdn.co/mp3-preview/9ceaea0aa3e9510dab46f5d7a4815a0b3c6589fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,FRS639900098,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,indie rock,modern rock,new rave,rock independant francais,shimmer pop",0.755,0.553,6.0,-9.449,0.0,0.107,0.0492,0.00607,0.0646,0.836,119.7,4.0,,Parlophone (France),"C Label Source, © 2000 Warner Music France, P Label Source, ℗ 2000 Warner Music France",5413 +5414,spotify:track:44LNn5cHFMRNKqvlCYZq3M,Stir Fry,spotify:artist:6oMuImdp5ZcFhWP0ESe6mG,Migos,spotify:album:4BMSnNiBIA2xSAKgnBCjsK,Culture II,spotify:artist:6oMuImdp5ZcFhWP0ESe6mG,Migos,2018-01-26,https://i.scdn.co/image/ab67616d0000b27359971e2744d99b8b694a4739,1,9,190288,https://p.scdn.co/mp3-preview/10856be43e43ff89705bb2a4dc9f3a379a6bdd2c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USUM71714082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,hip hop,pop rap,rap,southern hip hop,trap",0.811,0.835,2.0,-4.927,1.0,0.269,0.00318,0.0,0.2,0.53,181.843,4.0,,"Quality Control Music, LLC","C © 2018 Quality Control Music, LLC and UMG Recordings, Inc., P ℗ 2018 Quality Control Music, LLC and UMG Recordings, Inc.",5414 +5415,spotify:track:6LmKLNesVLGWAx3BfijdAy,Hand on Heart,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:2hOuWIWkhIxKXj6dUVI734,Right Place Right Time,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2012-11-23,https://i.scdn.co/image/ab67616d0000b27383a1b851143e6adaf56db39b,1,6,196946,https://p.scdn.co/mp3-preview/6704a00e76662a20e24c60904de772ef793137a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1201984,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.616,0.547,9.0,-5.931,1.0,0.0255,0.0121,0.0,0.0896,0.556,88.917,4.0,,Epic,P (P) 2012 Sony Music Entertainment UK Limited,5415 +5416,spotify:track:26HZ4xullUsdyMx8QnCbmO,"""The Take Over, The Breaks Over""",spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,spotify:album:03Og8YvbFYbe3hmr9MfZHT,Infinity On High (Deluxe Edition),spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2007-01-01,https://i.scdn.co/image/ab67616d0000b273a2acd73823d95cb66d0d98fd,1,2,213586,https://p.scdn.co/mp3-preview/a87177514e7c3b69f8bd7cd609ec1f07c7acb656?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70700329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop,rock",0.609,0.917,9.0,-2.563,1.0,0.0477,0.00614,1.96e-05,0.0775,0.67,149.948,4.0,,Universal Music Group,"C © 2007 The Island Def Jam Music Group, P ℗ 2007 The Island Def Jam Music Group",5416 +5417,spotify:track:6rQ9qJPvInEqSzlh89LsPJ,Coco Jamboo - Radio Version,spotify:artist:7KBkgunlONG7LPxs93pgpp,Mr. President,spotify:album:2t8Bc4qBseswbwOoHGHK8d,We See The Same Sun,spotify:artist:7KBkgunlONG7LPxs93pgpp,Mr. President,1996,https://i.scdn.co/image/ab67616d0000b2738077cc7c56d46aa7209babaf,1,2,218733,https://p.scdn.co/mp3-preview/ae7019859326cbe15f2bfeb87c16bfb4486d1316?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEBS80500020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,german techno",0.832,0.838,1.0,-5.414,0.0,0.0421,0.0791,0.0,0.152,0.965,100.019,4.0,,First Class Dancefloor Music,"C 1996 Jens Neumann Entertainment, P 1996 Warner Chappell / Hanseatic",5417 +5418,spotify:track:26UgQ719aQ39QAHytxPuVJ,The Globe,spotify:artist:7hqZBHSgDs1odG9aupMzEI,Big Audio Dynamite,spotify:album:7bhRilzc9srMwwkJQc3o0e,The Globe,spotify:artist:7hqZBHSgDs1odG9aupMzEI,Big Audio Dynamite,1991-07-16,https://i.scdn.co/image/ab67616d0000b27336acf9e921c97613536b4174,1,4,364640,https://p.scdn.co/mp3-preview/1ceab757660cc587af3ea76a9846f1c894bc2b1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USSM19917651,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop",0.917,0.603,2.0,-9.541,1.0,0.13,0.172,0.0,0.0489,0.696,113.951,4.0,,Columbia,"P (P) 1990, 1991 Sony Music Entertainment Inc.",5418 +5419,spotify:track:6YGqR5D82R4xc4pqgj0KZo,Sunny and 75,spotify:artist:4aJTB79uwT4sP0Nb8QGWHc,Joe Nichols,spotify:album:4maav8jTujRDfFU7AGG7xo,Crickets,spotify:artist:4aJTB79uwT4sP0Nb8QGWHc,Joe Nichols,2013-10-08,https://i.scdn.co/image/ab67616d0000b273e6a76813e5041774d3487a8a,1,9,207120,https://p.scdn.co/mp3-preview/68411afa12a9baa4c5d6ad5f5c3c667ede301b65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMKHK1300004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,contemporary country,country,country road",0.539,0.89,0.0,-4.422,1.0,0.0603,0.192,2.36e-06,0.102,0.243,120.048,4.0,,Red Bow Records,C (C) 2013 Red Bow Records,5419 +5420,spotify:track:4FdOxPfpG8FLTCl41Ssh66,Four Walls,spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS,BROODS,spotify:album:6TVMO61IfPwKISnt1a6UZC,Evergreen,spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS,BROODS,2014-01-01,https://i.scdn.co/image/ab67616d0000b2739c42f5388622de8f4f3f4bbc,1,10,208346,https://p.scdn.co/mp3-preview/f5b5d5640e9c453a57e3052b95d0bdd74f28cc7c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBUM71403469,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"auckland indie,etherpop,indietronica,metropopolis,nz pop",0.511,0.638,0.0,-7.202,1.0,0.046,0.226,0.0,0.0609,0.205,60.03,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 Dryden Street Ltd, P ℗ 2014 Dryden Street Ltd, under exclusive license to Island Records Australia / Universal Music Australia",5420 +5421,spotify:track:3D3B7vahQasg8rdAYrEbNT,Mobile,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:3zXjR3y2dUWklKmmp6lEhy,Let Go,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2002-06-04,https://i.scdn.co/image/ab67616d0000b273f7ec724fbf97a30869d06240,1,5,211933,https://p.scdn.co/mp3-preview/cefdfd27e72383b3669509b873004855e7d67b5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USAR10200225,spotify:user:bradnumber1,2024-02-27T01:37:03Z,"canadian pop,candy pop,dance pop,pop",0.593,0.726,9.0,-6.011,1.0,0.0298,0.00116,0.00495,0.111,0.634,100.412,4.0,,Arista,"P (P) 2002 Arista Records, LLC",5421 +5422,spotify:track:6CHnwA6P1uaF13TwtcQ6GG,Fox on the Run,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,spotify:album:1MeyMLg2skCOef3NKo6QE9,Desolation Boulevard (New Extended Version),spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,1974-11,https://i.scdn.co/image/ab67616d0000b273a0c5cc90b455cfdc971284aa,1,7,285693,https://p.scdn.co/mp3-preview/b3f2fe228cca9bd03bc3ea548d5668d20ec29d0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,DEC760400232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam rock,hard rock",0.504,0.902,0.0,-4.414,1.0,0.0724,0.000149,0.000614,0.0914,0.624,131.576,4.0,,Sony Music Catalog,P (P) 2017 Sony Music Entertainment Germany GmbH,5422 +5423,spotify:track:0x2wtJbtJrox3SDmnMj97x,Gimme Three Steps,spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,spotify:album:6DExt1eX4lflLacVjHHbOs,Pronounced' Leh-'Nerd 'Skin-'Nerd,spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,1973-01-01,https://i.scdn.co/image/ab67616d0000b273128450651c9f0442780d8eb8,1,3,267173,https://p.scdn.co/mp3-preview/d2ae2af2625046aebf7618c67f9014a69dced64f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USMC17301721,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock,southern rock",0.554,0.74,9.0,-7.706,1.0,0.0799,0.693,7.19e-05,0.225,0.803,133.363,4.0,,Geffen*,"C © 1973 MCA Records Inc., P ℗ 1973 UMG Recordings, Inc.",5423 +5424,spotify:track:2ZQ4Q9xL7W8FEgO1d4o7YH,Don't Let Me Get Me - Radio Edit,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:03pT16iWbhVKpDodI37D8b,M!ssundaztood,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2001-11-16,https://i.scdn.co/image/ab67616d0000b2730516080f83d31290bcd9773e,1,2,210626,https://p.scdn.co/mp3-preview/100fc67417edf80cd81f97c7fea8261f053ac1cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR10100715,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.544,0.849,0.0,-4.778,0.0,0.094,0.00264,0.0,0.0371,0.589,98.376,4.0,,Arista,"P (P) 2001 RCA/JIVE Label Group, a unit of Sony Music Entertainment",5424 +5425,spotify:track:38xWaVFKaxZlMFvzNff2aW,Breakeven,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:51Hn2Wiq1jmUfI0BLaUhuF,The Script,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2008-09-08,https://i.scdn.co/image/ab67616d0000b273b526ba531c80ed208cd428ed,1,5,261426,https://p.scdn.co/mp3-preview/641ace19d22163b648783e54a51ebea7382d0fab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBARL0800147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.627,0.699,10.0,-4.504,1.0,0.0244,0.174,0.0,0.0789,0.535,94.003,4.0,,Phonogenic,P (P) 2008 SONY BMG MUSIC ENTERTAINMENT (UK) LIMITED,5425 +5426,spotify:track:05oETzWbd4SI33qK2gbJfR,Rhiannon,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:5VIQ3VaAoRKOEpJ0fewdvo,Fleetwood Mac,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1975-07-11,https://i.scdn.co/image/ab67616d0000b2734fb043195e8d07e72edc7226,1,4,252773,https://p.scdn.co/mp3-preview/476ef04b5327e34acb261d397fc5832022c35d5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USWB19900188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.723,0.49,9.0,-14.745,0.0,0.0296,0.111,0.0946,0.0923,0.795,129.012,4.0,,Warner Records,"C © 1975 Warner Records Inc., P ℗ 1975 Warner Records Inc.",5426 +5427,spotify:track:4b8FEPNal2ytaHOjWYQQ22,The Morning After - Single Version,spotify:artist:3bnf5pPVQFWv762IiavilV,Maureen McGovern,spotify:album:29XTmgtHnLvO1qUCqr1Sfq,100 70s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-01-01,https://i.scdn.co/image/ab67616d0000b2731d54cff833474bfea1990ae7,2,18,141484,https://p.scdn.co/mp3-preview/ab0ea52dfa7749b5a3240a7e8a90259a82f64572?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR38800088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.402,0.457,11.0,-8.525,1.0,0.0274,0.396,0.0,0.8,0.34,80.529,4.0,,Universal Music,"C © 2012 Universal International Music B.V., P ℗ 2012 Universal International Music B.V.",5427 +5428,spotify:track:66wkmlfx3H0Oqg1frvJjhu,Get Up and Boogie - That's Right,spotify:artist:5QHvbEwccF3WANUD5lEIuA,Silver Convention,spotify:album:7oBAC7hVvGjIOWYyPpRYYI,Silver Convention - Fly Robin Fly,spotify:artist:5QHvbEwccF3WANUD5lEIuA,Silver Convention,2010-09-20,https://i.scdn.co/image/ab67616d0000b2738daf12b034cab3d5442003dc,1,2,172066,https://p.scdn.co/mp3-preview/06b974987d190e76e2f76181b4685c466bfa8342?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USRDC7620014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.797,0.552,7.0,-14.86,1.0,0.0303,0.117,0.00132,0.0806,0.967,104.988,4.0,,Butterfly Productions,"C 2010 Butterfly Productions, P 2010 Butterfly Productions",5428 +5429,spotify:track:1H4idkmruFoJBg1DvUv2tY,Band On The Run - 2010 Remaster,"spotify:artist:4STHEaNw4mPZ2tzheohgXB, spotify:artist:3sFhA6G1N0gG1pszb6kk1m","Paul McCartney, Wings",spotify:album:257oomaawruFknt5wYCPDh,Band On The Run (Standard),"spotify:artist:4STHEaNw4mPZ2tzheohgXB, spotify:artist:3sFhA6G1N0gG1pszb6kk1m","Paul McCartney, Wings",1973-12-05,https://i.scdn.co/image/ab67616d0000b273be7a3a1e2d663eea2918e5a3,1,1,313026,https://p.scdn.co/mp3-preview/98a6b38ad0878c7b2041a8169df64c50c7772403?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBCCS1000004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,mellow gold,rock,soft rock,album rock,art rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.479,0.601,7.0,-8.806,1.0,0.0319,0.0823,0.00141,0.111,0.669,124.966,4.0,,Paul McCartney Catalog,"C © 2010 MPL Communications Inc/Ltd, P ℗ 1973 MPL Communications Inc/Ltd",5429 +5430,spotify:track:1C0vXECyJHUeqOo2Etvrr2,My Immortal,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,spotify:album:20mh1X1FQQidKMu2XypyMI,Fallen,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,2003-01-01,https://i.scdn.co/image/ab67616d0000b273f3302494cdc2c9f2eef99a18,1,4,262533,https://p.scdn.co/mp3-preview/27129e91820f44e5f38b4abd31f89e359d49e861?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU30200104,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alternative metal,0.204,0.265,9.0,-9.153,1.0,0.0323,0.869,0.0,0.134,0.107,71.157,4.0,,Universal Music Group,"C © 2003 The Bicycle Music Company, P ℗ 2003 The Bicycle Music Company",5430 +5431,spotify:track:3KiMWyyqp2262zEMkxOZw0,Lollipop (Candyman),spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,spotify:album:2fMLZjqCrVeAknRbcPKwGz,Aquarium,spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,1997-01-01,https://i.scdn.co/image/ab67616d0000b273d2510cf70b57530d14fa7cba,1,8,216666,https://p.scdn.co/mp3-preview/c55cd117fb5e00ef58914cf57af48d45f1910db7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DKBKA9700408,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,eurodance,europop",0.717,0.948,0.0,-6.119,0.0,0.0281,0.0261,0.0123,0.15,0.824,139.019,4.0,,Universal Music,"C © 1997 Universal Music (Denmark) A/S, P ℗ 1997 Universal Music (Denmark) A/S",5431 +5432,spotify:track:4yrM5BVyJzy5Ed4GPO6e8j,I Wanna Be Your Lover,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:6k7RVZ7bSL9ryReb8RLYRI,Prince,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1979-10-19,https://i.scdn.co/image/ab67616d0000b273039b95b846d039d78a2ca6a1,1,1,347666,https://p.scdn.co/mp3-preview/b30b1d3d4c6b6856d2b2f473b008990b90f47944?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USWB19903516,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.812,0.507,1.0,-8.825,0.0,0.0452,0.0399,0.0831,0.0671,0.729,114.832,4.0,,Warner Records,"C © 1979 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1979 NPG Records, Inc. under exclusive license to Warner Records Inc.",5432 +5433,spotify:track:3igpVPZ2atnAbNGllIJkqi,Chances,spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,spotify:album:0bDJI1KuYj9M71m3fT9q78,Slice (iTunes Exclusive),spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,2010-03-02,https://i.scdn.co/image/ab67616d0000b273ae94c49e4959a228162da443,1,4,215200,https://p.scdn.co/mp3-preview/78df77d5700c713028f672e32e3de7257e0b3a53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10904075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop rock",0.401,0.802,10.0,-5.646,1.0,0.0291,0.0236,0.0,0.224,0.326,163.987,4.0,,Wind-up Records,"C 2009 Precision Records, Inc., P 2009 Precision Records, Inc.",5433 +5434,spotify:track:5lU5uHcYUdzGp9zV1WxxRT,Never Meant to Fail,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,spotify:album:5On5KkGWU5cpkAoGQchjm6,Alex Lloyd,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,2005-10-09,https://i.scdn.co/image/ab67616d0000b2737afbed4abea556e71a7aea6e,1,3,226813,https://p.scdn.co/mp3-preview/d48dbb6cb2f52239ac477fb299f6f7fddbb3740e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUSM00500158,spotify:user:bradnumber1,2022-08-31T00:30:51Z,"australian alternative rock,australian rock",0.505,0.765,8.0,-4.744,0.0,0.0279,0.163,0.0,0.196,0.352,93.971,4.0,,Epic,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,5434 +5435,spotify:track:0A1QehwXuYOGcIoZHy7UTb,Eyes Without A Face,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,spotify:album:6yDq3SrTcstT7zD1hv3hgM,Rebel Yell,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,1983-11-01,https://i.scdn.co/image/ab67616d0000b27393352cc29833c48430d3ec02,1,3,299240,https://p.scdn.co/mp3-preview/1021ac1448c3d696ee473a3a57dfe9a86320ff32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCH38400023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,hard rock,new romantic,new wave,new wave pop,rock,soft rock",0.372,0.812,9.0,-6.167,1.0,0.0507,0.0225,0.00168,0.273,0.636,84.641,4.0,,Universal Music Group,"C © 2017 Capitol Records, LLC, P ℗ 2017 Capitol Records, LLC",5435 +5436,spotify:track:05W6RUzTmVqwEqHVrDWqGg,Don't Blame the Children - 2016 Remaster,spotify:artist:1NAWG3AngjBXyKbmPaz92D,Sammy Davis Jr.,spotify:album:3O1KKLXJAM0IEtOzC4s0zn,Sammy Davis Jr.'s Greatest Hits (2016 Remaster),spotify:artist:1NAWG3AngjBXyKbmPaz92D,Sammy Davis Jr.,2016-04-29,https://i.scdn.co/image/ab67616d0000b273dd4e6df6297455d9353bbd4b,1,9,210906,https://p.scdn.co/mp3-preview/36d7152b360071df8f366f769e50817c649c4ba7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,GBAWA0591740,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,vocal jazz",0.484,0.491,1.0,-9.964,0.0,0.0489,0.733,0.0,0.0813,0.62,104.309,4.0,,Charly Digital,"C 2016 Charly Acquisitions Ltd., P 2016 Charly Acquisitions Ltd.",5436 +5437,spotify:track:0ZQtDLOa631ZouJviprEXl,Open Your Eyes,spotify:artist:3rIZMv9rysU7JkLzEaC5Jp,Snow Patrol,spotify:album:1PWBk3u07tjsyOR2VAyDYF,Eyes Open (International Package with bonus live tracks),spotify:artist:3rIZMv9rysU7JkLzEaC5Jp,Snow Patrol,2006-01-01,https://i.scdn.co/image/ab67616d0000b2733475f2230efe04d10bb0d373,2,10,341280,https://p.scdn.co/mp3-preview/7ab7bc9795c7a7c28310417f580e09d5bdb67edd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70600352,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,modern rock,neo mellow,permanent wave,pop rock",0.526,0.785,7.0,-6.334,1.0,0.0305,0.000722,0.00174,0.1,0.0621,130.961,4.0,,Universal Music Group,"C © 2006 Polydor Ltd. (UK), P ℗ 2006 Polydor Ltd. (UK)",5437 +5438,spotify:track:15kQGEy89K8deJcZVFEn0N,This Feeling (feat. Kelsea Ballerini),"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:3RqBeV12Tt7A8xH3zBDDUF","The Chainsmokers, Kelsea Ballerini",spotify:album:1KQiX6KfutAN1UEzZ4BK5Q,Sick Boy...This Feeling,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2018-09-18,https://i.scdn.co/image/ab67616d0000b273b4f23e1ebf6bec20980c0a96,1,1,199226,https://p.scdn.co/mp3-preview/4ffc8491dbcb58fa39f96b623bdabbb20afc81c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQX91802210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,contemporary country,country",0.539,0.651,1.0,-5.304,1.0,0.0432,0.0651,0.0,0.0662,0.474,105.159,4.0,,Disruptor Records/Columbia,P (P) 2018 Disruptor Records/Columbia Records,5438 +5439,spotify:track:68vipq4utIVcDqT40CY4E2,Theme From Shaft,spotify:artist:3IKV7o6WPphDB7cCWXaG3E,Isaac Hayes,spotify:album:29XTmgtHnLvO1qUCqr1Sfq,100 70s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-01-01,https://i.scdn.co/image/ab67616d0000b2731d54cff833474bfea1990ae7,1,20,276037,https://p.scdn.co/mp3-preview/9bf78f704c55f3bd013d84322107a2ed23acf9e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USFI87100050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,memphis soul,quiet storm,soul,southern soul",0.494,0.723,0.0,-14.49,1.0,0.0451,0.245,1.16e-05,0.212,0.857,120.872,4.0,,Universal Music,"C © 2012 Universal International Music B.V., P ℗ 2012 Universal International Music B.V.",5439 +5440,spotify:track:6TXyNXwTeuU31wRC8e63Pe,Foundations - Edit,spotify:artist:5vBKu1igxFo6g1sHADkIdg,Kate Nash,spotify:album:6sI17kNMfGYOWlujpEKa7i,Just The Hits: Girl Power,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2019-08-09,https://i.scdn.co/image/ab67616d0000b273a64ec2afcac14e3b66212ea5,1,20,224266,https://p.scdn.co/mp3-preview/f4bb5a20d7fa47218bae694e97e510374d909dec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,GBUM70703520,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"anti-folk,piano rock",0.67,0.855,0.0,-4.34,1.0,0.0778,0.151,0.0,0.0811,0.801,84.487,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Universal Music Australia Pty Ltd., P This Compilation ℗ 2019 Universal Music Australia Pty Ltd.",5440 +5441,spotify:track:62O8L1OHrH15XcNcx586S6,For The Love Of Him,spotify:artist:3JVqOROaMTUZ2wUFwkfr1A,Bobbi Martin,spotify:album:7MuDBMh2wG1RUaYYFnSeEZ,The Very Best Of,spotify:artist:3JVqOROaMTUZ2wUFwkfr1A,Bobbi Martin,2011-02-01,https://i.scdn.co/image/ab67616d0000b273ca364fd64d1a096d86d06a83,1,2,155720,https://p.scdn.co/mp3-preview/c569be38cf97427c2af737ae45dd1472b8514925?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USA371196627,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.475,0.606,9.0,-8.672,0.0,0.0313,0.802,3.12e-05,0.743,0.659,113.766,4.0,,Master Classics Records,C (C) 2011 Master Classics Records,5441 +5442,spotify:track:0aivZxY3xfoMexurH5po6q,Leave It Alone,spotify:artist:3KshwzAIDBZRPr5Xc7S79C,Operator Please,spotify:album:7v5RBuKqBYKMypK3C7Uf16,Yes Yes Vindictive,spotify:artist:3KshwzAIDBZRPr5Xc7S79C,Operator Please,2007-01-01,https://i.scdn.co/image/ab67616d0000b273866f75fa6ddd262b0a1571ac,1,3,218920,https://p.scdn.co/mp3-preview/fee3bd8a5a5dc8929c63466eaee43a3eecdf0cad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUOY10700031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.451,0.914,4.0,-3.245,0.0,0.0809,0.00116,6.77e-06,0.13,0.557,163.017,4.0,,Virgin Records,"C © 2007 Operator Please, P ℗ 2007 Operator Please",5442 +5443,spotify:track:2CpH1L4CUR47RARB3PgY1l,You Don't Own Me (feat. G-Eazy),"spotify:artist:6y5amJcTjeDgLXIjtQLMst, spotify:artist:02kJSzxNuaWGqwubyUba0Z","SAYGRACE, G-Eazy",spotify:album:1jwMRIAKCBeroo1jYV19tO,You Don't Own Me,"spotify:artist:6y5amJcTjeDgLXIjtQLMst, spotify:artist:02kJSzxNuaWGqwubyUba0Z","SAYGRACE, G-Eazy",2015-03-17,https://i.scdn.co/image/ab67616d0000b27393abf4acaec107063cd088d6,1,1,199314,https://p.scdn.co/mp3-preview/3ef738a5c1d0b292a29ef82d6cd26e26aa4f0ff8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,57,USRC11500344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,indie pop rap,oakland hip hop,pop rap,rap",0.336,0.664,7.0,-5.68,1.0,0.102,0.166,1.31e-06,0.0575,0.294,186.394,3.0,,Regime Music Societe/RCA Records,"P (P) 2015 RCA Records, a division of Sony Music Entertainment",5443 +5444,spotify:track:41BtDzOBZEVr8ugEpOOmqz,Good Timin,spotify:artist:7ydcRbgt0yM9etADb1Ackp,Jimmy Jones,spotify:album:171Dn1zTGzMD1PnnsrS1D9,Classic and Collectable - Jimmy Jones - Good Timin',spotify:artist:7ydcRbgt0yM9etADb1Ackp,Jimmy Jones,2015-03-28,https://i.scdn.co/image/ab67616d0000b273942aa4ed03e5a22728d8cb70,1,1,129306,https://p.scdn.co/mp3-preview/ebfaf4e7dc88e900214e2227d84756d14828279d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,QM6N21593697,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues,rock-and-roll",0.599,0.589,0.0,-7.727,0.0,0.197,0.689,0.00813,0.145,0.96,145.171,4.0,,Fidelity Masters,"C (C) 2015 Fidelity Masters, P (P) 2015 Fidelity Masters",5444 +5445,spotify:track:69lJuy3wAfYFmH7VmsAAfo,You,"spotify:artist:4ofCBoyEiGSePFAG500xev, spotify:artist:3WGpXCj9YhhfX11TToZcXP, spotify:artist:45dkTj5sMRSjrmBSBeiHym","Regard, Troye Sivan, Tate McRae",spotify:album:4EWvX7UTunbS8ozYOKRH1Q,You,"spotify:artist:4ofCBoyEiGSePFAG500xev, spotify:artist:3WGpXCj9YhhfX11TToZcXP, spotify:artist:45dkTj5sMRSjrmBSBeiHym","Regard, Troye Sivan, Tate McRae",2021-04-16,https://i.scdn.co/image/ab67616d0000b2739665bbfdd857777892674607,1,1,233386,https://p.scdn.co/mp3-preview/91c731d2a692efa097c6dfe0fcf787c498558e9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBCEN2100073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,pop edm,slap house,uk dance,australian pop,pop,viral pop,pop",0.695,0.697,0.0,-5.605,1.0,0.0358,0.0591,0.0,0.0645,0.523,106.067,4.0,,Ministry of Sound Recordings,P (P) 2021 Ministry of Sound Recordings Limited,5445 +5446,spotify:track:3mRM4NM8iO7UBqrSigCQFH,"Stayin' Alive - From ""Saturday Night Fever"" Soundtrack",spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:5YHZaCxCuuK81h4Fimb9rT,Greatest,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1979-01-01,https://i.scdn.co/image/ab67616d0000b27352038992fc6d7868f31d23b7,1,5,285373,https://p.scdn.co/mp3-preview/8f43872d18d4027177f10b909ef4d1d9b0553b5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,NLF057790034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.703,0.827,10.0,-7.179,0.0,0.0343,0.032,0.00636,0.179,0.944,103.564,4.0,,Bee Gees Catalog,"C © 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P This Compilation ℗ 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",5446 +5447,spotify:track:5JGEAz15LkPoOtFHttDtVs,With Or Without You - Remastered 2007,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:4mULDK6YXrFXTfSwvwm4M3,The Joshua Tree,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1987-03-10,https://i.scdn.co/image/ab67616d0000b273e2e8f804c2cdd5b3815adbf9,1,3,295520,https://p.scdn.co/mp3-preview/9985838e7b86eba6cf5ffe3c72b1b4dd3ada5eee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBUM70709792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.538,0.432,2.0,-11.882,1.0,0.0295,0.000185,0.309,0.139,0.116,110.181,4.0,,Universal-Island Records Ltd.,"C © 2007 Universal-Island Records Ltd., P ℗ 2007 Universal-Island Records Ltd.",5447 +5448,spotify:track:1OxDEvjPoQrNhZ5c3tTxSu,"Don't Cry For Me Argentina - From ""Evita""","spotify:artist:4v3l77BOnLGn6WiegeRVLf, spotify:artist:4aP1lp10BRYZO658B2NwkG, spotify:artist:3KDpcZPHxvsaVk5PReoGqh","Julie Covington, Andrew Lloyd Webber, Tim Rice",spotify:album:6lfGhIVE8by4922uwuCxla,Unmasked: The Platinum Collection (Deluxe),spotify:artist:4aP1lp10BRYZO658B2NwkG,Andrew Lloyd Webber,2018-03-16,https://i.scdn.co/image/ab67616d0000b27387ff639ec43c4fe37bd02357,1,10,324720,https://p.scdn.co/mp3-preview/8fed3c12fefe6a7318ee99211683bd821497b8ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USMC10111984,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,broadway,west end",0.235,0.213,1.0,-8.764,1.0,0.0339,0.828,5.07e-05,0.113,0.153,70.075,4.0,,UMC (Universal Music Catalogue),"C © 2018 The Really Useful Group Ltd., under exclusive licence to Polydor Limited, P This Compilation ℗ 2018 The Really Useful Group Ltd., under exclusive licence to Polydor Limited",5448 +5449,spotify:track:2GBoo6ufWtMy1s6lqgbjJ8,Love Me For A Reason,spotify:artist:6X9aYHnQ75YI8o08aoa0iS,Boyzone,spotify:album:3N73NWzGPFcMZ23e0xPSX4,Said And Done,spotify:artist:6X9aYHnQ75YI8o08aoa0iS,Boyzone,1995-08-21,https://i.scdn.co/image/ab67616d0000b273fd3682bfa7e707e32f8fb500,1,3,218133,https://p.scdn.co/mp3-preview/f832bf704f228ac0ebfab8e9ad3eb02b7ea1311f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,IEAAA9400001,spotify:user:bradnumber1,2022-01-13T01:24:44Z,boy band,0.431,0.721,9.0,-10.123,1.0,0.0528,0.063,0.0,0.12,0.668,156.12,4.0,,Universal Music Ireland Ltd.,"C © 1995 Universal Music Ireland Ltd., P ℗ 1995 Universal Music Ireland Ltd.",5449 +5450,spotify:track:44AXd3UVaaVYsSQqBpnYO2,Best Day Of My Life,spotify:artist:0MlOPi3zIDMVrfA9R04Fe3,American Authors,spotify:album:0nPacNPgSycLGJdd2JnH9C,American Authors,spotify:artist:0MlOPi3zIDMVrfA9R04Fe3,American Authors,2013-01-01,https://i.scdn.co/image/ab67616d0000b273c7f3df627862b26c2f4784e1,1,2,194093,https://p.scdn.co/mp3-preview/caf61e3a88f77f587e097076ac1590f11a590e88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71302187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop rock",0.673,0.901,2.0,-2.379,1.0,0.0348,0.0525,0.000535,0.0736,0.503,100.002,4.0,,Def Jam Recordings,"C (C) 2013 The Island Def Jam Music Group, P (P) 2013 The Island Def Jam Music Group",5450 +5451,spotify:track:2AlVWg58iy4Cx6KqD0XYu2,Picture Of You,spotify:artist:6X9aYHnQ75YI8o08aoa0iS,Boyzone,spotify:album:6v6BH1znvQFCn3GBsyqVBj,A Different Beat,spotify:artist:6X9aYHnQ75YI8o08aoa0iS,Boyzone,1996-10-28,https://i.scdn.co/image/ab67616d0000b2736ccfecc7b9c94d77f1fc306c,1,1,206040,https://p.scdn.co/mp3-preview/51b418b5838507c9608581877266f8d9728244e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,IEAAA9700014,spotify:user:bradnumber1,2022-01-13T01:24:38Z,boy band,0.768,0.919,0.0,-6.066,1.0,0.0416,0.109,1.14e-06,0.366,0.862,116.649,4.0,,Polydor Records,"C © 1997 Universal Music Ireland Ltd., P ℗ 1997 Universal Music Ireland Ltd.",5451 +5452,spotify:track:7utoClKnLShFg6u6dZ20gp,Breaking Up Is Hard to Do,spotify:artist:5N6GwJzOcOY5kv8p0NjhYL,Neil Sedaka,spotify:album:7s1t3zA17RfNVhMYv2v52o,Collections,spotify:artist:5N6GwJzOcOY5kv8p0NjhYL,Neil Sedaka,2003-03-29,https://i.scdn.co/image/ab67616d0000b273f2e097248726f9012531a52c,1,2,136266,https://p.scdn.co/mp3-preview/470da771e29d749f788165317f950d538a6ce024?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USRC19901068,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,bubblegum pop,easy listening,rockabilly,soft rock",0.742,0.674,8.0,-7.648,0.0,0.0354,0.788,0.0,0.0698,0.964,116.53,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2003 SONY BMG MUSIC ENTERTAINMENT.,5452 +5453,spotify:track:50fsqNY8pUd9iMIU3UYG2g,Shine Ya Light,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:66InqDn9SLDox1SADhsXKG,ORA,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2012-09-07,https://i.scdn.co/image/ab67616d0000b27347ef1a5b2207edf038cbdf74,1,6,210840,https://p.scdn.co/mp3-preview/5b5799407336a99bb101c46e63204ffbfe60c27a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQX91201249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.48,0.835,4.0,-2.121,1.0,0.042,0.017,0.0,0.372,0.565,145.546,4.0,,Roc Nation/Columbia,"P (P) 2012 Roc Nation LLC, 2012 Ministry Of Sound Recordings",5453 +5454,spotify:track:6YgjdjpXJ4OhDwp9CG8Jc2,Beautiful Soul - Radio Edit,spotify:artist:2Hjj68yyUPiC0HKEOigcEp,Jesse McCartney,spotify:album:6ajRHh39lkA8pKi7kNTKKB,Beautiful Soul,spotify:artist:2Hjj68yyUPiC0HKEOigcEp,Jesse McCartney,2004-01-01,https://i.scdn.co/image/ab67616d0000b273f87feefbab87e4a0b8b8fe99,1,1,198293,https://p.scdn.co/mp3-preview/3cb364c28ea6b85c40f81414564ff59499b18d0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USHR10421258,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.654,0.647,9.0,-4.354,1.0,0.0469,0.0778,0.0,0.0323,0.91,89.988,4.0,,Hollywood Records,"C © 2004 Hollywood Records, Inc., P This Compilation ℗ 2004 Hollywood Records, Inc.",5454 +5455,spotify:track:4hIY051enSBBJ5fzZUzTSU,How You Love Me Now,spotify:artist:6we2CCxymhh4v30lZRhhpa,Hey Monday,spotify:album:5BNmZXVJX3h8WbtXyRTRln,Hold On Tight,spotify:artist:6we2CCxymhh4v30lZRhhpa,Hey Monday,2008-10-07,https://i.scdn.co/image/ab67616d0000b273dd1d9e19cfe34dac93983739,1,2,197760,https://p.scdn.co/mp3-preview/2b5cbd9b6cd2183cd77132b4f13f89061b01f080?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USSM10803205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,neon pop punk,pixie,pop emo,pop punk",0.393,0.965,5.0,-2.078,1.0,0.0734,0.00912,0.0,0.385,0.37,134.919,4.0,,Decaydance/Columbia,P (P) 2008 SONY BMG MUSIC ENTERTAINMENT,5455 +5456,spotify:track:0u2P5u6lvoDfwTYjAADbn4,lovely (with Khalid),"spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Billie Eilish, Khalid",spotify:album:2sBB17RXTamvj7Ncps15AK,lovely (with Khalid),"spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Billie Eilish, Khalid",2018-04-19,https://i.scdn.co/image/ab67616d0000b2738a3f0a3ca7929dea23cd274c,1,1,200185,https://p.scdn.co/mp3-preview/18b3cbbad11e488c24c76d0c697cec8618c15f96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,86,USUM71804190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop,pop,pop r&b",0.351,0.296,4.0,-10.109,0.0,0.0333,0.934,0.0,0.095,0.12,115.284,4.0,,Darkroom,"C © 2018 Darkroom/Interscope Records, P ℗ 2018 Darkroom/Interscope Records",5456 +5457,spotify:track:7DoN0sCGIT9IcLrtBDm4f0,Lonely Together (feat. Rita Ora),"spotify:artist:1vCWHaC5f2uS3yhpwWbIA6, spotify:artist:5CCwRZC6euC8Odo6y9X8jr","Avicii, Rita Ora",spotify:album:6LaLU27ZPXimJIbpbiOahr,AVĪCI (01),spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2017-08-10,https://i.scdn.co/image/ab67616d0000b27330800bfbfff51ddb031d9bd7,1,2,181812,https://p.scdn.co/mp3-preview/26d5f34e9b377c9a7cb2c1535452874f255b7a0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,SE5R71700108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,dance pop,pop,uk pop",0.648,0.667,2.0,-5.294,0.0,0.065,0.137,2.1e-05,0.0797,0.217,102.966,4.0,,Universal Music Group,"C © 2017 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2017 Avicii Music AB, under exclusive license to Universal Music AB",5457 +5458,spotify:track:5Ccx6DcIvnlQicMujqtqBf,Do You Wanna Make Love,spotify:artist:6LJLkqGPy0xFsVCdPP6PJI,Peter McCann,spotify:album:2voEmsGzJfzBE53XMWFXo1,The 70s One Hit Wonder Collection,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-05-27,https://i.scdn.co/image/ab67616d0000b273cba7e1d9d1e3d05e7472a856,1,7,211772,https://p.scdn.co/mp3-preview/99095eac6ad4c004b7ecf520027d0b5a8f72da49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USBT21600130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.694,0.413,3.0,-9.1,1.0,0.0268,0.348,0.0,0.124,0.542,109.967,4.0,,Nasjon Properties,"C 2016 2016, P 2016 2016",5458 +5459,spotify:track:6VnWRocAuNkoihJVKmhBLU,The Two of Us,"spotify:artist:2u5zpLHWeLbAyvfFZfcTPb, spotify:artist:0k1Nc8EWBurYtiQXSW6rgj","Jackie Trent, Tony Hatch",spotify:album:44YfpDQqwMA35RLro0Ifju,Hatchbox: The Original Album Collection,spotify:artist:0k1Nc8EWBurYtiQXSW6rgj,Tony Hatch,2005-05-31,https://i.scdn.co/image/ab67616d0000b2736dcdb70b804a76ceb5494122,4,12,190026,https://p.scdn.co/mp3-preview/8aa772ab41c7beee42d3f489c98ecd03d41cc5d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE0500237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,easy listening,0.672,0.591,0.0,-7.348,1.0,0.0416,0.692,0.0,0.122,0.664,94.007,4.0,,Castle Communications,"C © 2005 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2005 Sanctuary Records Group Ltd., a BMG Company",5459 +5460,spotify:track:3G2KQpiCXFYqYlUVVskqqr,Barbara Ann (Mono),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:7o7UHh5PfO1kY4YoxqrwN7,Beach Boys’ Party! (Mono & Stereo),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1965-11-08,https://i.scdn.co/image/ab67616d0000b273f31759954f6ad19cf1c1850f,1,12,205786,https://p.scdn.co/mp3-preview/865f7b25a74da38c07d55a0857a9dee0bffc19b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USCA21202122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.537,0.54,6.0,-8.036,1.0,0.0506,0.124,0.0,0.804,0.82,77.817,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",5460 +5461,spotify:track:5zdUc1JRCImBYcDWgvFNpE,Caught Up,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,spotify:album:1RM6MGv6bcl6NrAG8PGoZk,Confessions (Expanded Edition),spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2004-03-23,https://i.scdn.co/image/ab67616d0000b273365b3fb800c19f7ff72602da,1,7,224640,https://p.scdn.co/mp3-preview/6fc394cf7c0300a2a76cff0a27a35de40bb50067?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USAR10400975,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.817,0.806,6.0,-4.606,1.0,0.0623,0.027,9e-06,0.119,0.805,110.086,4.0,,LaFace Records,P (P) 2004 LaFace Records,5461 +5462,spotify:track:0ARK753YaiJbpLUk7z5yIM,Dilemma,"spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:3AuMNF8rQAKOzjYppFNAoB","Nelly, Kelly Rowland",spotify:album:4HUUHHXBXImwksfbSPqE7q,Nellyville,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2002-06-25,https://i.scdn.co/image/ab67616d0000b273a8b9f97b9ea065b9a857e93f,1,10,289160,https://p.scdn.co/mp3-preview/166e4018942f444036157420ef0ba2cb804cc6e5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,78,USUR10200370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary,atl hip hop,dance pop,hip pop,r&b,urban contemporary",0.727,0.552,2.0,-8.074,0.0,0.14,0.226,0.00016,0.198,0.607,168.19,4.0,,Motown,"C © 2002 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2002 Universal Motown Records, a division of UMG Recordings, Inc.",5462 +5463,spotify:track:5pPftjklQPooJBlE6WOQjk,Heavy Heart,spotify:artist:7GvCdRq4iHNQDsGlPWOycw,You Am I,spotify:album:3Z16nJr79Hi5j2pgOmzOu5,You Am I's #4 Record,spotify:artist:7GvCdRq4iHNQDsGlPWOycw,You Am I,1998-05-25,https://i.scdn.co/image/ab67616d0000b27366de380bef90f726e72b65ae,1,8,191600,https://p.scdn.co/mp3-preview/fa23e2d7747f21bd979069f55f152bcd1c996bdd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM09810414,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.7,0.35,0.0,-11.343,1.0,0.0295,0.782,0.0,0.116,0.117,113.059,4.0,,RA Records,P (P) 1998 rooArt,5463 +5464,spotify:track:5QPTfGeN4ZgCG9TPhUAtot,Bad Boys,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,spotify:album:6ZJD7uT643TvniNyAk90bd,The Final,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,1986-11-25,https://i.scdn.co/image/ab67616d0000b273ee44e3a23aaaa941f7adb48d,1,3,199240,https://p.scdn.co/mp3-preview/e19638bd561d4a48449dec7b072461cce2621d69?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBBBM8301289,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock",0.795,0.755,9.0,-7.929,0.0,0.0413,0.0784,7.75e-05,0.353,0.853,120.184,4.0,,Sony Music UK,P (P) 1986 Sony Music Entertainment UK Limited,5464 +5465,spotify:track:4EFkvOhgAmlHEfDfvfSoh5,Girls on Film - 2010 Remaster,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:2Tc7ILGF89w1PWOhzuZlqB,Duran Duran (Deluxe Edition),spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1981-06-15,https://i.scdn.co/image/ab67616d0000b2730fc83f41d5f0bd27105e5048,1,1,212853,https://p.scdn.co/mp3-preview/b263517022abaae3807418cab4417bf198d062b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAYE1000023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.725,0.859,7.0,-6.208,1.0,0.0636,0.0173,0.0137,0.048,0.53,131.697,4.0,,Parlophone UK,"C © 2010 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2010 Parlophone Records Ltd, a Warner Music Group Company",5465 +5466,spotify:track:7knBFuX3LR675ByqoAypd6,Picture Frames,spotify:artist:20IBsBjoPfVL7jaKX8Pd2l,Georgia Fair,spotify:album:11RuRb7Wk36ozAZwh0xRof,Georgia Fair,spotify:artist:20IBsBjoPfVL7jaKX8Pd2l,Georgia Fair,2009-10-16,https://i.scdn.co/image/ab67616d0000b2731be57f6e5f875b903d7f0f46,1,1,178853,https://p.scdn.co/mp3-preview/772a6d43bb60b204e120f44994de7fda8f76b7c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUBM00900263,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie folk,0.614,0.704,6.0,-5.459,1.0,0.0287,0.489,0.000908,0.113,0.6,102.437,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd.,5466 +5467,spotify:track:3pYDZTJM2tVBUhIRifWVzI,Blow,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:0pGumY11G8OGH05ti6jh23,Cannibal (Expanded Edition),spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010-11-19,https://i.scdn.co/image/ab67616d0000b2733556ff5e46e50eb27be71ebe,1,4,219973,https://p.scdn.co/mp3-preview/299be6d52d4bf03652a23ee1d9c596f612bdb7cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USRC11000889,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.753,0.729,11.0,-3.862,0.0,0.0392,0.00334,5.66e-05,0.073,0.812,120.013,4.0,,RCA Records Label,"P (P) 2010 RCA Records, a division of Sony Music Entertainment",5467 +5468,spotify:track:7bC0ji5zRXieKSMQI9LmED,Thank You,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,spotify:album:2TiYHxwiIMlGLVFdCRq115,I Am,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,2015-09-11,https://i.scdn.co/image/ab67616d0000b273e377e91c3af29104b13d5806,1,10,242079,https://p.scdn.co/mp3-preview/00481dd8e3b25ec1b750d7509e157a8ff4837ddd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71506292,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,dance pop,pop,talent show",0.566,0.393,9.0,-7.089,1.0,0.0393,0.801,6.9e-06,0.26,0.21,76.036,4.0,,Universal Music Group,"C © 2015 Island Records, a division of Universal Music Operations Limited, P ℗ 2015 Island Records, a division of Universal Music Operations Limited",5468 +5469,spotify:track:4LFfzAB4L0Yj0yspY3RXGF,That's The Way A Woman Feels,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,spotify:album:0NLEDUOmZQ4dvh0mIa7iQe,Don't Ask,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,1994-04-30,https://i.scdn.co/image/ab67616d0000b273ab4332b95c9425e87aa06238,1,9,261600,https://p.scdn.co/mp3-preview/46b4673f51c7a5e6c03015cdd391db12d053970b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUSM09600085,spotify:user:bradnumber1,2022-02-03T10:03:34Z,"australian dance,australian pop,australian rock",0.343,0.831,4.0,-7.199,1.0,0.0531,0.167,0.000416,0.0855,0.566,157.312,3.0,,Epic,P 1994 Sony Music Entertainment (Australia) PTY. Ltd.,5469 +5470,spotify:track:0FBeVAGy58YREuZK2rpRVm,Pop Muzik - 12 Inch Version,"spotify:artist:4ZYjW9vY2BTk1er3xomkwI, spotify:artist:5UQO8IQ2YE4eRUrGtHygB8, spotify:artist:4lG71rnC7sx25oeByeSEYe","M, Robin Scott, Nick Launay",spotify:album:5n9dcCzWXYSZqAFCE64Vl0,"New York, London, Paris, Munich","spotify:artist:4ZYjW9vY2BTk1er3xomkwI, spotify:artist:5UQO8IQ2YE4eRUrGtHygB8","M, Robin Scott",1979-01-01,https://i.scdn.co/image/ab67616d0000b27397ed207bda3b37fd7b591d34,1,1,296466,https://p.scdn.co/mp3-preview/d7ffac6f072f318a4380199c1877b2236b2f1286?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBGHQ7900012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"synthpop,psychedelic folk",0.94,0.727,1.0,-9.982,1.0,0.0358,0.124,0.00021,0.0808,0.969,110.8,4.0,,Metro,"C © 1997 Union Square Music Limited, a BMG Company, P ℗ 1997 Robin Scott Limited under exclusive licence to Union Square Music Limited, a BMG Company",5470 +5471,spotify:track:5IIQ7vg9HvA4QSNtFDGJVT,Pieces Of Me,spotify:artist:4hqDqHtBlgxXpLXVYf7c8L,Ashlee Simpson,spotify:album:47OwiaMei2WRjwrpy7lMew,Autobiography (International Version),spotify:artist:4hqDqHtBlgxXpLXVYf7c8L,Ashlee Simpson,2004-01-01,https://i.scdn.co/image/ab67616d0000b273b6709e1e560b8b2f02f580ad,1,2,217440,https://p.scdn.co/mp3-preview/9705ffd3fdbf605fa04face9eb1f1e532cb8a041?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10400225,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.505,0.799,2.0,-4.286,1.0,0.077,0.0572,0.0,0.11,0.772,173.999,4.0,,Geffen,"C © 2004 Geffen Records, P ℗ 2004 Geffen Records",5471 +5472,spotify:track:1KZyVnyptQcPzkx7ELCnZC,Hold Back The River,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,spotify:album:3GqsyMrJu3o8jLiGyBsBQW,Chaos And The Calm,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,2015-03-20,https://i.scdn.co/image/ab67616d0000b273066483b34a405583429b8049,1,2,238746,https://p.scdn.co/mp3-preview/aba30de13d468df5bd7762a55a7ac0e210041f09?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USUM71413733,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop,uk pop",0.715,0.715,5.0,-7.364,1.0,0.0902,0.0526,0.0,0.0936,0.507,134.922,4.0,,Universal Records,"C © 2015 Republic Records, a division of UMG Recordings, Inc., P ℗ 2015 Republic Records, a division of UMG Recordings, Inc.",5472 +5473,spotify:track:5fsQSDifYpjfbCqvZKPVBj,She's Kinda Hot,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:43v9cUsP5K0hvu9iyuAzmZ,Sounds Good Feels Good (Deluxe),spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2015-10-23,https://i.scdn.co/image/ab67616d0000b273a7cb3e00ac2f3a1bf8679fef,1,2,216454,https://p.scdn.co/mp3-preview/1ccf3e5fe470996bd1cddf375eda906afd11a3d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBUM71504046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.665,0.909,4.0,-4.806,1.0,0.0316,0.00185,0.0,0.109,0.891,118.03,4.0,,Capitol,"C © 2015 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited, P ℗ 2015 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited",5473 +5474,spotify:track:6PhY7y9O2VNHREqJv33EcG,We Belong,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:6oR682z8d8TWhL77X7W3kP,Watching The Sky,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2018-06-08,https://i.scdn.co/image/ab67616d0000b273a065cbe8ec2e135441b06e57,1,5,207991,https://p.scdn.co/mp3-preview/cf33102aa69b14a0810d64aeefc72bcbaecfc9cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUIYA1600004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.798,0.655,0.0,-8.071,1.0,0.0387,0.381,1.09e-06,0.477,0.828,111.98,4.0,,Empire Of Song,"C 2018 Empire Of Song (Australia) Pty Ltd, P 2018 Empire Of Song (Australia) Pty Ltd",5474 +5475,spotify:track:1CetnEx843dN0s9fT0CMhc,Makes Me Wonder,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:1cCm3jwAW9eJtEGyzpxlXY,It Won't Be Soon Before Long (International Version),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2007-01-01,https://i.scdn.co/image/ab67616d0000b27321c49f0a1e28ad3ab71311bc,1,2,211080,https://p.scdn.co/mp3-preview/e0962c443a43887b2d1c410b84d80808b23491f3?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70729755,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.803,0.851,7.0,-2.429,1.0,0.0357,0.00485,0.000358,0.0577,0.881,113.996,4.0,,Universal Music Group,"C © 2007 A&M/Octone Records, P ℗ 2007 Interscope Records",5475 +5476,spotify:track:0KzP3zQYcBmX4pVPVx0fyr,Motor's Too Fast,spotify:artist:4v0Hh2bdIAJnaUqAOipfYs,James Reyne,spotify:album:4E84dVAoEfOP6wdKucheO4,James Reyne,spotify:artist:4v0Hh2bdIAJnaUqAOipfYs,James Reyne,1988,https://i.scdn.co/image/ab67616d0000b2730829c19f73f993c8a933e166,1,7,253000,https://p.scdn.co/mp3-preview/e3a10662fab96ae11c75b168781076d9e13f5af0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USCA28800136,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.643,0.503,9.0,-11.481,0.0,0.0296,0.0119,0.00663,0.437,0.816,117.88,4.0,,Capitol,"C © 2014 Capitol Records, Inc., P ℗ 1988 Capitol Records, Inc.",5476 +5477,spotify:track:7kWhdmRYv8CqbWNqfojqVd,Let's Stay Together,spotify:artist:3dkbV4qihUeMsqN4vBGg93,Al Green,spotify:album:5MQx9U0AAIrcbvZ0lL1RCi,Let's Stay Together,spotify:artist:3dkbV4qihUeMsqN4vBGg93,Al Green,1972-01-31,https://i.scdn.co/image/ab67616d0000b2732edbf1269e52734833323c48,1,1,199400,https://p.scdn.co/mp3-preview/027817c11eaff28a45d96046a1c5da43d8a1e155?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US2HK0913701,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,funk,memphis soul,quiet storm,soul,soul blues,southern soul",0.746,0.273,5.0,-16.63,1.0,0.0573,0.606,0.0168,0.0526,0.502,101.952,4.0,,Hi Records Under Exclusive License to Fat Possum Records,"C 1972 Hi Records Under Exclusive License to Fat Possum Records, P 1972 Hi Records Under Exclusive License to Fat Possum Records",5477 +5478,spotify:track:5j62iEYRzttCfy6qbK07IJ,Turn Around (feat. Ne-Yo),"spotify:artist:6mU8ucezzms5I2kNH6HNlu, spotify:artist:21E3waRsmPlU7jZsS13rcj","Conor Maynard, Ne-Yo",spotify:album:6vBcVTsQZ7jkIPL7Z7fvJ4,Contrast,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,2012-07-09,https://i.scdn.co/image/ab67616d0000b273ccb8077ec19ddfe98c8fa747,1,2,232385,https://p.scdn.co/mp3-preview/780a5d3812d4aa347cc33d0671a691337be91fcf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAYE1201089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,uk pop,viral pop,dance pop,pop,r&b,urban contemporary",0.59,0.874,6.0,-2.583,0.0,0.0263,0.0179,6.46e-06,0.134,0.607,125.018,4.0,,WM Indonesia,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",5478 +5479,spotify:track:07dYGGSrzPeg6a3KZjWX65,Boyfriend,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7BWK3eXcbAdwYeulyQj5Kw,Believe (Deluxe Edition),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2012-01-01,https://i.scdn.co/image/ab67616d0000b273adc5af517133ca221870f112,1,2,171333,https://p.scdn.co/mp3-preview/e9a531e4ad8b0ef77601b197c1c265d611a43141?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71202650,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.719,0.535,10.0,-6.069,0.0,0.0641,0.0314,0.0017,0.141,0.276,96.982,4.0,,Universal Music Group,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",5479 +5480,spotify:track:7w87IxuO7BDcJ3YUqCyMTT,Pumped Up Kicks,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,spotify:album:7Kmmw7Z5D2UD5MVwdm10sT,Torches,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,2011-05-23,https://i.scdn.co/image/ab67616d0000b273121d5f92cf90576907dfb1e5,1,2,239600,https://p.scdn.co/mp3-preview/2213bf4173a9b50a807a30121ed6b559a7778209?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USSM11002931,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern alternative rock,modern rock,rock",0.733,0.71,5.0,-5.849,0.0,0.0292,0.145,0.115,0.0956,0.965,127.975,4.0,,Columbia,"P (P) 2010, 2011 Sony Music Entertainment",5480 +5481,spotify:track:0LUWi58l0cfc9Gm2A8Wegw,In My Little Corner Of The World,spotify:artist:2M93P87MDGek6uzg7Jn7he,Anita Bryant,spotify:album:2bZrEgjlPEdqShPdNIpAm6,The Very Best Of,spotify:artist:2M93P87MDGek6uzg7Jn7he,Anita Bryant,2010-12-01,https://i.scdn.co/image/ab67616d0000b2732340e6c0d7bb589fedb3cdad,1,1,160080,https://p.scdn.co/mp3-preview/c69ce452810af019250e96142854059dd6936039?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA371132731,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.483,0.321,11.0,-12.302,1.0,0.0281,0.845,1.58e-05,0.348,0.404,107.728,4.0,,Master Classics Records,C (C) 2010 Master Classics Records,5481 +5482,spotify:track:1HZ3cUZUw5htSFmah1V8Ko,Shine,spotify:artist:4e5V1Q2dKCzbLVMQ8qbTn6,Collective Soul,spotify:album:3uSVy9q97sAzd5UE0dMdOT,"Hints, Allegations & Things Left Unsaid",spotify:artist:4e5V1Q2dKCzbLVMQ8qbTn6,Collective Soul,1994-03-29,https://i.scdn.co/image/ab67616d0000b273eab31708f8d7466dde6e17c5,1,1,306040,https://p.scdn.co/mp3-preview/ae8d1b31dd468740649e6336fbf493fca3fe7c29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT29300016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,nu metal,pop rock,post-grunge,rock",0.54,0.423,6.0,-8.799,1.0,0.0283,0.294,0.0884,0.152,0.353,150.135,4.0,,Concord Music Group,"C 1994 Concord Music Group, Inc., P 1994 Concord Music Group, Inc.",5482 +5483,spotify:track:2806jBTs12WAfzFImSxJzL,Up on the Roof,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,spotify:album:2hnrAozjkiXgE1Xe2X4Fq3,Up on the Roof: The Best of the Drifters,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,2005-02-08,https://i.scdn.co/image/ab67616d0000b273de849f943403165388bff535,1,1,155053,https://p.scdn.co/mp3-preview/e3c63df3b0c9058be2ff2c906de758d070eb8871?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USAT20001006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,doo-wop,rock-and-roll,rockabilly,soul",0.584,0.489,8.0,-6.182,1.0,0.0277,0.755,0.0,0.133,0.777,121.891,4.0,,Rhino Atlantic,"C © 2004 Atlantic Recording Corp. Manufactured and Distributed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured and Distributed by Warner Strategic Marketing",5483 +5484,spotify:track:4dnmtQPnXU993aEUGp0bY8,drivers license,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,spotify:album:5m849a2zFiUwL9tFS7h7sW,drivers license,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,2021-01-08,https://i.scdn.co/image/ab67616d0000b2736706e5eb10e78abc89efa686,1,1,242013,https://p.scdn.co/mp3-preview/3a23122de98505e9b2574822d604322076065243?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,USUG12004750,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.575,0.425,10.0,-8.821,1.0,0.055,0.739,1.48e-05,0.112,0.15,144.004,4.0,,Olivia Rodrigo PS,"C © 2021 Olivia Rodrigo, under exclusive license to Geffen Records, P ℗ 2021 Olivia Rodrigo, under exclusive license to Geffen Records",5484 +5485,spotify:track:4u9f8hqstB7iITDJNzKhQx,My Generation - Stereo Version,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:6Oc6Ok1Oawu8lRkjmD4mXy,My Generation (Stereo Version),spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1965-12-03,https://i.scdn.co/image/ab67616d0000b27334658b1827b64a1d4d5a5ca9,1,6,198706,https://p.scdn.co/mp3-preview/944ed5983dd0fd4d44db5cc6e1bf019bce2e1871?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBUM71406026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.412,0.782,2.0,-9.186,0.0,0.058,0.308,0.00822,0.0775,0.705,96.732,4.0,,Geffen,"C © 1965 Geffen Records, P ℗ 2015 Geffen Records",5485 +5486,spotify:track:0i1m5yDNgR3sr6CyIIqf1G,No Say In It,spotify:artist:5ghiRwgyYZfnmC0Upu6ZtR,Machinations,spotify:album:6fIwCFiDH1cgDNlYd3Lts1,Big Music,spotify:artist:5ghiRwgyYZfnmC0Upu6ZtR,Machinations,1985,https://i.scdn.co/image/ab67616d0000b27321da40e9b074123c5b29961c,1,6,201173,https://p.scdn.co/mp3-preview/46bae454ac3e06849765f2505d935a92edfeaabc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUMU08500108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.714,0.66,9.0,-12.813,1.0,0.0482,0.0137,2.83e-05,0.0787,0.922,131.881,4.0,,WM Australia,"C © 1985 Mushroom Records Pty Ltd, P ℗ 1985 Mushroom Records Pty Ltd",5486 +5487,spotify:track:00qBuuTD8dnY3pb5Ncw8if,All I Know So Far,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:3hochTzSJ2ER3Ma9Tn4aFa,All I Know So Far,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2021-05-07,https://i.scdn.co/image/ab67616d0000b2734b609c14a3e0445ae90953f4,1,1,280275,https://p.scdn.co/mp3-preview/a780e02e36961355edc386e1a808aa0fc429db04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USRC12101246,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.575,0.638,4.0,-5.747,1.0,0.0365,0.0533,0.0,0.0979,0.295,107.946,4.0,,RCA Records Label,"P (P) 2021 RCA Records, a division of Sony Music Entertainment",5487 +5488,spotify:track:1NXHwS75sCmkMZAE0zvwl0,I Won't Let You Down,spotify:artist:2S4OQZxRbWsQ5SLnmMs0GO,Ph.D.,spotify:album:6MDuT3grIiSWTMzKoKjo95,I Won't Let You Down,spotify:artist:2S4OQZxRbWsQ5SLnmMs0GO,Ph.D.,1981-01-01,https://i.scdn.co/image/ab67616d0000b2736c65f7359749d0b0de5348fd,1,1,242534,https://p.scdn.co/mp3-preview/6f2346b66844b4f86361f2fee72673f477dc742e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,QZNJY2031883,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.553,0.406,9.0,-10.498,1.0,0.028,0.0524,0.686,0.125,0.231,108.713,4.0,,Rapanha,"C 2020 Rapanha, P 2020 Rapanha",5488 +5489,spotify:track:603gDhGK8s0dLOgDE7DF3b,Miss Divine,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,spotify:album:25l2YNWt8Vjqw0l6z28HCE,Code Blue,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,1990-11-11,https://i.scdn.co/image/ab67616d0000b2737efe67e303b33b087e56d025,1,5,258480,https://p.scdn.co/mp3-preview/2647bcfda37ac43e65339013c9c03cf106dfde33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUC441100040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic,sophisti-pop,synthpop",0.699,0.851,0.0,-4.886,1.0,0.0425,0.0276,0.0,0.167,0.399,118.164,4.0,,Diva,"C © 2012 Diva Records, P ℗ 2012 Diva Records, Manufactured and distributed by Universal Music Australia Pty Ltd",5489 +5490,spotify:track:2UizutYVqaB33jCHbSoi0d,I Saw Her Again - Single Version,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,spotify:album:1hZFdLqAFWrEC8U8qsb6WK,The Mamas & The Papas,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,1966-08-30,https://i.scdn.co/image/ab67616d0000b2732586e8f6d11256488b6f43db,1,7,193746,https://p.scdn.co/mp3-preview/6566c90b3136ff60fd440a8d77c0078ae6dd614a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USMC16646374,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,mellow gold,psychedelic rock,rock,soft rock,sunshine pop",0.476,0.86,1.0,-5.976,0.0,0.0331,0.171,0.0309,0.235,0.894,121.715,4.0,,Geffen,"C © 1966 UMG Recordings, Inc., P ℗ 1966 UMG Recordings, Inc.",5490 +5491,spotify:track:5d4E1hgkLyb7sXr5J3InnM,You Needed Me,spotify:artist:7d7q5Y1p2QWS4QRAhTQR5E,Anne Murray,spotify:album:5cLFy5cKLjOetxzo5micoR,Let's Keep It That Way,spotify:artist:7d7q5Y1p2QWS4QRAhTQR5E,Anne Murray,1978,https://i.scdn.co/image/ab67616d0000b273c9c1d548dd167f2a87182ceb,1,6,220266,https://p.scdn.co/mp3-preview/b6cae712b05a033fd6b698c62803a79629d936c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,CAE157800006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian country,canadian pop,classic country pop,soft rock",0.497,0.296,9.0,-10.756,1.0,0.0302,0.431,0.0,0.106,0.171,62.204,4.0,,EMI Music Canada,"C © 1999 EMI Music Canada, P This Compilation ℗ 1999 EMI Music Canada",5491 +5492,spotify:track:2dwE8Ca1NI2b9PxA8ZJVwn,Lightnin' Strikes,spotify:artist:5bLcI9Jo6RyrrHzG9veVyn,Lou Christie,spotify:album:6h5QybFGJdZByqFuWbPcqm,Wild Palms (Original ABC Event Series Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1993-01-01,https://i.scdn.co/image/ab67616d0000b273c6a1572cc175e74e39e0737b,1,17,180600,https://p.scdn.co/mp3-preview/26aa74f58617cece7d2e00ba3e9cf66e59b15aa0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USF096525320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,doo-wop,merseybeat",0.603,0.668,3.0,-7.521,1.0,0.0522,0.59,0.0,0.145,0.725,134.311,4.0,,CAPITOL CATALOG MKT (C92),"C © 1993 Capitol Records LLC, P This Compilation ℗ 1993 Capitol Records LLC",5492 +5493,spotify:track:2xGjteMU3E1tkEPVFBO08U,This Is Me,"spotify:artist:7HV2RI2qNug4EcQqLbCAKS, spotify:artist:63nv0hWWDob56Rk8GlNpN8","Keala Settle, The Greatest Showman Ensemble",spotify:album:7zeegKviS9AGeoEenSdO6I,This Is Me,"spotify:artist:7HV2RI2qNug4EcQqLbCAKS, spotify:artist:63nv0hWWDob56Rk8GlNpN8","Keala Settle, The Greatest Showman Ensemble",2017-10-27,https://i.scdn.co/image/ab67616d0000b273b33c769adce9e164764a7ca0,1,1,234706,https://p.scdn.co/mp3-preview/f956356f4a3bf4d34fc93c66e43e6713c85d0a5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USAT21704622,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"broadway,hollywood,show tunes,movie tunes",0.284,0.704,2.0,-7.276,1.0,0.186,0.00583,0.000115,0.0424,0.1,191.702,4.0,,Atlantic Records,"C © 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation., P ℗ 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation.",5493 +5494,spotify:track:0azC730Exh71aQlOt9Zj3y,This Is What You Came For,"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Calvin Harris, Rihanna",spotify:album:3pEgGUv379EDinvg1TN7Kt,This Is What You Came For,"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Calvin Harris, Rihanna",2016-04-29,https://i.scdn.co/image/ab67616d0000b273d9aa52355e062f5de060adbf,1,1,222160,https://p.scdn.co/mp3-preview/14138fec09bb5940b1ee11c3207663906970cf9b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBARL1600460,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,barbadian pop,pop,urban contemporary",0.631,0.927,9.0,-2.787,0.0,0.0332,0.199,0.119,0.148,0.465,123.962,4.0,,Columbia,P (P) 2016 Sony Music Entertainment UK Limited / Westbury Road Entertainment LLC,5494 +5495,spotify:track:3okEKZKs7WgJ2FmwnSU7Yb,"A Hard Rain's A-Gonna Fall - US 7"" Version",spotify:artist:5RNFFojXkPRmlJZIwXeKQC,Bryan Ferry,spotify:album:565jSR6ZBXr8xTQkuCLhXg,Best Of,spotify:artist:5RNFFojXkPRmlJZIwXeKQC,Bryan Ferry,2009-01-01,https://i.scdn.co/image/ab67616d0000b2737bbcdf3a7e3d0af8b7c747a2,1,1,204453,https://p.scdn.co/mp3-preview/3dd596c146c78d595d4e1e61b0423b84de0797da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAA0900881,spotify:user:bradnumber1,2020-03-05T09:20:26Z,"glam rock,melancholia,new romantic,new wave,new wave pop,solo wave,sophisti-pop",0.625,0.932,8.0,-6.512,1.0,0.0892,0.31,4.24e-05,0.149,0.836,125.149,4.0,,Virgin Catalogue,"C © 2009 Dene Jesmond Enterprises Ltd, P ℗ 2009 Dene Jesmond Enterprises Ltd",5495 +5496,spotify:track:5Y7JlzuX1CtyEl8qf58qeU,Rock and Roll Dreams Come Through,spotify:artist:2V3UNup4XHyqdCOGcQai1d,Jim Steinman,spotify:album:1IzqC9ywIOb5bjnLW4Ly3I,Bad For Good,spotify:artist:2V3UNup4XHyqdCOGcQai1d,Jim Steinman,1981,https://i.scdn.co/image/ab67616d0000b273b5f01f25bbdfb2988fcc193a,1,10,387266,https://p.scdn.co/mp3-preview/3a1dd587b3814ed15908064f521f39b70c1e5cf6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USSM18100354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,german show tunes,0.628,0.637,0.0,-13.175,1.0,0.0294,0.151,0.00109,0.262,0.755,110.447,4.0,,Epic,P (P) 1981 Sony Music Entertainment Inc.,5496 +5497,spotify:track:4kIYRtgbZyPzAWSFLdlajW,Surfin' Safari - Mono/Remastered 2001,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:6gcXDGhzGcCBY4dLzEgNFB,Surfin' Safari (Remastered),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1962-10-01,https://i.scdn.co/image/ab67616d0000b2735ff85b1e9634e672b142877c,1,1,126640,https://p.scdn.co/mp3-preview/c1ae3e84067be906db98c5cd1424ff9886805f9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USCA20001587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.542,0.786,9.0,-5.251,1.0,0.0438,0.79,2.14e-05,0.102,0.967,158.37,4.0,,Capitol Records,"C © 1962 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",5497 +5498,spotify:track:5O2Ft5ENCfAh6JCgykJs76,Round Round,spotify:artist:7rZNSLWMjTbwdLNskFbzFf,Sugababes,spotify:album:7wUP2eloas49o4lqSNWRdu,Angels With Dirty Faces,spotify:artist:7rZNSLWMjTbwdLNskFbzFf,Sugababes,2002-01-01,https://i.scdn.co/image/ab67616d0000b2738fe85fdab7e74fe595770e95,1,3,236426,https://p.scdn.co/mp3-preview/706dce3861bcebc1f979c3ba48bc7a9cac38d9bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBAAN0201114,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group,talent show",0.74,0.845,6.0,-3.802,0.0,0.0338,0.00287,6.23e-06,0.115,0.749,126.607,4.0,,Universal-Island Records Ltd.,"C © 2002 Universal Island Records Ltd. A Universal Music Company., P ℗ 2002 Universal Island Records Ltd. A Universal Music Company.",5498 +5499,spotify:track:6yV5U1S4xKxoN2uaNyUZJy,We've Got Tonight,"spotify:artist:4tw2Lmn9tTPUv7Gy7mVPI4, spotify:artist:5dcOK4stT4JDkP6Dqhbz5s","Kenny Rogers, Sheena Easton",spotify:album:3jBXlXbedZKX9wH6g4u73H,The World Of Sheena Easton - The Singles,spotify:artist:5dcOK4stT4JDkP6Dqhbz5s,Sheena Easton,1993-06-07,https://i.scdn.co/image/ab67616d0000b273666d8c08b66f8d4d65b7667e,1,8,231800,https://p.scdn.co/mp3-preview/6e7e7908bf56a810902ac22792d8d7aab8cc10ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USCN18300009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,nashville sound,soft rock,mellow gold,minneapolis sound,new romantic,new wave pop,soft rock",0.408,0.282,8.0,-7.534,1.0,0.0312,0.891,0.00346,0.099,0.347,123.351,4.0,,RT Industries,"C © 1993 RT Industries, P ℗ 1993 RT Industries",5499 +5500,spotify:track:36cmM3MBMWWCFIiQ90U4J8,Bounce (feat. Kelis) - Radio Edit,"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:0IF46mUS8NXjgHabxk2MCM","Calvin Harris, Kelis",spotify:album:7w19PFbxAjwZ7UVNp9z0uT,18 Months,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2012-10-29,https://i.scdn.co/image/ab67616d0000b273dcef905cb144d4867119850b,1,2,222186,https://p.scdn.co/mp3-preview/717d4802a66cd0df1df55d9513b728ad60f0df3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBARL1100468,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,dance pop,hip pop,neo soul,urban contemporary",0.779,0.963,2.0,-2.125,0.0,0.0399,0.0334,0.493,0.664,0.759,127.941,4.0,,Columbia,P (P) 2012 Sony Music Entertainment UK Limited,5500 +5501,spotify:track:3hy2LCvHFEu0yuF9lXR9RK,One,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4Zm7KcV47uD0sHageJyq2h,One Voice,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,2003-10-20,https://i.scdn.co/image/ab67616d0000b2733a1db30857beb481aa6e5345,2,4,171000,https://p.scdn.co/mp3-preview/4f0274f5f9b4c63f49f2ff72f99a86262a482af5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM00300095,spotify:user:bradnumber1,2021-11-20T11:22:27Z,"australian pop,australian rock",0.332,0.565,7.0,-6.439,0.0,0.0359,0.0139,0.0,0.115,0.508,131.778,3.0,,BMG Music,P (P) 2003 BMG Australia Limited,5501 +5502,spotify:track:02k4jCtcLo4iY8CRLK5Kdy,Bridges,spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS,BROODS,spotify:album:6TVMO61IfPwKISnt1a6UZC,Evergreen,spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS,BROODS,2014-01-01,https://i.scdn.co/image/ab67616d0000b2739c42f5388622de8f4f3f4bbc,1,4,191807,https://p.scdn.co/mp3-preview/1c6fa15e4d0151f84b376d5127711bb5c5ddd7f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBUM71308964,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"auckland indie,etherpop,indietronica,metropopolis,nz pop",0.389,0.634,4.0,-6.362,0.0,0.137,0.017,0.0,0.101,0.27,169.539,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 Dryden Street Ltd, P ℗ 2014 Dryden Street Ltd, under exclusive license to Island Records Australia / Universal Music Australia",5502 +5503,spotify:track:5K39AxiPGzBypm0XuaisMe,Androgyny - Remastered 2021,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,spotify:album:0oofioVRjS31kC0nM7UvHG,beautiful garbage - 20th Anniversary / Deluxe,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,2001-10-01,https://i.scdn.co/image/ab67616d0000b273499cbb90cd0dc912a3b571aa,1,2,190105,https://p.scdn.co/mp3-preview/742e5613d14dfa9a7931cf54988767d8fa1fbaa1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GB5KW2101397,spotify:user:bradnumber1,2022-08-26T01:27:12Z,"alternative rock,dance rock,electronic rock,permanent wave",0.731,0.519,0.0,-9.994,1.0,0.0421,0.264,4.3e-06,0.0932,0.633,92.999,4.0,,Geffen,"C © 2021 UMG Recordings, Inc., P ℗ 2021 UMG Recordings, Inc.",5503 +5504,spotify:track:1vvNmPOiUuyCbgWmtc6yfm,My Way,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,spotify:album:0dzeoQhVNzKkwM5ieOJC54,My Way,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2016-09-16,https://i.scdn.co/image/ab67616d0000b2738d12bc5e3ea5c9f4a967de32,1,1,219159,https://p.scdn.co/mp3-preview/ed8d125912048b01914f6e5861742bec125602e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBARL1601358,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance",0.818,0.913,4.0,-3.06,0.0,0.0426,0.093,3.69e-05,0.161,0.536,119.986,4.0,,Columbia,P (P) 2016 Sony Music Entertainment UK Limited,5504 +5505,spotify:track:2BDOK3tPbmgeINQqbkDaj6,If You Wanna Stay,spotify:artist:3nUbzTTtP2w4HqvT5y5vkV,The Griswolds,spotify:album:1wcZp8XRjXh2IFLzIXmNTm,Be Impressive with Track by Track Commentary,spotify:artist:3nUbzTTtP2w4HqvT5y5vkV,The Griswolds,2014-08-22,https://i.scdn.co/image/ab67616d0000b273692d0842637442fc2e7c25e4,1,14,159847,https://p.scdn.co/mp3-preview/96be1d71326cd851edbfb3303b64afbf0b38d905?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AU5S41400004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hopebeat,indie poptimism,shimmer pop",0.545,0.933,5.0,-4.91,1.0,0.0378,0.000515,0.000451,0.109,0.23,116.51,4.0,,Chugg Music,"C 2014 The Griswolds, P 2014 The Griswolds",5505 +5506,spotify:track:3IFVskDtdJTwAZ0I8HGvoO,Sweet Like Chocolate (Radio Edit),spotify:artist:2HdJwHponT4dLmV57ry159,Shanks & Bigfoot,spotify:album:1PZubkPoodI7JEON9ljzOC,Sweet Like Chocolate,spotify:artist:2HdJwHponT4dLmV57ry159,Shanks & Bigfoot,1999-05-17,https://i.scdn.co/image/ab67616d0000b273a338e6bac48ac2e17d0c758d,1,1,210960,https://p.scdn.co/mp3-preview/11b9f9f737e0e5d0f99a7cbf7109f2f3454c0366?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,TCAAZ1101983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"2-step,uk garage",0.909,0.628,5.0,-10.664,1.0,0.0722,0.0481,0.291,0.0967,0.697,130.65,4.0,,Clinical Records,"C 1999 Clinical Records, P 1999 Clinical Records",5506 +5507,spotify:track:5NVctMCRyNdoQgSWB4BxbP,Tell Me a Story,spotify:artist:7uZbOLlVQNbLVvKdGRk4VZ,1927,spotify:album:6zAFxQCgMl0FasDACcgVPr,The Other Side,spotify:artist:7uZbOLlVQNbLVvKdGRk4VZ,1927,1990,https://i.scdn.co/image/ab67616d0000b273c8873d4b716c8aded172e866,1,1,253760,https://p.scdn.co/mp3-preview/fe07567d8a9fba8e20f569e8ad0f7723a2017b0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUOM09001331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.546,0.68,9.0,-10.06,1.0,0.0307,0.0795,0.0,0.302,0.394,111.837,4.0,,Alberts Music,P (P) 1990 Weideman,5507 +5508,spotify:track:5mr5BYMh6C0eb8oUwUrZZl,Julie Anne,spotify:artist:0qxyoztRV9knOM9BcCgkqU,Kenny,spotify:album:454aW2a6gtKKMHiReYYnkI,Playlist: The Best Of Kenny,spotify:artist:0qxyoztRV9knOM9BcCgkqU,Kenny,2016-08-19,https://i.scdn.co/image/ab67616d0000b273fc7feeaa26c0eb42245272f1,1,6,181693,https://p.scdn.co/mp3-preview/9a3f4894e6c41dd7e8cc234731f7be1e907ee15a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,GBAYE7500142,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.521,0.738,2.0,-8.567,1.0,0.0456,0.129,1.26e-06,0.33,0.71,131.384,4.0,,Rhino,"C © 2016 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2016 Parlophone Records Ltd, a Warner Music Group Company",5508 +5509,spotify:track:1UMWbdzeucChFiry9SYQ2w,I'm All Yours,"spotify:artist:4pADjHPWyrlAF0FA7joK2H, spotify:artist:0TnOYISbd1XYRBk9myaseg","Jay Sean, Pitbull",spotify:album:4oxyGoGPaEkzKIHPPcRhJF,I'm All Yours,spotify:artist:4pADjHPWyrlAF0FA7joK2H,Jay Sean,2012-01-01,https://i.scdn.co/image/ab67616d0000b2730195a473728fdfa29bf6d533,1,1,218573,https://p.scdn.co/mp3-preview/17d85b3a30f114f6e9716d7d9eee19467b118789?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCM51200368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,post-teen pop,dance pop,miami hip hop,pop",0.664,0.886,0.0,-4.055,0.0,0.0385,0.0259,0.0,0.283,0.669,128.027,4.0,,Universal Music,"C © 2012 Cash Money Records Inc., P ℗ 2012 Cash Money Records Inc.",5509 +5510,spotify:track:2IGMVunIBsBLtEQyoI1Mu7,Paint The Town Red,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,spotify:album:54dZypaXHAIDzBe9ujAZ63,Paint The Town Red,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,2023-08-04,https://i.scdn.co/image/ab67616d0000b2737acee948ecac8380c1b6ce30,1,1,231750,https://p.scdn.co/mp3-preview/1d4dc1cd67ba78afec8cfb3e5258a9ab9b707dd8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,79,USRC12300907,spotify:user:bradnumber1,2023-09-04T12:48:17Z,"dance pop,pop",0.868,0.538,5.0,-8.603,1.0,0.174,0.269,3.34e-06,0.0901,0.732,99.968,4.0,,Kemosabe Records/RCA Records,P (P) 2023 Kemosabe Records/RCA Records,5510 +5511,spotify:track:7LGLZ9vGpUFOeoOgR5x70i,Anchor,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:3AeaTDw55VVnJeaKvkrzWN,Playlist,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2015-11-06,https://i.scdn.co/image/ab67616d0000b273d434d8f21738e18dd0b6bd98,1,2,216096,https://p.scdn.co/mp3-preview/e1d149e25511e359cd27f667e5ddcdd8e59d75c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUYO01500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.595,0.702,5.0,-5.463,1.0,0.0278,0.0818,0.0,0.317,0.572,87.977,4.0,,EMI Recorded Music Australia Pty Ltd (Distribution),"C © 2015 Birds Of Tokyo Pty Ltd, P This Compilation ℗ 2015 Birds Of Tokyo Pty Ltd, manufactured and distributed by EMI Music Australia Pty. Ltd under exclusive license",5511 +5512,spotify:track:0Oe49j06Bjrxs8PltuVeaW,On The Floor - Radio Edit,"spotify:artist:2DlGxzQSjYe5N6G9nkYghR, spotify:artist:0TnOYISbd1XYRBk9myaseg","Jennifer Lopez, Pitbull",spotify:album:543NK5YT3RjGmP7nFzWJPm,On The Floor,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2011-01-01,https://i.scdn.co/image/ab67616d0000b2735c7fdd07d99c156401073aaa,1,1,230906,https://p.scdn.co/mp3-preview/21a3faab531df2173b21057ec78826822012be84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USUM71100721,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,dance pop,miami hip hop,pop",0.758,0.686,11.0,-6.346,1.0,0.0792,0.0848,0.00133,0.142,0.444,130.008,4.0,,Nuyorican Productions / IDJ,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",5512 +5513,spotify:track:4L9J2or96xvWhQwWw09fHO,Mockingbird,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,spotify:album:72aNaOna8AV0GZADXRbFlX,Cradlesong,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,2009-06-22,https://i.scdn.co/image/ab67616d0000b273da8f63e21bfaeeaf5be6d445,1,5,240320,https://p.scdn.co/mp3-preview/769bfb33c7cba251cdc0f2bba346fde0ffd573a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USAT20901610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.571,0.77,0.0,-5.498,1.0,0.0314,0.0534,1.02e-06,0.129,0.613,141.996,4.0,,Emblem / Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",5513 +5514,spotify:track:5mjYQaktjmjcMKcUIcqz4s,Strangers,spotify:artist:7uMDnSZyUYNBPLhPMNuaM2,Kenya Grace,spotify:album:18ogtNq9F7DmMkNYO6Xb4k,Strangers,spotify:artist:7uMDnSZyUYNBPLhPMNuaM2,Kenya Grace,2023-09-01,https://i.scdn.co/image/ab67616d0000b2734756c2e9ae436437cd75e9f3,1,1,172964,https://p.scdn.co/mp3-preview/f8e667575db490b61ccc4d0948a6be922cfe1c5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USWB12305048,spotify:user:bradnumber1,2024-01-14T19:57:37Z,singer-songwriter pop,0.628,0.523,11.0,-8.307,0.0,0.0946,0.701,0.00274,0.219,0.416,169.982,4.0,,Warner Records/Major Recordings,"C Warner Records/Major Recordings, © 2023 KGJ Music Ltd, under exclusive license to Warner Records Inc., P Warner Records/Major Recordings, ℗ 2023 KGJ Music Ltd, under exclusive license to Warner Records Inc.",5514 +5515,spotify:track:3KTO023XanHgThErLWWGtC,Let's Make It Last All Night,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:0CFve8pYcvhHeFNTLzQl9l,Two Fires,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1990-09-07,https://i.scdn.co/image/ab67616d0000b2739e12c99ab699e5553614a4bb,1,2,246706,https://p.scdn.co/mp3-preview/a60e17221ff8c1ac21813ee1dc26ad11ecb8c2dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AULI00510210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.681,0.907,6.0,-9.592,0.0,0.03,0.302,0.0289,0.103,0.964,115.945,4.0,,Bloodlines,"C 1990 Bloodlines, P 1990 Bloodlines",5515 +5516,spotify:track:5q4I6I0ytvTKuYe1Fquxnx,Family Affair,spotify:artist:1XkoF8ryArs86LZvFOkbyr,Mary J. Blige,spotify:album:5S8QQNDeDTHaSXsJMo4qoC,No More Drama,spotify:artist:1XkoF8ryArs86LZvFOkbyr,Mary J. Blige,2001-08-28,https://i.scdn.co/image/ab67616d0000b273f549ce9d09b1877fb0e77254,1,2,265866,https://p.scdn.co/mp3-preview/2b7bfcc9c6e074b70ca3bdb219c174d7c8133116?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10111369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,neo soul,r&b,urban contemporary",0.914,0.551,8.0,-3.879,0.0,0.0455,0.133,2.61e-05,0.0841,0.967,92.889,4.0,,Universal Music Group,"C © 2002 Geffen Records, P ℗ 2002 Geffen Records",5516 +5517,spotify:track:1eTvclQOV0QMNDDwFfPCpu,Roll On,spotify:artist:06nsZ3qSOYZ2hPVIMcr1IN,J.J. Cale,spotify:album:33mVYtJPHlCQIOYyEbn9Sn,Roll On,spotify:artist:06nsZ3qSOYZ2hPVIMcr1IN,J.J. Cale,2009-02-20,https://i.scdn.co/image/ab67616d0000b273895e5ad8713e7e6b8162ed72,1,11,284360,https://p.scdn.co/mp3-preview/6f98cb2c3d9bbe19d21b77a85b13f3e98d5e1c0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRO20925811,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,blues rock,folk rock,roots rock,singer-songwriter",0.521,0.767,9.0,-7.105,1.0,0.0289,0.554,0.533,0.191,0.865,162.016,4.0,,Because Music/WMI,"C 2009 JJ Cale under exclusive licence to because Music, P 2009 JJ Cale under exclusive licence to because Music",5517 +5518,spotify:track:2slumedMZqyLOs6TItit1D,This One's For The Girls,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:7F8ClmjEtHilOk6MEAKuDT,Please Don't Let Me Go,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2010-08-27,https://i.scdn.co/image/ab67616d0000b273ce7b9b2ca8ff1eeb065ed7ae,1,2,199746,https://p.scdn.co/mp3-preview/c824472cb71d0c42938bcc96edf51a6a9cb07205?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1000811,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.714,0.76,10.0,-5.268,1.0,0.0523,0.0325,0.0,0.0794,0.718,100.027,4.0,,Epic,P (P) 2010 Sony Music Entertainment UK Limited,5518 +5519,spotify:track:1w1LOtv2BM2C5pK4LG7SJ6,Lanterns,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:7ytz5cDMLL5ud6Q77X8Dtg,March Fires,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2013-01-01,https://i.scdn.co/image/ab67616d0000b27336b14b0faf9f22297b4a87b4,1,5,262814,https://p.scdn.co/mp3-preview/2f29ad29fefba4fa9b02283c2babeacb63e99d7e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUYO01200090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.404,0.654,0.0,-7.894,1.0,0.0399,0.246,0.049,0.137,0.312,168.428,4.0,,EMI Music Australia,"C © 2013 Birds Of Tokyo Pty Ltd, P ℗ 2013 Birds Of Tokyo Pty Ltd",5519 +5520,spotify:track:44gz3bzhdcGUFgA5oc1wSu,Holiday,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:1txD6fW07v5uxBJ6ueyXo2,Holiday,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2020-07-24,https://i.scdn.co/image/ab67616d0000b273ad19e1e0a2cd385e1ece6da0,1,1,213596,https://p.scdn.co/mp3-preview/1036b372485a8939f281b6986264d30b505bed87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU2000056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.712,0.676,5.0,-5.965,1.0,0.184,0.076,0.0,0.0669,0.648,106.156,4.0,,RCA Records Label,"P (P) 2020 Under Exclusive Licence to RCA, a division of Sony Music Entertainment UK Limited",5520 +5521,spotify:track:2tHW5GvAg7yRaXTuZjBREc,It Girl,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:49SayFufMgfcW4off39Gl6,Future History Platinum Edition,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2011-09-26,https://i.scdn.co/image/ab67616d0000b2738b24f3d98c017fb190d26486,1,2,192200,https://p.scdn.co/mp3-preview/667e4a9969ef26499f3cc0e0cc1e99471dee8edc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USWB11102211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.668,0.718,1.0,-4.736,0.0,0.0605,0.0165,0.0,0.104,0.345,91.993,4.0,,Beluga Heights/Warner Records,"C © 2012 Warner Records Inc., P ℗ 2011, 2012 Warner Records Inc.",5521 +5522,spotify:track:3hryyr42qJLxN1xeFS6GRR,Make It To Me,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:0kJbDT8VGMScK8YDzNNvzV,In The Lonely Hour (Drowning Shadows Edition),spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2015-11-06,https://i.scdn.co/image/ab67616d0000b273a56534bde4ee3ca23b15a018,1,14,162732,https://p.scdn.co/mp3-preview/2870788460b4e619cf8e81fd8642b4a073c4113f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71308372,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.569,0.366,1.0,-8.58,1.0,0.0623,0.632,2.6e-06,0.0988,0.241,74.725,4.0,,Universal Music Group,"C © 2015 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2015 Capitol Records, a division of Universal Music Operations Limited",5522 +5523,spotify:track:6ZmIw9YmXbptqITm1bycnm,Poison - Radio Edit,spotify:artist:1yWjNh9SRE7C59A3LDIwVW,Groove Coverage,spotify:album:5Y7dFFiVB9zHfGZJPX2Pql,Poison,spotify:artist:1yWjNh9SRE7C59A3LDIwVW,Groove Coverage,2003,https://i.scdn.co/image/ab67616d0000b273f298e453e29df40931e8493e,1,1,187493,https://p.scdn.co/mp3-preview/664e679605a49fdf7f2b28b162956a8a71f2eea8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,DEF910300017,spotify:user:bradnumber1,2022-05-02T07:00:44Z,"eurodance,german techno,hands up",0.552,0.977,7.0,-6.153,1.0,0.102,0.00522,0.0,0.102,0.322,134.888,4.0,,Suprime Music,"C 2003 Suprime Music GmbH & Co.KG, P 2003 Suprime Music GmbH & Co.KG",5523 +5524,spotify:track:30trkHGmtepsCvbqUFjhOB,Right in the Night (feat. Plavka) - Fall in Love with Music,"spotify:artist:2MIKLLJyOv1o5u49KRbfH7, spotify:artist:6ALuTGOzgoIUnuiyvqvMW2","Jam & Spoon, Plavka",spotify:album:4Lcez0v9tI45mb070deI8g,Tripomatic Fairytales 2001 (Deluxe Edition),spotify:artist:2MIKLLJyOv1o5u49KRbfH7,Jam & Spoon,1993,https://i.scdn.co/image/ab67616d0000b27371979fccfa992eda5c7bec78,1,9,364400,https://p.scdn.co/mp3-preview/272fec397fca7ba76b86fea13fd90c40693d580d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEMW61000006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubble trance,frankfurt electronic,german techno,german trance,trance",0.74,0.946,0.0,-11.681,0.0,0.0353,0.0247,0.242,0.124,0.715,137.015,4.0,,Allstar Music,"C 2011 Allstar Music Productions GmbH, P 2011 Allstar Music Productions GmbH",5524 +5525,spotify:track:1gcESexgftSuLuML57Y69q,All Right Now,spotify:artist:2e53aHBQdCMKWqHDuyJsjC,Free,spotify:album:1ydlm89JR8cV8VuSaNvHNL,Fire And Water,spotify:artist:2e53aHBQdCMKWqHDuyJsjC,Free,1970-06-26,https://i.scdn.co/image/ab67616d0000b273753c41c7fdc5e78ba017bbf5,1,7,330643,https://p.scdn.co/mp3-preview/3d12cd5d9440d08c87cfc87b397679041e1ef490?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAAN7000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,classic rock,hard rock",0.787,0.472,2.0,-12.824,1.0,0.0832,0.221,0.000336,0.153,0.824,120.059,4.0,,UMC (Universal Music Catalogue),"C © 1970 Universal-Island Records Ltd., P ℗ 1970 Universal-Island Records Ltd.",5525 +5526,spotify:track:0W3FSYSHHGZVn7BiwNDuCO,Silly Boy,spotify:artist:2d6W4cnC5XsVOaxtgaj9hA,Eva Simons,spotify:album:7onWNOCR6aD2QIFQK899Ow,Silly Boy,spotify:artist:2d6W4cnC5XsVOaxtgaj9hA,Eva Simons,2009-01-01,https://i.scdn.co/image/ab67616d0000b273825802ac49c83a45bf49b674,1,1,202546,https://p.scdn.co/mp3-preview/90069273c174372fa9bf5051342fbc8c27743e52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,NLG270900917,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dutch pop,0.752,0.71,5.0,-3.055,1.0,0.0324,0.0359,8.5e-05,0.789,0.691,127.014,4.0,,Capitol Records,"C © 2009 EMI Music Germany GmbH & Co KG, P ℗ 2009 Walboomers Music B.V.",5526 +5527,spotify:track:4My8w8AA1JpG6E5SiAPvJL,Kiss You,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:2sWX3HYnZjPZ9MrH6MFsBt,Take Me Home (Expanded Edition),spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2012-11-12,https://i.scdn.co/image/ab67616d0000b2734e31e0d38b89b8fb239d4fbf,1,2,182866,https://p.scdn.co/mp3-preview/e57752b7147ba7a7b3c6d21d185599b695999737?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBHMU1200214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.637,0.93,4.0,-2.632,1.0,0.0511,0.0177,0.0,0.452,0.886,90.014,4.0,,Syco Music,P (P) 2012 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,5527 +5528,spotify:track:0JEqGkvUiMTQmFY6sgL9kg,No One,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,spotify:album:0neqylYFL6s6Ikdf3UFmUo,As I Am,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2007-11-09,https://i.scdn.co/image/ab67616d0000b2730e7e087dea9187d221f7976d,1,4,253813,https://p.scdn.co/mp3-preview/2f331056c2eab0b24cc9ef890bc67ed270419331?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJAY0700190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b",0.649,0.552,1.0,-5.419,0.0,0.0292,0.03,6.47e-06,0.111,0.158,89.969,4.0,,J Records,"P (P) 2007 RCA/JIVE Label Group, a unit of Sony Music Entertainment",5528 +5529,spotify:track:4rBgm0zIGwwAhuUibPehy2,Send Me An Angel,spotify:artist:27T030eWyCQRmDyuvr1kxY,Scorpions,spotify:album:4mGV3pZqcrUk0OSC8HBT96,Crazy World,spotify:artist:27T030eWyCQRmDyuvr1kxY,Scorpions,1990-01-01,https://i.scdn.co/image/ab67616d0000b273d915bccb4b86a59ddf257585,1,11,273200,https://p.scdn.co/mp3-preview/73021b3822bcf7d0c1270b8f9b68cf78f0cb2005?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG19090044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,german hard rock,german metal,german rock,hard rock,rock",0.231,0.43,1.0,-11.601,1.0,0.0301,0.448,0.00141,0.229,0.155,104.668,4.0,,Universal Music Group,"C © 1990 The Island Def Jam Music Group, P ℗ 1990 The Island Def Jam Music Group",5529 +5530,spotify:track:5kYnNO43oeZw42Dar9rKZK,By My Side,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:5iRDO2cnFmb95rjzpiVJrT,The Very Best,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b27361720ec9790c8d7a64698ac7,1,12,185026,https://p.scdn.co/mp3-preview/0f73f1de33eacde3936ce2aa3b1002f845f3e174?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMX9100015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.521,0.478,11.0,-8.685,0.0,0.0243,0.0403,0.00441,0.149,0.197,92.991,3.0,,Universal Music Group,"C © 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",5530 +5531,spotify:track:0FE9t6xYkqWXU2ahLh6D8X,Shape of You,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:7oJa8bPFKVbq4c7NswXHw8,Shape of You,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2017-01-06,https://i.scdn.co/image/ab67616d0000b27383e9b06ccd219248b5301264,1,1,233712,https://p.scdn.co/mp3-preview/7339548839a263fd721d01eb3364a848cad16fa7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,GBAHS1600463,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.825,0.652,1.0,-3.183,0.0,0.0802,0.581,0.0,0.0931,0.931,95.977,4.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company.",5531 +5532,spotify:track:279x1F6k9RLQ6qtCAgQTV7,"A Boy Named Sue - Live at San Quentin State Prison, San Quentin, CA - February 1969",spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,spotify:album:4E2eUhFHqTG2pu9MN1NDIF,The Essential Johnny Cash,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,2002-02-12,https://i.scdn.co/image/ab67616d0000b273c17beab3e27f18af397a00b2,2,7,226893,https://p.scdn.co/mp3-preview/00f5477516fe59dce29160831704ee390ba33661?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USSM16900746,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,outlaw country,rock",0.657,0.624,10.0,-7.789,1.0,0.112,0.759,0.0,0.966,0.89,101.898,4.0,,Columbia/Legacy,P This compilation (P) 2002 Sony Music Entertainment,5532 +5533,spotify:track:6B9tR2OEurD4FsZM5btj3X,TSOP (The Sound of Philadelphia) (feat. The Three Degrees),"spotify:artist:2mknvtcck8i82nKxDPDibv, spotify:artist:2zpFG5cvw00QmrYTUsjApa","MFSB, The Three Degrees",spotify:album:2LcEqmYFkInH7Z5o2RUn6a,End of Phase I - A Collection of Greatest Hits,spotify:artist:2mknvtcck8i82nKxDPDibv,MFSB,1977-11-13,https://i.scdn.co/image/ab67616d0000b273e92168b257a4424026d36e4f,1,6,212106,https://p.scdn.co/mp3-preview/d09316cf2ec621ae4fb377df3ed3687b5d4b3a61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USSM19912523,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,instrumental soul,jazz funk,philly soul,post-disco,classic girl group,disco,motown,philly soul",0.723,0.853,0.0,-8.296,1.0,0.0295,0.0739,0.226,0.0979,0.965,114.268,4.0,,Legacy Recordings,P (P) 1977 Sony Music Entertainment,5533 +5534,spotify:track:2XPc8gL9PwxGURQFcFaDJR,Cheerleader - Felix Jaehn Remix Radio Edit,"spotify:artist:5MouCg6ta7zAxsfMEbc1uh, spotify:artist:4bL2B6hmLlMWnUEZnorEtG","OMI, Felix Jaehn",spotify:album:3CDIhRuL5iaenmrd95W3Ym,Cheerleader (Felix Jaehn Remix Radio Edit),spotify:artist:5MouCg6ta7zAxsfMEbc1uh,OMI,2015-03-06,https://i.scdn.co/image/ab67616d0000b273b3b494eb7a611438c08735be,1,1,181826,https://p.scdn.co/mp3-preview/9ef1666d9a28af2e8e531754e1804c736a8e6cec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USQX91500448,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,edm,german dance,pop dance,tropical house,uk dance",0.777,0.663,4.0,-6.117,1.0,0.0305,0.146,1.52e-05,0.174,0.614,118.016,4.0,,Ultra/Louder Than Life/Columbia,"P (P) 2014 Ultra Records, LLC under exclusive license to Columbia Records, a Division of Sony Music Entertainment",5534 +5535,spotify:track:4Dm32oO01YpIubCHaAtKkN,My Life Would Suck Without You,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:4h8seeFAi6iYhslcWIxTSG,All I Ever Wanted,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2009-03-06,https://i.scdn.co/image/ab67616d0000b2737ed87984e7f39ba42ee1b50a,1,1,211493,https://p.scdn.co/mp3-preview/d497b49b34a981de01a35f98f6696002ac0955a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBCTA0800348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.526,0.882,9.0,-4.006,1.0,0.0509,0.0014,0.0,0.144,0.424,144.982,4.0,,RCA Records Label,P (P) 2009 19 Recordings Limited,5535 +5536,spotify:track:7u44eEBhSbO7J5DWIApQIg,Stay,spotify:artist:7ooOn6bokl4mGV4CEaUz6A,Shakespears Sister,spotify:album:3gjASESTUQTtEfvMMQ2kN1,Shakespears Sister - Best Of,spotify:artist:7ooOn6bokl4mGV4CEaUz6A,Shakespears Sister,2005-02-14,https://i.scdn.co/image/ab67616d0000b2738579539bc802a43943ed7bc5,1,7,227360,https://p.scdn.co/mp3-preview/ecd6c0b7d76b825a7380534c14fd2d8beaf8790e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP0000697,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop",0.506,0.597,8.0,-7.336,1.0,0.0371,0.526,0.000278,0.065,0.163,96.603,4.0,,Warner Strategic Marketing,"C 2004 WARNER MUSIC UK LTD, P 2004 WARNER MUSIC UK LTD",5536 +5537,spotify:track:2hdhm6piUJnmKXmEmskXCg,Save Tonight,spotify:artist:3ngKsDXZAssmljeXCvEgOe,Eagle-Eye Cherry,spotify:album:2zJcrLrN7EAcDYXm4j99k1,Desireless,spotify:artist:3ngKsDXZAssmljeXCvEgOe,Eagle-Eye Cherry,1997-01-01,https://i.scdn.co/image/ab67616d0000b2730b85593f08d19d9036929e0f,1,1,242733,https://p.scdn.co/mp3-preview/92ede2b4283630cbfd4cbf508b22cc248ffc740f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW9800044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.545,0.699,0.0,-8.76,1.0,0.0338,9.44e-05,5.79e-05,0.12,0.6,119.589,4.0,,Polydor,"C © 1998 Polydor Ltd. (UK), P ℗ 1998 Superstudio/Diesel Music AB",5537 +5538,spotify:track:19lZSTEHd5K9I8NvRsDzVv,Driving Wheels,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:192npK9PkoDRwdyYKjB9zO,Freight Train Heart,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1987,https://i.scdn.co/image/ab67616d0000b27326e1000171cdda2394885231,1,1,315733,https://p.scdn.co/mp3-preview/385c227589197b1e5e5ef338958530f1bbb342b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00509940,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.359,0.764,2.0,-9.8,1.0,0.0423,0.122,2.5e-05,0.0858,0.419,134.976,4.0,,Bloodlines,"C 1987 Bloodlines, P 1987 Bloodlines",5538 +5539,spotify:track:6GPNb6fStx7ulNbJfJqV2i,Southern Sun,spotify:artist:2NqgE99Ll5vOTvmbN7O2R6,Boy & Bear,spotify:album:2IUE8JIz7WXUyq6qxms37c,Southern Sun,spotify:artist:2NqgE99Ll5vOTvmbN7O2R6,Boy & Bear,2013-01-01,https://i.scdn.co/image/ab67616d0000b27382944006d897e666870af4f8,1,1,280046,https://p.scdn.co/mp3-preview/032c7dc34e123119d2aa600104b345fa178fd095?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71300714,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian indie folk",0.539,0.723,0.0,-5.998,1.0,0.0346,0.15,0.000623,0.208,0.503,118.316,4.0,,Universal Music Australia Pty. Ltd.,"C © 2013 Boy & Bear Pty Ltd, P ℗ 2013 Boy & Bear Pty Ltd",5539 +5540,spotify:track:3OWcWJz1c0pIc6L3IDDhpP,Knock You Down,"spotify:artist:63wjoROpeh5f11Qm93UiJ1, spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:21E3waRsmPlU7jZsS13rcj","Keri Hilson, Kanye West, Ne-Yo",spotify:album:5Ol7UcvxuzeE34MqGivc0o,In A Perfect World...,spotify:artist:63wjoROpeh5f11Qm93UiJ1,Keri Hilson,2009-01-01,https://i.scdn.co/image/ab67616d0000b27399e51022cde58fd8a7e91a3e,1,5,326186,https://p.scdn.co/mp3-preview/5126341c437ddc853fec4f51eaad41dd29036c04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUM70955396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,r&b,urban contemporary,chicago rap,hip hop,rap,dance pop,pop,r&b,urban contemporary",0.587,0.878,8.0,-4.781,1.0,0.16,0.00922,0.0,0.171,0.646,155.167,4.0,,Mosley / Interscope,"C © 2009 Mosley Music/Interscope Records, P ℗ 2009 Mosley Music/Interscope Records",5540 +5541,spotify:track:2RluieXkKFnU1VrJfHPRlc,Donna the Prima Donna,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,spotify:album:5ZQh54BjXCUK15ziGP1zuX,Donna the Prima Donna,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,1963-12-10,https://i.scdn.co/image/ab67616d0000b27347afca9175c82d683a6c9819,1,1,168346,https://p.scdn.co/mp3-preview/2cc0efe210c4c5d9aa20a0e9a665ced97093ae9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USSM16300095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rock-and-roll,rockabilly",0.331,0.556,6.0,-10.672,0.0,0.0372,0.675,0.0,0.353,0.939,138.635,4.0,,Columbia,"P Originally released 1963. All rights reserved by Columbia Records, a division of Sony Music Entertainment",5541 +5542,spotify:track:4ZC8hXXqu2hPcDLw9QTdtQ,Smile,spotify:artist:2DnqqkzzDKm3vAoyHtn8So,Uncle Kracker,spotify:album:2MyLXLijtCj7VKGzBM7dyW,Happy Hour,spotify:artist:2DnqqkzzDKm3vAoyHtn8So,Uncle Kracker,2009-09-11,https://i.scdn.co/image/ab67616d0000b273b51c32c3c6cabcfe016c08a4,1,1,201626,https://p.scdn.co/mp3-preview/ccb36df383bda39100076fbf2e70d4f8e87ea055?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT20901972,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,pop rock,post-grunge",0.541,0.812,4.0,-3.764,1.0,0.0336,0.203,0.0,0.42,0.607,141.056,4.0,,Top Dog/Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",5542 +5543,spotify:track:50t8gshcAtXiUdk7nHfYDp,Games People Play,spotify:artist:7s2L0cftC6UBVVxADuyfwS,Joe South,spotify:album:0efmkx26DQ4OSiPCdKsQgB,Introspect - Expanded Edition,spotify:artist:7s2L0cftC6UBVVxADuyfwS,Joe South,1968-01-01,https://i.scdn.co/image/ab67616d0000b273417f28a61c0ef2d15193abbf,1,7,215160,https://p.scdn.co/mp3-preview/e3846294643a03e71722aa3a71e69133a9062b40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USCA28800067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.334,0.714,9.0,-8.379,1.0,0.155,0.251,4.26e-05,0.257,0.595,172.288,4.0,,CAPITOL CATALOG MKT (C92),"C © 1968 Capitol Records, LLC, P ℗ 1968 Capitol Records, LLC",5543 +5544,spotify:track:0mYPfHvPzoUZJ2puHRyzyf,Here Without You,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,spotify:album:3vF6tOBY8xo3X2o1retYxS,Away From The Sun,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,2002-11-12,https://i.scdn.co/image/ab67616d0000b273389e79cf163effd9a62bc9de,1,6,238560,https://p.scdn.co/mp3-preview/9b68307f4204ff0342561d75a6c48312abb3e0d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR10200764,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.551,0.543,10.0,-6.765,0.0,0.0249,0.0587,0.0,0.131,0.213,144.001,4.0,,Universal Music Group,"C © 2002 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2002 Universal Motown Records, a division of UMG Recordings, Inc.",5544 +5545,spotify:track:2p2o0ffbSvj91SHt1aFfIa,BRING IT ON,"spotify:artist:2NjfBq1NflQcKSeiDooVjY, spotify:artist:6veh5zbFpm31XsPdjBgPER, spotify:artist:2EYuvkN3J1DP2LxiMOKrYS, spotify:artist:5C01hDqpEmrmDfUhX9YWsH","Tones And I, BIA, Diarra Sylla, FIFA Sound",spotify:album:5ijUADIrfpFo27bLLMoR46,BRING IT ON,"spotify:artist:2NjfBq1NflQcKSeiDooVjY, spotify:artist:6veh5zbFpm31XsPdjBgPER, spotify:artist:2EYuvkN3J1DP2LxiMOKrYS","Tones And I, BIA, Diarra Sylla",2023-07-21,https://i.scdn.co/image/ab67616d0000b273265abfdbe9a604a1d0c974f0,1,1,214838,https://p.scdn.co/mp3-preview/0bfdc28d826e4b24a6d4da027904b2b9827607ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USSM12305274,spotify:user:bradnumber1,2023-08-20T08:50:45Z,"australian pop,rap latina,trap queen,football",0.705,0.868,11.0,-4.011,0.0,0.079,0.485,8.13e-06,0.146,0.781,123.984,4.0,,Epic,"P (P) 2023 Epic Records, a division of Sony Music Entertainment.",5545 +5546,spotify:track:0shhngpGC6qR0ByCLchReX,All Over You,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,spotify:album:3XbMeJ9zrtH806HuHWkZF2,Throwing Copper,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,1994-01-01,https://i.scdn.co/image/ab67616d0000b273cf4c914bea5aba3e3066595a,1,7,239533,https://p.scdn.co/mp3-preview/8076faffd0e6f68b4b3046b111852b68d13be4f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USRR29442182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,pop rock,post-grunge",0.316,0.819,1.0,-5.852,1.0,0.0529,0.00646,1.35e-06,0.292,0.344,131.932,4.0,,Radioactive,"C © 1994 Radioactive Records J.V., P ℗ 1994 Radioactive Records J.V.",5546 +5547,spotify:track:2iXH35MhsqO5Ry8a7iptpJ,Endless Summer Nights,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,spotify:album:3C2cO3wo4f2bLzOpFypgmZ,Richard Marx,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,1987-01-01,https://i.scdn.co/image/ab67616d0000b273b661bb5a12e524bd407208f0,1,3,270693,https://p.scdn.co/mp3-preview/820ba57c826d0e0043cf4a511a28f57a69c794c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USCA28700882,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.582,0.467,10.0,-12.597,1.0,0.0391,0.12,0.0,0.298,0.879,165.21,4.0,,Capitol Records,"C © 1987 Capitol Records, LLC, P ℗ 1987 Capitol Records, LLC",5547 +5548,spotify:track:4E5P1XyAFtrjpiIxkydly4,Replay,spotify:artist:5tKXB9uuebKE34yowVaU3C,Iyaz,spotify:album:44hyrGuZKAvITbmrlhryf8,Replay,spotify:artist:5tKXB9uuebKE34yowVaU3C,Iyaz,2009-08-18,https://i.scdn.co/image/ab67616d0000b273ae7012fce99c2b2345b54f30,1,1,182306,https://p.scdn.co/mp3-preview/fbc52df880d479ab0e34ee46bcc817a9f8b52a35?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USRE10901161,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,post-teen pop",0.706,0.751,9.0,-6.323,1.0,0.0708,0.173,0.0,0.168,0.195,91.031,4.0,,Time Is Money/Beluga Heights/Reprise,"C © 2010 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2009, 2010 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",5548 +5549,spotify:track:79SpCqY9GZWV1sZPr6XmY4,She Kissed Me,spotify:artist:6RGxLsQUoGk5PLyMVwb3yE,Sananda Maitreya,spotify:album:2LZdObLqYP8LxDAHZP34fz,Sananda Maitreya's Symphony Or Damn,spotify:artist:6RGxLsQUoGk5PLyMVwb3yE,Sananda Maitreya,1992-01-01,https://i.scdn.co/image/ab67616d0000b273049d284eaa2436710b13d3a4,1,2,219560,https://p.scdn.co/mp3-preview/fa4eeb8baa2a2099001c7dbed4cd7de21659ad80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBBBN0009243,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.494,0.96,7.0,-5.885,0.0,0.0948,0.00964,0.000316,0.746,0.464,133.184,4.0,,Columbia,P 1993 Sony Music Entertainment (United Kingdom) Ltd.,5549 +5550,spotify:track:4qM461TqtpnP4GLRIXwEnW,Sussudio - 2016 Remaster,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:1rVhockt4RAiZFaK3M3zPB,No Jacket Required (2016 Remaster),spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1985-01-25,https://i.scdn.co/image/ab67616d0000b273441084621edb7c53ef303090,1,1,263106,https://p.scdn.co/mp3-preview/0c29612427c109882b2c5b945cba64d29a164b72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USRH11600243,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.714,0.935,5.0,-5.195,1.0,0.0849,0.0529,0.0934,0.0515,0.725,121.232,4.0,,Rhino,"C © 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company, P ℗ 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company",5550 +5551,spotify:track:2982ukQdbfmeGvM5LOuGEw,Just Like Fire Would,spotify:artist:6OWPd5ByKaNSFAZ3TCe5AO,The Saints,spotify:album:0XqpugVK0iNn9yco3NjDk0,All Fools Day,spotify:artist:6OWPd5ByKaNSFAZ3TCe5AO,The Saints,1987,https://i.scdn.co/image/ab67616d0000b2731ee60e741edc34023dea2f71,1,1,204026,https://p.scdn.co/mp3-preview/c5c6a1f6e333a6ddca6b0921eaed95c0f8cfa0ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUMU08900077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,protopunk,0.552,0.748,7.0,-9.775,1.0,0.0323,0.0365,0.0144,0.131,0.946,125.159,4.0,,WM Australia,"C 1986 Mushroom Records Pty Limited, P 1986 Mushroom Records Pty Limited",5551 +5552,spotify:track:7HRKXaKzzApunJUIOjMAup,Million Years Ago,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7uwTHXmFa1Ebi5flqBosig,25,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2015-11-20,https://i.scdn.co/image/ab67616d0000b2735ffbbc3dca25d5c81491af1f,1,9,227065,https://p.scdn.co/mp3-preview/b689bfb32895d9e883cebb8635584767a1c65de2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1500222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.72,0.274,1.0,-7.623,0.0,0.0276,0.742,0.0,0.11,0.179,105.921,4.0,,XL Recordings,"C 2015 XL Recordings Limited., P 2015 XL Recordings Limited.",5552 +5553,spotify:track:14QNFD1T4rTlH4o6bV8pxy,I See You Baby,"spotify:artist:67tgMwUfnmqzYsNAtnP6YJ, spotify:artist:3jE9LY400g6ZV1otfI3Zgq","Groove Armada, Gram'ma Funk",spotify:album:5LJnUFKv2CRZ7euG4gfSGh,Vertigo / Goodbye Country (Hello Nightclub),spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2007-09-13,https://i.scdn.co/image/ab67616d0000b27366b04c9d9efce13723b6b585,1,7,281173,https://p.scdn.co/mp3-preview/20ac7ff82f411367ccb5eeb13a6788242361df18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK9900065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,nu skool breaks,trip hop",0.817,0.836,6.0,-8.499,1.0,0.0544,0.00306,0.11,0.0542,0.644,122.036,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT (UK) Limited,5553 +5554,spotify:track:5LRxSyiIRHQD26h1mdM0Ir,My Friend,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,spotify:album:1bS1J4OVGrpu6e2U2pHge6,Goodbye Country (Hello Nightclub),spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2001-07-11,https://i.scdn.co/image/ab67616d0000b2730d6e6cc2e426ab9f3b33fbcc,1,6,300266,https://p.scdn.co/mp3-preview/ce8fd33ad9919f0ea7214e8b61a937600f12869d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAHK0100110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,nu skool breaks,trip hop",0.473,0.867,2.0,-8.824,0.0,0.159,0.00866,0.691,0.0571,0.153,94.09,4.0,,Jive Electro,P (P) 2001 Zomba Records Limited,5554 +5555,spotify:track:6YndZBGmLySgsVScckWkmO,Take Yourself Home,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,spotify:album:0F9bpInUaHGru63OHqBuQ8,Take Yourself Home,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2020-04-01,https://i.scdn.co/image/ab67616d0000b27316ae382f29670572f8931a75,1,1,249369,https://p.scdn.co/mp3-preview/9bdc740be98c366e3d24d498c51d3a217e656e8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM72000197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,viral pop",0.364,0.606,5.0,-9.188,0.0,0.0831,0.0748,0.000322,0.106,0.289,99.73,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2020 Universal Music Australia Pty Ltd., P An EMI Recorded Music Australia Production; ℗ 2020 Universal Music Australia Pty Ltd.",5555 +5556,spotify:track:5DTOOkooKFUvWj1XQTFa09,The End of the World,spotify:artist:5b2OzvLaL6nyxw5pbVbSdy,Skeeter Davis,spotify:album:3KwArr7JHl7ykUNYrrja7N,The Essential Skeeter Davis,spotify:artist:5b2OzvLaL6nyxw5pbVbSdy,Skeeter Davis,1994-05-23,https://i.scdn.co/image/ab67616d0000b273c4c4a5d82534d5e6b2ed349a,1,9,157573,https://p.scdn.co/mp3-preview/66fd121a81b7c0f61c989e16de60c2177de1ceb1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRC19901069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.232,0.216,10.0,-10.674,1.0,0.0314,0.936,4.93e-06,0.246,0.432,94.268,3.0,,RCA Records Label Nashville,P (P) 1995 BMG Entertainment.,5556 +5557,spotify:track:6FcQD1qOpqV8NdhY45sKyI,What's Love Got to Do with It,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,spotify:album:1ZFC0iOKUp4M16eHXVaeG4,Simply the Best,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,1991-01-01,https://i.scdn.co/image/ab67616d0000b273885426f7a6ef11b1cd483279,1,4,226880,https://p.scdn.co/mp3-preview/17fc69a8eb2790009cc7b6b2254c7798d327c35d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USCA28400002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.851,0.406,1.0,-11.631,1.0,0.0662,0.219,6.79e-06,0.0853,0.793,97.84,4.0,,Parlophone UK,"C © 1991 Parlophone Records Ltd, P ℗ 1991 Parlophone Records Ltd. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Parlophone Records Ltd,",5557 +5558,spotify:track:0UpQ4fWxoCFoVUGYvjUH7F,We Are The People,spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,spotify:album:6cMiYjMZ7ltJC3OyljYJO6,Walking On A Dream,spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,2008-01-01,https://i.scdn.co/image/ab67616d0000b27371165b9223362f009d9a6001,1,4,267354,https://p.scdn.co/mp3-preview/f0386090a391d2cf72f97c60de6e8d2bb4ea509e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEI10800041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,dance rock,indietronica,neo-synthpop",0.666,0.785,4.0,-5.37,0.0,0.0308,0.0981,0.0198,0.434,0.549,122.973,4.0,,Capitol Records,"C © 2008 The Sleepy Jackson Pty Ltd and Nick Littlemore, P ℗ 2008 The Sleepy Jackson Pty Ltd and Nick Littlemore",5558 +5559,spotify:track:421leiR6jKlH5KDdwLYrOs,Dance Monkey,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,spotify:album:5i6CS5XcLZGLgaNCKlJvc2,Dance Monkey,spotify:artist:2NjfBq1NflQcKSeiDooVjY,Tones And I,2019-05-10,https://i.scdn.co/image/ab67616d0000b273a0486913512ed5f9f62b5d56,1,1,209754,https://p.scdn.co/mp3-preview/67a1ddabbcb69ce2b9d968e68d23aaaebd0adc68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,QZES71982312,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.824,0.592,6.0,-6.4,0.0,0.0969,0.693,0.000158,0.178,0.54,98.074,4.0,,Bad Batch Records,"C 2019 Bad Batch Records, P 2019 Bad Batch Records",5559 +5560,spotify:track:7fgS7jlaRkpbUVYCe2Mt7i,Shaddap You Face,spotify:artist:4wUEfafmKVXlwEiz9RdPFc,Joe Dolce,spotify:album:2CLMCHFW9He43c0H6EKS5Y,Shaddap You Face - Single,spotify:artist:4wUEfafmKVXlwEiz9RdPFc,Joe Dolce,2010-03-08,https://i.scdn.co/image/ab67616d0000b273b8e75406e83c5645c4925f58,1,1,193160,https://p.scdn.co/mp3-preview/bbf8c7a7034b82c4fec65942fd7e4ff566583c1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUOMO9701311,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.762,0.705,4.0,-5.082,1.0,0.099,0.441,0.0,0.118,0.772,119.439,4.0,,Dolceamore Music,C (C) 2010 Dolceamore Music,5560 +5561,spotify:track:68BTFws92cRztMS1oQ7Ewj,All You Need Is Love - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:2BtE7qm1qzM80p9vLSiXkj,Magical Mystery Tour (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1967-11-27,https://i.scdn.co/image/ab67616d0000b273692d9189b2bd75525893f0c1,1,11,230386,https://p.scdn.co/mp3-preview/4936fdee89e66112dc587f8759764cd3084e764c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAYE0601643,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.399,0.481,7.0,-7.768,1.0,0.0296,0.349,3.17e-05,0.155,0.652,103.379,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",5561 +5562,spotify:track:0qc4QlcCxVTGyShurEv1UU,Post Malone (feat. RANI),"spotify:artist:20gsENnposVs2I4rQ5kvrf, spotify:artist:3SYnDj7btg9gFY7ps8m5d5","Sam Feldt, RANI",spotify:album:41S9bfzXTSGK4HU2mp5qXH,Magnets EP,spotify:artist:20gsENnposVs2I4rQ5kvrf,Sam Feldt,2019-05-24,https://i.scdn.co/image/ab67616d0000b27354de16ac6dc5346bfc1187f5,1,5,174444,https://p.scdn.co/mp3-preview/df2e38f031e06398552d6b1fa46fb366c48d53dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,NLZ541900734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,tropical house,dutch pop",0.59,0.642,7.0,-3.87,1.0,0.122,0.0771,0.0,0.105,0.651,107.356,4.0,,Spinnin' Records,"C © 2019 SpinninRecords.com, P ℗ 2019 SpinninRecords.com",5562 +5563,spotify:track:4EOpol0K5u620R2OLfoJ1B,Purple Pills,spotify:artist:5Qi4Bb7a8C0a00NZcA77L0,D12,spotify:album:1goTTgn8yBzKNOCocQcMQy,Devils Night,spotify:artist:5Qi4Bb7a8C0a00NZcA77L0,D12,2001-01-01,https://i.scdn.co/image/ab67616d0000b2732d9b80b5eac7a6133c932e40,1,10,304506,https://p.scdn.co/mp3-preview/4eff57685990f1a792ecdd6392a34a6a3a74772f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10110382,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,gangster rap,hip hop",0.774,0.634,1.0,-5.941,1.0,0.167,0.0199,2.98e-05,0.29,0.752,125.223,4.0,,Universal Music Group,"C © 2001 Interscope Records, P ℗ 2001 Shady Records/Interscope Records",5563 +5564,spotify:track:423EcxblW9F4nnQkqcqMlK,Deja Vu (feat. Jay-Z),"spotify:artist:6vWDO969PvNqNYHIOW5v0m, spotify:artist:3nFkdlSjzX9mRTtwJOzDYB","Beyoncé, JAY-Z",spotify:album:0Zd10MKN5j9KwUST0TdBBB,B'Day Deluxe Edition,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2007-05-29,https://i.scdn.co/image/ab67616d0000b273026e88f624dfb96f2e1ef10b,1,13,240280,https://p.scdn.co/mp3-preview/3a50c2ffe1e94d37c49cedc2adf8628b32f1387b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM10602510,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b,east coast hip hop,gangster rap,hip hop,pop rap,rap",0.644,0.746,7.0,-4.941,1.0,0.341,0.0071,1.22e-05,0.0743,0.355,105.253,4.0,,Columbia,"P (P) 2006, 2007 SONY BMG MUSIC ENTERTAINMENT",5564 +5565,spotify:track:2JcNSay6bc5YZB0I1T3kOn,Daddy Cool,spotify:artist:5BXtjft527FfVIZHpBRXns,Drummond,spotify:album:7fuTry78vKGlCuOGzaJ5si,Lost Hits of the 70s and 80s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2019-01-15,https://i.scdn.co/image/ab67616d0000b273e5efbf411504d7501ec3593f,1,15,159853,https://p.scdn.co/mp3-preview/6fb68f7289697703466b8cd63ec5a97d1f2b7ea4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,AULB41700158,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.676,0.694,4.0,-6.603,1.0,0.0381,0.331,0.136,0.27,0.974,131.649,4.0,,Fanfare Records,"C 2018 Ambition Entertainment Pty Ltd, P 2018 Ambition Entertainment Pty Ltd",5565 +5566,spotify:track:5YPTYLMdNEgk7CPNPqqFyA,Getaway Car,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:4fW1sFeE43nuZlAw2xtmC3,reputation,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2017-11-10,https://i.scdn.co/image/ab67616d0000b2732bc33ce6acd39112e88b4c0e,1,9,233626,https://p.scdn.co/mp3-preview/3b7c75273822da52311019692f2db7b933d1b74f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1750010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.562,0.689,2.0,-6.745,1.0,0.127,0.00465,2.23e-06,0.0888,0.351,172.054,4.0,,"Big Machine Records, LLC","C © 2017 Big Machine Label Group, LLC, P ℗ 2017 Big Machine Label Group, LLC",5566 +5567,spotify:track:0wXwJ0AvPhCUlDxWhbiukW,I Feel the Earth Move,spotify:artist:40enFxfEXXsEXKOt1vgx0k,Martika,spotify:album:2dSrr6vS6RT9UWLOCEU0PY,Martika,spotify:artist:40enFxfEXXsEXKOt1vgx0k,Martika,1988-10-18,https://i.scdn.co/image/ab67616d0000b2734e792aaec7138ddbb1f0a282,1,6,252506,https://p.scdn.co/mp3-preview/219063cccfcdede70e06e438529a5de0cd376a50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19906495,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"minneapolis sound,new romantic,new wave pop",0.71,0.907,7.0,-8.755,1.0,0.0288,0.0719,0.00129,0.0512,0.964,124.714,4.0,,Columbia,P (P) 1988 Sony Music Entertainment Inc.,5567 +5568,spotify:track:6TfBA04WJ3X1d1wXhaCFVT,"You're Gonna Go Far, Kid",spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:67v63ubEsvDUQkYMzI7A9t,"Rise And Fall, Rage And Grace",spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,2008-06-17,https://i.scdn.co/image/ab67616d0000b273890ce61533a89e00ce593fcb,1,3,177826,https://p.scdn.co/mp3-preview/c98446a305d38e595073b7fe52b0202ea15532df?cid=9950ac751e34487dbbe027c4fd7f8e99,True,81,USSM10801605,spotify:user:bradnumber1,2022-01-11T11:17:14Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.55,0.917,0.0,-3.159,1.0,0.0638,0.00428,0.0,0.197,0.601,126.115,4.0,,Round Hill Music (Offspring),"C © 2008 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc., P ℗ 2008 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc.",5568 +5569,spotify:track:4RiZRDKcQcsXIu7gY4YYVQ,One of Them Ones,"spotify:artist:4qXC0i02bSFstECuXP2ZpL, spotify:artist:3pcerTbRFAPvWWtAfySFWB","Blxst, Bino Rideaux",spotify:album:4B7vNl7Ud0csW77uXYeMGM,Sixtape 2,"spotify:artist:4qXC0i02bSFstECuXP2ZpL, spotify:artist:3pcerTbRFAPvWWtAfySFWB","Blxst, Bino Rideaux",2021-07-16,https://i.scdn.co/image/ab67616d0000b273104c95823412be73e25d70fa,1,5,165546,https://p.scdn.co/mp3-preview/7554026913d3b6c70153453d81af04f5f9ffe9a0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,34,USP6L2100705,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,westcoast flow,cali rap,westcoast flow",0.601,0.691,10.0,-4.699,0.0,0.35,0.0249,0.0,0.124,0.513,97.799,4.0,,EVGLE & Out The Blue/Def Jam exclusively licensed to Red Bull Records,"C (C) 2021 EVGLE & Out The Blue/Def Jam exclusively licensed to Red Bull Records, P (P) 2021 EVGLE & Out The Blue/Def Jam exclusively licensed to Red Bull Records",5569 +5570,spotify:track:0I9M3okWVRJXWT6G7cbIdx,"Say You, Say Me",spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,spotify:album:1b81mEDt3DmqDdQrZg3i8F,Dancing On The Ceiling (Expanded Edition),spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,1986,https://i.scdn.co/image/ab67616d0000b2731ecfc3fc174dd04ce417bc09,1,8,241066,https://p.scdn.co/mp3-preview/8b7fc95c6ef565ac68ac93aafe8b879f372c471c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18582864,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.636,0.405,8.0,-11.113,1.0,0.0287,0.355,0.0,0.081,0.257,128.068,4.0,,Universal Music Group,"C © 2003 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2003 Universal Motown Records, a division of UMG Recordings, Inc.",5570 +5571,spotify:track:4GITtbZtRCQXhWLMXrWXHt,Roots,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:6SW9d1zYefC5SUzPsJFUMU,Roots,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2015-08-27,https://i.scdn.co/image/ab67616d0000b273dab51e542681251e026302b9,1,1,174506,https://p.scdn.co/mp3-preview/0d2d57891ec779f0a8ffe23e769b523d68c80b06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USUM71512947,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.637,0.887,7.0,-5.444,0.0,0.227,0.707,0.00188,0.326,0.596,157.759,4.0,,Kid Ina Korner / Interscope,"C © 2015 KIDinaKORNER/Interscope Records, P ℗ 2015 KIDinaKORNER/Interscope Records",5571 +5572,spotify:track:3SPcBPzvbmWLl8NU5efx4W,Telephone Line,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:7a35UzxXYuKQGMGImyB0Un,A New World Record,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1976-09-01,https://i.scdn.co/image/ab67616d0000b273ee5b1065368b0981e3cb0a33,1,2,280360,https://p.scdn.co/mp3-preview/3118b6b2f9edb941810f3e132d5069851a73fdff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM18600411,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.467,0.367,9.0,-8.164,1.0,0.0298,0.771,2.27e-05,0.0847,0.205,70.856,4.0,,Epic/Legacy,"P (P) 1976 Epic Records, a division of Sony Music Entertainment",5572 +5573,spotify:track:3e4wCtTSt83Cu2hFVioW4f,Nu Flow,spotify:artist:0tTPYQGpkJ49RMbtCOQfDY,Big Brovaz,spotify:album:3FjVjhMF7tI5uOLwc0KhR8,Nu Flow,spotify:artist:0tTPYQGpkJ49RMbtCOQfDY,Big Brovaz,2003-01-18,https://i.scdn.co/image/ab67616d0000b273a1ca895687258d2b5fd6221d,1,1,201480,https://p.scdn.co/mp3-preview/ed2bc547a9d481e543890ecc58269f38b2611fc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBBBM0202096,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk garage,0.782,0.755,7.0,-7.759,1.0,0.112,0.0873,7.16e-06,0.361,0.742,148.04,4.0,,Epic,"P (P) 2002,2003 Riot Records a division of Shalit Global Music under exclusive licence to Sony Music (UK) Ltd.",5573 +5574,spotify:track:1UXjRJzZAaWo2XyHT2gzsl,What Will My Mary Say,spotify:artist:21LGsW7bziR4Ledx7WZ1Wf,Johnny Mathis,spotify:album:4VJDSiqE6LuwZ4jtgAsix4,The Very Best Of Johnny Mathis,spotify:artist:21LGsW7bziR4Ledx7WZ1Wf,Johnny Mathis,2008-11-07,https://i.scdn.co/image/ab67616d0000b2730705ad72e2fd9ee455091775,2,5,189213,https://p.scdn.co/mp3-preview/0e4402041947790f4677fb28413eb3fbb09a50c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10102876,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.235,0.452,0.0,-7.905,1.0,0.0338,0.901,1.33e-06,0.241,0.309,107.0,4.0,,Columbia,P (P) 2002 Sony Music Entertainment S.A.,5574 +5575,spotify:track:75kMrDKPJJpgEQaXVh7QMB,Pray to God (feat. HAIM),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:4Ui2kfOqGujY81UcPrb5KE","Calvin Harris, HAIM",spotify:album:48zisMeiXniWLzOQghbPqS,Motion,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2014-10-31,https://i.scdn.co/image/ab67616d0000b2738fba5806a323efd272677c4d,1,11,232226,https://p.scdn.co/mp3-preview/a7519c5c1315067ba699e1e286105c4f3d93dde6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBARL1401205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,indietronica,metropopolis",0.606,0.949,7.0,-2.749,0.0,0.0414,0.015,2.76e-05,0.109,0.436,120.031,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,5575 +5576,spotify:track:1oQjc4G5OOCodPVfdjnMpl,Filter Freak,spotify:artist:298I931uc5poF6kIU5XJtI,Denzal Park,spotify:album:5g8HACRmUhDJHpuiA3TUQB,Filter Freak (The Remixes),spotify:artist:298I931uc5poF6kIU5XJtI,Denzal Park,2010-02-12,https://i.scdn.co/image/ab67616d0000b273b648382e26a0585d794e5379,1,2,313879,https://p.scdn.co/mp3-preview/21d00898613a9a22747262fe98c4fb27ebffe62a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNE31000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,progressive electro house",0.791,0.873,1.0,-3.178,1.0,0.0799,0.000465,0.0129,0.0553,0.858,130.014,4.0,,WM Australia,"C 2009 Neon Records Pty Limited Marketed and Distributed by Warner Music Australia Pty Limited under exclusive licence, P 20009 Neon Records Pty Limited",5576 +5577,spotify:track:79a7CeMy7iWFAQWd8d38dC,Denim & Lace,spotify:artist:2No2vspr2KORUEcZKH4xUi,Marty Rhone,spotify:album:1zwUZLK2soBICLi5DuWReQ,50th Anniversary Album,spotify:artist:2No2vspr2KORUEcZKH4xUi,Marty Rhone,2016-08-01,https://i.scdn.co/image/ab67616d0000b2737c9eae208fe680bd19ac197c,1,7,169520,https://p.scdn.co/mp3-preview/9189531bb7edbf6135c19481e65f667121f4f5c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,ushm21620619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic australian country,0.684,0.643,4.0,-6.513,1.0,0.0347,0.47,1.63e-06,0.25,0.961,112.144,4.0,,Marty Rhone,"C 2016 Marty Rhone, P 2016 Marty Rhone",5577 +5578,spotify:track:2Sw3obZp3Qg01CQFmglZlH,We Won't Run,spotify:artist:75jU2q0uEWzSIlqRJtedJV,Sarah Blasko,spotify:album:41JXuxDChcYsdJyxrqZiNS,As Day Follows Night w/ Live At The Forum,spotify:artist:75jU2q0uEWzSIlqRJtedJV,Sarah Blasko,2010-01-01,https://i.scdn.co/image/ab67616d0000b273de42d6b745754ae113458cde,1,5,240533,https://p.scdn.co/mp3-preview/33528bb3aeb61ebc26f5f48929d367417c9583eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70900407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian singer-songwriter",0.703,0.557,10.0,-8.42,1.0,0.0562,0.508,0.000117,0.132,0.376,122.176,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Dew Process/Universal Music Australia, P This Compilation ℗ 2010 Dew Process/Universal Music Australia",5578 +5579,spotify:track:353IDEfNzPJmGNRnOi5kJ1,Wildflower,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:0vX2Jo5xhltAA7kVdW2hwO,CALM,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2020-03-27,https://i.scdn.co/image/ab67616d0000b273631b12c5eaa661c6c793ba45,1,6,220536,https://p.scdn.co/mp3-preview/78250e606f93b84658eee58fa3ea9f5b739d03d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG12000296,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.643,0.768,6.0,-4.316,1.0,0.0455,0.174,0.0,0.469,0.597,108.992,4.0,,5 Seconds Of Summer/Interscope,"C © 2020 5 Seconds of Summer, under exclusive license to Interscope Records, P ℗ 2020 5 Seconds of Summer, under exclusive license to Interscope Records",5579 +5580,spotify:track:10fddGyyeUquZZ2uPTjD7P,Better Than Me,spotify:artist:6BMhCQJYHxxKAeqYS1p5rY,Hinder,spotify:album:2SmDuZSWtjukp9gkG2mcBQ,Extreme Behavior,spotify:artist:6BMhCQJYHxxKAeqYS1p5rY,Hinder,2005-01-01,https://i.scdn.co/image/ab67616d0000b273395bf2151b99ef7f8b3116b5,1,6,223533,https://p.scdn.co/mp3-preview/de13e1f793c96a03c3fd3b53339b1100c45d7bbb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USUM70503176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge",0.449,0.682,2.0,-5.295,0.0,0.029,0.205,0.0,0.175,0.254,139.924,4.0,,Universal Records,"C © 2005 Universal Records, a Division of UMG Recordings Inc and Disturbing Tha Peace Records Inc., P ℗ 2005 Universal Records, a Division of UMG Recordings Inc and Disturbing Tha Peace Records Inc.",5580 +5581,spotify:track:2zTWItPHVRJOm97MhQz6nI,Madder Red,spotify:artist:04HvbIwBccFmRie5ATX4ft,Yeasayer,spotify:album:64PqoX4BwsfDVEBeYqDnb8,Odd Blood,spotify:artist:04HvbIwBccFmRie5ATX4ft,Yeasayer,2010,https://i.scdn.co/image/ab67616d0000b273fb04d2daccc4966fb4c234b7,1,3,243613,https://p.scdn.co/mp3-preview/cda53d66ffcd6348bcb5d3a6fd7710f471c2e031?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US38W1021003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,brooklyn indie,chamber pop,indie rock,neo-synthpop,shimmer pop",0.441,0.845,4.0,-8.103,0.0,0.0377,0.00995,0.00923,0.141,0.277,164.014,4.0,,Mute,"C 2010 2010 Artist Intelligence Partnership Limited under exclusive license from Secretly Canadian, Inc., P 2010 2010 Artist Intelligence Partnership Limited under exclusive license from Secretly Canadian, Inc.",5581 +5582,spotify:track:7LRMbd3LEoV5wZJvXT1Lwb,T.N.T.,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:19AUoKWRAaQYrggVvdQnqq,High Voltage,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1976-05-14,https://i.scdn.co/image/ab67616d0000b273286a0837ff3424065a735e0a,1,5,214666,https://p.scdn.co/mp3-preview/b057af7c776de98ed5aa2a73bd3f5b9e6c84459d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,AUAP07600012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.754,0.759,9.0,-5.218,1.0,0.302,0.153,0.000108,0.101,0.435,126.366,4.0,,Columbia,P (P) 1976 Australian Music Corporation Pty Ltd.,5582 +5583,spotify:track:6NRpQcKsdHNah96cltWBdW,A Lover's Concerto,spotify:artist:6lH5PpuiMa5SpfjoIOlwCS,The Toys,spotify:album:6ZFr43nxcB0GFZjHMMRG7Q,A Lover's Concerto - Single,spotify:artist:6lH5PpuiMa5SpfjoIOlwCS,The Toys,2011-04-15,https://i.scdn.co/image/ab67616d0000b273698357e55456407b5e526dbe,1,1,217546,https://p.scdn.co/mp3-preview/d7aedad80937cb02c3da9b105e1c1d4b7425e4ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,TCAAX1152282,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.699,0.88,9.0,-2.756,1.0,0.0635,0.12,0.0,0.0629,0.538,121.031,4.0,,Treasury Collection,"C 2011 Treasury Collection, P 2011 Treasury Collection",5583 +5584,spotify:track:095MMFhB9qxPx2VsmvjnUs,Live to Tell,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:6fmnT17jc2Sc69q3nza1eD,True Blue,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1986-06-30,https://i.scdn.co/image/ab67616d0000b273c01194bbe928c038cef5607b,1,4,351920,https://p.scdn.co/mp3-preview/3fe769088966ffd15a1d852b5aa091596f4ff6a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USWB19903144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.652,0.521,2.0,-6.752,0.0,0.0256,0.263,0.0011,0.107,0.235,109.943,4.0,,Warner Records,"C © 1986, 2001 Warner Records Inc., P ℗ 1986 Warner Records Inc.",5584 +5585,spotify:track:23jNwwtRqBSujsMT41gODf,"Too Much, Too Little, Too Late (with Deniece Williams)","spotify:artist:21LGsW7bziR4Ledx7WZ1Wf, spotify:artist:5jNGQ7VOU87x5402JjhTtd","Johnny Mathis, Deniece Williams",spotify:album:5Jv4jKdvPis9DbgZLWkiWD,Better Together - The Duet Album,spotify:artist:21LGsW7bziR4Ledx7WZ1Wf,Johnny Mathis,1978,https://i.scdn.co/image/ab67616d0000b2737ed9e6ceb7f63aff6a7989bc,1,3,176480,https://p.scdn.co/mp3-preview/b4dff54fde64fda84b36a4d6ec1133fa8015cafa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USSM10007521,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,contemporary r&b,disco,funk,motown,post-disco,quiet storm,soul,urban contemporary",0.501,0.573,8.0,-9.078,1.0,0.0673,0.464,6.37e-06,0.0937,0.753,77.805,4.0,,Columbia,"P (P) 1982 Jon Mat Records, Inc. & Arista Records, Inc., 1978, 1979, 1984, 1989, 1991 Jon Mat Records, Inc.",5585 +5586,spotify:track:2q4MbsAkTe2KHPc1calBT6,Ladidi Ladida,spotify:artist:4tc5xhcuEtiRizloAL4wZI,S.O.A.P.,spotify:album:7kQtr0cIKu7qZCrCvvkHOD,Not Like Other Girls,spotify:artist:4tc5xhcuEtiRizloAL4wZI,S.O.A.P.,1998-03-17,https://i.scdn.co/image/ab67616d0000b273abd3fef453dcf3536c34b635,1,8,182640,https://p.scdn.co/mp3-preview/d98e9ca425067349168eb95589e8b40d61e5bdc3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,DKAXS9845207,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum dance,0.719,0.99,5.0,-3.942,0.0,0.032,0.0482,0.0478,0.31,0.951,116.034,4.0,,Soap Records,P (P) 1998 Sony Music Entertainment (Denmark) A/S,5586 +5587,spotify:track:2M3E9wbFtqdkSGkhfHikFh,I Know Him So Well,"spotify:artist:7KckozT8XPOqtgJjpAcrnA, spotify:artist:5pi8sj5ExnwL73KjHR2lFR","Elaine Paige, Barbara Dickson",spotify:album:43KUczsSjyfpXlWuylA62Y,Love Hurts,spotify:artist:7KckozT8XPOqtgJjpAcrnA,Elaine Paige,1985,https://i.scdn.co/image/ab67616d0000b273e54e5178cd33503d0970abba,1,11,257106,https://p.scdn.co/mp3-preview/4483d07cdb296e2f2eaf704b2e4799b23bc35de0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAHT9500260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,operatic pop,classic uk pop",0.423,0.211,10.0,-12.268,1.0,0.0287,0.82,0.0,0.0894,0.131,138.61,4.0,,Rhino,"C © 2004 Warner Music UK Ltd., P ℗ 2004 Warner Music UK Ltd.",5587 +5588,spotify:track:0GQqQ7dA7B4mcEktSZaOUp,as long as you care,spotify:artist:5xkAtLTf309LAGZTbvULBn,Ruel,spotify:album:4Fa7UBvAT9kuEMOAq2gbHm,as long as you care,spotify:artist:5xkAtLTf309LAGZTbvULBn,Ruel,2020-09-10,https://i.scdn.co/image/ab67616d0000b2735e2c5053282f63f4e71cafb4,1,1,193189,https://p.scdn.co/mp3-preview/c5f9a1669dfa548154948dc3d5015e4dcfb405a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USRC12002400,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,australian alternative pop,singer-songwriter pop",0.55,0.591,1.0,-6.833,1.0,0.0377,0.00692,0.0,0.11,0.308,78.68,4.0,,RCA Records Label,"P (P) 2020 RCA Records, a division of Sony Music Entertainment",5588 +5589,spotify:track:4aBvNdk441AYYJ1BRgDkrH,Love You Goodbye,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:3fzhQhtVK4KRGvoftemN3g,Love You Goodbye,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2015-11-10,https://i.scdn.co/image/ab67616d0000b27359060912440b9f4e9645adbc,1,1,196933,https://p.scdn.co/mp3-preview/12367f9ac4957d89c3ca6c50fcd636845423b8e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1500112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.546,0.657,1.0,-4.787,1.0,0.0332,0.0928,0.0,0.119,0.361,133.188,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,5589 +5590,spotify:track:6gj08XDlv9Duc2fPOxUmVD,Lips Are Movin,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:5W98Ab4VvQEuFEE4TIe5fE,Title (Deluxe),spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2015-01-09,https://i.scdn.co/image/ab67616d0000b2733b11178cccd78ec77fc12dbc,1,11,182666,https://p.scdn.co/mp3-preview/3d119bd8b86f726c85996406add66b1abf3bc308?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USSM11408349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop",0.775,0.825,7.0,-5.402,1.0,0.0464,0.0506,1.03e-06,0.111,0.95,139.091,4.0,,Epic,"P (P) 2014, 2015 Epic Records, a division of Sony Music Entertainment",5590 +5591,spotify:track:0KpfYajJVVGgQ32Dby7e9i,"Hey, Soul Sister",spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:5lTCUyQrKcSmcw5ULkt75O,"Hey, Soul Sister",spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2009-08-06,https://i.scdn.co/image/ab67616d0000b273706a70e4bfb15d33b8ec74a1,1,1,216666,https://p.scdn.co/mp3-preview/518c823cf0f8b862bed0fa45e34cc63db5ea58e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10904113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.675,0.885,1.0,-4.432,0.0,0.0436,0.217,0.0,0.086,0.768,97.03,4.0,,Columbia,"P (P) 2009 Columbia Records, a division of Sony Music Entertainment",5591 +5592,spotify:track:3oEiWQUKwV524mYSn5bgUq,Controlla,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,spotify:album:2yIwhsIWGRQzGQdn1czSK0,Views,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,2016-05-06,https://i.scdn.co/image/ab67616d0000b27372d0af2341359a90710c1fdc,1,11,245226,https://p.scdn.co/mp3-preview/9fc631a05157d30fdbcfa3e30ea8ef4c417046ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USCM51600081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian hip hop,canadian pop,hip hop,pop rap,rap",0.555,0.468,10.0,-11.131,0.0,0.211,0.0786,0.0,0.113,0.325,93.877,4.0,,Cash Money Records/Young Money Ent./Universal Rec.,"C © 2016 Young Money Entertainment/Cash Money Records, P ℗ 2016 Young Money Entertainment/Cash Money Records",5592 +5593,spotify:track:5kErKPSPv8EgdZ04R3el1K,It's Raining Men - Single Version,spotify:artist:19xz1vcuKNjniGEftTOSSH,The Weather Girls,spotify:album:6KrLqH25xsKvJwyiSRis5A,It's Raining Men,spotify:artist:19xz1vcuKNjniGEftTOSSH,The Weather Girls,1982-04-30,https://i.scdn.co/image/ab67616d0000b273525984e1b60498957cef61aa,1,1,212680,https://p.scdn.co/mp3-preview/4d5bf1401b26678aba429943341d25a96d2deaa7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM18200686,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg",0.723,0.881,5.0,-7.178,0.0,0.0743,0.349,0.000274,0.705,0.658,136.306,4.0,,Columbia,P (P) 1982 Sony Music Entertainment Inc.,5593 +5594,spotify:track:2OyAPN6DPdbYYTySONVZ1R,Dream Catch Me,spotify:artist:0pf1lcBxh6HiiHQAIzhTI5,Newton Faulkner,spotify:album:4qNxTvUl9Xlt5kZF0Njr8H,Hand Built By Robots,spotify:artist:0pf1lcBxh6HiiHQAIzhTI5,Newton Faulkner,2008-02-27,https://i.scdn.co/image/ab67616d0000b273fce072f2e8992c66c2312e93,1,5,236253,https://p.scdn.co/mp3-preview/8e3281d6400ed52dcce59cf710536439a1eff0f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBHKB0700023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,folk-pop,0.629,0.722,2.0,-5.693,1.0,0.0277,0.195,0.0,0.108,0.58,118.003,4.0,,Ugly Truth,P (P) 2007 Peer-Southern Productions Limited under exclusive license to Blue Sky Music Limited,5594 +5595,spotify:track:65ACnVMmePTp8Xdk11jP2y,Don't Let Me Be Yours,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,spotify:album:5YLRVHDVRw3QqWbeTGpC5B,So Good,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,2017-03-17,https://i.scdn.co/image/ab67616d0000b2739e1683774b22648f4f178ed3,1,9,199053,https://p.scdn.co/mp3-preview/5f31be7c8b44bba3860a298a7179d0a33b98e1c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USSM11701005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,scandipop,swedish electropop,swedish pop",0.792,0.428,4.0,-6.931,1.0,0.0676,0.203,0.0,0.15,0.501,112.075,4.0,,Epic/Record Company TEN,"P (P) 2017 Record Company TEN, exclusively licensed by Epic Records, a division of Sony Music Entertainment",5595 +5596,spotify:track:4IdCX8mGmi8kJD5az6HqRL,Million Voices - Radio Edit,spotify:artist:5fahUm8t5c0GIdeTq0ZaG8,Otto Knows,spotify:album:6qS1m40p8GjaloRgK6kDgq,Million Voices,spotify:artist:5fahUm8t5c0GIdeTq0ZaG8,Otto Knows,2012-01-01,https://i.scdn.co/image/ab67616d0000b273f75423037164681cf4ca65e0,1,1,192866,https://p.scdn.co/mp3-preview/0cf4ed02d126e9c175139282685ad2d7a7643438?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBJ4B1200096,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,electro house,pop dance,progressive electro house",0.582,0.894,8.0,-6.298,1.0,0.041,0.0022,0.0223,0.0664,0.0694,125.946,4.0,,Virgin,"C © 2012 Refune Music Rights AB, under exclusive license to Universal Music AB, P ℗ 2012 Refune Music Rights AB, under exclusive license to Universal Music AB",5596 +5597,spotify:track:64Lc271OsYQD7t5fwVJwhF,How Deep Is Your Love,spotify:artist:08fM8wx6uuEwagFsUvQp35,Portrait,spotify:album:6u3Iystbl5WugW4181FFFg,Greatest Hits,spotify:artist:08fM8wx6uuEwagFsUvQp35,Portrait,2000-01-01,https://i.scdn.co/image/ab67616d0000b273f38e112f82b6f7b5985b9e17,1,2,240293,https://p.scdn.co/mp3-preview/469bcfc62efea4345adb536cbfba0f6dcdb55038?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USCA29500464,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing",0.62,0.271,5.0,-16.798,0.0,0.025,0.669,0.0,0.0812,0.453,95.689,4.0,,The Right Stuff,"C © 2000 Capitol Records Inc., P This Compilation ℗ 2000 Capitol Records Inc.",5597 +5598,spotify:track:4sPAsxBojtfVfIbxR01QsQ,I Need to Be In Love,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:0wBP8GaN80GPolmY8M19em,Classic Carpenters,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2016-04-22,https://i.scdn.co/image/ab67616d0000b273e0883bb3ac31d595172c0a82,1,9,235986,https://p.scdn.co/mp3-preview/90e3d1f0899f82b38557994b1f1a4b098128c193?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUBM01600046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.416,0.152,10.0,-9.037,1.0,0.0312,0.961,0.000122,0.121,0.0652,129.216,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,5598 +5599,spotify:track:4h067wpWDHwQWM4a6CbqSV,Twisted - Single Version; 2007 Remaster,spotify:artist:2r09Inibex3C4ZNTUVSG3m,Keith Sweat,spotify:album:6GXk2hxl4q5GoPHarlUet8,The Best of Keith Sweat: Make You Sweat,spotify:artist:2r09Inibex3C4ZNTUVSG3m,Keith Sweat,2004-01-13,https://i.scdn.co/image/ab67616d0000b273820facd82ca670c50ee97f39,1,11,253773,https://p.scdn.co/mp3-preview/c10a72f77f709d4e51d091a0694827f365464dff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USEE10301531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing,r&b,urban contemporary",0.69,0.505,11.0,-9.503,1.0,0.0355,0.347,0.0,0.269,0.793,87.889,4.0,,Rhino/Elektra,"C © 2004 Elektra Entertainment Group. Manufactured and Marketed by Warner Strategic Marketing., P ℗ 2004 Elektra Entertainment Group. Manufactured and Marketed by Warner Strategic Marketing.",5599 +5600,spotify:track:3qq7parQQaohn9N7qKrKtE,The Entertainer - The Sting/Soundtrack Version/Orchestra Version,spotify:artist:1VN38ZSdtQnHLa8PfTTKZD,Marvin Hamlisch,spotify:album:0GLCHyDf1JwJRestHhlc91,The Sting,spotify:artist:1VN38ZSdtQnHLa8PfTTKZD,Marvin Hamlisch,1974-01-01,https://i.scdn.co/image/ab67616d0000b27368fd647245250d9492da105b,1,2,183360,https://p.scdn.co/mp3-preview/90770848c55eca35705c3d4e30409b6ef928be2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USMC17302275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"broadway,classic soundtrack",0.615,0.386,0.0,-11.662,1.0,0.0904,0.873,0.778,0.0887,0.365,156.85,4.0,,Geffen*,"C © 1998 Geffen Records, P ℗ 1974 Geffen Records",5600 +5601,spotify:track:0AGrARRk7RBP4KqpesAB9e,Universe,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:2FSVwM8ysmI2tXIPpBJbfs,Savage Garden,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,1997-03-04,https://i.scdn.co/image/ab67616d0000b2736829cf8da7c5706fc42a3852,1,8,260040,https://p.scdn.co/mp3-preview/aa7cc05cc0412f5a59c3df60ce2c0a7fa5121bdc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09700008,spotify:user:bradnumber1,2022-02-03T10:14:18Z,"boy band,dance pop,pop rock",0.568,0.543,10.0,-9.147,1.0,0.0344,0.475,1.45e-05,0.158,0.601,81.098,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P This Compilation ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",5601 +5602,spotify:track:2UbVnbE5FH6008mAm6Mmgw,Run,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:4d0a5uamW9NWRc1KXFeErI,Run,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2021-05-05,https://i.scdn.co/image/ab67616d0000b2738120d2b107af14b1bf67cd06,1,1,169010,https://p.scdn.co/mp3-preview/b03c4e494f09791b5827b19f133d485a41e83881?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USUM72004315,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.682,0.72,11.0,-8.173,0.0,0.0381,0.326,0.0,0.148,0.673,117.003,4.0,,Mosley Music/Interscope Records,"C © 2021 Mosley Music/Interscope Records, P ℗ 2021 Mosley Music/Interscope Records",5602 +5603,spotify:track:4gVwRSCyE40hU3cq8qdkwD,Hung Up,spotify:artist:6jTnHxhb6cDCaCu4rdvsQ0,Hot Chelle Rae,spotify:album:0IyOaAKeF3t9j8Vu0KH4ux,Hung Up,spotify:artist:6jTnHxhb6cDCaCu4rdvsQ0,Hot Chelle Rae,2013,https://i.scdn.co/image/ab67616d0000b273176421e6c468fb1265e936f8,1,1,193733,https://p.scdn.co/mp3-preview/6ef52b4da544fec2637f5086ccc82ff2c2a27586?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USRC11201581,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,neon pop punk,post-teen pop",0.668,0.875,4.0,-3.963,1.0,0.0447,0.0428,0.0,0.379,0.934,92.992,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Enterainment",5603 +5604,spotify:track:3BSi5qoJGLab7rn7zfmTPA,A Groovy Kind of Love - 2016 Remaster,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:7yZHLfxqiGPbSQLrVJljah,The Singles (Expanded),spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,2016-10-14,https://i.scdn.co/image/ab67616d0000b2736731eabe4c268971eeed3c06,2,2,210346,https://p.scdn.co/mp3-preview/f3d27e0648c678c1826b2d786f2037bba9523f1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USRH11603370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.456,0.243,2.0,-12.19,1.0,0.0286,0.414,4.45e-06,0.116,0.19,144.13,4.0,,Rhino,"C © 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company, P ℗ 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company",5604 +5605,spotify:track:1wmeeILAnsQkxRz2HzedfS,"Hello, This Is Joannie (The Telephone Answering Machine Song)",spotify:artist:1VCjlBPsXgs5YMMFDWw6nA,Paul Evans,spotify:album:23POeW2ajskvW5eNcvbF2u,"Hello, This Is Joannie (The Telephone Answering Machine Song)",spotify:artist:1VCjlBPsXgs5YMMFDWw6nA,Paul Evans,2020-01-31,https://i.scdn.co/image/ab67616d0000b2734e0741af6336a9a8c9dcc80b,1,1,192380,https://p.scdn.co/mp3-preview/a7975fb099c1d974351dc170c8c80cd260c6a41c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBHN9200632,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.664,0.789,9.0,-10.878,1.0,0.0813,0.173,0.0,0.0775,0.717,110.434,4.0,,Ace Records,"C 2020 Ace Records, P 2020 Ace Records",5605 +5606,spotify:track:0oaZmCfI71eezWKoTbPX2x,Too Much Heaven,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:7byZfMkOymyVownmGhLara,Spirits Having Flown,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1979-01-01,https://i.scdn.co/image/ab67616d0000b2736a27f501e3aab4152749bec2,1,2,296000,https://p.scdn.co/mp3-preview/6ec2500ec15836124e1cbd393d468d1a23dd225c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW9400009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.505,0.433,6.0,-12.997,1.0,0.0589,0.436,9.87e-05,0.743,0.361,165.818,4.0,,Interscope/MCA,"C © 1979 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb under exclusive license to Capitol Music Group, P ℗ 1979 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb under exclusive license to Capitol Music Group",5606 +5607,spotify:track:197Fa8CFtKbcQGPsFoBY9u,Pass Out - Radio Edit,spotify:artist:0Tob4H0FLtEONHU1MjpUEp,Tinie Tempah,spotify:album:7xvhGzPH6QHexG740g9iLe,Pass Out,spotify:artist:0Tob4H0FLtEONHU1MjpUEp,Tinie Tempah,2010-02-26,https://i.scdn.co/image/ab67616d0000b2730290dcc49ada1a2c6130913d,1,2,236351,https://p.scdn.co/mp3-preview/25c079333d884795ed5c391ad249f383ac7e7700?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GB7TP0900005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,grime,pop rap",0.661,0.896,1.0,-3.212,1.0,0.318,0.0637,0.0,0.168,0.54,90.891,4.0,,Parlophone UK,"C © 2010 Disturbing London Records Limited under exclusive licence to Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 2010 Parlophone Records Ltd, P ℗ 2010 The copyright in this sound recording is owned by Disturbing London Records Limited under exclusive licence to Parlophone Records Ltd",5607 +5608,spotify:track:1Z55od5ridCb3eeavfNkIT,William Tell,spotify:artist:5WnGWf1AygeH76ZNUXU3b0,Sounds Incorporated,spotify:album:6YPr0zLHkThlFTLgGSILrK,Sounds Incorporated,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-02-03,https://i.scdn.co/image/ab67616d0000b2739facc66191aaf0eae700d455,1,1,124720,https://p.scdn.co/mp3-preview/55996af2e10b204307956c9c92b387827af1bccb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,GBAYE6400227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.643,0.925,0.0,-7.035,1.0,0.0937,0.189,0.438,0.0435,0.56,94.446,4.0,,Parlophone UK,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",5608 +5609,spotify:track:00BuKLSAFkaEkaVAgIMbeA,Telephone,"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:6vWDO969PvNqNYHIOW5v0m","Lady Gaga, Beyoncé",spotify:album:67j3NJodNRI8USUwKwTZA6,The Fame Monster (International Deluxe),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2009-01-01,https://i.scdn.co/image/ab67616d0000b2739bc57d66a2e1c9ed8ddc18f1,1,6,220626,https://p.scdn.co/mp3-preview/c8993ffddd8e8f0ec2d0fe7f42fea04e5e944232?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70905541,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop,pop,r&b",0.825,0.832,5.0,-5.853,0.0,0.0403,0.00587,0.000789,0.114,0.713,122.021,4.0,,Universal Music Group,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",5609 +5610,spotify:track:5rwdhliMmo0aAQ08vU0AOZ,Maps,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:4KXLjIEas8MTwwX3xpmAdC,V - Deluxe,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2015-05-18,https://i.scdn.co/image/ab67616d0000b2735430b6be862e01be82a50bc8,1,1,189960,https://p.scdn.co/mp3-preview/36f41e3d1e62e771fc4ceed91877785935881063?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USUM71407116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.742,0.713,1.0,-5.522,0.0,0.0303,0.0205,0.0,0.059,0.879,120.032,4.0,,Interscope Records*,"C © 2015 Interscope Records, P ℗ 2015 Interscope Records",5610 +5611,spotify:track:5iRQpPfF8skr0GLWYLRbaN,"Let It Go - From ""Frozen""/Soundtrack Version",spotify:artist:73Np75Wv2tju61Eo9Zw4IR,Idina Menzel,spotify:album:67qORPwmXFeB8AR6wD9XHX,Frozen (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-01-01,https://i.scdn.co/image/ab67616d0000b273a9d7486eb97f0c284505e918,1,5,223840,https://p.scdn.co/mp3-preview/f7bd2640bfcd23fa3476dc6982937bafec9dc98c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWD11366376,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,movie tunes,show tunes",0.539,0.487,5.0,-6.855,0.0,0.0311,0.546,0.0,0.12,0.37,137.062,4.0,,Walt Disney Records,"C © 2013 Disney Enterprises, Inc., P ℗ 2013 Walt Disney Records",5611 +5612,spotify:track:2WJVFqVQ3ivhAoAQWzEzeL,Starstruck,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),spotify:album:6QrZRFMwgFNXV0d5N7ndUW,Starstruck,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),2021-04-08,https://i.scdn.co/image/ab67616d0000b27317cb524296459ba0fcfda8ec,1,1,207755,https://p.scdn.co/mp3-preview/5aff2bf6e18666bac1fa0bb6b9dad60f42318354?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBUM72101293,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gauze pop,pop,pop dance,uk pop",0.555,0.879,9.0,-2.484,0.0,0.0983,0.011,0.0,0.298,0.691,113.852,4.0,,Polydor Records,"C © 2021 Universal Music Operations Limited, P ℗ 2021 Universal Music Operations Limited",5612 +5613,spotify:track:6rAGFY9D3ah6Lb7fUgbNNH,Fake A Smile,"spotify:artist:7vk5e3vY1uw9plTHJAMwjN, spotify:artist:3QJUFtGBGL05vo0kCJZsmT","Alan Walker, salem ilese",spotify:album:1leY6jsSJO6qjoZYUxE2fN,Fake A Smile,"spotify:artist:7vk5e3vY1uw9plTHJAMwjN, spotify:artist:3QJUFtGBGL05vo0kCJZsmT","Alan Walker, salem ilese",2021-02-19,https://i.scdn.co/image/ab67616d0000b2730509a9d3c5f798b3ed5443fc,1,1,168118,https://p.scdn.co/mp3-preview/f31b7dc018987a2d5839cbe00b338b3fc3bfe5e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,NOG842102010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electro house,alt z,modern indie pop",0.447,0.553,0.0,-4.817,1.0,0.0322,0.212,0.0,0.165,0.252,149.877,4.0,,Kreatell Music,P (P) 2021 Kreatell Music under exclusive license to Sony Music Entertainment Sweden AB,5613 +5614,spotify:track:6hs3SDnbO3f6VQuPO4KBEb,Send Me on My Way,spotify:artist:2M3vnW1p5w4uPRkLYTbvdB,Rusted Root,spotify:album:16rXhq1Hnf0568QnzYpHn3,Music From Party of Five,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1996-11-12,https://i.scdn.co/image/ab67616d0000b27361a02bd4428cc8d26dbef4f0,1,13,263333,https://p.scdn.co/mp3-preview/10a30c4b68683836017785f00e5246efe3379fde?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRE19600337,spotify:user:bradnumber1,2023-09-04T12:27:53Z,"jam band,pittsburgh rock",0.5,0.681,0.0,-9.556,1.0,0.0672,0.114,4.01e-05,0.139,0.745,119.46,4.0,,Warner Records,"C © 1996 Reprise Records, P ℗ 1996 Reprise Records",5614 +5615,spotify:track:4k90MjpmLMpwElf5q8YvbO,Tiny Dancer,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:6nvd1pwRgLrMez7fIiDq8z,The Greatest Hits 1970-2002,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,2002-01-01,https://i.scdn.co/image/ab67616d0000b2734a41dbd6a36756a6de43f04b,1,2,375853,https://p.scdn.co/mp3-preview/dec7d3447047ab13ad2c2be75e8e2916262f301b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMB7100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.423,0.464,0.0,-9.564,1.0,0.0273,0.308,0.000161,0.117,0.255,144.954,4.0,,Universal Music Group,"C © 2002 Mercury Records Limited, P ℗ 2002 Mercury Records Limited",5615 +5616,spotify:track:70cKcH1aK78mUJ2BlsGZ4h,Come Out And Play (Keep 'Em Separated) - Live,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:1Bycvax49QfoMUpuRT7HEB,Happy Hour!,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,2010-08-04,https://i.scdn.co/image/ab67616d0000b273d840a57eba646ae5bd942310,1,1,190906,https://p.scdn.co/mp3-preview/c601f8419a0c608ab620c864d5f58a0d8ce99266?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USSM10403253,spotify:user:bradnumber1,2022-08-31T00:19:44Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.435,0.953,3.0,-5.408,0.0,0.0838,0.0148,0.000137,0.436,0.849,80.556,4.0,,Round Hill Music (Offspring),"C © 2010 Round Hill Records, Manufactured by Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2010 Round Hill Records, Manufactured by Universal Music Enterprises, a Division of UMG Recordings, Inc.",5616 +5617,spotify:track:1yXf4r6w9g2ZyZnZmtxePP,Throw Your Hands Up (Dancar Kuduro),"spotify:artist:4vD6SOCmjO6xkPIzjRrQhK, spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:5bv5RplEOwdCvhq0EILh9E","Qwote, Pitbull, Lucenzo",spotify:album:0zUgDnVe4lIPrl4rXH3brU,Throw Your Hands Up (Dancar Kuduro),spotify:artist:4vD6SOCmjO6xkPIzjRrQhK,Qwote,2011-01-01,https://i.scdn.co/image/ab67616d0000b27396b2c174155f795c5bf70317,1,1,209908,https://p.scdn.co/mp3-preview/5b555d5f664fb0277c344a583ed7b2d5080c9039?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USUS11100331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,reggaeton",0.603,0.932,0.0,-4.912,1.0,0.313,0.161,0.0,0.402,0.741,129.984,4.0,,Universal Music Australia (Distribution),"C © 2011 Ultra Records Inc., P ℗ 2011 Ultra Records Inc., under exclusive license to Dax Music Pty Ltd T/A Central Station Records",5617 +5618,spotify:track:52vA3CYKZqZVdQnzRrdZt6,The Times They Are A-Changin',spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,spotify:album:7DZeLXvr9eTVpyI1OlqtcS,The Times They Are A-Changin',spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,1964-01-13,https://i.scdn.co/image/ab67616d0000b2733b812eed53f0d7e134fe446e,1,1,192053,https://p.scdn.co/mp3-preview/07332ab6db98a95764049b8934613d9b356df2c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM10007452,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,rock,roots rock,singer-songwriter",0.389,0.396,7.0,-7.999,1.0,0.0332,0.887,0.0,0.0828,0.585,171.86,3.0,,Columbia,"P Originally released 1964. All rights reserved by Columbia Records, a division of Sony Music Entertainment",5618 +5619,spotify:track:11TMDvYYx5yMkrLpZu2A1e,People Get Ready,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:2xKkVreE8yp081RclFY3SF,Telling Everybody,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,1996-11-29,https://i.scdn.co/image/ab67616d0000b273b8d41e26d050ba7e9b572ecf,1,12,197666,https://p.scdn.co/mp3-preview/4ffea328fa04377b0450bb387590b52337045692?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUSM09600120,spotify:user:bradnumber1,2023-01-31T06:23:43Z,"australian pop,australian rock,boy band",0.39,0.276,1.0,-12.245,1.0,0.106,0.757,0.0,0.0915,0.467,90.157,4.0,,Sony Music Entertainment,P (P) 1997 Sony Music Entertainment Australia Pty Ltd,5619 +5620,spotify:track:2v4HD5xA217fJLGJSEgj1g,Party Girl,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,spotify:album:6eV7zSl70eSrLqFsJoQFlq,Tommy's 22 Big Ones,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,2001-01-01,https://i.scdn.co/image/ab67616d0000b27375d6caa1027c62015ab9703c,1,8,156053,https://p.scdn.co/mp3-preview/fe1c1b9abc54716d49a0fb124cec7937fecf58b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USMC10201624,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,rock-and-roll",0.592,0.764,2.0,-8.181,1.0,0.0948,0.463,0.0271,0.311,0.696,136.109,4.0,,Geffen,"C © 2020 UMG Recordings, Inc., P This Compilation ℗ 2001 UMG Recordings, Inc.",5620 +5621,spotify:track:1lBfdnPOBKtphv7QmmkbTp,A Little Bit (Double M’s Radio Edit),spotify:artist:2MmMqHZWMkK4WwAeMmPP7X,Pandora,spotify:album:4Gj09KUosPZlCPDbwiUPBk,Skitzmix 2 (Mixed by Nick Skitz),spotify:artist:0b56YzqAu22jh2CDUYvbbx,Nick Skitz,2014-12-12,https://i.scdn.co/image/ab67616d0000b2736cf4d671f415d9eab069f143,1,2,214306,https://p.scdn.co/mp3-preview/5a0609267df0fdc7f9dd3c632c374a0b5fb94d0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUXL31400786,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.87,0.817,9.0,-9.02,1.0,0.0537,0.136,0.0164,0.079,0.847,131.994,4.0,,LNG Music,"C 2014 LNG Music, P 2014 LNG Music",5621 +5622,spotify:track:1JhP5jEC8NLDcSNjJWCAem,Total Eclipse of the Heart,spotify:artist:1RfiRshRC2YlSG4Y1zNkAE,Nicki French,spotify:album:6VqTNja1HXuYyc8a7QnUJr,Secrets,spotify:artist:1RfiRshRC2YlSG4Y1zNkAE,Nicki French,1995,https://i.scdn.co/image/ab67616d0000b2738e29e8e61d557b037e1e0b4b,1,1,235159,https://p.scdn.co/mp3-preview/24c8f843358cb0a593661fc5024ea415d894ba01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBRR9400019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,diva house,0.603,0.789,7.0,-8.939,1.0,0.0285,0.00682,0.0,0.11,0.486,136.049,4.0,,Mike Stock Music,"C MPG Ltd., P MPG Ltd.",5622 +5623,spotify:track:0JCAezTC5IlK1a9o0YBEsD,Don't Take It Personal (Just One of Dem Days),spotify:artist:6nzxy2wXs6tLgzEtqOkEi2,Monica,spotify:album:71mPApAzW9HkbUGdYzMQHb,Miss Thang,spotify:artist:6nzxy2wXs6tLgzEtqOkEi2,Monica,1995-07-18,https://i.scdn.co/image/ab67616d0000b2734bd2aba4ed75e367a3fa9706,1,2,258466,https://p.scdn.co/mp3-preview/4756b629ec724a5e1aa383a09099eea5d1ba69aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USAR19500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.731,0.355,8.0,-12.741,1.0,0.0603,0.00864,5.14e-05,0.0579,0.529,175.72,4.0,,Arista,P (P) 1995 Rowdy Records,5623 +5624,spotify:track:3bxtgzAeAZPdRtKoPL5GG2,Collide - Radio Edit,"spotify:artist:5lKZWd6HiSCLfnDGrq9RAm, spotify:artist:1vCWHaC5f2uS3yhpwWbIA6","Leona Lewis, Avicii",spotify:album:3GZwrOSPZpRGFlweFm2x7U,Collide (Radio Edit),"spotify:artist:5lKZWd6HiSCLfnDGrq9RAm, spotify:artist:1vCWHaC5f2uS3yhpwWbIA6","Leona Lewis, Avicii",2011-08-19,https://i.scdn.co/image/ab67616d0000b273065b1930bf1a81ad71fb1d16,1,1,239426,https://p.scdn.co/mp3-preview/5444947c23d664c790afd9300efb2a0c0e7ddbc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBHMU1100020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,dance pop,pop,talent show,dance pop,edm,pop,pop dance",0.595,0.745,6.0,-2.053,1.0,0.0259,0.0717,1.71e-06,0.448,0.459,124.993,4.0,,Syco Music UK,P (P) 2011 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,5624 +5625,spotify:track:3hgCNNIVevLUQGtnIBz0AW,I (Who Have Nothing),spotify:artist:23U4BazsWheaHKYgKGnnkl,Normie Rowe,spotify:album:0F3smCoP8sLUvuLbu0W5mH,Greatest Hits,spotify:artist:23U4BazsWheaHKYgKGnnkl,Normie Rowe,2007-02-06,https://i.scdn.co/image/ab67616d0000b27397e694959d6240a264f0ce70,1,8,131706,https://p.scdn.co/mp3-preview/8b5183881df013f978af61daaec75b38a3a83c9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,AUFE07400054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,cabaret",0.43,0.322,1.0,-12.679,0.0,0.0355,0.509,8.71e-05,0.0713,0.361,113.76,3.0,,WM Australia,"C © 1974 Sunshine Records, P ℗ 1974 Sunshine Records",5625 +5626,spotify:track:25ceFvWSaI3zoy9hhNYDqu,Cat People (Putting Out Fire) - 2018 Remaster,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,spotify:album:4NwG11AsDJluT732lSjMrV,Let's Dance (2018 Remaster),spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,1983-04-14,https://i.scdn.co/image/ab67616d0000b273db0917ddd4139153bc1d1a1a,1,7,309960,https://p.scdn.co/mp3-preview/aa9417995132d5692590edda167812a4c2306106?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USJT11700486,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,glam rock,permanent wave,rock",0.502,0.867,10.0,-5.631,1.0,0.0501,0.063,0.000395,0.0918,0.752,128.295,4.0,,Parlophone UK,"C © 2018 TBC, P ℗ 2018 TBC",5626 +5627,spotify:track:6p8LNHMqJiUMjPXy4rnO5H,It's Now or Never,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0uJJdEZ8sRLNPoKEkjvqTD,Elvis 30 #1 Hits (Expanded Edition),spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2022-02-18,https://i.scdn.co/image/ab67616d0000b2735cc9e097906397c45324ea08,1,15,194600,https://p.scdn.co/mp3-preview/385505a81458e2dc195c585c642b753b592dc0a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USRC10200339,spotify:user:bradnumber1,2023-08-05T14:26:26Z,"rock-and-roll,rockabilly",0.645,0.493,4.0,-9.311,1.0,0.0344,0.641,0.0094,0.286,0.753,126.4,4.0,,RCA/Legacy,P This Compilation (P) 2022 Sony Music Entertainment,5627 +5628,spotify:track:3EOQNjCKFrFBdYZOZ6D0qD,City Low,spotify:artist:5g3nAtwyoQFlhdK8mSU4I3,Caramel Blue,spotify:album:3BtBNkSHnOOsCBLDty7EaM,Gold Bars & Cuban Cigars,spotify:artist:5g3nAtwyoQFlhdK8mSU4I3,Caramel Blue,2021-05-09,https://i.scdn.co/image/ab67616d0000b273e76dd8c1888dc883c772c9d8,1,4,259135,https://p.scdn.co/mp3-preview/5e3d6b0cfe54bbfc80589aeda867a8b21f31008d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,QZHN62128718,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.538,0.428,4.0,-9.241,0.0,0.0248,0.321,0.0,0.103,0.181,97.949,4.0,,3034305 Records DK,"C 2021 3034305 Records DK, P 2021 3034305 Records DK",5628 +5629,spotify:track:0St3qGRbDW3LMw7lMpzTbA,Bounce - Original Version,spotify:artist:7e52Ytzjj1q71DUj2cSlch,Sarah Connor,spotify:album:0vmQwMo66mLfAwSalSCs7y,Unbelievable,spotify:artist:7e52Ytzjj1q71DUj2cSlch,Sarah Connor,2002-01-01,https://i.scdn.co/image/ab67616d0000b273135ff9dea414b672501147ad,1,6,251733,https://p.scdn.co/mp3-preview/30ad00421acb1f91202f72066880828e513d962f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEE860201044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,german pop,0.77,0.825,1.0,-5.324,0.0,0.158,0.124,0.0,0.07,0.925,94.979,4.0,,X-cell Records,"C © 2002 X-cell Records, a division of Universal Music GmbH, P ℗ 2002 X-cell Records, a division of Universal Music GmbH",5629 +5630,spotify:track:6EMQo2suHaUYZVsbGVTxSZ,Jealous Guy,spotify:artist:3fhOTtm0LBJ3Ojn4hIljLo,Roxy Music,spotify:album:6yui99cp2Q3dosoHtiPJk7,The Best Of Roxy Music,spotify:artist:3fhOTtm0LBJ3Ojn4hIljLo,Roxy Music,2001-01-01,https://i.scdn.co/image/ab67616d0000b273cdd6f71f3d22476a9a1319cd,1,3,297306,https://p.scdn.co/mp3-preview/786f8fe8fb2ccabd76e865c081578f52ba12fe33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAAA0000362,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,glam rock,melancholia,new romantic,new wave,new wave pop,sophisti-pop",0.512,0.622,4.0,-7.651,0.0,0.0267,0.039,0.00568,0.128,0.378,77.633,4.0,,EG Records,"C © 2001 Virgin Records Limited, P This Compilation ℗ 2001 Virgin Records Limited",5630 +5631,spotify:track:7J170T0QGtd18ii8vHXk2e,She Has to Be Loved,spotify:artist:604iqbiglyTgxMeKkvlBGc,Jenny Morris,spotify:album:4cY0XPiwWj15YWpfkVNg4P,Shiver,spotify:artist:604iqbiglyTgxMeKkvlBGc,Jenny Morris,1989-07-24,https://i.scdn.co/image/ab67616d0000b2735e9e440b7bacf581719b1f19,1,3,247333,https://p.scdn.co/mp3-preview/5472740f18ba28c5dd662a88c3b93193852ce248?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUWA00900528,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic nz pop,0.713,0.641,7.0,-8.269,1.0,0.0289,0.142,0.00122,0.169,0.66,108.59,4.0,,WM Australia,"C © 1989 Warner Music Australia Pty Limited, P ℗ 1989 Warner Music Australia Pty Limited",5631 +5632,spotify:track:38ch7Tu4x3oMbmV2HjMG3q,Better Days,spotify:artist:1qAMxE8YRo3KREMiKiyUkV,Pete Murray,spotify:album:58Ext8CuY1rzRlM3WHHhbB,See The Sun,spotify:artist:1qAMxE8YRo3KREMiKiyUkV,Pete Murray,2005-09-25,https://i.scdn.co/image/ab67616d0000b273cbcfcb445554b5522603f0b2,1,5,222986,https://p.scdn.co/mp3-preview/85cf59a9e27ab1f6714f7eb6cb901978d49790b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUBM00599201,spotify:user:bradnumber1,2022-02-14T20:31:58Z,"australian pop,australian rock",0.638,0.571,1.0,-7.311,1.0,0.0248,0.141,0.000141,0.275,0.339,113.978,4.0,,Columbia,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,5632 +5633,spotify:track:7v4lL0VxQV8yTv29Tpf2sH,Head Down,"spotify:artist:7f5Zgnp2spUuuzKplmRkt7, spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc","Lost Frequencies, Bastille",spotify:album:4FUeHNijvgnMa27510RDC2,Head Down,"spotify:artist:7f5Zgnp2spUuuzKplmRkt7, spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc","Lost Frequencies, Bastille",2023-12-29,https://i.scdn.co/image/ab67616d0000b273eea93a629030525d2297ab5e,1,1,173888,https://p.scdn.co/mp3-preview/b48bc34bf037629e739d584786dcaa3d043002ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,BEHP42300071,spotify:user:bradnumber1,2023-12-30T04:10:47Z,"belgian edm,edm,pop dance,tropical house,metropopolis,modern rock,pop",0.73,0.845,4.0,-6.702,0.0,0.131,0.304,1.12e-05,0.206,0.424,123.992,4.0,,Epic Amsterdam,"P (P) 2023 Lost & Cie Music SPRL exclusively licensed to Epic Amsterdam, with courtesy of Sony Music Entertainment Belgium NV/SA",5633 +5634,spotify:track:4aitU4belbggqbPGCDoZbD,Am I Ever Gonna See Your Face Again,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:6consdhyvvN4sgNQ7yMkcw,Their Finest Hour...And Then Some (Alberts Classic Series),spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,1992,https://i.scdn.co/image/ab67616d0000b273d4c9dd882041a596e6cb362f,1,19,202666,https://p.scdn.co/mp3-preview/dc8865560f98dca6125919715f8cd1f98389212a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AUAP07600068,spotify:user:bradnumber1,2021-09-06T20:08:52Z,australian rock,0.297,0.925,4.0,-3.168,1.0,0.0923,0.0256,0.0,0.0684,0.668,167.463,4.0,,Albert Productions,"C © 1992 BMG AM Pty Ltd., P ℗ 1992 BMG AM Pty Ltd.",5634 +5635,spotify:track:36OkygdRZI6Nhspmuzkpn9,Embrace,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,spotify:album:1ghXnO9IptRdjiNedwB6cv,PNAU,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,2009-01-01,https://i.scdn.co/image/ab67616d0000b2732a9ac1297ea1ffbe0eedb221,1,9,329773,https://p.scdn.co/mp3-preview/3f57c5745ec35e6e5f7a9108edccca9353edbe61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV00700763,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,aussietronica,australian dance,australian electropop",0.638,0.955,6.0,-4.008,0.0,0.0405,0.00275,0.000379,0.223,0.415,127.988,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",5635 +5636,spotify:track:0YDwU85oVyHFyoEOLpOsKp,Look What You've Done,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,spotify:album:0EVrAzQ5qfFrJxcuwjXJBQ,Get Born,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,2003,https://i.scdn.co/image/ab67616d0000b273c87b336c01f7c7c6207c47d4,1,4,230893,https://p.scdn.co/mp3-preview/d5e526fc3487457dd5be050f07a751789ed26f84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10340563,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,pop rock",0.4,0.541,0.0,-6.84,1.0,0.0252,0.391,0.00109,0.146,0.325,74.422,4.0,,Bloodlines,"C 2003 Real Horrorshow Pty. Ltd., P 2003 Real Horrorshow Pty. Ltd.",5636 +5637,spotify:track:7qUTZEf6bgiApJEXpMAH5y,Can't Smile Without You,spotify:artist:3alW3LYQS8K29z8C8NSLIX,Barry Manilow,spotify:album:1ILknbSc8Ll0TqA8oJKkNV,Even Now,spotify:artist:3alW3LYQS8K29z8C8NSLIX,Barry Manilow,1978,https://i.scdn.co/image/ab67616d0000b273419d720d1c3b36cfc6eba201,1,4,193440,https://p.scdn.co/mp3-preview/3683d7b0c1bb847a0816dfcc5e17a76cfa287d9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAR17700175,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock,yacht rock",0.419,0.516,7.0,-9.937,1.0,0.0335,0.494,4.41e-06,0.148,0.476,97.884,4.0,,Arista/Legacy,"P (P) 1978, 2006 Arista Records LLC",5637 +5638,spotify:track:2yUqmLwj09WljkKnKDFuMy,Before Too Long,spotify:artist:0SNWoGaDlrCompmg9rXeNq,Paul Kelly,spotify:album:2kmbLohyHyFyeIb684f6rA,Paul Kelly's Greatest Hits: Songs From The South: Volume 1 & 2,spotify:artist:0SNWoGaDlrCompmg9rXeNq,Paul Kelly,2010-01-01,https://i.scdn.co/image/ab67616d0000b273ddbf3183a492d4ab1b0e1b80,1,3,203186,https://p.scdn.co/mp3-preview/b668da81f7d97ae68912bbc7c19a53621e2fc6b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUYP00820004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian rock",0.545,0.848,2.0,-5.98,1.0,0.0285,0.00057,0.0194,0.192,0.776,133.826,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Paul Kelly, P This Compilation ℗ 2010 Paul Kelly",5638 +5639,spotify:track:4fINc8dnfcz7AdhFYVA4i7,It Girl,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:31tCg5RXhY5jpagfCPcQa2,Future History (Deluxe Edition),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2011-09-16,https://i.scdn.co/image/ab67616d0000b27381541b43fcbc56488853de26,1,2,192200,https://p.scdn.co/mp3-preview/667e4a9969ef26499f3cc0e0cc1e99471dee8edc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USWB11102211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.668,0.718,1.0,-4.736,0.0,0.0605,0.0165,0.0,0.104,0.345,91.993,4.0,,Beluga Heights/Warner Records,"C © 2011 Warner Records Inc., P ℗ 2011 Warner Records Inc.",5639 +5640,spotify:track:27NdsozWYH0EAnrhO4RAZ2,19,spotify:artist:0SgDfSfWqkZMW96aT2oQZ1,Paul Hardcastle,spotify:album:7tgsgsiypWVQFxbNEnPHik,This Is... 1985,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-08-08,https://i.scdn.co/image/ab67616d0000b27322501051dee2cd4c0241a6aa,1,4,210853,https://p.scdn.co/mp3-preview/d5da14781154d27dc0c2adddbbc364d53a1259fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK8500015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,smooth jazz,0.753,0.897,11.0,-8.54,1.0,0.073,0.00281,0.73,0.351,0.937,117.937,4.0,,Parlophone UK,"C 2008 Parlophone Records Ltd, a Warner Music Group Company, P 2008 Parlophone Records Ltd, a Warner Music Group Company",5640 +5641,spotify:track:5j6bYpxM2wwvVzgEyc1LPX,Beating Heart,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,spotify:album:2uNFpEVey5RsxzTdoDmjiz,Beautiful Lies (Deluxe),spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,2016-03-25,https://i.scdn.co/image/ab67616d0000b273ceb1cccb864424fc5c2bc1e7,1,15,230426,https://p.scdn.co/mp3-preview/d43707a7b7cc276598b1f6740600b66cb663d91a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAHS1600033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,uk pop,viral pop",0.385,0.401,6.0,-6.967,1.0,0.0329,0.64,1.85e-06,0.118,0.218,139.789,4.0,,Atlantic Records UK,"C © 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company, P ℗ 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company",5641 +5642,spotify:track:7a8tyR4KZCq7BWUXcxIB7p,"All For Love - From ""The Three Musketeers"" Soundtrack","spotify:artist:3Z02hBLubJxuFJfhacLSDc, spotify:artist:0Ty63ceoRnnJKVEYP0VQpk, spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT","Bryan Adams, Sting, Rod Stewart",spotify:album:3TUsU5vU8MIPNk8K3n0rea,The Best Of Me,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1999-01-01,https://i.scdn.co/image/ab67616d0000b273b2ff0bbd92e0489bb95cccaf,1,6,280026,https://p.scdn.co/mp3-preview/97f5e9b0f62cfc4eb93ecae11adc624d2aaf726a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19910000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock,permanent wave,soft rock,sophisti-pop,mellow gold,soft rock",0.506,0.573,2.0,-6.56,1.0,0.0282,0.185,0.0,0.119,0.0958,74.806,4.0,,Universal Music Australia Pty. Ltd.,"C © 1999 A&M Records Inc., P ℗ 1999 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",5642 +5643,spotify:track:4jOtC832PyIXlCVPRElfQu,Troublemaker (feat. Flo Rida),"spotify:artist:3whuHq0yGx60atvA2RCVRW, spotify:artist:0jnsk9HBra6NMjO2oANoPY","Olly Murs, Flo Rida",spotify:album:2hOuWIWkhIxKXj6dUVI734,Right Place Right Time,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2012-11-23,https://i.scdn.co/image/ab67616d0000b27383a1b851143e6adaf56db39b,1,2,185586,https://p.scdn.co/mp3-preview/9569ed39233720069f71c9e0503af9b2862c33d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1201891,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop,dance pop,miami hip hop,pop,pop rap",0.762,0.863,0.0,-3.689,0.0,0.0565,0.015,0.0,0.125,0.965,106.008,4.0,,Epic,P (P) 2012 Sony Music Entertainment UK Limited,5643 +5644,spotify:track:07TCY69AXkj3E7LC19vq45,House of Love,spotify:artist:6lOC7lwSO1ql4Gc2Y3QObY,East 17,spotify:album:7MQC2dK8HwlubTC4efNPAO,Walthamstow,spotify:artist:6lOC7lwSO1ql4Gc2Y3QObY,East 17,1993-02-12,https://i.scdn.co/image/ab67616d0000b27395ed4e1097b1704e2408acc3,1,1,269626,https://p.scdn.co/mp3-preview/f3e9e6d4c76bf2fec7901c2d4b220838976a7976?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP9200290,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop",0.618,0.986,5.0,-3.916,1.0,0.108,0.0199,0.0,0.176,0.254,117.535,4.0,,London Records,"C 1992 London Records 90 Ltd., P 1992 London Records 90 Ltd. except tracks 9 and 11 1993 London Records 90 Ltd.",5644 +5645,spotify:track:59mUgn4E4DWcB2lh5oRG2I,If You Can't Give Me Love - 2017 Remaster,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,spotify:album:1F8Hmjm8xJC1OhSEMn7pDR,If You Knew Suzi… (2017 Remaster),spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,1978-08-12,https://i.scdn.co/image/ab67616d0000b273cc802c70869d97777ac42ed6,1,6,232994,https://p.scdn.co/mp3-preview/39b1bcaacc04c109c78b1e985d5531fd6fc8a8c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UKKP21700074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.667,0.66,9.0,-8.819,1.0,0.0348,0.117,0.000854,0.0707,0.905,133.867,4.0,,Chrysalis Records,"C 1978 Chrysalis Records Limited, P 2017 Chrysalis Records Limited",5645 +5646,spotify:track:5w6TVvv71F8px5cObg2xnx,Good Time,"spotify:artist:07QEuhtrNmmZ0zEcqE9SF6, spotify:artist:6sFIWsNpZYqfjUpaCgueju","Owl City, Carly Rae Jepsen",spotify:album:08PEPdXn5QdXatDKjrJGk3,The Midsummer Station,spotify:artist:07QEuhtrNmmZ0zEcqE9SF6,Owl City,2012-01-01,https://i.scdn.co/image/ab67616d0000b2734e5ffd403bf086834f690228,1,7,205933,https://p.scdn.co/mp3-preview/948112ba8bf947a429389e2dd71c990989027a7e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71206288,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,pop,canadian pop,dance pop,pop",0.554,0.878,3.0,-4.271,1.0,0.134,0.0216,5.76e-06,0.362,0.682,126.045,4.0,,Universal Music Group,"C © 2012 Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2012 Universal Republic Records, a division of UMG Recordings, Inc.",5646 +5647,spotify:track:5xD021bM8VbqrhCVhxRozx,Message In A Bottle - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:5fMAuIxI96lqdSPqUGwlXd,Reggatta De Blanc,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1979-10-02,https://i.scdn.co/image/ab67616d0000b27307f317a3de9fb398457b3462,1,1,290280,https://p.scdn.co/mp3-preview/065b9b3a34d9153ff2985426acfa55b8196ba50e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM0201170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.582,0.81,1.0,-7.024,0.0,0.0396,0.0338,1.68e-05,0.202,0.875,151.006,4.0,,A&M,"C © 2003 A&M Records, P ℗ 2003 A&M Records",5647 +5648,spotify:track:7Bg5EBxG5hlIPrEZpAYQlc,What Would You Do? - Radio Edit,spotify:artist:0LlPal5iJGcCWwZp8VefVs,City High,spotify:album:67ma4XvpbAfD4UpUPRwRN4,RnB Fridays Vol. 3,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-04-21,https://i.scdn.co/image/ab67616d0000b2730e545611e016c993b81bbbce,1,12,176440,https://p.scdn.co/mp3-preview/cede7c4fa9f04d67dde3b476132565e9d7d93630?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USIR10110000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.74,0.843,7.0,-5.422,1.0,0.241,0.148,0.0,0.364,0.838,95.934,4.0,,Universal Music Australia Pty. Ltd.,"C © 2017 Universal Music Australia Pty Ltd., P This Compilation ℗ 2017 Universal Music Australia Pty Ltd.",5648 +5649,spotify:track:4VWvhAyaJ86K2Bq4YZwIVu,Toxic,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:4GseLPnzBsZ8kQYEBvYYwX,In The Zone,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2003,https://i.scdn.co/image/ab67616d0000b273d02344f5f66245ed15d78005,1,6,198800,https://p.scdn.co/mp3-preview/6de2791f84c1d637a0e24734b6df3997cc742da4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI10301005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.778,0.845,5.0,-3.958,0.0,0.117,0.0253,0.0215,0.227,0.918,143.025,4.0,,Jive,P (P) 2003 Zomba Recording LLC,5649 +5650,spotify:track:72rMLuBURxIKQ6Js9PNmTW,You Pick Me Up,spotify:artist:1qAMxE8YRo3KREMiKiyUkV,Pete Murray,spotify:album:3MVT9z5TQQSvXO3ej5OV74,Summer At Eureka,spotify:artist:1qAMxE8YRo3KREMiKiyUkV,Pete Murray,2008-05-16,https://i.scdn.co/image/ab67616d0000b27376910dee9e79cdcfe6decaff,1,3,272546,https://p.scdn.co/mp3-preview/3d3ae350f10a5eb6a44805d611938cab4ca3d3d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM00800075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.564,0.805,5.0,-7.035,0.0,0.0457,0.0313,7.36e-05,0.102,0.37,150.058,4.0,,Sony Music Entertainment,P (P) 2008 Sony Music Entertainment Australia Pty Ltd.,5650 +5651,spotify:track:2II03llydk4YnkBBvoYB3B,Frozen,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:6cuNyrSmRjBeekioLdLkvI,Ray of Light,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1998-03-03,https://i.scdn.co/image/ab67616d0000b27391d080c66f2425c23c6eadf8,1,9,367333,https://p.scdn.co/mp3-preview/cab312d8ac7ac13730ba81a0372853e76db560b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USWB19800001,spotify:user:bradnumber1,2022-06-14T11:19:10Z,"dance pop,pop",0.601,0.617,1.0,-10.917,1.0,0.0354,0.661,0.0148,0.149,0.31,108.013,4.0,,Warner Records/Maverick,"C © 1998 Warner Records Inc., P ℗ 1998 Warner Records Inc.",5651 +5652,spotify:track:0rwTEVbCyboOVnz0lCEq72,My Boyfriend's Back,spotify:artist:6YtJeguOS8yoMkmLLnzU7q,The Angels,spotify:album:6LVEJE3JsdAUXSMQL8ACIN,My Boyfriend's Back,spotify:artist:6YtJeguOS8yoMkmLLnzU7q,The Angels,2001-09-20,https://i.scdn.co/image/ab67616d0000b27332ab04715db3198a5f82f781,1,1,155271,https://p.scdn.co/mp3-preview/109ae8ec142db7f548af0de20f409f373c05f18f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,ZA42A1530441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,classic girl group",0.691,0.563,3.0,-14.82,1.0,0.0885,0.818,0.0,0.204,0.971,136.013,4.0,,TP4 Music,"C 2015 TP4 Music, P 2015 TP4 Music",5652 +5653,spotify:track:5hHMcyWj45QaN2YEuBm6lr,This Ain't a Love Song - Radio Edit,spotify:artist:2wpJOPmf1TIOzrB9mzHifd,Scouting For Girls,spotify:album:5dpD3XV5qPHwBRFJcRI99T,Greatest Hits,spotify:artist:2wpJOPmf1TIOzrB9mzHifd,Scouting For Girls,2013-07-29,https://i.scdn.co/image/ab67616d0000b273fefd55087eb06223dfd71292,1,7,188586,,False,0,GBARL0901558,spotify:user:bradnumber1,2021-08-08T09:26:31Z,talent show,0.465,0.908,0.0,-3.411,1.0,0.0449,0.000537,0.0,0.0929,0.573,176.742,4.0,,Epic,P This compilation (P) 2013 Sony Music Entertainment UK Limited,5653 +5654,spotify:track:3ZZq9396zv8pcn5GYVhxUi,Down Under,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,spotify:album:4HDJMKkwAMVFewqfZcmf84,Business As Usual,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,1981-11-09,https://i.scdn.co/image/ab67616d0000b273aa5e4c9da271951ac0b31fa2,1,3,222320,https://p.scdn.co/mp3-preview/7caffe3fc98c828bdfdd88022a6b331250fdd1ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USSM18100411,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,rock,soft rock",0.739,0.459,11.0,-14.42,0.0,0.0294,0.129,0.0194,0.0474,0.892,107.115,4.0,,Columbia,P 1982 CBS Inc.,5654 +5655,spotify:track:3mcG2NI5G5vhrQtRda1YnA,The Middle,spotify:artist:3Ayl7mCk0nScecqOzvNp6s,Jimmy Eat World,spotify:album:2ZuFyQ3E5n1L0VA9iyH0YV,Bleed American (Deluxe Edition),spotify:artist:3Ayl7mCk0nScecqOzvNp6s,Jimmy Eat World,2001,https://i.scdn.co/image/ab67616d0000b273b5ec73a1aa766b71aaeeed5e,1,3,168253,https://p.scdn.co/mp3-preview/5524bcb363f648a35571d9507d2d585bc9a0adc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USDW10110256,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,emo,modern power pop,modern rock,neon pop punk,pop punk,pop rock,post-grunge,punk,rock",0.629,0.897,2.0,-3.401,1.0,0.0483,0.0424,0.0,0.263,0.93,161.944,4.0,,Interscope,"C © 2008 Geffen Records, P ℗ 2008 Geffen Records",5655 +5656,spotify:track:2VNTtjTOgs4fuPFhgjQU3e,Dinosaur,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,spotify:album:4ZAt2G4EguE7sBlmcA22Mp,Seizures,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,2009-01-01,https://i.scdn.co/image/ab67616d0000b27334292920eeb06dd4071061b8,1,11,188720,https://p.scdn.co/mp3-preview/ff0aa830790cfafafceb8a13c983c01eaf4ef31e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUEL00900033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussie emo,australian alternative rock,australian indie",0.517,0.441,11.0,-11.689,1.0,0.0267,0.365,0.0,0.294,0.349,83.023,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Eleven: A Music Company, P ℗ 2009 Eleven: A Music Company",5656 +5657,spotify:track:7mfuBKNSacIYlwEHCjMfAL,Bad Influence,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2MqP4akeOQpLkq7jpQqlHT,Funhouse: The Tour Edition,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2008,https://i.scdn.co/image/ab67616d0000b273faef39535383dcf65ab03f02,1,6,216293,https://p.scdn.co/mp3-preview/d14341f2d78ee5a7cc6fd0db27119800182be921?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF20800183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.672,0.9,2.0,-4.099,1.0,0.059,0.000526,2.67e-06,0.0495,0.737,138.091,4.0,,LaFace Records,"P (P) 2008, 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",5657 +5658,spotify:track:5Mmk2ii6laakqfeCT7OnVD,Thong Song,spotify:artist:6x9QLdzo6eBZxJ1bHsDkjg,Sisqo,spotify:album:0nyora4kbjBGE4d1B9gxnm,Unleash The Dragon,spotify:artist:6x9QLdzo6eBZxJ1bHsDkjg,Sisqo,1999-11-30,https://i.scdn.co/image/ab67616d0000b273227393028d2b83ced8e74d9b,1,8,253733,https://p.scdn.co/mp3-preview/6ff0fdd232b5d0434f1e30f1a86c47a3890c83aa?cid=9950ac751e34487dbbe027c4fd7f8e99,True,69,USDJ29905218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.707,0.888,2.0,-6.959,1.0,0.0654,0.12,9.64e-05,0.07,0.714,121.543,4.0,,Def Jam Recordings,"C © 1999 UMG Recordings, Inc., P ℗ 1999 UMG Recordings, Inc.",5658 +5659,spotify:track:6J17MkMmuzBiIOjRH6MOBZ,Rock and Roll Ain't Noise Pollution,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:6mUdeDZCsExyJLMdAfDuwh,Back In Black,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1980-07-25,https://i.scdn.co/image/ab67616d0000b2730b51f8d91f3a21e8426361ae,1,10,266040,https://p.scdn.co/mp3-preview/48134c10f34bb8e7508d37c611e0267192249e4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,AUAP08000050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.576,0.659,9.0,-5.617,1.0,0.0383,0.041,0.0,0.0587,0.717,94.853,4.0,,Columbia,P (P) 1980 Leidseplein Presse B.V.,5659 +5660,spotify:track:49KhRYxcukqBtmeSy44s2B,So What,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:21tsMIrRLUKFwfvX9oxQZR,Funhouse,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2008-10-24,https://i.scdn.co/image/ab67616d0000b2737ec845b0eb9caba945adc96b,1,1,215160,https://p.scdn.co/mp3-preview/08fa5bd9ea33cbe3de928dae53c095125cf3a770?cid=9950ac751e34487dbbe027c4fd7f8e99,True,45,USLF20800067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.537,0.866,11.0,-3.08,0.0,0.0445,0.000308,1.44e-06,0.382,0.412,126.003,4.0,,LaFace Records,"P (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",5660 +5661,spotify:track:607TnAAg6H7qFi1dkF1qi4,Lover Please,spotify:artist:4WL6MC4jDW7w7K9hfc4MVS,Clyde McPhatter,spotify:album:4qynx0zYdI1K0OpIQDJhYs,Lover Please/The Complete MGM & Mercury Singles,spotify:artist:4WL6MC4jDW7w7K9hfc4MVS,Clyde McPhatter,2010-01-01,https://i.scdn.co/image/ab67616d0000b27303c1d5025633f72746ce6178,2,5,116240,https://p.scdn.co/mp3-preview/7e68bf32f45a42d64c283d177f26b15b91dd5623?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF056290002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.714,0.763,9.0,-5.341,1.0,0.222,0.766,0.0,0.147,0.961,84.374,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",5661 +5662,spotify:track:1GVj2x3lXqvK4TaYF41rxc,Superman (It's Not Easy),spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,spotify:album:187HV0h26fG3mkRsySp5Lj,"Songs From Dawson's Creek, Vol. II",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2000-09-29,https://i.scdn.co/image/ab67616d0000b273bce5ea610d97401b08bd0a9b,1,6,220773,https://p.scdn.co/mp3-preview/f1348ec9ac22f53f1ef9eedb27256efd56e374d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USSM10009716,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop rock",0.529,0.471,0.0,-7.586,1.0,0.0267,0.0589,0.0,0.0567,0.17,107.464,4.0,,Columbia/Sony Music Soundtrax,P (P) 2000 Sony Music Entertainment Inc.,5662 +5663,spotify:track:6dgRHDTQJSoMQgVWPg323F,This Boys In Love,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:3gHuqLrIkfxDHXE29JGf5Y,Apocalypso (Deluxe),spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2008-04-12,https://i.scdn.co/image/ab67616d0000b273c500ca56d87a2f6b01d8ae7c,1,4,251986,https://p.scdn.co/mp3-preview/888925fc1f4d836baaa6151647256ac1c4dedee4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUUM70800165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.484,0.971,10.0,-2.746,0.0,0.0416,0.00137,0.00382,0.331,0.92,122.948,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Modular Recordings, P ℗ 2008 Modular Recordings",5663 +5664,spotify:track:6WzLKctOOeLdAFn1FjZ7f6,2 Hearts,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:07Y0NakmLDMHh9tsRwuhvz,X,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2007-11-21,https://i.scdn.co/image/ab67616d0000b2738dab97e7f75c2670bff60dcc,1,1,171266,https://p.scdn.co/mp3-preview/b3011dadecbd26943ffbba80e8c01cf554f68991?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBAYE0702916,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.667,0.621,7.0,-5.229,0.0,0.035,9.31e-05,4.33e-05,0.0572,0.492,111.996,4.0,,WM Australia,"C © 2007 KDB Pty Limited, P ℗ 2007 KDB Pty Limited",5664 +5665,spotify:track:4BFMQ15vXr626UOoZL8bUI,"(I've Had) The Time of My Life - From ""Dirty Dancing"" Soundtrack","spotify:artist:1XE70WwxhnrXNAJYQQ9ygx, spotify:artist:1BwHztAQKypBuy5WBEdJnG","Bill Medley, Jennifer Warnes",spotify:album:2Ll0rYVkAHV0QT7P2vknQc,Platinum & Gold Collection,spotify:artist:1BwHztAQKypBuy5WBEdJnG,Jennifer Warnes,2004-07-02,https://i.scdn.co/image/ab67616d0000b273927530e44371f0bc1bb296d4,1,12,289066,https://p.scdn.co/mp3-preview/5feaf05c959d64248b22ef12497710fd302db8ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USRC10300895,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.7,0.781,6.0,-8.255,0.0,0.0507,0.0874,0.00342,0.059,0.385,108.695,4.0,,BMG Heritage,P This compilation (P) 2004 BMG Music,5665 +5666,spotify:track:4Fpsa3pYc3gozrxHRRPvR6,Ray of Light,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:6cuNyrSmRjBeekioLdLkvI,Ray of Light,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1998-03-03,https://i.scdn.co/image/ab67616d0000b27391d080c66f2425c23c6eadf8,1,3,322000,https://p.scdn.co/mp3-preview/b96547084952b1926df53e5caa95f22963f13b1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USWB19701738,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.57,0.907,3.0,-7.822,1.0,0.0302,0.00111,0.618,0.0642,0.7,127.183,4.0,,Warner Records/Maverick,"C © 1998 Warner Records Inc., P ℗ 1998 Warner Records Inc.",5666 +5667,spotify:track:6MQdBUknEEIKktUGg4NMzO,She Cried,spotify:artist:0DAqhikcMKLo2lPADVz2fs,Jay & The Americans,spotify:album:4hwFFfpDp28EYWbVZoZ9pi,Complete United Artists Singles,spotify:artist:0DAqhikcMKLo2lPADVz2fs,Jay & The Americans,2009-01-01,https://i.scdn.co/image/ab67616d0000b2732ad3639fd3fee0fd03732105,1,4,157453,https://p.scdn.co/mp3-preview/10cb3bbedbbb6038f785b06f2972ed8e32cccbe1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USEM39000405,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,doo-wop,merseybeat,rock-and-roll",0.418,0.368,10.0,-10.726,0.0,0.0271,0.747,0.00115,0.124,0.552,99.952,4.0,,Capitol Records,"C © 2009 Capitol Records, LLC, P This Compilation ℗ 2009 Capitol Records, LLC",5667 +5668,spotify:track:5ry1HkEoemp8a9y6qhseIz,Big Time Operator,"spotify:artist:5lcXivnykIkBmcmaD2Vi99, spotify:artist:4FXyGmn2LpnVYV1cITKUnq","Jeff St John, The ID",spotify:album:7GmfGJaDS57rhGvFnzhD1d,Big Time Operators,"spotify:artist:5lcXivnykIkBmcmaD2Vi99, spotify:artist:4FXyGmn2LpnVYV1cITKUnq","Jeff St John, The ID",1967-07-01,https://i.scdn.co/image/ab67616d0000b27333428bd563a5708c9d7e870e,1,5,153333,https://p.scdn.co/mp3-preview/7b93fd423e022e54b188558952e28c4a82342dd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA2P1613820,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hammond organ,0.632,0.649,10.0,-7.649,1.0,0.0345,0.287,1.21e-06,0.334,0.87,129.019,4.0,,Laneway Music,"C (C) 1976 Laneway Music, P (P) 1967 Laneway Music",5668 +5669,spotify:track:1QlEKo14c6K637GGy9wlFY,Jukebox in Siberia - 2015 Remaster,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,spotify:album:4eiyoZSd1hCIOsUdMHYR1w,Hits'n'Riffs,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,2015-11-13,https://i.scdn.co/image/ab67616d0000b273d1df454194df63d318f728eb,1,17,232960,https://p.scdn.co/mp3-preview/6b82b2c5d1d271934dc9c073439db7edb0739bd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUWA01500424,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.513,0.962,5.0,-4.496,0.0,0.0573,0.371,8.23e-05,0.16,0.801,184.206,4.0,,WM Australia,"C © 2015 Warner Music Australia Pty. Limited, P ℗ This compilation 2015 Warner Music Australia Pty Ltd.",5669 +5670,spotify:track:69W8SeNtFmZCU36BKcz538,When You Walk In the Room - Mono Version,spotify:artist:4QmkLL9JOqM9dusHS1Hghe,The Searchers,spotify:album:0i2VaiznHnihFRJq7iHRG0,Needles & Pins,spotify:artist:4QmkLL9JOqM9dusHS1Hghe,The Searchers,1964-01-01,https://i.scdn.co/image/ab67616d0000b2735d0dd46b2e5b276e13a6296c,2,1,140480,https://p.scdn.co/mp3-preview/046c8cb86b5ccbb057d9df65643d45e311e1a9eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6400073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,rock-and-roll",0.486,0.951,9.0,-4.292,1.0,0.0458,0.227,0.0,0.123,0.901,134.328,4.0,,Sanctuary Records,"C © 2006 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2006 Sanctuary Records Group Ltd., a BMG Company",5670 +5671,spotify:track:5gPL7XvlYmX922oyxscYH4,One Crowded Hour,spotify:artist:0vntgse6gPZfthoW8kTTlR,Augie March,spotify:album:5weRHIv7WynyxZYcmbO7wK,"Moo, You Bloody Choir (Deluxe Edition)",spotify:artist:0vntgse6gPZfthoW8kTTlR,Augie March,2006,https://i.scdn.co/image/ab67616d0000b2731d4366b0b64907d1802eda92,1,1,290266,https://p.scdn.co/mp3-preview/1cff80e9c8a84cd7ba8b0d3a7f8a7a7af754eefa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUBM00599313,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian rock,melbourne indie",0.413,0.433,9.0,-8.45,1.0,0.033,0.318,0.0,0.127,0.365,113.423,3.0,,Sony Music Entertainment,P (P) 2006 Sony Music Entertainment Australia Pty Ltd,5671 +5672,spotify:track:7mldq42yDuxiUNn08nvzHO,Body Like A Back Road,spotify:artist:2kucQ9jQwuD8jWdtR9Ef38,Sam Hunt,spotify:album:2N7kidh1wA9EoLdf16QWrz,Body Like A Back Road,spotify:artist:2kucQ9jQwuD8jWdtR9Ef38,Sam Hunt,2017-02-01,https://i.scdn.co/image/ab67616d0000b27356277bb70d3a48ed654a0a57,1,1,165386,https://p.scdn.co/mp3-preview/c8574ecce127c06b6da32aee0ffa2bcb5534779b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USUM71700575,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country pop,modern country rock",0.732,0.458,5.0,-7.225,1.0,0.0311,0.447,0.0,0.136,0.661,98.938,4.0,,MCA Nashville,"C © 2017 MCA Nashville, a Division of UMG Recordings, Inc., P ℗ 2017 MCA Nashville, a Division of UMG Recordings, Inc.",5672 +5673,spotify:track:5SKO8cRf2i1z0MM5KlGJhh,Second Chance,spotify:artist:3zXw2Eh96iTT51pytzHdZi,38 Special,spotify:album:4KNhTfLUEigS7HDfRgg2Mt,Rock & Roll Strategy,spotify:artist:3zXw2Eh96iTT51pytzHdZi,38 Special,1988-01-01,https://i.scdn.co/image/ab67616d0000b27314d028ee7637cbef9550c669,1,6,304693,https://p.scdn.co/mp3-preview/f204cf50c45f89f0d7c681908e0e529786e4339f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM18801205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,glam metal,hard rock,mellow gold,rock,soft rock,southern rock",0.652,0.43,10.0,-12.853,1.0,0.0287,0.192,0.0,0.0636,0.534,118.741,4.0,,Universal Music Group,"C © 1988 A&M Records Inc., P ℗ 1988 UMG Recordings, Inc.",5673 +5674,spotify:track:06yFpl4XLDwILqaGOi3Yac,Do You See What I See?,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,spotify:album:4Sie3TbWFilySuRXhcXhtm,What's A Few Men,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,1987,https://i.scdn.co/image/ab67616d0000b273b938e76722060b55d0ac9f71,1,2,217680,https://p.scdn.co/mp3-preview/07d51c934fe866447f69e1b48f20b3c2f5c0a648?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00508470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.427,0.967,2.0,-2.376,1.0,0.0514,0.00364,0.000184,0.228,0.613,154.919,4.0,,Bloodlines,"C 1988 Bloodlines, P 1988 Bloodlines",5674 +5675,spotify:track:6LiK3fDottplOUsLHfhXto,Here Comes the Hotstepper,spotify:artist:1VJspRsoC6c0bvqhnSiFCs,iNi Kamoze,spotify:album:6odcotWv2xd7NP7RrGBS5b,90s 100 Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-11-28,https://i.scdn.co/image/ab67616d0000b273b212e660aec81b60a425d4f1,1,23,249066,https://p.scdn.co/mp3-preview/570b450af4453902a8d6579db1004b52ee842988?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSM19802296,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae,reggae fusion,roots reggae",0.882,0.456,7.0,-9.163,1.0,0.19,0.0178,0.000191,0.126,0.452,100.362,4.0,,Legacy Recordings,P This compilation (P) 2014 Sony Music Entertainment,5675 +5676,spotify:track:5mXz9WHwtBeLhv0zhkinMV,Maria Elena,spotify:artist:1TKifb1r4wnGbY5CYIwjGb,Los Indios Tabajaras,spotify:album:7qrX2GdsS3NmyG4yZbL6SY,Los Indios Tabajaras,spotify:artist:1TKifb1r4wnGbY5CYIwjGb,Los Indios Tabajaras,2000-11-25,https://i.scdn.co/image/ab67616d0000b2735c45d8f743654b537766c352,1,1,190160,https://p.scdn.co/mp3-preview/9fcd4c6bd30e5ea45cef8e333cb606656d4d04ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USBL10100334,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.676,0.174,11.0,-15.964,1.0,0.0452,0.965,0.858,0.126,0.596,84.066,4.0,,RCA Records Label,P This Compilation (P) 2000 SONY BMG MUSIC ENTERTAINMENT (Italy) S.p.A.,5676 +5677,spotify:track:57ebBLITHpRgRKGrlbxMZS,Faithfully,spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,spotify:album:2EFUNYmwxe0AOGxBORrfaw,Frontiers,spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,1983-02-22,https://i.scdn.co/image/ab67616d0000b273b9021ad16733196aacf253c1,1,5,267080,https://p.scdn.co/mp3-preview/0f176f371dbd6d5b421beb2a637d4130b1610d04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,USSM18300110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,rock,soft rock",0.39,0.644,11.0,-5.212,1.0,0.0281,0.0979,0.0,0.109,0.266,129.752,4.0,,Columbia/Legacy,P (P) 1983 Sony Music Entertainment,5677 +5678,spotify:track:6ft9PAgNOjmZ2kFVP7LGqb,Can't Take My Eyes off You,spotify:artist:3CDKmzJu6uwEGnPLLZffpD,Frankie Valli,spotify:album:0NUEQILaBzavnzcMEs4buZ,The Very Best of Frankie Valli & The 4 Seasons,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,2003-01-14,https://i.scdn.co/image/ab67616d0000b273b96c21e15c091eb98a6c88a4,1,15,203240,https://p.scdn.co/mp3-preview/939506d451586f6be13d48a3f7cb980ac5f996be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USRH10175215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,lounge",0.575,0.764,4.0,-7.448,1.0,0.0746,0.566,1.07e-05,0.0692,0.536,123.821,4.0,,Rhino,"C © 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products, P ℗ 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products",5678 +5679,spotify:track:6RWnrLR3GGvOdrUtNhYset,Lazy Love,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:36goBmChOcI9YozvUmCRdd,Lazy Love,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2012-01-01,https://i.scdn.co/image/ab67616d0000b273623ee2792a4483da7b383230,1,1,197333,https://p.scdn.co/mp3-preview/155a6dbf5c13856a22ee171d8685dae98a8262bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71204905,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.413,0.586,6.0,-8.084,1.0,0.111,0.223,0.0,0.0946,0.215,129.167,4.0,,Universal Music Group,"C (C) 2012 The Island Def Jam Music Group, P (P) 2012 The Island Def Jam Music Group",5679 +5680,spotify:track:0tQfrNzsjBDR2LKO76fiog,Can't Take My Eyes Off You,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,spotify:album:3MHTGwjWJhfcc3yBnvo6yh,Lady Antebellum,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,2008-01-01,https://i.scdn.co/image/ab67616d0000b2735cfe8f215e1276091dbab317,1,10,285160,https://p.scdn.co/mp3-preview/7c79a22c073de31d4fc690b0e5e32e4828d06936?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USCN10800391,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country pop,country road",0.247,0.271,9.0,-9.945,0.0,0.0289,0.46,0.0,0.188,0.127,82.988,5.0,,Capitol Nashville,"C © 2008 Capitol Records Nashville, P ℗ 2008 Capitol Records Nashville",5680 +5681,spotify:track:7eNEiO4RkrzjWJVBPOEJ1d,Can't Take My Eyes Off You,spotify:artist:3CDKmzJu6uwEGnPLLZffpD,Frankie Valli,spotify:album:0csktLKWM0dP828c04tXpl,Love Song Classics,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-12-06,https://i.scdn.co/image/ab67616d0000b2732bc4e12113836db487e6a3a5,1,6,203680,https://p.scdn.co/mp3-preview/203b8db25a4ab9ca62e5ca1626c39d9f09802ea6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRH11000238,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,lounge",0.581,0.78,4.0,-7.053,1.0,0.0567,0.508,1.07e-05,0.0799,0.561,123.711,4.0,,Warner Music Group - X5 Music Group,"C 2016 Warner Music Group - X5 Music Group, P 2016 Warner Music Group - X5 Music Group",5681 +5682,spotify:track:42et6fnHCw1HIPSrdPprMl,Semi-Charmed Life,spotify:artist:6TcnmlCSxihzWOQJ8k0rNS,Third Eye Blind,spotify:album:2gToC0XAblE9h3UZD6aAaQ,Third Eye Blind,spotify:artist:6TcnmlCSxihzWOQJ8k0rNS,Third Eye Blind,1997-04-08,https://i.scdn.co/image/ab67616d0000b2734139c9208eeed67d2a211beb,1,3,268360,https://p.scdn.co/mp3-preview/3c46a9f2954735cab673dd930ddc7d5e1a2fd1f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USEE19701203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,pop rock,post-grunge",0.64,0.864,7.0,-6.576,1.0,0.0314,0.00832,0.0,0.123,0.701,102.026,4.0,,Rhino/Elektra,"C © 1997 Elektra Entertainment, P ℗ 1997 Elektra Entertainment, manufactured and marketed by Rhino Entertainment Company, a Warner Music Group Company",5682 +5683,spotify:track:7i6r9KotUPQg3ozKKgEPIN,Seven Nation Army,spotify:artist:4F84IBURUo98rz4r61KF70,The White Stripes,spotify:album:48Atx1uS9J4KL5iQt3weoS,Elephant,spotify:artist:4F84IBURUo98rz4r61KF70,The White Stripes,2003-04-01,https://i.scdn.co/image/ab67616d0000b273588ca88c368d5f6eae5cb9b1,1,1,231733,https://p.scdn.co/mp3-preview/eca519f0a85862d9510d57d59df557081d375e3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USVT10300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,blues rock,detroit rock,garage rock,modern blues rock,permanent wave,punk blues,rock",0.726,0.463,0.0,-7.828,1.0,0.0799,0.00817,0.447,0.255,0.321,123.881,4.0,,Third Man Records,"C 2003 Third Man Records, LLC, P 2003 Third Man Records, LLC",5683 +5684,spotify:track:6p3AZhlMDsCZjRHHXm6YEr,Radioactive,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:66InqDn9SLDox1SADhsXKG,ORA,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2012-09-07,https://i.scdn.co/image/ab67616d0000b27347ef1a5b2207edf038cbdf74,1,5,251226,https://p.scdn.co/mp3-preview/95f46318eaed8e42f06f6428a6d950e77a58f57d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQX91201250,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.647,0.874,10.0,-2.057,0.0,0.0462,0.0187,0.000173,0.27,0.543,125.026,4.0,,Roc Nation/Columbia,"P (P) 2012 Roc Nation LLC, 2012 Ministry Of Sound Recordings",5684 +5685,spotify:track:0xQxIdksJKWa6vEUrFXOpy,Hangover,"spotify:artist:6MF9fzBmfXghAz953czmBC, spotify:artist:0jnsk9HBra6NMjO2oANoPY","Taio Cruz, Flo Rida",spotify:album:6gb2ElTs9F0IYPoW3XXo7B,TY.O,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,2011-01-01,https://i.scdn.co/image/ab67616d0000b273d7ed9ada47a0f517143771cd,1,1,244906,https://p.scdn.co/mp3-preview/7cba01942f1530ba8f755270b5cdd0e2a9c7c6a2?cid=9950ac751e34487dbbe027c4fd7f8e99,True,48,GBUM71108857,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,dance pop,miami hip hop,pop,pop rap",0.601,0.869,3.0,-3.202,1.0,0.0458,0.0112,0.0,0.0673,0.555,128.066,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Universal Island Records, a division of Universal Music Operations Limited",5685 +5686,spotify:track:69kz02an0zTBl2NQdshqnB,Tightrope,spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt,Illy,spotify:album:0AVD0hJCteRdN51sXiAEOz,Cinematic,spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt,Illy,2013-11-08,https://i.scdn.co/image/ab67616d0000b273214b8a06e0faec3acca9420e,1,7,292466,https://p.scdn.co/mp3-preview/f8e94ee459ee3e8b1d66a098ed6c03b025d48f69?cid=9950ac751e34487dbbe027c4fd7f8e99,True,49,AUWA01300204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian trap",0.821,0.586,2.0,-6.284,0.0,0.0515,0.329,3.3e-06,0.264,0.43,116.0,4.0,,WM Australia,"C © 2013 ONETWO, P ℗ 2013 ONETWO",5686 +5687,spotify:track:3maCmHhpmJ6hzJjEnm0ieT,I Never Told You,spotify:artist:6aZyMrc4doVtZyKNilOmwu,Colbie Caillat,spotify:album:2O9W3UoJ6veHK6htH4PpSo,Breakthrough (Int'l Deluxe Version),spotify:artist:6aZyMrc4doVtZyKNilOmwu,Colbie Caillat,2009-01-01,https://i.scdn.co/image/ab67616d0000b273881ee1c2b59038bd9ac90d33,1,7,232960,https://p.scdn.co/mp3-preview/0712dc4aa42714020976afde6c802bb06076124b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USUM70976692,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop",0.498,0.634,3.0,-5.214,1.0,0.0288,0.166,0.0,0.3,0.36,144.104,4.0,,Universal Records,"C © 2009 Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2009 Universal Republic Records, a division of UMG Recordings, Inc.",5687 +5688,spotify:track:6DzuDDN9q4N29QXWDuQ8sx,Cats In The Cradle,spotify:artist:3XsgWn63EnA4wYZBjVyxjf,Ugly Kid Joe,spotify:album:3uN1oiR3KIuj642PscLiAQ,America's Least Wanted,spotify:artist:3XsgWn63EnA4wYZBjVyxjf,Ugly Kid Joe,1992-01-01,https://i.scdn.co/image/ab67616d0000b2731b62da8cad32fecd70215c1b,1,9,242173,https://p.scdn.co/mp3-preview/25e432636041f3d95a8466a2d233abb74178132b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG19290051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk metal,funk rock,glam metal,hard rock",0.399,0.523,8.0,-9.437,1.0,0.0361,0.143,0.0,0.0769,0.436,74.836,4.0,,Universal Music Group,"C © 1992 The Island Def Jam Music Group, P ℗ 1992 The Island Def Jam Music Group",5688 +5689,spotify:track:1PkOf4ZqKsEFikhc1OPfhP,It's Not My Time,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,spotify:album:15e7Gu6OiY6LcMU1E2VGjX,3 Doors Down,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,2008-01-01,https://i.scdn.co/image/ab67616d0000b2730db7d8bc40d057295e52c78a,1,3,241960,https://p.scdn.co/mp3-preview/e6e9e47a248abe7bbaf40b71d2eb9f848aa392b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70803427,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.529,0.934,0.0,-4.808,1.0,0.0602,0.00153,5.16e-06,0.118,0.282,127.962,4.0,,Universal Music Group,"C © 2008 Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2008 Universal Republic Records, a division of UMG Recordings, Inc.",5689 +5690,spotify:track:4oX4WNqPhgKQrl5W4tdt7V,Its Alright,spotify:artist:5EkpFNNGJTnndTQLzqTFut,Deni Hines,spotify:album:7IgYFMrRiybuW2T85jklrC,Delicious,spotify:artist:5EkpFNNGJTnndTQLzqTFut,Deni Hines,2002,https://i.scdn.co/image/ab67616d0000b273330f98c991dc1d9788db5119,1,1,213360,https://p.scdn.co/mp3-preview/1e9a3084e727911ed65417969a25ec016a41aa81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUMU00200882,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.66,0.88,11.0,-5.338,1.0,0.0375,0.0808,3.48e-06,0.15,0.862,103.395,4.0,,WM Australia,"C © 2002 Mushroom Records, P ℗ 2002 Mushroom Records",5690 +5691,spotify:track:6myDPrp86x4Lhyp5aqU0EV,Cosby Sweater,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,spotify:album:7Lp5k5j4kHtTT8zOpJkfUN,Walking Under Stars,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2014-08-08,https://i.scdn.co/image/ab67616d0000b273b7afd289a9997752ee1fd1f6,1,3,217720,https://p.scdn.co/mp3-preview/2c245007c3491d0f1cc99221b52c2e44496b52a0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,62,AUHT01403003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.794,0.81,3.0,-7.963,1.0,0.0422,0.629,1.73e-06,0.0888,0.802,125.252,4.0,,Hilltop Hoods Pty Ltd,"C © 2014 Universal Music Australia Pty Ltd., P ℗ 2014 Universal Music Australia Pty Ltd.",5691 +5692,spotify:track:5O6mz4qn6q7MSKubAzRnDW,"Folsom Prison Blues - Live at Folsom State Prison, Folsom, CA - January 1968",spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,spotify:album:4E2eUhFHqTG2pu9MN1NDIF,The Essential Johnny Cash,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,2002-02-12,https://i.scdn.co/image/ab67616d0000b273c17beab3e27f18af397a00b2,2,4,162906,https://p.scdn.co/mp3-preview/640e6e654a2cb40917e552b4dd7fd5cd4e960c7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USSM16800410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,outlaw country,rock",0.594,0.676,5.0,-9.552,1.0,0.0528,0.0267,0.00541,0.905,0.898,110.71,4.0,,Columbia/Legacy,P This compilation (P) 2002 Sony Music Entertainment,5692 +5693,spotify:track:7kHMq0z0nKPYDDIXltRzij,American Psycho,spotify:artist:24DYOmDNLWoZxLh1SbNpSY,Treble Charger,spotify:album:0AYMaqYA1iUckwV5lFLKCu,Wide Awake Bored,spotify:artist:24DYOmDNLWoZxLh1SbNpSY,Treble Charger,2001,https://i.scdn.co/image/ab67616d0000b2735ca0e4e1d4ee8276dd6d813c,1,2,204573,https://p.scdn.co/mp3-preview/21605abc3c6c15f4becdbd24358267261c6f87a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,CAV160001004,spotify:user:bradnumber1,2022-11-10T01:16:42Z,"canadian indie,canadian rock",0.535,0.913,11.0,-5.045,0.0,0.0575,0.000572,0.0,0.19,0.72,141.871,4.0,,Nettwerk Music Group,"C 2001 Nettwerk Productions, P 2001 Nettwerk Productions",5693 +5694,spotify:track:2hVUVE7LnfFUwioaraD0d6,Hooray! Hooray! It's A Holi-Holiday - Radio Edit,spotify:artist:54R6Y0I7jGUCveDTtI21nb,Boney M.,spotify:album:0lDUEiq5TKsQ0kwPamRIwh,20th Century Hits,spotify:artist:54R6Y0I7jGUCveDTtI21nb,Boney M.,1999-11-05,https://i.scdn.co/image/ab67616d0000b273b6d7b35b1eabf00100ae57b5,1,10,202000,https://p.scdn.co/mp3-preview/ff32af01b21473c14cfca501799e7ed4501b2181?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,DED169900037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.67,0.859,7.0,-6.835,1.0,0.0311,0.00126,0.0102,0.131,0.768,106.019,4.0,,MCI,P (P)1999 BMG Berlin Musik GmbH/MCI,5694 +5695,spotify:track:4w3tQBXhn5345eUXDGBWZG,9 to 5,spotify:artist:32vWCbZh0xZ4o9gkz4PsEU,Dolly Parton,spotify:album:64Ky1tqKPfwxhJs6msphWd,9 To 5 And Odd Jobs,spotify:artist:32vWCbZh0xZ4o9gkz4PsEU,Dolly Parton,1980,https://i.scdn.co/image/ab67616d0000b273060ccf36ab5b0e0a739799ec,1,1,162466,https://p.scdn.co/mp3-preview/6384764199bf3d44f69085d62e10a076855ac8c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USRN19400384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,country dawn",0.554,0.783,6.0,-5.852,1.0,0.0457,0.416,1.54e-06,0.631,0.813,105.39,4.0,,RCA Records Label,P (P) 1980 Sony Music Entertainment,5695 +5696,spotify:track:111P8I22TrLyxQm7Jcwdoy,Kung Fu Fighting,"spotify:artist:170spSRNlcuuhGEpDUrsY5, spotify:artist:5Pqx4mXYDGIDcg8E5FYjZ8","Bus Stop, Carl Douglas",spotify:album:6UzPMXO3uKDzBxwPQpOoiy,The Soul of the Kung Fu Fighter,spotify:artist:5Pqx4mXYDGIDcg8E5FYjZ8,Carl Douglas,1972-02-13,https://i.scdn.co/image/ab67616d0000b273b1ffabcfbf401f30bd73b8f8,1,22,232840,https://p.scdn.co/mp3-preview/1c88d10b7f2969908e2d31d6929227db719c1679?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE9800368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.737,0.855,11.0,-10.319,0.0,0.0646,0.00475,1.67e-05,0.163,0.583,116.023,4.0,,Sanctuary,"C 2001 Castle Music / Sanctuary Records Group Ltd., a BMG Company, under exclusive license to [PIAS] UK Ltd., P 2001 Castle Music / Sanctuary Records Group Ltd., a BMG Company, under exclusive license to [PIAS] UK Ltd.",5696 +5697,spotify:track:5e9TFTbltYBg2xThimr0rU,The Chain - 2004 Remaster,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:0BwWUstDMUbgq2NYONRqlu,Rumours (Super Deluxe),spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1977-02-04,https://i.scdn.co/image/ab67616d0000b273e52a59a28efa4773dd2bfe1b,1,7,270213,https://p.scdn.co/mp3-preview/9cd01344e96f8dfaf0fb47fbb36d9da930daab2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USWB11301116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.545,0.67,9.0,-8.81,1.0,0.0496,0.009,0.000822,0.0451,0.481,151.553,4.0,,Rhino/Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",5697 +5698,spotify:track:78ApVOpB9Sq8BZWxxURWp2,Bed Of Roses,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:3Ad4QdO0EJr1c2livr9cmm,Bon Jovi Greatest Hits,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273f0d41275363a36b5772b49b2,1,10,395520,https://p.scdn.co/mp3-preview/9dfff3f2ee1fb38b42d5e97ab006fe126bf76c62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG19290093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.43,0.53,5.0,-6.466,1.0,0.0256,0.137,0.0,0.193,0.156,82.45,3.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",5698 +5699,spotify:track:355bn96bz24cQBcoKDVjGe,Push The Button,spotify:artist:7rZNSLWMjTbwdLNskFbzFf,Sugababes,spotify:album:3Oegw6C2lRWx6TYXxdZJYj,Taller In More Ways,spotify:artist:7rZNSLWMjTbwdLNskFbzFf,Sugababes,2005-01-01,https://i.scdn.co/image/ab67616d0000b27369332887fe33abfed94d4ab4,1,1,218240,https://p.scdn.co/mp3-preview/aef920897947fa375dcf0ec8a8d7f8c47faad0b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAAN0500329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group,talent show",0.962,0.657,8.0,-5.124,1.0,0.0618,0.0476,0.0,0.0739,0.791,126.019,4.0,,Universal-Island Records Ltd.,"C © 2005 Universal Island Records Ltd. A Universal Music Company., P ℗ 2005 Universal Island Records Ltd. A Universal Music Company.",5699 +5700,spotify:track:00c3V7ujXLRlcZgy3T1c2P,Slice of Heaven,"spotify:artist:5bYfbDXaMVCxEt7hOAvEWc, spotify:artist:6GIB5jeCf3U9JJUo2of2bA","Dave Dobbyn, Herbs",spotify:album:717EvjvG0CxXf8FfexLsdo,Footrot Flats - The Dog's Tale (Motion Picture Soundtrack),spotify:artist:5bYfbDXaMVCxEt7hOAvEWc,Dave Dobbyn,2005-11-17,https://i.scdn.co/image/ab67616d0000b273f76ecf02fc1fceb43b42e3bf,1,13,278986,https://p.scdn.co/mp3-preview/c1f376811babf8078aaefd749e2a09500190535e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZSM08800412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,classic nz pop,kiwi rock,nz singer-songwriter,classic nz pop,nz reggae",0.828,0.586,7.0,-10.777,1.0,0.0416,0.481,0.0,0.681,0.975,122.117,3.0,,Magpie Productions,"C 2013 Magpie Productions, P 2013 Magpie Productions",5700 +5701,spotify:track:4bIUVo06nIk2EkDIdVNwZp,Addicted,spotify:artist:2EvbFiMccizWo76HwbEaJX,Stevie Hoang,spotify:album:6Gte4Ooc56m5XlzJFJHj6H,This Is Me,spotify:artist:2EvbFiMccizWo76HwbEaJX,Stevie Hoang,2007,https://i.scdn.co/image/ab67616d0000b273ea5d2fa39cdf5acb01b6c62d,1,4,257000,https://p.scdn.co/mp3-preview/4f0e19cd75354cd8521e2d75c7decb128ba6549d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,ushm81084222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hmong pop,0.798,0.737,1.0,-4.701,1.0,0.0323,0.216,0.0,0.0717,0.51,117.948,4.0,,stevie hoang music,"C 2010 stevie hoang music, P 2010 Stevie Hoang",5701 +5702,spotify:track:0lNeripGLO9amN6KNYVZpw,22 Steps,spotify:artist:5XVcYaeSTGZXwxd63aY9Tv,Damien Leith,spotify:album:2TUwNtx2IHTlI893tFbuo1,Where We Land,spotify:artist:5XVcYaeSTGZXwxd63aY9Tv,Damien Leith,2007-08-18,https://i.scdn.co/image/ab67616d0000b27339c27a9231d73c8811e67e5c,1,1,215120,https://p.scdn.co/mp3-preview/a45791d9663d6243f68d415cdb8f5e0a57543042?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,AUBM00700457,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.523,0.469,7.0,-6.449,1.0,0.0253,0.11,0.0,0.172,0.211,77.035,4.0,,Sony BMG Music Entertainment,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,5702 +5703,spotify:track:0IKK48xF4eEdfofyaeKWWO,PILLOWTALK,spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,spotify:album:6BUAjgcgWhtTgRXVqCwF4u,PILLOWTALK,spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,2016-01-29,https://i.scdn.co/image/ab67616d0000b273e8d106a01a8ba670867cd6cd,1,1,203686,https://p.scdn.co/mp3-preview/b59864e15145e9aa5c778a52a640a1dbac1cf476?cid=9950ac751e34487dbbe027c4fd7f8e99,True,60,USRC11600042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.588,0.702,11.0,-4.271,1.0,0.0496,0.104,0.0,0.089,0.429,124.909,4.0,,RCA Records Label,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",5703 +5704,spotify:track:4X7lg7XBi9KZKo8ujO0uTv,I Don't Wanna Go On With You Like That,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:2pZOoHU4hQwRnSX2Ppgl3i,Reg Strikes Back (Remastered With Bonus Tracks),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1988-06-24,https://i.scdn.co/image/ab67616d0000b273d271d79b308ed91e2a8ef46e,1,4,275373,https://p.scdn.co/mp3-preview/6737b0cfc86a557df90e50dad2dbea72ec8a1c80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMS8800004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.643,0.89,9.0,-8.359,0.0,0.0325,0.042,0.00102,0.03,0.965,134.9,4.0,,Universal Music Group,"C © 1998 Mercury Records Limited, P ℗ 1998 Mercury Records Limited",5704 +5705,spotify:track:0ZpkiJKSJuHflTZwhEAqUG,Just One Look,spotify:artist:3jiBDfjnWIdLQEEOdKqZex,Doris Troy,spotify:album:6S6MNzbYrSk3gzdhJx89CR,Just One Look,spotify:artist:3jiBDfjnWIdLQEEOdKqZex,Doris Troy,2014-03-07,https://i.scdn.co/image/ab67616d0000b273acc22ade8b12e72879a4f1d5,1,1,152894,https://p.scdn.co/mp3-preview/1f45d26e5c965cf67d71affab198c20f3d22195d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,QMDA71494110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,northern soul,0.864,0.721,5.0,-4.953,1.0,0.0394,0.632,0.000109,0.105,0.963,107.957,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,5705 +5706,spotify:track:2qUjP7g8WY3fzBCNTELwjy,Great Southern Land,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,spotify:album:3UuP7QQWY6hXNiESqZei92,White Heat: 30 Hits,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,2011-08-26,https://i.scdn.co/image/ab67616d0000b273c1e97e3b542ffb0713d1bd8d,1,6,317200,https://p.scdn.co/mp3-preview/6b4daf25e5d51f4d8b1f6fb391532ae33cfa2030?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUC441100021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic,sophisti-pop,synthpop",0.717,0.837,9.0,-5.641,1.0,0.0278,0.244,0.000145,0.067,0.468,120.142,4.0,,Universal Music Group,"C © 2011 Diva Records, P ℗ 2011 Diva Records",5706 +5707,spotify:track:5Qv9M6fEpfi3HSthC5kojR,If You Had My Love,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:35pQoBuosurSPDG6vQlT0I,On The 6,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,1999,https://i.scdn.co/image/ab67616d0000b2730ef67d97344822ad1fffcb16,1,1,266000,https://p.scdn.co/mp3-preview/7d2e2f134701c65eb50b6b1888ef8a22f024acd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19900608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.68,0.625,11.0,-7.0,0.0,0.0353,0.0645,5.81e-05,0.109,0.814,94.02,4.0,,Work,P (P) 1999 Sony Music Entertainment Inc.,5707 +5708,spotify:track:7DHApOHsIFo7EyfieArYGE,Walk Me Home,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2KKdF2S0u36Ug2jm2qTXlZ,Walk Me Home,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2019-02-20,https://i.scdn.co/image/ab67616d0000b273ccf82e94885d4a1882870f07,1,1,177390,https://p.scdn.co/mp3-preview/e12f41830714fdf4e107f00e6b455da732226464?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USRC11900110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.652,0.453,1.0,-6.119,1.0,0.0445,0.0507,0.0,0.179,0.432,88.039,3.0,,RCA Records Label,"P (P) 2019 RCA Records, a division of Sony Music Entertainment",5708 +5709,spotify:track:1I6q6nwNjNgik1Qe8Oi0Y7,Do You Really Want To Hurt Me,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,spotify:album:4y1hBzoffx9DaGXbObeC2w,Kissing To Be Clever,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,1982-09-01,https://i.scdn.co/image/ab67616d0000b2733236b9c08b319f7e50e74f53,1,9,262173,https://p.scdn.co/mp3-preview/c62747cef3ff21357ac3ee215c0dd12d8bf49590?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAAA8200048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock,synthpop",0.744,0.376,4.0,-14.996,0.0,0.0366,0.0815,0.0,0.108,0.42,100.78,4.0,,Virgin Catalogue,"C © 1982 Virgin Records Limited, P ℗ 1982 Virgin Records Limited",5709 +5710,spotify:track:4k6ktr10Hczmh55NY3LfJy,Holiday,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,5,368280,https://p.scdn.co/mp3-preview/926b09010e91e8dd935dc3850c1bbe4923353c27?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USWB10903602,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.853,0.796,11.0,-5.567,0.0,0.0399,0.0542,0.0018,0.151,0.946,115.626,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",5710 +5711,spotify:track:49VAfcwX7Nwe6wfYKJgFzd,Finally Found,spotify:artist:3Ps27dDfvubd75rh5A0wz9,Honeyz,spotify:album:0iRq4khgAp2NXs1jk6iKSz,Wonder No.8,spotify:artist:3Ps27dDfvubd75rh5A0wz9,Honeyz,1999-01-01,https://i.scdn.co/image/ab67616d0000b273e1ffbf531c5c6d62bcc260b1,1,1,289533,https://p.scdn.co/mp3-preview/088333addf09defab9dd8aecab14ec3018110a49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF089800414,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,girl group",0.639,0.502,10.0,-10.013,1.0,0.0435,0.507,3.95e-06,0.188,0.735,73.865,4.0,,Mercury,"C (C) 1999 Mercury Records Limited, P (P) 1999 Mercury Records Limited",5711 +5712,spotify:track:0SYRVn2YF7HBscQEmlkpTI,Roxanne - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:6EW7DSC8rjwBJIeAc1d7uQ,Outlandos D'Amour,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1978-11-02,https://i.scdn.co/image/ab67616d0000b273a0d9850f293f0a27a24e289c,1,3,191946,https://p.scdn.co/mp3-preview/0e03a027992294c5c49cf64fcaf9a48e89139556?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM0201086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.608,0.746,0.0,-8.851,1.0,0.354,0.026,2.39e-06,0.043,0.745,134.03,4.0,,A&M,"C © 2003 A&M Records, P ℗ 2003 A&M Records",5712 +5713,spotify:track:5cPlWPuzNikg3xvmFPExEf,Bloke,spotify:artist:0x81cVSvecMHyy4mMtZDtT,Chris Franklin,spotify:album:0mAASHVrQKaIENiHyZeYKs,You Wouldn't Want Me Any Other Way,spotify:artist:0x81cVSvecMHyy4mMtZDtT,Chris Franklin,2020-04-17,https://i.scdn.co/image/ab67616d0000b2737786b78346ba66223d25a02d,1,2,257693,https://p.scdn.co/mp3-preview/5f2ae27d709c2eac2ceb4d86b94115d350ca5458?cid=9950ac751e34487dbbe027c4fd7f8e99,True,32,TCAEU2005185,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.715,0.513,9.0,-13.115,1.0,0.0338,0.0322,0.0,0.0651,0.543,97.999,4.0,,A-List Entertainment,"C 2020 A-List Entertainment, P 2020 A-List Entertainment",5713 +5714,spotify:track:14BH4qO7pgCmIe6mgLKOK3,Someone To You,spotify:artist:4qWnlmXWuGv2TtuxtIWlJX,BANNERS,spotify:album:6ErxPYc0KcJgLzQnpMGsth,Empires On Fire,spotify:artist:4qWnlmXWuGv2TtuxtIWlJX,BANNERS,2017-11-03,https://i.scdn.co/image/ab67616d0000b273d8fac444b26ac8c2e9ff1a48,1,1,219800,https://p.scdn.co/mp3-preview/065deed71db22c8790695b2823ac101dd6a90a21?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM71705215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,indie poptimism,0.468,0.936,2.0,-3.683,1.0,0.0455,0.00568,0.0,0.24,0.663,75.05,4.0,,Island Records,"C © 2017 Island Records, a division of UMG Recordings, Inc., P ℗ 2017 Island Records, a division of UMG Recordings, Inc.",5714 +5715,spotify:track:6zeeWid2sgw4lap2jV61PZ,Better,spotify:artist:6LuN9FCkKOj5PcnpouEgny,Khalid,spotify:album:2Qxc2NJ7yPKVFRWi3llRr2,Suncity,spotify:artist:6LuN9FCkKOj5PcnpouEgny,Khalid,2018-10-18,https://i.scdn.co/image/ab67616d0000b27360624c0781fd787c9aa4699c,1,6,229320,https://p.scdn.co/mp3-preview/6b6525c0274fd023581cfc6f0c486ecfc23de9ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USRC11803180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop r&b",0.596,0.552,0.0,-10.278,0.0,0.097,0.0765,0.334,0.104,0.112,97.949,4.0,,"Right Hand Music Group, LLC/RCA Records","P (P) 2018 RCA Records, a division of Sony Music Entertainment",5715 +5716,spotify:track:3bcYb4HwWlytUFLny0e0Q1,With Or Without You,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:586ZRfgsIckfcKvHVcGM4V,The Joshua Tree,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1987-03-10,https://i.scdn.co/image/ab67616d0000b273c0c0e71bc32b18cd9a59751b,1,3,296160,https://p.scdn.co/mp3-preview/a7e5de3437eecf201cc1817a7b2d8fae96910199?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8790003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.532,0.353,2.0,-14.672,1.0,0.0309,0.000226,0.198,0.123,0.111,109.888,4.0,,Polydor,"C (C) 1987 Universal-Island Records Ltd. under exclusive licence to Mercury Records Limited, P (P) 1987 Universal-Island Records Ltd. under exclusive licence to Mercury Records Limited",5716 +5717,spotify:track:7FpkmUt2H3Mf9TVEGHkUpk,Will I Ever,spotify:artist:2tbvDi9eXf9XXp06LupkED,Alice Deejay,spotify:album:7wyEph8JrTyNFNPmRCu3pU,Who Needs Guitars Anyway?,spotify:artist:2tbvDi9eXf9XXp06LupkED,Alice Deejay,2000-10-01,https://i.scdn.co/image/ab67616d0000b2738d897b8994ce008298200408,1,6,194072,https://p.scdn.co/mp3-preview/64049428a603247b9e8d6fd9a9cf2a916c0d55c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,NLC520011115,spotify:user:bradnumber1,2023-09-20T06:26:26Z,eurodance,0.64,0.951,2.0,-5.571,1.0,0.0335,0.000953,0.134,0.0934,0.838,136.984,4.0,,"Universal Music, a division of Universal International Music BV","C © 2000 Violent Music B.V., licensed to Universal Music, a division of Universal International Music B.V., P ℗ 2000 Universal International Music B.V.",5717 +5718,spotify:track:5Qt4Cc66g24QWwGP3YYV9y,Good Vibrations (Mono),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:3yGRRfowVUIj29zEwgLYY7,Smiley Smile (Mono & Stereo),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1967-09-18,https://i.scdn.co/image/ab67616d0000b2739c4ab43fd03ed82bc2314eb0,1,6,219146,https://p.scdn.co/mp3-preview/131b5bf79d2ef86f78b51eb61f258c53840c9427?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USCA21202140,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.398,0.413,1.0,-10.934,1.0,0.0388,0.0822,2.54e-05,0.0891,0.331,133.574,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",5718 +5719,spotify:track:2ZOIBDE7Fp8vlkA4zJ8OyY,Don't Turn Off The Lights,spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,spotify:album:5nWQbcfW6yJlffvXITzIDM,Greatest Hits (International Version),spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,2008-01-01,https://i.scdn.co/image/ab67616d0000b2735cc7314273b9f3a5e3994e60,1,12,226653,https://p.scdn.co/mp3-preview/9927510c9ea39b1290f27725137a169c0b596945?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10120226,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,latin pop,mexican pop",0.773,0.834,7.0,-4.138,1.0,0.0352,0.0129,4.19e-05,0.071,0.195,103.173,4.0,,Universal Music Group,"C © 2008 Interscope Records, P ℗ 2008 Interscope Records",5719 +5720,spotify:track:64OX6KtI0nBHaUQmQJDnmg,Undressed,spotify:artist:1FbsmLXvj5CccZj6JLk46Z,Kim Cesarion,spotify:album:5e58ZFihhWOYuU9XZZwYP7,About Last Night (Music from the Motion Picture),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-02-07,https://i.scdn.co/image/ab67616d0000b27390b7b6081593f4493a177ce1,1,13,219733,https://p.scdn.co/mp3-preview/730eb10d34bebaa195100d6b8a444e81256bda54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,SEWPF1300103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"swedish pop,swedish soul",0.804,0.784,2.0,-6.189,1.0,0.0306,0.109,9.49e-06,0.196,0.652,119.949,4.0,,Columbia,"P (P) Compilation 2014 Columbia Records, a Division of Sony Music Entertainment",5720 +5721,spotify:track:2T0AmsZh0aByj3iaJuU7mL,Mousetrap Heart,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,spotify:album:0QvmRTObBV5FfYFTnO8qP7,Mousetrap Heart,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,2010-06-18,https://i.scdn.co/image/ab67616d0000b27316cd4ccf63883b90048c6800,1,1,213466,https://p.scdn.co/mp3-preview/e5b7bc46098d75acf207ace3c55cf896734e4ee2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUWA01000172,spotify:user:bradnumber1,2022-02-03T10:24:56Z,"australian pop,australian rock",0.6,0.769,8.0,-3.907,1.0,0.0439,0.0316,0.0,0.0655,0.853,79.944,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Limited, P ℗ 2010 Warner Music Australia Pty Limited",5721 +5722,spotify:track:0wSJeDntuftBpsyhRSzZoW,Say My Name,"spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY, spotify:artist:00IBJsix9OYvxpmk8k0p86","Peking Duk, Benjamin Joseph",spotify:album:7roy6poQkfKH0s7q2tJqHf,Say My Name,spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,2015-07-10,https://i.scdn.co/image/ab67616d0000b273f4e1616968fb070e56db9fc3,1,1,186977,https://p.scdn.co/mp3-preview/97399220dea9af54c140a18c07f5f6251b0b965b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC01531310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian electropop,australian indie,edm",0.441,0.798,8.0,-4.051,0.0,0.0793,0.0934,0.0,0.747,0.656,173.935,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Vicious Bitch, P ℗ 2015 Vicious Bitch",5722 +5723,spotify:track:6csX1JjmeoLhGqMBXGnZF0,Runaway,spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,spotify:album:4acB71ZhsfYGdTdqdbpzLK,"Forgiven, Not Forgotten",spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,1995-09-26,https://i.scdn.co/image/ab67616d0000b2737ab47a9a8416c1828d4d14e6,1,6,265133,https://p.scdn.co/mp3-preview/3883ed0f7bc057cb4ab3ab7a4cae15fe3fffecbe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT29500004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,europop,pop rock",0.423,0.598,5.0,-7.443,1.0,0.0268,0.641,1.24e-06,0.34,0.521,151.972,3.0,,WM UK,"C © 1995 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1995 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",5723 +5724,spotify:track:6tXnRSvuNgOq4QcxpIN54r,Weather With You,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:1QSoW668F9DVj8Rk9azF7h,Woodface,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1991-06-24,https://i.scdn.co/image/ab67616d0000b2735f9e9291ab85c1e8fa88143f,1,5,224466,https://p.scdn.co/mp3-preview/8d20ecf5bfd3bcd73d718b22f4ea2f252a6d2183?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USCA29100164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.643,0.614,2.0,-12.878,1.0,0.0279,0.25,7.17e-06,0.214,0.891,93.982,4.0,,Capitol Records,"C © 1991 Capitol Records, LLC, P ℗ 1991 Capitol Records, LLC",5724 +5725,spotify:track:28Scc10gOQ5LEeZoj3uqnG,Lemonade,"spotify:artist:6MPCFvOQv5cIGfw3jODMF0, spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ, spotify:artist:4Gso3d4CscCijv0lmajZWs, spotify:artist:7rkW85dBwwrJtlHRDkJDAC","Internet Money, Gunna, Don Toliver, NAV",spotify:album:1PqulNlZcffatPDzaqjBwA,"Lemonade (feat. Gunna, Don Toliver, NAV)","spotify:artist:6MPCFvOQv5cIGfw3jODMF0, spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ, spotify:artist:4Gso3d4CscCijv0lmajZWs","Internet Money, Gunna, Don Toliver",2020-08-14,https://i.scdn.co/image/ab67616d0000b273b2bd23cc1d19364daa846d19,1,1,195428,https://p.scdn.co/mp3-preview/bcfec43d5bf1354cb4b14089a89adc7285815548?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZJ842000369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,trap,atl hip hop,melodic rap,rap,trap,rap,canadian hip hop,canadian trap,melodic rap,rap,trap",0.803,0.612,1.0,-6.27,0.0,0.0653,0.196,0.0,0.111,0.48,140.119,4.0,,Internet Money Records/ TenThousand Projects,"C © 2020 Internet Money Records / TenThousand Projects, P ℗ 2020 Internet Money Records / TenThousand Projects",5725 +5726,spotify:track:0GgxhNx3rPNhNMUXu0pm6P,Get Down on It,spotify:artist:4zVfvSWs6FvSD6B5lQGs2S,Peter Andre,spotify:album:57OzEOV8Ys6dAFi9pAVIpV,Natural,spotify:artist:4zVfvSWs6FvSD6B5lQGs2S,Peter Andre,1996-01-01,https://i.scdn.co/image/ab67616d0000b27399d4acafc0a096b69650c5ea,1,10,286533,https://p.scdn.co/mp3-preview/50331835652d3337ba9615326f57e7227727115f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,GBAHS1400496,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.708,0.953,4.0,-6.538,0.0,0.0614,0.0741,0.00018,0.275,0.822,118.032,4.0,,WM Australia,"C © 1996 Melodian Records Pty Ltd, P ℗ 1996 Melodian Records Pty Ltd",5726 +5727,spotify:track:4DMg5fvBfDLannugAGN2QG,Sweet Jane,spotify:artist:4S3VOqqGguEZu3vbJMig4t,Garrett Kato,spotify:album:0Bc6vNUNCliO2yIDtpGNL6,That Low and Lonesome Sound,spotify:artist:4S3VOqqGguEZu3vbJMig4t,Garrett Kato,2015-09-11,https://i.scdn.co/image/ab67616d0000b273fe1e857804d39838b45bd313,1,4,200433,https://p.scdn.co/mp3-preview/647b0832c450b873ef7668eb0ecc3e90ec888e8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBLFP1543423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie anthem-folk,modern indie folk",0.409,0.451,4.0,-10.742,1.0,0.0432,0.585,1.1e-05,0.0927,0.192,119.918,4.0,,Independent,"C 2015 Garrett Kato, P 2015 Garrett Kato",5727 +5728,spotify:track:0vKSzTVyIuDQP6dxq1lsAk,I Live For You,spotify:artist:4G4wyL5fut6xdMUPZzDpyJ,Chynna Phillips,spotify:album:4UipPMhddmwrjkNP11gegU,Naked And Sacred,spotify:artist:4G4wyL5fut6xdMUPZzDpyJ,Chynna Phillips,1995-01-01,https://i.scdn.co/image/ab67616d0000b2737699447920915d3c979cc5f5,1,4,227266,https://p.scdn.co/mp3-preview/7798dfc7c00da096bc30679515c2595419e84048?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USEM39500116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.611,0.919,6.0,-5.841,0.0,0.0632,0.0254,2.47e-05,0.302,0.65,90.895,4.0,,EMI Catalogue,"C © 1995 Capitol Records Inc., P ℗ 1995 Capitol Records Inc.",5728 +5729,spotify:track:2Cefh83u2OsRflRp89bUbW,Early Warning,spotify:artist:2DaDoR6WXStRctDQDWWQpI,Baby Animals,spotify:album:1qD1JGw8Q5WKBW4fsgHFYh,Baby Animals / Shaved & Dangerous,spotify:artist:2DaDoR6WXStRctDQDWWQpI,Baby Animals,2008-01-19,https://i.scdn.co/image/ab67616d0000b27397fc8034722824df1f51b23f,1,2,236106,https://p.scdn.co/mp3-preview/928f6106fbf79934d736d52988d56a0f20ce118f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00743410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.453,0.959,3.0,-2.836,1.0,0.0677,7.86e-05,0.017,0.354,0.609,125.52,4.0,,Bloodlines,"C 2007 (P) 2007 Imago Recording Company. Under exclusive license to Liberation Music for Australia And New Zealand, P 2007 (P) 2007 Imago Recording Company. Under exclusive license to Liberation Music for Australia And New Zealand",5729 +5730,spotify:track:7bkyXSi4GtVfD7itZRUR3e,Material Girl,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:2IU9ftOgyRL2caQGWK1jjX,Like a Virgin,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1984-11-12,https://i.scdn.co/image/ab67616d0000b27399d424b0873a9a714279a9f3,1,1,240706,https://p.scdn.co/mp3-preview/c11e497ca9c4066d3d8f7cb519d19eb342f973a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USWB10002746,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.775,0.616,0.0,-12.676,1.0,0.0317,0.246,6.77e-06,0.0511,0.98,136.63,4.0,,Warner Records,"C © 1984, 2001 Warner Records Inc., P ℗ 1984 Warner Records Inc.",5730 +5731,spotify:track:0ofMkI3jzmGCElAOgOLeo3,The Rhythm of the Night,spotify:artist:26T6b8maqEVltcmE4kSDUl,Corona,spotify:album:6rrPmmb2lQd5pNRL6HKBZx,The Rhythm of the Night,spotify:artist:26T6b8maqEVltcmE4kSDUl,Corona,1994,https://i.scdn.co/image/ab67616d0000b273f94b2a29ccc364e8faedce10,1,8,264280,https://p.scdn.co/mp3-preview/9537354c97c9fbfd31f68ed41720588cb18f5147?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,ITA199800041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,europop,hip house",0.69,0.805,5.0,-11.522,0.0,0.0336,0.000232,0.739,0.095,0.799,127.808,4.0,,DWA Records,"C 1995 Extravaganza Publishing Srl, P 1995 Robyx Srl",5731 +5732,spotify:track:1XpYodsD36XN7ygcdF7mJJ,The A Team,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:02pi98kE0nra0yBqCStzbC,+,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2011-09-09,https://i.scdn.co/image/ab67616d0000b2736567a393a964a845a89b7f70,1,1,258373,https://p.scdn.co/mp3-preview/1cab73cd0e33cec8fe9a0ffe7319170862f37f8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAHS1100095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.642,0.289,9.0,-9.918,1.0,0.0367,0.669,0.0,0.18,0.407,84.996,4.0,,Atlantic Records UK,"C © 2011 Warner Music UK Limited, P ℗ 2011 Warner Music UK Limited",5732 +5733,spotify:track:1hwN2eAwsXgktvw9Qe8TrP,Photograph,spotify:artist:6DbJi8AcN5ANdtvJcwBSw8,Ringo Starr,spotify:album:6zjenDV68SpvM3oEhorTDm,Ringo,spotify:artist:6DbJi8AcN5ANdtvJcwBSw8,Ringo Starr,1973-01-01,https://i.scdn.co/image/ab67616d0000b273493bd0f4bc0e1f3732a75c8d,1,3,239760,https://p.scdn.co/mp3-preview/cdae3fc467c748f7047c08afba90a782bc6f4f90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBAYE7300310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,rock drums",0.617,0.696,4.0,-12.739,1.0,0.0282,0.0155,0.000199,0.108,0.9,111.136,4.0,,Parlophone,"C © 1973 EMI Records Ltd, P ℗ 1973 EMI Records Ltd",5733 +5734,spotify:track:5BTdUnDGqtP71jvZrcQJEH,Polyester Girl,spotify:artist:6n3YUZcayLRuAunJUUelvz,Regurgitator,spotify:album:1M9n4vCmOH4lbcHrpt21Qy,Unit,spotify:artist:6n3YUZcayLRuAunJUUelvz,Regurgitator,1997-11-17,https://i.scdn.co/image/ab67616d0000b2738d73373a4b108e7a8007f30b,1,10,210840,https://p.scdn.co/mp3-preview/6f65a1df09e384c495130b395f45d5cd25e6ac01?cid=9950ac751e34487dbbe027c4fd7f8e99,True,37,AUWA09800520,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.746,0.841,8.0,-6.189,1.0,0.0295,0.00652,9.9e-05,0.101,0.964,107.941,4.0,,WM Australia,"C © 1997 Warner Music Australia Pty Ltd., P ℗ 1997 Warner Music Australia Pty Ltd.",5734 +5735,spotify:track:7LR85XLWw2yXqKBSI5brbG,Run This Town,"spotify:artist:3nFkdlSjzX9mRTtwJOzDYB, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:5K4W6rqBFWDnAN6FQUkS6x","JAY-Z, Rihanna, Kanye West",spotify:album:2CUT0104gySOIvqwtXeFsX,The Blueprint 3,spotify:artist:3nFkdlSjzX9mRTtwJOzDYB,JAY-Z,2009-09-08,https://i.scdn.co/image/ab67616d0000b273fec1b815bb3c50a64a90fd10,1,4,267520,https://p.scdn.co/mp3-preview/82980f868b2a260cdb3e72758f3bc98e7e69bf42?cid=9950ac751e34487dbbe027c4fd7f8e99,True,76,USJZ10900010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,rap,barbadian pop,pop,urban contemporary,chicago rap,hip hop,rap",0.632,0.924,1.0,-1.802,1.0,0.29,0.281,0.0,0.263,0.441,86.844,4.0,,Roc Nation / Jay-Z,"C © 2009 S. Carter Enterprises, LLC., Distributed by Roc Nation, P ℗ 2009 S. Carter Enterprises, LLC., Distributed by Roc Nation",5735 +5736,spotify:track:3rpReNtrRZudNhHrYEjOyZ,Shut Up & Kiss Me,spotify:artist:6pjod8SsOOGf6GW9tfEnH1,Reece Mastin,spotify:album:6sIfbR83sneqztk788UGmO,Beautiful Nightmare,spotify:artist:6pjod8SsOOGf6GW9tfEnH1,Reece Mastin,2012-10-22,https://i.scdn.co/image/ab67616d0000b27372c475607cb622b7cf8d5941,1,13,204733,https://p.scdn.co/mp3-preview/327aa554ab90177c964e3b5eb2161971f5448bfc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM01200082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.547,0.92,8.0,-2.147,1.0,0.0406,0.000432,0.0,0.0616,0.813,144.95,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,5736 +5737,spotify:track:674mWDNAu09kT6IpE6Ykfx,Secret Love Song,"spotify:artist:5dukb1WWSSdG3wSQnFtp7D, spotify:artist:53GfD0XqEo9eEbpBmjLqJO","Lovey James, Daniel Seavey",spotify:album:09YXOcWWH4Tq1TnTnIX7ez,Secret Love Song,spotify:artist:5dukb1WWSSdG3wSQnFtp7D,Lovey James,2016-08-31,https://i.scdn.co/image/ab67616d0000b27388ff2845524d21123bcca550,1,1,244220,https://p.scdn.co/mp3-preview/8fc2123607a843b289d49e139b6e665400d7989b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,QMFMG1588883,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.61,0.463,8.0,-4.922,1.0,0.0371,0.539,0.0,0.13,0.155,93.164,4.0,,Lovey James Music,C (C) 2016 Lovey James,5737 +5738,spotify:track:1CQqupcyMg7176PPmIVmSj,Renegade,spotify:artist:4salDzkGmfycRqNUbyBphh,Styx,spotify:album:294yFGYq9SBXWR4g6dK63D,Pieces Of Eight,spotify:artist:4salDzkGmfycRqNUbyBphh,Styx,1978-01-01,https://i.scdn.co/image/ab67616d0000b273f106d873a30a31efa73f4e74,1,8,257226,https://p.scdn.co/mp3-preview/989c573faf5e76a9f318d39b0e850b7bdf169096?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USAM17800365,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,progressive rock,rock,soft rock",0.492,0.552,7.0,-12.32,0.0,0.0341,0.0151,3.74e-05,0.0723,0.656,105.623,4.0,,A&M,"C © 1978 A&M Records Inc., P ℗ 1978 UMG Recordings, Inc.",5738 +5739,spotify:track:3nDKxzRpMkFpw7vFqNE2HR,Live Without It,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,spotify:album:3Mb6ZsLgwJvTtN3C5vYcC5,Reflector,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,2000,https://i.scdn.co/image/ab67616d0000b2737f361459e0043a6deb2d342c,1,9,191333,https://p.scdn.co/mp3-preview/938d83a150f2065a94318401417072419c4e165e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBEC1701091,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.438,0.634,7.0,-5.642,1.0,0.0346,0.439,4.35e-06,0.0577,0.331,135.033,4.0,,Independent,"C 2000 Wah Wah Music, P 2000 Wah Wah Music",5739 +5740,spotify:track:4VYpW7AZnPftcuJqCwW70L,Bad Blood,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,spotify:album:1jUoeAbO2HCADZ1uiyLYIo,Bad Blood,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,2013-01-01,https://i.scdn.co/image/ab67616d0000b273b89cf022db28fa31376e0ed8,1,3,212613,https://p.scdn.co/mp3-preview/34464cafb29592a9f98039eca213c91e9ccdba55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAAA1200920,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop",0.663,0.777,5.0,-5.496,0.0,0.0375,0.0157,0.00829,0.0755,0.94,143.003,4.0,,Virgin Records,"C © 2013 Virgin Records Limited, P ℗ 2013 Virgin Records Limited",5740 +5741,spotify:track:5ybJm6GczjQOgTqmJ0BomP,22,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:5FerdPFXSHSnCVq4OBy4Ey,Red,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2012-10-22,https://i.scdn.co/image/ab67616d0000b2737d2f918a1b23f98ceb7510fa,1,6,232120,https://p.scdn.co/mp3-preview/1b4124cc7491388bee81e06097bdb5aa33fe7254?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1231040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.662,0.736,7.0,-6.511,1.0,0.0374,0.00274,0.000844,0.0464,0.674,104.003,4.0,,Universal Music Group,"C © 2012 Big Machine Records, LLC., P ℗ 2012 Big Machine Records, LLC.",5741 +5742,spotify:track:5aqqxocHtFRmTBk8LlmLRN,You’ll Be Mine,"spotify:artist:1EVWYRr2obCRDoSoD6KSuM, spotify:artist:6cEuCEZu7PAE9ZSzLLc2oQ","Havana Brown, R3HAB",spotify:album:4KVrN1mStUcHU6ciBL7dHj,Flashing Lights,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,2013-01-01,https://i.scdn.co/image/ab67616d0000b273982ad9b28d563d2e3fb7ba1b,1,12,250017,https://p.scdn.co/mp3-preview/6b4f6905b81ba7554f681cbbaa7e87c3987fe37a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUUM71200704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dutch house,edm,electro house,pop dance,progressive electro house,slap house",0.723,0.727,4.0,-6.03,1.0,0.0299,0.0159,1.55e-06,0.19,0.419,126.97,4.0,,Universal Music Australia Pty. Ltd.,"C © 2013 Island Records Australia / Universal Music Australia, P ℗ 2013 Island Records Australia / Universal Music Australia",5742 +5743,spotify:track:1XdMp6v9Q3N80WnKSbGfl4,Hollywood,"spotify:artist:02qlwM8fpqep7vX8KKEFmK, spotify:artist:1OAjDaKgg00KCUYqDe68un","LA Vision, Gigi D'Agostino",spotify:album:6N3vlqVTwMUyNPoUiCaV8a,Hollywood,"spotify:artist:02qlwM8fpqep7vX8KKEFmK, spotify:artist:1OAjDaKgg00KCUYqDe68un","LA Vision, Gigi D'Agostino",2020-05-29,https://i.scdn.co/image/ab67616d0000b273006cb1e1335e22530971186e,1,1,199655,https://p.scdn.co/mp3-preview/6c23a0be18062e5ce14f35e5914fcdf856c28c79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,ITL012000025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,italo dance",0.744,0.793,7.0,-6.02,0.0,0.0291,0.00851,0.000231,0.363,0.325,116.0,4.0,,Polydor,"C © 2020 Time S.p.A., under exclusive license to Universal Music GmbH, P ℗ 2020 Time S.p.A., under exclusive license to Universal Music GmbH",5743 +5744,spotify:track:3KTQW9y1ZZm7kjYpxieO8A,San Francisco (You've Got Me),spotify:artist:0dCKce6tJJdHvlWnDMwzPW,Village People,spotify:album:6MB1ND9U8BGyiBv3zx3Zca,San Francisco Macho Man,spotify:artist:0dCKce6tJJdHvlWnDMwzPW,Village People,1978,https://i.scdn.co/image/ab67616d0000b2732e85e4a4d3b2756d6a8f14e4,1,1,317866,https://p.scdn.co/mp3-preview/48aa43e989e22e97a9d1af2e1fe7e0ce361a47d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,FR6V80878883,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,new wave pop,soft rock",0.644,0.841,2.0,-7.798,0.0,0.0347,0.0284,0.0,0.0853,0.869,127.058,4.0,,Scorpio Music,"C 1978 Can't Stop Productions NYC, P Can't Stop Productions NYC 1978",5744 +5745,spotify:track:0CwYG1UnRmOx8Q1EzElCIL,Second Chance,spotify:artist:70BYFdaZbEKbeauJ670ysI,Shinedown,spotify:album:4PeRcYNYVB1mD4wemj5zld,The Sound of Madness,spotify:artist:70BYFdaZbEKbeauJ670ysI,Shinedown,2008-06-23,https://i.scdn.co/image/ab67616d0000b273a8884c298d3fc9b70c4e9196,1,3,222066,https://p.scdn.co/mp3-preview/6ff0345f3f2809bddbceae315e2260fc2d778a26?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT20802281,spotify:user:bradnumber1,2022-09-21T02:44:32Z,"alternative metal,nu metal,post-grunge",0.46,0.796,0.0,-4.501,0.0,0.0333,0.00107,0.0,0.106,0.182,100.011,4.0,,Atlantic Records,"C © 2008 Atlantic Recording Corp. for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2008 Atlantic Recording Corp. for the United States and WEA International Inc. for the world outside of the United States",5745 +5746,spotify:track:2UaJdr9yD2S0bi9cDhIiEP,"Because I Got High - From ""Jay And Silent Bob Strike Back"" Soundtrack",spotify:artist:4Icvbp9RDt5aY2TWDOVDsr,Afroman,spotify:album:7CF3mddOyvQ90tus1iZ47E,"No Seeds, No Stems, Just Hits",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b2735978cd6cacd6d09bbbb33b37,1,6,199013,https://p.scdn.co/mp3-preview/25cea76758d4c9833b021bc0a17719b674af9847?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10110697,spotify:user:bradnumber1,2021-08-08T09:26:31Z,comedy rap,0.799,0.314,7.0,-9.627,1.0,0.512,0.164,0.0,0.158,0.842,166.064,4.0,,Universal Music,"C © 2010 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2010 Universal Music Enterprises, a Division of UMG Recordings, Inc.",5746 +5747,spotify:track:3oVnbdWg48ZrmsUAQQUKbU,Silence (feat. Sarah McLachlan) - DJ Tiësto's In Search of Sunrise Edit,"spotify:artist:0IUq1plF3ON4Fboj1bE6kN, spotify:artist:4NgNsOXSwIzXlUIJcpnNUp, spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z","Delerium, Sarah McLachlan, Tiësto",spotify:album:4DATh7UC0fFUPzh7ZNQ5aq,The Best Of,spotify:artist:0IUq1plF3ON4Fboj1bE6kN,Delerium,2004,https://i.scdn.co/image/ab67616d0000b27321a6f2d3ee5e145568ff5c94,1,16,235200,https://p.scdn.co/mp3-preview/19a5aa8e4bf9ef029150267af2b712e9f14fe9c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAN110000067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gregorian dance,canadian pop,canadian singer-songwriter,ectofolk,lilith,permanent wave,pop rock,big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance",0.602,0.847,9.0,-5.998,0.0,0.0589,0.00903,0.0306,0.0622,0.0863,138.025,4.0,,Nettwerk Records,"C © 2004 Nettwerk Productions, P ℗ 2004 Nettwerk Productions",5747 +5748,spotify:track:31x8mYFOwQJtzE4y5di0Tl,Where's The Love,spotify:artist:0SdiiPkr02EUdekHZJkt58,Hanson,spotify:album:0IaT8AWtzOSAzWB1KXoTD8,MmmBop : The Collection,spotify:artist:0SdiiPkr02EUdekHZJkt58,Hanson,2005-01-01,https://i.scdn.co/image/ab67616d0000b273aeb97994467b5a33f2b3fa12,1,2,252346,https://p.scdn.co/mp3-preview/0bd5fb7e7e1470adb2f614ca8db52418d357fae6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19786794,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.591,0.978,7.0,-3.958,1.0,0.0546,0.00187,3.77e-06,0.134,0.57,115.812,4.0,,Universal Music Group,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",5748 +5749,spotify:track:3LI4MmibTkXH5cGpCGZgyw,Teenage Dirtbag,spotify:artist:4mYFgEjpQT4IKOrjOUKyXu,Wheatus,spotify:album:187HV0h26fG3mkRsySp5Lj,"Songs From Dawson's Creek, Vol. II",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2000-09-29,https://i.scdn.co/image/ab67616d0000b273bce5ea610d97401b08bd0a9b,1,10,241666,https://p.scdn.co/mp3-preview/7e5f690af7a446253ee6ca78d447b62e3607cdcd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USSM10008431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.617,0.84,4.0,-4.063,1.0,0.0512,0.36,8.85e-05,0.179,0.57,94.676,4.0,,Columbia/Sony Music Soundtrax,P (P) 2000 Sony Music Entertainment Inc.,5749 +5750,spotify:track:5lK18Pt33xNudq4qYDxIm8,Shallow,"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:4VIvfOurcf0vuLRxLkGnIG","Lady Gaga, Bradley Cooper",spotify:album:708nDu1WADpksUOEGQ4Qny,Shallow,"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:4VIvfOurcf0vuLRxLkGnIG","Lady Gaga, Bradley Cooper",2018-09-27,https://i.scdn.co/image/ab67616d0000b273c13481d4d4b865ee5f8bb616,1,1,215733,https://p.scdn.co/mp3-preview/ad2317459e4acec34d54fc34282089bfb58fc9c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71813192,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop,hollywood",0.572,0.385,7.0,-6.362,1.0,0.0308,0.371,0.0,0.231,0.323,95.799,4.0,,A Star is Born OST,"C © 2018 Interscope Records, Motion Picture Artwork © 2018 Warner Bros. Entertainment Inc. Motion Picture Photography © 2018 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Inc.,, P ℗ 2018 Interscope Records",5750 +5751,spotify:track:3ac4a4gr04hX1aKLO1aym8,Bad Boy for Life (feat. Black Rob & Mark Curry) - 2016 Remaster,"spotify:artist:59wfkuBoNyhDMQGCljbUbA, spotify:artist:1QPZhx0asYTBxD5RDqfU49, spotify:artist:20N6dS0vq9kMWXUqEkFrBA","Diddy, Black Rob, Mark Curry",spotify:album:52TqKxbJkOBsbjKxlKgLwu,Bad Boy 20th Anniversary Box Set Edition,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-08-12,https://i.scdn.co/image/ab67616d0000b2733478b3ee9ec84b07c18a6ea5,3,14,253106,https://p.scdn.co/mp3-preview/953a26aec3e6f50e18e37a30202c3b4c05699942?cid=9950ac751e34487dbbe027c4fd7f8e99,True,28,USRH11603449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap,dirty south rap,hardcore hip hop,harlem hip hop",0.598,0.834,1.0,-3.817,1.0,0.473,0.186,0.0,0.309,0.607,89.728,4.0,,Rhino Atlantic,"C © 2016 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved., P ℗ 2016 Bad Boy Records LLC.",5751 +5752,spotify:track:4lLtanYk6tkMvooU0tWzG8,Grenade,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:6J84szYCnMfzEcvIcfWMFL,Doo-Wops & Hooligans,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2010-05-11,https://i.scdn.co/image/ab67616d0000b273f60070dce96a2c1b70cf6ff0,1,1,222091,https://p.scdn.co/mp3-preview/5221be592c832e14506f6304ff1deb6c52ae3fee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USAT21001883,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.704,0.558,2.0,-7.273,0.0,0.0542,0.148,0.0,0.107,0.245,110.444,4.0,,Elektra (NEK),"C © 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",5752 +5753,spotify:track:3OeUlriM0EZHdWleJtjoVr,Got My Mind Set On You - Remastered 2004,spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,spotify:album:1nbq8GgaVdINI3PulXvPUq,Cloud Nine,spotify:artist:7FIoB5PHdrMZVC3q2HE5MS,George Harrison,1987-11-02,https://i.scdn.co/image/ab67616d0000b2737b13e5323813ed4c441100ff,1,11,234653,https://p.scdn.co/mp3-preview/5236e93e5cf4c926af28492f83355a3ee1e98fa4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,GBEXP0300054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.767,0.854,4.0,-6.947,1.0,0.0426,0.465,2.03e-06,0.485,0.963,149.206,4.0,,Parlophone,"C © 2007 Umlaut Corp, P ℗ 2007 Umlaut Corp",5753 +5754,spotify:track:4Pxy5m2m8CIzMAJhMg0feO,In The Midnight Hour,spotify:artist:5kiBy7FO5L4ywMz1xF70PX,The Commitments,spotify:album:1uTcBfkLmGF07vlNMj6Ru0,The Commitments,spotify:artist:5kiBy7FO5L4ywMz1xF70PX,The Commitments,1991-01-01,https://i.scdn.co/image/ab67616d0000b2738e790709b9f3ce9dc731f49f,1,12,143240,https://p.scdn.co/mp3-preview/468d66667bb5f0610cbbc350e59618d60f431ede?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USMC19135898,spotify:user:bradnumber1,2022-04-20T22:37:28Z,,0.629,0.699,8.0,-9.575,1.0,0.0364,0.00805,8.15e-06,0.158,0.893,118.704,4.0,,Geffen*,"C © 1991 Geffen Records, P ℗ 1991 Geffen Records",5754 +5755,spotify:track:4upv1CF2L81mccpBlHB7KZ,The Wild One - Single Version,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,spotify:album:7fYxOhT8bTHJ2AE8Om4kTy,Quatro,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,1974-10-01,https://i.scdn.co/image/ab67616d0000b273dafc19518662b3afee9d59c1,1,16,171826,https://p.scdn.co/mp3-preview/a380a2d9e23a69c855045d501f820e351d02fe2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE7400085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.392,0.782,9.0,-5.205,1.0,0.051,0.00257,0.047,0.151,0.886,75.842,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1974 Chrysalis Records Limited",5755 +5756,spotify:track:7N3PAbqfTjSEU1edb2tY8j,Jump - 2015 Remaster,spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,spotify:album:3REUXdj5OPKhuDTrTtCBU0,1984 (Remastered),spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,1984-01-04,https://i.scdn.co/image/ab67616d0000b273b414c63fb435b622238c15ed,1,2,241599,https://p.scdn.co/mp3-preview/86b253d59e8485604c5cdcba34b67caa9307c17f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USWB11403680,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.572,0.835,0.0,-6.219,1.0,0.0317,0.171,0.000377,0.0702,0.795,129.981,4.0,,Rhino/Warner Records,"C © 1983 Warner Records Inc., P ℗ 1983 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",5756 +5757,spotify:track:2He3NOyqtLNE3RQPpeDdSb,Groove Is in the Heart,spotify:artist:4eQJIXFEujzhTVVS1gIfu5,Deee-Lite,spotify:album:4sTAgYLZy5zwqR3kT1g0oh,World Clique,spotify:artist:4eQJIXFEujzhTVVS1gIfu5,Deee-Lite,1990-08-07,https://i.scdn.co/image/ab67616d0000b273cbcb5083c56df2a557625bca,1,9,231786,https://p.scdn.co/mp3-preview/268080a2c342937913cdb292c260a7678cefefc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USEE19687204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hip house,0.694,0.881,1.0,-4.053,0.0,0.0701,0.0153,0.0196,0.0851,0.924,121.554,4.0,,Elektra Records,"C © 1990 Elektra Entertainment., P ℗ 1990 Elektra Entertainment. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",5757 +5758,spotify:track:391TUcoPonqYykPkSZ5Z9U,Save the Last Dance for Me,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,spotify:album:6sWL3HHXGkqlST0rfWXvBU,Save the Last Dance for Me,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,1962,https://i.scdn.co/image/ab67616d0000b273d6c8814abab49d72189678a5,1,1,154960,https://p.scdn.co/mp3-preview/735f9366b2cce11ebf4a16aad6c9f2e5928c7287?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT20102477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,doo-wop,rock-and-roll,rockabilly,soul",0.54,0.53,4.0,-10.583,1.0,0.0361,0.614,0.0,0.198,0.896,143.453,4.0,,Rhino Atlantic,"C © 2004 Atlantic Recording Corp. Manufactured and Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured and Marketed by Warner Strategic Marketing",5758 +5759,spotify:track:2Uv2z8Rcmh004EPJ0seoLK,Can't Say No,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,spotify:album:6vBcVTsQZ7jkIPL7Z7fvJ4,Contrast,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,2012-07-09,https://i.scdn.co/image/ab67616d0000b273ccb8077ec19ddfe98c8fa747,1,4,194304,https://p.scdn.co/mp3-preview/6f2c1504852c6db26b9db104cb37c453b1fc3914?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAYE1102044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,uk pop,viral pop",0.817,0.784,1.0,-3.96,1.0,0.11,0.245,0.0,0.07,0.551,93.997,4.0,,WM Indonesia,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",5759 +5760,spotify:track:62HyVeSK4fpxjKj6dsI5MP,Midlife Crisis,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,spotify:album:59GwovfBk0Kp2HJw1G7E5Q,Angel Dust,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,1992-06-08,https://i.scdn.co/image/ab67616d0000b273fba269c78920704d0a3a097d,1,3,259866,https://p.scdn.co/mp3-preview/97bc2ba877ef6a023756f222de0f1a0e68b66df1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBANC9200157,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,funk metal,funk rock,hard rock,nu metal,post-grunge,rap metal,rock",0.669,0.656,9.0,-10.549,1.0,0.0413,0.00113,0.000252,0.0989,0.464,108.098,4.0,,London Records,"C © 1992 Slash Records, a label of Warner Records Inc., P ℗ 1999 Slash Records, a label of Warner Records Inc., manufactured and marketing by Rhino Entertainment Company, a Warner Music Group company",5760 +5761,spotify:track:4TgTyywODXLaCWYqffVjO5,Coin Laundry,spotify:artist:53f2OKMfVLTsHFkGyA5dnz,Lisa Mitchell,spotify:album:0JR5U7wsYbHaSZhkYS2r7X,Wonder (Standard),spotify:artist:53f2OKMfVLTsHFkGyA5dnz,Lisa Mitchell,2009-07-09,https://i.scdn.co/image/ab67616d0000b2736eb05bca232ae1db890d25bc,1,4,191773,https://p.scdn.co/mp3-preview/14a514660c924aab10d5094fb1009f016ba65159?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBARL0900498,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian indie folk,australian indigenous music",0.757,0.412,0.0,-6.521,1.0,0.0711,0.438,0.0306,0.404,0.674,85.498,4.0,,WM Australia,"C © 2009 Warner Music Australia Pty Limited. Marketed and distributed by Warner Music Australia Pty Limited in Australia and New Zealand, P ℗ 2009 Warner Music Australia Pty Limited",5761 +5762,spotify:track:2UPtf64KU11lUicxFai0bm,Ex-Girlfriend,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,spotify:album:3UBfrm1LGAdOZflgsmCsM2,Return Of Saturn,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,2000-01-01,https://i.scdn.co/image/ab67616d0000b273554acc0efdbd9780ada81422,1,1,211666,https://p.scdn.co/mp3-preview/a8f4b69c7b086dd5ad80ff2b32ff0d641530c3f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10000025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dance rock,permanent wave,pop rock,rock",0.543,0.896,4.0,-4.101,0.0,0.0892,0.013,0.00173,0.199,0.647,173.135,4.0,,Interscope,"C © 2000 Trauma Records, P ℗ 2000 Trauma Records",5762 +5763,spotify:track:78ngw8QaMUDH2vh8kWahMX,Bum Like You,spotify:artist:6UE7nl9mha6s8z0wFQFIZ2,Robyn,spotify:album:0ppgISkILz6Fg104pLNFru,Robyn,spotify:artist:6UE7nl9mha6s8z0wFQFIZ2,Robyn,2005-04-29,https://i.scdn.co/image/ab67616d0000b2735d64f96c5ccff5653220f7a8,1,5,207853,https://p.scdn.co/mp3-preview/282256c3fc939581d8453d46c0cf7aaa751ea50b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,SEWKZ0600205,spotify:user:bradnumber1,2023-01-31T06:02:26Z,"dance pop,electropop,neo-synthpop,scandipop,swedish electropop,swedish pop",0.639,0.583,1.0,-7.028,0.0,0.268,0.0068,0.00227,0.051,0.596,71.358,4.0,,Konichiwa Records,"C 2017 Konichiwa Records / Inertia Music, P 2017 Konichiwa Records / Inertia Music",5763 +5764,spotify:track:3DZx9yflOhQ3XZ17RkdEd1,Can You Feel It,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,spotify:album:2tbVb2SlU8ovbP2sx7CsSF,Timomatic,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,2012-08-24,https://i.scdn.co/image/ab67616d0000b2732f6060ca84e503e4e06d6284,1,1,196760,https://p.scdn.co/mp3-preview/f96c06997158cd3da59f9927dd32fe53e1c74bc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUBM01200137,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.651,0.912,6.0,-2.428,1.0,0.211,0.00634,0.000601,0.113,0.575,128.035,4.0,,Sony Music Entertainment,P All tracks (P) 2012 Sony Music Entertainment Australia Pty Ltd except track 6. (P) 2011 Sony Music Entertainment Australia Pty Ltd.,5764 +5765,spotify:track:3RoqgojIPo24T0iS1XTCHv,"Take My Breath Away - Love Theme from ""Top Gun""",spotify:artist:2aS6jYh7ysTL1ZUsHneNgM,Berlin,spotify:album:3pmGRyIPJ2HcJRvVgOfwzx,110% POP,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-05-26,https://i.scdn.co/image/ab67616d0000b273ca743d98ebb621d8d70cad0c,1,13,251840,https://p.scdn.co/mp3-preview/1ed8a7daa38bece7aede32875a6213c31f1b3aca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USSM19904146,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.351,0.814,6.0,-3.972,1.0,0.0385,0.0284,0.0,0.867,0.435,96.153,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Denmark A/S,5765 +5766,spotify:track:6HfX3ccjvzwvrBGDv46fJ5,Sing It Back,spotify:artist:4aaBjq7VqqQvpSF69GglvO,Moloko,spotify:album:2BDnQEaL2YPc0gSuWhv4rH,I Am Not A Doctor,spotify:artist:4aaBjq7VqqQvpSF69GglvO,Moloko,1998,https://i.scdn.co/image/ab67616d0000b273de0b662c298ace0c0f5be261,1,7,264266,https://p.scdn.co/mp3-preview/ca5692d19e4f640c5e79a470c5feb08c0cde366d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBND9800239,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electronica,trip hop",0.48,0.764,1.0,-10.493,1.0,0.0767,0.0128,0.00136,0.139,0.588,160.641,5.0,,Echo,"C 2003 The Echo Label Limited, P 1998 The Echo Label Limited",5766 +5767,spotify:track:3sjr0wWEBbFmGBDoAZTo6n,Devil Inside,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:5ikDHkayqR6ZTYkpaL2Udq,Kick 30,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,1987-10-19,https://i.scdn.co/image/ab67616d0000b2733584b98b7cad9e21e79e1719,1,3,315480,https://p.scdn.co/mp3-preview/9fce08442925827d3b8e524a7a8cd3a25807239f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBAMX8700004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.585,0.568,0.0,-7.949,1.0,0.0369,0.000946,0.481,0.0949,0.487,150.808,4.0,,Petrol Records,"C © 2017 Petrol Records Pty Ltd, P This Compilation ℗ 2017 Petrol Records Pty Ltd",5767 +5768,spotify:track:0YDWyllPwj0FOrdrCjnn9G,Read All About It,"spotify:artist:0oJM3iJjMdzgsd4z5VHQvw, spotify:artist:7sfgqEdoeBTjd8lQsPT3Cy","Professor Green, Emeli Sandé",spotify:album:7AUUdfnF7LEWmVai77xZC5,Read All About It,spotify:artist:0oJM3iJjMdzgsd4z5VHQvw,Professor Green,2011-01-01,https://i.scdn.co/image/ab67616d0000b2733a8fc604a83838000f31642f,1,1,235735,https://p.scdn.co/mp3-preview/161cddd0f7cbe5868a9b10455155038a159fccfa?cid=9950ac751e34487dbbe027c4fd7f8e99,True,31,GBAAA1100291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grime,r&b,talent show,uk pop",0.656,0.752,11.0,-5.522,0.0,0.0434,0.336,0.0,0.223,0.445,100.963,4.0,,Virgin Records,"C © 2011 Virgin Records Limited, P ℗ 2011 Virgin Records Limited",5768 +5769,spotify:track:4lCv7b86sLynZbXhfScfm2,Firework,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:5BvgP623rtvlc0HDcpzquz,Teenage Dream: The Complete Confection,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2012-03-12,https://i.scdn.co/image/ab67616d0000b273937af329667311f4b2831616,1,4,227880,https://p.scdn.co/mp3-preview/f5d1ec3d074fd9a9c8b6530b10dabcf23bdf45d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USCA21001262,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.639,0.826,8.0,-4.968,1.0,0.0479,0.139,0.0,0.0803,0.648,124.075,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",5769 +5770,spotify:track:7EME8xI4YLbUUT8qVKgBoR,Things,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,spotify:album:65okcRJHUVUrFiDG3I1Sz8,The Ultimate Bobby Darin,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,2004-11-23,https://i.scdn.co/image/ab67616d0000b27332ca9d1b933d95925e170c90,1,12,151413,https://p.scdn.co/mp3-preview/092bc94d7ed80b03d42f66991ce22993890752da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USEE10180044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rock-and-roll,rockabilly,vocal jazz",0.562,0.558,4.0,-3.572,1.0,0.0453,0.858,0.0,0.107,0.839,174.704,4.0,,Rhino/Warner Records,"C © 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing",5770 +5771,spotify:track:6WMQVizkSPAufOGOk2x4dL,Sick and Tired,spotify:artist:2siHvYaxjaW5rKVRiIrMYH,Anastacia,spotify:album:032ovDTHUzM5tWZeFqPPEA,Anastacia,spotify:artist:2siHvYaxjaW5rKVRiIrMYH,Anastacia,2004,https://i.scdn.co/image/ab67616d0000b273ff4a7c68133a6c9398be6b64,1,4,210133,https://p.scdn.co/mp3-preview/ec6c2f6432a29998caf2f8725448e74ef85ea721?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM10401046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop soul,0.595,0.87,0.0,-4.495,1.0,0.0394,0.0107,0.0,0.288,0.494,99.741,4.0,,Epic,P (P) 2004 Sony Music Entertainment Inc.,5771 +5772,spotify:track:4Vng7f02Hz7XvPFsC1qFjl,I'm into Something Good,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,spotify:album:1GocNvETatEei10ng7bpJ9,"A's, B's & EP's",spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,2004-03-01,https://i.scdn.co/image/ab67616d0000b27322cf9dd2fc2a082b182ce95f,1,4,153240,https://p.scdn.co/mp3-preview/e9b4d6aa6fcca4c2efec97562a53b1ebdd2ba6cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAYE6400711,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock,rock-and-roll,singer-songwriter",0.589,0.451,0.0,-8.19,1.0,0.0315,0.822,1.25e-06,0.151,0.734,134.082,4.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",5772 +5773,spotify:track:3IYb8pVjQG77awbkC4CuBV,Love Is,spotify:artist:6IYnSXO40Bh7Zdqhf6rQoj,Alannah Myles,spotify:album:1Ghv7iViywM23K8BRFggQv,Alannah Myles,spotify:artist:6IYnSXO40Bh7Zdqhf6rQoj,Alannah Myles,1989-03-14,https://i.scdn.co/image/ab67616d0000b27340d7d779d24a56af1ad59e41,1,2,216106,https://p.scdn.co/mp3-preview/54278c9c82229f59c15b8c60c22ceff920356170?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USAT20103051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic canadian rock,0.654,0.924,2.0,-7.44,1.0,0.0969,0.00314,0.00216,0.316,0.505,101.155,4.0,,Atlantic Records,"C © 1989 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States., P ℗ 1989 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States.",5773 +5774,spotify:track:7JpNjFBrDkPQVGk3O16E8P,I Love You Love Me Love,spotify:artist:61zv3hX7l838ZyhaDyAx8S,Gary Glitter,spotify:album:2OJ3hrfbAj2sdswRqIj5CB,The Ultimate Gary Glitter,spotify:artist:61zv3hX7l838ZyhaDyAx8S,Gary Glitter,2011-11-13,https://i.scdn.co/image/ab67616d0000b2730a80d9a18e73dffcd033e9f6,1,7,195386,https://p.scdn.co/mp3-preview/eb289a7eee4fd33c31ad3f783cfecd2e19b2e908?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBCQV7200005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.466,0.493,2.0,-10.309,1.0,0.0589,0.176,0.0,0.107,0.697,114.563,3.0,,Snapper Music,"C (C) 2011 Snapper Music, P (P) 2011 Snapper Music",5774 +5775,spotify:track:3ydM4Jp7vpU4qSR5OJ7Z7x,Light It Up (feat. Static Revenger),"spotify:artist:7fRw4ouudxR1jHgyrTIKuY, spotify:artist:4Q08msBV0v3oEN91O7ubsD","Stan Walker, Static Revenger",spotify:album:7nCXhDHK9lBJ66TVu1F5Ao,Let The Music Play,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,2011-11-21,https://i.scdn.co/image/ab67616d0000b2731c82728b51b6dfd86d0da6b6,1,11,210520,https://p.scdn.co/mp3-preview/5b56724d0616789f7bea3a0b2395272dda26d0dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM01100422,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,nz christian,nz pop,melbourne bounce",0.678,0.659,5.0,-5.465,0.0,0.0355,0.0179,0.0,0.2,0.716,127.061,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,5775 +5776,spotify:track:0rkcFGA6XEVd2XV2JI6msk,When Love Comes To Town,"spotify:artist:51Blml2LZPmy7TTiAg47vQ, spotify:artist:5xLSa7l4IV1gsQfhAMvl0U","U2, B.B. King",spotify:album:5DV76VYtjhsEh0v6KwgvY7,Rattle And Hum,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1988-10-10,https://i.scdn.co/image/ab67616d0000b273ce105c367bf077c3059fbcfe,1,12,254266,https://p.scdn.co/mp3-preview/db61ecd3c837852d60083966b05a5422a9f7fa4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8890012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock,blues,blues rock,classic rock,electric blues,jazz blues,soul,soul blues,traditional blues",0.65,0.665,9.0,-11.259,1.0,0.0372,0.0526,4.62e-06,0.13,0.593,115.51,4.0,,Universal Music Group,"C © 1988 Universal-Island Records Ltd., P ℗ 1988 Universal-Island Records Ltd.",5776 +5777,spotify:track:1PEqh7awkpuepLBSq8ZwqD,I Love You Always Forever,spotify:artist:2EfG2EoT8GFJrMiilbTVl2,Donna Lewis,spotify:album:1VzYTrtId9CgUTo7VQBFbL,Now in a Minute,spotify:artist:2EfG2EoT8GFJrMiilbTVl2,Donna Lewis,1996-04-16,https://i.scdn.co/image/ab67616d0000b2733e8c8c3368963eff46c3998a,1,3,239960,https://p.scdn.co/mp3-preview/1a90ea8a54b976577d552a3dc2c5e4fb0d567961?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USAT29600040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.744,0.453,5.0,-11.977,1.0,0.0348,0.627,0.421,0.0898,0.122,103.773,4.0,,Atlantic Records,"C © 1996 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States and Canada.",5777 +5778,spotify:track:7GRgbc1Dj2NBiZpCc33c7W,Homemade Dynamite - REMIX,"spotify:artist:163tK9Wjr9P9DmM0AVK7lm, spotify:artist:6LuN9FCkKOj5PcnpouEgny, spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:7tYKF4w9nC0nq9CsPZTHyP","Lorde, Khalid, Post Malone, SZA",spotify:album:6tBpgZG9bV76nSuiz42RbA,Melodrama,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,2017-11-10,https://i.scdn.co/image/ab67616d0000b273b84e4dccaad7ebd701288431,1,12,214254,,False,0,NZUM71700469,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,metropopolis,nz pop,pop,pop,pop r&b,dfw rap,melodic rap,pop,rap,pop,r&b,rap",0.558,0.549,0.0,-4.992,0.0,0.167,0.233,0.0,0.126,0.186,106.737,4.0,,Universal Music New Zealand Limited,"C © 2017 Universal Music New Zealand Limited, P ℗ 2017 Universal Music New Zealand Limited",5778 +5779,spotify:track:1tMSsGhbQtMI4uPfUT2Mdo,When the Beat Drops Out,spotify:artist:2R1QrQqWuw3IjoP5dXRFjt,Marlon Roudette,spotify:album:1LLrj6hjIJ7O2n6nXrO0Qw,Electric Soul,spotify:artist:2R1QrQqWuw3IjoP5dXRFjt,Marlon Roudette,2014-12-12,https://i.scdn.co/image/ab67616d0000b273308a13425f75c321e1041e27,1,3,204026,https://p.scdn.co/mp3-preview/5078736cc07f281f98718f7ba8fd57084c83f3e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GB27E1400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk pop,0.613,0.647,5.0,-7.658,0.0,0.0576,0.238,0.0,0.0992,0.354,109.128,4.0,,WM Australia,"C © 2014 Matter Fixed Limited. Marketed and distributed in Australia by Warner Music Australia Pty Limited under exclusive licence, P ℗ 2014 Matter Fixed Limited. Marketed and distributed in Australia by Warner Music Australia Pty Limited under exclusive licence",5779 +5780,spotify:track:1qV6e4ITnfGmA6m6Vklvbi,Our House,spotify:artist:4AYkFtEBnNnGuoo8HaHErd,Madness,spotify:album:2P1bkVHSonLBBSKvrBbdbw,Madness,spotify:artist:4AYkFtEBnNnGuoo8HaHErd,Madness,1983-01,https://i.scdn.co/image/ab67616d0000b273df294840f002d6727d04e29c,1,1,201133,https://p.scdn.co/mp3-preview/22e0364241a200b37eb048cf2f0f35655e64ba96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USGF18200301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,new romantic,new wave,ska,ska revival",0.601,0.649,7.0,-10.57,1.0,0.0554,0.0285,7.71e-05,0.127,0.708,121.66,4.0,,Geffen,"C © 1983 Geffen Records, P ℗ 1983 Geffen Records",5780 +5781,spotify:track:144JMbvbR5txNzoZ112wo4,Strong Enough,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,spotify:album:0jZfbz0dNfDjPSg0hYJNth,Believe,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,1998,https://i.scdn.co/image/ab67616d0000b27306ce0d1f846c525e847d60e7,1,5,224000,https://p.scdn.co/mp3-preview/d839454c3df67a75dcbca68c9ad635357571ba3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAHT9803037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.593,0.923,0.0,-6.19,1.0,0.101,0.0495,0.0,0.29,0.587,124.862,4.0,,Warner Records,"C © 1998 Warner Music UK Ltd., P ℗ 1998 All tracks 1998 Warner Music UK Ltd except track 10 1987 The David Geffen Company.",5781 +5782,spotify:track:24kGngQeXHt0uhffKpq0zj,Don't Cha,"spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ, spotify:artist:1YfEcTuGvBQ8xSD1f53UnK","The Pussycat Dolls, Busta Rhymes",spotify:album:0ylxpXE00fVxh6d60tevT8,PCD (Revised International Version),spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2005-01-01,https://i.scdn.co/image/ab67616d0000b27308c08a13d8d1fbe59606a427,1,1,272080,https://p.scdn.co/mp3-preview/dc2498ab4f3c73371fe72457bf7ba7afbc3f0898?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70503191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,east coast hip hop,hardcore hip hop,hip hop,pop rap,rap",0.875,0.631,1.0,-3.475,1.0,0.099,0.00542,2.54e-06,0.127,0.549,120.002,4.0,,Universal Music Group,"C © 2005 Pussycat Dolls, LLC, P ℗ 2005 Pussycat Dolls, LLC",5782 +5783,spotify:track:1vrd6UOGamcKNGnSHJQlSt,Love Story,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:2dqn5yOQWdyGwOpOIi9O4x,Fearless,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2008-11-11,https://i.scdn.co/image/ab67616d0000b2737b25c072237f29ee50025fdc,1,3,235266,https://p.scdn.co/mp3-preview/9f5f1d355bc50d138e3496823c2b2717e3961319?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USCJY0803275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.618,0.741,2.0,-3.95,1.0,0.031,0.17,0.0,0.0822,0.296,118.984,4.0,,"Big Machine Records, LLC","C © 2008 Apollo A-1 LLC, P ℗ 2008 Apollo A-1 LLC",5783 +5784,spotify:track:5Sf3GyLEAzJXxZ5mbCPXTu,Waves - Robin Schulz Radio Edit,"spotify:artist:33W1pnW9zScZtYTnAoWnOT, spotify:artist:3t5xRXzsuZmMDkQzgOX35S","Mr. Probz, Robin Schulz",spotify:album:7l4LGPXk2mB80WgXy4VeuB,Waves (Robin Schulz Radio Edit),spotify:artist:33W1pnW9zScZtYTnAoWnOT,Mr. Probz,2014-02-07,https://i.scdn.co/image/ab67616d0000b273067dfba04c23ce2887041fff,1,1,208133,https://p.scdn.co/mp3-preview/ee5dc27ee664202e03858af02c74bfed59adf037?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,NLB8R1400002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,deep euro house,deep house,edm,german dance,pop dance,tropical house",0.829,0.51,5.0,-9.334,0.0,0.0369,0.00821,0.0014,0.0829,0.45,119.993,4.0,,Left Lane Recordings,P (P) 2014 Left Lane Recordings exclusively licensed to Ultra / Sony Music Entertainment Netherlands B.V.,5784 +5785,spotify:track:4bQ78Bblrn5d5Du8ZTiO8t,Come with Me,spotify:artist:7slfeZO9LsJbWgpkIoXBUJ,Ricky Martin,spotify:album:0x2sfLvoDGxmGhyza371pf,Mr. Put It Down,spotify:artist:7slfeZO9LsJbWgpkIoXBUJ,Ricky Martin,2013,https://i.scdn.co/image/ab67616d0000b2736860c8447d60d6e95aa4d698,1,3,217813,https://p.scdn.co/mp3-preview/f6169397d68541d1db7108fe441558fc650f1a9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSD11300183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,mexican pop,puerto rican pop",0.614,0.913,1.0,-2.191,0.0,0.052,0.0689,0.0,0.0556,0.428,124.989,4.0,,Sony Music Latin,"P (P) 2013, 2014, 2015 Sony Music Entertainment US Latin LLC",5785 +5786,spotify:track:0MYYZ0y1nuRnXr2rTLcBFw,How I Got This Way,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,spotify:album:76hqEMQKrJpYntZVub1wlG,Garage Mahal,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,2002-07-10,https://i.scdn.co/image/ab67616d0000b2731125ed752f65ff13c714ed2e,1,2,210173,https://p.scdn.co/mp3-preview/e752c33d78a82eacd0410fb7056c0a61e5dabd3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUWA00206280,spotify:user:bradnumber1,2022-04-20T22:23:45Z,"australian pop,australian rock",0.443,0.875,1.0,-5.956,1.0,0.0386,0.00725,0.0,0.0644,0.655,97.503,4.0,,WM Australia,"C © 2002 Warner Music Australia Pty Limited, P ℗ 2002 Warner Music Australia Pty Limited",5786 +5787,spotify:track:3BBmxd7Jog6eYeH7uqTqqB,Inner Ninja (feat. Olly Murs) - Remix,"spotify:artist:7t6GsqGAwrj1kwYbvNX0hN, spotify:artist:3whuHq0yGx60atvA2RCVRW","Classified, Olly Murs",spotify:album:0SVDehrGwWQMOIh2v7YR6C,Inner Ninja (feat. Olly Murs) [Remix Version],spotify:artist:7t6GsqGAwrj1kwYbvNX0hN,Classified,2013-10-04,https://i.scdn.co/image/ab67616d0000b2734e51d555fa49126aaae6082c,1,1,191907,https://p.scdn.co/mp3-preview/4f5f7871983f7945fa429a0774c3b481bb5b821c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USAT21303365,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atlantic canada hip hop,canadian hip hop,canadian old school hip hop,dance pop,pop,talent show,uk pop",0.849,0.781,6.0,-6.054,0.0,0.142,0.32,0.0,0.0688,0.852,112.848,4.0,,Half Life/Atlantic,"C 2013, P 2013",5787 +5788,spotify:track:0c4IEciLCDdXEhhKxj4ThA,Madness,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,spotify:album:3KuXEGcqLcnEYWnn3OEGy0,The 2nd Law,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,2012-09-24,https://i.scdn.co/image/ab67616d0000b273fc192c54d1823a04ffb6c8c9,1,2,281040,https://p.scdn.co/mp3-preview/f84cc7df257a52a7cf91fc166cd59c377ac32331?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAHT1200390,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern rock,permanent wave,rock",0.502,0.417,10.0,-7.665,1.0,0.0718,0.127,0.00419,0.106,0.218,180.301,4.0,,Warner Records,"C © 2012 Warner Music UK Limited, P ℗ 2012 Warner Music UK LImited",5788 +5789,spotify:track:487Dyzs7Xbbk4hIWYyYT80,Don't Think I'm Not,spotify:artist:0ThrQemMA2B8xxusTUl8IM,Kandi,spotify:album:6cjSRvVq8KVsYMkYH4GXn0,Hey Kandi...,spotify:artist:0ThrQemMA2B8xxusTUl8IM,Kandi,2000-09-12,https://i.scdn.co/image/ab67616d0000b27345dbddfa05dbb6bde7644951,1,5,243533,https://p.scdn.co/mp3-preview/5131c85806295799eeb1a39a719bc2a7c5f5a4ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USSM10007873,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b",0.859,0.622,11.0,-8.196,1.0,0.0445,0.0661,0.0,0.0394,0.433,134.007,4.0,,Columbia,"P 2000 SONY BMG MUSIC ENTERTAINMENT, INC.",5789 +5790,spotify:track:0sNSv56Glvgu2iJfoeAmS5,The Way You Look Tonight - Remastered,spotify:artist:3lzlUccNrekC1oFPCjNIOX,The Lettermen,spotify:album:4NNxfgVY5ikAbKArjn4sRC,All Time Greatest Hits,spotify:artist:3lzlUccNrekC1oFPCjNIOX,The Lettermen,1987-01-01,https://i.scdn.co/image/ab67616d0000b273302d99c5e343ffa5b8578cbc,1,9,142426,https://p.scdn.co/mp3-preview/e4e04ae211128cb3181b9024b757ebb2c500e775?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USCA28700101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,vocal harmony group",0.251,0.146,4.0,-20.004,1.0,0.0313,0.931,0.0,0.0867,0.14,102.407,3.0,,Capitol Records,"C © 1987 Capitol Records, LLC, P This Compilation ℗ 1987 Capitol Records, LLC",5790 +5791,spotify:track:0tvaw7IvKlhWbfg0l8rBUm,Never Never Never - 2000 Remaster,spotify:artist:090VebphoycdEyH165iMqc,Shirley Bassey,spotify:album:2BLQ9dfPLmc8qrofJ0j73i,15 Classic Tracks: Shirley Bassey,spotify:artist:090VebphoycdEyH165iMqc,Shirley Bassey,2013-05-03,https://i.scdn.co/image/ab67616d0000b273e10a95bec6e4c6cbf090c7bc,1,10,218866,https://p.scdn.co/mp3-preview/4cf1e07099d946cd3d1cfed349cc2b4df94d2649?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USCA20002354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.266,0.39,7.0,-10.338,1.0,0.0428,0.742,0.0,0.131,0.563,190.787,4.0,,Parlophone UK,"C © 2013 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2013 Parlophone Records Ltd, a Warner Music Group Company",5791 +5792,spotify:track:4XYHEuDwsKuxSpiIylcMnB,Over You,spotify:artist:4asCC4oxQcDzFXhCth2SgQ,Gary Puckett & The Union Gap,spotify:album:15Oqj9h8TSkGsoOKDKjsqA,Young Girl: The Best Of Gary Puckett & The Union Gap,spotify:artist:4asCC4oxQcDzFXhCth2SgQ,Gary Puckett & The Union Gap,1968,https://i.scdn.co/image/ab67616d0000b273004dcd74f13a40f050de0e03,1,5,144293,https://p.scdn.co/mp3-preview/a06189f92497e302fcd1e629bf5f6858d70b7f03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USSM16801074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,country rock,folk rock,mellow gold,merseybeat,rock-and-roll,soft rock",0.4,0.455,2.0,-10.679,1.0,0.0338,0.374,2.54e-06,0.246,0.532,115.531,4.0,,Columbia/Legacy,"P Originally Recorded 1969 & Released 1992, Originally Released 1968, 1969, 1970, 1971, (P) 2004 Sony Music Entertainment Inc.",5792 +5793,spotify:track:3NuK5xMlSlB6K2Qp16zf3h,Solo (feat. Demi Lovato),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Clean Bandit, Demi Lovato",spotify:album:1MvF4ulZKH7SaDQs9rE5nc,What Is Love? (Deluxe Edition),spotify:artist:6MDME20pz9RveH9rEXvrOM,Clean Bandit,2018-11-30,https://i.scdn.co/image/ab67616d0000b27337fb0680110fbb107740de5d,1,3,222706,https://p.scdn.co/mp3-preview/5804c7d4834df732e50b8a752fab750d28756244?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBAHS1800328,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,pop,post-teen pop",0.74,0.622,11.0,-4.608,0.0,0.0446,0.0357,4.85e-05,0.356,0.556,104.966,4.0,,Atlantic Records UK,"C © 2018 Atlantic Records UK, a division of Warner Music UK Limited., P ℗ 2018 Atlantic Records UK, a division of Warner Music UK Limited. Tracks 1 & 11 (P) 2017 Atlantic Records UK, a division of Warner Music UK Limited. Tracks 4 & 16 (P) 2016 Atlantic Records UK, a division of Warner Music UK Limited",5793 +5794,spotify:track:3ghyyt1IOdZ7W9cdR4fpJB,Hero Of The Day,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:2y3CggQI4N4EpMCGNHR56S,Load,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1996-01-01,https://i.scdn.co/image/ab67616d0000b273189f216b3b5b6483abec3a61,1,6,261906,https://p.scdn.co/mp3-preview/523ee9e1e86a315928c0358d3003dc9bd0a46c31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMC9600012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.35,0.902,8.0,-7.125,1.0,0.0357,8.82e-05,0.0425,0.111,0.78,115.909,4.0,,Universal Music Group,"C © 1996 Metallica, P ℗ 1996 Metallica",5794 +5795,spotify:track:3ETZSIbKNu8s1kgJZ2ZvjK,Keep Talking,spotify:artist:6tVsUWjip0Tnp1EyCRX5XH,Cyrus Villanueva,spotify:album:4RsuB1WtTRVpNcQQgmVanN,Keep Talking,spotify:artist:6tVsUWjip0Tnp1EyCRX5XH,Cyrus Villanueva,2016-02-12,https://i.scdn.co/image/ab67616d0000b27319ba41f95fffd4c7f7dc36d0,1,1,204647,https://p.scdn.co/mp3-preview/918b28e8be1029891468cefd387096da0ab27c12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM01600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.536,0.783,0.0,-4.705,1.0,0.134,0.0954,0.0,0.199,0.345,125.688,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,5795 +5796,spotify:track:54flyrjcdnQdco7300avMJ,We Will Rock You - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:6Di4m5k1BtMJ0R44bWNutu,News Of The World (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1977-10-28,https://i.scdn.co/image/ab67616d0000b27393c65b02f4a72cd6eccf446d,1,1,122066,https://p.scdn.co/mp3-preview/61dc76538204d41f88210db47901afea4ed885fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBUM71029618,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.693,0.497,2.0,-7.316,1.0,0.119,0.679,0.0,0.258,0.473,81.308,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",5796 +5797,spotify:track:78gWMNi0b8lgSgVe0U0AMX,House of Fun - 2000 Remastered Version,spotify:artist:4AYkFtEBnNnGuoo8HaHErd,Madness,spotify:album:6SJo2ntytBXnRRzEE8qRq9,Complete Madness,spotify:artist:4AYkFtEBnNnGuoo8HaHErd,Madness,1982-04-23,https://i.scdn.co/image/ab67616d0000b2739e7babdbd0f63a49ef1c03e0,1,9,171706,https://p.scdn.co/mp3-preview/33263d270415f9104d9863dfc511e1d751c54f89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCZR0000005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,new romantic,new wave,ska,ska revival",0.726,0.934,4.0,-4.684,0.0,0.0288,0.465,0.00115,0.169,0.985,127.387,4.0,,Union Square Music,"C © 2003 Stirling Holdings Limited under exclusive license to Union Square Music Limited, a BMG Company, P ℗ 2003 Stirling Holdings Limited under exclusive license to Union Square Music Limited, a BMG Company",5797 +5798,spotify:track:14uiLlBzEQOqXxJRa7S4cL,Dancing in the Moonlight - 2001 Remix,spotify:artist:6xeFne1rkxMhKSW3ipvkdV,Toploader,spotify:album:0hdH7DpYGnTWmwV2UhYbKa,A Walk To Remember Music From The Motion Picture,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2002-01-15,https://i.scdn.co/image/ab67616d0000b2733bb0905210d7c7304d6753d3,1,4,232440,https://p.scdn.co/mp3-preview/3830a1584cc96b0e5ee08d0e6164e23488441677?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBBBN0102316,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british alternative rock,0.74,0.849,10.0,-3.205,1.0,0.026,0.0203,4.02e-06,0.346,0.949,118.977,4.0,,Epic/Sony Music Soundtrax,P (P) 2002 Compilation Sony Music Entertainment Inc.,5798 +5799,spotify:track:0AUIjHlr9KfbVoemhhxHS6,Yeah 3x,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,spotify:album:1DDkkFhCSAPfSVg6bIWq4L,Yeah 3x,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2010-10-25,https://i.scdn.co/image/ab67616d0000b2739fe5b0a20d52fc9aab598694,1,1,241093,https://p.scdn.co/mp3-preview/2b88c6a69a684ce6ef63df15912813582e3a42f7?cid=9950ac751e34487dbbe027c4fd7f8e99,True,3,USJI11000230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap",0.702,0.883,11.0,-3.239,0.0,0.0437,0.000407,1.27e-06,0.0885,0.709,129.999,4.0,,Jive,P (P) 2011 Sony Music Entertainment,5799 +5800,spotify:track:5vjmFhes2UVEo5aGQ27q7l,Tired of Being Alone,spotify:artist:3dkbV4qihUeMsqN4vBGg93,Al Green,spotify:album:4nTKWrByenmBKz7juWltfi,Gets Next To You,spotify:artist:3dkbV4qihUeMsqN4vBGg93,Al Green,1971-08-14,https://i.scdn.co/image/ab67616d0000b273cb625e35a0a9d2fcfa46706d,1,4,172320,https://p.scdn.co/mp3-preview/ede61086d1b33613da862ba3f33fdc1caf398b84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US2HK0914104,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,funk,memphis soul,quiet storm,soul,soul blues,southern soul",0.769,0.39,7.0,-8.525,1.0,0.0391,0.365,0.0104,0.0673,0.61,98.077,4.0,,Hi Records Under Exclusive License to Fat Possum Records,"C 1971 Hi Records Under Exclusive License to Fat Possum Records, P 1971 Hi Records Under Exclusive License to Fat Possum Records",5800 +5801,spotify:track:2sZIclzhHlH8tzf7wry9hK,Harper Valley P.T.A.,spotify:artist:3MIwMeYV8vmgQFbbRiJTp2,Jeannie C. Riley,spotify:album:43obe0SQxjP4aFRyyj3QRg,Harper Valley P.T.A. (The Plantation Recordings 1968-70),spotify:artist:3MIwMeYV8vmgQFbbRiJTp2,Jeannie C. Riley,2013-09-30,https://i.scdn.co/image/ab67616d0000b273b547cd753b67701cfef801d9,1,1,194400,https://p.scdn.co/mp3-preview/cd79de1cdcb7fadfef147305a6ffd177adc683c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAWA9872381,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic country pop,0.795,0.448,4.0,-13.427,1.0,0.0444,0.629,0.0,0.0659,0.96,122.318,4.0,,Charly,C (C) 2013 Charly Acquisitions Limited,5801 +5802,spotify:track:3GK2EhaV9XoMmzdKkKqfMt,"This Is It - 7"" Version",spotify:artist:6XCS9JCn56Q252cMOTbeq6,Dannii Minogue,spotify:album:7FuozEPHEiQ4kvEuSqigsZ,This Is It: The Very Best Of,spotify:artist:6XCS9JCn56Q252cMOTbeq6,Dannii Minogue,2013-08-23,https://i.scdn.co/image/ab67616d0000b273932e5002fd442d6019f9a2ca,1,7,219600,https://p.scdn.co/mp3-preview/6da36a5247a701b40b0ec4eb49055382b2d977ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUMU09300147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,europop",0.656,0.987,1.0,-6.435,1.0,0.0452,0.00567,0.0,0.106,0.719,123.942,4.0,,WM Australia,"C © 2013 This compilation (c) 2013 Warner Music Australia Pty Limited, P ℗ 2013 This compilation (P) 2013 Warner Music Australia Pty Limited",5802 +5803,spotify:track:5ztQHTm1YQqcTkQmgDEU4n,Mamma Mia,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:5zT1JLIj9E57p3e1rFm9Uq,Abba,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1975,https://i.scdn.co/image/ab67616d0000b27379e86d08eb947241b3a9247c,1,1,215266,https://p.scdn.co/mp3-preview/b578f8867804a1545b49ef6aea52bd0b8ec766d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAYD7501010,spotify:user:bradnumber1,2021-08-08T09:27:48Z,"europop,swedish pop",0.748,0.771,2.0,-7.01,1.0,0.0318,0.28,0.000333,0.466,0.782,137.543,4.0,,Universal Music Group,"C © 2001 Polar Music International AB, P ℗ 2001 Polar Music International AB",5803 +5804,spotify:track:2S3flt2KfOpG7JNmtteAAZ,Words,spotify:artist:5CT7RBitS0e0u78T8tRBWQ,Missing Persons,spotify:album:08GAuXkchZVoRsnKdcihxs,Spring Session M.,spotify:artist:5CT7RBitS0e0u78T8tRBWQ,Missing Persons,1982,https://i.scdn.co/image/ab67616d0000b273af354a1d4eec6e83e8b58e4d,1,9,267866,https://p.scdn.co/mp3-preview/7f2ae7c7105f9a47d94bd3851878eeaff4f582b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USCA28700329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop",0.751,0.552,9.0,-13.447,1.0,0.0384,0.036,3.17e-06,0.0761,0.695,135.533,4.0,,Capitol Records,"C © 1982 Capitol Records, LLC, P ℗ 2007 Capitol Records, LLC",5804 +5805,spotify:track:1Ya87xcJInskhE5joOq9tP,Way Down,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0QVoYzGd1p8Z3ohEaM0lsc,Elvis 30 #1 Hits,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2002-09-24,https://i.scdn.co/image/ab67616d0000b273a0b8a1ce10fddbba6879262e,1,30,157333,https://p.scdn.co/mp3-preview/cd7ebed317fca8b973d3843393b1a2cb7849549b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USRC10200099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.462,0.87,0.0,-6.554,1.0,0.076,0.501,0.000174,0.28,0.507,148.304,4.0,,RCA Records Label,P This Compilation (P) 2002 Sony Music Entertainment,5805 +5806,spotify:track:7crplFzt7spG80NCbpmuCp,I Know What You Did Last Summer,"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF","Shawn Mendes, Camila Cabello",spotify:album:2Ri94NAjmRjZkOgqoQCK8R,Handwritten (Revisited),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2015-11-20,https://i.scdn.co/image/ab67616d0000b27360838ee79f90f9f038391d81,1,13,223826,https://p.scdn.co/mp3-preview/662239ebdc65ec4487ecbbfe0cf6e4322812405e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop,dance pop,pop",0.657,0.769,9.0,-4.591,0.0,0.115,0.123,0.0,0.245,0.712,113.966,4.0,,Universal Music Group,"C © 2015 Island Records, a division of UMG Recordings, Inc., P ℗ 2015 Island Records, a division of UMG Recordings, Inc.",5806 +5807,spotify:track:3F64pIPqvcujnwvcVLVZ64,Young Girl,spotify:artist:4asCC4oxQcDzFXhCth2SgQ,Gary Puckett & The Union Gap,spotify:album:15Oqj9h8TSkGsoOKDKjsqA,Young Girl: The Best Of Gary Puckett & The Union Gap,spotify:artist:4asCC4oxQcDzFXhCth2SgQ,Gary Puckett & The Union Gap,1968,https://i.scdn.co/image/ab67616d0000b273004dcd74f13a40f050de0e03,1,2,194493,https://p.scdn.co/mp3-preview/82cf5c746eb1d9f14795bc187f7a1bdee9268979?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USSM10400918,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,country rock,folk rock,mellow gold,merseybeat,rock-and-roll,soft rock",0.408,0.544,3.0,-8.277,1.0,0.0333,0.653,0.0,0.512,0.446,119.112,4.0,,Columbia/Legacy,"P Originally Recorded 1969 & Released 1992, Originally Released 1968, 1969, 1970, 1971, (P) 2004 Sony Music Entertainment Inc.",5807 +5808,spotify:track:5jzX4dWVQeBTtfBaXnMRt5,DONTTRUSTME,spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,spotify:album:6MSOHtUiG49Grd7BdZrRUm,WANT,spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,2008-07-07,https://i.scdn.co/image/ab67616d0000b273a05a849e8c3d0966cf1f6790,1,3,192573,https://p.scdn.co/mp3-preview/a846deda1f57f06c1963832ec77c3b92c7c0516a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,70,USAT20802554,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropowerpop,pop punk,pop rap,post-teen pop",0.791,0.713,5.0,-3.742,0.0,0.254,0.0163,0.0,0.189,0.514,130.012,4.0,,Rhino Atlantic,"C © 2008 Photo Finish Records, LLC., P ℗ 2008 Photo Finish Records, LLC.",5808 +5809,spotify:track:79u1FifbMLDQ12poa9ab3K,Leaning on a Lamp Post - 2002 Remaster,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,spotify:album:0o3pjzJ5XZGm0BZieBsTcV,Into Something Good (The Mickie Most Years 1964-1972),spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,2008-08-04,https://i.scdn.co/image/ab67616d0000b2738079debfd1c251f3d121393f,2,3,154253,https://p.scdn.co/mp3-preview/7539a3b35c3e37fcb16305befa7270c7be1ca20f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,GBAYE0201788,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock,rock-and-roll,singer-songwriter",0.619,0.654,0.0,-4.773,1.0,0.0324,0.185,0.00661,0.0919,0.969,128.357,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",5809 +5810,spotify:track:4b8GTae6rqb9oPiRzVa3Gy,Loser,spotify:artist:3vbKDsSS70ZX9D2OcvbZmS,Beck,spotify:album:7MKi8PuCX5QJtaG9wLbOI2,Mellow Gold,spotify:artist:3vbKDsSS70ZX9D2OcvbZmS,Beck,1994-03-01,https://i.scdn.co/image/ab67616d0000b273b56d7774c115d9d96f9da19f,1,1,234960,https://p.scdn.co/mp3-preview/2e0996ca838ee08b2cc3498e28224d5a9d049bb0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19463401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,anti-folk,permanent wave,rock,slacker rock",0.595,0.617,6.0,-10.455,0.0,0.117,0.0343,0.000135,0.383,0.823,85.387,4.0,,Universal Music Group,"C © 1993 Geffen Records Inc., P ℗ 1994 Geffen Records Inc.",5810 +5811,spotify:track:455AfCsOhhLPRc68sE01D8,Last Friday Night (T.G.I.F.),spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:5BvgP623rtvlc0HDcpzquz,Teenage Dream: The Complete Confection,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2012-03-12,https://i.scdn.co/image/ab67616d0000b273937af329667311f4b2831616,1,2,230746,https://p.scdn.co/mp3-preview/4832a253edb5743b7ef5fdaeb19848f89e67c0f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USCA21001264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.649,0.814,3.0,-3.796,0.0,0.0416,0.00125,4.29e-05,0.671,0.764,126.031,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",5811 +5812,spotify:track:53DZyJ7xXnTaUZ1VPdFWEn,Swamp Thing,spotify:artist:1fN3lF5RILxJeG9H8EhEDo,The Grid,spotify:album:6odcotWv2xd7NP7RrGBS5b,90s 100 Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-11-28,https://i.scdn.co/image/ab67616d0000b273b212e660aec81b60a425d4f1,1,7,237520,https://p.scdn.co/mp3-preview/c25ae9f4a5ddb8b909cf5faf90588e2c1a79d2fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBARL9400047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hip house,0.666,0.942,2.0,-9.79,1.0,0.0403,0.00219,0.882,0.0589,0.723,134.809,4.0,,Legacy Recordings,P This compilation (P) 2014 Sony Music Entertainment,5812 +5813,spotify:track:0a4agFmqHXxcZl1nho1BxM,Heart Of Glass - Special Mix,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,spotify:album:7mEjsBlRmfP63cH1gdPT6A,Best Of Blondie,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,1981-10-31,https://i.scdn.co/image/ab67616d0000b2738cf86a9be38868f1d73cdb58,1,1,275733,https://p.scdn.co/mp3-preview/ef3a2acb5702a7940d9e9b8c0a571477c2e453e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USCH39600074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop,permanent wave,power pop,rock,synthpop",0.694,0.577,4.0,-14.63,1.0,0.0309,0.015,0.00859,0.0853,0.846,114.477,4.0,,Chrysalis\EMI Records (USA),"C © 1981 Capitol Records, LLC, P This Compilation ℗ 1981 Capitol Records, LLC",5813 +5814,spotify:track:79Mjfhh393dZdAsTvUFDR6,Don't Go Breaking My Heart,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:7vM2i8qUZILFrg03mu3pva,Don't Go Breaking My Heart,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,2018-05-17,https://i.scdn.co/image/ab67616d0000b2731817cbfef0c3ffcf03654f6d,1,1,215724,https://p.scdn.co/mp3-preview/5e16973f354cc9fae5dd3ca5af27ae5ee870e4ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USRC11800456,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.643,0.703,0.0,-5.573,1.0,0.0913,0.0218,0.0,0.0964,0.246,95.041,4.0,,RCA Records Label,"P (P) 2018 K-Bahn, LLC & RCA Records, a division of Sony Music Entertainment",5814 +5815,spotify:track:2U0HPJqbMOHez51Uvysq3V,Bring Me Some Water,spotify:artist:01Ppu7N8uYJI8SAONo2YZA,Melissa Etheridge,spotify:album:5osNPHpdk6WyPSDerAUBWf,Melissa Etheridge,spotify:artist:01Ppu7N8uYJI8SAONo2YZA,Melissa Etheridge,1988-01-01,https://i.scdn.co/image/ab67616d0000b27390236daa5430e4766292f37a,1,9,233000,https://p.scdn.co/mp3-preview/33c1d09d989b3fcfdb913a141cf266b39f09003d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USIR28800053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ectofolk,heartland rock,lilith,pop rock,singer-songwriter",0.685,0.566,2.0,-13.726,1.0,0.0379,0.0165,1.2e-06,0.107,0.674,125.678,4.0,,Island Records,"C © 1988 The Island Def Jam Music Group, P ℗ 1988 The Island Def Jam Music Group",5815 +5816,spotify:track:0u56clbegXVe6daER5ZHm4,Wisemen,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,spotify:album:1wklsLLbGIZg1RDpoJovrb,Back to Bedlam,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,2005-10-04,https://i.scdn.co/image/ab67616d0000b2739489b7675f782feada134658,1,3,221773,https://p.scdn.co/mp3-preview/e6ebc02db71732f37a97859b90bc87a4cb3ef7e3?cid=9950ac751e34487dbbe027c4fd7f8e99,True,48,USAT20401589,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.633,0.701,10.0,-5.969,1.0,0.0267,0.253,4.79e-05,0.165,0.634,151.892,4.0,,Atlantic Records,"C An Atlantic Records Release, © 2005 Warner Music UK Limited, P An Atlantic Records Release, ℗ 2005 Warner Music UK Limited",5816 +5817,spotify:track:4DsX8QjLnYKCkUNzOKOq1M,Under The Boardwalk - Mono,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:5nKpMsduwp5xqCKq2IbSKv,The Rolling Stones In Mono (Remastered 2016),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1966-01-01,https://i.scdn.co/image/ab67616d0000b2738d1570a03b9354518f0b618b,2,8,167506,https://p.scdn.co/mp3-preview/11b496c14d8634f2c19bbb47481fa9ea6e8db16f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,USA171610026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.714,0.519,4.0,-8.007,1.0,0.0371,0.646,0.0,0.218,0.488,119.032,4.0,,"ABKCO Music & Records, Inc.","C © 2016 ABKCO Music & Records, Inc., P ℗ 2016 This compilation ABKCO Music & Records, Inc.",5817 +5818,spotify:track:6D4obLx2BPec8kI0oI4ntR,The Candy Man - 2016 Remaster,spotify:artist:1NAWG3AngjBXyKbmPaz92D,Sammy Davis Jr.,spotify:album:3O1KKLXJAM0IEtOzC4s0zn,Sammy Davis Jr.'s Greatest Hits (2016 Remaster),spotify:artist:1NAWG3AngjBXyKbmPaz92D,Sammy Davis Jr.,2016-04-29,https://i.scdn.co/image/ab67616d0000b273dd4e6df6297455d9353bbd4b,1,2,188653,https://p.scdn.co/mp3-preview/f3e290ea1702dffc95af760d332e89c9102034dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GBAWA0680043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,vocal jazz",0.57,0.616,0.0,-8.163,1.0,0.0365,0.668,0.0,0.3,0.858,132.326,4.0,,Charly Digital,"C 2016 Charly Acquisitions Ltd., P 2016 Charly Acquisitions Ltd.",5818 +5819,spotify:track:3abgbTzYU0h1pCLLgo27ZW,One Time,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:0dZo2hK8e3u1M9kmDGofq2,My World,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2009-01-01,https://i.scdn.co/image/ab67616d0000b27327cc11d3937196685f54aec1,1,1,215866,https://p.scdn.co/mp3-preview/d962c05f7d852d25bde7cb8bd7d02779d53d3ee4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70964274,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.691,0.853,1.0,-2.528,0.0,0.0372,0.0631,7.13e-05,0.082,0.762,145.999,4.0,,Universal Music Group,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",5819 +5820,spotify:track:6hMfpbN18Z6dvspRWOqAdQ,Hold Me,spotify:artist:3g4Os4LNZvOQUaokeSLCwG,P.J. Proby,spotify:album:321qqovfPWeHShIF2pyWO4,Decca EP,spotify:artist:3g4Os4LNZvOQUaokeSLCwG,P.J. Proby,1964-01-01,https://i.scdn.co/image/ab67616d0000b273bc61de076d84988d89a32437,1,1,163480,https://p.scdn.co/mp3-preview/721a3276a7c8dc15a8985630e405bd5f1587c9da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBBBA6462410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"merseybeat,rock-and-roll",0.387,0.804,4.0,-6.638,1.0,0.0545,0.645,1.37e-05,0.116,0.635,126.973,4.0,,UMC (Universal Music Catalogue),"C © 1964 Capitol Records, LLC, P ℗ 1964 Capitol Records, LLC",5820 +5821,spotify:track:42dbDZX9bsEGqMZWYmnR7J,Perfectly Lonely,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:1V5vQRMWTNGmqwxY8jMVou,Battle Studies,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2009-11-13,https://i.scdn.co/image/ab67616d0000b2731e3dbe4453ed61633c472fbe,1,5,268093,https://p.scdn.co/mp3-preview/c1083c433764870df759cc73bc5e6abd1f8dd323?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM10905702,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.678,0.53,0.0,-8.515,1.0,0.024,0.00987,0.000274,0.0437,0.678,91.779,4.0,,Columbia,P (P) 2009 Sony Music Entertainment,5821 +5822,spotify:track:3ylbGgtmgFawUcoOnCR6Pj,They Don't Know Us,spotify:artist:2syYGtINPRno1nxxil7UcJ,Kilter,spotify:album:5Q6CNJZN5Hx8QZWKY2wNrg,Through The Distortion,spotify:artist:2syYGtINPRno1nxxil7UcJ,Kilter,2017-06-09,https://i.scdn.co/image/ab67616d0000b273959e3612cd77f88dc2acea8d,1,6,195356,https://p.scdn.co/mp3-preview/e4884d2e8aa0a9dcf4ca04d7954ec76e50634201?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUNV01600441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,aussietronica,0.749,0.8,4.0,-5.124,0.0,0.0362,0.0205,0.00107,0.335,0.537,114.007,4.0,,Universal Music Australia (Distribution),"C © 2017 etcetc Music Pty Ltd, P ℗ 2017 etcetc Music Pty Ltd",5822 +5823,spotify:track:50jzaB4NVS3mO6rRIE7mmm,Tequila,spotify:artist:4pZvHlvLV5er0s4rfQ6m5A,A.L.T. And The Lost Civilization,spotify:album:40H2tO9mxHOWfrBYfi0Llo,Another Latin Timebomb,spotify:artist:4pZvHlvLV5er0s4rfQ6m5A,A.L.T. And The Lost Civilization,1992,https://i.scdn.co/image/ab67616d0000b273693d3016d3c370a2ec609724,1,1,243800,https://p.scdn.co/mp3-preview/203d8aa0a23d023c5f6c14a4844dfd3dd84499da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USAT20180385,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.782,0.704,10.0,-10.342,0.0,0.158,0.00603,1.23e-05,0.944,0.599,93.517,4.0,,Rhino Atlantic,"C © 1992 Atlantic Recording Corp., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group company, P ℗ 1992 Atlantic Recording Corp., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group company",5823 +5824,spotify:track:6W2VbtvMrDXm5vYeB7amkO,Footloose,spotify:artist:3Y3xIwWyq5wnNHPp5gPjOW,Kenny Loggins,spotify:album:3uN87hwClF0hult2cxMbAW,"Yesterday, Today, Tomorrow - The Greatest Hits Of Kenny Loggins",spotify:artist:3Y3xIwWyq5wnNHPp5gPjOW,Kenny Loggins,1997-03-25,https://i.scdn.co/image/ab67616d0000b27319db9ac54c80a898a179f0f1,1,3,220706,https://p.scdn.co/mp3-preview/0408c4e5f1d51b6b605429205342fde6930d96ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM18400107,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new wave pop,singer-songwriter,soft rock,yacht rock",0.546,0.895,9.0,-7.189,1.0,0.0579,0.0819,1.42e-05,0.0768,0.494,174.089,4.0,,Columbia,P This compilation (P) 1997 Sony Music Entertainment,5824 +5825,spotify:track:2JZfTvWWtpaE8NohqRXqFr,With Or Without You,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:1WupyTEE8twuMK5iEoBcm2,The Best of 1980-1990 & B-Sides,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1998-10-01,https://i.scdn.co/image/ab67616d0000b273d24fdd83acfb78a533093dc4,1,3,295200,https://p.scdn.co/mp3-preview/a7e5de3437eecf201cc1817a7b2d8fae96910199?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8790003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.546,0.485,2.0,-9.424,1.0,0.027,0.000128,0.318,0.0939,0.106,109.913,4.0,,Universal Music Group,"C (C) 1998 Universal-Island Records Ltd., P (P) 1998 Universal-Island Records Ltd.",5825 +5826,spotify:track:5J7tzt8wCf4KbBnEKdhWMX,Faded White Dress,spotify:artist:2ZmmVo9SlM8XJH97UWEu7l,Amy Meredith,spotify:album:7BKUaIZLd76SofqrLIusog,Restless,spotify:artist:2ZmmVo9SlM8XJH97UWEu7l,Amy Meredith,2010-07-02,https://i.scdn.co/image/ab67616d0000b27399d7025a81839a8b0e7f4a15,1,5,188600,https://p.scdn.co/mp3-preview/9606ebdfb45bf211dc4ca6805fc1bc1bbcd890f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00900287,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.42,0.923,9.0,-4.061,0.0,0.0948,0.000497,6.99e-05,0.0983,0.444,147.944,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd. except track 2 (P) 2009 Sony Music Entertainment Australia Pty Ltd.,5826 +5827,spotify:track:4PlfgBlKpZZ0LmAR5RgCxT,Teen Angel,spotify:artist:55Rf9Kfqd30nmqaeEDMpic,Mark Dinning,spotify:album:1naxPxUqEpLyaUiKLnlvql,Teen Angel,spotify:artist:55Rf9Kfqd30nmqaeEDMpic,Mark Dinning,2012-03-16,https://i.scdn.co/image/ab67616d0000b273de0d87bbd7b2fad6193e4bd5,1,1,160320,https://p.scdn.co/mp3-preview/b1c78f89b01851a5dcd197c4612afee57084d21d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR6V81290607,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.447,0.182,0.0,-9.395,1.0,0.0367,0.704,0.0,0.142,0.33,95.094,4.0,,Golden Recordings,"C Golden Recordings, P Golden Recordings",5827 +5828,spotify:track:2mfUa8bLs2s5N4VaqJZ4lZ,Most Girls,spotify:artist:5p7f24Rk5HkUZsaS3BLG5F,Hailee Steinfeld,spotify:album:4D6OyZ4Q57vH7gul8PVzTv,Most Girls,spotify:artist:5p7f24Rk5HkUZsaS3BLG5F,Hailee Steinfeld,2017-04-28,https://i.scdn.co/image/ab67616d0000b2739e1b81dc79bd5055417b1e5a,1,1,204400,https://p.scdn.co/mp3-preview/9b178c9d1b8534b3a7f88658dbb2e746d4cc4af3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71703935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.755,0.57,9.0,-7.132,1.0,0.0888,0.0416,0.0,0.0891,0.406,102.991,4.0,,Universal Music Group,"C © 2017 Republic Records, a division of UMG Recordings, Inc., P ℗ 2017 Republic Records, a Division of UMG Recordings, Inc.",5828 +5829,spotify:track:28BRbc0uO1WY7eFrkwaP2U,One,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:1inliP5Y0fVsakUbhdwcDU,U218 Singles,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2006-01-01,https://i.scdn.co/image/ab67616d0000b273221618e5c796291fd2d64882,1,12,275400,https://p.scdn.co/mp3-preview/e53bba655120cb3e8bc77f2afa387b595ef38a59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN9190003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.556,0.616,0.0,-5.76,1.0,0.0275,0.242,0.00137,0.148,0.286,90.759,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",5829 +5830,spotify:track:7v7FpQhlFzi4cSXlm0sePd,Let It Be,spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,spotify:album:6u9Ze5iYniHD8siLhYaD2S,Let It Be,spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,2014-08-27,https://i.scdn.co/image/ab67616d0000b273876b77892cc25fab441b1bf9,1,1,186253,https://p.scdn.co/mp3-preview/f2da2a3bf6a218b11856c55738ee8510d634648f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1400147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie poptimism,pop",0.489,0.658,10.0,-4.521,0.0,0.0649,0.236,0.0,0.0651,0.666,80.764,4.0,,Syco Music,P (P) 2014 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,5830 +5831,spotify:track:0vaf64cpnqM7COUZZkoBig,Electric Feel,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,spotify:album:3VfcbvbaalkDLRCIplPj3e,Oracular Spectacular/Congratulations,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,2007,https://i.scdn.co/image/ab67616d0000b2737823743acd3aa25a3a4c5758,1,4,229640,https://p.scdn.co/mp3-preview/b288d1b3245bfa82243267c77fe152dbd696f3c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10702131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,indie rock,indietronica,modern rock,rock",0.763,0.807,1.0,-3.714,1.0,0.035,0.0714,0.28,0.348,0.559,103.038,3.0,,Columbia/Legacy,P (P) 2007 Sony Music Entertainment/(P) 2010 Sony Music Entertainment,5831 +5832,spotify:track:64yrDBpcdwEdNY9loyEGbX,21 Guns,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:1AHZd3C3S8m8fFrhFxyk79,21st Century Breakdown,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,2009-05-15,https://i.scdn.co/image/ab67616d0000b273c2ced39899b0d67cd5a724fa,1,16,321093,https://p.scdn.co/mp3-preview/431b2787cb98a4dea90606248e0a835afbf6b6f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USRE10900679,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.268,0.742,5.0,-4.939,1.0,0.0355,0.0518,0.0,0.626,0.416,159.779,4.0,,Reprise,"C © 2009 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2009 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",5832 +5833,spotify:track:2MGZFL6kqsXxXojlm64BUn,True Blue,spotify:artist:5kPsbSWuadXAb2wheoVRkf,John Williamson,spotify:album:39Uimqur7UcRay3BIZbj0b,Old Man Emu,spotify:artist:5kPsbSWuadXAb2wheoVRkf,John Williamson,1982-03-01,https://i.scdn.co/image/ab67616d0000b273d65ea590f6e730444a2f8ade,1,8,245000,https://p.scdn.co/mp3-preview/891c064fab1efb9369546620b34805390f101d11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUEQ08200008,spotify:user:bradnumber1,2021-08-30T06:45:47Z,"australian children's music,australian country,australian rock,bush ballad",0.534,0.269,5.0,-14.339,1.0,0.0359,0.715,3.24e-06,0.11,0.499,108.886,4.0,,WM Australia,"C © 1982 Emusic Pty Ltd, P ℗ 1982 Emusic Pty Ltd",5833 +5834,spotify:track:1ExfPZEiahqhLyajhybFeS,The Lazy Song,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:1uyf3l2d4XYwiEqAb7t7fX,Doo-Wops & Hooligans,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2010-05-11,https://i.scdn.co/image/ab67616d0000b273f6b55ca93bd33211227b502b,1,5,189109,https://p.scdn.co/mp3-preview/8a6cd6679fc2a388b989a09b571194723d45cb71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAT21001886,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.794,0.711,8.0,-5.124,0.0,0.0699,0.3,0.0,0.0955,0.955,174.915,4.0,,Atlantic Records,"C © 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States., P ℗ 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States.",5834 +5835,spotify:track:3MJOiicdOtPcXg0uuvM1VL,Stars On 45 - Original Single Version,spotify:artist:4r8b3Hr0AMhzhAg75le0Gx,Stars On 45,spotify:album:4s9UaCKdJ2T0rsKwJJC3aE,Stars On 45,spotify:artist:4r8b3Hr0AMhzhAg75le0Gx,Stars On 45,1981-09-08,https://i.scdn.co/image/ab67616d0000b273e1f982c6fa501d80ff012cfc,1,1,286666,https://p.scdn.co/mp3-preview/bcfc8f3936dfe359ac490ae146de592e0ae75362?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,NLC288100003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.734,0.784,7.0,-5.84,1.0,0.0527,0.19,3.75e-06,0.621,0.963,123.086,4.0,,Red Bullet,"C Red Bullet, P Red Bullet",5835 +5836,spotify:track:47W6YR93MPCGLEUReLMyDm,Virtual Insanity - Remastered 2006,spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,spotify:album:6bxhCuuhyD3zQOGZwrBduo,High Times: Singles 1992-2006 (Remastered),spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,2006-11-06,https://i.scdn.co/image/ab67616d0000b2730a56670fb490847a007e9365,1,6,229360,https://p.scdn.co/mp3-preview/131541b8029b8613ff0ebef49e26aed5bfca795e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBARL0601475,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.662,0.949,6.0,-4.758,1.0,0.108,0.128,0.0,0.135,0.516,91.954,4.0,,Columbia,P (C) 2006 Sony Music Entertainment UK Limited,5836 +5837,spotify:track:2vCildfq2lk1uKuJ8z9rnW,Meet Her At The Love Parade,spotify:artist:0wOXK4GjUAFUDhd7mvKBbW,Da Hool,spotify:album:2GRIn8XrBR4UPEHiYc1UJe,"Clubland - Dance Hits: The Biggest Tracks Of All Time, Vol. 1",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-12-04,https://i.scdn.co/image/ab67616d0000b2730beb49ccb19b199a3c819f9d,1,3,213466,https://p.scdn.co/mp3-preview/1bf887738377f3bae70627dec4c92df5edeb2bc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DES230100011,spotify:user:bradnumber1,2021-11-11T04:13:12Z,bubble trance,0.793,0.644,7.0,-8.208,1.0,0.0805,0.00412,0.92,0.0509,0.119,131.96,4.0,,Central Station Records,P 2015 Central Station Records,5837 +5838,spotify:track:423o3ZHIaBtGXyhF1uH41a,Walk of Life,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,spotify:album:7jvcSnCnugLcisBCNBm60s,Brothers in Arms,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,1985-05-13,https://i.scdn.co/image/ab67616d0000b273fb995d2871f084b34afae3b3,1,3,252466,https://p.scdn.co/mp3-preview/cb6b9d5ce8a13292c516aa3036d81ff9465a6617?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBF088500675,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock",0.461,0.936,4.0,-6.866,1.0,0.109,0.435,9.13e-05,0.124,0.804,172.404,4.0,,Warner Records,"C © 2000 Warner Records Inc., P ℗ 1996 Mercury Records Ltd. (London), under license to Warner Records Inc.",5838 +5839,spotify:track:7nfb3iy0zjqk5N44LQM2vg,Promised You A Miracle - Remastered 2002,spotify:artist:6hN9F0iuULZYWXppob22Aj,Simple Minds,spotify:album:1m8ybrw0umxg8FbBC3pH7K,New Gold Dream (81/82/83/84),spotify:artist:6hN9F0iuULZYWXppob22Aj,Simple Minds,1982-09-13,https://i.scdn.co/image/ab67616d0000b2739bb82a861e3041679e1910f3,1,3,267706,https://p.scdn.co/mp3-preview/4929e708f6f9fa9bb0cdd2a72593b544c11d5b49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBAAA0200607,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,scottish new wave,soft rock",0.674,0.75,5.0,-8.515,0.0,0.0284,0.00157,0.0586,0.343,0.793,113.804,4.0,,Parlophone Catalogue,"C © 2003 Virgin Records Limited, P ℗ 2003 Virgin Records Limited",5839 +5840,spotify:track:06T10fEzN8ZCcqzQZYA184,Gotta Be Somebody,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:0GQ9AZBJSj109gmSdSrviC,Dark Horse,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2008-10-28,https://i.scdn.co/image/ab67616d0000b273f74baf63e915712df348e647,1,3,252653,https://p.scdn.co/mp3-preview/936bf090af11a178531b9002ed7702c6a7c90c49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,NLA320888025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.536,0.89,0.0,-5.222,1.0,0.0601,0.000354,0.00165,0.133,0.205,115.998,4.0,,Roadrunner Records,"C © 2008 The All Blacks B.V. Issued under license to Roadrunner Records from The All Blacks B.V. Roadrunner Records is a registered trademark of The All Blacks B.V., P ℗ 2008 The All Blacks B.V. Issued under license to Roadrunner Records from The All Blacks B.V. Roadrunner Records is a registered trademark of The All Blacks B.V.",5840 +5841,spotify:track:1vGfZYrNSxT72PdgToMubU,Such a Night,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:2SBAAtgdyjgfTO1UMHnza1,Elvis Is Back,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1960-04-08,https://i.scdn.co/image/ab67616d0000b273c7da0f669c230f078338aa22,1,8,178760,https://p.scdn.co/mp3-preview/f44f6630879bd14fcc62b57c0455618bcf175b87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRC16007151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.418,0.766,11.0,-11.415,1.0,0.0862,0.747,0.0,0.222,0.906,171.755,4.0,,RCA/Legacy,P (P) 1960 Sony Music Entertainment,5841 +5842,spotify:track:1Hzi3KQVnvVYAn8Vv9zL2o,WITHOUT YOU,spotify:artist:2tIP7SsRs7vjIcLrU85W8J,The Kid LAROI,spotify:album:3jDDMndpwWL3yDcDQcxk7R,F*CK LOVE (SAVAGE),spotify:artist:2tIP7SsRs7vjIcLrU85W8J,The Kid LAROI,2020-11-04,https://i.scdn.co/image/ab67616d0000b27359adebe50df1ff4bdd92f34c,1,7,161384,https://p.scdn.co/mp3-preview/9c8faa7fb4a14bded4beeee2a8449ca8b8099108?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM12006900,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.43,0.417,0.0,-7.385,1.0,0.0366,0.19,0.0,0.142,0.455,93.297,4.0,,Columbia,"P (P) 2020 Columbia Records, a Division of Sony Music Entertainment",5842 +5843,spotify:track:3UwT4FadEGWyMdaSwYcUBY,This Town,spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,spotify:album:3QLB5s0MY7ERTwh4GpNMkf,Flicker (Deluxe),spotify:artist:1Hsdzj7Dlq2I7tHP7501T4,Niall Horan,2017-10-20,https://i.scdn.co/image/ab67616d0000b27394fde6afa9cbf073e5b6445a,1,2,232852,https://p.scdn.co/mp3-preview/1a8ffe515ce14fe37c044734faf4b4a67454d1f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11601029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.678,0.398,6.0,-8.413,0.0,0.0315,0.738,0.0,0.117,0.202,111.833,4.0,,Universal Music Group,"C © 2017 Neon Haze Music Ltd, Under Exclusive License To Capitol Records, P ℗ 2017 Neon Haze Music Ltd, Under Exclusive License To Capitol Records",5843 +5844,spotify:track:4x0yfBUpGWpovUxJqj20p0,HEAT,"spotify:artist:4CA8PTrbq1l5IgyvBA2JSV, spotify:artist:0tbeZu9lv8YEKSQ9tZSslu","Paul Woolford, Amber Mark",spotify:album:3K2K785SdN3wozTA3krazb,HEAT,"spotify:artist:4CA8PTrbq1l5IgyvBA2JSV, spotify:artist:0tbeZu9lv8YEKSQ9tZSslu","Paul Woolford, Amber Mark",2021-02-19,https://i.scdn.co/image/ab67616d0000b2730bf60aac252d62c7834da28c,1,1,187277,https://p.scdn.co/mp3-preview/b5eb6246b9e4529791d63a6de93306ca596672f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBCEN2100006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"house,uk dance,uk house,alternative r&b,indie soul,nyc pop",0.651,0.542,1.0,-7.345,0.0,0.0292,0.311,0.0,0.0812,0.581,122.03,4.0,,Ministry of Sound Recordings,P (P) 2021 Under exclusive license to Ministry of Sound Recordings Limited,5844 +5845,spotify:track:2pV1ZQEH9fieG0kLstdrtC,Pretty Fly (For A White Guy),spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:4R2blKzIP9cEhgz7bMsRSt,Americana,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,1998-11-16,https://i.scdn.co/image/ab67616d0000b27340185614b0846b156d253f43,1,4,188106,https://p.scdn.co/mp3-preview/25358e68f6a071a34f46a2040cc283f1ef603ec0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19804199,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.721,0.898,11.0,-3.701,0.0,0.0996,0.0962,0.0,0.0675,0.964,143.412,4.0,,Columbia,P (P) 1998 Sony Music Entertainment Inc.,5845 +5846,spotify:track:6LJyXCSwdBPT9PsqQbi6eW,Paper Tiger,spotify:artist:4KCnuZQWRl9FEwAcduZhP9,Sue Thompson,spotify:album:0dhdlHRjbjacsd4CSepUkb,My Hero,spotify:artist:4KCnuZQWRl9FEwAcduZhP9,Sue Thompson,2015-02-03,https://i.scdn.co/image/ab67616d0000b27320dbe3bb3153b4db3fd88d6c,1,7,144875,https://p.scdn.co/mp3-preview/8ea984f96a2e656ca9b700f1c3a4f0d9132a0048?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLZJ1470794,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.728,0.734,4.0,-9.354,0.0,0.0277,0.703,0.000216,0.0913,0.884,133.983,4.0,,Edizione Jazz,"C 2015 Edizione Jazz, P 2015 Edizione Jazz",5846 +5847,spotify:track:7qfwcqfGOkQYtzjF4UzJHM,Shot Me Down (feat. Skylar Grey) - Radio Edit,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:4utLUGcTvOJFr6aqIJtYWV","David Guetta, Skylar Grey",spotify:album:4i9yM8JoAgeh6ekZjk08U1,Shot Me Down (feat. Skylar Grey),spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2014-01-27,https://i.scdn.co/image/ab67616d0000b27380e995cb3e392b143c57983b,1,1,191412,https://p.scdn.co/mp3-preview/9ad806bd4ca45865d643eaa959c6e2d48c8c1dec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GB28K1400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,piano rock,viral pop",0.347,0.772,5.0,-4.359,0.0,0.0549,0.0597,0.0333,0.115,0.035,192.118,3.0,,Parlophone (France),"C © 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company, P ℗ 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company",5847 +5848,spotify:track:1hpQGK6u2ecNWDXSFnBn1Y,Biding My Time,spotify:artist:4ETXyV9H1p2P1XYgXXTjiO,Busby Marou,spotify:album:0zNPIJMKcsS4Rqdbu4wENq,Busby Marou,spotify:artist:4ETXyV9H1p2P1XYgXXTjiO,Busby Marou,2011-06-24,https://i.scdn.co/image/ab67616d0000b273f1bd6eb0530cf270564487f3,1,2,243066,https://p.scdn.co/mp3-preview/769cbd2059f1b37357fae183fe4decaa808c3734?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUD601000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indigenous music,0.703,0.704,4.0,-6.588,1.0,0.0263,0.0689,0.0,0.122,0.581,134.972,4.0,,WM Australia,"C © 2010 Busby Marou Marketed and Distributed by Footstomp Records/Warner Music Australia Pty Limited under exclusive licence., P ℗ 2010 Busby Marou",5848 +5849,spotify:track:3XqTmJFE8Tnm0hn5dNeUEG,As Usual,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,spotify:album:4RnyLYThKwoncxaRFZaGSq,By Request,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,1964-05-12,https://i.scdn.co/image/ab67616d0000b273213c42f4bce9b402d4fd6389,1,7,156360,https://p.scdn.co/mp3-preview/a28557529436ec28076df94af688c3c5664820e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USMC16314154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rockabilly",0.547,0.195,8.0,-11.234,1.0,0.0296,0.56,1.82e-05,0.127,0.468,85.457,4.0,,MCA Nashville,"C © 1964 UMG Recordings, Inc., P ℗ 1964 UMG Recordings, Inc.",5849 +5850,spotify:track:3QZ7uX97s82HFYSmQUAN1D,Tom Sawyer,spotify:artist:2Hkut4rAAyrQxRdof7FVJq,Rush,spotify:album:2xg7iIKoSqaDNpDbJnyCjY,Moving Pictures (2011 Remaster),spotify:artist:2Hkut4rAAyrQxRdof7FVJq,Rush,1981-02-12,https://i.scdn.co/image/ab67616d0000b27372833c1ae3343cbfb4617073,1,1,276880,https://p.scdn.co/mp3-preview/5fb5f75a668feef9c73a079a49b6a52ee2bc3338?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USMR18180103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,canadian metal,classic canadian rock,classic rock,hard rock,progressive rock,rock",0.536,0.901,9.0,-7.211,1.0,0.0374,0.00145,0.0186,0.06,0.666,87.559,4.0,,Mercury Records,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",5850 +5851,spotify:track:3dwPjTU0C4rEm2uTJqcAkk,Losing Friends over Love,spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,spotify:album:6kxdUI5j6cA1yOBIEvzhko,Inshalla (Standard),spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,2009-05-29,https://i.scdn.co/image/ab67616d0000b27307c285218e3b012c277f64bd,1,3,217946,https://p.scdn.co/mp3-preview/b295a85baf4bfa607c704b104aa85e2d9dcc111a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUWA00900025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,perth indie",0.623,0.715,6.0,-6.608,1.0,0.0334,0.0147,3.03e-06,0.111,0.896,95.919,4.0,,WM Australia,"C © 2009 Warner Music Australia Pty Limited, P ℗ 2009 Warner Music Australia Pty Limited",5851 +5852,spotify:track:5ubHAQtKuFfiG4FXfLP804,Lego House,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:02pi98kE0nra0yBqCStzbC,+,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2011-09-09,https://i.scdn.co/image/ab67616d0000b2736567a393a964a845a89b7f70,1,9,185093,https://p.scdn.co/mp3-preview/d6efa078dfe2251e413ce858fa0f937f2902a437?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBAHS1100206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.592,0.637,11.0,-8.48,1.0,0.0992,0.562,0.0,0.13,0.565,159.701,4.0,,Atlantic Records UK,"C © 2011 Warner Music UK Limited, P ℗ 2011 Warner Music UK Limited",5852 +5853,spotify:track:6KI1ZpZWYAJLvmVhCJz65G,You Don't Own Me (feat. G-Eazy),"spotify:artist:6y5amJcTjeDgLXIjtQLMst, spotify:artist:02kJSzxNuaWGqwubyUba0Z","SAYGRACE, G-Eazy",spotify:album:2AUhyBQANk5FKHD6WCbxja,FMA,spotify:artist:6y5amJcTjeDgLXIjtQLMst,SAYGRACE,2016-07-01,https://i.scdn.co/image/ab67616d0000b273f86b51c51b4457cbb66bb282,1,5,201493,https://p.scdn.co/mp3-preview/9785baec65ed15f1f4e6acd5c2bd32558090b313?cid=9950ac751e34487dbbe027c4fd7f8e99,True,72,USRC11500344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,indie pop rap,oakland hip hop,pop rap,rap",0.332,0.635,7.0,-5.653,1.0,0.0898,0.159,2.79e-06,0.0599,0.261,186.249,3.0,,RCA Records Label,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",5853 +5854,spotify:track:5SnOyuBtyzufoXBAKOdcxD,The Unforgiven,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:37lWyRxkf3wQHCOlXM5WfX,Metallica,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1991-08-12,https://i.scdn.co/image/ab67616d0000b273f2f3cd931f707244804807c1,1,4,387133,https://p.scdn.co/mp3-preview/a342688d3cbec708fe88c3062aad700d7bf477b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10001995,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.539,0.597,7.0,-9.581,1.0,0.0258,0.0108,0.00552,0.134,0.251,139.444,4.0,,Blackened Recordings,C 1991 Blackened Recordings,5854 +5855,spotify:track:4dRtB5AKHfgfuFo5ExUzRP,Mockingbird (With Margaret McLaren),spotify:artist:53xt77SWSCBxurJQWuxUkM,Johnny O'Keefe,spotify:album:6yZ6XiRqhYuuQ8j1F7AHqi,The Very Best Of (Standard),spotify:artist:53xt77SWSCBxurJQWuxUkM,Johnny O'Keefe,2008-08-23,https://i.scdn.co/image/ab67616d0000b27330ad726114f1781c8d4d81bf,1,21,164720,https://p.scdn.co/mp3-preview/a7982837e7ab8f8e89eabbf0fe5b74b753fac79b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUWA00800620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.844,0.869,6.0,-6.038,1.0,0.0487,0.415,0.0,0.0338,0.968,116.015,4.0,,WM Australia,"C © 2008 Warner Music Australia Pty Limited, P ℗ 2008 Warner Music Australia Pty Limited",5855 +5856,spotify:track:4cb0Yb7LfpAYe8u4UXdGr0,Gimme Gimme - Original,spotify:artist:0lHoDF96DNKSIcIpcOfMnq,Whigfield,spotify:album:7Be5lGabTCKflP4O79toqB,Gimme Gimme - Single,spotify:artist:0lHoDF96DNKSIcIpcOfMnq,Whigfield,1996-11-04,https://i.scdn.co/image/ab67616d0000b273e3b3833f032aced94e8ce701,1,4,224626,https://p.scdn.co/mp3-preview/dd1cadd82863540292bab346533aa41689bc19f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,IT00D9611201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,europop",0.725,0.749,0.0,-8.568,1.0,0.0332,0.00455,0.377,0.189,0.851,130.028,4.0,,X-Energy,"C 1996 X-Energy / Energy Production S.r.l., P 1996 X-Energy / Energy Production S.r.l.",5856 +5857,spotify:track:59HjlYCeBsxdI0fcm3zglw,Wildest Dreams,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:2QJmrSgbdM35R67eoGQo4j,1989,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-10-27,https://i.scdn.co/image/ab67616d0000b2739abdf14e6058bd3903686148,1,9,220440,https://p.scdn.co/mp3-preview/b276b24d68062f55bc63edefe0c9823aa018c3d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USCJY1431379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.554,0.666,8.0,-7.414,1.0,0.0747,0.0702,0.00593,0.106,0.472,140.056,4.0,,"Big Machine Records, LLC","C © 2014 Apollo A-1 LLC, P ℗ 2014 Apollo A-1 LLC",5857 +5858,spotify:track:6lQ0FcTXxMkPQ2Izkriy2E,Light Surrounding You,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,spotify:album:2RGBdVzWbKATHuLHj86Al4,Real Life,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,2006-07-06,https://i.scdn.co/image/ab67616d0000b273a11168373d75a2f2bb183ed5,1,3,236586,https://p.scdn.co/mp3-preview/ba84c73c4faf8b3264c141a459c7b078889bf81c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA00602370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,kiwi rock",0.394,0.637,3.0,-6.401,1.0,0.0297,0.0616,0.0,0.2,0.143,164.026,4.0,,WM Australia,"C 2006 Evermore, P 2006 Evermore",5858 +5859,spotify:track:5GorCbAP4aL0EJ16frG2hd,Boulevard of Broken Dreams,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:3id4t9IqRoB1f1smOERtrY,Greatest Hits: God's Favorite Band,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,2017-11-17,https://i.scdn.co/image/ab67616d0000b2737f213369d5265a60af5f7e82,1,14,262333,https://p.scdn.co/mp3-preview/258775e7324ab09be650b91d322d22948ed9df1a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,71,USRE10400985,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.496,0.682,8.0,-4.095,1.0,0.0294,0.00552,2.94e-05,0.0589,0.474,167.06,4.0,,Reprise,"C © 2017 Reprise Records, P ℗ 2017 Reprise Records",5859 +5860,spotify:track:7kCTrqzvmQGtYkD4cM9RHD,The Greatest,"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN, spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg","Sia, Kendrick Lamar",spotify:album:65SUPjKr59ncdHY2LxeYiz,This Is Acting (Deluxe Edition),spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2016-10-21,https://i.scdn.co/image/ab67616d0000b27353e31ba4e006f69d9ff92b05,1,14,210226,https://p.scdn.co/mp3-preview/b064bf63626e35f4ff467329843445fcebfee2bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11601332,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,conscious hip hop,hip hop,rap,west coast rap",0.664,0.725,1.0,-6.127,1.0,0.266,0.0102,0.000479,0.0562,0.728,191.927,4.0,,Inertia Music,"C 2016 Monkey Puzzle under exclusive license to Inertia Music, P 2016 Monkey Puzzle under exclusive license to Inertia Music",5860 +5861,spotify:track:6cSQSGa2tFufkTdlKs2TKN,U + Ur Hand,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2gccJPbfddWfxNdvsRxL8J,I'm Not Dead,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2006-03-31,https://i.scdn.co/image/ab67616d0000b273f366eba0d5127af7a7acc52a,1,9,214386,https://p.scdn.co/mp3-preview/c01f22beedf9165fff2ad0a64d13de2bbcf7fe7f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USLF20500242,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.706,0.889,0.0,-3.692,1.0,0.0556,0.00125,0.0,0.033,0.882,141.025,4.0,,LaFace Records,"P (P) 2006 RCA/JIVE Label Group, a unit of Sony Music Entertainment",5861 +5862,spotify:track:4WfGrAJVC3A5xhUTja0gUG,Money For Nothing,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,spotify:album:1NF8WUbdC632SIwixiWrLh,Brothers In Arms (Remastered),spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,1985-05-13,https://i.scdn.co/image/ab67616d0000b27348cd811e6c34abd3ff00d15f,1,2,510933,https://p.scdn.co/mp3-preview/4802f596f787c2fd99f7614083092993b66c7327?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088500674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock",0.666,0.667,2.0,-9.305,0.0,0.0371,0.043,0.0005,0.074,0.679,134.219,4.0,,Universal Music Group,"C © 1985 Mercury Records Limited, P ℗ 1985 Mercury Records Limited",5862 +5863,spotify:track:0yjNmllr3Ew6f97TqPuEqa,The Ballad Of The Green Berets,spotify:artist:5r0O4LLn9wHEuYxKmGzUB5,Sgt. Barry Sadler,spotify:album:0pNEKMHYapOPzulMsRdupj,Ballads of The Green Berets,spotify:artist:5r0O4LLn9wHEuYxKmGzUB5,Sgt. Barry Sadler,1966,https://i.scdn.co/image/ab67616d0000b273306ddc325758b12928514b61,1,1,146400,https://p.scdn.co/mp3-preview/2f9fcc096aae77f694dbe915da90c42ff17c5735?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USRC19901095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,military cadence,0.715,0.327,0.0,-11.814,1.0,0.033,0.782,0.000344,0.625,0.713,84.369,4.0,,RCA/Legacy,P (P) 1997 BMG Music,5863 +5864,spotify:track:3nvuPQTw2zuFAVuLsC9IYQ,Nothing Compares 2 U,spotify:artist:4sD9znwiVFx9cgRPZ42aQ1,Sinéad O'Connor,spotify:album:34hQFIwGTLf03BZQmGL0iy,I Do Not Want What I Haven't Got,spotify:artist:4sD9znwiVFx9cgRPZ42aQ1,Sinéad O'Connor,1990-07-01,https://i.scdn.co/image/ab67616d0000b2736f6536c2e326fb2b42db90f8,1,6,280040,https://p.scdn.co/mp3-preview/dd12ed39f779a9cb61c7009f322192a2e6ee37ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAYK9000017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,new wave pop,singer-songwriter",0.511,0.574,5.0,-7.016,1.0,0.0273,0.0425,2.33e-05,0.105,0.161,119.917,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1990 Chrysalis Records Limited",5864 +5865,spotify:track:6zrKRVtq4cjkZLXzjpS4Ij,Over And Over - Album Version / Explicit,"spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:6roFdX1y5BYSbp60OTJWMd","Nelly, Tim McGraw",spotify:album:2OngzqI3AHJL8k3XlTWEam,Suit,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2004-09-14,https://i.scdn.co/image/ab67616d0000b27348b2f89ee6cbefd0f889da25,1,9,253933,https://p.scdn.co/mp3-preview/4228747a3ffc643670f9a680093084721ede422b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10400789,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary,contemporary country,country,country road",0.644,0.518,7.0,-10.02,1.0,0.0805,0.00646,1.33e-06,0.158,0.464,169.799,4.0,,Universal Music Group,"C © 2004 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2004 Universal Records, a Division of UMG Recordings, Inc.",5865 +5866,spotify:track:36xEjbl8DtevPJgw6i9IuY,Feels like the First Time - 2008 Remaster,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,spotify:album:3RYi1mBYapOaGWQvwRjRjr,No End in Sight: The Very Best of Foreigner (Expanded),spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,2015-06-02,https://i.scdn.co/image/ab67616d0000b273cb3cd9ca6d22ab8c7e40728e,1,1,232333,https://p.scdn.co/mp3-preview/41e5e96657e2bbfbdb9ed66ae1ff2bc62e90ceec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USAT20802323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.498,0.802,7.0,-4.537,1.0,0.0544,0.0136,1.44e-06,0.128,0.505,107.704,4.0,,Rhino Atlantic,"C © 2008 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Marketed by Rhino Entertainment Company, P ℗ 2015 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Marketed by Rhino Entertainment Company",5866 +5867,spotify:track:7FmoaVp4QaMfNQwH6fcnsy,747,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,spotify:album:1JHNRou038CfCC0RZztDz8,747,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,2014-09-30,https://i.scdn.co/image/ab67616d0000b273228954c1b2b3ee5e31031e68,1,10,207413,https://p.scdn.co/mp3-preview/73959cca09c36545c048773b08b3fb8004200d97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USUG11401135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country pop,country road",0.583,0.882,4.0,-3.98,1.0,0.0395,0.00548,0.0,0.128,0.463,139.991,4.0,,Capitol Records Nashville,"C © 2014 Lady A Entertainment, LLC, under exclusive license to Capitol Records Nashville, P ℗ 2014 Lady A Entertainment, LLC, under exclusive license to Capitol Records Nashville",5867 +5868,spotify:track:6tZPBKyN3k2QWezmmzd3Li,Neither One of Us (Wants to Be the First to Say Goodbye),spotify:artist:1WtyIizk8Ddnyt7CtnpNXO,Linda George,spotify:album:7yKqVsuvgs0GpROyXdyHMm,Miss Linda George,spotify:artist:1WtyIizk8Ddnyt7CtnpNXO,Linda George,1974,https://i.scdn.co/image/ab67616d0000b273a1d60ea344366b294a70372b,1,11,211786,https://p.scdn.co/mp3-preview/b17b056b25143d4e0986b69fff89560e93d73d09?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700398,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.51,0.498,0.0,-12.943,1.0,0.046,0.279,4.75e-05,0.114,0.673,91.9,4.0,,Fable Records,"C 1974 Image records, P 2017 Southern Cross Music Pty Limited",5868 +5869,spotify:track:2tr5FpklBfRPajrgS8rmHY,This Girl Is a Woman Now,spotify:artist:4asCC4oxQcDzFXhCth2SgQ,Gary Puckett & The Union Gap,spotify:album:15Oqj9h8TSkGsoOKDKjsqA,Young Girl: The Best Of Gary Puckett & The Union Gap,spotify:artist:4asCC4oxQcDzFXhCth2SgQ,Gary Puckett & The Union Gap,1968,https://i.scdn.co/image/ab67616d0000b273004dcd74f13a40f050de0e03,1,9,189160,https://p.scdn.co/mp3-preview/270a2ec6c9cda06daf755b2668ad5af76a0cacc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USSM16900810,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,country rock,folk rock,mellow gold,merseybeat,rock-and-roll,soft rock",0.261,0.486,5.0,-10.136,1.0,0.0307,0.721,0.000417,0.138,0.451,101.334,4.0,,Columbia/Legacy,"P Originally Recorded 1969 & Released 1992, Originally Released 1968, 1969, 1970, 1971, (P) 2004 Sony Music Entertainment Inc.",5869 +5870,spotify:track:6fkvIT9KFKxO8poBeKfaEf,One More Night - 2016 Remaster,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:1rVhockt4RAiZFaK3M3zPB,No Jacket Required (2016 Remaster),spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1985-01-25,https://i.scdn.co/image/ab67616d0000b273441084621edb7c53ef303090,1,5,288973,https://p.scdn.co/mp3-preview/741d6e841a1b05b31e69ab018d45e260b7522dad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USRH11600247,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.534,0.442,3.0,-9.442,1.0,0.0308,0.788,0.000351,0.0986,0.343,136.369,4.0,,Rhino,"C © 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company, P ℗ 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company",5870 +5871,spotify:track:6mYrhCAGWzTdF8QnKuchXM,If I Could Turn Back Time,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,spotify:album:3srdrIrP3V7LTmRujRfLhK,Heart Of Stone,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,1989-01-01,https://i.scdn.co/image/ab67616d0000b2737a1e0215c41f0ce411623301,1,1,239826,https://p.scdn.co/mp3-preview/4f598743e67ae843e531007ab29780789899f5df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USGF18923901,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.658,0.575,11.0,-10.365,1.0,0.0267,0.243,0.0,0.122,0.504,108.329,4.0,,Geffen,"C © 1989 Geffen Records Inc., P ℗ 1989 Geffen Records Inc.",5871 +5872,spotify:track:3ltMcnXZh3KiQba6RleHSd,Overdrive,spotify:artist:4Uc8Dsxct0oMqx0P6i60ea,Conan Gray,spotify:album:77mNp2LeMZIgMH1XsKUzQn,Overdrive,spotify:artist:4Uc8Dsxct0oMqx0P6i60ea,Conan Gray,2021-02-19,https://i.scdn.co/image/ab67616d0000b273cd673c55085bce096c5f4b06,1,1,183070,https://p.scdn.co/mp3-preview/5d29cae079747ae113b9b5b6da2e166a2f133fc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USUM72100678,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bedroom pop,pop,pov: indie",0.574,0.777,5.0,-6.279,1.0,0.0395,0.00915,0.0,0.125,0.457,105.0,4.0,,Universal Records,"C © 2021 Republic Records, a division of UMG Recordings, Inc., P ℗ 2021 Republic Records, a division of UMG Recordings, Inc.",5872 +5873,spotify:track:1uXbwHHfgsXcUKfSZw5ZJ0,Run the World (Girls),spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:1gIC63gC3B7o7FfpPACZQJ,4,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2011-06-24,https://i.scdn.co/image/ab67616d0000b273ff5429125128b43572dbdccd,1,11,236093,https://p.scdn.co/mp3-preview/0bc39c5717f270c4545710f17c7e9ee16062e5eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USSM11102447,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.732,0.899,0.0,-4.237,1.0,0.143,0.00496,4.64e-05,0.372,0.759,127.091,4.0,,Parkwood Entertainment/Columbia,"P (P) 2011, 2012 Columbia Records, a Division of Sony Music Entertainment",5873 +5874,spotify:track:5UqCQaDshqbIk3pkhy4Pjg,Levels - Radio Edit,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:1OEGfToF7QbjUgyxMAnGXg,Levels,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2011-10-28,https://i.scdn.co/image/ab67616d0000b273ffb343926530168be4724dd4,1,1,199906,https://p.scdn.co/mp3-preview/6f972a909a0afdc26ae7a6c456e6722a5536e66d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,SEUM71100962,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.584,0.889,1.0,-5.941,0.0,0.0343,0.0462,0.828,0.309,0.464,126.04,4.0,,Universal Music AB,"C © 2011 Avicii Music AB, Under exclusive license to Universal Music AB, P ℗ 2011 Avicii Music AB, Under exclusive license to Universal Music AB",5874 +5875,spotify:track:51Of5p3lKZeOg6itfs4og4,Lovefool,spotify:artist:7ACEUD7UsmmXrnj4OLt8f9,twocolors,spotify:album:6UYWmM8RfG3DAKC7OyUPBT,Lovefool,spotify:artist:7ACEUD7UsmmXrnj4OLt8f9,twocolors,2020-05-08,https://i.scdn.co/image/ab67616d0000b273985af358f1143c69e4d56701,1,1,190487,https://p.scdn.co/mp3-preview/5f5f76327c1ffe4ee48122e3753d0bcb43030818?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,DEUM72001376,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,pop edm",0.677,0.766,6.0,-6.896,1.0,0.0568,0.0219,6.81e-06,0.129,0.198,123.062,4.0,,Virgin,"C © 2020 twocolors records, under exclusive license to Universal Music GmbH, P ℗ 2020 twocolors records, under exclusive license to Universal Music GmbH",5875 +5876,spotify:track:3R8lr1Y1kPgXEbnXkcMMlT,Call On Me - Ryan Riback Remix,"spotify:artist:02A3cEvlLLCbIMVDrK2GHV, spotify:artist:33JQK4UoS2aMPYBfdB5Ftt","Starley, Ryan Riback",spotify:album:3PznGvjYhmK2jeTA1pdxkK,Call On Me,spotify:artist:02A3cEvlLLCbIMVDrK2GHV,Starley,2016-10-07,https://i.scdn.co/image/ab67616d0000b2739809255871cfe6ed23bc7d48,1,2,222000,https://p.scdn.co/mp3-preview/b736a496ad86b475b62b29502ae0aca4d95b01c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUUM71601079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,melbourne bounce",0.691,0.821,0.0,-4.527,1.0,0.0401,0.136,0.000115,0.092,0.759,104.961,4.0,,Universal Music Australia (Distribution),"C © 2017 Tinted Records, P ℗ 2017 Tinted Records",5876 +5877,spotify:track:097Tr8QiDLiTQlEoLI96AP,Spirit in the Sky,spotify:artist:0auxGqduSBWubpKjjSNKLr,Doctor & The Medics,spotify:album:0O2LDqpLcWUxONhKfvRK1g,Laughing At the Pieces,spotify:artist:0auxGqduSBWubpKjjSNKLr,Doctor & The Medics,2003,https://i.scdn.co/image/ab67616d0000b273986f553d178410a0981f4750,1,6,208106,https://p.scdn.co/mp3-preview/26215391185ee91b4ecbb16f12c1d0436577c1bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCKK8600806,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.619,0.546,11.0,-10.206,0.0,0.042,0.0192,0.0,0.0676,0.479,120.675,4.0,,Madman Records,"C 2003 Madman Records, P 2003 Madman Records",5877 +5878,spotify:track:0NN32Knbyo4gM1DKY9rdzg,Do Ya,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:7a35UzxXYuKQGMGImyB0Un,A New World Record,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1976-09-01,https://i.scdn.co/image/ab67616d0000b273ee5b1065368b0981e3cb0a33,1,8,225106,https://p.scdn.co/mp3-preview/9310d8956cb627d911c174ec6588ac4c41b53bf7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM17800855,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.494,0.572,2.0,-5.862,1.0,0.0332,0.0386,0.000566,0.602,0.716,124.042,4.0,,Epic/Legacy,"P (P) 1976 Epic Records, a division of Sony Music Entertainment",5878 +5879,spotify:track:7nXq1vaZiz7PdbfojpPjW5,Fighter,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:2USigX9DhGuAini71XZEEK,Stripped,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2002-07-19,https://i.scdn.co/image/ab67616d0000b2737cd872c7701c4737b2f81d87,1,4,245960,https://p.scdn.co/mp3-preview/83101230e43a0a13f0442047392f5eef188c75c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRC10201072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.435,0.92,4.0,-1.357,0.0,0.201,0.235,0.000353,0.552,0.45,188.899,4.0,,RCA Records Label,P (P) 2002 Sony Music Entertainment,5879 +5880,spotify:track:4NGqMJgTqXckEt28sO6TmR,The Birds and the Bees,spotify:artist:1gVvCzqQy5epTJcFNwWJ37,Jewel Akens,spotify:album:0qxNdrw1A9I3nYXTRmBYxx,The Birds and the Bees,spotify:artist:1gVvCzqQy5epTJcFNwWJ37,Jewel Akens,1965,https://i.scdn.co/image/ab67616d0000b273b068e9bd9f3da0ffaa222e6a,1,4,127507,https://p.scdn.co/mp3-preview/54fbbd4f8a15f0cc2b30584e88a18a7cc39289c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,GBXHC2034008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.778,0.437,3.0,-10.295,0.0,0.0349,0.15,0.00416,0.225,0.931,106.232,4.0,,HHO,"C 1965 MTI, P 1965 MTI",5880 +5881,spotify:track:59FYUvlodY7NCZGHk7yJt1,Escape,spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,spotify:album:0zktx87Zil6xHw7OWtXwIz,Escape,spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,2001,https://i.scdn.co/image/ab67616d0000b273c67c2a884eab590bf1e1485a,1,1,208626,https://p.scdn.co/mp3-preview/eebbf1791225bcfe17ef4abb3733bec42baf23f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10120228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,latin pop,mexican pop",0.775,0.855,11.0,-5.323,1.0,0.0301,0.0302,0.000406,0.125,0.879,125.981,4.0,,Universal Music Group,"C © 2001 Interscope Records, P ℗ 2001 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",5881 +5882,spotify:track:02DurCgOvDdX0uKEjqcl3W,Who Are You,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:2Qq60yedIbueTu5Sgn2bfL,Who Are You,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1978-08-18,https://i.scdn.co/image/ab67616d0000b273f64c8ec52151b32c37d93895,1,9,381626,https://p.scdn.co/mp3-preview/f93a2ee689feb5a2e7d8fb7e4858dd0f3b936f77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW7801011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.653,0.631,9.0,-11.334,1.0,0.0461,0.299,0.00265,0.0627,0.516,156.32,4.0,,Interscope,"C © 1996 MCA Records Inc., P ℗ 1996 UMG Recordings, Inc.",5882 +5883,spotify:track:5oomUe9UlekZkeTItGqXet,Harlem Shuffle,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:1WSfNoPDPzgyKFN6OSYWUx,Dirty Work (Remastered 2009),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1986-03-24,https://i.scdn.co/image/ab67616d0000b273debd680d0499cc9094f1416e,1,3,204426,https://p.scdn.co/mp3-preview/91285b7663c3df1c5f450dfaccd2b2181827f8b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70909375,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.742,0.94,2.0,-3.485,1.0,0.0756,0.0866,0.0279,0.319,0.782,121.747,4.0,,Universal Music Group,"C © 2009 Promotone B.V., under exclusive licence to Universal International Music B.V.under exclusive licence to Universal International Music B.V., P ℗ 2009 Promotone B.V., under exclusive licence to Universal International Music B.V.",5883 +5884,spotify:track:2fuCquhmrzHpu5xcA1ci9x,Under Pressure - Remastered 2011,"spotify:artist:1dfeR4HaWDbWqFHLkxsg1d, spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy","Queen, David Bowie",spotify:album:6reTSIf5MoBco62rk8T7Q1,Hot Space (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1982-05-03,https://i.scdn.co/image/ab67616d0000b273d254ca497999ae980a5a38c5,1,11,248440,https://p.scdn.co/mp3-preview/e3f7bdc022347f1b9e15152b67f8437c98b3ca12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBUM71029622,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock,art rock,classic rock,glam rock,permanent wave,rock",0.671,0.712,2.0,-7.815,1.0,0.0476,0.429,0.0,0.103,0.462,113.805,4.0,,EMI,"C © 2011 Raincloud Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Raincloud Productions Ltd. under exclusive licence to Universal International Music BV",5884 +5885,spotify:track:5bldrrpdHrTeaWNT1Kp5xs,What Do You Mean? - Acoustic,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,19,203800,https://p.scdn.co/mp3-preview/1f75cb44a9e7e28c18da99610433dea30c88c8fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516855,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.773,0.358,8.0,-10.634,1.0,0.044,0.794,0.0,0.104,0.756,124.934,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",5885 +5886,spotify:track:3G0yz3DZn3lfraledmBCT0,P.I.M.P.,spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,spotify:album:5G5rgQHzdQnw32SI0WjIo5,Get Rich Or Die Tryin',spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,2003-02-06,https://i.scdn.co/image/ab67616d0000b273d843fabb75fef14010e30cae,1,11,249480,https://p.scdn.co/mp3-preview/55cc016e40673be5c656adf8306f23d1f1ffea0c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,77,USIR10300020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap",0.712,0.772,10.0,-3.024,0.0,0.346,0.0521,4.35e-06,0.0368,0.848,84.722,4.0,,Shady Records,"C © 2003 Shady Records/Aftermath Records/Interscope Records, P ℗ 2003 Shady Records/Aftermath Records/Interscope Records",5886 +5887,spotify:track:2Wi8q7amJQaAXUDlzz0Moq,Good Vibrations,"spotify:artist:4046bnFxFJdLEtG7F2qXaV, spotify:artist:3m5hegxlB80Z2zQb1893pc","Marky Mark And The Funky Bunch, Loleatta Holloway",spotify:album:67ma4XvpbAfD4UpUPRwRN4,RnB Fridays Vol. 3,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-04-21,https://i.scdn.co/image/ab67616d0000b2730e545611e016c993b81bbbce,1,16,269946,https://p.scdn.co/mp3-preview/86fe9c167c84a5003c233d3d4426c2984bbf0c97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USIR10211585,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,disco,diva house,philly soul,post-disco",0.709,0.985,1.0,-3.743,1.0,0.0592,0.000984,0.355,0.0307,0.895,121.664,4.0,,Universal Music Australia Pty. Ltd.,"C © 2017 Universal Music Australia Pty Ltd., P This Compilation ℗ 2017 Universal Music Australia Pty Ltd.",5887 +5888,spotify:track:1Iq8oo9XkmmvCQiGOfORiz,Is It Over Now? (Taylor's Version) (From The Vault),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:64LU4c1nfjz1t4VnGhagcg,1989 (Taylor's Version),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2023-10-26,https://i.scdn.co/image/ab67616d0000b273904445d70d04eb24d6bb79ac,1,21,229477,https://p.scdn.co/mp3-preview/0b79d49dd1a1cb45e9d01356c9bf5e18ee8243bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USUG12306691,spotify:user:bradnumber1,2024-01-14T19:58:36Z,pop,0.599,0.651,0.0,-7.343,1.0,0.035,0.0486,0.0,0.126,0.153,100.001,4.0,,Taylor Swift,"C © 2023 Taylor Swift, P ℗ 2023 Taylor Swift",5888 +5889,spotify:track:2eP6GhdRE1Ydnw2uXzo7q8,Harlem Shake,spotify:artist:25fqWEebq6PoiGQIHIrdtv,Baauer,spotify:album:6rIa7CeAWE3qg7rgbN0InX,Harlem Shake,spotify:artist:25fqWEebq6PoiGQIHIrdtv,Baauer,2012,https://i.scdn.co/image/ab67616d0000b273069accca8e8732ef23439f82,1,1,196664,https://p.scdn.co/mp3-preview/e0c24266e89050d6705e76e0b1a588dbb08dd2da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USZ4V1200043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electro house,electronic trap",0.452,0.794,0.0,-5.151,1.0,0.0483,0.0111,0.00182,0.416,0.282,137.825,4.0,,Mad Decent,"C 2013 Mad Decent, P 2013 Mad Decent",5889 +5890,spotify:track:6T86nVmtbovYi2KSNTRUq7,Too Young to Be Married - 1999 Remaster,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:12YClBmrcVkW7GqtR5jtkh,Confessions of the Mind (Expanded Edition),spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1970-11-01,https://i.scdn.co/image/ab67616d0000b2731090108ed57fdf91e5db7b47,1,9,239373,https://p.scdn.co/mp3-preview/e0430e991aa7e14778b217d60f5f90b4faa20eba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBGYU9900042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.482,0.327,4.0,-11.196,1.0,0.0306,0.456,1.17e-05,0.0749,0.361,93.701,4.0,,BMG Rights Management (US) LLC,"C © 2013 BMG Rights Management (US) LLC, P ℗ 2013 BMG Rights Management (US) LLC",5890 +5891,spotify:track:31bf9SEOppLU6lQ85d8om6,Ghetto Supastar (That is What You Are) (feat. Ol' Dirty Bastard & Mýa),"spotify:artist:0kJMPTXq7h3ztpDukSx5iD, spotify:artist:50NoVNy9GU1lCrDV8iGpyu, spotify:artist:6lHL3ubAMgSasKjNqKb8HF","Pras, Ol' Dirty Bastard, Mýa",spotify:album:0bCx3zLZj4wezD07YFrLPM,Ghetto Supastar,spotify:artist:0kJMPTXq7h3ztpDukSx5iD,Pras,1998-10-03,https://i.scdn.co/image/ab67616d0000b2734b242b7827fa55013bb9c3b0,1,2,261133,https://p.scdn.co/mp3-preview/1fc392f49843710d7f4693bb10f5ad1a5c222ea5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM19803488,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new jersey rap,east coast hip hop,hardcore hip hop,hip hop,contemporary r&b,hip pop,r&b,urban contemporary",0.818,0.653,1.0,-8.396,1.0,0.204,0.0335,5.46e-06,0.22,0.533,99.931,4.0,,Ruffhouse,P (P) 1998 Ruffhouse Records LP,5891 +5892,spotify:track:0n2SEXB2qoRQg171q7XqeW,Smooth (feat. Rob Thomas),"spotify:artist:6GI52t8N5F02MxU0g5U69P, spotify:artist:3aBkeBhwadnWMWoVJ2CxJC","Santana, Rob Thomas",spotify:album:10aiDpdFGyfCFEcqpx6XTq,Supernatural (Remastered),spotify:artist:6GI52t8N5F02MxU0g5U69P,Santana,1999-06-15,https://i.scdn.co/image/ab67616d0000b27347eb3ea5a92904c19e102e54,1,5,294986,https://p.scdn.co/mp3-preview/ad700390ab14840d38fa5d96235bd07fec26253b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USAR19900033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,classic rock,mexican classic rock,neo mellow,pop rock,post-grunge",0.609,0.923,9.0,-3.908,1.0,0.0338,0.16,4.73e-06,0.295,0.961,115.996,4.0,,Columbia/Legacy,"P (P) 1999 RCA/JIVE Label Group, a unit of Sony Music Entertainment",5892 +5893,spotify:track:5KyjfwDfnyUQthiqdnEqCW,It's My Party,spotify:artist:08b2PA6eFyugsWAk41eQKZ,Lesley Gore,spotify:album:3RalzESrvhANXmHJ1ge5Sr,I'll Cry If I Want To,spotify:artist:08b2PA6eFyugsWAk41eQKZ,Lesley Gore,1963-06-01,https://i.scdn.co/image/ab67616d0000b273f3d8a8133fb703d56b2753f5,1,1,140000,https://p.scdn.co/mp3-preview/f26ac4a4d9fecfd47eac3cce77d6fec8e3c52e06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR36205231,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,bubblegum pop,classic girl group",0.687,0.493,9.0,-11.676,1.0,0.0608,0.325,0.0,0.0442,0.93,128.407,4.0,,Universal Music Group,"C © 1963 Mercury Records, a Division of UMG Recordings, Inc., P ℗ 1963 Mercury Records, a Division of UMG Recordings, Inc.",5893 +5894,spotify:track:3CSpzkoL1XgDBZ1q9aDCUV,Uptown Girl,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:7r36rel1M4gyBavfcJP6Yz,The Essential Billy Joel,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,2001-10-02,https://i.scdn.co/image/ab67616d0000b273649d4f282653ab8be56f447e,2,3,194866,https://p.scdn.co/mp3-preview/3f1ed400df18fb738a4467612386dd503437ec1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM18300270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.696,0.943,4.0,-2.962,1.0,0.043,0.0736,0.0,0.653,0.832,129.002,4.0,,Columbia,P This compilation (P) 2001 Sony Music Entertainment,5894 +5895,spotify:track:40fD7ct05FvQHLdQTgJelG,Splish Splash,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,spotify:album:5VNyvQC8KIM2jnahEhN4nB,Bobby Darin,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,1958,https://i.scdn.co/image/ab67616d0000b273e122d21b6026da241cd33997,1,1,131719,https://p.scdn.co/mp3-preview/a49adcdc296bf2d004f05c02d6266fade2073dcb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USEW10000020,spotify:user:bradnumber1,2022-01-12T23:07:28Z,"adult standards,easy listening,lounge,rock-and-roll,rockabilly,vocal jazz",0.645,0.943,0.0,-1.526,1.0,0.0393,0.385,0.0,0.37,0.965,147.768,4.0,,Rhino Atlantic,"C © 2005 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing., P ℗ 2005 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing.",5895 +5896,spotify:track:0Zbm5CKG9HHT9bwgvFc0qI,Decode - Twilight Soundtrack Version,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:043vwbrz69dFkM7LL5bBo2,Decode,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2009-01-16,https://i.scdn.co/image/ab67616d0000b2735ac2908279d38532d1713289,1,1,261959,https://p.scdn.co/mp3-preview/da276bb82ad6800f85b825b6f901b29d340f3cdc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USAT20804057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.282,0.866,10.0,-4.223,0.0,0.0588,0.000705,0.0055,0.101,0.277,163.987,4.0,,Atlantic Records,"C © 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",5896 +5897,spotify:track:1R2SZUOGJqqBiLuvwKOT2Y,Gangnam Style (강남스타일),spotify:artist:2dd5mrQZvg6SmahdgVKDzh,PSY,spotify:album:2oKzsLJeOGZ5bMXDPuWCxe,Gangnam Style (강남스타일),spotify:artist:2dd5mrQZvg6SmahdgVKDzh,PSY,2012-01-01,https://i.scdn.co/image/ab67616d0000b2736afd7dd459958ef559e9f248,1,1,219493,https://p.scdn.co/mp3-preview/4ed443643fee0e9e3217630789a03b7a8f58b4a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71210283,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"k-rap,korean old school hip hop",0.727,0.938,11.0,-2.872,0.0,0.288,0.00432,0.0,0.0911,0.757,132.077,4.0,,Universal Music Group,"C © 2012 Schoolboy/Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2012 Schoolboy/Universal Republic Records, a division of UMG Recordings, Inc.",5897 +5898,spotify:track:0VD69ricQ3Flm3apWr4FQS,Techno Fan,spotify:artist:0Ya43ZKWHTKkAbkoJJkwIB,The Wombats,spotify:album:1hKNgyPKnkCjWtH5GtusTq,The Wombats Proudly Present... This Modern Glitch,spotify:artist:0Ya43ZKWHTKkAbkoJJkwIB,The Wombats,2011-04-22,https://i.scdn.co/image/ab67616d0000b27367c138b47ef3788cd065c35a,1,6,239200,https://p.scdn.co/mp3-preview/8b9c5248bb4b9be66fcbda2b4fe7525e3683d5a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBFTG1100006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"liverpool indie,modern alternative rock,modern rock",0.511,0.934,2.0,-5.504,1.0,0.139,0.00131,0.0,0.365,0.541,141.95,4.0,,14th Floor Records,"C © 2011 14th Floor Records, P ℗ 2011 14th Floor Records",5898 +5899,spotify:track:5YjKdeES9QRJ8NmF4Xc8pV,All I Wanna Do Is Make Love To You,spotify:artist:34jw2BbxjoYalTp8cJFCPv,Heart,spotify:album:5CuSWXFhWielWXrXK8Sd8m,Brigade,spotify:artist:34jw2BbxjoYalTp8cJFCPv,Heart,1990-03-25,https://i.scdn.co/image/ab67616d0000b27357850545c0dc2cc537186070,1,2,310893,https://p.scdn.co/mp3-preview/688d2da6f3ed491a1db0196b8989b03dc253a88e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USCA29000284,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,new wave pop,rock,singer-songwriter,soft rock",0.626,0.746,7.0,-8.832,1.0,0.0282,0.16,0.0,0.0618,0.8,102.896,4.0,,Capitol Records,"C © 1990 Capitol Records, LLC, P ℗ 1990 Capitol Records, LLC",5899 +5900,spotify:track:5SAmGrYC4PMYm7ngFffrhf,Lady Rose,spotify:artist:2mbvqMGpwLsakeH45p1Jrb,Mungo Jerry,spotify:album:30UgyUTvmdYXNo7CeMabXY,In the Summertime,spotify:artist:2mbvqMGpwLsakeH45p1Jrb,Mungo Jerry,1970-01-01,https://i.scdn.co/image/ab67616d0000b2739bf5b1980b271ad321e73b0f,1,9,190826,https://p.scdn.co/mp3-preview/7f4344f3783c52970539c8caf62e62943f8f7984?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE7100378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,classic uk pop",0.644,0.613,11.0,-10.67,1.0,0.0321,0.739,1.46e-05,0.27,0.919,149.938,4.0,,Sanctuary Records,"C © 2006 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2000 Sanctuary Records Group Ltd., a BMG Company",5900 +5901,spotify:track:7xwWqlV99ckoPiQrubZQnk,Daddy's Home - 2003 Remaster,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:4tlAPVPMmE4rhnkctUdCeG,75 at 75,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,2015-09-18,https://i.scdn.co/image/ab67616d0000b2738944373ae74b96dde11cd421,2,19,173746,https://p.scdn.co/mp3-preview/327ba7ed39637e8742bf916eeebab9cade34d8b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE1500782,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.343,0.371,4.0,-10.17,1.0,0.0544,0.911,0.0,0.229,0.341,165.895,3.0,,Rhino,"C © 2015 Warner Music UK Limited, P ℗ 2015 this compilation Warner Music UK Limited",5901 +5902,spotify:track:5YLHLxoZsodDWjqSgjhBf3,Myself,spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl,Bazzi,spotify:album:5EEkfRgfYHiFu0lGur6Z6M,COSMIC,spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl,Bazzi,2018-04-12,https://i.scdn.co/image/ab67616d0000b273f9f2d43ff44bdfbe8c556f8d,1,3,167552,https://p.scdn.co/mp3-preview/667044a31827560950e626d7a10feaceda136bfe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAT21801524,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.745,0.561,9.0,-5.513,0.0,0.072,0.465,1.12e-06,0.0338,0.902,195.918,4.0,,iamcosmic,"C 2018, P 2018",5902 +5903,spotify:track:75KdMdPqZGO3FGNtpByM1p,Say Goodbye,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,spotify:album:2gRm1k9fVkhTfZDHvBI2sR,Chris Brown,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2005-11-29,https://i.scdn.co/image/ab67616d0000b2732341c852b4db72824c0e3185,1,13,289760,https://p.scdn.co/mp3-preview/5bce93ded41a05e585ca0d9ffd9b3cfc9869510a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI10500728,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap",0.805,0.494,1.0,-6.027,1.0,0.0363,0.00164,0.0,0.0798,0.408,115.049,4.0,,Jive,"P (P) 2005 RCA/JIVE Label Group, a unit of Sony Music Entertainment",5903 +5904,spotify:track:4sSrhIXT4KnarQff6Nz8st,Don't You Worry,spotify:artist:0omNfQLl6nRxZTOQGbwYbB,Madasun,spotify:album:65JoNMAJGP7R0yl7BQr5p2,The Way It Is,spotify:artist:0omNfQLl6nRxZTOQGbwYbB,Madasun,2000-01-01,https://i.scdn.co/image/ab67616d0000b27350a44654bafa85a3d4f5a904,1,1,241720,https://p.scdn.co/mp3-preview/03691a1402d2a364093e5f6e2c27efeb188eea06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBUM72005603,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.818,0.493,6.0,-5.701,0.0,0.0309,0.0611,0.0,0.0994,0.84,103.635,4.0,,UMC (Universal Music Catalogue),"C © 2000 V2 Music Limited, P ℗ 2000 V2 Music Limited",5904 +5905,spotify:track:1wjzFQodRWrPcQ0AnYnvQ9,I Like Me Better,spotify:artist:5JZ7CnR6gTvEMKX4g70Amv,Lauv,spotify:album:7l6fTSFvlumnPFpOSrbnDV,I Like Me Better,spotify:artist:5JZ7CnR6gTvEMKX4g70Amv,Lauv,2017-05-19,https://i.scdn.co/image/ab67616d0000b273fab48816b625e2a77a732400,1,1,197436,https://p.scdn.co/mp3-preview/57bf51d254e2e01819ec8e013f4ed1c1fff8e50e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBWWP1702907,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.752,0.505,9.0,-7.621,1.0,0.253,0.535,2.55e-06,0.104,0.419,91.97,4.0,,Lauv,"C 2017 Lauv, P 2017 Lauv",5905 +5906,spotify:track:770bUE65sXIhYuLNGm4CIL,Love Letters,spotify:artist:36pJnWrcvAsoWm6fUqGaHi,Ketty Lester,spotify:album:4T9K5QKfouurfYzJ9mbAAR,You Can Have Him: Ketty Lester Sings Love Letters and Other Greats,spotify:artist:36pJnWrcvAsoWm6fUqGaHi,Ketty Lester,2012-09-19,https://i.scdn.co/image/ab67616d0000b2730418ecaac2546d3ef45f3944,1,1,156734,https://p.scdn.co/mp3-preview/d970c8f05d863e7aeae80380445e6e992704f4bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBELT1200778,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.567,0.218,6.0,-18.003,1.0,0.0328,0.766,0.605,0.179,0.271,64.412,3.0,,Black Cat Productions,"C 2012 Black Cat Productions, P 2012 Black Cat Productions",5906 +5907,spotify:track:6lWiUIMSExoXW0wLkznwSo,It's Like That,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:2OFEeb1ruGsR1pARO4oM3C,The Emancipation of Mimi (Ultra Platinum Edition),spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2005-01-01,https://i.scdn.co/image/ab67616d0000b273923a022be6dd466f96aa13a0,1,1,203360,https://p.scdn.co/mp3-preview/e1b073557696ffcc7bde36934b147fd7a5fe06ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20500028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.8,0.633,8.0,-4.875,0.0,0.0514,0.0901,0.0,0.0315,0.836,95.953,4.0,,Universal Music Group,"C © 2005 Mariah Carey, P ℗ 2005 The Island Def Jam Music Group and Mariah Carey",5907 +5908,spotify:track:4yFwM7hqSVz2oDyhgjxK8B,Hello,"spotify:artist:1dnbud9cuozLQ86MtrDPFr, spotify:artist:55Aa2cqylxrFIXC767Z865, spotify:artist:4eAOcbAXIF4BmbN6E1QIlw","Stafford Brothers, Lil Wayne, Christina Milian",spotify:album:3LJ1VPgFemp25jDvfSC7is,Hello,spotify:artist:1dnbud9cuozLQ86MtrDPFr,Stafford Brothers,2012-01-01,https://i.scdn.co/image/ab67616d0000b2733a1d637287690a0dd6ff7a3c,1,1,207013,https://p.scdn.co/mp3-preview/98460840de15d4205d743f12dd4fe5ff60a08f7f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USCM51200847,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,hip hop,new orleans rap,pop rap,rap,trap,dance pop,hip pop,r&b,urban contemporary",0.652,0.851,4.0,-4.761,0.0,0.0368,0.281,0.0,0.883,0.55,123.083,4.0,,Universal Music Group,"C © 2012 Cash Money Records Inc., P ℗ 2012 Cash Money Records Inc.",5908 +5909,spotify:track:161DnLWsx1i3u1JT05lzqU,Talking to the Moon,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:1uyf3l2d4XYwiEqAb7t7fX,Doo-Wops & Hooligans,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2010-05-11,https://i.scdn.co/image/ab67616d0000b273f6b55ca93bd33211227b502b,1,7,217866,https://p.scdn.co/mp3-preview/6feba1b412530ab0d9dd1f849180f039831acc42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USAT21001985,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.498,0.59,1.0,-4.721,0.0,0.032,0.511,0.0,0.107,0.0784,145.867,4.0,,Atlantic Records,"C © 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States., P ℗ 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States.",5909 +5910,spotify:track:70Z9t1qhytWtG4cCmmi7mU,I Wanna Rock,spotify:artist:7b85ve82Sh36a3UAx74wut,Twisted Sister,spotify:album:0dzqapIToiOhULGvzDKpXm,Stay Hungry,spotify:artist:7b85ve82Sh36a3UAx74wut,Twisted Sister,1984-05-10,https://i.scdn.co/image/ab67616d0000b2733469ef94acfa666fde83dec5,1,5,179760,https://p.scdn.co/mp3-preview/ad34ec4f0d35feee8e058b057a7904c2ef79dec1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USAT20000551,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,metal,rock",0.504,0.911,2.0,-2.97,1.0,0.0738,0.00512,0.0123,0.355,0.671,106.244,4.0,,Rhino Atlantic,"C © 1984 Atlantic Records, P ℗ 1984 Atlantic Records. Marketed By Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",5910 +5911,spotify:track:54ipXppHLA8U4yqpOFTUhr,Bones,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:6yiXkzHvC0OTmhfDQOEWtS,Mercury - Acts 1 & 2,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2022-07-01,https://i.scdn.co/image/ab67616d0000b273fc915b69600dce2991a61f13,2,1,165264,https://p.scdn.co/mp3-preview/73e60ce56281d0fe085ac00ab64b6f14772754b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USUM72201759,spotify:user:bradnumber1,2022-10-15T22:27:15Z,"modern rock,pop,rock",0.772,0.75,5.0,-3.67,0.0,0.0455,0.0201,0.0,0.074,0.587,114.061,4.0,,Kid Ina Korner / Interscope,"C © 2022 KIDinaKORNER/Interscope Records, P ℗ 2022 KIDinaKORNER/Interscope Records",5911 +5912,spotify:track:20qyckJrLZQGQmNb5OmpkJ,My Name Is Prince,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:03JxJZCOK54jmkrhlDczlA,[Love Symbol],spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1992-10-13,https://i.scdn.co/image/ab67616d0000b273de348ca63106ab1251063264,1,1,398333,https://p.scdn.co/mp3-preview/da414831f27c8082cd0567849cb745b705b9049c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,31,USWB19900586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.797,0.942,8.0,-4.209,1.0,0.135,0.0223,0.00286,0.044,0.363,116.577,4.0,,Rhino/Warner Records,"C © 1992 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1992 NPG Records, Inc. under exclusive license to Warner Records Inc.",5912 +5913,spotify:track:6dGWq08LXuIw6T2oUeHECh,Convoy,spotify:artist:0iTkPxRldzi5lmS6qZ70JV,C.W. McCall,spotify:album:6XbZ0Hc2LQaLJuUaFrHfTY,C.W. McCall's Greatest Hits,spotify:artist:0iTkPxRldzi5lmS6qZ70JV,C.W. McCall,1990-01-01,https://i.scdn.co/image/ab67616d0000b273183cad608b1e5a734f052710,1,1,230600,https://p.scdn.co/mp3-preview/6a093f1c5ce5e657d58b02ee7e6ab7824dc9132b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USPR37500034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country rock,truck-driving country",0.68,0.543,5.0,-14.876,1.0,0.141,0.857,0.000116,0.0881,0.796,111.62,4.0,,Island Mercury,"C © 1990 UMG Recordings, Inc., P This Compilation ℗ 1990 UMG Recordings, Inc.",5913 +5914,spotify:track:6Zt8AY95aCa2ZfF2omg3jY,Can't Stop the Music,spotify:artist:0dCKce6tJJdHvlWnDMwzPW,Village People,spotify:album:4oIOg6AgN5cTIQPk00RAWS,Can't Stop the Music (Original Soundtrack 1980),spotify:artist:0dCKce6tJJdHvlWnDMwzPW,Village People,1980,https://i.scdn.co/image/ab67616d0000b2732f38aff220050371b43eb57e,1,1,218000,https://p.scdn.co/mp3-preview/0dcb6bf50c062a55047cfd2aef0050637586d672?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,FR22F8000070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,new wave pop,soft rock",0.777,0.629,9.0,-10.33,0.0,0.111,0.118,0.0,0.74,0.617,133.4,4.0,,Scorpio Music,"C 1980 Can't Stop Productions NYC, P Can't Stop Productions NYC 1980",5914 +5915,spotify:track:0fsz7tJ7UKXT9hliLfO7aE,The Distance,spotify:artist:6A43Djmhbe9100UwnI7epV,CAKE,spotify:album:6kPOXxCYCdXBzEbb9dqE90,Fashion Nugget,spotify:artist:6A43Djmhbe9100UwnI7epV,CAKE,1996-09-17,https://i.scdn.co/image/ab67616d0000b273e73b1b6b3c3c25398303334f,1,2,179600,https://p.scdn.co/mp3-preview/2f7fdc3170133cb9ea71901478b177845c291534?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USCA19686701,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,pop rock,post-grunge,sacramento indie",0.456,0.752,11.0,-8.121,0.0,0.09,0.0095,0.00145,0.0573,0.897,183.569,4.0,,Volcano,"P (P) 1996 RCA Records, a division of Sony Music Entertainment",5915 +5916,spotify:track:2QXUaiHDPoAQ7OqBxseo7U,Let The Night Roll On,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:7IyGOTlimniMEESAFeEonC,Beyond Salvation,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,1990-07-17,https://i.scdn.co/image/ab67616d0000b27340feafcb81c089ccf648a60c,1,1,244360,https://p.scdn.co/mp3-preview/8926210b0be11c3d6b8bef3b1be116e7e0b8eea3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00619830,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.402,0.69,2.0,-11.019,1.0,0.0391,0.00498,0.0,0.036,0.618,132.097,4.0,,Bloodlines,"C 1990 Bloodlines, P 1990 Bloodlines",5916 +5917,spotify:track:1DIg9155AY65dpR5Lf5Vg4,Honest,spotify:artist:4BxCuXFJrSWGi1KHcVqaU4,Kodaline,spotify:album:3IJ5RDbQeiWIf7Fo601JwE,Coming Up for Air (Expanded Edition),spotify:artist:4BxCuXFJrSWGi1KHcVqaU4,Kodaline,2015-02-09,https://i.scdn.co/image/ab67616d0000b27306ad5b8704d1a23c7649611c,1,1,218933,https://p.scdn.co/mp3-preview/f611ad85bd0fa336745050f069edfebd319741c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBARL1401543,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish pop,modern rock,neo mellow",0.388,0.758,0.0,-5.662,1.0,0.0485,0.00389,0.0,0.167,0.318,154.919,4.0,,RCA Records Label,P (P) 2015 B-Unique records (UK) Limited under exclusive License to Sony Music Entertainment UK limited,5917 +5918,spotify:track:5WQQIDU3HRaMyPkob8mpFb,Where Have You Been,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:2g1EakEaW7fPTZC6vBmBCn,Talk That Talk,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2011-11-18,https://i.scdn.co/image/ab67616d0000b273bef074de9ca825bddaeb9f46,1,2,242680,https://p.scdn.co/mp3-preview/71c35cb0c63e46f1a8c62135283cb2723c675ecf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USUM71118074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.719,0.847,0.0,-6.34,0.0,0.0919,0.00201,0.0204,0.221,0.443,127.96,4.0,,Def Jam Recordings,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",5918 +5919,spotify:track:4VCC8wGU5XZ3UAjgbiPCt9,Burn Your Name,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:3TDimUGd7RULilf8dvoGXf,Fingerprints & Footprints - The Ultimate Collection,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b273c99282eb112e0ad89430afc6,2,3,232080,https://p.scdn.co/mp3-preview/56abda00b204e938d2777e7c7cf2d5b63d87193d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUUM70902938,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.424,0.932,0.0,-2.945,1.0,0.0412,0.00186,5.75e-06,0.146,0.259,126.673,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P This Compilation ℗ 2011 Universal Music Australia Pty Ltd.",5919 +5920,spotify:track:5SxkdsY1ufZzoq9iXceLw9,no tears left to cry,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:2AkKk7DFnT2IV1gPcq7RCQ,no tears left to cry,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2018-04-20,https://i.scdn.co/image/ab67616d0000b27365d28ba9f50b2eba46ffc55c,1,1,205946,https://p.scdn.co/mp3-preview/e5b04ad7398a7c8f5c4c788f4ab43f3f4cef150a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71805289,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.703,0.696,0.0,-5.482,1.0,0.0529,0.0375,5.65e-06,0.274,0.366,121.969,4.0,,Universal Records,"C © 2018 Republic Records, a Division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a Division of UMG Recordings, Inc.",5920 +5921,spotify:track:6P6JXuYde2BYahsfvjWVXU,Welcome Home,spotify:artist:39dc7J7NXZVxRZ3HvIqxiy,Peters & Lee,spotify:album:1Up5E0AWgj8MXUNryjvodA,Peters & Lee,spotify:artist:39dc7J7NXZVxRZ3HvIqxiy,Peters & Lee,1989-01-01,https://i.scdn.co/image/ab67616d0000b273246bd4ebcc5c67f4f79ab71f,1,14,238866,https://p.scdn.co/mp3-preview/30b11dbb58300c2589d0201172acd32e0fd381ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBAFQ0700282,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.699,0.28,5.0,-15.643,1.0,0.0324,0.731,0.0276,0.0818,0.5,120.04,4.0,,President,"C (C) 1989 President Records Ltd., London, England",5921 +5922,spotify:track:1diean1Kzrj3TAUDhnQmZH,Two For My Seconds,spotify:artist:3KshwzAIDBZRPr5Xc7S79C,Operator Please,spotify:album:7v5RBuKqBYKMypK3C7Uf16,Yes Yes Vindictive,spotify:artist:3KshwzAIDBZRPr5Xc7S79C,Operator Please,2007-01-01,https://i.scdn.co/image/ab67616d0000b273866f75fa6ddd262b0a1571ac,1,6,240720,https://p.scdn.co/mp3-preview/a024c10abf6e29e3b8a87fb405b6ffec9911efd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUOY10700038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.505,0.704,0.0,-4.35,1.0,0.0363,0.157,0.0,0.145,0.631,131.704,4.0,,Virgin Records,"C © 2007 Operator Please, P ℗ 2007 Operator Please",5922 +5923,spotify:track:77hjM9bMmgfTGJXv14UFmi,Play That Song,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:26OJfCFh7u9WmHd3Y3q8IS,a girl a bottle a boat,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2017-01-27,https://i.scdn.co/image/ab67616d0000b273279d967ebbfd039a1006f984,1,2,243253,https://p.scdn.co/mp3-preview/62266f1bcabc83dffc428e4ef6e1ad333a3dbf5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM11607746,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.392,0.825,0.0,-2.068,0.0,0.0535,0.0231,2.25e-06,0.0972,0.482,98.959,4.0,,Columbia,"P (P) 2017 Sunken Forest, LLC, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",5923 +5924,spotify:track:1QJDgtV8L8jCnpM1RIauAp,'Til You Do Me Right,spotify:artist:4UPcJIhr5K5fPsm4itqT7E,After 7,spotify:album:5L5q7gpKSLpMXd06AoX1U7,The Very Best Of After 7,spotify:artist:4UPcJIhr5K5fPsm4itqT7E,After 7,1997-01-01,https://i.scdn.co/image/ab67616d0000b273ab61177ad4657bf6459a6b22,1,12,294600,https://p.scdn.co/mp3-preview/7c788ec1f7e9fe0117e9ad78d305d9a33686ab2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USVI29500043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing",0.612,0.54,5.0,-7.562,1.0,0.0264,0.0781,0.0,0.0763,0.418,76.746,4.0,,Virgin Records,"C © 1997 Virgin Records America, Inc., P This Compilation ℗ 1997 Virgin Records America, Inc.",5924 +5925,spotify:track:0HmJAhnKK2lCkjdX2qOHhH,To the Door of the Sun,spotify:artist:7egNqIGRldMzifHoh8pib6,Al Martino,spotify:album:1F2nAfL0NWbKfZyfkEr2RE,THE GREATEST HITS: Al Martino - Spanish Eyes,spotify:artist:7egNqIGRldMzifHoh8pib6,Al Martino,2014-08-12,https://i.scdn.co/image/ab67616d0000b273e74daea3a99c6a8de8c008e3,1,3,192012,https://p.scdn.co/mp3-preview/0563f9ba30798e9bfa923bec908a2f469ce0d3b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEB791339761,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.638,0.376,10.0,-15.707,0.0,0.0381,0.33,3.78e-05,0.105,0.639,91.395,4.0,,The Greatest Hits,"C 2014 Sinostate, P 2014 Memo Media",5925 +5926,spotify:track:5It7Lw1E8VCSyS6AQv6nPm,Chocolate,spotify:artist:3mIj9lX2MWuHmhNCA7LSCW,The 1975,spotify:album:3ntxECMonkWC4v0d7AK8Sa,The 1975 (Deluxe Edition),spotify:artist:3mIj9lX2MWuHmhNCA7LSCW,The 1975,2013,https://i.scdn.co/image/ab67616d0000b2733110d217dcb5935a3a7eae40,1,4,224666,https://p.scdn.co/mp3-preview/ac10a3abc9483380a6a41b8133e1dc8001459d95?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBK3W1000164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern alternative rock,modern rock,pop,pov: indie,rock",0.614,0.938,11.0,-4.461,1.0,0.0611,0.000532,0.0,0.368,0.607,100.058,4.0,,Dirty Hit Ltd,"P (P) 2013 Dirty Hit, under exclusive license to Sony Music Entertainment Australia Pty Ltd.",5926 +5927,spotify:track:5WHTFyqSii0lmT9R21abT8,Don't Call Me Up,spotify:artist:1MIVXf74SZHmTIp4V4paH4,Mabel,spotify:album:0syM7OUAhV7S6XmOa4nLUZ,Ivy To Roses - Mixtape,spotify:artist:1MIVXf74SZHmTIp4V4paH4,Mabel,2019-01-18,https://i.scdn.co/image/ab67616d0000b273fb4278cf3d557dc89ca80ad5,1,1,178480,https://p.scdn.co/mp3-preview/4fafac14ed05bb07f98e008f6eb5d3a04d52eaf4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBUM71808052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.674,0.881,9.0,-2.853,1.0,0.147,0.296,3.01e-06,0.0793,0.234,98.994,4.0,,Polydor Records,"C © 2018 Mabel McVey, under exclusive licence to Polydor Records, a division of Universal Music Operations Limited, P ℗ 2019 Mabel McVey, under exclusive licence to Polydor Records, a division of Universal Music Operations Limited",5927 +5928,spotify:track:1qzHqfvKrZWo6dVHM1dXrj,Turn Me On,spotify:artist:2Kx7MNY7cI1ENniW7vT30N,Norah Jones,spotify:album:3ArSFkv4OQOosOvYTrZNIl,Come Away With Me (Super Deluxe Edition),spotify:artist:2Kx7MNY7cI1ENniW7vT30N,Norah Jones,2002-02-26,https://i.scdn.co/image/ab67616d0000b273c648a42b5dad72c8aafceeec,1,7,154800,https://p.scdn.co/mp3-preview/15ae20a7f268cb2ab955733116dabc3f4368a827?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USBN20100532,spotify:user:bradnumber1,2022-12-21T10:18:04Z,"contemporary vocal jazz,jazz pop,neo mellow,vocal jazz",0.429,0.18,10.0,-10.694,1.0,0.0551,0.864,4.4e-06,0.104,0.485,170.645,3.0,,CM BLUE NOTE (A92),"C © 2022 Capitol Records, LLC, P ℗ 2022 Capitol Records, LLC",5928 +5929,spotify:track:5XWmfpinsT4XbfFsUASSaG,"Girls Talk Boys - From ""Ghostbusters"" Original Motion Picture Soundtrack",spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:6YREBUbJTPWQWmjxuJ6h77,"Girls Talk Boys (From ""Ghostbusters"" Original Motion Picture Soundtrack)",spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2016-07-15,https://i.scdn.co/image/ab67616d0000b273e661e309469ed5ffd7a4cb94,1,1,216098,https://p.scdn.co/mp3-preview/74497dad4b1a0e785ebdd9d6023a3a5b215c1302?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBUM71603113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.829,0.775,7.0,-3.358,1.0,0.0507,0.104,0.0,0.0943,0.878,120.048,4.0,,Capitol,"C © 2016 One Mode Productions Limited, under exclusive licence to Capitol Records (a division of Universal Music Operations Limited), P ℗ 2016 One Mode Productions Limited, under exclusive licence to Capitol Records (a division of Universal Music Operations Limited)",5929 +5930,spotify:track:3RMQ574OOJ3ND4019NUqOc,I Only Wanna Be with You,spotify:artist:0e52F3Q1maTGPgsEa1hDJM,Jessica Andersson,spotify:album:3hF2BGWVKLzTAAqGfQzD9y,Wake Up,spotify:artist:0e52F3Q1maTGPgsEa1hDJM,Jessica Andersson,2009-11-06,https://i.scdn.co/image/ab67616d0000b2739632f45a7cc31b126943bb71,1,5,206832,https://p.scdn.co/mp3-preview/e77500ac9d0dcba5ebccb68be9e5aef59686d97c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,SEPQA0900544,spotify:user:bradnumber1,2023-08-14T00:00:07Z,"classic swedish pop,swedish pop",0.514,0.905,7.0,-2.019,1.0,0.0312,0.0488,1.46e-05,0.124,0.905,128.014,4.0,,WM Sweden,"C © 2009 Warner Music Sweden AB, P ℗ 2009 Warner Music Sweden AB",5930 +5931,spotify:track:6ADSaE87h8Y3lccZlBJdXH,With Or Without You,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:5y6wlw1LnqFnQFruMeiwGU,The Joshua Tree (Super Deluxe),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1987-03-03,https://i.scdn.co/image/ab67616d0000b273b7bea3d01f04e6d0408d2afe,1,3,295515,https://p.scdn.co/mp3-preview/a7e5de3437eecf201cc1817a7b2d8fae96910199?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBUM70709792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.54,0.429,2.0,-11.822,1.0,0.0285,0.000202,0.355,0.141,0.113,110.171,4.0,,UMC (Universal Music Catalogue),"C © 2017 Island Records, a division of Universal Music Operations Limited, P This Compilation ℗ 2017 Island Records, a division of Universal Music Operations Limited",5931 +5932,spotify:track:1sn6iOK93jnp0Hn5BnNOXy,Best of You,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:1zCNrbPpz5OLSr6mSpPdKm,Greatest Hits,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-11-03,https://i.scdn.co/image/ab67616d0000b273136d7250568820409f8fdd60,1,2,254973,https://p.scdn.co/mp3-preview/e0d4a26b35e7e40ee04dbfe37a69c2ad8076f7f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRW30500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.377,0.942,1.0,-4.543,0.0,0.07,0.00092,8.88e-05,0.126,0.348,129.955,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",5932 +5933,spotify:track:7cJyozunnamcpi7JoEQ1ap,"Taller, Stronger, Better - Radio Mix",spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:0f8Xtk0NDPGz4PpwlzEMBT,Twenty Ten,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2010-11-19,https://i.scdn.co/image/ab67616d0000b2739b9984688fe057a6af29d60e,1,9,204933,https://p.scdn.co/mp3-preview/468543a35359c9808aaea97e055ba322b9eeec4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUBM00600797,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.334,0.595,8.0,-4.798,1.0,0.0384,0.443,0.0,0.149,0.159,129.405,3.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd.,5933 +5934,spotify:track:3ayl4rTNR1rSqdi97VT2rZ,Sweet December,spotify:artist:0EdNPfEHC714LHuN0NPIyU,Short Stack,spotify:album:0egKbmWnpVaZkvQ68ktlyr,This Is Bat Country,spotify:artist:0EdNPfEHC714LHuN0NPIyU,Short Stack,2010-01-01,https://i.scdn.co/image/ab67616d0000b27356797e7da4f49ac9080a9f6b,1,11,234614,https://p.scdn.co/mp3-preview/50ed938341925d308ba8e5a22f209614ecdf0a9e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71001539,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.58,0.877,9.0,-3.616,1.0,0.05,0.0355,0.0,0.333,0.441,127.993,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Sunday Morning Records Pty Ltd, P ℗ 2010 Sunday Morning Records Pty Ltd",5934 +5935,spotify:track:6kex4EBAj0WHXDKZMEJaaF,Swalla (feat. Nicki Minaj & Ty Dolla $ign),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:0hCNtLu0JehylgoiP8L4Gh, spotify:artist:7c0XG5cIJTrrAgEC3ULPiq","Jason Derulo, Nicki Minaj, Ty Dolla $ign",spotify:album:2e5CxfyEwBW115beiwh7Mc,Swalla (feat. Nicki Minaj & Ty Dolla $ign),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:0hCNtLu0JehylgoiP8L4Gh, spotify:artist:7c0XG5cIJTrrAgEC3ULPiq","Jason Derulo, Nicki Minaj, Ty Dolla $ign",2017-02-23,https://i.scdn.co/image/ab67616d0000b2730d629b7dd61cb5d580acad39,1,1,216408,https://p.scdn.co/mp3-preview/9c1d97e992c06a30fc012de88e710ddbea9711c1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,69,USWB11700237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,hip pop,pop,queens hip hop,rap,hip hop,pop rap,r&b,southern hip hop,trap,trap soul",0.689,0.789,1.0,-4.901,1.0,0.122,0.154,0.0,0.203,0.745,98.043,4.0,,Beluga Heights/Warner Records,"C © 2017 Warner Records Inc., P ℗ 2017 Warner Records Inc.",5935 +5936,spotify:track:7oAwMt7PwEXtqwslKA1eor,Wild World,"spotify:artist:3aTuTR5Nf6pVW3837q2ZL7, spotify:artist:5aO4PS2vHHs4n14pMwmadH","Maxi Priest, John Gallen",spotify:album:27GnoD7FLhUzVLXh7cW7sg,Best Of Maxi Priest,spotify:artist:3aTuTR5Nf6pVW3837q2ZL7,Maxi Priest,2008-01-01,https://i.scdn.co/image/ab67616d0000b2738628efab7312aa5517d190ef,1,3,216133,https://p.scdn.co/mp3-preview/7027f812bedcb5b5f671943e5d2afb88cb71a223?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAAA8700198,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lovers rock,reggae,reggae fusion",0.563,0.61,0.0,-6.961,1.0,0.0391,0.22,6.74e-05,0.326,0.795,168.423,4.0,,Virgin Records,"C © 2008 Virgin Records America, Inc., P This Compilation ℗ 2008 Virgin Records America, Inc.",5936 +5937,spotify:track:1UjdzJkBwidn55CUo5TB1O,The War Song - Remastered 2003,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,spotify:album:5GDd4m6f97q3ny2DfbnxiT,Waking Up With The House On Fire (Remastered / Expanded Edition),spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,1984-11-01,https://i.scdn.co/image/ab67616d0000b27375769be6090fa408b38ca148,1,2,253986,https://p.scdn.co/mp3-preview/0bff4cade08c633a99f3ab569585fc591660bfbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAAA0300593,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock,synthpop",0.811,0.76,0.0,-6.685,1.0,0.0389,0.225,0.0,0.0527,0.913,117.14,4.0,,EMI Marketing,"C © 2003 Virgin Records Limited, P ℗ 2003 Virgin Records Limited",5937 +5938,spotify:track:2XPEv2sB6c44DSocT2TwAc,Pony Time,spotify:artist:7qQJQ3YtcGlqaLg5tcypN2,Chubby Checker,spotify:album:36tc0l1brbD9CCaUDrvqVi,Chubby Checker Classics,spotify:artist:7qQJQ3YtcGlqaLg5tcypN2,Chubby Checker,1962-01-01,https://i.scdn.co/image/ab67616d0000b273d13f4d5f1d5d19f25783f505,1,7,147426,https://p.scdn.co/mp3-preview/6452c42d6d29da51535d4582820db6a05b035bbc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USI4R0502241,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.453,0.609,8.0,-6.662,1.0,0.0296,0.00868,3.43e-05,0.0797,0.96,77.36,4.0,,TEEC Recordings,C (C) 1962 TEEC Recordings,5938 +5939,spotify:track:0uaB8avevQNDd32qEqh6mx,Stop Callin' Me,spotify:artist:2oRTd2N9vKFAceSCA757KY,Shakaya,spotify:album:6gSxrLDGiy0O7YZS2scWFy,Shakaya,spotify:artist:2oRTd2N9vKFAceSCA757KY,Shakaya,2002-10-18,https://i.scdn.co/image/ab67616d0000b2733d2b3d1ee12a08a1ce43b077,1,6,218493,https://p.scdn.co/mp3-preview/ebfcde3a38b157c4444da7fa0fe0cd00d7d9de82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUSM00200160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop",0.786,0.726,0.0,-5.852,0.0,0.0543,0.202,0.0,0.103,0.957,88.998,4.0,,Columbia,P (P) 2002 Sony Music Entertainment Australia Pty Ltd,5939 +5940,spotify:track:6t1F0FTlVHAw6kEe164SsL,Something I Need,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:42UJjk8i8L0De7lQtu7sqi,Native,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2014-01-01,https://i.scdn.co/image/ab67616d0000b2736f91180b662ca15ad2fb88f0,1,11,240080,https://p.scdn.co/mp3-preview/06c629b260651b8783b89deee322ab99ca570563?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USUM71301310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.683,0.595,7.0,-6.92,1.0,0.0313,0.154,0.0,0.225,0.632,98.969,4.0,,Mosley / Interscope,"C © 2014 Mosley Music/Interscope Records, P ℗ 2014 Mosley Music/Interscope Records",5940 +5941,spotify:track:7ax0KTiQf6EWa59S3iQwHI,New Americana,spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,spotify:album:1kxDY7IJjRHX3dpQTvFUmS,BADLANDS (Deluxe),spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,2015-08-28,https://i.scdn.co/image/ab67616d0000b273941ccc2a04b55625d54f7bb4,1,3,183808,https://p.scdn.co/mp3-preview/54f41918f96220d10b95f2d13593c1a2c0ead60f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71507637,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,etherpop,indie poptimism,pop",0.444,0.711,0.0,-5.106,0.0,0.0327,0.0119,0.0,0.34,0.371,86.976,4.0,,Universal Music Group,"C © 2015 Astralwerks, P ℗ 2015 Astralwerks",5941 +5942,spotify:track:0b18g3G5spr4ZCkz7Y6Q0Q,Rasputin,"spotify:artist:6QMABvTzixnxzsLYyhqRxI, spotify:artist:54R6Y0I7jGUCveDTtI21nb","Majestic, Boney M.",spotify:album:6PzYuR9c0CYCPJTnqylPhd,Rasputin,"spotify:artist:6QMABvTzixnxzsLYyhqRxI, spotify:artist:54R6Y0I7jGUCveDTtI21nb","Majestic, Boney M.",2021-02-26,https://i.scdn.co/image/ab67616d0000b273f05cf0af79d057704dc994f4,1,1,186209,https://p.scdn.co/mp3-preview/ad54133fba3671bed149315a15c410a52569f42b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,DEE862100256,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"uk dance,europop",0.758,0.913,6.0,-2.926,0.0,0.113,0.00364,6.92e-05,0.193,0.658,128.04,4.0,,NITRON music,P (P) 2021 NITRON music a division of Sony Music Entertainment Germany GmbH / Ministry of Sound Recordings Limited,5942 +5943,spotify:track:5u8F359esydVGN4thHmSRz,Careful,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:3CaQTJU2Cpx7GXTgenmb2r,Brand New Eyes,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2009-09-22,https://i.scdn.co/image/ab67616d0000b273b9abbedc516dd297039977bd,1,1,230440,https://p.scdn.co/mp3-preview/6a7476bae7c498355b5d2052c6065bf074756f74?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USAT20902319,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.417,0.945,8.0,-3.703,1.0,0.0805,0.00019,8.63e-05,0.2,0.607,164.997,4.0,,Fueled By Ramen/Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",5943 +5944,spotify:track:2HsjJJL4DhPCzMlnaGv7ap,Small Town,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:1BYEhfr8qQGNhbqPAbfnxk,Scarecrow,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1985,https://i.scdn.co/image/ab67616d0000b273b46e7ea6a6b2fa45caa23393,1,3,221626,https://p.scdn.co/mp3-preview/c03e5e9155672539d3e1d09e661228a10eb21d33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USJM18500005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.659,0.919,11.0,-2.658,1.0,0.0333,0.155,0.0054,0.312,0.631,123.135,4.0,,John Mellencamp 2023 (Island),"C © 2005 John Mellencamp, P ℗ 2005 John Mellencamp",5944 +5945,spotify:track:7mS8RbJji2UZAaguRGsOCH,Me Against the Music (feat. Madonna) - LP Version / Video Mix,"spotify:artist:26dSoYclwsYLMAKD3tpOr4, spotify:artist:6tbjWDEIzxoDsBA1FuhfPW","Britney Spears, Madonna",spotify:album:0z7pVBGOD7HCIB7S8eLkLI,In The Zone,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2003-11-13,https://i.scdn.co/image/ab67616d0000b273efc6988972cb04105f002cd4,1,1,223773,https://p.scdn.co/mp3-preview/e78ca9973337bb4e96359c70efc2349a41cb7eeb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USJI10300966,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,pop",0.804,0.836,6.0,-6.635,0.0,0.089,0.32,0.0,0.213,0.85,120.046,4.0,,Jive,P (P) 2003 Zomba Recording LLC,5945 +5946,spotify:track:2JJPmztkFxE7owP8iTerTn,Ooh La La,spotify:artist:23U4BazsWheaHKYgKGnnkl,Normie Rowe,spotify:album:0F3smCoP8sLUvuLbu0W5mH,Greatest Hits,spotify:artist:23U4BazsWheaHKYgKGnnkl,Normie Rowe,2007-02-06,https://i.scdn.co/image/ab67616d0000b27397e694959d6240a264f0ce70,1,9,144693,https://p.scdn.co/mp3-preview/2f4b5ae80dc62386b771d3f2a5e681de781969f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUFE07400058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,cabaret",0.442,0.424,2.0,-11.355,1.0,0.0266,0.642,0.000325,0.309,0.53,104.075,3.0,,WM Australia,"C © 1974 Sunshine Records, P ℗ 1974 Sunshine Records",5946 +5947,spotify:track:5UsfNL9PE9An9J4XLMJKPs,Skeleton Dance,spotify:artist:05STafdfQBBQIV9duONwod,Children Collide,spotify:album:09wmAvJnyP6AiHy688REXD,The Long Now,spotify:artist:05STafdfQBBQIV9duONwod,Children Collide,2008-01-01,https://i.scdn.co/image/ab67616d0000b273aedb00f8dc47c61e13e8ca75,1,4,211760,https://p.scdn.co/mp3-preview/ca68d1ca6bc86417425f17d695c7acab96c92bb1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUUM70800799,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian indie rock",0.567,0.918,11.0,-3.777,0.0,0.04,0.000806,0.13,0.047,0.682,82.344,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Universal Music Australia Pty Ltd., P ℗ 2008 Universal Music Australia Pty Ltd.",5947 +5948,spotify:track:0jGWNXpaopUeVCGNCXexqq,Pick You Up,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:3TDimUGd7RULilf8dvoGXf,Fingerprints & Footprints - The Ultimate Collection,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b273c99282eb112e0ad89430afc6,1,4,260626,https://p.scdn.co/mp3-preview/7aa33235250d8608542faafd981d5380bd10e803?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUPO09620031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.569,0.735,10.0,-6.085,0.0,0.0272,0.0011,0.0121,0.139,0.447,109.482,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P This Compilation ℗ 2011 Universal Music Australia Pty Ltd.",5948 +5949,spotify:track:13QWQQW83ZMO1k8EDucqgZ,My Kind of Girl,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:2OXZJLXxM8jrY3gBoVNfmz,Nobody but Me (Deluxe),spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2016-10-21,https://i.scdn.co/image/ab67616d0000b273576629f3c4631eb55612a7c7,1,2,246440,https://p.scdn.co/mp3-preview/648ac1634abbf28c56da9db4c4ddd29bed93255e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USRE11600451,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.591,0.515,6.0,-6.004,1.0,0.0335,0.36,0.0,0.0723,0.562,113.994,4.0,,Reprise,"C © 2016 Reprise Records, P ℗ 2016 Reprise Records",5949 +5950,spotify:track:4rqR0yM2k41leqyErhNzTs,Beautiful,"spotify:artist:0z4gvV4rjIZ9wHck67ucSV, spotify:artist:7fObcBw9VM3x7ntWKCYl0z, spotify:artist:5P2rwRBgIN450RaJxdjYdA","Akon, Colby O'Donis, Kardinal Offishall",spotify:album:2EPsQyatLP7uIoT7sOEaWm,Freedom (Int'l Version),spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,2008-01-01,https://i.scdn.co/image/ab67616d0000b273716b780c63154a82498d1c46,1,2,312986,https://p.scdn.co/mp3-preview/9e4c833157a8e9bfefb1b35be3dec94825c7898f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70845927,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,canadian old school hip hop",0.742,0.948,0.0,-4.445,0.0,0.0894,0.123,0.0,0.112,0.615,130.022,4.0,,Universal Music Ltd.,"C © 2008 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2008 Universal Records & SRC Records Inc., a division of UMG Recordings",5950 +5951,spotify:track:0YEsfwQpG7ofdIiHWA0dHi,All I Ever Need,spotify:artist:04abdnqPQe2N4fjztDea6z,Austin Mahone,spotify:album:0dcqVluuyFBCScCqH7uAwx,The Secret,spotify:artist:04abdnqPQe2N4fjztDea6z,Austin Mahone,2014,https://i.scdn.co/image/ab67616d0000b273b8509a3d905deebb1c9232fb,1,6,213746,https://p.scdn.co/mp3-preview/a4e1feed325f76e68a54c52cd6379e460825a968?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USCM51400109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.708,0.647,11.0,-6.128,1.0,0.0298,0.117,0.0,0.111,0.654,129.95,4.0,,BMG Rights Management (US) LLC,"C © 2014, 2016 A.M. Music LLC, P ℗ 2014, 2016 A.M. Music LLC",5951 +5952,spotify:track:6bvc6DHQMDLRH1EDNR1Uhg,She's My Baby,spotify:artist:53xt77SWSCBxurJQWuxUkM,Johnny O'Keefe,spotify:album:6yZ6XiRqhYuuQ8j1F7AHqi,The Very Best Of (Standard),spotify:artist:53xt77SWSCBxurJQWuxUkM,Johnny O'Keefe,2008-08-23,https://i.scdn.co/image/ab67616d0000b27330ad726114f1781c8d4d81bf,1,4,125226,https://p.scdn.co/mp3-preview/07f4e3ff2ecc7e837b737ed59004c772e6192954?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUWA00800460,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.582,0.772,2.0,-5.028,1.0,0.0332,0.691,0.000175,0.124,0.731,131.613,4.0,,WM Australia,"C © 2008 Warner Music Australia Pty Limited, P ℗ 2008 Warner Music Australia Pty Limited",5952 +5953,spotify:track:6f4JctYZP4qDuppkNaWHWk,We Are All Made Of Stars,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,spotify:album:3DxUnsVpofjCNk5OF1im8J,18,spotify:artist:3OsRAKCvk37zwYcnzRf5XF,Moby,2002,https://i.scdn.co/image/ab67616d0000b273049d72c656c3e9a9f7552955,1,1,273213,https://p.scdn.co/mp3-preview/e235e0a87daae4adc8016309a32f36f01240964a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJH0200043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,electronica",0.623,0.563,2.0,-8.4,1.0,0.0271,0.0479,0.759,0.192,0.378,112.024,4.0,,Mute,"C (C) 2002 Mute Records LimitedThis label copy information is the subject of copyright protection. All rights reserved.(C) Mute Records Limited, P (P) 2002 The copyright in this sound recording is owned by Mute Records Limited",5953 +5954,spotify:track:2tZtzQUgPsHIYbNesKUHb6,It's Four in the Morning,spotify:artist:6uvq6FeVsmhOWfJHxVNeBL,Faron Young,spotify:album:47JSBGU35ahHQPvFKFmRpg,All Time Greatest Hits,spotify:artist:6uvq6FeVsmhOWfJHxVNeBL,Faron Young,2000-10-19,https://i.scdn.co/image/ab67616d0000b273ba76cb240cbc33f08a0bb1bd,1,23,164234,https://p.scdn.co/mp3-preview/2466d047e6ef965a8eb7540ad72e4140d6438c52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,QM4TX1878410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,honky tonk,traditional country,western swing",0.462,0.277,9.0,-11.399,1.0,0.0315,0.749,7.56e-06,0.409,0.388,131.001,3.0,,Fuel Records,"C (C) 2000 © Fuel Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",5954 +5955,spotify:track:463PQggkmk5tTw8ug0ahOX,The Other Side (from Trolls World Tour),"spotify:artist:7tYKF4w9nC0nq9CsPZTHyP, spotify:artist:31TPClRtHm23RisEBtV3X7","SZA, Justin Timberlake",spotify:album:50ZTMRi6Biq1i1pWbcaKaJ,The Other Side (from Trolls World Tour),"spotify:artist:7tYKF4w9nC0nq9CsPZTHyP, spotify:artist:31TPClRtHm23RisEBtV3X7","SZA, Justin Timberlake",2020-02-26,https://i.scdn.co/image/ab67616d0000b273c0679b8777e40a4538bab8cc,1,1,188186,https://p.scdn.co/mp3-preview/04b27140e09f6581d8b398effe575dff56e66698?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC11903596,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b,rap,dance pop,pop",0.76,0.607,7.0,-6.274,1.0,0.0964,0.00277,0.0,0.132,0.709,105.979,4.0,,RCA Records Label,"P (P) 2020 RCA Records, a division of Sony Music Entertaimment",5955 +5956,spotify:track:5fwP61Nmo5xXYIjO9XEWqb,I'm Still Standing,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:4Y7sv4Ji2wQOknwXZ0x2WI,Too Low For Zero (Remastered With Bonus Tracks),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1983-05-30,https://i.scdn.co/image/ab67616d0000b27373fd9802ec887972ecdacac2,1,2,183440,https://p.scdn.co/mp3-preview/e7eba4bb4727485ae61cbdf0465de20d904d2fc3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALX8300190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.504,0.904,6.0,-6.863,1.0,0.179,0.356,0.121,0.14,0.772,176.808,4.0,,Universal Music Group,"C © 1998 Mercury Records Limited, P ℗ 1998 Mercury Records Limited",5956 +5957,spotify:track:5GHbWzjRy1XfnTf5rkA8bf,Ringo,spotify:artist:7CHyTolf8RTuUaW4yYV52d,Lorne Greene,spotify:album:5aucUihOucqNfx4dUXOLHS,Welcome to the Ponderosa,spotify:artist:7CHyTolf8RTuUaW4yYV52d,Lorne Greene,1964-11-04,https://i.scdn.co/image/ab67616d0000b273fa53ae13a36f6708af04053c,1,7,214213,https://p.scdn.co/mp3-preview/3dcb8ff7a5ea9818f4ebd50ada52b5d18775140b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USRC11401592,spotify:user:bradnumber1,2021-08-08T09:26:31Z,cowboy western,0.563,0.521,11.0,-12.568,1.0,0.311,0.864,0.0,0.216,0.653,110.794,4.0,,Legacy Recordings,"P Originally released 1964. All rights reserved by RCA Records, a divsion of Sony Music Entertainment",5957 +5958,spotify:track:7HOR03yHn462wtV3U7uhIx,Black Betty - Edit,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,spotify:album:7tVm6uKq1IFIYJ1sxHMzMQ,Black Betty,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,2004-01-01,https://i.scdn.co/image/ab67616d0000b27318301b88f35a15fbb54177d8,1,1,207560,https://p.scdn.co/mp3-preview/a0dd803bcad33ac5bb239fb9e84dad3f96343d0d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00430014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.558,0.857,7.0,-6.446,1.0,0.0952,1.98e-05,0.649,0.18,0.379,124.05,4.0,,Universal Music Group,"C © 2004 Universal Music Australia Pty Ltd., P ℗ 2004 Universal Music Australia Pty Ltd.",5958 +5959,spotify:track:5fmvZgUFuUq1SnzT3S6y4o,Ring Ring - English Version,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1pVtxVKXwhU2nsvrTI1WqT,Ring Ring (Deluxe Edition),spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1973,https://i.scdn.co/image/ab67616d0000b2735ca4eeb638139fd840250b9e,1,1,184733,https://p.scdn.co/mp3-preview/81c798fb977b387acb3666b73a65e672853b1843?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,SEAYD7301010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.558,0.882,9.0,-9.123,1.0,0.0348,0.0128,8.78e-05,0.093,0.972,137.078,4.0,,Polar Music International AB,"C © 2013 Polar Music International AB, P This Compilation ℗ 2013 Polar Music International AB",5959 +5960,spotify:track:5pwykH32nEkcqdnufmbiqo,I Want You,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:2FSVwM8ysmI2tXIPpBJbfs,Savage Garden,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,1997-03-04,https://i.scdn.co/image/ab67616d0000b2736829cf8da7c5706fc42a3852,1,4,232000,https://p.scdn.co/mp3-preview/d5ee0778f5e37a233cffeedc594325bb90505de3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09700004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop rock",0.623,0.875,7.0,-6.48,1.0,0.0359,0.00833,2.14e-06,0.246,0.599,106.119,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P This Compilation ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",5960 +5961,spotify:track:1m2EwoCsZlX5JauNr9O4zk,Walkin' On The Sun,spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,spotify:album:54E5K2EKljAOlJosBJsuUH,Smash Mouth (International Version),spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,2001-01-01,https://i.scdn.co/image/ab67616d0000b273fdbad1f02e240471592b58e4,1,15,205826,https://p.scdn.co/mp3-preview/7075addc90650bcecb7a3aff90e11b9ee35997c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19701434,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.732,0.973,6.0,-5.33,1.0,0.0319,0.456,0.0,0.154,0.967,123.292,4.0,,Universal Music Group,"C © 2001 Interscope Records, P ℗ 2001 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",5961 +5962,spotify:track:0rWhxNRrN3yj2juc5yRFDF,Mashed Potato,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,spotify:album:7LtezZWrkfw86vkJzKo7EZ,Extended Play,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,2014-06-06,https://i.scdn.co/image/ab67616d0000b273ac4610f43e278cad4e5937b1,1,1,150240,https://p.scdn.co/mp3-preview/d6d5dac1b5b8cffb2462bc3ee508c7d71213132c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06400002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.282,0.697,9.0,-6.528,1.0,0.0378,0.763,5.46e-05,0.242,0.646,145.258,4.0,,Albert Productions,"C © 2014 BMG AM Pty Ltd., P ℗ 2014 BMG AM Pty Ltd.",5962 +5963,spotify:track:7HWH4kGaHR3ZwKNFPT4dSW,Puppy Love,spotify:artist:5ZEAzHE2TzAwUcOj6jMIgf,Donny Osmond,spotify:album:6quP8dKzcKp5JON8hWKkeD,Portrait Of Donny,spotify:artist:5ZEAzHE2TzAwUcOj6jMIgf,Donny Osmond,1972-05-27,https://i.scdn.co/image/ab67616d0000b27385618248da0fd1e0485870d2,1,1,184973,https://p.scdn.co/mp3-preview/4002ee86ee0e6cdeea01a588636320c8f8565305?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USPR37207321,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.414,0.681,1.0,-3.992,1.0,0.036,0.612,7.98e-06,0.248,0.538,102.338,3.0,,Universal Records,"C © 1972 UMG Recordings, Inc., P ℗ 1972 UMG Recordings, Inc.",5963 +5964,spotify:track:5CO4uJ11ZVKhsO2Lu9NUSk,Natalie Don't,spotify:artist:5KKpBU5eC2tJDzf0wmlRp2,RAYE,spotify:album:2SJm2EyIfbQQyU0ryiSqmP,Natalie Don’t,spotify:artist:5KKpBU5eC2tJDzf0wmlRp2,RAYE,2020-07-10,https://i.scdn.co/image/ab67616d0000b2733317e5ea09cba0db8752ac7a,1,1,194346,https://p.scdn.co/mp3-preview/d3dfcffbb6dd7caaec763cd11ab569ee98a7728f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBUM72002921,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"uk contemporary r&b,uk pop",0.807,0.533,9.0,-4.899,0.0,0.0443,0.176,0.0,0.284,0.853,124.006,4.0,,Polydor Records,"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",5964 +5965,spotify:track:57p8CBvPOxrvyCbn6ttl5r,Would You Ever,"spotify:artist:5he5w2lnU9x7JFhnwcekXX, spotify:artist:3JXpwnHbLvXxY99EuXqFPX","Skrillex, Poo Bear",spotify:album:2czvZrAe1DWj6uc4iOqtJX,Would You Ever,"spotify:artist:5he5w2lnU9x7JFhnwcekXX, spotify:artist:3JXpwnHbLvXxY99EuXqFPX","Skrillex, Poo Bear",2017-07-26,https://i.scdn.co/image/ab67616d0000b273c2896a061e50f35f97337512,1,1,234285,https://p.scdn.co/mp3-preview/eff34bb006c8264163d805745a9e6eab37a23b92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAT21702382,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,complextro,edm,electro,pop dance,pop r&b",0.653,0.91,10.0,-3.36,1.0,0.0566,0.0079,0.0,0.318,0.0921,126.047,4.0,,OWSLA/Atlantic,"C © 2017 OWSLA/Big Beat/Atlantic Records, Inc. for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2017 OWSLA/Big Beat/Atlantic Records, Inc. for the United States and WEA International Inc. for the world outside of the United States.",5965 +5966,spotify:track:4fcbxnnfUycb7fJAInJOob,Your Song Saved My Life - From Sing 2,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:0lgSYiY3qT4Q9myulgxhAu,Your Song Saved My Life (From Sing 2),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2021-11-03,https://i.scdn.co/image/ab67616d0000b27308772b817e93bfaada4fcd75,1,1,210280,https://p.scdn.co/mp3-preview/03ce28c58b47c918cd95f4c110d0f54cae64fc97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBUM72106911,spotify:user:bradnumber1,2021-11-09T09:47:31Z,"irish rock,permanent wave,rock",0.38,0.637,5.0,-7.128,1.0,0.0274,0.28,0.0,0.0545,0.392,183.968,4.0,,Universal-Island Records Ltd.,"C © 2021 Island Records Limited, P ℗ 2021 Island Records Limited",5966 +5967,spotify:track:4pdPtRcBmOSQDlJ3Fk945m,Let Me Love You,"spotify:artist:540vIaP2JwjQb9dm3aArA4, spotify:artist:1uNFoZAHBGtllmzznpCI3s","DJ Snake, Justin Bieber",spotify:album:55bbXORm6ZrVq52zfZnxBf,Encore,spotify:artist:540vIaP2JwjQb9dm3aArA4,DJ Snake,2016-08-05,https://i.scdn.co/image/ab67616d0000b2735045de6786e0af096de73ed4,1,13,205946,https://p.scdn.co/mp3-preview/7864c6e844bdf1438c355017ecab0daceccb82f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,QMZSY1600015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electronic trap,pop,pop dance,canadian pop,pop",0.476,0.718,8.0,-5.309,1.0,0.0576,0.0784,1.02e-05,0.122,0.142,199.864,4.0,,Universal Music Group,"C © 2016 DJ Snake Music, under exclusive license to Interscope Records, P ℗ 2016 DJ Snake Music, under exclusive license to Interscope Records",5967 +5968,spotify:track:0IktbUcnAGrvD03AWnz3Q8,Lucky,"spotify:artist:4phGZZrJZRo4ElhRtViYdl, spotify:artist:6aZyMrc4doVtZyKNilOmwu","Jason Mraz, Colbie Caillat",spotify:album:04G0YylSjvDQZrjOfE5jA5,We Sing. We Dance. We Steal Things.,spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,2008-05-12,https://i.scdn.co/image/ab67616d0000b273125b1a330b6f6100ab19dbed,1,3,189613,https://p.scdn.co/mp3-preview/2af2119909efc963734ea1eaeeafbc8d212e2371?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USEE10800806,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,dance pop,neo mellow,pop,dance pop,neo mellow,pop",0.625,0.414,0.0,-8.7,1.0,0.0369,0.294,0.0,0.151,0.669,130.088,4.0,,Atlantic Records/ATG,"C © 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",5968 +5969,spotify:track:4H3vuLX59XPqdtTpIesGyS,California Girls,spotify:artist:0KyCXNSa7ZMb5LydfKbLG3,David Lee Roth,spotify:album:2CLt8z7ozftRAx6I37C7rE,Crazy from the Heat,spotify:artist:0KyCXNSa7ZMb5LydfKbLG3,David Lee Roth,1985-01-15,https://i.scdn.co/image/ab67616d0000b2736cf7c4cfee80ee7ec11bfd87,1,3,171826,https://p.scdn.co/mp3-preview/1f25736c20193639eace6019d2081becd4beac6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USWB10102431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock",0.582,0.748,4.0,-5.93,1.0,0.0521,0.432,0.0,0.0707,0.433,115.13,4.0,,Warner Records,"C © 1985 Diamond Dave Enterprises, Inc., P ℗ 1985 Warner Records Inc.",5969 +5970,spotify:track:04BSvYghzdxjSJNpee36er,Monster - Transformers Soundtrack Version,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:5R7HaEiSyuBBPReEyfX39C,Monster,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2011-06-06,https://i.scdn.co/image/ab67616d0000b273988f18816fe9bb85b036af92,1,1,200146,https://p.scdn.co/mp3-preview/3a2c724db3cdd9e14fc6a95dbbb1f2107acaf493?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAT21101199,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.413,0.969,4.0,-2.599,0.0,0.119,2.87e-05,0.000753,0.371,0.374,164.999,4.0,,Reprise,"C © 2011 Fueled By Ramen, P ℗ 2011 Fueled By Ramen",5970 +5971,spotify:track:48iWbsOaBUAGzMdoSmqyg1,Lightning Crashes,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,spotify:album:4ZsG3ifn9sIcrFT1ecw0gF,Throwing Copper,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,1994-01-01,https://i.scdn.co/image/ab67616d0000b27323d8d82a798baa960fdb5070,1,5,325600,https://p.scdn.co/mp3-preview/da1add3330e8393e15f4e21c780428754f1e5591?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USRR29442180,spotify:user:bradnumber1,2021-10-20T22:25:29Z,"grunge,pop rock,post-grunge",0.384,0.433,11.0,-9.256,1.0,0.0437,0.24,7.39e-06,0.11,0.429,90.176,4.0,,Radioactive Records 40%,"C © 1994 Radioactive Records J.V., P ℗ 1994 Radioactive Records J.V.",5971 +5972,spotify:track:7FC9Lng8iXU081lbigu8m8,Heartbeat Song,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:7oKtXc3FkeOZTCB88YugON,Piece By Piece (Deluxe Version),spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2015-02-27,https://i.scdn.co/image/ab67616d0000b2738612619562d9e86624479ec8,1,1,198733,https://p.scdn.co/mp3-preview/60107aeecd410c163220c467df4d49faf2ef91ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBCTA1400065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.49,0.798,6.0,-3.66,1.0,0.0489,0.0137,0.0,0.0627,0.479,149.109,4.0,,RCA Records Label,P (P) 2015 19 Recordings Limited under exclusive license to RCA Records,5972 +5973,spotify:track:3WF9iKr0tXJ5eYn4tTpXdC,Calm Down,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,spotify:album:58XSU5E887F7gMK98VGWiB,Killing Heidi,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,2004-08-30,https://i.scdn.co/image/ab67616d0000b2730a3a3bee6e1d525d39c35a59,1,6,222040,https://p.scdn.co/mp3-preview/0e43cc60e919e5e3f76d91f8fc9345bebd644a71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUSM00400093,spotify:user:bradnumber1,2023-01-31T06:25:11Z,"australian alternative rock,australian rock",0.464,0.966,2.0,-2.129,1.0,0.0613,0.0109,1.23e-06,0.287,0.417,143.91,4.0,,Universal Music Australia Pty. Ltd.,"C © 2004 Wah Wah Music Pty Ltd, under Licence to Universal Music Australia., P ℗ 2004 Wah Wah Music Pty Ltd, under Licence to Universal Music Australia.",5973 +5974,spotify:track:5nydh0uIcz9gxSoJY6FtTn,(Everything I Do) I Do It For You,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:4kbE34G5bxaxwuCqz0NEw4,The Best Of Me,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1999-01-01,https://i.scdn.co/image/ab67616d0000b2730c97f4174b14a8d158136e9d,1,10,393733,https://p.scdn.co/mp3-preview/fd642b7873c9cd1367f7d77bfb78a05c3abf1fca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19190012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.518,0.47,1.0,-8.692,1.0,0.0273,0.0665,1.24e-05,0.0792,0.247,131.214,4.0,,Universal Music Group,"C © 1999 A&M Records, P ℗ 1999 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",5974 +5975,spotify:track:5SdwZnfsdp2xA1YOc32Ebo,Feel The Love,spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,spotify:album:6k3dwEFYKsGrhS40jtiAGt,In Ghost Colours,spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,2008-01-01,https://i.scdn.co/image/ab67616d0000b273063651446188d0425c2173cb,1,1,267546,https://p.scdn.co/mp3-preview/ef58d340836fa05a1e4e49906b7fccd078e5f34e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70800084,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian electropop,electronic rock,electronica,indietronica,neo-synthpop",0.54,0.863,9.0,-4.422,0.0,0.0432,0.0107,0.0014,0.286,0.326,126.038,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Modular Recordings, P ℗ 2008 Modular Recordings",5975 +5976,spotify:track:0jWgAnTrNZmOGmqgvHhZEm,What's Up?,spotify:artist:0Je74SitssvJg1w4Ra2EK7,4 Non Blondes,spotify:album:2P8M5eo4zWFD0JJtH4D0iA,"Bigger, Better, Faster, More !",spotify:artist:0Je74SitssvJg1w4Ra2EK7,4 Non Blondes,1992-01-01,https://i.scdn.co/image/ab67616d0000b273381371cb8ce680d0dc324600,1,3,295533,https://p.scdn.co/mp3-preview/e24bda8c6ed805bc0c0cf62059034c0010f36b1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USIR19200553,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,pop rock",0.565,0.564,2.0,-10.044,1.0,0.0292,0.161,0.0,0.114,0.454,134.358,4.0,,Interscope,"C © 1992 Interscope Records, P ℗ 1992 Interscope Records",5976 +5977,spotify:track:0qaWEvPkts34WF68r8Dzx9,Turn Me On (feat. Vula),"spotify:artist:7i9j813KFoSBMldGqlh2Z1, spotify:artist:5nki7yRhxgM509M5ADlN1p, spotify:artist:6YqhcZlSE8ugUcmoHLw9gz","Riton, Oliver Heldens, Vula",spotify:album:7mtnp7B5yFt3D3PAznGzc8,Turn Me On (feat. Vula),"spotify:artist:7i9j813KFoSBMldGqlh2Z1, spotify:artist:5nki7yRhxgM509M5ADlN1p","Riton, Oliver Heldens",2019-09-13,https://i.scdn.co/image/ab67616d0000b273216a271725a34eba54dd0b55,1,1,208473,https://p.scdn.co/mp3-preview/800a6a5d6c22ce3acb1a0d26ace5ce3b9a381ea5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBCEN1900052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"house,pop dance,uk dance,dutch house,edm,electro house,future house,house,pop dance,progressive electro house,progressive house",0.737,0.828,11.0,-4.711,1.0,0.0396,0.0149,0.000588,0.0862,0.517,124.051,4.0,,Ministry of Sound Recordings,P (P) 2019 Ministry of Sound Recordings Limited,5977 +5978,spotify:track:1IpYDWB31L1CxDQZztadSi,Lonely,spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,spotify:album:6rlTdXLpnOufwfL0SbWLDf,Trouble,spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,2004-01-01,https://i.scdn.co/image/ab67616d0000b273c45a75cba7099003063c8e64,1,8,235800,https://p.scdn.co/mp3-preview/3bab1970085de0754ac78aa2b6127243430e19f5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10400235,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.629,0.532,5.0,-7.88,0.0,0.0352,0.331,0.0,0.238,0.619,90.098,4.0,,SRC Records,"C © 2004 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2004 Universal Records, a Division of UMG Recordings, Inc. and SRC Records, Inc.",5978 +5979,spotify:track:1hWrl3T1kIH5b9zRHLfCOn,What's My Age Again?,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:1fF8kYX49s5Ufv4XEY5sjW,Enema Of The State,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,1999-01-01,https://i.scdn.co/image/ab67616d0000b27315a7914ef11f09b4c537f078,1,5,148573,https://p.scdn.co/mp3-preview/e73273f1d5a2b8d94dcd54d9f1a90e636e8c24bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USMC19959007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.398,0.954,6.0,-7.373,1.0,0.0715,0.0133,0.000218,0.0891,0.433,157.766,4.0,,Universal Music Group,"C © 1999 Geffen Records, P ℗ 1999 Geffen Records",5979 +5980,spotify:track:5rgy6ghBq1eRApCkeUdJXf,We Are Young (feat. Janelle Monáe),"spotify:artist:5nCi3BB41mBaMH9gfr6Su0, spotify:artist:6ueGR6SWhUJfvEhqkvMsVs","fun., Janelle Monáe",spotify:album:7m7F7SQ3BXvIpvOgjW51Gp,Some Nights,spotify:artist:5nCi3BB41mBaMH9gfr6Su0,fun.,2012-02-14,https://i.scdn.co/image/ab67616d0000b273a036e1724bc7f2bab15cfda8,1,3,250626,https://p.scdn.co/mp3-preview/71127da3ad33d0423fb257f079a2333caec0b0bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USAT21101399,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,metropopolis,neo mellow,afrofuturism,alternative r&b,atl hip hop,neo soul,r&b",0.378,0.638,10.0,-5.576,1.0,0.075,0.02,7.66e-05,0.0849,0.735,184.086,4.0,,Fueled By Ramen,"C © 2012 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2012 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States.",5980 +5981,spotify:track:6BaCraQ9xeLYg4Sb9TBT2X,"Feels (feat. Pharrell Williams, Katy Perry & Big Sean)","spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:2RdwBSPQiwcmiDo9kixcl8, spotify:artist:6jJ0s89eD6GaHleKKya26X, spotify:artist:0c173mlxpT3dSFRgMO8XPh","Calvin Harris, Pharrell Williams, Katy Perry, Big Sean",spotify:album:52LQhrLLYOup9HhaOsv54e,"Feels (feat. Pharrell Williams, Katy Perry & Big Sean)",spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2017-06-16,https://i.scdn.co/image/ab67616d0000b273bb33243232e21170673b6f3e,1,1,223413,https://p.scdn.co/mp3-preview/34a33c4a5bd5f815d329db8e1daf712c9dd9ffb1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,56,GBARL1700772,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,dance pop,pop,pop,detroit hip hop,hip hop,pop rap,r&b,rap,southern hip hop,trap",0.893,0.745,11.0,-3.105,0.0,0.0571,0.0642,0.0,0.0943,0.872,101.018,4.0,,Columbia,P (P) 2017 Sony Music Entertainment UK Limited,5981 +5982,spotify:track:2T3blUc9Jnui2a0ZhuNOag,Smooth Criminal,spotify:artist:6TZdvF1kFzwnQLgHQynzsO,Alien Ant Farm,spotify:album:0DCImzCQ4wJvkgpvmA1S2x,Anthology,spotify:artist:6TZdvF1kFzwnQLgHQynzsO,Alien Ant Farm,2001-01-01,https://i.scdn.co/image/ab67616d0000b27316071dc8b9bd2f990f8753b9,1,12,209266,https://p.scdn.co/mp3-preview/f68fb55ccf7cc34be7f8a06f606e338dae69cf57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10022224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,post-grunge",0.653,0.966,9.0,-4.236,0.0,0.0598,0.00287,0.0026,0.143,0.874,126.921,4.0,,Geffen*,"C © 2001 SKG Music L.L.C., P ℗ 2001 SKG Music L.L.C.",5982 +5983,spotify:track:1aWV3uY3SIEZVbmv45oFWS,Creep,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,spotify:album:5eg56dCpFn32neJak2vk0f,Crazysexycool,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,1994-11-15,https://i.scdn.co/image/ab67616d0000b273a6125b1964a555892c49ea53,1,2,268533,https://p.scdn.co/mp3-preview/bb2d99ffae852b119fe4c0141e86dfdcb6ac4198?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USLF29400135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,girl group,hip pop,r&b,urban contemporary",0.811,0.458,5.0,-9.688,0.0,0.0402,0.0193,1.41e-06,0.0526,0.797,92.94,4.0,,Arista/LaFace Records,P (P) 1994 LaFace Records LLC,5983 +5984,spotify:track:4PbhV8BYpnga2zdeSeqhcw,Business,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:1ftvBBcu7jYIvXyt3JWB8S,The Eminem Show,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2002-05-26,https://i.scdn.co/image/ab67616d0000b273ccdb1982626f299b3b1d3efd,1,3,251760,https://p.scdn.co/mp3-preview/9ac6499cb8b5d4a1badf80037be7704db1727a0b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,1,USIR10211053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.905,0.81,7.0,-4.538,1.0,0.211,0.0349,1.29e-05,0.124,0.486,96.441,4.0,,Universal Music Group,"C © 2002 Aftermath Records, P ℗ 2002 Aftermath Records",5984 +5985,spotify:track:647q0KZHceDZTyLExHU0ue,I Can't Wait,spotify:artist:2The4Ur661sLPGndcUuuLu,Nu Shooz,spotify:album:3V2uj3rLi0Y6McyB4Tw84n,I Can't Wait: Collected,spotify:artist:2The4Ur661sLPGndcUuuLu,Nu Shooz,2019-03-15,https://i.scdn.co/image/ab67616d0000b27325d529664eb0e5745f7e0c88,1,1,218826,https://p.scdn.co/mp3-preview/764be427b3e836b651d7b822649a77e482f61361?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAT21205864,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,post-disco",0.785,0.844,7.0,-4.63,0.0,0.0574,0.166,0.002,0.0681,0.94,103.968,4.0,,Warner Music Group - X5 Music Group,"C 2019 Warner Music Group - X5 Music Group, P 2019 Warner Music Group - X5 Music Group",5985 +5986,spotify:track:6aWgqdT3PCettGm19T29GM,Up/Down,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:21Z3oePgswl4kS1LW0aXVm,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2009-08-24,https://i.scdn.co/image/ab67616d0000b2738b412ea102fe0d92e1e71ae8,1,10,205146,https://p.scdn.co/mp3-preview/cae273e725b8278dd9170946a9ed5f9cd4ada407?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUBM00800496,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.687,0.889,1.0,-4.131,1.0,0.316,0.0114,0.0,0.376,0.641,123.121,4.0,,Sony Music Entertainment,"P (P) All tracks (P) 2008 Sony Music Entertainment Australia Pty Ltd. except tracks 13, 14 & 16 (P) 2009 Sony Music Entertainment Australia Pty Ltd.",5986 +5987,spotify:track:3rfOs6Miteal5wQUdFx8w1,How Do You Do!,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:6lH7u5QWoRteFLTw5DwG6d,Tourism (2009 Version),spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,1992-08-28,https://i.scdn.co/image/ab67616d0000b273469219ccfcadb862e21c0f03,1,1,189093,https://p.scdn.co/mp3-preview/1e81755a082a1622450a1658a0e507b1b5d31ed0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAMA9252010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.619,0.72,0.0,-6.584,1.0,0.0275,0.0194,1.68e-06,0.218,0.852,120.874,4.0,,Parlophone Sweden,"C 1992, 2009 Parlophone Music Sweden AB, a Warner Music Group Company, P 1992, 2009 Parlophone Music Sweden AB, a Warner Music Group Company",5987 +5988,spotify:track:4jobL8u8bt6AObVdhethdy,Tik Tok (Parody),spotify:artist:7gYnCef01fcPbk3QiFRIGF,The Midnight Beast,spotify:album:1YGHCyR4t3pPRpjtY3o8aE,Tik Tok (Parody),spotify:artist:7gYnCef01fcPbk3QiFRIGF,The Midnight Beast,2011-03-23,https://i.scdn.co/image/ab67616d0000b2739b252f119e35a5110a112ad7,1,1,212000,https://p.scdn.co/mp3-preview/192a87953a283eade5000c1d5829bf2214acc929?cid=9950ac751e34487dbbe027c4fd7f8e99,True,24,TCAAU1192344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,comic,0.832,0.733,10.0,-3.815,1.0,0.155,0.152,0.0,0.206,0.702,119.961,4.0,,The Midnight Beast,"C 2011 The Midnight Beast, P 2011 The Midnight Beast",5988 +5989,spotify:track:5G6KreV4UFfAQd8UPtt3ra,The Sky's the Limit,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:0DEsmIQ5ir7tz52Nkf4i1K,Jason Derulo (International),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2010-02-26,https://i.scdn.co/image/ab67616d0000b273293e8055dd8814fcdf4742f7,1,4,222826,https://p.scdn.co/mp3-preview/f7a51f2cdabc48058e8d2d9040771bf61285fd9e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USWB10905333,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.655,0.759,0.0,-3.544,1.0,0.0352,0.0737,0.0,0.368,0.594,125.109,4.0,,Beluga Heights/Warner Records,"C © 2010 Warner Records Inc., P ℗ 2010 Warner Records Inc.",5989 +5990,spotify:track:6ek9SiEj5a65WIs2EV7qiM,Son Of A Preacher Man,spotify:artist:5zaXYwewAXedKNCff45U5l,Dusty Springfield,spotify:album:5FRB5oQaHxlDNe6gMGuzu2,Dusty In Memphis,spotify:artist:5zaXYwewAXedKNCff45U5l,Dusty Springfield,1969-03-31,https://i.scdn.co/image/ab67616d0000b273e20037311210924b3c386f00,1,12,148053,https://p.scdn.co/mp3-preview/36c972f999556379dd044b00a14dbef4afa713d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBF080201245,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion,folk rock,soul,vocal jazz",0.404,0.43,4.0,-12.327,1.0,0.224,0.538,0.0,0.0802,0.641,180.061,4.0,,UMC (Universal Music Catalogue),"C © 2002 Mercury Records Limited, P This Compilation ℗ 2002 Mercury Records Limited",5990 +5991,spotify:track:4viUsO0ZnlZrVCM945K6on,Whip It! (feat. Chloe Angelides),"spotify:artist:2iUbk5KhZYZt4CRvWbwb7S, spotify:artist:79A4RmgwxYGIDkqQDUHLXK","LunchMoney Lewis, Chloe Angelides",spotify:album:266GIPm6i2JAlnSsPcYhvE,Whip It! (feat. Chloe Angelides),spotify:artist:2iUbk5KhZYZt4CRvWbwb7S,LunchMoney Lewis,2015-08-07,https://i.scdn.co/image/ab67616d0000b2733b9730f2ee876fa56f9bbf67,1,1,242973,https://p.scdn.co/mp3-preview/01c161a8131e5bb59a885315c37e915e6a889d77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USSM11506385,spotify:user:bradnumber1,2021-08-08T09:26:31Z,miami hip hop,0.739,0.78,10.0,-3.942,1.0,0.143,0.345,0.0,0.0973,0.79,131.04,4.0,,Kemosabe Records/RCA Records,"P (P) 2015 Kemosabe Records, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",5991 +5992,spotify:track:5cMAToRoLsJwstixRL1zNq,My Kind of Girl,spotify:artist:06kr5yNAM2rOf4DXemM8fl,Matt Monro,spotify:album:1n4VuuvNLZepFrHucqrBIl,The Very Best Of Matt Monro,spotify:artist:06kr5yNAM2rOf4DXemM8fl,Matt Monro,1992-02-24,https://i.scdn.co/image/ab67616d0000b27314d02ba8901fb18989fbfb56,1,16,177600,https://p.scdn.co/mp3-preview/d3e29f51005fc4a732911d02eab76d129b62973d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBAYE6100028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.616,0.185,5.0,-14.1,1.0,0.0391,0.56,0.0,0.157,0.413,130.849,4.0,,Parlophone UK,"C © 1992 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1974 Parlophone Records Ltd, a Warner Music Group Company",5992 +5993,spotify:track:0oRfRA3MUFHgIMGSzh3cfY,Horses,"spotify:artist:5piMnm6faQpIVYaFfaZSKf, spotify:artist:1Sfa6q3hJQmNsaLi9DozYi","Teddy Cream, Szabo",spotify:album:1EdWiZLq3ZIo0pSQBVAqrB,Horses,"spotify:artist:5piMnm6faQpIVYaFfaZSKf, spotify:artist:1Sfa6q3hJQmNsaLi9DozYi","Teddy Cream, Szabo",2017-07-07,https://i.scdn.co/image/ab67616d0000b273c26d4a461c958e4956d531a6,1,1,208087,https://p.scdn.co/mp3-preview/e771c3e93b98889d8971253389284f8a1980dea7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUNV01700104,spotify:user:bradnumber1,2021-08-08T09:26:31Z,melbourne bounce,0.676,0.681,0.0,-5.726,1.0,0.034,0.00148,0.000734,0.239,0.448,115.988,4.0,,Hussle Recordings [Domestic],"C © 2017 Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd., P ℗ 2017 Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd.",5993 +5994,spotify:track:7woW97CfcWaKtuC6W5BP2K,Heal the World,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:0oX4SealMgNXrvRDhqqOKg,Dangerous,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1991-11-13,https://i.scdn.co/image/ab67616d0000b2733b9f8b18cc685e1502128aa8,1,7,384306,https://p.scdn.co/mp3-preview/9e12dc62e85403dfcd10e176a1cb9f5384a57fc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM10024731,spotify:user:bradnumber1,2022-08-31T00:26:07Z,"r&b,soul",0.545,0.485,9.0,-8.045,1.0,0.0485,0.537,1.8e-06,0.104,0.101,80.948,4.0,,Epic/Legacy,P (P) 1991 MJJ Productions Inc.,5994 +5995,spotify:track:4Sfa7hdVkqlM8UW5LsSY3F,Take a Walk,spotify:artist:7gjAu1qr5C2grXeQFFOGeh,Passion Pit,spotify:album:14JU5SskmcyckE5I8PY6lv,Gossamer,spotify:artist:7gjAu1qr5C2grXeQFFOGeh,Passion Pit,2012-07-23,https://i.scdn.co/image/ab67616d0000b273f860547bc8ba0c59df4fe2c3,1,1,264493,https://p.scdn.co/mp3-preview/6831003a390515c2c983c484f50eadb218993e46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM11202617,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,indietronica,modern rock,neo-synthpop,shimmer pop",0.566,0.755,11.0,-5.526,1.0,0.0368,0.0338,0.0,0.315,0.445,101.006,4.0,,Columbia,"P (P) 2012 Columbia Records, a Division of Sony Music Entertainment",5995 +5996,spotify:track:1m0E5D8cOJyO1A2IBX4w4i,Fight Song,spotify:artist:3QLIkT4rD2FMusaqmkepbq,Rachel Platten,spotify:album:39WI8tjY7vH68xrNiDKNly,Fight Song,spotify:artist:3QLIkT4rD2FMusaqmkepbq,Rachel Platten,2015-02-13,https://i.scdn.co/image/ab67616d0000b273bd7e3177085de2f9a792c80a,1,1,202506,https://p.scdn.co/mp3-preview/af95a17c40ac01886a92ce2446585804d285be17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USSM11500753,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,viral pop",0.571,0.697,7.0,-5.467,1.0,0.081,0.0523,0.0,0.277,0.358,175.962,4.0,,Columbia,"P (P) 2015 Columbia Records, a Division of Sony Music Entertainment",5996 +5997,spotify:track:3rrrMhc76FDnS4N7wu2KfH,Everything Is Beautiful - 1970 #1 Billboard chart hit,spotify:artist:7MpUvihmfilIxyN20kXwQj,Ray Stevens,spotify:album:1NIuhPBRDEYhm9wt3t2jNx,Everything Is Beautiful,spotify:artist:7MpUvihmfilIxyN20kXwQj,Ray Stevens,1970,https://i.scdn.co/image/ab67616d0000b2730f1ca0a5c53a74822368a0fe,1,1,212773,https://p.scdn.co/mp3-preview/ad7564ba4b06fa161a7b560bac9371c782737606?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USZZM0710199,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,novelty",0.37,0.378,5.0,-15.178,1.0,0.0369,0.514,0.0,0.222,0.722,112.159,4.0,,Barnaby Records,"C (C) 1970 Barnaby Records, Inc., P (P) 1970 Barnaby Records, Inc.",5997 +5998,spotify:track:78wTOLl1ANJtgOkOoNNZ06,Our Lips Are Sealed,spotify:artist:2mG8HHQ9S9kcbjcrb5N1FE,The Go-Go's,spotify:album:2Fz3LCOdrEUXSYMKaQ5C2f,Return To The Valley Of The Go-Go's,spotify:artist:2mG8HHQ9S9kcbjcrb5N1FE,The Go-Go's,1994-01-01,https://i.scdn.co/image/ab67616d0000b273b0416c8ca154afff7044b366,1,18,165626,https://p.scdn.co/mp3-preview/29ace7c25975f0e6fd262cfa64cfa5e77ef067ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USIR39000055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,candy pop,classic rock,girl group,jangle pop,mellow gold,new romantic,new wave,new wave pop,permanent wave,singer-songwriter,soft rock",0.62,0.819,8.0,-8.789,1.0,0.05,0.0162,0.0,0.0412,0.964,131.223,4.0,,I.R.S. Records,"C © 1994 IRS Catalog, P This Compilation ℗ 1994 IRS Catalog",5998 +5999,spotify:track:7aR1QwbQa26sjDXiVMLik4,(I Can't Help) Falling In Love With You,spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,spotify:album:05owfigVGpgPe7RKJG1hum,The Very Best Of,spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,2000,https://i.scdn.co/image/ab67616d0000b273f1dd69d7399290cc25324706,1,10,208826,https://p.scdn.co/mp3-preview/650d5198fea14790e40615ebbe507b8f99862f74?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAAA9300027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,uk reggae",0.637,0.837,2.0,-8.605,1.0,0.0363,0.0393,0.00294,0.139,0.825,172.455,4.0,,Virgin Records,"C © 2000 Virgin Records America, Inc., P This Compilation ℗ 2000 Virgin Records America, Inc.",5999 +6000,spotify:track:5oRcArT4YUU0hAo5EzNW3u,9 PM (Till I Come) - Radio Edit,spotify:artist:7jZM5w05mGhw6wTB1okhD9,ATB,spotify:album:5NrNG57oxOVwtYeXDY0wqY,9 PM (Till I Come),spotify:artist:7jZM5w05mGhw6wTB1okhD9,ATB,1998-10-26,https://i.scdn.co/image/ab67616d0000b273fe57e7733805caca9fdb8fc9,1,1,199520,https://p.scdn.co/mp3-preview/1414eae0a2fb9a667ad4330ed1c0d9918580196d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,DEN069900066,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german dance,german techno,german trance,trance",0.672,0.941,9.0,-6.428,0.0,0.0499,0.0216,0.934,0.0749,0.763,130.254,4.0,,Kontor Records,"C 1998 Kontor Records GmbH, P 1998 Kontor Records GmbH",6000 +6001,spotify:track:0cLH7BXqfm0RqnjueCPLfW,Evidence,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,spotify:album:198GsVgwHgoas39b8TcPYp,"King for a Day, Fool for a Lifetime",spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,1995-04-25,https://i.scdn.co/image/ab67616d0000b2739f3275c4cce1a239d37a7024,1,3,294240,https://p.scdn.co/mp3-preview/403820218274f552a66fdfed1b49c48d982123f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBANC9500003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,funk metal,funk rock,hard rock,nu metal,post-grunge,rap metal,rock",0.686,0.779,9.0,-7.386,0.0,0.0306,0.0259,0.00759,0.0725,0.627,97.948,4.0,,WM UK,"C © 1995 Slash/Reprise Records, a label of Warner Records Inc., P ℗ 1995 Slash/Reprise Records, a label of Warner Records Inc., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group company",6001 +6002,spotify:track:1g1TeDflB6atAy7HKwrzXu,Learn To Let Go,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:1IYVB8NfiRqhdZlTxjspNh,Rainbow,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2017-08-11,https://i.scdn.co/image/ab67616d0000b27355de63b8aaf464fe8146b4f1,1,6,217546,https://p.scdn.co/mp3-preview/b1a85e8a06153d680897f72da325d5875f375357?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USRC11701361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.515,0.847,5.0,-2.951,1.0,0.0391,0.00369,7.19e-05,0.293,0.645,168.105,4.0,,Kemosabe Records/RCA Records,P (P) 2017 Kemosabe Records,6002 +6003,spotify:track:3Xl4KM5C1yivck4CBsy05L,Tip Of My Tongue,spotify:artist:4rCLXPaqaUjGa1aHDwkviR,Diesel,spotify:album:0VDxsQEKDSiq6ZyRBxhUXr,Hepfidelity,spotify:artist:4rCLXPaqaUjGa1aHDwkviR,Diesel,1992-03-02,https://i.scdn.co/image/ab67616d0000b273146ea15f6427ce29bd4fac1b,1,2,254640,https://p.scdn.co/mp3-preview/3815e32d1d802685735ff5b77b41e12e38697be0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUEM09200002,spotify:user:bradnumber1,2021-08-24T21:23:58Z,australian rock,0.658,0.67,4.0,-10.092,1.0,0.0315,0.0175,0.0235,0.0867,0.846,97.93,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 1992 EMI Recorded Music Australia Pty Ltd., P ℗ 1992 EMI Recorded Music Australia Pty Ltd.",6003 +6004,spotify:track:1so85Or3C7J0sBnBOucVBA,The Lion Sleeps Tonight,spotify:artist:6NaacjWVEwO2la6AnxH0ZK,Tight Fit,spotify:album:0pvhletDH7CphbKErUtPCF,80s 100 Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-03-01,https://i.scdn.co/image/ab67616d0000b273db56ceff816b668b7b6f04ff,1,53,192666,https://p.scdn.co/mp3-preview/8c8ac321b3d2691f415133f34604c51fc114f0d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAHK0400117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.635,0.709,5.0,-9.441,1.0,0.0348,0.0153,2.01e-06,0.167,0.868,121.11,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment,6004 +6005,spotify:track:6kWJvPfC4DgUpRsXKNa9z9,All That She Wants,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,spotify:album:5UwIyIyFzkM7wKeGtRJPgB,The Sign,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,1993-12-24,https://i.scdn.co/image/ab67616d0000b273fda5556cb6981c3113df6175,1,1,211213,https://p.scdn.co/mp3-preview/eef43d18f73d83ff358852d874dd564f55e86932?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,SEVJH0803401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,new wave pop",0.798,0.625,11.0,-9.689,1.0,0.0548,0.00547,7.98e-05,0.103,0.858,93.764,4.0,,Playground Music,"C 2014 Mega Records, a Division of Playground Music Scandinavia AB, P 1993 Mega Records, a Division of Playground Music Scandinavia AB",6005 +6006,spotify:track:7JDSbEyUqPxlmRPyP9O86F,Carrie Anne - 1998 Remaster,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:78asX5x3ABHoNNLAcQwuI2,The Hollies at Abbey Road 1966-1970,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1998-02-23,https://i.scdn.co/image/ab67616d0000b2736908ff2a6b4018580748989f,1,5,175893,https://p.scdn.co/mp3-preview/86ba2457f7e12c548a7e46a827023ae625230afc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBGYU9800007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.546,0.725,0.0,-5.813,1.0,0.0372,0.244,0.0,0.677,0.829,119.74,4.0,,BMG Rights Management (US) LLC,"C © 1998 BMG Rights Management (US) LLC, P ℗ 1998 BMG Rights Management (US) LLC",6006 +6007,spotify:track:2RDgs05sg2vrpwiAEUkWd0,Freak,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:511p6iaCuK8Sr0BYdpcfkq,Freak Show,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,1997,https://i.scdn.co/image/ab67616d0000b273f6e1df99ae6316a4badcce58,1,2,226106,https://p.scdn.co/mp3-preview/f814c871c1e23093f0ff88d27d806969aa1a74dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,AUSM09600249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.539,0.883,6.0,-6.614,0.0,0.0652,0.00451,1.38e-06,0.0606,0.405,118.058,4.0,,Murmur Records,P 1996 Sony Music Productions Pty. Limited,6007 +6008,spotify:track:01F8B0dhzGdWvmcSO6vUdi,Just The Two Of Us,spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,spotify:album:2esWeP8Ln1sXA0jbDmi3Zq,Big Willie Style,spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,1997-10-03,https://i.scdn.co/image/ab67616d0000b273ddf2f9edabd166c60047e3c4,1,13,315506,https://p.scdn.co/mp3-preview/fee9841d4eea8082b3b6216a72aa525e70216e52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USSM19702702,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap",0.805,0.638,1.0,-5.864,1.0,0.0806,0.142,0.0,0.322,0.644,94.52,4.0,,Columbia,"P 1997 Sony Music Entertainment Inc., 1997 Columbia Pictures Industries Inc. WARNING: All Rights Reserved. Unuauthorized duplic",6008 +6009,spotify:track:0C4ejWmOTMv8vuYj85mf8m,S&M,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:7vN82vd1Vq44fjlhjfvHJp,Loud,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2010-11-16,https://i.scdn.co/image/ab67616d0000b2732ed326786e4c61c6b1dbf222,1,1,243533,https://p.scdn.co/mp3-preview/b08a1a266d1e717fd203df1e9b4620600ea413ba?cid=9950ac751e34487dbbe027c4fd7f8e99,True,70,USUM71026591,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.767,0.682,1.0,-5.02,1.0,0.042,0.0113,0.00016,0.104,0.833,127.975,4.0,,Def Jam Recordings,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",6009 +6010,spotify:track:2ezvJAiZ0vZ7gCuPxwYm2v,Negative Things,spotify:artist:7EEIyejQGa1kWg5gSkrUMZ,Selwyn,spotify:album:6PGYdW97FpxCaY47W2t4cv,Meant To Be,spotify:artist:7EEIyejQGa1kWg5gSkrUMZ,Selwyn,2002-08-30,https://i.scdn.co/image/ab67616d0000b273ac12475be7f12bcb44162696,1,6,271520,https://p.scdn.co/mp3-preview/8a05ab3472ec256770fc88dae412f5ddeabf490f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUSM00200042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.723,0.474,9.0,-6.299,0.0,0.0306,0.492,0.0,0.139,0.445,123.986,4.0,,Epic,P (P) 2002 Sony Music Entertainment (Australia) Pty. Ltd.,6010 +6011,spotify:track:2BY7ALEWdloFHgQZG6VMLA,Brandy (You're a Fine Girl),spotify:artist:5jJN1nmKXzRjodMl1THQeI,Looking Glass,spotify:album:5ThwnbpYrk9R1xXkAGCLIs,Looking Glass,spotify:artist:5jJN1nmKXzRjodMl1THQeI,Looking Glass,1972,https://i.scdn.co/image/ab67616d0000b2734c95b7cf28c3015c914218e4,1,2,186826,https://p.scdn.co/mp3-preview/0e7f01cc3908ccf6a70822b81a8d1834822cb1fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USSM10903222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,sunshine pop,0.716,0.625,1.0,-11.369,0.0,0.0601,0.396,1.97e-05,0.134,0.826,125.276,4.0,,Epic/Legacy,P (P) 1972 Sony Music Entertainment,6011 +6012,spotify:track:5jrdCoLpJSvHHorevXBATy,Dark Horse,"spotify:artist:6jJ0s89eD6GaHleKKya26X, spotify:artist:5gCRApTajqwbnHHPbr2Fpi","Katy Perry, Juicy J",spotify:album:5MQBzs5YlZlE28mD9yUItn,PRISM (Deluxe),spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2013-10-18,https://i.scdn.co/image/ab67616d0000b27347f930accd8ac01686401fa2,1,6,215672,https://p.scdn.co/mp3-preview/7251bb524fb32b7f4feae106ade846f568b7177e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USUM71311296,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,crunk,memphis hip hop,pop rap,rap,southern hip hop,trap",0.647,0.585,6.0,-6.123,1.0,0.0512,0.00314,0.0,0.165,0.353,131.934,4.0,,Capitol Records (CAP),"C © 2013 Capitol Records, LLC, P ℗ 2013 Capitol Records, LLC",6012 +6013,spotify:track:5eyjpDkuDAINQSy4KcLjfx,Weak,spotify:artist:6s22t5Y3prQHyaHWUN1R1C,AJR,spotify:album:1xbzBK4JR3hUcXbl5IUDZk,The Click,spotify:artist:6s22t5Y3prQHyaHWUN1R1C,AJR,2017-06-09,https://i.scdn.co/image/ab67616d0000b27317ef29c733be1574ad6231a5,1,3,201159,https://p.scdn.co/mp3-preview/5090461865891fffbc794d51a981a85e93df7152?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USKFE1620002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pov: indie,0.67,0.578,5.0,-6.343,1.0,0.0464,0.134,0.0,0.19,0.652,124.006,4.0,,Liberator Music,"C 2017 AJR Productions, P 2017 AJR Productions",6013 +6014,spotify:track:1UPJoPSCpOzYcRBq5nc586,Underneath the Radar,spotify:artist:1PXHzxRDiLnjqNrRn2Xbsa,Underworld,spotify:album:0KN6ywMqgEOIHizMyPZjGL,Underneath The Radar,spotify:artist:1PXHzxRDiLnjqNrRn2Xbsa,Underworld,1988,https://i.scdn.co/image/ab67616d0000b2733413ff4db3fd58604def0085,1,5,367453,https://p.scdn.co/mp3-preview/024c4950afaac542c96e3497d4101ff7e47498b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USWB10203179,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica",0.628,0.66,2.0,-12.262,1.0,0.0437,0.00994,0.51,0.398,0.437,144.635,4.0,,Rhino/Elektra,"C © 1988 Sire Records, P ℗ 1988 Sire Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",6014 +6015,spotify:track:5xZjfKSfTooDP2rcAgjxlH,Carry On,spotify:artist:5nCi3BB41mBaMH9gfr6Su0,fun.,spotify:album:7m7F7SQ3BXvIpvOgjW51Gp,Some Nights,spotify:artist:5nCi3BB41mBaMH9gfr6Su0,fun.,2012-02-14,https://i.scdn.co/image/ab67616d0000b273a036e1724bc7f2bab15cfda8,1,4,278373,https://p.scdn.co/mp3-preview/3b28f19c04a17dfb67d76a48d7471a1162f4ad80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAT21104051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,metropopolis,neo mellow",0.388,0.694,5.0,-5.769,1.0,0.0735,0.118,0.000293,0.082,0.365,145.434,5.0,,Fueled By Ramen,"C © 2012 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2012 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States.",6015 +6016,spotify:track:5a7NdkF09AfD0H607eiOkX,On My Mind,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:20Ol6zZ0nLlc5EGTH1zA0j,Delirium (Deluxe),spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2015-11-06,https://i.scdn.co/image/ab67616d0000b2736bdee14242f244d9d6ddf2fd,1,5,213445,https://p.scdn.co/mp3-preview/185bb4038affc598692ac0e18a323a1a73fa9f94?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBUM71505456,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.702,0.705,0.0,-6.666,1.0,0.0543,0.258,5.93e-06,0.0879,0.743,154.911,4.0,,Polydor Records,"C © 2015 Polydor Ltd. (UK), P ℗ 2015 Polydor Ltd. (UK)",6016 +6017,spotify:track:5kaF88lat4fWUiDXP6G48M,"Let's Hear It for the Boy - From ""Footloose"" Soundtrack",spotify:artist:5jNGQ7VOU87x5402JjhTtd,Deniece Williams,spotify:album:4FZ9s0pelFSliPWhVEWRcC,Footloose (15th Anniversary Collectors' Edition),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1984,https://i.scdn.co/image/ab67616d0000b2733b7492bb678d5d51683444ae,1,2,261893,https://p.scdn.co/mp3-preview/e4dc43051eb63c70a03582dbf7a55b6f011861c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM18400032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,disco,funk,motown,post-disco,quiet storm,soul,urban contemporary",0.783,0.573,7.0,-8.521,1.0,0.0462,0.177,8.5e-05,0.043,0.789,122.744,4.0,,Columbia/Legacy,"P (P) 1981 Atlantic Recording Corp.,1982 Riva Records, Inc. 1983, 1984, 1998 Sony Music Entertainment Inc. WAITING FOR PLINE BAND 12",6017 +6018,spotify:track:34g39urr0UaTMVltUI9jp4,Mony Mony - Live,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,spotify:album:2vtTyK0vFOwa2lx8Djqojk,Mony Mony,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,2009-01-01,https://i.scdn.co/image/ab67616d0000b27379bf56705099fae45a3c6bed,1,1,247666,https://p.scdn.co/mp3-preview/c85c46a403e56e732ca7f3cc2d139a29a4c1b511?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USCH38700008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,hard rock,new romantic,new wave,new wave pop,rock,soft rock",0.536,0.814,0.0,-11.762,1.0,0.0497,0.00525,0.155,0.787,0.512,141.993,4.0,,Capitol Records,"C © 2009 Capitol Records, LLC, P ℗ 2009 Capitol Records, LLC",6018 +6019,spotify:track:7pDxNYVQLKzrbkCe8OCag3,Dance Off (feat. Idris Elba & Anderson .Paak),"spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp, spotify:artist:0Dc2rdPzleezxhvQhQbXuS, spotify:artist:3jK9MiCrA42lLAdMGUZpwa","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis, IDRIS, Anderson .Paak",spotify:album:2kqn09pydzvKvB3xWbAxY4,This Unruly Mess I've Made,"spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis",2016-02-26,https://i.scdn.co/image/ab67616d0000b27351245bae78fd3afa47e90453,1,9,229680,https://p.scdn.co/mp3-preview/bbe913209dc722a3cbd607fb07f57e125222eb7a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,50,GMM881600008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop,pop rap,seattle hip hop,pop rap,uk tech house,escape room,hip hop,indie soul,neo soul",0.77,0.818,7.0,-3.914,1.0,0.0533,0.0411,0.000127,0.164,0.459,120.979,4.0,,Macklemore,"C © 2016 Macklemore, LLC, P ℗ 2016 Macklemore, LLC",6019 +6020,spotify:track:0mt02gJ425Xjm7c3jYkOBn,Lust For Life (with The Weeknd),"spotify:artist:00FQb4jTyendYWaN8pK0wa, spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ","Lana Del Rey, The Weeknd",spotify:album:7xYiTrbTL57QO0bb4hXIKo,Lust For Life,spotify:artist:00FQb4jTyendYWaN8pK0wa,Lana Del Rey,2017-07-21,https://i.scdn.co/image/ab67616d0000b27395e2fd1accb339fa14878190,1,2,264066,https://p.scdn.co/mp3-preview/9769a2606db7ff3280d9e976afe4cba6292fd09c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBUM71701127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop,canadian contemporary r&b,canadian pop,pop",0.504,0.655,0.0,-8.644,0.0,0.0542,0.604,0.00193,0.364,0.262,99.982,4.0,,Polydor Records,"C © 2017 Lana Del Rey, under exclusive licence to Polydor Ltd. (UK). Under exclusive licence to Interscope Records in the USA, P ℗ 2017 Lana Del Rey, under exclusive licence to Polydor Ltd. (UK). Under exclusive licence to Interscope Records in the USA",6020 +6021,spotify:track:059LGQd42y87hQMHQyJGSU,You Keep Me Hangin' On,spotify:artist:0vIMq3W8V63uR4Ymgm2pF1,Vanilla Fudge,spotify:album:3ukG6N2bcBgq2WT8ZbfoVI,You Keep Me Hanging On,spotify:artist:0vIMq3W8V63uR4Ymgm2pF1,Vanilla Fudge,2004-11-30,https://i.scdn.co/image/ab67616d0000b273bed31a996247292940f122a3,1,1,179573,https://p.scdn.co/mp3-preview/9b345a2b3c7513f54c347ea6e9d5f43ed94f128b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USAT20201403,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,blues rock,proto-metal,psychedelic rock",0.206,0.7,4.0,-9.682,0.0,0.0469,0.0172,0.00582,0.228,0.317,172.338,3.0,,Rhino/Elektra,"C © 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing",6021 +6022,spotify:track:3w3y8KPTfNeOKPiqUTakBh,Locked out of Heaven,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:58ufpQsJ1DS5kq4hhzQDiI,Unorthodox Jukebox,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2012-12-07,https://i.scdn.co/image/ab67616d0000b273926f43e7cce571e62720fd46,1,2,233478,https://p.scdn.co/mp3-preview/5a0318e6c43964786d22b9431af35490e96cff3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,87,USAT21203287,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.726,0.698,5.0,-4.165,1.0,0.0431,0.049,0.0,0.309,0.867,143.994,4.0,,Atlantic Records,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",6022 +6023,spotify:track:0zABw1PtGYHsU4VDpDZsra,Needles and Pins - Mono,spotify:artist:4QmkLL9JOqM9dusHS1Hghe,The Searchers,spotify:album:0i2VaiznHnihFRJq7iHRG0,Needles & Pins,spotify:artist:4QmkLL9JOqM9dusHS1Hghe,The Searchers,1964-01-01,https://i.scdn.co/image/ab67616d0000b2735d0dd46b2e5b276e13a6296c,1,1,131360,https://p.scdn.co/mp3-preview/0eabe438f1f2bb67f3efe00afb4a98a012b47de0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6400038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,rock-and-roll",0.566,0.953,9.0,-6.504,1.0,0.0393,0.0546,2.86e-05,0.0637,0.887,124.284,4.0,,Sanctuary Records,"C © 2006 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2006 Sanctuary Records Group Ltd., a BMG Company",6023 +6024,spotify:track:6WS2TcsMEGOFtveWbtbuwZ,stayinit,"spotify:artist:4oLeXFyACqeem2VImYeBFe, spotify:artist:6icQOAFXDZKsumw3YXyusw, spotify:artist:01PnN11ovfen6xUOHfNpn3","Fred again.., Lil Yachty, Overmono",spotify:album:0DeGmYq33W6Svw1eTgnxDF,stayinit,"spotify:artist:4oLeXFyACqeem2VImYeBFe, spotify:artist:6icQOAFXDZKsumw3YXyusw, spotify:artist:01PnN11ovfen6xUOHfNpn3","Fred again.., Lil Yachty, Overmono",2024-02-28,https://i.scdn.co/image/ab67616d0000b2735ed4a44f611bee241a915e17,1,1,274925,https://p.scdn.co/mp3-preview/140b014ac3cd5b226f4c4f3e50ffa56b33690297?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAHS2400085,spotify:user:bradnumber1,2024-04-04T04:06:33Z,"edm,house,stutter house,atl hip hop,melodic rap,rap,trap,future garage",0.699,0.755,7.0,-6.502,0.0,0.122,0.003,0.00511,0.244,0.132,134.082,4.0,,Atlantic Records UK,"C Under exclusive licence to Warner Music UK Limited .An Atlantic Records UK release, © 2024 Fred Gibson, P Under exclusive licence to Warner Music UK Limited .An Atlantic Records UK release., ℗ 2024 Fred Gibson",6024 +6025,spotify:track:43BtEHgPHapAp1YNxEfxqd,Juice,spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,spotify:album:7hBV0wo7cDHZQLYnuOJ312,Cuz I Love You (Super Deluxe),spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,2019-04-17,https://i.scdn.co/image/ab67616d0000b273bf7d271b8f3051af3cf0bf55,1,3,194935,https://p.scdn.co/mp3-preview/a6cbc9be12c204d410678493e1248699cbb71f6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USAT21901442,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"escape room,minnesota hip hop,pop,trap queen",0.766,0.885,0.0,-3.001,1.0,0.102,0.00666,0.0,0.348,0.831,119.908,4.0,,Nice Life/Atlantic,"C © 2019 Nice Life Recording Company and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2019 Nice Life Recording Company and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",6025 +6026,spotify:track:6StGvk4s7flUcgDTOJ6L6Z,Into the Blue,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:77zVSjHqlt9OkcyqIDRhkZ,Kiss Me Once,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2014-03-14,https://i.scdn.co/image/ab67616d0000b273efb7e3e7c4a83e1e58d3872a,1,1,248680,https://p.scdn.co/mp3-preview/08ce04d90ec7759e170887c451354027b1edc42d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GBAYE1400019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.507,0.678,9.0,-4.836,1.0,0.0355,0.0118,5.81e-05,0.239,0.217,114.978,4.0,,WM Australia,"C © 2014 KDB Pty Limited, P ℗ 2014 KDB Pty Limited",6026 +6027,spotify:track:3RbfwDS42zdwZJq74jehYW,Hi Honey Ho,spotify:artist:5ht2HGrvbN9eDWJarHsou6,Daddy Cool,spotify:album:2AW5GYjydsJyg7qLDAiTcS,"Sex, Dope, Rock'N'Roll: Teenage Heaven",spotify:artist:5ht2HGrvbN9eDWJarHsou6,Daddy Cool,1972-01-31,https://i.scdn.co/image/ab67616d0000b273e97731bae8f35cd0290669ad,1,1,413986,https://p.scdn.co/mp3-preview/6de6712cbc336bb666cb45468bf2c64ed4583d3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,AUBM07160105,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.573,0.66,9.0,-11.412,1.0,0.0389,0.0117,0.000437,0.123,0.75,129.503,4.0,,Sony Music Entertainment,P (P) 1972 Sony Music Entertainment Australia Pty Ltd,6027 +6028,spotify:track:6PLCO2bE0J3UKd2VxbqFdF,You Ain't Thinking (About Me),"spotify:artist:7hSWOsjh4uFNAS6c3gcm25, spotify:artist:1aTjB39eq6n3HcA8MbGpGp","D. Pritzker, Sonia Dada",spotify:album:5pvGQ3nohEcX2yJ1hAyX7u,Sonia Dada,spotify:artist:1aTjB39eq6n3HcA8MbGpGp,Sonia Dada,1992-09-22,https://i.scdn.co/image/ab67616d0000b273c437abc92168fa494f170faa,1,5,239306,https://p.scdn.co/mp3-preview/097265a6881c683f7b30a2f3dcaee1ece9bcac43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USCM60259005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.568,0.572,7.0,-9.858,1.0,0.0425,0.638,0.0,0.0905,0.707,160.458,3.0,,Calliope,C 1992 Calliope Entertainment,6028 +6029,spotify:track:1O2u4fiFCWmQaITP2a19fK,Whisper Your Name,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:2xKkVreE8yp081RclFY3SF,Telling Everybody,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,1996-11-29,https://i.scdn.co/image/ab67616d0000b273b8d41e26d050ba7e9b572ecf,1,3,259269,https://p.scdn.co/mp3-preview/374660e23604ac3ff12b1df59fb426b24b65570b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUSM09600112,spotify:user:bradnumber1,2023-01-31T06:23:14Z,"australian pop,australian rock,boy band",0.597,0.561,1.0,-9.545,0.0,0.0424,0.0305,0.0,0.22,0.591,172.46,4.0,,Sony Music Entertainment,P (P) 1997 Sony Music Entertainment Australia Pty Ltd,6029 +6030,spotify:track:2tJulUYLDKOg9XrtVkMgcJ,Grenade,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:1uyf3l2d4XYwiEqAb7t7fX,Doo-Wops & Hooligans,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2010-05-11,https://i.scdn.co/image/ab67616d0000b273f6b55ca93bd33211227b502b,1,1,222091,https://p.scdn.co/mp3-preview/5221be592c832e14506f6304ff1deb6c52ae3fee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USAT21001883,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.704,0.558,2.0,-7.273,0.0,0.0542,0.148,0.0,0.107,0.245,110.444,4.0,,Atlantic Records,"C © 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States., P ℗ 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States.",6030 +6031,spotify:track:0YedjUOqafibhe8htcD6Gz,Bounce (feat. N.O.R.E.) - Radio Version,"spotify:artist:2squZ8HjM4AzR0j6jsPn4a, spotify:artist:4GMgdB3vwbBOc42hbXEi9p","MSTRKRFT, N.O.R.E.",spotify:album:06W3nANoIwYRlCl2JuElXE,Bounce,spotify:artist:2squZ8HjM4AzR0j6jsPn4a,MSTRKRFT,2008-10-07,https://i.scdn.co/image/ab67616d0000b273e8bfee7e90e5485cdd64ed66,1,1,171632,https://p.scdn.co/mp3-preview/33a15057225d73356565aba0c5c0650d2afca41e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDM30800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,electro house,electrofox,filter house,indietronica,new rave,dirty south rap,gangster rap,hardcore hip hop,hip hop,queens hip hop,southern hip hop",0.596,0.934,6.0,-3.154,1.0,0.302,0.03,0.0,0.288,0.658,129.03,4.0,,Dim Mak,"C 2008 Dim Mak Inc., P 2008 Dim Mak Inc.",6031 +6032,spotify:track:5jYYumalS1qELrcChOCZrK,Year of the Cat - 2001 Remaster,spotify:artist:0DW7boyjvbaSP3OJ72sXgC,Al Stewart,spotify:album:2qRVGjXrKt3rg5MsunltX9,Year of the Cat,spotify:artist:0DW7boyjvbaSP3OJ72sXgC,Al Stewart,1991-04-02,https://i.scdn.co/image/ab67616d0000b2734d1556d406a19cf829e6e0b8,1,9,401400,https://p.scdn.co/mp3-preview/4e0bc26368851407ecd9661013936a7de2f41cf9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USALS0100032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,folk rock,mellow gold,progressive rock,singer-songwriter,soft rock,symphonic rock",0.531,0.607,4.0,-9.602,0.0,0.0328,0.0114,0.00511,0.121,0.534,116.652,4.0,,Rhino,"C © 2001 Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2001 Rhino Entertainment Company, a Warner Music Group Company",6032 +6033,spotify:track:6WpLICh9bBL5C4DPjdK4XF,The Ballroom Blitz,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,spotify:album:26FFCS8Hx6Ocr6MovNitos,Sweet Fanny Adams,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,1974-04,https://i.scdn.co/image/ab67616d0000b27390d593e1ae333763c4d84c79,1,14,242200,https://p.scdn.co/mp3-preview/a73f270e98712e5cb6e82af00ba2c8c3414e81f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBARL7300027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam rock,hard rock",0.562,0.911,11.0,-5.968,0.0,0.0787,0.000721,0.000906,0.0387,0.797,108.82,4.0,,RCA Records Label,P (P) This Compilation 2005 SONY BMG MUSIC ENTERTAINMENT (UK) Ltd.,6033 +6034,spotify:track:28NBmftocOzTPEb6OYA9fW,Le Freak,spotify:artist:0Xf8oDAJYd2D0k3NLI19OV,CHIC,spotify:album:2KSmpFuIe2nOYYVgA7oa9o,C'est Chic,spotify:artist:0Xf8oDAJYd2D0k3NLI19OV,CHIC,1978-08-11,https://i.scdn.co/image/ab67616d0000b2734b6ae1281200f88b399e0aba,1,2,327573,https://p.scdn.co/mp3-preview/866259f80fdc5ad407ea3fb300aa74bde9635e62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT27800012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,soul",0.867,0.746,7.0,-7.445,1.0,0.0475,0.0453,0.0,0.123,0.933,118.616,4.0,,Atlantic Records,"C 1978 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1978 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",6034 +6035,spotify:track:7hsLKGEnoiNShdIGL6ws1f,Sail,spotify:artist:4njdEjTnLfcGImKZu1iSrz,AWOLNATION,spotify:album:54cqYZuTcNQTSUrQ7FoTq6,Megalithic Symphony (Deluxe),spotify:artist:4njdEjTnLfcGImKZu1iSrz,AWOLNATION,2011,https://i.scdn.co/image/ab67616d0000b27353251fcee7137be3216dfbcd,1,10,259102,https://p.scdn.co/mp3-preview/f14574baf46e2fb574059f16f9d4e94774bd00b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USP6L1000053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"la indie,modern alternative rock,modern rock,rock,stomp pop",0.825,0.435,1.0,-9.582,1.0,0.0568,0.452,0.609,0.0953,0.243,119.038,4.0,,Red Bull Records,"C 2011 Red Bull Records, Inc., P 2011 Red Bull Records, Inc.",6035 +6036,spotify:track:3XWNsYacJtKxylO5IcqCm7,Heartbreaker,spotify:artist:2JSjCHK79gdaiPWdKiNUNp,Dionne Warwick,spotify:album:4Douk6Sje4ISMdbvX8cBHw,Heartbreaker,spotify:artist:2JSjCHK79gdaiPWdKiNUNp,Dionne Warwick,1982,https://i.scdn.co/image/ab67616d0000b273d079ddead89f561d901d5c52,1,1,258266,https://p.scdn.co/mp3-preview/2d2c6bb97cbf49a2161a7b05ec4cdc7dc2f6dea4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USAR18200009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,disco,quiet storm,soft rock,soul,vocal jazz",0.671,0.514,1.0,-13.561,0.0,0.0239,0.0921,1.53e-05,0.133,0.803,100.771,4.0,,Arista,"P (P) 1983 Arista Records, Inc.",6036 +6037,spotify:track:1pGQIUrEXuLKhDHPFlqDnC,Soldier,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,spotify:album:7oQF2n6eyTIQzswxawEEFu,Soldier,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,2013-11-15,https://i.scdn.co/image/ab67616d0000b273637e055c4461f0076cf36e2a,1,1,202400,https://p.scdn.co/mp3-preview/1952f64c5120a533d2fcafc1dfe64d8b08355a78?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUBM01300511,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.541,0.949,10.0,-3.071,0.0,0.154,0.113,0.0,0.12,0.431,140.096,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,6037 +6038,spotify:track:3J3DkWTTOy8V2yZd7bcOFC,Burn so Bright,spotify:artist:5Lc6SH04SI5XYjM2caZlS7,The Sundance Kids,spotify:album:3nAUpf0YIlM6dsjvu4mVjn,Fall Into Place (Standard),spotify:artist:5Lc6SH04SI5XYjM2caZlS7,The Sundance Kids,2009-09-04,https://i.scdn.co/image/ab67616d0000b2730dc0e2aa1e20f2689984f475,1,1,254213,https://p.scdn.co/mp3-preview/844a9a660528cc922edcb41058d28712528f88a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUWA00900284,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.417,0.656,0.0,-5.814,1.0,0.029,0.000617,0.0,0.133,0.194,169.937,4.0,,WM Australia,"C © 2009 Loud & Clear Entertainment Pty Limited Marketed and Distributed under exclusive licence by Warner Music Australia Pty Limited, P ℗ 2009 Loud & Clear Entertainment Pty Limited",6038 +6039,spotify:track:4IWrEuvVZbMxIBcXBkZTsO,Laid,spotify:artist:0qLNsNKm8bQcMoRFkR8Hmh,James,spotify:album:1vUMPAO3MzavJMytoaBoqU,Essential Festival: James - International Version,spotify:artist:0qLNsNKm8bQcMoRFkR8Hmh,James,2008-01-01,https://i.scdn.co/image/ab67616d0000b273bcca12391d9e15564ced4f73,1,2,157293,https://p.scdn.co/mp3-preview/975320f2718f6f3d5edb67fc01d9301e63bc0b61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBF089390076,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,madchester,permanent wave,pop rock",0.469,0.974,0.0,-4.609,1.0,0.0373,0.0264,5.5e-05,0.173,0.675,116.036,4.0,,Universal Music Group International,"C © 2008 Universal Music International Ltd., P This Compilation ℗ 2008 Universal Music International Ltd.",6039 +6040,spotify:track:34x6hEJgGAOQvmlMql5Ige,"Danger Zone - From ""Top Gun"" Original Soundtrack",spotify:artist:3Y3xIwWyq5wnNHPp5gPjOW,Kenny Loggins,spotify:album:3uN87hwClF0hult2cxMbAW,"Yesterday, Today, Tomorrow - The Greatest Hits Of Kenny Loggins",spotify:artist:3Y3xIwWyq5wnNHPp5gPjOW,Kenny Loggins,1997-03-25,https://i.scdn.co/image/ab67616d0000b27319db9ac54c80a898a179f0f1,1,5,215133,https://p.scdn.co/mp3-preview/7d6db49ec04eaff2523b3c00720fc8641ad95d50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM18600108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new wave pop,singer-songwriter,soft rock,yacht rock",0.544,0.897,3.0,-6.056,0.0,0.0471,0.241,0.0,0.13,0.647,157.17,4.0,,Columbia,P This compilation (P) 1997 Sony Music Entertainment,6040 +6041,spotify:track:2BcvvHttiZRvguFM4hR398,Sunshine Of Your Love,spotify:artist:74oJ4qxwOZvX6oSsu1DGnw,Cream,spotify:album:4SMNUQCyTvlO4vFEdXXG45,Disraeli Gears (Remastered),spotify:artist:74oJ4qxwOZvX6oSsu1DGnw,Cream,1967-11-02,https://i.scdn.co/image/ab67616d0000b2739f68634169de36a93f28c5ea,1,2,250000,https://p.scdn.co/mp3-preview/e860117e795dc984f43d781541e932c16676f986?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBA076700020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,classic rock,folk rock,hard rock,psychedelic rock,rock,singer-songwriter,supergroup",0.684,0.482,2.0,-12.59,1.0,0.0384,0.475,7.32e-05,0.118,0.785,115.066,4.0,,Universal Music Group,"C © 1997 Universal International Music B.V., P ℗ 1967 Universal International Music B.V.",6041 +6042,spotify:track:3dVLXaBlaNCB6lnleyWDPG,Brand New Day,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,spotify:album:5On5KkGWU5cpkAoGQchjm6,Alex Lloyd,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,2005-10-09,https://i.scdn.co/image/ab67616d0000b2737afbed4abea556e71a7aea6e,1,1,246573,https://p.scdn.co/mp3-preview/aefbd7e18561d72b26ad8ed553b758a68222a37a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUSM00500156,spotify:user:bradnumber1,2022-08-31T00:31:21Z,"australian alternative rock,australian rock",0.338,0.729,11.0,-5.175,1.0,0.0354,0.0114,5.02e-05,0.0741,0.409,167.91,4.0,,Epic,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,6042 +6043,spotify:track:1t0Jmqg1pKVBbxjQFZebeR,Marea (we’ve lost dancing),"spotify:artist:4oLeXFyACqeem2VImYeBFe, spotify:artist:4TvhRzxIL1le2PWCeUqxQw","Fred again.., The Blessed Madonna",spotify:album:3AAwKutHRWyftJ2GrFdPX9,Marea (we’ve lost dancing),"spotify:artist:4oLeXFyACqeem2VImYeBFe, spotify:artist:4TvhRzxIL1le2PWCeUqxQw","Fred again.., The Blessed Madonna",2021-02-22,https://i.scdn.co/image/ab67616d0000b273f9062eccd2f7244b38158af0,1,1,285375,https://p.scdn.co/mp3-preview/abbd7cd7eef9f92b09e9a9f2d30f0b2990f536e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAHS2100041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,house,stutter house,edm,uk dance",0.761,0.781,5.0,-6.778,0.0,0.141,0.0681,0.108,0.0607,0.473,123.023,4.0,,Atlantic Records UK,"C © 2021 again..Records, P ℗ 2021 again..Records",6043 +6044,spotify:track:3k2BPNEReUDyhWt5zGOxlh,Keep Your Head Up,spotify:artist:2oX42qP5ineK3hrhBECLmj,Andy Grammer,spotify:album:1i7Q6IPS67fvQLM7PVPojU,Andy Grammer,spotify:artist:2oX42qP5ineK3hrhBECLmj,Andy Grammer,2011,https://i.scdn.co/image/ab67616d0000b27360d89f9331d0c6237a7f6b41,1,1,190493,https://p.scdn.co/mp3-preview/fd5299422caa209306c3a0acc7d477631be7a8a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USKFE1000058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,post-teen pop",0.671,0.773,0.0,-5.225,1.0,0.0373,0.0455,0.0,0.0876,0.758,90.012,4.0,,Liberator Music,"C 2012 S-Curve Records, P 2012 S-Curve Records",6044 +6045,spotify:track:50v2JhRDBbQa7TpNIV3zmp,Somebody to Love - Main Club Mix,spotify:artist:3VX8sq17N1pJ6nStjyl0In,Boogie Pimps,spotify:album:4IXXsr4pIEBtsap278XlPI,Somebody to Love (Salt Shaker Remix),"spotify:artist:3VX8sq17N1pJ6nStjyl0In, spotify:artist:6POdYmXp6CcA5IMlX2b0ja","Boogie Pimps, Saltshaker",2003-04-14,https://i.scdn.co/image/ab67616d0000b273bba7c661c977359a6f724694,1,3,312773,https://p.scdn.co/mp3-preview/063fc4bddfecba1f29a29d8cdfd6492d15bdd7e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,DEA610300128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.842,0.604,11.0,-9.38,1.0,0.0567,0.021,0.663,0.108,0.779,130.502,4.0,,Superstar Recordings,"C 2004 Superstar Recordings a label of Superstar Entertainment GmbH & Co. KG, P 2004 Superstar Recordings a label of Superstar Entertainment GmbH & Co. KG",6045 +6046,spotify:track:1oLSje4Ot5qRUq8FqYeXOl,Don’t Feel Like Crying,spotify:artist:4TrraAsitQKl821DQY42cZ,Sigrid,spotify:album:6AOApdjFLkdHZwGWs0JLsB,Don't Feel Like Crying,spotify:artist:4TrraAsitQKl821DQY42cZ,Sigrid,2019-01-17,https://i.scdn.co/image/ab67616d0000b273209cc915af734d0bc907c113,1,1,157010,https://p.scdn.co/mp3-preview/c399bede36de34657195d784339739fd22b53a16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBUM71807541,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,norwegian pop",0.749,0.814,5.0,-3.769,0.0,0.0404,0.156,0.0,0.0673,0.715,119.964,4.0,,Universal-Island Records Ltd.,"C © 2019 Universal Music Operations Limited, P ℗ 2019 Universal Music Operations Limited",6046 +6047,spotify:track:6S5lBW22Re1UPKXjX7obLC,Wasted,spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,spotify:album:2WF3IhLVQemk6DuyTLl9ZD,Wasted,spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,2018-02-02,https://i.scdn.co/image/ab67616d0000b273e3cea68573c668dfb230a1c8,1,1,182370,https://p.scdn.co/mp3-preview/8bbf91df4b29ef77ceacf7ec73cc604c73f79eb7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUBM01800020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian electropop,australian indie,edm",0.693,0.76,11.0,-5.433,1.0,0.0353,0.00169,0.000977,0.121,0.751,115.0,4.0,,Sony Music Entertainment,P (P) 2018 Sony Music Entertainment Australia Pty Ltd,6047 +6048,spotify:track:28pHsII5hhYW5dNN3CWzsX,Fever for the Flava,spotify:artist:1r38C6nsC5srBtvXRLWRmg,Hot Action Cop,spotify:album:4ZAQwyT81JAomlPihpNJ2y,Hot Action Cop,spotify:artist:1r38C6nsC5srBtvXRLWRmg,Hot Action Cop,2003-03-04,https://i.scdn.co/image/ab67616d0000b2735a78848fe96e342e35a98921,1,4,249133,https://p.scdn.co/mp3-preview/e00ff934e22d03ad57e36981d1e0df6cf946a3af?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT20202677,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk metal,rap rock",0.466,0.98,4.0,-2.94,1.0,0.313,0.0147,0.0,0.275,0.542,185.438,4.0,,Lava,"C © 2003 Lava Records LLC for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2003 Lava Records LLC for the United States and WEA International Inc. for the world outside of the United States",6048 +6049,spotify:track:1g7Fjnv92bBYg8s0fHghro,You'll Never Know,spotify:artist:7uZbOLlVQNbLVvKdGRk4VZ,1927,spotify:album:0v91CQ8k8qNZP2LnxQ8HNL,20... Ish Anniversary Edition,spotify:artist:7uZbOLlVQNbLVvKdGRk4VZ,1927,1988,https://i.scdn.co/image/ab67616d0000b2734c537bd4feebf90b1af2127e,1,4,221493,https://p.scdn.co/mp3-preview/1bc1014fb3c1919ca8eccfff9f77868906a411e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAL00900037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.526,0.906,2.0,-3.726,1.0,0.0686,0.00337,0.0538,0.291,0.852,157.779,4.0,,Albert,P (P) 1988 Trafalgar Music Pty Limited,6049 +6050,spotify:track:0RGD7VXcMiPGmnha3vXSt3,Treaty - Radio Mix,spotify:artist:5sHPYevv4ykaH79HIHqBDP,Yothu Yindi,spotify:album:0bZ1EzA7K0ZK88THQaVViw,Tribal Voice,spotify:artist:5sHPYevv4ykaH79HIHqBDP,Yothu Yindi,1991-11-02,https://i.scdn.co/image/ab67616d0000b2730b79286a05533b5cb2222ebf,1,15,243933,https://p.scdn.co/mp3-preview/43b48e70a89477a7cd66a896f373c8998e28a4b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUYT20700030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,didgeridoo",0.708,0.849,4.0,-10.931,0.0,0.0479,4.34e-05,0.00214,0.36,0.824,122.308,4.0,,Bloodlines,"C 2012 Bloodlines, P 2012 Bloodlines",6050 +6051,spotify:track:5xnogcyfSvaSLu9Ad9CaBH,Lolita,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:0dz08Fh4ZEZzZFBApPHLTf,Lolita,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2012-07-27,https://i.scdn.co/image/ab67616d0000b273335e351ad95b09fd4f1edc17,1,1,205413,https://p.scdn.co/mp3-preview/0ba26c5f116868efbcf650b8fa785410fbfdb84b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USWB11201717,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.569,0.779,8.0,-5.395,1.0,0.0322,0.00135,2.1e-06,0.15,0.287,134.988,4.0,,Warner Records/Sire,"C © 2012 Sire Records., P ℗ 2012 Sire Records.",6051 +6052,spotify:track:3trg82Eql6tqi2EAxluhy8,Versace on the Floor,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:3X801hUAmbUAHmatvmMhfA,Versace on the Floor,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2016-11-04,https://i.scdn.co/image/ab67616d0000b273c903a07b07abc204765d761c,1,1,261240,https://p.scdn.co/mp3-preview/6984bfcc42ba35e566625853e20d6fccf7b8348e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USAT21603250,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.578,0.574,2.0,-6.209,1.0,0.0454,0.196,0.0,0.083,0.301,174.152,4.0,,Atlantic Records,"C © 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",6052 +6053,spotify:track:1iNeZGJsoC0D7ZyJTdIbDS,Technologic,spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,spotify:album:2T7DdrOvsqOqU9bGTkjBYu,Human After All,spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,2005-03-14,https://i.scdn.co/image/ab67616d0000b2732ed719bad67261c7bf090c70,1,9,284280,https://p.scdn.co/mp3-preview/4e68f73933a203aec3e11fb5df3898d70f98d68a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBDUW0400109,spotify:user:bradnumber1,2023-09-20T06:30:24Z,"electro,filter house,rock",0.812,0.516,9.0,-6.963,1.0,0.224,0.000369,1.09e-05,0.0991,0.633,127.498,4.0,,Daft Life Ltd./ADA France,"C Distributed exclusively by Warner Music France / ADA France, © 2005 Daft Life Ltd., P Distributed exclusively by Warner Music France / ADA France, ℗ 2005 Daft Life Ltd.",6053 +6054,spotify:track:5xQkkHYbgJ2VegCrRUCvcS,Kiss The Bride,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:0OmYuz9hwn1XoqmDaU0yJ7,Too Low For Zero,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1983-05-30,https://i.scdn.co/image/ab67616d0000b273eb11e2abccdca41f39ad3b89,1,7,262066,https://p.scdn.co/mp3-preview/946a9d6f5fe39c6b7945c97fb10ed1e56e960c65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBALX8300194,spotify:user:bradnumber1,2021-11-11T04:16:56Z,"glam rock,mellow gold,piano rock,rock",0.677,0.856,0.0,-6.295,1.0,0.0791,0.139,0.0304,0.134,0.681,138.138,4.0,,EMI,"C © 1998 Mercury Records Limited, P ℗ 1998 Mercury Records Limited",6054 +6055,spotify:track:0B5KeB25moPkcQUnbDvj3t,100 Years,spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,spotify:album:3o03nl4jDQYUDuX9d8lylY,The Battle For Everything,spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,2004-02-03,https://i.scdn.co/image/ab67616d0000b27396da203e55ace60a721fab8d,1,4,244600,https://p.scdn.co/mp3-preview/252cc0ba7be30a7fdb06b7c6e6ce51a410e8afba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM10312427,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop rock",0.643,0.569,7.0,-7.459,1.0,0.0276,0.544,2.17e-05,0.178,0.275,120.507,4.0,,Aware/Columbia,"P (P) 2003, 2004 Aware Records LLC",6055 +6056,spotify:track:0OH5ZegnMYV119OvFiKT9Z,If I Ever Fall In Love,"spotify:artist:72y3ZI95ctkQC2O4mjBaU3, spotify:artist:3XDOHFgZoRPljL3nSeYJtJ","Shai, Bill Appleberry",spotify:album:2qtUGJ6bz2PUvNoHBQqbqw,If I Ever Fall In Love,spotify:artist:72y3ZI95ctkQC2O4mjBaU3,Shai,1992-01-01,https://i.scdn.co/image/ab67616d0000b273048bed19ea10aebea9a8fad9,1,3,289693,https://p.scdn.co/mp3-preview/71da7267232ba76834d52e503047a9ed1129a312?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWWW0202433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b",0.631,0.304,10.0,-12.239,0.0,0.0349,0.0949,0.0,0.285,0.183,128.019,4.0,,Geffen*,"C © 1992 Gasoline Alley Records Inc., P ℗ 1992 Gasoline Alley Records Inc.",6056 +6057,spotify:track:6yBbmHFTxihIDFAerzDMGi,Hold On Tight,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:4k1GJg2poyo6hwWLqJn9C2,Time,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1981-08-01,https://i.scdn.co/image/ab67616d0000b2735a2bad3ba10ed2a9c5322418,1,12,186600,https://p.scdn.co/mp3-preview/296fc393d23e693b28df850b6a3d75bcfd6d203b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USSM18100353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.439,0.794,7.0,-11.792,1.0,0.0633,0.159,1.69e-06,0.434,0.748,145.056,4.0,,Epic/Legacy,"P (P) 1981 Epic Records, a division of Sony Music Entertainment",6057 +6058,spotify:track:7ajz4MuyGl9JiZZEdRmaVk,Twilight Time,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,spotify:album:4Tzok4AlxCpo8YVFRWKk3a,It's All Happening - 23 Original Hits (1964-1975),spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,1995-01-01,https://i.scdn.co/image/ab67616d0000b2732a0a7bf57031f91316bb840a,1,14,213946,https://p.scdn.co/mp3-preview/1c0066b2c7de50992718c9a87eae6c5378478369?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06500023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.324,0.65,11.0,-7.471,1.0,0.035,0.385,0.0,0.204,0.403,96.338,3.0,,Albert Productions,"C © 1995 BMG AM Pty Ltd., P ℗ 1995 BMG AM Pty Ltd.",6058 +6059,spotify:track:3jo3N6vwRVTCEOY5Wffrru,Free,spotify:artist:6lHL3ubAMgSasKjNqKb8HF,Mýa,spotify:album:6DOrJ531pbcGf3ZkrfayPD,Fear Of Flying,spotify:artist:6lHL3ubAMgSasKjNqKb8HF,Mýa,2000,https://i.scdn.co/image/ab67616d0000b2736c426f620ba1217eb0a9347b,1,3,318733,https://p.scdn.co/mp3-preview/03908e7bcba42c7fb80b2110a03926c29b0e0137?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USIR10001331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.789,0.781,11.0,-6.205,0.0,0.0557,0.0136,2.81e-05,0.0701,0.682,108.01,4.0,,Interscope,"C © 2001 UMG Recordings, Inc., P ℗ 2001 UMG Recordings, Inc.",6059 +6060,spotify:track:1fC6GBMmXiTP38Zzjqi9ls,Lovesong,spotify:artist:2aNIBy88702ekJ4R2Eo6W9,Amiel,spotify:album:7ymJorHGH4FLZV7Hyi40iW,Audio Out,spotify:artist:2aNIBy88702ekJ4R2Eo6W9,Amiel,2003,https://i.scdn.co/image/ab67616d0000b2731ec1b0d2af85fce4f100b368,1,1,209840,https://p.scdn.co/mp3-preview/4e10e26f96898dbd0388bb48223694aa27a3a9c3?cid=9950ac751e34487dbbe027c4fd7f8e99,True,38,AUFE00300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.679,0.679,9.0,-6.307,0.0,0.0353,0.545,1.1e-05,0.107,0.196,130.094,4.0,,WM Australia,"C © 2003 Festival Records, P ℗ 2003 Festival Records",6060 +6061,spotify:track:29PjjyolSTf3pWgPxEFYE2,Sorrento Moon (I Remember),spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,spotify:album:0NLEDUOmZQ4dvh0mIa7iQe,Don't Ask,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,1994-04-30,https://i.scdn.co/image/ab67616d0000b273ab4332b95c9425e87aa06238,1,3,293866,https://p.scdn.co/mp3-preview/a19fd0df120d5f035e209d7db42887d728b6b275?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUSM09400166,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.639,0.647,0.0,-9.056,1.0,0.0352,0.436,0.000149,0.0927,0.643,154.143,4.0,,Epic,P 1994 Sony Music Entertainment (Australia) PTY. Ltd.,6061 +6062,spotify:track:7Ea3bRL50VWPRqiolGTNSv,Just The Thing,"spotify:artist:2ZW29i2YE4YDQf6WemPJ4W, spotify:artist:3jd8xfOmRGCpjWt45nC3kZ","Paul Mac, Peta Morris",spotify:album:55HS4H3fehwCLdzS0ybKic,3000 Feet High,spotify:artist:2ZW29i2YE4YDQf6WemPJ4W,Paul Mac,2001-01-01,https://i.scdn.co/image/ab67616d0000b2736f3192664d94c6334b8955a5,1,2,238400,https://p.scdn.co/mp3-preview/13c7a1d69bae3cfd5ff3637c4c6caad39e452e2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUEL00100010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.75,0.695,1.0,-7.651,1.0,0.0368,0.000312,0.0499,0.673,0.647,123.013,4.0,,Universal Music Australia Pty. Ltd.,"C © 2001 Eleven: A Music Company, P ℗ 2001 Eleven: A Music Company",6062 +6063,spotify:track:3jlbL2OTD5YmIunYzgQTAN,Live Your Life,"spotify:artist:4OBJLual30L7gRl5UkeRcT, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","T.I., Rihanna",spotify:album:5PfepkNWgRR2DI02Y8AawC,Paper Trail,spotify:artist:4OBJLual30L7gRl5UkeRcT,T.I.,2008-09-07,https://i.scdn.co/image/ab67616d0000b273b6d4478c6f91f1cb2d326c78,1,5,338853,https://p.scdn.co/mp3-preview/6a1aa87f10c203d249974f7dc1a64006ca5f6009?cid=9950ac751e34487dbbe027c4fd7f8e99,True,72,USAT20803620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,gangster rap,hip hop,pop rap,rap,southern hip hop,trap,barbadian pop,pop,urban contemporary",0.375,0.862,11.0,-3.363,0.0,0.255,0.071,0.0,0.211,0.478,159.841,4.0,,"Grand Hustle, LLC","C 2008 Grand Hustle, LLC | Cinq Recordings, P 2008 Grand Hustle, LLC | Cinq Recordings",6063 +6064,spotify:track:4qjrCkcVbsYlitCqbBkeKe,Colors Of The Wind - End Title,spotify:artist:75L9s8KVrhCNtBUkZFnDFW,Vanessa Williams,spotify:album:4ddvFk8agFfRkkcVwR8sJH,Pocahontas Original Soundtrack (English Version),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1995-01-01,https://i.scdn.co/image/ab67616d0000b2737c0a14cff347015c00e32136,1,27,257933,https://p.scdn.co/mp3-preview/9b81b6acb5de254734756514f8e569babcefd257?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USWD10110149,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,disco,quiet storm,urban contemporary",0.548,0.237,10.0,-18.072,1.0,0.0474,0.365,1.32e-05,0.126,0.129,83.937,4.0,,EMI Gold,"C © 1995 Disney / Disney Enterprises Inc, P This Compilation ℗ 1995 Buena Vista Pictures Distribution Inc",6064 +6065,spotify:track:3ZP18us6p6LHOZMG1LLUjF,How Deep Is Your Love,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:4vAhQeeWkSjVn0p5GAaLBx,How Can You Mend A Broken Heart,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,2020-12-11,https://i.scdn.co/image/ab67616d0000b273bdcea025a483b9642f17a9f8,1,18,241093,https://p.scdn.co/mp3-preview/8e12d151daf04babb750f8c6705a0c1815fade9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,NLF057790012,spotify:user:bradnumber1,2021-10-30T21:35:39Z,"disco,mellow gold,soft rock",0.594,0.5,5.0,-5.586,0.0,0.0255,0.076,9.86e-05,0.184,0.537,104.996,4.0,,UME - Global Clearing House,"C © 2020 Capitol Records; Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb under exclusive license to UMG Recordings, Inc., P ℗ 2020 Capitol Records; Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb under exclusive license to UMG Recordings, Inc.",6065 +6066,spotify:track:026IC4Vj88QjLlnIPDExhz,Hurt Somebody (With Julia Michaels),"spotify:artist:2RQXRUsr4IW1f3mKyKsy4B, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","Noah Kahan, Julia Michaels",spotify:album:2nCbWyY14wV7YfdX82SAOM,Hurt Somebody,spotify:artist:2RQXRUsr4IW1f3mKyKsy4B,Noah Kahan,2018-02-02,https://i.scdn.co/image/ab67616d0000b273f09118fee666a65f79396132,1,1,168640,https://p.scdn.co/mp3-preview/f093e10213332c484c64a102626da58e5cdf002f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71800031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pov: indie,singer-songwriter pop,pop",0.83,0.557,1.0,-5.146,1.0,0.118,0.361,0.0,0.249,0.492,114.966,4.0,,Universal Music Group,"C © 2018 Republic Records, a Division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",6066 +6067,spotify:track:5qlLUXCtyNAkzxWGlurYd3,Treaty - Radio Mix,spotify:artist:5sHPYevv4ykaH79HIHqBDP,Yothu Yindi,spotify:album:7n50XELKBAuN7YJtFjsm5d,Tribal Voice,spotify:artist:5sHPYevv4ykaH79HIHqBDP,Yothu Yindi,1991-11-02,https://i.scdn.co/image/ab67616d0000b2731e54103601b6f8a4d81c8dd8,1,15,243933,https://p.scdn.co/mp3-preview/43b48e70a89477a7cd66a896f373c8998e28a4b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUYT20700030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,didgeridoo",0.708,0.849,4.0,-10.931,0.0,0.0479,4.34e-05,0.00214,0.36,0.824,122.308,4.0,,Bloodlines,"C 2012 Bloodlines, P 2012 Bloodlines",6067 +6068,spotify:track:3TG88ES1Z5sMfuondaDZXV,Spaceman,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,spotify:album:5IEec55pLIuXucwelz1kkS,Spaceman,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,2021-02-25,https://i.scdn.co/image/ab67616d0000b2734f695f4ca747341408287092,1,1,196999,https://p.scdn.co/mp3-preview/6114bc08219767e59d0625ae9adc4a64289fb01e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM72102399,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.541,0.598,5.0,-7.377,0.0,0.234,0.325,0.0,0.107,0.356,155.626,4.0,,Island Records,"C © 2021 Island Records, a division of UMG Recordings, Inc., P ℗ 2021 Island Records, a division of UMG Recordings, Inc.",6068 +6069,spotify:track:6rN6xdKMu0dWnsKNePZItp,Mother-in-Law - 2002 Remaster,spotify:artist:3ybBNyjii40yY104IZkcly,Ernie K-Doe,spotify:album:1ig0uPnSa1pB67M6TsI8Cg,Finger Poppin' And Stompin' Feet: 20 Classic Allen Toussaint Productions For Minit Records 1960-1962 (2002 Remaster),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2002-01-01,https://i.scdn.co/image/ab67616d0000b2734f56ea0497fe2533c04573f9,1,2,153600,https://p.scdn.co/mp3-preview/e27f820a9b1e8fd2f5fdc79e3bd1049af69768d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USEM30200033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"louisiana blues,new orleans blues,new orleans funk,new orleans soul,rhythm and blues",0.747,0.631,7.0,-8.306,0.0,0.0409,0.713,0.00024,0.303,0.753,127.416,4.0,,Capitol Records,"C © 2002 Capitol Records, LLC, P This Compilation ℗ 2002 Capitol Records, LLC",6069 +6070,spotify:track:6eyqdgLPrzPyK3sKQVzIJl,Something Happened On The Way To Heaven,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:7hV0YSxAQSng8H0zMR0HBf,...Hits,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1998-09-25,https://i.scdn.co/image/ab67616d0000b273c8860dfcdadefb529bf29757,1,8,291373,https://p.scdn.co/mp3-preview/dc2157213ffb4eab355094912979eafad0c55bce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWI19600166,spotify:user:bradnumber1,2023-10-17T23:17:26Z,"rock drums,soft rock",0.671,0.779,5.0,-7.29,0.0,0.0268,0.135,0.0166,0.173,0.894,114.634,4.0,,Atlantic Records,"C 1998 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",6070 +6071,spotify:track:4u00xAxjE159vAnxfMNgP4,Cotton Fields,spotify:artist:4lh4sNnXlHYs8DQa3dnLal,The Highwaymen,spotify:album:2DKVIjhZhloJ7o8oMuhQXG,The Folk Hits Collection,spotify:artist:4lh4sNnXlHYs8DQa3dnLal,The Highwaymen,2007-01-01,https://i.scdn.co/image/ab67616d0000b27391ce3419832b3312192d15f2,1,2,134439,https://p.scdn.co/mp3-preview/d77c30cf92cf0354064d16a301c2a8ed5d0f3f33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,US3M50784702,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.732,0.292,9.0,-12.402,1.0,0.0399,0.845,0.0,0.0885,0.6,135.188,4.0,,Varese Sarabande,"C © 2007 Varese Sarabande Records, P This Compilation ℗ 2007 The Highwaymen, under exclusive license to Varese Sarabande Records, under exclusive license to Varese Sarabande Records",6071 +6072,spotify:track:72mFimdSaNgrsLJyTBMqVh,Lovelight,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:25TyBZbT1VX6SW0md0OPdR,Lovelight,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2006-01-01,https://i.scdn.co/image/ab67616d0000b273eefa6141ef25b1a3200a1489,1,1,242044,https://p.scdn.co/mp3-preview/4ad9da783ff5e9253bbd9882959a284df99a740b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBFFG0600027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.675,0.737,1.0,-5.062,1.0,0.0734,0.0294,2.69e-06,0.0721,0.781,102.031,4.0,,Chrysalis UK,"C © 2006 Robert Williams/The In Good Company Co Ltd, P ℗ 2006 Robert Williams/The In Good Company Co Ltd",6072 +6073,spotify:track:0hbyODHkxc8dBTmFBhJoFj,Funky Cold Medina,spotify:artist:5Y8EphH8Vdqu5SLj6K5vjj,Tone-Loc,spotify:album:01aFGqmSsvqRzTQo4GJhg6,Loc-ed After Dark - Expanded Edition,spotify:artist:5Y8EphH8Vdqu5SLj6K5vjj,Tone-Loc,1989-01-01,https://i.scdn.co/image/ab67616d0000b273a3a2e1d87112238e69a85587,1,6,248160,https://p.scdn.co/mp3-preview/27d58ffe732f085b4b3ad67a3e53c7ffb97f6333?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,US3DF1209589,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hip house,miami bass",0.984,0.781,5.0,-9.622,0.0,0.0911,0.0834,1.54e-06,0.0645,0.924,117.476,4.0,,The Bicycle Music Company,"C © 1989 The Bicycle Music Company, P ℗ 1989 The Bicycle Music Company",6073 +6074,spotify:track:7GpPm7pd4x52tLWSvh9hAD,Kansas City,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,spotify:album:0zfs0RZJZxFhATFXskyNwq,2,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,2008-01-01,https://i.scdn.co/image/ab67616d0000b27377846519ad226469dd4489ec,1,1,236333,https://p.scdn.co/mp3-preview/15b09ba9c1e73c3e8c562f8f9109d5d5ee9bcaf7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUQK00800049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,funktronica",0.595,0.964,0.0,-3.521,1.0,0.0948,0.000911,0.0,0.125,0.714,129.973,4.0,,Whack Records,"C 2008 Whack Records, P 2008 Whack Records",6074 +6075,spotify:track:2TWTOOE397zriKCKwGLYgI,Bored To Death,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:2GF8wZ1o0NpHSFhjgz6eBD,California,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,2016-07-01,https://i.scdn.co/image/ab67616d0000b273cf72e7f02d76901beedb13ac,1,2,235613,https://p.scdn.co/mp3-preview/b7741feb838f3071636f269d17c576c4aad56ea1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMRSZ1600281,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.502,0.966,0.0,-3.876,1.0,0.0946,0.00575,1.56e-06,0.117,0.638,159.948,4.0,,Liberator Music,"C 2016 Viking Wizard Eyes LLC under exclusive license to BMG Rights Management (US) LLC, P 2016 Viking Wizard Eyes LLC under exclusive license to BMG Rights Management (US) LLC",6075 +6076,spotify:track:4NBASiUXghS8tKTDYDbxtP,Drive,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:5wAoxrSVetP84EXgr4Tp3z,That's What I'm Talking About,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2004-02-02,https://i.scdn.co/image/ab67616d0000b273b924aec7c8f9c0a6a7dc7a06,1,1,238986,https://p.scdn.co/mp3-preview/6bc5ef7e45c080654ab8096cffcd27b3b83d70b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUBM00447804,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,australian pop,australian rock",0.601,0.887,9.0,-4.083,1.0,0.0598,0.00346,0.00244,0.0792,0.83,126.01,4.0,,BMG Music,P (P) 2004 BMG Australia Limited,6076 +6077,spotify:track:24M8VYT1SmWd7Z2Nq43xJX,Dirrty,"spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS, spotify:artist:7xTKLpo7UCzXSnlH7fOIoM","Christina Aguilera, Redman",spotify:album:4hpmO3kS2S4wd8XQR8DFe0,Christina Aguilera/Stripped,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2006-08-28,https://i.scdn.co/image/ab67616d0000b273d62fbdf0497d7d7a3e7bed37,2,16,298853,https://p.scdn.co/mp3-preview/09e5725942d39324740547e316de8922484dcd1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10200845,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,east coast hip hop,hardcore hip hop,new jersey rap,wu fam",0.64,0.889,2.0,-3.073,1.0,0.322,0.107,0.0,0.339,0.436,99.931,4.0,,Sony BMG Music Entertainment,P (P) 2006 SONY BMG MUSIC ENTERTAINMENT,6077 +6078,spotify:track:1r9xUipOqoNwggBpENDsvJ,Enemy (with JID) - from the series Arcane League of Legends,"spotify:artist:53XhwfbYqKCa1cC15pYq2q, spotify:artist:6U3ybJ9UHNKEdsH7ktGBZ7, spotify:artist:57nPqD7z62gDdq37US9XJR, spotify:artist:47mIJdHORyRerp4os813jD","Imagine Dragons, JID, Arcane, League of Legends",spotify:album:1bTgKomQYSkKYPD9UI9W4b,Enemy (with JID) - from the series Arcane League of Legends,"spotify:artist:53XhwfbYqKCa1cC15pYq2q, spotify:artist:6U3ybJ9UHNKEdsH7ktGBZ7, spotify:artist:57nPqD7z62gDdq37US9XJR","Imagine Dragons, JID, Arcane",2021-10-28,https://i.scdn.co/image/ab67616d0000b273aa597e50829169e6994eb403,1,1,173381,https://p.scdn.co/mp3-preview/7f4f896ba1b8bca78a515778f0ee0da380d198a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USUM72119916,spotify:user:bradnumber1,2021-11-19T23:18:58Z,"modern rock,pop,rock,hip hop,pop rap,rap,underground hip hop,speedrun,video game music",0.728,0.783,11.0,-4.424,0.0,0.266,0.237,0.0,0.434,0.555,77.011,4.0,,KIDinaKORNER/Interscope Records,"C © 2021 KIDinaKORNER/Interscope Records, P ℗ 2021 KIDinaKORNER/Interscope Records",6078 +6079,spotify:track:6qYmf2NjhDfsF7x5U5DUOf,Another Day - 2012 Remaster,"spotify:artist:4STHEaNw4mPZ2tzheohgXB, spotify:artist:6QEKXJs8gQCiyBq5L8knco","Paul McCartney, Linda McCartney",spotify:album:3DTMsrNO6lEHNmDJ0fsN4v,Ram (Archive Collection),"spotify:artist:4STHEaNw4mPZ2tzheohgXB, spotify:artist:6QEKXJs8gQCiyBq5L8knco","Paul McCartney, Linda McCartney",1971-05-17,https://i.scdn.co/image/ab67616d0000b27336e259c002cc8746178f5a64,2,1,222533,https://p.scdn.co/mp3-preview/c6ce2b893780586fdaee6fc1e13d28be545cee45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBCCS1100100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,mellow gold,rock,soft rock,classic uk pop",0.701,0.335,7.0,-13.534,1.0,0.034,0.293,0.00845,0.0872,0.824,122.239,3.0,,Paul McCartney Catalog,"C © 2012 MPL Communications Inc/Ltd, P ℗ 2012 MPL Communications Inc/Ltd",6079 +6080,spotify:track:0yfNXxlyXdmP0ue1iJijx1,Come Undone,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:0PqCkTvKFJxzr9uujq7a3T,Duran Duran,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1993-02-15,https://i.scdn.co/image/ab67616d0000b2735d11c2fe73a7d376d3b06107,1,6,256519,https://p.scdn.co/mp3-preview/0d2feb79ee2feb74cb790024554144674d0cc7a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBAYE9300072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.542,0.793,8.0,-8.203,1.0,0.0528,0.0423,3.9e-06,0.0814,0.709,173.928,4.0,,Parlophone UK,"C © 1993 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1993 Parlophone Records Ltd, a Warner Music Group Company",6080 +6081,spotify:track:64c84nqx8WuBqqWCqsJfRs,Does Your Chewing Gum Lose It's Flavour (On The Bedpost Overnight)?,spotify:artist:6dIOTeSQDBSR6gwsL0WB2n,Lonnie Donegan,spotify:album:4EwFjI32q5wL1cFie4lyPu,The EP Collection,spotify:artist:6dIOTeSQDBSR6gwsL0WB2n,Lonnie Donegan,1992,https://i.scdn.co/image/ab67616d0000b273e5bda391401ad754b66e0d6f,1,17,166933,https://p.scdn.co/mp3-preview/1423e65f87992825014c1b1ec7f6d49b9b4f8b47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBVVQ1500952,spotify:user:bradnumber1,2021-08-08T09:26:31Z,merseybeat,0.691,0.832,7.0,-10.771,1.0,0.286,0.765,5.4e-06,0.577,0.885,113.789,4.0,,See For Miles,"C 1992 See For Miles Records Ltd, P 1992 See For Miles Records Ltd",6081 +6082,spotify:track:60NAi3x5XfU8UDMu5WRUSr,Girls on the Avenue,spotify:artist:3M5nxyS3mmuFqHP2N4x5ZH,Richard Clapton,spotify:album:7gQWHh8iUv8LI70VgSMYOq,Girls On The Avenue,spotify:artist:3M5nxyS3mmuFqHP2N4x5ZH,Richard Clapton,1975,https://i.scdn.co/image/ab67616d0000b27372c802b62448ba8800c6053c,1,1,242133,https://p.scdn.co/mp3-preview/b8a331b0dec3c5bbf5b319e789f8f4ad7963c7de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUWA00900509,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.637,0.532,0.0,-13.943,0.0,0.0339,0.248,0.0849,0.11,0.835,123.257,4.0,,WM Australia,"C © 1975 Festival Records Pty Limited, P ℗ 1975 Festival Records Pty Limited",6082 +6083,spotify:track:2Cd9iWfcOpGDHLz6tVA3G4,Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] (feat. Freshlyground),"spotify:artist:0EmeFodog0BfCgMzAIvKQp, spotify:artist:7AcV1lk8Zrgo1691PDWEle","Shakira, Freshlyground",spotify:album:3pzQF7YgU1f66pBayA8uHv,Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] (feat. Freshlyground),spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,2010-05-07,https://i.scdn.co/image/ab67616d0000b273752d2becbb91841a31c556b8,1,1,202626,https://p.scdn.co/mp3-preview/cc2a3f1a4fdc93976183754b371a29174f5adf29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USSM11001353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"colombian pop,dance pop,latin pop,pop,african rock,afropop,kwaito,south african jazz,south african pop,south african pop dance",0.766,0.873,11.0,-6.381,0.0,0.143,0.00627,0.0,0.0764,0.743,126.988,4.0,,Epic,P (P) 2010 Sony Music Entertainment (Holland) B.V.,6083 +6084,spotify:track:5XA1GxaSpkUDULweScK0Rf,Gettin' Over You (feat. Fergie & LMFAO),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:2qSEpijpT3YSXgxcXac1ly, spotify:artist:3r17AfJCCUqC9Lf0OAc73G, spotify:artist:3sgFRtyBnxXD5ESfmbK4dl","David Guetta, Chris Willis, Fergie, LMFAO",spotify:album:6w2rRSUsQk1e9ALB6ybmlz,One More Love,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2010-11-22,https://i.scdn.co/image/ab67616d0000b27391c50a0e18ec7618716d796b,1,2,187426,https://p.scdn.co/mp3-preview/448805859a0d86088919d4e4d752b0f8055bc6b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FRZID1000210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,dance pop,pop,dance pop,pop,pop rap",0.62,0.87,10.0,-6.52,0.0,0.0868,0.149,0.0,0.0705,0.513,130.079,4.0,,Parlophone France,"C 2011 Gum Prod, licence exclusive Parlophone Music France, P 2011 Gum Prod, licence exclusive Parlophone Music France",6084 +6085,spotify:track:6BDEB3uf97ZvwFg8ZcJrzx,Buffalo Stance,spotify:artist:3JxCEqL9zjKnDJgUhRuRJD,Neneh Cherry,spotify:album:1PDvi5uU71NCpZ7TPdcl6B,Virgin Records: 40 Years Of Disruptions,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-01-01,https://i.scdn.co/image/ab67616d0000b273e36423c91e3c6f248a03aee4,1,16,246320,https://p.scdn.co/mp3-preview/12b4e74eb824c22357aa8092598f61b9e37414b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAAA0900903,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,urban contemporary",0.738,0.679,1.0,-9.891,1.0,0.0637,0.00783,0.0,0.362,0.735,107.176,4.0,,Virgin Records Ltd,"C © 2013 Virgin Records Limited, P This Compilation ℗ 2013 Virgin Records Limited",6085 +6086,spotify:track:2SAqBLGA283SUiwJ3xOUVI,Laugh Now Cry Later (feat. Lil Durk),"spotify:artist:3TVXtAsR1Inumwj472S9r4, spotify:artist:3hcs9uc56yIGFCSy9leWe7","Drake, Lil Durk",spotify:album:0qGdc7fNq9RNIPEzZufa43,Laugh Now Cry Later (feat. Lil Durk),"spotify:artist:3TVXtAsR1Inumwj472S9r4, spotify:artist:3hcs9uc56yIGFCSy9leWe7","Drake, Lil Durk",2020-08-14,https://i.scdn.co/image/ab67616d0000b27352c75ed37313b889447011ef,1,1,261492,https://p.scdn.co/mp3-preview/3467950d22bbb494c39ef3283d8e60e64080495c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USUG12001748,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian hip hop,canadian pop,hip hop,pop rap,rap,chicago drill,chicago rap,drill,hip hop,pop rap,rap,trap",0.761,0.518,0.0,-8.871,1.0,0.134,0.244,3.47e-05,0.107,0.522,133.976,4.0,,OVO,"C © 2020 OVO, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 OVO, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",6086 +6087,spotify:track:51pQ7vY7WXzxskwloaeqyj,Stairway to Heaven - 1990 Remaster,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,spotify:album:1Ugdi2OTxKopVVqsprp5pb,Led Zeppelin IV,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,1971-11-08,https://i.scdn.co/image/ab67616d0000b273cd25ce73e3eddeedb995fcee,1,4,478173,https://p.scdn.co/mp3-preview/337c8d45ac66899bc2db9ef3ed9438fe1d035ab1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USAT29900620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.346,0.335,7.0,-12.453,1.0,0.0339,0.575,0.00674,0.185,0.213,84.204,4.0,,Rhino Atlantic,"C © 1971 Swan Song Inc., P ℗ 1971 Atlantic Recording Corp., a Warner Music Group company",6087 +6088,spotify:track:4RVtBlHFKj51Ipvpfv5ER4,Drown (feat. Clinton Kane),"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:7okSU80WTrn4LXlyXYbX3P","Martin Garrix, Clinton Kane",spotify:album:7rU4vsRIhRRfMt3qy6ADND,Drown (feat. Clinton Kane),"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:7okSU80WTrn4LXlyXYbX3P","Martin Garrix, Clinton Kane",2020-02-27,https://i.scdn.co/image/ab67616d0000b273b154bc645350b122934566e4,1,1,174062,https://p.scdn.co/mp3-preview/d94fd9c0ca62d1c758dac3607cba29cd08bc9fb7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,NLM5S2000785,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch edm,edm,pop,pop dance,progressive house,alt z,gen z singer-songwriter",0.573,0.739,9.0,-5.455,1.0,0.0581,0.212,0.0,0.175,0.363,120.077,4.0,,Epic Amsterdam,"P (P) 2020 STMPD RCRDS B.V. exclusively licensed to Epic Amsterdam, a division of Sony Music Entertainment Netherlands B.V.",6088 +6089,spotify:track:3bjYsQnEYHpUm3DB4nlx7d,Second Hand Rose,spotify:artist:7jmTilWYlKOuavFfmQAcu6,Barbra Streisand,spotify:album:3d0a3RAyrLLdkOEpChw7uh,"My Name Is Barbra, Two...",spotify:artist:7jmTilWYlKOuavFfmQAcu6,Barbra Streisand,1965-10,https://i.scdn.co/image/ab67616d0000b273703cd12d5f88be105f5e8eb9,1,6,129199,https://p.scdn.co/mp3-preview/d3d3b95418295d95fdec1cdb889bbd62f1ab32d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USSM16501354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,operatic pop,soft rock",0.491,0.266,5.0,-13.966,1.0,0.0861,0.846,0.0,0.114,0.471,140.101,4.0,,Columbia,P Orginally Released 1965 Sony Music Entertainment,6089 +6090,spotify:track:5zTT1Tp6nJyflksiZsM7xs,Along Came Jones,spotify:artist:7MpUvihmfilIxyN20kXwQj,Ray Stevens,spotify:album:0QtzjdxO5CAi9NqpiusEMh,Greatest Hits - Original Recordings,spotify:artist:7MpUvihmfilIxyN20kXwQj,Ray Stevens,2014-04-22,https://i.scdn.co/image/ab67616d0000b27379aa4a188b31512f718c580b,1,21,227533,https://p.scdn.co/mp3-preview/7b41872902cbc0f5cccec166af44532e94553862?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USZZM0710238,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,novelty",0.525,0.796,7.0,-8.397,1.0,0.266,0.483,0.0,0.96,0.568,102.132,4.0,,Barnaby Records,"C (C) 2014 Barnaby Records, P (P) 1970 Barnaby Records, Inc.",6090 +6091,spotify:track:41L3O37CECZt3N7ziG2z7l,Yummy,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:1SN6N3fNkZk5oXQ9X46QZ3,Yummy,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2020-01-03,https://i.scdn.co/image/ab67616d0000b27360eec5a0953d4a33d77ed71d,1,1,210426,https://p.scdn.co/mp3-preview/b8d634383ba2f287c054193d32c9b10f33ed8336?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USUM71923046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.688,0.514,9.0,-6.612,0.0,0.0903,0.366,0.0,0.116,0.494,145.919,4.0,,RBMG/Def Jam,"C © 2020 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2020 Def Jam Recordings, a division of UMG Recordings, Inc.",6091 +6092,spotify:track:4y3OI86AEP6PQoDE6olYhO,Sucker,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,spotify:album:4W0r9HOcuCC6Vh7aze2hwi,Sucker,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,2019-03-01,https://i.scdn.co/image/ab67616d0000b273c85bf1709e11b6a288925b26,1,1,181040,https://p.scdn.co/mp3-preview/7a486bf71e7c934be7b84f145bf8abf8303143db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUG11900515,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.842,0.734,1.0,-5.065,0.0,0.0588,0.0427,0.0,0.106,0.952,137.958,4.0,,Jonas Brothers Recording,"C © 2019 Jonas Brothers Recording, Limited Liability Company, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Jonas Brothers Recording, Limited Liability Company, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",6092 +6093,spotify:track:4OLRw2NSxCyNkfCs8Uwvwg,Ebony Eyes,spotify:artist:0reZZVbAPxgX1Rqj6XbWj3,Bob Welch,spotify:album:5YQsoNZvxTZKqsJ2Y7fQjJ,French Kiss,spotify:artist:0reZZVbAPxgX1Rqj6XbWj3,Bob Welch,1977-01-01,https://i.scdn.co/image/ab67616d0000b273b16a42da4ef8c01263d449f6,1,7,212760,https://p.scdn.co/mp3-preview/d65c3a16bd38844cb811c3ef6bdb1dd9746f78c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USCA28900154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"soft rock,yacht rock",0.698,0.676,11.0,-11.717,1.0,0.0277,0.0101,2.57e-05,0.112,0.961,116.486,4.0,,Capitol Records,"C © 1977 Capitol Records Inc., P ℗ 1977 Capitol Records Inc.",6093 +6094,spotify:track:6Up545NUflOiXo8cEraH49,You Say,spotify:artist:40LHVA5BTQp9RxHOQ9JPYj,Lauren Daigle,spotify:album:6pmoTLfsPpn0wisT3YFJSN,Look Up Child,spotify:artist:40LHVA5BTQp9RxHOQ9JPYj,Lauren Daigle,2018-09-07,https://i.scdn.co/image/ab67616d0000b273f450251e05b9ab74d11d9e53,1,5,274693,https://p.scdn.co/mp3-preview/a23e460aac33414336dc273cf3f246bec41aa499?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,US8391800158,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ccm,christian alternative rock,christian music",0.494,0.632,5.0,-6.89,1.0,0.0342,0.682,0.0,0.0869,0.0797,147.873,4.0,,Centricity Music/Warner Records,"C © 2018 Centricity Music, exclusively marketed and distributed by Warner Records Inc., P ℗ 2018 Centricity Music, exclusively marketed and distributed by Warner Records Inc.",6094 +6095,spotify:track:2N0volXQpwsvjDorTTxBAU,Bonfire Heart,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,spotify:album:4Sj9XfiPLf5byGh7u2ZU7g,Moon Landing,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,2013-10-16,https://i.scdn.co/image/ab67616d0000b273fcf5fe7c303170c384855fe2,1,3,238000,https://p.scdn.co/mp3-preview/3cae40d02357aae9923c5ace19414ddead7cd7ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAHS1300301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.575,0.821,0.0,-5.7,1.0,0.0527,0.181,0.0,0.124,0.449,118.021,4.0,,Custard/Atlantic,"C © 2013 Warner Music UK Limited, P ℗ 2013 Warner Music UK Limited",6095 +6096,spotify:track:6z9XVXX8AXxVunhocuLTMe,Eloise,spotify:artist:5JJxBX97vBHW7KMsBqIJre,Barry Ryan,spotify:album:3rMoGkbaR5AQSifBcqvyOg,The Very Best Of Barry Ryan,spotify:artist:5JJxBX97vBHW7KMsBqIJre,Barry Ryan,1992-01-01,https://i.scdn.co/image/ab67616d0000b273ec892df826353cfe3727ef53,1,1,345173,https://p.scdn.co/mp3-preview/fad382eac298f47f8f24c8135f464ae8479862e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,DEF066918180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.425,0.591,0.0,-11.996,1.0,0.0321,0.22,0.0,0.355,0.461,131.087,4.0,,Universal International Music B.V.,"C © 1992 Universal International Music B.V., P This Compilation ℗ 1992 Universal International Music B.V.",6096 +6097,spotify:track:2byuMQoY8GFXEQ5z3GnXyW,Sure Be Cool If You Did,spotify:artist:1UTPBmNbXNTittyMJrNkvw,Blake Shelton,spotify:album:3IOjmgFdLexwx475aETFIr,Sure Be Cool If You Did,spotify:artist:1UTPBmNbXNTittyMJrNkvw,Blake Shelton,2013-01-08,https://i.scdn.co/image/ab67616d0000b2732a714a26e4dbebfc92084e1a,1,1,215720,https://p.scdn.co/mp3-preview/0388c24bc692c5597ce967eba0ada08c5a578ed1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USWB11203181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic oklahoma country,contemporary country,country,country road",0.576,0.726,11.0,-4.625,1.0,0.035,0.255,0.0,0.108,0.582,136.802,4.0,,Warner Bros.,"C 2013 Blake Shelton under exclusive license to Warner Bros. Records Inc., P 2013 Blake Shelton under exclusive license to Warner Bros. Records Inc.",6097 +6098,spotify:track:1fgvJXlcZ7uIddMpqsqw0L,Love Don't Cost a Thing,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:76QqoE30i9HVwxtxYMkWXT,J.Lo,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2001-01-23,https://i.scdn.co/image/ab67616d0000b273bfa0a1de59696c7a6fe15ebb,1,1,221226,https://p.scdn.co/mp3-preview/99c9902cfc477cee0de0fcd491c32244fceb521f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM10017308,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.786,0.842,4.0,-5.115,0.0,0.0707,0.00305,3.54e-06,0.473,0.685,97.577,4.0,,Epic,"P (P) 2001 Epic Records, a division of Sony Music Entertainment",6098 +6099,spotify:track:7LjEQ8GsQiUNVakV6TZI0e,Baby,spotify:artist:2kRfqPViCqYdSGhYSM9R0Q,Madison Beer,spotify:album:1w9947gaSEqv6sJcxUKmtI,Baby,spotify:artist:2kRfqPViCqYdSGhYSM9R0Q,Madison Beer,2020-08-21,https://i.scdn.co/image/ab67616d0000b2732231abb3b9c86b22b887d198,1,1,207734,https://p.scdn.co/mp3-preview/1667a6aaa4a5b697faabb31b2bcea387be2ce44f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM11905848,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.705,0.707,0.0,-5.174,1.0,0.0534,0.0799,0.0,0.149,0.452,117.974,4.0,,Epic/Sing It Loud,"P (P) 2020 Madison Beer/Access Records under exclusive license to Epic Records, a division of Sony Music Entertainment",6099 +6100,spotify:track:18GrSli2Zljj5mTrkAIPRH,In The Air - Axwell Radio Edit,"spotify:artist:1umoTEAL97Q6OAS1KX2RX3, spotify:artist:3zfUeJ7cYJuM0jbKoU64Ip, spotify:artist:1xNmvlEiICkRlRGqlNFZ43","TV Rock, Rudy, Axwell",spotify:album:0gVr7uMdGUMzcs34b0DYk1,In The Air,spotify:artist:1umoTEAL97Q6OAS1KX2RX3,TV Rock,2009-10-13,https://i.scdn.co/image/ab67616d0000b2734278c67a1015b1a04f06cfda,1,1,166253,https://p.scdn.co/mp3-preview/4bafe8b58a1b6646d480c0aa8c1b073fec91be6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBKCF1000128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,dutch house,edm,electro house,pop dance,progressive electro house,progressive house",0.567,0.822,10.0,-5.22,0.0,0.0315,0.00829,0.491,0.695,0.574,128.042,4.0,,Axtone Records,"C 2010 Axtone Records Ltd., P 2010 Axtone Records Ltd.",6100 +6101,spotify:track:7u5dBtASrtOuBTTZjJrvuJ,My Hero,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:1zCNrbPpz5OLSr6mSpPdKm,Greatest Hits,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-11-03,https://i.scdn.co/image/ab67616d0000b273136d7250568820409f8fdd60,1,5,258973,https://p.scdn.co/mp3-preview/7ccec66a3073dcf2759fc1e37044a9f8655bab34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRW29600007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.364,0.925,4.0,-4.224,1.0,0.0659,6.01e-05,0.000251,0.0603,0.301,153.981,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",6101 +6102,spotify:track:0TJSVhxbtUzejxxkDnIHmp,A Pub With No Beer - 1979 Version,spotify:artist:0M4w6wFmaVFmP4lIndnEU5,Slim Dusty,spotify:album:78LRfatOMrEN0a3Ix1NmeW,No. 50 - The Golden Anniversary Album,spotify:artist:0M4w6wFmaVFmP4lIndnEU5,Slim Dusty,1981-01-01,https://i.scdn.co/image/ab67616d0000b2733e620ce416038674c9928b97,1,3,180906,https://p.scdn.co/mp3-preview/9f92e618d5cd4cc8b63aafb3a27c95fefe18a755?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUEM07900020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,bush ballad",0.58,0.376,1.0,-13.097,1.0,0.0892,0.535,0.0,0.0635,0.723,166.486,3.0,,Slim Dusty Enterprises,"C © 2006 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 1981 EMI Recorded Music Australia Pty Ltd.",6102 +6103,spotify:track:3u0W3gJQNV5gegMmntzby8,"Lose Yourself - From ""8 Mile"" Soundtrack",spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:481Cwgl0ST0PknmPC0PH8r,8 Mile (Music From And Inspired By The Motion Picture),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2002-10-29,https://i.scdn.co/image/ab67616d0000b273d2a9744ce3913664175e9197,1,1,321960,https://p.scdn.co/mp3-preview/1ce7aa6ef45f4239507ca6934c6503b6c7d881a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USIR10211570,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.7,0.738,2.0,-4.697,1.0,0.265,0.00491,1.1e-05,0.35,0.0588,171.404,4.0,,Shady Records,"C © 2002 Universal Studios, Inc., P This Compilation ℗ 2002 Shady Records/Interscope Records",6103 +6104,spotify:track:3ZfJ81zTowQHG67Xr3RUXn,Already Gone,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:5LCqrUiLJnv1RJTuwTbEA2,Internationalist,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,1998-01-01,https://i.scdn.co/image/ab67616d0000b2735cfbfbcd6a5816a82038429e,1,4,208466,https://p.scdn.co/mp3-preview/4a1a98b69903d79de3f398854e1074b7e8befb55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUPO09820088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.327,0.359,4.0,-8.448,1.0,0.0319,0.0254,4.95e-06,0.12,0.505,162.569,4.0,,Universal Music Australia Pty. Ltd.,"C © 1998 Polydor Records, P ℗ 1998 Polydor Records",6104 +6105,spotify:track:0GTK6TesV108Jj5D3MHsYb,Owner of a Lonely Heart,spotify:artist:7AC976RDJzL2asmZuz7qil,Yes,spotify:album:6nNlTIiFd3J06W0rJiiwlz,90125 (Deluxe Version),spotify:artist:7AC976RDJzL2asmZuz7qil,Yes,1983-06-01,https://i.scdn.co/image/ab67616d0000b2739d9a49f795b4340538f43435,1,1,268506,https://p.scdn.co/mp3-preview/bad9a44db930e3f283d9ca08bfe182aab326324b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USAT20702539,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,hard rock,progressive rock,rock,soft rock,symphonic rock",0.744,0.798,7.0,-5.981,1.0,0.0364,0.176,0.0037,0.26,0.898,125.059,4.0,,Rhino Atlantic,"C © 2004 Rhino Entertainment Company, a Warner Music Group company, P ℗ 2004 Rhino Entertainment Company, a Warner Music Group company",6105 +6106,spotify:track:2eD6r9UGYDNPofp3y6PfLS,Smile,spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,spotify:album:2GL5WCI7HMDmuL23hrUGK2,"Alright, Still (Deluxe)",spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,2006-07-14,https://i.scdn.co/image/ab67616d0000b2730dbc6a6ec3e90152663c5328,1,1,197026,https://p.scdn.co/mp3-preview/c1a76b6920a22d1af56494661c4b1bdfa2ba29b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAYE0600734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo mellow",0.628,0.655,5.0,-5.943,1.0,0.0259,0.00147,0.0,0.143,0.705,95.524,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",6106 +6107,spotify:track:6vgljKboue4quS4io2n9bM,If Looks Could Kill,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,spotify:album:2tbVb2SlU8ovbP2sx7CsSF,Timomatic,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,2012-08-24,https://i.scdn.co/image/ab67616d0000b2732f6060ca84e503e4e06d6284,1,2,218906,https://p.scdn.co/mp3-preview/1f3dd2cec13eaee3b98bd642cbf1a5ad42e34722?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUBM01200025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.672,0.888,11.0,-3.196,1.0,0.0568,0.0753,1.86e-06,0.352,0.562,127.003,4.0,,Sony Music Entertainment,P All tracks (P) 2012 Sony Music Entertainment Australia Pty Ltd except track 6. (P) 2011 Sony Music Entertainment Australia Pty Ltd.,6107 +6108,spotify:track:3bYCGWnZdLQjndiKogqA3G,Summer Of '69,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:1DCI0mQQdf0LYoXheONDXi,Reckless (30th Anniversary / Deluxe Edition),spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1984-11-05,https://i.scdn.co/image/ab67616d0000b273d0b17cab0d1a584d55ded42f,1,6,216053,https://p.scdn.co/mp3-preview/2300238dbef57e50bd68cec1093b30c62c86d090?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM18490006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.507,0.843,2.0,-6.137,1.0,0.0379,0.0191,0.0,0.08,0.704,139.136,4.0,,Universal Music Group,"C © 2014 A&M Records, P ℗ 2014 A&M Records",6108 +6109,spotify:track:0uySQsx5ihZcNJ7IW07PAb,Do You Want Me,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,spotify:album:0H8s4eKxfgsAWQy7uKha1w,Blacks' Magic,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,1990-01-01,https://i.scdn.co/image/ab67616d0000b273f494b25ebfabd88ea2e1c3f8,1,5,232266,https://p.scdn.co/mp3-preview/55db9776ffba0b158862ecf9a28465c00153782f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMY9000705,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop",0.899,0.458,11.0,-14.085,0.0,0.0526,0.081,1.77e-05,0.0441,0.97,121.593,4.0,,Universal Music Group,"C © 1990 The Island Def Jam Music Group, The Island Def Jam Music Group, P ℗ 1990 The Island Def Jam Music Group, The Island Def Jam Music Group",6109 +6110,spotify:track:1BfXy0gM3tmB6Jc1QdtaLj,One Life Stand,spotify:artist:37uLId6Z5ZXCx19vuruvv5,Hot Chip,spotify:album:4g9B6VXmdHhmqYhVHIXsbc,One Life Stand,spotify:artist:37uLId6Z5ZXCx19vuruvv5,Hot Chip,2010-02-01,https://i.scdn.co/image/ab67616d0000b273ed717b9fe8ead59ec2f2e600,1,4,321496,https://p.scdn.co/mp3-preview/0d94f133d86ebd5d148741f71d6144aa5a4ca317?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBAYE0902865,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance rock,electronica,indie rock,indietronica,neo-synthpop,new rave",0.781,0.702,10.0,-4.176,0.0,0.0381,0.00211,0.0427,0.0735,0.787,120.148,4.0,,Domino Recording Co,"C 2017 Domino Recording Co Ltd, P 2010 Domino Recording Co Ltd",6110 +6111,spotify:track:2ZlCGeK30BLRNSPC832pNZ,Forever (feat. Post Malone & Clever),"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:5yy76ufVriyvidNSvXlRU1","Justin Bieber, Post Malone, Clever",spotify:album:63iWSELt9V1kV6RSMxN7Ii,Changes,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2020-02-14,https://i.scdn.co/image/ab67616d0000b2737fe4a82a08c4f0decbeddbc6,1,7,219933,https://p.scdn.co/mp3-preview/01d90b9a3f4cb8b0f02c541ce770adfe22154414?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USUM72001323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,dfw rap,melodic rap,pop,rap,alabama rap",0.824,0.483,8.0,-5.746,0.0,0.08,0.538,1.49e-05,0.204,0.892,139.98,4.0,,RBMG/Def Jam,"C © 2020 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2020 Def Jam Recordings, a division of UMG Recordings, Inc.",6111 +6112,spotify:track:518x7yFVDLkbOWNH0SOe9p,When I'm Gone,spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,spotify:album:1tjE6cuUdnscgwxTt49ouH,Simple Plan,spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,2008-02-06,https://i.scdn.co/image/ab67616d0000b27391f69aa4fdb007620f43e8b6,1,1,229653,https://p.scdn.co/mp3-preview/b8285181af207268fef5d1a915e7e31aef857b84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USAT20706540,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop punk,canadian punk,canadian rock,modern rock,neon pop punk,pop punk,pop rock",0.457,0.855,7.0,-4.026,0.0,0.0472,0.00078,0.0,0.0618,0.682,161.018,4.0,,Atlantic/Lava,"C © 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",6112 +6113,spotify:track:7wGoVu4Dady5GV0Sv4UIsx,rockstar,"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:1URnnhqYAYcrqrcwql10ft","Post Malone, 21 Savage",spotify:album:4AabsQ6plH3OmdE6BWI04j,rockstar,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2017-09-15,https://i.scdn.co/image/ab67616d0000b273345f823b6c1dbd3b4cc7b382,1,1,218320,https://p.scdn.co/mp3-preview/beb04a51a925ea2ed2fb7c2363b7b3fa37ebc89b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,12,USUM71710087,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,atl hip hop,hip hop,rap",0.577,0.522,5.0,-6.594,0.0,0.0984,0.13,9.03e-05,0.142,0.119,159.772,4.0,,Universal Music Group,"C © 2017 Republic Records, a division of UMG Recordings, Inc., P ℗ 2017 Republic Records, a division of UMG Recordings, Inc.",6113 +6114,spotify:track:3KLxyswVedr0bK6wzuEmOQ,Freefall,"spotify:artist:2YuGcy0A3VKg9jRbadzoJL, spotify:artist:52IMdPUhmYfGU7daNnmHVA","POOLCLVB, DOOLIE",spotify:album:2EEceFKFuCifJZ32Wu02gm,Freefall,"spotify:artist:2YuGcy0A3VKg9jRbadzoJL, spotify:artist:52IMdPUhmYfGU7daNnmHVA","POOLCLVB, DOOLIE",2018-03-02,https://i.scdn.co/image/ab67616d0000b273f344be7083f35d3609a5350b,1,1,213054,https://p.scdn.co/mp3-preview/4845374b34a6db74faecc5feacdc155504990831?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV01800122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian house,australian alternative pop",0.847,0.739,7.0,-5.503,0.0,0.07,0.213,1.57e-05,0.134,0.465,118.052,4.0,,etcetc Music,"C 2018 etcetc Music, P 2018 etcetc Music",6114 +6115,spotify:track:0yaAFfayze82aoCTY2cxd7,Tonight Again,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:6TJFS7Mt07vt0n77cByLfT,Tonight Again,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2015-04-07,https://i.scdn.co/image/ab67616d0000b2731ad565ae9efe87d53c2bb7fe,1,1,203339,https://p.scdn.co/mp3-preview/26e6693ba0703f324f3ead47025c761759cb1072?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUBM01500110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.702,0.843,10.0,-2.403,1.0,0.144,0.0851,0.0,0.151,0.584,106.093,4.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,6115 +6116,spotify:track:5koZQ4srcAgED69crbRpPb,The Girls - Radio Edit,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,spotify:album:1fvd5x8kQ2thVFiU1HBsIJ,The Girls,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2007-06-01,https://i.scdn.co/image/ab67616d0000b2738516b13a4e3d762f833de4e3,1,1,234146,https://p.scdn.co/mp3-preview/56cc0c9c53f602ec65e38e5e6b6f9223ede2274c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,GBARL0700191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance",0.594,0.874,9.0,-4.85,1.0,0.0438,0.0274,7.49e-06,0.477,0.901,127.915,4.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (UK) Limited,6116 +6117,spotify:track:3SYfAEAIkw66szw7cFKyty,I’m Still Hot - Original,spotify:artist:4ugGMtXC28CVR5hlYJy9wV,Luciana,spotify:album:7cibzBkdJPPFpwsaOdNpy3,I'm Still Hot,spotify:artist:4ugGMtXC28CVR5hlYJy9wV,Luciana,2011-01-01,https://i.scdn.co/image/ab67616d0000b273e12a596826b25efb4f9cfc4b,1,1,186182,https://p.scdn.co/mp3-preview/917b28175f316f26e02d76f5706857f667f9d018?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USEVP1100015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.894,0.747,7.0,-5.815,1.0,0.178,0.0297,0.0117,0.149,0.818,130.064,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Audacious Records, P ℗ 2011 Audacious Records, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd",6117 +6118,spotify:track:5r35Zd5Onw3aV3Gm9XdgtI,Come As You Are,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,spotify:album:3SBQfBKAPWvCr4qse1uNis,Nirvana (International Version),spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,2002-01-01,https://i.scdn.co/image/ab67616d0000b273f118d2074e050cbc2e4533a0,1,6,219026,https://p.scdn.co/mp3-preview/7e9be2f1785c932e198f045ede7226957141f083?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19942503,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,permanent wave,rock",0.5,0.832,4.0,-6.281,0.0,0.0325,8.36e-05,0.00655,0.0924,0.553,120.066,4.0,,Universal Music Group,"C © 2002 Geffen Records Inc., P ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",6118 +6119,spotify:track:5pDmunv6G71w7NSjOPXbYw,Every Little Thing She Does Is Magic - Remastered 2003,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:2ccrabRMmY1gECUdyqblP2,Ghost In The Machine,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1981-10-02,https://i.scdn.co/image/ab67616d0000b2737693d1d810fc1bbdd70b1777,1,2,260573,https://p.scdn.co/mp3-preview/6f816f12a8d0abff7e552609d5a30d0b6be58834?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM0201127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.535,0.745,2.0,-10.123,1.0,0.0335,0.127,0.0792,0.179,0.376,163.913,4.0,,A&M,"C © 2003 A&M Records, P ℗ 2003 A&M Records",6119 +6120,spotify:track:76TZCvJ8GitQ2FA1q5dKu0,The Boxer,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,spotify:album:0JwHz5SSvpYWuuCNbtYZoV,Bridge Over Troubled Water,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,1970-01-26,https://i.scdn.co/image/ab67616d0000b273ba7fe7dd76cd4307e57dd75f,1,6,308520,https://p.scdn.co/mp3-preview/95d3a800fa9692db9ba37846b74d4b3fe113acfe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM16900831,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,melancholia,mellow gold,rock,soft rock",0.439,0.488,11.0,-14.464,1.0,0.0615,0.702,0.000339,0.16,0.629,93.017,4.0,,Columbia,"P (P) Originally released 1970. All rights reserved by Columbia Records, a division of Sony Music Entertainment",6120 +6121,spotify:track:5tU5xmAQTnmKjXxwA5R2NZ,My House,spotify:artist:4XLDU2AQL3oFnd27IMcNqY,Kids Of 88,spotify:album:67NWJ3RuWpPohz3zvJmmOb,Sugarpills,spotify:artist:4XLDU2AQL3oFnd27IMcNqY,Kids Of 88,2011-06-10,https://i.scdn.co/image/ab67616d0000b273b3242a4d94877ebc3ce8c2b4,1,5,238626,https://p.scdn.co/mp3-preview/4e67c9cdd58fbfa032e1e652fb06858dc8221b60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,NZDY11000020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.542,0.838,7.0,-3.085,0.0,0.0578,0.0025,0.0,0.256,0.924,125.036,4.0,,Dryden Street,P (P) 2010 Dryden St under exclusive licence to Sony Music Entertainment Australia Pty Ltd.,6121 +6122,spotify:track:5gTt2nqWQEVnkvwuUgcqsw,Moon River,spotify:artist:2EExdpjU4SK3xnJHO5paJf,Henry Mancini,spotify:album:5629V9qA8aZIoQ9lCFjgIS,Moon River: The Henry Mancini Collection,spotify:artist:2EExdpjU4SK3xnJHO5paJf,Henry Mancini,2009-04-30,https://i.scdn.co/image/ab67616d0000b273509f5cd8473a42304e7a121b,1,1,164986,https://p.scdn.co/mp3-preview/b796c2df1bdd15115bcaf7535380a40fd1e0e2f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USRC18805688,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soundtrack,easy listening",0.257,0.262,0.0,-15.382,1.0,0.0332,0.91,0.00164,0.126,0.0811,90.652,3.0,,Sony Music Entertainment,P This compilation (P) 2009 Sony Music Entertainment,6122 +6123,spotify:track:4cQIbDqCZrHknxlDUjRHZ0,Supersoaker,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:0cRJKK0y1sfZEqWub4dK9v,Mechanical Bull (Expanded Edition),spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2013-09-24,https://i.scdn.co/image/ab67616d0000b273d50b35057090d03bb0e759bc,1,1,230226,https://p.scdn.co/mp3-preview/0a4a88e2e3f43ff583aae338c0f84b01602451d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC11300780,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.436,0.871,9.0,-4.446,1.0,0.0384,0.00319,0.000473,0.114,0.71,138.743,4.0,,RCA/Legacy,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",6123 +6124,spotify:track:5MVujPUg2LtLSnyaYxr1GV,Calcutta,spotify:artist:2GMH35k5oLCjzYpn5HbaD8,Lawrence Welk,spotify:album:7kbE1OA1V1e0jrxbAXTS03,Tiki Party Vol. 1 / Taboo,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-11-11,https://i.scdn.co/image/ab67616d0000b273aeb39d7980740e45107c963b,1,23,132371,https://p.scdn.co/mp3-preview/8dc59e4cdba5d385ce994be28461c0385c8c59be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,QMBZ91354689,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"easy listening,polka",0.376,0.629,7.0,-8.256,1.0,0.0303,0.729,0.86,0.609,0.884,81.677,4.0,,Treasure Goldies,"C (C) 2013 Treasure Goldies, P (P) 2013 Treasure Goldies",6124 +6125,spotify:track:1EzrEOXmMH3G43AXT1y7pA,I'm Yours,spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,spotify:album:04G0YylSjvDQZrjOfE5jA5,We Sing. We Dance. We Steal Things.,spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,2008-05-12,https://i.scdn.co/image/ab67616d0000b273125b1a330b6f6100ab19dbed,1,2,242946,https://p.scdn.co/mp3-preview/0952568e496914bb61383588ac417ec70abefc1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USEE10800667,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,dance pop,neo mellow,pop",0.703,0.444,11.0,-9.331,1.0,0.0417,0.559,0.0,0.0973,0.712,150.96,4.0,,Atlantic Records/ATG,"C © 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",6125 +6126,spotify:track:1tT1tIZAINzFZyjoPKtg7C,Dammit,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:5Rb6Q94DDEPWakydob5bPp,Can't Hardly Wait,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1998-05-26,https://i.scdn.co/image/ab67616d0000b273603b20a86215fb9924572b54,1,3,166933,https://p.scdn.co/mp3-preview/574df285ab9323e94d852ab76b6aac9fc133bebf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10900654,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.347,0.975,0.0,-4.847,1.0,0.0845,1.32e-05,0.000167,0.1,0.287,110.487,4.0,,Elektra Records,"C © 1998 Columbia Pictures Industries, Inc., P ℗ 1998 Elektra Entertainment Group, A Division of Warner Communications Inc. for the United States and WEA International Inc. for the world outside of the United States.",6126 +6127,spotify:track:1L94M3KIu7QluZe63g64rv,Alive,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:5B4PYA7wNN4WdEXdIJu58a,Ten,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,1991-08-27,https://i.scdn.co/image/ab67616d0000b273d400d27cba05bb0545533864,1,3,340907,https://p.scdn.co/mp3-preview/95c625d5a50dd249d5c58aebe4baf8b6e4efa09e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USSM19100003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.284,0.875,11.0,-6.069,0.0,0.0422,0.00752,0.000461,0.402,0.595,75.009,4.0,,Epic/Legacy,P (P) 1991 Sony Music Entertainment Inc.,6127 +6128,spotify:track:1OQI6EI4P30fjCpic5Ro0j,Earthquake feat. Tinie Tempah,spotify:artist:51s3zske5aprW6tUj0oD8l,Labrinth feat. Tinie Tempah,spotify:album:2enggogQdaVXcPMw56a9jF,Stereosonic Festival Anthems 2013,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-11-21,https://i.scdn.co/image/5b0896f62eb44ea5ab417f71bfd783748db54659,1,28,216386,https://p.scdn.co/mp3-preview/8849885461a0e3c4286eced50a62c8e609de190f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBHMU1100056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.567,0.836,0.0,-4.306,0.0,0.111,0.139,0.0,0.0894,0.312,76.564,4.0,,onelove,P 2013 onelove,6128 +6129,spotify:track:2F5tgXiDQ5TiwygBfVDg8O,All I Want Is You,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:5DV76VYtjhsEh0v6KwgvY7,Rattle And Hum,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1988-10-10,https://i.scdn.co/image/ab67616d0000b273ce105c367bf077c3059fbcfe,1,17,389933,https://p.scdn.co/mp3-preview/23785830d2c375d894185af517b819e80148f9bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8890017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.239,0.442,1.0,-11.494,1.0,0.0308,0.106,0.0411,0.0738,0.4,185.723,4.0,,Universal Music Group,"C © 1988 Universal-Island Records Ltd., P ℗ 1988 Universal-Island Records Ltd.",6129 +6130,spotify:track:25ttbACknSKxdXAZchsIne,Magic Carpet Ride,spotify:artist:1WRM9i067hd2ujxxi8FI3m,Steppenwolf,spotify:album:14Gu72n79AHDrcFWJ86mdc,Born To Be Wild (Best Of....),spotify:artist:1WRM9i067hd2ujxxi8FI3m,Steppenwolf,1991-01-01,https://i.scdn.co/image/ab67616d0000b273287e2cf62977ea9cac9619aa,1,2,267933,https://p.scdn.co/mp3-preview/46f4acfeccc879951d729c37777b6c8779e69c90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16819955,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,blues rock,classic canadian rock,classic rock,hard rock,proto-metal,rock,singer-songwriter,soft rock",0.62,0.613,4.0,-15.542,0.0,0.0512,0.211,0.0379,0.112,0.795,110.262,4.0,,Universal Music Group,"C © 1991 Geffen Records, P ℗ 1991 Geffen Records",6130 +6131,spotify:track:2OlWBmSjf1aUPGLNf0UI5A,One Last Time,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:5AMOKSM1ftb3opIbGT2d4q,My Everything (Deluxe),spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2014-08-22,https://i.scdn.co/image/ab67616d0000b273be58cd5a2dbe92c2b43cc713,1,3,197266,https://p.scdn.co/mp3-preview/7f8d6fe1636508ecf636b6dc8c96f0c1a103c190?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71409723,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.628,0.593,8.0,-5.036,1.0,0.0323,0.093,1.65e-06,0.096,0.104,125.026,4.0,,Universal Music Group,"C © 2014 Republic Records, a division of UMG Recordings, Inc., P ℗ 2014 Republic Records, a division of UMG Recordings, Inc.",6131 +6132,spotify:track:6BePGk3eCan4FqaW2X8Qy3,10:35,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:45dkTj5sMRSjrmBSBeiHym","Tiësto, Tate McRae",spotify:album:77wWx9sOCJiy0wcn0P44NO,10:35,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:45dkTj5sMRSjrmBSBeiHym","Tiësto, Tate McRae",2022-11-03,https://i.scdn.co/image/ab67616d0000b273999565cd8bea3f8f0985bb31,1,1,172252,https://p.scdn.co/mp3-preview/6e88ed9108e2c0c493903a7d280183d6d6855272?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,CYA112001130,spotify:user:bradnumber1,2023-02-14T22:38:33Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance,pop",0.696,0.793,8.0,-5.733,1.0,0.097,0.0683,3.78e-06,0.18,0.698,120.003,4.0,,Atlantic Records,"C © 2022 Musical Freedom, LLC under exclusive license to Atlantic Recording Corporation for the world., P ℗ 2022 Musical Freedom, LLC under exclusive license to Atlantic Recording Corporation for the world.",6132 +6133,spotify:track:2ce7lFq7zsLdipAp6IdORb,I Made It (Cash Money Heroes),"spotify:artist:0Chxmm4XMM87mJOHvyiUzL, spotify:artist:35sCXuy5gN6Or69rZ9vqBs, spotify:artist:4pADjHPWyrlAF0FA7joK2H, spotify:artist:55Aa2cqylxrFIXC767Z865","Kevin Rudolf, Birdman, Jay Sean, Lil Wayne",spotify:album:6c8xbNiZLxqOPNieBxpnzs,I Made It (Cash Money Heroes) [Explicit Version],spotify:artist:0Chxmm4XMM87mJOHvyiUzL,Kevin Rudolf,2010-01-01,https://i.scdn.co/image/ab67616d0000b2734439f959b919279ff845c026,1,1,258813,https://p.scdn.co/mp3-preview/5e6a109cd8019f48d711204a522e533ef683a565?cid=9950ac751e34487dbbe027c4fd7f8e99,True,31,USCM51000079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,wrestling,dirty south rap,southern hip hop,dance pop,pop,pop rap,post-teen pop,hip hop,new orleans rap,pop rap,rap,trap",0.399,0.942,7.0,-2.521,1.0,0.174,0.0631,0.0,0.0909,0.6,119.65,5.0,,Cash Money,"C © 2010 Cash Money Records Inc., P ℗ 2010 Cash Money Records Inc.",6133 +6134,spotify:track:7vzjynr2iQKzH6r6QbSE8I,Tobacco Road,spotify:artist:5ZMLeokWf9ZKDStGUhokji,The Nashville Teens,spotify:album:2RYXPCYl08AMa4RwG1iNgy,Nashville Teens - The Best Of,spotify:artist:5ZMLeokWf9ZKDStGUhokji,The Nashville Teens,2008-07-11,https://i.scdn.co/image/ab67616d0000b27319efe92129f6aaf5e9a898a0,1,1,147733,https://p.scdn.co/mp3-preview/12ce5c19b8ae112db551966bd2200d0784c0f390?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBAYE6400099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.658,0.384,7.0,-11.47,1.0,0.108,0.876,1.88e-05,0.257,0.575,135.45,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",6134 +6135,spotify:track:77RLfoukJIT0TNT3RtUmam,Bop Girl,spotify:artist:2EbIuYqI8tC2H1P0GJztbK,Pat Wilson,spotify:album:1xL9zFFU0GHINdUNmM5U6o,Bop Girl,spotify:artist:2EbIuYqI8tC2H1P0GJztbK,Pat Wilson,2011-11-01,https://i.scdn.co/image/ab67616d0000b2739ef320a9f4fd9033d6a14be2,1,1,237500,https://p.scdn.co/mp3-preview/7fbbf39f9dc07dbae13a409d6998771312ff4ced?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,ushm91142677,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.859,0.61,10.0,-10.434,0.0,0.0431,0.237,0.000405,0.196,0.943,139.188,4.0,,Pat Wilson,"C 2011 Pat Wilson, P 2011 Ross Wilson Music Pty Ltd",6135 +6136,spotify:track:1JClFT74TYSXlzpagbmj0S,California Love - Original Version,"spotify:artist:1ZwdS5xdxEREPySFridCfh, spotify:artist:3GMoVpWJy4smKuxFuFTwXC, spotify:artist:6DPYiyq5kWVQS4RGwxzPC7","2Pac, Roger, Dr. Dre",spotify:album:3PO9OtQdvCDJN8zDLtZiYd,Greatest Hits,spotify:artist:1ZwdS5xdxEREPySFridCfh,2Pac,1998-01-01,https://i.scdn.co/image/ab67616d0000b273eaea3c8408d2d21c05263d56,2,6,285026,https://p.scdn.co/mp3-preview/8b9b0c462bbdc8ddd46980a3b6e169160dc7c2f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUG10702629,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,rap,west coast rap,funk,new jack swing,p funk,post-disco,quiet storm,g funk,gangster rap,hip hop,rap,west coast rap",0.767,0.856,7.0,-2.715,1.0,0.041,0.0303,1.91e-06,0.36,0.747,91.535,4.0,,2Pac Greatest Hits,"C © 1998 Death Row Records/Interscope Records, P This Compilation ℗ 1998 Death Row Records/Interscope Records",6136 +6137,spotify:track:7n4q6FdYrE0AYvBy5h4cYo,Life Goes On,spotify:artist:2d3VHzlOEwXvmBdS4pzOPL,LeAnn Rimes,spotify:album:5GIEvyzVeUKAs6Uf2EeoqD,Greatest Hits,spotify:artist:2d3VHzlOEwXvmBdS4pzOPL,LeAnn Rimes,2003-11-18,https://i.scdn.co/image/ab67616d0000b273b8a740229a85f3719d4a4c25,1,14,213360,https://p.scdn.co/mp3-preview/c17f51e204a1e6acedd0a409d13a3ba051abd8f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USCRB0201646,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,country dawn,country road",0.558,0.851,2.0,-4.561,1.0,0.106,0.174,0.0,0.553,0.85,191.964,4.0,,Curb Records,"C 2003 Curb Records, Inc., P 2003 Curb Records, Inc.",6137 +6138,spotify:track:0DnA2DyUwy0W4xMYtRxocL,Who Can It Be Now?,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,spotify:album:03RdxRparvZ2qgWFf1vGeD,Super Hits,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,2000,https://i.scdn.co/image/ab67616d0000b273bb6c7e266d0e9ed210affd48,1,1,200293,https://p.scdn.co/mp3-preview/c5fc899e1bd1cb7cabbf78948af4966f9ef68559?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,NLB638140001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,rock,soft rock",0.81,0.716,4.0,-7.392,1.0,0.0402,0.0184,1.96e-05,0.301,0.965,128.528,4.0,,Columbia,"P (P) 1981, 1982, 1984, 2000 Sony Music Entertainment (Australia) PTY. Ltd.",6138 +6139,spotify:track:72ahyckBJfTigJCFCviVN7,Don't Bring Me Down,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:1CvVSn2MtKDBR6aWMkNkem,Discovery,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1979-05-31,https://i.scdn.co/image/ab67616d0000b273c18cc9d6fcea1478b1257678,1,9,243373,https://p.scdn.co/mp3-preview/1f3ec1a218a97ea45824f96fa1850193031d36d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USSM10015734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.638,0.867,2.0,-6.469,1.0,0.0331,0.144,0.000733,0.0846,0.805,115.692,4.0,,Epic/Legacy,"P (P) 1979 Epic Records, a division of Sony Music Entertainment",6139 +6140,spotify:track:1Uc2Tg8eE2gFs9Cx2KRlTD,West End Riot,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:7E5gQ3ZRt5elxXuDUNpdq0,The Living End,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,1998-12-10,https://i.scdn.co/image/ab67616d0000b273ef4bc670221f741d0e6d9cb9,1,4,233800,https://p.scdn.co/mp3-preview/c3fbfc1218a782fa453e92fd4c56f660f204ee43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM09800003,spotify:user:bradnumber1,2021-11-20T11:25:40Z,"australian alternative rock,australian rock,australian ska",0.465,0.978,4.0,-4.172,0.0,0.0675,0.0102,2.46e-05,0.273,0.545,95.624,4.0,,RedCat Sounds,"C 1998 Redcat Sounds, P 1998 Redcat Sounds",6140 +6141,spotify:track:27BZWbka20kOIlB8Jhvzoo,Pride (In The Name Of Love),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:1WupyTEE8twuMK5iEoBcm2,The Best of 1980-1990 & B-Sides,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1998-10-01,https://i.scdn.co/image/ab67616d0000b273d24fdd83acfb78a533093dc4,1,1,228466,https://p.scdn.co/mp3-preview/48877f007520f123d51f2bd84742de45c3ec92a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8490002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.454,0.879,4.0,-5.44,1.0,0.0305,0.000861,0.00281,0.794,0.727,105.859,4.0,,Universal Music Group,"C (C) 1998 Universal-Island Records Ltd., P (P) 1998 Universal-Island Records Ltd.",6141 +6142,spotify:track:7ov1nZ2QZc3LIuCXXERZP0,Angel,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:2IU9ftOgyRL2caQGWK1jjX,Like a Virgin,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1984-11-12,https://i.scdn.co/image/ab67616d0000b27399d424b0873a9a714279a9f3,1,2,236133,https://p.scdn.co/mp3-preview/1c553ec94e18c7fffa237011de81be4ba382ac5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USWB10002747,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.754,0.618,7.0,-13.66,1.0,0.0357,0.298,0.000207,0.345,0.836,133.237,4.0,,Warner Records,"C © 1984, 2001 Warner Records Inc., P ℗ 1984 Warner Records Inc.",6142 +6143,spotify:track:7K5dzhGda2vRTaAWYI3hrb,"Just Like Fire (From the Original Motion Picture ""Alice Through The Looking Glass"")",spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:09K53TLaJZ156prccNvwuS,"Just Like Fire (From the Original Motion Picture ""Alice Through The Looking Glass"")",spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2016-04-15,https://i.scdn.co/image/ab67616d0000b2732002a63b1572e5cd031ab78f,1,1,215413,https://p.scdn.co/mp3-preview/96959f232f9a9c58355fbf440359810dab5a154f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USWD11676311,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.632,0.702,7.0,-5.92,1.0,0.148,0.0114,0.0,0.108,0.523,162.958,4.0,,RCA Records/Walt Disney Records,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",6143 +6144,spotify:track:24YvUQnuPL8gObCfSnAobH,"Hey, Soul Sister",spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:7abzxOHgW8mcecRhBzlPnw,"Save Me, San Francisco",spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2009-10-27,https://i.scdn.co/image/ab67616d0000b2734e8c26befbf8b96a522a7d1a,1,2,216773,https://p.scdn.co/mp3-preview/518c823cf0f8b862bed0fa45e34cc63db5ea58e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10904113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.677,0.89,1.0,-4.448,0.0,0.0418,0.182,0.0,0.0826,0.764,97.012,4.0,,Columbia,P (P) 2009 Sony Music Entertainment,6144 +6145,spotify:track:5LjRPKqbEt8Zv3F1fIN3Yb,Breakeven,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:5Sg0aTDFOAAv38zmJmpyMR,Breakeven,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2008-12-04,https://i.scdn.co/image/ab67616d0000b2732dc7ec009152a98cc9011004,1,1,262653,https://p.scdn.co/mp3-preview/b71065334974c4f663a14410c64932fdf6125682?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL0800147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.63,0.696,10.0,-4.505,1.0,0.0243,0.157,0.0,0.0843,0.432,94.006,4.0,,Phonogenic,P (P) 2008 Sony Music Entertainment UK,6145 +6146,spotify:track:7hR5toSPEgwFZ78jfHdANM,Half of My Heart,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:1V5vQRMWTNGmqwxY8jMVou,Battle Studies,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2009-11-13,https://i.scdn.co/image/ab67616d0000b2731e3dbe4453ed61633c472fbe,1,3,250373,https://p.scdn.co/mp3-preview/06de060bddecf7e37f6b8fa50e05171d9dac4587?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM10905701,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.681,0.593,5.0,-9.327,1.0,0.0251,0.435,0.000117,0.106,0.731,115.058,4.0,,Columbia,P (P) 2009 Sony Music Entertainment,6146 +6147,spotify:track:4mOxpj82q6n3EO7HBZCelX,Sunny Came Home,spotify:artist:0K7VN4aHxHcEb7PqkfoIVA,Shawn Colvin,spotify:album:3EZXmJz03Dj8sB3K26Gmx8,A Few Small Repairs,spotify:artist:0K7VN4aHxHcEb7PqkfoIVA,Shawn Colvin,1996-09-30,https://i.scdn.co/image/ab67616d0000b27353b24392ef405dac8c811daa,1,1,264200,https://p.scdn.co/mp3-preview/2b61611445aef0e42d6ee5791b2aa3bab8d5c10e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM19601709,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"austin singer-songwriter,ectofolk,folk,lilith,new wave pop,singer-songwriter",0.558,0.579,11.0,-8.05,0.0,0.0324,0.342,0.00831,0.0989,0.403,167.812,4.0,,Columbia,P 1996 Sony Music Entertainment Inc.,6147 +6148,spotify:track:0v1XpBHnsbkCn7iJ9Ucr1l,It's My Life,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0Q9SljCrM0CL0bR23MuP69,Crush,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2000-01-01,https://i.scdn.co/image/ab67616d0000b2737a231174875d7930de9dad58,1,1,224493,https://p.scdn.co/mp3-preview/83348d39a2fc16f67ed6724624987875c33912bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USIR20000145,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.551,0.914,0.0,-4.063,0.0,0.0465,0.0263,1.35e-05,0.347,0.543,119.994,4.0,,Island Records,"C © 2000 The Island Def Jam Music Group, P ℗ 2000 The Island Def Jam Music Group",6148 +6149,spotify:track:0ipLnUeK5PODrTKyT3wVGT,Shoop,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,spotify:album:5NcKbAFzrAJ71Pq2y4QGNC,Very Necessary,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,1993-10-12,https://i.scdn.co/image/ab67616d0000b2730cd991c8eb380b58a5b19341,1,7,248573,https://p.scdn.co/mp3-preview/4a88a15552524cf0f1a79184073de290ce60605a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWWW0126118,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop",0.939,0.68,0.0,-7.29,1.0,0.219,0.0881,0.0,0.0554,0.81,96.916,4.0,,Universal Music Group,"C © 1993 The Island Def Jam Music Group, P ℗ 1993 The Island Def Jam Music Group",6149 +6150,spotify:track:613QYxW1iLhGMNShwbPKkM,"Love Rollercoaster (From ""Beavis and Butthead Do America"")",spotify:artist:5j5s0OruSv08ITvCzE3fsm,The Funky Groove Connection,spotify:album:6KM1i9fRQAau0SxmHaC9mn,"Love Rollercoaster (From ""Beavis and Butthead Do America"")",spotify:artist:5j5s0OruSv08ITvCzE3fsm,The Funky Groove Connection,2019-03-22,https://i.scdn.co/image/ab67616d0000b273184952fba5f5d835c5d146e3,1,1,268000,https://p.scdn.co/mp3-preview/96c8632a8dc245ef76ca44206c4a575d9ec692e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,QMVRR1930011,spotify:user:bradnumber1,2022-10-20T10:31:52Z,,0.755,0.922,5.0,-4.753,1.0,0.0297,0.167,0.002,0.0521,0.655,117.057,4.0,,Small Screen Music,"C 2019 iDownload Pty Ltd, P 2019 iDownload Pty Ltd",6150 +6151,spotify:track:1VepQhbzzWcASJslLLFAI8,Push Th' Little Daisies,spotify:artist:3u1ulLq00Y3bfmq9FfjsPu,Ween,spotify:album:1VQR7mJhtJA76trx8kbnmC,Pure Guava,spotify:artist:3u1ulLq00Y3bfmq9FfjsPu,Ween,1992,https://i.scdn.co/image/ab67616d0000b2733cdc67c4a19c0dfa82a42d0a,1,5,169960,https://p.scdn.co/mp3-preview/ccfb32c19822fa63dc6905b1d70990b28634d3b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10000218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alternative rock,0.713,0.691,6.0,-7.103,1.0,0.0558,0.176,1.47e-05,0.0546,0.967,156.003,4.0,,Chocodog Records,"C (C) 2014 Chocodog Records, P (P) 2014 Chocodog Records",6151 +6152,spotify:track:2J80PUT14AwxtrJgpFdqVn,Moonshadow,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,spotify:album:3ds29BDzL13tt6Xy9tuFal,The Very Best Of Cat Stevens,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,2000-01-01,https://i.scdn.co/image/ab67616d0000b273891a521c254c2ace996efacb,1,11,170960,https://p.scdn.co/mp3-preview/968c225f9ae24a43c217c57eee8c95d0a0a778ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAAN7100032,spotify:user:bradnumber1,2023-01-31T06:12:21Z,"british folk,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.64,0.291,2.0,-11.28,1.0,0.0317,0.724,3.63e-05,0.122,0.527,130.746,4.0,,A&M,"C © 2000 Universal Island Records Ltd. A Universal Music Company., P This Compilation ℗ 2000 Universal Island Records Ltd. A Universal Music Company.",6152 +6153,spotify:track:3vaBTaDimZdK0KqSRmCFZ1,Young Love,spotify:artist:5ZEAzHE2TzAwUcOj6jMIgf,Donny Osmond,spotify:album:29wHd2bW5SC6uDNXvk6dYQ,Very Best Of The Osmonds,spotify:artist:5fU6lODhpw3GEGGJuaDprR,The Osmonds,1996,https://i.scdn.co/image/ab67616d0000b273d912a247dab784a4b9f69a9a,1,5,145053,https://p.scdn.co/mp3-preview/f5474fd3b6038d7a10eca5472a7d1c3c9a835229?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USPR37307329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.578,0.525,3.0,-6.903,1.0,0.0273,0.653,7.87e-05,0.173,0.464,99.123,4.0,,Polydor Records,"C © 1996 PolyGram Records Inc., P This Compilation ℗ 1973 PolyGram Records Inc.",6153 +6154,spotify:track:5L5jUZZVgPxIEOpP0wknZV,Dream Lover,spotify:artist:1mBRVjszEFRT7OhukskPnX,Glenn Shorrock,spotify:album:2mszO0d6bcRlmPl7aC9IkQ,Meanwhile,spotify:artist:1mBRVjszEFRT7OhukskPnX,Glenn Shorrock,2007-03-31,https://i.scdn.co/image/ab67616d0000b273871eeeba88a6cd21c97b65b2,1,13,238320,https://p.scdn.co/mp3-preview/1182f95705387b492393420cd30af16ec01aed3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00730100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.663,0.623,0.0,-4.842,1.0,0.0388,0.536,0.0,0.128,0.861,114.835,4.0,,Bloodlines,"C 2007 Bloodlines, P 2007 Bloodlines",6154 +6155,spotify:track:2GieQwEoirGPxp273YJdV6,Somebody's Crying,spotify:artist:7290H8m1Dwt8G7jm1y9CQx,Chris Isaak,spotify:album:2Rsr3itpw3oPPf3kA31g63,Forever Blue,spotify:artist:7290H8m1Dwt8G7jm1y9CQx,Chris Isaak,1995,https://i.scdn.co/image/ab67616d0000b2733048498d72b047b6de10e716,1,2,166466,https://p.scdn.co/mp3-preview/d68fc2b586c2756f99fcd9dbe2ba6508418f2731?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USRE19500352,spotify:user:bradnumber1,2022-08-31T00:24:04Z,mellow gold,0.539,0.585,5.0,-8.049,1.0,0.0288,0.245,0.0373,0.257,0.699,114.361,4.0,,Universal Music Australia Pty. Ltd.,"C © 2012 Wicked Game Records, P ℗ 2012 Wicked Game Records",6155 +6156,spotify:track:3J53fjO5QazzELp1cxCuho,A Little Bitty Tear,spotify:artist:0MHgLfmQdutffmvWe5XBTN,Burl Ives,spotify:album:0XMaMML6zxW0zgu5gUH6Ui,The Versatile Burl Ives!,spotify:artist:0MHgLfmQdutffmvWe5XBTN,Burl Ives,2014-01-01,https://i.scdn.co/image/ab67616d0000b2731b5169c3bbf3e99b229e14ee,1,9,123480,https://p.scdn.co/mp3-preview/42f8d9fbe2929d3674bf9c6484787e4ca2473aa7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,FR2X41451973,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,american folk revival",0.461,0.279,0.0,-14.539,1.0,0.0431,0.893,0.000393,0.262,0.856,143.211,4.0,,"Folk, Blues & Beyond","C 2014 Salt & Pepper, P 2014 Salt & Pepper",6156 +6157,spotify:track:3AInBEwANMFfwhpUcUechO,The Last Farewell,spotify:artist:6pgfx4K1p1kT0RewXjmLfk,Roger Whittaker,spotify:album:4mLl8N7qHbTgTlyjZOav2N,Roger Whittaker - The Best Of (1967 - 1975),spotify:artist:6pgfx4K1p1kT0RewXjmLfk,Roger Whittaker,1985-01-01,https://i.scdn.co/image/ab67616d0000b2738142bb6c18f81afb3268c47f,1,16,220600,https://p.scdn.co/mp3-preview/17ed03143b1496d7819ca59a402bcef23c202187?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAKW0300926,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic schlager,easy listening",0.452,0.344,8.0,-13.903,1.0,0.0315,0.213,0.03,0.115,0.459,90.101,4.0,,EMI,"C © 1983 Record Supervision Ltd., P This Compilation ℗ 1967 Record Supervision Ltd.",6157 +6158,spotify:track:0LUdGEOj20wBg5M9BHrFTl,GIRL LIKE ME,"spotify:artist:1yxSLGMDHlW21z4YXirZDS, spotify:artist:0EmeFodog0BfCgMzAIvKQp","Black Eyed Peas, Shakira",spotify:album:0izn9CaTChFNFGtq0hQSMX,GIRL LIKE ME,"spotify:artist:1yxSLGMDHlW21z4YXirZDS, spotify:artist:0EmeFodog0BfCgMzAIvKQp","Black Eyed Peas, Shakira",2020-12-04,https://i.scdn.co/image/ab67616d0000b2739d140a2b049ba7b8caf414b4,1,1,222522,https://p.scdn.co/mp3-preview/1b9da493a0e56f0e91be6dbf7cfc9ae5c36a53a8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,44,USSM12003440,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,colombian pop,dance pop,latin pop,pop",0.965,0.485,2.0,-8.784,1.0,0.191,0.0206,0.0237,0.0655,0.312,124.025,4.0,,Epic,"P (P) 2020 BEP Music, LLC, under exclusive license to Epic Records, a division of Sony Music Entertainment",6158 +6159,spotify:track:1LlIqoHhTYC7Pd8dFMLzzx,Everyday Is A Winding Road,spotify:artist:4TKTii6gnOnUXQHyuo9JaD,Sheryl Crow,spotify:album:49fcfLcicBYSqitKzXDJpN,Sheryl Crow,spotify:artist:4TKTii6gnOnUXQHyuo9JaD,Sheryl Crow,1996-09-24,https://i.scdn.co/image/ab67616d0000b2733d25734a08d98aad9f7446a1,1,8,256826,https://p.scdn.co/mp3-preview/aa6b05dfb05dab3ef604b45cbaa08e355d59ebe6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19604368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,new wave pop,permanent wave,pop rock,singer-songwriter",0.598,0.668,6.0,-8.312,1.0,0.0408,0.0393,4.68e-05,0.219,0.733,112.928,4.0,,Universal Music Group,"C © 1996 UMG Recordings, Inc., P ℗ 1996 UMG Recordings, Inc.",6159 +6160,spotify:track:78JmElAFmrPNhLjovDR9Jm,All Day and All of the Night,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:08G3mGQXuHItbbsFAz50gJ,Kinks (Deluxe),spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,1964-10-02,https://i.scdn.co/image/ab67616d0000b273718bbc2828082b2f45c12dbe,1,19,141506,https://p.scdn.co/mp3-preview/8686780c85ed4c4d0cbfd95f1be5d581a33463c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAJE6400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.551,0.861,7.0,-7.839,1.0,0.0797,0.259,4.71e-06,0.0545,0.724,136.918,4.0,,Castle Communications,"C © 2004 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1998 Sanctuary Records Group Ltd., a BMG Company",6160 +6161,spotify:track:60wwxj6Dd9NJlirf84wr2c,Clarity,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:7qRll6DYV06u2VuRPAVqug","Zedd, Foxes",spotify:album:7juWTdmjo0vYywWu8HiQxs,Clarity,spotify:artist:2qxJFvFYMEDqd7ui6kSAcq,Zedd,2012-01-01,https://i.scdn.co/image/ab67616d0000b273941dd3b3343d9cb9329d37bf,1,5,271426,https://p.scdn.co/mp3-preview/b2fd1208b83b14121c261cfc1e74ec4439a16c8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USUM71210662,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,electropop,metropopolis,uk pop",0.509,0.781,8.0,-3.48,1.0,0.072,0.0398,0.0,0.0749,0.176,128.0,4.0,,Interscope,"C © 2012 Interscope Records, P ℗ 2012 Interscope Records",6161 +6162,spotify:track:6P4DcGPAqhBz8HrTrwPNNh,Cheap Thrills,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:6fxXmfKU38xUS4dnkjDxAf,This Is Acting,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2016-01-29,https://i.scdn.co/image/ab67616d0000b273b7e6776d121e0d485ebe5737,1,6,211666,https://p.scdn.co/mp3-preview/9143b32f6e1928b204708ce605e0ba42dc84b7c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11502935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.628,0.698,6.0,-5.608,0.0,0.105,0.0472,0.00152,0.0907,0.729,89.975,4.0,,Inertia Music,"C 2016 Monkey Puzzle under exclusive license to Inertia Music, P 2016 Monkey Puzzle under exclusive license to Inertia Music",6162 +6163,spotify:track:6ug9F5NRw1yHFf1spU8l4n,Under The Milky Way,spotify:artist:2ZfogSsOWP4mVfEqfpLXCt,The Church,spotify:album:3wbfqXwS4roxzXSpy8Q8jI,Starfish,spotify:artist:2ZfogSsOWP4mVfEqfpLXCt,The Church,1988-02-16,https://i.scdn.co/image/ab67616d0000b273dec26cc93858cf983fcd8966,1,2,298426,https://p.scdn.co/mp3-preview/587169b5b3561d16a0836c57f4445595af6b0ff1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUEI10700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,dream pop,new romantic,new wave",0.549,0.878,9.0,-3.985,0.0,0.0288,0.0429,0.175,0.118,0.481,136.0,4.0,,EMI Music Australia,"C © 2011 EMI Recorded Music Australia Pty Ltd., P ℗ 2011 The Church Pty Limited",6163 +6164,spotify:track:0hsrqeudoR9Kymm7RNiVoq,Amazing,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:1Ys4joU6TESJ4eh00lvUoI,Patience,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,2004-03-15,https://i.scdn.co/image/ab67616d0000b2732d7847e92ea987a81adb699f,1,2,265826,https://p.scdn.co/mp3-preview/0c4b1b3ea9d9bee2a4932603063c8695fccda536?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBBBN0300681,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.805,0.754,10.0,-6.825,0.0,0.0394,0.0884,1.77e-06,0.117,0.88,128.429,4.0,,Sony Music UK,"P (P) 2004 G.K. Panayiotou, under exclusive licence to Sony Music Entertainment (UK) Ltd.",6164 +6165,spotify:track:1wdQiMzfdRiufsCKWH2anl,(Lover) You Don't Treat Me No Good,"spotify:artist:7hSWOsjh4uFNAS6c3gcm25, spotify:artist:1aTjB39eq6n3HcA8MbGpGp","D. Pritzker, Sonia Dada",spotify:album:5pvGQ3nohEcX2yJ1hAyX7u,Sonia Dada,spotify:artist:1aTjB39eq6n3HcA8MbGpGp,Sonia Dada,1992-09-22,https://i.scdn.co/image/ab67616d0000b273c437abc92168fa494f170faa,1,2,247626,https://p.scdn.co/mp3-preview/c954bf445924233f584ee0344c4b0133efda766f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USCM60259002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.886,0.311,11.0,-12.405,1.0,0.113,0.188,0.0,0.0778,0.812,112.389,4.0,,Calliope,C 1992 Calliope Entertainment,6165 +6166,spotify:track:2GBYWH1FHy0MjKD0ep2t2Y,"Endless Love - From ""The Endless Love"" Soundtrack","spotify:artist:3gMaNLQm7D9MornNILzdSl, spotify:artist:3MdG05syQeRYPPcClLaUGl","Lionel Richie, Diana Ross",spotify:album:69CqA30FbyDY14jrG1t73s,To Love Again (Expanded Edition),spotify:artist:3MdG05syQeRYPPcClLaUGl,Diana Ross,1981-02-17,https://i.scdn.co/image/ab67616d0000b273eb62b47bd7d341834ac80532,1,19,265986,https://p.scdn.co/mp3-preview/a4cad6e43a6a9e5122bd458f103b9e229e1c2e37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18190008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"soft rock,adult standards,disco,motown,quiet storm,soft rock,soul",0.21,0.336,10.0,-9.28,1.0,0.0292,0.657,0.000129,0.134,0.212,186.773,4.0,,Universal Music Group,"C © 2003 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2003 Universal Motown Records, a division of UMG Recordings, Inc.",6166 +6167,spotify:track:175XqvnOl9knVKiDQsrgKh,Live Louder,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,spotify:album:0RsPmRzTbarQCXBgLSW5Ox,Yours,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,2016-01-01,https://i.scdn.co/image/ab67616d0000b273c911d9842660be1965a41daf,1,3,189640,https://p.scdn.co/mp3-preview/628e31e1f64f7c68c9f05c16cd74a53c650589a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,AUBM01400299,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.743,0.705,0.0,-3.005,1.0,0.0667,0.00419,0.0,0.42,0.878,117.046,4.0,,DNA Songs/Sony Music Entertainment,P (P) 2015 DNA Songs/ Sony Music Entertainment Australia Pty Ltd.,6167 +6168,spotify:track:3VqeTFIvhxu3DIe4eZVzGq,Butter,spotify:artist:3Nrfpe0tUJi4K4DXYWgMUX,BTS,spotify:album:2BDhPi2XCYujYxU6VM0QaD,Butter,spotify:artist:3Nrfpe0tUJi4K4DXYWgMUX,BTS,2021-05-21,https://i.scdn.co/image/ab67616d0000b273ed656680374294d5217193fa,1,1,164441,https://p.scdn.co/mp3-preview/4d63fe1638aa41592706f835bd076443b09d8afa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM6MZ2156864,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"k-pop,k-pop boy group,pop",0.759,0.459,8.0,-5.187,1.0,0.0948,0.00323,0.0,0.0906,0.695,109.997,4.0,,BIGHIT MUSIC / HYBE,"C (C) 2021 BIGHIT MUSIC / HYBE, P (P) 2021 BIGHIT MUSIC / HYBE",6168 +6169,spotify:track:4tCWWnk3BXinf7FllmSyHW,Everybody Hurts,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,spotify:album:006Qsi10luS9xEBAcIWGTf,Automatic For The People (U.S. Version),spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,1992-10-05,https://i.scdn.co/image/ab67616d0000b273338214ba1ebe35d388f0d589,1,4,318240,https://p.scdn.co/mp3-preview/23bc35da41a99d4f3a686ac24d4da5305a4cdfc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB19901548,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,athens indie,permanent wave,rock",0.254,0.383,2.0,-8.036,1.0,0.0282,0.614,0.0237,0.172,0.178,188.2,3.0,,Warner Bros.,"C 1992 R.E.M. / Athens Ltd, P 1992 R.E.M. / Athens Ltd",6169 +6170,spotify:track:7iXYRR70wewzVYzWScm99j,"Gonna Fly Now - Theme From ""Rocky""",spotify:artist:272ygo5fv9cYsiCLcV0HV2,Bill Conti,spotify:album:6GfrOuXqJrJjcldIstEz6A,Rocky (Original Motion Picture Score),spotify:artist:272ygo5fv9cYsiCLcV0HV2,Bill Conti,1976-10-14,https://i.scdn.co/image/ab67616d0000b27379abdfdbe029582f32fe0b94,1,1,167533,https://p.scdn.co/mp3-preview/dc00ff44d62b2b50aae2a07e902beef6d7c24493?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USNPD0600582,spotify:user:bradnumber1,2021-08-08T09:26:31Z,theme,0.434,0.722,0.0,-6.388,1.0,0.0351,0.462,0.773,0.05,0.453,95.637,4.0,,Capitol Records,"C © 2015 United Artists Corporation, P ℗ 2015 United Artists Corporation",6170 +6171,spotify:track:5z3ZDMP02xF33yCvPFnct3,Don't Know Much (with Aaron Neville),"spotify:artist:1sXbwvCQLGZnaH0Jp2HTVc, spotify:artist:57ALvbCBaCkNlgTOSiUPdT","Linda Ronstadt, Aaron Neville",spotify:album:3f8tUCF1ThwqtNdifZiExM,Cry Like a Rainstorm Howl Like the Wind,spotify:artist:1sXbwvCQLGZnaH0Jp2HTVc,Linda Ronstadt,1989,https://i.scdn.co/image/ab67616d0000b273b4a5b99fbcdc9ae83a7a2126,1,5,211973,https://p.scdn.co/mp3-preview/7248777c17c762393242606b32d73be9f7afb80e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USEE10170735,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,folk,folk rock,heartland rock,mellow gold,singer-songwriter,soft rock",0.401,0.285,11.0,-11.005,1.0,0.0327,0.657,1.13e-05,0.158,0.267,130.465,4.0,,Iconic Artists Group,"C © 1989 Iconic Artists Group, P ℗ 1989 Iconic Artists Group",6171 +6172,spotify:track:0e7ipj03S05BNilyu5bRzt,rockstar (feat. 21 Savage),"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:1URnnhqYAYcrqrcwql10ft","Post Malone, 21 Savage",spotify:album:6trNtQUgC8cgbWcqoMYkOR,beerbongs & bentleys,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2018-04-27,https://i.scdn.co/image/ab67616d0000b273b1c4b76e23414c9f20242268,1,6,218146,https://p.scdn.co/mp3-preview/beb04a51a925ea2ed2fb7c2363b7b3fa37ebc89b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,80,USUM71710087,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,atl hip hop,hip hop,rap",0.585,0.52,5.0,-6.136,0.0,0.0713,0.124,7.75e-05,0.131,0.129,159.798,4.0,,Republic Records,"C © 2018 Republic Records, a division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",6172 +6173,spotify:track:5OHNmFCzM6S52aIlkhg6JP,Desire,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:5DV76VYtjhsEh0v6KwgvY7,Rattle And Hum,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1988-10-10,https://i.scdn.co/image/ab67616d0000b273ce105c367bf077c3059fbcfe,1,3,179360,https://p.scdn.co/mp3-preview/632cc3206c4aec8c8181f2208d02bdd95707038a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8890003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.49,0.827,8.0,-9.481,1.0,0.0482,0.000212,0.00406,0.112,0.626,108.577,4.0,,Universal Music Group,"C © 1988 Universal-Island Records Ltd., P ℗ 1988 Universal-Island Records Ltd.",6173 +6174,spotify:track:2julHzta3pq6E1ugxyvsbj,It Must Have Been Love,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:2XUnzfH9UxXfubUQaD60bh,The Ballad Hits,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,2002-11-04,https://i.scdn.co/image/ab67616d0000b273651422f85c10e2ea3bc66741,1,2,259866,https://p.scdn.co/mp3-preview/361fd8946cd20110a0267af87ef5b98ac1c6e7a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAMA8777131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.591,0.7,5.0,-5.606,1.0,0.0261,0.177,0.00027,0.149,0.682,80.673,4.0,,Capitol Records,"C (C) 2002 EMI Music Sweden AB, P (P) (C) 2002 EMI Music Sweden AB. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by EMI Catalog,",6174 +6175,spotify:track:747eWJy8c3u09N30NSqSTp,I'll Show You,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,2,199946,https://p.scdn.co/mp3-preview/f5fd6d68c571597ef01e9c5f271123f97ea121ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516758,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.361,0.608,9.0,-6.757,0.0,0.098,0.05,7.96e-05,0.183,0.0789,191.812,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",6175 +6176,spotify:track:15OCqNPYoLziEAsbVnqRj5,Good Without,spotify:artist:3GxKJzJK4LpsYGXQrw77wz,Mimi Webb,spotify:album:1TushXSMlKucNp0KziSAU4,Good Without,spotify:artist:3GxKJzJK4LpsYGXQrw77wz,Mimi Webb,2021-03-26,https://i.scdn.co/image/ab67616d0000b2736b44f0f5a3e3b56f89e5083b,1,1,182121,https://p.scdn.co/mp3-preview/5fe9a26b8bc88985db8750d20f75514be54ea591?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USSM12101148,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,gen z singer-songwriter,uk pop",0.616,0.576,11.0,-5.495,0.0,0.0532,0.0723,0.0,0.375,0.269,89.962,4.0,,Epic,"P (P) 2021 Epic Records, a division of Sony Music Entertainment",6176 +6177,spotify:track:3aImJnJlAgcE7bJ1NxthGt,Trick Me,spotify:artist:0IF46mUS8NXjgHabxk2MCM,Kelis,spotify:album:7zesXMFikT4DdgkklIk3Jz,Tasty,spotify:artist:0IF46mUS8NXjgHabxk2MCM,Kelis,2003-12-05,https://i.scdn.co/image/ab67616d0000b273e928de086eef7d3491b4390b,1,2,206106,https://p.scdn.co/mp3-preview/cf0a3940c8ada02231cc8af365968404bfbae5ef?cid=9950ac751e34487dbbe027c4fd7f8e99,True,2,USAR10301288,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,neo soul,urban contemporary",0.97,0.72,1.0,-3.347,0.0,0.149,0.0369,0.000389,0.326,0.962,107.17,4.0,,Virgin Records,"C © 2003 Arista Records Ltd., P ℗ 2003 Arista Records Ltd.",6177 +6178,spotify:track:3JhwxN5fPtpWh8O4qCBjYO,Moody River,spotify:artist:7fmKtIgmxqNEKjATioVNsu,Pat Boone,spotify:album:0hyzSiJY6YjK7ryjlF9F6i,The Gold Collection,spotify:artist:7fmKtIgmxqNEKjATioVNsu,Pat Boone,1964-01-01,https://i.scdn.co/image/ab67616d0000b2732f9949fe965ab9d5d2eff955,1,4,153586,https://p.scdn.co/mp3-preview/ce315673b67d5e5fd3f53c7bc85ce5c1592a7e18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,US2R30610086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,rock-and-roll,rockabilly",0.616,0.728,5.0,-7.365,0.0,0.0312,0.581,4.73e-05,0.102,0.685,139.428,4.0,,The Gold Label,C (C) 2006 The Gold Label,6178 +6179,spotify:track:0GNrYhpyAOSixpwAOMD6VF,Don't You Wanna Feel,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:4KNj6KCc6cx2bKpkkGJQgl,Better In The Dark,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2007-10-13,https://i.scdn.co/image/ab67616d0000b2732202250be60af68299b09014,1,2,196093,https://p.scdn.co/mp3-preview/a5d1b805b8748439cdfb082bc5ced13b04e0239a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUBM00700634,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.405,0.761,9.0,-4.904,1.0,0.0835,0.000262,1.78e-05,0.593,0.635,170.119,4.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,6179 +6180,spotify:track:7o9uu2GDtVDr9nsR7ZRN73,Time After Time,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,spotify:album:1FvdZ1oizXwF9bxogujoF0,She's So Unusual,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,1983-10-14,https://i.scdn.co/image/ab67616d0000b27352f532df7ba3269b0242fed9,1,4,241333,https://p.scdn.co/mp3-preview/36937f5e84f627d9b6b2380cb715e6ead0ecf52b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USSM18300650,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,permanent wave,soft rock",0.726,0.449,0.0,-9.206,1.0,0.0286,0.487,1.34e-06,0.0824,0.294,130.388,4.0,,Portrait,P (P) 1983 Sony Music Entertainment Inc.,6180 +6181,spotify:track:12X975TabaOePM1hEBTiu6,Remedy,spotify:artist:5krkohEVJYw0qoB5VWwxaC,The Black Crowes,spotify:album:6V5oOvWQrsiRM9gKEKTjOo,Croweology,spotify:artist:5krkohEVJYw0qoB5VWwxaC,The Black Crowes,2010-08-03,https://i.scdn.co/image/ab67616d0000b273595e53f0a3d2f1803bf5f9bc,1,3,333280,https://p.scdn.co/mp3-preview/619b81fc921e36c263fa1bbaa58824dea3423a9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USME31000525,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,electric blues,hard rock,jam band,rock,southern rock",0.463,0.834,8.0,-10.94,1.0,0.0471,0.00366,0.00815,0.304,0.768,163.408,4.0,,Silver Arrow Records,C (C) 2010 Silver Arrow Records,6181 +6182,spotify:track:7LytWfv69NzPIojDdGex0X,I Can't Stay Mad at You,spotify:artist:5b2OzvLaL6nyxw5pbVbSdy,Skeeter Davis,spotify:album:0qiT0Yzyqwe884pSk75BU6,Let Me Get Close To You (With Bonus Tracks),spotify:artist:5b2OzvLaL6nyxw5pbVbSdy,Skeeter Davis,2008-04-16,https://i.scdn.co/image/ab67616d0000b273bb0aaf566ffcd74d9f0fecd0,1,5,126080,https://p.scdn.co/mp3-preview/e986288a0b9095d2c7c823f1709715f4494093d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USRN19400416,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.543,0.763,1.0,-5.097,1.0,0.0327,0.621,1.78e-05,0.221,0.816,120.62,4.0,,Legacy Recordings,P (P) 2008 Sony Music Entertainment,6182 +6183,spotify:track:1BPybPVkDfUjFDvqG04l58,Breathe (feat. Sean Paul) - Rap Version,"spotify:artist:6vytZ677lz4LzCrUDcDokM, spotify:artist:3Isy6kedDrgPYoTS1dazA9","Blu Cantrell, Sean Paul",spotify:album:6AnYRqJHyeEzt2zviudTMH,Bittersweet,spotify:artist:6vytZ677lz4LzCrUDcDokM,Blu Cantrell,2003-06-11,https://i.scdn.co/image/ab67616d0000b2732bd281188f485ea182f3bd84,1,5,228000,https://p.scdn.co/mp3-preview/92612be9ed58226fe70afeb2aca2f00c95ca2122?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USAR10201522,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,urban contemporary,dance pop,dancehall,pop,pop rap",0.8,0.663,2.0,-3.832,1.0,0.0324,0.048,0.0,0.252,0.472,91.934,4.0,,Arista,"P (P) 2003 Arista Records, Inc.",6183 +6184,spotify:track:5DCA1FOUDBURlRTNg4ganf,Let Me Blow Ya Mind,"spotify:artist:4d3yvTptO48nOYTPBcPFZC, spotify:artist:4yiQZ8tQPux8cPriYMWUFP","Eve, Gwen Stefani",spotify:album:5z1Su2S6WXspjhLNBkAScm,Scorpion,spotify:artist:4d3yvTptO48nOYTPBcPFZC,Eve,2001-01-01,https://i.scdn.co/image/ab67616d0000b27326a7daf57c62b26114706f38,1,4,229933,https://p.scdn.co/mp3-preview/53db459e35419d85ead0512b5144df7e1e176f6b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10110155,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,hip pop,philly rap,r&b,urban contemporary,dance pop,pop",0.905,0.559,1.0,-4.237,0.0,0.11,0.249,0.0,0.0646,0.887,90.031,4.0,,Universal Music Group,"C © 2001 Ruff Ryders/Interscope Records, P ℗ 2001 Ruff Ryders/Interscope Records",6184 +6185,spotify:track:0uUNN1nSoUx1A4fkDCWDQ7,So Am I,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,spotify:album:2XvFk3xrG7dV6GhqcJSQHX,So Am I,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,2019-03-07,https://i.scdn.co/image/ab67616d0000b273b8dcf98474721fe404ad780d,1,1,183026,https://p.scdn.co/mp3-preview/e07386f9f699fbb4175b9e96002431c0823fe667?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USAT21900569,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.682,0.656,6.0,-4.67,1.0,0.0435,0.0737,0.0,0.353,0.607,130.089,4.0,,Atlantic Records,"C © 2019 Atlantic Recording Corporation / Artist Partner Group, Inc. for the United States and WEA International for the world. A Warner Music Group Company., P ℗ 2019 Atlantic Recording Corporation / Artist Partner Group, Inc. for the United States and WEA International for the world. A Warner Music Group Company.",6185 +6186,spotify:track:4TngvmKrWchN2SoL72eudc,Perfect,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,spotify:album:5SdzhuocmUcxShe2vD9Rki,Somewhere In The Real World,spotify:artist:5M0fvL9GMc2zTuIIQwresj,Vanessa Amorosi,2008-05-24,https://i.scdn.co/image/ab67616d0000b2738716f3f2ad24512646941f52,1,2,286560,https://p.scdn.co/mp3-preview/81df8606c4e03f49299268dd28091dfa3eea4032?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70700760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.634,0.877,6.0,-3.207,1.0,0.0323,0.0139,7.62e-05,0.123,0.404,108.998,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Universal Music Australia Pty Ltd., P ℗ 2008 Universal Music Australia Pty Ltd.",6186 +6187,spotify:track:0upgxxew2mVAEctrz08jnf,Love Foolosophy - Radio Edit,spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,spotify:album:6cLYs4e403jQk6PJ8PG9rs,A Funk Odyssey,spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,2001-08-29,https://i.scdn.co/image/ab67616d0000b273909ebb0c355f14d0ee7f9974,1,5,224493,https://p.scdn.co/mp3-preview/97d19ce51e8e4c7cac308fed48f760e3543d87ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBBBN0102282,spotify:user:bradnumber1,2024-05-07T06:50:24Z,dance pop,0.799,0.69,11.0,-4.998,0.0,0.0749,0.0119,2.87e-05,0.133,0.896,129.297,4.0,,Epic,P (P) 2001 Sony Music Entertainment (UK) Ltd.,6187 +6188,spotify:track:2WpCr1ls4bjL54NAcN5DAA,Finally,spotify:artist:5UoVLCWzOKMIJ9iioof9OD,CeCe Peniston,spotify:album:3r4au6XCgz7VqRPBZsyFfR,Dance #1's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b2731d82bc5df3fca92e3fe2dabb,1,9,249066,https://p.scdn.co/mp3-preview/2c9736d38ee824a721fe7a754d8908c7ea284656?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USAM19204256,spotify:user:bradnumber1,2021-08-08T09:26:31Z,diva house,0.759,0.718,11.0,-10.279,0.0,0.0365,0.00453,6.63e-06,0.0333,0.874,120.123,4.0,,Universal Music Group International,"C © 2007 Universal International Music B.V., P This Compilation ℗ 2007 Universal International Music B.V.",6188 +6189,spotify:track:58rLiCJKx0wlhdZky9qtQV,Gimme! Gimme! Gimme! - Sgt Slick's Melbourne Recut - Edit,spotify:artist:64rqoVt9ShRtUCU0bPKQll,Sgt Slick,spotify:album:2DMbvZzGUufnIP40z99KJY,Gimme! Gimme! Gimme!,spotify:artist:64rqoVt9ShRtUCU0bPKQll,Sgt Slick,2020-02-07,https://i.scdn.co/image/ab67616d0000b273622e0be07a0cca28e50fc06e,1,1,182500,https://p.scdn.co/mp3-preview/0124ad7f31fd4e37ef9e8c0cb60276a9edd6aacb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUVC02006231,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.632,0.797,2.0,-3.176,0.0,0.0437,0.00551,0.00249,0.0808,0.529,123.057,4.0,,Vicious,"C 2020 Vicious, a division of Vicious Recordings Pty Ltd, P 2020 Vicious, a division of Vicious Recordings Pty Ltd",6189 +6190,spotify:track:0eqH0ALoDQevq59YcQ53KE,Hollaback Girl,spotify:artist:4yiQZ8tQPux8cPriYMWUFP,Gwen Stefani,spotify:album:34y7m68F7rN9ou6m5GWohR,Love. Angel. Music. Baby.,spotify:artist:4yiQZ8tQPux8cPriYMWUFP,Gwen Stefani,2004-11-12,https://i.scdn.co/image/ab67616d0000b273f049fc9322f0c93646cdcc77,1,3,199853,https://p.scdn.co/mp3-preview/d1804eaf5e9bdcbcb6f546b31de4544c99385866?cid=9950ac751e34487dbbe027c4fd7f8e99,True,70,USIR10400847,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.926,0.916,10.0,-2.221,0.0,0.0929,0.35,6.01e-06,0.0234,0.904,110.009,4.0,,Interscope,"C © 2004 Interscope Records, P ℗ 2004 Interscope Records",6190 +6191,spotify:track:12mKqRbJCyz42AhjTvauHd,I Like Love (I Love Love) - Radio,spotify:artist:7IVNy1O72ZhnPrY8OgsQQW,Solitaire,spotify:album:0a5qaqgYFKeCCzMW0Ukjh0,I Like Love (I Love Love),spotify:artist:7IVNy1O72ZhnPrY8OgsQQW,Solitaire,2003,https://i.scdn.co/image/ab67616d0000b2736024b2fd7dede4f03a919aed,1,1,229506,https://p.scdn.co/mp3-preview/81ba8bd0d04974202273d6a2b88d970a9ac8281d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUXN20903353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.719,0.846,7.0,-3.693,1.0,0.117,0.00194,0.128,0.0747,0.812,128.015,4.0,,Central Station Records,"C 2003 Oxyd Records under exclusive license to Central Station Records, P 2003 Oxyd Records under exclusive license to Central Station Records",6191 +6192,spotify:track:3UL6Lzsocv9Ucizgzid2B0,We like to Party! (The Vengabus),spotify:artist:0cwmNvclzPd8mQnoHuIksj,Vengaboys,spotify:album:5t02mTYT9ks9sOC1ihea4a,Greatest Hits!,spotify:artist:0cwmNvclzPd8mQnoHuIksj,Vengaboys,2009-12-11,https://i.scdn.co/image/ab67616d0000b27354be522e5e1814efa54a31b3,1,1,222458,https://p.scdn.co/mp3-preview/3e58ec0bb474e323b57291f25fc726cedbba2dca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLC529811130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop",0.785,0.931,8.0,-4.813,1.0,0.0465,0.0152,0.641,0.046,0.969,135.993,4.0,,Breakin' Records/Violent Music BV,"C 2000 Breakin’ Records/Violent Music B.V., P 2000 Breakin’ Records/Violent Music B.V.",6192 +6193,spotify:track:4aiLpwwZw5Ek9KkBMnt6Zu,Should've Been Me,"spotify:artist:1bT7m67vi78r2oqvxrP3X5, spotify:artist:77DAFfvm3O9zT5dIoG0eIO, spotify:artist:62DmErcU7dqZbJaDqwsqzR","Naughty Boy, Kyla, Popcaan",spotify:album:3RyD8XbLMkLxvZCvtpkzFm,Should've Been Me,spotify:artist:1bT7m67vi78r2oqvxrP3X5,Naughty Boy,2016-11-18,https://i.scdn.co/image/ab67616d0000b273f293ec37fceb4dc6114eb7de,1,1,244041,https://p.scdn.co/mp3-preview/bf2dd278189499ecf06b57ab2bb34321af9c528f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71606091,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"uk contemporary r&b,uk funky,dancehall,jamaican hip hop,reggae fusion,traphall",0.579,0.808,2.0,-5.414,1.0,0.182,0.0174,0.0,0.284,0.679,183.92,4.0,,Universal Music Group,"C © 2016 Naughty Boy, under exclusive license to Virgin Records Ltd, P ℗ 2016 Naughty Boy, under exclusive license to Virgin Records Ltd",6193 +6194,spotify:track:7juKRN2L6qObUme9rTOpnp,Sweet Lullaby,spotify:artist:6Xe4WwiYhssiZXHBTWAoNL,Deep Forest,spotify:album:3UxniveUW91iV7WcODwHAk,Deep Forest,spotify:artist:6Xe4WwiYhssiZXHBTWAoNL,Deep Forest,2017-01-17,https://i.scdn.co/image/ab67616d0000b273628bb063d83d91c2a864ec4b,1,2,233824,https://p.scdn.co/mp3-preview/01c8163aa15cc38881f9961264a1ae2394e3e7a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEYOK1703950,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.566,0.531,11.0,-16.375,0.0,0.0413,0.427,0.0196,0.13,0.548,175.965,4.0,,Record Union,"C 2017 Emm sarl, P 2017 Emm sarl",6194 +6195,spotify:track:2bbeNsFmjZqdoDhjLsKNWe,Bailamos,spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,spotify:album:183XphT974zDxwM5QxETET,Enrique,spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,1999-11-23,https://i.scdn.co/image/ab67616d0000b273f3dc548292cbf807527b9309,1,10,214066,https://p.scdn.co/mp3-preview/e156a800b29a839478cb6619e064ae63a59579c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USIR19915208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,latin pop,mexican pop",0.627,0.888,9.0,-4.523,0.0,0.0388,0.0528,0.00237,0.136,0.591,99.905,4.0,,Interscope,"C © 1999 Interscope Records, P ℗ 1999 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",6195 +6196,spotify:track:6cpk00i5TxCqSeqNi2HuIe,One More Night,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:6ijGiBcBfUwkoyHn5VUHU2,Overexposed Track By Track,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2012-01-01,https://i.scdn.co/image/ab67616d0000b273fc8633e22a7dba6aab817bff,1,2,219546,https://p.scdn.co/mp3-preview/360b014557b4207b39da6a84b6023dd87fcd77ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USUM71203514,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.716,0.821,5.0,-3.435,0.0,0.0314,0.0558,0.0,0.0844,0.618,92.997,4.0,,Interscope Records*,"C © 2012 A&M/Octone Records, P ℗ 2012 Interscope Records",6196 +6197,spotify:track:1MX6kqZ8FOht5UnQuPl6Jj,I Want It All - Single Version,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:7kiDOzNkoKCEgqGZrpPrej,The Miracle (Deluxe Edition 2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1989-05-22,https://i.scdn.co/image/ab67616d0000b2732fcad2af6e3d43006c6f42c4,2,1,242093,https://p.scdn.co/mp3-preview/69dfb1068737d1ed7d010c5e0574a45c562708cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBUM71029624,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.406,0.847,11.0,-5.705,0.0,0.0482,0.0249,3.01e-06,0.375,0.379,92.245,4.0,,EMI,"C © 2011 Queen Productions Ltd. / Raincloud Productions Ltd., P ℗ 2011 Queen Productions Ltd. / Raincloud Productions Ltd.",6197 +6198,spotify:track:5lA6mFOvaiienokVbTZEQx,Mambo No. 5 (A Little Bit of...),spotify:artist:46lnlnlU0dXTDpoAUmH6Qx,Lou Bega,spotify:album:2ZYW7Gnq62sNuZi1hDqgwC,King of Mambo,spotify:artist:46lnlnlU0dXTDpoAUmH6Qx,Lou Bega,2002-05-31,https://i.scdn.co/image/ab67616d0000b273ab480fe5878e1ca3a00b718d,1,1,219600,https://p.scdn.co/mp3-preview/c98bff86083944b2b50af1b5dfb04279d5342cde?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,DEH259900010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,latin pop,0.607,0.802,5.0,-6.849,0.0,0.403,0.107,0.0,0.305,0.901,174.201,4.0,,Ariola Express,P (P) 2002 BMG,6198 +6199,spotify:track:2MOIJRW2BLmfpoe5MCg9kd,I'm Coming Home - Single Version,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,spotify:album:0gPa2i2Tb3WAaizBLiW3B5,Gold (1965 - 1975),spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,2005-01-01,https://i.scdn.co/image/ab67616d0000b2736209e56e8d8dec3776319ace,1,17,186786,https://p.scdn.co/mp3-preview/3d802dc81a93ea88fdcfc685105a4128d82fece7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF076700510,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion",0.267,0.501,4.0,-7.98,1.0,0.0326,0.644,0.000771,0.0526,0.511,171.683,4.0,,Universal/Island Def Jam,"C © 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc.",6199 +6200,spotify:track:3ZVrELQ8ncJNY0K6oWgHSB,Love Not Lovers,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:3W9NClLDhTHyRmy8ZLfoJf,Freedom Child,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2017-09-01,https://i.scdn.co/image/ab67616d0000b2735409d6da4f0a9aa86edd4ef4,1,9,224200,https://p.scdn.co/mp3-preview/554acbabf6c074e2a4dc6c4aefe4a3da1a8921df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBARL1701337,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.658,0.531,7.0,-7.759,1.0,0.0242,0.715,2.38e-06,0.208,0.662,97.658,4.0,,Columbia,P (P) 2017 Sony Music Entertainment UK Limited,6200 +6201,spotify:track:5up9KPZw2576erDQ3xCmlc,Boppin' the Blues,spotify:artist:67dnqvT66VC7F7EEMbhfWS,Blackfeather,spotify:album:3w429Qp8bdNe55VCzKPLNu,Boppin' the Blues (Live),spotify:artist:67dnqvT66VC7F7EEMbhfWS,Blackfeather,1972-12-01,https://i.scdn.co/image/ab67616d0000b2731d46f6b546f50e11ec58dba5,1,9,192093,https://p.scdn.co/mp3-preview/0de84f0eda4bc8ba44efff039d763588e03fd17c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA2P1878309,spotify:user:bradnumber1,2021-08-08T09:26:31Z,psychedelic blues-rock,0.591,0.871,0.0,-6.38,1.0,0.039,0.497,0.005,0.0471,0.965,153.785,4.0,,Laneway Music,"C 1972 Laneway Music, P 1972 Laneway Music",6201 +6202,spotify:track:06Hdbxh6NCy6TIhjdXTchB,Headlights (feat. Ilsey),"spotify:artist:3t5xRXzsuZmMDkQzgOX35S, spotify:artist:2ZKzqJz3pPfWKVRgz9b39j","Robin Schulz, Ilsey",spotify:album:2ryym6yEc6r3ZuigHBDr1A,Headlights (feat. Ilsey),"spotify:artist:3t5xRXzsuZmMDkQzgOX35S, spotify:artist:2ZKzqJz3pPfWKVRgz9b39j","Robin Schulz, Ilsey",2015-04-03,https://i.scdn.co/image/ab67616d0000b2731c04acf8c8569af558777fb8,1,1,209208,https://p.scdn.co/mp3-preview/111e0cf465a46206fe1c61a2ba8fe18a367d0b29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,DEA621500407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep euro house,deep house,edm,german dance,pop dance,tropical house",0.597,0.685,11.0,-6.371,1.0,0.0367,0.0245,0.000335,0.182,0.369,122.002,4.0,,Tonspiel,"C © 2015 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company, P ℗ 2015 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company",6202 +6203,spotify:track:11lw4bWbmxWIETHitBU0Gc,Blood on the Dance Floor,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:0RNsFWWdiz1rrdLI1pwbvJ,BLOOD ON THE DANCE FLOOR/ HIStory In The Mix,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1997-05-11,https://i.scdn.co/image/ab67616d0000b273983d03d4dee6600fb095a9e6,1,1,253000,https://p.scdn.co/mp3-preview/4c0db6bf3f8eaa08b26477f3abf87524f884125f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM19700290,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.807,0.741,1.0,-4.472,1.0,0.083,0.0135,0.0316,0.06,0.558,108.989,4.0,,Epic,"P 1995, 1997 MJJ Productions, Inc. WARNING: All rights reserved. Unauthorized duplication is a violation of applicable laws.",6203 +6204,spotify:track:3yZNKN3r1USoCVij9VDSh6,Rule The World - Radio Edit,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,spotify:album:7tU9I1v08hhpQUavJjCwDS,Rule The World,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,2007-01-01,https://i.scdn.co/image/ab67616d0000b2735abe345103205d560ec345a2,1,1,237760,https://p.scdn.co/mp3-preview/22c874253a4a372fdd3d31712eb3f843ffaf6b6d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBUM70706956,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop,talent show",0.357,0.774,2.0,-4.226,1.0,0.034,0.0376,0.0,0.348,0.348,164.054,4.0,,Polydor Records,"C © 2007 Polydor Ltd. (UK), P ℗ 2007 Polydor Ltd. (UK)",6204 +6205,spotify:track:2QdbP8eBAmM9eyrlugPS2T,I've Got a Little Something for You,spotify:artist:2AFkXuExrw9XcAtzFARn8e,MN8,spotify:album:3ChG0pQjLzXun4DNbqnDfp,90s R&B,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-09-26,https://i.scdn.co/image/ab67616d0000b273defddcc1c5b525859b81ebc8,1,47,220213,https://p.scdn.co/mp3-preview/95934eac13edec005b56a43fea30a7f6d7b432aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,GBBBN9500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new jack swing,0.66,0.871,7.0,-8.279,1.0,0.0396,0.0652,0.0,0.339,0.74,101.829,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment,6205 +6206,spotify:track:4gMgiXfqyzZLMhsksGmbQV,"Another Brick in the Wall, Pt. 2",spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,spotify:album:5Dbax7G8SWrP9xyzkOvy2F,The Wall,spotify:artist:0k17h0D3J5VfsdmQ1iZtE9,Pink Floyd,1979-11-30,https://i.scdn.co/image/ab67616d0000b2735d48e2f56d691f9a4e4b0bdf,1,5,238746,https://p.scdn.co/mp3-preview/73d913b1a9cfa64fda1f7d04d7bb16345fa0aac4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBN9Y1100099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,progressive rock,psychedelic rock,rock,symphonic rock",0.693,0.394,0.0,-15.882,1.0,0.0428,0.0782,0.000694,0.247,0.721,104.114,4.0,,Pink Floyd Records,"P (P) 2016 The copyright in this sound recording is owned by Pink Floyd Music Ltd., marketed and distributed by Sony Music Entertainment",6206 +6207,spotify:track:2WRPCPMu1Qadq0J7Af8aCC,A Hundred Pounds Of Clay - 1995 Digital Remaster,spotify:artist:6I7tqjEzznFPrardDfvsvq,Gene McDaniels,spotify:album:2MZI44uUGjAPHIJd2olyQH,Best Of Gene McDaniels,spotify:artist:6I7tqjEzznFPrardDfvsvq,Gene McDaniels,1995-01-01,https://i.scdn.co/image/ab67616d0000b2732a12e6e65f87589ff34c6e0b,1,1,143600,https://p.scdn.co/mp3-preview/b329a4e5ee18e1b6fe7097626d959291ae5a16cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USEM39500295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.725,0.374,0.0,-8.018,1.0,0.0386,0.577,0.0,0.107,0.82,128.569,4.0,,Capitol Records,"C © 1995 Capitol Records Inc., P This Compilation ℗ 1995 Capitol Records Inc.",6207 +6208,spotify:track:7s5CzyssGLbQSD3z9KZF3a,Never Be Amazing,spotify:artist:0jlaKVJh79ZLDp5h9Uab2P,David Franj,spotify:album:0P4YVR58RYbi4Wj0faClXD,"Wrong Place, Wrong Time",spotify:artist:0jlaKVJh79ZLDp5h9Uab2P,David Franj,2003,https://i.scdn.co/image/ab67616d0000b2736e63fe64d8fc6454f8ffb6ab,1,1,285666,https://p.scdn.co/mp3-preview/35d12908620df7277c92676e16c2949c3c262c3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,TCACN1614664,spotify:user:bradnumber1,2023-01-31T06:16:23Z,,0.584,0.751,6.0,-5.992,1.0,0.0251,0.000852,0.000401,0.0779,0.532,103.947,4.0,,Standard Records,"C 2003 Standard Records, P 2003 Standard Records",6208 +6209,spotify:track:7JFysVNd8IeMpKLt4SEjN4,God Gave Rock 'N' Roll To You II,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,spotify:album:1R9CcOLvDk0DSdTVPv9KLE,Revenge,spotify:artist:07XSN3sPlIlB2L2XNcTwJw,KISS,1992-05-19,https://i.scdn.co/image/ab67616d0000b2734c5301daa0aed8031488e62c,1,5,320203,https://p.scdn.co/mp3-preview/de10441614b5a292015497688716a2bd743ce8d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG19290005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,hard rock,rock",0.444,0.735,4.0,-9.74,1.0,0.0526,0.112,0.0,0.637,0.347,145.244,4.0,,Universal Music Group,"C © 1992 Kiss Organization, Ltd, P ℗ 1992 The Island Def Jam Music Group",6209 +6210,spotify:track:00cxhG668jV6gU6VK2FUVI,Acceptable in the 80's,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,spotify:album:5gDkjyJBK8VLZjKqqUd79K,I Created Disco,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2007-06-18,https://i.scdn.co/image/ab67616d0000b273d0b33add0e39952e5e721226,1,5,333680,https://p.scdn.co/mp3-preview/9a0565d0c3d87bbb5a65c0dd6e95c701dc768aab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBARL0602038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance",0.787,0.808,7.0,-5.454,1.0,0.0511,0.0143,0.257,0.0466,0.942,127.99,4.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (UK) Limited,6210 +6211,spotify:track:4ObePnl5sf02pKfYUeGpkp,Sand in My Shoes,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,spotify:album:7HlZFlk0jJq3Bb03AOyMTE,Life For Rent,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,2003,https://i.scdn.co/image/ab67616d0000b273d41b79f27ef8d8df5a191219,1,8,299173,https://p.scdn.co/mp3-preview/51cde8e1ddf91002b4c4848ee575743bfae70340?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBBXH0300042,spotify:user:bradnumber1,2022-12-21T10:16:33Z,"dance pop,europop,lilith,neo mellow,pop rock",0.633,0.809,11.0,-6.702,1.0,0.0317,0.114,0.000102,0.111,0.267,125.953,4.0,,Sony BMG Music UK,P (P) 2008 Sony BMG Music Entertainment (UK) Limited,6211 +6212,spotify:track:0PkBTqRtN25z3oKasWoKlj,Only the Lonely,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:5txtL5NwxbzS5ENtNEWGpS,Sings Lonely and Blue,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,1961,https://i.scdn.co/image/ab67616d0000b273ad7b6ec702c5f75075c66d48,1,1,145533,https://p.scdn.co/mp3-preview/f8d5eb4c955a9e5339b1361cccb07b42fd096601?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM10602989,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.57,0.529,5.0,-10.769,1.0,0.028,0.377,0.00509,0.203,0.934,123.273,4.0,,Legacy Recordings,P Originally released 1960. All rights reserved by Sony Music Entertainment,6212 +6213,spotify:track:2wTm8PctkzjPVJW2dAjsQj,A World Without Love - 2002 Remaster,spotify:artist:6lHC2EQMEMZiEmSfFloarn,Peter And Gordon,spotify:album:4tbBthCq16aPiOjpo5E9qv,Peter And Gordon Plus,spotify:artist:6lHC2EQMEMZiEmSfFloarn,Peter And Gordon,1964-01-01,https://i.scdn.co/image/ab67616d0000b2733ad8cf1824eb89bacce96f25,1,18,175200,https://p.scdn.co/mp3-preview/0982afe81cf2821a78288fad815a9b529fecfef4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,GBAYE0902661,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,british blues,british invasion",0.404,0.818,4.0,-7.461,1.0,0.122,0.143,0.00135,0.97,0.548,136.86,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",6213 +6214,spotify:track:0YYg6U1Yrd4UjnG5iVhiXh,Missing Piece,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:6HQ54O9WPAWQS5gNtS1YOw,Missing Piece,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2021-05-21,https://i.scdn.co/image/ab67616d0000b27362f1ce2663a8c7957efd2ef9,1,1,217408,https://p.scdn.co/mp3-preview/cb7d72af0bf11805fffdfa5eb69f4c3d86e74a19?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USAT22102087,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.633,0.843,0.0,-5.676,1.0,0.046,0.0142,4.84e-06,0.113,0.748,101.982,4.0,,Liberation Records,"C 2021 Liberation Records, P 2021 Liberation Records",6214 +6215,spotify:track:3M1aZaO65nz2yuA5g8LIVQ,If I Ain’t Got You - Live,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:2H4DCvJiZknLngsD2Yqf6k,Hands All Over - Deluxe,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2010,https://i.scdn.co/image/ab67616d0000b27386498c6e8ee965fa665a9c3d,1,18,240786,https://p.scdn.co/mp3-preview/f0215e1a1b26209b6f5141165fcf2f8e958d39c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USUM71020134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.502,0.412,3.0,-8.262,1.0,0.027,0.596,0.0,0.0969,0.221,114.344,3.0,,Interscope Records*,"C © 2011 A&M/Octone Records, P ℗ 2011 Interscope Records",6215 +6216,spotify:track:6pxWv6GV35VGmcPf5dh6CH,Proud Mary,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:5pCRW9AT4BgoMOS52pRoJq,Bayou Country (Expanded Edition),spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1969-01-05,https://i.scdn.co/image/ab67616d0000b2731afccd261170f1d8f3cadb3d,1,6,187213,https://p.scdn.co/mp3-preview/03aa4bfe5f055f98f51a8286b19d24051099e3a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USC4R0817594,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.699,0.641,2.0,-7.564,1.0,0.0289,0.13,0.000218,0.0601,0.728,120.745,4.0,,Craft Recordings,"C © 2008 Concord Music Group, Inc., P ℗ 2008 Concord Music Group, Inc.",6216 +6217,spotify:track:714hLg9B5c440rHGzsR74P,Stand By You,spotify:artist:16dHCueD31uV6lKt0w8cRX,Marlisa,spotify:album:476YUY7T4IoP7S5vpSn5SJ,Stand By You,spotify:artist:16dHCueD31uV6lKt0w8cRX,Marlisa,2014-10-20,https://i.scdn.co/image/ab67616d0000b2739549ae30a73db3e482594daa,1,1,192106,https://p.scdn.co/mp3-preview/d15408a4a79c2f197d159df2a1ec7a94b9b6fc31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUBM01400673,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.457,0.873,7.0,-2.091,1.0,0.278,0.27,0.0,0.327,0.614,171.73,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,6217 +6218,spotify:track:0E3MAqx9ZyMvymwpuPnJNV,The Reeling,spotify:artist:7gjAu1qr5C2grXeQFFOGeh,Passion Pit,spotify:album:4iaO0b0rnbBmE4QHM0EYbH,Manners,spotify:artist:7gjAu1qr5C2grXeQFFOGeh,Passion Pit,2009,https://i.scdn.co/image/ab67616d0000b273049ea6f324aaeb08ac6a70ef,1,4,287906,https://p.scdn.co/mp3-preview/fc96bd9060ec9456d4682ffe9e9f2ba7924c949a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10901009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,indietronica,modern rock,neo-synthpop,shimmer pop",0.601,0.774,8.0,-5.585,1.0,0.0698,0.000366,0.00102,0.0852,0.774,111.992,4.0,,Columbia,"P (P) 2009, 2010 frenchkiss records under exclusive license to Sony Music Entertainment",6218 +6219,spotify:track:4oVqFBvyYFzT5ZhNpmMRJA,Never Say Never,"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0xOeVMOz2fVg5BJY3N6akT","Justin Bieber, Jaden",spotify:album:4RBUKb2z07u5as5z0Pn7iw,Never Say Never - The Remixes,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2011-01-01,https://i.scdn.co/image/ab67616d0000b273858eb7d6fceeec4905395199,1,1,227853,https://p.scdn.co/mp3-preview/80b1163aebd72becd14aaceac90626152dea9469?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71015391,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,pop rap,rap",0.74,0.801,2.0,-5.129,1.0,0.0735,0.0174,0.0,0.282,0.654,97.01,4.0,,Universal Music Group,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",6219 +6220,spotify:track:6see4CbvkzRHElFZHpW7Di,Sometimes,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,spotify:album:5On5KkGWU5cpkAoGQchjm6,Alex Lloyd,spotify:artist:1aVud1rCHS8xrpDjI7zEUy,Alex Lloyd,2005-10-09,https://i.scdn.co/image/ab67616d0000b2737afbed4abea556e71a7aea6e,1,6,258346,https://p.scdn.co/mp3-preview/5975eb4df80ff2c056492474c3bbf3f72704c550?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUSM00500161,spotify:user:bradnumber1,2021-10-21T07:10:56Z,"australian alternative rock,australian rock",0.433,0.436,9.0,-6.481,1.0,0.0264,0.0857,0.0,0.168,0.196,101.199,4.0,,Epic,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,6220 +6221,spotify:track:0CRxGsJrwOMQUuTr4yT5mX,Why,spotify:artist:5zNOI87gG4RttFmYAZWaxQ,Frankie Avalon,spotify:album:1mh6ZNXSK0kCLebYxFXTSO,Beach Party,spotify:artist:5zNOI87gG4RttFmYAZWaxQ,Frankie Avalon,2013-12-04,https://i.scdn.co/image/ab67616d0000b273e1658430e8e657f6080840f4,1,8,157520,https://p.scdn.co/mp3-preview/e12928ee18e80c4636364c27f0ab4e4f1b07ef92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,DELJ81352635,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,easy listening,rock-and-roll,rockabilly",0.51,0.349,5.0,-8.677,1.0,0.0264,0.762,0.0,0.13,0.586,94.267,4.0,,Desert Sands Music,"C 2013 Desert Sands Music, P 2013 Desert Sands Music",6221 +6222,spotify:track:26s79pNvksAh8tlEembKm3,"The Island, Pt. II (Dusk)",spotify:artist:7MqnCTCAX6SsIYYdJCQj9B,Pendulum,spotify:album:3XtEGVx9uh7J46nBzEc1VS,Immersion,spotify:artist:7MqnCTCAX6SsIYYdJCQj9B,Pendulum,2010-05-21,https://i.scdn.co/image/ab67616d0000b27330f8e0f777376780c4077507,1,9,249853,https://p.scdn.co/mp3-preview/c6ee8dd50a435daae78f8a149027b2865c7b2891?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAHT1000130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,dancefloor dnb,drum and bass",0.672,0.968,9.0,-3.371,0.0,0.119,1.25e-05,0.754,0.29,0.176,125.983,4.0,,WM UK,"C © 2010 Warner Music UK Limited, P ℗ 2010 Warner Music UK Limited",6222 +6223,spotify:track:0Si5kJtH34NRIHDDovl2Qp,Place Your Hands,spotify:artist:191Koh7PSIi28IrGAGoINO,Reef,spotify:album:1lFjDLdcOpor9FL9Q04oVj,Glow,spotify:artist:191Koh7PSIi28IrGAGoINO,Reef,1997-01-01,https://i.scdn.co/image/ab67616d0000b273b8849220809fe987eecf0351,1,1,218426,https://p.scdn.co/mp3-preview/31b6a61f8044a7619af751e7da70b763eaf81462?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBBBL9600127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,britpop,0.507,0.978,2.0,-4.521,1.0,0.0864,0.0303,0.0,0.238,0.535,109.369,4.0,,Epic,P (P) 1997 Sony Music Entertainment UK Limited,6223 +6224,spotify:track:4sutLmjkVKRN6pOAMo2joC,"Tom's Diner - 7"" Version","spotify:artist:2rGm8R7YDTbqDCVlNssQyL, spotify:artist:3X0tJzVYoWlfjLYI0Ridsw, spotify:artist:4a09epliVikRqsBczNwZb2, spotify:artist:1VOvPysGbgHhsfKA6NaKnl","DNA, Suzanne Vega, Neal Slateford, Nick Batt",spotify:album:7dC869HdAWI9T2jmNy7zqO,The Best Of Suzanne Vega - Tried And True,spotify:artist:3X0tJzVYoWlfjLYI0Ridsw,Suzanne Vega,1998-01-01,https://i.scdn.co/image/ab67616d0000b273d87668810cd3f6d77285c9ca,1,2,227866,https://p.scdn.co/mp3-preview/b89387075711416204b92aab73421fae19a02e30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAM19104302,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,lilith,new romantic,new wave pop,permanent wave,singer-songwriter",0.863,0.452,6.0,-10.839,0.0,0.0678,0.0376,0.0215,0.0532,0.544,99.102,4.0,,A&M,"C © 1998 A&M Records, P This Compilation ℗ 1998 A&M Records",6224 +6225,spotify:track:5CvWCItJ13iDRH2bEZhtjy,Believer,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:42w25uAncdyETcTJyOV16K,T. R. U. T. H.,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2020-10-16,https://i.scdn.co/image/ab67616d0000b27331c4d69ad8350750f8d2bedd,1,2,225493,https://p.scdn.co/mp3-preview/6469caba967e679ee1caccba24bb422dd358cb99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUBM02000455,spotify:user:bradnumber1,2022-02-04T23:24:39Z,australian pop,0.376,0.505,9.0,-5.534,1.0,0.0353,0.296,0.0,0.0846,0.299,177.794,3.0,,Sony Music Entertainment,P (P) 2020 Sony Music Entertainment Australia Pty Ltd,6225 +6226,spotify:track:2GWSva6MTRfsBLuBH5s2mF,The Magic Friend,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,spotify:album:31ZELjZPFpr5326F1uojYm,Unlimited Hits & Remixes,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,2014-05-05,https://i.scdn.co/image/ab67616d0000b273a8440fea5eb100ae2a5d4458,1,10,225001,https://p.scdn.co/mp3-preview/6db58a9a0a350061d47d0c3cb93c4e79a306d69f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BEAA19505015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,hip house",0.635,0.882,8.0,-12.814,1.0,0.0439,0.00533,0.0364,0.34,0.89,127.834,4.0,,Byte Records,"C 2014 BYTE Records, P 2014 BYTE Records",6226 +6227,spotify:track:0aOkjSqYLGDljwtUNvAnoS,Silver Lady,spotify:artist:2eFkm34OMSYRUwP4RAtXaT,David Soul,spotify:album:6rjlNCw55OD6a6cVxMjD2Q,Playing to an Audience of One,spotify:artist:2eFkm34OMSYRUwP4RAtXaT,David Soul,1977-01-01,https://i.scdn.co/image/ab67616d0000b27322509230d3506864e3404f1d,1,1,224426,https://p.scdn.co/mp3-preview/78856a85bb5dafcf5aea0c79b50186f28664895d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,NLG620401609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,soft rock",0.715,0.494,11.0,-12.807,1.0,0.0294,0.36,9.22e-05,0.0736,0.768,111.268,4.0,,David Soul,"C (C) 1977 David Soul, P (P) 1977 David Soul",6227 +6228,spotify:track:5pDM1xfBg3IL1yMvroLW88,I Dig Rock and Roll Music - 2004 Remaster,spotify:artist:6yrBBtqX2gKCHCrZOYBDrB,"Peter\, Paul and Mary",spotify:album:14Qo0TZ3M82PC4EFTt39X0,"The Very Best of Peter, Paul and Mary",spotify:artist:6yrBBtqX2gKCHCrZOYBDrB,"Peter\, Paul and Mary",2005-08-23,https://i.scdn.co/image/ab67616d0000b2732cfb2e0ebce5717447deb069,1,17,151613,https://p.scdn.co/mp3-preview/cd827e7704190c742bae4e47f12df15f116ea7fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USWB10302516,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"american folk revival,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.692,0.413,2.0,-11.91,1.0,0.0422,0.118,0.0,0.305,0.744,121.77,4.0,,Rhino/Warner Records,"C © 2005 Warner Records Inc. Manufactured & Marketed by Rhino Entertainment Co., P ℗ 2005 Warner Records Inc. Manufactured & Marketed by Rhino Entertainment Co.",6228 +6229,spotify:track:0HxW0WWidM937oF7IpWERb,Burning Love,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:3X3rFfVKCW58sKMO0UXkwO,The Essential Elvis Presley,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2007,https://i.scdn.co/image/ab67616d0000b2738194c9102e2703a6620d3c95,2,16,176413,https://p.scdn.co/mp3-preview/79a642602ddcf881b429756329c746177b4ec405?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USRC10200076,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.646,0.935,11.0,-6.356,0.0,0.0356,0.107,0.000187,0.31,0.972,143.016,4.0,,SBME Strategic Marketing Group,P (P) 2007 Sony Music Entertainment,6229 +6230,spotify:track:1UREw2MCfU0xwBzCAjxlUD,Scars,spotify:artist:4RddZ3iHvSpGV4dvATac9X,Papa Roach,spotify:album:25wlsi7SWD8mFKxaEWGYuL,Getting Away With Murder,spotify:artist:4RddZ3iHvSpGV4dvATac9X,Papa Roach,2004-01-01,https://i.scdn.co/image/ab67616d0000b2739d8c8d4e72cab2f00e0686f5,1,8,208186,https://p.scdn.co/mp3-preview/3529ed158223eb291c0a226aea78b2e7b5963be8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USDW10400812,spotify:user:bradnumber1,2021-11-17T22:19:54Z,"alternative metal,nu metal,rap metal,rap rock,rock",0.384,0.921,11.0,-3.334,1.0,0.055,0.0948,0.0,0.168,0.471,89.922,4.0,,Geffen,"C © 2004 Geffen Records, P ℗ 2015 Geffen Records",6230 +6231,spotify:track:29o94oYvBeiqAxo5yq3n6H,My Home Town,spotify:artist:7ceUfdWq2t5nbatS6ollHh,Paul Anka,spotify:album:51ex1k5MqBIbC77AVl77JU,His Big 15 Plus 2,spotify:artist:7ceUfdWq2t5nbatS6ollHh,Paul Anka,2006-01-20,https://i.scdn.co/image/ab67616d0000b273acbac052acd08b8c8fb79e29,1,1,153444,https://p.scdn.co/mp3-preview/9f9961b294bd78c7ddff55265f81d931a605ee82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,ZA42A1706668,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,easy listening,rock-and-roll",0.698,0.512,9.0,-10.782,1.0,0.0303,0.721,0.0,0.056,0.97,117.453,4.0,,TP4 Music,"C 2017 TP4 Music, P 2017 TP4 Music",6231 +6232,spotify:track:44aN5xKL3kGHvQ5bXVk6B8,Ghost Town,spotify:artist:6prmLEyn4LfHlD9NnXWlf7,Adam Lambert,spotify:album:3kaQUt8Mp906u1fI0LDqO6,The Original High (Deluxe Version),spotify:artist:6prmLEyn4LfHlD9NnXWlf7,Adam Lambert,2015-06-12,https://i.scdn.co/image/ab67616d0000b2737700824398c798dd7c88142b,1,1,208330,https://p.scdn.co/mp3-preview/efb8e4229b4c71cfdb8ee97799f54549cc054fee?cid=9950ac751e34487dbbe027c4fd7f8e99,True,60,USWB11504265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,idol,pop,post-teen pop",0.703,0.736,4.0,-5.709,0.0,0.046,0.186,1.92e-05,0.174,0.274,119.955,4.0,,Warner Records,"C © 2015 Warner Records Inc., P ℗ 2015 Warner Records Inc.",6232 +6233,spotify:track:76ZSMRBWSHWJx4RsXAZYa8,Radio Mix,spotify:artist:5gGw9VqMAvnDtAChDepwQ9,F.C.B,spotify:album:1ySFieJMlbZ38YI2sf0QfD,Excalibur 2000,spotify:artist:5gGw9VqMAvnDtAChDepwQ9,F.C.B,1998,https://i.scdn.co/image/ab67616d0000b273bac1faad79cf779f609d16a2,1,1,239226,https://p.scdn.co/mp3-preview/02e23504fddd2f5689ac8fcc6ed284212c9505cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,AUAM10600056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.474,0.994,11.0,-8.175,1.0,0.0752,0.00677,0.783,0.264,0.255,163.115,4.0,,Colossal Records,C (C) 1998 Colossal Records,6233 +6234,spotify:track:6zb3XRdAQvq93mxS4iGM9S,Feel This Moment (feat. Christina Aguilera),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS","Pitbull, Christina Aguilera",spotify:album:3zDXeAmrZkjvWsQqa8niwc,Global Warming (Deluxe Version),spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2012-11-16,https://i.scdn.co/image/ab67616d0000b273b7c01ad5c9836e918fd08e3d,1,3,229506,https://p.scdn.co/mp3-preview/58932b753febc8e84183b9d702fe794d8956efc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USRC11201328,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,dance pop,pop",0.668,0.759,7.0,-3.589,1.0,0.156,0.0334,0.0,0.204,0.539,135.955,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",6234 +6235,spotify:track:6wjSNO6uJYlgbbfauyWhiw,Wind Of Change,spotify:artist:27T030eWyCQRmDyuvr1kxY,Scorpions,spotify:album:4mGV3pZqcrUk0OSC8HBT96,Crazy World,spotify:artist:27T030eWyCQRmDyuvr1kxY,Scorpions,1990-01-01,https://i.scdn.co/image/ab67616d0000b273d915bccb4b86a59ddf257585,1,4,313226,https://p.scdn.co/mp3-preview/04cc7f2a90a36b38f927320700a00f5010c808c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG19090037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,german hard rock,german metal,german rock,hard rock,rock",0.453,0.543,0.0,-10.106,1.0,0.0366,0.297,0.0,0.0928,0.282,151.362,4.0,,Universal Music Group,"C © 1990 The Island Def Jam Music Group, P ℗ 1990 The Island Def Jam Music Group",6235 +6236,spotify:track:43DeSV93pJPT4lCZaWZ6b1,The Boys Are Back In Town,spotify:artist:6biWAmrHyiMkX49LkycGqQ,Thin Lizzy,spotify:album:6Cf545T4jkaiyvMnTRPOB2,Jailbreak (Deluxe Edition),spotify:artist:6biWAmrHyiMkX49LkycGqQ,Thin Lizzy,1976,https://i.scdn.co/image/ab67616d0000b273e8f69ab903901064b1f19249,1,6,266720,https://p.scdn.co/mp3-preview/753aaed7d16ec2dac0ff8af05123177a44c19351?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBF087600063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,glam metal,hard rock,irish rock,metal,rock",0.445,0.706,8.0,-9.803,1.0,0.0461,0.234,0.000252,0.205,0.768,80.823,4.0,,UMC (Universal Music Catalogue),"C © 2010 Mercury Records Limited, P This Compilation ℗ 2010 Mercury Records Limited",6236 +6237,spotify:track:1K1nzhbKCNmrNXi9B07mPF,Forever In Blue Jeans,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:4ufmoUiQbFCyWUM5OVtdsm,You Don't Bring Me Flowers,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1978-12-16,https://i.scdn.co/image/ab67616d0000b27334b9a6b282fb02bb2cc950f9,1,2,217533,https://p.scdn.co/mp3-preview/63f11be14120b8dbf2eb301b9b07bbd200a45219?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USUG11400767,spotify:user:bradnumber1,2021-11-11T04:16:35Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.706,0.39,9.0,-13.673,1.0,0.0324,0.0221,3.81e-05,0.0944,0.839,90.584,4.0,,Neil Diamond,"C © 1978 Neil Diamond, under exclusive license to Capitol Records LLC, P ℗ 2014 Neil Diamond, under exclusive license to Capitol Records LLC",6237 +6238,spotify:track:0euWMp4oYNsYi7icg897pi,All Stars,spotify:artist:05yQvTxOQFpKKYDKKuBKYP,Grafton Primary,spotify:album:1az0tRxkdzHFzI8LmQJgiI,Eon,spotify:artist:05yQvTxOQFpKKYDKKuBKYP,Grafton Primary,2008-09-13,https://i.scdn.co/image/ab67616d0000b2737f96dafe15fe8d367da7b071,1,4,263960,https://p.scdn.co/mp3-preview/4257c0018216e9593a9145d756873675d44cd110?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUSC20800035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,new rave",0.564,0.793,0.0,-3.604,1.0,0.0632,0.00322,3.14e-06,0.346,0.659,133.014,4.0,,Resolution Music,"C 2008 Resolution Music, P 2008 Resolution Music",6238 +6239,spotify:track:4zK1pYVKMB13es6Bim0muF,Run To Me,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:1KL93OX71ZaEbhgb3KB9UF,To Whom It May Concern,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1972-01-01,https://i.scdn.co/image/ab67616d0000b2737950ef51745c8cbdfc7696a3,1,1,191600,https://p.scdn.co/mp3-preview/dbd50e68097660f52a99258814ab9696054c7104?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBAKW7201024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.399,0.322,9.0,-14.021,1.0,0.037,0.474,1.48e-05,0.335,0.33,145.743,4.0,,Bee Gees Catalog,"C © 1972 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 1972 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",6239 +6240,spotify:track:3ZKPEcdTWerkPNsCB3oi5z,Passenger,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:27QqOCHuqkVqGPqxFU1Bhj,Internationalist (Deluxe),spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,1998,https://i.scdn.co/image/ab67616d0000b2733ef907cdeeb222413aa8db04,1,5,261149,https://p.scdn.co/mp3-preview/ab4040de96a1b4353ad3f6558b736196b6218cd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUUM71800971,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.259,0.611,11.0,-6.989,0.0,0.0328,0.00886,0.0548,0.37,0.186,96.278,4.0,,Universal Music Australia Pty. Ltd.,"C © 1998 Universal Music Australia Pty Ltd., Tracks 14-20 under licence to Universal Music Australia from Australian Broadcasting Corporation, P ℗ 1998 Universal Music Australia Pty Ltd., Tracks 14-20 under licence to Universal Music Australia from Australian Broadcasting Corporation",6240 +6241,spotify:track:2ZQthRFshRud0V6P9Abmop,Touch Me,spotify:artist:02A3cEvlLLCbIMVDrK2GHV,Starley,spotify:album:3eAJ6Fh2OdrX6gcDgnByT2,Touch Me,spotify:artist:02A3cEvlLLCbIMVDrK2GHV,Starley,2017-06-09,https://i.scdn.co/image/ab67616d0000b273ecedec68b07c241fb586c843,1,1,208920,https://p.scdn.co/mp3-preview/db5f9354973a537c652baeabffea02030ede5227?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUCN31709919,spotify:user:bradnumber1,2021-08-08T09:26:31Z,aussietronica,0.839,0.623,2.0,-5.927,1.0,0.105,0.115,1.61e-06,0.329,0.324,115.016,4.0,,Central Station Records,"C © 2017 Tinted Records, P ℗ 2017 Tinted Records",6241 +6242,spotify:track:6wMMpH5K6GMg4y1Ib5Iy5Z,Magic - Live,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:4LZhAy9UsJ0EiqqeKyrlts,Hopelessly Devoted: The Hits,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2018-06-08,https://i.scdn.co/image/ab67616d0000b273ea73235699dcf414d1e1adae,1,7,274053,https://p.scdn.co/mp3-preview/55a5bc3f1773528ecf05b1b427fe0105737a7ec5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,QM75X1500004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.625,0.698,4.0,-6.615,0.0,0.0267,0.0081,0.0,0.77,0.483,103.601,4.0,,Sony Music Entertainment,"P (P) 2018 ONJ Productions, Ltd. under exclusive licence to Sony Music Entertainment Australia Pty Ltd",6242 +6243,spotify:track:4LDPtuYOuAFtM6LBoRN0So,Dare Me,spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,spotify:album:6P5A4ykltKlWrw7kSZzOGM,Contact (Expanded Edition),spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,1985-02-01,https://i.scdn.co/image/ab67616d0000b273aba250b675fe0f002183b2b9,1,8,259120,https://p.scdn.co/mp3-preview/085cd0a2413264206fcde3ea36a823b116a08894?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USRC18403293,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,girl group,hi-nrg,motown,new wave pop,soft rock",0.71,0.917,4.0,-5.275,0.0,0.0909,0.0799,1.95e-06,0.18,0.944,109.641,4.0,,RCA/Legacy,"P This compilation (P) 2011 RCA Records, a division of Sony Music Entertainment",6243 +6244,spotify:track:64xJ1MMFxxK6osZxJH857T,Waves,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:0dcIrW5U3oco3GDCKiJ33I,Waves,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2016-09-30,https://i.scdn.co/image/ab67616d0000b273b58f5def9e2dc9f1bc5e0e6e,1,1,241292,https://p.scdn.co/mp3-preview/0a234d4ec6600a8ed432dd3f6f1a02301a5ddea4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71600906,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop",0.518,0.776,11.0,-5.791,0.0,0.0444,0.163,0.0,0.0884,0.387,156.894,4.0,,Universal Music Group,"C © 2016 Universal Music Australia Pty Ltd., P ℗ 2016 Universal Music Australia Pty Ltd.",6244 +6245,spotify:track:1HuAR7RyNWQq6vHwOFHWqx,I'm on My Way,spotify:artist:1A92IAcd7A6npCA33oGM5i,The Proclaimers,spotify:album:5sK78apv4yOoXjxRL4kOdJ,Sunshine on Leith,spotify:artist:1A92IAcd7A6npCA33oGM5i,The Proclaimers,1988,https://i.scdn.co/image/ab67616d0000b273cebdf1f7660ace8c2a80585c,1,8,225586,https://p.scdn.co/mp3-preview/653f6604f43d9d9f9456c28c5ec27cd08d715be3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAYK8800056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,scottish rock",0.824,0.634,8.0,-10.296,1.0,0.0342,0.369,0.0,0.0665,0.743,118.922,4.0,,Parlophone UK,"C © 1994 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1988 Parlophone Records Ltd, a Warner Music Group Company",6245 +6246,spotify:track:6mNDLlxVYjKleyb2Ley6Pl,Sweet Disposition,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,spotify:album:7paONJrxLEvBVtKUUd8AZ3,Conditions,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,2009-06-19,https://i.scdn.co/image/ab67616d0000b273dbdadd1cb4c5db7f66d320c4,1,3,236333,https://p.scdn.co/mp3-preview/33ce5626082462723530869b723dba228256ec66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBZUZ0900013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern rock,shimmer pop",0.54,0.807,2.0,-6.964,1.0,0.0443,0.0673,0.21,0.117,0.298,129.106,4.0,,Liberation Records,"C 2009 Liberation Music 2009, P 2009 Liberation Music 2009",6246 +6247,spotify:track:0SiywuOBRcynK0uKGWdCnn,Bad Romance,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:6rePArBMb5nLWEaY9aQqL4,The Fame Monster (Deluxe Edition),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2009-11-05,https://i.scdn.co/image/ab67616d0000b2735c9890c0456a3719eeecd8aa,1,1,294573,https://p.scdn.co/mp3-preview/a58b8677ea3858185308224d36808920e587cec5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,82,USUM70918596,spotify:user:bradnumber1,2021-12-01T04:23:08Z,"art pop,dance pop,pop",0.695,0.921,0.0,-3.752,1.0,0.0363,0.00314,5.26e-05,0.0842,0.714,119.007,4.0,,Interscope,"C © 2009 UMG Recordings, Inc., P ℗ 2009 UMG Recordings, Inc.",6247 +6248,spotify:track:5cPO2j2p9Myq77YQVwWyrN,She Looks So Perfect,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:1w5D9eC3WgKWZZVUwB0GXE,5 Seconds Of Summer,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2014-06-27,https://i.scdn.co/image/ab67616d0000b2737dc82fe4b20e636156c68c1b,1,1,202496,https://p.scdn.co/mp3-preview/58bf34d885f624c8f895cd7eb7eabcc3cd2e0d25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBUM71400377,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.494,0.951,9.0,-4.237,1.0,0.132,0.000569,0.0,0.327,0.441,160.025,4.0,,Capitol,"C © 2014 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited, P ℗ 2014 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited",6248 +6249,spotify:track:3VU9shACUi8TpA0dFk9f1H,Kiss The Dirt (Falling Down The Mountain),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:5iRDO2cnFmb95rjzpiVJrT,The Very Best,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b27361720ec9790c8d7a64698ac7,1,13,233480,https://p.scdn.co/mp3-preview/7d422c06e6ed9ab183cd9e9cdaa41705835e9ffd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF050190224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.652,0.729,6.0,-5.597,1.0,0.044,0.0321,0.00012,0.109,0.545,115.602,4.0,,Universal Music Group,"C © 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",6249 +6250,spotify:track:0vrmHPfoBadXVr2n0m1aqZ,Heaven,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:6Ad1E9vl75ZB3Ir87zwXIJ,TIM,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2019-06-06,https://i.scdn.co/image/ab67616d0000b273660ee24281a547103f466ff5,1,2,277261,https://p.scdn.co/mp3-preview/87aa9df5b81ea3b1084ed1dde2c6453898f1639c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,SE5R71900203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.592,0.873,9.0,-5.65,1.0,0.0275,0.0715,0.00982,0.142,0.516,122.011,4.0,,Universal Music AB,"C © 2019 Avicii Recordings AB, under exclusive license to Universal Music AB, P ℗ 2019 Avicii Recordings AB, under exclusive license to Universal Music AB",6250 +6251,spotify:track:2m4Pj6wQvhiBITHzjYZpsh,Trains and Boats and Planes,"spotify:artist:3qL4moFMePG5zA87tLcCOM, spotify:artist:3f121mss4A4LwR25ErGzP0","Billy J. Kramer, The Dakotas",spotify:album:0KCZx2uURPo1rcQmyx6qvo,EMI Legends Rock 'n' Roll Seris - The Definitive Collection,"spotify:artist:3qL4moFMePG5zA87tLcCOM, spotify:artist:3f121mss4A4LwR25ErGzP0","Billy J. Kramer, The Dakotas",1991-09-30,https://i.scdn.co/image/ab67616d0000b2739fccc527a64914511a246d6b,1,18,169680,https://p.scdn.co/mp3-preview/3e08ac5d945e22589a1c62700b95d6423eefc1e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBAYE6400386,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,merseybeat,merseybeat",0.65,0.579,5.0,-7.45,1.0,0.0322,0.437,8.8e-05,0.146,0.416,111.087,4.0,,Parlophone UK,"C © 1991 Parlophone Records Ltd, P ℗ 1991 Compilation (P) 1991 Parlophone Records Ltd. All rights reserved. Unauthorized reproduction is a violation of applicable laws.",6251 +6252,spotify:track:1AM1o0mKbgAK5oMpY8B3Z7,Angel of Mine,spotify:artist:6nzxy2wXs6tLgzEtqOkEi2,Monica,spotify:album:6mIyViyBHV4eoQqI4JZByh,The Boy Is Mine,spotify:artist:6nzxy2wXs6tLgzEtqOkEi2,Monica,1998-07-13,https://i.scdn.co/image/ab67616d0000b273fb8bcea0096e616a864189fa,1,6,250173,https://p.scdn.co/mp3-preview/1785199cd2b5145fb93bed117dbe8c9e92885f30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAR19800077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.592,0.562,10.0,-6.869,0.0,0.0239,0.00373,3.23e-05,0.223,0.208,90.16,4.0,,Arista,"P (P) 1998 Arista Records, Inc.",6252 +6253,spotify:track:07q6QTQXyPRCf7GbLakRPr,Everlong,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:1zCNrbPpz5OLSr6mSpPdKm,Greatest Hits,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-11-03,https://i.scdn.co/image/ab67616d0000b273136d7250568820409f8fdd60,1,3,249986,https://p.scdn.co/mp3-preview/99a96b3a8c7548ef90bb422b06ec063b0650f721?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USRW29600011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.415,0.867,11.0,-5.497,0.0,0.0387,5.69e-05,0.000192,0.0883,0.36,157.902,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",6253 +6254,spotify:track:4lfEolyFEWQ2u3XAOUkFuD,Father And Son - New Steve Mac with Strings,"spotify:artist:3nlHsNqwCSvT988ZfSW1Yh, spotify:artist:3xRvSWs691F5a9JpjvupJW","Ronan Keating, Yusuf",spotify:album:2YSbEJRfCanlxtU5Rsi4hJ,Father & Son (Int'l 2 Track),spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,2004-01-01,https://i.scdn.co/image/ab67616d0000b2736a83025e81834be7910f3780,1,1,201733,https://p.scdn.co/mp3-preview/72a296ba94643a5e14843d5278ee4af56fa41849?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0400825,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.534,0.521,9.0,-6.364,1.0,0.0308,0.455,0.0,0.105,0.355,71.994,4.0,,Universal Music AS,"C (C) 2004 Polydor Ltd. (UK), P (P) 2004 Polydor Ltd. (UK)",6254 +6255,spotify:track:418cP7CjwDwnOONw2XA2yB,Naughty Girl - Radio Edit,spotify:artist:1qYpPvrm9IW54sM0SAAfpf,Mr G,spotify:album:12Ziw4xEKqCHz0PoUEBiWI,Naughty Girl,spotify:artist:1qYpPvrm9IW54sM0SAAfpf,Mr G,2008-01-01,https://i.scdn.co/image/ab67616d0000b273432b425b3e7601aa95411eb9,1,1,201466,https://p.scdn.co/mp3-preview/5574bc1c321b4e32006e465ade3cc5afc2b8d060?cid=9950ac751e34487dbbe027c4fd7f8e99,True,17,AUEI10800012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.654,0.86,0.0,-3.838,1.0,0.0645,0.000115,0.00574,0.477,0.731,135.035,4.0,,Virgin Records,"C © 2008 Chris Lilley, P ℗ 2008 Chris Lilley",6255 +6256,spotify:track:50XXRUFNjs85P0MjCZ1c9X,We Don't Need Another Hero (Thunderdome),spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,spotify:album:7gVHUNPQr0AE2A0Yf5MjqR,Private Dancer (30th Anniversary Issue),spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,1984-05-29,https://i.scdn.co/image/ab67616d0000b273f82ae34da3139fbd2a88332b,1,23,255186,https://p.scdn.co/mp3-preview/fc9133e784322a7653c90d24895ad11e77260786?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USCA29100186,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.69,0.674,8.0,-5.866,0.0,0.0471,0.201,0.00612,0.114,0.713,98.851,4.0,,Parlophone UK,"C © 2015 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2015 Parlophone Records Ltd, a Warner Music Group Company",6256 +6257,spotify:track:1V0gwyK3CFf16wdLapjR1r,Wild Thing,spotify:artist:5Y8EphH8Vdqu5SLj6K5vjj,Tone-Loc,spotify:album:7LS6KZqicIiCbXFVSglJZd,Loc-ed After Dark,spotify:artist:5Y8EphH8Vdqu5SLj6K5vjj,Tone-Loc,1989-01-01,https://i.scdn.co/image/ab67616d0000b273b37f0cd69198b444ed5b3ad4,1,2,263573,https://p.scdn.co/mp3-preview/043838e9810b14ad14e704215f0f7f129732b3b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA370507633,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hip house,miami bass",0.949,0.668,7.0,-11.935,1.0,0.208,0.000554,1.04e-05,0.0576,0.801,125.5,4.0,,Universal Music Group,"C © 1989 The Bicycle Music Company, P ℗ 1989 The Bicycle Music Company",6257 +6258,spotify:track:7safX55XidhznxK5eDdDm5,I Can't Dance - Remastered 2007,spotify:artist:3CkvROUTQ6nRi9yQOcsB50,Genesis,spotify:album:2WFkJi4USarY1qe3yjifjG,We Can't Dance,spotify:artist:3CkvROUTQ6nRi9yQOcsB50,Genesis,1991-11-11,https://i.scdn.co/image/ab67616d0000b27301f20b98b794099707e43375,1,4,241360,https://p.scdn.co/mp3-preview/fb02ceb9a05a1e5cd670fe27a0454246e39673ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,GBAAA0700775,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,hard rock,mellow gold,new romantic,progressive rock,rock,soft rock,symphonic rock",0.916,0.523,3.0,-9.733,1.0,0.0521,0.432,1.13e-05,0.0488,0.88,107.564,4.0,,Virgin Catalogue,"C © 2007 Virgin Records Limited, P ℗ 2007 Virgin Records Limited",6258 +6259,spotify:track:083Qf6hn6sFL6xiOHlZUyn,I'll Be There,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,spotify:album:7o6j8wph7fvEcAL67jLVGN,I'll Be There,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,2018-05-03,https://i.scdn.co/image/ab67616d0000b27377179b6ddeb4b4f4757e7a10,1,1,193923,https://p.scdn.co/mp3-preview/378bc86735eb8f67309424d92793fa8637abdc37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAHS1800322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.623,0.851,7.0,-3.111,1.0,0.0409,0.0228,0.0,0.12,0.4,100.063,4.0,,Atlantic Records UK,"C © 2018 Atlantic Records UK Ltd, a Warner Music Group Company, P ℗ 2018 Atlantic Records UK Ltd, a Warner Music Group Company",6259 +6260,spotify:track:1wyNvV8uXr35T8ChEypf8n,Un-Break My Heart,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,spotify:album:44YkbOX8QxlFuBtYec4hPG,The Essential Toni Braxton,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,2007-02-12,https://i.scdn.co/image/ab67616d0000b2736504c9968a1af4d9dffdfac1,1,12,270773,https://p.scdn.co/mp3-preview/c73d0311585a0ad805eee20a62dde424afc4f9ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF29600015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,r&b,urban contemporary",0.61,0.41,11.0,-9.215,0.0,0.0317,0.442,0.0,0.113,0.116,109.962,4.0,,LaFace/Legacy,P (P) 2007 Sony Music Entertainment,6260 +6261,spotify:track:5u5qlnyVaewWugJIjzilIc,Smokin',spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,spotify:album:2QLp07RO6anZHmtcKTEvSC,Boston,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,1976,https://i.scdn.co/image/ab67616d0000b2738c1fadcc997a65384f34d694,1,5,261385,https://p.scdn.co/mp3-preview/812240025f316fed8076cc1dc57197184f159d1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM17600647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.197,0.796,2.0,-7.335,1.0,0.0645,0.000541,0.417,0.187,0.522,175.02,4.0,,Epic/Legacy,"P (P) 1976, 2006 Epic Records, a division of Sony Music Entertainment",6261 +6262,spotify:track:5r5cp9IpziiIsR6b93vcnQ,Walking On A Dream,spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,spotify:album:5B6XfyHHYawyLkEvNvhSPh,Walking On A Dream (10th Anniversary Edition),spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,2008-10-03,https://i.scdn.co/image/ab67616d0000b273f3aa0e6ca22a382007f61e4d,1,2,198440,https://p.scdn.co/mp3-preview/a21bd2feedf60140b9e163aa037bd285adb5e896?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,AUEI10800039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,dance rock,indietronica,neo-synthpop",0.871,0.701,5.0,-5.594,0.0,0.0458,0.257,7.52e-06,0.0589,0.716,126.975,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2008 The Sleepy Jackson Pty Ltd and Nick Littlemore, under exclusive license to Universal Music Australia Pty Ltd, P ℗ 2019 The Sleepy Jackson Pty Ltd and Nick Littlemore, under exclusive license to Universal Music Australia Pty Ltd",6262 +6263,spotify:track:07M76e7IXxYdnC1BBiJxEX,All The Man That I Need,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:5LaUUDnUTySWnJLj1xiBnw,I'm Your Baby Tonight,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1990-11-04,https://i.scdn.co/image/ab67616d0000b27302dffd583e3bc8eff1ad471b,1,3,251426,https://p.scdn.co/mp3-preview/6b72321017ba1afd68e37b3cb1552068bb031c18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAR19000121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.496,0.571,5.0,-9.958,0.0,0.0335,0.43,0.0,0.0332,0.25,150.944,4.0,,Arista/Legacy,P (P) 1990 Arista Records LLC,6263 +6264,spotify:track:2Yh0kCWGWgv27YoHTP5Z0S,All Your Reasons,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:07cWSvrkFTgaQGYh7M1cCt,Exile on Mainstream (International),spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2007-09-29,https://i.scdn.co/image/ab67616d0000b273e6a0874e7f0b2471102d0a62,1,3,160840,https://p.scdn.co/mp3-preview/1c2a4aac20321cc0b8505228e503d61ff4796a14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USAT20704238,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.53,0.816,11.0,-4.384,1.0,0.0713,0.00445,0.0,0.189,0.593,142.17,4.0,,Atlantic Records,"C © 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",6264 +6265,spotify:track:56qykFnmErHuUzt7FwAlAc,Turn Around (feat. Ne-Yo),"spotify:artist:6mU8ucezzms5I2kNH6HNlu, spotify:artist:21E3waRsmPlU7jZsS13rcj","Conor Maynard, Ne-Yo",spotify:album:5hLWqk2l9tsRN0zICJBxsQ,Turn Around (feat. Ne-Yo),spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,2012-10-05,https://i.scdn.co/image/ab67616d0000b27320d241ea81f6d5b40b35d860,1,1,232385,https://p.scdn.co/mp3-preview/780a5d3812d4aa347cc33d0671a691337be91fcf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBAYE1201089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,uk pop,viral pop,dance pop,pop,r&b,urban contemporary",0.59,0.874,6.0,-2.583,0.0,0.0263,0.0179,6.46e-06,0.134,0.607,125.018,4.0,,Parlophone UK,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",6265 +6266,spotify:track:6QbpHYzlUKNvv3Rw3uJpNq,Jalebi Baby (Tesher x Jason Derulo),"spotify:artist:49YbNTLaaAbZHLtDI2aPGL, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Tesher, Jason Derulo",spotify:album:7tBzJeTvJSZ254cu879LpK,Jalebi Baby (Tesher x Jason Derulo),"spotify:artist:49YbNTLaaAbZHLtDI2aPGL, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Tesher, Jason Derulo",2021-05-28,https://i.scdn.co/image/ab67616d0000b2739e94da55b1f97e322a3a2df5,1,1,169154,https://p.scdn.co/mp3-preview/af93bcde2451abd692e45686f47073444f35e12c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USUG12102228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.59,0.83,2.0,-6.999,0.0,0.058,0.0334,0.0,0.273,0.866,186.1,4.0,,Capitol Records,"C © 2021 Namah Music Group Inc., under exclusive license to UMG Recordings, Inc., P ℗ 2021 Namah Music Group Inc., under exclusive license to UMG Recordings, Inc.",6266 +6267,spotify:track:4vssszHiNRuxpeAke0JXRn,Everything You Need - Original Mix - Edit,spotify:artist:6otgz5gkB40UnWFwTy0VDh,Madison Avenue,spotify:album:7pH7HTn0BEMJqHTbBmfucj,Polyester Embassy,spotify:artist:6otgz5gkB40UnWFwTy0VDh,Madison Avenue,2000-11-07,https://i.scdn.co/image/ab67616d0000b2735a5e99527ba6788b7038f4be,1,6,222306,https://p.scdn.co/mp3-preview/613df1a0021200ccb05c49fae96b8be9e1a78b15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC00030401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,vocal house",0.818,0.9,0.0,-5.094,0.0,0.0326,0.00305,0.00429,0.309,0.96,117.981,4.0,,Vicious Recordings Pty Ltd,"C 2000 Vicious Recordings Pty Ltd, P 2000 Vicious Recordings Pty Ltd",6267 +6268,spotify:track:1Hin2DTHCqkG0BRpcbu4tY,We Run The Night,"spotify:artist:1EVWYRr2obCRDoSoD6KSuM, spotify:artist:0TnOYISbd1XYRBk9myaseg","Havana Brown, Pitbull",spotify:album:4KVrN1mStUcHU6ciBL7dHj,Flashing Lights,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,2013-01-01,https://i.scdn.co/image/ab67616d0000b273982ad9b28d563d2e3fb7ba1b,1,2,228188,https://p.scdn.co/mp3-preview/46c8df1723548fd52809f0eb34d8c3df5796e706?cid=9950ac751e34487dbbe027c4fd7f8e99,True,40,AUUM71100937,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,miami hip hop,pop",0.709,0.806,9.0,-5.639,0.0,0.157,0.0117,8.76e-06,0.493,0.748,127.013,4.0,,Universal Music Australia Pty. Ltd.,"C © 2013 Island Records Australia / Universal Music Australia, P ℗ 2013 Island Records Australia / Universal Music Australia",6268 +6269,spotify:track:3eS1VMcEmq2IUgpaeDysCb,One Touch,"spotify:artist:4ScCswdRlyA23odg9thgIO, spotify:artist:4Q6nIcaBED8qUel8bBx6Cr","Jess Glynne, Jax Jones",spotify:album:7GCY1J01hcEpdgeY0vtSsN,Always in Between (Deluxe),spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,2018-10-12,https://i.scdn.co/image/ab67616d0000b273a87cab21419f86b78c338e97,1,17,197875,https://p.scdn.co/mp3-preview/bb27b3e2d5ea24aca7173d8a704ff5f0f6eeb086?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAHS1900729,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,dance pop,edm,house,pop dance,uk dance",0.686,0.692,0.0,-6.244,0.0,0.117,0.334,0.0,0.134,0.7,124.29,4.0,,Atlantic Records UK,"C © 2018 Atlantic Records UK, a division of Warner Music UK Limited except for Track 13 (P) 2017 Asylum Records UK, a division of Warner Music UK Limited and Track 14 (P) 2018 Ministry of Sound Recordings Limited under licence to Warner Music UK Limited. And Track 17 (P) 2019 Atlantic Records UK, P ℗ 2018 Atlantic Records UK, a division of Warner Music UK Limited except for Track 13 (P) 2017 Asylum Records UK, a division of Warner Music UK Limited and Track 14 (P) 2018 Ministry of Sound Recordings Limited under licence to Warner Music UK Limited. And Track 17 (P) 2019 Atlantic Records UK",6269 +6270,spotify:track:22UDw8rSfLbUsaAGTXQ4Z8,American Boy,"spotify:artist:5T0MSzX9RC5NA6gAI6irSn, spotify:artist:5K4W6rqBFWDnAN6FQUkS6x","Estelle, Kanye West",spotify:album:5y4Ikuc4sLtNOpanoKKqwo,Shine,spotify:artist:5T0MSzX9RC5NA6gAI6irSn,Estelle,2008-03-28,https://i.scdn.co/image/ab67616d0000b273b0b30ef77be3523c8018810c,1,3,284733,https://p.scdn.co/mp3-preview/6f51d610e0fcdf1a2452dde184f2c3c1a761885f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,4,USAT20706210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,r&b,chicago rap,hip hop,rap",0.727,0.729,0.0,-2.99,1.0,0.326,0.171,0.0,0.07,0.512,117.932,4.0,,Woah Dad!,"C 2008 Woah Dad!, P 2008 Woah Dad!",6270 +6271,spotify:track:6dlSljMwN2mVE9cuGTAhTz,Roll Over Lay Down,spotify:artist:4gIdjgLlvgEOz7MexDZzpM,Status Quo,spotify:album:6sE9xagbayC2Xa1tXlZxtC,Hello!,spotify:artist:4gIdjgLlvgEOz7MexDZzpM,Status Quo,1973-09-28,https://i.scdn.co/image/ab67616d0000b2739f4845d3aa5211c6e5e2d800,1,1,342760,https://p.scdn.co/mp3-preview/f878f50f194a318a00aed8400c28a064b0c068b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBF087300165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,british blues,glam rock",0.596,0.467,2.0,-12.81,1.0,0.0514,0.000905,0.00399,0.314,0.25,126.341,4.0,,UMC (Universal Music Catalogue),"C © 2015 Mercury Records Limited, P ℗ 2015 Mercury Records Limited",6271 +6272,spotify:track:0TLrYjWNsM1P9VlYgxOVA0,Shout It Out,spotify:artist:6pjod8SsOOGf6GW9tfEnH1,Reece Mastin,spotify:album:6sIfbR83sneqztk788UGmO,Beautiful Nightmare,spotify:artist:6pjod8SsOOGf6GW9tfEnH1,Reece Mastin,2012-10-22,https://i.scdn.co/image/ab67616d0000b27372c475607cb622b7cf8d5941,1,6,213626,https://p.scdn.co/mp3-preview/154fb4b62fcbba810e894932b1d2134e06ab0112?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUBM01200171,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.407,0.895,7.0,-3.089,1.0,0.151,0.00598,0.0,0.218,0.832,186.031,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,6272 +6273,spotify:track:1GxVhWjimzXKknQ2uHVhrV,Pack Up,spotify:artist:14L5rpGTLVUz1pD8fUeJB1,Eliza Doolittle,spotify:album:06MkSxNiv4SZx6NIodZfWr,Eliza Doolittle,spotify:artist:14L5rpGTLVUz1pD8fUeJB1,Eliza Doolittle,2010-07-09,https://i.scdn.co/image/ab67616d0000b273e5b3b4caab09adc786de9308,1,11,191026,https://p.scdn.co/mp3-preview/5726b058f4623dcf90e9c37b090a75b345c512d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAYE0901446,spotify:user:bradnumber1,2021-08-08T09:26:31Z,lilith,0.672,0.809,11.0,-5.704,1.0,0.0595,0.325,0.0,0.337,0.88,133.038,4.0,,Parlophone UK,"C © 2010 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2010 Parlophone Records Ltd, a Warner Music Group Company",6273 +6274,spotify:track:4wUEyxnu0u0r5Ht2zLI79b,Shapes of Things,spotify:artist:2lxX1ivRYp26soIavdG9bX,The Yardbirds,spotify:album:0lYmtEuL0fLXPP4XKr5O8K,The Yardbirds Story - Pt. 3 - 1965/66 - Big Hits & America Calling,spotify:artist:2lxX1ivRYp26soIavdG9bX,The Yardbirds,1965,https://i.scdn.co/image/ab67616d0000b27395670c43925b9ce8a437c9b4,1,17,145960,https://p.scdn.co/mp3-preview/92a8bb645a274a434a3c0fb8667e02929a1fe4b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAWA0515438,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,british invasion,classic rock,country rock,folk rock,hard rock,psychedelic rock,rock,singer-songwriter",0.432,0.823,0.0,-9.216,1.0,0.116,0.249,0.00639,0.0953,0.38,132.212,4.0,,Charly,"C (C) 2013 Charly Acquisitions Ltd., P (P) 1965 Columbia",6274 +6275,spotify:track:39HEgisvFM1GJPvvVEM46q,Can't Help Myself,spotify:artist:1Ic7597AdNZRVWP8Lwoa36,Flowers,spotify:album:6EeThAxf8vbW0GiXpyyQBU,Icehouse (30th Anniversary Edition),spotify:artist:1Ic7597AdNZRVWP8Lwoa36,Flowers,1982-09-06,https://i.scdn.co/image/ab67616d0000b2733551712979f1043329b41c3e,1,6,190080,https://p.scdn.co/mp3-preview/76e00e58a3cebc45938af486389c36fc19ba790f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUWA00207231,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.731,0.727,11.0,-7.956,0.0,0.0478,0.00167,0.00377,0.0403,0.797,139.405,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Diva Records, Manufactured and distributed by Universal Music Australia Pty Ltd, P ℗ 2011 Diva Records, Manufactured and distributed by Universal Music Australia Pty Ltd",6275 +6276,spotify:track:4XPWKmy05Rcff6TLHNoNF8,Ghost,spotify:artist:7nDsS0l5ZAzMedVRKPP8F1,Ella Henderson,spotify:album:6FM2zi33hm46NY9mk5jIV8,Chapter One (Deluxe Version),spotify:artist:7nDsS0l5ZAzMedVRKPP8F1,Ella Henderson,2014-10-13,https://i.scdn.co/image/ab67616d0000b2732d8f69516a51d1b98cce0f07,1,1,213213,https://p.scdn.co/mp3-preview/0260c33a9f31bd4d2422b870371f7fda6312f2af?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBHMU1400029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop dance,talent show,uk pop",0.68,0.84,9.0,-3.823,1.0,0.0414,0.0457,8.66e-06,0.143,0.468,104.975,4.0,,Syco Music,P (P) 2014 Simco Limited,6276 +6277,spotify:track:7MUO4NG8cNjTEQlANYwmoU,Put A Little Love In Your Heart,spotify:artist:0iVed2Qu7dmL0pIYCj1Xw8,Jackie DeShannon,spotify:album:5hhVG03LkjrgMlworeFPEu,Laurel Canyon (Deluxe Edition),spotify:artist:0iVed2Qu7dmL0pIYCj1Xw8,Jackie DeShannon,1968-10-01,https://i.scdn.co/image/ab67616d0000b273f0026bf8df25e8b7ba88d239,1,20,156826,https://p.scdn.co/mp3-preview/adf1509b77d910864a7108f8ed9aaf477152873f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USCA20501761,spotify:user:bradnumber1,2021-08-08T09:26:31Z,brill building pop,0.596,0.523,2.0,-6.801,1.0,0.0248,0.238,0.0,0.0771,0.435,100.974,4.0,,Zonophone,"C © 1968 EMI Records Ltd, P This Compilation ℗ 2008 EMI Records Ltd",6277 +6278,spotify:track:71zJRiAG1f817v9R9tYMvg,Song For Guy,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:3nCMMolz1wMdEIwlf0SbZp,A Single Man,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1978-10-01,https://i.scdn.co/image/ab67616d0000b27304e98c42380448bd708234aa,1,11,413866,https://p.scdn.co/mp3-preview/6190be88eb1248feebb22b4f97ede8830c57adce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAMS7800133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.459,0.165,0.0,-15.95,1.0,0.047,0.0175,0.000276,0.0895,0.123,122.861,4.0,,EMI,"C © 1998 Mercury Records Limited, P This Compilation ℗ 1998 Mercury Records Limited",6278 +6279,spotify:track:05YvAxYqhW3ElFVSNjdkay,Australia,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,spotify:album:57kpLskpXv5xKy3o316RqX,Breed Obsession,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,2008,https://i.scdn.co/image/ab67616d0000b273e80bba32b5fb4fc98c5ad232,1,4,229426,https://p.scdn.co/mp3-preview/b3d804f84a390b2059efc97fd19f283190d5ad6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUWA00701300,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.419,0.743,4.0,-4.923,1.0,0.0298,0.00928,3.23e-05,0.0823,0.291,92.988,4.0,,WM Australia,"C © 2008 Mushroom Records Pty Limited, P ℗ 2007 Mushroom Records Pty Limited",6279 +6280,spotify:track:2nI6aT3cnPFoXQ1L705wcY,Some Type of Love,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:5t4A7Loq1pKRFlkBOs1O2O,Some Type of Love,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2015-05-01,https://i.scdn.co/image/ab67616d0000b273e7bd365fb962fb7882a81d24,1,3,185608,https://p.scdn.co/mp3-preview/f4e108585faeef445a0135f1093dfc40ba0a0c3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USAT21501194,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop",0.706,0.589,2.0,-6.051,1.0,0.08,0.353,0.0,0.105,0.399,90.491,4.0,,Artist Partner,"C © 2015 Artist Partner Group, Inc, P ℗ 2015 Artist Partner Group, Inc",6280 +6281,spotify:track:6nKmlxPDecfVYew1olKBtH,Fire,spotify:artist:6m30rs1IQqnWqV5nKMpU7U,Ohio Players,spotify:album:7IwJYazTkU1JdMBOrHNhZV,Fire,spotify:artist:6m30rs1IQqnWqV5nKMpU7U,Ohio Players,1974,https://i.scdn.co/image/ab67616d0000b2738d015c3eb4530e5bac00abfc,1,1,276333,https://p.scdn.co/mp3-preview/4f4266c14965c4ae1c9cf86ba5cea23bef0b9aee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR37404009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,p funk,quiet storm,soul,southern soul",0.645,0.746,5.0,-11.734,1.0,0.0598,0.353,0.0228,0.319,0.844,107.281,4.0,,Island Def Jam,"C © 1991 The Island Def Jam Music Group, P ℗ 1991 The Island Def Jam Music Group",6281 +6282,spotify:track:5W7YROOF6bFfBexY81LFjt,Babe,spotify:artist:4salDzkGmfycRqNUbyBphh,Styx,spotify:album:0RhPpU4BvtF44qdvFnGQuh,Cornerstone,spotify:artist:4salDzkGmfycRqNUbyBphh,Styx,1979-01-01,https://i.scdn.co/image/ab67616d0000b2735375070081edf3a7b188f0c7,1,3,265973,https://p.scdn.co/mp3-preview/b937ae086007578b38fe232dc9ebed1607b51161?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAM17900358,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,progressive rock,rock,soft rock",0.267,0.204,2.0,-13.714,1.0,0.0317,0.527,0.0,0.0924,0.0903,169.486,4.0,,A&M,"C © 1979 A&M Records, P ℗ 1979 A&M Records",6282 +6283,spotify:track:7z73ehYAn9O1XP9XlCqVtd,Who Dat Girl (feat. Akon),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:0z4gvV4rjIZ9wHck67ucSV","Flo Rida, Akon",spotify:album:1TwNATuAqnNjTd5BSvFZlS,Only One Flo (Part 1),spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2010-11-24,https://i.scdn.co/image/ab67616d0000b273c0ddb38854cde41708d606a1,1,4,200880,https://p.scdn.co/mp3-preview/8f1a531b320c5ee9c008a6245b68f77ab6dfbfc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT21002400,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,dance pop",0.719,0.616,1.0,-3.951,1.0,0.0395,0.00683,3.11e-05,0.0742,0.625,124.963,4.0,,Poe Boy/Atlantic,"C © 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",6283 +6284,spotify:track:3XGDOjfpQfZ3Bxu1um26HI,Mad About You,spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,spotify:album:1hRPNTgN0W9mrbZBiXIi91,Belinda (Deluxe Edition),spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,1986,https://i.scdn.co/image/ab67616d0000b2735a8f2591da95dccd74c62fb6,1,1,218226,https://p.scdn.co/mp3-preview/bb0bd64c1e0ec93310a74631122e1534fb33e47e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA30300060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock",0.596,0.655,9.0,-9.531,1.0,0.0351,0.00572,0.000151,0.0647,0.512,143.797,4.0,,CAPITOL CATALOG MKT (C92),"C © 1986 Capitol Records, LLC, P A Capitol Records Release; ℗ 2014 Capitol Records, LLC",6284 +6285,spotify:track:3tUcVY5vgYdMwMiUi0dqhe,Running,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,spotify:album:2RGBdVzWbKATHuLHj86Al4,Real Life,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,2006-07-06,https://i.scdn.co/image/ab67616d0000b273a11168373d75a2f2bb183ed5,1,2,262213,https://p.scdn.co/mp3-preview/ce4c62251cfbebeb3d3413a0cf3e773ba4bd569d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA00601210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,kiwi rock",0.395,0.717,6.0,-5.035,1.0,0.0314,0.00149,0.0015,0.0484,0.265,139.987,4.0,,WM Australia,"C 2006 Evermore, P 2006 Evermore",6285 +6286,spotify:track:5TUa3AsgSh3kJIuXn42wig,"Shout, Pts. 1 & 2",spotify:artist:53QzNeFpzAaXYnrDBbDrIp,The Isley Brothers,spotify:album:21O10zQ7YrFOTgfyRmopHs,It's Your Thing: The Story Of The Isley Brothers,spotify:artist:53QzNeFpzAaXYnrDBbDrIp,The Isley Brothers,1999,https://i.scdn.co/image/ab67616d0000b273509a7a314735c4272429f73d,1,2,267333,https://p.scdn.co/mp3-preview/8318282708ff2634edea23888a83715ba7e69399?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USRC15903415,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,funk,motown,quiet storm,soul",0.467,0.831,10.0,-7.661,1.0,0.0683,0.549,0.0,0.95,0.547,137.355,4.0,,Epic,"P Originally Released 1957, 1958, 1959 Under License From Rhino Records, Inc. By Arrangement With Warner Special Products, 1959 All Rights Reserved By BMG Entertainement, 1962 Courtesy of Global Licensing Inc., 1964 EMI Records, 1965 Warner Special P",6286 +6287,spotify:track:3cLOKNlWYYxztX7baFxTXi,Black Widow,"spotify:artist:5yG7ZAZafVaAlMTeBybKAL, spotify:artist:5CCwRZC6euC8Odo6y9X8jr","Iggy Azalea, Rita Ora",spotify:album:5t6pHf7XZOZu8lDjmMdBc2,The New Classic (Deluxe Version),spotify:artist:5yG7ZAZafVaAlMTeBybKAL,Iggy Azalea,2014-01-01,https://i.scdn.co/image/ab67616d0000b273d7e42b83a5a986345bbd96a1,1,10,209423,https://p.scdn.co/mp3-preview/b0f2ab2eaa91bb2a087bef66d514d8d449cc29d2?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBUM71401093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,dance pop,pop,dance pop,pop,uk pop",0.744,0.725,11.0,-3.771,1.0,0.111,0.177,0.000207,0.111,0.555,163.995,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",6287 +6288,spotify:track:7iDa6hUg2VgEL1o1HjmfBn,Meant to Be (feat. Florida Georgia Line),"spotify:artist:64M6ah0SkkRsnPGtGiRAbb, spotify:artist:3b8QkneNDz4JHKKKlLgYZg","Bebe Rexha, Florida Georgia Line",spotify:album:6t5D6LEgHxqUVOxJItkzfb,All Your Fault: Pt. 2,spotify:artist:64M6ah0SkkRsnPGtGiRAbb,Bebe Rexha,2017-08-11,https://i.scdn.co/image/ab67616d0000b2731ba5682505dd6e2592b16e41,1,6,163870,https://p.scdn.co/mp3-preview/fa4d66e50c72c03ced38f802adf41e44cad2c2e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USWB11701181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,contemporary country,country,country pop,country road,modern country rock",0.643,0.783,10.0,-6.458,1.0,0.0856,0.047,0.0,0.083,0.579,154.084,4.0,,Warner Records,"C © 2017 Warner Records Inc., P ℗ 2017 Warner Records Inc.",6288 +6289,spotify:track:09CtPGIpYB4BrO8qb1RGsF,Sorry,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:6Fr2rQkZ383FcMqFyT7yPr,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273f46b9d202509a8f7384b90de,1,4,200786,https://p.scdn.co/mp3-preview/eca5a32b13f68f700b06e06ffdc8110e61e232ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USUM71516760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.655,0.76,0.0,-3.669,0.0,0.045,0.0797,0.0,0.299,0.409,99.947,4.0,,RBMG/Def Jam,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",6289 +6290,spotify:track:0tBbt8CrmxbjRP0pueQkyU,Wolves,"spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx, spotify:artist:64KEffDW9EtZ1y2vBYgq8T","Selena Gomez, Marshmello",spotify:album:5gQZvWM1o8NkQndueJtZcP,Wolves,"spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx, spotify:artist:64KEffDW9EtZ1y2vBYgq8T","Selena Gomez, Marshmello",2017-10-25,https://i.scdn.co/image/ab67616d0000b273307910d4242c0d6b1fedf955,1,1,197993,https://p.scdn.co/mp3-preview/0eebdcc767fd0df22da5331489287d46e2050769?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USUM71712103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop,brostep,edm,pop,progressive electro house",0.725,0.804,11.0,-4.614,0.0,0.0422,0.124,0.0,0.204,0.31,124.996,4.0,,Selena Gomez PS,"C © 2017 Interscope Records, P ℗ 2017 Interscope Records",6290 +6291,spotify:track:7nRmfGNhHKEEu5o8yFXLXt,Magnets,"spotify:artist:6nS5roXSAGhTGr34W6n7Et, spotify:artist:163tK9Wjr9P9DmM0AVK7lm","Disclosure, Lorde",spotify:album:08ipn1MH7xqgoqhUbtvCTy,Caracal (Deluxe),spotify:artist:6nS5roXSAGhTGr34W6n7Et,Disclosure,2015-09-25,https://i.scdn.co/image/ab67616d0000b273e2f9df5c00476154a4fbdfff,1,6,199245,https://p.scdn.co/mp3-preview/02386616749d3fdf0ad712d002b733b68291b09f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBUM71503568,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,house,indietronica,uk dance,art pop,metropopolis,nz pop,pop",0.704,0.626,10.0,-7.883,0.0,0.164,0.0645,1.33e-06,0.103,0.652,92.008,4.0,,Universal-Island Records Ltd.,"C © 2015 Island Records, a division of Universal Music Operations Limited, P ℗ 2015 Island Records, a division of Universal Music Operations Limited",6291 +6292,spotify:track:21mnS0J0H0ZZsw32MRZa9a,Animals - Radio Edit,spotify:artist:60d24wfXkVzDSfLS6hyCjZ,Martin Garrix,spotify:album:4LrYTTLmDnL1cUzT1TytTi,Animals,spotify:artist:60d24wfXkVzDSfLS6hyCjZ,Martin Garrix,2013-01-01,https://i.scdn.co/image/ab67616d0000b273531f68ac4a69faf85ffd1c76,1,1,164746,https://p.scdn.co/mp3-preview/e7ebce1b68f784a57b6d69fe8b956e679f4bf4f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLZ541300725,spotify:user:bradnumber1,2024-07-30T00:21:04Z,"dutch edm,edm,pop,pop dance,progressive house",0.589,0.904,1.0,-5.685,1.0,0.0356,0.00119,0.257,0.0767,0.0364,128.054,4.0,,Silent Records/Republic Records,"C © 2013 Spinnin Records, BV, under exclusive license to Silent/Republic Records, P ℗ 2013 Spinnin Records, BV, under exclusive license to Silent/Republic Records",6292 +6293,spotify:track:2cZrrQMjB63c0iIugYH9zS,Rain Over Me (feat. Marc Anthony),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:4wLXwxDeWQ8mtUIRPxGiD6","Pitbull, Marc Anthony",spotify:album:4rG0MhkU6UojACJxkMHIXB,Planet Pit (Deluxe Version),spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2011-06-17,https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19,1,3,231573,https://p.scdn.co/mp3-preview/17dbff2716beb1cdb794d86ce46373cab0eb2782?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USJAY1100071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,latin pop,modern salsa,salsa,tropical",0.61,0.906,0.0,-2.117,1.0,0.0648,0.00416,0.0,0.758,0.294,127.916,4.0,,Mr.305/Polo Grounds Music/J Records,"P (P) 2011 J Records, a unit of Sony Music Entertainment",6293 +6294,spotify:track:5ljCWsDlSyJ41kwqym2ORw,03' Bonnie & Clyde,"spotify:artist:3nFkdlSjzX9mRTtwJOzDYB, spotify:artist:6vWDO969PvNqNYHIOW5v0m","JAY-Z, Beyoncé",spotify:album:5xHStEOG8PsbzNQb7LkxZU,The Blueprint 2: The Gift & The Curse,spotify:artist:3nFkdlSjzX9mRTtwJOzDYB,JAY-Z,2002-11-12,https://i.scdn.co/image/ab67616d0000b273b7c45af95aaf599cee3acf08,1,4,205560,https://p.scdn.co/mp3-preview/04ad61fa1c714628e4f2371c5f93a21674e8bcc6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,68,USDJ20201108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,rap,pop,r&b",0.759,0.678,9.0,-5.148,0.0,0.314,0.23,0.0,0.15,0.327,89.64,4.0,,Roc Nation / Jay-Z,"C © 2002 S. Carter Enterprises, LLC., Distributed by Roc Nation, P ℗ 2002 S. Carter Enterprises, LLC., Distributed by Roc Nation",6294 +6295,spotify:track:7IHOIqZUUInxjVkko181PB,Stay With Me,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:7p7RFI5jtwYDknwhnQgmlp,In The Lonely Hour (Deluxe Edition),spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2014-01-01,https://i.scdn.co/image/ab67616d0000b27360b7e435520b0426265ac26f,1,3,172723,https://p.scdn.co/mp3-preview/a6673e86dccaf0232ab041314ec716e03e2f34fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71308833,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.5,0.418,0.0,-6.535,1.0,0.0377,0.566,0.000193,0.11,0.176,84.899,4.0,,Universal Music Ltd.,"C (C) 2014 Capitol Records Ltd., P (P) 2014 Capitol Records Ltd.",6295 +6296,spotify:track:5165YVSgUjNbqKhC3D0xBc,When Will I Be Famous?,spotify:artist:2LKrAJVB1842xPDvx4uuwU,Bros,spotify:album:3ZNLGpP4ztrdr1ZcxWOA8r,The Best of Bros,spotify:artist:2LKrAJVB1842xPDvx4uuwU,Bros,2004,https://i.scdn.co/image/ab67616d0000b273c5ca17e65c5f2bce6d189e0c,1,1,241986,https://p.scdn.co/mp3-preview/d6f278dcb3a565cc666bd674f1faac1b452386a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBBBN8700005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop",0.632,0.781,5.0,-9.26,1.0,0.0289,0.0489,1.76e-05,0.165,0.618,123.476,4.0,,Columbia,P This compilation (P) 2004 Sony Music Entertainment UK Limited,6296 +6297,spotify:track:1yKDl9K9lrbIFSpPBzEQtb,Shake Your Bon-Bon,spotify:artist:7slfeZO9LsJbWgpkIoXBUJ,Ricky Martin,spotify:album:1k1Cr3nlJDa8pvwZUJ5xfj,Ricky Martin,spotify:artist:7slfeZO9LsJbWgpkIoXBUJ,Ricky Martin,1999,https://i.scdn.co/image/ab67616d0000b273e7e9b85cc1f021ec12130d80,1,4,192333,https://p.scdn.co/mp3-preview/1d2d19e8a9c5f3fd338225150bbefdf5ea72f702?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,NLB639920062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,mexican pop,puerto rican pop",0.638,0.937,0.0,-4.642,1.0,0.0444,0.0942,0.0,0.327,0.762,100.03,4.0,,C2Records/Columbia,"P 1995 Sony Music Entertainment (México) S.A. de C.V.,1998 Sony Music Entertainment Inc.,1999 Sony Music Entertainment (Holland) B.V",6297 +6298,spotify:track:3PKtemUKxiDBvBo7tpQ8bG,One,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:3hErePSImi79vYHrSmypGw,Achtung Baby,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1991-11-18,https://i.scdn.co/image/ab67616d0000b2733b5107106b030c35a97918ec,1,3,276186,https://p.scdn.co/mp3-preview/e53bba655120cb3e8bc77f2afa387b595ef38a59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71106457,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.511,0.536,0.0,-8.661,1.0,0.0302,0.256,0.00265,0.122,0.357,90.358,4.0,,Universal Music Group,"C © 2011 Universal-Island Records Limited under exclusive licence to Mercury Records Limited in the UK, Interscope Records in the US and Universal Music Group for the rest of the world, P ℗ 2011 Universal-Island Records Limited under exclusive licence to Mercury Records Limited in the UK, Interscope Records in the US and Universal Music Group for the rest of the world",6298 +6299,spotify:track:7azOuDeJGbxt5mvq3GQHXp,True Blue,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:6fmnT17jc2Sc69q3nza1eD,True Blue,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1986-06-30,https://i.scdn.co/image/ab67616d0000b273c01194bbe928c038cef5607b,1,6,257466,https://p.scdn.co/mp3-preview/f60a3d25f88a32befd9d2890872165e07336886f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USWB19903353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.798,0.909,11.0,-4.258,1.0,0.045,0.231,0.0,0.0502,0.866,117.947,4.0,,Warner Records,"C © 1986, 2001 Warner Records Inc., P ℗ 1986 Warner Records Inc.",6299 +6300,spotify:track:5rc6wVOqoyYFKGuSzKblXH,U R The Best Thing,spotify:artist:2dCQKsTjB762AhtIACbAQA,D:Ream,spotify:album:2WEz05B90H3qjP6dnTQi4v,On Vol.1,spotify:artist:2dCQKsTjB762AhtIACbAQA,D:Ream,1993,https://i.scdn.co/image/ab67616d0000b273bf5cb1e578ca3ce07487c444,1,2,264840,https://p.scdn.co/mp3-preview/ea0772c70a916b0750f226ee48537f734ea85aae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHS0300791,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,new wave pop",0.578,0.869,4.0,-6.457,0.0,0.0345,0.0279,0.00159,0.121,0.639,122.685,4.0,,Rhino,"C 1993 Warner Music UK Ltd, P 1993 Warner Musi UK Ltd",6300 +6301,spotify:track:2ZxbmQxhzMCesq34Sb7tbc,Affirmation,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,spotify:album:7zkjepWAvcH8fN5eisBZJk,Affirmation,spotify:artist:3NRFinRTEqUCfaTTZmk8ek,Savage Garden,2000-06-12,https://i.scdn.co/image/ab67616d0000b2735a7997b1322919a9d346fe9c,1,1,296986,https://p.scdn.co/mp3-preview/9aba8fdd028204250e5fbe0df230e49dd9fcbbf0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AURQ09900165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop rock",0.478,0.768,8.0,-8.126,1.0,0.0728,0.0101,1.4e-06,0.136,0.645,169.967,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 JWM Pty Ltd, P This Compilation ℗ 2015 JWM Pty Ltd, Manufactured and distributed by Universal Music Australia Pty Ltd.",6301 +6302,spotify:track:7HgvOarjz4hTGBssqQyNlV,San Franciscan Nights,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,spotify:album:3cvFmsFGxW34EWLlYXwUjj,Good Times - A Collection,spotify:artist:3miNucraVWk4hdVsIxn7id,Eric Burdon,1992-01-01,https://i.scdn.co/image/ab67616d0000b273809163e4ff0334b93e544a81,1,2,195173,https://p.scdn.co/mp3-preview/1eb648f7199ca97c8b51ac1411b08b4d4a263b05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USPR36702773,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock",0.729,0.23,0.0,-19.714,1.0,0.0479,0.242,0.0527,0.189,0.383,92.553,4.0,,"Universal Music, a division of Universal International Music BV","C © 1992 Universal International Music B.V., P This Compilation ℗ 1992 Universal International Music B.V.",6302 +6303,spotify:track:3T3vdyeV1GITXjIFc3mWWY,Blow Your Mind (Mwah),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:4Y3GMOBk1d8K7cinxXCPPH,Blow Your Mind (Mwah),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2016-08-26,https://i.scdn.co/image/ab67616d0000b27380962ada0b4a642779665126,1,1,178583,https://p.scdn.co/mp3-preview/048e0fb067136bb648b77abcb9fff1b70e1b4f84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAHT1600331,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.684,0.793,2.0,-4.868,0.0,0.128,0.0241,0.0,0.09,0.52,108.94,4.0,,Warner Records,"C © 2016 Dua Lipa Limited under exclusive license to Warner Music UK Limited, P ℗ 2016 Dua Lipa Limited under exclusive license to Warner Music UK Limited",6303 +6304,spotify:track:0wRCXAjEC4yr8ghGTqX6OB,Holly Holy - Single Version,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:0Kc6id21djcmu5gbduGkFP,"Touching You, Touching Me",spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1969,https://i.scdn.co/image/ab67616d0000b27303c2bae76681e569a8ab3824,1,4,280306,https://p.scdn.co/mp3-preview/49e25f780688916a95562e0bbbb9bd806016942c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWWW0122858,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.287,0.314,9.0,-14.154,1.0,0.0283,0.661,0.000418,0.127,0.387,103.414,4.0,,Universal Strategic Marketing,"C © 2007 Geffen Records, P ℗ 2007 Geffen Records",6304 +6305,spotify:track:7j45ne9Kghdv9iodCGmGj9,Don't Tell Me The Time,spotify:artist:2ioCVuqjcRCoQPhEYY0kmg,Martha Davis,spotify:album:3LYSK5WS0E3QigUu1mu0fs,Policy,spotify:artist:2ioCVuqjcRCoQPhEYY0kmg,Martha Davis,1987-11-22,https://i.scdn.co/image/ab67616d0000b2732f1bedd95d238d8b7d75795b,1,4,211880,https://p.scdn.co/mp3-preview/a08f82e1dad72bbb985a0ceae3f1b1d95d27a187?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USUM71922568,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.639,0.796,9.0,-5.411,1.0,0.0263,0.0141,1.01e-06,0.21,0.61,121.986,4.0,,CAPITOL CATALOG MKT (C92),"C © 1987 Capitol Records, LLC, P ℗ 1987 Capitol Records, LLC",6305 +6306,spotify:track:263Iuyk08ks1v6FIudUIGD,Get Off Of My Cloud - Mono Version,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:2p2xSwHP4rTPzNCaOveDIP,December’s Children (And Everybody’s),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1965-12-04,https://i.scdn.co/image/ab67616d0000b2737caed93c71f969a3aa69f041,1,7,175080,https://p.scdn.co/mp3-preview/cbf31244a21ce759c81ce666f809409c438eb823?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USA176510270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.579,0.877,4.0,-8.83,1.0,0.0488,0.0289,0.571,0.0656,0.9,126.336,4.0,,"ABKCO Music and Records, Inc.","C © 2002 ABKCO Music & Records Inc., P ℗ 2002 ABKCO Music & Records Inc.",6306 +6307,spotify:track:3rfhI32Il2hVRKDkuGeeen,Hey Baby (Drop It to the Floor) (feat. T-Pain),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:3aQeKQSyrW4qWr35idm0cy","Pitbull, T-Pain",spotify:album:4rG0MhkU6UojACJxkMHIXB,Planet Pit (Deluxe Version),spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2011-06-17,https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19,1,4,234453,https://p.scdn.co/mp3-preview/01321c3e80ab86e0e642e8cf8a4fcbc7a0603e36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USJAY1000153,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,dance pop,gangster rap,hip hop,pop rap,r&b,rap,southern hip hop,trap,urban contemporary",0.595,0.912,10.0,-3.428,0.0,0.0884,0.0434,0.0,0.259,0.762,128.024,4.0,,Mr.305/Polo Grounds Music/J Records,"P (P) 2011 J Records, a unit of Sony Music Entertainment",6307 +6308,spotify:track:0QxCLD4xJlE8vv0Cvrb8TO,'74-'75,spotify:artist:3zAhmxuw1F3HmulPuy1RAb,The Connells,spotify:album:5OIi0lw57XjbP7JjD0uHuS,Ring,spotify:artist:3zAhmxuw1F3HmulPuy1RAb,The Connells,1993-01-01,https://i.scdn.co/image/ab67616d0000b273d58a4c6a01b39a4946119c24,1,3,278973,https://p.scdn.co/mp3-preview/807b3194e286fcfe51539d1af505121424daf22d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRZ51010979,spotify:user:bradnumber1,2021-08-08T09:26:31Z,jangle pop,0.53,0.59,11.0,-9.169,1.0,0.025,0.183,0.00227,0.0675,0.43,144.202,4.0,,Universal Music Group,"C © 1993 The Bicycle Music Company, P ℗ 1993 The Bicycle Music Company",6308 +6309,spotify:track:5W04joH7VXgHjdNugoWmOB,Little Wonders - Radio Version,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,spotify:album:6XFCi6hmFtxqknxyb6XMk7,Little Wonders,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,2007-04-07,https://i.scdn.co/image/ab67616d0000b2739ad56abcc8462185fb8d4a12,1,1,225506,https://p.scdn.co/mp3-preview/d9d30528c30d5d159bd1329fd285ecb404fd8e53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USAT20700262,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.268,0.765,9.0,-4.891,1.0,0.0419,0.0298,0.0,0.0852,0.262,167.22,4.0,,Melisma/Atlantic Records,"C © 2007 Disney Enterprises, Inc., P ℗ 2007 Walt Disney Records.",6309 +6310,spotify:track:6X9ywd9MSVuJqYIgZKtGDN,Sos,spotify:artist:3vHrEnwmDYlaScgAiZbnz0,Nils Landgren Funk Unit,spotify:album:7GverZqygFGwG0W7DFUd6s,Funky Abba,spotify:artist:3vHrEnwmDYlaScgAiZbnz0,Nils Landgren Funk Unit,2004-03-29,https://i.scdn.co/image/ab67616d0000b273cd45694d81d7ef9875535c46,1,11,285253,https://p.scdn.co/mp3-preview/084dca1d0598c830e6af4c8dd5123a71b4d7063c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,DEA890400061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid jazz,modern funk",0.645,0.879,5.0,-6.896,1.0,0.0366,0.109,0.00671,0.299,0.888,113.024,4.0,,ACT Music,"C 2004 ACT Music, P 2004 ACT Music",6310 +6311,spotify:track:0BmIb7qf0IIx9Lmvf6a28T,Air Balloon,spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,spotify:album:4NX5W3fZmCOzXoLTKO1tIb,Sheezus,spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,2014-05-02,https://i.scdn.co/image/ab67616d0000b2731ed73a91e6dd17818acc1c69,1,3,228349,https://p.scdn.co/mp3-preview/12f5fc326b49a446bbb3b59c577ae494d9c4daf1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBAYE1400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo mellow",0.717,0.678,8.0,-6.167,1.0,0.0379,0.0195,0.000434,0.201,0.556,94.976,4.0,,Parlophone UK,"C © 2014 Parlophone Records Limited, a Warner Music Group Company., P ℗ 2014 Parlophone Records Limited, a Warner Music Group Company.",6311 +6312,spotify:track:0TxMRiAvI1s0L821BJJWzx,Around the World - Radio Edit [Radio Edit],spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,spotify:album:4a0p1M12f7VaZWdoNSdEK4,"Musique, Vol. 1",spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,2006-03-29,https://i.scdn.co/image/ab67616d0000b27354a277d652eba4cd35a2e78a,1,3,241466,https://p.scdn.co/mp3-preview/fc1cfc850a89c70839b7a144a43ae3a01377768d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBDUW0600057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electro,filter house,rock",0.934,0.761,7.0,-5.549,1.0,0.148,0.00417,0.906,0.0656,0.864,121.302,4.0,,Daft Life Ltd./ADA France,"C Distributed exclusively by Warner Music France / ADA France, © 2006 Daft Life Ltd., P Distributed exclusively by Warner Music France / ADA France, ℗ 2006 Daft Life Ltd.",6312 +6313,spotify:track:300dazxD8igsG2HwpERK61,With Or Without You - Remastered,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7hoEVr1UDsfRX0SDfHt5Y5,The Joshua Tree (Deluxe),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1987-03-09,https://i.scdn.co/image/ab67616d0000b2735f43d8bed9770735bd536e39,1,3,295520,https://p.scdn.co/mp3-preview/a7e5de3437eecf201cc1817a7b2d8fae96910199?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70709792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.542,0.425,2.0,-11.838,1.0,0.0295,0.000228,0.416,0.148,0.105,110.184,4.0,,UMC (Universal Music Catalogue),"C © 2007 Island Records, a division of Universal Music Operations Limited, P This Compilation ℗ 2007 Island Records, a division of Universal Music Operations Limited",6313 +6314,spotify:track:5T7ZFtCcOgkpjxcuaeZbw0,Best Song Ever,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:7p1fX8aUySrBdx4WSYspOu,Midnight Memories (Deluxe),spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2013-11-25,https://i.scdn.co/image/ab67616d0000b2732f76b797c382bedcafdf45e1,1,1,200106,https://p.scdn.co/mp3-preview/cc52a4aa531cd779609c29f2759638a34160c361?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBHMU1300102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.652,0.877,1.0,-2.986,1.0,0.0465,0.0227,0.0,0.0789,0.486,118.491,4.0,,Syco Music,P (P) 2013 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,6314 +6315,spotify:track:3ZFTkvIE7kyPt6Nu3PEa7V,Hips Don't Lie (feat. Wyclef Jean),"spotify:artist:0EmeFodog0BfCgMzAIvKQp, spotify:artist:7aBzpmFXB4WWpPl2F7RjBe","Shakira, Wyclef Jean",spotify:album:5ppnlEoj4HdRRdRihnY3jU,"Oral Fixation, Vol. 2 (Expanded Edition)",spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,2005-11-28,https://i.scdn.co/image/ab67616d0000b27327ddd747545c0d0cfe7595fa,1,3,218093,https://p.scdn.co/mp3-preview/374b492571c9ba59c2c4b455ab79ee7501adab93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,USSM10600677,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"colombian pop,dance pop,latin pop,pop,rap kreyol",0.778,0.824,10.0,-5.892,0.0,0.0707,0.284,0.0,0.405,0.758,100.024,4.0,,Epic,P (P) 2005 Sony Music Entertainment (Holland) B.V.,6315 +6316,spotify:track:5CEREcGR5WaLt40YzTQ62e,You'll Lose A Good Thing,spotify:artist:2wQyX5625x6IGls8zLLHMB,Barbara Lynn,spotify:album:1M9sGvei24wKfCC1P7CESZ,You'll Lose A Good Thing,spotify:artist:2wQyX5625x6IGls8zLLHMB,Barbara Lynn,1963-01-01,https://i.scdn.co/image/ab67616d0000b2736da7fd15c8c2d010786a56f6,1,7,159866,https://p.scdn.co/mp3-preview/d90b284a5a0166ee7d489dd66aeb44df26d4a84b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USJRC0302307,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,rhythm and blues,southern soul",0.591,0.324,2.0,-13.218,0.0,0.0302,0.606,0.000144,0.172,0.617,104.15,3.0,,Jamie Record Co.,"C 1963 Jamie Record Co., P 1963 Jamie Record Co.",6316 +6317,spotify:track:7xHWNBFm6ObGEQPaUxHuKO,The Greatest (feat. Kendrick Lamar),"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN, spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg","Sia, Kendrick Lamar",spotify:album:2eV6DIPDnGl1idcjww6xyX,This Is Acting (Deluxe Version),spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2016-10-21,https://i.scdn.co/image/ab67616d0000b273754b2fddebe7039fdb912837,1,14,210226,https://p.scdn.co/mp3-preview/b064bf63626e35f4ff467329843445fcebfee2bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRC11601332,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,conscious hip hop,hip hop,rap,west coast rap",0.668,0.725,1.0,-6.127,1.0,0.266,0.0102,0.000479,0.0561,0.729,191.944,4.0,,Monkey Puzzle Records/RCA Records,"P (P) 2016 Monkey Puzzle Records, under exclusive license to RCA Records",6317 +6318,spotify:track:79oacvAwDh3CUtvalKGmlm,Looking for a Better Thing,spotify:artist:5hA2fNOsOjec1PiwPcrQ3k,Ruby Velle & The Soulphonics,spotify:album:4czOMMgwzSR4Ifj1QSQacO,It's About Time,"spotify:artist:5hA2fNOsOjec1PiwPcrQ3k, spotify:artist:1MNIGuWcmHqrvCtsfGbdqr","Ruby Velle & The Soulphonics, Ruby Velle",2012-09-04,https://i.scdn.co/image/ab67616d0000b27353e83c4e8dde374372cbe131,1,5,240837,https://p.scdn.co/mp3-preview/dbd59511b47b9fcc9934057b7c0ca8011e45b62d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMPDX1200005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.519,0.732,7.0,-3.127,1.0,0.0369,0.159,0.00299,0.0933,0.889,172.845,4.0,,Gemco Recording Group,"C 2012 Gemco Recording Group, P 2012 Gemco Recording Group",6318 +6319,spotify:track:0kr6d8wHDQPlzuET33NVn6,All You Wanted,spotify:artist:5rScKX1Sh1U67meeUyTGwk,Michelle Branch,spotify:album:1agL7TUoZXr0Xd4Irievqi,The Spirit Room,spotify:artist:5rScKX1Sh1U67meeUyTGwk,Michelle Branch,2001-07-31,https://i.scdn.co/image/ab67616d0000b27311e62b6d4e56b060aa71e09d,1,3,217680,https://p.scdn.co/mp3-preview/23448c3fba408cdf1f7195e800f78be5708f453a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USMV20100082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,dance pop,lilith,neo mellow,pop rock",0.499,0.72,8.0,-9.101,1.0,0.0286,0.00466,0.00303,0.122,0.652,96.103,4.0,,Maverick,"C © 2001 Maverick Recording Company, P ℗ 2001 Maverick Recording Company",6319 +6320,spotify:track:5NtNDraYwfMKpZQR3QjtNV,Armstrong,spotify:artist:36H9EBenJ3Tqbd6snt0lLm,Reg Lindsay,spotify:album:1PqHIjUZQu1fohyHKwU9c5,20 Golden Country Greats,spotify:artist:36H9EBenJ3Tqbd6snt0lLm,Reg Lindsay,1969,https://i.scdn.co/image/ab67616d0000b273c01a29ea4cb090a59cc7e9f1,1,1,161826,https://p.scdn.co/mp3-preview/f12109d1c5efce4f9ae213819ce66eccde16d655?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUFE07100013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,classic australian country",0.541,0.514,0.0,-13.35,1.0,0.028,0.395,6.3e-06,0.156,0.859,118.269,4.0,,WM Australia,"C © 1992 Festival Records, P ℗ 1969 Festival Records",6320 +6321,spotify:track:4TFq64PXw55CbZdaS7wtco,Everything About You,spotify:artist:3XsgWn63EnA4wYZBjVyxjf,Ugly Kid Joe,spotify:album:1oruo8li8sfMlujUkAyuRS,As Ugly As They Wanna Be,spotify:artist:3XsgWn63EnA4wYZBjVyxjf,Ugly Kid Joe,1991-01-01,https://i.scdn.co/image/ab67616d0000b273ce08111d3a17e8e6489c7066,1,4,254400,https://p.scdn.co/mp3-preview/5637d32a6fca2ba453f15778e68951b034381e41?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USMR19130361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk metal,funk rock,glam metal,hard rock",0.494,0.784,1.0,-8.922,1.0,0.0505,0.00915,1.89e-06,0.118,0.773,122.469,4.0,,Universal Music LLC,"C (C) 1991 The Island Def Jam Music Group, P (P) 1991 The Island Def Jam Music Group",6321 +6322,spotify:track:6j6bTAiW0oEfLlAjmRNcbb,Little Wonders,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,spotify:album:2P6X6guB0AiQGzRQaekJbN,Little Wonders,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,2007-01-01,https://i.scdn.co/image/ab67616d0000b2738c5caa763674eb6e63132c9a,1,1,224720,https://p.scdn.co/mp3-preview/d9d30528c30d5d159bd1329fd285ecb404fd8e53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USWD10730751,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.163,0.616,9.0,-9.996,1.0,0.044,0.0286,0.0,0.0826,0.33,81.993,4.0,,Walt Disney Records,"C © 2007 Disney Enterprises, Inc., P ℗ 2007 Walt Disney Records",6322 +6323,spotify:track:4mjwTggOYoU358vZIiFDgw,Blue On Blue,spotify:artist:6bOYtKnpLPQSfMpS2ilotK,Bobby Vinton,spotify:album:3iMNKLqXfhxG5Dhb93EbXB,Collections,spotify:artist:6bOYtKnpLPQSfMpS2ilotK,Bobby Vinton,2006-01-31,https://i.scdn.co/image/ab67616d0000b273f53239e3427658a3b29b42c7,1,3,149200,https://p.scdn.co/mp3-preview/4f1d44f39cf0ef64574d06eb9d683e0344391e47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USSM16301451,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,easy listening,rock-and-roll,rockabilly",0.592,0.337,10.0,-10.556,1.0,0.0242,0.748,0.0,0.381,0.527,97.717,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2005 SONY BMG MUSIC (CANADA) INC.,6323 +6324,spotify:track:1i1fxkWeaMmKEB4T7zqbzK,Don't Let Me Down,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:6Dd3NScHWwnW6obMFbl1BH","The Chainsmokers, Daya",spotify:album:2SByipSK8eZ2pasaIwwzhf,Don't Let Me Down,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:6Dd3NScHWwnW6obMFbl1BH","The Chainsmokers, Daya",2016-02-05,https://i.scdn.co/image/ab67616d0000b27302df2d642b572cf4f284a5c3,1,1,208373,https://p.scdn.co/mp3-preview/4db7d84bd59065908dcbd9d8fa2d7b8f0e392359?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USQX91600011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,alt z,pop",0.533,0.869,11.0,-5.093,1.0,0.173,0.156,0.00538,0.136,0.425,159.805,4.0,,Disruptor Records/Columbia,P (P) 2015 Disruptor Records/Columbia Records,6324 +6325,spotify:track:5EArezFgSG8caxrV6Lzs5z,Do It Now - Radio Edit,spotify:artist:0G5lZVxoMwoY8oV6zR8E7k,Mashd N Kutcher,spotify:album:1YgUPpmDPOWfJNsl1cPVte,Do It Now,spotify:artist:0G5lZVxoMwoY8oV6zR8E7k,Mashd N Kutcher,2014-12-08,https://i.scdn.co/image/ab67616d0000b273d6e65bef4076f5c0be750393,1,1,166942,https://p.scdn.co/mp3-preview/db754d7a57ecf78e6cff020377038ed6bef3e63e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUWA01400565,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.872,0.987,5.0,-3.935,1.0,0.0502,0.00322,0.0101,0.0522,0.843,128.01,4.0,,WM Australia,"C © 2014 Parlophone, a division of Warner Music Australia Pty Limited, P ℗ 2014 Parlophone, a division of Warner Music Australia Pty Limited",6325 +6326,spotify:track:2LXyM3mXlRPIJwqyIoFh6n,Whip My Hair,spotify:artist:3rWZHrfrsPBxVy692yAIxF,WILLOW,spotify:album:4cJGBartFvMddvZpAaUHf6,Whip My Hair,spotify:artist:3rWZHrfrsPBxVy692yAIxF,WILLOW,2010-10-26,https://i.scdn.co/image/ab67616d0000b27368d115c07d61197784413948,1,1,193960,https://p.scdn.co/mp3-preview/ebdb0269f72f934e45c8360b901e438ba5b767fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM11003892,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"afrofuturism,pop,post-teen pop,pov: indie",0.543,0.981,9.0,-4.631,0.0,0.285,0.00152,0.00759,0.447,0.671,162.786,4.0,,Roc Nation/Columbia,"P (P) 2010 Roc Nation, LLC.",6326 +6327,spotify:track:3yrSvpt2l1xhsV9Em88Pul,Brown Eyed Girl,spotify:artist:44NX2ffIYHr6D4n7RaZF7A,Van Morrison,spotify:album:7dsWupQRlFuhG8FGiQAUjC,Blowin' Your Mind!,spotify:artist:44NX2ffIYHr6D4n7RaZF7A,Van Morrison,1967-09,https://i.scdn.co/image/ab67616d0000b2733f29a976eea00141514ab936,1,1,183306,https://p.scdn.co/mp3-preview/731469a968c3295114a2b7052610674bf56c6048?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USSM16700357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.491,0.583,7.0,-10.964,1.0,0.0376,0.185,0.0,0.406,0.908,150.566,4.0,,Columbia/Legacy,"P Originally released 1967. All rights reserved by Columbia Records, a division of Sony Music Entertainment",6327 +6328,spotify:track:73kPQ2gUyEDF8C7eMAsXKX,All Day and Night - Jax Jones & Martin Solveig Present Europa,"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:2kRfqPViCqYdSGhYSM9R0Q, spotify:artist:2NlKrNMdpYxGjt3Pvw87rC","Jax Jones, Martin Solveig, Madison Beer, Europa",spotify:album:4MSXAGNJErrQRkUmMzBqF2,All Day and Night,"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:2kRfqPViCqYdSGhYSM9R0Q","Jax Jones, Martin Solveig, Madison Beer",2019-03-28,https://i.scdn.co/image/ab67616d0000b273513f278d5bb1437552f6a50d,1,1,169303,https://p.scdn.co/mp3-preview/4e7f02e62b237e09a1c76b23aa923922082a7757?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBUM71900522,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,house,pop dance,uk dance,disco house,edm,electro house,filter house,house,pop dance,vocal house,pop,uk dance",0.538,0.731,1.0,-5.683,0.0,0.117,0.228,0.0,0.142,0.503,121.763,4.0,,etcetc AU,C (C) 2019 Polydor Ltd (UK) under exclusive license to etcetc Music Pty Ltd,6328 +6329,spotify:track:6zQFzZnkHTE01QwGp11i9y,Breathe Life,spotify:artist:1Zp054Jc86WVKCxKEqZGOA,Jack Garratt,spotify:album:2cz1pfV5Irt3yVCj3sfIKD,Phase,spotify:artist:1Zp054Jc86WVKCxKEqZGOA,Jack Garratt,2016-02-19,https://i.scdn.co/image/ab67616d0000b2737df5782d744fcaf8b6c61d32,1,2,262853,https://p.scdn.co/mp3-preview/7df26fdcf5974b098072af3167602804a999783e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71505615,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk alternative pop,0.607,0.597,5.0,-7.56,1.0,0.125,0.00276,0.0168,0.109,0.252,103.939,4.0,,Universal Music Group,"C © 2015 Island Records, a division of Universal Music Operations Limited, P ℗ 2015 Island Records, a division of Universal Music Operations Limited",6329 +6330,spotify:track:0auYEFI8nx7NxH7gNWb8Ri,The Village of St. Bernadette,spotify:artist:4sj6D0zlMOl25nprDJBiU9,Andy Williams,spotify:album:0bD0vfrC8ZpbVrqmuxtYhr,Happy Heart: The Best Of Andy Williams,spotify:artist:4sj6D0zlMOl25nprDJBiU9,Andy Williams,2009-06-11,https://i.scdn.co/image/ab67616d0000b273edef6d2d1575343e24fe3554,2,9,199546,https://p.scdn.co/mp3-preview/c89c88e89b51add1b7fcd01a9fb2bc867390c046?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10008232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.278,0.198,8.0,-11.248,1.0,0.029,0.952,8.82e-06,0.293,0.24,86.667,3.0,,Legacy Recordings,P This Compilation (P) 2009 Sony Music Entertainment,6330 +6331,spotify:track:2rizacJSyD9S1IQUxUxnsK,All We Know,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:4N874uPqBka1QiCvnCVOtr","The Chainsmokers, Phoebe Ryan",spotify:album:0xmaV6EtJ4M3ebZUPRnhyb,All We Know,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2016-09-29,https://i.scdn.co/image/ab67616d0000b273ff8d8c5662a96d41433e9ee1,1,1,194080,https://p.scdn.co/mp3-preview/c8a05dd85254c03da11fe22a2595b2f6a6fa7de6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USQX91602153,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,alt z,indie poptimism",0.662,0.586,0.0,-8.821,1.0,0.0307,0.097,0.00272,0.115,0.296,90.0,4.0,,Disruptor Records/Columbia,P (P) 2016 Disruptor Records/Columbia Records,6331 +6332,spotify:track:2T4rXDppGlcy2lLuF4IyHq,Angel,spotify:artist:5DqmNLPM1kAbSBQk2FMm6b,Amanda Perez,spotify:album:3CD4hrOqlolP5zNmhVljAU,Angel,spotify:artist:5DqmNLPM1kAbSBQk2FMm6b,Amanda Perez,2003-01-01,https://i.scdn.co/image/ab67616d0000b273702d1e659feee1968e5feb75,1,3,218760,https://p.scdn.co/mp3-preview/8457fda2a7aa6680678b0d83a596a08a280be07d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USVI20300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,r&b,southern hip hop,urban contemporary",0.638,0.54,0.0,-6.849,1.0,0.0473,0.506,0.0,0.157,0.352,143.772,4.0,,Virgin Records,"C © 2003 Virgin Records America, Inc., P ℗ 2003 Virgin Records America, Inc.",6332 +6333,spotify:track:6A5NlmBCsCGbJ27jHQgKV5,Do You Remember,"spotify:artist:4pADjHPWyrlAF0FA7joK2H, spotify:artist:3Isy6kedDrgPYoTS1dazA9, spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK","Jay Sean, Sean Paul, Lil Jon",spotify:album:2H66HrVR1UeMlAoSXpxUnk,All Or Nothing,spotify:artist:4pADjHPWyrlAF0FA7joK2H,Jay Sean,2009-01-01,https://i.scdn.co/image/ab67616d0000b273e207a14471e5356294146e9d,1,3,210800,https://p.scdn.co/mp3-preview/f4f4e31a43912b68feaf618f18030e40d48c782a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USCM50900810,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,post-teen pop,dance pop,dancehall,pop,pop rap,atl hip hop,crunk,dance pop,dirty south rap,old school atlanta hip hop,pop rap,southern hip hop,trap",0.854,0.674,11.0,-4.896,1.0,0.0705,0.0204,0.0,0.101,0.818,125.845,4.0,,Cash Money,"C © 2009 Cash Money Records Inc., P ℗ 2009 Cash Money Records Inc.",6333 +6334,spotify:track:7L2eFj0KFJDmHTPMUL4ZxR,"Holding Out for a Hero - From ""Footloose"" Soundtrack",spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,spotify:album:7F5uzfvMRa8dL1vfw4cVAH,Secret Dreams And Forbidden Fire,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,1984,https://i.scdn.co/image/ab67616d0000b273dea3ee7b1cc820da4d091beb,1,9,348333,https://p.scdn.co/mp3-preview/e0e159fbfdde5340f891d688061ccfd08ff1cdab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USSM18300449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,new wave pop,soft rock",0.612,0.675,9.0,-15.995,0.0,0.0398,0.0234,1e-05,0.0471,0.883,150.058,4.0,,Columbia,"P 1984, 1986 Sony Music Entertainment Inc.",6334 +6335,spotify:track:5HBc1VOi4e7nRK4MTGUGHj,Sucker DJ - Radio Edit,"spotify:artist:0Nrb3fWvzVUUzfYiwyJFXD, spotify:artist:00bFgWuCaaFrjC9xylIcMf","Dimples D., Ben Liebrand",spotify:album:7FRQXxA6irO4UFOKddSnsV,Sucker DJ,spotify:artist:0Nrb3fWvzVUUzfYiwyJFXD,Dimples D.,1990-07-11,https://i.scdn.co/image/ab67616d0000b273dbd90cce1b87bbfd46e3d3d6,1,2,223211,https://p.scdn.co/mp3-preview/36ecf1494eb58d09e8cda174515f57f8c204f39e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USWR38500352,spotify:user:bradnumber1,2021-08-08T09:26:31Z,old school hip hop,0.844,0.745,1.0,-10.496,1.0,0.1,0.0157,1.13e-05,0.0243,0.686,108.11,4.0,,Warlock Records,C (C) 1990 Warlock Records,6335 +6336,spotify:track:7b4yGtR0rujvLi5EBfKKJ2,Take Me Home Tonight,spotify:artist:4Tw2N3wdvJPGEU7JqMxFfE,Eddie Money,spotify:album:2gLYQmHLHZhNpTxlnlkXy7,Can't Hold Back,spotify:artist:4Tw2N3wdvJPGEU7JqMxFfE,Eddie Money,1986-10-15,https://i.scdn.co/image/ab67616d0000b273b49692931b75588a8453d4c6,1,1,211160,https://p.scdn.co/mp3-preview/45bf2861dc0db6f92669b4e92aff4d4a4d729633?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM10113106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,glam metal,hard rock,mellow gold,soft rock,southern rock",0.608,0.768,1.0,-9.911,1.0,0.0364,0.101,1.41e-06,0.0942,0.748,132.699,4.0,,Columbia,P (P) 1986 SONY BMG MUSIC ENTERTAINMENT,6336 +6337,spotify:track:3d6BLhDLG07jgUuTgJ1crq,Another Saturday Night,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,spotify:album:3ds29BDzL13tt6Xy9tuFal,The Very Best Of Cat Stevens,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,2000-01-01,https://i.scdn.co/image/ab67616d0000b273891a521c254c2ace996efacb,1,17,149200,https://p.scdn.co/mp3-preview/5056e771c0cb45621f0ab7b6b24d7ba2309bd9c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAAN7400084,spotify:user:bradnumber1,2023-01-31T06:12:46Z,"british folk,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.753,0.863,5.0,-7.084,1.0,0.113,0.613,7.03e-06,0.0478,0.964,139.964,4.0,,A&M,"C © 2000 Universal Island Records Ltd. A Universal Music Company., P This Compilation ℗ 2000 Universal Island Records Ltd. A Universal Music Company.",6337 +6338,spotify:track:5iE8XbgDYW0OeRINyq3VPG,Rockabilly Rebel,spotify:artist:1TZLeOYelnAiEkOJnofWrj,Matchbox,spotify:album:5K9F7sCQHmgHLg839uDnON,Matchbox,spotify:artist:1TZLeOYelnAiEkOJnofWrj,Matchbox,1979,https://i.scdn.co/image/ab67616d0000b273bac02e3d8797e2ca6b78ef0f,1,1,167040,https://p.scdn.co/mp3-preview/11fdc02c806b0c29d7d8344537bc27d381990663?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBAHS0300605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rockabilly,uk rockabilly",0.639,0.964,7.0,-6.029,1.0,0.0407,0.556,0.00483,0.143,0.925,107.809,4.0,,WM UK,"C © 1979 Magnet Records Limited, P ℗ 2011 Rhino UK, a division of Warner Music UK Limited",6338 +6339,spotify:track:5esEbMt6LHtiha7cqsGdO7,Flash Delirium,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,spotify:album:3HA1Ru1gEAgaxTywkJmBOL,Congratulations,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,2010-04-09,https://i.scdn.co/image/ab67616d0000b273a38f4c1b8f53a2f792ffb561,1,4,255906,https://p.scdn.co/mp3-preview/77908cdcd7979cc494da152d0c1339b692ba49dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSM11000445,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,indie rock,indietronica,modern rock,rock",0.575,0.804,9.0,-3.933,0.0,0.0626,0.0826,0.000363,0.0681,0.399,122.08,4.0,,Columbia,P (P) 2010 Sony Music Entertainment,6339 +6340,spotify:track:0CkxNpmg58xn1PTuHNOPns,When Will I Be Famous?,spotify:artist:2LKrAJVB1842xPDvx4uuwU,Bros,spotify:album:2Fge13BVj9xQN1VAzylpu5,Push (Deluxe Edition),spotify:artist:2LKrAJVB1842xPDvx4uuwU,Bros,2013-11-08,https://i.scdn.co/image/ab67616d0000b27304ac00b52282fa61045ad3dd,1,14,240066,https://p.scdn.co/mp3-preview/1c3d7a882c53e09e4ad17f90e379e4899192c338?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBBBN8700005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop",0.645,0.801,0.0,-6.731,1.0,0.028,0.00252,3.4e-05,0.15,0.46,123.471,4.0,,Sony Music UK,P (P) 2013 Sony Music Entertainment UK Limited,6340 +6341,spotify:track:69rqnL1uOJ9c2rsRaGDs58,Jack and Jill,"spotify:artist:0NyzfcGDZZ6GM25EBG9BYK, spotify:artist:1VQ7baxc9Okx2YuRnpKMMR","Ray Parker Jr., Raydio",spotify:album:5kZQ0bkyvUGkaTzs9lyjuZ,The Essential Ray Parker Jr & Raydio,"spotify:artist:0NyzfcGDZZ6GM25EBG9BYK, spotify:artist:1VQ7baxc9Okx2YuRnpKMMR","Ray Parker Jr., Raydio",2018-11-09,https://i.scdn.co/image/ab67616d0000b273eb13400890704aa3d2397382,1,1,275213,https://p.scdn.co/mp3-preview/71c2c437e26b31c51155894d136ab1d725593657?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USAR17800116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"theme,yacht rock",0.694,0.458,4.0,-11.66,1.0,0.0295,0.0853,0.0,0.206,0.386,106.014,4.0,,RCA/Legacy,P This compilation (P) 2018 Sony Music Entertainment,6341 +6342,spotify:track:24y3tSyLdRbpVsKhQrR2oj,Never Again,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:4LgTmVlUlNWsfriBJ0jury,My December,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2007,https://i.scdn.co/image/ab67616d0000b2734ded83be3055a4884d131009,1,1,217293,https://p.scdn.co/mp3-preview/f2ffb0093a3d6751d563383f8352a4b81f2c4769?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBCTA0700059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.514,0.91,7.0,-2.978,0.0,0.0714,0.00168,0.00187,0.224,0.472,145.907,4.0,,19 Recordings,P (P) 2007 19 Recordings Limited,6342 +6343,spotify:track:1e5grnGb7YIcX9EuJM1mtB,Higher,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,spotify:album:4btSrwp3BOMRmxKwUhbS0Z,Greatest Hits,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,2004,https://i.scdn.co/image/ab67616d0000b2736cc53facdfee03b7eb1a23cb,1,6,326293,https://p.scdn.co/mp3-preview/cd38d3d55bda0fc1c8e8be9a7f9198999fad7b95?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU39909053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.46,0.822,2.0,-6.338,1.0,0.0375,4.99e-05,0.00014,0.147,0.448,155.766,4.0,,Wind Up,"C (C) 2004 Wind-Up Records, LLCThis label copy information is the subject of copyright protection. All rights reserved.(C) EMI Music Germany GmbH & Co. KG, P (P) 2004 The copyright in this sound recording is owned by Wind-Up Records, LLC under exclusive licence to EMI Music Germany GmbH & Co. KG",6343 +6344,spotify:track:73QrH5GoOXsiCNOMmWvh4k,Quarter To Three,spotify:artist:1Qw8MHpjYxm9Xf0O1ZfPiX,Gary U.S. Bonds,spotify:album:4qBBv8SzOnlzjZtpcsuhv7,The Very Best Of Gary U.S. Bonds (The Original Legrand Masters),spotify:artist:1Qw8MHpjYxm9Xf0O1ZfPiX,Gary U.S. Bonds,1998-11-08,https://i.scdn.co/image/ab67616d0000b2734ba256fe0a2e5b5d35381661,1,4,150400,https://p.scdn.co/mp3-preview/2d7949befe433834f2d6e94e9cc9b11180235dd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US3M59893804,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rhythm and blues,0.479,0.837,0.0,-9.281,0.0,0.205,0.924,0.0734,0.891,0.884,165.371,4.0,,Varese Sarabande,"C © 1998 Varese Sarabande Records, P ℗ 1998 Varese Sarabande Records",6344 +6345,spotify:track:6gtg5a7wYlQjy7n593D6dx,Guantanamera,spotify:artist:3iBuBivHItWMpdiVmLT0uB,The Sandpipers,spotify:album:7yPu64iHGrZFnHnaPjL7Yv,Guantanamera,spotify:artist:3iBuBivHItWMpdiVmLT0uB,The Sandpipers,1966,https://i.scdn.co/image/ab67616d0000b273b62d1d5337954875f6b491c6,1,1,194933,https://p.scdn.co/mp3-preview/10fce34568845cb62c42b76e68cb875bca7a54ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USAM16600400,spotify:user:bradnumber1,2021-08-08T09:26:31Z,easy listening,0.318,0.257,2.0,-15.879,1.0,0.0404,0.82,0.0032,0.106,0.648,205.852,4.0,,Polydor Associated Labels,"C © 1967 A&M Records Limited, P ℗ 1967 A&M Records Limited",6345 +6346,spotify:track:1MTMedlCphum6mRcd8YzvE,You Give Love A Bad Name,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0C8Poy7zwJ1kQh2sldyvHm,Bon Jovi Greatest Hits,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b27366e4150921726f65a2c5110c,1,2,223146,https://p.scdn.co/mp3-preview/8725d17310a4bb00377f22ef21fe93fc5fbff0da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF059290010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.533,0.963,0.0,-2.528,0.0,0.0562,0.0353,1.33e-06,0.368,0.789,122.812,4.0,,Universal/Island Def Jam,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",6346 +6347,spotify:track:1zpu1PZ8ecmcX525Z3X8cl,Yo (Excuse Me Miss),spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,spotify:album:2gRm1k9fVkhTfZDHvBI2sR,Chris Brown,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2005-11-29,https://i.scdn.co/image/ab67616d0000b2732341c852b4db72824c0e3185,1,3,229040,https://p.scdn.co/mp3-preview/aa6a920330306ef441885cecdc7dd7545f8c7d0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI10500654,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap",0.605,0.633,1.0,-5.899,0.0,0.251,0.119,0.0,0.225,0.592,87.26,4.0,,Jive,"P (P) 2005 RCA/JIVE Label Group, a unit of Sony Music Entertainment",6347 +6348,spotify:track:0xdFJkARYp9VZ2vfdNxkYX,Jellyhead,spotify:artist:6uvAL6wcnKz1IFYZzFkIQ1,Crush,spotify:album:5dFkEeiZ3Y5eU4BGNxZqpI,Crush,spotify:artist:6uvAL6wcnKz1IFYZzFkIQ1,Crush,1997-09-01,https://i.scdn.co/image/ab67616d0000b273c72e9544577ba4533e809a67,1,4,262600,https://p.scdn.co/mp3-preview/e4b7f8ce2f5c46ccaf85bae3cb5382b37fa624df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBVVQ1301714,spotify:user:bradnumber1,2022-08-25T04:50:02Z,,0.681,0.968,2.0,-6.64,1.0,0.0393,0.0185,0.478,0.0477,0.965,136.986,4.0,,Telstar Records,"C 1997 Phoenix Music International Ltd, P 1997 Telstar Records",6348 +6349,spotify:track:5uFNJWnU1imR5jC5FuSLQM,Blind Faith,"spotify:artist:3jNkaOXasoc7RsxdchvEVq, spotify:artist:022EiWsch2zvty0qBUksDO","Chase & Status, Liam Bailey",spotify:album:7aot737RLXCnUBTEm2cG1b,No More Idols (Platinum Edition),spotify:artist:3jNkaOXasoc7RsxdchvEVq,Chase & Status,2011-01-01,https://i.scdn.co/image/ab67616d0000b273e8d02c5bb3247db3de1dcb45,1,4,233666,https://p.scdn.co/mp3-preview/243f26dcc3b430f5b7473a13a810e6ff65dc8ecc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71027458,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dancefloor dnb,drum and bass,uk dance,british soul",0.45,0.846,9.0,-4.712,0.0,0.0472,0.00523,0.0,0.228,0.402,140.042,4.0,,Mercury,"C © 2011 Chase & Status under exclusive licence to Mercury Records Limited, P ℗ 2011 Chase & Status under exclusive licence to Mercury Records Limited",6349 +6350,spotify:track:4areksgU8Nn6bf0kIAY8q0,Some Girls,spotify:artist:1W4SfNO5hb1tdX0wQ87zxl,Racey,spotify:album:7Lj60heeynLtuvguh42sEY,The Best Of Racey,spotify:artist:1W4SfNO5hb1tdX0wQ87zxl,Racey,2003-02-28,https://i.scdn.co/image/ab67616d0000b2738436cf22bcfe1ac7fec4e201,1,6,207480,https://p.scdn.co/mp3-preview/a63627e0035320626777b13fc118ffd5572c4463?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAYE7800351,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.728,0.844,4.0,-4.664,0.0,0.0693,0.62,4.91e-05,0.0467,0.928,91.3,4.0,,Parlophone UK,"C © 1993 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1993 Parlophone Records Ltd, a Warner Music Group Company",6350 +6351,spotify:track:5KNXWPxIipJH1aetZLHpUM,Mother & Father,spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS,BROODS,spotify:album:6TVMO61IfPwKISnt1a6UZC,Evergreen,spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS,BROODS,2014-01-01,https://i.scdn.co/image/ab67616d0000b2739c42f5388622de8f4f3f4bbc,1,1,187710,https://p.scdn.co/mp3-preview/119a2cc861f7061c6ae202b4d57d0cbae9f5cbc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBUM71402900,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"auckland indie,etherpop,indietronica,metropopolis,nz pop",0.617,0.862,0.0,-4.555,1.0,0.0458,0.0182,1.33e-06,0.0865,0.472,86.981,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 Dryden Street Ltd, P ℗ 2014 Dryden Street Ltd, under exclusive license to Island Records Australia / Universal Music Australia",6351 +6352,spotify:track:1wQ1T9oOA181rViSBhulZI,Going On,spotify:artist:5SbkVQYYzlw1kte75QIabH,Gnarls Barkley,spotify:album:1waCI4ZmzEPBmlWWOM0lCH,The Odd Couple,spotify:artist:5SbkVQYYzlw1kte75QIabH,Gnarls Barkley,2008-04-07,https://i.scdn.co/image/ab67616d0000b27395ec27252ac9553457a87adc,1,3,174040,https://p.scdn.co/mp3-preview/ea861dc3aac3e989c32c62e5f342295ca7978222?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBAHT0800085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,neo soul",0.443,0.897,1.0,-4.75,1.0,0.0545,0.00211,0.0,0.34,0.49,149.946,4.0,,WM UK,"C © 2008 Gnarls Barkley under exclusive license to Warner Music UK Ltd., P ℗ 2008 Gnarls Barkley under exclusive license to Warner Music UK Ltd.",6352 +6353,spotify:track:0YVEEqELeoCl8VnHa5EyBh,What You're On,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:4KNj6KCc6cx2bKpkkGJQgl,Better In The Dark,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2007-10-13,https://i.scdn.co/image/ab67616d0000b2732202250be60af68299b09014,1,10,296266,https://p.scdn.co/mp3-preview/2b830c3196d78d2a6cd012161b54fdbfa4449ca7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUBM00700794,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.585,0.576,10.0,-7.925,1.0,0.0326,0.0082,0.00209,0.0862,0.282,129.148,4.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,6353 +6354,spotify:track:5Hv1QAbRWrUSUHaT0CmnMS,Into the Night (feat. Chad Kroeger),"spotify:artist:6GI52t8N5F02MxU0g5U69P, spotify:artist:7fJYw1vK9yWb8o51I8qHin","Santana, Chad Kroeger",spotify:album:6FbFvnlSfEoNhwz5MdK0Dx,Ultimate Santana,spotify:artist:6GI52t8N5F02MxU0g5U69P,Santana,2007-09-25,https://i.scdn.co/image/ab67616d0000b2735ffffefb4343759b63f72598,1,1,222440,https://p.scdn.co/mp3-preview/0966238ce54f8ee67d927039374ce463714d23e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAR10700353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,classic rock,mexican classic rock",0.595,0.844,7.0,-4.678,1.0,0.0331,0.0137,0.0,0.234,0.603,127.981,4.0,,Arista,"P This Compilation (P) 2007 RCA/JIVE Label Group, a unit of Sony Music Entertainment",6354 +6355,spotify:track:701LzRhwgjnJgxEILYspx5,Out of Time (Stereo Version),spotify:artist:0xUA9sZvM1DBVySSvUaHtu,Chris Farlowe,spotify:album:5Kcyh2Lgg1w045Vo2WFIBZ,The Art of Chris Farlowe (Stereo Version),spotify:artist:0xUA9sZvM1DBVySSvUaHtu,Chris Farlowe,1966-11-15,https://i.scdn.co/image/ab67616d0000b273cdf823c8b10faa91a439877c,1,7,194826,https://p.scdn.co/mp3-preview/d7ddd3cf39102b389541e06e54254d24a08a6eae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAWA0615512,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion",0.514,0.686,7.0,-9.458,1.0,0.0547,0.5,0.0,0.527,0.748,127.062,4.0,,Charly | Immediate,"C 2018 Charly Acquisitions Ltd., P 1966 Immediate",6355 +6356,spotify:track:2CT08rpgdut8qQs7IAzMGi,Friday on My Mind,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,spotify:album:2LTIOQBvQt6ubWJQiQSxS9,Easy,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,1965-01-01,https://i.scdn.co/image/ab67616d0000b2736f69cc280f4d0f6df3d2107e,1,18,163293,https://p.scdn.co/mp3-preview/96c6daf190025c11d8687690bce1968053e46770?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AUAP06600062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,freakbeat,protopunk,psychedelic rock",0.374,0.991,9.0,-1.101,1.0,0.0813,0.38,0.000719,0.0929,0.51,95.105,4.0,,Albert Productions,"C © 1965 BMG AM Pty Ltd., P ℗ 1965 BMG AM Pty Ltd.",6356 +6357,spotify:track:0muXMTDH3abG3x2EUzu7S1,Little Arrows,spotify:artist:7lgv8OCexyuvGs3Xn2O7n2,Leapy Lee,spotify:album:1w577iesDnScgyD3QCHP37,50th Anniversary Album,spotify:artist:7lgv8OCexyuvGs3Xn2O7n2,Leapy Lee,2018-12-01,https://i.scdn.co/image/ab67616d0000b273cb0f8319f36048218d129dc1,1,8,163840,https://p.scdn.co/mp3-preview/71448a22edd147258043e5a80e3570a5cda6e9be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UKATK1800428,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.651,0.674,11.0,-8.56,1.0,0.0386,0.627,0.0,0.188,0.937,104.065,4.0,,Lounge Music,"C 2018 Lounge Music, P 2018 Lounge Music",6357 +6358,spotify:track:7l9IqDtVWJurTvkQHq1BGh,she's all i wanna be,spotify:artist:45dkTj5sMRSjrmBSBeiHym,Tate McRae,spotify:album:5fhTetHew6Eph6HfQ9O5gJ,i used to think i could fly,spotify:artist:45dkTj5sMRSjrmBSBeiHym,Tate McRae,2022-05-27,https://i.scdn.co/image/ab67616d0000b273f7108342ef45a402af8206b2,1,8,207120,https://p.scdn.co/mp3-preview/404935a0ab1ae472569566569e893b6bf816a92a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USRC12103120,spotify:user:bradnumber1,2022-06-13T03:51:39Z,pop,0.602,0.626,2.0,-5.323,0.0,0.0396,0.0129,9.02e-06,0.144,0.619,160.118,4.0,,RCA Records Label,"P (P) 2022 RCA Records, a division of Sony Music Entertainment",6358 +6359,spotify:track:6WJtzSaXumGZ7pIa0z7QIP,What Took You So Long?,spotify:artist:2AEEnr6Le5zHzBwpnlZSmq,Emma Bunton,spotify:album:5E6op11XOQa3ErVR4oLKss,A Girl Like Me,spotify:artist:2AEEnr6Le5zHzBwpnlZSmq,Emma Bunton,2001-01-01,https://i.scdn.co/image/ab67616d0000b2730a9db96ae5cff4cb7c70187b,1,1,241000,https://p.scdn.co/mp3-preview/01ec28e1ab08f807d845e63f05e1b15192f0c628?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAAA0100052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.668,0.772,9.0,-5.4,0.0,0.0307,0.123,0.0,0.341,0.911,118.011,4.0,,Virgin Records,"C © 2001 Virgin Records Limited, P ℗ 2001 Virgin Records Limited",6359 +6360,spotify:track:3uUuGVFu1V7jTQL60S1r8z,Where Are You Now,"spotify:artist:7f5Zgnp2spUuuzKplmRkt7, spotify:artist:6ydoSd3N2mwgwBHtF6K7eX","Lost Frequencies, Calum Scott",spotify:album:5YrOK7zze6egKg9a8WRcnD,Where Are You Now,"spotify:artist:7f5Zgnp2spUuuzKplmRkt7, spotify:artist:6ydoSd3N2mwgwBHtF6K7eX","Lost Frequencies, Calum Scott",2021-07-30,https://i.scdn.co/image/ab67616d0000b2738d7a7f1855b04104ba59c18b,1,1,148197,https://p.scdn.co/mp3-preview/e2646d5bc8c56e4a91582a03c089f8038772aecb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,BEHP42100067,spotify:user:bradnumber1,2021-11-20T11:36:45Z,"belgian edm,edm,pop dance,tropical house,pop",0.671,0.636,6.0,-8.117,0.0,0.103,0.515,0.000411,0.172,0.262,120.966,4.0,,Epic Amsterdam,"P (P) 2021 Lost & Cie Music SPRL exclusively licensed to Epic Amsterdam, with courtesy of Sony Music Entertainment Belgium NV/SA",6360 +6361,spotify:track:5qgGXHf4yXNk2Z1LzMQDCh,Everyday,spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,spotify:album:7Ei1pgC4goW851DOzt9IJf,Old New Borrowed and Blue (Expanded),spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,1974-02-15,https://i.scdn.co/image/ab67616d0000b273e721f8eeffefbb38faf47dac,1,11,190493,https://p.scdn.co/mp3-preview/70f8d00a4c0026e95378d37a31ae482ba9eb24f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKVD0600026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.521,0.464,7.0,-3.883,1.0,0.025,0.65,3.58e-06,0.368,0.263,85.486,3.0,,BMG Rights Management (UK) Limited,"C © 2006 Whild John Ltd. under exclusive licence to BMG Rights Management (UK) Ltd., P ℗ 2006 Whild John Ltd. under exclusive licence to BMG Rights Management (UK) Ltd.",6361 +6362,spotify:track:6nzXkCBOhb2mxctNihOqbb,Bad Girls,spotify:artist:0QJIPDAEDILuo8AIq3pMuU,M.I.A.,spotify:album:3dAxXNscIj0p53lBMEziYR,Matangi,spotify:artist:0QJIPDAEDILuo8AIq3pMuU,M.I.A.,2013-01-01,https://i.scdn.co/image/ab67616d0000b2733d6fa293f49903ed38fbe0de,1,8,227520,https://p.scdn.co/mp3-preview/44015851f9cd2734369585d747a929db0232cc44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUG11200143,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"escape room,indietronica,new rave",0.639,0.912,1.0,-2.621,1.0,0.0615,0.00107,0.0,0.097,0.343,143.448,4.0,,Interscope,"C © 2013 Maya Arulpragasam, under exclusive license to Interscope Records, P ℗ 2013 Maya Arulpragasam, under exclusive license to Interscope Records",6362 +6363,spotify:track:0pRg3uYbv1BdeNQXpo76Mx,We're Going Home,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:3S9ZdKgCTuobkoIWUK2gH0,Nation of Two,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2018-02-23,https://i.scdn.co/image/ab67616d0000b2730301c4c2b4fc7299df04cbf6,1,3,207906,https://p.scdn.co/mp3-preview/a58ddee87399e99648d9c160e8292de99793e94f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21705315,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.589,0.688,4.0,-5.443,0.0,0.0301,0.289,3.59e-06,0.139,0.453,95.902,4.0,,Liberation Records,"C 2018 Liberation Records, P 2018 Liberation Records",6363 +6364,spotify:track:6OZh916QF8XNunWaP97WEZ,Fast Car,"spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:2zzpznMuhKlKlqh1ma7Sms","Jonas Blue, Dakota",spotify:album:5jfuIbTeaLhBZxsCVv3QyM,Fast Car,spotify:artist:1HBjj22wzbscIZ9sEb5dyf,Jonas Blue,2015-12-04,https://i.scdn.co/image/ab67616d0000b2735cf78b9932b45387375528eb,1,1,212424,https://p.scdn.co/mp3-preview/4982dffa383c7dc43ab4232b2c70696ebd953dae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71507621,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop dance,tropical house,uk dance",0.459,0.587,9.0,-6.983,1.0,0.0785,0.453,0.0,0.307,0.581,113.901,4.0,,Universal Music Group,"C © 2015 Jonas Blue Music, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd, P ℗ 2015 Jonas Blue Music, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd",6364 +6365,spotify:track:4v5w2QRwRT7cSXUrNu1Ttb,I'll Be Your Baby Tonight (feat. UB40),spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,spotify:album:3FmsISJ5ytOJSRkW5XdkoF,The Essential Selection,spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,2000-09-04,https://i.scdn.co/image/ab67616d0000b27399864ba5b1ca42109d9efc6a,1,5,205640,https://p.scdn.co/mp3-preview/2a1e656b7d968ddf393460ecf26d001b22e9d467?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GB01A9000031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,mellow gold,new romantic,new wave,new wave pop,singer-songwriter,soft rock,yacht rock",0.526,0.766,8.0,-10.348,1.0,0.0598,0.0575,0.215,0.0492,0.973,112.794,5.0,,Parlophone UK,"C © 2000 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2000 Parlophone Records Ltd, a Warner Music Group Company",6365 +6366,spotify:track:0PIraUtGOhQUagM1sZAZNk,The Reason,spotify:artist:2MqhkhX4npxDZ62ObR5ELO,Hoobastank,spotify:album:35jLWCdqhbw1ThXIUfyXjP,High Skool Rocks,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b27389750a5195bc9900949d0ea0,1,10,233013,https://p.scdn.co/mp3-preview/ce48dfd251b01df36799a0dd9cb23ebbc79bbe7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USIR20300704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,pop rock,post-grunge",0.476,0.615,4.0,-6.411,1.0,0.0288,0.0118,0.0,0.137,0.0799,82.982,4.0,,Universal Music Group International,"C © 2007 Universal Music International Ltd., P This Compilation ℗ 2007 Universal Music International Ltd.",6366 +6367,spotify:track:7iZfg9nHKc44UYgj9V5Rih,Wand'rin' Star,spotify:artist:7GbjN1ab1LJcJV2JOhTqBK,Lee Marvin,spotify:album:1otxnbNje1kqUlLFt2lYkr,Paint Your Wagon,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1977-01-01,https://i.scdn.co/image/ab67616d0000b273fcdd00c509fe79fa1cc79499,1,12,268293,,False,0,USMC10346434,spotify:user:bradnumber1,2020-03-05T09:20:26Z,,0.287,0.26,1.0,-19.194,1.0,0.0333,0.906,0.0128,0.11,0.374,97.587,4.0,,Geffen*,"C © 1977 Geffen Records, P This Compilation ℗ 1977 Geffen Records",6367 +6368,spotify:track:5t4B1kAlCD13YY9poph0Mg,Stitches,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:11fLgnq2LE8p5hzo8urweI,Handwritten (Revisited),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2015-11-20,https://i.scdn.co/image/ab67616d0000b2731e14091e65888a7eb8d9020f,1,2,206880,https://p.scdn.co/mp3-preview/4c9b1eea09cbc866b2a292dca3f30a8c1966c23c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USUM71500658,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.594,0.754,1.0,-6.684,1.0,0.11,0.0153,0.0,0.0486,0.74,73.184,4.0,,Island Records,"C © 2015 Island Records, a division of UMG Recordings, Inc., P ℗ 2015 Island Records, a division of UMG Recordings, Inc.",6368 +6369,spotify:track:46GGxd8TVRt6FjUBfCavVT,Renegades,spotify:artist:3NPpFNZtSTHheNBaWC82rB,X Ambassadors,spotify:album:5yQ3ctYzF5d1SgMzhyWe8s,VHS,spotify:artist:3NPpFNZtSTHheNBaWC82rB,X Ambassadors,2015-06-30,https://i.scdn.co/image/ab67616d0000b273945bde149d413a1c6d974eed,1,2,195199,https://p.scdn.co/mp3-preview/92f258da5f3cef5f8790040f4d601dbb27c2516b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71502643,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern alternative rock,modern rock,stomp pop",0.514,0.858,2.0,-5.995,1.0,0.0896,0.0127,0.0528,0.251,0.6,89.833,4.0,,Universal Music Group,"C © 2015 KIDinaKORNER/Interscope Records, P ℗ 2015 KIDinaKORNER/Interscope Records",6369 +6370,spotify:track:7gkboYtvhuXNS4EUwmFPcw,Feel Like Makin' Love,spotify:artist:0W498bDDNlJIrYMKXdpLHA,Roberta Flack,spotify:album:3eOdBKYQ2w2eCvz2FxEmBA,Feel Like Makin' Love,spotify:artist:0W498bDDNlJIrYMKXdpLHA,Roberta Flack,1975,https://i.scdn.co/image/ab67616d0000b2731e907c4adc9153bfe784f1cf,1,5,175400,https://p.scdn.co/mp3-preview/b4b4f80321b9c35a5b7b61955e87d1d4691387ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAT20001177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,disco,quiet storm,soft rock,soul,vocal jazz",0.681,0.264,8.0,-21.861,1.0,0.0309,0.833,0.441,0.103,0.692,93.809,4.0,,Rhino Atlantic,"C 2011 © 1975 Atlantic Recording Corporation., P 2011 ℗ 1975 Atlantic Recording Corporation. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",6370 +6371,spotify:track:5AnCLGg35ziFOloEnXK4uu,Adore You,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:3RDqXDc1bAETps54MSSOW0,Bangerz (Deluxe Version),spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2013-10-04,https://i.scdn.co/image/ab67616d0000b2736b18d0490878750cd69abf2c,1,1,278746,https://p.scdn.co/mp3-preview/1a66b7a1b05ab7036b4460b251ac954193bff749?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USRC11301264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.583,0.655,0.0,-5.407,1.0,0.0315,0.111,3.57e-06,0.113,0.201,119.759,4.0,,RCA Records Label,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",6371 +6372,spotify:track:0R7YVi7w41Dr9jU5vblAok,Sweat - Remix,"spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Snoop Dogg, David Guetta",spotify:album:7i3ZUKLj6bszovw4IfRECy,Sweat (Snoop Dogg Vs. David Guetta) [Remix],"spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Snoop Dogg, David Guetta",2011-01-01,https://i.scdn.co/image/ab67616d0000b2739fa2954cdefd83d439a1e7ac,1,1,195986,https://p.scdn.co/mp3-preview/58b317d9747108381887d51e6f80034836bf4efc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USCA21100463,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,pop rap,rap,west coast rap,big room,dance pop,edm,pop,pop dance",0.813,0.732,7.0,-5.636,1.0,0.03,0.0597,0.00137,0.0826,0.731,130.02,4.0,,Capitol Records,"C © 2011 Capitol Records, LLC, P ℗ 2011 Capitol Records, LLC",6372 +6373,spotify:track:31er9IGsfFbwqy1pH4aiTP,I Have Nothing,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:7JVJlkNNobS0GSoy4tCS96,The Bodyguard - Original Soundtrack Album,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1992-11-17,https://i.scdn.co/image/ab67616d0000b273456c0b5d0316a80dc600802e,1,2,289160,https://p.scdn.co/mp3-preview/5c8f741d2fb049a966c087b9942781f715ebdbc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USAR10300965,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.541,0.401,0.0,-10.499,1.0,0.0365,0.576,0.0,0.164,0.24,152.943,3.0,,Arista,P (P) 1992 Arista Records LLC,6373 +6374,spotify:track:6ToM0uwxtPKo9CMpbPGYvM,Break on Through (To the Other Side),spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,spotify:album:1jWmEhn3ggaL6isoyLfwBn,The Doors,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,1967-01-04,https://i.scdn.co/image/ab67616d0000b2735b96a8c5d61be8878452f8f1,1,1,145866,https://p.scdn.co/mp3-preview/af8cb2c28e8a897cec1f7c9831abcfe0fc431b9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USEE19900198,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,classic rock,hard rock,psychedelic rock,rock",0.421,0.751,9.0,-9.584,1.0,0.0472,0.2,0.0,0.17,0.789,89.839,4.0,,Rhino/Elektra,"C © 1967 Elektra Entertainment for United States and WEA International Inc. for the world outside of the United States., P ℗ 1967 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States",6374 +6375,spotify:track:6kXGGyEPSRS1g9Ltm70jo9,Love the One You're With,spotify:artist:2pdvghEHZJtgSXZ7cvNLou,"Crosby\, Stills & Nash",spotify:album:1ZMa2C7vUFFCqX8xcFuFX3,Replay,spotify:artist:2pdvghEHZJtgSXZ7cvNLou,"Crosby\, Stills & Nash",1980-12-08,https://i.scdn.co/image/ab67616d0000b2731fce24e5e0896809397a3210,1,7,184653,https://p.scdn.co/mp3-preview/7b862bf41fdfac77ad23a763415e15a090219400?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT20613385,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk,folk rock,mellow gold,rock,soft rock",0.609,0.489,0.0,-12.9,1.0,0.0385,0.0674,0.0,0.101,0.131,97.163,4.0,,Rhino Atlantic,"C © 1980 Atlantic Records, P ℗ 1980 Atlantic Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",6375 +6376,spotify:track:5C8ySsx3AT121g24uYR823,NO BAD DAYS (feat. Collett),"spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:6u079TgFSFrxtv8iqq0Zn9","Macklemore, Collett",spotify:album:6K5RX7xasf8WdeQjapsThS,BEN,spotify:artist:3JhNCzhSMTxs9WLGJJxWOY,Macklemore,2023-03-03,https://i.scdn.co/image/ab67616d0000b273033b871ae27b16ddd8139806,1,2,173453,https://p.scdn.co/mp3-preview/be69812510a434ec3f9127139d572761ad4a1070?cid=9950ac751e34487dbbe027c4fd7f8e99,True,61,ZZOPM2341920,spotify:user:bradnumber1,2023-03-08T22:19:55Z,"pop rap,seattle hip hop",0.769,0.858,8.0,-6.01,1.0,0.15,0.117,0.0186,0.157,0.86,160.049,4.0,,Bendo LLC,"C © 2023 Bendo, LLC, P ℗ 2023 Bendo, LLC",6376 +6377,spotify:track:5DwfuDBJbNULiRSq2GZO4u,Take Good Care of Her,spotify:artist:1rBtwsSkGLKYGhL5yj98Wd,Adam Wade,spotify:album:0dUkskUF5dEKIX6eUS9yci,Take Good Care of Her,spotify:artist:1rBtwsSkGLKYGhL5yj98Wd,Adam Wade,2015-03-04,https://i.scdn.co/image/ab67616d0000b273e3847b385b5dd1a86331d6f4,1,1,152240,https://p.scdn.co/mp3-preview/d83c877c6b72927d380faa8f74dd5ab60d83283b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLRD51411837,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.219,0.328,11.0,-11.345,1.0,0.0334,0.74,0.0,0.344,0.394,80.442,3.0,,JB Production CH,"C 2015 JB Production CH, P 2015 JB Production CH",6377 +6378,spotify:track:5f4oy73KathdqPVm746x9x,Dr. Heckyll & Mr. Jive,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,spotify:album:6GYIy1SuhPDrugCZ5yNeQy,The Best Of Men At Work: Contraband,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,1996-02-01,https://i.scdn.co/image/ab67616d0000b273d6a1f7a12629154fa274631f,1,12,276893,https://p.scdn.co/mp3-preview/056d9b605fe1807baa5cf20ebac94ecd921003b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USSM18200070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,rock,soft rock",0.437,0.81,4.0,-5.396,1.0,0.0955,0.153,0.0,0.114,0.616,147.723,4.0,,Columbia,P (P) 1996 Sony Music Entertainment Inc.,6378 +6379,spotify:track:0rSckbp0aam2nGy1ri9Aty,Evie (Part One),spotify:artist:4tyua0wKtVDZVBVlRwyBRl,Stevie Wright,spotify:album:2Slr9ZSZ8MEGdsJpLz0d1Y,Hard Road,spotify:artist:4tyua0wKtVDZVBVlRwyBRl,Stevie Wright,1974-01-01,https://i.scdn.co/image/ab67616d0000b2735b90840f0b47a5888b211836,1,7,240000,https://p.scdn.co/mp3-preview/90bf3020d62fcb7ce73232d038e96600df837dae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07400019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.482,0.95,9.0,-3.923,1.0,0.111,0.0369,0.000207,0.374,0.786,90.203,4.0,,Albert Productions,"C © 1974 BMG AM Pty Ltd., P ℗ 1974 BMG AM Pty Ltd.",6379 +6380,spotify:track:6HksxcBzMVdT17aq1Q79Xe,My Friends,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:2rQ135imvelvp89D8eEZOi,One Hot Minute (Deluxe Edition),spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,1995-09-12,https://i.scdn.co/image/ab67616d0000b2737f3dcf99224570b053294ccf,1,4,248640,https://p.scdn.co/mp3-preview/ceeb74dfa5c9d86727475e3faf116449da1bb5ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USWB19901559,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.439,0.709,0.0,-3.545,1.0,0.026,0.00565,0.00152,0.131,0.319,81.331,4.0,,Warner Records,"C © 1995 Warner Records Inc., P ℗ 1995 Warner Records Inc.",6380 +6381,spotify:track:1VHVB3N84lUqYdBmq7dNbL,Johnny Angel,spotify:artist:6ZID5oFfvvgzIRrqXaTJSy,Shelley Fabares,spotify:album:7BPRs9x8twq4n14stLANlS,Johnny Angel - The Best of Shelley Fabares,spotify:artist:6ZID5oFfvvgzIRrqXaTJSy,Shelley Fabares,2012-07-09,https://i.scdn.co/image/ab67616d0000b273a411eaa29346e7bfa772100c,1,1,141296,https://p.scdn.co/mp3-preview/75bcb74b1588045b275e30b7b303f9fb3235738c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GB8XC1049126,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,doo-wop",0.402,0.37,0.0,-9.648,1.0,0.0331,0.844,0.0,0.154,0.761,107.144,4.0,,AP Music Ltd,"C Ap Music Ltd, P Ap Music Ltd",6381 +6382,spotify:track:63wZlylRUopU7xfLsWICOC,If You Could Read My Mind,spotify:artist:7juiPJMZrtjD2QprlmGxox,Stars On 54,spotify:album:1GUpOakxdxIl0fQqZU0mTu,If You Could Read My Mind,spotify:artist:7juiPJMZrtjD2QprlmGxox,Stars On 54,1998,https://i.scdn.co/image/ab67616d0000b2734c9682c39e443e478e74ae99,1,1,206773,https://p.scdn.co/mp3-preview/01db73ed66d5913f342909192c43a645c3f40103?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USTB10300876,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.609,0.88,3.0,-7.407,1.0,0.0742,0.0405,0.0,0.284,0.389,126.981,4.0,,Tommy Boy Records,"C 1998 Tommy Boy Records., P 1998 Tommy Boy Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",6382 +6383,spotify:track:01QwobyKNu7WRCVuTQbRDN,Hello Mary Lou,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:4HirIvj3y4Ok3o2MCZtdfB,Mardi Gras,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1972-04-11,https://i.scdn.co/image/ab67616d0000b2738be6c7e974cc6c9ac8d5be86,1,8,132866,https://p.scdn.co/mp3-preview/a38c7a7a9d65d097ab7b9919a05ef2d37370c0cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USFI87200110,spotify:user:bradnumber1,2022-08-26T01:07:01Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.648,0.54,9.0,-12.563,1.0,0.0326,0.0355,4.12e-06,0.0386,0.963,103.454,4.0,,Craft Recordings,"C © 1989 Fantasy, Inc., P This Compilation ℗ 1989 Fantasy, Inc.",6383 +6384,spotify:track:5wLsOFWBXXyoAgX7qQ6wbo,Sex (Cheat Codes X Kris Kross Amsterdam),"spotify:artist:7DMveApC7UnC2NPfPvlHSU, spotify:artist:4LcUpNlXFEleaLlelmkv2R","Cheat Codes, Kris Kross Amsterdam",spotify:album:5wHL6jMkYMR05m462UrKqg,Sex (Cheat Codes X Kris Kross Amsterdam),"spotify:artist:7DMveApC7UnC2NPfPvlHSU, spotify:artist:4LcUpNlXFEleaLlelmkv2R","Cheat Codes, Kris Kross Amsterdam",2016-02-19,https://i.scdn.co/image/ab67616d0000b2738ebe06e0e5f4c1c5edbb3022,1,1,228361,https://p.scdn.co/mp3-preview/be9d0b058f87818d90f2f0d17692f220369fd548?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,NLZ541600026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,dutch house,dutch pop",0.51,0.692,0.0,-5.825,1.0,0.171,0.00451,0.0,0.138,0.209,102.42,4.0,,Universal Music Australia Pty. Ltd.,"C (C) 2016 SpinninRecords.com, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd. www.ministryofsound.com.au, P (P) 2016 SpinninRecords.com, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd. www.ministryofsound.com.au",6384 +6385,spotify:track:3CJvmtWw2bJsudbAC5uCQk,Hands To Myself,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:3Kbuu2tHsIbplFUkB7a5oE,Revival (Deluxe),spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2015-10-09,https://i.scdn.co/image/ab67616d0000b2736bc7473df6c9d1fd90972e84,1,3,200680,https://p.scdn.co/mp3-preview/f99b6739eb7a4b783322c5f2a2a89ee10dafcf2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USUM71513592,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.811,0.507,5.0,-7.161,0.0,0.117,0.0146,2.14e-06,0.342,0.438,111.016,4.0,,Selena Gomez PS,"C © 2015 Interscope Records, P ℗ 2015 Interscope Records",6385 +6386,spotify:track:45ZGEdLxCZvdMX9jWlsAAx,I Don't Belong In This Club,"spotify:artist:2jnIB6XdLvnJUeNTy5A0J2, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY","Why Don't We, Macklemore",spotify:album:3CKzA951WnfvvOGresjno6,I Don't Belong In This Club,"spotify:artist:2jnIB6XdLvnJUeNTy5A0J2, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY","Why Don't We, Macklemore",2019-03-20,https://i.scdn.co/image/ab67616d0000b2732115c227a8f63a750381f1a9,1,1,222620,https://p.scdn.co/mp3-preview/072cc0345752376355559943e7ca29f59b364bb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21901829,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,pop rap,seattle hip hop",0.797,0.543,11.0,-5.744,1.0,0.0439,0.0202,0.0,0.0726,0.164,115.036,4.0,,Atlantic Records,"C 2019 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world excluding the United States, P 2019 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world excluding the United States",6386 +6387,spotify:track:4o6BgsqLIBViaGVbx5rbRk,You Make My Dreams (Come True),spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,spotify:album:4LniALl9S6YedTFdiZWOMS,Voices,spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,1980,https://i.scdn.co/image/ab67616d0000b273fe1a9aa59e3c6189a09ae37a,1,8,190626,https://p.scdn.co/mp3-preview/5f096f9722067db33f1453ea8804725ca15ac5bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USRC10301828,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,singer-songwriter,soft rock,yacht rock",0.751,0.501,5.0,-12.151,1.0,0.0551,0.234,0.112,0.0467,0.902,167.057,4.0,,RCA/BMG Heritage,P (P) 1980 Sony Music Entertainment,6387 +6388,spotify:track:48TX0FwarzQpMLuI2V0sfe,5.7.0.5,spotify:artist:08dazMCiWeKkomvpDLSetA,City Boy,spotify:album:2968l5mCzmBU0RUDD3hDOW,Young Men Gone West/Book Early,spotify:artist:08dazMCiWeKkomvpDLSetA,City Boy,2015-07-31,https://i.scdn.co/image/ab67616d0000b273c6ecd4b35ab9a768045cd3c1,2,1,193400,https://p.scdn.co/mp3-preview/221775be2c943af884bec7c6f585e808a4039645?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,GBF087800640,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.677,0.63,9.0,-9.735,0.0,0.0469,0.0177,3.89e-06,0.0886,0.895,124.312,4.0,,Lemon Recordings,C (C) 2015 Lemon Recordings,6388 +6389,spotify:track:4fHDlIntTsRGSyTg5UYZYC,Banana Boat (Day-O),spotify:artist:6Tw1ktF4xMmzaLLbe98I2z,Harry Belafonte,spotify:album:5cBYisZzEb84qxMwXVfcT3,Calypso,spotify:artist:6Tw1ktF4xMmzaLLbe98I2z,Harry Belafonte,1956,https://i.scdn.co/image/ab67616d0000b273d46dec4689741b1400c3df95,1,1,183133,https://p.scdn.co/mp3-preview/257aaf0ccf74996d9a798ccab7e560adc2d9e412?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USRC19205526,spotify:user:bradnumber1,2024-01-02T03:28:17Z,calypso,0.797,0.105,1.0,-16.881,1.0,0.0969,0.885,0.000116,0.108,0.419,122.545,4.0,,RCA Records Label,P (P) 1956 Sony Music Entertainment,6389 +6390,spotify:track:75JFxkI2RXiU7L9VXzMkle,The Scientist,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:0RHX9XECH8IVI3LNgWDpmQ,A Rush of Blood to the Head,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2002-08-27,https://i.scdn.co/image/ab67616d0000b273de09e02aa7febf30b7c02d82,1,4,309600,https://p.scdn.co/mp3-preview/cb283ce76eeee06a724b942d36a140cc088dd50f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,GBAYE0200772,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.557,0.442,5.0,-7.224,1.0,0.0243,0.731,1.46e-05,0.11,0.213,146.277,4.0,,Parlophone Records Limited,"C © 2002 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2002 Parlophone Records Ltd, a Warner Music Group Company",6390 +6391,spotify:track:7wZUrN8oemZfsEd1CGkbXE,Bleeding Love,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,spotify:album:0VaAFegRAAn4OCg7p4QjN5,Spirit,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,2007,https://i.scdn.co/image/ab67616d0000b27334fd9eb8cd48e518598aec55,1,1,262466,https://p.scdn.co/mp3-preview/3b688a959a77d42be82bdfdf388e670c09acba84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBHMU0700049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,dance pop,pop,talent show",0.638,0.656,5.0,-5.886,1.0,0.0357,0.188,0.0,0.146,0.225,104.036,4.0,,Syco Music UK,"P Tracks 5 & 6 (P) 2008, all other tracks (P) 2007 Simco Limited exclusively licensed to Sony Music Entertainment UK Limited",6391 +6392,spotify:track:0rIAC4PXANcKmitJfoqmVm,Motivation,spotify:artist:2cWZOOzeOm4WmBJRnD5R7I,Normani,spotify:album:2r6BEK0wzXbL8JHyCkeJkG,Motivation,spotify:artist:2cWZOOzeOm4WmBJRnD5R7I,Normani,2019-08-16,https://i.scdn.co/image/ab67616d0000b273b3cccc782ccb68faa42fcc17,1,1,193837,https://p.scdn.co/mp3-preview/c00c39ca662bf000ebea2faa63d1786d67902de5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USRC11901655,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.599,0.887,4.0,-3.967,1.0,0.0984,0.0192,1.21e-06,0.3,0.881,170.918,4.0,,Keep Cool/RCA Records,P (P) 2019 Keep Cool/RCA Records,6392 +6393,spotify:track:6iABG3ruJ1ArrulilbVhai,Crazy for You,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:7kUiJdXqLkMTkpY0PmXUv5,Something to Remember,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1995-11-17,https://i.scdn.co/image/ab67616d0000b27326f6bb4664640bfa48391cf4,1,5,224520,https://p.scdn.co/mp3-preview/0627613270ba4b63f2ba8db8f8bb134c2a5f1f99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USWB19903142,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.667,0.712,9.0,-6.575,1.0,0.0294,0.121,0.0,0.128,0.538,95.009,4.0,,Warner Records,"C © 1995 Warner Records Inc., P ℗ 1995 Warner Records Inc.",6393 +6394,spotify:track:0ppQBZJl79XXdHzmhYNd3b,Can't Help Myself,spotify:artist:1Ic7597AdNZRVWP8Lwoa36,Flowers,spotify:album:3UuP7QQWY6hXNiESqZei92,White Heat: 30 Hits,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,2011-08-26,https://i.scdn.co/image/ab67616d0000b273c1e97e3b542ffb0713d1bd8d,1,1,190200,https://p.scdn.co/mp3-preview/76e00e58a3cebc45938af486389c36fc19ba790f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA00207231,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.735,0.728,11.0,-7.967,0.0,0.0496,0.00173,0.00514,0.0431,0.786,139.409,4.0,,Universal Music Group,"C © 2011 Diva Records, P ℗ 2011 Diva Records",6394 +6395,spotify:track:3TRFq09DUgYj1mug6RRqJW,Lot to Learn,spotify:artist:787bCXOIvGeBw0Bc4kEjhD,Luke Christopher,spotify:album:6dgQDrfjCOe7E8ruh1ruWa,TMRW,spotify:artist:787bCXOIvGeBw0Bc4kEjhD,Luke Christopher,2015-09-11,https://i.scdn.co/image/ab67616d0000b2733f0bd8f231c9b6433be929b1,1,6,248337,https://p.scdn.co/mp3-preview/701b106bb9a8338f2274b7156d330cc0f1d790dc?cid=9950ac751e34487dbbe027c4fd7f8e99,True,54,USRC11500815,spotify:user:bradnumber1,2021-08-08T09:26:31Z,indie pop rap,0.405,0.846,6.0,-3.57,1.0,0.195,0.0948,0.0,0.0666,0.602,82.232,4.0,,ByStorm Entertainment/RCA Records,"P (P) 2015 ByStorm Entertainment and RCA Records, a division of Sony Music Entertainment",6395 +6396,spotify:track:2pV8RpdLemcyMWko8dASVt,Like I'm Gonna Lose You,spotify:artist:2TL8gYTNgD6nXkyuUdDrMg,Jasmine Thompson,spotify:album:2RspE8aftXJ96d8HLWOc58,Like I'm Gonna Lose You,spotify:artist:2TL8gYTNgD6nXkyuUdDrMg,Jasmine Thompson,2015-10-09,https://i.scdn.co/image/ab67616d0000b273c432294bc8f984eca745350d,1,1,232338,https://p.scdn.co/mp3-preview/a7b7bb45fd782eefb941ecbe6b773f6a39dbe0e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAT21502787,spotify:user:bradnumber1,2021-08-08T09:26:31Z,viral pop,0.398,0.174,0.0,-11.16,1.0,0.0364,0.958,4.16e-06,0.158,0.153,172.152,3.0,,Atlantic Records,"C © 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",6396 +6397,spotify:track:7ePFDzrnLt3Ynqgy2UFWri,"December, 1963 (Oh What a Night!)",spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,spotify:album:0NUEQILaBzavnzcMEs4buZ,The Very Best of Frankie Valli & The 4 Seasons,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,2003-01-14,https://i.scdn.co/image/ab67616d0000b273b96c21e15c091eb98a6c88a4,1,19,201093,https://p.scdn.co/mp3-preview/51effd871c92f7eb6ff43e9d16028e554db1c12d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRH10175221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,lounge,northern soul,rock-and-roll,rockabilly",0.727,0.588,1.0,-9.568,1.0,0.0253,0.058,5.46e-06,0.0414,0.964,104.413,4.0,,Rhino,"C © 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products, P ℗ 2004 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Warner Special Products",6397 +6398,spotify:track:3pyoAvbBO4kDKkh999Miyj,Isn't It Time,spotify:artist:6z7wrwE2QW7Keb9ozoF0rg,The Babys,spotify:album:2CB5DQVkfMPCuOFiXiMUXZ,Broken Heart,spotify:artist:6z7wrwE2QW7Keb9ozoF0rg,The Babys,1977-09-03,https://i.scdn.co/image/ab67616d0000b273d41e0412d2e8e83a996b1c8d,1,3,243920,https://p.scdn.co/mp3-preview/ddcbd0cbd18dff16ac3dc2dd52816f2c4524bdc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE7800256,spotify:user:bradnumber1,2021-08-08T09:26:31Z,album rock,0.523,0.93,0.0,-6.994,1.0,0.104,0.389,0.000134,0.815,0.313,117.265,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1977 Chrysalis Records Limited",6398 +6399,spotify:track:6CDzDgIUqeDY5g8ujExx2f,Heat Waves,spotify:artist:4yvcSjfu4PC0CYQyLy4wSq,Glass Animals,spotify:album:69K1zrf6TkXHdYUO8n2qVi,Heat Waves,spotify:artist:4yvcSjfu4PC0CYQyLy4wSq,Glass Animals,2020-06-29,https://i.scdn.co/image/ab67616d0000b273ab9d1ae18b640b7b0ce390d4,1,1,238805,https://p.scdn.co/mp3-preview/3ad42c65bc41d0845369a662a21d0c1e25df67fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,GBUM72000433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gauze pop,indietronica,modern rock,pov: indie,shiver pop",0.761,0.525,11.0,-6.9,1.0,0.0944,0.44,6.7e-06,0.0921,0.531,80.87,4.0,,Polydor Records,"C © 2020 Wolf Tone Records, a division of Universal Music Operations Limited, P ℗ 2020 Wolf Tone Records, a division of Universal Music Operations Limited",6399 +6400,spotify:track:77gYpyxmd4b4VXw6qeuPJR,Love Generation - Radio Edit,spotify:artist:5YFS41yoX0YuFY39fq21oN,Bob Sinclar,spotify:album:2SPdbgwHd6pgrS9yawBB5t,Love Generation,spotify:artist:5YFS41yoX0YuFY39fq21oN,Bob Sinclar,2009-01-01,https://i.scdn.co/image/ab67616d0000b2735cde878e22bdb5bbd8aaa076,1,1,204892,https://p.scdn.co/mp3-preview/365b9f4732f500b4753278c72a6ae94469d1670d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUNV00600005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,filter house",0.716,0.882,1.0,-3.757,1.0,0.0432,0.148,0.00145,0.0744,0.469,128.084,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",6400 +6401,spotify:track:0rGZhcaioQRufndluiOxdF,2step (feat. Leto),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:6HCBnyTBSLdb3TFn2ayulY","Ed Sheeran, Leto",spotify:album:5gtzH1xaYI0w2KWITZaZUH,2step (feat. Leto),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:6HCBnyTBSLdb3TFn2ayulY","Ed Sheeran, Leto",2022-05-13,https://i.scdn.co/image/ab67616d0000b273d56d4c810aab7c1124085b6d,1,1,154453,https://p.scdn.co/mp3-preview/987418895456678ca731e2eecf1e43b8f2046ff4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAHS2200614,spotify:user:bradnumber1,2022-05-13T02:15:23Z,"pop,singer-songwriter pop,uk pop,french hip hop,pop urbaine,rap francais",0.73,0.701,7.0,-5.318,1.0,0.0447,0.273,0.0,0.0657,0.522,94.97,4.0,,Atlantic Records UK,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2022 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2022 Warner Music UK Limited",6401 +6402,spotify:track:7H6ev70Weq6DdpZyyTmUXk,Say My Name,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,spotify:album:283NWqNsCA9GwVHrJk59CG,The Writing's On The Wall,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,1999-07-27,https://i.scdn.co/image/ab67616d0000b2733718df75b57340c1947747e8,1,12,271333,https://p.scdn.co/mp3-preview/bca92030911d3ac5208813cb47fdc40f30537ab9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USSM19901056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary",0.713,0.678,5.0,-3.525,0.0,0.102,0.273,0.0,0.149,0.734,138.009,4.0,,Columbia,P (P) 1999 SONY BMG MUSIC ENTERTAINMENT,6402 +6403,spotify:track:6b2oQwSGFkzsMtQruIWm2p,Creep,spotify:artist:4Z8W4fKeB5YxbusRsdQVPb,Radiohead,spotify:album:6400dnyeDyD2mIFHfkwHXN,Pablo Honey,spotify:artist:4Z8W4fKeB5YxbusRsdQVPb,Radiohead,1993-02-22,https://i.scdn.co/image/ab67616d0000b2732f85b65d3ac4d3d7f806ca11,1,2,238640,https://p.scdn.co/mp3-preview/713b601d02641a850f2a3e6097aacaff52328d57?cid=9950ac751e34487dbbe027c4fd7f8e99,True,25,GBAYE9200070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art rock,melancholia,oxford indie,permanent wave,rock",0.515,0.43,7.0,-9.935,1.0,0.0369,0.0102,0.000141,0.129,0.104,91.841,4.0,,XL Recordings,"C 1993 XL Recordings Ltd., P 1993 XL Recordings Ltd.",6403 +6404,spotify:track:4aebBr4JAihzJQR0CiIZJv,Hello,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7uwTHXmFa1Ebi5flqBosig,25,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2015-11-20,https://i.scdn.co/image/ab67616d0000b2735ffbbc3dca25d5c81491af1f,1,1,295502,https://p.scdn.co/mp3-preview/27069a2e4ff7be549a241052b7e3233ac835e1f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBBKS1500214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.47,0.431,5.0,-6.129,0.0,0.0342,0.329,0.0,0.0854,0.289,157.98,4.0,,XL Recordings,"C 2015 XL Recordings Limited., P 2015 XL Recordings Limited.",6404 +6405,spotify:track:33q2gObaCllLh0Yt05Tsu7,That's When I Think of You,spotify:artist:7uZbOLlVQNbLVvKdGRk4VZ,1927,spotify:album:0v91CQ8k8qNZP2LnxQ8HNL,20... Ish Anniversary Edition,spotify:artist:7uZbOLlVQNbLVvKdGRk4VZ,1927,1988,https://i.scdn.co/image/ab67616d0000b2734c537bd4feebf90b1af2127e,1,2,253253,https://p.scdn.co/mp3-preview/c6bc8c8433d7bd62c681aa28064ac61899972ee5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAL00900035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.566,0.79,7.0,-3.195,1.0,0.0342,0.00262,0.114,0.166,0.434,123.09,4.0,,Albert,P (P) 1988 Trafalgar Music Pty Limited,6405 +6406,spotify:track:0W2xX8viuvDNrvZjG6IdtX,Shackles,spotify:artist:12Kgt2eahvxNWhD5PnSUde,Mary Mary,spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,17,198480,https://p.scdn.co/mp3-preview/0cae47144420d34c80810286d7b7b01046ad9b0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19922334,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gospel,gospel r&b",0.79,0.678,7.0,-7.744,1.0,0.155,0.0357,0.0,0.169,0.854,100.436,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",6406 +6407,spotify:track:41nT1Sp6ChR65FbsdLlFHW,Bootylicious,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,spotify:album:2HcjLD0ButtKsQYqzoyOx9,Survivor,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,2001-05-01,https://i.scdn.co/image/ab67616d0000b273163cdae7f1e2c82786a84e3e,1,3,207906,https://p.scdn.co/mp3-preview/fc2bc9cb24239ce693e8689f7951130a0f737e42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM10102677,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary",0.84,0.835,1.0,-4.386,0.0,0.275,0.00281,1.11e-06,0.152,0.637,103.376,4.0,,Columbia,"P (P) 2000, 2001 Sony Music Entertainment Inc.",6407 +6408,spotify:track:5ydPIlHBSV0w2Mo2ichlmR,If You're Not The One,spotify:artist:11hIqBsGRPztdjBHCSLClX,Daniel Bedingfield,spotify:album:2C2JtHeaPzJbj9SLOeNgFK,I Am Sad,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b27322cea7e32590b85651c798c4,1,1,257333,https://p.scdn.co/mp3-preview/130e2516bdf059a4f71eaffad08a9ae797adf6d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0201297,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.681,0.5,10.0,-8.854,1.0,0.0294,0.566,0.0,0.112,0.306,119.993,4.0,,Universal Music,"C © 2010 Universal International Music B.V., P ℗ 2010 Universal International Music B.V.",6408 +6409,spotify:track:3qkiG7zziOi89bxsihFjG4,Put A Little Love In Your Heart,"spotify:artist:3dkbV4qihUeMsqN4vBGg93, spotify:artist:5MspMQqdVbdwP6ax3GXqum","Al Green, Annie Lennox",spotify:album:3bHLPFxLMogupf3PnxjsY2,... And The Message Is Love - The Best Of Al Green,spotify:artist:3dkbV4qihUeMsqN4vBGg93,Al Green,1994-01-01,https://i.scdn.co/image/ab67616d0000b27386ad9ea58ae5154305528045,1,5,228560,https://p.scdn.co/mp3-preview/46a3e27ebe686ee3add6f95adfbf487abf8d7ce7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USAM18800030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,funk,memphis soul,quiet storm,soul,soul blues,southern soul,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop",0.581,0.782,6.0,-10.933,1.0,0.0398,0.0529,0.0,0.0591,0.847,101.186,4.0,,A&M,"C © 1994 UMG Recordings, Inc., P This Compilation ℗ 1994 UMG Recordings, Inc.",6409 +6410,spotify:track:0dNiIiUZTj7P5fnzXPkQtk,Oh Yeah,spotify:artist:3xgj17ZsWxxU86S4qlWvOi,Yello,spotify:album:1Nz83kEy06C69cI1zxF66Q,Stella (Remastered 2005),spotify:artist:3xgj17ZsWxxU86S4qlWvOi,Yello,1985-01-01,https://i.scdn.co/image/ab67616d0000b273404ddf24010def69947c1370,1,3,185043,https://p.scdn.co/mp3-preview/9ffeea8ac37b334e016a7894bc91f3ab37f8614b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEUM70500258,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,proto-techno,synthpop,zolo",0.746,0.916,6.0,-7.982,1.0,0.0616,0.00435,0.8,0.0456,0.734,132.602,4.0,,Universal Music Group,"C © 2005 Polydor/Island, a division of Universal Music GmbH, P ℗ 2005 Yello, under exclusive license to Polydor/Island, a division of Universal Music GmbH",6410 +6411,spotify:track:0hwJDnHhXkieZLXACWYlwQ,The Mess I Made,spotify:artist:2PCUhxD40qlMqsKHjTZD2e,Parachute,spotify:album:6QJw1UxLAFYQfy8XirsXiW,Losing Sleep,spotify:artist:2PCUhxD40qlMqsKHjTZD2e,Parachute,2009-01-01,https://i.scdn.co/image/ab67616d0000b273fdf27a1773b42e1e90475a4d,1,4,230613,https://p.scdn.co/mp3-preview/992d9af8765041f1379ac298332544c1cc209187?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70964177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,charlottesville indie,neo mellow,neon pop punk,pop rock,viral pop",0.423,0.572,6.0,-5.109,1.0,0.0347,0.0158,0.0,0.231,0.17,165.394,4.0,,Universal Music Group,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",6411 +6412,spotify:track:2KVwlelhxKUy8LVV6JypH3,Push,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:4vUXTcKz7tXxrNl84meN6i,Yourself or Someone Like You,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,1996-10-01,https://i.scdn.co/image/ab67616d0000b27323dbfb8b3b1be429587f5380,1,4,238666,https://p.scdn.co/mp3-preview/9b57cf9cfb891eee6ccf336046a4457ed2da28da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USAT29600042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.42,0.672,6.0,-7.902,1.0,0.027,0.0067,0.0,0.108,0.476,168.019,4.0,,Lava/Atlantic,"C © 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",6412 +6413,spotify:track:7bdsNVQUGs9O0Qc8FtTKPn,Cornflake Girl - 2015 Remaster,spotify:artist:1KsASRNugxU85T0u6zSg32,Tori Amos,spotify:album:7LtHJM8ORJlGoZvcPU9X4U,Under the Pink (Deluxe Edition),spotify:artist:1KsASRNugxU85T0u6zSg32,Tori Amos,1994-01-31,https://i.scdn.co/image/ab67616d0000b2737d947274103a66dea9ad3c4e,1,8,305533,https://p.scdn.co/mp3-preview/c998fddb14b18a4003792d73afae68c1ca3f8647?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USAT21404790,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dark pop,ectofolk,lilith,melancholia,new wave pop,permanent wave,piano rock,singer-songwriter",0.621,0.684,7.0,-7.949,1.0,0.0289,0.518,0.00761,0.366,0.847,133.803,4.0,,Rhino Atlantic,"C © 2015 Atlantic Recording Corporation, P ℗ 2015 Atlantic Recording Corporation. Marketed by Rhino Entertainment Company, a Warner Music Group Company",6413 +6414,spotify:track:1hOHz9pmlqNVxHE1fyzbkr,Let Me Love the Lonely,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:7oiJYvEJHsmYtrgviAVIBD,Back from the Edge,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2016-10-28,https://i.scdn.co/image/ab67616d0000b27320beb61f61fcbeb33b10a9ab,1,10,172386,https://p.scdn.co/mp3-preview/1d7c0f2f6a41d1d624b7c436283ac5c9fb556f84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,DEE861600594,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.295,0.38,8.0,-7.903,1.0,0.0404,0.706,1.45e-06,0.143,0.122,178.103,4.0,,Columbia,P (P) 2016 Sony Music Entertainment Germany GmbH,6414 +6415,spotify:track:5Q7cE6wGHMehLFo2ppkk5D,One Way Or Another,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,spotify:album:7DUJay5a6r1LtrGjxJJwFy,Atomic: The Very Best Of Blondie,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,1998-01-01,https://i.scdn.co/image/ab67616d0000b27329e613cb005419f148b02cf9,1,16,208360,https://p.scdn.co/mp3-preview/32bb4a13e8bb15c674ce931e5b70ae0f4d58e0ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USCH38500014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop,permanent wave,power pop,rock,synthpop",0.445,0.872,6.0,-6.294,0.0,0.0602,0.00402,0.00909,0.047,0.834,162.407,4.0,,Parlophone Catalogue,"C © 1998 EMI Records Ltd, P This Compilation ℗ 1998 EMI Records Ltd",6415 +6416,spotify:track:4umIPjkehX1r7uhmGvXiSV,Intentions (feat. Quavo),"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0VRj0yCOv2FXJNP47XQnx5","Justin Bieber, Quavo",spotify:album:63iWSELt9V1kV6RSMxN7Ii,Changes,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2020-02-14,https://i.scdn.co/image/ab67616d0000b2737fe4a82a08c4f0decbeddbc6,1,4,212866,https://p.scdn.co/mp3-preview/941f581cc1794e3a57aebf3de2c2dffb08b37f79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USUM72001302,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,atl hip hop,melodic rap,rap,trap",0.806,0.546,9.0,-6.637,1.0,0.0579,0.298,0.0,0.102,0.875,147.988,4.0,,RBMG/Def Jam,"C © 2020 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2020 Def Jam Recordings, a division of UMG Recordings, Inc.",6416 +6417,spotify:track:4Lx9OsGvaVMQqaO8kz8gBs,Don't Wait,spotify:artist:0hDJSg859MdK4c9vqu1dS8,The Beautiful Girls,spotify:album:0lXyQZlpJJwUcZ9OPEDRmZ,Spooks,spotify:artist:0hDJSg859MdK4c9vqu1dS8,The Beautiful Girls,2010-05-25,https://i.scdn.co/image/ab67616d0000b27331ec4c3b978444907091ff2b,1,8,196586,https://p.scdn.co/mp3-preview/996c3efe721b8fd7c34668ffe944579a9640ee24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUKU01000018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian reggae fusion,0.63,0.693,8.0,-6.926,1.0,0.0619,0.0741,0.0,0.204,0.811,90.027,4.0,,Die!Boredom,"C 2010 The Beautiful Girls, P 2010 The Beautiful Girls",6417 +6418,spotify:track:7cxHcrLzGgCZb1VnhKYbEi,A Life To Remember,"spotify:artist:2iXXA1naUkMud365RRLWIf, spotify:artist:7xj63qP7YjGeufSdMcH507","Zephyr Alabama, Abishi Taylor",spotify:album:3aLS4v21R7Te7s0pM383O8,A Life To Remember,"spotify:artist:2iXXA1naUkMud365RRLWIf, spotify:artist:7xj63qP7YjGeufSdMcH507","Zephyr Alabama, Abishi Taylor",2021-06-18,https://i.scdn.co/image/ab67616d0000b273da55cad5dbcae06520ecb6ee,1,1,194193,,False,0,QZK6Q2104049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.647,0.605,7.0,-6.674,1.0,0.0368,0.654,0.103,0.0963,0.184,173.997,4.0,,Zephyr Records,"C 2021 Zephyr Records, P 2021 Zephyr Records",6418 +6419,spotify:track:5bpjnItVAZvbTtFl8zMslP,Just A Feeling,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:1snrPQMoTrBsKl73wzSxbn,Hands All Over (Revised International Standard version),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2010,https://i.scdn.co/image/ab67616d0000b2739585ff55fff75c5c07a619cb,1,10,226506,https://p.scdn.co/mp3-preview/3aeb07bdf5740a7b885d1ddda17c01fbe842d0c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USUM71019661,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.601,0.617,3.0,-5.098,1.0,0.0285,0.14,0.0,0.108,0.295,149.901,4.0,,Interscope Records*,"C © 2011 A&M/Octone Records, P ℗ 2011 Interscope Records",6419 +6420,spotify:track:5bVOX6eyHsML2sB4aMlZEi,Malibu,spotify:artist:5SHQUMAmEK5KmuSb0aDvsn,Hole,spotify:album:2KE8WCHtD8qnAxXeIzNEId,Celebrity Skin,spotify:artist:5SHQUMAmEK5KmuSb0aDvsn,Hole,1998-01-01,https://i.scdn.co/image/ab67616d0000b2730649124c37ce988317263671,1,4,230040,https://p.scdn.co/mp3-preview/1cae9ad3531ec2d5b87698f3a06657503b246568?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USGF19816406,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,riot grrrl",0.528,0.904,2.0,-5.854,1.0,0.0343,0.000833,0.0,0.174,0.678,122.372,4.0,,DGC,"C © 1998 Geffen Records Inc., P ℗ 1998 UMG Recordings, Inc.",6420 +6421,spotify:track:4idnt3XfyN98uq16wPW70d,Lights Down Low,spotify:artist:0GzIauSfKRc5BlNXpTWAGz,Jessie James Decker,spotify:album:5SAcAoG7WuoX9et9ki45zu,Lights Down Low,spotify:artist:0GzIauSfKRc5BlNXpTWAGz,Jessie James Decker,2015-08-14,https://i.scdn.co/image/ab67616d0000b2736105ed1ea4f8144d123f1f8b,1,1,197946,https://p.scdn.co/mp3-preview/b292cea014ef8d1f3315a2a25468a3577fe6e4d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMRY41500093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,contemporary country,0.527,0.924,4.0,-4.178,1.0,0.11,0.312,7.05e-06,0.199,0.849,169.967,4.0,,Big Yellow Dog Music,"C 2015 Big Yellow Dog Music, P 2015 Big Yellow Dog Music",6421 +6422,spotify:track:1i7fXPo9EG1wNfXC3VrV91,Opinions Won't Keep You Warm At Night,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,spotify:album:5MnKpoZxGlfUgDtlgoLIC8,Hymns For The Non-Believer,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,2007,https://i.scdn.co/image/ab67616d0000b273b3b57735494f5167109acc62,1,2,186200,https://p.scdn.co/mp3-preview/75bdd70aaaf56fc3333b4a50e5a1ccaf35abaab7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUAY00700227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussie emo,australian alternative rock,australian indie",0.434,0.963,7.0,-3.348,0.0,0.0798,0.000689,0.0,0.154,0.733,143.888,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Below Par Records, P ℗ 2010 Below Par Records",6422 +6423,spotify:track:1zi3f2VL4eSFHvm0WC506q,Achy Breaky Heart,spotify:artist:60rpJ9SgigSd16DOAG7GSa,Billy Ray Cyrus,spotify:album:1oLcQ8biXgd9rANS2XJs8q,The Best Of Billy Ray Cyrus: Cover To Cover,spotify:artist:60rpJ9SgigSd16DOAG7GSa,Billy Ray Cyrus,1997-01-01,https://i.scdn.co/image/ab67616d0000b273d18ab4a1134a0955584fc9ab,1,12,204960,https://p.scdn.co/mp3-preview/dff44fa5699c889887439c61bdb2337876cc9bd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPG19290113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,country rock,0.766,0.725,9.0,-6.36,1.0,0.0294,0.0561,0.0,0.0942,0.963,121.797,4.0,,Mercury,"C © 1997 Mercury Records, a Division of UMG Recordings, Inc., P ℗ 1997 Mercury Records, a Division of UMG Recordings, Inc.",6423 +6424,spotify:track:6T506SFlFUVVNvnmCiVZR0,Dangerous Woman,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:3Vb94zhOIXqm46j4ZFpb2m,Dangerous Woman,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2016-03-11,https://i.scdn.co/image/ab67616d0000b273dde4d2eb76a3326925bf7241,1,1,235946,https://p.scdn.co/mp3-preview/d79bcd03785cf98232b895ca8829d439a4f55df7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71601826,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.662,0.618,7.0,-5.26,1.0,0.0455,0.0537,0.0,0.355,0.261,134.022,3.0,,Universal Music Group,"C (C) 2016 Republic Records, a division of UMG Recordings, Inc., P (P) 2016 Republic Records, a division of UMG Recordings, Inc.",6424 +6425,spotify:track:1uZOev7V8UkfhCKuMDnAdy,Burnin' for You,spotify:artist:00tVTdpEhQQw1bqdu8RCx2,Blue Öyster Cult,spotify:album:6NNrQJ8ojvbfFzoUjjABo4,The Essential Blue Öyster Cult,spotify:artist:00tVTdpEhQQw1bqdu8RCx2,Blue Öyster Cult,1972,https://i.scdn.co/image/ab67616d0000b273181baef01d864fe48baa65ad,1,11,271066,https://p.scdn.co/mp3-preview/09bc046877993e7c60c69eec74e77eda73ac13cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10017652,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,progressive rock,rock",0.532,0.705,9.0,-8.439,0.0,0.0328,0.137,0.0236,0.0857,0.693,134.223,4.0,,Columbia/Legacy,"P (P) 1972, 1973, 1974, 1976, 1977, 1979, 1980, 1981, 1983, 2003 Sony Music Entertainment Inc.",6425 +6426,spotify:track:2tA4QxWuga3lRPDBiEWVOn,All the Way,"spotify:artist:0cIOMm0D5wSyXMTcvnElUz, spotify:artist:34sQ4BJAwfwQsn9OgJtIzj","Marcus Santoro, The Potbelleez",spotify:album:3okeTZx5a7GH5gHH8ht6XZ,All the Way,"spotify:artist:0cIOMm0D5wSyXMTcvnElUz, spotify:artist:34sQ4BJAwfwQsn9OgJtIzj","Marcus Santoro, The Potbelleez",2014-12-12,https://i.scdn.co/image/ab67616d0000b27318f07e520f7630d279b4290e,1,1,221240,https://p.scdn.co/mp3-preview/bbc167d92c8cfaa0b2c2acaf3c1d5783308e6a4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUBM01400763,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"progressive trance,aussietronica,australian dance,australian house",0.485,0.836,2.0,-3.267,0.0,0.0427,0.0123,0.0,0.18,0.194,128.023,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,6426 +6427,spotify:track:21ErYfB6YWSahxw9l9jBMA,Hold Me Tight,spotify:artist:0nAVvgfE9yI4DwvMiYwk8a,Johnny Nash,spotify:album:0sEeCVO9TTEWCeS6xnD0ZQ,Collections,spotify:artist:0nAVvgfE9yI4DwvMiYwk8a,Johnny Nash,2006-03-27,https://i.scdn.co/image/ab67616d0000b273f63a349a3a8d7c73ac6b4c33,1,5,162866,https://p.scdn.co/mp3-preview/c375d30bb5d5810b02392cd5dc419609a0556e76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBBBN7400008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.78,0.436,3.0,-9.223,0.0,0.0538,0.668,5.8e-05,0.214,0.765,90.438,4.0,,Sony Music Entertainment,P (P) 2006 SONY BMG MUSIC ENTERTAINMENT (UK) Limited,6427 +6428,spotify:track:0VYQK5I08homNvX8SRS37R,Heroes (we could be),spotify:artist:4AVFqumd2ogHFlRbKIjp1t,Alesso,spotify:album:2RE7Fq5gQ7K78MDwVBkkZ4,Heroes (we could be),spotify:artist:4AVFqumd2ogHFlRbKIjp1t,Alesso,2014-09-15,https://i.scdn.co/image/ab67616d0000b27380b1743eb8e0a048525812ea,1,1,209866,https://p.scdn.co/mp3-preview/e5664babfba07567c4e002c7bd9c043835bc6521?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11401536,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,progressive electro house",0.516,0.749,5.0,-4.091,1.0,0.0692,0.031,0.0,0.205,0.356,125.92,4.0,,Universal Music Group,"C © 2014 Alefune, under exclusive license in the United States to Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2014 Alefune, under exclusive license in the United States to Def Jam Recordings, a division of UMG Recordings, Inc.",6428 +6429,spotify:track:2JRicL2f8tJl9TiQlH7vbJ,It's All Coming Back to Me Now,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:55UPmpHLvZKGgTPUD1woES,Falling Into You,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1996-02-28,https://i.scdn.co/image/ab67616d0000b27358c80c8f4e3e23311906f9c4,1,1,456866,https://p.scdn.co/mp3-preview/90b551f65e376f64a9759bcbc97163cb5b268a18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAC229800163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.384,0.438,0.0,-9.149,1.0,0.0361,0.753,0.0,0.101,0.286,87.624,4.0,,Columbia,P (P) 1996 Sony Music Entertainment (Canada) Inc.,6429 +6430,spotify:track:6YEq8UF9EYlMrIVWc35CPH,Jumpin' Jack Flash - (Original Single Mono Version),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:7xZouUPtoLMxXcRwgWi5BO,Singles 1968-1971,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,2005-02-28,https://i.scdn.co/image/ab67616d0000b2730fda665e49a919b14c3c378e,1,1,217973,https://p.scdn.co/mp3-preview/6568413e52367ead5b0ab5ce07649c69e78d62fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USA176810110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.6,0.91,3.0,-6.98,1.0,0.0497,0.0406,0.561,0.0642,0.619,137.361,4.0,,"ABKCO Music and Records, Inc.","C © 2005 ABKCO Music & Records Inc., P This Compilation ℗ 2005 ABKCO Music & Records Inc.",6430 +6431,spotify:track:6Neq7tjnknt4URNI8txFL4,Every Morning - Remastered,spotify:artist:4uN3DsfENc7dp0OLO0FEIb,Sugar Ray,spotify:album:2hjQQj7x2YipViOCw6UX1N,The Best Of Sugar Ray,spotify:artist:4uN3DsfENc7dp0OLO0FEIb,Sugar Ray,2005-06-17,https://i.scdn.co/image/ab67616d0000b27377444909203d907c0c79027d,1,6,220200,https://p.scdn.co/mp3-preview/f16a483caa447177d2d57ece81496e5ab81005e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT20503176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,pop rock,post-grunge",0.829,0.674,8.0,-4.493,1.0,0.0362,0.0838,0.00174,0.102,0.974,109.917,4.0,,RT Industries,"C © 2005 RT Industries, P ℗ 2005 RT Industries",6431 +6432,spotify:track:7F25roCtYi55JouckaayPC,Judas,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:6LY3AerY6KNGOPsNPL63Kk,Born This Way (International Special Edition Version),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2011-05-23,https://i.scdn.co/image/ab67616d0000b273a5d31644260279be8d0c46c0,1,4,249066,https://p.scdn.co/mp3-preview/3eb586c7af5db732395994de6d52706b54fc7da3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USUM71104998,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.664,0.934,10.0,-3.848,0.0,0.0696,0.00108,2.73e-05,0.271,0.529,130.983,4.0,,Interscope,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",6432 +6433,spotify:track:7igeByaBM0MgGsgXtNxDJ7,positions,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:3jqEvfiu2ENgmgzZq27zbi,positions,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2020-10-23,https://i.scdn.co/image/ab67616d0000b2737368325f5998ef48d4fb5401,1,1,172324,https://p.scdn.co/mp3-preview/bcab917e186664a542f5fff3ba74708527d525b6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,2,USUM72019412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.736,0.802,0.0,-4.759,1.0,0.0864,0.468,0.0,0.094,0.675,144.005,4.0,,Republic Records,"C © 2020 Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Republic Records, a division of UMG Recordings, Inc.",6433 +6434,spotify:track:7N3HOrscxKMR3xgIXuTBB9,Everyone's at It,spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,spotify:album:52MLLeRgpLPVpTQUk0BXNs,"It's Not Me, It's You",spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,2009-01-26,https://i.scdn.co/image/ab67616d0000b2730b386bfc7e98feaf1b5ed350,1,1,275273,https://p.scdn.co/mp3-preview/da121a175aa7f7d92ca6c5985340a53de5ac740d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBAYE0802377,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo mellow",0.643,0.921,2.0,-6.803,0.0,0.0689,0.0208,1.86e-05,0.2,0.659,117.003,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",6434 +6435,spotify:track:4MMqj7HaLL8BphbBZnlsdq,I Like That,"spotify:artist:5yCd7bxcAc3MdQ1h54ESsD, spotify:artist:3s2wTjWxK8NOX09dmsvVOh, spotify:artist:1Oa0bMld0A3u5OTYfMzp5h, spotify:artist:0qziYi2GvPoLPnchRMQdxk","Houston, Chingy, Nate Dogg, I-20",spotify:album:5cCSKl7fCsFuNoTszec4MP,It's Already Written,spotify:artist:5yCd7bxcAc3MdQ1h54ESsD,Houston,2004-01-01,https://i.scdn.co/image/ab67616d0000b273f4000cf25c840e625010f703,1,2,236520,https://p.scdn.co/mp3-preview/e20db2bec9a087880558ab3815665647092dc1eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USCA20400614,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"crunk,dirty south rap,hip pop,pop rap,southern hip hop,g funk,gangster rap,hardcore hip hop,hip hop,west coast rap,atl hip hop",0.797,0.502,10.0,-3.925,0.0,0.0968,0.0154,0.0,0.1,0.385,106.997,4.0,,Capitol Records,"C © 2004 Capitol Records Inc., P ℗ 2004 Capitol Records Inc.",6435 +6436,spotify:track:2B4LcSLZTDmTIFgKpjScjR,You're The One That I Want - From “Grease”,"spotify:artist:4hKkEHkaqCsyxNxXEsszVH, spotify:artist:4BoRxUdrcgbbq1rxJvvhg9","John Travolta, Olivia Newton-John",spotify:album:5ySc9ZwyyZlFGIHuEij8oz,Gold,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2005-01-01,https://i.scdn.co/image/ab67616d0000b27325b4d20048c691c41dc38bba,1,17,167613,https://p.scdn.co/mp3-preview/e40c2ef7fd8bb3ba548682058005672f8ee91184?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057890004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,adult standards,australian dance,disco,mellow gold,soft rock",0.739,0.766,0.0,-6.023,1.0,0.0785,0.193,7.28e-05,0.137,0.862,106.6,4.0,,Universal Music Group,"C © 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc.",6436 +6437,spotify:track:1x3W8RZxW94lrVGhP95qA6,You Are The Reason - Duet Version,"spotify:artist:6ydoSd3N2mwgwBHtF6K7eX, spotify:artist:5lKZWd6HiSCLfnDGrq9RAm","Calum Scott, Leona Lewis",spotify:album:1RcwvxkvyE60CTFNagElek,Only Human (Special Edition),spotify:artist:6ydoSd3N2mwgwBHtF6K7eX,Calum Scott,2018-11-30,https://i.scdn.co/image/ab67616d0000b273f035622d8fdf777b23e9a834,1,15,190760,https://p.scdn.co/mp3-preview/da4717697952362ca1da495510503a70771e02b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM71801246,spotify:user:bradnumber1,2023-03-22T01:18:39Z,"pop,british soul,dance pop,pop,talent show",0.395,0.356,10.0,-7.547,1.0,0.0299,0.38,0.0,0.148,0.15,171.431,3.0,,Capitol Records,"C © 2018 Capitol Records, P ℗ 2018 Capitol Records",6437 +6438,spotify:track:4xqrdfXkTW4T0RauPLv3WA,Heather,spotify:artist:4Uc8Dsxct0oMqx0P6i60ea,Conan Gray,spotify:album:2CMlkzFI2oDAy5MbyV7OV5,Kid Krow,spotify:artist:4Uc8Dsxct0oMqx0P6i60ea,Conan Gray,2020-03-20,https://i.scdn.co/image/ab67616d0000b27388e3cda6d29b2552d4d6bc43,1,10,198040,https://p.scdn.co/mp3-preview/fad78f3a87166c1fdbaa081ef65bd44ba57c04b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USUM71924264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bedroom pop,pop,pov: indie",0.357,0.425,5.0,-7.301,1.0,0.0333,0.584,0.0,0.322,0.27,102.078,3.0,,Republic Records,"C © 2020 Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Republic Records, a division of UMG Recordings, Inc.",6438 +6439,spotify:track:78ZzF9pK3foniEnK64XzX5,Wild Wild West - Album Version - No Intro,"spotify:artist:41qil2VaGbD194gaEcmmyx, spotify:artist:1255GTUKNCLCTvH9ctD4cT, spotify:artist:2RE8NwNxsOyuNZDD0jRxHP","Will Smith, Dru Hill, Kool Moe Dee",spotify:album:5XLCFog0qr2dw0877zzypG,Greatest Hits,spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,2002-11-26,https://i.scdn.co/image/ab67616d0000b273e36459b9d2155a8115f35180,1,13,245533,https://p.scdn.co/mp3-preview/d282ee0ecf71d85810d38c9e04db862e4111602f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM10213189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap,contemporary r&b,r&b,urban contemporary,east coast hip hop,harlem hip hop,new jack swing,old school hip hop",0.846,0.659,10.0,-6.888,0.0,0.0809,0.0615,0.0,0.297,0.622,107.014,4.0,,Columbia,"P (P) 1987, 1988, 1990, 1991 Zomba Recording LLC, 1997 Columbia Pictures Industries, Inc., 1997, 1999, 2002 Sony Music Entertainment Inc.",6439 +6440,spotify:track:7iYg4I4Gy7RbK9jm4Katwy,The Night Out,spotify:artist:1bj5GrcLom5gZFF5t949Xl,Martin Solveig,spotify:album:4HRpy93zKbFppMl79lfFS1,Smash,spotify:artist:1bj5GrcLom5gZFF5t949Xl,Martin Solveig,2011-01-01,https://i.scdn.co/image/ab67616d0000b273a991b1e9a11bafa3dd4c56f1,1,3,283165,https://p.scdn.co/mp3-preview/147019ef59f082c97f101d87f911617f75741b13?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,FR2PA1100080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,edm,electro house,filter house,house,pop dance,vocal house",0.61,0.784,8.0,-2.964,0.0,0.108,0.000343,0.00119,0.0854,0.628,127.977,4.0,,Ministry Of Sound,"C © 2011 Temps D'Avance, P ℗ 2011 Temps D'Avance, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd",6440 +6441,spotify:track:6B76RwpMPJsHnhJexTHHcb,Lay Me Down,"spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:5y2Xq6xcjJb2jVM54GHK3t","Sam Smith, John Legend",spotify:album:2iZXsOyznydpu3dFz13aiz,Lay Me Down,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2015-03-09,https://i.scdn.co/image/ab67616d0000b2733020738919800641c7e86d5e,1,1,219662,https://p.scdn.co/mp3-preview/d338f20d10cd67dddb6d32fd01818a52229cce4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71500850,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop,neo soul,pop,pop soul,urban contemporary",0.469,0.196,4.0,-11.112,1.0,0.0382,0.922,0.0,0.105,0.343,123.072,4.0,,Universal Music Ltd.,"C (C) 2015 Capitol Records Ltd., P (P) 2015 Capitol Records Ltd.",6441 +6442,spotify:track:5ibhWB91OHgTVVwtVFMLKP,Funhouse - Main Version - Clean,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:0OHvyFSN4W0fjJ7CiehVMB,La Guestlist,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-10-19,https://i.scdn.co/image/ab67616d0000b2734a490f262d6ee358e959c2cc,1,3,203933,https://p.scdn.co/mp3-preview/87a307e2a1720fe3117937014ff57a02b400e3ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USLF20800185,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.789,0.84,11.0,-4.059,0.0,0.0361,0.00616,0.0,0.0646,0.821,103.957,4.0,,SME Strategic Marketing Group,P (P) 2009 Sony Music Entertainment,6442 +6443,spotify:track:6aW8xArEW5crYL0IiQekvd,Born Free,spotify:artist:06kr5yNAM2rOf4DXemM8fl,Matt Monro,spotify:album:2QVk33Buzdw70hxL4GZoUs,Invitation To The Movies,spotify:artist:06kr5yNAM2rOf4DXemM8fl,Matt Monro,1967-04-03,https://i.scdn.co/image/ab67616d0000b273fe45d3bb015e605e92bfff81,1,7,168333,https://p.scdn.co/mp3-preview/1754b59719fa688abf445121ef359aa2fa948142?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA26700131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.187,0.256,0.0,-11.536,1.0,0.0308,0.878,1.89e-06,0.187,0.31,89.762,4.0,,CAPITOL CATALOG MKT (C92),"C © 1967 Capitol Records, LLC, P A Capitol Records Release; ℗ 1967 Capitol Records, LLC",6443 +6444,spotify:track:5tRifT4qX6gfmpEK2pUv4h,Waking Up In Vegas,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:1vFFZPioAu0vrJRcGoyGX8,One Of The Boys,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2008,https://i.scdn.co/image/ab67616d0000b27331cc26681b0164332fa26634,1,3,199186,https://p.scdn.co/mp3-preview/443ccc0c97f41eca599e435f5ca2710c683b2fc3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USCA20802541,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.524,0.878,5.0,-3.108,0.0,0.0346,0.0012,0.0,0.098,0.589,130.985,4.0,,Capitol Records,"C © 2009 Capitol Records, LLC, P ℗ 2009 Capitol Records, LLC",6444 +6445,spotify:track:6UbNrW8X1v4oOR29vzSVqX,One Day At A Time,"spotify:artist:2mF9PcfpN8vxRtCfra8hz1, spotify:artist:0dS5IlInNc5Qq0wIrFTKob","Thierry Von Der Warth, Jay Mason",spotify:album:5qrQjiR5PsDykstHLRAK23,One Day At A Time,"spotify:artist:2mF9PcfpN8vxRtCfra8hz1, spotify:artist:0dS5IlInNc5Qq0wIrFTKob","Thierry Von Der Warth, Jay Mason",2023-03-03,https://i.scdn.co/image/ab67616d0000b2737f9543f302771a1079f06096,1,1,151632,https://p.scdn.co/mp3-preview/48e10ed0898c187427c30b190e2c91b9fe22ac99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,BE8LH2300026,spotify:user:bradnumber1,2023-07-05T22:58:44Z,"tropical house,tropical house",0.713,0.741,5.0,-5.695,0.0,0.033,0.224,0.000135,0.117,0.526,122.133,4.0,,Paraiso,"C 2023 Thierry Von Der Warth & Jay Mason, P 2023 Paraíso",6445 +6446,spotify:track:5o7TXypciBNWzWLE6Hdzuz,Call My Name,spotify:artist:3NyNPJaemMYsL14DK2tO01,Cheryl,spotify:album:2mduHypWQwgRXMQ9kEFssu,A Million Lights (Deluxe Version),spotify:artist:3NyNPJaemMYsL14DK2tO01,Cheryl,2012-01-01,https://i.scdn.co/image/ab67616d0000b273a83bf2581d36ce17356eec7c,1,2,207975,https://p.scdn.co/mp3-preview/2bf7dd9acba019845507a5ef9d5ac02c0f23e9d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBUM71201486,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop,talent show",0.696,0.94,8.0,-3.498,1.0,0.064,0.00272,1.34e-06,0.0987,0.7,128.005,4.0,,Polydor Records,"C © 2012 Polydor Ltd. (UK), P ℗ 2012 Polydor Ltd. (UK)",6446 +6447,spotify:track:1BxfuPKGuaTgP7aM0Bbdwr,Cruel Summer,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1NAmidJlEaVgA3MpcPFYGq,Lover,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2019-08-23,https://i.scdn.co/image/ab67616d0000b273e787cffec20aa2a396a61647,1,2,178426,https://p.scdn.co/mp3-preview/dba15da5409f3c808022cf927c0ff8581f717aa4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,90,USUG11901472,spotify:user:bradnumber1,2023-07-28T04:35:59Z,pop,0.552,0.702,9.0,-5.707,1.0,0.157,0.117,2.06e-05,0.105,0.564,169.994,4.0,,Taylor Swift,"C © 2019 Taylor Swift, P ℗ 2019 Taylor Swift",6447 +6448,spotify:track:1tdtd7hLVqFwuyCQ2jpx9w,Love Sex Magic (feat. Justin Timberlake) (Manon Dave Remix),"spotify:artist:2NdeV5rLm47xAvogXrYhJX, spotify:artist:7tRVNl1E9cOpIRKU1drlKz","Ciara, Manon Dave",spotify:album:4ePh2B6PVr7asQNvJOZKjN,Love Sex Magic (Manon Dave Remix),"spotify:artist:2NdeV5rLm47xAvogXrYhJX, spotify:artist:7tRVNl1E9cOpIRKU1drlKz","Ciara, Manon Dave",2009-09-20,https://i.scdn.co/image/ab67616d0000b2737d2b892c324112bb2755d22f,1,1,282622,,False,12,SEYOK0960201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,pop,r&b,urban contemporary",0.745,0.786,8.0,-4.235,1.0,0.188,0.102,0.0,0.0983,0.784,106.922,4.0,,Record Union,"C 2009 Manon Dave, P 2009 Manon Dave Publishing",6448 +6449,spotify:track:3oHNJECGN3bBoGXejlw2b1,Last Friday Night (T.G.I.F.),spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:06SY6Ke6mXzZHhURLVU57R,Teenage Dream,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2010-08-24,https://i.scdn.co/image/ab67616d0000b273f619042d5f6b2149a4f5e0ca,1,2,230733,https://p.scdn.co/mp3-preview/3e82b61946a5ddb0fd77ceec97c002b28f58003b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USCA21001264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.652,0.81,3.0,-3.789,0.0,0.0406,0.00129,2.91e-05,0.667,0.732,126.022,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",6449 +6450,spotify:track:4jLKNX5IIhGDYqDN7i8PbU,Ambling Alp,spotify:artist:04HvbIwBccFmRie5ATX4ft,Yeasayer,spotify:album:64PqoX4BwsfDVEBeYqDnb8,Odd Blood,spotify:artist:04HvbIwBccFmRie5ATX4ft,Yeasayer,2010,https://i.scdn.co/image/ab67616d0000b273fb04d2daccc4966fb4c234b7,1,2,235440,https://p.scdn.co/mp3-preview/eadb24fe8a19f1ea10942d651f9ae6891bb0261f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US38W1021002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,brooklyn indie,chamber pop,indie rock,neo-synthpop,shimmer pop",0.582,0.867,9.0,-6.476,1.0,0.0931,0.0116,1.99e-05,0.144,0.4,107.912,3.0,,Mute,"C 2010 2010 Artist Intelligence Partnership Limited under exclusive license from Secretly Canadian, Inc., P 2010 2010 Artist Intelligence Partnership Limited under exclusive license from Secretly Canadian, Inc.",6450 +6451,spotify:track:0ijhkvBpA7OBlY4clWSUZw,One More Time - Radio Edit [Short Radio Edit],spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,spotify:album:4a0p1M12f7VaZWdoNSdEK4,"Musique, Vol. 1",spotify:artist:4tZwfgrHOc3mvqYlEYSvVi,Daft Punk,2006-03-29,https://i.scdn.co/image/ab67616d0000b27354a277d652eba4cd35a2e78a,1,7,235466,https://p.scdn.co/mp3-preview/3435380fc01e1aebbd34a7cacc0f0ca9947ccede?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBDUW0000054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electro,filter house,rock",0.649,0.671,2.0,-8.49,1.0,0.103,0.0348,0.0,0.376,0.533,122.881,4.0,,Daft Life Ltd./ADA France,"C Distributed exclusively by Warner Music France / ADA France, © 2006 Daft Life Ltd., P Distributed exclusively by Warner Music France / ADA France, ℗ 2006 Daft Life Ltd.",6451 +6452,spotify:track:4qVIORNqKvlFvE4HMgnvVC,Slice of Heaven,"spotify:artist:5bYfbDXaMVCxEt7hOAvEWc, spotify:artist:6GIB5jeCf3U9JJUo2of2bA","Dave Dobbyn, Herbs",spotify:album:3XDGS6f3W9lUk8HOlIeVu8,Loyal,spotify:artist:5bYfbDXaMVCxEt7hOAvEWc,Dave Dobbyn,1988-05-01,https://i.scdn.co/image/ab67616d0000b27364249b8aff1fe463631eb9ea,1,7,277360,https://p.scdn.co/mp3-preview/c1f376811babf8078aaefd749e2a09500190535e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZSG00600072,spotify:user:bradnumber1,2021-12-01T04:22:37Z,"australian rock,classic nz pop,kiwi rock,nz singer-songwriter,classic nz pop,nz reggae",0.825,0.649,7.0,-9.554,1.0,0.0418,0.334,0.0,0.623,0.97,122.155,3.0,,"Dobworld Limited, Thom Music","C 1988 Dobworld Limited / Thom Music, P 1988 Dobworld Limited / Thom Music",6452 +6453,spotify:track:3kNbJxEwvNJUdhCFmmGepa,Last Night,spotify:artist:4EYRKWX3RvHihDHDr8TocR,The Mar-Keys,spotify:album:0NVCchxFgayZWHKNwUAWCu,The Greatest Morning Soul,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-08-16,https://i.scdn.co/image/ab67616d0000b27379a8f1d92cdbfc75abe225b4,1,19,158480,https://p.scdn.co/mp3-preview/056e2cdb8ba549b840fbe5deacf72da0b2853012?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USAT21205806,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"instrumental soul,memphis soul,southern soul",0.698,0.585,7.0,-5.021,1.0,0.0389,0.435,0.949,0.0499,0.827,126.394,4.0,,Warner Music Group - X5 Music Group,"C 2017 Warner Music Group - X5 Music Group, P 2017 Warner Music Group - X5 Music Group",6453 +6454,spotify:track:7voHUmPNDuYZ1SW1mwRu26,No Limit,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,spotify:album:22s9JNTNHLw9e5wwxKdcF0,No Limits,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,1993-05-10,https://i.scdn.co/image/ab67616d0000b2739c4e4d6cc6065d732aaa7ba1,1,1,224220,https://p.scdn.co/mp3-preview/0424df02409bbb996510049b099337aed11c39a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,BEAA19305003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,hip house",0.65,0.985,5.0,-14.404,0.0,0.0445,0.00872,0.00422,0.0485,0.757,141.047,4.0,,Byte Records,"C 1993 Decos Publishing | Decos Publishing | Decos Publishing | Decos Publishing, P 1993 Byte Records",6454 +6455,spotify:track:726KAdf3k8Ce8W95O38XNI,In The Summertime,"spotify:artist:5EvFsr3kj42KNv97ZEnqij, spotify:artist:4hB4SmzreXMTGWYj7KQ7QN","Shaggy, Rayvon",spotify:album:40rtksAqnwebfPKWzSL6Iv,Boombastic,spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,1995-07-11,https://i.scdn.co/image/ab67616d0000b27311394cad51642144dc4014b3,1,1,238360,https://p.scdn.co/mp3-preview/d88ea27dde44ba05d7ea9e90a9e840bdfb71c04f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBAAA9500025,spotify:user:bradnumber1,2022-01-13T01:33:46Z,"dance pop,pop rap,reggae fusion,barbadian pop,reggae fusion",0.734,0.684,1.0,-13.822,1.0,0.227,0.253,0.0,0.0497,0.962,173.607,4.0,,Virgin Records,"C © 1995 Virgin Records Limited, P ℗ 1995 Virgin Records Limited",6455 +6456,spotify:track:10vpPP0rDTRNJmQyvxyNRz,Streets Of Your Town,spotify:artist:4HCubdy7diarb4KZo8etrq,The Go-Betweens,spotify:album:31nRnHI1uSDZ0POYPPJcUH,16 Lovers Lane,spotify:artist:4HCubdy7diarb4KZo8etrq,The Go-Betweens,1988-08,https://i.scdn.co/image/ab67616d0000b273d6d5e03d9ddc8ad90ce4ed16,1,6,216880,https://p.scdn.co/mp3-preview/00e2d36ecd49856ed0b21de576aa715fe7514531?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAZP8700127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,c86,dunedin sound",0.614,0.782,3.0,-9.974,1.0,0.0278,0.0126,0.00191,0.295,0.761,131.901,4.0,,EMI Music Australia,"C © 2004 Tag 5, P ℗ 2004 Tag 5",6456 +6457,spotify:track:5DQAHkO9U4IZIombHefcqK,Peg,spotify:artist:6P7H3ai06vU1sGvdpBwDmE,Steely Dan,spotify:album:51XjnQQ9SR8VSEpxPO9vrW,Aja,spotify:artist:6P7H3ai06vU1sGvdpBwDmE,Steely Dan,1977-01-01,https://i.scdn.co/image/ab67616d0000b2733b4cadd2c04316e5968dae33,1,4,240293,https://p.scdn.co/mp3-preview/ed811fe59c4f565fafb2ba67acd49d279e0b3eec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC17647230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,mellow gold,rock,soft rock,yacht rock",0.797,0.566,7.0,-11.132,1.0,0.0321,0.0608,0.000362,0.14,0.939,116.976,4.0,,Geffen*,"C © 1999 MCA Records Inc., P ℗ 1977 UMG Recordings, Inc.",6457 +6458,spotify:track:100jpltwNaX9WPws7g4PU2,One Said To The Other,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:1JfbMyeFCCSpjRGfvmtvNV,Modern Artillery,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,2003-10-28,https://i.scdn.co/image/ab67616d0000b2737ad3ab6f3e5244d895728b37,1,6,165560,https://p.scdn.co/mp3-preview/49f31f2f7bb39d1af68dbb4198be6f56eb04fe56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEMO0300105,spotify:user:bradnumber1,2021-11-11T04:08:06Z,"australian alternative rock,australian rock,australian ska",0.554,0.873,9.0,-3.1,1.0,0.067,0.00269,0.0,0.0783,0.74,127.215,4.0,,BMG Rights Management (Australia) Pty Ltd.,"C © 2018 BMG Rights Management (Australia) Pty Ltd., P ℗ 2018 BMG Rights Management (Australia) Pty Ltd.",6458 +6459,spotify:track:7ubq5fqmcPhfg1Q8s3HbbA,The Other Woman,spotify:artist:0NyzfcGDZZ6GM25EBG9BYK,Ray Parker Jr.,spotify:album:5im4z1aNSvWJEnOclEGErW,The Other Woman (Expanded Edition),spotify:artist:0NyzfcGDZZ6GM25EBG9BYK,Ray Parker Jr.,1982,https://i.scdn.co/image/ab67616d0000b27331cd511271643078587c4009,1,1,247960,https://p.scdn.co/mp3-preview/e123043442136bebc84ab3a523f013cd5c6274e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USAR18200013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,theme,0.909,0.544,9.0,-11.692,1.0,0.0529,0.139,0.00614,0.457,0.962,125.918,4.0,,Legacy Recordings,"P This compilation (P) 2014 RCA Records, a division of Sony Music Entertainment",6459 +6460,spotify:track:7hbS99uuSAjqwFwcYgUdEV,Carrie Anne,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:5ourevL93kFzjWH6lIyT42,20 Golden Greats,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1978-07-01,https://i.scdn.co/image/ab67616d0000b273759620a4e1348ace16d6c682,1,2,175893,https://p.scdn.co/mp3-preview/86ba2457f7e12c548a7e46a827023ae625230afc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,GBGYU6700004,spotify:user:bradnumber1,2023-02-14T22:28:41Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.555,0.609,0.0,-9.407,1.0,0.0318,0.19,0.0,0.261,0.849,119.777,4.0,,BMG Rights Management (US) LLC,"C © 1978 BMG Rights Management (US) LLC, P ℗ 1978 BMG Rights Management (US) LLC",6460 +6461,spotify:track:5xEM5hIgJ1jjgcEBfpkt2F,Complicated,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:3zXjR3y2dUWklKmmp6lEhy,Let Go,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2002-06-04,https://i.scdn.co/image/ab67616d0000b273f7ec724fbf97a30869d06240,1,2,244506,https://p.scdn.co/mp3-preview/34657059f6a40050f96e3cbf3d929aa595f5dd60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USAR10200223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,candy pop,dance pop,pop",0.585,0.776,5.0,-5.898,1.0,0.0459,0.0572,7.74e-06,0.3,0.427,77.987,4.0,,Arista,"P (P) 2002 Arista Records, LLC",6461 +6462,spotify:track:3MeP8rMjztb9MpAlBaO6cU,Reelin' and Rockin' - 2019 - Remaster,spotify:artist:2HBbky0Z08ZcCKVsXWbNE4,The Dave Clark Five,spotify:album:0hERdy2d2LN4C9DHULWggN,All the Hits (2019 - Remaster),spotify:artist:2HBbky0Z08ZcCKVsXWbNE4,The Dave Clark Five,2020-01-24,https://i.scdn.co/image/ab67616d0000b2734d98afecc59553023f30dbf4,1,12,167373,https://p.scdn.co/mp3-preview/fd8308be5ea3062cadfda36aed49c03ca6828e6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB5KW1901744,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,merseybeat",0.535,0.786,7.0,-8.163,1.0,0.0928,0.244,1.2e-06,0.0935,0.951,91.152,4.0,,BMG Rights Management (UK) Limited,"C © 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Ltd., P ℗ 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Ltd.",6462 +6463,spotify:track:24dotUzOINUEH3iTUlhDXX,When I Get There,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:1GIWJs7mEdzKym3tQ8QScJ,TRUSTFALL,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2023-02-17,https://i.scdn.co/image/ab67616d0000b2735b8cf73dd4eebd286d9a2c78,1,1,200173,https://p.scdn.co/mp3-preview/e49be74dd2b2bd3332f34bdcef96b1b6eae51678?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC12204195,spotify:user:bradnumber1,2023-02-22T05:53:42Z,"dance pop,pop",0.562,0.403,1.0,-5.441,1.0,0.0361,0.78,0.0,0.094,0.548,82.518,4.0,,RCA Records Label,"P (P) 2023 RCA Records, a division of Sony Music Entertainment",6463 +6464,spotify:track:0Z7O8GMQShj9TJrm2yX1R6,Jump - 2004 Remaster,spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,spotify:album:4RJcoQhc3aupccH9YnZ69o,The Very Best of Van Halen (UK Release),spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,2007-05-14,https://i.scdn.co/image/ab67616d0000b273c55701722ddba5ee3663ab3d,1,13,244106,https://p.scdn.co/mp3-preview/c14bb96528c00ee863a50bf9a7b4a290c51e48a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USWB10401741,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.553,0.838,0.0,-5.824,1.0,0.0317,0.123,3.01e-05,0.053,0.821,129.893,4.0,,Rhino/Warner Records,"C © 2004 Rhino Entertainment Company, a Warner Music Group company, P ℗ 2004 Warner Music Inc., manufactured and marketed by Rhino Entertainment Company, a Warner Music Group company, for the US and WEA International for outside the United States",6464 +6465,spotify:track:43CaRbgLhiAyIHxcOrx6jc,Crash & Burn,spotify:artist:4nskIG5VkuYcUXhlSVDHaG,Rebecca Levy,spotify:album:5WaxdiXDXekQ9fjPhHOs1A,Crash & Burn,spotify:artist:4nskIG5VkuYcUXhlSVDHaG,Rebecca Levy,2021-07-01,https://i.scdn.co/image/ab67616d0000b273cd3ea9a94a3d060c73d8adca,1,1,204359,https://p.scdn.co/mp3-preview/143631ac5b2ce361020fd6ea41eb718ef9b9a025?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,TCAFO2159520,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.539,0.289,4.0,-10.315,1.0,0.047,0.704,0.0,0.111,0.473,134.511,3.0,,Rebecca Levy,"C 2021 Rebecca Levy, P 2021 Rebecca Levy",6465 +6466,spotify:track:4lHQCzdK3VdYQvQZnnRouG,Alone Again (Naturally),spotify:artist:4HVmeVTQBgvTuvjB1JYwaf,Gilbert O'Sullivan,spotify:album:7EZeSlS7lupfVVaZXGXVUs,Back to Front (Deluxe Edition),spotify:artist:4HVmeVTQBgvTuvjB1JYwaf,Gilbert O'Sullivan,1972-01-01,https://i.scdn.co/image/ab67616d0000b2732a17bb450e1326dbac8a456d,1,15,216840,https://p.scdn.co/mp3-preview/d24e950fdaba5d5a1db720a8eb2268378cc86e6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBEQJ0400002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,soft rock",0.555,0.521,8.0,-6.784,0.0,0.0337,0.617,0.00019,0.184,0.633,171.807,4.0,,Salvo,"C © 2012 Union Square Music Limited, a BMG Company, P ℗ 2012 Grand Upright Music Limited under exclusive license to Union Square Music Limited, a BMG Company",6466 +6467,spotify:track:3odPjdX1SjxxjIr0EZjEht,Sympathy For The Devil,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:6KlJV0tOH85ZGtI2gyvXpo,Singles 1968-1971 (International Version),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,2005-02-28,https://i.scdn.co/image/ab67616d0000b2731ef081dee4fbaf4f4de9d41b,1,19,377573,https://p.scdn.co/mp3-preview/5dd130c5686531fc33e1b5c6b22fa72729aa4ffa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176810010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.7,0.675,9.0,-10.956,1.0,0.241,0.578,0.0,0.0397,0.608,115.925,4.0,,Universal Music Group,"C © 2005 ABKCO Music and Records, Inc., P ℗ 2005 ABKCO Music and Records, Inc.",6467 +6468,spotify:track:5bC4y9Zhn6ng0MOzACCHkc,For Your Love,spotify:artist:2lxX1ivRYp26soIavdG9bX,The Yardbirds,spotify:album:0lYmtEuL0fLXPP4XKr5O8K,The Yardbirds Story - Pt. 3 - 1965/66 - Big Hits & America Calling,spotify:artist:2lxX1ivRYp26soIavdG9bX,The Yardbirds,1965,https://i.scdn.co/image/ab67616d0000b27395670c43925b9ce8a437c9b4,1,1,150626,https://p.scdn.co/mp3-preview/6ed948ace49f3b27ee794e668de847ddcc7158bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBAWA0515289,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,british invasion,classic rock,country rock,folk rock,hard rock,psychedelic rock,rock,singer-songwriter",0.347,0.638,2.0,-10.258,1.0,0.0409,0.236,0.0,0.0894,0.61,94.506,4.0,,Charly,"C (C) 2013 Charly Acquisitions Ltd., P (P) 1965 Columbia",6468 +6469,spotify:track:5e1enT0NPXPZkR8F3R58bY,Relax,spotify:artist:1mZu3rO7qSD09GdDpePHhY,Frankie Goes To Hollywood,spotify:album:0iJ5p5xRoMh0HLr4du6Stp,Maximum Joy,spotify:artist:1mZu3rO7qSD09GdDpePHhY,Frankie Goes To Hollywood,2000,https://i.scdn.co/image/ab67616d0000b2732153ed54423ab53ddaba7338,1,1,237933,https://p.scdn.co/mp3-preview/fa7015e65bf8da36eb49ef1fa02d247dbca2b293?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHW0100371,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,hi-nrg,new romantic,new wave,new wave pop,synthpop",0.673,0.88,11.0,-6.354,0.0,0.0412,0.313,2.86e-06,0.0299,0.712,114.905,4.0,,ZTT Records Ltd,"C 2000 ZTT Records Ltd, P 2000 ZTT Records Ltd",6469 +6470,spotify:track:2gGLpMzoo80A7jGEIr4ou8,Naked,"spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:1bqxdqvUtPWZri43cKHac8","Jonas Blue, MAX",spotify:album:6C8hZT4nmCER89JVbhq9BV,Naked,"spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:1bqxdqvUtPWZri43cKHac8","Jonas Blue, MAX",2020-06-26,https://i.scdn.co/image/ab67616d0000b273d33eca71183987b1ba6c6898,1,1,210921,https://p.scdn.co/mp3-preview/ece2f75ecfd7d3e21d7d45d264fddea320acc911?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBUM72001837,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop dance,tropical house,uk dance,singer-songwriter pop,teen pop,viral pop",0.856,0.622,10.0,-5.217,0.0,0.0564,0.36,0.0,0.0875,0.778,114.976,4.0,,Positiva,"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",6470 +6471,spotify:track:3hb2ScEVkGchcAQqrPLP0R,Photograph,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:3eZd2XbhLyPcgbgcsLTZh3,All the Right Reasons,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2005-09-26,https://i.scdn.co/image/ab67616d0000b27307fb7d8037f3962394c493ca,1,3,258920,https://p.scdn.co/mp3-preview/18759c470fdb1a0cc7fcbd2069f0045f27c73aa7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,NLA320581256,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.515,0.876,8.0,-3.756,1.0,0.0292,0.000932,0.000166,0.136,0.385,145.916,4.0,,Roadrunner Records,"C © 2005 The All Blacks B.V., P ℗ 2005 The All Blacks B.V.",6471 +6472,spotify:track:2inb1KNU2bGIkldLsuDb83,Crying In the Chapel,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:7N1t7WzloZyMj95jk6CSCt,How Great Thou Art,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1967-02-01,https://i.scdn.co/image/ab67616d0000b27344d592382acae5ef6f8ea14d,1,13,145400,https://p.scdn.co/mp3-preview/c6bc5a0aebce2bfbd748a9439a244b778177bbc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USRC16000747,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.255,0.193,11.0,-16.236,1.0,0.0363,0.948,7.09e-06,0.343,0.164,70.536,4.0,,RCA/Legacy,P (P) 1967 Sony Music Entertainment,6472 +6473,spotify:track:50jxuJ7lkylYxorvq2qyrd,Dear Lady Twist,spotify:artist:1Qw8MHpjYxm9Xf0O1ZfPiX,Gary U.S. Bonds,spotify:album:2PArRNdh00lRhySkUlJ16k,Twist Up Calypso,spotify:artist:1Qw8MHpjYxm9Xf0O1ZfPiX,Gary U.S. Bonds,2012-01-01,https://i.scdn.co/image/ab67616d0000b273a9f32235871d8277a5a4f4e8,1,1,150569,https://p.scdn.co/mp3-preview/066ae5c49b4d41eef0c841444a82368613655d65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEBL61286355,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rhythm and blues,0.442,0.953,0.0,-2.551,1.0,0.173,0.125,0.0,0.302,0.932,138.442,4.0,,The Twist,"C 2012 Crates Digger Music Group, P 2012 Crates Digger Music Group",6473 +6474,spotify:track:3k9EVrhY1Jr2Z03W9VzDYX,I Like It,"spotify:artist:2KC232QzznUIYsnVvW9pEv, spotify:artist:5w0ka9nPOmEH6CcZrutyP2","Enrique Iglesias feat. Pitbull, Jason Nevins",spotify:album:3EF67eVuK5XfLuHPN2ruSi,Jersey Shore,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b27378bda4ffee1fb11171110324,1,1,216133,https://p.scdn.co/mp3-preview/491e68f54d27df955c8e1e390d826bc1bbd08bbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71024500,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.657,0.892,10.0,-3.851,0.0,0.072,0.00845,0.0,0.133,0.746,128.973,4.0,,Universal Music Group,"C © 2010 Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2010 Universal Republic Records, a division of UMG Recordings, Inc.",6474 +6475,spotify:track:6Lst3nF4McKOTLSLuTvLhw,(If You're Not In It For Love) I'm Outta Here!,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,spotify:album:3wDeIA9tJU0uNlsroUdcYK,The Woman In Me,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,1995-01-01,https://i.scdn.co/image/ab67616d0000b27397c04b4a131dc95ce5e83107,1,4,270026,https://p.scdn.co/mp3-preview/6acdc365874fa0ab74699fc261750baa352135f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USPR39402724,spotify:user:bradnumber1,2022-01-11T11:20:08Z,"canadian country,canadian pop,contemporary country,country,country dawn",0.772,0.761,5.0,-8.271,1.0,0.0358,0.141,0.0,0.0813,0.868,120.058,4.0,,Mercury Nashville,"C © 1995 Mercury Records, a Division of UMG Recordings, Inc., P ℗ 1995 Mercury Records, a Division of UMG Recordings, Inc.",6475 +6476,spotify:track:0Azn2vpP3Sbs8qAG8e1KUc,Making Your Mind Up,spotify:artist:5ZfzzHE7rxONfoksJsLXrX,Bucks Fizz,spotify:album:5HqRd9aYv1b0x8A6q2ljFb,Bucks Fizz,spotify:artist:5ZfzzHE7rxONfoksJsLXrX,Bucks Fizz,2004-06-14,https://i.scdn.co/image/ab67616d0000b27312bc8ca1fc44a9f10bd17aaf,1,6,158440,https://p.scdn.co/mp3-preview/ebd5d3cc4a0226f081e7223a7ea45118e7aa2513?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBARL8100025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.64,0.834,2.0,-9.413,1.0,0.0534,0.278,0.0,0.0459,0.971,173.565,4.0,,Sony Music Entertainment,P (P) 2004 BMG Rights Management (UK) Limited,6476 +6477,spotify:track:3rTAKatfE5UsckZvWBrekL,Pretty Blue Eyes,spotify:artist:271pvVqDFiREx6PqzwOX8p,Steve Lawrence,spotify:album:3yHslgOyKP2EPzeyHj6cuC,Greatest Hits: Steve Lawrence,spotify:artist:271pvVqDFiREx6PqzwOX8p,Steve Lawrence,2011-11-28,https://i.scdn.co/image/ab67616d0000b2739c7cfaed35fd799d4cd0252c,1,3,114472,https://p.scdn.co/mp3-preview/9262f38ed5dc850f3ca10b3710ff4605c23380e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA561333730,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.48,0.518,5.0,-11.883,1.0,0.0312,0.493,0.0,0.366,0.898,126.399,4.0,,Open Records,C (C) 2011 Open Records,6477 +6478,spotify:track:43HrhMlI1t3PTlgRipISqq,Sweetest Thing - The Single Mix,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:0WSpHK6tinGHU4gvP8fHih,The Best Of 1980 - 1990,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1998-11-02,https://i.scdn.co/image/ab67616d0000b273ba171000f58dd9dde2692122,1,10,179973,https://p.scdn.co/mp3-preview/0a2ca3d3873bebaf18d27930b98f2b14f4311af3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAAN9800387,spotify:user:bradnumber1,2022-09-16T07:32:56Z,"irish rock,permanent wave,rock",0.533,0.616,0.0,-7.093,1.0,0.0356,0.0761,5.05e-05,0.336,0.552,142.249,4.0,,UMC (Universal Music Catalogue),"C © 1998 Island Records, a division of Universal Music Operations Limited, P This Compilation ℗ 1998 Island Records, a division of Universal Music Operations Limited",6478 +6479,spotify:track:2eEmzSR9tmd52w7cqT9yK6,Hold On Loosely,spotify:artist:3zXw2Eh96iTT51pytzHdZi,38 Special,spotify:album:5XPk6u1ZYTs1R2gl4Ndlm6,Flashback,spotify:artist:3zXw2Eh96iTT51pytzHdZi,38 Special,1987-01-01,https://i.scdn.co/image/ab67616d0000b2733608abb316d2fd3298d8a544,1,2,279240,https://p.scdn.co/mp3-preview/16398aa5fb83832fc788886823f35be75b3a7042?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USUMG0000591,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,glam metal,hard rock,mellow gold,rock,soft rock,southern rock",0.541,0.572,9.0,-10.834,1.0,0.0316,0.028,0.000338,0.091,0.854,127.504,4.0,,A&M,"C © 1987 A&M Records Inc., P This Compilation ℗ 1987 UMG Recordings, Inc.",6479 +6480,spotify:track:599NhLmQ6x7RsKLr50QpDZ,The Good Life,spotify:artist:3KCX3JQgSE4P3iJGh9iCTP,The Collective,spotify:album:7b90AcCp6ilaBZlxAMpsMK,The Good Life,spotify:artist:3KCX3JQgSE4P3iJGh9iCTP,The Collective,2014-09-19,https://i.scdn.co/image/ab67616d0000b2733e6d97b984be285009bf229f,1,1,218240,https://p.scdn.co/mp3-preview/32e563bf5bad115993a45b8f9273565d958245d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUBM01400470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,boy band",0.602,0.795,4.0,-4.522,1.0,0.0433,0.12,0.0,0.112,0.748,86.019,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,6480 +6481,spotify:track:0xdTHRkRv4sTrNikBNiz1u,View From a Bridge,spotify:artist:73a6pNH4YtLNgDbPQwXveo,Kim Wilde,spotify:album:6NPoxEiMqOpHZyymu1Begh,The Gold Collection,spotify:artist:73a6pNH4YtLNgDbPQwXveo,Kim Wilde,1996-03-18,https://i.scdn.co/image/ab67616d0000b27350072965db67e77c60a9d6f5,1,11,210946,https://p.scdn.co/mp3-preview/864986018b340b41c21f03dbbd5c9d1ed5cb5884?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GBAYE8200218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.593,0.834,2.0,-6.007,0.0,0.0353,0.0486,0.000584,0.115,0.813,148.719,4.0,,Cherry Red Records,"C (C) 1996 Cherry Red Records Ltd, P (P) 1996 Cherry Red Records Ltd",6481 +6482,spotify:track:3pVsGhUEBZKFtn0n8zjS0H,Love Don't Live Here Anymore,spotify:artist:1OxJzMLmR9l5zPLap9OxuO,Rose Royce,spotify:album:7Fztl07Vtpt1rxFYoHeZji,Rose Royce III: Strikes Again!,spotify:artist:1OxJzMLmR9l5zPLap9OxuO,Rose Royce,1978,https://i.scdn.co/image/ab67616d0000b27352fc32e87cf48546dd6e992d,1,5,238306,https://p.scdn.co/mp3-preview/923bb18a74bf0d478529d806a6beda3f6635351a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB17800008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,motown,post-disco,quiet storm,soul,southern soul",0.529,0.262,11.0,-19.546,0.0,0.0698,0.834,0.00078,0.107,0.648,83.046,4.0,,Rhino/Warner Records,"C © 1978 Warner Records Inc., P ℗ 1978 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",6482 +6483,spotify:track:5Ozv6hQIj20iX3nFfJCe8E,The Rain The Park And Other Things,spotify:artist:4ZSzroBNV7HzBDO9aohuF1,The Cowsills,spotify:album:2RL5fZ0lKVdk1JlMVfdEhH,The Cowsills,spotify:artist:4ZSzroBNV7HzBDO9aohuF1,The Cowsills,1967-10-01,https://i.scdn.co/image/ab67616d0000b273a5bec153d67537904fa8209c,1,1,184240,https://p.scdn.co/mp3-preview/58a92fa63c421d39737f1dc9cb3736738f6a2714?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USUM71606000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,underground power pop",0.376,0.662,11.0,-8.771,1.0,0.0404,0.809,0.00131,0.683,0.691,131.582,4.0,,Mercury Records,"C © 1967 Mercury Records, a Division of UMG Recordings, Inc., P ℗ 1967 Mercury Records, a Division of UMG Recordings, Inc.",6483 +6484,spotify:track:2Fxmhks0bxGSBdJ92vM42m,bad guy,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,spotify:album:0S0KGZnfBGSIssfF54WSJh,"WHEN WE ALL FALL ASLEEP, WHERE DO WE GO?",spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,2019-03-29,https://i.scdn.co/image/ab67616d0000b27350a3147b4edd7701a876c6ce,1,2,194087,https://p.scdn.co/mp3-preview/3d1ec5e181c3427ead96e3be34d606e3fc522a71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USUM71900764,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.701,0.425,7.0,-10.965,1.0,0.375,0.328,0.13,0.1,0.562,135.128,4.0,,Darkroom/Interscope Records,"C © 2019 Darkroom/Interscope Records, P ℗ 2019 Darkroom/Interscope Records",6484 +6485,spotify:track:15Mh8m2BGTUptR8yy7fNAS,Only You,spotify:artist:1G1mX30GpUJqOr1QU2eBSs,Yazoo,spotify:album:35XWsJcKVHGmDKE8XUd3o3,Upstairs at Eric's,spotify:artist:1G1mX30GpUJqOr1QU2eBSs,Yazoo,1982-07-01,https://i.scdn.co/image/ab67616d0000b273e0c3e555afcd70597d605b8e,1,6,194173,https://p.scdn.co/mp3-preview/102e7c91e9b215243dc1b9d047a7d67b240bb601?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBAJH9900151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop",0.752,0.307,9.0,-17.063,1.0,0.0398,0.332,0.000135,0.0829,0.854,106.158,4.0,,"Mute, a BMG Company","C © 1982 Mute Records Ltd., a BMG Company, P ℗ 1982 Mute Records Ltd., a BMG Company",6485 +6486,spotify:track:21l7ENdSK2joRWEFt4vo4U,Fraction Too Much Friction,spotify:artist:6OIoPLnbAe0U4k1NFjqIyN,Tim Finn,spotify:album:521hAFgjTvFeiZ5WXo9fIz,Escapade,spotify:artist:6OIoPLnbAe0U4k1NFjqIyN,Tim Finn,1983,https://i.scdn.co/image/ab67616d0000b27394950394cfd34626fc356bdc,1,1,254666,https://p.scdn.co/mp3-preview/864f7a227dfb7edc771d53aff6f040d81d7ecbf5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUMU08300005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,kiwi rock,nz singer-songwriter,solo wave",0.663,0.49,11.0,-15.303,0.0,0.0289,0.347,0.0064,0.0543,0.934,99.957,4.0,,WM Australia,"C © 1983 Mushroom Records Pty Limited, P ℗ 1983 Mushroom Records Pty Limited",6486 +6487,spotify:track:71iym9c1arIh8nDcSVXugu,Like Only A Woman Can,spotify:artist:5ny07v4RRsvdv1uQVplMry,Brian McFadden,spotify:album:6Zh0B7BnlxwlRmZPU1WH4z,Set In Stone,spotify:artist:5ny07v4RRsvdv1uQVplMry,Brian McFadden,2008-01-01,https://i.scdn.co/image/ab67616d0000b2737b38bb7a5d2e7158419745b5,1,2,234613,https://p.scdn.co/mp3-preview/58a87c4c6877251f9ff3657446eafd95ceb18c57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUUM70800102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.29,0.467,3.0,-6.993,1.0,0.031,0.553,0.0,0.0976,0.246,156.298,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 BMF Records, under exclusive license to Universal Music Australia, P ℗ 2008 BMF Records, under exclusive license to Universal Music Australia",6487 +6488,spotify:track:14eMREyojdEm4nwEJn084p,(Baby I've Got You) On My Mind,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:20NuHYF4fcLXgQcqkjq9rI,Footprints: The Best of Powderfinger 2001 - 2011,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b27329c8f244b0044e3aaac83927,1,2,201066,https://p.scdn.co/mp3-preview/e951ebdd562f40ac3f8c16a562da6b1478dc7c18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00330019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.364,0.973,3.0,-3.063,1.0,0.0974,0.00123,0.000129,0.105,0.715,146.566,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P This Compilation ℗ 2011 Universal Music Australia Pty Ltd.",6488 +6489,spotify:track:0AS63m1wHv9n4VVRizK6Hc,Mercy,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:3wBabo4pmzsYjALMSKY7Iq,Illuminate (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2017-04-20,https://i.scdn.co/image/ab67616d0000b273ea3ef7697cfd5705b8f47521,1,3,208733,https://p.scdn.co/mp3-preview/7814718df164c0b2e3543430b3482b4b6f6f5717?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USUM71603531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.554,0.662,11.0,-4.957,0.0,0.0821,0.126,0.0,0.111,0.338,148.122,4.0,,Island Records,"C © 2016 Island Records, a division of UMG Recordings, Inc., P This Compilation ℗ 2017 Island Records, a division of UMG Recordings, Inc.",6489 +6490,spotify:track:0EANX0OVKSCcmarY50Xa4p,Can You Feel the Love Tonight - End Title,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:3YA5DdB3wSz4pdfEXoMyRd,The Lion King,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1994-01-01,https://i.scdn.co/image/ab67616d0000b273660aadbda2da6b1c2dd3d1a5,1,12,241013,https://p.scdn.co/mp3-preview/1161dc02b9fdc450c757454c0897bd70b26a3954?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USWD10220758,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.308,0.181,10.0,-17.022,1.0,0.0338,0.869,0.000283,0.118,0.146,124.492,4.0,,Walt Disney Records,"C © 1994 The Walt Disney Company, P This Compilation ℗ 1994 Buena Vista Pictures Distribution, Inc.",6490 +6491,spotify:track:1JyFfLj000cY275h9reTHP,Burnin' Up,spotify:artist:7gOdHgIoIKoe4i9Tta6qdD,Jonas Brothers,spotify:album:1qaa1it9TklKPH0RZa7wZm,Pop It / Rock It,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-01-01,https://i.scdn.co/image/ab67616d0000b27329f56bd9078d3f194168def1,1,2,173986,https://p.scdn.co/mp3-preview/664411c4ffd82b92aa186dd95dcd16cb753b661d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR10823884,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.669,0.943,2.0,-4.125,1.0,0.073,0.0282,0.0,0.447,0.857,114.014,4.0,,Walt Disney Records,"C © 2009 Disney, P ℗ 2009 Walt Disney Records",6491 +6492,spotify:track:1BW0UUEUcJIf6G5rn6dphx,Oh! Hark!,spotify:artist:53f2OKMfVLTsHFkGyA5dnz,Lisa Mitchell,spotify:album:0JR5U7wsYbHaSZhkYS2r7X,Wonder (Standard),spotify:artist:53f2OKMfVLTsHFkGyA5dnz,Lisa Mitchell,2009-07-09,https://i.scdn.co/image/ab67616d0000b2736eb05bca232ae1db890d25bc,1,8,271880,https://p.scdn.co/mp3-preview/67a2378d97598548004177df2177dd8dd53515f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBARL0900499,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian indie folk,australian indigenous music",0.502,0.684,9.0,-6.396,1.0,0.161,0.135,3.43e-06,0.406,0.558,199.903,4.0,,WM Australia,"C © 2009 Warner Music Australia Pty Limited. Marketed and distributed by Warner Music Australia Pty Limited in Australia and New Zealand, P ℗ 2009 Warner Music Australia Pty Limited",6492 +6493,spotify:track:0QIgxEydF4mfYc9qraBzqT,Stay Another Day,spotify:artist:6lOC7lwSO1ql4Gc2Y3QObY,East 17,spotify:album:374fbyA2Mcu33vrz0TP7Dw,Steam,spotify:artist:6lOC7lwSO1ql4Gc2Y3QObY,East 17,1994-10-17,https://i.scdn.co/image/ab67616d0000b27322d583fada37a5db93b90d04,1,5,267480,https://p.scdn.co/mp3-preview/2ba127a42e1180cbc78dffc32cc064033826c3fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBANP9400042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop",0.515,0.452,2.0,-9.197,1.0,0.0275,0.6,0.00073,0.171,0.456,127.801,4.0,,London Records,"C 1994 London Records 90 Ltd, P 1994 London Records 90 Ltd",6493 +6494,spotify:track:0VXNv42fMCHUaugnEgTeI7,Kiss Me More (feat. SZA),"spotify:artist:5cj0lLjcoR7YOSnhnX0Po5, spotify:artist:7tYKF4w9nC0nq9CsPZTHyP","Doja Cat, SZA",spotify:album:1fLsrYs2DYOwx6HxSTqHj8,Kiss Me More (feat. SZA),"spotify:artist:5cj0lLjcoR7YOSnhnX0Po5, spotify:artist:7tYKF4w9nC0nq9CsPZTHyP","Doja Cat, SZA",2021-04-08,https://i.scdn.co/image/ab67616d0000b273cd67bb61ceb87fdecb0e4a94,1,1,208866,https://p.scdn.co/mp3-preview/ab61cfe74d7a52a0526d1f22f9bce38713438a29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USRC12100760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop,r&b,rap",0.781,0.692,8.0,-3.479,1.0,0.0301,0.245,0.000168,0.123,0.726,110.962,4.0,,Kemosabe Records/RCA Records,P (P) 2021 Kemosabe Records/RCA Records,6494 +6495,spotify:track:6U4FfDDSysMWEjNqcCM6nO,All Shook Up,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0uJJdEZ8sRLNPoKEkjvqTD,Elvis 30 #1 Hits (Expanded Edition),spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2022-02-18,https://i.scdn.co/image/ab67616d0000b2735cc9e097906397c45324ea08,1,6,118066,https://p.scdn.co/mp3-preview/d72d69dabb4454acd03eebb1c12660bbc83ceb12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USRC10200070,spotify:user:bradnumber1,2023-08-05T14:25:39Z,"rock-and-roll,rockabilly",0.665,0.668,10.0,-6.356,1.0,0.168,0.837,0.0,0.192,0.938,73.851,4.0,,RCA/Legacy,P This Compilation (P) 2022 Sony Music Entertainment,6495 +6496,spotify:track:702fb7UEKhd2RzjWFMdjjq,You Can Depend On Me,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,spotify:album:2osc6a2FfmXGPcsr1ptY7b,Classic Brenda Lee - The Universal Masters Collection,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,2000-01-01,https://i.scdn.co/image/ab67616d0000b27306a3b68a8db6eedc8d10c3ae,1,4,212426,https://p.scdn.co/mp3-preview/f92eaf9702ca50d34cbe1d5629a97698d290d7a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16110071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rockabilly",0.547,0.105,11.0,-16.019,1.0,0.0277,0.89,0.000149,0.119,0.268,92.307,3.0,,Geffen,"C © 2000 MCA Nashville, P ℗ 2000 MCA Nashville",6496 +6497,spotify:track:13i1EEuNlvbJZNtdu6GYzG,The Rhythm of the Jungle,spotify:artist:5aZETKCwPFImGYeN6c7yV7,The Quick,spotify:album:2rStrBbJG7k47JZ8r2E0br,Fascinating Rhythm,spotify:artist:5aZETKCwPFImGYeN6c7yV7,The Quick,1982-01-01,https://i.scdn.co/image/ab67616d0000b2730ce71a1ec178d3d36ac3d08b,1,1,245659,https://p.scdn.co/mp3-preview/c144c9dd8a3ba259424c35bf875610a39952a7b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,GBBBM8202051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.723,0.89,11.0,-7.424,0.0,0.0509,0.0672,4.79e-05,0.0494,0.791,112.308,4.0,,Sony Music CG,P (P) 1982 Sony Music Entertainment UK Limited,6497 +6498,spotify:track:5Muvh0ooAJkSgBylFyI3su,Steal My Sunshine - Single Version,spotify:artist:0nyc9SZGLITSOJASmTZsnZ,LEN,spotify:album:7xXKgIFgbBSdBAV4rDZ9yp,Steal My Sunshine EP,spotify:artist:0nyc9SZGLITSOJASmTZsnZ,LEN,1999-09-06,https://i.scdn.co/image/ab67616d0000b273b48a080b2b7b05ad4d9ca8a0,1,1,211466,https://p.scdn.co/mp3-preview/bd5b6c7d7048c86709f5709e3704e0fa6ea6f375?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM19900274,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian rock,0.405,0.944,4.0,-8.473,1.0,0.249,0.527,0.0,0.214,0.71,192.147,4.0,,Epic/Work,"P (P) 1999 Epic Records, a division of Sony Music Entertainment",6498 +6499,spotify:track:2SusUbsUQnw8OJDq56ZMbE,The Happening,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,spotify:album:7bPBdkx7Vm2vqDkwnfNlg8,Gold,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,2005-04-26,https://i.scdn.co/image/ab67616d0000b27318b4a5305db988a2e9f1dbb9,1,15,169866,https://p.scdn.co/mp3-preview/f6a79efd584a79846757b10bcbf0160e77278ff8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USMO19200473,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic girl group,classic soul,disco,motown,soul",0.344,0.745,8.0,-6.901,1.0,0.0333,0.197,0.0,0.628,0.832,172.124,4.0,,UNI/MOTOWN,"C © 2005 UMG Recordings, Inc., P This Compilation ℗ 2005 UMG Recordings, Inc.",6499 +6500,spotify:track:1SKPmfSYaPsETbRHaiA18G,Somewhere Only We Know,spotify:artist:53A0W3U0s8diEn9RhXQhVz,Keane,spotify:album:0MlTOiC5ZYKFGeZ8h3D4rd,Hopes And Fears,spotify:artist:53A0W3U0s8diEn9RhXQhVz,Keane,2004-05-10,https://i.scdn.co/image/ab67616d0000b2737d6cd95a046a3c0dacbc7d33,1,1,237146,https://p.scdn.co/mp3-preview/14b8c7f33de3a3a6558d3589b9f2260ae8c513c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,GBAAN0300664,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop rock",0.448,0.665,9.0,-4.203,1.0,0.026,0.06,2.55e-05,0.0828,0.304,172.004,4.0,,Universal-Island Records Ltd.,"C © 2004 Universal Island Records Ltd. A Universal Music Company., P ℗ 2004 Universal Island Records Ltd. A Universal Music Company.",6500 +6501,spotify:track:5XsMz0YfEaHZE0MTb1aujs,Wake Me Up Before You Go-Go,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,spotify:album:0CpBTGH3Eewlbw35IclPdm,Make It Big,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,1984-10-23,https://i.scdn.co/image/ab67616d0000b273c9de13ccef2313739286d19c,1,1,230693,https://p.scdn.co/mp3-preview/48ce25ff385552880371a3c460f0b90ecbcfceea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBM8400002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock",0.618,0.764,0.0,-6.027,1.0,0.0562,0.186,0.0,0.12,0.876,81.366,4.0,,Epic,P 1984 Sony Music Entertainment Inc.,6501 +6502,spotify:track:2Vu3PpbpaBB5nAThPQstKL,Real Love,"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:4ScCswdRlyA23odg9thgIO","Clean Bandit, Jess Glynne",spotify:album:0dNt3MfPrvj6mHmajSuahw,New Eyes,spotify:artist:6MDME20pz9RveH9rEXvrOM,Clean Bandit,2014-06-02,https://i.scdn.co/image/ab67616d0000b2735ef315d54fd701725176292e,1,14,219691,https://p.scdn.co/mp3-preview/11c8859c297a2544c0ff55167d2477c69cab9dbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBAHS1400368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,dance pop,pop,uk pop",0.63,0.848,0.0,-4.592,1.0,0.0428,0.0834,4.34e-06,0.205,0.551,124.987,4.0,,Atlantic Records UK,"C © 2014 Warner Music UK Limited, P ℗ 2014 Warner Music UK Limited",6502 +6503,spotify:track:4SGBuq37Ol4HJr7pQqFMKa,I Got You Babe,spotify:artist:71lGEtP9qYXDsSXjfexTqO,Sonny & Cher,spotify:album:4VFnAIRrYMA3iEHpjNP5cH,Look At Us,spotify:artist:71lGEtP9qYXDsSXjfexTqO,Sonny & Cher,1965,https://i.scdn.co/image/ab67616d0000b2736823f5ab3f87b902c35ef56b,1,1,190080,https://p.scdn.co/mp3-preview/4a612a4e7b032f1a66df0ad4bed13674a41fdfd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USAT27500019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,folk,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.629,0.795,6.0,-6.02,1.0,0.0278,0.136,5.44e-06,0.132,0.6,110.583,3.0,,Rhino Atlantic,"C © 1965 Atlantic Records, P ℗ 1965 Atlantic Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",6503 +6504,spotify:track:2nyoYdCYZXrdiLwNDw9t12,Chanson d'Amour,spotify:artist:2dogRElUKV20C2khRHqjRc,The Manhattan Transfer,spotify:album:6P4oBoe82OUrkeGtsg0c75,Coming Out,spotify:artist:2dogRElUKV20C2khRHqjRc,The Manhattan Transfer,1976,https://i.scdn.co/image/ab67616d0000b273ef81a02a4c80a324c9581a08,1,3,173280,https://p.scdn.co/mp3-preview/207e978018449c1ec85f283be397f7f5343cc4f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20001135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"a cappella,vocal jazz",0.47,0.314,2.0,-17.01,0.0,0.0265,0.0293,0.000479,0.167,0.575,98.927,4.0,,Concord Music Group,"C 1976 Concord Music Group, Inc., P 1976 Concord Music Group, Inc.",6504 +6505,spotify:track:47lkghP0AjBkqOGzbxC2Mt,I Need A Lover,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:5zvuFA0RNCJyytXBdmjAlv,A Biography,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1978,https://i.scdn.co/image/ab67616d0000b27307a39816c5f41749e9fd1949,1,5,337226,https://p.scdn.co/mp3-preview/2ad86fe958dcc8932a7d2186b38279eeccc42c82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USJM17900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.415,0.851,6.0,-5.425,1.0,0.0611,0.00474,0.00632,0.368,0.796,125.961,4.0,,John Mellencamp 2023 (Republic),"C © 2005 Riva Recordings, Inc., under exclusive license to UMG Recordings, Inc. and Primary Wave Music IV, P ℗ 2005 Riva Recordings, Inc., under exclusive license to UMG Recordings, Inc. and Primary Wave Music IV",6505 +6506,spotify:track:26qDFDKrveLljfIX5ft061,Honey Come Back,spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,spotify:album:5MrXG5mhgenrHar4S8iQdy,Glen Campbell - The Capitol Years 1965 - 1977,spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,2011-01-01,https://i.scdn.co/image/ab67616d0000b27366aff06c0306e4c356bc99c8,2,1,178000,https://p.scdn.co/mp3-preview/b119a943b866496ea0327cf569637faa468457be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USCN16900140,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,arkansas country,classic country pop,folk rock,mellow gold,nashville sound,singer-songwriter,soft rock",0.303,0.349,5.0,-13.096,1.0,0.032,0.331,5.88e-05,0.308,0.422,101.091,4.0,,Capitol Nashville,"C © 2011 Capitol Records, LLC, P ℗ 2011 Capitol Records Nashville",6506 +6507,spotify:track:2knr7ikPt4l7bk92qS4ZXW,Euphoria,spotify:artist:49aaHxvAJ0tCh0F15OnwIl,Loreen,spotify:album:73FYKSgOypVgghYr8GsEGl,Heal,spotify:artist:49aaHxvAJ0tCh0F15OnwIl,Loreen,2012-10-19,https://i.scdn.co/image/ab67616d0000b27396663c059e615c7db2ed9bb6,1,4,214133,https://p.scdn.co/mp3-preview/81bae1f62971ab32e22e4d5e6c81e24601176567?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,SEPQA1201986,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.518,0.679,11.0,-5.406,0.0,0.0355,0.079,4.85e-05,0.0588,0.106,132.146,4.0,,WM Sweden,"C © 2012 Warner Music Sweden AB, P ℗ 2012 Warner Music Sweden AB",6507 +6508,spotify:track:53Pgsvu3qSYO2aXt5J2vcL,Lego House,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:0W5GGnapMz0VwemQvJDqa7,+,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2011-09-09,https://i.scdn.co/image/ab67616d0000b273e6d489d359c546fea254f440,1,9,185093,https://p.scdn.co/mp3-preview/d6efa078dfe2251e413ce858fa0f937f2902a437?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAHS1100206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.592,0.637,11.0,-8.48,1.0,0.0992,0.562,0.0,0.13,0.565,159.701,4.0,,Atlantic Records UK,"C © 2011 Warner Music UK Limited, P ℗ 2011 Warner Music UK Limited",6508 +6509,spotify:track:0MGxfGHgECCGU5xqHD1uc8,Shake It Off,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:2OFEeb1ruGsR1pARO4oM3C,The Emancipation of Mimi (Ultra Platinum Edition),spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2005-01-01,https://i.scdn.co/image/ab67616d0000b273923a022be6dd466f96aa13a0,1,3,232840,https://p.scdn.co/mp3-preview/57d99e1e5fe3acdfb9672dfc58254024677e0cd5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20500246,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.78,0.493,2.0,-6.516,1.0,0.124,0.181,0.0,0.108,0.82,134.086,4.0,,Universal Music Group,"C © 2005 Mariah Carey, P ℗ 2005 The Island Def Jam Music Group and Mariah Carey",6509 +6510,spotify:track:5dhQCqONiQji7k4RkhIcjq,I Miss You,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:2HoSi9LK61wIgBUJS8v6XX,blink-182 (explicit version) [Explicit Version],spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,2003-11-18,https://i.scdn.co/image/ab67616d0000b27376f7617e9edb40d42f7094b6,1,3,227253,https://p.scdn.co/mp3-preview/cc5611e3fd54bef22b311e8f689f22d4189164ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10346123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.653,0.774,11.0,-6.366,1.0,0.0341,0.00132,6.98e-06,0.0835,0.611,109.997,4.0,,Geffen,"C (C) 2003 Geffen Records, P (P) 2003 Geffen Records",6510 +6511,spotify:track:3dFR132gzO8jxD57R2gid3,You Light Up My Life,spotify:artist:1UkHCANZmdkKyVNvTLMrcJ,Debby Boone,spotify:album:0lKPC6pyYjRxi2vexd0Zua,You Light Up My Life,spotify:artist:1UkHCANZmdkKyVNvTLMrcJ,Debby Boone,1977-07-01,https://i.scdn.co/image/ab67616d0000b273f1261efb05286fadeaa0734b,1,1,216286,https://p.scdn.co/mp3-preview/7035ebe874c6ace8066938905e64cc9f650c8188?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USCRB9900460,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.333,0.367,2.0,-10.06,1.0,0.0291,0.831,1.19e-05,0.262,0.0685,77.986,3.0,,Curb Records,"C 1977 Curb Records, Inc., P 1977 Curb Records, Inc.",6511 +6512,spotify:track:2Aebl2cIDLjPUvOJPH8xyH,Just Like a Pill,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:03pT16iWbhVKpDodI37D8b,M!ssundaztood,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2001-11-16,https://i.scdn.co/image/ab67616d0000b2730516080f83d31290bcd9773e,1,3,237040,https://p.scdn.co/mp3-preview/76b5d4f5b13faf54aab7dba4dc1c7a4ea681b0d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR10100716,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.686,0.782,9.0,-4.653,1.0,0.0277,0.000106,0.0,0.0961,0.247,101.986,4.0,,Arista,"P (P) 2001 RCA/JIVE Label Group, a unit of Sony Music Entertainment",6512 +6513,spotify:track:6tBD4yjOf9P8rWwUlXdJFm,Have You Ever,spotify:artist:05oH07COxkXKIMt6mIPRee,Brandy,spotify:album:1Co6e9ag1gRKcWdG7xKcCi,Never Say Never,spotify:artist:05oH07COxkXKIMt6mIPRee,Brandy,1998-05-29,https://i.scdn.co/image/ab67616d0000b27389c9590c941cec56429f2456,1,10,273440,https://p.scdn.co/mp3-preview/d5dd26bafb5d56afa03e7948bea8c0a55f47974c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USAT29800470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,hip pop,r&b,urban contemporary",0.698,0.533,2.0,-6.246,1.0,0.0437,0.542,0.0,0.333,0.275,134.001,4.0,,Atlantic Records,"C © 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",6513 +6514,spotify:track:3Swc1delyFn1fwPDkInUhC,Feels Like I'm in Love,spotify:artist:5lD4NOWjS7yf69zIK46Chy,Kelly Marie,spotify:album:2Qg2gDjtzgtCVcokMRS7Wv,Feels Like I'm in Love,spotify:artist:5lD4NOWjS7yf69zIK46Chy,Kelly Marie,1980,https://i.scdn.co/image/ab67616d0000b2735fb74ba15895ca007a2b3bb5,1,1,256666,https://p.scdn.co/mp3-preview/e202dca73b6404fd1745c18afabbe6cb060148da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,TCACK1502584,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hi-nrg,0.716,0.758,0.0,-9.395,1.0,0.0271,0.0569,0.00515,0.353,0.857,120.774,4.0,,Coast To Coast Records,C (C) 1980 Originally Released © Coast To Coast Records WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.,6514 +6515,spotify:track:2ENx9vLmbagrc0yDY1j0BN,Uptown Girl - Radio Edit,spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,spotify:album:6DR9ciMOQiI7sSDp8iBYLw,World Of Our Own,spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,2001-11-08,https://i.scdn.co/image/ab67616d0000b273735b334a6e20d873a6d72792,1,4,186000,https://p.scdn.co/mp3-preview/28fe5fcafdda796254019b8c8a8234d67c368a18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL0100013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.649,0.9,6.0,-5.81,0.0,0.0311,0.0108,0.000395,0.523,0.893,128.995,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,6515 +6516,spotify:track:7JLzhh83KheYCCXBiKlIB0,World Where You Live,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:0Vw2BOifLhBx5mvnepOGVf,Crowded House,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1986,https://i.scdn.co/image/ab67616d0000b27376177060a17476581dbe276e,1,2,184640,https://p.scdn.co/mp3-preview/1180a9c02065bcf5a30fd867b7ed65d817ab3919?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA28600047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.572,0.455,2.0,-15.244,1.0,0.035,0.102,3.38e-06,0.172,0.905,110.422,4.0,,Capitol Records,"C (C) 1986 Capitol Records, Inc.. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Capitol Records, Inc., 1750 North Vine Street, Hollywood, CA 90028., P (P) 2005 Capitol Records, Inc.. All rights reserved.",6516 +6517,spotify:track:7GbvFJyrwCL8hb7pJARxYQ,Multiplication,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,spotify:album:7Hp8KEu2KpCKetEIBBDVk3,Sing & Swing with Bobby Darin,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,2007-10-30,https://i.scdn.co/image/ab67616d0000b273862db99c6256291d040fe219,1,37,135733,https://p.scdn.co/mp3-preview/7a80cb1471190c812b2203ad8e02e486e94d1ff5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USEE10180043,spotify:user:bradnumber1,2022-01-12T23:08:02Z,"adult standards,easy listening,lounge,rock-and-roll,rockabilly,vocal jazz",0.679,0.503,0.0,-15.89,1.0,0.0408,0.81,1.08e-05,0.0939,0.961,89.988,4.0,,Rhino Atlantic,"C © 2007 Rhino Entertainment Co., a Warner Music Group Company, P ℗ 2007 Rhino Entertainment Co., a Warner Music Group Company",6517 +6518,spotify:track:5thts3213xwSroRd11fv5A,People Everyday - Metamorphosis Mix,spotify:artist:5Va9LuEmaZxnbk1gMnjMD7,Arrested Development,spotify:album:4KqorQ6C7yDXvqgfgGrnvm,Greatest Hits,spotify:artist:5Va9LuEmaZxnbk1gMnjMD7,Arrested Development,2001-01-01,https://i.scdn.co/image/ab67616d0000b273c77d365e5d5732f06bec6117,1,1,296333,https://p.scdn.co/mp3-preview/f33bbd8f06c133896b63df63a87571b256e00947?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USCH39200012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,conscious hip hop,hip hop,old school atlanta hip hop",0.844,0.609,10.0,-10.675,1.0,0.217,0.0074,0.0,0.563,0.725,91.116,4.0,,EMI Gold,"C © 2001 EMI Records Ltd, P This Compilation ℗ 2001 EMI Records Ltd",6518 +6519,spotify:track:4OU01qPFPYzvDoGjcioXp8,All We Have,spotify:artist:49NJc5qDmCRsN3SsBAqEa4,Natalie Bassingthwaighte,spotify:album:2MuKsvSNZoD9kYXavhvOud,All We Have,spotify:artist:49NJc5qDmCRsN3SsBAqEa4,Natalie Bassingthwaighte,2011-10-03,https://i.scdn.co/image/ab67616d0000b273bf9904cf124d59b469b9efbb,1,1,196906,https://p.scdn.co/mp3-preview/ddb0dbb3c5ff966fd46e6efb49454c13e1a59cdf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUBM01100465,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.63,0.832,4.0,-5.164,0.0,0.0918,0.256,0.0121,0.535,0.582,130.105,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd,6519 +6520,spotify:track:4jQeRmhgPq8EnkaMXIzvDN,Cocaine,spotify:artist:06nsZ3qSOYZ2hPVIMcr1IN,J.J. Cale,spotify:album:7tRn18kRTddYfqE8GmS2cM,Gold (International Version),spotify:artist:06nsZ3qSOYZ2hPVIMcr1IN,J.J. Cale,2007-01-01,https://i.scdn.co/image/ab67616d0000b273c46036e1fbb8dd4b0658b624,1,17,171760,https://p.scdn.co/mp3-preview/a6f57740d3a93885bf601c6275e5de8bede595fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057690004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,blues rock,folk rock,roots rock,singer-songwriter",0.802,0.439,6.0,-12.521,1.0,0.0428,0.377,0.189,0.12,0.596,103.681,4.0,,Mercury,"C © 2007 Universal International Music B.V., P ℗ 2007 Universal International Music B.V.",6520 +6521,spotify:track:1hGy2eLcmC8eKx7qr1tOqx,Beautiful Girls,spotify:artist:6S0dmVVn4udvppDhZIWxCr,Sean Kingston,spotify:album:71clfVkkopYLrgweVj2cow,Beautiful Girls,spotify:artist:6S0dmVVn4udvppDhZIWxCr,Sean Kingston,2007-07-23,https://i.scdn.co/image/ab67616d0000b2736a45d20e414fbc456ecea553,1,1,225373,https://p.scdn.co/mp3-preview/65d63a1abee5ff1727c1cd5f717a9044d5c24ee7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USSM10701781,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop",0.762,0.661,1.0,-6.075,0.0,0.0687,0.15,0.0,0.256,0.769,130.009,4.0,,Epic,"P (P) 2007 Epic Records, a division of Sony Music Entertainment",6521 +6522,spotify:track:6UelLqGlWMcVH1E5c4H7lY,Watermelon Sugar,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,spotify:album:7xV2TzoaVc0ycW7fwBwAml,Fine Line,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,2019-12-13,https://i.scdn.co/image/ab67616d0000b27377fdcfda6535601aff081b6a,1,2,174000,https://p.scdn.co/mp3-preview/824cd58da2e9a15eeaaa6746becc09093547a09b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USSM11912587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.548,0.816,0.0,-4.209,1.0,0.0465,0.122,0.0,0.335,0.557,95.39,4.0,,Columbia,"P (P) 2019 Erskine Records Limited, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",6522 +6523,spotify:track:2kJwzbxV2ppxnQoYw4GLBZ,If the World Was Ending (feat. Julia Michaels),"spotify:artist:66W9LaWS0DPdL7Sz8iYGYe, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","JP Saxe, Julia Michaels",spotify:album:7BrlhEO8dHiNmU8A1Ep9RZ,If the World Was Ending (feat. Julia Michaels),"spotify:artist:66W9LaWS0DPdL7Sz8iYGYe, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","JP Saxe, Julia Michaels",2019-10-17,https://i.scdn.co/image/ab67616d0000b273dedbec8cca43642f06533476,1,1,208687,https://p.scdn.co/mp3-preview/605114bb62754e1fefee69f36deec3006b9a1a54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USQX91902708,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,canadian contemporary r&b,singer-songwriter pop,pop",0.464,0.473,1.0,-10.086,1.0,0.129,0.866,0.0,0.109,0.604,75.801,4.0,,Arista Records,"P (P) 2019 Arista Records, a division of Sony Music Entertainment",6523 +6524,spotify:track:6lOWoTqVnAWXchddtTH31W,Leave a Light On,spotify:artist:7z2avKuuiMAT4XZJFv8Rvh,Tom Walker,spotify:album:3pczowjToa5SYsI6Th4KO8,Leave a Light On,spotify:artist:7z2avKuuiMAT4XZJFv8Rvh,Tom Walker,2017-10-13,https://i.scdn.co/image/ab67616d0000b273bc1a09ac82f9aa9af62f2ca4,1,1,185863,https://p.scdn.co/mp3-preview/5e4b3859b14373a8077a9c60e2d5b741cc594f17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBARL1701655,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie anthem-folk,uk pop",0.586,0.624,5.0,-5.946,1.0,0.113,0.0153,1.78e-06,0.133,0.267,68.976,4.0,,Relentless Records,P (P) 2017 Relentless Records under exclusive licence to Sony Music Entertainment UK Limited,6524 +6525,spotify:track:2AvMA7gOOhQpDDUjBs89ap,Where Do You Go To (My Lovely),spotify:artist:3ExGDjEKejMhyciAgxPe0B,Peter Sarstedt,spotify:album:6dBpKIruDjddNXc5ps2eW3,Playlist: The Best Of Peter Sarstedt,spotify:artist:3ExGDjEKejMhyciAgxPe0B,Peter Sarstedt,2016-05-20,https://i.scdn.co/image/ab67616d0000b273be8f688f6b18a9e29ee1477b,1,2,284706,https://p.scdn.co/mp3-preview/79a3e1a2f633884a243d083720987da3bf3c01d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAYE6900097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british folk,0.408,0.436,0.0,-7.712,1.0,0.0345,0.805,1.72e-06,0.305,0.474,175.024,3.0,,Rhino,"C © 2016 Parlophone Records Limited, a Warner Music Group Company, P ℗ 2016 Parlophone Records Limited, a Warner Music Group Company",6525 +6526,spotify:track:6Y0gqGszwuiaa10jYPyYRV,Are 'Friends' Electric?,spotify:artist:6SXZyMIzYNNfZ3NFQc3vtv,Tubeway Army,spotify:album:6JDbYPwwj4MpAo81TkEyYv,Replicas (Remastered),spotify:artist:6SXZyMIzYNNfZ3NFQc3vtv,Tubeway Army,1979-06-22,https://i.scdn.co/image/ab67616d0000b273ed26ef1d65d71c994c27d7cd,1,2,325200,https://p.scdn.co/mp3-preview/29ed7fa9331b5ddceb8406532e91371d557b6ea9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAZP9700052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"early synthpop,new romantic,new wave,uk post-punk,zolo",0.423,0.743,5.0,-9.797,1.0,0.0379,0.0304,0.161,0.204,0.417,93.897,4.0,,Beggars Banquet,"C 1998 Beggars Banquet Records Ltd, P 1998 Beggars Banquet Records Ltd",6526 +6527,spotify:track:6QKqavEniWv3JRrRL7BSu5,Loose Ends (feat. G Flip),"spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt, spotify:artist:4SdIXLzfabqU61iK7SnKAU","Illy, G Flip",spotify:album:38KMqIlP56cp36qPOKYyQA,Loose Ends (feat. G Flip),spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt,Illy,2020-07-17,https://i.scdn.co/image/ab67616d0000b2735f9517b8f5dbea0352600899,1,1,236855,https://p.scdn.co/mp3-preview/56738b1cc4976719c29e357243fad69993eb0963?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUBM02000405,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian trap,australian alternative pop",0.704,0.666,11.0,-6.652,0.0,0.0735,0.0511,0.00238,0.258,0.552,90.015,4.0,,Sony Music Entertainment,P (P) 2020 Illy under exclusive license to Sony Music Entertainment Australia Pty Ltd,6527 +6528,spotify:track:5i9UKSttY3V7x9OnYZsMBX,A Moment Like This,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,spotify:album:7t1veDv7FWHYXskQEoU7dq,Spirit,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,2007,https://i.scdn.co/image/ab67616d0000b273e6ad6ae83f74c9e3eb3132ab,1,14,257293,https://p.scdn.co/mp3-preview/a12e61e08f5103f06c78bc248f92d4cfe145025e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBHMU0700097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,dance pop,pop,talent show",0.261,0.562,8.0,-3.667,1.0,0.0301,0.423,7.54e-06,0.131,0.167,70.543,4.0,,Syco Music UK,"P Track 14 (P) 2006; Tracks 1, 2, 4-13 (P) 2007; Tracks 3, 15-17 (P) 2008 Simco Limited exclusively licensed to Sony BMG Music Entertainment (UK) Limited",6528 +6529,spotify:track:11IIIe2IeEKR3IdV4s84Nm,Jungle Love,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,spotify:album:5hLazW5a3Ysgy3dncwGgUn,Greatest Hits 1974-78,spotify:artist:6QtGlUje9TIkLrgPZrESuk,Steve Miller Band,1978-01-01,https://i.scdn.co/image/ab67616d0000b273632b907273dba6a6062fb780,1,2,189293,https://p.scdn.co/mp3-preview/f5c0a06d2fcf457e2b3fa1098730efbf26b451ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USCA28700783,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.481,0.689,5.0,-11.629,1.0,0.214,0.167,0.00153,0.739,0.782,144.851,4.0,,CAPITOL CATALOG MKT (C92),"C © 1978 Capitol Records, LLC, P ℗ 1978 Capitol Records, LLC",6529 +6530,spotify:track:3tRv4ZYZimrL27flnjgeR6,Every You Every Me,spotify:artist:6RZUqkomCmb8zCRqc9eznB,Placebo,spotify:album:2cDDG5rnwEgjNL8Q0cO9Zd,Without You I'm Nothing,spotify:artist:6RZUqkomCmb8zCRqc9eznB,Placebo,1998-10-12,https://i.scdn.co/image/ab67616d0000b273ac68d5f575b62ee76a235396,1,8,213800,https://p.scdn.co/mp3-preview/3ee47405bf32f9c0d26524b43ee0334e55d75048?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBAAA9820460,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,britpop,permanent wave,rock",0.478,0.923,10.0,-7.547,1.0,0.0569,2.7e-05,0.719,0.325,0.165,133.134,4.0,,Elevator Lady Ltd,"C 2015 Elevator Lady Ltd, P 1998 Elevator Lady Ltd",6530 +6531,spotify:track:7t9Z7Mhhs6ugsUua0FwKSW,Janie's Got A Gun,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,spotify:album:2UBZIGJBrsnIsj0u39zdGX,Big Ones,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,1994-01-01,https://i.scdn.co/image/ab67616d0000b273dc3094a75a141c78ab184d95,1,6,329626,https://p.scdn.co/mp3-preview/e2b5f2d6bed9a4fb924a514a58a7f9aef8136997?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19925407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.631,0.763,5.0,-6.749,1.0,0.0269,0.00786,0.0133,0.207,0.387,115.121,4.0,,Universal Music Group,"C © 1994 Geffen Records Inc., P ℗ 1994 Geffen Records Inc.",6531 +6532,spotify:track:2Uu8IiLkLY0UXhCHka4Dlr,Doo Wop (That Thing),spotify:artist:2Mu5NfyYm8n5iTomuKAEHl,Ms. Lauryn Hill,spotify:album:2Uc0HAF0Cj0LAgyzYZX5e3,The Miseducation of Lauryn Hill,spotify:artist:2Mu5NfyYm8n5iTomuKAEHl,Ms. Lauryn Hill,1998-08-25,https://i.scdn.co/image/ab67616d0000b2739196fafd1d6160480d3df68a,1,5,320266,https://p.scdn.co/mp3-preview/feb1c988c1940d63a3af836f2965f04177dc24c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19802337,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative r&b,conscious hip hop,hip hop,neo soul,new jersey rap,r&b",0.535,0.505,2.0,-8.926,0.0,0.245,0.0393,0.0,0.0923,0.495,99.935,4.0,,Ruffhouse,P 1998 Ruffhouse Records LP WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.,6532 +6533,spotify:track:2dR5WkrpwylTuT3jRWNufa,Fly Me To The Moon,"spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0, spotify:artist:2jFZlvIea42ZvcCw4OeEdA","Frank Sinatra, Count Basie",spotify:album:7gmak9ZGm10y4PtZa9SBQn,Ultimate Sinatra,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,2015-04-17,https://i.scdn.co/image/ab67616d0000b273b19cb81319fbfd9ed54baeae,1,17,147146,https://p.scdn.co/mp3-preview/25baad56b868edd3e2d4f2e62f2bdde5db5d35a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRH10723029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,big band,harlem renaissance,jazz,jazz piano,swing,vocal jazz",0.67,0.365,0.0,-10.158,1.0,0.0566,0.525,0.0,0.0575,0.45,119.347,4.0,,FRANK SINATRA HYBRID,"C © 2015 Universal Music Enterprises, P This Compilation ℗ 2015 Universal Music Enterprises",6533 +6534,spotify:track:4hEl2wrneFEJbJ6SDYWd2f,Not Afraid,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:3PogVmhNucYNfyywZvTd7F,Recovery,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2010-06-18,https://i.scdn.co/image/ab67616d0000b273f20b0a39716f7958ddda8c16,1,7,248133,https://p.scdn.co/mp3-preview/d4d9aa2c6b44dda05115e4e983e741caf4efde40?cid=9950ac751e34487dbbe027c4fd7f8e99,True,4,USUM71011769,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.854,0.954,0.0,-1.185,0.0,0.246,0.543,0.0,0.201,0.67,114.609,5.0,,Universal Music Group,"C © 2010 Aftermath Records, P ℗ 2010 Aftermath Records",6534 +6535,spotify:track:2XWmbwp9FBAaFcSE9BLQzc,Help Me Make It Through The Night,spotify:artist:5kZDCAD5zLelf8NYHoRSHS,Sammi Smith,spotify:album:5E3rKn4oBda4nqbxBlBvQg,The Best Of Sammi Smith,spotify:artist:5kZDCAD5zLelf8NYHoRSHS,Sammi Smith,1996-01-01,https://i.scdn.co/image/ab67616d0000b2730b2fb64e21edc43ab50d38da,1,1,155533,https://p.scdn.co/mp3-preview/37edd7282470fb5e9445bae3af30d3b7bab48c77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,US3M59657401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,classic oklahoma country,nashville sound,outlaw country",0.559,0.35,8.0,-12.01,1.0,0.0245,0.605,0.000443,0.102,0.413,78.035,4.0,,Varese Sarabande,"C © 1996 Varese Sarabande Records, P This Compilation ℗ 1996 Varese Sarabande Records",6535 +6536,spotify:track:5DHuJrLpE0XYrfqAB76GDc,Orchard Road,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,spotify:album:4RCRnNfAuLvHefHdxSPx39,Have You Ever Been In Love,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,1975,https://i.scdn.co/image/ab67616d0000b273f69dba8334f318bc9ffbedc5,1,7,269720,https://p.scdn.co/mp3-preview/0e6b2cbd27b2b2b180c257d9be1db23b9a891b19?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUWA01000599,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.662,0.398,0.0,-13.284,1.0,0.0405,0.475,0.0,0.0299,0.347,126.798,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Ltd, P ℗ 1975 (Silverbird) Australia Pty Ltd under exclusive licence to Warner Music Australia Pty Ltd",6536 +6537,spotify:track:6TXnGAr6DLVYshIrMeP0lZ,Route 66,spotify:artist:293zczrfYafIItmnmM3coR,Chuck Berry,spotify:album:66vytUOJAN0XG0AomrREtH,New Juke Box Hits,spotify:artist:293zczrfYafIItmnmM3coR,Chuck Berry,1961-01-01,https://i.scdn.co/image/ab67616d0000b2739a8c09ffa36c708ce937f75a,1,8,171413,https://p.scdn.co/mp3-preview/8db1da4646f3f03af7f73dec58f5953ce3556f4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USMC10111229,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,blues rock,classic rock,rock,rock-and-roll,rockabilly,soul",0.686,0.692,10.0,-9.793,1.0,0.0419,0.902,0.000474,0.104,0.962,79.071,4.0,,Geffen,"C © 1961 Geffen Records, P ℗ 1961 Geffen Records",6537 +6538,spotify:track:1mg8vWNKP6LNu8lkkkBPmx,Evie Part 1 Let Your Hair Hang Down,spotify:artist:4tyua0wKtVDZVBVlRwyBRl,Stevie Wright,spotify:album:0uedtIeUQ0voLC6hfBwQTF,Rock Box,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-01-01,https://i.scdn.co/image/ab67616d0000b2732ae6710a8ebd3a627e8ac743,3,7,240413,https://p.scdn.co/mp3-preview/90bf3020d62fcb7ce73232d038e96600df837dae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07400019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.498,0.877,9.0,-7.416,1.0,0.105,0.0512,0.00336,0.204,0.663,89.296,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Universal Music Australia Pty Ltd., P ℗ 2009 Universal Music Australia Pty Ltd.",6538 +6539,spotify:track:0l4DTppOxy7NUaEcwXuOb6,Animal,spotify:artist:0RpddSzUHfncUWNJXKOsjy,Neon Trees,spotify:album:6oZ5iDw1LT25svEK0g5OqT,Habits (Spotify),spotify:artist:0RpddSzUHfncUWNJXKOsjy,Neon Trees,2010,https://i.scdn.co/image/ab67616d0000b2730f0039968cd918767d3f1488,1,3,212306,https://p.scdn.co/mp3-preview/282ba2881bc2f1f77f4ae2b11d8b5aa9c97242da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USUM71001801,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,neo mellow,pop rock,pov: indie",0.482,0.829,5.0,-5.576,1.0,0.0437,0.00034,0.0,0.378,0.739,147.99,4.0,,Mercury Records,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",6539 +6540,spotify:track:6vVgOdyL2TD9jMqXB296Io,Live And Let Die,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,spotify:album:6pLUd5MUqSi2rBKyUV7ICa,Pure McCartney,spotify:artist:4STHEaNw4mPZ2tzheohgXB,Paul McCartney,2016-06-10,https://i.scdn.co/image/ab67616d0000b273da5660c7e796622a878852de,1,23,193773,https://p.scdn.co/mp3-preview/fe177dd841706be8a8f6ea7a18649c2b649a8090?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBCCS1500158,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.432,0.513,7.0,-10.471,1.0,0.0623,0.272,0.00241,0.114,0.225,154.097,5.0,,Paul McCartney Catalog,"C © 2016 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2016 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",6540 +6541,spotify:track:3AhXZa8sUQht0UEdBJgpGc,Like a Rolling Stone,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,spotify:album:6YabPKtZAjxwyWbuO9p4ZD,Highway 61 Revisited,spotify:artist:74ASZWbe4lXaubB36ztrGX,Bob Dylan,1965-08-30,https://i.scdn.co/image/ab67616d0000b27341720ef0ae31e10d39e43ca2,1,1,369600,https://p.scdn.co/mp3-preview/d48c45e3194cfe07470c85e50ca7dc7440661caa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM19922509,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,rock,roots rock,singer-songwriter",0.482,0.721,0.0,-6.839,1.0,0.0321,0.731,0.0,0.189,0.557,95.263,4.0,,Columbia,P Originally Released 1965 Sony Music Entertainment Inc.,6541 +6542,spotify:track:4n5OffovRDKJG608FXl5yP,Hollywood Seven,spotify:artist:6H2LnEj5myKc4vVz0huuxW,Jon English,spotify:album:6dFooahujbUF42R0H6kRZY,English History,spotify:artist:6H2LnEj5myKc4vVz0huuxW,Jon English,1979-01-01,https://i.scdn.co/image/ab67616d0000b2732139eea45af00569df0573ba,1,6,293426,https://p.scdn.co/mp3-preview/c829c04676d0797bd079fedd7c1969ac71766372?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,AUAY21100714,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.328,0.404,4.0,-13.492,0.0,0.0465,0.037,0.00132,0.118,0.351,174.857,4.0,,Ambition Entertainment Pty Ltd,"C © 2011 Sound One Pty Limited, P ℗ 1979 Sound One Pty Limited",6542 +6543,spotify:track:1IMbmQCnl3h4m8NXqKee0g,Just A Little,spotify:artist:6htUPs3clIStnkvg5jimKZ,Liberty X,spotify:album:0MtOv630nV65kAilpk9a9F,Thinking It Over,spotify:artist:6htUPs3clIStnkvg5jimKZ,Liberty X,2002-01-01,https://i.scdn.co/image/ab67616d0000b27351619230afd902d2ad461a91,1,2,236133,https://p.scdn.co/mp3-preview/78ad7bb9ea679a79b386f6f20777053030e4cdc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBBLK0200083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,girl group,talent show",0.796,0.617,5.0,-6.198,0.0,0.0619,0.00824,0.0,0.0495,0.72,103.858,4.0,,UMC (Universal Music Catalogue),"C © 2002 V2 Music Limited, P ℗ 2002 V2 Music Limited",6543 +6544,spotify:track:5EzdThimrpt9yJ1GGH5KXv,Boys In Town,spotify:artist:5t06MTkDD3yr5LVs3YFLQC,Divinyls,spotify:album:1xggz8B9x1lEJUHb0QMEuX,Desperate,spotify:artist:5t06MTkDD3yr5LVs3YFLQC,Divinyls,1983-01-01,https://i.scdn.co/image/ab67616d0000b2731d5643ad40a8d8ec0e98b5d6,1,1,171826,https://p.scdn.co/mp3-preview/4f9458bb83fc3dab2939162181c514d16cf975df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCH38300009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new wave pop",0.487,0.698,1.0,-13.585,0.0,0.035,0.00451,0.000931,0.132,0.703,157.916,4.0,,Chrysalis\EMI Records (USA),"C © 1983 Capitol Records LLC, P ℗ 1983 Capitol Records LLC",6544 +6545,spotify:track:7sSqDlt9r1chzQEv6FPWKt,Ready for the Weekend,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,spotify:album:5Zcfw8EsPjQBJZhA0EbcyM,Ready For The Weekend,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2009-08-17,https://i.scdn.co/image/ab67616d0000b27300d6698dffdf81ce656dd26f,1,2,217133,https://p.scdn.co/mp3-preview/531526c81cd2957cb12d2cbdd0db07c0e87c38ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBARL0900397,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance",0.818,0.713,9.0,-4.813,0.0,0.0375,0.126,3.2e-05,0.0382,0.937,137.969,4.0,,Columbia,P (P) 2009 Sony Music Entertainment Limited except Track 13 ?Dance Wiv Me? P 2008 Dirtee Stank Recordings Limited under license to Sony Music Entertainment UK Limited,6545 +6546,spotify:track:0HPD5WQqrq7wPWR7P7Dw1i,TiK ToK,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:6fpLLJsDSSAlToEDW2jv4F,Animal (Expanded Edition),spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010-01-01,https://i.scdn.co/image/ab67616d0000b2737a6339d6ddfd579f77559b3c,1,2,199693,https://p.scdn.co/mp3-preview/ea95bec21bd6c4979cc91f5d5528b533d879905c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USRC10900433,spotify:user:bradnumber1,2021-12-01T04:23:05Z,"dance pop,pop",0.755,0.837,2.0,-2.718,0.0,0.142,0.0991,0.0,0.289,0.714,120.028,4.0,,RCA Records Label,"P (P) 2010 RCA Records, a division of Sony Music Entertainment",6546 +6547,spotify:track:6AcpiMeQ41vJnpZcCKpUCL,What Happened to Us (feat. Jay Sean),"spotify:artist:6rHWAH6F4mr2AViSxMV673, spotify:artist:4pADjHPWyrlAF0FA7joK2H","Jessica Mauboy, Jay Sean",spotify:album:7t6s6NWaLUEkRQEDqp8yNN,Get 'Em Girls,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2011-08-15,https://i.scdn.co/image/ab67616d0000b2736bb2da94c1f0c017c022ad7f,1,10,200853,https://p.scdn.co/mp3-preview/91fd00dd77da5d6d904bbc574beef6b5e854eb60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUBM01000383,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show,dance pop,pop,pop rap,post-teen pop",0.671,0.818,8.0,-3.977,1.0,0.0699,0.218,0.0,0.0995,0.524,154.083,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,6547 +6548,spotify:track:4ZfQwNx3FlCN07cnUvekh3,Ain't That A Shame,spotify:artist:09C0xjtosNAIXP36wTnWxd,Fats Domino,spotify:album:3vte37u7rIAmMZJwNyJSjf,Fats Domino Swings,spotify:artist:09C0xjtosNAIXP36wTnWxd,Fats Domino,1959-01-01,https://i.scdn.co/image/ab67616d0000b27374e3823e9643fabc830851dd,1,10,152200,https://p.scdn.co/mp3-preview/4ecb20efc675ee7ad6d816a490c03b2c5f05fe67?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USEM38700044,spotify:user:bradnumber1,2024-01-03T20:20:51Z,"louisiana blues,new orleans blues,piano blues,rock-and-roll,rockabilly",0.486,0.501,4.0,-8.57,1.0,0.0326,0.767,7.6e-05,0.0679,0.942,122.894,4.0,,CAPITOL CATALOG MKT (C92),"C © 1959 Capitol Records, LLC, P ℗ 1959 Capitol Records, LLC",6548 +6549,spotify:track:0NSWNgDHyH3WDj7fEwDvvS,Questions I Can't Answer,spotify:artist:52HYXSFgDARYgems1vx0sV,Heinz,spotify:album:25secV9m5U0rIizq2t9KNS,"The Alchemist of Pop Joe Meek, Vol. 2",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-01-16,https://i.scdn.co/image/ab67616d0000b27301cefe3d9452469e4ce0766e,1,15,142076,https://p.scdn.co/mp3-preview/0259b2f833f6f1094832d563bf4ee4b6c695f01a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USESK1312924,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.604,0.74,1.0,-5.708,1.0,0.0448,0.078,0.0,0.0557,0.962,127.799,4.0,,Classic Records,C (C) 2013 Classic Records,6549 +6550,spotify:track:7ndelVxF4Y8K6xg8WXUVMV,I Alone,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,spotify:album:3XbMeJ9zrtH806HuHWkZF2,Throwing Copper,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,1994-01-01,https://i.scdn.co/image/ab67616d0000b273cf4c914bea5aba3e3066595a,1,3,231688,https://p.scdn.co/mp3-preview/f4f9f48a80914d79aa1d4fda9035b1335dc83aa7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USRR29442178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,pop rock,post-grunge",0.411,0.826,6.0,-7.285,1.0,0.0453,0.00228,0.0042,0.357,0.0866,90.67,4.0,,Radioactive,"C © 1994 Radioactive Records J.V., P ℗ 1994 Radioactive Records J.V.",6550 +6551,spotify:track:3oEHQmhvFLiE7ZYES0ulzv,"My Heart Will Go On - Love Theme from ""Titanic""",spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:3SwxRkHbAarf3wWlInRTzA,Let's Talk About Love,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1997-10-24,https://i.scdn.co/image/ab67616d0000b273a626e7f7249adfbf2a839954,1,12,280000,https://p.scdn.co/mp3-preview/68c13229ec9b1b4a5ea580e801061fd7791857c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,CAC229700120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.428,0.276,4.0,-11.729,1.0,0.0312,0.732,5.33e-06,0.117,0.0382,99.195,1.0,,Columbia,P 1997 Sony Music Entertainment (Canada) Inc.,6551 +6552,spotify:track:3nJjIYchBNkYm7B8XfJf5N,Suffocate - Superclean,spotify:artist:7G6hXrjGpi6I7waNl4wxAk,J. Holiday,spotify:album:2taQZHFnaDwZPfBhLMAG0L,Back Of My Lac',spotify:artist:7G6hXrjGpi6I7waNl4wxAk,J. Holiday,2007-01-01,https://i.scdn.co/image/ab67616d0000b273aa365908e5b4c1f1e9b40c92,1,9,220053,https://p.scdn.co/mp3-preview/8a18935f8df85ee8ee679dc0808efc72d28d4929?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USCA20704910,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,southern hip hop,urban contemporary",0.458,0.445,9.0,-8.391,0.0,0.361,0.64,0.0,0.118,0.447,82.82,5.0,,Capitol Records,"C © 2007 Music Line Group, LLC,, P ℗ 2007 Music Line Group, LLC,",6552 +6553,spotify:track:4x3381mYJqptPqT6OKUfmu,Dare You To Move,spotify:artist:6S58b0fr8TkWrEHOH4tRVu,Switchfoot,spotify:album:4rpXUpnO39yG7ETyugzzIs,Learning To Breathe,spotify:artist:6S58b0fr8TkWrEHOH4tRVu,Switchfoot,2000-01-01,https://i.scdn.co/image/ab67616d0000b2730f6618cd5d9efa9b71cfa688,1,1,247893,https://p.scdn.co/mp3-preview/2832c74f57370999044239bfd3721a230bd6b541?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSP30013461,spotify:user:bradnumber1,2021-11-17T22:20:34Z,"ccm,christian alternative rock,christian music",0.426,0.881,4.0,-4.526,1.0,0.0404,0.00573,0.0693,0.389,0.259,139.986,4.0,,Rethink,"C © 2000 re:think, P ℗ 2000 re:think",6553 +6554,spotify:track:6XzWrZIxG83Cs6bM5BSMfr,Dancing In The Storm,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,spotify:album:1r2WOjK9q9XAakM8mNmj8k,The Best Things,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,2013-10-18,https://i.scdn.co/image/ab67616d0000b2735befefcd248619aaaa07085c,1,5,251253,https://p.scdn.co/mp3-preview/9397b5e11ce302c5731caab933d787476cc0af2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00700224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.5,0.836,7.0,-5.575,1.0,0.0328,0.0214,0.0,0.776,0.503,115.998,4.0,,Bloodlines,"C 2013 Bloodlines, P 2013 Bloodlines",6554 +6555,spotify:track:0D8ZpOXVjapLXrjz5VfZSD,Pray,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:2m1joW0Amm4HyihnB2RfZh,Pray,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2017-10-06,https://i.scdn.co/image/ab67616d0000b273a9bb0c310bd8ec96dd848d9a,1,1,221595,https://p.scdn.co/mp3-preview/ddce2f6ac47c0bad7a065462b6c80d03b3b0c992?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBUM71705145,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.381,0.379,4.0,-9.36,0.0,0.0501,0.292,2.79e-06,0.0864,0.153,175.067,3.0,,Universal Music Group,"C © 2017 Universal Music Operations Limited, P A Capitol Records UK release; ℗ 2017 Universal Music Operations Limited",6555 +6556,spotify:track:2iKqwKmrqwSkuqCJHp6uqO,I Wanna Sex You Up,spotify:artist:1QtIfAa6y7w2JhxYJhYeUG,Color Me Badd,spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,16,246360,https://p.scdn.co/mp3-preview/4bafc63aa8d4c8f9699cc794d67a531fe4fb31b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRE11200469,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing",0.535,0.703,2.0,-5.438,1.0,0.101,0.00398,4.67e-06,0.0637,0.472,201.856,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",6556 +6557,spotify:track:19hh7DkfRBrpRGYfKlw7jb,Valentine,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:2D0Hi3Jj6RFnpWDcSa0Otu,Youngblood (Deluxe),spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2018-06-15,https://i.scdn.co/image/ab67616d0000b27341aa6776dc15fbd71a2b4557,1,4,196628,https://p.scdn.co/mp3-preview/97cd6fb0f3d4818c95d81a9632bc01f9abc7259e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBUM71800365,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.744,0.767,1.0,-2.907,0.0,0.0408,0.0601,1.05e-05,0.0859,0.767,93.999,4.0,,Capitol,"C © 2018 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited, P ℗ 2018 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited",6557 +6558,spotify:track:4T6HLdP6OcAtqC6tGnQelG,Everything,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:3h4pyWRJIB9ZyRKXChbX22,Call Me Irresponsible,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2007-04-27,https://i.scdn.co/image/ab67616d0000b2732ceedc8c879a1f6784fbeef5,1,9,212373,https://p.scdn.co/mp3-preview/985e60e3a0a7603aa55bd2d4a7190553000217ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USRE10700317,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.686,0.688,6.0,-4.981,0.0,0.0254,0.39,1.03e-06,0.0924,0.493,123.125,4.0,,143/Reprise,"C © 2007 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S., P ℗ 2007 Reprise Records for the U.S. and WEA International Inc. for the world outside the U.S.",6558 +6559,spotify:track:7LiuJKn4UKg5Gn2UKGSOep,Spoonman,spotify:artist:5xUf6j4upBrXZPg6AI4MRK,Soundgarden,spotify:album:0hMEh0PFv93ziVTc9ADXwX,Telephantasm (Deluxe Edition),spotify:artist:5xUf6j4upBrXZPg6AI4MRK,Soundgarden,2010-09-28,https://i.scdn.co/image/ab67616d0000b2739e7712d6d9dbd759f8aee940,2,5,246653,https://p.scdn.co/mp3-preview/d037b74dec634ce982dc9020925c44180102a067?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19400008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,nu metal,rock",0.466,0.82,7.0,-8.367,1.0,0.0294,2.32e-05,0.45,0.234,0.891,91.702,4.0,,Universal Music Group,"C © 2010 A&M Records, P ℗ 2010 A&M Records",6559 +6560,spotify:track:7GgUY1TK5etQrJqCVuYWMW,I Hate This Part,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,spotify:album:5Wt2zl05S5XoGDEBxWkFdo,Doll Domination,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2008-01-01,https://i.scdn.co/image/ab67616d0000b273a15554a1dcc31f5d4a2665a8,1,4,218386,https://p.scdn.co/mp3-preview/1c07139efde25e903e81195be26db1fcfdee6060?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70832599,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.756,0.619,5.0,-4.37,1.0,0.0313,0.0825,0.0,0.262,0.521,111.573,4.0,,Pussycat Dolls LP2 / Timbaland,"C © 2008 Pussycat Dolls, LLC, P ℗ 2008 Pussycat Dolls, LLC",6560 +6561,spotify:track:78fTO9KOXmWLkm1r6Ko2Uq,Infinity,spotify:artist:0GWezHEUuBQvQM31OaWlS7,Guru Josh,spotify:album:0PuT9tt0GtnAYA8CaZ5RMW,Infinity,spotify:artist:0GWezHEUuBQvQM31OaWlS7,Guru Josh,1990-10-17,https://i.scdn.co/image/ab67616d0000b273c24c489de3040f32d80f21f6,1,7,241506,https://p.scdn.co/mp3-preview/b5c0ea1eae585a2e1101eeb92cc1e00cae78b850?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBARL9000068,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.609,0.762,7.0,-13.992,0.0,0.0416,0.00504,0.877,0.183,0.228,125.117,4.0,,RCA Records Label,P (P) 1990 BMG UK & Ireland Ltd.,6561 +6562,spotify:track:5s5t0OFg9lIlBFaCI14K1i,She Will Be Loved,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:7gGcnUEEQgIMV2JRwVQbrF,Songs About Jane,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2002-06-25,https://i.scdn.co/image/ab67616d0000b273fb869ab46e93e7069c67134f,1,4,257133,https://p.scdn.co/mp3-preview/b74550324d855c9b03d2fd66e7fa6c6f02bd5699?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJAY0300082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.524,0.711,0.0,-5.494,0.0,0.0405,0.0567,0.0,0.134,0.539,203.867,4.0,,Universal Music Group,"C © 2007 A&M/Octone Records, P ℗ 2007 A&M/Octone Records",6562 +6563,spotify:track:7EdM7TwvlDqwQLUs6DBJkW,#Beautiful,"spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:360IAlyVv4PCEVjgyMZrxK","Mariah Carey, Miguel",spotify:album:71gXuMqf36aLDWLwk1YTjR,#Beautiful,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2013-07-18,https://i.scdn.co/image/ab67616d0000b273223b37eeca604664b80cb457,1,1,202640,https://p.scdn.co/mp3-preview/aec4d3c011b2986b59b7220bf09bd5b1ddecc0ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71305567,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,r&b,urban contemporary",0.67,0.727,4.0,-7.385,1.0,0.0385,0.495,2.45e-05,0.204,0.446,106.978,4.0,,Universal Music Group,"C © 2013 The Island Def Jam Music Group and Mariah Carey, P ℗ 2013 The Island Def Jam Music Group and Mariah Carey",6563 +6564,spotify:track:7hQJA50XrCWABAu5v6QZ4i,Don't Stop Me Now - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:21HMAUrbbYSj9NiPPlGumy,Jazz (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1978-11-10,https://i.scdn.co/image/ab67616d0000b273008b06ec71019afd70153889,1,12,209413,https://p.scdn.co/mp3-preview/857030fc088d0d4f72f7795b260bb052d20f7146?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBUM71029610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.563,0.865,5.0,-5.277,1.0,0.16,0.0472,0.000191,0.77,0.601,156.271,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",6564 +6565,spotify:track:3VI3idv3XIxSKctGTGQrHg,Starstruck (with Kylie Minogue),"spotify:artist:5vBSrE1xujD2FXYRarbAXc, spotify:artist:4RVnAU35WRWra6OZ3CbbMA","Olly Alexander (Years & Years), Kylie Minogue",spotify:album:0vwNuZMbYHyk6tf7JoFz03,Starstruck (with Kylie Minogue),"spotify:artist:5vBSrE1xujD2FXYRarbAXc, spotify:artist:4RVnAU35WRWra6OZ3CbbMA","Olly Alexander (Years & Years), Kylie Minogue",2021-05-21,https://i.scdn.co/image/ab67616d0000b27317cfcf6f13ab34b2514654a2,1,1,206039,https://p.scdn.co/mp3-preview/d8505e97bf5fbbebad003f53c087ad4f3638aac2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBUM72102942,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gauze pop,pop,pop dance,uk pop,australian dance,australian pop,dance pop,eurodance,new wave pop",0.613,0.867,9.0,-2.089,0.0,0.0817,0.0364,0.0,0.318,0.66,113.971,4.0,,Polydor Records,"C © 2021 Universal Music Operations Limited, P ℗ 2021 Universal Music Operations Limited",6565 +6566,spotify:track:5JPWmf7ZcJTSKOzzyGyPUI,Closer,spotify:artist:3bUwxJgNakzYKkqAVgZLlh,Travis,spotify:album:6jlRy9R2ugFrUiMOf494hJ,The Boy With No Name,spotify:artist:3bUwxJgNakzYKkqAVgZLlh,Travis,2007-05-07,https://i.scdn.co/image/ab67616d0000b27301acfce125b937a2196e1c17,1,3,240626,https://p.scdn.co/mp3-preview/5f0674a0248e6da7874803662050b41445c3c103?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBPF0701578,spotify:user:bradnumber1,2021-08-08T09:26:31Z,britpop,0.538,0.581,5.0,-7.816,1.0,0.0235,0.204,5.26e-05,0.13,0.269,108.108,4.0,,Independiente,"C 2007 Independiente, P 2007 Independiente",6566 +6567,spotify:track:18asVg1bbkhE0ceWdaypTp,King Of The Mountain - Remastered,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:6uNRClJFgtpoSaAS6jUeeV,Essential Oils,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,2012-11-02,https://i.scdn.co/image/ab67616d0000b27356ab0253febac2d352479f25,2,8,229560,https://p.scdn.co/mp3-preview/f7ec373125cd8d7d8834ea70453e038c555c557d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUSM09700194,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.455,0.948,9.0,-3.41,1.0,0.0692,0.0307,0.0,0.174,0.76,73.916,4.0,,Midnight Oil,P This compilation (P) 2012 Midnight Oils Ents Pty Ltd. under exclusive license to Sony Music Entertainment Australia Pty Ltd.,6567 +6568,spotify:track:6sJcSe0vjMLcAEhlionL3P,Not Pretty Enough,spotify:artist:6uATIQFyydDXPc2RlLzcUE,Kasey Chambers,spotify:album:0bc4iRe7Wh30sDfUz8aiw7,Barricades & Brickwalls,spotify:artist:6uATIQFyydDXPc2RlLzcUE,Kasey Chambers,2001-01-01,https://i.scdn.co/image/ab67616d0000b2736c1f72455827fcad7508fdf4,1,2,199986,https://p.scdn.co/mp3-preview/18c4b1c8564c1014968f0b959509666a2c95c424?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM00100040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian americana,australian country,australian rock",0.617,0.613,11.0,-5.431,1.0,0.0337,0.56,0.0,0.13,0.312,119.838,4.0,,EMI Catalogue,"C © 2001 EMI Recorded Music Australia Pty Ltd., P ℗ 2001 EMI Recorded Music Australia Pty Ltd.",6568 +6569,spotify:track:5PUvinSo4MNqW7vmomGRS7,Blurred Lines,"spotify:artist:0ZrpamOxcZybMHGg1AYtHP, spotify:artist:4OBJLual30L7gRl5UkeRcT, spotify:artist:2RdwBSPQiwcmiDo9kixcl8","Robin Thicke, T.I., Pharrell Williams",spotify:album:2qVN3yVtkrPT9YL7djTNwt,Blurred Lines,spotify:artist:0ZrpamOxcZybMHGg1AYtHP,Robin Thicke,2013-01-01,https://i.scdn.co/image/ab67616d0000b2733d74cd7e75846d10c68afd52,1,1,263053,https://p.scdn.co/mp3-preview/8b2afda1996ee003b47d1485baf0eee415a37e44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USUM71302150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo soul,pop rap,r&b,urban contemporary,atl hip hop,dirty south rap,gangster rap,hip hop,pop rap,rap,southern hip hop,trap,dance pop,pop",0.861,0.504,7.0,-7.707,1.0,0.0489,0.00412,1.78e-05,0.0783,0.881,120.0,4.0,,The Neptunes,"C © 2013 Star Trak, LLC, P ℗ 2013 Star Trak, LLC",6569 +6570,spotify:track:4kmYgW4oZqs13fkBJw9ghj,A Simple Life,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4Zm7KcV47uD0sHageJyq2h,One Voice,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,2003-10-20,https://i.scdn.co/image/ab67616d0000b2733a1db30857beb481aa6e5345,1,12,232760,https://p.scdn.co/mp3-preview/cf7f555613b27ef9e69ca7a89d62ad8d5a3c5d45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUBM09641002,spotify:user:bradnumber1,2021-11-20T11:22:18Z,"australian pop,australian rock",0.687,0.516,2.0,-10.814,1.0,0.0242,0.674,4.85e-06,0.127,0.572,93.96,4.0,,BMG Music,P (P) 2003 BMG Australia Limited,6570 +6571,spotify:track:2nbClS09zsIAqNkshg6jnp,Closer,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:1nv3KEXZPmcwOXMoLTs1vn,Year Of The Gentleman,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2008-01-01,https://i.scdn.co/image/ab67616d0000b273959de80fd6bb69f3609fa31a,1,1,234360,https://p.scdn.co/mp3-preview/6039138e242283f255978de62e01dabeda2ab6ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70809378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.709,0.745,4.0,-6.437,0.0,0.0738,0.0225,5.2e-05,0.154,0.576,126.027,4.0,,Universal Music Group,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",6571 +6572,spotify:track:6i0V12jOa3mr6uu4WYhUBr,Heathens,spotify:artist:3YQKmKGau1PzlVlkL1iodx,Twenty One Pilots,spotify:album:3J8W9AOjQhnBLCX33m3atT,Heathens,spotify:artist:3YQKmKGau1PzlVlkL1iodx,Twenty One Pilots,2016-06-16,https://i.scdn.co/image/ab67616d0000b2732ca3ba8f334ca5a5f0312efb,1,1,195920,https://p.scdn.co/mp3-preview/31b8d72a9480d06d28846b843539b8b5e58696db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USAT21601930,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,pov: indie,rock",0.732,0.396,4.0,-9.348,0.0,0.0286,0.0841,3.58e-05,0.105,0.548,90.024,4.0,,Atlantic Records,"C © 2016 Atlantic Recording Corporation & Warner Bros. Entertainment Inc., P ℗ 2016 Atlantic Recording Corporation & Warner Bros. Entertainment Inc.",6572 +6573,spotify:track:62Yu8QL1g9pdbvN4XL9Rah,Blowin' in the Wind,spotify:artist:6yrBBtqX2gKCHCrZOYBDrB,"Peter\, Paul and Mary",spotify:album:5XresJcJBgYkVQE9PATjli,In the Wind,spotify:artist:6yrBBtqX2gKCHCrZOYBDrB,"Peter\, Paul and Mary",1963,https://i.scdn.co/image/ab67616d0000b2739239355346a8804ea5b362e3,1,12,177360,https://p.scdn.co/mp3-preview/0a6c0ac3e7d3db7ad93ba9fd2c8b05e4e69480e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USWB10001232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"american folk revival,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.381,0.0848,5.0,-17.77,1.0,0.032,0.834,0.0,0.112,0.557,155.036,4.0,,Warner Records,"C © 1963 Warner Records Inc., P ℗ 1963 Warner Records Inc.",6573 +6574,spotify:track:3XY0oIVf2roUFIwkzjBgwt,I Only Wanna Be with You,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,spotify:album:3YrxreFcscK7Lkb8a6Nc7Y,Dedication,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,1976,https://i.scdn.co/image/ab67616d0000b273b233340ebf97b095ad634003,1,11,216906,https://p.scdn.co/mp3-preview/32971865734459d71c9d0e9c20e51753fba5f3be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USAR17600112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.594,0.908,2.0,-9.865,1.0,0.0534,0.35,2.83e-05,0.547,0.951,131.83,4.0,,Arista,P (P) 2004 BMG UK & Ireland Ltd.,6574 +6575,spotify:track:7D3woUaa3J2wCsVy3pSbXH,Before the Worst,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:1r5J0N6Ep181K0i8YuTYgO,The Script,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2008-07-14,https://i.scdn.co/image/ab67616d0000b273f33a9f529c12f79b116eb218,1,2,203066,https://p.scdn.co/mp3-preview/caf18a29b6c669a7d41c5455cb5876c19a8a8bd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBARL0800428,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.602,0.919,8.0,-4.204,0.0,0.0427,0.122,0.0,0.692,0.393,115.077,4.0,,Epic/Phonogenic,P (P) All 2008 except Track 8 2009 Sony Music Entertainment UK Limited,6575 +6576,spotify:track:6hlsxc5ZwhWXy3XFTvCJWO,Fairground,spotify:artist:1fa0cOhromAZdq2xRA4vv8,Simply Red,spotify:album:0Cq64whZuWP0ZV5nKKK1Or,Big Love Greatest Hits Edition 30th Anniversary,spotify:artist:1fa0cOhromAZdq2xRA4vv8,Simply Red,2015-11-13,https://i.scdn.co/image/ab67616d0000b273ca1e1ce24b9e8b4459e7b709,1,29,332413,https://p.scdn.co/mp3-preview/4b1cec902e72cca1dc797ae5bf236dd1e6b08428?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHS1300545,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,new romantic,new wave,new wave pop,soft rock,sophisti-pop",0.695,0.832,6.0,-5.125,1.0,0.0428,0.222,0.0687,0.155,0.653,122.792,4.0,,East West Records,"C 2015 Simplyred.com Limited under exclusive license to East West Records, a division of Warner Music UK Limited., P 2015 Simplyred.com Limited under exclusive license to East West Records, a division of Warner Music UK Limited.",6576 +6577,spotify:track:0iA3xXSkSCiJywKyo1UKjQ,Louie Louie,spotify:artist:2iIn8H3l2NNBNHFpYKWbfo,The Kingsmen,spotify:album:2SMBIc9VqCmLvWAd9srlSx,The Best of The Kingsmen,spotify:artist:2iIn8H3l2NNBNHFpYKWbfo,The Kingsmen,2006-01-31,https://i.scdn.co/image/ab67616d0000b27348e88654b690107f44596b17,1,1,165381,https://p.scdn.co/mp3-preview/3ce659cb6a6a8e01a6c66c61d0e8286cdac37ac4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USA370544298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic garage rock,0.623,0.709,1.0,-9.818,0.0,0.0636,0.102,0.0,0.0967,0.948,122.394,4.0,,"Kingsmen Int'l Licensing, Inc.","C 2005 Kingsmen Int'l Licensing, Inc.",6577 +6578,spotify:track:0nqQwPNem175DbPnA3yCmJ,Hooked On Classics (Parts 1 & 2),spotify:artist:4hzW2Vlxpq0gQRA6Dbqihj,Royal Philharmonic Orchestra conducted by Louis Clark,spotify:album:3qekoKlMkQosjRIkXXa6mQ,Hooked On Classics Collection,spotify:artist:4hzW2Vlxpq0gQRA6Dbqihj,Royal Philharmonic Orchestra conducted by Louis Clark,2008-06-18,https://i.scdn.co/image/ab67616d0000b27327f73e733b2c289ab8e52339,1,1,306133,https://p.scdn.co/mp3-preview/93816b4b2251a34cee6d557227872db74e008494?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USDEI8100881,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.738,0.455,2.0,-15.644,1.0,0.0514,0.0522,0.773,0.0727,0.607,130.399,4.0,,K-Tel,,6578 +6579,spotify:track:0xpEgKosAcAsNHbqOq5bo7,What You've Done to Me,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,spotify:album:65jRYUc4y0Qy1QzlHL31TI,Samantha Jade,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,2012-12-07,https://i.scdn.co/image/ab67616d0000b273935f15addff0d9022a47fde4,1,1,212960,https://p.scdn.co/mp3-preview/947838798d5bbd632d08e04e6da164f81985c246?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUBM01200424,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.646,0.757,2.0,-3.927,1.0,0.0326,0.00389,1.17e-06,0.11,0.375,127.541,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,6579 +6580,spotify:track:6MdqqkQ8sSC0WB4i8PyRuQ,No Diggity,"spotify:artist:2P3cjUru4H3fhSXXNxE9kA, spotify:artist:6DPYiyq5kWVQS4RGwxzPC7, spotify:artist:0VbIlorLz3I5SEtIsc5vAr","Blackstreet, Dr. Dre, Queen Pen",spotify:album:2zGZLQiFl9UubtrVmtIkbi,Another Level,spotify:artist:2P3cjUru4H3fhSXXNxE9kA,Blackstreet,1996-09-09,https://i.scdn.co/image/ab67616d0000b27303ca37157b9ceefbe8fe225b,1,3,304600,https://p.scdn.co/mp3-preview/35f670ec0a021fff5617f5d558bdfe8667d557ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USIR19600978,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary,g funk,gangster rap,hip hop,rap,west coast rap,hip pop,lgbtq+ hip hop",0.867,0.646,1.0,-4.674,0.0,0.288,0.303,0.0,0.279,0.67,88.634,4.0,,Interscope,"C © 1996 Interscope Records, P ℗ 1996 Interscope Records",6580 +6581,spotify:track:1hKdDCpiI9mqz1jVHRKG0E,Enter Sandman,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:37lWyRxkf3wQHCOlXM5WfX,Metallica,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1991-08-12,https://i.scdn.co/image/ab67616d0000b273f2f3cd931f707244804807c1,1,1,331573,https://p.scdn.co/mp3-preview/6e1016d38d99a88b37d7546d785f3fede2691eb2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USEE10001992,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.579,0.824,6.0,-8.71,0.0,0.03,0.00206,0.00903,0.059,0.635,123.331,4.0,,Blackened Recordings,C 1991 Blackened Recordings,6581 +6582,spotify:track:3bDGwl0X3EjQmIyFD1uif5,Roar,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:4lFDt4sVpCni9DRHRmDjgG,PRISM (Deluxe),spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2013-01-01,https://i.scdn.co/image/ab67616d0000b273078cfcd17022e7fac7f59a1d,1,1,223546,https://p.scdn.co/mp3-preview/d72636d23beb0e3c283ec8150b8f50f9b5b0d8a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUM71308669,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.56,0.756,7.0,-4.817,0.0,0.0415,0.00635,1.29e-05,0.55,0.404,179.771,4.0,,Universal Music Group,"C © 2013 Capitol Records, LLC, P ℗ 2013 Capitol Records, LLC",6582 +6583,spotify:track:7Jm0LaTsjGTU19ESsPhQZX,She's My Winona,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,spotify:album:6LMC7ZuVNDUQ0tHpGKdd9K,Folie à Deux,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2008-01-01,https://i.scdn.co/image/ab67616d0000b2739d0807e52789a2715a0419bc,1,3,231493,https://p.scdn.co/mp3-preview/ec7c9f6e89dddf9fbf0ad1434cc90bad9443bb66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USUM70840368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop,rock",0.579,0.963,6.0,-4.443,0.0,0.0762,0.000772,0.00103,0.495,0.613,136.061,4.0,,Island Records,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",6583 +6584,spotify:track:6BPDPcnbDMDf58srVzbfX9,Viva Forever,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:3sr6lAuO3nmB1u8ZuQgpiX,Spiceworld,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,1997-01-01,https://i.scdn.co/image/ab67616d0000b273f660420bcef3b16b4c7e5f2b,1,9,310666,https://p.scdn.co/mp3-preview/09d417830737c6edaca2f75a46b5f51d751d48ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBAAA9710060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.472,0.699,6.0,-8.133,1.0,0.0348,0.0637,0.276,0.136,0.21,168.814,4.0,,Virgin Records,"C © 1997 Virgin Records Limited, P ℗ 1997 Virgin Records Limited",6584 +6585,spotify:track:7aliOjqVEBd3ZZ8NMkuifd,Shake It Out,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,spotify:album:3gmm8Sd93oyjTWug7Ci0Fd,Ceremonials,spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2011,https://i.scdn.co/image/ab67616d0000b273acee936d01b3fee1b9a8d150,1,2,277637,https://p.scdn.co/mp3-preview/04003bb778ddf8d2632d28c2a8cebb9fa8128e81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71107355,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop",0.52,0.791,10.0,-4.247,1.0,0.0378,0.0104,0.0,0.106,0.19,107.487,4.0,,Universal Music Group,"C © 2012 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2012 Universal Island Records, a division of Universal Music Operations Limited",6585 +6586,spotify:track:7LxnwMFmVDhTJr9XRLCylg,I Only Want to Be with You,spotify:artist:4tHCrc4lQw3tYsbN8G9OW7,The Tourists,spotify:album:3TYS9DPC8zo44UCO3RdGwD,Greatest Hits,spotify:artist:4tHCrc4lQw3tYsbN8G9OW7,The Tourists,1997-09-29,https://i.scdn.co/image/ab67616d0000b273d9e8bd0c2a94f5fc08d2ce4b,1,2,144026,https://p.scdn.co/mp3-preview/1635426da84203108a012e2a32c0c4840994523f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBARL7900011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.574,0.633,5.0,-13.465,1.0,0.0353,0.14,0.0,0.145,0.939,129.564,4.0,,RCA Camden,P (P) 1997 BMG Entertainment International UK & Ireland Ltd.,6586 +6587,spotify:track:2XdixZW9Bcfx5fDAgJHhpO,Boom Boom (Let's Go Back to My Room) - Rerecorded,spotify:artist:5T5nmu5zNxNJHGdWMfcUkx,Paul Lekakis,spotify:album:1o8DpkIqcQ9KcN5Wkz8yLz,Boom Boom (Let's Go Back to My Room) [UK Chart Top 100 - No. 60],spotify:artist:5T5nmu5zNxNJHGdWMfcUkx,Paul Lekakis,2010,https://i.scdn.co/image/ab67616d0000b2736a7ef776fa6646e299148be2,1,1,281420,https://p.scdn.co/mp3-preview/06a22a82acb57c845599b3513e66fe989fe69ff3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USRVF1401189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hi-nrg,0.773,0.958,11.0,-4.645,0.0,0.0329,0.16,8.28e-05,0.0737,0.979,130.014,4.0,,Music Manager,"C 2020 Music Manager, P 2010 The Music Company, Ltd., under license to Music Manager",6587 +6588,spotify:track:7ph9KLEqfHQrft1veyukXy,Because They’re Young,spotify:artist:1I5Cu7bqjkRg85idwYsD91,Duane Eddy,spotify:album:0mvf51wLOb54DvwStywQHl,Twangy Guitar,spotify:artist:1I5Cu7bqjkRg85idwYsD91,Duane Eddy,2016-11-01,https://i.scdn.co/image/ab67616d0000b2730a6ad02fccafc07a5d5f37cb,1,1,124506,https://p.scdn.co/mp3-preview/c9b4f73fa63c6dab5abc0bcc5a15e1a25e68035d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUV401434464,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly,surf music",0.678,0.777,4.0,-7.437,1.0,0.0332,0.514,0.886,0.096,0.965,120.568,4.0,,The Music Factory,P 2016 V&H Holdings Pty Ltd,6588 +6589,spotify:track:3i3GeK0qLQybu4ah42YmCY,Smooth (feat. Rob Thomas),"spotify:artist:6GI52t8N5F02MxU0g5U69P, spotify:artist:3aBkeBhwadnWMWoVJ2CxJC","Santana, Rob Thomas",spotify:album:6FbFvnlSfEoNhwz5MdK0Dx,Ultimate Santana,spotify:artist:6GI52t8N5F02MxU0g5U69P,Santana,2007-09-25,https://i.scdn.co/image/ab67616d0000b2735ffffefb4343759b63f72598,1,3,295986,https://p.scdn.co/mp3-preview/dc4b3a08ce9f09f0e856e8549e1489cc1fc9b3e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USAR19900033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,classic rock,mexican classic rock,neo mellow,pop rock,post-grunge",0.612,0.924,9.0,-3.877,1.0,0.0316,0.159,4.34e-05,0.103,0.96,115.953,4.0,,Arista,"P This Compilation (P) 2007 RCA/JIVE Label Group, a unit of Sony Music Entertainment",6589 +6590,spotify:track:3h7rG6QXFWThb22v5CkBMk,International Smile,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:4lFDt4sVpCni9DRHRmDjgG,PRISM (Deluxe),spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2013-01-01,https://i.scdn.co/image/ab67616d0000b273078cfcd17022e7fac7f59a1d,1,8,227820,https://p.scdn.co/mp3-preview/4ffc65a88cd570a631f6960d2ea45acc73da25c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71311298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.516,0.815,4.0,-4.32,0.0,0.0494,0.0268,0.0,0.17,0.518,130.137,4.0,,Universal Music Group,"C © 2013 Capitol Records, LLC, P ℗ 2013 Capitol Records, LLC",6590 +6591,spotify:track:26oBh1fvCfQ5ZaBAgwnLAw,Stay - Original Single Edit,"spotify:artist:5XTxV2ifoYkmNb13Gb6cKz, spotify:artist:744Aa9RuKugKrpF6nt1kbv","Sash!, La Trec",spotify:album:1olrz5rnUp5iYb1KEztPVU,Stay,spotify:artist:5XTxV2ifoYkmNb13Gb6cKz,Sash!,1997-03-28,https://i.scdn.co/image/ab67616d0000b27397589aee6d640402c267e205,1,1,212560,https://p.scdn.co/mp3-preview/ffea3a847db7323ff4fad916129b130fae6d1161?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,DEF069708200,spotify:user:bradnumber1,2023-11-28T13:20:28Z,"eurodance,german techno",0.611,0.991,7.0,-1.81,0.0,0.0413,0.0669,0.0782,0.103,0.445,133.849,4.0,,High Fashion Music,"C 1997 High Fashion Music under excl license from Tokapi Recordings, P 1997 High Fashion Music under excl license from Tokapi Recordings",6591 +6592,spotify:track:6oDPg7fXW3Ug3KmbafrXzA,Wrecking Ball,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:1aUeYy0hXu0KBuJ5To0hS0,Wrecking Ball,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2013-08-25,https://i.scdn.co/image/ab67616d0000b2733889f04c48f6bf57649c282c,1,1,223240,https://p.scdn.co/mp3-preview/e174e5edd688f7ae112ce20b83741e28367d37b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11301214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.466,0.403,5.0,-6.142,1.0,0.0337,0.395,0.0,0.111,0.337,119.81,4.0,,RCA Records Label,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",6592 +6593,spotify:track:0yHConG49418wPs8UfAt44,Into You (feat. Tamia),"spotify:artist:0YWxKQj2Go9CGHCp77UOyy, spotify:artist:0le01dl1WllSHhjEXRl4in","Fabolous, Tamia",spotify:album:46tIBaFs0Ov0HJsCDrq1Kl,Street Dreams (Bonus Track),spotify:artist:0YWxKQj2Go9CGHCp77UOyy,Fabolous,2003-02-01,https://i.scdn.co/image/ab67616d0000b273037fdf3967f20c4191ed0a39,1,20,295773,https://p.scdn.co/mp3-preview/7993a01f5d98520af2b9934fe59cd4646bcf67bf?cid=9950ac751e34487dbbe027c4fd7f8e99,True,60,USEE10340423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gangster rap,hip hop,pop rap,rap,trap,urban contemporary,canadian pop,contemporary r&b,hip pop,r&b,urban contemporary",0.546,0.538,7.0,-7.886,0.0,0.0523,0.233,0.0,0.118,0.58,182.12,4.0,,Elektra Records,"C © 2003 Elektra Entertainment for the United States and WEA International Inc. for the world outside of the United States.2, P ℗ 2003 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States.",6593 +6594,spotify:track:4AU7z13HYmPMetlWbq1mys,Waiting for Superman,spotify:artist:5P5FTygHyx2G57oszR3Wot,Daughtry,spotify:album:6UTadUeCxnizkSKAS1VHs4,Baptized (Deluxe Version),spotify:artist:5P5FTygHyx2G57oszR3Wot,Daughtry,2013-11-15,https://i.scdn.co/image/ab67616d0000b273e491a7df830c0785a6c50daa,1,2,266960,https://p.scdn.co/mp3-preview/e0691f7c70e267a3269fe8c8f17030b64f8f6d56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBCTA1300101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,neo mellow,pop rock,post-grunge",0.555,0.682,0.0,-5.711,1.0,0.0269,0.0029,0.0,0.0662,0.383,105.987,4.0,,RCA Records Label,"P (P) 2013 19 Recordings Ltd. under exclusive license to RCA Records, a division of Sony Music Entertainment",6594 +6595,spotify:track:1j8z4TTjJ1YOdoFEDwJTQa,Ain't It Fun,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:4sgYpkIASM1jVlNC8Wp9oF,Paramore,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2013-04-05,https://i.scdn.co/image/ab67616d0000b273532033d0d90736f661c13d35,1,6,296520,https://p.scdn.co/mp3-preview/75fcf967520ab9dfc043833e9b2a86c2882228be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAT21300009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.61,0.893,9.0,-3.681,1.0,0.0921,0.154,4.41e-05,0.021,0.673,104.031,4.0,,Fueled By Ramen,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",6595 +6596,spotify:track:08mG3Y1vljYA6bvDt4Wqkj,Back In Black,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:6mUdeDZCsExyJLMdAfDuwh,Back In Black,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1980-07-25,https://i.scdn.co/image/ab67616d0000b2730b51f8d91f3a21e8426361ae,1,6,255493,https://p.scdn.co/mp3-preview/81e64fa3a306418f6bb51325a93df0c75ea50d42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,AUAP08000046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.31,0.7,9.0,-5.678,1.0,0.047,0.011,0.00965,0.0828,0.763,188.386,4.0,,Columbia,P (P) 1980 Leidseplein Presse B.V.,6596 +6597,spotify:track:5oHHMDcVOmPSFrCgdbHPdb,It's Five O'Clock Somewhere,"spotify:artist:4mxWe1mtYIYfP040G38yvS, spotify:artist:28AyklUmMECPwdfo8NEsV0","Alan Jackson, Jimmy Buffett",spotify:album:26w8J2SKCxa80Bwq6G8ctN,34 Number Ones,spotify:artist:4mxWe1mtYIYfP040G38yvS,Alan Jackson,2010-11-19,https://i.scdn.co/image/ab67616d0000b2739921515d1f6a08b5d4907014,1,33,230133,https://p.scdn.co/mp3-preview/3a487518752a73fffffcbfac557958af7a669c2c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAN20300025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,trop rock",0.713,0.772,2.0,-6.69,1.0,0.0372,0.208,0.0,0.211,0.88,125.202,4.0,,Arista Nashville,P (P) 2010 Sony Music Entertainment,6597 +6598,spotify:track:6ZAwEE4kTdtvyE66iRhFxR,Real Wild Child (Wild One),spotify:artist:33EUXrFKGjpUSGacqEHhU4,Iggy Pop,spotify:album:4j1zp01LTkV9kNWAuKU45c,Blah-Blah-Blah,spotify:artist:33EUXrFKGjpUSGacqEHhU4,Iggy Pop,1986-10-27,https://i.scdn.co/image/ab67616d0000b27386bea2881f2ea14076781883,1,1,218306,https://p.scdn.co/mp3-preview/1eb961ab1b44d1734a5127d4046141b48c6a94c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAM18600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,glam rock,permanent wave,protopunk,rock",0.59,0.851,4.0,-11.754,1.0,0.0297,0.0174,0.0975,0.154,0.968,146.213,4.0,,A&M,"C © 1986 A&M Records Inc., P ℗ 1986 UMG Recordings, Inc.",6598 +6599,spotify:track:5j0McHPthKpOXRr3fBq8M0,Love in This Club (feat. Young Jeezy),"spotify:artist:23zg3TcAtWQy7J6upgbUnj, spotify:artist:4yBK75WVCQXej1p04GWqxH","USHER, Jeezy",spotify:album:2peB0xKYHSlIWc5boFA6PW,Here I Stand,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2008-05-27,https://i.scdn.co/image/ab67616d0000b2732bca149ba7dd5e45bf233ac3,1,2,259720,https://p.scdn.co/mp3-preview/19e8a133605d5a9309a5bf8455385a5da4e48715?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USLF20800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary,atl hip hop,crunk,dirty south rap,gangster rap,old school atlanta hip hop,rap,southern hip hop,trap",0.573,0.712,0.0,-5.976,1.0,0.0732,0.0572,0.0,0.167,0.346,140.012,4.0,,LaFace Records,P (P) 2008 LaFace Records,6599 +6600,spotify:track:0XOYh266PYgM8mlf4kSs5L,Cinderella Rockefella,spotify:artist:3iT4BmP1R5s5xbC4y9NAAw,Esther and Abi Ofarim,spotify:album:6V5PB9WYuufgS3mFAdUWOM,Die Ofarim-Story,spotify:artist:3iT4BmP1R5s5xbC4y9NAAw,Esther and Abi Ofarim,1992-01-01,https://i.scdn.co/image/ab67616d0000b273efe38caf1195029855dabf60,1,9,148666,https://p.scdn.co/mp3-preview/e6ff43e1e699cdccf4011114c0cbf82f06810f50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,DEF076705040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.521,0.371,2.0,-14.51,1.0,0.0401,0.919,1.08e-05,0.0981,0.736,130.027,4.0,,Vertigo Berlin,"C © 1992 Universal Music Domestic Division, a division of Universal Music GmbH, P This Compilation ℗ 1992 Universal Music Domestic Division, a division of Universal Music GmbH",6600 +6601,spotify:track:0OI7AFifLSoGzpb8bdBLLV,"Home (with Machine Gun Kelly, X Ambassadors & Bebe Rexha)","spotify:artist:6TIYQ3jFPwQSRmorSezPxX, spotify:artist:3NPpFNZtSTHheNBaWC82rB, spotify:artist:64M6ah0SkkRsnPGtGiRAbb","mgk, X Ambassadors, Bebe Rexha",spotify:album:3U1X1wd3lX7EteWYhS2hpT,"Home (with Machine Gun Kelly, X Ambassadors & Bebe Rexha) [From Bright: The Album]","spotify:artist:6TIYQ3jFPwQSRmorSezPxX, spotify:artist:3NPpFNZtSTHheNBaWC82rB, spotify:artist:64M6ah0SkkRsnPGtGiRAbb","mgk, X Ambassadors, Bebe Rexha",2017-11-18,https://i.scdn.co/image/ab67616d0000b2737a3fbbab0e9fb050a08fa065,1,1,202804,https://p.scdn.co/mp3-preview/7dda80013be1eaf0d5c2b4980a9b7f98a0748c59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT21704829,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ohio hip hop,pop rap,modern alternative rock,modern rock,stomp pop,dance pop,pop",0.653,0.718,3.0,-5.232,0.0,0.213,0.00413,0.0,0.0537,0.216,82.034,4.0,,Atlantic Records,"C © 2017 All Artwork and Photographs TM & Netflix Studios, LLC 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",6601 +6602,spotify:track:3e9L9HiHKcfYLAga28Vmcf,Something,spotify:artist:25Kw8f1zcn9VtUk5Nl3qrp,Lasgo,spotify:album:7d5N4KB4rlO1kqcoyLdm3h,Some Things,spotify:artist:25Kw8f1zcn9VtUk5Nl3qrp,Lasgo,2001,https://i.scdn.co/image/ab67616d0000b273bf59194219d8e524e5e1e064,1,2,220973,https://p.scdn.co/mp3-preview/3450162672c7831a2a085ef26a161b8c5e5caa40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,BEZ460100055,spotify:user:bradnumber1,2022-05-02T07:05:28Z,"belgian dance,belgian pop,eurodance",0.644,0.981,7.0,-6.644,0.0,0.0439,0.0271,9.67e-05,0.11,0.379,140.012,4.0,,Sinuz Recordings,"C 2002 Sinuz Recordings (a division of HITT bv), P 2002 Sinuz Recordings (a division of HITT bv)",6602 +6603,spotify:track:3v9xlH6BpmRbqL7hgNJhfT,I Get Around (Mono),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:6GnzWMUyNEETCq6eftD98v,All Summer Long (Mono & Stereo),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1964-07-13,https://i.scdn.co/image/ab67616d0000b2736f27648d5087e1b7aeb2abdb,1,1,134386,https://p.scdn.co/mp3-preview/d1b1d7387bf8f86799ebda306e024b82f7ea9c49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USCA21202039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.389,0.626,9.0,-7.813,0.0,0.0541,0.366,0.0,0.0663,0.514,144.337,4.0,,Capitol Records,"C © 1964 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",6603 +6604,spotify:track:7pNJ1T9TGbVbNHKaLhhPri,With You,spotify:artist:2tFN9ubMXEhdAQvdQxcsma,Jessica Simpson,spotify:album:1tCJPKhKa3j1OBgz0MhBUV,In This Skin (Deluxe Edition),spotify:artist:2tFN9ubMXEhdAQvdQxcsma,Jessica Simpson,2003,https://i.scdn.co/image/ab67616d0000b273adefab4c77e8a845234eeee4,1,2,191826,https://p.scdn.co/mp3-preview/fc478b8d01b8664cdc90cbdebd85e203029d3f15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USSM10308249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.553,0.756,0.0,-4.583,1.0,0.108,0.0923,0.0,0.215,0.605,94.487,4.0,,Columbia,"P (P) 2003, 2004 Sony Music Entertainment Inc.",6604 +6605,spotify:track:4wO6jNcx6Fnw3YJbvnQo8X,Solitude Is Bliss,spotify:artist:5INjqkS1o8h1imAzPqGZBb,Tame Impala,spotify:album:19KL6IwPJMECn2wosxguq7,InnerSpeaker (Collector's Edition),spotify:artist:5INjqkS1o8h1imAzPqGZBb,Tame Impala,2010,https://i.scdn.co/image/ab67616d0000b273260407c9941e10a0d74f7d91,1,6,235840,https://p.scdn.co/mp3-preview/5cc2833a7c5a876fef613961f49f1bbf96e35025?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71000136,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian psych,modern rock,neo-psychedelic,rock",0.591,0.847,7.0,-4.963,1.0,0.0642,0.00971,0.000124,0.176,0.64,104.004,4.0,,Modular,"C © 2011 Modular Recordings, P ℗ 2011 Modular Recordings",6605 +6606,spotify:track:3cO8w5kGXDdwQywhiX0G8J,Last Night,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:08utRHYjRSDcceEsjFRFX0,Cardiology,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2010-01-01,https://i.scdn.co/image/ab67616d0000b273fab23a7730496d05987df477,1,6,220826,https://p.scdn.co/mp3-preview/f18087bbd4447294cb33c1213930aba956cdca36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USCA21002626,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.641,0.849,5.0,-3.176,1.0,0.0445,0.00159,0.0,0.0418,0.73,128.063,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",6606 +6607,spotify:track:4B0JvthVoAAuygILe3n4Bs,What Do You Mean?,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:6Fr2rQkZ383FcMqFyT7yPr,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273f46b9d202509a8f7384b90de,1,3,205680,https://p.scdn.co/mp3-preview/408d55c4d5d6383a57b93361b6e58d5e8916ebe3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USUM71511919,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.845,0.567,5.0,-8.118,0.0,0.0956,0.59,0.00142,0.0811,0.793,125.02,4.0,,RBMG/Def Jam,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",6607 +6608,spotify:track:76HKOVWqsEg26SECtmw7Rz,The Way You Make Me Feel - 2012 Remaster,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:3Us57CjssWnHjTUIXBuIeH,Bad (Remastered),spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1987-08-31,https://i.scdn.co/image/ab67616d0000b27362e97ae5072de10850578af5,1,2,298120,https://p.scdn.co/mp3-preview/89faf4cf31fe72fe3071c13879a425df0cb8455e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM11204981,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.877,0.854,1.0,-4.523,1.0,0.147,0.0544,5.5e-05,0.144,0.54,114.472,4.0,,Epic/Legacy,P (P) 2012 MJJ Productions Inc.,6608 +6609,spotify:track:3TQbr3G3U5wlwEJejmqC1F,Never on the Day You Leave,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:0jZFu2tihRJ65iYAo0oOtP,The Search for Everything,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2017-04-14,https://i.scdn.co/image/ab67616d0000b273c6bfaf942ed981d5c4c922e4,1,9,220866,https://p.scdn.co/mp3-preview/fcf1c9b1819f5075c375196dbe5e64fa4db8dc0d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM11702696,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.536,0.355,2.0,-8.61,1.0,0.0259,0.733,1.22e-05,0.138,0.22,139.888,4.0,,Columbia,"P (P) 2017 Columbia Records, a Division of Sony Music Entertainment",6609 +6610,spotify:track:7taFX7eVj0SR36wtNjRaoY,Same Old Girl,spotify:artist:4rCPd9isLuPNVZEZqdg0Xj,Darryl Cotton,spotify:album:4UjFrsIIZZ1NfJ6VAuOsz1,Best Seat In The House,spotify:artist:4rCPd9isLuPNVZEZqdg0Xj,Darryl Cotton,1980-01-01,https://i.scdn.co/image/ab67616d0000b27387932a5047eacad6966d1727,1,5,291025,https://p.scdn.co/mp3-preview/267a7122e5a1047d400b546b9fbb6c2f9babdcea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUUM71900074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.652,0.553,9.0,-13.262,1.0,0.0343,0.0924,0.000333,0.0851,0.759,124.212,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 1980 EMI Australia Limited, P ℗ 1980 EMI Australia Limited",6610 +6611,spotify:track:4LD5dhQ3kqpqe14sGPDtBC,Scream,"spotify:artist:3fMbdgg4jU18AjLCKBhRSm, spotify:artist:4qwGe91Bz9K2T8jXTZ815W","Michael Jackson, Janet Jackson",spotify:album:3OBhnTLrvkoEEETjFA3Qfk,"HIStory - PAST, PRESENT AND FUTURE - BOOK I",spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1995-06-16,https://i.scdn.co/image/ab67616d0000b273d0593178c6c2594693ee34b7,2,1,278293,https://p.scdn.co/mp3-preview/a9135d88c2309a4e927916b03d6e58cea22ec40c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,58,USSM19500006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul,dance pop,r&b,urban contemporary",0.805,0.942,0.0,-6.584,1.0,0.0905,0.0745,1.46e-05,0.415,0.608,106.525,4.0,,Epic,"P (P) 1979, 1982, 1987, 1988, 1991, 1995 MJJ Productions Inc.",6611 +6612,spotify:track:3o9LfDxxxtcNwL2PXLavb7,Way Down Yonder In New Orleans,spotify:artist:1ffNa7yLg0ncUpBm5P03pm,Freddy Cannon,spotify:album:5EfORy4oQZnpVHnK0EFuZL,The A-Z Collection: Freddy Cannon,spotify:artist:1ffNa7yLg0ncUpBm5P03pm,Freddy Cannon,2012-03-01,https://i.scdn.co/image/ab67616d0000b273c3b46893578d120eb1268203,1,25,153360,https://p.scdn.co/mp3-preview/73e74e72d70ceef91b93d61df6e4a081ef55a8b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBVUD0815073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic garage rock,doo-wop,merseybeat,rhythm and blues,rock-and-roll,rockabilly,surf music",0.453,0.672,8.0,-8.425,1.0,0.0469,0.762,0.0,0.321,0.814,142.81,4.0,,Stratx,"C 2012 Affable Productions, P 2012 Affable Productions",6612 +6613,spotify:track:3sstxl3kwfZ5ozeE5rPhxn,Little Secrets,spotify:artist:7gjAu1qr5C2grXeQFFOGeh,Passion Pit,spotify:album:4iaO0b0rnbBmE4QHM0EYbH,Manners,spotify:artist:7gjAu1qr5C2grXeQFFOGeh,Passion Pit,2009,https://i.scdn.co/image/ab67616d0000b273049ea6f324aaeb08ac6a70ef,1,2,238973,https://p.scdn.co/mp3-preview/719d95528c77951e9cbfaac0c41625a04ae85175?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10901007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,indietronica,modern rock,neo-synthpop,shimmer pop",0.612,0.787,5.0,-4.258,1.0,0.0394,0.00368,0.0,0.0978,0.656,99.975,4.0,,Columbia,"P (P) 2009, 2010 frenchkiss records under exclusive license to Sony Music Entertainment",6613 +6614,spotify:track:38tpcZDofjtDNunMm5w1EU,If I Could Change Your Mind,spotify:artist:4Ui2kfOqGujY81UcPrb5KE,HAIM,spotify:album:7CzrzGbCwqT8Y43tvIUPBX,Days Are Gone (Deluxe Edition),spotify:artist:4Ui2kfOqGujY81UcPrb5KE,HAIM,2013-01-01,https://i.scdn.co/image/ab67616d0000b2735841140a46549b7e95202b9f,1,4,230453,https://p.scdn.co/mp3-preview/5b9cefa89226328c5070bfdfb3e6d984964c129c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBUM71304659,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis",0.671,0.852,2.0,-5.557,0.0,0.0425,0.0184,9.91e-05,0.0841,0.737,125.043,4.0,,Polydor Records,"C © 2013 HAIM Productions Inc., under exclusive licence to Polydor Records, a division of Universal Music Operations Ltd, P ℗ 2013 HAIM Productions Inc., under exclusive licence to Polydor Records, a division of Universal Music Operations Ltd",6614 +6615,spotify:track:3fjA8feYyRg4wcxpNhyi73,Harley & Rose,spotify:artist:1iES8Ckei3eLmSBPo4vwU7,The Black Sorrows,spotify:album:25H4oWFqYPhwEhu0s7yXrk,Harley and Rose,spotify:artist:1iES8Ckei3eLmSBPo4vwU7,The Black Sorrows,1990-08-10,https://i.scdn.co/image/ab67616d0000b2733a0f2a0b3d101100d2412e1c,1,1,234800,https://p.scdn.co/mp3-preview/2c38f483eb91a9e3c0e988c54e9fded9f710daa1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUSM09000014,spotify:user:bradnumber1,2022-12-30T09:50:56Z,australian rock,0.641,0.63,7.0,-15.264,1.0,0.0404,0.092,1.66e-05,0.178,0.562,103.91,4.0,,Sony Music Entertainment,P (P) 1990 Sony Music Entertainment Australia Pty Ltd,6615 +6616,spotify:track:00vYs0qZA40Z8AAaN7xmMO,Manic Monday,spotify:artist:51l0uqRxGaczYr4271pVIC,The Bangles,spotify:album:7qEP3i0f0zfk6JUFW3SyeN,Different Light (Expanded Edition),spotify:artist:51l0uqRxGaczYr4271pVIC,The Bangles,1986-01-10,https://i.scdn.co/image/ab67616d0000b2734aaad3bb593721bcaa6827d6,1,1,184160,https://p.scdn.co/mp3-preview/d1942c0b481d4c567ca6dff9da63a73e7f8e0be5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USSM18500268,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,jangle pop,new romantic,new wave,new wave pop,paisley underground,soft rock",0.685,0.594,2.0,-10.906,1.0,0.0289,0.294,3.69e-06,0.358,0.853,121.761,4.0,,Legacy Recordings,"P (P) 1986 Sony Music Entertainment, Inc.",6616 +6617,spotify:track:2CX8ml3zKhw4Ipgn2jfdir,End Of The Line,spotify:artist:2hO4YtXUFJiUYS2uYFvHNK,Traveling Wilburys,spotify:album:0FtmosiBG35MGb66MdmWsi,"The Traveling Wilburys, Vol. 1",spotify:artist:2hO4YtXUFJiUYS2uYFvHNK,Traveling Wilburys,1988-10-18,https://i.scdn.co/image/ab67616d0000b273ac235b17dc6bb2b1b42901dc,1,10,209520,https://p.scdn.co/mp3-preview/28a6ef2978342136761bb994d96a09ca4ab6894b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBLVT0700010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,country rock,folk,folk rock,mellow gold,rock,singer-songwriter,soft rock,supergroup",0.578,0.835,2.0,-6.628,1.0,0.0542,0.17,0.0,0.0542,0.929,167.036,4.0,,Universal Music Group,"C © 2007 T. Wilbury Limited., Exclusively Licensed to Concord Music Group, Inc., P ℗ 2007 T. Wilbury Limited., Exclusively Licensed to Concord Music Group, Inc.",6617 +6618,spotify:track:2ZrIGSO7RUz0Di1QrrqiI9,Love on the Weekend,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:5GkyQHN2jO9L05VV0gBnGH,The Search for Everything - Wave One,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2017-01-20,https://i.scdn.co/image/ab67616d0000b273e837bfc86385e5386bfc315d,1,3,211840,https://p.scdn.co/mp3-preview/e477f5e22491ddd3b0462ecb9b78ee85c79a9167?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USSM11609513,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.715,0.59,7.0,-7.855,1.0,0.0286,0.652,0.000551,0.0627,0.395,119.966,4.0,,Columbia,"P (P) 2017 Columbia Records, a Division of Sony Music Entertainment",6618 +6619,spotify:track:4YLtrBhzjsI2LT6ybXQHeD,SoulMate,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:2FljC0wx1bLyT6GW3FDQFX,SoulMate,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2018-07-03,https://i.scdn.co/image/ab67616d0000b27366374ebdb919620b6d1cf446,1,1,196231,https://p.scdn.co/mp3-preview/579160304fbdd6ba557851237da6a63e4a1c5af5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USRC11802710,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.765,0.784,7.0,-5.215,0.0,0.0488,0.0222,0.00121,0.187,0.449,109.956,4.0,,RCA Records Label,"P (P) 2018 RCA Records, a division of Sony Music Entertainment",6619 +6620,spotify:track:2WElktskrNJEwgpp5Vouxk,I'm Too Sexy,spotify:artist:15ajdFAi5bjj5pS9laBfBL,Right Said Fred,spotify:album:1qgGxfnTXeBOkBNnLzDi36,Up,spotify:artist:15ajdFAi5bjj5pS9laBfBL,Right Said Fred,1992-01-07,https://i.scdn.co/image/ab67616d0000b273e569f57668adfcb05b1002de,1,3,170466,https://p.scdn.co/mp3-preview/7ed360ab4ecbd6548755b203eab0179ad2bfdfe9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBBRL9290469,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.683,0.739,11.0,-12.831,0.0,0.0495,4.91e-05,0.0122,0.293,0.836,122.113,4.0,,Sexy Records,"C (C) 2010 Twist & Shout Music, P (P) 2010 Twist & Shout Music",6620 +6621,spotify:track:6Ie2IgHpf1Pgdo5swugul3,Slow Twistin',spotify:artist:7qQJQ3YtcGlqaLg5tcypN2,Chubby Checker,spotify:album:36tc0l1brbD9CCaUDrvqVi,Chubby Checker Classics,spotify:artist:7qQJQ3YtcGlqaLg5tcypN2,Chubby Checker,1962-01-01,https://i.scdn.co/image/ab67616d0000b273d13f4d5f1d5d19f25783f505,1,5,164853,https://p.scdn.co/mp3-preview/5ea738f71f5d011d8a361fc213ea11d07fdac9b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USI4R0502239,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.804,0.689,8.0,-6.892,1.0,0.0319,0.126,0.0,0.0391,0.924,120.279,4.0,,TEEC Recordings,C (C) 1962 TEEC Recordings,6621 +6622,spotify:track:7kw6yVmdZGuRcWGi4adXYT,Take Me Out,spotify:artist:0XNa1vTidXlvJ2gHSsRi4A,Franz Ferdinand,spotify:album:33gUUxzd5kOjRTraCSbws2,Franz Ferdinand,spotify:artist:0XNa1vTidXlvJ2gHSsRi4A,Franz Ferdinand,2004,https://i.scdn.co/image/ab67616d0000b2732488e165fd8739d836ccb426,1,3,239026,https://p.scdn.co/mp3-preview/f91cfdf3dd5f7114cf47f8c8b2567b7a8a76d9ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEL0300192,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,indie rock,modern rock,rock,scottish rock",0.273,0.665,9.0,-8.795,1.0,0.0382,0.000458,0.000893,0.117,0.514,104.656,4.0,,Domino Records,"C 2004 Domino Recording Co Ltd, P 2004 Domino Recording Co Ltd",6622 +6623,spotify:track:1dNuV6s1E6ZZEwsWuthCDS,Shakedown,spotify:artist:485uL27bPomh29R4JmQehQ,Bob Seger,spotify:album:0j5qCuRJ7VuP2CoWWIwcit,Greatest Hits 2,spotify:artist:485uL27bPomh29R4JmQehQ,Bob Seger,2003-11-04,https://i.scdn.co/image/ab67616d0000b2731aa84801689abdb38c8c137f,1,10,241946,https://p.scdn.co/mp3-preview/bb3a7b9febf16b8173ae2e67f0fa751a3d7d79a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA20300669,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,detroit rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.571,0.947,2.0,-5.331,1.0,0.0691,0.0302,3.56e-06,0.31,0.459,170.662,4.0,,Universal Music Group,"C © 2003 Hideout Records & Distributors, Inc., under exclusive license to Capitol Records LLC, P ℗ 2003 Hideout Records & Distributors, Inc., under exclusive license to Capitol Records LLC",6623 +6624,spotify:track:0P5cNFtxF87oLZKrs2XSG3,London Still - Original,spotify:artist:5uKeKhwXi2w5cXdtoSaqjz,The Waifs,spotify:album:408p8CNisSoiIDrUzQ162q,Up All Night,spotify:artist:5uKeKhwXi2w5cXdtoSaqjz,The Waifs,2002,https://i.scdn.co/image/ab67616d0000b2730ebb69ce09c023392ac1d750,1,3,226733,https://p.scdn.co/mp3-preview/2978d75ec502850757e00352a979df6cf30e6579?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWB00500038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian rock,indie folk",0.616,0.354,8.0,-9.149,0.0,0.0473,0.511,2.88e-05,0.112,0.426,109.912,4.0,,Jarrah Records,C (C) 2002 The Waifs,6624 +6625,spotify:track:5gu5laRy0DJd17tb6bRMNm,I'm Yours,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:2g4kvBYEZoUaO5rMmR4CJI,Pot Luck,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1962-06-05,https://i.scdn.co/image/ab67616d0000b273ac4deb81e4385b8b20820ab4,1,6,140840,https://p.scdn.co/mp3-preview/7e31b71af41e3c3e7352df3c04adf06a7ec99fc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USRC16208336,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.343,0.19,2.0,-16.323,1.0,0.0439,0.697,0.0016,0.123,0.262,99.835,3.0,,RCA/Legacy,P (P) 1962 Sony Music Entertainment,6625 +6626,spotify:track:3C99A4P713NyauX0tYZ7cm,Take Cover,spotify:artist:1fTCSmuwhEaa6J6Hjq8xmi,Jordie Ireland,spotify:album:2v4BSCwgmporI1pXN0KUqE,Take Cover,spotify:artist:1fTCSmuwhEaa6J6Hjq8xmi,Jordie Ireland,2017-09-15,https://i.scdn.co/image/ab67616d0000b273685b650d00fe747b0faa5636,1,1,246363,https://p.scdn.co/mp3-preview/6de0673b27260d84f627ceb81cec2cb76155b307?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71700738,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.618,0.585,5.0,-6.115,1.0,0.0465,0.08,0.0,0.0947,0.138,131.859,4.0,,Universal Music Group,"C © 2017 Jordie Ireland, under exclusive license to Casablanca Records Australia/Universal Music Australia 2017, P ℗ 2017 Jordie Ireland, under exclusive license to Casablanca Records Australia/Universal Music Australia 2017",6626 +6627,spotify:track:1GrikfH0jDejDvrxo84n4P,Together Again,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:6ZANEjETQ9L9pjBuvOAhCQ,The Velvet Rope,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1997-10-07,https://i.scdn.co/image/ab67616d0000b273ea84373a962d15eeed9aa3bf,1,11,301200,https://p.scdn.co/mp3-preview/58186938777a7c7acd282ee53f88d9a2fe0acb65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USVI29700014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.873,0.593,7.0,-8.942,1.0,0.103,0.078,0.00697,0.104,0.495,123.091,4.0,,Virgin Records,"C © 1997 Black Doll Inc, P ℗ 1997 Virgin Records America, Inc.",6627 +6628,spotify:track:6DMOzL2zPZBAW0LDYCYLWm,I've Never Been To Me,spotify:artist:52o9SO5Qt09Vr9bDCbTbmu,Charlene,spotify:album:7rXwVP5P5mfUQUTYYD6Jza,I've Never Been To Me,spotify:artist:52o9SO5Qt09Vr9bDCbTbmu,Charlene,1982-01-01,https://i.scdn.co/image/ab67616d0000b27373329ec8473347e689e6ec5c,1,1,234773,https://p.scdn.co/mp3-preview/94801c152198f70d906d359c68da1e13a84ee094?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USMO17682869,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.473,0.332,10.0,-12.51,1.0,0.0426,0.843,0.0,0.0853,0.435,121.326,4.0,,UNI/MOTOWN,"C © 1982 UMG Recordings, Inc., P ℗ 1982 UMG Recordings, Inc.",6628 +6629,spotify:track:7x2DJIxcdWq0JLynBVP7pm,Wake up,spotify:artist:1DYGOExwswVH3CxsnEnFFk,Benedict,spotify:album:5kVj0j9FZWUw609gkduVKF,Wake up,spotify:artist:1DYGOExwswVH3CxsnEnFFk,Benedict,2021-07-23,https://i.scdn.co/image/ab67616d0000b2738b9178d3075fde384377d9dc,1,1,246464,https://p.scdn.co/mp3-preview/1edc826f1bd78e5889e06fc99e10ef1d90101ff2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKPL2154616,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.495,0.578,11.0,-10.567,0.0,0.0556,0.671,7.63e-05,0.108,0.436,149.919,4.0,,Tomboi Records,"C 2021 Alexis Smibert, P 2021 Alexis Smibert",6629 +6630,spotify:track:5hmVQWh4lhQq1yvb9wFLAs,Beep Beep Beep,spotify:artist:5l9wiTZVfqQTfMDOt0HtwC,Tiga,spotify:album:3ip7kzEOMxlXIaBtiOFicl,Ciao!,spotify:artist:5l9wiTZVfqQTfMDOt0HtwC,Tiga,2009-04-27,https://i.scdn.co/image/ab67616d0000b273aff30ab14d524ec0386ede63,1,1,229760,https://p.scdn.co/mp3-preview/ae12cc9c7b701a22c862ebbbc29f436d5cc9d52a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BEP010900018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,canadian electronic,dance-punk,electroclash,electronica,filter house,microhouse,minimal techno,new rave",0.672,0.982,8.0,-4.296,1.0,0.0375,0.0384,0.848,0.0826,0.754,127.981,4.0,,Different Recordings,"C 2009 Different Recordings, P 2009 3201937 Canada Inc",6630 +6631,spotify:track:0kcw6bt00z7iaCc8rEsgYa,Streets Of Your Town,spotify:artist:4HCubdy7diarb4KZo8etrq,The Go-Betweens,spotify:album:6Ileil9XELIlEyn3Pm9qzc,Quiet Heart - The Best Of,spotify:artist:4HCubdy7diarb4KZo8etrq,The Go-Betweens,2012-01-01,https://i.scdn.co/image/ab67616d0000b2738f026ff0a2f44db4f32d7fb1,1,11,219360,https://p.scdn.co/mp3-preview/f74fbccf45c0c273258b4eaab6f64b3cf1b98865?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAZP8700127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,c86,dunedin sound",0.605,0.885,3.0,-5.959,1.0,0.0284,0.0106,0.0045,0.261,0.835,131.891,4.0,,EMI Music Australia,"C © 2012 The Go-Betweens, P ℗ 2012 EMI Recorded Music Australia Pty Ltd.",6631 +6632,spotify:track:7ddUIAiI2kH0rLBbi27wrH,Never Gonna Fall in Love Again - Live,spotify:artist:0st2uLeud3MMdZNfZtISYq,Mark Holden,spotify:album:2G3U48j96ljJgnWiIc7aGd,Live At The George Ballroom,spotify:artist:0st2uLeud3MMdZNfZtISYq,Mark Holden,2005,https://i.scdn.co/image/ab67616d0000b27319b8a615f5b08694f0d1acd6,1,1,300240,https://p.scdn.co/mp3-preview/00dc3981d0c2951e3c737d5912fdbc3a4c32202d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUTQ80500015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.557,0.38,0.0,-12.645,1.0,0.0259,0.776,0.0667,0.0989,0.569,99.83,4.0,,Thompson Music P/L,"C 2005 Thompson Music P/L, P 2005 Thompson Music P/L",6632 +6633,spotify:track:54j7EaJPDmSZYcNYvLSJ78,Trust Fund Baby,spotify:artist:2jnIB6XdLvnJUeNTy5A0J2,Why Don't We,spotify:album:6aix4lgk9J4pz0pjbIowdo,Trust Fund Baby,spotify:artist:2jnIB6XdLvnJUeNTy5A0J2,Why Don't We,2018-02-01,https://i.scdn.co/image/ab67616d0000b2732290f56a1db4fbef32d5ef55,1,1,184460,https://p.scdn.co/mp3-preview/e24a324fd9e0a511b770c06957a47328891bb681?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USAT21704316,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.624,0.785,8.0,-3.337,1.0,0.0498,0.0629,0.0,0.135,0.593,163.929,4.0,,Atlantic Records,"C © 2018 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world excluding the United States, P ℗ 2018 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world excluding the United States",6633 +6634,spotify:track:49wHCjiu34kM3VRgumQ1tJ,Echo Beach,spotify:artist:5nWbdgU2jcFSbrPV7EAoLK,Martha and the Muffins,spotify:album:3XyR0jp0zJGjhLJjnltNaX,Metro Music,spotify:artist:5nWbdgU2jcFSbrPV7EAoLK,Martha and the Muffins,1980,https://i.scdn.co/image/ab67616d0000b273dd3348ae92842123457bffbf,1,1,219866,https://p.scdn.co/mp3-preview/3cf2be53c07bd2126d33d564ea1c6338b0633a00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAAA0201040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic canadian rock,new wave pop",0.54,0.746,7.0,-9.412,1.0,0.045,0.13,8.73e-06,0.0976,0.826,163.809,4.0,,EMI Marketing,"C © 2003 Virgin Records Limited, P ℗ 2003 Virgin Records Limited",6634 +6635,spotify:track:1fPYcrgm9wODvukYw46vcg,Only Want You (feat. 6LACK),"spotify:artist:5CCwRZC6euC8Odo6y9X8jr, spotify:artist:4IVAbR2w4JJNJDDRFP3E83","Rita Ora, 6LACK",spotify:album:6HznAKUBMg1eOLzXkfXiyy,Only Want You (feat. 6LACK),spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2019-03-01,https://i.scdn.co/image/ab67616d0000b273d8a4c364412afc6e40b31fff,1,1,192439,https://p.scdn.co/mp3-preview/f77e9d62be89ac795266f085a7e035e3c2bc0bc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBAHS1900369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,atl hip hop,melodic rap,r&b,rap,trap",0.671,0.547,6.0,-6.284,0.0,0.0526,0.0574,1.55e-06,0.0855,0.336,82.034,4.0,,Atlantic Records UK,"C © 2019 Atlantic Records UK, a Warner Music Group Company, P ℗ 2019 Atlantic Records UK, a Warner Music Group Company",6635 +6636,spotify:track:5G1sTBGbZT5o4PNRc75RKI,Lonely Boy,spotify:artist:7mnBLXK823vNxN3UWB7Gfz,The Black Keys,spotify:album:5DLhV9yOvZ7IxVmljMXtNm,El Camino,spotify:artist:7mnBLXK823vNxN3UWB7Gfz,The Black Keys,2011-12-06,https://i.scdn.co/image/ab67616d0000b2736a21b97de47168df4f0c1993,1,1,193653,https://p.scdn.co/mp3-preview/cb384c17027f77dd419356db04186415edea2b90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USNO11100273,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,blues rock,garage rock,indie rock,indietronica,modern blues rock,modern rock,punk blues,rock",0.356,0.872,2.0,-7.837,1.0,0.068,0.00417,0.00975,0.0997,0.607,166.3,4.0,,Nonesuch,"C © 2011 Nonesuch Records, P ℗ 2011 Nonesuch Records",6636 +6637,spotify:track:2PokM5DfJJW20jQOyVVxPJ,Change in Mood,spotify:artist:2O7qtwbMUKIK1Va8EF48Pr,Kids In The Kitchen,spotify:album:16yeGtpuBwC8tmk2LPw5Vb,Shine,spotify:artist:2O7qtwbMUKIK1Va8EF48Pr,Kids In The Kitchen,1985,https://i.scdn.co/image/ab67616d0000b2738ad0f30688510913ed47cbb1,1,3,225333,https://p.scdn.co/mp3-preview/92f00c7f715bdf33785d1d194f7b0f9504e4ba09?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUMU08500046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.385,0.634,0.0,-11.313,1.0,0.0368,0.147,0.00566,0.138,0.628,147.133,4.0,,WM Australia,"C © 1985 Mushroom Records, P ℗ 1985 Mushroom Records",6637 +6638,spotify:track:1kPBHRXyXdrtYfUfeRwBko,I Wanna Sex You Up - Single Mix,spotify:artist:1QtIfAa6y7w2JhxYJhYeUG,Color Me Badd,spotify:album:17mrdLXkhmlY36jRm9cUbw,C.M.B.,spotify:artist:1QtIfAa6y7w2JhxYJhYeUG,Color Me Badd,1991-07-23,https://i.scdn.co/image/ab67616d0000b273ced0c7756302458ab6daa6d5,1,1,236946,https://p.scdn.co/mp3-preview/4bafc63aa8d4c8f9699cc794d67a531fe4fb31b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USGI10000095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing",0.551,0.591,6.0,-8.404,0.0,0.12,0.00549,6.55e-06,0.0416,0.474,201.81,4.0,,Giant,"C © 1991 Giant Records, P ℗ 1991 Giant Records",6638 +6639,spotify:track:3MIm1YYgQJYmrrZ9SSMtSh,Last Song,spotify:artist:5IVNNR05uQhrkBIogJtQD8,Edward Bear,spotify:album:3B6L5PciwjKpMBCtjbI92Z,Hard Core Logo II (Music From And Inspired By The Motion Picture),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-09-06,https://i.scdn.co/image/ab67616d0000b273eee18227479a0b4a33ec7440,1,14,190266,https://p.scdn.co/mp3-preview/20be25c6558dc220f069eddef977b00181cbcd81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,CAE157300013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic canadian rock,0.513,0.736,6.0,-5.034,1.0,0.0396,0.338,0.0,0.102,0.815,128.836,4.0,,Warner Music Canada,"C © 2011 Warner Music Canada Co. In Association With Foundation Features Inc. and Trilight Entertainment Inc.. All Right Reserved. Unauthorized reproduction, copying is prohibited by law., P ℗ 2011 Warner Music Canada Co. In Association With Foundation Features Inc. and Trilight Entertainment Inc.. All Right Reserved. Unauthorized reproduction, copying is prohibited by law.",6639 +6640,spotify:track:7nkOH6CQX02HDuXKWYuh1I,Anywhere For You,spotify:artist:2auikkNYqigWStoHWK1Grq,John Martin,spotify:album:4TLtJYTNGu0GQTo5g7RrxI,Anywhere For You,spotify:artist:2auikkNYqigWStoHWK1Grq,John Martin,2014-01-01,https://i.scdn.co/image/ab67616d0000b273cc67a741edd97113145be81b,1,1,213928,https://p.scdn.co/mp3-preview/aa09adb8904d9f43ac7a65a04d6843b6f4a2d647?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71400370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop edm,0.533,0.913,3.0,-4.041,1.0,0.0663,0.0314,1.42e-06,0.104,0.336,128.022,4.0,,Universal Music Group,"C © 2014 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2014 Universal Island Records, a division of Universal Music Operations Limited",6640 +6641,spotify:track:6KqyD6IpWabsQMmAYpKJ4y,If I Could,spotify:artist:7uZbOLlVQNbLVvKdGRk4VZ,1927,spotify:album:0v91CQ8k8qNZP2LnxQ8HNL,20... Ish Anniversary Edition,spotify:artist:7uZbOLlVQNbLVvKdGRk4VZ,1927,1988,https://i.scdn.co/image/ab67616d0000b2734c537bd4feebf90b1af2127e,1,3,221733,https://p.scdn.co/mp3-preview/f3db9740ec1517f984d79868c66ecd73b97f96ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAL00900036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.687,0.599,4.0,-4.406,1.0,0.0243,0.363,4.03e-05,0.101,0.315,97.143,4.0,,Albert,P (P) 1988 Trafalgar Music Pty Limited,6641 +6642,spotify:track:2goLsvvODILDzeeiT4dAoR,Believe,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,spotify:album:0jZfbz0dNfDjPSg0hYJNth,Believe,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,1998,https://i.scdn.co/image/ab67616d0000b27306ce0d1f846c525e847d60e7,1,1,239026,https://p.scdn.co/mp3-preview/4d1118af5a493275e5c7522aaa26faa34b72d828?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBAHT9803002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.652,0.917,6.0,-6.72,1.0,0.0548,0.0082,0.0,0.0509,0.459,132.975,4.0,,Warner Records,"C © 1998 Warner Music UK Ltd., P ℗ 1998 All tracks 1998 Warner Music UK Ltd except track 10 1987 The David Geffen Company.",6642 +6643,spotify:track:2cngJ0gAhCZOpamv9mEyby,Don't Be Stupid (You Know I Love You),spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,spotify:album:0vOj0JVKv2bobFBBUTjgQF,Come On Over,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,1997,https://i.scdn.co/image/ab67616d0000b273e651d6dd8cc3af4288bf77b4,1,12,213693,https://p.scdn.co/mp3-preview/dd2ce4d72b84519dc7625eb7b128d78c737f2fd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19987510,spotify:user:bradnumber1,2022-01-11T11:19:52Z,"canadian country,canadian pop,contemporary country,country,country dawn",0.736,0.721,2.0,-4.748,1.0,0.0319,0.39,0.0,0.653,0.921,122.002,4.0,,Strategic Marketing,"C © 2009 Mercury Records, P ℗ 2009 Mercury Records",6643 +6644,spotify:track:5gOJ1pWOB4mk7mZ5RUj5nJ,Talk Like That,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:25tc04xFy9V9BlrJANNitq,Apocalypso (International),spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2008-01-01,https://i.scdn.co/image/ab67616d0000b273297f0977594a9e0a099e8ac3,1,6,220906,https://p.scdn.co/mp3-preview/6cbfad2f14ce1da85fe7c4c7446c5aaecf8a0024?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70800157,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.57,0.941,6.0,-3.466,0.0,0.0316,0.0013,6.05e-05,0.225,0.854,135.015,4.0,,Island Records,"C (C) 2008 Modular Recordings, P (P) 2008 Modular Recordings",6644 +6645,spotify:track:7MfRi20CPCJAUYsGFqQ8EO,Where I'm Going,spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,spotify:album:4JTBXeHQ3n6koQtMxnWLJu,Zonoscope,spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,2011-01-01,https://i.scdn.co/image/ab67616d0000b27388bc48b6670ab2b29eb24bd4,1,3,214106,https://p.scdn.co/mp3-preview/5fa9830c83a93683ff5c50ea956a162c63080b60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71001982,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian electropop,electronic rock,electronica,indietronica,neo-synthpop",0.533,0.864,8.0,-4.403,1.0,0.0348,0.0208,0.772,0.138,0.733,120.999,4.0,,Modular,"C © 2011 Modular Recordings, P ℗ 2011 Modular Recordings",6645 +6646,spotify:track:5PBFhuXB9tgBaP31nfbkS5,Absolute Beginners - 2002 Remaster,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,spotify:album:4YfMtOTb3PcIbv5VI6zibX,Absolute Beginners,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,1986,https://i.scdn.co/image/ab67616d0000b2730a6abeb86588ba97c787dbbf,1,1,337666,https://p.scdn.co/mp3-preview/1ea394614d8c169cb05a605fea56a2b5fca5679e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USJT10500038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,glam rock,permanent wave,rock",0.563,0.77,2.0,-8.672,1.0,0.0388,0.0712,0.125,0.205,0.43,114.229,4.0,,Parlophone UK,"C © 2007 Jones Music licenced to Palace (Absolute Beginners) Ltd/Parlophone Records Ltd, P ℗ 2007 Jones Music licenced to Palace (Absolute Beginners) Ltd/Parlophone Records Ltd",6646 +6647,spotify:track:6eTBV3priotmOLPSeZOt8p,Let's Hang On,spotify:artist:3alW3LYQS8K29z8C8NSLIX,Barry Manilow,spotify:album:3MpSSZaWclTLukXc8tYK2J,Ultimate Manilow,spotify:artist:3alW3LYQS8K29z8C8NSLIX,Barry Manilow,2010-02-10,https://i.scdn.co/image/ab67616d0000b2736678c84196fcda49f0e029e6,1,10,186906,https://p.scdn.co/mp3-preview/cf133e5befc8336556731969127df3e347d15368?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USAR18300107,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock,yacht rock",0.608,0.819,8.0,-8.011,1.0,0.0851,0.0875,0.0,0.0882,0.795,136.155,4.0,,Arista,P (P) 2004 BMG Music,6647 +6648,spotify:track:4amvcCLMlTiU6mQfwFGRl8,21,spotify:artist:7H6dkUChT5EoOQtUVMg4cN,Hunter Hayes,spotify:album:5yrnYMemVncERhxLRtC9MN,21,spotify:artist:7H6dkUChT5EoOQtUVMg4cN,Hunter Hayes,2015-05-26,https://i.scdn.co/image/ab67616d0000b273fd8d53712501c9ac4a66af43,1,1,194480,https://p.scdn.co/mp3-preview/5fa1656ae65de31b36295d52b4df3a6461d25118?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USAT21501449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road,modern country rock",0.501,0.9,11.0,-4.366,1.0,0.0433,0.0586,0.0,0.218,0.943,160.096,4.0,,Atlantic Nashville,"C © 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",6648 +6649,spotify:track:0EXCM7BBtzXO3HdqkNIQUS,Hey Girl,"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:0IROOdQ2fQUcoaEPqt1Isg","Lady Gaga, Florence Welch",spotify:album:4JiY4JUvXdEA7UFIbiAyor,Joanne (Deluxe),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2016-10-21,https://i.scdn.co/image/ab67616d0000b273dd0b256c733c96b653ab5cde,1,10,255413,https://p.scdn.co/mp3-preview/21587d63f21e18af255c81a9fb8357d81af44b0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71609737,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop,uk pop",0.753,0.461,10.0,-7.898,1.0,0.0406,0.0516,5.15e-06,0.0668,0.586,138.048,4.0,,Universal Music Group,"C © 2016 Interscope Records, P ℗ 2016 Interscope Records",6649 +6650,spotify:track:3lCHADWP8ohxnfBiUqAN3o,This Is Me (From the Greatest Showman),spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:0Ubwwj4JBI6MVmOmEan8K8,This Is Me (From The Greatest Showman),spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2017-12-22,https://i.scdn.co/image/ab67616d0000b2737a2f78b77cbcdf63be946fdb,1,1,234886,https://p.scdn.co/mp3-preview/0fd28906c5aa540ae2742cca8322f49586ecfc8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USRC11703446,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.382,0.638,11.0,-4.516,0.0,0.041,0.0206,0.0,0.16,0.15,94.44,4.0,,Atlantic Records,"C © 2017 Kemosabe Records under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2017 Kemosabe Records under exclusive license to Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",6650 +6651,spotify:track:6wqU8x7HmQ2v2vJrFsNEVq,Praise You,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,spotify:album:05GPwRAsM5OvoICU7XChcS,Why Try Harder,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,2006-06-18,https://i.scdn.co/image/ab67616d0000b2735e4cbfe9ee4c58605d3e1007,1,2,227973,https://p.scdn.co/mp3-preview/c0a0d68a0cbe569814c1a02ea0eb0cc5f130c9a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBMQ0600005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica",0.621,0.885,1.0,-6.715,1.0,0.0467,0.0405,0.363,0.282,0.558,109.719,4.0,,Skint Records,"C Skint Records, P Skint Records",6651 +6652,spotify:track:6nRwc5GgNvBMkKaynhQzrm,What Do You Mean?,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:47ViKYy6DyjrbAL1LBWc22,What Do You Mean?,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-08-28,https://i.scdn.co/image/ab67616d0000b2733781f893aec9251308dddfe5,1,1,207546,https://p.scdn.co/mp3-preview/408d55c4d5d6383a57b93361b6e58d5e8916ebe3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71511919,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.841,0.571,5.0,-8.066,0.0,0.102,0.65,0.00033,0.0895,0.772,125.032,4.0,,Universal Music Group,"C (C) 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P (P) 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",6652 +6653,spotify:track:7cdbmTjUrOsJViLFddO0xz,When I'm With You,spotify:artist:7pwjGKaqnfkvS7eQbHaqyH,Sparks,spotify:album:4VLxLHCbKBhtsM09X9gMMj,Terminal Jive,spotify:artist:7pwjGKaqnfkvS7eQbHaqyH,Sparks,1980,https://i.scdn.co/image/ab67616d0000b2736bb1f318a4bdfb26878fb288,1,1,348733,https://p.scdn.co/mp3-preview/15a030d6410816d38dbf888c9e8507d64c25de33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USSK40710086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,synthpop,zolo",0.719,0.727,0.0,-9.828,1.0,0.0286,0.142,0.0025,0.101,0.931,119.495,4.0,,Lil Beethoven Records,"C (C) 1980 Lil' Beethoven, P (P) 1980 Lil' Beethoven",6653 +6654,spotify:track:4Dm8Fvuapc297EHBxkuc28,Black and Blue,spotify:artist:2hnvTF9jhYWs6iEWdmJ50b,Chain,spotify:album:5EXg1kv5Md8V9wvSJ7cmZ7,The Very Best Of Chain,spotify:artist:2hnvTF9jhYWs6iEWdmJ50b,Chain,2007-02-06,https://i.scdn.co/image/ab67616d0000b273e20d3d7576e8e966bcace8d3,1,2,291266,https://p.scdn.co/mp3-preview/ff47913e79d4e4a0dc2987b95aa6c27f57904576?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUFE07800005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.561,0.372,2.0,-13.332,0.0,0.161,0.32,0.000667,0.128,0.627,107.117,4.0,,WM Australia,"C © 1992 Festival Records, P ℗ 1974 Mushroom Records",6654 +6655,spotify:track:2Z8yfpFX0ZMavHkcIeHiO1,Monster (Shawn Mendes & Justin Bieber),"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Shawn Mendes, Justin Bieber",spotify:album:3yVVL2EYLp8g7gT08VvYKy,Monster,"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Shawn Mendes, Justin Bieber",2020-11-20,https://i.scdn.co/image/ab67616d0000b27312e57573cbc551c187a96107,1,1,178994,https://p.scdn.co/mp3-preview/1d88b53ff29099f2f07ab014074921a6ae2598d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM72018810,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop,canadian pop,pop",0.652,0.383,2.0,-7.076,0.0,0.0516,0.0676,0.0,0.0828,0.549,145.765,4.0,,Shawn Mendes LP4-5 PS/ Island,"C © 2020 Island Records/Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2020 Island Records/Def Jam Recordings, a division of UMG Recordings, Inc.",6655 +6656,spotify:track:34gCuhDGsG4bRPIf9bb02f,Thinking out Loud,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:1xn54DMo2qIqBuMqHtUsFd,x (Deluxe Edition),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2014-06-21,https://i.scdn.co/image/ab67616d0000b27313b3e37318a0c247b550bccd,1,11,281560,https://p.scdn.co/mp3-preview/7b5d54ffb3c4e5c28adafe19532de22508d62851?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBAHS1400099,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.781,0.445,2.0,-6.061,1.0,0.0295,0.474,0.0,0.184,0.591,78.998,4.0,,Atlantic Records UK,"C © 2014 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 Asylum Records UK, a Warner Music UK Company, except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",6656 +6657,spotify:track:5ELRkzdzz0HvGpMDlfZHkV,Sign of the Times,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,spotify:album:6YDkzHVTEzMXZOVd1r5NqR,Sign of the Times,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,2017-04-07,https://i.scdn.co/image/ab67616d0000b273cf4c6008624aaa58c5ea049a,1,1,340706,https://p.scdn.co/mp3-preview/3f885fdef493aadb403fc2657a605d2f5623b111?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USSM11703595,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.518,0.575,5.0,-4.616,1.0,0.0302,0.0259,0.0,0.109,0.209,120.019,4.0,,Columbia,"P (P) 2017 Erskine Records Limited, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",6657 +6658,spotify:track:56z2qI0gKcPthQF6l8AW3E,Bust Your Windows,spotify:artist:7gSjFKpVmDgC2MMsnN8CYq,Jazmine Sullivan,spotify:album:2V99Z0aZgSK6XTbh19UYTU,Fearless,spotify:artist:7gSjFKpVmDgC2MMsnN8CYq,Jazmine Sullivan,2008-09-23,https://i.scdn.co/image/ab67616d0000b273ebcc9144c41ae7d42efe6d94,1,1,266306,https://p.scdn.co/mp3-preview/65ee3b1158f1a470d7eb04c9dc7b47ee454d0a2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USJAY0800118,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,neo soul,r&b,urban contemporary",0.683,0.664,5.0,-4.233,0.0,0.0332,0.538,0.0,0.0671,0.866,106.991,4.0,,J Records,P (P) 2008 Sony Music Entertainment,6658 +6659,spotify:track:3odrUVQ9tvRpkC9II2oWzx,"Still Falling For You - From ""Bridget Jones's Baby""",spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:6YIaqFvhOWma5gbjcB18Nu,"Still Falling For You (From ""Bridget Jones's Baby"" Original Motion Picture Soundtrack)",spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2016-08-19,https://i.scdn.co/image/ab67616d0000b273dc12b2bd6884bd1de21b6bae,1,1,240867,https://p.scdn.co/mp3-preview/e695899e10e6c5d4969608b586e9241f8c32a223?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBUM71603863,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.473,0.518,1.0,-8.1,1.0,0.0405,0.553,1.26e-06,0.111,0.18,96.129,4.0,,Polydor Records,"C © 2016 Polydor Ltd. (UK), P ℗ 2016 Polydor Ltd. (UK)",6659 +6660,spotify:track:77lqbary6vt1DSc1MBN6sx,You Were Right,spotify:artist:5Pb27ujIyYb33zBqVysBkj,RÜFÜS DU SOL,spotify:album:396Y1EKWxeJt2Yh3Da1for,Bloom,spotify:artist:5Pb27ujIyYb33zBqVysBkj,RÜFÜS DU SOL,2016-01-22,https://i.scdn.co/image/ab67616d0000b273de342b284f5dc7e0257fe38c,1,4,239417,https://p.scdn.co/mp3-preview/345302a05bee2c1e83ce328a365e130e74666a31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUDCB1500501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian electropop,indietronica",0.708,0.793,5.0,-5.426,0.0,0.0342,0.0136,0.00221,0.118,0.734,122.006,4.0,,Sweat It Out,P (P) 2015 Sweat It Out Music! Distributed in Australia & New Zealand by Sony Music Australia Pty Ltd under exclusive license.,6660 +6661,spotify:track:3DzwsdqmeL60taVeshJ8WP,Have I the Right,spotify:artist:2322gLwXvyJa6PejhOWQEH,The Honeycombs,spotify:album:03w1fpcR2onosCuThlOpY1,The Best Of The Honeycombs,spotify:artist:2322gLwXvyJa6PejhOWQEH,The Honeycombs,1993-02-22,https://i.scdn.co/image/ab67616d0000b2731922522992fca091e4cf98fa,1,1,178040,https://p.scdn.co/mp3-preview/4aa54d5fd3b8ce7b170611ab908e1d515122143e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAYE6400167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.368,0.891,1.0,-8.067,0.0,0.26,0.024,0.000611,0.194,0.527,142.216,4.0,,Parlophone UK,"C © 1993 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1993 Parlophone Records Ltd, a Warner Music Group Company",6661 +6662,spotify:track:4XFpv5UVipgzpCo3gHcmVC,First Of May,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:2d39u1iJ7lw4XcH5RDRU3p,Odessa,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1969-01-01,https://i.scdn.co/image/ab67616d0000b273e29a43cd1e09549ebad84ac8,1,15,170493,https://p.scdn.co/mp3-preview/cae0f132a845e3f4bd7c5c8cd2b88dafb0805bc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW6901024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.332,0.243,2.0,-15.533,1.0,0.0325,0.507,7.7e-06,0.0592,0.227,61.669,4.0,,Bee Gees Catalog,"C © 1969 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 1969 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",6662 +6663,spotify:track:5JLv62qFIS1DR3zGEcApRt,Wide Awake,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:5BvgP623rtvlc0HDcpzquz,Teenage Dream: The Complete Confection,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2012-03-12,https://i.scdn.co/image/ab67616d0000b273937af329667311f4b2831616,1,15,220946,https://p.scdn.co/mp3-preview/be375e6bf47abd0ff90e3f505492459dbe72fda7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USCA21200932,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.515,0.683,5.0,-5.099,1.0,0.0371,0.0749,2.64e-06,0.392,0.572,159.878,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",6663 +6664,spotify:track:25ZttbpeUKDOm3aghD2oBJ,I Kissed A Girl,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:1vFFZPioAu0vrJRcGoyGX8,One Of The Boys,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2008,https://i.scdn.co/image/ab67616d0000b27331cc26681b0164332fa26634,1,2,179640,https://p.scdn.co/mp3-preview/56bdae448715b177ad46f9ac3e1e74627f359c83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USCA20801738,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.702,0.76,5.0,-3.174,1.0,0.0684,0.00226,0.0,0.132,0.696,129.996,4.0,,Capitol Records,"C © 2009 Capitol Records, LLC, P ℗ 2009 Capitol Records, LLC",6664 +6665,spotify:track:3DwbvNzaTGa3tHlz79lHfr,It's a Long Way to the Top,spotify:artist:3vE2xZG4i70fweJzQpZCRN,Highway to Hell,spotify:album:1lpdciJsUo9mkcqFHpFsTx,Thunderstruck,spotify:artist:3vE2xZG4i70fweJzQpZCRN,Highway to Hell,2012-11-01,https://i.scdn.co/image/ab67616d0000b2734c0ad3712535fb0f08b86c33,1,9,339653,https://p.scdn.co/mp3-preview/f9ce5694983047f348534389527c4304cc82698e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,USA561402494,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.49,0.885,2.0,-4.679,1.0,0.087,0.000134,0.0012,0.0464,0.527,135.851,4.0,,Big Eye Music,C (C) 2012 Big Eye Music,6665 +6666,spotify:track:1Id10jAz9LyLbTG2i7MguG,Linger,spotify:artist:7t0rwkOPGlDPEhaOcVtOt9,The Cranberries,spotify:album:1LpVxsR7RzUautz7uvD0T4,Stars: The Best Of The Cranberries 1992-2002,spotify:artist:7t0rwkOPGlDPEhaOcVtOt9,The Cranberries,2002-09-16,https://i.scdn.co/image/ab67616d0000b2735948a041db757447e8aa7931,1,2,274773,https://p.scdn.co/mp3-preview/7b68bf72ebc1138e44a5e285d5698a715ea1d46e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR29300085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,pop rock,rock",0.447,0.64,7.0,-8.706,1.0,0.0271,0.081,4.79e-05,0.34,0.181,94.854,4.0,,Universal Music Group,"C © 2002 The Island Def Jam Music Group, P ℗ 2002 The Island Def Jam Music Group",6666 +6667,spotify:track:39w4Xgs8FvY2SJmZsHKn2K,Always On Time,"spotify:artist:1J2VVASYAamtQ3Bt8wGgA6, spotify:artist:5rkVyNGXEgeUqKkB5ccK83","Ja Rule, Ashanti",spotify:album:2iIIgsaTEtVjDhrV7HKDJC,Pain Is Love,spotify:artist:1J2VVASYAamtQ3Bt8wGgA6,Ja Rule,2001-10-02,https://i.scdn.co/image/ab67616d0000b2734e351086ebd36cebf0e5afc7,1,5,244970,https://p.scdn.co/mp3-preview/d5e9db2feaa1078371bd95f35a06ac768e4b9c0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USDJ20110836,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,gangster rap,hip hop,hip pop,pop rap,queens hip hop,rap,urban contemporary,dance pop,hip pop,r&b,urban contemporary",0.851,0.648,5.0,-7.479,0.0,0.209,0.219,0.0,0.355,0.864,96.606,4.0,,Universal Records,"C © 2001 UMG Recordings, Inc., P ℗ 2001 UMG Recordings, Inc.",6667 +6668,spotify:track:3sG2Tj4m8oiXiRL8a7K73p,Calling Occupants Of Interplanetary Craft (The Recognized Anthem Of World Contact Day),spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,spotify:album:6TxgwA13KnRl3Lkoyfd4Tu,Passage,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,1977-01-01,https://i.scdn.co/image/ab67616d0000b2730416971a64295d4b070fac1b,1,8,425893,https://p.scdn.co/mp3-preview/51b7ed5aa6d66813412c056dec896d295bde7a5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM17700059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock",0.423,0.274,11.0,-14.544,1.0,0.053,0.411,0.000607,0.476,0.309,130.628,4.0,,Universal Special Markets,"C © 1977 A&M Records, P ℗ 1977 UMG Recordings, Inc.",6668 +6669,spotify:track:16Of7eeW44kt0a1M0nitHM,You Make Me Feel... (feat. Sabi),"spotify:artist:2aYJ5LAta2ScCdfLhKgZOY, spotify:artist:3tB8VKd0rtEnc9x8l78ymo","Cobra Starship, Sabi",spotify:album:5gXDrzBIzmAhiE0dNKwy0i,Night Shades,spotify:artist:2aYJ5LAta2ScCdfLhKgZOY,Cobra Starship,2011-08-29,https://i.scdn.co/image/ab67616d0000b273a4c01842096428fb14859bdc,1,2,215693,https://p.scdn.co/mp3-preview/33df42e0397bd8d33cf360bb948218746844b9a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT21100959,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neon pop punk,pop punk,post-teen pop",0.668,0.857,7.0,-2.944,0.0,0.0535,0.0191,6.71e-06,0.0385,0.748,131.959,4.0,,Decaydance/Fueled By Ramen,"C © 2011 Fueled By Ramen, LLC for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2011 Fueled By Ramen, LLC for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",6669 +6670,spotify:track:0sWXjRFc91iTzq3fR1ce0t,Latch,"spotify:artist:6nS5roXSAGhTGr34W6n7Et, spotify:artist:2wY79sveU1sp5g7SokKOiI","Disclosure, Sam Smith",spotify:album:6jHuoYWYIijzSwpDewR9ia,Settle (Deluxe Version),spotify:artist:6nS5roXSAGhTGr34W6n7Et,Disclosure,2013-01-01,https://i.scdn.co/image/ab67616d0000b27329418c3da18fcdc7bf91a210,1,3,255631,https://p.scdn.co/mp3-preview/733fff5cce9ecc2127aa9a4e6413c62aecc93b98?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71302810,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,house,indietronica,uk dance,pop,uk pop",0.727,0.726,1.0,-5.453,1.0,0.0989,0.0155,9.1e-05,0.0899,0.591,121.989,4.0,,Universal Music Group,"C © 2013 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2013 Universal Island Records, a division of Universal Music Operations Limited",6670 +6671,spotify:track:5v1wVJmKKlbb7hxMKQu3Ic,Invincible (feat. Kelly Rowland),"spotify:artist:0Tob4H0FLtEONHU1MjpUEp, spotify:artist:3AuMNF8rQAKOzjYppFNAoB","Tinie Tempah, Kelly Rowland",spotify:album:5vfUKFja5yx8a3TlrxjsjW,Disc-Overy,spotify:artist:0Tob4H0FLtEONHU1MjpUEp,Tinie Tempah,2010,https://i.scdn.co/image/ab67616d0000b27391725b43d5434e9a6010aeb5,1,14,201026,https://p.scdn.co/mp3-preview/3c957b4f7a16fef6f6770e6de24ccb8668f48245?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GB7TP0900086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,grime,pop rap,atl hip hop,dance pop,hip pop,r&b,urban contemporary",0.684,0.788,8.0,-5.253,1.0,0.0411,0.06,0.0,0.144,0.339,137.983,4.0,,Parlophone UK,"C © 2011 Disturbing London Records Limited under exclusive licence to Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 2011 Parlophone Records Ltd, P ℗ 2011 The copyright in this sound recording is owned by Disturbing London Records Limited under exclusive licence to Parlophone Records Ltd",6671 +6672,spotify:track:4gphxUgq0JSFv2BCLhNDiE,Jailhouse Rock,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0C3t1htEDTFKcg7F2rNbek,Elvis' Golden Records,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1958-03-21,https://i.scdn.co/image/ab67616d0000b27320ee3e86e17f17239bef1f76,1,5,146480,https://p.scdn.co/mp3-preview/dfdeb40e04e26bff50cf5a89cb68cdc4228fcea4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRC15705223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.647,0.582,10.0,-9.538,0.0,0.0755,0.41,1.93e-06,0.0715,0.915,167.396,4.0,,RCA Records Label,P (P) 1958 Sony Music Entertainment,6672 +6673,spotify:track:7kzKAuUzOITUauHAhoMoxA,Last Nite,spotify:artist:0epOFNiUfyON9EYx7Tpr6V,The Strokes,spotify:album:2yNaksHgeMQM9Quse463b5,Is This It,spotify:artist:0epOFNiUfyON9EYx7Tpr6V,The Strokes,2001-07-30,https://i.scdn.co/image/ab67616d0000b273a388a3f20d1bf2123249cc79,1,7,193506,https://p.scdn.co/mp3-preview/9757c503fb2174e4db5ff087bb14d5d7d0b8f62a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USRC10100765,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,garage rock,modern rock,permanent wave,rock",0.624,0.91,0.0,-5.703,1.0,0.0297,0.0285,0.000198,0.0789,0.767,104.042,4.0,,RCA Records Label,P (P) 2001 The Strokes,6673 +6674,spotify:track:5S4J5QVt1X0ZACiPOrOCoq,Happiness,spotify:artist:5LmYIx9kSWBJOWbP4xAxb1,Alexis Jordan,spotify:album:6W0rJuDT17aWbYca3dzzz6,Alexis Jordan,spotify:artist:5LmYIx9kSWBJOWbP4xAxb1,Alexis Jordan,2011,https://i.scdn.co/image/ab67616d0000b2733686cd552982079a7d5d13f0,1,1,243666,https://p.scdn.co/mp3-preview/cd2f957a778dff02c409822e1849ba2711656a85?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USQX91000209,spotify:user:bradnumber1,2021-08-08T09:26:31Z,talent show,0.711,0.748,8.0,-7.318,1.0,0.131,0.133,0.0,0.461,0.489,127.99,4.0,,Star Roc/Roc Nation/Columbia,P (P) 2010 Star Roc LLC,6674 +6675,spotify:track:1fn6EFBBNiDVhL3DxDDJTD,Bring It All Back,spotify:artist:0HNGrIbq1ZNO2mTp3tMW4L,S Club,spotify:album:6QanSklvTjKC0M7CTQb3t6,S Club,spotify:artist:0HNGrIbq1ZNO2mTp3tMW4L,S Club,1999-01-01,https://i.scdn.co/image/ab67616d0000b2737f3e01076cca00e318afec5c,1,1,213600,https://p.scdn.co/mp3-preview/848d9b0fa6c9bdb43421bf9e838db47a09f5e2d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCVL9900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,dance pop,europop,talent show",0.675,0.895,4.0,-4.904,1.0,0.0484,0.319,0.0,0.369,0.824,108.093,4.0,,Polydor,"C © 1999 Polydor Ltd. (UK), P ℗ 1999 S Club Ltd.",6675 +6676,spotify:track:2ze7s5CrESggiWA3RpDYIy,I'm Like A Bird,spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,spotify:album:0on8zrPIIlANtVlNw6Uea7,"Whoa, Nelly! (Special Edition)",spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,2008-01-01,https://i.scdn.co/image/ab67616d0000b27335d2e2896ba7cf1e76069404,1,5,243160,https://p.scdn.co/mp3-preview/a0d8811372d3a419cb16f8b1136ca38d12d4d888?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10021812,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian latin,canadian pop,dance pop,pop",0.622,0.616,10.0,-5.107,1.0,0.0349,0.147,3.87e-06,0.218,0.598,89.673,4.0,,Universal Music Group,"C © 2008 Geffen Records, P ℗ 2008 Geffen Records",6676 +6677,spotify:track:3p328cTIa6tenIR4fOn11F,Another Love Song,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:6oe4x2Bid62TQn5g8Bobzd,Another Love Song,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2017-05-30,https://i.scdn.co/image/ab67616d0000b27320459856a2b31c86e7421512,1,1,211022,https://p.scdn.co/mp3-preview/3d77d65edfad9915153fbdd25b310d966a67bb71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71704383,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.679,0.808,11.0,-3.663,0.0,0.0538,0.0297,1.11e-06,0.355,0.752,115.057,4.0,,Universal Music Group,"C © 2017 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2017 Motown Records, a Division of UMG Recordings, Inc.",6677 +6678,spotify:track:2FOPJIJvirxmqIVeAqeTx2,Why Don't You,spotify:artist:7jHmmW2bBagmzr76ZJW8Bc,Gramophonedzie,spotify:album:4ZfqRwgb84jZYv6SVTYT6X,Why Don't You,spotify:artist:7jHmmW2bBagmzr76ZJW8Bc,Gramophonedzie,2010-01-01,https://i.scdn.co/image/ab67616d0000b273f0a50b380fe66f8a931be071,1,1,171020,https://p.scdn.co/mp3-preview/b5d0fd8ccabd4e9ab720a547ebcd16499ccbeae6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAA0900967,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electro swing,0.774,0.733,0.0,-5.63,1.0,0.151,0.0695,0.0103,0.0475,0.404,125.116,4.0,,Positiva/Virgin,"C © 2010 Virgin Records Ltd, P ℗ 2010 Virgin Records Ltd",6678 +6679,spotify:track:4g1mUYce5ljbbacvCfAQVQ,Innocent Eyes,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:26h1O5W89WLiEzxTztbGfu,Innocent Eyes,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2003-03-21,https://i.scdn.co/image/ab67616d0000b273da57f76f2fc20c1ed0bede9b,1,2,233693,https://p.scdn.co/mp3-preview/61cc05c656790e66682ff19b152f207b6d51b3af?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUSM00300005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.553,0.717,9.0,-5.502,0.0,0.026,0.0659,0.0,0.114,0.419,92.098,4.0,,Epic,P (P) 2002/2003 Sony Music Entertainment (Australia) Limited,6679 +6680,spotify:track:7lrIYVaHBzP9mz8sEFChiq,Days Go By - Radio Edit,spotify:artist:2IkHcHKErbWa0TA14yHkbl,Dirty Vegas,spotify:album:6lF3xY1CDqokXI5RgPVvB5,Dirty Vegas,spotify:artist:2IkHcHKErbWa0TA14yHkbl,Dirty Vegas,2002,https://i.scdn.co/image/ab67616d0000b273d8868b0e78659c2b15bd0e40,1,13,222800,https://p.scdn.co/mp3-preview/f90d14bd70ba6e4e614385eb858d5feabf2041ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBAYE0200599,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.763,0.645,0.0,-10.608,1.0,0.0455,0.118,0.00283,0.306,0.593,126.967,4.0,,New State Music,"C 2017 New State Entertainment Ltd, P 2002 New State Entertainment Ltd",6680 +6681,spotify:track:6Amt2E3nanH9lhZnas9oOs,Run to Paradise,spotify:artist:2u6qHMpQaE48aowjWKJeCM,Choirboys,spotify:album:2RUPcjcTFN1B4jxYe4RsIF,Big Bad Noise,spotify:artist:2u6qHMpQaE48aowjWKJeCM,Choirboys,1987,https://i.scdn.co/image/ab67616d0000b273a3a6751bbf9ebc1e966ecd5b,1,1,251586,https://p.scdn.co/mp3-preview/9db7c3fc6329fca75bdbeae9e87436709513ea47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,AUMU08700000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.698,0.71,9.0,-8.569,1.0,0.0452,0.161,0.0828,0.0489,0.691,138.797,4.0,,WM Australia,"C © 1987 MUSHROOM RECORDS Pty Limited, P ℗ 1987 MUSHROOM RECORDS Pty Limited",6681 +6682,spotify:track:46RVKt5Edm1zl0rXhPJZxz,Down Under,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,spotify:album:6GYIy1SuhPDrugCZ5yNeQy,The Best Of Men At Work: Contraband,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,1996-02-01,https://i.scdn.co/image/ab67616d0000b273d6a1f7a12629154fa274631f,1,2,220866,https://p.scdn.co/mp3-preview/495cef21e5710283a62c8e0663689d5f56e12fec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM18100058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,rock,soft rock",0.746,0.79,11.0,-4.7,0.0,0.0257,0.0485,0.0261,0.0534,0.891,107.231,4.0,,Columbia,P (P) 1996 Sony Music Entertainment Inc.,6682 +6683,spotify:track:7zndEhQgtSXQ0aWKq35ims,Head over Feet - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,spotify:album:0VrE5rgQmrasa6Kg7GKqKE,Jagged Little Pill (Collector's Edition),spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,2015-10-30,https://i.scdn.co/image/ab67616d0000b273572eeb58e8ee977b3658b67f,1,8,267293,https://p.scdn.co/mp3-preview/1a66a41631f4c58973ecb338ed9305ad2a802d23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USMV21500008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,lilith,neo mellow,pop rock,singer-songwriter",0.482,0.808,0.0,-7.176,1.0,0.065,0.0562,0.0,0.202,0.438,79.599,4.0,,Rhino/Warner Records,"C © 2015 Maverick Recording Company. All Rights Reserved, P ℗ 2015 Maverick Recording Company. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",6683 +6684,spotify:track:5eBGedPUpCpi3Ww3OwiKMz,Search My Heaven,spotify:artist:2nnKVDTsTBYyf3wvsRmKBr,Aleesha Rome,spotify:album:4PS5Cwv0HJDriH50sfWnUI,Aleesha Rome,spotify:artist:2nnKVDTsTBYyf3wvsRmKBr,Aleesha Rome,2000-01-01,https://i.scdn.co/image/ab67616d0000b273714f049e688702032fb77de0,1,1,234226,https://p.scdn.co/mp3-preview/522eaad82bb8872fa06116d80e61b0143b528d28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP09900007,spotify:user:bradnumber1,2023-06-21T02:41:54Z,,0.251,0.82,2.0,-5.465,1.0,0.127,0.271,0.0,0.0698,0.655,171.985,3.0,,Albert Music,"C © 2000 BMG AM Pty Ltd., P ℗ 2000 BMG AM Pty Ltd.",6684 +6685,spotify:track:7wawEkN4nhPqSBWleGvdxa,You Took The Words Right Out of My Mouth (Hot Summer Night),spotify:artist:7dnB1wSxbYa8CejeVg98hz,Meat Loaf,spotify:album:6mvI80w5r78niBmwtu7RF9,Bat Out Of Hell,spotify:artist:7dnB1wSxbYa8CejeVg98hz,Meat Loaf,1977-10-21,https://i.scdn.co/image/ab67616d0000b2734111af27787499f6d8752e9f,1,2,304440,https://p.scdn.co/mp3-preview/6d4885916fc8dc01bbf379173a652d6987f90daa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM11206825,spotify:user:bradnumber1,2021-08-08T09:26:31Z,album rock,0.459,0.681,2.0,-8.773,1.0,0.0794,0.254,0.0,0.498,0.68,125.02,4.0,,Cleveland International/ Epic/Legacy,"P (P) 1977, 2012 Sony Music Entertainment",6685 +6686,spotify:track:03NqHNdG3Ur6kciQWK6e8V,Oh Na Na,"spotify:artist:4nDoRrQiYLoBzwC5BhVJzF, spotify:artist:7iK8PXO48WeuP03g8YR51W, spotify:artist:0GM7qgcRCORpGnfcN2tCiB","Camila Cabello, Myke Towers, Tainy",spotify:album:6gkAMKnELz3nS8KtSDTPko,Oh Na Na,"spotify:artist:4nDoRrQiYLoBzwC5BhVJzF, spotify:artist:7iK8PXO48WeuP03g8YR51W, spotify:artist:0GM7qgcRCORpGnfcN2tCiB","Camila Cabello, Myke Towers, Tainy",2021-10-29,https://i.scdn.co/image/ab67616d0000b273769bf4e2c1a6d53b2d442d43,1,1,203652,https://p.scdn.co/mp3-preview/9eeb1ec958912ffe7dbcc127e5aefecaf1e231ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USSM12105951,spotify:user:bradnumber1,2021-11-20T11:34:36Z,"dance pop,pop,reggaeton,trap latino,urbano latino,pop reggaeton,reggaeton,trap latino,urbano latino",0.744,0.862,0.0,-3.446,1.0,0.0622,0.0715,5.58e-06,0.0889,0.688,115.021,4.0,,Epic,"P (P) 2021 Epic Records, a division of Sony Music Entertainment",6686 +6687,spotify:track:5WDLRQ3VCdVrKw0njWe5E5,Careless Whisper,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:0IJcpy0eM4o63J43qij68g,Ladies & Gentlemen,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1998-11-09,https://i.scdn.co/image/ab67616d0000b273813629baee66b2ec5f90ebee,1,3,300106,https://p.scdn.co/mp3-preview/d9fb0097bda0af017d92fa167b9349f5eed0e609?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBBBM8402006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.575,0.643,2.0,-8.854,0.0,0.0331,0.136,1.65e-06,0.249,0.789,152.854,4.0,,Epic,P This compilation (P) 2011 Sony Music Entertainment UK Limited,6687 +6688,spotify:track:58T42EHzjUhLYtbvh5NK78,Hey Mama,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:62lT9e1rDpiMvnpntSPrkU,Elephunk,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2003-01-01,https://i.scdn.co/image/ab67616d0000b27316011543697151e939f4bbcb,1,4,214893,https://p.scdn.co/mp3-preview/6d2cd9e322b5cfdc463786e24df4e2b228de2dc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10311890,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.86,0.866,4.0,-6.345,0.0,0.232,0.104,1.42e-06,0.584,0.933,100.15,4.0,,A&M,"C © 2003 Interscope Records, P ℗ 2003 Interscope Records",6688 +6689,spotify:track:6wVViUl2xSRoDK2T7dMZbR,Bizarre Love Triangle,spotify:artist:0yNLKJebCb8Aueb54LYya3,New Order,spotify:album:0PSWY4XyjTWppfBb0tBtqu,Brotherhood (Collector's Edition),spotify:artist:0yNLKJebCb8Aueb54LYya3,New Order,1986-09-29,https://i.scdn.co/image/ab67616d0000b273530a2c5dd17d2ddf8edc2978,1,6,263213,https://p.scdn.co/mp3-preview/6fba085e79ac8124665ced75f85bdf2af668b6e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBCRL0800398,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,madchester,new romantic,new wave,permanent wave,post-punk,synthpop,uk post-punk",0.613,0.885,10.0,-7.463,1.0,0.052,0.0804,0.746,0.0997,0.919,118.506,4.0,,Rhino/Warner Records,"C © 2008 London Records 90 Ltd., P ℗ 2008 London Records 90 Ltd. Marketed by Rhino Entertainment Company, a Warner Music Group Company",6689 +6690,spotify:track:5600nq7TiBraBX2jobyJ3l,"Swan Song - From the Motion Picture ""Alita: Battle Angel""",spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:11u8ZjrMHunQFg7l3nfDaX,"Swan Song (From the Motion Picture ""Alita: Battle Angel"")",spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2019-01-24,https://i.scdn.co/image/ab67616d0000b273b75e062b52a8bbee368b70b6,1,1,182074,https://p.scdn.co/mp3-preview/f0c5ee41328b2608305b436efd5def3f15db029c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAHT1900097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.588,0.821,5.0,-6.54,0.0,0.216,0.00579,0.000275,0.208,0.509,188.098,4.0,,Warner Records,"C © 2019 Dua Lipa Limited under exclusive license to Warner Music UK Limited, P ℗ 2019 Dua Lipa Limited under exclusive license to Warner Music UK Limited",6690 +6691,spotify:track:23KP6gh1zMH6XPfu9bBLZT,It Hurts To Be In Love,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,spotify:album:6gJ1d3KgMLwEKeck53FYxc,The Best Of Gene Pitney,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,2019-04-17,https://i.scdn.co/image/ab67616d0000b273fb4c46e199dfc54f5400ba69,1,9,154026,https://p.scdn.co/mp3-preview/ec25e0bf8599674a202b91eeb1cc9238490386cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,merseybeat,rock-and-roll,rockabilly",0.592,0.596,6.0,-10.921,1.0,0.0434,0.0637,0.0,0.0796,0.892,129.99,4.0,,Musicor Records,"C 1984 Gusto Records Inc., P 1984 Gusto Records Inc.",6691 +6692,spotify:track:2ZhmwDRCwGltlcc9Dntp8a,One's On The Way - Single Version,spotify:artist:1FE0rls8gfQT3laAeRYNgl,Loretta Lynn,spotify:album:2Fk1fXwRNqdEdcfLuCrGxl,Gold,spotify:artist:1FE0rls8gfQT3laAeRYNgl,Loretta Lynn,2006-01-01,https://i.scdn.co/image/ab67616d0000b273de7f832cfe269f7b88be855a,2,3,157573,https://p.scdn.co/mp3-preview/523307ebcc1eee7844fb8462df5c2f14e0bb8703?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC17123620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,country rock,nashville sound",0.667,0.281,1.0,-12.672,1.0,0.0557,0.871,0.000111,0.0806,0.846,136.797,4.0,,Universal Strategic Marketing,"C © 2006 MCA Nashville, P ℗ 2006 MCA Nashville",6692 +6693,spotify:track:7rihwQCra6hvN6cf68Etin,Early Warning,spotify:artist:2DaDoR6WXStRctDQDWWQpI,Baby Animals,spotify:album:4Sd3uOATuD3djWajs4JA4E,Baby Animals (25th Anniversary - Deluxe Edition),spotify:artist:2DaDoR6WXStRctDQDWWQpI,Baby Animals,1991-05-20,https://i.scdn.co/image/ab67616d0000b273ef4f54b93ce5c09e370f2beb,1,2,236106,https://p.scdn.co/mp3-preview/928f6106fbf79934d736d52988d56a0f20ce118f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AULI00743410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.431,0.954,8.0,-2.838,1.0,0.071,6.74e-05,0.00527,0.345,0.571,125.519,4.0,,Bloodlines,"C 2016 Bloodlines, P 2016 Bloodlines",6693 +6694,spotify:track:2ypwlOO0Z3NfammOQgOey3,Bent - 2007 Remaster,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:0oFlNGmGpsFvvhBgnNPirh,Exile on Mainstream,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2007-10-02,https://i.scdn.co/image/ab67616d0000b273bc9e3b023cf66fd1e9aae44c,1,12,257399,https://p.scdn.co/mp3-preview/e265e2c09e915fa77e52a53a72641e3dcda0a4fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USAT20704544,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.528,0.863,6.0,-5.772,0.0,0.0368,0.0616,7.48e-06,0.355,0.575,95.468,4.0,,Atlantic Records,"C © 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",6694 +6695,spotify:track:7MPyCqsJcpRaMYM1UTP2Y6,This City - Luca Schreiner Remix,"spotify:artist:6L1XC7NrmgWRlwAeLJvVtA, spotify:artist:5fiYAV2DWASxAUKDq7Gbe9","Sam Fischer, Luca Schreiner",spotify:album:6yMrDicqghV06nlPxxJLLI,This City (Luca Schreiner Remix),"spotify:artist:6L1XC7NrmgWRlwAeLJvVtA, spotify:artist:5fiYAV2DWASxAUKDq7Gbe9","Sam Fischer, Luca Schreiner",2020-02-21,https://i.scdn.co/image/ab67616d0000b273fb4780a8e8c3fae6a2552860,1,1,176666,https://p.scdn.co/mp3-preview/8cffab506697c72710e2aa4ff1be18e36074e924?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBARL1901427,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,singer-songwriter pop,german dance",0.421,0.616,6.0,-5.637,1.0,0.209,0.298,0.0,0.114,0.299,169.359,4.0,,RCA Records Label,P (P) 2020 Sony Music Entertainment UK Limited,6695 +6696,spotify:track:4YieJ8UoB4t4w8Ua0N3nGv,Cool for the Summer,spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,spotify:album:5Q2UCYr67vEfrueFndo434,Confident - Deluxe Edition,spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,2015-01-01,https://i.scdn.co/image/ab67616d0000b273868d76cd222381962b36c48b,1,2,214739,https://p.scdn.co/mp3-preview/ff471fb806c4ed60c339106f27830f31ff2f9c36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USHR11536652,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.581,0.609,10.0,-5.6,0.0,0.0357,0.00366,0.000147,0.13,0.312,114.048,4.0,,Hollywood Records,"C © 2015 Hollywood Records, Inc. & Island Records, a division of UMG Recordings, Inc., P ℗ 2015 Hollywood Records, Inc. & Island Records, a division of UMG Recordings, Inc.",6696 +6697,spotify:track:4FyyPGjdvNu3UMqnEUGIdx,Firestarter,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,spotify:album:3MR0kGhBCS55LimdxZDojV,Firestarter,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,2013-06-28,https://i.scdn.co/image/ab67616d0000b273ee6e84798346c473527b376e,1,1,197106,https://p.scdn.co/mp3-preview/4eb749aaab5b27cd25e0f47560ae207cf4396c5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUBM01300119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.713,0.934,7.0,-2.94,0.0,0.0341,0.0517,3.75e-05,0.0721,0.902,128.945,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,6697 +6698,spotify:track:57uX2vR9j9DNiANDYfXw1i,Never Say Never,spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,spotify:album:3ibdlhMmbFPMYoWvwHCzI3,The Fray,spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,2009-02-02,https://i.scdn.co/image/ab67616d0000b27392b32435efed601fc8f1045d,1,5,256613,https://p.scdn.co/mp3-preview/4d9ee587724b18a37a63238c2245a6f7c05d3755?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM10805070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop,pop rock",0.23,0.492,8.0,-5.767,1.0,0.0317,0.568,8.18e-06,0.176,0.262,160.139,4.0,,Epic,P (P) 2009 Sony Music Entertainment,6698 +6699,spotify:track:3uWKBRX4f4NrlHqAEz0zam,Young And Beautiful [Lana Del Rey vs. Cedric Gervais] - Cedric Gervais Remix Radio Edit,"spotify:artist:00FQb4jTyendYWaN8pK0wa, spotify:artist:4Wjf8diP59VmPG7fi4y724, spotify:artist:0ofxTUijAHvkf6wKyPEBFa","Lana Del Rey, Cedric Gervais, Carlos Cid",spotify:album:3JjqBdDAwxh1wV2PThZxM7,NOW Fitness 2014,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-01-01,https://i.scdn.co/image/ab67616d0000b27348308f2015cb1c827184f88f,1,13,227114,https://p.scdn.co/mp3-preview/f5e276055f46824c1054e8139143c0989ee3bc1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71305235,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop,dutch house,edm,electro house,pop dance,progressive electro house",0.586,0.866,11.0,-4.977,0.0,0.0515,0.0486,0.000596,0.387,0.356,126.021,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 Universal Music Australia Pty Ltd., P This Compilation ℗ 2014 Universal Music Australia Pty Ltd.",6699 +6700,spotify:track:7nqlRkgNyEpb9nvb03GMp7,Price Tag,"spotify:artist:2gsggkzM5R49q6jpPvazou, spotify:artist:5ndkK3dpZLKtBklKjxNQwT","Jessie J, B.o.B",spotify:album:1iNj9EcvHmhI7KMbKcTwCX,Price Tag,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2011-01-01,https://i.scdn.co/image/ab67616d0000b2734e24d4bdd0d634add87aa224,1,1,221240,https://p.scdn.co/mp3-preview/2c903ead4c82591943b8462cebd540cdd533409b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USUM71029357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,atl hip hop,dance pop,pop rap,rap,southern hip hop",0.64,0.838,5.0,-3.948,1.0,0.197,0.0306,1.65e-06,0.188,0.681,175.015,4.0,,Lava Music/Republic Records,"C © 2011 Universal Republic Records, a division of UMG Recordings, Inc. & Lava Music, LLC, P ℗ 2011 Universal Republic Records, a division of UMG Recordings, Inc. & Lava Music, LLC",6700 +6701,spotify:track:6Ss1QOGzn0iG8hrRRSGrr9,It Just Won't Do - Radio Edit,"spotify:artist:7mEVrXcsq3PjsKT3BXnhp0, spotify:artist:0ZHSfpEoLBzYzQXYEhWSvJ","Tim Deluxe, Sam Obernik",spotify:album:7eJ3wq74Uk6JuNlil9CFEd,It Just Won't Do,spotify:artist:7mEVrXcsq3PjsKT3BXnhp0,Tim Deluxe,2011-11-28,https://i.scdn.co/image/ab67616d0000b27357662b8dbcf7b104478096c9,1,1,198000,https://p.scdn.co/mp3-preview/fa98a2cce356f0a3d8ce2d79f740ab730e8bfe7c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBP2Q1000049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,vocal house,uk dance",0.678,0.936,5.0,-4.876,0.0,0.0373,0.00166,0.457,0.376,0.877,129.996,4.0,,Get Human,"C Deluxe Records Ltd, P Deluxe Records Ltd",6701 +6702,spotify:track:0I329vpTJRdSRjEcWaQsSL,Jet Lag (feat. Natasha Bedingfield),"spotify:artist:2p4FqHnazRucYQHyDCdBrJ, spotify:artist:7o95ZoZt5ZYn31e9z1Hc0a","Simple Plan, Natasha Bedingfield",spotify:album:3CP3XmE4jU61ot1zhimhPV,Get Your Heart On! (Deluxe Edition),spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,2011-06-17,https://i.scdn.co/image/ab67616d0000b273de7ba7b8ecfb253e4550f357,1,3,204526,https://p.scdn.co/mp3-preview/5e4f04d15b20975db651432799b5f110a917dcc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT21100854,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop punk,canadian punk,canadian rock,modern rock,neon pop punk,pop punk,pop rock,dance pop,pop,post-teen pop",0.535,0.962,11.0,-3.453,1.0,0.0638,0.00361,0.0,0.163,0.687,144.984,4.0,,Atlantic Records,"C © 2011 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States, P ℗ 2011 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",6702 +6703,spotify:track:5HJTlCbUnp1G5lMrlrlBSI,Shut Up,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:62lT9e1rDpiMvnpntSPrkU,Elephunk,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2003-01-01,https://i.scdn.co/image/ab67616d0000b27316011543697151e939f4bbcb,1,5,296186,https://p.scdn.co/mp3-preview/16d7a14e2e542e821d04b5a6a8c548d920b38d57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10311895,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.81,0.714,2.0,-3.966,1.0,0.243,0.0637,0.0,0.237,0.561,112.968,4.0,,A&M,"C © 2003 Interscope Records, P ℗ 2003 Interscope Records",6703 +6704,spotify:track:3nqQXoyQOWXiESFLlDF1hG,Unholy (feat. Kim Petras),"spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:3Xt3RrJMFv5SZkCfUE8C1J","Sam Smith, Kim Petras",spotify:album:0gX9tkL5njRax8ymWcXARi,Unholy (feat. Kim Petras),"spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:3Xt3RrJMFv5SZkCfUE8C1J","Sam Smith, Kim Petras",2022-09-22,https://i.scdn.co/image/ab67616d0000b273a935e4689f15953311772cc4,1,1,156943,https://p.scdn.co/mp3-preview/19eee1dea8b5b4bdecb56a3b27306c72b889f3c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBUM72205415,spotify:user:bradnumber1,2022-10-20T10:05:08Z,"pop,uk pop,alt z,dance pop,pop,transpop",0.719,0.454,2.0,-7.384,1.0,0.0707,0.0138,4.83e-06,0.318,0.224,131.007,4.0,,Capitol Records UK / EMI,"C © 2022 Universal Music Operations Limited, P ℗ 2022 Universal Music Operations Limited",6704 +6705,spotify:track:1QvRcHM4BULobgQNnWny35,When I Look At You,spotify:artist:5kDgW6kFF2iGCDuEkd7hNs,Alex Edmonds,spotify:album:6n5QPuGF6Z1uu01S61voAL,When I Look At You,spotify:artist:5kDgW6kFF2iGCDuEkd7hNs,Alex Edmonds,2011-07-14,https://i.scdn.co/image/ab67616d0000b273ac146ae67a258f09d6677172,1,1,245761,https://p.scdn.co/mp3-preview/2efa582a29625785cdff29e87d64334973981cca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USJYL1100003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.515,0.484,6.0,-4.925,1.0,0.0277,0.124,0.0,0.12,0.218,137.937,3.0,,Mission House Music,C (C) 2011 Mission House Music,6705 +6706,spotify:track:3V7njWTWIuhRNXJMSDOL8M,Pills N Potions,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:59MdvdFat6bnx3rCz7U2Cr,The Pinkprint,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2014-12-12,https://i.scdn.co/image/ab67616d0000b273e132ffe656bd17abec3960d7,1,14,268000,https://p.scdn.co/mp3-preview/e8e6e79307686a85d49bbd08fc7fbb2856f6ab92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USCM51400163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,queens hip hop,rap",0.395,0.587,2.0,-8.086,1.0,0.2,0.00978,1.45e-05,0.0467,0.211,169.219,4.0,,Nicki Minaj/Cash Money,"C © 2014 Cash Money Records Inc., P ℗ 2014 Cash Money Records Inc.",6706 +6707,spotify:track:2DNXgvkyv35vTWvdgjs7qn,Someone New,spotify:artist:2FXC3k01G6Gw61bmprjgqS,Hozier,spotify:album:4Pv7m8D82A1Xun7xNCKZjJ,Hozier (Expanded Edition),spotify:artist:2FXC3k01G6Gw61bmprjgqS,Hozier,2014-09-19,https://i.scdn.co/image/ab67616d0000b2734ca68d59a4a29c856a4a39c2,1,4,222813,https://p.scdn.co/mp3-preview/02e87019d26c818328a91c33c10509224b880916?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USSM11405188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish singer-songwriter,modern rock,pop,pov: indie",0.443,0.533,7.0,-5.956,1.0,0.0473,0.429,3.66e-06,0.332,0.596,183.791,4.0,,Columbia,"P (P) 2014 Rubyworks, under license to Columbia Records, a Division of Sony Music Entertainment",6707 +6708,spotify:track:5qHYXcVvc9xsFB2uH7GpMN,Kokomo,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:47VjIh8rgyMJJHNR98w0Kw,The Very Best Of The Beach Boys: Sounds Of Summer,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,2003-01-01,https://i.scdn.co/image/ab67616d0000b273c5634c0532097e175199f07e,1,25,217692,https://p.scdn.co/mp3-preview/8a33ab47e93de0203c7e3fd39fc41d5513884d4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USNPD0713481,spotify:user:bradnumber1,2022-08-31T00:09:17Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.682,0.635,0.0,-10.05,1.0,0.0346,0.00863,0.0,0.137,0.927,115.584,4.0,,Capitol Records,"C © 2003 Capitol Records, LLC, P This Compilation ℗ 2003 Capitol Catalog",6708 +6709,spotify:track:5DYQPfFIqAQzUk1Wfde8SJ,Take Me Home,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:7hV0YSxAQSng8H0zMR0HBf,...Hits,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1998-09-25,https://i.scdn.co/image/ab67616d0000b273c8860dfcdadefb529bf29757,1,16,352573,https://p.scdn.co/mp3-preview/aafd7e45e3b1be7f6b10196129519ad29200a46f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWI19600229,spotify:user:bradnumber1,2023-10-17T23:18:01Z,"rock drums,soft rock",0.617,0.695,8.0,-11.444,1.0,0.0458,0.363,0.0754,0.0603,0.561,118.772,4.0,,Atlantic Records,"C 1998 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",6709 +6710,spotify:track:5XPDEg7yZT893Ocru6IEph,Water Song/Janie's Got A Gun,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,spotify:album:2WXQrFpRtf1FVSS70D5TVT,Pump,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,1989-01-01,https://i.scdn.co/image/ab67616d0000b2737286808a6e05a3c35d100db6,1,5,338840,https://p.scdn.co/mp3-preview/029ff39d1ed03fe0c56c48c992e853a63fb24297?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USGF19925406,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.617,0.788,5.0,-5.055,1.0,0.0313,0.0978,0.000251,0.144,0.368,115.532,4.0,,Aerosmith P&D - Geffen,"C © 1989 Geffen Records Inc., P ℗ 1989 Geffen Records Inc.",6710 +6711,spotify:track:76t5B0ttSAje5KHmQbv88t,Treat You Better,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:0S9QJQiRmG9JYYfJfKqhDF,Illuminate (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2016-09-23,https://i.scdn.co/image/ab67616d0000b2738a24ed638eedd60514a789ef,1,3,187973,https://p.scdn.co/mp3-preview/964acb3eecee3568fb10baf97d094b34887fb292?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71604711,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.683,0.797,10.0,-4.085,0.0,0.246,0.107,0.0,0.114,0.758,82.916,4.0,,Universal Music Group,"C © 2016 Island Records, a division of UMG Recordings, Inc., P ℗ 2016 Island Records, a division of UMG Recordings, Inc.",6711 +6712,spotify:track:24Qo0pcx4gjBNQNp1cTOVw,Yesterday Once More,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,spotify:album:2yhzRrIyT4X3rGZKE0MrCv,Now & Then,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,1973-01-01,https://i.scdn.co/image/ab67616d0000b2730f1ad8133d999de1897a0190,1,6,233533,https://p.scdn.co/mp3-preview/5c985cc170a3fd9fa91484f3b88e3de0e1ab3a13?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWWW0131707,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock",0.253,0.391,4.0,-13.662,1.0,0.037,0.7,0.0,0.36,0.362,168.96,4.0,,Universal Special Markets,"C © 1973 A&M Records, P ℗ 1973 UMG Recordings, Inc.",6712 +6713,spotify:track:7xmW8gsZgihBHkjHA3U8l7,"Girl, You'll Be a Woman Soon",spotify:artist:5LEUigTSXpwrtERRcSW1N4,Urge Overkill,spotify:album:7xKH0hojTO31ir5mIrFDno,Stull,spotify:artist:5LEUigTSXpwrtERRcSW1N4,Urge Overkill,1992-06-10,https://i.scdn.co/image/ab67616d0000b273ca6fadce250ed228ca04f9d3,1,1,189626,https://p.scdn.co/mp3-preview/d67cd8762126d56edad0f75d156057c2a2ca412e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USTG39208601,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alternative rock,0.514,0.584,5.0,-13.049,1.0,0.042,0.0698,0.000183,0.205,0.558,114.142,4.0,,Touch and Go Records,"C 1992 Touch and Go Records, P 1992 Touch and Go Records",6713 +6714,spotify:track:6FmtB3SLE6eqb24VfMnH4z,Round Round,spotify:artist:7rZNSLWMjTbwdLNskFbzFf,Sugababes,spotify:album:38oLAYrpyuLO8RchXHUzyz,Angels With Dirty Faces (International version),spotify:artist:7rZNSLWMjTbwdLNskFbzFf,Sugababes,2002-01-01,https://i.scdn.co/image/ab67616d0000b273571a0110e7bc2452980c5f8d,1,3,237053,https://p.scdn.co/mp3-preview/706dce3861bcebc1f979c3ba48bc7a9cac38d9bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN0201114,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group,talent show",0.735,0.859,6.0,-3.845,0.0,0.0346,0.00289,3.95e-06,0.111,0.758,126.587,4.0,,Island Records,"C © 2002 Universal Island Records Ltd. A Universal Music Company., P ℗ 2002 Universal Island Records Ltd. A Universal Music Company.",6714 +6715,spotify:track:3YlTwBFSI2kfMjGh1BWsEl,Mess Her Up,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:7M7CdUhAKyLmCFLY8z4b0P,Love Monster,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2018-07-13,https://i.scdn.co/image/ab67616d0000b273d8b44ee2b3636fd5e9287eac,1,11,208240,https://p.scdn.co/mp3-preview/cc474a44f403907e18519c1d93e4e3fd04e9cc97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUBM01800146,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.594,0.784,7.0,-4.885,1.0,0.0787,0.0892,0.00185,0.0757,0.298,159.881,4.0,,Wonderlick,P (P) 2018 Amy Shark under exclusive license to the Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd.,6715 +6716,spotify:track:2YplrdHMBoRdnHgMeHEwHm,The Sound of Silence - Electric Version,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,spotify:album:07RAGILF28QweYQSZasr5k,Sounds Of Silence,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,1966-01-17,https://i.scdn.co/image/ab67616d0000b27344a8aa7ac5c2e2defbfd702b,1,1,185253,https://p.scdn.co/mp3-preview/348e84fd1e60c4dd3a3312c1ad62e4e84f2ea03f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USSM16401131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,melancholia,mellow gold,rock,soft rock",0.44,0.466,6.0,-9.712,1.0,0.0284,0.17,1.03e-06,0.118,0.543,107.744,4.0,,Columbia,"P (P) Originally released 1966. All rights reserved by Columbia Records, a division of Sony Music Entertainment",6716 +6717,spotify:track:1dnXuEuApvuVqQCn0v9McL,"Sitting, Waiting, Wishing",spotify:artist:3GBPw9NK25X1Wt2OUvOwY3,Jack Johnson,spotify:album:2B9q4KPjOEYu885Keo9dfX,In Between Dreams,spotify:artist:3GBPw9NK25X1Wt2OUvOwY3,Jack Johnson,2005-01-01,https://i.scdn.co/image/ab67616d0000b273628dba01c669d89586967dc5,1,6,183720,https://p.scdn.co/mp3-preview/a41f69806f4a8fee6ad01abc947b79a0e4247e9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USMC60400026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.766,0.547,0.0,-7.25,1.0,0.0264,0.229,1.5e-05,0.104,0.556,105.01,4.0,,Jack Johnson,"C © 2005 Jack Johnson, P ℗ 2005 Jack Johnson",6717 +6718,spotify:track:1OCUnyUT2WgJOh4dlGwy3P,A Well Respected Man - Mono Mix,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:54poLseqpL2GOY1szCaYWA,The Singles Collection,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,1997-09-29,https://i.scdn.co/image/ab67616d0000b273e2f169e094eefd3263868c0a,1,12,161880,https://p.scdn.co/mp3-preview/4859ffd5f44f7397f348039b45a9c7ccdcd6147e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6600003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.509,0.864,4.0,-6.302,0.0,0.14,0.375,0.0,0.0791,0.538,162.168,4.0,,Castle Communications,"C © 2004 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1997 Sanctuary Records Group Ltd., a BMG Company",6718 +6719,spotify:track:4UQLQJu3DNvVkMVglwElU2,The King of Wishful Thinking,spotify:artist:7bKupnlF7XOfR1En3K8oAL,Go West,spotify:album:3z3WKWIzEwKJ2T0YoOIGy4,Indian Summer,spotify:artist:7bKupnlF7XOfR1En3K8oAL,Go West,1992-11-14,https://i.scdn.co/image/ab67616d0000b273643c2cfd62afdf937351a504,1,6,241760,https://p.scdn.co/mp3-preview/f7e6a1f5ee621b6bf953aac630bd0efb6fb28c71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK9000059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.669,0.868,0.0,-7.377,1.0,0.0527,0.033,0.0,0.0991,0.913,107.885,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1992 Chrysalis Records Limited",6719 +6720,spotify:track:3E5ndyOfO6vFDEIE42HA8o,Mack the Knife,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,spotify:album:5MsJK0kqiYIJDmd3cjkGMn,That's All,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,1959,https://i.scdn.co/image/ab67616d0000b273e774643594281699bde1e4ed,1,1,184333,https://p.scdn.co/mp3-preview/c548d30e535d83c4e90162a7435f8764669fd381?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USEW10000025,spotify:user:bradnumber1,2023-11-08T04:08:39Z,"adult standards,easy listening,lounge,rock-and-roll,rockabilly,vocal jazz",0.549,0.529,3.0,-12.291,0.0,0.108,0.76,0.0,0.206,0.464,82.755,4.0,,Rhino Atlantic,"C © 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing",6720 +6721,spotify:track:2Pxqs0WmxxHTV5QaTdmt3Q,Wind Beneath My Wings,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,spotify:album:7hKfx1hjTjzdU4SysDMNc9,Beaches (Original Soundtrack Recording),spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,1988,https://i.scdn.co/image/ab67616d0000b2735299007ded3da7e949539e03,1,2,293853,https://p.scdn.co/mp3-preview/5e7477a15c9e20b0ebd13d512683a125e9a37526?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT29900553,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,new wave pop,soft rock",0.51,0.458,10.0,-7.566,1.0,0.0289,0.551,0.0,0.0853,0.177,123.694,4.0,,Rhino Atlantic,"C 2008 © 1988 Atlantic Recording Corp., P 2008 ℗ 1988 Atlantic Recording Corp. Marketed by Rhino Entertainment Company, a Warner Music Group Company",6721 +6722,spotify:track:3B7udSGy2PfgoCniMSb523,"I See Fire - From ""The Hobbit - The Desolation Of Smaug""",spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:2nsRpsb5aeOhNEWV1MoiHB,The Hobbit - The Desolation Of Smaug (Original Motion Picture Soundtrack / Special Edition),spotify:artist:0OcclcP5o8VKH2TRqSY2A7,Howard Shore,2013-01-01,https://i.scdn.co/image/ab67616d0000b27381ef6477bfe32dc55845ef27,1,28,300840,https://p.scdn.co/mp3-preview/6cf17f683cabd5c1dcc8586f8ce6bba3de9c6330?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,USNLR1300728,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.581,0.0549,10.0,-20.514,0.0,0.0397,0.559,0.0,0.0718,0.234,152.037,4.0,,Decca (UMO),"C © 2013 WaterTower Music Inc., under exclusive license to Decca, a division of Universal Music Operations Limited, P ℗ 2013 WaterTower Music Inc., under exclusive license to Decca, a division of Universal Music Operations Limited",6722 +6723,spotify:track:3qyI5MwRs90QQO1ckWYZ3k,What It's Like,spotify:artist:14ZxDAK6ITtZZqPdiWrvSn,Everlast,spotify:album:7vqfedEA5B5uzeK8UJnGIo,Whitey Ford Sings The Blues,spotify:artist:14ZxDAK6ITtZZqPdiWrvSn,Everlast,1998-09-08,https://i.scdn.co/image/ab67616d0000b273748268e7d22a9d9dc44f40ab,1,4,304306,https://p.scdn.co/mp3-preview/047da91bb54c1f477d955a6e213027cc7343320f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRH10904471,spotify:user:bradnumber1,2021-08-08T09:26:31Z,post-grunge,0.652,0.584,0.0,-6.703,1.0,0.0269,0.0916,0.00686,0.114,0.417,85.191,4.0,,Rhino,"C 1998 Tommy Boy Music., P 1998 Tommy Boy Music. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",6723 +6724,spotify:track:4QVOTT9CM2ftSLwnYGNDjd,Stan,"spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:2mpeljBig2IXLXRAFO9AAs","Eminem, Dido",spotify:album:71xFWYFtiHC8eP99QB30AA,Curtain Call (Deluxe),spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2005-12-06,https://i.scdn.co/image/ab67616d0000b273a8a32ae2a279b9bf03445738,1,5,404426,https://p.scdn.co/mp3-preview/966406ecff01a973669e1457b17fdd7e7089d454?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10001280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap,dance pop,europop,lilith,neo mellow,pop rock",0.781,0.74,6.0,-5.065,0.0,0.208,0.0375,2.27e-06,0.449,0.527,80.056,4.0,,Universal Music Group,"C © 2005 Aftermath Entertainment/Interscope Records, P ℗ 2005 Aftermath Entertainment/Interscope Records",6724 +6725,spotify:track:5JnHzjo25FY1fMQMQVOawB,She's A Lady,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,spotify:album:1t0bCr3iI98gdcfwZ2YeVX,Tom Jones Sings She's A Lady,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,1971-05-01,https://i.scdn.co/image/ab67616d0000b273814a5ed9d4af838b632b3668,1,1,174146,https://p.scdn.co/mp3-preview/c103bade4b4cd5cf708eeb88d983c9a3ca225638?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBF077121420,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion",0.51,0.876,2.0,-9.101,1.0,0.161,0.212,0.0,0.248,0.624,119.702,4.0,,UMC (Universal Music Catalogue),"C © 1971 Chrysalis Copyrights Ltd., under exclusive licence to Decca Music Group Ltd, P ℗ 1971 Chrysalis Copyrights Ltd., under exclusive licence to Decca Music Group Ltd",6725 +6726,spotify:track:2ye824NM1m7Nc2UPXtwZjL,When I'm Gone,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:71xFWYFtiHC8eP99QB30AA,Curtain Call (Deluxe),spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2005-12-06,https://i.scdn.co/image/ab67616d0000b273a8a32ae2a279b9bf03445738,1,16,281133,https://p.scdn.co/mp3-preview/29e501d49711037af40fc0edb4bb87605dbb82ee?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70506288,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.515,0.74,10.0,-5.507,0.0,0.363,0.0493,0.0,0.258,0.765,75.922,4.0,,Universal Music Group,"C © 2005 Aftermath Entertainment/Interscope Records, P ℗ 2005 Aftermath Entertainment/Interscope Records",6726 +6727,spotify:track:6MAEelz5nrL99m4vn3iodi,Showing Out (Get Fresh At the Weekend) [7''Version],spotify:artist:4k7b3DWqBnYpobDWbNWLdM,Mel & Kim,spotify:album:7LJrRw1ySWtYJoOaw6AP2s,F.L.M,spotify:artist:4k7b3DWqBnYpobDWbNWLdM,Mel & Kim,1991-03-18,https://i.scdn.co/image/ab67616d0000b2737217c576b9021a4f289fe122,1,2,214866,https://p.scdn.co/mp3-preview/d2ba0799877eb06252d62530c107fc7a10788db8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE8600070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop",0.703,0.838,4.0,-11.782,0.0,0.0638,0.00613,0.0129,0.137,0.767,119.771,4.0,,Parlophone UK,"C 2011 Parlophone Records Ltd, a Warner Music Group Company, P 2011 Parlophone Records Ltd, a Warner Music Group Company",6727 +6728,spotify:track:08G0Q9xR6QwfQepbD7lFSc,Far Away,spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,spotify:album:34NNRiAunm4I1jvmviZrBE,In Ghost Colours (Deluxe),spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,2008-01-01,https://i.scdn.co/image/ab67616d0000b273a1ff5dba27dabdcc0ee764c8,1,10,296320,https://p.scdn.co/mp3-preview/19403878dbf7f2295ab0432dda231488408d2df1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70800093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian electropop,electronic rock,electronica,indietronica,neo-synthpop",0.608,0.971,5.0,-2.157,0.0,0.041,0.0555,0.303,0.0748,0.916,126.019,4.0,,Modular,"C © 2008 Modular Recordings, P ℗ 2008 Modular Recordings",6728 +6729,spotify:track:1cvMsDQoo9VISuZU9t4TlP,Stickwitu - Avant Mix,"spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ, spotify:artist:0AunegKKH2ys98aLxq8G1A","The Pussycat Dolls, Avant",spotify:album:0155ANNJ1l9yLMVIHBs22L,Director,spotify:artist:0AunegKKH2ys98aLxq8G1A,Avant,2006-01-01,https://i.scdn.co/image/ab67616d0000b2731d7cff59069b78b7e2e7a980,1,5,194693,https://p.scdn.co/mp3-preview/814108e28d5d3a7971bbf6b6ad64f20d25b82540?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70506004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,contemporary r&b,r&b,urban contemporary",0.652,0.539,9.0,-6.641,1.0,0.0392,0.289,0.0,0.0843,0.484,80.113,4.0,,Geffen*,"C © 2006 Geffen Records, P ℗ 2006 Geffen Records",6729 +6730,spotify:track:5xTtaWoae3wi06K5WfVUUH,Shake It Off,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:2QJmrSgbdM35R67eoGQo4j,1989,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-10-27,https://i.scdn.co/image/ab67616d0000b2739abdf14e6058bd3903686148,1,6,219200,https://p.scdn.co/mp3-preview/b2f4ace48deea16c8c94a7dee85f5db6cd90b8dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USCJY1431349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.647,0.785,7.0,-5.414,1.0,0.165,0.0561,0.0,0.148,0.943,160.015,4.0,,"Big Machine Records, LLC","C © 2014 Apollo A-1 LLC, P ℗ 2014 Apollo A-1 LLC",6730 +6731,spotify:track:79oXRAF3qd6Nq0R13Z2IBz,On Top,spotify:artist:4L51owxaf23ElmXl3ZkvNC,Johnny Ruffo,spotify:album:06iZaBbk62Hz7SWNvKqFAa,On Top,spotify:artist:4L51owxaf23ElmXl3ZkvNC,Johnny Ruffo,2012-06-18,https://i.scdn.co/image/ab67616d0000b273ab2658ce692ecdbe519d29c6,1,1,219080,https://p.scdn.co/mp3-preview/5c31e19a8df4bff29060820b812b3dfa95f3bf85?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUBM01200152,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.664,0.868,5.0,-3.062,1.0,0.0312,0.00385,0.0,0.322,0.77,126.972,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,6731 +6732,spotify:track:4keoy2fqgwGnbWlm3ZVZFa,Happy Now,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:67MNhiAICFY6Pwc2YxCO0K","Zedd, Elley Duhé",spotify:album:0JcW7yCW3Qj8uMfzO2lUDb,Happy Now,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:67MNhiAICFY6Pwc2YxCO0K","Zedd, Elley Duhé",2018-07-18,https://i.scdn.co/image/ab67616d0000b27341e9614560815b11c1ca543d,1,1,207029,https://p.scdn.co/mp3-preview/0e5fcc26980c9e3d6f389fa7179b12db935a885f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USUM71808663,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,alt z",0.503,0.741,4.0,-5.128,1.0,0.047,0.579,1.49e-06,0.0712,0.458,88.335,3.0,,UMGRI Interscope,"C © 2018 Interscope Records, P ℗ 2018 Interscope Records",6732 +6733,spotify:track:6Ip2Ia3DPgc9PJ6hcQW6Xa,Good Golly Miss Molly,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:5pCRW9AT4BgoMOS52pRoJq,Bayou Country (Expanded Edition),spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1969-01-05,https://i.scdn.co/image/ab67616d0000b2731afccd261170f1d8f3cadb3d,1,4,161853,https://p.scdn.co/mp3-preview/049e7dc165482b4cc7305bc38551db99b0f1ae9e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USC4R0817592,spotify:user:bradnumber1,2022-08-26T01:07:07Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.566,0.765,10.0,-7.551,0.0,0.0323,0.18,0.0133,0.136,0.969,75.008,4.0,,Craft Recordings,"C © 2008 Concord Music Group, Inc., P ℗ 2008 Concord Music Group, Inc.",6733 +6734,spotify:track:57bgtoPSgt236HzfBOd8kj,Thunderstruck,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:4vu7F6h90Br1ZtYYaqfITy,The Razors Edge,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1990-09-24,https://i.scdn.co/image/ab67616d0000b2738399047ff71200928f5b6508,1,1,292880,https://p.scdn.co/mp3-preview/788a028fa3a33141c817b1064e3159006edeaa8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,AUAP09000014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.502,0.89,4.0,-5.175,1.0,0.0364,0.000147,0.0117,0.217,0.259,133.52,4.0,,Columbia,P (P) 1990 Leidseplein Presse B.V.,6734 +6735,spotify:track:6RnKm1xSMDnPtzWx8K9T8a,It's Hard to Be Humble,spotify:artist:6HX8AbXUFaYRtlqKb4CCo0,Mac Davis,spotify:album:4vZ6eSpIwea2IIPnwG8jfx,Stop And Smell The Roses,spotify:artist:6HX8AbXUFaYRtlqKb4CCo0,Mac Davis,1974-02-27,https://i.scdn.co/image/ab67616d0000b273c3444e1573381095fcf036da,1,11,256720,https://p.scdn.co/mp3-preview/66976b1d6e76c9ce6e0c34175b1511503acdc1d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSM10700777,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country rock",0.375,0.473,2.0,-14.177,1.0,0.0587,0.252,0.0,0.281,0.584,163.181,3.0,,Columbia/Legacy,P (P) 1974 SONY BMG MUSIC ENTERTAINMENT,6735 +6736,spotify:track:0mXKsmuLaSnzfitYEGQDaq,Are You Gonna Be My Girl?,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,spotify:album:0EVrAzQ5qfFrJxcuwjXJBQ,Get Born,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,2003,https://i.scdn.co/image/ab67616d0000b273c87b336c01f7c7c6207c47d4,1,2,213800,https://p.scdn.co/mp3-preview/cd8bc93c853849caa21fe05bc4b6f1b097e8aabc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10340526,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,pop rock",0.606,0.957,2.0,-3.404,1.0,0.0812,0.00117,0.000295,0.14,0.603,105.109,4.0,,Bloodlines,"C 2003 Real Horrorshow Pty. Ltd., P 2003 Real Horrorshow Pty. Ltd.",6736 +6737,spotify:track:2zdMaPQb3WfWBTiysLflIh,Please Forgive Me,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:39DK8adeIV1sXKu5Fh81z6,Australian Tour Edition 2013,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,2013-01-01,https://i.scdn.co/image/ab67616d0000b273759d1a465f24153d53d02322,1,8,355626,https://p.scdn.co/mp3-preview/52f748ab1c96686471d94118e5522eec843ea826?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19390014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.59,0.452,9.0,-7.012,1.0,0.026,0.53,0.0,0.103,0.151,133.918,4.0,,Universal Music Group International,"C © 2013 Universal Music Australia Pty Ltd., P This Compilation ℗ 2013 Universal Music Australia Pty Ltd.",6737 +6738,spotify:track:3JhgPs7rbmzLBWRvHlel8U,Bad Memories,"spotify:artist:0xRXCcSX89eobfrshSVdyu, spotify:artist:5344K3N7rx7kw1HjO8psuq, spotify:artist:67MNhiAICFY6Pwc2YxCO0K, spotify:artist:56Qz2XwGj7FxnNKrfkWjnb","MEDUZA, James Carter, Elley Duhé, FAST BOY",spotify:album:1ipPj2xEiVWibPm6V1LqEc,MEDUZA,spotify:artist:0xRXCcSX89eobfrshSVdyu,MEDUZA,2023-10-13,https://i.scdn.co/image/ab67616d0000b2738d7f3300dd80d2704664ff16,1,6,147629,https://p.scdn.co/mp3-preview/94be9fe21c9a0190c176b6d2e99e010c2286ccc6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBUM72203666,spotify:user:bradnumber1,2023-11-23T06:48:29Z,"edm,pop dance,pop house,uk dance,pop dance,uk dance,alt z,hypertechno,pop dance",0.607,0.755,5.0,-6.069,0.0,0.0468,0.122,0.0,0.144,0.664,123.994,3.0,,Universal-Island Records Ltd.,"C © 2023 Secondo Piano SRL, under exclusive license to Universal Music Operations Limited, P ℗ 2023 Secondo Piano SRL, under exclusive license to Universal Music Operations Limited",6738 +6739,spotify:track:1zVhMuH7agsRe6XkljIY4U,human,spotify:artist:7H55rcKCfwqkyDFH9wpKM6,Christina Perri,spotify:album:2kvhrkMLDOMuoDYrQo0mzX,human,spotify:artist:7H55rcKCfwqkyDFH9wpKM6,Christina Perri,2013-11-18,https://i.scdn.co/image/ab67616d0000b2732e6fcfb5b904a84cd4c6b96b,1,1,250706,https://p.scdn.co/mp3-preview/f79a75b1cff85615e895fe88b52fa592e97ccd3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT21304202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.439,0.489,8.0,-6.286,1.0,0.0368,0.132,0.000643,0.114,0.253,143.808,4.0,,Atlantic Records,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",6739 +6740,spotify:track:61Qhe2mHSLhUE04QeK4lkD,Breakaway,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:5gDAEao3VxFdbm8vS0koQq,Breakaway,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2004-01-17,https://i.scdn.co/image/ab67616d0000b27303dadde4d9d305c1c3e0d91c,1,1,237000,https://p.scdn.co/mp3-preview/b7cb993fec8b9d444dc3f7b7b66192b85df6ee02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBCTA0400230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.446,0.701,9.0,-4.179,0.0,0.0295,0.0298,8.89e-06,0.0931,0.394,159.958,3.0,,RCA Records Label,"P (P) 2004 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",6740 +6741,spotify:track:2rdPRC6mHqAqU0z2kGKq6h,Modern Girl - 2014 Remastered Version,spotify:artist:3wJNz1PDSW0uM0IELOGE7U,James Freud,spotify:album:4igZspBG3w3n9S3rw1KUKJ,80 Hits of the '80s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-04,https://i.scdn.co/image/ab67616d0000b2738e4f0760ed6e2823e3695364,1,9,201360,https://p.scdn.co/mp3-preview/810374ce860a672cbb5bece90ba7653bb6bc3d38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA01400253,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.498,0.703,0.0,-8.382,1.0,0.0375,0.0199,5.21e-05,0.112,0.878,165.263,4.0,,WM Australia,"C 2016 Warner Music Australia, P 2016 Warner Music Australia",6741 +6742,spotify:track:7aQjPecQdIuNd1sz3KCDhD,Lovefool,spotify:artist:1tqZaCwM57UFKjWoYwMLrw,The Cardigans,spotify:album:56vFkneGivqQcoNQq362iZ,First Band On The Moon (Remastered),spotify:artist:1tqZaCwM57UFKjWoYwMLrw,The Cardigans,1996-01-01,https://i.scdn.co/image/ab67616d0000b2730aac8ca880151fda470e91af,1,7,193953,https://p.scdn.co/mp3-preview/f548f1a669b14992fc5d1c2339f8eb114c175f3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,SEBKB9629380,spotify:user:bradnumber1,2021-10-20T22:25:46Z,"lilith,new wave pop,permanent wave,pop rock,swedish pop",0.704,0.636,9.0,-6.029,1.0,0.0252,0.0344,0.0,0.35,0.89,111.845,4.0,,Universal Music AB,"C © 2019 Universal Music AB, P ℗ 1996 Universal Music AB",6742 +6743,spotify:track:4kte3OcW800TPvOVgrLLj8,Let Me Love You (Until You Learn To Love Yourself),spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:4HPdvrPf9RGfJ2hNYrODpC,R.E.D. (Deluxe Edition),spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2012-01-01,https://i.scdn.co/image/ab67616d0000b27314f5c10de370e6d48d142629,1,3,251626,https://p.scdn.co/mp3-preview/c6d330e6e29ae3575ce528d254c2162bcc54964a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM71207198,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.657,0.676,5.0,-6.633,1.0,0.0393,0.245,0.0,0.368,0.246,124.904,4.0,,Island Def Jam/Motown,"C © 2012 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2012 Motown Records, a Division of UMG Recordings, Inc.",6743 +6744,spotify:track:1QdrUOQkbXJbpNqOKgJpq5,Candida,"spotify:artist:5z348neb55aaKyQhVgqEvS, spotify:artist:72NXpYBIaTfEeAAsxXLs0P","The Dawn, Tony Orlando & Dawn",spotify:album:3SZtvt7lV1H4YN9tKVURJR,Candida,spotify:artist:72NXpYBIaTfEeAAsxXLs0P,Tony Orlando & Dawn,1970,https://i.scdn.co/image/ab67616d0000b2738e6400d79b77d2890e42a968,1,1,182973,https://p.scdn.co/mp3-preview/46928c95908dfd1ac250963ee12d2d56bebbc1f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USAR19800308,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,classic country pop,soft rock",0.783,0.596,7.0,-10.056,1.0,0.0676,0.235,0.0,0.0427,0.88,127.576,4.0,,BMG Special Products,P (P) 1970 Sony Music Entertainment,6744 +6745,spotify:track:3WUbVS0J4Ulf0XZR6LNRnh,"Eh, Eh (Nothing Else I Can Say)",spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:1qwlxZTNLe1jq3b0iidlue,The Fame,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2008-01-01,https://i.scdn.co/image/ab67616d0000b273e691217483df8798445c82e2,1,5,175360,https://p.scdn.co/mp3-preview/5e24af4bb1d8d39005d6b1660b7b9b18929728aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USUM70824406,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.68,0.876,1.0,-3.646,0.0,0.0577,0.246,0.000187,0.0788,0.816,187.787,4.0,,Streamline/Interscope,"C © 2008 Interscope Records, P ℗ 2008 Interscope Records",6745 +6746,spotify:track:0EcdmJCR4pURncLgeeBYvl,Rip It Up,spotify:artist:0NXVGrFkPu0Cohh3BJV5Wx,28 Days,spotify:album:6OT8sbDrxyACRi1mzzkj9M,Up Style Down,spotify:artist:0NXVGrFkPu0Cohh3BJV5Wx,28 Days,2000-07-17,https://i.scdn.co/image/ab67616d0000b2734b7a941dd133a6c87b7e9570,1,5,219053,https://p.scdn.co/mp3-preview/207aad5d750fb52d5d85ce0636c77d95087c2659?cid=9950ac751e34487dbbe027c4fd7f8e99,True,44,AUMU00000053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.532,0.962,11.0,-4.177,0.0,0.0727,0.00154,0.0,0.109,0.671,110.38,4.0,,WM Australia,"C © 2000 Mushroom Records, P ℗ 2000 Mushroom Records",6746 +6747,spotify:track:26rdOwwjC2UnweK3xeS58u,GDFR (feat. Sage the Gemini & Lookas),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:6d47Z08T4snK50HgTEHo5Z, spotify:artist:27fy6rHPC58Eo2VUu0iJSG","Flo Rida, Sage The Gemini, Lookas",spotify:album:5lkNnHVlnCCCV304t89wOH,My House,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2015-04-07,https://i.scdn.co/image/ab67616d0000b2737947bf3e8af32378de181b41,1,6,190185,https://p.scdn.co/mp3-preview/6316ccb80845938fad240c7e9d560b997c742544?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT21404117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,hyphy,pop rap,southern hip hop,trap,brostep,electro house,electronic trap",0.657,0.827,5.0,-4.036,1.0,0.0734,0.000704,0.00534,0.065,0.69,145.889,4.0,,Poe Boy/Atlantic,"C © 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",6747 +6748,spotify:track:3cfOd4CMv2snFaKAnMdnvK,All Star,spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,spotify:album:2kyTLcEZe6nc1s6ve0zW9P,Astro Lounge,spotify:artist:2iEvnFsWxR0Syqu2JNopAd,Smash Mouth,1999-06-08,https://i.scdn.co/image/ab67616d0000b2734f3bbf9631faeb8de9912a23,1,5,200373,https://p.scdn.co/mp3-preview/2e63cdb1c3dd5808abce774674f5c440c614f53a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USIR19902220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.731,0.867,11.0,-5.881,1.0,0.032,0.0394,0.0,0.0861,0.776,104.02,4.0,,Interscope,"C © 1999 Interscope Records, P ℗ 1999 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",6748 +6749,spotify:track:2omUHcenJCr58m876oROSx,Beautiful to Me,spotify:artist:3h18aXqdmm2F13t6LIbTpq,Little Birdy,spotify:album:3NCykS9UfSXphepWtB7u4x,Bigbiglove,spotify:artist:3h18aXqdmm2F13t6LIbTpq,Little Birdy,2004,https://i.scdn.co/image/ab67616d0000b2735f5c8c95ee51259df5bcffa0,1,3,209693,https://p.scdn.co/mp3-preview/0d06565dd4da0f80c9051cab098c53ed35326b46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEL00400024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian rock,perth indie",0.561,0.695,0.0,-3.771,1.0,0.0283,0.000283,3.34e-05,0.0553,0.541,115.906,4.0,,Eleven,"C 2004 Little Birdy under exclusive licence to Eleven: A Music Company, P 2004 Little Birdy under exclusive licence to Eleven: A Music Company",6749 +6750,spotify:track:2zE4tsjS5A3WnmNmrQ6gpC,(Remember The Days Of The) Old Schoolyard,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,spotify:album:4lLP4JZ4oQkRsIGlm76ePa,Izitso,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,1977,https://i.scdn.co/image/ab67616d0000b2731f55fd7183357f0096d31f4a,1,1,164826,https://p.scdn.co/mp3-preview/34724bfdd806801c60aebe20f107972b6f43ee94?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN7700030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british folk,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.652,0.61,10.0,-8.658,1.0,0.0636,0.45,0.0,0.576,0.612,145.964,4.0,,Cat-O-Log Records,"C 1977 Cat-O-Log Records, P 1977 Cat-O-Log Records",6750 +6751,spotify:track:7rSQWMXrOoNajhAjZvOL3k,Rise & Fall,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,spotify:album:4kc6vrABh87kQ4onFSDPLq,Live By The Words,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,2012,https://i.scdn.co/image/ab67616d0000b2732ea0791fdc5445eb5a9cd4be,1,4,223360,https://p.scdn.co/mp3-preview/fd62dad815fa13d97c539201c76888937f474ecb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUBM01400590,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.576,0.94,11.0,-4.517,1.0,0.0579,0.0834,0.0,0.0526,0.552,98.022,4.0,,Sony Music Entertainment,P All tracks (P) 2014 Sony Music Entertainment Australia Pty Ltd. except tracks 6 & 8 (P) 2012 & track 10 (P) 2013 Sony Music Entertainment Australia Pty Ltd.,6751 +6752,spotify:track:5ml7wqgv2ZZ5JJ6U8ZLon9,Superheroes,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:6PbItq7wFLcz5pNlvbGH8D,Superheroes,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2014-07-21,https://i.scdn.co/image/ab67616d0000b2738b7d92dffc32fd65bd774f1d,1,1,243906,https://p.scdn.co/mp3-preview/195c70c6cda7717f5db543a114586bb52b1eced5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1400978,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.492,0.886,3.0,-4.109,1.0,0.0399,0.00233,0.0,0.0762,0.653,167.029,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,6752 +6753,spotify:track:3oq43Azicrfn3DpO5MjgXL,Insensitive,spotify:artist:1aftUCES5zD5xXI7O9ZF9F,Jann Arden,spotify:album:2XEEscuaqr8x7CKJKWkss7,Living Under June,spotify:artist:1aftUCES5zD5xXI7O9ZF9F,Jann Arden,1994-01-01,https://i.scdn.co/image/ab67616d0000b2730237754648aaa4906585cbf4,1,4,256026,https://p.scdn.co/mp3-preview/e6d0e185e2175d2da7cdae51e6a0c47e5cd59afa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19604248,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian singer-songwriter,ectofolk,lilith",0.517,0.446,2.0,-10.163,1.0,0.0267,0.152,0.000175,0.13,0.288,178.674,4.0,,A&M,"C © 1994 A&M Records of Canada, P ℗ 1994 A&M Records of Canada",6753 +6754,spotify:track:33e6z2Z68nXeobYCx3hJA0,The Happiest Girl in the Whole U.S.A.,spotify:artist:4tIQ6BeFRvYApoAyJmaeVC,Donna Fargo,spotify:album:4EILTGVwO7vgx4bOLDOqBJ,Country Queens - Women in Music,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2000-09-15,https://i.scdn.co/image/ab67616d0000b273031bf17f06c725d6f7a2b017,1,3,149250,https://p.scdn.co/mp3-preview/a2a936e3a6ab2bf717944593ba02850c6f5a8577?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,QM4TX1841299,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic country pop,0.6,0.448,7.0,-9.456,1.0,0.0263,0.709,0.0,0.279,0.611,97.943,3.0,,Legacy International,"C (C) 2000 © Legacy International™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",6754 +6755,spotify:track:3Zh5cecN8TqelTN30SJUww,Brimful of Asha,spotify:artist:3Kf7VEIRWquxrNIuyJZnfF,Cornershop,spotify:album:3zImpd2BehQCHbnTiIJlZB,Brimful of Asha,spotify:artist:3Kf7VEIRWquxrNIuyJZnfF,Cornershop,1997-08-18,https://i.scdn.co/image/ab67616d0000b273dfdf5b5a4abaab9fdfee9970,1,1,247960,https://p.scdn.co/mp3-preview/3d85ad3fc2bc10d0f3afa8a20ef4948f9de63183?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKT9700052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,britpop,0.829,0.831,9.0,-6.304,1.0,0.0356,0.388,0.0,0.0796,0.923,110.074,4.0,,Wiiija,"C 1997 Wiiija Records Ltd, P 1997 Wiiija Records Ltd",6755 +6756,spotify:track:3acriFyHOVFW8heimUC0IW,That Don't Impress Me Much,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,spotify:album:1Xq7GtFHmTt110bmxQrtC4,Come On Over,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,1997,https://i.scdn.co/image/ab67616d0000b27351cfe8c7a9f78702fc36a0cb,1,13,238706,https://p.scdn.co/mp3-preview/17146f5c879e1cdd45df48128c93b90683a585c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19900016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian country,canadian pop,contemporary country,country,country dawn",0.74,0.866,10.0,-4.948,0.0,0.0506,0.153,0.0,0.152,0.964,124.998,5.0,,Universal Music Group,"C © 2009 Mercury Records, P ℗ 2009 Mercury Records",6756 +6757,spotify:track:5sHlU2ejWIzJDHgSrwSxx6,Anywhere,spotify:artist:0gadJ2b9A4SKsB1RFkBb66,Passenger,spotify:album:3yg5NYJV92sXmJullf2Hzf,Young as the Morning Old as the Sea,spotify:artist:0gadJ2b9A4SKsB1RFkBb66,Passenger,2016-09-23,https://i.scdn.co/image/ab67616d0000b27376859fae6827a21052108d4b,1,4,216206,https://p.scdn.co/mp3-preview/38381cb757660cff3cf22a9432f73a7c83db3e94?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBMQN1500039,spotify:user:bradnumber1,2022-01-12T23:27:45Z,"folk-pop,neo mellow",0.598,0.622,7.0,-6.948,1.0,0.0285,0.0959,8.04e-05,0.0934,0.824,104.497,4.0,,Black Crow Records,"C 2016 Black Crow Records, P 2016 Black Crow Records",6757 +6758,spotify:track:2Wb9ejnmy27DUTUe9YF5Ew,All Night Long (All Night) - Single Version,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,spotify:album:1W1b52vaEcE3wfWk4WQH6q,The Definitive Collection,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,2003,https://i.scdn.co/image/ab67616d0000b2732e6e2b77b5dd9d3b54415138,1,7,260426,https://p.scdn.co/mp3-preview/a1b7a67aa91cc95fc0c4e534bb10e1fbe528e7ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USMO18390005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.739,0.576,1.0,-12.024,1.0,0.0471,0.123,0.00204,0.0482,0.78,108.809,4.0,,UTV - Motown,"C © 2012 Motown Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 2012 Motown Records, a Division of UMG Recordings, Inc.",6758 +6759,spotify:track:5ygKWzIG0LOjHaV9m3V0nv,Softly Whispering I Love You,spotify:artist:3Ngmu4UfpEPwwnfEcIRz1t,Mike Curb Congregation,spotify:album:29pJ68GKjAP2pFXbaybBnE,Softly Whispering I Love You,spotify:artist:3Ngmu4UfpEPwwnfEcIRz1t,Mike Curb Congregation,1972-07-06,https://i.scdn.co/image/ab67616d0000b27333442ce3204fc121f7f96eab,1,1,180446,https://p.scdn.co/mp3-preview/18486eeb042a172fcd31c6572e96c94d57a9ead9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USUM71703355,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.285,0.652,9.0,-6.562,0.0,0.0385,0.408,0.0,0.538,0.243,103.566,4.0,,Universal Records,"C © 1972 Republic Records, a Division of UMG Recordings, Inc., P ℗ 1972 Republic Records, a Division of UMG Recordings, Inc.",6759 +6760,spotify:track:4tyl9OMKMG8F2L0RUYQMH3,Walk Of Life,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,spotify:album:1NF8WUbdC632SIwixiWrLh,Brothers In Arms (Remastered),spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,1985-05-13,https://i.scdn.co/image/ab67616d0000b27348cd811e6c34abd3ff00d15f,1,3,249960,https://p.scdn.co/mp3-preview/cb6b9d5ce8a13292c516aa3036d81ff9465a6617?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088500675,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock",0.461,0.918,4.0,-8.507,1.0,0.0959,0.405,0.00033,0.126,0.802,172.435,4.0,,Universal Music Group,"C © 1985 Mercury Records Limited, P ℗ 1985 Mercury Records Limited",6760 +6761,spotify:track:7bsYIRvIUztsOGVn2iW1ZT,TV In The Morning,spotify:artist:6T5tfhQCknKG4UnH90qGnz,DNCE,spotify:album:18AYjsog9iGp1np3r1KqHJ,People To People,spotify:artist:6T5tfhQCknKG4UnH90qGnz,DNCE,2018-06-15,https://i.scdn.co/image/ab67616d0000b273b2fd9462d46e449e33f5037b,1,1,224600,https://p.scdn.co/mp3-preview/9d006f6dfe73cb96a9ec21778431941e5ae0f8fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USUM71808167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.658,0.889,5.0,-4.237,0.0,0.0455,0.148,0.0,0.0636,0.837,98.063,4.0,,Republic Records,"C © 2018 Republic Records, a division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",6761 +6762,spotify:track:7e9iss0RsUTrobLsNM8JFR,Regulate,"spotify:artist:2B4ZHz4QDWJTXPFPgO5peE, spotify:artist:1Oa0bMld0A3u5OTYfMzp5h","Warren G, Nate Dogg",spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,32,251826,https://p.scdn.co/mp3-preview/674411a576d74b5f22569c8ae4331815621996c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39401610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hardcore hip hop,hip hop,west coast rap,g funk,gangster rap,hardcore hip hop,hip hop,west coast rap",0.817,0.511,4.0,-13.082,0.0,0.259,0.71,0.000537,0.12,0.79,95.293,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",6762 +6763,spotify:track:10HlI5OL8VIdMh2CaymhbD,One (Remastered),spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:7CNQl7thCP0pDllX1lehLM,...And Justice For All,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1988-08-25,https://i.scdn.co/image/ab67616d0000b27341eaec65ddc6e4c777cbc04e,1,4,447440,https://p.scdn.co/mp3-preview/f348ce743e0ae6cad29067bae80f72b1f521f52d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10001274,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.444,0.703,7.0,-9.443,1.0,0.0641,0.00112,0.0761,0.127,0.419,106.228,4.0,,Blackened Recordings,"C 1988 Blackened Recordings, P 1988 Blackened Recordings",6763 +6764,spotify:track:2Au4EvRDIvtfB8ejJiTqjM,Everybody Loves Me But You,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,spotify:album:2osc6a2FfmXGPcsr1ptY7b,Classic Brenda Lee - The Universal Masters Collection,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,2000-01-01,https://i.scdn.co/image/ab67616d0000b27306a3b68a8db6eedc8d10c3ae,1,10,151066,https://p.scdn.co/mp3-preview/48ef4652469e7fbc518084cc9118128269efc055?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16211915,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rockabilly",0.661,0.122,7.0,-14.186,1.0,0.0384,0.847,8.24e-06,0.328,0.494,107.022,3.0,,Geffen,"C © 2000 MCA Nashville, P ℗ 2000 MCA Nashville",6764 +6765,spotify:track:0bGH7ezs7WdDwpqnsvGf1z,Purple Hat,spotify:artist:586uxXMyD5ObPuzjtrzO1Q,Sofi Tukker,spotify:album:4L9MrIcjiPN4luIoWP8XgG,Purple Hat,spotify:artist:586uxXMyD5ObPuzjtrzO1Q,Sofi Tukker,2019-09-06,https://i.scdn.co/image/ab67616d0000b273818685825c4be7951a2ec4bb,1,1,178369,https://p.scdn.co/mp3-preview/fa4f8568645259fb1e68aee40efafc14caf267db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,QM37X1900018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,edm,0.777,0.744,9.0,-7.42,1.0,0.204,0.331,0.0073,0.088,0.654,94.019,4.0,,Ultra Records,"C 2019 Sofi Tukker, LLC under exclusive license to Ultra Records, LLC, P 2019 Sofi Tukker, LLC under exclusive license to Ultra Records, LLC",6765 +6766,spotify:track:4VySpxhRGy32u5zPCprzDn,Too Close,spotify:artist:5Tf4EH8tDvznnjULcFxkIl,Alex Clare,spotify:album:1EOD1KDQlcbuFqJFx0XOuQ,The Lateness Of The Hour,spotify:artist:5Tf4EH8tDvznnjULcFxkIl,Alex Clare,2011-01-01,https://i.scdn.co/image/ab67616d0000b273e11a503d7be9336b72a53899,1,4,256613,https://p.scdn.co/mp3-preview/d996733c03ea7a69f6eaaa5452cd59f7e2ad6ce5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBUM71101222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,modern alternative rock,0.588,0.694,11.0,-4.278,0.0,0.0387,0.00948,0.0,0.113,0.271,126.027,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Universal Island Records, a division of Universal Music Operations Limited",6766 +6767,spotify:track:3IDuFZidn7FEeAgN9bTM1j,Into The Galaxy,spotify:artist:2tGIh9kwbXuko0z3BTldBx,Midnight Juggernauts,spotify:album:1iGpOMvuM3uaHqjTAakuil,Dystopia,spotify:artist:2tGIh9kwbXuko0z3BTldBx,Midnight Juggernauts,2007,https://i.scdn.co/image/ab67616d0000b2731d0ef61ed43e555b1e7d0c9e,1,3,294480,https://p.scdn.co/mp3-preview/2849b05ee47fdb445eb18fda2c018f7fdaa86d99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUIO00700139,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,electrofox,filter house,neo-synthpop,new rave",0.507,0.958,10.0,-4.736,0.0,0.0386,0.0545,0.0,0.163,0.603,135.063,4.0,,Siberia,"C 2007 Siberia, P 2007 Siberia",6767 +6768,spotify:track:7MuMALGZV3KhVA9AS9TFup,Boogie Woogie Bugle Boy,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,spotify:album:0WCR1ZDrcXuNerUd6mbeiP,The Divine Miss M,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,1972,https://i.scdn.co/image/ab67616d0000b273f4a0ee1e474adaee8683305b,1,10,137173,https://p.scdn.co/mp3-preview/6c9f2720300a70ba10091663d0c47fefef8fb490?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USAT29500119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,new wave pop,soft rock",0.658,0.647,0.0,-6.787,1.0,0.137,0.659,0.0,0.174,0.825,98.49,4.0,,Rhino Atlantic,"C © 2005 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing., P ℗ 2005 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing.",6768 +6769,spotify:track:2gam98EZKrF9XuOkU13ApN,Promiscuous,"spotify:artist:2jw70GZXlAI8QzWeY2bgRc, spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ","Nelly Furtado, Timbaland",spotify:album:2yboV2QBcVGEhcRlYuPpDT,Loose,spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a6f439c8957170652f9410e2,1,4,242293,https://p.scdn.co/mp3-preview/bc151048f2138d6cd93d690fcbd95227a85ef5b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USUM70603473,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian latin,canadian pop,dance pop,pop,dance pop,pop,pop rap",0.808,0.97,10.0,-6.098,0.0,0.0504,0.0573,6.17e-05,0.154,0.868,114.328,4.0,,Mosley / Geffen,"C © 2006 Geffen Records, P ℗ 2006 Geffen Records",6769 +6770,spotify:track:6VCAdRZ8HOgsMPOCf4MQQQ,Popcorn,spotify:artist:4J3wzDMI97AlGimdiVcaLb,Crazy Frog,spotify:album:4QfUmCEKzFHURER9FhPe8m,Crazy Frog pres. Crazy Hits,spotify:artist:4J3wzDMI97AlGimdiVcaLb,Crazy Frog,2005-08-01,https://i.scdn.co/image/ab67616d0000b2739d59ce8b3d00e47cebf1cc53,1,3,192373,https://p.scdn.co/mp3-preview/39bf725adf7ee8536c1ce5f55be3c14dea581b18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DES310500135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.776,0.985,0.0,-3.549,1.0,0.0347,0.0894,0.854,0.337,0.96,130.007,4.0,,Mach 1,"C 2005 Mach 1 Records GmbH, P 2005 Mach 1 Records GmbH",6770 +6771,spotify:track:4jV0gJXqw8uzsgxmOGbz1k,Joy You Bring,spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,spotify:album:3MT88SSyxQGbqYXj4LVk3b,Hot Shot,spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,2000-08-08,https://i.scdn.co/image/ab67616d0000b2739449f9491c364d28a9668e17,1,13,209093,https://p.scdn.co/mp3-preview/1eb9d91c47b8dc1133e8e889fbadf3418139d066?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USMC10110246,spotify:user:bradnumber1,2022-01-13T01:33:25Z,"dance pop,pop rap,reggae fusion",0.742,0.8,7.0,-3.779,1.0,0.233,0.107,0.0,0.188,0.745,191.697,4.0,,Geffen,"C © 2000 UMG Recordings, Inc., P ℗ 2000 UMG Recordings, Inc.",6771 +6772,spotify:track:4r0pURztchXzSv01LPtu7q,When You Know,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:002H8sA77XFikjH4kbPaph,The Heavy Entertainment Show (Deluxe),spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2016-11-04,https://i.scdn.co/image/ab67616d0000b2730f7ea7d45b75a3dabac59140,1,12,260813,https://p.scdn.co/mp3-preview/fd6f44a09ca0d75c7bf68c07c884e55ddc696875?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBPS61600010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.528,0.651,3.0,-5.842,1.0,0.029,0.0693,0.0,0.102,0.21,90.648,4.0,,Columbia,P (P) 2016 Robert Williams/Farrell Music Limited,6772 +6773,spotify:track:3HVWdVOQ0ZA45FuZGSfvns,I Don't Care (with Justin Bieber),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Ed Sheeran, Justin Bieber",spotify:album:5Nux7ozBJ5KJ02QYWwrneR,I Don't Care (with Justin Bieber),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Ed Sheeran, Justin Bieber",2019-05-10,https://i.scdn.co/image/ab67616d0000b27323d36bb2f358094e0271c472,1,1,219946,https://p.scdn.co/mp3-preview/03dbc7b6fcafda4f5c223036f0ca919f2b65da25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBAHS1900672,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop,canadian pop,pop",0.798,0.676,6.0,-5.041,1.0,0.0442,0.0902,0.0,0.0894,0.843,101.956,4.0,,Atlantic Records UK,"C © 2019 Warner Music UK Limited, P ℗ 2019 An Asylum Records UK release, a division of Atlantic Records UK ℗ 2019 Warner Music UK Limited / Def Jam Recordings, a division of UMG Recordings, Inc",6773 +6774,spotify:track:6ZNw9Cnc85OeHZrjMAZJfY,Goodbye,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:4jbWZmf7kRxCBD6tgVepYh,Forever,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,2000-01-01,https://i.scdn.co/image/ab67616d0000b273e9abe405c4503cb4cf0d2265,1,11,275426,https://p.scdn.co/mp3-preview/a5b6d3122dd6cd02ded795306897d176f13ee952?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBAAA9820805,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.552,0.694,4.0,-4.489,1.0,0.026,0.0846,0.0,0.117,0.359,136.019,4.0,,Virgin Records,"C © 2000 Virgin Records Limited, P ℗ 2000 Virgin Records Limited",6774 +6775,spotify:track:5UVsbUV0Kh033cqsZ5sLQi,In the Year 2525 (Exordium & Terminus),spotify:artist:55IyYO6fmYpYw6Nd4YF7bw,Zager & Evans,spotify:album:48nQg5aRjshznfUlppTBGL,In the Year 2525 (Exordium Terminus),spotify:artist:55IyYO6fmYpYw6Nd4YF7bw,Zager & Evans,1969-07-01,https://i.scdn.co/image/ab67616d0000b273e64f40dfe27c93052a8e726d,1,1,199653,https://p.scdn.co/mp3-preview/f1312ecc46967bd64a4db47deeccd88f596747f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USRC19901100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.451,0.62,8.0,-5.609,0.0,0.0361,0.145,0.0239,0.0677,0.5,123.487,4.0,,RCA/Legacy,"P Originally released 1969. All rights reserved by RCA Records, a division of Sony Music Entertainment",6775 +6776,spotify:track:1brwdYwjltrJo7WHpIvbYt,Faded,spotify:artist:7vk5e3vY1uw9plTHJAMwjN,Alan Walker,spotify:album:4pvMZr2Kfe1typbTqMHa8z,Faded,spotify:artist:7vk5e3vY1uw9plTHJAMwjN,Alan Walker,2015-12-04,https://i.scdn.co/image/ab67616d0000b273c8dc7bd02b88a5a9834bda8e,1,1,212626,https://p.scdn.co/mp3-preview/dd79198f4b4c43aef9c8e8e1c4708a402862dd0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,NOG841549010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electro house,0.589,0.651,6.0,-5.097,1.0,0.0306,0.0291,3.2e-06,0.111,0.166,90.011,4.0,,Kreatell Music,P (P) 2015 Kreatell Music under exclusive license to Sony Music Entertainment Sweden AB,6776 +6777,spotify:track:70rFIfYN7lU6iTgUIVP42w,my ex's best friend (with blackbear),"spotify:artist:6TIYQ3jFPwQSRmorSezPxX, spotify:artist:2cFrymmkijnjDg9SS92EPM","mgk, blackbear",spotify:album:0wypXkbH1LkcVRhlB9gvn5,my ex's best friend (with blackbear),"spotify:artist:6TIYQ3jFPwQSRmorSezPxX, spotify:artist:2cFrymmkijnjDg9SS92EPM","mgk, blackbear",2020-08-07,https://i.scdn.co/image/ab67616d0000b273364778383730b88ff4baf4ee,1,1,138970,https://p.scdn.co/mp3-preview/113a9ff1540443e52c751fa0b8620934b20ceae7?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM72014730,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ohio hip hop,pop rap,alt z,pop",0.728,0.685,5.0,-5.096,0.0,0.0433,0.00391,0.0,0.152,0.33,124.934,4.0,,Bad Boy/Interscope Records,"C © 2020 Bad Boy/Interscope Records, P ℗ 2020 Bad Boy/Interscope Records",6777 +6778,spotify:track:4FtEKK21hvAqtn3LRT6tW2,,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,,spotify:album:58rbGtypokiMYSrfXDlAgN,,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,0000,,1,5,0,,False,0,,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.858,0.884,5.0,-4.435,1.0,0.0387,0.0588,0.0,0.121,0.963,104.019,4.0,,,,6778 +6779,spotify:track:0hx7dFr1t8dAl5zahnW9ZZ,You're My World (Il Mio Mondo) - Mono,spotify:artist:3bCvHtuIXWXPbCMdSYudmZ,Cilla Black,spotify:album:1xbhzMkWU9WqSzUrd0hKy7,The Best of Cilla Black (Mono Edition),spotify:artist:3bCvHtuIXWXPbCMdSYudmZ,Cilla Black,2009-09-04,https://i.scdn.co/image/ab67616d0000b2736df657958b8086569dad04b0,1,3,178653,https://p.scdn.co/mp3-preview/95cf185e8a72dd89d0766dc17dde5bd90d2ee709?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,GBAYE0901324,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,merseybeat,rock-and-roll",0.388,0.416,8.0,-8.985,1.0,0.0292,0.748,0.00846,0.0549,0.449,96.995,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",6779 +6780,spotify:track:1VBRdl1sT4DGckQaTzKEB9,It's All Been Done,"spotify:artist:0dEvJpkqhrcn64d3oI8v79, spotify:artist:32ckuKo8LrZhQMyCehYKkt","Barenaked Ladies, Tom Lord-Alge",spotify:album:0DuFDnZcj7B4R0Jik1aDmY,Stunt (20th Anniversary Edition),spotify:artist:0dEvJpkqhrcn64d3oI8v79,Barenaked Ladies,1998-07-07,https://i.scdn.co/image/ab67616d0000b2737d2055190ae60ffa4c74d13c,1,2,206000,https://p.scdn.co/mp3-preview/65e847c6c061cedd1f6cb9eea223d9ee72a62978?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USRE19800262,spotify:user:bradnumber1,2021-11-17T22:18:58Z,"canadian pop,canadian rock,pop rock,post-grunge",0.521,0.919,2.0,-3.146,1.0,0.0475,0.000173,0.00218,0.301,0.746,131.726,4.0,,Rhino/Warner Records,"C © 2018 Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2018 Rhino Entertainment Company, a Warner Music Group Company",6780 +6781,spotify:track:3XG7bMVcMWLIn2k9jLAaAt,King Of The Road,spotify:artist:1RP2UpEaRzkF0Id3JigqD8,Roger Miller,spotify:album:0B4wezbhEPFRVb4feiNBeM,Golden Hits,spotify:artist:1RP2UpEaRzkF0Id3JigqD8,Roger Miller,1965-01-01,https://i.scdn.co/image/ab67616d0000b2736a437a9c79f45e8baba285a0,1,1,147306,https://p.scdn.co/mp3-preview/a056500684c17bd1403cc4f4f5ed7a2bc2d2e4e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USPR36407083,spotify:user:bradnumber1,2022-09-29T06:32:02Z,"classic country pop,classic oklahoma country,nashville sound",0.67,0.272,11.0,-13.699,1.0,0.0704,0.717,0.0,0.178,0.613,117.996,4.0,,Mercury Nashville,"C © 1965 UMG Recordings, Inc., P This Compilation ℗ 1965 UMG Recordings, Inc.",6781 +6782,spotify:track:3vCHmbyOgc6pgwLUWfU4pF,Somebody To Love - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:0QRlYlrBuP7eGpEMZvZiaQ,A Day At The Races (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1976-12-10,https://i.scdn.co/image/ab67616d0000b27307874b4761f46ddfe9398522,1,6,296480,https://p.scdn.co/mp3-preview/5932351c4617463dc2f3dc4972df1c6818f38112?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71029613,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.461,0.69,8.0,-6.958,1.0,0.0611,0.169,1.01e-06,0.113,0.353,110.915,3.0,,Universal Music Group,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",6782 +6783,spotify:track:75SMxaQ5gYrM8hoGQbwcNi,Bodies,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:7Dh9uAr5Pv3RVs65jyRrDy,Reality Killed The Video Star,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2009-01-01,https://i.scdn.co/image/ab67616d0000b2733f645dae54d893e743230bf4,1,2,243859,https://p.scdn.co/mp3-preview/32fd6cafd400acc85887ac8d9fceff8fe43970fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBFFG0900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.656,0.731,6.0,-6.045,0.0,0.0616,0.00703,6.52e-06,0.0651,0.785,95.008,4.0,,Virgin Records,"C © 2009 Robert Williams/The In Good Company Co Ltd, P ℗ 2009 Robert Williams/The In Good Company Co Ltd",6783 +6784,spotify:track:3BT6pJdmvpsjCHsbZg9fzF,I'm a Mess,spotify:artist:64M6ah0SkkRsnPGtGiRAbb,Bebe Rexha,spotify:album:0DRqXtFl0JqQxDyBuyURBx,I'm a Mess,spotify:artist:64M6ah0SkkRsnPGtGiRAbb,Bebe Rexha,2018-06-15,https://i.scdn.co/image/ab67616d0000b2733e69237d7269597992fd0b87,1,1,195519,https://p.scdn.co/mp3-preview/659f79495a93c491911ee2f45144d1af30d8010c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB11800739,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.63,0.694,11.0,-6.257,0.0,0.0253,0.00281,0.0,0.0719,0.216,97.005,4.0,,Warner Bros.,"C 2018 Warner Bros. Records Inc., P 2018 Warner Bros. Records Inc.",6784 +6785,spotify:track:1msykqPE0qoZig4nb9khI0,Little Red Rooster,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,spotify:album:4FsWNGbkeZtMD1BWXhIvRk,Night Beat,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,1963-08,https://i.scdn.co/image/ab67616d0000b27347e92d736f178e95bf50d3ed,1,7,171826,https://p.scdn.co/mp3-preview/a7528817fa18b4f03cc935262352016c880d251a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USRC16306966,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,soul,vocal jazz",0.597,0.64,9.0,-7.719,1.0,0.0427,0.588,0.0,0.526,0.823,92.422,4.0,,RCA/Legacy,"P Originally released 1963. All rights reserved by RCA Records, a division of Sony Music Entertainment",6785 +6786,spotify:track:0JKaYO3e4sKgkshtuFqzqB,Chariots Of Fire,spotify:artist:4P70aqttdpJ9vuYFDmf7f6,Vangelis,spotify:album:4Kvm4kywipG1aFKwvUqIio,Themes,spotify:artist:4P70aqttdpJ9vuYFDmf7f6,Vangelis,1989-01-01,https://i.scdn.co/image/ab67616d0000b273a1b0b85d60305a242c00546d,1,14,211208,https://p.scdn.co/mp3-preview/489e97aa83424119520cbff6b3e6fda22176ebac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF058190002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"cyberpunk,synthesizer",0.471,0.379,1.0,-13.411,1.0,0.0336,0.0795,0.355,0.121,0.051,136.343,4.0,,Universal Music Group,"C © 1989 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1989 Universal Records, a Division of UMG Recordings, Inc.",6786 +6787,spotify:track:4VGlBK62umuMrrN7hv9Ins,Wired for Sound - 2001 Remaster,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:0mWgmgROMsjSvvNydhSj8B,Wired for Sound,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1981,https://i.scdn.co/image/ab67616d0000b273831a2c509b2767d98252116a,1,1,218400,https://p.scdn.co/mp3-preview/ad7f4f7be366d715ca2004431c1c05be76fd5abb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBAYE0100619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.545,0.894,1.0,-4.48,1.0,0.0956,0.121,0.0,0.0602,0.845,157.668,4.0,,Parlophone UK,"C © 2001 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",6787 +6788,spotify:track:672uPLDAVUmeCOh0UD128y,Shine,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:03VcQnLXi87fGVXpt7pv45,Lift,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2005-10-16,https://i.scdn.co/image/ab67616d0000b2734b97ecf0eea067bdc7d05caf,1,2,213986,https://p.scdn.co/mp3-preview/66356d9f997c41f4da1b20a5c8ea307da1208e67?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUBM00599354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,australian pop,australian rock",0.444,0.819,6.0,-1.811,1.0,0.0382,5.73e-05,1.98e-05,0.138,0.508,118.042,4.0,,Sony BMG Music Entertainment,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,6788 +6789,spotify:track:3x2bXiU0o4WbsPkawXlfDA,Who Are You,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:6LRJF97hgXHj8uMLHyCDbh,Who Are You (Remastered),spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1978-08-18,https://i.scdn.co/image/ab67616d0000b273693812c5802c5e5d8fc987da,1,9,378706,https://p.scdn.co/mp3-preview/f93a2ee689feb5a2e7d8fb7e4858dd0f3b936f77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW7801011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.651,0.661,9.0,-11.405,1.0,0.0511,0.265,0.00313,0.106,0.489,156.371,4.0,,Universal Music Group,"C © 1996 Polydor Ltd. (UK), P ℗ 1996 Polydor Ltd. (UK)",6789 +6790,spotify:track:1yjznOLHmk9nMVskfYSMpr,Paradise,spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl,Bazzi,spotify:album:6QG66B6oznYRrMPLSXZqPZ,Soul Searching,spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl,Bazzi,2019-08-07,https://i.scdn.co/image/ab67616d0000b273de584d1f1b4fd6df7491949b,1,10,168080,https://p.scdn.co/mp3-preview/1b9853cb275b9dde0e2013d429b9dd2e87a82bb7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USAT21902181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.849,0.629,11.0,-6.871,0.0,0.0474,0.0723,0.0,0.104,0.602,122.074,4.0,,iamcosmic,"C © 2019 iamcosmic/Atlantic Recording Corporation, P ℗ 2019 iamcosmic/Atlantic Recording Corporation",6790 +6791,spotify:track:4OenhMVR0XFtaDnKVsLQ2z,Spicks and Specks - 2012 Remaster,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:0YdpOz1mhS3bkQoM1081gI,Spicks and Specks,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1966,https://i.scdn.co/image/ab67616d0000b27302401a190ddfd10d94d49ee6,1,7,181453,https://p.scdn.co/mp3-preview/949d0ac7fe090f08c307b205f0372496cda845d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUWA01200220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.673,0.656,9.0,-7.052,1.0,0.0346,0.646,1.46e-05,0.0924,0.733,121.449,4.0,,WM Australia,"C © 2013 WARNER MUSIC AUSTRALIA PTY LIMITED. MARKETED AND DISTRIBUTED BY WARNER MUSIC AUSTRALIA PTY LIMITED IN AUSTRALIA AND NEW ZEALAND, P ℗ 2013 WARNER MUSIC AUSTRALIA PTY LIMITED. MARKETED AND DISTRIBUTED BY WARNER MUSIC AUSTRALIA PTY LIMITED IN AUSTRALIA AND NEW ZEALAND",6791 +6792,spotify:track:4pbyDPjFgfPqFTcIMC8xpK,Rock DJ,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:11DmTQm7WPeSXih1FPuaXL,Sing When You're Winning,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2000-01-01,https://i.scdn.co/image/ab67616d0000b273c5f3aaf3b54a777d96ecf604,1,3,258560,https://p.scdn.co/mp3-preview/667627f7ce00004982f89a56fe84f106097bf18d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAYK0000160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.708,0.772,7.0,-4.264,1.0,0.0322,0.0267,0.0,0.467,0.861,103.035,4.0,,Chrysalis UK,"C © 2000 Chrysalis Records Ltd, P ℗ 2000 Chrysalis Records Ltd",6792 +6793,spotify:track:0Yi128S6QgQDnAKg5A0OZw,To Be With You,spotify:artist:5OfhOoKunSnuubxxRML8J3,Mr. Big,spotify:album:0DYLNt604AgwFMQhK3HNLR,Deep Cuts: The Best Of The Ballads,spotify:artist:5OfhOoKunSnuubxxRML8J3,Mr. Big,2000,https://i.scdn.co/image/ab67616d0000b273cb9ca5ac037549653c3c5eca,1,15,208066,https://p.scdn.co/mp3-preview/8c758ef8106cee89b35633a7927321756c2a55d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20302609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock",0.696,0.419,4.0,-7.289,1.0,0.0419,0.245,0.0,0.0785,0.487,83.653,4.0,,Rhino Atlantic,"C 2000 Atlantic Recording Corp., P 2000 Atlantic Recording Corp. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",6793 +6794,spotify:track:7ilS0BPWS8ek2P2GaxH3cP,When We Were Young,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:5oWQ2uILvj5bAjeIjSYYc8,When We Were Young,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2016-02-05,https://i.scdn.co/image/ab67616d0000b2730993acbcf3bd653f0ce84eb1,1,1,290900,https://p.scdn.co/mp3-preview/b35676526fa76530da3e9b880a64305e761bc2ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1500217,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.377,0.595,3.0,-5.936,1.0,0.0489,0.303,0.0,0.095,0.264,144.464,4.0,,XL Recordings,"C 2016 XL Recordings Limited., P 2016 XL Recordings Limited.",6794 +6795,spotify:track:2AIcgpyuLhNa35y4lyVZVz,"Hello Muddah, Hello Fadduh! (A Letter from Camp)",spotify:artist:1enLi8njBlk1YlDg44MtJm,Allan Sherman,spotify:album:7fqkOtgfcKOEC3lGJKZz8y,My Son the Nut,spotify:artist:1enLi8njBlk1YlDg44MtJm,Allan Sherman,2016-06-17,https://i.scdn.co/image/ab67616d0000b273dfbd97608aea583f3c6d13a4,1,7,174653,https://p.scdn.co/mp3-preview/cd043cdb848c4d54b1697bd5a025fddb9696e5a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,TCACP1646586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,comic,0.619,0.409,9.0,-12.887,1.0,0.201,0.81,0.0,0.641,0.626,115.591,4.0,,Allan Sherman,"C 2016 Allan Sherman, P 2016 Allan Sherman",6795 +6796,spotify:track:5JJDu0Z5DKe7mR31MGksSg,Come Out and Play,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:7IDywTRaCI8qzS3X8tNU3x,Smash,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,1994-04-08,https://i.scdn.co/image/ab67616d0000b2730158cbde70672dd821972907,1,7,197800,https://p.scdn.co/mp3-preview/03dbbaa0e6d23eb0009d40f5896f67873132ff0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USEP40312207,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.519,0.77,7.0,-8.788,1.0,0.0809,0.0675,3.48e-06,0.0762,0.921,158.29,4.0,,Epitaph,"C 1994 Epitaph, P 1994 Epitaph",6796 +6797,spotify:track:3fKDSSIgOngs8YYzFJO6eD,Belfast Child - Remastered 2002,spotify:artist:6hN9F0iuULZYWXppob22Aj,Simple Minds,spotify:album:17U68dqp73T4E3Kte15ben,Street Fighting Years,spotify:artist:6hN9F0iuULZYWXppob22Aj,Simple Minds,1989-05-08,https://i.scdn.co/image/ab67616d0000b27390afcb40b8f5e9ddfc6fa565,1,9,402173,https://p.scdn.co/mp3-preview/292bbe7486d85267b48d24c220aed8c87a0b40e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAAA0200654,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,scottish new wave,soft rock",0.163,0.51,7.0,-8.414,1.0,0.0415,0.341,0.0638,0.0945,0.325,162.086,4.0,,Virgin Records,"C © 2003 Virgin Records Limited, P ℗ 2003 Virgin Records Limited",6797 +6798,spotify:track:6TgqY8Vfm4StBe8hsxi3Ti,Beast of Burden,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,spotify:album:77QvqJ5NDNEaMFiyTKG41w,No Frills,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,1983-08-17,https://i.scdn.co/image/ab67616d0000b27315119640d6aa07b806e2e2ac,1,8,225866,https://p.scdn.co/mp3-preview/dc49e1837fa8d21c5276b0bc12ee94ffab38aa70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USAT20100735,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,new wave pop,soft rock",0.577,0.788,4.0,-6.813,1.0,0.0309,0.00727,1.27e-05,0.0637,0.914,105.428,4.0,,Atlantic Records,"C © 1983 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1983 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",6798 +6799,spotify:track:4i1qdRTAL6dyDuKWZmbwzH,El Paso,spotify:artist:0Xi59sEw38vRvwleSAVqoo,Marty Robbins,spotify:album:74rRdoFP8aO3ZhY8MeZK0m,The Story Of My Life: The Best Of Marty Robbins 1952-1965,spotify:artist:0Xi59sEw38vRvwleSAVqoo,Marty Robbins,1996-03-12,https://i.scdn.co/image/ab67616d0000b273de6a96b9d62a611e4ffc7756,1,10,261466,https://p.scdn.co/mp3-preview/ee656fa08f912d9adf4b0ee5137535b2a59fb0ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USSM15900003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"cowboy western,nashville sound",0.645,0.395,2.0,-12.511,1.0,0.0349,0.827,1.09e-06,0.203,0.657,105.968,3.0,,Columbia/Legacy,P (P) 1996 SONY BMG MUSIC ENTERTAINMENT,6799 +6800,spotify:track:1yqMgZNrevsWMLWfO2PRp5,Charlie Brown,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:2R7iJz5uaHjLEVnMkloO18,Mylo Xyloto,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2011-10-24,https://i.scdn.co/image/ab67616d0000b273de0cd11d7b31c3bd1fd5983d,1,4,285159,https://p.scdn.co/mp3-preview/e0af2d50a09d4de440c3f86f5c08ea357c7fc3a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAYE1101180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.43,0.74,10.0,-7.072,1.0,0.0375,0.0212,0.00165,0.33,0.0948,137.978,4.0,,Parlophone UK,"C © 2011 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2011 Parlophone Records Ltd, a Warner Music Group Company",6800 +6801,spotify:track:04Jk0uP8SbDHLyAKfRctNQ,Big Me,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:1zCNrbPpz5OLSr6mSpPdKm,Greatest Hits,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-11-03,https://i.scdn.co/image/ab67616d0000b273136d7250568820409f8fdd60,1,9,132333,https://p.scdn.co/mp3-preview/0d80d17ae02f4ed5be69917ae56c3d6d1613f2a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USRW29500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.558,0.817,0.0,-5.958,1.0,0.038,0.39,0.0,0.137,0.874,130.956,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",6801 +6802,spotify:track:76fFzThA0KjAea2BdVlHnD,Every Time I Think of You,spotify:artist:6z7wrwE2QW7Keb9ozoF0rg,The Babys,spotify:album:3DK4X9EekTvWGSDNQPceGr,Head First,spotify:artist:6z7wrwE2QW7Keb9ozoF0rg,The Babys,1978-01-01,https://i.scdn.co/image/ab67616d0000b273990780d54c9127f185191b30,1,2,239160,https://p.scdn.co/mp3-preview/1605017c5b3a604bbf0f66c74f674e6f3846ac98?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK7900105,spotify:user:bradnumber1,2021-08-08T09:26:31Z,album rock,0.395,0.641,7.0,-5.96,1.0,0.0353,0.188,7.1e-05,0.145,0.421,121.451,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1978 Chrysalis Records Limited",6802 +6803,spotify:track:3XPX8bOozgShCrhWbLC0ZL,Kissin' in the Back Row of the Movies,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,spotify:album:1imTGKx9Ak5kaPpZLC9DGg,Legends,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,2004-09-25,https://i.scdn.co/image/ab67616d0000b273b339cdeae56adef848d8ac2c,1,1,211720,https://p.scdn.co/mp3-preview/0f2481de586c9b9eb1160344778d558ed7fd9bf7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBARK7400014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,doo-wop,rock-and-roll,rockabilly,soul",0.74,0.752,0.0,-6.792,1.0,0.031,0.317,0.0,0.269,0.962,126.982,4.0,,BMG Music,P (P) This compilation P 2004 BMG UK & Ireland Ltd.,6803 +6804,spotify:track:1EpqljJV8jhbwyvzM8ICwj,Long Live the Summer,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:7yxxvCtoPfi1wnoH5qTN9x,Long Live the Summer,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2019-11-04,https://i.scdn.co/image/ab67616d0000b2733b442a775fc0e0d9842b4c62,1,1,203105,https://p.scdn.co/mp3-preview/36a7edc3ecae060ece9f8c57857f9b9b7a737be7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUMTB1900317,spotify:user:bradnumber1,2022-01-13T01:12:35Z,"australian country,australian pop,australian rock",0.511,0.762,1.0,-5.043,1.0,0.0475,0.0236,0.0,0.369,0.866,90.014,4.0,,Social Family Records (Australia) Pty Ltd,"C (C) 2019 Shannon Noll distributed by Social Family Records (Australia) Pty Ltd, P (P) 2019 Shannon Noll distributed by Social Family Records (Australia) Pty Ltd",6804 +6805,spotify:track:2SDx0PooHZI1SQKR0y44bs,Grace Kelly,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,spotify:album:6oIaXBTIZ2Q9cJKBgrZ2Ox,Life In Cartoon Motion,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,2006-01-01,https://i.scdn.co/image/ab67616d0000b2733408a925e0bcb7940f864a0e,1,1,187733,https://p.scdn.co/mp3-preview/2dfc3bfee24162d5caa94c0056b78a022b3dc07c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USC7R0600006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electropop,0.676,0.828,0.0,-5.799,1.0,0.0454,0.0242,0.0105,0.364,0.669,122.228,4.0,,Universal-Island Records Ltd.,"C © 2006 Casablanca Music, LLC, P ℗ 2006 Casablanca Music, LLC",6805 +6806,spotify:track:4n9dNmFWPfr6VNJVO9fLWw,Take Back The City,spotify:artist:3rIZMv9rysU7JkLzEaC5Jp,Snow Patrol,spotify:album:0RelQTPtjfL0xei13UwhPO,A Hundred Million Suns,spotify:artist:3rIZMv9rysU7JkLzEaC5Jp,Snow Patrol,2008-01-01,https://i.scdn.co/image/ab67616d0000b27397d4d2ba05685091123b531b,1,3,278306,https://p.scdn.co/mp3-preview/d5b58e822c8319be619d1a1fb4456a631d720b8c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBUM70812569,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,modern rock,neo mellow,permanent wave,pop rock",0.525,0.949,8.0,-4.44,1.0,0.0579,0.00288,5.44e-06,0.117,0.334,130.115,4.0,,Polydor Records,"C © 2008 Polydor Ltd. (UK), P ℗ 2008 Polydor Ltd. (UK)",6806 +6807,spotify:track:2nXBu5Ra6LGrJJzXHHm0co,"Right Here, Right Now",spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,spotify:album:4qicpEx9YhJukXDyin0bkC,"You've Come A Long Way, Baby",spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,1998-09-14,https://i.scdn.co/image/ab67616d0000b273c7e778ef5af408cd762995d4,1,1,388026,https://p.scdn.co/mp3-preview/f89c979113f5a530b06b807d5c1044ba6d0af42b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBMQ9800077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica",0.523,0.864,7.0,-8.08,1.0,0.154,0.0128,0.496,0.674,0.0911,124.632,4.0,,Skint,"C (C) 1998 Skint Records, P (P) 1998 Skint Records",6807 +6808,spotify:track:6Vo8OXQXCabNPD4z4wp7Is,Children Of The Revolution,spotify:artist:3dBVyJ7JuOMt4GE9607Qin,T. Rex,spotify:album:7sIEt8O8vQcOvran3M2I6J,Tanx (Deluxe Edition),spotify:artist:3dBVyJ7JuOMt4GE9607Qin,T. Rex,1973-03-16,https://i.scdn.co/image/ab67616d0000b27368c6250645217ac10856629c,1,14,150133,https://p.scdn.co/mp3-preview/01cf1b0d5d22c76f193347ad38da162adbb2a35f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAFR7210010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,protopunk,rock,singer-songwriter",0.542,0.737,4.0,-7.988,0.0,0.0497,0.0516,0.0,0.0681,0.762,130.473,4.0,,Demon,"C (C) 2002 Demon Music Group Ltd., P (P) 2002 Demon Music Group Ltd.",6808 +6809,spotify:track:7wdLZdLzaYCkUvxkPhFP4Q,You Raise Me Up,spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,spotify:album:5ugoRIIaimU0HVI5mNZkCY,Face To Face,spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,2005,https://i.scdn.co/image/ab67616d0000b27352ababff0ba0cba023484c34,1,1,241066,https://p.scdn.co/mp3-preview/cb5671c40f5d08ced93d419ff1bcc38999d67a8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL0500641,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.129,0.358,10.0,-6.596,1.0,0.0314,0.631,0.0,0.0886,0.172,75.048,5.0,,S Records,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (UK) LIMITED,6809 +6810,spotify:track:0rmGAIH9LNJewFw7nKzZnc,You Give Love A Bad Name,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0kBfgEilUFCMIQY5IOjG4t,Slippery When Wet,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1986-08-16,https://i.scdn.co/image/ab67616d0000b2731336b31b6a1799f0de5807ac,1,2,222706,https://p.scdn.co/mp3-preview/8725d17310a4bb00377f22ef21fe93fc5fbff0da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USPR39402224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.541,0.959,0.0,-2.947,0.0,0.0505,0.0663,2.18e-06,0.344,0.812,122.805,4.0,,Island Records,"C © 1986 UMG Recordings, Inc., P ℗ 1986 UMG Recordings, Inc.",6810 +6811,spotify:track:0PawNY8n4GvLqlbDIs6OPT,Sky High,spotify:artist:29NJ6VbDPYhqdXXANEwHc7,Jigsaw,spotify:album:65r2vQ5xYoHSACdtWYRBBa,Anthology,spotify:artist:29NJ6VbDPYhqdXXANEwHc7,Jigsaw,1975-08-10,https://i.scdn.co/image/ab67616d0000b273724467ee3f46bfbb924eedfd,1,1,171586,https://p.scdn.co/mp3-preview/ae866bf9db09274d68c003c9627df443ebbdcb9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCQX7500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.611,0.497,11.0,-11.138,0.0,0.0275,0.00703,0.0,0.162,0.603,134.96,4.0,,Splash Records (london),"C 2011 Splash Records (london), P 2011 Splash Records (london)",6811 +6812,spotify:track:7CvOnbFdnIoXMQ4eFCo5lB,Around the World (La La La La La) - Radio Version,"spotify:artist:5wTdspmxzb8V4ZjvDodpBo, spotify:artist:0PEfbjTw85CAN5G0lz9n3p","A Touch Of Class, Pete Konemann",spotify:album:2kBFECL9a71fNRXbRW5xO3,Planet Pop,spotify:artist:5wTdspmxzb8V4ZjvDodpBo,A Touch Of Class,2000-11-06,https://i.scdn.co/image/ab67616d0000b2732b674491e363e44f14d10f43,1,2,214533,https://p.scdn.co/mp3-preview/2b720730f72fb3ed4743c3a61e693000fdb8c633?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,DEP810000008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.617,0.977,9.0,-7.028,0.0,0.0276,0.153,0.0016,0.133,0.679,131.965,4.0,,Sony Music Catalog,P (P)2000 BMG Berlin Musik GmbH/Kingsize,6812 +6813,spotify:track:4CcCiZRjlRoHDPyvNsKn51,Pride and Joy,spotify:artist:23U4BazsWheaHKYgKGnnkl,Normie Rowe,spotify:album:0F3smCoP8sLUvuLbu0W5mH,Greatest Hits,spotify:artist:23U4BazsWheaHKYgKGnnkl,Normie Rowe,2007-02-06,https://i.scdn.co/image/ab67616d0000b27397e694959d6240a264f0ce70,1,5,121466,https://p.scdn.co/mp3-preview/6fadc4ee07f0a1ab6b50899bba73bbb9a6a3bddc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,AUFE07400060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,cabaret",0.434,0.705,3.0,-7.977,1.0,0.0517,0.0978,0.0,0.208,0.757,131.884,4.0,,WM Australia,"C © 1974 Sunshine Records, P ℗ 1974 Sunshine Records",6813 +6814,spotify:track:27BJvohzeadNRclYHPV3Gl,Hush Hush; Hush Hush,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,spotify:album:6WGJ3lgccWlOoOQLFyjvBe,Doll Domination (Revised International Version),spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2008,https://i.scdn.co/image/ab67616d0000b273ad514c6d527d38c25faa6bd2,1,13,253600,https://p.scdn.co/mp3-preview/331b0dac276291c8b9a55f5ddd66607841728d8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70959226,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.634,0.796,10.0,-4.11,0.0,0.0626,0.062,0.0,0.265,0.613,129.438,4.0,,Pussycat Dolls LP2 / Timbaland,"C © 2009 Pussycat Dolls, LLC, P ℗ 2009 Pussycat Dolls, LLC",6814 +6815,spotify:track:4fUU9WKxEgJXyrZJsUA2iP,Can't You See,spotify:artist:59QxeZBL6k9L4oJBGSyukd,The Marshall Tucker Band,spotify:album:1w7JOjdpfTBz4rvhWQDWJz,The Marshall Tucker Band,spotify:artist:59QxeZBL6k9L4oJBGSyukd,The Marshall Tucker Band,1973,https://i.scdn.co/image/ab67616d0000b273bb05d6a2671766e6e633a131,1,2,365093,https://p.scdn.co/mp3-preview/b8b74bd3c682391cbc613a9723da34eb386d469e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSE90320363,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,singer-songwriter,soft rock,southern rock",0.406,0.713,7.0,-5.49,1.0,0.0348,0.276,0.00354,0.112,0.577,164.444,4.0,,Ramblin' Records,"C (C) 1973 MT Industries, Inc.",6815 +6816,spotify:track:3gU67Zv2F5tDliqIfwuGar,Cigarettes Will Kill You,spotify:artist:06y1hH4hu3rcTUXHJevPCf,Ben Lee,spotify:album:4hcahlcdRtA6ecTmTBq4aP,Breathing Tornadoes,spotify:artist:06y1hH4hu3rcTUXHJevPCf,Ben Lee,1998-11-16,https://i.scdn.co/image/ab67616d0000b2735639db45b7c89c4efc92c445,1,1,230373,https://p.scdn.co/mp3-preview/8cf672e03d6bd6bb9771d60c4094dfc45d2b96a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGR39800007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian pop,australian rock",0.709,0.613,8.0,-7.653,1.0,0.0279,0.0424,0.00184,0.0777,0.533,114.948,4.0,,Universal Music Australia Pty. Ltd.,"C © 1998 Modular Recordings, Under exclusive license to Universal Music Australia Pty Limited, P ℗ 1998 Modular Recordings, Under exclusive license to Universal Music Australia Pty Limited",6816 +6817,spotify:track:0QHEIqNKsMoOY5urbzN48u,Made You Look,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:4LVa9bljQRvLYpWr8qyaXs,Takin' It Back,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2022-10-21,https://i.scdn.co/image/ab67616d0000b2731a4f1ada93881da4ca8060ff,1,2,134256,https://p.scdn.co/mp3-preview/f0eb89945aa820c0f30b5e97f8e2cab42d9f0a99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USSM12204574,spotify:user:bradnumber1,2022-12-28T10:16:46Z,"hip pop,pop",0.834,0.522,10.0,-3.574,1.0,0.0703,0.34,1.59e-06,0.0783,0.854,145.035,4.0,,Epic,"P (P) 2022 Epic Records, a division of Sony Music Entertainment",6817 +6818,spotify:track:6mZGglJLWfy0HxbVL8i9BL,And I Love Her - Remastered,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:71Mwd9tntFQYUk4k2DwA0D,A Hard Day's Night (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1964-07-10,https://i.scdn.co/image/ab67616d0000b273f2f9ae13621c434788e78827,1,5,149693,https://p.scdn.co/mp3-preview/0ac83f3cf178f86b058df2d0612668249b04a747?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE0601442,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.767,0.331,1.0,-10.777,0.0,0.0337,0.64,0.0,0.0681,0.636,113.312,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",6818 +6819,spotify:track:375ntCG12wzCyfzclwYFwG,"Believe It or Not (Theme from ""Greatest American Hero"")",spotify:artist:5V9pNqcN25JXuH88g7lq2o,Joey Scarbury,spotify:album:5jB7KIzjiExzi01MF8NXCQ,America's Greatest Hero,spotify:artist:5V9pNqcN25JXuH88g7lq2o,Joey Scarbury,1981,https://i.scdn.co/image/ab67616d0000b27379316c96e1ac488fd0ea19e0,1,1,195293,https://p.scdn.co/mp3-preview/aa97a7ac2df29764ff089cf992bcac570edc86e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USEE10251052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,yacht rock,0.521,0.743,2.0,-5.903,1.0,0.0338,0.249,0.0,0.096,0.451,117.129,4.0,,Rhino/Elektra,"C © 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing",6819 +6820,spotify:track:32Ka9ZTXBza9SkOWRtiXBO,Candle,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:2FQ278LgDLpwbHa49ZmF63,Candle,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2016-09-09,https://i.scdn.co/image/ab67616d0000b273e03319088474af9f3ab606e0,1,1,196262,https://p.scdn.co/mp3-preview/9bb4881964722eab5a5b0c9273ff3093a620ee3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM01600335,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.401,0.585,11.0,-7.522,0.0,0.0637,0.315,0.0,0.0801,0.425,67.355,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd,6820 +6821,spotify:track:0JiVRyTJcJnmlwCZ854K4p,Alone,spotify:artist:7vk5e3vY1uw9plTHJAMwjN,Alan Walker,spotify:album:4blCxKnK1sGo9D45trrqjt,Alone,spotify:artist:7vk5e3vY1uw9plTHJAMwjN,Alan Walker,2016-12-02,https://i.scdn.co/image/ab67616d0000b273f00ade2f88d8223521bc7f76,1,1,161200,https://p.scdn.co/mp3-preview/623bb6720396d5ca585f81cbc6c2c04d83608e53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,NOG841617010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electro house,0.676,0.929,10.0,-3.194,1.0,0.0458,0.186,0.000405,0.121,0.157,97.019,4.0,,Kreatell Music,P (P) 2017 Kreatell Music under exclusive license to Sony Music Entertainment Sweden AB,6821 +6822,spotify:track:1MAqR81Tz28IIqMJ2KUDAO,Killing Me Softly With His Song,spotify:artist:2WKdxPFRD7IqZvlIAvhMgY,Fugees,spotify:album:7m1r9h3wfPRm3Iv8uvq9vQ,The Score,spotify:artist:2WKdxPFRD7IqZvlIAvhMgY,Fugees,1996,https://i.scdn.co/image/ab67616d0000b2734b7c4561e0f5002b9f5efb7a,1,8,298773,https://p.scdn.co/mp3-preview/7a931688bc452843a89fbd4d83fe2986a95c182e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19600055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hip hop,neo soul,new jersey rap",0.765,0.29,4.0,-17.117,0.0,0.139,0.0279,1.02e-06,0.571,0.506,92.409,4.0,,Columbia,P 1996 Sony Music Entertainment Inc.,6822 +6823,spotify:track:7IsEXPk6qqt30FfQv4SZMa,The Way,spotify:artist:7FtVJzRtpQpU61nBwB7cKN,Fastball,spotify:album:2KVpGKVIzcK9bB13MXJGEb,All The Pain Money Can Buy,spotify:artist:7FtVJzRtpQpU61nBwB7cKN,Fastball,1998-01-01,https://i.scdn.co/image/ab67616d0000b2735140e9c2486249b280cb36fb,1,1,257093,https://p.scdn.co/mp3-preview/89c4ed53bf4629ceb40bf73ac7ef48cb3317b393?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USHR19713001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.646,0.882,6.0,-5.648,0.0,0.0346,0.143,9.67e-06,0.335,0.908,120.837,4.0,,Hollywood Records,"C © 1998 Hollywood Records, Inc., P ℗ 1998 Hollywood Records, Inc.",6823 +6824,spotify:track:4At8zIlntcZaPorwdI69km,Boogie Wonderland (with The Emotions),"spotify:artist:4QQgXkCYTt3BlENzhyNETg, spotify:artist:64CuUOOirKmdAYLQSfaOyr","Earth\, Wind & Fire, The Emotions",spotify:album:6UixeNUSjrBnxeYV0ZuGHR,The Eternal Dance,spotify:artist:4QQgXkCYTt3BlENzhyNETg,"Earth\, Wind & Fire",1992-09-08,https://i.scdn.co/image/ab67616d0000b273af0d466d16c97b6385219d90,3,2,287866,https://p.scdn.co/mp3-preview/06c36139896754af7269ca5540bcd522e598518a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM17900238,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,jazz funk,motown,soul,chicago soul,classic soul,disco,funk,girl group,motown,post-disco,quiet storm,soul,southern soul",0.801,0.824,2.0,-9.494,0.0,0.0332,0.0801,0.0144,0.0236,0.966,131.807,4.0,,Legacy/Columbia,P (P) 1992 Sony Music Entertainment Inc.,6824 +6825,spotify:track:7i7UIbm5E0DD7aSOYvwp2v,Oh (feat. Ludacris),"spotify:artist:2NdeV5rLm47xAvogXrYhJX, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi","Ciara, Ludacris",spotify:album:71gUhKYZIWmmjqAHlY4Br3,Goodies,spotify:artist:2NdeV5rLm47xAvogXrYhJX,Ciara,2004-09-27,https://i.scdn.co/image/ab67616d0000b273c1e3659212de0f437bbf395e,1,5,256346,https://p.scdn.co/mp3-preview/dc8781fe2baca22b22ed800fe39d527783410930?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USLF20400123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,pop,r&b,urban contemporary,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap",0.8,0.496,7.0,-7.135,1.0,0.0506,0.000298,0.0,0.0697,0.357,128.29,4.0,,So So Def,P (P) 2004 LaFace Records LLC,6825 +6826,spotify:track:460gRGQCKIBKhJR1aTt2BG,Addicted To Love - Remix,"spotify:artist:530Sdm7eqqzWBdDmILMgnu, spotify:artist:0tO3KaRy0ZACd8XJYT3IX2","Robert Palmer, Eric 'ET' Thorngren",spotify:album:2bINXx2XVIkDwjkjnxhWZF,Addictions Vol. 1,spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,1989-10-13,https://i.scdn.co/image/ab67616d0000b273cd0cebed26fff11ef7c9a928,1,3,265266,https://p.scdn.co/mp3-preview/5b57235a3749f7f0f98e5dc5e250c2f67671af1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USIR20400147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,mellow gold,new romantic,new wave,new wave pop,singer-songwriter,soft rock,yacht rock",0.706,0.53,2.0,-12.83,1.0,0.0294,0.167,1.73e-05,0.0301,0.98,111.555,4.0,,Island Records,"C © 1989 UMG Recordings Inc., P This Compilation ℗ 1989 UMG Recordings Inc.",6826 +6827,spotify:track:77tfHVcjhVnMI9oyL63tWW,Never Be The Same Again - Single Mix,"spotify:artist:60vX3zLcdKRXvKLITVh5Df, spotify:artist:64ccradw8gAQn9gMQZmEha","Melanie C, Lisa ""Left Eye"" Lopes",spotify:album:6TjfhQSmmBOEwIXkoT3fdZ,Northern Star,spotify:artist:60vX3zLcdKRXvKLITVh5Df,Melanie C,1999,https://i.scdn.co/image/ab67616d0000b2736809892ec4db63e0a6ee661c,1,13,254973,https://p.scdn.co/mp3-preview/454589ca1e3d9055477b5314a0831c81665572d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAAA0000038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,talent show",0.739,0.709,7.0,-3.077,0.0,0.068,0.00356,0.0,0.0848,0.558,81.001,4.0,,Virgin Records,"C © 2000 Virgin Records Limited, P ℗ 2000 Virgin Records Limited",6827 +6828,spotify:track:30tkVyBPF2ZGF2oBnaE6cE,Love Will Never Do (Without You),spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:7jtBAkD6DL5yn7komrFTxE,Rhythm Nation 1814,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1989-09-19,https://i.scdn.co/image/ab67616d0000b27336e9e2e6de0b594414fb80c9,1,10,349693,https://p.scdn.co/mp3-preview/230a2db54f15c4baab16ca24f07141e3d898e82d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USAM19500719,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.746,0.947,1.0,-9.624,1.0,0.0602,0.159,0.00422,0.43,0.462,103.17,4.0,,A&M,"C © 1989 A&M Records, P ℗ 1989 A&M Records",6828 +6829,spotify:track:6PeWqpOSAd2IOBUa3ZWlgt,Farewell Rocketship,spotify:artist:05STafdfQBBQIV9duONwod,Children Collide,spotify:album:09wmAvJnyP6AiHy688REXD,The Long Now,spotify:artist:05STafdfQBBQIV9duONwod,Children Collide,2008-01-01,https://i.scdn.co/image/ab67616d0000b273aedb00f8dc47c61e13e8ca75,1,3,225840,https://p.scdn.co/mp3-preview/00e89d9f03572c10f00b569e003fd30d563abf38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUUM70800798,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian indie rock",0.53,0.707,4.0,-5.141,1.0,0.0387,0.00921,0.0,0.215,0.208,116.194,3.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Universal Music Australia Pty Ltd., P ℗ 2008 Universal Music Australia Pty Ltd.",6829 +6830,spotify:track:1UgKjjafmYDSgJ66NbIcBV,Pretty Flamingo,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,spotify:album:0zwLBIFXdXAEJnPmNVhrV0,Pretty Flamingo,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,1966-01-01,https://i.scdn.co/image/ab67616d0000b2733f757f671fbfcf6710e0c199,1,1,150106,https://p.scdn.co/mp3-preview/e1c9f6807a80271833b5dcd5456e39ed1a7c4033?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE6600051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,classic rock,singer-songwriter",0.553,0.594,7.0,-9.03,1.0,0.0279,0.114,0.0,0.743,0.841,113.506,4.0,,East Central One,"C 1966 East Central One Limited, P 1966 East Central One Limited",6830 +6831,spotify:track:6g1NlCpW7fgqDnWbCCDrHl,Wake Me Up - Radio Edit,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:02h9kO2oLKnLtycgbElKsw,True,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d20bacc84d203cc330a5df75,1,1,247426,https://p.scdn.co/mp3-preview/231af03bbd2ec7f655575800e54a00633d7d9eac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,SEUM71301326,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.532,0.783,2.0,-5.697,1.0,0.0523,0.0038,0.0012,0.161,0.643,124.08,4.0,,Universal Music Group,"C © 2013 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2013 Avicii Music AB, under exclusive license to Universal Music AB",6831 +6832,spotify:track:5D60AsAl5VwPKSPENSioeo,Spin That Wheel - First Feel Mix,"spotify:artist:75aA32HVEg7Z9QNG7f9l93, spotify:artist:6yav7YvxQmmD408mOoncXh","Hi Tek 3, Ya Kid K",spotify:album:6nqizbBgkRug5YRnP1YWiO,Best Of,spotify:artist:2Cd98zHVdZeOCisc6Gi2sB,Technotronic,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738be38136da239f2300038b3a,1,15,220360,https://p.scdn.co/mp3-preview/90e207385281b80125659e1359c186818bae4b3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BED019000495,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic house,0.803,0.924,5.0,-7.161,1.0,0.0701,0.0112,1.16e-05,0.0671,0.956,128.284,4.0,,Universal Music Group,"C © 2011 ARS Entertainment Belgium (A Division Of Universal Music Belgium), P ℗ 2011 ARS Entertainment Belgium (A Division Of Universal Music Belgium)",6832 +6833,spotify:track:2keZJNufsIqgoO6w58bNGK,What's Your Flava? - Radio Edit,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,spotify:album:1YI5yNJkzhBpN0BoK9AO4B,Rewind - The Collection,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2017-03-03,https://i.scdn.co/image/ab67616d0000b273caab4c5bfeaaa5adb89379c6,1,5,218413,https://p.scdn.co/mp3-preview/908a0b68f8db861953ca8c44ac3ecc70794dbf2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBAWV0202994,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.827,0.833,5.0,-4.472,0.0,0.12,0.0698,0.0,0.0987,0.887,108.116,4.0,,Sony Music UK,"P (P) 2001, 2002, 2005, 2008 & 2017 Wildstar Records Limited, licensed exclusively to Sony Music Entertainment UK Limited",6833 +6834,spotify:track:4gUWRfgm1gmqbJTYdx1YN2,We Are Done,spotify:artist:5geIMZUDvBE9CwP2iBnBuM,The Madden Brothers,spotify:album:47UNSSvKlbC6wSZ0o23RYs,Greetings From California,spotify:artist:5geIMZUDvBE9CwP2iBnBuM,The Madden Brothers,2014-09-12,https://i.scdn.co/image/ab67616d0000b273f136dc90b5bef98de0906838,1,5,216467,https://p.scdn.co/mp3-preview/45a442217cad6dabfed0b688b3f4097f3fdb5fa5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71406586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.784,0.699,1.0,-8.328,0.0,0.0325,0.114,0.000275,0.104,0.827,121.164,4.0,,EMI Recorded Music Australia Pty Ltd,"C (C) 2014 Capitol Records, LLC, P (P) 2014 Capitol Records, LLC",6834 +6835,spotify:track:3qt3ybU6MScMxMKL2TYBvt,No Particular Place To Go,spotify:artist:293zczrfYafIItmnmM3coR,Chuck Berry,spotify:album:6ITR4bqkKZGyanAlQgXtyK,St. Louis To Liverpool,spotify:artist:293zczrfYafIItmnmM3coR,Chuck Berry,1964-11-01,https://i.scdn.co/image/ab67616d0000b273e226488b7af9f296c95be551,1,3,163000,https://p.scdn.co/mp3-preview/eba8c9a79db1902de82347c99d7984ef6bbde2a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USMC16419960,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,blues rock,classic rock,rock,rock-and-roll,rockabilly,soul",0.596,0.791,7.0,-8.88,1.0,0.0446,0.425,0.000295,0.0886,0.98,129.237,4.0,,Geffen,"C © 1964 UMG Recordings, Inc., P This Compilation ℗ 1964 UMG Recordings, Inc.",6835 +6836,spotify:track:64ymP0l9Igq5ME7Qk7tqHa,Just A Little Bit Of Your Heart,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:41zTgMSJC9mF6NyBkXXxZr,My Everything,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2014-08-24,https://i.scdn.co/image/ab67616d0000b27334933308ad8af9d87cd504dc,1,10,232586,https://p.scdn.co/mp3-preview/6c246ef8af8ec873ed8e6435f42549e3926b91c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USUM71409730,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.44,0.323,9.0,-5.957,1.0,0.0281,0.692,0.0,0.103,0.158,77.986,4.0,,Universal Records,"C © 2014 Republic Records, a division of UMG Recordings, Inc., P ℗ 2014 Republic Records, a division of UMG Recordings, Inc.",6836 +6837,spotify:track:1fqu0oBEYlKuCJymEclV9Q,I Don't Think So,spotify:artist:0IF46mUS8NXjgHabxk2MCM,Kelis,spotify:album:5uZljAiPiHyDlTMUeE61yF,Kelis Was Here,spotify:artist:0IF46mUS8NXjgHabxk2MCM,Kelis,2006-08-22,https://i.scdn.co/image/ab67616d0000b27350d8286879faf57c36941f87,1,5,182973,https://p.scdn.co/mp3-preview/de1fc76ae42c86de3ada4688327792be5f172e4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI10600421,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,neo soul,urban contemporary",0.781,0.722,7.0,-5.672,1.0,0.0792,0.00522,0.0,0.3,0.819,130.053,4.0,,Virgin Records,"C © 2006 Laface Records Inc, P ℗ 2006 Laface Records Inc",6837 +6838,spotify:track:7BuzRZy8aanLYuPBoH5cxN,Streets,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,spotify:album:3n5Coa56i6foIGITrYGX7o,Hot Pink,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,2019-11-07,https://i.scdn.co/image/ab67616d0000b2736274ace7cd4e262c13f6f93c,1,9,226986,https://p.scdn.co/mp3-preview/8c539f209258e789621d470db51811f05e2ae2d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USRC11903461,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.748,0.447,11.0,-8.389,1.0,0.075,0.212,0.0349,0.325,0.196,90.039,4.0,,Kemosabe Records/RCA Records,P (P) 2019 Kemosabe Records/RCA Records,6838 +6839,spotify:track:17tDv8WA8IhqE8qzuQn707,My First Kiss (feat. Ke$ha),"spotify:artist:0FWzNDaEu9jdgcYTbcOa4F, spotify:artist:6LqNN22kT3074XbTVUrhzX","3OH!3, Kesha",spotify:album:1W9toxqtPfieKk6cft0f7R,Streets Of Gold,spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,2010-06-25,https://i.scdn.co/image/ab67616d0000b273bc805cd88b018b0adaec9a8c,1,3,192440,https://p.scdn.co/mp3-preview/026575522e55e2b3a1839b77d80b3f3e8771deb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USAT21000648,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropowerpop,pop punk,pop rap,post-teen pop,dance pop,pop",0.682,0.889,0.0,-4.166,1.0,0.0804,0.00564,0.0,0.36,0.827,138.021,4.0,,Photo Finish,"C © 2010 Photo Finish Records, LLC. All Rights Reserved. Manufactured and Distributed by Atlantic Recording Corporation, a Warner Music Group Company., P ℗ 2010 Photo Finish Records, LLC. All Rights Reserved. Manufactured and Distributed by Atlantic Recording Corporation, a Warner Music Group Company.",6839 +6840,spotify:track:01XFgRZfZI7oBagNf1Loml,Harlem Shake,spotify:artist:25fqWEebq6PoiGQIHIrdtv,Baauer,spotify:album:5H0yFEG5FT0tccZRSdNvVU,Harlem Shake,spotify:artist:25fqWEebq6PoiGQIHIrdtv,Baauer,2013-02-12,https://i.scdn.co/image/ab67616d0000b273bce7a01cbaffe3e94e5323f5,1,1,196664,https://p.scdn.co/mp3-preview/e0c24266e89050d6705e76e0b1a588dbb08dd2da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USZ4V1200043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electro house,electronic trap",0.452,0.794,0.0,-5.151,1.0,0.0483,0.0111,0.00182,0.416,0.282,137.825,4.0,,Mad Decent,"C 2013 Mad Decent, P 2013 Mad Decent",6840 +6841,spotify:track:6ivngPyk2ecQGC23due2A9,Gonna Make You a Star,spotify:artist:46n0cAhBmsRJZiX6GSFmbf,David Essex,spotify:album:2IW3EolnRBpx8fOgrhbhPg,David Essex,spotify:artist:46n0cAhBmsRJZiX6GSFmbf,David Essex,1974-04-01,https://i.scdn.co/image/ab67616d0000b27306ec060378fcda53763a6e94,1,1,212906,https://p.scdn.co/mp3-preview/759ba0f831eafde5bce90a6043e8679c9602c835?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBBBN7400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.583,0.727,10.0,-8.425,0.0,0.106,0.103,8.35e-06,0.605,0.514,131.356,4.0,,Columbia,P (P) 1974 Sony BMG Music Entertainment (UK) Limited,6841 +6842,spotify:track:2eUti8nnlkS1ONLH45QF3J,Touch,spotify:artist:3IJFGnsUboabVEbJz1UR91,Noiseworks,spotify:album:7AszIyfkX9nTYs6Md4tBhh,Greatest Hits,spotify:artist:3IJFGnsUboabVEbJz1UR91,Noiseworks,1992-03-05,https://i.scdn.co/image/ab67616d0000b2738ab3a3015d39464755d92500,1,6,303533,https://p.scdn.co/mp3-preview/1fc9ee1f781e715d073374e08f673d8e24358a9b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUSM08800021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.378,0.922,4.0,-8.903,0.0,0.0728,0.00177,0.753,0.247,0.0853,116.179,4.0,,Columbia,P (P) 1992 Sony Music Entertainment Australia Pty Ltd,6842 +6843,spotify:track:1JwIBogbuZ4Yfb6nssXWa2,Stop Me (feat. Daniel Merriweather),"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:6HD2mo0Gz8wd8IbOXYwUfN","Mark Ronson, Daniel Merriweather",spotify:album:15uqXXD0sAdZuxNxTxktlR,Version,spotify:artist:3hv9jJF3adDNsBSIQDqcjp,Mark Ronson,2007-04-16,https://i.scdn.co/image/ab67616d0000b2736a5beb0500ad6e3b0f7aea22,1,3,232946,https://p.scdn.co/mp3-preview/470ecb50a56293d6fa438758543782725e364637?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBARL0602027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,australian pop",0.626,0.906,0.0,-4.334,1.0,0.0403,0.00128,8.52e-06,0.137,0.346,118.035,4.0,,Columbia,P (P) 2007 Mark Ronson under exclusive license to SONY BMG MUSIC ENTERTAINMENT (UK) LIMITED except track 9 P 2006 Rapster Records / BBE Records,6843 +6844,spotify:track:0RUopK7YlMtVxGLKrxdCkS,The Horses - 2017 Remastered,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,spotify:album:2dtL4Q81aBnP0nNkZYAJk9,Days Go By: The Definitive Greatest Hits Collection,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,2017-11-24,https://i.scdn.co/image/ab67616d0000b273fdc57ef0d735277ba71beb69,1,2,256959,https://p.scdn.co/mp3-preview/a86b95947ad776cae3e9e6372e8351bfaccd4af6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUBM01700719,spotify:user:bradnumber1,2021-08-08T09:27:38Z,"australian pop,australian rock",0.701,0.475,4.0,-7.754,1.0,0.0289,0.156,0.0,0.0851,0.21,94.016,4.0,,Sony Music Entertainment,P (P) 2017 Sony Music Entertainment Australia Pty Ltd,6844 +6845,spotify:track:0hYEYnKYQt5d0zQdUABH3V,"Tonight My Love, Tonight",spotify:artist:7ceUfdWq2t5nbatS6ollHh,Paul Anka,spotify:album:75zBkbUSaFzpyPa1mBDjON,Put Your Head On My Shoulder: The Very Best Of Paul Anka,spotify:artist:7ceUfdWq2t5nbatS6ollHh,Paul Anka,2000-10-03,https://i.scdn.co/image/ab67616d0000b273686c29818cd37e585c48e7ef,1,12,128066,https://p.scdn.co/mp3-preview/8725cfacba4f357e28983d7315cb7a840d734cb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USRC10000608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,easy listening,rock-and-roll",0.545,0.66,4.0,-7.872,1.0,0.0304,0.657,0.0,0.634,0.884,125.069,4.0,,RCA Records Label,"P (P) 2000 RCA Records, a division of Sony Music Entertainment",6845 +6846,spotify:track:1Ax8kVrWepbR9yyDmOeyh6,Play,"spotify:artist:6SrgAoiB3kJykClWuB96rl, spotify:artist:35WtNW9k0NYMVOx29rjl6p, spotify:artist:5jFdhCEVOE107l9CFXKfpD","DR., Kaelo Mula, Big Steppa",spotify:album:60Xn52W0uP2pBUWY0HJV7O,Play,spotify:artist:6SrgAoiB3kJykClWuB96rl,DR.,2021-07-16,https://i.scdn.co/image/ab67616d0000b273a75442ebbe1ca9cf2c66ab1d,1,1,195996,https://p.scdn.co/mp3-preview/5f0d8ca815c0e01dba4f7c61ade971f69bb8b090?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,QZK6M2142637,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.781,0.334,10.0,-12.846,0.0,0.107,0.729,2.3e-06,0.108,0.321,108.724,4.0,,1068030 Records DK2,"C 2021 DR., P 2021 DR.",6846 +6847,spotify:track:3RTUfvRgq3pYTf7XY0FIcS,Lookin' Out My Back Door,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:4GLxEXWI3JiRKp6H7bfTIK,Cosmo's Factory (Expanded Edition),spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1970-07-25,https://i.scdn.co/image/ab67616d0000b27361834aa14b97a7d9c693134f,1,5,152453,https://p.scdn.co/mp3-preview/041e22ebe113f6ffee679ff8331ce2e6c1ae77c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USC4R0817630,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.745,0.656,10.0,-6.393,1.0,0.0405,0.188,0.00337,0.0941,0.858,105.318,4.0,,Craft Recordings,"C © 2008 Concord Music Group, Inc., P ℗ 2008 Concord Music Group, Inc.",6847 +6848,spotify:track:5pBvNeOAJ54zgd5lEOmM3b,Without Me,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:71xFWYFtiHC8eP99QB30AA,Curtain Call (Deluxe),spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2005-12-06,https://i.scdn.co/image/ab67616d0000b273a8a32ae2a279b9bf03445738,1,9,291213,https://p.scdn.co/mp3-preview/35fc7456c892c11867fe1513b92dc44e9664eaba?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10211038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.919,0.657,7.0,-2.823,1.0,0.0907,0.00293,0.0,0.356,0.659,112.23,4.0,,Universal Music Group,"C © 2005 Aftermath Entertainment/Interscope Records, P ℗ 2005 Aftermath Entertainment/Interscope Records",6848 +6849,spotify:track:69YS619ra1i2BJflnjeMI3,Give Me One Reason - 2015 Remaster,spotify:artist:7oPgCQqMMXEXrNau5vxYZP,Tracy Chapman,spotify:album:6UadJ2GvNZBAIRZadmbii4,Greatest Hits,spotify:artist:7oPgCQqMMXEXrNau5vxYZP,Tracy Chapman,2015-11-20,https://i.scdn.co/image/ab67616d0000b2730e32df254f1da182512f5a90,1,17,268240,https://p.scdn.co/mp3-preview/e247eaa02ecf3ad2b4ca4cf7c388768918b3ef6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USRH11508097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk,lilith,singer-songwriter,women's music",0.595,0.519,11.0,-6.196,1.0,0.0316,0.649,8.09e-06,0.102,0.61,98.506,4.0,,Rhino/Elektra,"C © 2015 Elektra Entertainment. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company., P ℗ 2015 Elektra Entertainment. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",6849 +6850,spotify:track:5dtqtvjmFlj3ZQ477OjifI,Clark Griswold,"spotify:artist:7dlqUnjoF2U2DkNDMhcgG4, spotify:artist:3GC3e3b4g7rHeLdLUsxJZV","Hilltop Hoods, Adrian Eagle",spotify:album:6Twpv1ShpjobMNMVU3Lirx,Clark Griswold,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2018-07-13,https://i.scdn.co/image/ab67616d0000b273d1c4986e1f0cb55080fcea6a,1,1,227106,https://p.scdn.co/mp3-preview/d8360ab276023b0b3ffa9e93c0f835ce94758a1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUHT01800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian hip hop",0.828,0.69,1.0,-5.732,1.0,0.0804,0.193,9.5e-06,0.0947,0.832,95.997,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Hilltop Hoods Pty Ltd, under exclusive license to Universal Music Australia Pty Ltd, P ℗ 2018 Hilltop Hoods Pty Ltd, under exclusive license to Universal Music Australia Pty Ltd",6850 +6851,spotify:track:4NGikVnR4wpcB79gZE7tgg,Champagne Showers,"spotify:artist:3sgFRtyBnxXD5ESfmbK4dl, spotify:artist:6wdvERzX4CUCOXu6hSS95x","LMFAO, Natalia Kills",spotify:album:0D49RvtlLCKyxeDKDnBU2R,Sorry For Party Rocking,spotify:artist:3sgFRtyBnxXD5ESfmbK4dl,LMFAO,2011-01-01,https://i.scdn.co/image/ab67616d0000b2731db908d5f66645cb158837ca,1,5,264093,https://p.scdn.co/mp3-preview/913d73c24550a538fc67c77ebc58fdf943812b57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM71108376,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,candy pop,dark pop,electropop",0.597,0.839,7.0,-3.946,0.0,0.389,0.00105,1.15e-06,0.617,0.412,129.942,4.0,,Will I Am / A&M,"C © 2011 Foo & Blu, LLC, under exclusive License to Interscope Records, P ℗ 2011 Foo & Blu, LLC, under exclusive License to Interscope Records",6851 +6852,spotify:track:3TZwjdclvWt7iPJUnMpgcs,Jump Around,spotify:artist:0AuW7OCyKfFrsMbtHrYgIV,House Of Pain,spotify:album:2z37UnazitI7yDEF0IjE0v,House of Pain (Fine Malt Lyrics),spotify:artist:0AuW7OCyKfFrsMbtHrYgIV,House Of Pain,1994-07-21,https://i.scdn.co/image/ab67616d0000b273663ceb45ca1f25c247034c31,1,2,214946,https://p.scdn.co/mp3-preview/93b149a75e3e77d0663c662389cf7f46d323a6ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USTB10300119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gangster rap,hip hop,rap rock,west coast rap",0.854,0.71,4.0,-6.32,0.0,0.0793,0.0113,8.72e-05,0.166,0.818,106.894,4.0,,"Tommy Boy Music, LLC","C 2004 Tommy Boy Music, LLC, P 2004 Tommy Boy Music, LLC",6852 +6853,spotify:track:0uIGzK6ukV0A5yWoCxPkRL,California King Bed,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:7vN82vd1Vq44fjlhjfvHJp,Loud,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2010-11-16,https://i.scdn.co/image/ab67616d0000b2732ed326786e4c61c6b1dbf222,1,6,251613,https://p.scdn.co/mp3-preview/c0d2ce376e3644bce6d58f0b06ece0a018394c69?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USUM71026619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.467,0.586,7.0,-3.942,1.0,0.0357,0.218,0.0,0.12,0.318,169.93,4.0,,Def Jam Recordings,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",6853 +6854,spotify:track:4aKIs5t9TqP59btlCGPrgw,Maneater,spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,spotify:album:5nDQAU3K52JimAaShsZoSn,H2O,spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,1982,https://i.scdn.co/image/ab67616d0000b273cb6fdb35aac14a4dcc437f5b,1,1,271893,https://p.scdn.co/mp3-preview/d689e007e59681c1520d7492aa605e3e5073661d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10301821,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,singer-songwriter,soft rock,yacht rock",0.727,0.685,11.0,-7.159,0.0,0.0398,0.0351,4.43e-05,0.0973,0.812,88.75,4.0,,RCA/BMG Heritage,P This compilation (P) 2004 BMG Music,6854 +6855,spotify:track:5uPO2eBKEdmBT3XtZ76VVa,Straight Lines,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:7aTpmoysIfl5vhgAOJ0mp5,Young Modern,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,2007-03-31,https://i.scdn.co/image/ab67616d0000b273f7cbf02cc5d111e494784ee2,1,2,258413,https://p.scdn.co/mp3-preview/7a85d1b9e5831b901bf02f1f3f064036ca0d845e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,AUEL00700009,spotify:user:bradnumber1,2021-08-24T21:23:57Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.543,0.655,1.0,-6.392,1.0,0.0289,0.0317,0.00237,0.109,0.165,127.471,4.0,,Sony Music Entertainment,P (P) 2007 Silverchair Recording Pty Ltd,6855 +6856,spotify:track:0PXWpNBYg52gABrn1qL1bD,Unwell - 2007 Remaster,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:0oFlNGmGpsFvvhBgnNPirh,Exile on Mainstream,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2007-10-02,https://i.scdn.co/image/ab67616d0000b273bc9e3b023cf66fd1e9aae44c,1,16,237266,https://p.scdn.co/mp3-preview/e25a4d260cee5d19bf12f6abfc88670d1704474a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USAT20704548,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.442,0.793,9.0,-5.152,1.0,0.0347,0.0456,0.0,0.328,0.437,80.985,4.0,,Atlantic Records,"C © 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",6856 +6857,spotify:track:0IWtEFQBwRHaMXZQtGEVcM,Wonderful Life,spotify:artist:0eu0y7eJ5NMo07NEQEIq1V,Black,spotify:album:6xdiJ1Fexr0r7A9Wb1FHdJ,Wonderful Life,spotify:artist:0eu0y7eJ5NMo07NEQEIq1V,Black,1987-01-01,https://i.scdn.co/image/ab67616d0000b273a40e4b29bfacc9ef505b86d2,1,1,287933,https://p.scdn.co/mp3-preview/30b34ae1894d26b4795d6b91969315b8f7450fe1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBAAM8700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.72,0.521,7.0,-12.468,1.0,0.0302,0.705,0.36,0.214,0.823,106.055,4.0,,EMI,"C © 1987 A&M Records Limited, P ℗ 1987 A&M Records Limited",6857 +6858,spotify:track:6t6oULCRS6hnI7rm0h5gwl,Some Nights,spotify:artist:5nCi3BB41mBaMH9gfr6Su0,fun.,spotify:album:7iycyHwOW2plljYIK6I1Zo,Some Nights,spotify:artist:5nCi3BB41mBaMH9gfr6Su0,fun.,2012-02-21,https://i.scdn.co/image/ab67616d0000b27305fb4e9947c6edaf3836766e,1,2,277040,https://p.scdn.co/mp3-preview/270d1a141e0493689e31d43c42b464e23583b820?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,USAT21104050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,metropopolis,neo mellow",0.672,0.738,0.0,-7.045,1.0,0.0506,0.0178,6.75e-05,0.0927,0.392,107.938,4.0,,Fueled By Ramen,"C © 2012 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2012 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States.",6858 +6859,spotify:track:4gFSz8ilK4FnZTgOc4koI1,Grenade - Acoustic,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:16aBMce1zTXcgVdyPOj1y4,Grenade,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2011-02-04,https://i.scdn.co/image/ab67616d0000b2735ec0e0b1c5cdaeafd9493d33,1,3,249535,https://p.scdn.co/mp3-preview/21a96d183dc58145e912cd171f4b57a618a9bd1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21100012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.643,0.394,2.0,-6.305,0.0,0.0305,0.818,0.0,0.0888,0.364,97.911,4.0,,Elektra (NEK),"C 2011 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States., P 2011 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States.",6859 +6860,spotify:track:7ItxdccHjnf7L39q20e0CR,Do It With Madonna,spotify:artist:3gSQMc7SuKiKJRXXOfg1KZ,The Androids,spotify:album:48z4qiXi0nkc2vdGALX93B,The Androids,spotify:artist:3gSQMc7SuKiKJRXXOfg1KZ,The Androids,2003-01-01,https://i.scdn.co/image/ab67616d0000b27399f1bea768c9ed6c6932a18b,1,5,227760,https://p.scdn.co/mp3-preview/6c4a56a24234733f72d5c479ac0cb944e6c96522?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG10300218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,northern irish punk,0.569,0.86,0.0,-5.065,1.0,0.0717,0.00173,0.0,0.153,0.612,115.013,4.0,,Universal Records,"C © 2003 Zinn Records Pty. Ltd., Licensed Exclusively to Universal Records, P ℗ 2003 Zinn Records Pty. Ltd., Licensed Exclusively to Universal Records",6860 +6861,spotify:track:2i3ziETyx5OGbBRD7Ud92p,I Love You Always Forever,spotify:artist:0t3QQl52F463sxGXb1ckhB,Betty Who,spotify:album:73AQHzR5yXHtA71tfeX6H2,The Valley,spotify:artist:0t3QQl52F463sxGXb1ckhB,Betty Who,2017-03-24,https://i.scdn.co/image/ab67616d0000b2739cca756edcf7dec94337ad45,1,13,223160,https://p.scdn.co/mp3-preview/383316ddfc0ad88bbc1229835eef794d622c4723?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USRC11601058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,dance pop,electropop,metropopolis",0.747,0.687,0.0,-6.102,1.0,0.0449,0.336,0.0,0.302,0.558,106.045,4.0,,RCA Records Label,"P (P) 2017 RCA Records, a division of Sony Music Entertainment",6861 +6862,spotify:track:5FZxsHWIvUsmSK1IAvm2pp,Best of You,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:2eprpJCYbCbPZRKVGIEJxZ,In Your Honor,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2005-06-14,https://i.scdn.co/image/ab67616d0000b2736c44679425e2695001b35d72,1,3,255626,https://p.scdn.co/mp3-preview/663c0b487fce5c988d695cba4c20916a56760bdb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USRW30500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.366,0.94,1.0,-5.119,0.0,0.0696,0.000769,9.42e-05,0.188,0.369,130.198,4.0,,RCA Records Label,"P (P) 2005 Roswell Records, Inc.",6862 +6863,spotify:track:5tVA6TkbaAH9QMITTQRrNv,Free Fallin',spotify:artist:2UZMlIwnkgAEDBsw1Rejkn,Tom Petty,spotify:album:5d71Imt5CIb7LpQwDMQ093,Full Moon Fever,spotify:artist:2UZMlIwnkgAEDBsw1Rejkn,Tom Petty,1989-01-01,https://i.scdn.co/image/ab67616d0000b27336572e6726714544f5bed456,1,1,256000,https://p.scdn.co/mp3-preview/89d8726db64aa0dcea919467782495e6fd1d2034?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USMC18925673,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.623,0.449,5.0,-13.333,1.0,0.0253,0.212,0.0,0.0613,0.573,84.383,4.0,,Tom Petty P&D,"C © 1989 MCA Records Inc., P ℗ 1989 Geffen Records",6863 +6864,spotify:track:2yQE97SDcYvpRUzWRAbQP9,Red Roses for a Blue Lady (Rerecorded),spotify:artist:26LmRGHptm85F27BZwOSt7,Vic Dana,spotify:album:1EtkJD1xnlU82x9a21kaD9,Red Roses For A Blue Lady / Crystal Chandelier,spotify:artist:26LmRGHptm85F27BZwOSt7,Vic Dana,2008-07-20,https://i.scdn.co/image/ab67616d0000b273afaa222030fc9a41cacffea4,1,1,163786,https://p.scdn.co/mp3-preview/3d575f5683f68cbb85f8ac36eeeee95bd81fc39a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,USDEI8603452,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.353,0.363,4.0,-13.498,1.0,0.0344,0.496,0.0,0.0857,0.476,110.036,4.0,,K-Tel,,6864 +6865,spotify:track:2YEgbPleCGhJ3rQoCSWZRB,Under The Water,spotify:artist:0lSDlT2Z5EvUGNIl7WQ7k0,Merril Bainbridge,spotify:album:3p5TJ1ksja0twSGpqPUU19,The Garden,spotify:artist:0lSDlT2Z5EvUGNIl7WQ7k0,Merril Bainbridge,1995-07-31,https://i.scdn.co/image/ab67616d0000b2737a4bb709a597184b217a9d02,1,2,253266,https://p.scdn.co/mp3-preview/769ef78d04e56f0473c8385e4d8126e59484b9b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUBM09531803,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.625,0.641,6.0,-9.244,1.0,0.0249,0.611,3.83e-05,0.121,0.608,103.92,4.0,,Gotham,P (P) 1995 BMG Australia Limited,6865 +6866,spotify:track:4lO57zZGFcj7vSY4QhfVDq,She's The One,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:4sgNyq4LbcoRnNhte25GPs,I've Been Expecting You,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,1998,https://i.scdn.co/image/ab67616d0000b273ddd516e8d9114e683c69493d,1,10,258026,https://p.scdn.co/mp3-preview/829cee8479f33f302e4d8d10c1be8547e25f3061?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAYK9800020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.243,0.609,10.0,-8.451,1.0,0.0323,0.663,1.13e-05,0.221,0.333,166.668,4.0,,Universal-Island Records Ltd.,"C © 2013 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2013 Universal Island Records, a division of Universal Music Operations Limited",6866 +6867,spotify:track:76BtDl4DAanDL0jNuXCpp1,Don't You Know Who I Am? - Remastered,spotify:artist:4KQLA0IabIwyfoeh7ytGxS,Small Mercies,spotify:album:0W5xuYUE3eC7sbHugwsvpm,Beautiful Hum,spotify:artist:4KQLA0IabIwyfoeh7ytGxS,Small Mercies,2008-05-24,https://i.scdn.co/image/ab67616d0000b273772ead418725d22673024064,1,8,236146,https://p.scdn.co/mp3-preview/b9a0a7211426535b990114e700dcd55216654239?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,AUBM00800177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.486,0.919,8.0,-2.749,0.0,0.0687,0.00426,7.63e-06,0.0539,0.496,140.887,4.0,,Sony BMG Music Entertainment,"P (P) 2008 John Woodruff Management Pty Limited, under exclusive licence to Sony Music Entertainment Australia Pty Ltd",6867 +6868,spotify:track:08VeSelC8QYD1MIsK9gAmY,Blue (Da Ba Dee) - DJ Ponte Ice Pop Radio,spotify:artist:64rxQRJsLgZwHHyWKB8fiF,Eiffel 65,spotify:album:2WIi0lRPypwTbZHrQulb5S,Blue (Da Ba Dee),spotify:artist:64rxQRJsLgZwHHyWKB8fiF,Eiffel 65,1998-11-11,https://i.scdn.co/image/ab67616d0000b273265adc340e585ec49bae1ed4,1,2,283747,https://p.scdn.co/mp3-preview/bbac41684f243a85862b5c010ec7c38e1a8bef5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ITT019810102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,italian adult pop,italo dance",0.822,0.969,7.0,-11.471,0.0,0.0582,0.259,0.000162,0.39,0.765,128.007,4.0,,Hits Only,C 1998 Bliss Corporation srl,6868 +6869,spotify:track:36ux3YuUsGTWPT8fXclS45,E.T.,"spotify:artist:6jJ0s89eD6GaHleKKya26X, spotify:artist:5K4W6rqBFWDnAN6FQUkS6x","Katy Perry, Kanye West",spotify:album:5BvgP623rtvlc0HDcpzquz,Teenage Dream: The Complete Confection,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2012-03-12,https://i.scdn.co/image/ab67616d0000b273937af329667311f4b2831616,1,17,229573,https://p.scdn.co/mp3-preview/3ae481944fdce085807e0d3aad1986ee50f00c48?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USCA21100386,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,chicago rap,hip hop,rap",0.619,0.869,1.0,-5.257,1.0,0.182,0.0178,0.0,0.369,0.757,151.684,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",6869 +6870,spotify:track:61UuPxxYUvacEH6SHIK3sU,Brown Sugar - Remastered 2009,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:29m6DinzdaD0OPqWKGyMdz,Sticky Fingers (Remastered),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1971-04-23,https://i.scdn.co/image/ab67616d0000b273a1d9c9969f2a7ed27e449a3c,1,1,228666,https://p.scdn.co/mp3-preview/e8b678401beb3949b176617a9a0406389b211223?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBUM70909464,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.633,0.934,0.0,-3.594,1.0,0.0344,0.219,0.00021,0.0592,0.963,128.602,4.0,,Polydor Records,"C © 2009 Promotone B.V., under exclusive licence to Universal International Music B.V., P ℗ 2009 Promotone B.V., under exclusive licence to Universal International Music B.V.",6870 +6871,spotify:track:0yLdNVWF3Srea0uzk55zFn,Flowers,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:7I0tjwFtxUwBC1vgyeMAax,Flowers,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2023-01-13,https://i.scdn.co/image/ab67616d0000b273f429549123dbe8552764ba1d,1,1,200454,https://p.scdn.co/mp3-preview/5184d19d1b7fcc3e7c067e38af45a7cc80851440?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USSM12209777,spotify:user:bradnumber1,2023-02-01T19:33:29Z,pop,0.707,0.681,0.0,-4.325,1.0,0.0668,0.0632,5.15e-06,0.0322,0.646,117.999,4.0,,Columbia,"P (P) 2023 Smiley Miley, Inc. under exclusive license to Columbia Records, a Division of Sony Music Entertainment",6871 +6872,spotify:track:1r9QBciQVM1BnW72cQUA4R,Lay Back in the Arms of Someone,spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,spotify:album:06btR8H7qaniMVvB9xkuup,Bright Lights and Back Alleys (New Extended Version),spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,1977,https://i.scdn.co/image/ab67616d0000b2733cf822e1fbd985216b7b32ed,1,12,245106,https://p.scdn.co/mp3-preview/a3c2c9c4549dd8a2391f6d8cda146d3944ae302f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,DEA817700019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.594,0.75,2.0,-7.216,1.0,0.0299,0.0757,0.000244,0.0593,0.693,122.949,4.0,,Sony Music Catalog,P (P) 2016 Sony Music Entertainment Germany GmbH,6872 +6873,spotify:track:0QNVY5y4vKo0jPuqcdsaVb,Letter,spotify:artist:1goOx6gnQdUllLfSMsL4Rt,Marques Houston,spotify:album:4N8yCy4wCauKrU3nD9jEGz,Mr. Houston,spotify:artist:1goOx6gnQdUllLfSMsL4Rt,Marques Houston,2009-09-29,https://i.scdn.co/image/ab67616d0000b273d658ebf4623090f55c7d620b,1,8,223613,https://p.scdn.co/mp3-preview/9f9c6d0edcfc7c47be676cbd005734cfbc691c3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,USZXT0930162,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.664,0.627,0.0,-5.336,1.0,0.0316,0.619,2.19e-05,0.0923,0.518,132.041,3.0,,TUG Worldwide,"C (C) 2009 T.C.E./TUG, P (P) 2009 T.C.E./TUG",6873 +6874,spotify:track:6ZoBkmNGZ4pTDB8M8GwrQp,Chase the Sun,spotify:artist:4c4Ce4N4vJOs3Tzee020S4,Planet Funk,spotify:album:4D1qjT3nXkk1tnVUDn4qGN,Non Zero Sumness,spotify:artist:4c4Ce4N4vJOs3Tzee020S4,Planet Funk,2002,https://i.scdn.co/image/ab67616d0000b273fa2ba665f6556580a41933e1,1,2,233040,https://p.scdn.co/mp3-preview/ed8d19e8861307747d32de3bb8a3c3d2a90ddd7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ITB150200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electronic rock,0.583,0.776,9.0,-7.488,0.0,0.0311,0.0161,0.0179,0.355,0.497,127.991,4.0,,Studd,P (P) 2002 Bustin\' Loose Ltd. under exclusive license to Sony Music Entertainment UK Limited,6874 +6875,spotify:track:3nbiNYZBmciAeK6cv0t6Ms,The Real Thing,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,spotify:album:7A1aa80x9ma2tsnZjmBlHA,Retrospective,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,1978-01-01,https://i.scdn.co/image/ab67616d0000b273160d30800da9b4f95b1ce2f0,1,2,380333,https://p.scdn.co/mp3-preview/fa3bb14bef629ea9076a8938efef97152d373379?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUEM06900007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.274,0.618,2.0,-14.245,1.0,0.0447,0.0076,0.42,0.123,0.557,91.726,4.0,,EMI Music Australia,"C © 1996 EMI Recorded Music Australia Pty Ltd., P ℗ 1978 EMI Recorded Music Australia Pty Ltd.",6875 +6876,spotify:track:2HgbuVinXZcjEBcjjQcEkO,"For All We Know - From ""Lovers And Other Strangers"" Soundtrack",spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,spotify:album:4P8dsNI8ciQJncyHRiZJUs,Carpenters,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,1971-01-01,https://i.scdn.co/image/ab67616d0000b273bafca20cd3cedd374c369383,1,5,158933,https://p.scdn.co/mp3-preview/8c3a6930a330f9e1c36cc08b15b7bc141d1b104f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWWW0140294,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock",0.248,0.245,7.0,-13.319,1.0,0.0318,0.883,4.53e-05,0.0869,0.202,134.822,4.0,,Universal Special Markets,"C © 1971 A&M Records, P ℗ 1971 UMG Recordings, Inc.",6876 +6877,spotify:track:5oOILfJXDNwuzFEj0zvI0R,New Sensation,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:303WS9fT5qqGo9KlnImdZG,Kick 25 (Deluxe Edition),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2012-01-01,https://i.scdn.co/image/ab67616d0000b2735999577a1d188f37b2a6a60b,1,2,220160,https://p.scdn.co/mp3-preview/25c66bcf5c0a9163e35d04302f25a89c593a2a4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMX8700009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.682,0.954,9.0,-4.952,1.0,0.0627,0.00756,3.9e-05,0.0508,0.927,115.472,4.0,,Universal Music Group,"C © 2012 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2012 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",6877 +6878,spotify:track:0fW13W2PZe6zq87vqUBR66,Mad World,spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,spotify:album:3lP0Pu6a0jUWGPM83XYPip,The Hurting,spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,1983-03-07,https://i.scdn.co/image/ab67616d0000b27321afa60793c7b8b4c4735981,1,2,215400,https://p.scdn.co/mp3-preview/68f5b15d3bcf47016ffef8fceaa528eb26f10a18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088200040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,rock,sophisti-pop,synthpop",0.646,0.902,4.0,-5.997,1.0,0.0455,0.0662,0.0285,0.0621,0.936,118.721,4.0,,Universal Music Group,"C © 1999 Mercury Records Limited, P ℗ 1999 Mercury Records Limited",6878 +6879,spotify:track:6VObnIkLVruX4UVyxWhlqm,Skyfall,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:6TwN6Lq9glwnG8kNp6chHY,Skyfall,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2012-10-04,https://i.scdn.co/image/ab67616d0000b2732737be35cc5245eef495be90,1,1,286480,https://p.scdn.co/mp3-preview/d5c38cc8a0f4b3e01a5a688497d6b0e89da5f1c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,GBBKS1200164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.346,0.552,0.0,-6.864,0.0,0.0282,0.417,0.0,0.114,0.0789,75.881,4.0,,XL Recordings/Columbia,"P (P) 2012 Melted Stone Ltd under exclusive license to Columbia Records / Skyfall © 2012 Danjaq LLC, United Artists Corporation, Columbia Pictures Industries Inc., Skyfall, 007 Gun Logo, and related James Bond Trademarks © 1962-2012",6879 +6880,spotify:track:0OaunKfsxkgBvPv68jBbmm,It Wasn't Me,"spotify:artist:5EvFsr3kj42KNv97ZEnqij, spotify:artist:67wCYxOq4A1ohAs7jWYaOJ","Shaggy, Rik Rok",spotify:album:04bMI1jl7CB82LkdeHXyEo,The Boombastic Collection - Best of Shaggy,spotify:artist:5EvFsr3kj42KNv97ZEnqij,Shaggy,2008-01-01,https://i.scdn.co/image/ab67616d0000b273bf25537d1dfd790ee0ad03f2,1,8,227546,https://p.scdn.co/mp3-preview/a0b006f31a20deb4e965c3a2092a975067064c36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USMC10000393,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,reggae fusion,reggae fusion",0.852,0.605,0.0,-4.569,1.0,0.0642,0.0514,0.0,0.327,0.669,94.762,4.0,,Geffen,"C © 2008 Geffen Records, P This Compilation ℗ 2008 Geffen Records",6880 +6881,spotify:track:6LFoyjCI9eFZw3QmN46x2V,Nobody's Fool,spotify:artist:7HL4id2U7FSDJtfKQHMgQx,Cinderella,spotify:album:0r5AdSHXZuSb0KkdSOr3g1,Night Songs,spotify:artist:7HL4id2U7FSDJtfKQHMgQx,Cinderella,1986,https://i.scdn.co/image/ab67616d0000b27318a19526b40147de0759596c,1,3,287400,https://p.scdn.co/mp3-preview/d0ae3721a28e4536f99558a50d05d43f147c6c5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR38630019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam metal,hard rock",0.367,0.445,9.0,-13.615,0.0,0.0286,0.0478,0.00284,0.199,0.149,67.197,4.0,,Universal Music Group,"C © 1987 The Island Def Jam Music Group, P ℗ 1987 The Island Def Jam Music Group",6881 +6882,spotify:track:6xZ4Q2k2ompmDppyeESIY8,Level of Concern,spotify:artist:3YQKmKGau1PzlVlkL1iodx,Twenty One Pilots,spotify:album:4h3HXlnt6lryGzGbWmcFuY,Level of Concern,spotify:artist:3YQKmKGau1PzlVlkL1iodx,Twenty One Pilots,2020-04-09,https://i.scdn.co/image/ab67616d0000b273ab2f8973949159695f65df7b,1,1,220051,https://p.scdn.co/mp3-preview/66ddd1e173dad5f84e953ac40a00085245458056?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT22002190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,pov: indie,rock",0.754,0.583,4.0,-7.34,0.0,0.0432,0.32,0.00015,0.144,0.77,122.012,4.0,,Fueled By Ramen,"C © 2020 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2020 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",6882 +6883,spotify:track:6WQp6ef4S24dbtfpDb1cmn,Bad Influence,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:21tsMIrRLUKFwfvX9oxQZR,Funhouse,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2008-10-24,https://i.scdn.co/image/ab67616d0000b2737ec845b0eb9caba945adc96b,1,6,216293,https://p.scdn.co/mp3-preview/d14341f2d78ee5a7cc6fd0db27119800182be921?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USLF20800183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.665,0.902,2.0,-4.138,1.0,0.0518,0.000559,2.83e-06,0.0442,0.754,138.074,4.0,,LaFace Records,"P (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",6883 +6884,spotify:track:5X5AYBfRD3SKJLnpnqNnBg,Lay Down Your Guns,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:0CFve8pYcvhHeFNTLzQl9l,Two Fires,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1990-09-07,https://i.scdn.co/image/ab67616d0000b2739e12c99ab699e5553614a4bb,1,1,241560,https://p.scdn.co/mp3-preview/f3b8de4ac2dc0d9f82394ce589894b6435680de0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AULI00510200,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.608,0.961,9.0,-8.391,1.0,0.063,0.32,0.000701,0.168,0.638,119.959,4.0,,Bloodlines,"C 1990 Bloodlines, P 1990 Bloodlines",6884 +6885,spotify:track:39tiEmJyiZnGoNo6u86pLl,A Swingin' Safari,spotify:artist:6ZzOIAEw7joAghyA80c6D0,Billy Vaughn,spotify:album:4BsHA0gJGNXXtl4QXaq7Us,Sail Along Silv'ry Moon,spotify:artist:6ZzOIAEw7joAghyA80c6D0,Billy Vaughn,1992-01-20,https://i.scdn.co/image/ab67616d0000b273b456dc7ef692846ae3675506,1,9,133773,https://p.scdn.co/mp3-preview/1650c27f72db471728ca46781f664c46bdf568ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USMC17452182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"easy listening,space age pop",0.536,0.409,4.0,-15.727,1.0,0.0978,0.773,0.955,0.0984,0.774,76.611,4.0,,Geffen*,"C © 1999 Geffen Records, P This Compilation ℗ 1999 Geffen Records",6885 +6886,spotify:track:49ziHtycEUnbFQtE8e8slt,Jackie Chan,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:5vQfv3s2Z2SRdPZKr82ABw, spotify:artist:0bdJZl7TDeiymDYzMJnVh2, spotify:artist:246dkjvS1zLTtiykXe5h60","Tiësto, Dzeko, Preme, Post Malone",spotify:album:7aE9lb09OAGPZHkdC4bM8R,Jackie Chan,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:5vQfv3s2Z2SRdPZKr82ABw","Tiësto, Dzeko",2018-05-18,https://i.scdn.co/image/ab67616d0000b273a442ecc435350795e1718735,1,1,215675,https://p.scdn.co/mp3-preview/3f50a548ac069ca8ec09aac94e9e060f4fd8b8c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,CYA111800124,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance,canadian electronic,dutch house,edm,electro house,pop dance,pop edm,progressive electro house,canadian hip hop,canadian trap,dfw rap,melodic rap,pop,rap",0.742,0.838,3.0,-2.758,0.0,0.0476,0.339,0.0,0.0595,0.694,128.022,4.0,,"Universal Music, a division of Universal International Music BV","C © 2018 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings/Universal Music, a division of Universal International Music B.V., P ℗ 2018 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings/Universal Music, a division of Universal International Music B.V.",6886 +6887,spotify:track:43btz2xjMKpcmjkuRsvxyg,Jack & Diane,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:4gouGcdQn9OvjX42xnWrF0,American Fool,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1982,https://i.scdn.co/image/ab67616d0000b273b1945b44ce8868740f132f8e,1,2,254493,https://p.scdn.co/mp3-preview/b03b592db51b8b06e0b04b538630912849195a14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USJM18200001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.811,0.41,9.0,-8.214,1.0,0.0391,0.0365,6.63e-06,0.0799,0.626,103.963,4.0,,John Mellencamp 2023 (Island),"C © 2005 Riva Recordings, Inc., under exclusive license to UMG Recordings, Inc. and Primary Wave Music IV, P ℗ 2005 Riva Recordings, Inc., under exclusive license to UMG Recordings, Inc. and Primary Wave Music IV",6887 +6888,spotify:track:4HRa9ZWcmZ8JD7UySPu0wT,Don't Stop (Color on the Walls),spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,spotify:album:7Kmmw7Z5D2UD5MVwdm10sT,Torches,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,2011-05-23,https://i.scdn.co/image/ab67616d0000b273121d5f92cf90576907dfb1e5,1,4,174920,https://p.scdn.co/mp3-preview/1e894e81e8c098fed0a161278e3da876c30f99b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM11101701,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern alternative rock,modern rock,rock",0.611,0.948,1.0,-3.751,0.0,0.0753,0.00183,0.0995,0.0969,0.79,133.004,4.0,,Columbia,"P (P) 2010, 2011 Sony Music Entertainment",6888 +6889,spotify:track:5cIU5GZBbyMfgfXGcoQVYc,Don't Stop Movin' - Radio Mix,"spotify:artist:3PUzVXdNnsJGPDTIU7xvqu, spotify:artist:668qGVmYMvOeW6F0XHEB8E","Livin' Joy, A. Manetta",spotify:album:78Iw3pQjjmhlZ9JqJsFl71,Don’t Stop Movin’,spotify:artist:3PUzVXdNnsJGPDTIU7xvqu,Livin' Joy,1997-01-01,https://i.scdn.co/image/ab67616d0000b2737d1b4387ef61788f72715186,2,1,215226,https://p.scdn.co/mp3-preview/1b2eca4d857c7ec4be07fc8e011b62c1b9a0f2b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBBBY9610380,spotify:user:bradnumber1,2021-08-08T09:26:31Z,diva house,0.704,0.722,2.0,-10.815,0.0,0.0446,0.0287,0.00341,0.297,0.859,129.992,4.0,,UMC (Universal Music Catalogue),"C © 2018 MCA Records Ltd., P ℗ 2018 MCA Records Ltd.",6889 +6890,spotify:track:7aMLQavs9eIki5fllOn4sx,Rock On,spotify:artist:46n0cAhBmsRJZiX6GSFmbf,David Essex,spotify:album:4kRaawwPcWlpw33TjpPuiQ,Best Of David Essex,spotify:artist:46n0cAhBmsRJZiX6GSFmbf,David Essex,1996-01-08,https://i.scdn.co/image/ab67616d0000b2737f39354389a634ea4a2fb62b,1,2,202600,https://p.scdn.co/mp3-preview/378c78989958e7c97952399b1c3ca192ed0d4f70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBBBN9999918,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.708,0.171,1.0,-20.71,0.0,0.2,0.922,0.00775,0.755,0.619,75.192,4.0,,Columbia,P (P) 1996 Sony Music Entertainment (UK) Ltd.,6890 +6891,spotify:track:3Xe4JagghOfs9NF1xaqbb8,Reeling In The Years,spotify:artist:6P7H3ai06vU1sGvdpBwDmE,Steely Dan,spotify:album:68HbhACgHQvDhfMIzQYt8P,A Decade Of Steely Dan,spotify:artist:6P7H3ai06vU1sGvdpBwDmE,Steely Dan,1985-01-01,https://i.scdn.co/image/ab67616d0000b2730ff92f2df596033a0ef2b199,1,10,278800,https://p.scdn.co/mp3-preview/81cd53b2487258e9d72c1969ef04875918c19a10?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USMC17347184,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,mellow gold,rock,soft rock,yacht rock",0.52,0.734,2.0,-10.375,1.0,0.0375,0.117,0.0,0.089,0.732,135.17,4.0,,Geffen*,"C © 1985 MCA Records Inc., P This Compilation ℗ 1985 UMG Recordings, Inc.",6891 +6892,spotify:track:07POri5O6Xu0aVZzlvOcpy,I'm Not Alone - Radio Edit,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,spotify:album:5Zcfw8EsPjQBJZhA0EbcyM,Ready For The Weekend,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2009-08-17,https://i.scdn.co/image/ab67616d0000b27300d6698dffdf81ce656dd26f,1,6,210973,https://p.scdn.co/mp3-preview/5e6bdf3d63f9dae46f130e9ba91e49bd16b269a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBARL0900102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance",0.597,0.684,7.0,-6.614,1.0,0.0321,0.00481,0.105,0.317,0.435,130.99,4.0,,Columbia,P (P) 2009 Sony Music Entertainment Limited except Track 13 ?Dance Wiv Me? P 2008 Dirtee Stank Recordings Limited under license to Sony Music Entertainment UK Limited,6892 +6893,spotify:track:5ujBlp0aOSfDZuY2nWM2Tt,Love Is Like Oxygen,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,spotify:album:1jEk0k3VNGLcezveTCUFfU,Action! The Ultimate Story,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,2015-09-25,https://i.scdn.co/image/ab67616d0000b273725ba02a279ac666fb72978d,1,18,224946,https://p.scdn.co/mp3-preview/6ab26863c6d59746f29362a9b98bf5edb3de5b2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAKW0080259,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam rock,hard rock",0.508,0.629,9.0,-6.563,0.0,0.0398,0.102,7.01e-06,0.0995,0.604,123.451,4.0,,RCA Records Label,P (P) 2015 Sony Music Entertainment Germany GmbH,6893 +6894,spotify:track:1TuSAhOzTqoFf7BZxBl6nz,imagine,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:6sUzNE1SPNLBXBCZs3PIAO,"thank u, next",spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2018-02-07,https://i.scdn.co/image/ab67616d0000b27379826f235cf8bc00256db3a6,1,1,212266,https://p.scdn.co/mp3-preview/db94d416b1dcf547e4b618d95df3d4e780dfdae5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USUM71822237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.71,0.48,8.0,-4.927,1.0,0.0455,0.349,0.0,0.108,0.368,62.584,3.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",6894 +6895,spotify:track:3KsatAMRt1a7iryhWt5I8U,Wheels,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:1zCNrbPpz5OLSr6mSpPdKm,Greatest Hits,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-11-03,https://i.scdn.co/image/ab67616d0000b273136d7250568820409f8fdd60,1,14,278213,https://p.scdn.co/mp3-preview/c73ef5fa32450cd291fa8fd30ac2ef8b7c683ae2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC10900528,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.426,0.792,9.0,-4.709,1.0,0.0374,0.000495,5.1e-06,0.142,0.557,161.994,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",6895 +6896,spotify:track:1ZT36B4fO2R7rBCGRb3XIM,Theme from S-Express,spotify:artist:2PvqyOwynRF4BveaU6IA7S,S'Express,spotify:album:0H8w0t8lsZiSTVA3yORSVP,The Definitive 80's (eighties),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-12-10,https://i.scdn.co/image/ab67616d0000b2739db6bd28aa20593ae74af036,2,3,234080,https://p.scdn.co/mp3-preview/a42b91937506e094bfd9ff19d5aca32cb58d5127?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBARL8800047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid house,classic house,hip house,new wave pop",0.692,0.83,2.0,-8.055,1.0,0.0387,0.000315,8.71e-05,0.254,0.575,117.319,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT,6896 +6897,spotify:track:0RmEn2jcbyrLV4em3bnDZJ,Damn I Wish I Was Your Lover,spotify:artist:3gdIwZY6Q3RXhDteYr4ZvC,Sophie B. Hawkins,spotify:album:191wfG4xD0VAgJH7rJ97iD,The Best Of Sophie B. Hawkins,spotify:artist:3gdIwZY6Q3RXhDteYr4ZvC,Sophie B. Hawkins,2003,https://i.scdn.co/image/ab67616d0000b273fa4447affb87fed97b2f7890,1,1,323400,https://p.scdn.co/mp3-preview/9b1b18852734ae0f9f50448b3c94826c8719e1e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM10019593,spotify:user:bradnumber1,2021-11-20T11:12:42Z,"lilith,new wave pop",0.563,0.806,2.0,-6.826,1.0,0.0496,0.281,1.49e-05,0.363,0.42,95.188,4.0,,Columbia/Legacy,"P (P) 1992, 1994, 2003 Sony Music Entertainment Inc.",6897 +6898,spotify:track:6U8koDtkewQRZPl4X3xQxs,Down Again,spotify:artist:7o9kdTx6RmO12iAVVsNehd,The Superjesus,spotify:album:5NXfQ3oIhEbkafEm7WoJBk,Sumo,spotify:artist:7o9kdTx6RmO12iAVVsNehd,The Superjesus,1998,https://i.scdn.co/image/ab67616d0000b273b2dde8e16c67ca4289e6edf9,1,1,313226,https://p.scdn.co/mp3-preview/fc7fb50e226c8a9ee407300294e1482cc23a0667?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUWA09800040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.271,0.833,1.0,-6.999,0.0,0.042,1.57e-05,0.00275,0.257,0.305,190.779,4.0,,WM Australia,"C © 1997 WARNER MUSIC AUSTRALIA PTY LIMITED, P ℗ 1997 WARNER MUSIC AUSTRALIA PTY LIMITED",6898 +6899,spotify:track:76nqCfJOcFFWBJN32PAksn,Kings & Queens,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,spotify:album:6yUkGEJftbJl1QPvz4WTjO,Kings & Queens,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,2020-03-12,https://i.scdn.co/image/ab67616d0000b273455b66109a326b6ffb3f169b,1,1,162398,https://p.scdn.co/mp3-preview/dc90347787fa47daa898d4ffbfff36074d184d64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USAT21906943,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.638,0.688,1.0,-4.056,0.0,0.0407,0.00775,0.0,0.126,0.434,129.856,4.0,,Atlantic Records,"C 2020, P 2020",6899 +6900,spotify:track:0N5x5UmYcbBeHFJtCCqf62,Ruby,spotify:artist:0LbLWjaweRbO4FDKYlbfNt,Kaiser Chiefs,spotify:album:0mKKqokWGSgKoL2bzdyTpd,"Yours Truly, Angry Mob",spotify:artist:0LbLWjaweRbO4FDKYlbfNt,Kaiser Chiefs,2007-01-01,https://i.scdn.co/image/ab67616d0000b273d3db35e2f0f570b2ae20986b,1,1,204200,https://p.scdn.co/mp3-preview/74a71141992c0018ba6ef7ed0bec8e07a67e112b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDVX0600080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,modern rock,0.451,0.939,5.0,-2.82,0.0,0.0512,0.00673,4.85e-06,0.0774,0.448,93.416,4.0,,Universal Music Group,"C © 2007 B-Unique Records, Under exclusive license to Polydor Records Ltd. (UK), P ℗ 2007 B-Unique Records, except Track 1, (p) 2006 B-Unique Records. Under exclusive license to Polydor Records Ltd. (UK)",6900 +6901,spotify:track:2NnrAdjE9cPdMklonMBuAv,willow - dancing witch version (Elvira remix),"spotify:artist:06HL4z0CvFAxyc27GXpf02, spotify:artist:4nhsQ3u12To27WM6rqNEa1","Taylor Swift, ELVIRA",spotify:album:23u5rTisTUAWuQxaDft11P,willow [dancing witch version (Elvira remix)],spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2020-12-13,https://i.scdn.co/image/ab67616d0000b273e141efa4999ddb4b52512a7c,1,1,184819,https://p.scdn.co/mp3-preview/11769eb2b7f01c22e258c4b7c9f801de4de4acb8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USUG12004724,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.429,0.567,4.0,-10.157,0.0,0.272,0.449,1.5e-05,0.536,0.67,83.922,4.0,,Taylor Swift,"C © 2020 Taylor Swift, P ℗ 2020 Taylor Swift",6901 +6902,spotify:track:1Kvbih7Ebm4bkPinpSottk,Georgia,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:0yXpiO0g9UJb5Qhx4zAs16,Dream Your Life Away,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2014-09-05,https://i.scdn.co/image/ab67616d0000b273d3dec4ae5b0234ab749b4b44,1,8,230506,https://p.scdn.co/mp3-preview/a52220fd8db40f1cea3cb4000863b31398a29149?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT21402869,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.388,0.66,11.0,-7.372,1.0,0.0308,0.312,0.000307,0.0943,0.401,143.554,4.0,,Liberation Records,"C 2014 Liberation Music, P 2014 Liberation Music",6902 +6903,spotify:track:0lr3Z5RY1mO9M8MHpM1GXN,I'll Take You Home Again Kathleen,spotify:artist:6PjhWre0MnI0Ww95vATRhK,Lieutenant Pigeon,spotify:album:0Y7hVgiaQIl621gDKtxMPd,The Greatest Hits,spotify:artist:6PjhWre0MnI0Ww95vATRhK,Lieutenant Pigeon,2008-05-04,https://i.scdn.co/image/ab67616d0000b273ede79fd6fa9eaf8b38817f34,1,3,170986,https://p.scdn.co/mp3-preview/3fabc41bf5ccd5fefeb67f73a954978b4370a127?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,GBHVK0800302,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,novelty",0.528,0.666,0.0,-12.01,1.0,0.0294,0.0538,0.856,0.084,0.961,101.856,4.0,,Union Square Music,"C © 2008 Makepeace Music Ltd., P ℗ 2008 Makepeace Music Ltd.",6903 +6904,spotify:track:1oQZk2bKBLgP1cbuFKvjkq,If I Were a Boy,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:3ROfBX6lJLnCmaw1NrP5K9,I AM...SASHA FIERCE - Platinum Edition,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2008,https://i.scdn.co/image/ab67616d0000b273b4c5982e1b92f97a126fc18c,1,5,249866,https://p.scdn.co/mp3-preview/cf5a9b5f1b5c8a346c880021a363585066b93000?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USSM10803202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.63,0.504,6.0,-6.152,1.0,0.0334,0.0953,0.0,0.308,0.487,89.946,4.0,,Music World Music/Columbia,"P (P) 2008, 2009 Sony Music Entertainment",6904 +6905,spotify:track:0cVPcw9fUQyEf5ptpSjgig,Slow,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:7cLB3Mh9GOFHH97nONfCXd,Body Language,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2003-11-10,https://i.scdn.co/image/ab67616d0000b273a038d2043c6b803479dde292,1,1,193666,https://p.scdn.co/mp3-preview/575b6d6abbf1f4beb658d5749af6bd496af27051?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAYE0302232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.772,0.845,6.0,-8.082,1.0,0.0468,0.0133,0.166,0.139,0.573,114.997,4.0,,WM Australia,"C © 2003 KayDeebee Pty Ltd, P ℗ 2003 KayDeebee Pty Ltd",6905 +6906,spotify:track:0GmtIUZe8STZOT6jDBC69l,Heaven & Hell - US Single Version,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,spotify:album:7kV1uhqaH7vVBZ0QTPVZxx,Friday On My Mind,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,1967-01-01,https://i.scdn.co/image/ab67616d0000b273230360dd1500f5783b646ae1,1,13,162106,https://p.scdn.co/mp3-preview/78120f23c3f7b8137b3612280ae40cb3351022c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06700039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,freakbeat,protopunk,psychedelic rock",0.483,0.676,9.0,-10.271,1.0,0.0323,0.505,6.32e-05,0.297,0.502,116.418,4.0,,Albert Productions,"C © 1967 BMG AM Pty Ltd., P ℗ 1967 BMG AM Pty Ltd.",6906 +6907,spotify:track:5q0hJUZKzqeyN5buirEf6B,Tightrope,spotify:artist:6DIS6PRrLS3wbnZsf7vYic,WALK THE MOON,spotify:album:3Bpb5jmMbmqddRmfQjmJlU,Walk The Moon (Expanded Edition),spotify:artist:6DIS6PRrLS3wbnZsf7vYic,WALK THE MOON,2012-06-19,https://i.scdn.co/image/ab67616d0000b2736aa080787da051a34157e1e2,1,5,209186,https://p.scdn.co/mp3-preview/8a4be8bad22fe976acb44b26b4924d28114ed696?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USRC11200082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,modern alternative rock,modern rock,neo mellow,pop rock",0.471,0.789,1.0,-6.188,0.0,0.0342,9.46e-05,0.00161,0.102,0.588,162.412,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",6907 +6908,spotify:track:4YXadYEqepJdfH4UNZtJI0,Omen,"spotify:artist:6nS5roXSAGhTGr34W6n7Et, spotify:artist:2wY79sveU1sp5g7SokKOiI","Disclosure, Sam Smith",spotify:album:6c7LgalPL58r2tytqTU4Ax,Caracal (Deluxe),spotify:artist:6nS5roXSAGhTGr34W6n7Et,Disclosure,2015-09-25,https://i.scdn.co/image/ab67616d0000b2735b61fb9282a38a70d9b9419c,1,2,230250,https://p.scdn.co/mp3-preview/b13f87c7c27888014bb89d757c76fe6c0f3b90c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71503570,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,house,indietronica,uk dance,pop,uk pop",0.695,0.675,8.0,-5.202,1.0,0.217,0.0557,0.0,0.378,0.615,106.074,4.0,,Universal Music Group,"C © 2015 Island Records, a division of Universal Music Operations Limited, P ℗ 2015 Island Records, a division of Universal Music Operations Limited",6908 +6909,spotify:track:2jyFtCGH9BUNgJcY6zrh3J,Have You Ever Been in Love - 2010 Remastered Version,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,spotify:album:3IL4csX1tS2G3u3SYvciqg,The Greatest Hits,spotify:artist:04LIHk1SobiQwt2tlupoAV,Leo Sayer,2010-08-20,https://i.scdn.co/image/ab67616d0000b27323e5d02c62b8f0514c54f854,1,12,228226,https://p.scdn.co/mp3-preview/15d0f9712ea7bd31f2430367c445b380ebb62f5a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUWA01000206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.424,0.511,2.0,-6.216,1.0,0.0313,0.734,6.57e-05,0.113,0.343,129.53,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Limited, P ℗ 2010 Silverbird (Australia) PTY LTD, under exclusive license to Warner Music Australia Pty Limited",6909 +6910,spotify:track:3bsDo5vjjJI7O8VuytGIrc,Don't Trust Me,spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,spotify:album:66rs1T6AHa48toqzj56ST2,Alternative 2K Essentials,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2019-09-06,https://i.scdn.co/image/ab67616d0000b27377c6c405fee9d463b94bd9d1,1,1,194613,https://p.scdn.co/mp3-preview/ec3a3eae622074e5bf93c67f4f709598feca42b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USAT20900469,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropowerpop,pop punk,pop rap,post-teen pop",0.757,0.629,7.0,-5.582,0.0,0.125,0.018,0.0,0.339,0.711,129.946,4.0,,Warner Music Group - X5 Music Group,"C 2019 Warner Music Group - X5 Music Group, P 2019 Warner Music Group - X5 Music Group",6910 +6911,spotify:track:0ZciUwSSqAqYzWBPUBK9Su,One Chance To Dance,"spotify:artist:1bT7m67vi78r2oqvxrP3X5, spotify:artist:7gbmX8SsfjEjxDMzBi1ZOL","Naughty Boy, Joe Jonas",spotify:album:50t4qCcG4GAAav6lWEFcPO,One Chance To Dance,"spotify:artist:1bT7m67vi78r2oqvxrP3X5, spotify:artist:7gbmX8SsfjEjxDMzBi1ZOL","Naughty Boy, Joe Jonas",2017-10-20,https://i.scdn.co/image/ab67616d0000b273fe1ccf823e219e8f74006ba1,1,1,204480,https://p.scdn.co/mp3-preview/9cfb15a7b35fc240f0c82a5799aa35f6d57559f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71705442,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"uk contemporary r&b,pop,post-teen pop",0.603,0.783,2.0,-3.245,1.0,0.031,0.107,0.0,0.0886,0.332,103.974,4.0,,Universal Music Group,"C © 2017 Naughty Boy, under exclusive license to Virgin Records Ltd, P A Virgin EMI Records release; ℗ 2017 Naughty Boy, under exclusive license to Virgin Records Ltd",6911 +6912,spotify:track:71yCMlsD6qbD7NmNUEoVNR,Ca plane pour moi,spotify:artist:1KeIof0zqga5ojkmOKg88P,Plastic Bertrand,spotify:album:1wLw41yiDGcZowrw3L3Bkd,Plastic Bertrand,spotify:artist:1KeIof0zqga5ojkmOKg88P,Plastic Bertrand,1998-02-06,https://i.scdn.co/image/ab67616d0000b273168b00b7ccd04a5cf38cd74e,1,1,182133,https://p.scdn.co/mp3-preview/0d6325eb28db824c81f613989c05288895bddc23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,BEB017765001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic belgian pop,0.422,0.943,10.0,-4.365,1.0,0.0954,0.074,6.83e-05,0.105,0.845,165.764,4.0,,AMC,"C 1998 AMC, P 1998 AMC",6912 +6913,spotify:track:3LTETRQAhfTHZIepuZkGM0,Lost It All,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,spotify:album:2uNFpEVey5RsxzTdoDmjiz,Beautiful Lies (Deluxe),spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,2016-03-25,https://i.scdn.co/image/ab67616d0000b273ceb1cccb864424fc5c2bc1e7,1,6,227160,https://p.scdn.co/mp3-preview/14827ab62bb44d57b98e4353351721bc7cd763f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAHS1600024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,uk pop,viral pop",0.55,0.189,7.0,-12.408,1.0,0.0356,0.95,2.61e-05,0.109,0.15,123.609,4.0,,Atlantic Records UK,"C © 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company, P ℗ 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company",6913 +6914,spotify:track:5hnJCRSo4pxRsaEwT9YusG,Love Story,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:2gP2LMVcIFgVczSJqn340t,Fearless - Platinum Edition,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2008-11-11,https://i.scdn.co/image/ab67616d0000b27373b565ab9d713e8d5586aac2,1,9,235280,https://p.scdn.co/mp3-preview/4133a184bf81a9a97eaaf92ddbb70fc26463ebb5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USCJY0803275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.618,0.736,2.0,-3.937,1.0,0.0308,0.157,0.0,0.073,0.307,118.982,4.0,,"Big Machine Records, LLC","C © 2009 Apollo A-1 LLC, P ℗ 2009 Apollo A-1 LLC",6914 +6915,spotify:track:6EvgWSbWmQelxrQBmhEdXh,Heart-Shaped Box,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,spotify:album:3SBQfBKAPWvCr4qse1uNis,Nirvana (International Version),spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,2002-01-01,https://i.scdn.co/image/ab67616d0000b273f118d2074e050cbc2e4533a0,1,9,279040,https://p.scdn.co/mp3-preview/71c2606b4c7b16f217c033319f155f265c0666ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19960703,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,permanent wave,rock",0.49,0.778,1.0,-6.968,1.0,0.0548,0.0773,0.00862,0.087,0.278,99.723,4.0,,Universal Music Group,"C © 2002 Geffen Records Inc., P ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",6915 +6916,spotify:track:2biWKOdQ3jXHJPTzk0ZMZD,Doctor Jones - Original Version,spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,spotify:album:2fMLZjqCrVeAknRbcPKwGz,Aquarium,spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,1997-01-01,https://i.scdn.co/image/ab67616d0000b273d2510cf70b57530d14fa7cba,1,5,203200,https://p.scdn.co/mp3-preview/aa6d730512c63a29f23c7f22eff99625ce6fd3f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DKBKA9700405,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,eurodance,europop",0.702,0.922,0.0,-6.479,0.0,0.0568,0.158,0.000113,0.047,0.469,139.959,4.0,,Universal Music,"C © 1997 Universal Music (Denmark) A/S, P ℗ 1997 Universal Music (Denmark) A/S",6916 +6917,spotify:track:0keSRaydiSOTh2g65Xsdv6,Beatnik Fly,"spotify:artist:5sgpmIi6mJNrm3fs3swCa7, spotify:artist:3LzZD1ZCFsFRJfdRJRjaRl","Johnny & The Hurricanes, Johnny Paris",spotify:album:4eTjDfj5SN1nmKGONfhkFN,Greatest Hits,spotify:artist:5sgpmIi6mJNrm3fs3swCa7,Johnny & The Hurricanes,2010-09-20,https://i.scdn.co/image/ab67616d0000b27335cdb0cc7cb57a5264a96943,1,4,134773,https://p.scdn.co/mp3-preview/89a7372b81eed6b8e7ba29c82b8158a5a24e7364?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSWD6020001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.502,0.811,5.0,-9.409,1.0,0.0348,0.313,0.92,0.12,0.941,178.077,4.0,,"Johnny & The Hurricanes, Inc.","C (C) 2009 Johnny And The Hurricanes, Inc.",6917 +6918,spotify:track:32pdw9gyCQrgiXWnCpGm3t,Thunderstruck,spotify:artist:3vE2xZG4i70fweJzQpZCRN,Highway to Hell,spotify:album:1lpdciJsUo9mkcqFHpFsTx,Thunderstruck,spotify:artist:3vE2xZG4i70fweJzQpZCRN,Highway to Hell,2012-11-01,https://i.scdn.co/image/ab67616d0000b2734c0ad3712535fb0f08b86c33,1,1,295395,https://p.scdn.co/mp3-preview/61d6a669d200c90c388f5921dc3494ab20c4a2c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USA561402486,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.46,0.781,9.0,-5.36,1.0,0.0415,0.000187,0.543,0.291,0.12,132.04,4.0,,Big Eye Music,C (C) 2012 Big Eye Music,6918 +6919,spotify:track:4kRMsLX7bJqjIfK44qJ9h6,Hold Me,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:0LfM3PGkXE6KvJEE1HkOnz,Greatest Hits,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1988-11-21,https://i.scdn.co/image/ab67616d0000b273813da91820fd194cbee5bdce,1,4,225333,https://p.scdn.co/mp3-preview/8a10985dd9f2e68e1b3d8ce0315fa6b1ac771720?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USWB19900201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.709,0.571,10.0,-13.25,1.0,0.039,0.247,0.014,0.114,0.779,124.739,4.0,,Warner Records,"C © 1988 Warner Records Inc., P ℗ 1988 Warner Records Inc.",6919 +6920,spotify:track:557un1HgwYMuqfWGSTmnxw,Single Ladies (Put a Ring on It),spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:3ROfBX6lJLnCmaw1NrP5K9,I AM...SASHA FIERCE - Platinum Edition,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2008,https://i.scdn.co/image/ab67616d0000b273b4c5982e1b92f97a126fc18c,1,1,192586,https://p.scdn.co/mp3-preview/c2ded1a34c261f0a980ffa0f65bbb5f3dde28c24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM10803760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.426,0.584,1.0,-5.293,1.0,0.296,0.0383,0.0,0.192,0.272,193.438,4.0,,Music World Music/Columbia,"P (P) 2008, 2009 Sony Music Entertainment",6920 +6921,spotify:track:7GhIk7Il098yCjg4BQjzvb,Never Gonna Give You Up,spotify:artist:0gxyHStUsqpMadRV0Di1Qt,Rick Astley,spotify:album:6XhjNHCyCDyyGJRM5mg40G,Whenever You Need Somebody,spotify:artist:0gxyHStUsqpMadRV0Di1Qt,Rick Astley,1987-12-08,https://i.scdn.co/image/ab67616d0000b273237665d08de01907e82a7d8a,1,1,212826,https://p.scdn.co/mp3-preview/b4c682084c3fd05538726d0a126b7e14b6e92c83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBARL9300135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock,sophisti-pop,synthpop",0.727,0.939,8.0,-11.855,1.0,0.0369,0.135,4.35e-05,0.151,0.916,113.33,4.0,,Sony Music CG,P (P) 1987 Sony Music Entertainment UK Limited under exclusive license to BMG Rights Management (UK) Limited,6921 +6922,spotify:track:78fh8ymSUdo9oWkShDZbT8,Will You Be There (In The Morning),spotify:artist:34jw2BbxjoYalTp8cJFCPv,Heart,spotify:album:5jBozywln355lzBZ4BO1fg,Desire Walks On,spotify:artist:34jw2BbxjoYalTp8cJFCPv,Heart,1993-11-16,https://i.scdn.co/image/ab67616d0000b2732acd216746d9aa71319d6d63,1,9,269800,https://p.scdn.co/mp3-preview/dff9c3794e9eaeb75b42d8aa269f9e970e650ac8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USCA29300796,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,new wave pop,rock,singer-songwriter,soft rock",0.553,0.743,9.0,-6.794,1.0,0.0281,0.0365,1.65e-05,0.194,0.528,166.499,4.0,,Capitol Records,"C © 1993 Capitol Records, LLC, P ℗ 1993 Capitol Records, LLC",6922 +6923,spotify:track:0gzqZ9d1jIKo9psEIthwXe,Beautiful Day,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7a5U0GPoAvT3gvEY66FRuN,All That You Can't Leave Behind,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2000-01-01,https://i.scdn.co/image/ab67616d0000b27338fa0dfe55b1ff2e8c962bae,1,1,248400,https://p.scdn.co/mp3-preview/433a88ff2fa9079ef6dfedf02094fb0d849713dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBAAN0000196,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.536,0.928,11.0,-6.492,0.0,0.0589,0.0154,0.00134,0.2,0.389,136.258,4.0,,Universal-Island Records Ltd.,"C © 2000 Universal-Island Records Ltd., P ℗ 2000 Universal-Island Records Ltd.",6923 +6924,spotify:track:04JL2liXXV9B9coeGuUsPw,What Lovers Do (feat. SZA),"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:7tYKF4w9nC0nq9CsPZTHyP","Maroon 5, SZA",spotify:album:2QBJu1rJWSPtTiWxwIY2H7,Red Pill Blues (Deluxe),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2017-11-03,https://i.scdn.co/image/ab67616d0000b27332c1b451b15c72360c7a5569,1,2,199849,https://p.scdn.co/mp3-preview/a293b6d1e5a4147af4b5d65cc9e4bf865f12e99a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71709292,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop,r&b,rap",0.796,0.606,5.0,-5.254,0.0,0.0657,0.0767,2.99e-06,0.0863,0.42,110.007,4.0,,Universal Music LLC,"C © 2017 Interscope Records, P A 222 Records/Interscope Records Release; ℗ 2017 Interscope Records",6924 +6925,spotify:track:0ho4ac5tM9CNcmeIElhadF,Hit 'Em Up Style (Oops!),spotify:artist:6vytZ677lz4LzCrUDcDokM,Blu Cantrell,spotify:album:6AnYRqJHyeEzt2zviudTMH,Bittersweet,spotify:artist:6vytZ677lz4LzCrUDcDokM,Blu Cantrell,2003-06-11,https://i.scdn.co/image/ab67616d0000b2732bd281188f485ea182f3bd84,1,6,250493,https://p.scdn.co/mp3-preview/31b103d43e5e02a14b313ada1b1ab5547e5d7957?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USAR10100443,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,urban contemporary",0.696,0.722,5.0,-5.319,0.0,0.0801,0.169,0.0,0.289,0.67,90.116,4.0,,Arista,"P (P) 2003 Arista Records, Inc.",6925 +6926,spotify:track:6qWG7dpOSs5dfgJ7d35am5,Calypso,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,spotify:album:39vgclyyab7l2WMMUTmdmC,Ivy & The Big Apples,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,1996,https://i.scdn.co/image/ab67616d0000b27396703a116593a75200af2b96,1,5,111293,https://p.scdn.co/mp3-preview/ec71bd9820c0b2e33119fedf2a399eeb3de3d6de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUPO09620252,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.383,0.739,9.0,-6.841,1.0,0.0345,0.0034,0.218,0.1,0.306,92.879,3.0,,Universal Music Australia Pty. Ltd.,"C © 1996 Polydor Records, P ℗ 1996 Polydor Records",6926 +6927,spotify:track:5GHaHtfMdvDu5pGNuHLgOq,Turn Me Loose (feat. Savage),"spotify:artist:3KT9AeoTUPHKnntwQxlP9S, spotify:artist:1GbrJTB56Xs4XQGlmVbaCf","Young Divas, Savage",spotify:album:21A5wCQYzirpuxiHdhaYHc,New Attitude,spotify:artist:3KT9AeoTUPHKnntwQxlP9S,Young Divas,2007-11-24,https://i.scdn.co/image/ab67616d0000b2731464411b9e14391291a21be7,1,3,230453,https://p.scdn.co/mp3-preview/a1e9797d56ea01644f12e80272cd708eb4d55121?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUBM00700859,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,nz hip hop",0.789,0.768,0.0,-4.307,1.0,0.0579,0.00628,0.000166,0.354,0.645,124.036,4.0,,Sony BMG Music Entertainment,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,6927 +6928,spotify:track:6rdBDD7NUXE26qs2MJSrkm,Don't Cry - Remastered,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:1xN9jGFs73atuQ02PrazLf,Here And Now - The Best Of Human Nature,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,2001-10-30,https://i.scdn.co/image/ab67616d0000b273c26c16c6b599a919c482d01d,1,2,267946,https://p.scdn.co/mp3-preview/62a7bbbe93709f5ae661a54efccb21b40eea69dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUSM00100171,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,boy band",0.711,0.938,7.0,-0.682,0.0,0.0745,0.161,0.0232,0.0583,0.939,108.979,4.0,,Sony Music Entertainment,P (P) 2001 Sony Music Entertainment Australia Pty Ltd,6928 +6929,spotify:track:3tnxGMetnz5YVivUWJJ8ay,I'm Real,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:76QqoE30i9HVwxtxYMkWXT,J.Lo,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2001-01-23,https://i.scdn.co/image/ab67616d0000b273bfa0a1de59696c7a6fe15ebb,1,2,297973,https://p.scdn.co/mp3-preview/9a35530c6bd295378155474cb55ea5f7983b4d40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USSM10018505,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.875,0.843,7.0,-3.772,1.0,0.0368,0.00469,0.00381,0.106,0.733,110.792,4.0,,Epic,"P (P) 2001 Epic Records, a division of Sony Music Entertainment",6929 +6930,spotify:track:0Eqg0CQ7bK3RQIMPw1A7pl,Malibu Nights,spotify:artist:49tQo2QULno7gxHutgccqF,LANY,spotify:album:6SWmGozzQDUaczHXMuE8Za,Malibu Nights,spotify:artist:49tQo2QULno7gxHutgccqF,LANY,2018-10-05,https://i.scdn.co/image/ab67616d0000b273c4dae9528b2a8408f463eb17,1,9,286928,https://p.scdn.co/mp3-preview/1466ee293f7d2653d1722664848376b13e02ef02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBUM71805799,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"la pop,opm",0.559,0.422,11.0,-11.89,1.0,0.195,0.701,1.99e-06,0.0853,0.191,74.002,4.0,,Polydor Records,"C © 2018 Side Street Entertainment LLC, under exclusive licence to Polydor, a division of Universal Music Operations Limited, P ℗ 2018 Side Street Entertainment LLC, under exclusive licence to Polydor, a division of Universal Music Operations Limited",6930 +6931,spotify:track:2mv6GY70UsHiTCGQZ4JfgC,Fools Gold - Remastered 2009,spotify:artist:1lYT0A0LV5DUfxr6doRP3d,The Stone Roses,spotify:album:0um9FI6BLBldL5POP4D4Cw,The Stone Roses,spotify:artist:1lYT0A0LV5DUfxr6doRP3d,The Stone Roses,1989-05-02,https://i.scdn.co/image/ab67616d0000b273cf1f6466a493eb73d6d9d280,1,12,594453,https://p.scdn.co/mp3-preview/71b71b47d8a64c05bef4b4c69426df3732d54223?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAHJ0900020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,dance rock,madchester",0.731,0.875,7.0,-6.393,1.0,0.0457,0.000367,0.858,0.289,0.164,112.78,4.0,,Sony Music UK,P (P) 2009 Silvertone Records Limited,6931 +6932,spotify:track:0Wz8GXFNbt4Llcx5DlyF1p,I Get a Kick Out of You,spotify:artist:5msYo6aUsFrIHwsphedj0K,Gary Shearston,spotify:album:2ePMEcoxQPDV4Ieha1M5xG,Dingo,spotify:artist:5msYo6aUsFrIHwsphedj0K,Gary Shearston,1974,https://i.scdn.co/image/ab67616d0000b2739dbd6f90cb6b4b9eaad03d8e,1,4,222120,https://p.scdn.co/mp3-preview/bc0ead465523419ee14b943dc1811a63d8e563d3?cid=9950ac751e34487dbbe027c4fd7f8e99,True,8,AUUC00700277,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bush ballad,0.47,0.459,11.0,-14.028,0.0,0.0305,0.501,0.0,0.0581,0.758,136.269,4.0,,Gary Shearston,"C 1974 Gary Shearston, P 1974 Gary Shearston",6932 +6933,spotify:track:6lgsxp4M1RmnkivCqp6kPa,Abuse Me,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:511p6iaCuK8Sr0BYdpcfkq,Freak Show,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,1997,https://i.scdn.co/image/ab67616d0000b273f6e1df99ae6316a4badcce58,1,3,239893,https://p.scdn.co/mp3-preview/673aee8efc3bc98d186d3e13b1a861693fe83ea4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUSM09600251,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.475,0.679,9.0,-8.212,0.0,0.0319,0.303,1.78e-05,0.108,0.33,103.653,4.0,,Murmur Records,P 1996 Sony Music Productions Pty. Limited,6933 +6934,spotify:track:3fEoJxnPpfIHwFHKiFtqbA,Break Up Song,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:0JFTISfgRQyeH5kSAFPgtq,Break Up Song,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2020-03-27,https://i.scdn.co/image/ab67616d0000b2733af00cec8124f154ac4e1c02,1,1,200299,https://p.scdn.co/mp3-preview/6ed569e2e2b15507de49a026a9cb2e849e1ee080?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU2000041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.626,0.749,5.0,-5.406,1.0,0.0443,0.00515,0.0,0.215,0.6,90.033,4.0,,RCA Records Label,"P (P) 2020 Under Exclusive Licence to RCA, a division of Sony Music Entertainment UK Limited",6934 +6935,spotify:track:11d9oUiwHuYt216EFA2tiz,Ice Ice Baby,spotify:artist:7GXXMm3DB1VswVcuGyInUd,Vanilla Ice,spotify:album:1LHacvoBTd7o2d7wwQ9EZD,To The Extreme,spotify:artist:7GXXMm3DB1VswVcuGyInUd,Vanilla Ice,1990-01-01,https://i.scdn.co/image/ab67616d0000b2734bb0c02f38a183d19b410662,1,1,271466,https://p.scdn.co/mp3-preview/cdc25c1ca13048f58ee1db08e49c916cef38ef6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSB29000129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,miami hip hop,0.98,0.535,2.0,-16.035,1.0,0.058,0.027,1.68e-06,0.104,0.675,115.744,4.0,,SBK/EMI RECORDS,"C © 1990 Capitol Records, LLC, P ℗ 1990 Capitol Records, LLC",6935 +6936,spotify:track:5rLi8B8qgk6qThwRnKHW2P,The Ballad of Mona Lisa,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:5S0nsfYhHa1uz10V4yoWSL,Vices & Virtues,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,2011-03-18,https://i.scdn.co/image/ab67616d0000b273d8f40ad88ed77a939b716d19,1,1,226680,https://p.scdn.co/mp3-preview/d70c725d84e9c9e18606477bd8dc33334576a1ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAT21002551,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.436,0.893,9.0,-4.18,0.0,0.0556,0.000362,0.0,0.103,0.0794,124.113,4.0,,Decaydance/Fueled By Ramen,"C © 2011 Fueled By Ramen LLC, for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved, P ℗ 2011 Fueled By Ramen LLC, for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved",6936 +6937,spotify:track:4FVjmaPhlAT0hoTlUBHJIQ,Day 'N' Nite,"spotify:artist:0fA0VVWsXO9YnASrzqfmYu, spotify:artist:3o1cwVQfiDWafhYA02k13C","Kid Cudi, Crookers",spotify:album:0cklqURxFX1N5K93t9frRQ,Class Of '09,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2020-04-17,https://i.scdn.co/image/ab67616d0000b273ca5084b0476c49b06ead4f71,1,9,166600,https://p.scdn.co/mp3-preview/698b189052c7258eea8cb7c3e4554556e8c32dc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBCEN0801462,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,ohio hip hop,pop rap,rap,fidget house",0.78,0.737,11.0,-5.505,0.0,0.0528,0.146,0.00207,0.0616,0.969,130.013,4.0,,UME - Global Clearing House,"C © 2020 UMG Recordings, Inc., P ℗ 2020 UMG Recordings, Inc. FP",6937 +6938,spotify:track:3R1Xa7LkesYpNI3v6fslKi,Riptide,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:0yXpiO0g9UJb5Qhx4zAs16,Dream Your Life Away,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2014-09-05,https://i.scdn.co/image/ab67616d0000b273d3dec4ae5b0234ab749b4b44,1,4,201733,https://p.scdn.co/mp3-preview/d2a7f46a047a571376722c395eeb8e44dd0611b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,AULI01385760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.502,0.719,1.0,-6.649,1.0,0.0349,0.46,0.0,0.114,0.438,101.609,4.0,,Liberation Records,"C 2014 Liberation Music, P 2014 Liberation Music",6938 +6939,spotify:track:0sTnQus7pGewDC0UHSyRDS,Devil Inside,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:6p6RTnoHCJMnMx2jcK4oGu,Kick (Remastered 2011),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,1987,https://i.scdn.co/image/ab67616d0000b273dac4efc0ebdfd9d92f127129,1,3,313706,https://p.scdn.co/mp3-preview/b8c4d8d7ddcc27b954ae3724dfcd82ab3b46ccd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAMX8700004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.589,0.584,0.0,-7.526,1.0,0.0371,0.000818,0.457,0.104,0.539,150.688,4.0,,Petrol Records,"C © 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, A Division of UMG Recordings, Inc., P ℗ 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, A Division of UMG Recordings, Inc.",6939 +6940,spotify:track:7BFI9QZPQKgYuR2HhDgwbG,Royals,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,spotify:album:6rnzvZhe3PA57xKcKLRtJ6,Pure Heroine (Extended),spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,2013-01-01,https://i.scdn.co/image/ab67616d0000b27333a859e36fdc9a27ed86516e,1,3,190185,https://p.scdn.co/mp3-preview/a55bfd8c565813d4ca388bac8c9fcf7779e49f6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZUM71200031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,metropopolis,nz pop,pop",0.674,0.428,7.0,-9.504,1.0,0.122,0.121,0.0,0.132,0.337,84.878,4.0,,Universal Music New Zealand Limited,"C © 2013 Universal Music NZ Ltd., P ℗ 2013 Universal Music NZ Ltd.",6940 +6941,spotify:track:57FlM19L7CMprNvyQxKTTe,The Special Two,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,spotify:album:5Dd14nVQOJIUg9UgKkVyIQ,The Sound Of White,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,2004-01-01,https://i.scdn.co/image/ab67616d0000b273d1012e47b1270d2c81e38cf2,1,10,265173,https://p.scdn.co/mp3-preview/80155aceb87d27e2fbf28813b7932d43c492771e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUEL00500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop",0.452,0.341,2.0,-9.657,1.0,0.0332,0.739,0.0,0.0798,0.362,139.022,4.0,,Universal Music Australia Pty. Ltd.,"C © 2005 Eleven: A Music Company, P ℗ 2004 Eleven: A Music Company",6941 +6942,spotify:track:5DH7nDryMhpixm4G4B7RP9,The Longest Time,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:3R3x4zIabsvpD3yxqLaUpc,An Innocent Man,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1983-08-08,https://i.scdn.co/image/ab67616d0000b273814cbc4746358a25c84c62e7,1,3,217906,https://p.scdn.co/mp3-preview/a2fcc4978726e7668d165acae31a9a477cec51fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM18300273,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.637,0.333,3.0,-9.603,1.0,0.0262,0.181,0.0,0.147,0.588,84.347,4.0,,Columbia,"P (P) 1983 Columbia Records, a division of Sony Music Entertainment",6942 +6943,spotify:track:0jsANwwkkHyyeNyuTFq2XO,Heartbreaker (feat. Jay-Z),"spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:3nFkdlSjzX9mRTtwJOzDYB","Mariah Carey, JAY-Z",spotify:album:1iSTXHBhLc9ImaqyvVZGft,Rainbow,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,1999-11-02,https://i.scdn.co/image/ab67616d0000b2738ed130c0fbcf25117916f6d8,1,1,285706,https://p.scdn.co/mp3-preview/83f8a592adabe351a2c34306478527e57c3745f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM19918073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,east coast hip hop,gangster rap,hip hop,pop rap,rap",0.524,0.816,1.0,-5.872,1.0,0.37,0.383,0.0,0.349,0.789,200.031,4.0,,Columbia,"P (P) 1999 Columbia Records, a division of Sony Music Entertainment",6943 +6944,spotify:track:0sWH7Tl6GHiXdbG89xnfyl,Circus - Remastered,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:2ti2e8J05nwg9ikcMjW8aS,The Essential Britney Spears,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2014-07-29,https://i.scdn.co/image/ab67616d0000b273e2d88ce9b368639664aa7847,2,9,191746,https://p.scdn.co/mp3-preview/1bee918b0b1955224b99e14345f21461be148e6d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USJI10900638,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.795,0.729,6.0,-5.349,0.0,0.0539,0.148,0.000297,0.0786,0.727,114.97,4.0,,Jive/Legacy,"P This Compilation (P) 2013 RCA Records, a division of Sony Music Entertainment",6944 +6945,spotify:track:7LP4Es66zdY7CyjepqmvAg,Down,"spotify:artist:4pADjHPWyrlAF0FA7joK2H, spotify:artist:55Aa2cqylxrFIXC767Z865","Jay Sean, Lil Wayne",spotify:album:3v0AeWgJPrdPPZGt1tS2s0,All Or Nothing,spotify:artist:4pADjHPWyrlAF0FA7joK2H,Jay Sean,2009-01-01,https://i.scdn.co/image/ab67616d0000b2739004d9d1b817af63d113e937,1,3,212106,https://p.scdn.co/mp3-preview/0cab3b7809b74ed92a3261d443db74ce1a786b3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USCM50900094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,post-teen pop,hip hop,new orleans rap,pop rap,rap,trap",0.657,0.695,2.0,-4.493,1.0,0.0321,0.0108,0.0,0.0822,0.683,65.997,4.0,,Cash Money,"C © 2009 Cash Money Records Inc., P ℗ 2009 Cash Money Records Inc.",6945 +6946,spotify:track:13SmYqwwvcYbxXwPSY9JJt,Listen With Your Heart,spotify:artist:64NYtjmJ1onMOgQ2F40d6X,Casey Donovan,spotify:album:7hERy9QRO7dJpASUKSfe2i,For You,spotify:artist:64NYtjmJ1onMOgQ2F40d6X,Casey Donovan,2004-12-10,https://i.scdn.co/image/ab67616d0000b27345362617be63851f5654752e,1,1,241786,https://p.scdn.co/mp3-preview/76154166ebbd91d55a45c503b9cf04e352867b10?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00449001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop",0.544,0.509,5.0,-5.198,1.0,0.0274,0.822,7.63e-05,0.107,0.149,117.921,4.0,,BMG Music,P (P) 2004 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,6946 +6947,spotify:track:6txWz9UapYHVxEd7dDIHXT,No Rain,spotify:artist:5sD1ZLf2dGQ9gQ3YJl1eAd,Blind Melon,spotify:album:55jET4vDioHHd7ztX7OX3h,Blind Melon,spotify:artist:5sD1ZLf2dGQ9gQ3YJl1eAd,Blind Melon,1992-01-01,https://i.scdn.co/image/ab67616d0000b2737ed1df1690df31d094d7c2bc,1,7,217106,https://p.scdn.co/mp3-preview/7c1423cf3b8e381b1ace65eebcc412d48bd37b87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USCA29200194,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,pop rock,rock",0.389,0.476,9.0,-9.342,1.0,0.0316,0.619,5.09e-05,0.255,0.566,148.117,4.0,,Capitol Records,"C © 1992 Capitol Records, LLC, P ℗ 1992 Capitol Records, LLC",6947 +6948,spotify:track:6kCJMxv445L2okuTiou1fR,Tell Her About It,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:3R3x4zIabsvpD3yxqLaUpc,An Innocent Man,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1983-08-08,https://i.scdn.co/image/ab67616d0000b273814cbc4746358a25c84c62e7,1,5,229200,https://p.scdn.co/mp3-preview/112ebf1231c6c39d7b5295e9fa3900808e8d8b10?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM18300272,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.565,0.894,8.0,-5.241,1.0,0.175,0.00777,0.0,0.49,0.737,182.262,4.0,,Columbia,"P (P) 1983 Columbia Records, a division of Sony Music Entertainment",6948 +6949,spotify:track:6eFahAdQgABBj1XOM99cBG,I Like It Like That (feat. New Boyz),"spotify:artist:6jTnHxhb6cDCaCu4rdvsQ0, spotify:artist:1ZKqrja0WvbSssYNFO3lzs","Hot Chelle Rae, New Boyz",spotify:album:0UkgnXc0w7qiRE2X086BdN,Whatever,spotify:artist:6jTnHxhb6cDCaCu4rdvsQ0,Hot Chelle Rae,2011-11-25,https://i.scdn.co/image/ab67616d0000b2733b97f1c9a0273bfbdc6bd791,1,1,188200,https://p.scdn.co/mp3-preview/3b487f29e08612b52750ed8f2a73e5e208ff12c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USRC11100786,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,neon pop punk,post-teen pop,pop rap",0.742,0.784,1.0,-5.458,1.0,0.0552,0.0308,0.0,0.354,0.65,101.002,4.0,,RCA Records Label,"P (P) 2011 RCA Records, a division of Sony Music Entertainment",6949 +6950,spotify:track:1BIENruTnjKdB7HD2YIlRr,Love Sex Magic (feat. Justin Timberlake),"spotify:artist:2NdeV5rLm47xAvogXrYhJX, spotify:artist:31TPClRtHm23RisEBtV3X7","Ciara, Justin Timberlake",spotify:album:6TpQvLoBuLgVM2XDSJ1VF9,Fantasy Ride,spotify:artist:2NdeV5rLm47xAvogXrYhJX,Ciara,2009-05-01,https://i.scdn.co/image/ab67616d0000b27313638393b7c0cb5e965e2a15,1,2,220426,https://p.scdn.co/mp3-preview/004fcf45ca93f0f496d582aee5ad12090b412c6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USLF20900012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,pop,r&b,urban contemporary,dance pop,pop",0.893,0.666,10.0,-5.089,0.0,0.138,0.0206,0.0,0.342,0.874,107.011,4.0,,LaFace Records,"P (P) 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",6950 +6951,spotify:track:6qWeRd0JQZRmzRUUmjF3Ps,Touch It,spotify:artist:7peqq4aACFkBwIWGG0YRJ9,Monifah,spotify:album:2zmrplYh3J4LXpV7QJt6UB,Just The Hits 90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-09-22,https://i.scdn.co/image/ab67616d0000b2738f2de78432fcd257e1f3a850,1,53,283933,https://p.scdn.co/mp3-preview/1cc34ece85dee6005b9c74f739b5a1bf73936ef9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USUR19801497,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing,r&b",0.865,0.545,8.0,-8.235,0.0,0.0706,0.0239,0.0524,0.103,0.841,115.452,4.0,,Universal Music Australia Pty. Ltd.,"C © 2017 Universal Music Australia Pty Ltd., P This Compilation ℗ 2017 Universal Music Australia Pty Ltd.",6951 +6952,spotify:track:0dRhSF9LV0HR8Jwd3MMMKJ,Everytime,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:0z7pVBGOD7HCIB7S8eLkLI,In The Zone,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2003-11-13,https://i.scdn.co/image/ab67616d0000b273efc6988972cb04105f002cd4,1,12,230306,https://p.scdn.co/mp3-preview/3287f69198f5e8a2499b7afb850e078527732b59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USJI10301010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.398,0.284,3.0,-12.852,1.0,0.0337,0.966,8.57e-05,0.116,0.114,109.599,4.0,,Jive,P (P) 2003 Zomba Recording LLC,6952 +6953,spotify:track:4UHT2TNx5R1077yS7C7vpL,Can I Get A Witness,"spotify:artist:3gvT4Mc7kn54IUy08Y0Tr5, spotify:artist:67OKa82otrQqKDsfTDfSYA","Sam Brown, Pete Brown",spotify:album:1Co1PfkD3RSirfxw6h2KfJ,Stop!,spotify:artist:3gvT4Mc7kn54IUy08Y0Tr5,Sam Brown,1988-01-01,https://i.scdn.co/image/ab67616d0000b2736d47d9c46ea3da302dddb812,1,13,181600,https://p.scdn.co/mp3-preview/5c54f5aa42d7792f650fd395a87f18c350aa5dfe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,GBAAM8801004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.631,0.879,9.0,-12.558,1.0,0.032,0.186,0.000131,0.64,0.513,90.627,4.0,,EMI,"C © 1988 A&M Records Limited, P ℗ 1988 A&M Records Limited",6953 +6954,spotify:track:1FI8lDItTWvHOT1c2Lr3os,Wooden Heart,spotify:artist:1b5taabb9eKSbyzVFVtEjh,Joe Dowell,spotify:album:3hskS7tDBv1tQZ9lGqjMGk,Wooden Heart,spotify:artist:1b5taabb9eKSbyzVFVtEjh,Joe Dowell,2013-05-15,https://i.scdn.co/image/ab67616d0000b273a9ef4387a8aa987616d280d7,1,1,124447,https://p.scdn.co/mp3-preview/67352c84cdb6445a5b18034e08bb92ab124f6a0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMFME1321929,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.595,0.174,1.0,-22.138,1.0,0.0277,0.861,0.000728,0.118,0.858,83.015,4.0,,Black Sheep Music,C (C) 2013 Entertain Me Europe LTD,6954 +6955,spotify:track:4a01ClusxuZiloOK5UgLUn,You Keep Me Hangin' On,spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,spotify:album:5BrLn546krr08d9UvOj73k,"The Supremes Sing Holland, Dozier, Holland",spotify:artist:57bUPid8xztkieZfS7OlEV,The Supremes,1967-01-23,https://i.scdn.co/image/ab67616d0000b2735422769f395bd15413e208ad,1,1,163280,https://p.scdn.co/mp3-preview/7f370befee491eca6736138ddbd004cc7a7d3ed3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USMO16682616,spotify:user:bradnumber1,2023-02-14T22:22:02Z,"adult standards,classic girl group,classic soul,disco,motown,soul",0.682,0.612,8.0,-7.004,0.0,0.0381,0.284,0.0,0.0783,0.845,127.647,4.0,,Motown,"C © 2004 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2004 Motown Records, a Division of UMG Recordings, Inc.",6955 +6956,spotify:track:2iXcvnD3d1gfLBum0cE5Eg,Tutti Frutti,spotify:artist:4xls23Ye9WR9yy3yYMpAMm,Little Richard,spotify:album:18tV6PLXYvVjsdOVk0S7M8,Here's Little Richard (Deluxe Edition),spotify:artist:4xls23Ye9WR9yy3yYMpAMm,Little Richard,1957-03,https://i.scdn.co/image/ab67616d0000b2738a22827b01e5d68d3736d58b,1,1,144226,https://p.scdn.co/mp3-preview/0ab99dc9866e1f12b943b7848c78de38a37b3151?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USC4R1100478,spotify:user:bradnumber1,2024-01-02T04:32:09Z,"blues,rock-and-roll,rockabilly,soul",0.555,0.658,5.0,-3.866,1.0,0.0541,0.793,0.0,0.118,0.937,184.835,4.0,,Craft Recordings,"C © 2017 Craft Recordings, a division of Concord Music Group, Inc., P ℗ 2017 Craft Recordings, a division of Concord Music Group, Inc.",6956 +6957,spotify:track:3uyL7AEiz5Z4de6yxl576g,Everybody's Fool,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,spotify:album:5ozEqFzXMZyJkfekXLkUUo,Fallen,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,2003,https://i.scdn.co/image/ab67616d0000b273b452e368a6ab2cff47147b3c,1,3,195880,https://p.scdn.co/mp3-preview/cd88d1906b0a1846f1ea28c62b0e604039331fc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU30200106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alternative metal,0.44,0.818,2.0,-5.077,0.0,0.0388,0.00131,5.14e-05,0.273,0.32,95.093,4.0,,Wind Up,"C (C) 2003 Wind-Up Records, LLCThis label copy information is the subject of copyright protection. All rights reserved.(C) EMI Music Germany GmbH & Co. KG, P (P) 2003 The copyright in this sound recording is owned by Wind-Up Records, LLC under exclusive licence to EMI Music Germany GmbH & Co. KG",6957 +6958,spotify:track:4h4QlmocP3IuwYEj2j14p8,Sunroof,"spotify:artist:7qmpXeNz2ojlMl2EEfkeLs, spotify:artist:38PzLQE4GW8o7A18oGhi0x","Nicky Youre, dazy",spotify:album:0VaHnwzDug4AcDkejYDUl5,Sunroof,"spotify:artist:7qmpXeNz2ojlMl2EEfkeLs, spotify:artist:38PzLQE4GW8o7A18oGhi0x","Nicky Youre, dazy",2021-12-03,https://i.scdn.co/image/ab67616d0000b2732d03cfe61f9e398fa2f68c65,1,1,163025,https://p.scdn.co/mp3-preview/605058558fd8d10c420b56c41555e567645d5b60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,USQX92202129,spotify:user:bradnumber1,2022-08-31T00:27:04Z,singer-songwriter pop,0.768,0.714,10.0,-5.11,1.0,0.0401,0.352,0.0,0.15,0.842,131.443,4.0,,Columbia,P (P) 2022 Thirty Knots under exclusive license to Columbia Records,6958 +6959,spotify:track:6f5TuB9WtbA1g49A4DcMQ4,Be Alright,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:3OZgEywV4krCZ814pTJWr7,Dangerous Woman,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2016-05-20,https://i.scdn.co/image/ab67616d0000b2735f9393fda71e7df39b34defd,1,3,179293,https://p.scdn.co/mp3-preview/3b0f04284f2f6b02a79ef5dea5b7038051e60e70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71601797,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.813,0.456,1.0,-7.667,0.0,0.0684,0.169,2.86e-06,0.105,0.587,108.801,4.0,,Universal Records,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",6959 +6960,spotify:track:2CJortoJwyiM7EeFvrLUZB,Never Let You Go,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,spotify:album:2RGBdVzWbKATHuLHj86Al4,Real Life,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,2006-07-06,https://i.scdn.co/image/ab67616d0000b273a11168373d75a2f2bb183ed5,1,6,257453,https://p.scdn.co/mp3-preview/cf608b9b689d459432ab4a889a5f626eeff96828?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA00602400,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,kiwi rock",0.239,0.693,3.0,-6.036,1.0,0.0349,0.0089,0.0,0.208,0.157,110.643,4.0,,WM Australia,"C 2006 Evermore, P 2006 Evermore",6960 +6961,spotify:track:1OegNbothtDZA2Sz34RpGr,That's the Way It Is,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:1EmVFXa2YcIIpkoYCUOubS,The Essential,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,2008,https://i.scdn.co/image/ab67616d0000b2734a4af95c2a23af0a63554aab,1,7,242893,https://p.scdn.co/mp3-preview/ca4c80222ce30071dda43d3128ab241f182e148b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAC229900134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.627,0.873,9.0,-5.186,1.0,0.0467,0.13,0.0,0.132,0.562,93.029,4.0,,Columbia,P Compilation (P) 2008 Sony Music Entertainment Canada Inc.,6961 +6962,spotify:track:5XMjXjwCkJVmk0AHm7z8IV,Jerk It Out,spotify:artist:4rGrN4XDYhP6dUAZMvcuHr,Caesars,spotify:album:2ucS4apziMY7gaBIQc2tal,Love For The Streets,spotify:artist:4rGrN4XDYhP6dUAZMvcuHr,Caesars,2002,https://i.scdn.co/image/ab67616d0000b27346ed4ae9343359e5965baf7b,1,6,195666,https://p.scdn.co/mp3-preview/dfe2070e7c2cfff0a0eb1eb558aa2346e6913952?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,SEVBU0200002,spotify:user:bradnumber1,2023-05-07T11:46:29Z,swedish indie rock,0.58,0.981,8.0,-2.603,0.0,0.06,0.0171,1.07e-05,0.386,0.861,134.007,4.0,,Parlophone Sweden,"C © 2002 Woah Dad/Telegram Music distributed by Warner Music Sweden AB, P ℗ 2002 Woah Dad/Telegram Music distributed by Warner Music Sweden AB",6962 +6963,spotify:track:665Jxlgi1HamPKbW1vwzx4,We Belong,spotify:artist:43mhFhQ4JAknA7Ik1bOZuV,Pat Benatar,spotify:album:5qxb9JwzVz5EqegShruoM8,Tropico,spotify:artist:43mhFhQ4JAknA7Ik1bOZuV,Pat Benatar,1984,https://i.scdn.co/image/ab67616d0000b273ba7005f3c12d940ad4967460,1,2,221133,https://p.scdn.co/mp3-preview/ad6c7ec111c6e1d1c8e70277e3082a3732e56549?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USCH38400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,new romantic,new wave pop,rock,singer-songwriter,soft rock",0.706,0.322,5.0,-14.108,1.0,0.0467,0.529,2.41e-06,0.576,0.305,135.155,4.0,,Capitol Records,"C © 1985 Capitol Records, LLC, P ℗ 1985 Capitol Records, LLC",6963 +6964,spotify:track:7fyht1W6eYADS9m8aSKa8z,Mr Mysterious - Single Version,"spotify:artist:5M0fvL9GMc2zTuIIQwresj, spotify:artist:3Nt2NcCHdJFvvSoowWH4jL","Vanessa Amorosi, Seany B",spotify:album:7jvZDeVK5NRP4uafgJzHAC,So Fresh The Hits of Summer 2011 + The Best Of 2010,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b2731c2dfb07e0d459e66592ed90,1,5,224133,https://p.scdn.co/mp3-preview/34ff05bccdbe22219d04c10e6d0c1cd3c0144ee3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71000404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,australian dance,melbourne bounce",0.687,0.944,9.0,-4.163,0.0,0.0472,0.161,1.99e-06,0.153,0.522,120.007,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Universal Music Australia Pty Ltd., P ℗ 2010 Universal Music Australia Pty Ltd.",6964 +6965,spotify:track:0mZP0cQEVVZaO7zsHMptfD,Escaping,spotify:artist:30PWkTjPhoGFOf0cJoC3Fg,Margaret Urlich,spotify:album:33elazwmbHQeMAZ9ErpS41,Safety In Numbers,spotify:artist:30PWkTjPhoGFOf0cJoC3Fg,Margaret Urlich,1989-08-11,https://i.scdn.co/image/ab67616d0000b2739cf194709492a0d4b6f7ee51,1,1,276933,https://p.scdn.co/mp3-preview/ec8b102ac03edcff254af04f9fd14bf20bb7dd56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUSM08900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,classic nz pop",0.58,0.714,0.0,-12.315,1.0,0.0433,0.0181,0.000407,0.0555,0.433,172.043,4.0,,Columbia,P (P) 1989 Sony Music Entertainment (Australia) Limited,6965 +6966,spotify:track:2bJvI42r8EF3wxjOuDav4r,Time of Our Lives,"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:21E3waRsmPlU7jZsS13rcj","Pitbull, Ne-Yo",spotify:album:4EUf4YyNjuXypWY6W5wEDm,Globalization,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2014-11-21,https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7,1,4,229360,https://p.scdn.co/mp3-preview/d508371276a297486ace8d4ff596c54ae9e65260?cid=9950ac751e34487dbbe027c4fd7f8e99,True,83,USRC11402647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,dance pop,pop,r&b,urban contemporary",0.721,0.802,1.0,-5.797,1.0,0.0583,0.0921,0.0,0.694,0.724,124.022,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2014 RCA Records, a division of Sony Music Entertainment",6966 +6967,spotify:track:1dIChAQ6MLzIsXWl6vWAqX,Kentucky Rain,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:3ekkFrfotMsEAKc5g71GHk,From Elvis in Memphis,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1969-06-17,https://i.scdn.co/image/ab67616d0000b273fdc0aa7765f3197ac9179ec7,1,15,195720,https://p.scdn.co/mp3-preview/f11b565696d70edae4a26c03f1d7eb8589a7091b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USRC16903934,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.411,0.374,0.0,-14.028,1.0,0.0282,0.427,1.01e-05,0.154,0.558,105.265,4.0,,RCA/Legacy,P (P) 1969 Sony Music Entertainment,6967 +6968,spotify:track:60lJebAiPbIrnLeGev6kHX,If I Ain't Got You,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,spotify:album:1Dg8gAdREQJLam7nsgu4Cf,The Diary Of Alicia Keys,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2003,https://i.scdn.co/image/ab67616d0000b2730ee699170e57222e304649a7,1,6,228706,https://p.scdn.co/mp3-preview/2d1fd54c4a4147b43e1eb79c00380e36818a2546?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJAY0300452,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b",0.589,0.449,7.0,-9.153,1.0,0.105,0.607,2.18e-05,0.1,0.159,118.351,3.0,,J Records,"P (P) 2003 J Records, a unit of BMG",6968 +6969,spotify:track:51s7AF4GLioU2tLiz3L3Jp,One,spotify:artist:3RTzAwFprBqiskp550eSJX,Harry Nilsson,spotify:album:1nuvb3dI59xG29iCSuQ7CN,The Lego Batman Movie: Original Motion Picture Soundtrack,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-02-03,https://i.scdn.co/image/ab67616d0000b273d02a9047e86bb8301985032a,1,5,141960,https://p.scdn.co/mp3-preview/66d2ee538694ac19543dbe9ba2c2cc63f47166c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC17108259,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,singer-songwriter",0.449,0.241,0.0,-11.821,0.0,0.0365,0.892,0.00103,0.15,0.189,123.348,4.0,,WaterTower Music,"C © 2017 Warner Bros. Entertainment / RatPac-Dune Entertainment, LLC, P ℗ 2017 WaterTower Music",6969 +6970,spotify:track:0JkF8ad4HwuPBSqCJBR2Nv,Magic,spotify:artist:5TfnQ0Ai1cEbKY5katFK14,Ladyhawke,spotify:album:31AFNVRlzhlhqX9LCwPfHF,Ladyhawke (Deluxe Edition),spotify:artist:5TfnQ0Ai1cEbKY5katFK14,Ladyhawke,2009-04-10,https://i.scdn.co/image/ab67616d0000b2730000e47a4e869d4323ad0e3d,1,1,207106,https://p.scdn.co/mp3-preview/1d2dd430c338f0202e92688749cfe3d306406d5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBUM70808708,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,metropopolis,neo-synthpop",0.616,0.835,9.0,-3.518,0.0,0.0403,0.0102,0.0,0.231,0.575,110.032,4.0,,Modular,"C © 2009 Modular Recordings, P ℗ 2009 Modular Recordings",6970 +6971,spotify:track:0xAkVfVcnSkaLC4JuyZj61,Said I Loved You...But I Lied,spotify:artist:6YHEMoNPbcheiWS2haGzkn,Michael Bolton,spotify:album:5LexvRgu9Dj888hCu08lqh,The Soul Provider: The Best Of Michael Bolton,spotify:artist:6YHEMoNPbcheiWS2haGzkn,Michael Bolton,2009-03-26,https://i.scdn.co/image/ab67616d0000b27342af7b3415da89f2f5a48625,1,15,302853,https://p.scdn.co/mp3-preview/cc5a238e3fc3be30adf1cd4ce4ef3cd415fb7643?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19303120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.519,0.615,0.0,-7.315,0.0,0.0289,0.132,5.23e-06,0.316,0.406,159.74,4.0,,Legacy Recordings,P This compilation 2009 Sony Music Entertainment,6971 +6972,spotify:track:2dR5WkrpwylTuT3jRWNufa,Fly Me To The Moon,"spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0, spotify:artist:2jFZlvIea42ZvcCw4OeEdA","Frank Sinatra, Count Basie",spotify:album:7gmak9ZGm10y4PtZa9SBQn,Ultimate Sinatra,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,2015-04-17,https://i.scdn.co/image/ab67616d0000b273b19cb81319fbfd9ed54baeae,1,17,147146,https://p.scdn.co/mp3-preview/25baad56b868edd3e2d4f2e62f2bdde5db5d35a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRH10723029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,big band,harlem renaissance,jazz,jazz piano,swing,vocal jazz",0.67,0.365,0.0,-10.158,1.0,0.0566,0.525,0.0,0.0575,0.45,119.347,4.0,,FRANK SINATRA HYBRID,"C © 2015 Universal Music Enterprises, P This Compilation ℗ 2015 Universal Music Enterprises",6972 +6973,spotify:track:2dURQIBrw3XcHyVZlfdpC1,Two of Hearts,spotify:artist:3q8tRS0hCMVCylgKAoA0ya,Stacey Q,spotify:album:71st36nPTXAgWnEaNg9AZa,Better Than Heaven,spotify:artist:3q8tRS0hCMVCylgKAoA0ya,Stacey Q,1986-08-18,https://i.scdn.co/image/ab67616d0000b273af663332c29212056de51b05,1,1,239693,https://p.scdn.co/mp3-preview/9f4337936b552de1abd50928dc0956c7c0316ac0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT29902109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hi-nrg",0.824,0.506,5.0,-7.12,0.0,0.0291,0.124,0.0,0.113,0.654,130.717,4.0,,Atlantic Records,"C © 1986 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1986 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",6973 +6974,spotify:track:4QNpBfC0zvjKqPJcyqBy9W,Give Me Everything (feat. Nayer),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:4D75GcNG95ebPtNvoNVXhz, spotify:artist:21E3waRsmPlU7jZsS13rcj, spotify:artist:1ruutHJcECI7cos2n5TqpO","Pitbull, AFROJACK, Ne-Yo, Nayer",spotify:album:4rG0MhkU6UojACJxkMHIXB,Planet Pit (Deluxe Version),spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2011-06-17,https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19,1,2,252306,https://p.scdn.co/mp3-preview/6eafa4293d2b35b2e75ffab5ec1bba8ec00d5082?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,USJAY1100032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,big room,dance pop,dutch house,edm,electro house,pop dance,dance pop,pop,r&b,urban contemporary,deep dance pop",0.671,0.939,8.0,-3.206,1.0,0.161,0.191,0.0,0.298,0.53,129.024,4.0,,Mr.305/Polo Grounds Music/J Records,"P (P) 2011 J Records, a unit of Sony Music Entertainment",6974 +6975,spotify:track:4AwNDow9qthhxu5Wu506xx,All For You,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,spotify:album:4qQj8UZRD03bQjMRuM3q6v,Get Closer,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,2010-01-01,https://i.scdn.co/image/ab67616d0000b2731140404e4ea83677aa5bbd7a,1,3,217942,https://p.scdn.co/mp3-preview/416c1f65e39470f1d6a545d0ca9a32879591575a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USCN11000254,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road",0.544,0.406,8.0,-9.714,1.0,0.0284,0.539,1.59e-05,0.0829,0.229,104.774,4.0,,Capitol Nashville,"C © 2010 Hit Red Records, P ℗ 2010 Hit Red Records",6975 +6976,spotify:track:532HJgeWZQIGef2hXD6iLd,Planets,spotify:artist:0EdNPfEHC714LHuN0NPIyU,Short Stack,spotify:album:0egKbmWnpVaZkvQ68ktlyr,This Is Bat Country,spotify:artist:0EdNPfEHC714LHuN0NPIyU,Short Stack,2010-01-01,https://i.scdn.co/image/ab67616d0000b27356797e7da4f49ac9080a9f6b,1,3,211866,https://p.scdn.co/mp3-preview/f5341e3dac69ef6547f64689bc862c10b9fb830c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71001531,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.636,0.955,10.0,-4.022,0.0,0.044,0.00293,0.0,0.115,0.576,125.034,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Sunday Morning Records Pty Ltd, P ℗ 2010 Sunday Morning Records Pty Ltd",6976 +6977,spotify:track:3Ug96zKa29P3vICEEcYajZ,We Don't Talk Anymore - 2001 Remaster,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:2QV9SouhSHFNpls0Dvyoo5,Rock 'n' Roll Juvenile,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1979,https://i.scdn.co/image/ab67616d0000b273ecb897a9c1548a36a70bd7fa,1,12,257160,https://p.scdn.co/mp3-preview/e4fe862678aa369203289715c55c41fc8cea9e26?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAYE0100642,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.746,0.703,0.0,-7.853,1.0,0.0291,0.0014,0.00414,0.066,0.733,111.569,4.0,,Parlophone UK,"C © 2001 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",6977 +6978,spotify:track:51tUT1gHE30GQPhn1agudM,Hideaway,spotify:artist:4zxvC7CRGvggq9EWXOpwAo,Kiesza,spotify:album:2esSZWmdzMPyQsszbsX0rr,Sound Of A Woman,spotify:artist:4zxvC7CRGvggq9EWXOpwAo,Kiesza,2014-10-17,https://i.scdn.co/image/ab67616d0000b2739f495d4df29cd5cbd83423a0,1,1,251986,https://p.scdn.co/mp3-preview/a044b4f661c24639ad903948554c2abe9198be71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USUM71400121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,pop edm",0.838,0.72,7.0,-4.135,0.0,0.0483,0.0862,0.00696,0.0772,0.203,122.993,4.0,,4th & Broadway / Island,"C © 2014 Island Records, a division of UMG Recordings, Inc., P ℗ 2014 Island Records, a division of UMG Recordings, Inc.",6978 +6979,spotify:track:6b25xV5tO1ZUFCzg4hK7e9,See the Day,spotify:artist:694Ao86qG13aI7X1bbWrOX,Dee C. Lee,spotify:album:1OqoreKG4EKgfNoXp51YVt,Shrine,spotify:artist:694Ao86qG13aI7X1bbWrOX,Dee C. Lee,1986-02-11,https://i.scdn.co/image/ab67616d0000b2737b047fd59eca0573057f860f,1,4,281573,https://p.scdn.co/mp3-preview/991dea0e319ce55635f58e027728b1b018acb690?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBBBN8500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.3,0.265,0.0,-13.593,0.0,0.0316,0.628,0.0,0.28,0.314,135.91,3.0,,Sony BMG Music Entertainment,P (P) 1986 Sony Music Entertainment (UK) Ltd.,6979 +6980,spotify:track:6yuvC80FcnVJNvC0DbXN9e,Come to Me (feat. Nicole Scherzinger),"spotify:artist:59wfkuBoNyhDMQGCljbUbA, spotify:artist:40xbWSB4JPdOkRyuTDy1oP","Diddy, Nicole Scherzinger",spotify:album:7kIi4z3UO8ZqH3GVX18p7h,Press Play,spotify:artist:59wfkuBoNyhDMQGCljbUbA,Diddy,2006-10-16,https://i.scdn.co/image/ab67616d0000b27360c99c564024a5432e81eb5f,1,6,276786,https://p.scdn.co/mp3-preview/916958c22ede11a313e298f02d906b828b5153f5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,49,USBB40610413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap,dance pop,pop,post-teen pop",,,,,,,,,,,,,,Bad Boy Records,"C © 2006 Bad Boy Records LLC for the United States and WEA International Inc. for the world excluding the United States, South America and Central America., P ℗ 2006 Bad Boy Records LLC for the United States and WEA International Inc. for the world excluding the United States, South America and Central America.",6980 +6981,spotify:track:2iITB7MNdnEcXdd0vvJpPT,Breaking Up the Girl - Remastered 2021,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,spotify:album:0oofioVRjS31kC0nM7UvHG,beautiful garbage - 20th Anniversary / Deluxe,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,2001-10-01,https://i.scdn.co/image/ab67616d0000b273499cbb90cd0dc912a3b571aa,1,8,213136,https://p.scdn.co/mp3-preview/b54a12c22e6fc0165244281fe864443c3bf6bcf5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GB5KW2101403,spotify:user:bradnumber1,2022-08-26T01:27:49Z,"alternative rock,dance rock,electronic rock,permanent wave",0.521,0.675,2.0,-6.83,1.0,0.0286,0.00285,0.0,0.347,0.48,125.028,4.0,,Geffen,"C © 2021 UMG Recordings, Inc., P ℗ 2021 UMG Recordings, Inc.",6981 +6982,spotify:track:3hqsBLMAqJqrhr434Z7WlA,"Puff, the Magic Dragon",spotify:artist:6yrBBtqX2gKCHCrZOYBDrB,"Peter\, Paul and Mary",spotify:album:0sf5wpC6tGzU0IMD0EQUNO,Moving,spotify:artist:6yrBBtqX2gKCHCrZOYBDrB,"Peter\, Paul and Mary",1963,https://i.scdn.co/image/ab67616d0000b2730a004bbbd9d037cdee5c9b5d,1,5,206866,https://p.scdn.co/mp3-preview/a8c5cb3bf581bab312ef261d2ddb0f74d6796078?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USWB19901501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"american folk revival,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.507,0.088,9.0,-23.309,1.0,0.0343,0.51,0.0,0.0984,0.398,144.226,4.0,,Warner Records,"C © 1962 Warner Records Inc., P ℗ 1962 Warner Records Inc.",6982 +6983,spotify:track:6gpi2XrYL2CGOZKkdTB7vu,Stimulation,spotify:artist:5h3WBrCy3VcEj0IGf347dz,Wa Wa Nee,spotify:album:4oA6B7kcWN3xfmhDIPPKjP,Wa Wa Nee,spotify:artist:5h3WBrCy3VcEj0IGf347dz,Wa Wa Nee,1986,https://i.scdn.co/image/ab67616d0000b273013af8e32b471ae77b4a9b0d,1,3,235760,https://p.scdn.co/mp3-preview/31a060e59e29ec48d1eb5400a28f770f172f4a8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUSM00300097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.733,0.731,0.0,-12.495,1.0,0.0376,0.169,0.00103,0.0419,0.982,123.515,4.0,,Sony Music Entertainment,P (P) 1986 Sony Music Entertainment Australia Pty Ltd,6983 +6984,spotify:track:5ooXVyB1FAmkr0DM6h5HWC,Ladies Night - Single Version,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,spotify:album:37OP8TgouMr9ejpZgHuKeQ,Gold,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,2005-01-01,https://i.scdn.co/image/ab67616d0000b273ee0d28a4e8f912be6be5ec79,2,1,207533,https://p.scdn.co/mp3-preview/ccb3ff38dea6caf98071cbf8aabaecd434db909b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR37900051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,soft rock,soul",0.675,0.753,11.0,-7.564,1.0,0.167,0.221,2.51e-05,0.0495,0.898,111.79,4.0,,Universal Strategic Marketing,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",6984 +6985,spotify:track:4VNu1KwwmGgHjImpQotEsn,Straight Back Down,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:61G7KL6rpj167r6H4CzS8C,A Place We Knew,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2019-03-22,https://i.scdn.co/image/ab67616d0000b273a787f718fb485b66d6219247,1,8,205346,https://p.scdn.co/mp3-preview/c7d85221edb72f8ababab8d7b76e9e942e121b99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUUM71800261,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop",0.671,0.628,5.0,-7.114,1.0,0.0419,0.294,0.0,0.062,0.466,114.887,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Universal Music Australia Pty Ltd., P ℗ 2019 Universal Music Australia Pty Ltd.",6985 +6986,spotify:track:4ZSSYEQTn4fWlXzLXgWadE,Where Do Broken Hearts Go,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:2No9DisAfser7YCYQcYpj3,I Will Always Love You: The Best Of Whitney Houston,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,2012-11-12,https://i.scdn.co/image/ab67616d0000b273bddfe60a1ae03aeb8f7460c9,1,8,276680,https://p.scdn.co/mp3-preview/d1399fd8a3d05599d5e74f5b4e5dd76f58a75542?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR18700112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.557,0.389,2.0,-12.172,1.0,0.0288,0.6,0.0,0.0761,0.276,123.779,4.0,,Arista Records/RCA Records,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",6986 +6987,spotify:track:0sUyqewVzwv0e5tK3hS6vJ,Don't Be so Hard on Yourself,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,spotify:album:2xVeccmEU0zklK4XSKiDCW,I Cry When I Laugh,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,2015,https://i.scdn.co/image/ab67616d0000b27339588f221861ee72b40b755c,1,5,211460,https://p.scdn.co/mp3-preview/0321e65bcab1943adb6f10f79fa92973125fc1cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAHS1500227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.572,0.815,6.0,-3.267,1.0,0.0321,0.0608,0.0,0.163,0.664,120.009,4.0,,Atlantic Records UK,"C © 2015 Atlantic Records UK Ltd, a Warner Music Group Company, P ℗ 2015 Atlantic Records UK Ltd, a Warner Music Group Company, except track 9 2013 Atlantic Records UK Ltd and track 13 2015 Disturbing London Records Limited under exclusive licence to Parlophone Records Limited",6987 +6988,spotify:track:1wymQB1S3R9wN4GLYVhTbb,The Star,spotify:artist:50kst4ZUtmXqRkj3XeFbi0,Ross D. Wylie,spotify:album:69oF3bETYh27lm59XdHmJz,60 Hits Of The '60s (Plus 20 Great Covers Of Other 60s Hits!),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-04,https://i.scdn.co/image/ab67616d0000b27394cf3e06a3a17a4bfa0d61fb,1,2,211826,https://p.scdn.co/mp3-preview/f5489feee8575ba9dbff279ac591cd803e5f4ee2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUFEO6900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.279,0.316,2.0,-9.706,1.0,0.0268,0.622,0.00469,0.181,0.294,86.067,4.0,,WM Australia,"C © 2016 Warner Music Australia Pty Ltd, P ℗ 2016 Warner Music Australia Pty Ltd",6988 +6989,spotify:track:7kzii7rGsLzjZZr0yWFAJp,Logic,spotify:artist:3KshwzAIDBZRPr5Xc7S79C,Operator Please,spotify:album:5Puvnt7lAt5ehbfZAN5haL,Gloves,spotify:artist:3KshwzAIDBZRPr5Xc7S79C,Operator Please,2010-01-01,https://i.scdn.co/image/ab67616d0000b273b482b318cfff6e09a7fd3e44,1,3,208600,https://p.scdn.co/mp3-preview/95573f8fa0ca3c8007e732cbfb16ffe59abd7890?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBKYF0900065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.769,0.887,7.0,-4.361,1.0,0.0532,0.00537,4.48e-05,0.0668,0.885,117.484,4.0,,Virgin Records,"C © 2010 Operator Please, P ℗ 2010 Operator Please",6989 +6990,spotify:track:0zzVTGyRrWpQu8Fr28NRAv,OK Not To Be OK,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Marshmello, Demi Lovato",spotify:album:3wCtCJ8O6SlGBWYfzAlsb2,OK Not To Be OK,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Marshmello, Demi Lovato",2020-09-10,https://i.scdn.co/image/ab67616d0000b27353d09a982d1c5c0cd58b1b88,1,1,159862,https://p.scdn.co/mp3-preview/386b414b98870723fae833a846d6556920b66340?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USUG12002422,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,edm,pop,progressive electro house,pop,post-teen pop",0.743,0.837,1.0,-5.025,0.0,0.0649,0.0172,0.0,0.0743,0.263,103.072,4.0,,Joytime Collective,"C © 2020 Joytime Collective, under exclusive license to UMG Recordings, Inc., P ℗ 2020 Joytime Collective, under exclusive license to UMG Recordings, Inc.",6990 +6991,spotify:track:61G2UTjb89PhHGgUssVHHz,Mo Money Mo Problems,"spotify:artist:5me0Irg2ANcsgc93uaYrpb, spotify:artist:1wiBLzTI7z9RUwEpNPdFT6, spotify:artist:59wfkuBoNyhDMQGCljbUbA","The Notorious B.I.G., Mase, Diddy",spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,23,253000,https://p.scdn.co/mp3-preview/4a998f56e8a5a0093d4f29e2d5260ac2a8fee08a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBV20580001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hardcore hip hop,hip hop,rap,contemporary r&b,gangster rap,hardcore hip hop,harlem hip hop,hip hop,hip pop,r&b,southern hip hop,urban contemporary,dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap",0.778,0.808,6.0,-8.27,0.0,0.085,0.0353,0.0,0.276,0.853,104.496,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",6991 +6992,spotify:track:0E19RAvUkhjMM0rdICkidE,Save Your Kisses For Me,spotify:artist:4Cyr5aqgXza16isOrQNOvo,Brotherhood of Man,spotify:album:4wK8iyE5Ag0Q2pMCniNJug,Pop Masters: Angelo,spotify:artist:4Cyr5aqgXza16isOrQNOvo,Brotherhood of Man,2005-11-17,https://i.scdn.co/image/ab67616d0000b273b0f84353971e235d27ac5aef,1,2,184733,https://p.scdn.co/mp3-preview/f633c2f92debc781d33368143998ceebc3bc56c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USBKY0507638,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic uk pop",0.544,0.556,7.0,-11.006,1.0,0.0887,0.303,0.0,0.107,0.835,184.809,4.0,,Carinco AG,C 2005 Carinco AG,6992 +6993,spotify:track:67Hna13dNDkZvBpTXRIaOJ,Teardrop,"spotify:artist:6FXMGgJwohJLUSr5nVlf9X, spotify:artist:791Z3924aa619hZ3xsOJEx","Massive Attack, Elizabeth Fraser",spotify:album:49MNmJhZQewjt06rpwp6QR,Mezzanine,spotify:artist:6FXMGgJwohJLUSr5nVlf9X,Massive Attack,1998-01-01,https://i.scdn.co/image/ab67616d0000b2732fcb0a3c7a66e516b11cd26e,1,3,330773,https://p.scdn.co/mp3-preview/fec389a4c07165e2ea0598c11e806e21f2299e66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBAAA9800322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"downtempo,electronica,trip hop,ethereal wave,scottish indie",0.615,0.419,11.0,-8.8,0.0,0.0395,0.0173,0.497,0.135,0.216,76.997,4.0,,Circa,"C © 1998 Virgin Records Limited, P ℗ 1998 Virgin Records Limited",6993 +6994,spotify:track:1vCBk33l9HaWp5FOnhSGxk,I Feel Love,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,spotify:album:04nlrp346ZfIBhxsNOxpqe,I Remember Yesterday,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,1977-05-13,https://i.scdn.co/image/ab67616d0000b273dfda0715a34f49501dfc97a0,1,8,355173,https://p.scdn.co/mp3-preview/c51861e40651d6139329e2d9fb92896a9462764e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USPR39402393,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg,new wave pop,soft rock",0.674,0.711,0.0,-15.581,1.0,0.0423,0.031,0.691,0.0925,0.961,126.696,4.0,,Island Mercury,"C © 1977 The Island Def Jam Music Group, P ℗ 1977 The Island Def Jam Music Group",6994 +6995,spotify:track:6b2RcmUt1g9N9mQ3CbjX2Y,How Do You Sleep?,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:7baaCf70tVcUBL2bbkuXjo,How Do You Sleep?,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2019-07-19,https://i.scdn.co/image/ab67616d0000b27376bc1c851462191faec76bf8,1,1,202204,https://p.scdn.co/mp3-preview/6ba0436d37bab98997f4a5973e4046ccfd317d68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBUM71902381,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.561,0.682,1.0,-4.931,0.0,0.0856,0.153,0.0,0.0763,0.359,165.944,4.0,,PLG - Capitol,"C © 2019 Universal Music Operations Limited, P ℗ 2019 Universal Music Operations Limited",6995 +6996,spotify:track:3tsolpCMbTb6fJZEWcaVaj,Sucker DJ (I Will Survive),spotify:artist:0Nrb3fWvzVUUzfYiwyJFXD,Dimples D.,spotify:album:0B4gaSpND6QLt8uPnoeG8m,Classic Hip Hop Jams,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-07-23,https://i.scdn.co/image/ab67616d0000b2731ef9c9a474c89d29fb2a6741,1,14,305586,,False,0,USWR31300014,spotify:user:bradnumber1,2020-03-05T09:20:39Z,old school hip hop,0.817,0.863,1.0,-6.575,1.0,0.0649,0.0076,0.00117,0.0716,0.583,107.988,4.0,,Warlock Records,"C (C) 2013 Phase One Music, P (P) 2013 Phase One Music",6996 +6997,spotify:track:54LGxQGf5LPXNGjtzDZ5IE,So Good (feat. Ty Dolla $ign),"spotify:artist:1Xylc3o4UrD53lo9CvFvVg, spotify:artist:7c0XG5cIJTrrAgEC3ULPiq","Zara Larsson, Ty Dolla $ign",spotify:album:5YLRVHDVRw3QqWbeTGpC5B,So Good,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,2017-03-17,https://i.scdn.co/image/ab67616d0000b2739e1683774b22648f4f178ed3,1,4,166706,https://p.scdn.co/mp3-preview/00a84b2f5785d9999333c6af72f83a5a4276b623?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM11700075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,scandipop,swedish electropop,swedish pop,hip hop,pop rap,r&b,southern hip hop,trap,trap soul",0.726,0.576,0.0,-7.341,1.0,0.146,0.085,0.0,0.0458,0.783,82.051,4.0,,Epic/Record Company TEN,"P (P) 2017 Record Company TEN, exclusively licensed by Epic Records, a division of Sony Music Entertainment",6997 +6998,spotify:track:76qB2ZEZlEJAMqMqUjKusp,(Everything I Do) I Do It For You,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:0RhmLffWf3oRr6ahOS6G47,Waking Up The Neighbours,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1991-09-24,https://i.scdn.co/image/ab67616d0000b2731fa6be87c366dd28b11206ab,1,12,393640,https://p.scdn.co/mp3-preview/fd642b7873c9cd1367f7d77bfb78a05c3abf1fca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19190012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.52,0.363,1.0,-12.655,1.0,0.0286,0.0752,1.13e-05,0.0609,0.273,131.224,4.0,,Universal Music Group,"C © 1991 UMG Recordings, Inc., P ℗ 1991 UMG Recordings, Inc.",6998 +6999,spotify:track:129RzsaxFpNoswR2qScwtU,Your Love Still Brings Me To My Knees,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,spotify:album:6SbM3x7whjFoANZUGcf5EP,Take It From The Boys,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,1981-09-19,https://i.scdn.co/image/ab67616d0000b273cd725097e5ee5ef38f62c256,1,1,212773,https://p.scdn.co/mp3-preview/3ca4171a7a21b884eccd58ed30c9f6a0549c4959?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,NLML68100015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.764,0.782,2.0,-7.036,1.0,0.117,0.182,0.0,0.112,0.851,120.344,4.0,,Altra Moda Music,"C 1981 Altra Moda Music under exclusive license from Midnight Records, P 1981 Altra Moda Music under exclusive license from Midnight Records",6999 +7000,spotify:track:3XyMPyuWwHcGMvXeJY6Qt0,Girl On Fire (feat. Nicki Minaj) - Inferno Version,"spotify:artist:3DiDSECUqqY1AuBP8qtaIa, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","Alicia Keys, Nicki Minaj",spotify:album:3qqhNVbjLFNdLviBFrFwCa,Girl On Fire,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2012-11-26,https://i.scdn.co/image/ab67616d0000b2739f76cf235d4b3c3403cbbf5b,1,6,270720,https://p.scdn.co/mp3-preview/3e60ef78ebae77743dd68bec65a53ae175a60221?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRC11200924,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b,hip pop,pop,queens hip hop,rap",0.591,0.808,9.0,-5.943,1.0,0.288,0.0869,0.00396,0.147,0.337,92.864,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",7000 +7001,spotify:track:1xg1yGPy1Y3YUf44s6TB1o,"I'm Not a Girl, Not Yet a Woman",spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:5ax3GTsfX5uCUaNgnJsSG5,Britney (Digital Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2001-10-31,https://i.scdn.co/image/ab67616d0000b273e1a4e01cb7a1ecff468bbead,1,4,231066,https://p.scdn.co/mp3-preview/3105687eccadf25ea605d18d1a3cc48ff1dc7b40?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USJI10100424,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.534,0.543,3.0,-6.857,1.0,0.0245,0.579,0.0,0.112,0.418,78.996,4.0,,Jive,P (P) 2001 Zomba Recording LLC,7001 +7002,spotify:track:1vnnXMrBeEWiRg3YCMCjQq,Despacito - Remix,"spotify:artist:4V8Sr092TqfHkfAA5fXXqG, spotify:artist:4VMYDCV2IEDYJArk749S6m, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Luis Fonsi, Daddy Yankee, Justin Bieber",spotify:album:5C0YLr4OoRGFDaqdMQmkeH,VIDA,spotify:artist:4V8Sr092TqfHkfAA5fXXqG,Luis Fonsi,2019-02-01,https://i.scdn.co/image/ab67616d0000b273ef0d4234e1a645740f77d59c,1,13,230413,https://p.scdn.co/mp3-preview/e70482c7ad6c9806d90781418c5e578878d41b0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USUM71703825,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,puerto rican pop,latin hip hop,reggaeton,trap latino,urbano latino,canadian pop,pop",0.649,0.798,2.0,-4.346,1.0,0.178,0.226,0.0,0.0711,0.857,177.899,4.0,,UMLE - Latino,"C © 2019 UMG Recordings, Inc., P ℗ 2019 UMG Recordings, Inc.",7002 +7003,spotify:track:5C4NMi4fPpdFPnMZVsyG8H,Something New,"spotify:artist:2XnBwblw31dfGnspMIwgWz, spotify:artist:1xNmvlEiICkRlRGqlNFZ43, spotify:artist:6hyMWrxGBsOx6sWcVj1DqP","Axwell /\ Ingrosso, Axwell, Sebastian Ingrosso",spotify:album:6Ei5WWek37m1x9AjpSXTcJ,More Than You Know,"spotify:artist:2XnBwblw31dfGnspMIwgWz, spotify:artist:1xNmvlEiICkRlRGqlNFZ43, spotify:artist:6hyMWrxGBsOx6sWcVj1DqP","Axwell /\ Ingrosso, Axwell, Sebastian Ingrosso",2017-07-28,https://i.scdn.co/image/ab67616d0000b273fba6de0b38b0168d480b1a27,1,4,247146,https://p.scdn.co/mp3-preview/36fb7a7eb56bcc26907c54da8463a98db2857499?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USUG11401855,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,progressive electro house,dutch house,edm,electro house,pop dance,progressive electro house,progressive house,dutch house,edm,electro house,pop dance,progressive electro house,progressive house",0.577,0.851,11.0,-3.975,1.0,0.0339,0.0197,0.000462,0.118,0.396,129.952,4.0,,EMI,"C © 2017 Axwell Music AB and Refune Music Ltd, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd, P This Compilation ℗ 2017 Axwell Music AB and Refune Music Ltd, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd",7003 +7004,spotify:track:7lPN2DXiMsVn7XUKtOW1CS,drivers license,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,spotify:album:66FPnVL9G4CMKy3wvaGTcr,drivers license,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,2021-01-08,https://i.scdn.co/image/ab67616d0000b2738ffc294c1c4362e8472d14cd,1,1,242013,https://p.scdn.co/mp3-preview/8265999e85ac5e27aad154a8fdbdd502059e1d00?cid=9950ac751e34487dbbe027c4fd7f8e99,True,19,USUG12004749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.585,0.436,10.0,-8.761,1.0,0.0601,0.721,1.31e-05,0.105,0.132,143.874,4.0,,Olivia Rodrigo PS,"C © 2021 Olivia Rodrigo, under exclusive license to Geffen Records, P ℗ 2021 Olivia Rodrigo, under exclusive license to Geffen Records",7004 +7005,spotify:track:1SgdUjvppHnIp6L7DZSnwc,She Wolf (Falling to Pieces) [feat. Sia],"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","David Guetta, Sia",spotify:album:4bTjdxhRRUiWfwj200f9Kl,Nothing but the Beat (Ultimate Edition),spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2012-12-07,https://i.scdn.co/image/ab67616d0000b2735c8cfe4b2c4aa89c9c92108e,1,3,222500,https://p.scdn.co/mp3-preview/492e00e00774ad5e5379040d92eb61e9efd25ada?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GB28K1200043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,pop",0.492,0.857,7.0,-2.634,1.0,0.0655,0.0841,7.82e-06,0.344,0.393,129.973,4.0,,Parlophone (France),"C © 2012 What A Music Ltd., licence exclusive Parlophone Music France, P ℗ 2012 What A Music Ltd., licence exclusive Parlophone Music France",7005 +7006,spotify:track:4AOpEhqA7zHxQjkHmRrAp7,This Girl - Kungs Vs. Cookin' On 3 Burners,"spotify:artist:7keGfmQR4X5w0two1xKZ7d, spotify:artist:726MxZBpkxnnoKl6aN7mmj","Kungs, Cookin' On 3 Burners",spotify:album:2c8vURxg70zOZTxyQFSCOS,This Girl (Kungs Vs. Cookin' On 3 Burners),"spotify:artist:7keGfmQR4X5w0two1xKZ7d, spotify:artist:726MxZBpkxnnoKl6aN7mmj","Kungs, Cookin' On 3 Burners",2016-02-19,https://i.scdn.co/image/ab67616d0000b2735bfca9451a540d18091e21cc,1,1,195561,https://p.scdn.co/mp3-preview/32a9ff870d3eef0d57d62c6df25d3aab50d149b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR9W11601798,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,uk dance,bboy,instrumental funk",0.79,0.705,0.0,-4.684,0.0,0.0383,0.0807,4.81e-05,0.251,0.501,121.969,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Kungs Music, under exclusive license to SOUND OF BARCLAY, un label Universal Music France, P ℗ 2016 Kungs Music, under exclusive license to SOUND OF BARCLAY, un label Universal Music France",7006 +7007,spotify:track:6HXefH0dZckXnlxR6IsOCp,Part 3 Into Paper Walls,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,spotify:album:6gtesHG15KmNH5rvdeRIJo,The Very Best Of Russell Morris,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d6067f86a6560ec7ddd00965,1,3,422213,https://p.scdn.co/mp3-preview/27f92af2b40d4a6527163463f901d4d2bbf3f44b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUEM06900012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.243,0.73,2.0,-6.492,1.0,0.0447,0.299,0.00117,0.0963,0.432,93.883,4.0,,EMI,"C © 2013 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2013 EMI Recorded Music Australia Pty Ltd.",7007 +7008,spotify:track:7DUHgTXBpKRHwBBFxUtBkx,It's Like That,"spotify:artist:3CQIn7N5CuRDP8wEI7FiDA, spotify:artist:5w0ka9nPOmEH6CcZrutyP2","Run–D.M.C., Jason Nevins",spotify:album:4IHAhN5dIgb1XGawV9QXsQ,Best Of,spotify:artist:3CQIn7N5CuRDP8wEI7FiDA,Run–D.M.C.,2007-05-05,https://i.scdn.co/image/ab67616d0000b273fb67c8a3d9da72116336adc3,1,4,249786,https://p.scdn.co/mp3-preview/848630ad5ddd55b4c5fdfae179dc62f7609eb3da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USAR19700609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,golden age hip hop,hip hop,old school hip hop,queens hip hop,rap",0.851,0.973,1.0,-3.116,1.0,0.0468,0.0134,0.271,0.288,0.629,129.069,4.0,,SONY BMG Catalog,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT (UK) Limited,7008 +7009,spotify:track:6g4Oyy8IwraOjPl7nqnROq,Soldier Boy,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,spotify:album:5x4f3Q9N93as7xLCxIMkDK,20 Greatest Hits,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,2009-03-07,https://i.scdn.co/image/ab67616d0000b273233156fb639c7b16645574f6,1,6,162013,https://p.scdn.co/mp3-preview/f7ecd20090cee97dca2404b59a2d1c7641c3e475?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,doo-wop,motown,rock-and-roll,soul",0.569,0.198,10.0,-15.481,1.0,0.0265,0.754,0.0002,0.331,0.622,97.595,4.0,,Scepter Records,"C 2005 Gusto Records, Inc., P 2005 Gusto Records, Inc.",7009 +7010,spotify:track:2jc4wyf3ys0zKCpxHRjEYx,Travelin' Man - Remastered,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,spotify:album:607RtLzi6P55QVhosSAGwQ,The Best Of Rick Nelson (Vol. 2),spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,1991-01-01,https://i.scdn.co/image/ab67616d0000b2735993dbbc953b655bb3544f4d,1,2,142933,https://p.scdn.co/mp3-preview/ff4e3e126568f369b2b16b728ce524ac72ddd05a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USEM39100191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,doo-wop,rock-and-roll,rockabilly",0.741,0.363,2.0,-12.484,1.0,0.0335,0.669,0.0,0.117,0.859,123.263,4.0,,EMI/EMI Records (USA),"C © 1991 Capitol Records, LLC, P ℗ 1991 Capitol Records, LLC",7010 +7011,spotify:track:5ZyXUaBaeZYAZqHxKX8cKL,Have A Nice Day,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:3wNCxFmpRRaAQBUZij4fHM,Have A Nice Day,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2005-09-20,https://i.scdn.co/image/ab67616d0000b273ff08b144a1282dde6801ddae,1,1,229106,https://p.scdn.co/mp3-preview/3bb93be8ebd48d3064183fbc2c42f07b6a5dec92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70502481,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.5,0.899,4.0,-4.066,1.0,0.0736,4.84e-05,0.000198,0.0794,0.566,130.06,4.0,,Universal Music Group,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",7011 +7012,spotify:track:5yqVF4y7dq6AgnNCHnHZEA,California Blue,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:1UPcuqLY9PC99fQAqWgrSU,Mystery Girl,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,1989,https://i.scdn.co/image/ab67616d0000b273ef89c52c42eaf1f89347a16c,1,5,235906,https://p.scdn.co/mp3-preview/f144b4cb35280a45c0a8ed492a0707cb9dfa437c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USLIC0701003,spotify:user:bradnumber1,2022-09-20T00:14:46Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.651,0.596,2.0,-12.561,1.0,0.0271,0.67,1.27e-05,0.376,0.695,105.679,4.0,,Orbison Records/Legacy,P (P) 1989 Roy's Boys LLC,7012 +7013,spotify:track:5Pr9lNbQIshKXAmrN903Jb,Back Street Pick Up,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:7IyGOTlimniMEESAFeEonC,Beyond Salvation,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,1990-07-17,https://i.scdn.co/image/ab67616d0000b27340feafcb81c089ccf648a60c,1,2,262640,https://p.scdn.co/mp3-preview/b8550d5db8814662c8d5b9b67b91693452b7adbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00619840,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.728,0.837,11.0,-11.536,0.0,0.0296,0.0941,5.34e-05,0.111,0.853,122.448,4.0,,Bloodlines,"C 1990 Bloodlines, P 1990 Bloodlines",7013 +7014,spotify:track:0TaT50ZZxT4ytZxuqkE3A9,Why Can't This Be Love,spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,spotify:album:5Ew5vOg3PYyT9QUPCrdIZq,5150,spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,1986-03-24,https://i.scdn.co/image/ab67616d0000b27381e66f0aa00989cbe6030d57,1,2,227693,https://p.scdn.co/mp3-preview/34a3c62e16816ffd3278fdd5d3a38cbcb48c0fab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USWB10902261,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.531,0.626,0.0,-13.371,1.0,0.0452,0.0606,0.0,0.0767,0.746,88.236,4.0,,Warner Records,"C © 1986 Warner Records Inc., P ℗ 1986 Warner Records Inc. Warner Strategic Marketing Company, Warner Music Group.",7014 +7015,spotify:track:71i3wlanzjflfYz0gkT2W8,Falling Up,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:3Atxu3OmHIpYYDxZu0Vsud,Falling Up,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2021-03-05,https://i.scdn.co/image/ab67616d0000b273c308e00943d0391e877a9f98,1,1,206947,https://p.scdn.co/mp3-preview/3feab525cfd68e5cafbccbc0e1995a6fa177d96a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,AUUM72001007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop",0.654,0.756,2.0,-3.594,1.0,0.0534,0.648,0.0,0.0995,0.475,103.551,4.0,,Universal Music Australia Pty. Ltd.,"C © 2021 Universal Music Australia Pty Ltd., P ℗ 2021 Universal Music Australia Pty Ltd.",7015 +7016,spotify:track:5dWh5OORz9YQJVSgYAjxMl,I Love You More and More Every Day - Remastered,spotify:artist:7egNqIGRldMzifHoh8pib6,Al Martino,spotify:album:7pgcJ7XAmi0a41S0l7LKdL,Crooner (Remastered),spotify:artist:7egNqIGRldMzifHoh8pib6,Al Martino,2018-09-28,https://i.scdn.co/image/ab67616d0000b273271efe0894fa361232402bc5,1,6,135709,,False,0,DEVU51872987,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.359,0.275,8.0,-10.764,1.0,0.0317,0.766,0.0,0.319,0.423,103.249,4.0,,Universal Digital Enterprises,"C 2018 Universal Digital Enterprises, P 2018 Universal Digital Enterprises",7016 +7017,spotify:track:5wjmqUGN7vrAqFqDWrywlZ,Midnight Memories,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:7p1fX8aUySrBdx4WSYspOu,Midnight Memories (Deluxe),spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2013-11-25,https://i.scdn.co/image/ab67616d0000b2732f76b797c382bedcafdf45e1,1,4,176320,https://p.scdn.co/mp3-preview/572b77fbbe17497a720655819bfae0c2f6e17106?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBHMU1300212,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.432,0.868,6.0,-2.01,0.0,0.0882,0.00725,0.0,0.233,0.567,156.128,4.0,,Syco Music,P (P) 2013 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,7017 +7018,spotify:track:5hovMibWoLF2nfgqLWUFys,The Reason,spotify:artist:2MqhkhX4npxDZ62ObR5ELO,Hoobastank,spotify:album:2Bb4DoRXCqNBV3168xFmKG,Songs About Love (UMGI Version),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b27367745d7019a2350f5e9f3c7f,1,19,233053,https://p.scdn.co/mp3-preview/31e2a53851fac8e61f947fd27da327c0493721dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20300704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,pop rock,post-grunge",0.472,0.53,4.0,-9.482,1.0,0.0289,0.012,0.0,0.132,0.0687,83.005,4.0,,Universal Music Group,"C © 2010 Universal International Music B.V., P ℗ 2010 Universal International Music B.V.",7018 +7019,spotify:track:1tlrAb0CNqn2e8EMb4MWLW,Time (Clock Of The Heart) - Remastered 2003,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,spotify:album:1x5yxAvStMBrG5vxdKMdhY,Culture Club (Deluxe Edition),spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,2002-01-01,https://i.scdn.co/image/ab67616d0000b27348f86830defbeb6dac263bfd,1,14,224493,https://p.scdn.co/mp3-preview/f392e40b1de94668ccdc2a238d148f5462408967?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAAA0201009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock,synthpop",0.716,0.773,0.0,-6.329,0.0,0.0369,0.471,0.0,0.0493,0.916,117.057,4.0,,EMI Marketing,"C © 2002 Virgin Records Limited, P This Compilation ℗ 2002 Virgin Records Limited",7019 +7020,spotify:track:66CFbqJScx6zRieGllITcs,See You Again (feat. Charlie Puth),"spotify:artist:137W8MRPWKqSmrBGDBFSop, spotify:artist:6VuMaDnrHyPL1p4EHjYLi7","Wiz Khalifa, Charlie Puth",spotify:album:5Nwsra93UQYJ6xxcjcE10x,Nine Track Mind,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2016-01-29,https://i.scdn.co/image/ab67616d0000b273633a2d775747bccfbcb17a45,1,13,229525,https://p.scdn.co/mp3-preview/69c2ac6f1501e5c8bc6970273da5d06fb97a2e76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT21503426,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap,pop,viral pop",0.689,0.481,10.0,-7.503,1.0,0.0815,0.369,1.03e-06,0.0649,0.283,80.025,4.0,,Artist Partner,"C © 2016 Artist Partners for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P ℗ 2016 Artist Partners for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",7020 +7021,spotify:track:5mvKuE9Lf9ARVXVXA32kK9,Price Tag,"spotify:artist:2gsggkzM5R49q6jpPvazou, spotify:artist:5ndkK3dpZLKtBklKjxNQwT","Jessie J, B.o.B",spotify:album:3ga4adzUpLaS2LDcoqfs2r,Who You Are (Platinum Edition),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2011-01-01,https://i.scdn.co/image/ab67616d0000b2739900b995cd1a81c35c574ab0,1,1,223053,https://p.scdn.co/mp3-preview/71b3faabe9cf3b0d5613ba1dd110cbbbfde88e03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USUM71029357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,atl hip hop,dance pop,pop rap,rap,southern hip hop",0.637,0.832,5.0,-3.945,1.0,0.183,0.0282,3.47e-06,0.277,0.68,175.011,4.0,,Lava Music/Republic Records,"C © 2011 Universal Republic Records, P ℗ 2011 Universal Republic Records",7021 +7022,spotify:track:07bsRv0pcpbG4zJeLsUs1p,Eyes Closed,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:43qfLpwe6sEOEqxVmOHRu0,Eyes Closed,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2023-03-24,https://i.scdn.co/image/ab67616d0000b273340478dfce149f58e2327334,1,1,194848,https://p.scdn.co/mp3-preview/7cd2576f2d27799fe8c515c4e0fc880870a5cc88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,GBAHS2201304,spotify:user:bradnumber1,2023-07-05T22:56:28Z,"pop,singer-songwriter pop,uk pop",0.777,0.526,2.0,-6.221,1.0,0.0645,0.302,0.0,0.105,0.389,107.071,4.0,,Atlantic Records UK,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2023 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2023 Warner Music UK Limited",7022 +7023,spotify:track:2N5Z5iUkZlSI0d5h1OdnJH,How To Be Lonely,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:7ikzvRMifv6m22ualFy9b6,How To Be Lonely,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2020-03-13,https://i.scdn.co/image/ab67616d0000b27325fa2578628eb2a837594a16,1,1,175213,https://p.scdn.co/mp3-preview/dabde6222e937080eca453c1d8ddef7d9e4cacce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBAHS2000128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.551,0.711,7.0,-3.129,1.0,0.0525,0.0293,0.0,0.195,0.513,81.965,4.0,,Atlantic Records UK,"C © 2020 An Atlantic Records UK release. 2020 (p) and © Warner Music UK Limited., P ℗ 2020 An Atlantic Records UK release. 2020 (p) and © Warner Music UK Limited.",7023 +7024,spotify:track:7sBXn81KPG6oUnlYobdUU3,Beating Heart,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:2Dw4fYqDQnxsgoXDdMbqh3,Halcyon Days,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2014-01-01,https://i.scdn.co/image/ab67616d0000b27360a98c3be4daffefe9014c7e,1,13,212125,https://p.scdn.co/mp3-preview/6be6ed2e7a940b2e105a29b1f6f4b1cda54ecfc7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBUM71400516,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.56,0.747,2.0,-5.998,0.0,0.0689,0.189,3.37e-06,0.109,0.242,127.941,4.0,,Polydor Records,"C © 2014 Polydor Ltd. (UK), P ℗ 2014 Polydor Ltd. (UK)",7024 +7025,spotify:track:16wsaPpSfcvo9ysLD8BZ4o,Let The Four Winds Blow - Remastered 2002,spotify:artist:09C0xjtosNAIXP36wTnWxd,Fats Domino,spotify:album:0SFClXD5CAnZ6vzrcTzXgQ,Greatest Hits: Walking To New Orleans,spotify:artist:09C0xjtosNAIXP36wTnWxd,Fats Domino,2007-01-01,https://i.scdn.co/image/ab67616d0000b2737313f9fa26988b263f725287,1,30,140106,https://p.scdn.co/mp3-preview/c2a5aae97686e6509cdded64ff53fba36319eaa0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USEM30100744,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"louisiana blues,new orleans blues,piano blues,rock-and-roll,rockabilly",0.638,0.451,10.0,-11.438,1.0,0.0501,0.555,0.0165,0.119,0.963,90.193,4.0,,Capitol Records,"C © 2007 Capitol Records Inc., P This Compilation ℗ 2007 Capitol Records Inc.",7025 +7026,spotify:track:601a0vnyLYe7pzLKVjKSha,How Do You Do It? - Mono,spotify:artist:3UmBeGyNwr4iDWi1vTxWi8,Gerry & The Pacemakers,spotify:album:00tUXbwwa6LigkT63sGXSR,At Abbey Road,spotify:artist:3UmBeGyNwr4iDWi1vTxWi8,Gerry & The Pacemakers,1997-10-13,https://i.scdn.co/image/ab67616d0000b273651dfffbad9e0d7948a94010,1,1,114986,https://p.scdn.co/mp3-preview/ad1a8c7badb0d08f37b23c7dbd19827b56dc3681?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAYE6300008,spotify:user:bradnumber1,2022-06-29T07:09:11Z,"british invasion,merseybeat,rock-and-roll",0.617,0.711,9.0,-6.433,1.0,0.0297,0.36,1.59e-06,0.0841,0.963,142.266,4.0,,Parlophone UK,"C © 1997 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1997 Parlophone Records Ltd, a Warner Music Group Company",7026 +7027,spotify:track:7jXQUrVhEpXdymfFWNDnQW,BED,"spotify:artist:6DgP9otnZw5z6daOntINxp, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Joel Corry, RAYE, David Guetta",spotify:album:2GgDZ0wSOWSD4916BWzbNX,BED,"spotify:artist:6DgP9otnZw5z6daOntINxp, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Joel Corry, RAYE, David Guetta",2021-02-26,https://i.scdn.co/image/ab67616d0000b273420815e00e8dc4732b4fe233,1,1,178088,https://p.scdn.co/mp3-preview/076a0649171aca30d9ef516bc1333901789fb25b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,UK4ZF2100069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop dance,uk dance,uk contemporary r&b,uk pop,big room,dance pop,edm,pop,pop dance",0.663,0.783,6.0,-4.585,1.0,0.0393,0.0134,0.00179,0.325,0.622,123.986,4.0,,Universal Music Australia Pty. Ltd.,"C © 2021 Perfect Havoc Limited, Under Exclusive License to Neon Records, P ℗ 2021 Perfect Havoc Limited, Under Exclusive License to Neon Records",7027 +7028,spotify:track:5IMtdHjJ1OtkxbGe4zfUxQ,Escape (The Pina Colada Song),spotify:artist:0TqIPD4IS1w4e30R38B3vj,Rupert Holmes,spotify:album:163iYwl7Kdm9ayTnD4VyfN,Partners In Crime,spotify:artist:0TqIPD4IS1w4e30R38B3vj,Rupert Holmes,1979-01-01,https://i.scdn.co/image/ab67616d0000b273af7afb5c49afd3133fa2a6c9,1,1,276493,https://p.scdn.co/mp3-preview/401f9287bb59b5b87fb49025e3f9d3c5c73f3713?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USMC17948997,spotify:user:bradnumber1,2021-08-08T09:26:31Z,yacht rock,0.835,0.509,0.0,-13.668,1.0,0.0548,0.469,4.11e-06,0.0436,0.949,138.711,4.0,,Geffen*,"C © 1979 Geffen Records, P ℗ 1979 Geffen Records",7028 +7029,spotify:track:4rKHs4JtVYxsYen2eHIW6b,Hurts So Good,spotify:artist:3AVfmawzu83sp94QW7CEGm,Astrid S,spotify:album:5kzIHziQ5eAtjIR8zFsCsz,Hurts So Good,spotify:artist:3AVfmawzu83sp94QW7CEGm,Astrid S,2016-05-06,https://i.scdn.co/image/ab67616d0000b273095fb78018f9d42bfd97aaea,1,1,208728,https://p.scdn.co/mp3-preview/4a22f88fd5338f7b6efa56453b8c9c69cd74d94e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NOUM71600848,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,norwegian pop,pop,uk pop",0.672,0.589,7.0,-5.008,0.0,0.049,0.082,0.0,0.0962,0.379,120.036,4.0,,Universal Music Group,"C (C) 2016 Universal Music A/S, P (P) 2016 Universal Music A/S",7029 +7030,spotify:track:4NzMOnvSJVNKF7nw5NkXIP,bury a friend,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,spotify:album:0lheRPWdziAtZEiww8TrUO,bury a friend,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,2019-01-30,https://i.scdn.co/image/ab67616d0000b2733ce730c58a503c27c565ce3d,1,1,193143,https://p.scdn.co/mp3-preview/b821adc1d6ef642032f778e894500b75b930ff28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71900770,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.905,0.389,8.0,-14.505,1.0,0.332,0.74,0.162,0.106,0.196,120.046,4.0,,Darkroom,"C © 2019 Darkroom/Interscope Records, P ℗ 2019 Darkroom/Interscope Records",7030 +7031,spotify:track:6uTiOi9lpAFlHSTO2lGdDN,Prisoner of Society,spotify:artist:06eBN3VHAkzsUjtIYSztqj,Freedom Under XRay,spotify:album:1pq36I9BVMixbybsWcvowg,American Damage,spotify:artist:06eBN3VHAkzsUjtIYSztqj,Freedom Under XRay,2004-01-01,https://i.scdn.co/image/ab67616d0000b273fba388104e02abc1d36a293a,1,8,238733,https://p.scdn.co/mp3-preview/5711943f578568eea9b65ad33d902eb5fd34cd4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,ushm20462468,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.382,0.945,9.0,-2.498,1.0,0.0492,0.0243,0.000119,0.124,0.548,142.834,4.0,,FigRock/Kronic,"C 2004 FigRock/Kronic, P 2004 Freedom Under X-Ray",7031 +7032,spotify:track:5dKBaysNJtfpyNTRa5lqDb,A-Punk,spotify:artist:5BvJzeQpmsdsFp4HGUYUEx,Vampire Weekend,spotify:album:5oXBmKbyJeQftWMo87cQ9F,Vampire Weekend,spotify:artist:5BvJzeQpmsdsFp4HGUYUEx,Vampire Weekend,2008-01-27,https://i.scdn.co/image/ab67616d0000b27301e2ebfbf4f8147621c8a866,1,3,137760,https://p.scdn.co/mp3-preview/3afe492f2ee66f7a77041a6a5c2a5f4b523fe3d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBBKS0700527,spotify:user:bradnumber1,2021-10-30T21:36:23Z,"baroque pop,chamber pop,garage rock,indie rock,indietronica,modern rock",0.551,0.821,2.0,-4.489,1.0,0.0539,0.0102,0.0438,0.153,0.842,174.923,4.0,,XL Recordings,"C 2008 Vampire Weekend Inc., under exclusive licence to XL Recordings, P 2008 Vampire Weekend Inc., under exclusive licence to XL Recordings",7032 +7033,spotify:track:2eRRz39GFils5PAGKaxA3V,Mission Bell,spotify:artist:0OIKoNmvKEdHkhhNfrRGP6,Donnie Brooks,spotify:album:1aqx7Oom2xXWVywjvAnh0Z,Mission Bell,spotify:artist:0OIKoNmvKEdHkhhNfrRGP6,Donnie Brooks,2014-07-30,https://i.scdn.co/image/ab67616d0000b2737a0a6b3fc0e6d891ae58a1dc,1,1,148613,https://p.scdn.co/mp3-preview/fd1c6d7592cd0c89bbf963cee1596fa501b63fe2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USDEI1468154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.588,0.504,9.0,-7.737,1.0,0.0282,0.716,0.0,0.224,0.853,80.27,4.0,,K-Tel,,7033 +7034,spotify:track:0jrdWPwYjUZvqfJcwE8ddh,Saturday Night at the Movies,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,spotify:album:1lvcXSmZa8rTR5M03tihq5,The Good Life With the Drifters,spotify:artist:1FqqOl9itIUpXr4jZPIVoT,The Drifters,1965,https://i.scdn.co/image/ab67616d0000b273243334f9986b506b3eed211e,1,11,153626,https://p.scdn.co/mp3-preview/b027117e03b5728ce9fd2708c647d8ec8cd3dfbb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USAT20180271,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,doo-wop,rock-and-roll,rockabilly,soul",0.708,0.545,6.0,-7.376,1.0,0.0502,0.648,0.0,0.121,0.935,135.241,4.0,,Rhino Atlantic,"C © 2004 Atlantic Recording Corp. Manufactured And Marketed By Warner Strategic Marketing., P ℗ 2004 Atlantic Recording Corp. Manufactured And Marketed By Warner Strategic Marketing.",7034 +7035,spotify:track:7Le8BxBqidxMRbK6QS6DRt,Bad Medicine,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:0Bkb9wdEeOPBJnLYmQqVR2,Bon Jovi Greatest Hits - The Ultimate Collection (Int'l Deluxe Package),spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273dccc2df90ecd877a3bb7c999,1,6,316520,https://p.scdn.co/mp3-preview/a42f3cc3f87a76479da0307ae210e3d902e53928?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.53,0.979,9.0,-2.092,1.0,0.0368,0.0231,0.0,0.0797,0.845,118.652,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",7035 +7036,spotify:track:7uEcCGtM1FBBGIhPozhJjv,Daydream Believer,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:2Ov6zb7NfgDh3EXSIIWrb2,"The Birds, The Bees, & The Monkees",spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,1968-04-22,https://i.scdn.co/image/ab67616d0000b27376448e93fcf0b2298744ba97,1,5,179613,https://p.scdn.co/mp3-preview/1ac30893bdf3d5334babc8ad5b54f819ca52b219?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRH10125802,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.51,0.488,7.0,-10.304,1.0,0.0304,0.256,0.0,0.11,0.649,125.683,4.0,,Rhino,"C © 1994 Rhino Entertainment Company, P ℗ 1994 Rhino Entertainment Company",7036 +7037,spotify:track:43y6vqEvGUO3PxWanyTkOB,Living In A Child's Dream,spotify:artist:0Yk7KdGevnSCqZgg9K8n6b,The Master's Apprentices,spotify:album:0VogCwK4hoVaWTe1Upj2Xp,The Very Best Of Masters Apprentices,spotify:artist:0Yk7KdGevnSCqZgg9K8n6b,The Master's Apprentices,1988-01-01,https://i.scdn.co/image/ab67616d0000b2739e1fdf6a5da3ecff511d58d6,1,8,158066,https://p.scdn.co/mp3-preview/106e1eabd34652cce2ade9ac2796823a0866ccfd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUEI10700087,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.573,0.493,9.0,-12.695,1.0,0.0368,0.0996,0.00135,0.106,0.304,112.872,4.0,,Virgin Records,"C © 1988 Virgin Australia, P This Compilation ℗ 1988 Virgin Australia",7037 +7038,spotify:track:4MI4quuVmbAO7Ry0jfsdwt,Love An Adventure,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,spotify:album:5K0d9a7jqLMHnWydnOXKLW,Love An Adventure,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,1985-01-01,https://i.scdn.co/image/ab67616d0000b273f8589bc527ee18b4ef8fcbde,1,1,256281,https://p.scdn.co/mp3-preview/4fc5b0245c3f1b344d5537b3d7d9680574646b06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUUM71501003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,dance rock,synthpop",0.666,0.981,7.0,-4.124,1.0,0.0382,0.0515,0.00321,0.284,0.542,125.312,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2017 Pseudo Echo, P ℗ 2017 Pseudo Echo",7038 +7039,spotify:track:7edh8OtYc5f45mstsWWQ9y,Kissin' Cousins - 2003 Sony Remaster,"spotify:artist:43ZHCT0cAZBISjO8DG9PnE, spotify:artist:6CXezToiGS8K6jr9kr8Muv","Elvis Presley, The Jordanaires",spotify:album:01RkRLNlP4C4aYCCzT3VRm,Elvis At The Movies,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2007-04-01,https://i.scdn.co/image/ab67616d0000b2735a01163ae81ea0807aa7cd28,2,2,131746,https://p.scdn.co/mp3-preview/463d27770e2b4c541cbe55d8b42b2eac6702a0a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USRC10201500,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly,country gospel",0.629,0.594,6.0,-9.997,1.0,0.0407,0.659,0.0,0.433,0.968,84.866,4.0,,SBME Strategic Marketing Group,P (P) 2007 Sony Music Entertainment,7039 +7040,spotify:track:2ENmkocNNewTRbuNd6WJpR,Unbelievable,spotify:artist:39oSLGo3HkaeYXzUEGgAGQ,EMF,spotify:album:1gz9vDJJKfd3NkhzbAtiBs,Schubert Dip,spotify:artist:39oSLGo3HkaeYXzUEGgAGQ,EMF,1991-05-07,https://i.scdn.co/image/ab67616d0000b273f62c6f16670444671a1e27ff,1,6,209813,https://p.scdn.co/mp3-preview/23caebf1eadbbaded5b243fe97e2db4402d8e9d5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBAYE9000089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,dance rock,grebo,indietronica,madchester",0.637,0.849,1.0,-6.855,1.0,0.0362,0.000341,0.0386,0.141,0.936,104.074,4.0,,Parlophone UK,"C 1991 Parlophone Records Ltd, a Warner Music Group Company, P 1991 Parlophone Records Ltd, a Warner Music Group Company",7040 +7041,spotify:track:6M1M6cRtVkm5d0qTzkSEuK,Run to You,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:7JVJlkNNobS0GSoy4tCS96,The Bodyguard - Original Soundtrack Album,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1992-11-17,https://i.scdn.co/image/ab67616d0000b273456c0b5d0316a80dc600802e,1,4,264333,https://p.scdn.co/mp3-preview/53997f406dd2ea109997db23eaa9b9d649b11454?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAR19200112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.368,0.364,8.0,-10.21,1.0,0.0318,0.628,0.0,0.157,0.131,76.923,4.0,,Arista,P (P) 1992 Arista Records LLC,7041 +7042,spotify:track:6DxlDrnHdlzFOu1oR0qLlR,Hell No!,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,spotify:album:2Zj1VEaNjkNt6z1BekbbVW,The Singles,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,2008-11-08,https://i.scdn.co/image/6b9db9c4712c3a39cb49c9a1234cbf80e2d196f8,1,2,194351,https://p.scdn.co/mp3-preview/ffc4b77552c032d30dd1d9783df5bba6b510afc3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,AUOY00500101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian talent show",0.78,0.745,11.0,-7.488,0.0,0.116,0.0545,2.97e-05,0.351,0.907,105.993,4.0,,Shock Entertainment,C 2008 Public Opinion Music Pty Ltd. under agreement with Shock Records,7042 +7043,spotify:track:3e6KjCq67doBTbCeJTPQSi,"I Can't Help Myself (Sugar Pie, Honey Bunch)",spotify:artist:7fIvjotigTGWqjIz6EP1i4,Four Tops,spotify:album:0yFYt74idqEfe0O6CfN3Z4,Four Tops Second Album,spotify:artist:7fIvjotigTGWqjIz6EP1i4,Four Tops,1965,https://i.scdn.co/image/ab67616d0000b273d4c4d82d23880895522b3c50,1,1,160280,https://p.scdn.co/mp3-preview/cbec6992f014a194274675a7aaa6ca21e22b0b81?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16582593,spotify:user:bradnumber1,2021-08-08T09:27:55Z,"classic soul,disco,motown,quiet storm,soul",0.667,0.599,0.0,-8.894,1.0,0.0291,0.245,0.0,0.107,0.971,127.935,4.0,,Universal Music Group,"C © 2004 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2004 Motown Records, a Division of UMG Recordings, Inc.",7043 +7044,spotify:track:6zaFfXE88Jq9iKSRYecPOV,Reuben James,spotify:artist:0WjkBDqno4HbjwNDqyMgVa,Kenny Rogers & The First Edition,spotify:album:1ICCEMh0HkoVHoQrRZrPbc,The Very Best of Kenny Rogers & The First Edition,spotify:artist:0WjkBDqno4HbjwNDqyMgVa,Kenny Rogers & The First Edition,2016-09-23,https://i.scdn.co/image/ab67616d0000b27345cef166a877606768766af6,1,2,169106,https://p.scdn.co/mp3-preview/97ec93304c518af0bdb28b2ad5601cb93bb3d28f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAFM0900621,spotify:user:bradnumber1,2021-08-08T09:26:31Z,psychedelic rock,0.712,0.61,4.0,-9.967,1.0,0.0504,0.417,0.0,0.0662,0.886,92.772,4.0,,Ambition Entertainment,P (P) 2015 Ambition Entertainment Pty Ltd,7044 +7045,spotify:track:4rkUEE5iTzG0szS8k8QzqR,"Flashlight - From ""Pitch Perfect 2"" Soundtrack",spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:7JsgaEeIsP8gpRxmA30ErD,"Flashlight (From ""Pitch Perfect 2"" Soundtrack)",spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2015-04-14,https://i.scdn.co/image/ab67616d0000b273b5cd57e4ee19e4f85f6af5dd,1,1,208666,https://p.scdn.co/mp3-preview/f917cc33fee5bacdd7b5aca25a37561975861752?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM71504653,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.383,0.616,5.0,-7.118,1.0,0.0515,0.314,7.21e-06,0.11,0.48,147.625,4.0,,UME – PP2 OST,"C © 2015 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2015 Universal Music Enterprises, a Division of UMG Recordings, Inc.",7045 +7046,spotify:track:5CNtRWCtAfWivjpjr8QdR2,I Wanna Be the Only One (feat. Bebe Winans),"spotify:artist:7zYGAXxAaq15C9eM29M8Fj, spotify:artist:6D9xBdOOyGHqOam9OShAWl","Eternal, Bebe Winans",spotify:album:2viX4xHASnP1lVEFxrgHyp,Essential Eternal,spotify:artist:7zYGAXxAaq15C9eM29M8Fj,Eternal,2002-12-23,https://i.scdn.co/image/ab67616d0000b2736358931fa574870a63257f98,1,1,216693,https://p.scdn.co/mp3-preview/63537dc0cc50aeeb5fd8d2c52284f89972bc1ee1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAYE9701337,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,girl group,gospel",0.627,0.768,6.0,-7.775,1.0,0.0625,0.468,0.0,0.126,0.802,100.071,4.0,,Parlophone UK,"C © 2002 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2002 Parlophone Records Ltd, a Warner Music Group Company",7046 +7047,spotify:track:39lSeqnyjZJejRuaREfyLL,Hungry Like the Wolf - 2009 Remaster,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:02tfQwJSOLP77oCd9U8bqm,Rio (Collector's Edition),spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1982-05-10,https://i.scdn.co/image/ab67616d0000b27316c75e2dd2654d7d03f2c556,1,4,220626,https://p.scdn.co/mp3-preview/2a75c1b7c9d5aa716edc8162b19da4d627e0be43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBAYE0901090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.691,0.812,0.0,-7.772,1.0,0.0558,0.0433,1.16e-06,0.299,0.685,127.568,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",7047 +7048,spotify:track:3ZVmFxCCAq2LNf5TTSV3Xc,Coz I Luv You,spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,spotify:album:0gAA09tbZAALAGebq8R3mW,Sladest (Expanded),spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,1973-09-28,https://i.scdn.co/image/ab67616d0000b27323840816dd15f4053bdd494d,1,9,205626,https://p.scdn.co/mp3-preview/40ed29d8cb7bb6685408a6ab8153c2f97fe68913?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBC267100020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.436,0.72,2.0,-4.706,0.0,0.109,0.145,0.000296,0.0937,0.897,126.4,4.0,,BMG Rights Management (UK) Limited,"C © 2011 Whild John Ltd. under exclusive licence to BMG Rights Management (UK) Ltd., P ℗ 2011 Whild John Ltd. under exclusive licence to BMG Rights Management (UK) Ltd.",7048 +7049,spotify:track:3cOnQmSQuEUie603kZp82h,Somebody Dance with Me,spotify:artist:14dmbYen0AciYxu5n4Fkpd,DJ BoBo,spotify:album:42iXHnNCzEOJ3Ik0J5OEJz,Best Of,spotify:artist:14dmbYen0AciYxu5n4Fkpd,DJ BoBo,2014-05-02,https://i.scdn.co/image/ab67616d0000b2739674194d629018d7ce8e18f6,1,4,212893,https://p.scdn.co/mp3-preview/50ec0f903458696c4dbab1fa9620938ea98e6a2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEMI61400304,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop",0.682,0.988,6.0,-7.11,0.0,0.0388,0.101,0.00105,0.14,0.649,124.051,4.0,,Yes Music AG,"C (C) 2014 Yes Music, P (P) 2014 Yes Music",7049 +7050,spotify:track:2Zgnaip1c876zmBhz9HifI,Blame It on Me,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,spotify:album:5tF2lAa2rh2kU2xIiBzWia,Wanted on Voyage,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,2014-06-27,https://i.scdn.co/image/ab67616d0000b2732b01e29ac167ad5be48f03ef,1,1,195546,https://p.scdn.co/mp3-preview/0b6b1ff71d4db00c99efc0c179c1a4045f35b7f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1400476,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo-singer-songwriter",0.544,0.745,3.0,-3.401,1.0,0.0276,0.439,0.0,0.348,0.455,103.971,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,7050 +7051,spotify:track:1NXUWyPJk5kO6DQJ5t7bDu,Apeman - 2014 Remastered Version,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:6lL6HugNEN4Vlc8sj0Zcse,"Lola vs. Powerman and the Moneygoround, Pt. One + Percy (Super Deluxe)",spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,2014-10-20,https://i.scdn.co/image/ab67616d0000b2731e7c5307ccbbb74101e0cc77,1,11,233400,https://p.scdn.co/mp3-preview/2691abb845e2a14737aa546a6427b67034946a12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB5KW1499822,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.684,0.729,9.0,-8.92,1.0,0.259,0.568,5.08e-05,0.0384,0.834,75.318,4.0,,Sanctuary Records,"C © 2014 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2014 Sanctuary Records Group Ltd., a BMG Company",7051 +7052,spotify:track:5HVqftYQ37bJx3y0SI4obk,Lily Was Here (feat. Candy Dulfer),"spotify:artist:7gcCQIlkkfbul5Mt0jBQkg, spotify:artist:287jMoxHzjERgHI6ja8TKa","Dave Stewart, Candy Dulfer",spotify:album:5Y7iHcYmk13cAa6Vp6x5Q6,Saxuality,spotify:artist:287jMoxHzjERgHI6ja8TKa,Candy Dulfer,1990-06-08,https://i.scdn.co/image/ab67616d0000b273a7553e872f3f9ce04fb4cd97,1,1,260200,https://p.scdn.co/mp3-preview/1d1e9f5fbc0bea706e830e9e5fe1a2af13bd92c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBARL8900064,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,rock keyboard,smooth jazz",0.743,0.564,4.0,-10.698,0.0,0.0277,0.398,0.0485,0.0802,0.967,108.027,4.0,,Arista,P (P) 1990 BMG Ariola Benelux BV,7052 +7053,spotify:track:6T27IN7Ai94BeDv6PPCmoC,Turn Me On (feat. Nicki Minaj),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","David Guetta, Nicki Minaj",spotify:album:4bTjdxhRRUiWfwj200f9Kl,Nothing but the Beat (Ultimate Edition),spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2012-12-07,https://i.scdn.co/image/ab67616d0000b2735c8cfe4b2c4aa89c9c92108e,1,2,199680,https://p.scdn.co/mp3-preview/c21b41d929e41ca4bdb8523103ef9c35494a4533?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GB28K1100029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,hip pop,pop,queens hip hop,rap",0.704,0.793,8.0,-2.266,1.0,0.0591,0.0488,0.0,0.575,0.412,127.96,4.0,,Parlophone (France),"C © 2012 What A Music Ltd., licence exclusive Parlophone Music France, P ℗ 2012 What A Music Ltd., licence exclusive Parlophone Music France",7053 +7054,spotify:track:0iIjVWXhhx8cTdbu1iGhQn,Where Or When,spotify:artist:2loYllWFfoWpoxC5YrJKc4,Dion & The Belmonts,spotify:album:22sn6KtbbAwuAyVuD1xy7N,The Best Of Dion & The Belmonts,spotify:artist:2loYllWFfoWpoxC5YrJKc4,Dion & The Belmonts,2001,https://i.scdn.co/image/ab67616d0000b273a16a61bfdbe18830939f22b1,1,3,157800,https://p.scdn.co/mp3-preview/f81aaf6cbf9a42db78e4e148ba786fd86c19ccde?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLA19200012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,doo-wop,rock-and-roll,rockabilly",0.455,0.254,8.0,-11.644,1.0,0.0283,0.796,0.0,0.125,0.467,110.848,3.0,,Parlophone UK,"C 1996 Parlophone Records Ltd, a Warner Music Group Company, P 1996 Parlophone Records Ltd, a Warner Music Group Company",7054 +7055,spotify:track:3rbIgWZMXLqOdqpY7XuzVz,My Own Way - 2009 Remaster,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:02tfQwJSOLP77oCd9U8bqm,Rio (Collector's Edition),spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1982-05-10,https://i.scdn.co/image/ab67616d0000b27316c75e2dd2654d7d03f2c556,1,2,290746,https://p.scdn.co/mp3-preview/0a763f51f0b34decda3097adac627eb4f78fd443?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAYE0901088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.629,0.848,4.0,-7.632,0.0,0.043,0.00929,0.000139,0.0629,0.811,123.601,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",7055 +7056,spotify:track:2xmrfQpmS2iJExTlklLoAL,I Miss You (feat. Julia Michaels),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","Clean Bandit, Julia Michaels",spotify:album:78zct4Yn5hwMqrlh5uQedB,I Miss You (feat. Julia Michaels),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m","Clean Bandit, Julia Michaels",2017-10-26,https://i.scdn.co/image/ab67616d0000b2738341ce7a7a1f4ab4182823d5,1,1,205747,https://p.scdn.co/mp3-preview/8130edc24ce3f1110a625364086ebbf58aa93f21?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHS1701012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,pop",0.638,0.658,3.0,-6.318,1.0,0.0456,0.245,3.77e-06,0.0919,0.33,105.076,4.0,,Atlantic Records UK,"C 2017 Atlantic Records UK, a Warner Music Group Company, P 2017 Atlantic Records UK, a Warner Music Group Company",7056 +7057,spotify:track:5IJlLmqmyWRL69uKGMFND3,Rock & Roll I Gave You The Best Years Of My Life,spotify:artist:3uFDkiNjjX0eNG5F9obt1C,Kevin Johnson,spotify:album:659OVO8z09eMGPo6s1V1mX,The Classics Remastered,spotify:artist:3uFDkiNjjX0eNG5F9obt1C,Kevin Johnson,1972-01-01,https://i.scdn.co/image/ab67616d0000b2739cfd0cfdee29c92fd491fe49,1,1,326331,https://p.scdn.co/mp3-preview/95bcf7751a948597b09bbafc0e045841dc0f777f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUZK32200012,spotify:user:bradnumber1,2022-06-17T02:24:25Z,"australian pop,super eurobeat",0.498,0.624,1.0,-8.339,1.0,0.0263,0.419,0.00885,0.115,0.709,95.559,4.0,,Possum Records,"C 2022 Possum Records, P 2022 Possum Records",7057 +7058,spotify:track:6GWAYg3cZzizs3FAJzdydD,Because I Love You (The Postman Song),spotify:artist:6V7pNWhlJpD0s0bMdB1PU9,Stevie B,spotify:album:0Yv2TJHSg9QvTT30NR1G5s,Valentine's Day Love: The Pop Collection,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-02-04,https://i.scdn.co/image/ab67616d0000b273579e3ded9af11a808413f960,1,1,306828,https://p.scdn.co/mp3-preview/112ad1f9af412f4f5e063e257deca01d2f93ac9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USGZ20600605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,freestyle,0.22,0.339,1.0,-8.082,1.0,0.037,0.812,0.0,0.139,0.0887,61.764,4.0,,Perpetual,"C (C) 2014 Essential Media Group LLC, P (P) 2014 Essential Media Group LLC",7058 +7059,spotify:track:7vG82J1r7cMoecuQb19sRL,Let Go,spotify:artist:7DZDByO8dEuOb1V5JcJPfI,Brian Cadd,spotify:album:1er7XbMBLlo14aZRoyiGbQ,The Best of Brian Cadd,spotify:artist:7DZDByO8dEuOb1V5JcJPfI,Brian Cadd,2018-04-13,https://i.scdn.co/image/ab67616d0000b2738f83677912ead6cc4486c952,1,3,258986,https://p.scdn.co/mp3-preview/78d6f076830131986a9e8271e397ad8f065eee42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian americana,australian rock",0.55,0.428,5.0,-9.832,1.0,0.0286,0.368,0.0,0.166,0.551,120.252,4.0,,Fable Records,P (P) 2018 Southern Cross Music,7059 +7060,spotify:track:2W5UG7uGle3SlZiyzEGxls,Sealed with a Kiss,spotify:artist:6bOYtKnpLPQSfMpS2ilotK,Bobby Vinton,spotify:album:4qK4QZUSp8QdoMEm9mrzyA,The Best Of Bobby Vinton,spotify:artist:6bOYtKnpLPQSfMpS2ilotK,Bobby Vinton,2004-06-22,https://i.scdn.co/image/ab67616d0000b2735980cda6de8365d077f34a5e,1,14,168866,https://p.scdn.co/mp3-preview/d5683a650866e41a02a55a3c8abc0aec67f57cc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM19929211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,easy listening,rock-and-roll,rockabilly",0.431,0.379,5.0,-9.59,0.0,0.0262,0.708,1.74e-05,0.181,0.665,86.172,4.0,,Epic/Legacy,"P Originally Released 1962, 1963, 1964, 1965, 1967, 1968, (P) 1972, 2004 Sony Music Entertainment Inc.",7060 +7061,spotify:track:3jEPu6FD1icy9cLllhB2XK,Omen - Radio Edit,"spotify:artist:6nS5roXSAGhTGr34W6n7Et, spotify:artist:2wY79sveU1sp5g7SokKOiI","Disclosure, Sam Smith",spotify:album:5l3jo3oe2M7KM37SIeUzLc,Omen (Radio Edit),spotify:artist:6nS5roXSAGhTGr34W6n7Et,Disclosure,2015-07-27,https://i.scdn.co/image/ab67616d0000b27343ed67249303c43b71ecf418,1,1,196817,https://p.scdn.co/mp3-preview/90e5df293b22c3e71deb6ee76f62f18cd9b996b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71504534,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,house,indietronica,uk dance,pop,uk pop",0.646,0.787,5.0,-4.817,0.0,0.174,0.103,0.0,0.373,0.675,106.071,4.0,,Universal Music Group,"C © 2015 Island Records, a division of Universal Music Operations Limited, P ℗ 2015 Island Records, a division of Universal Music Operations Limited",7061 +7062,spotify:track:4VnQbiXRieYrTnHRx6xwmM,The Loco-Motion,spotify:artist:4S76LQXJD6N2uPcLhKejG8,Little Eva,spotify:album:3g2F6WsgTKw1btc9yZmhDB,Loco-Motion,spotify:artist:4S76LQXJD6N2uPcLhKejG8,Little Eva,2001-09-20,https://i.scdn.co/image/ab67616d0000b273b9b79a7f9faccc4fcff56455,1,1,148089,https://p.scdn.co/mp3-preview/b693316403508feb85502386150c9693c54a236f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,ZA42A1538826,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,doo-wop,rock-and-roll",0.636,0.672,3.0,-11.835,1.0,0.0406,0.637,0.00457,0.0721,0.92,129.619,4.0,,TP4 Music,"C 2015 TP4 Music, P 2015 TP4 Music",7062 +7063,spotify:track:1uMHCAyGmHqyygoNRuo7MV,edamame,"spotify:artist:41X1TR6hrK8Q2ZCpp2EqCz, spotify:artist:2IDLDx25HU1nQMKde4n61a","bbno$, Rich Brian",spotify:album:1YrACh9xDRGpjrkdWz4MfP,edamame,spotify:artist:41X1TR6hrK8Q2ZCpp2EqCz,bbno$,2021-07-24,https://i.scdn.co/image/ab67616d0000b273545a202ab06885cf2c6621ca,1,1,133706,https://p.scdn.co/mp3-preview/ce9a847b365618c45c84340fe02d3a436963e106?cid=9950ac751e34487dbbe027c4fd7f8e99,True,6,QMUY42100151,spotify:user:bradnumber1,2022-01-04T09:42:24Z,"canadian hip hop,dark trap,meme rap,indonesian hip hop",0.815,0.848,4.0,-4.704,0.0,0.115,0.023,0.000162,0.0265,0.684,106.032,4.0,,"bbno$, Rich Brian appears courtesy of 88Rising","C 2021 bbno$, Rich Brian appears courtesy of 88Rising, P 2021 bbno$, Rich Brian appears courtesy of 88Rising",7063 +7064,spotify:track:1xb5aS8n5nOlX5JHNXsPQE,Redbone,spotify:artist:73sIBHcqh3Z3NyqHKZ7FOL,Childish Gambino,spotify:album:6weZgryNxv4y8tKBdg68je,"""Awaken, My Love!""",spotify:artist:73sIBHcqh3Z3NyqHKZ7FOL,Childish Gambino,2016-12-02,https://i.scdn.co/image/ab67616d0000b273f51eda46cba7ab00feb1cd66,1,6,326933,https://p.scdn.co/mp3-preview/14918511e11a9e46fa170413821e5f89bd31872a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USYAH1600107,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,hip hop,rap",0.746,0.345,1.0,-10.963,1.0,0.0875,0.183,0.00367,0.121,0.598,160.036,4.0,,Liberator Music,"C 2016 Glassnote Entertainment Group LLC, P 2016 Glassnote Entertainment Group LLC",7064 +7065,spotify:track:3vZMkLS1jP7NdNhzqGfUSW,Ben - Single Version,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:3j7pUFDRub9Q5NztcYKyaR,Ben,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1972-08-04,https://i.scdn.co/image/ab67616d0000b273a1f07a5316047b5be5ef0b83,1,1,165160,https://p.scdn.co/mp3-preview/c1a9efff7b291f9b39e40b6dfbb9b1e466648246?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USMO17282631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.464,0.132,5.0,-12.935,1.0,0.0283,0.81,1.16e-05,0.0994,0.303,68.152,4.0,,Motown,"C © 1972 Motown Record Company L.P., P ℗ 1972 UMG Recordings, Inc.",7065 +7066,spotify:track:2UaJHs6wlASNl7q34j7hK1,The Zephyr Song,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:1jWKVgnHX8nwR551hQNx5K,By the Way,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,2002-07-09,https://i.scdn.co/image/ab67616d0000b273fdbcee40748537ff80a7af70,1,6,231933,https://p.scdn.co/mp3-preview/e390b9117250e5524fb84918d8792a2e0f2f350c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USWB10201693,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.717,0.782,2.0,-4.086,1.0,0.0338,0.0108,2.39e-05,0.0904,0.4,117.38,4.0,,Warner Records,"C © 2002 Warner Records Inc., P ℗ 2002 Warner Records Inc.",7066 +7067,spotify:track:11IzgLRXV7Cgek3tEgGgjw,Under Pressure - Remastered 2011,"spotify:artist:1dfeR4HaWDbWqFHLkxsg1d, spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy","Queen, David Bowie",spotify:album:0xc5IpJM39eEEYSKDrm5kf,Hot Space (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1982-05-03,https://i.scdn.co/image/ab67616d0000b273a1e05e1048e2cf2737adf742,1,11,248440,https://p.scdn.co/mp3-preview/e3f7bdc022347f1b9e15152b67f8437c98b3ca12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBUM71029622,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock,art rock,classic rock,glam rock,permanent wave,rock",0.671,0.711,2.0,-7.813,1.0,0.0478,0.422,0.0,0.104,0.466,113.809,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",7067 +7068,spotify:track:7DKRk5tOvt5FKPPbpGjAlv,The Buzz (feat. Mataya & Young Tapz),"spotify:artist:3fmMaLC5jjf2N4EC2kTx0u, spotify:artist:6JW55AQgf9M9SZgzZou2NQ, spotify:artist:7p54hwKypG19lucXWyQdGG","Hermitude, Mataya, TAPZ GALLANTINO",spotify:album:7CnyVrwN5AgQZqCWq9xCtH,Tunesdays,spotify:artist:11lHDmKHzZW4fu1zsMpmDS,The Dolan Twins,2016-09-02,https://i.scdn.co/image/ab67616d0000b27326f2e4da055a5e2e686b300c,1,12,221857,https://p.scdn.co/mp3-preview/93101aece58a16482542ed57176b12efc7f9e257?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZ3CX1600506,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian indie,downtempo,escape room,escape room",0.667,0.579,0.0,-6.702,0.0,0.346,0.325,0.00209,0.123,0.464,140.88,4.0,,Heard Well,"C (C) 2016 Heard Well, LLC",7068 +7069,spotify:track:1XlCCgKKrQQfXaDyv4GrZe,Mustang Sally,"spotify:artist:5kiBy7FO5L4ywMz1xF70PX, spotify:artist:7MdthKITrvbzo6v1PG80Te","The Commitments, Andrew Strong",spotify:album:1uTcBfkLmGF07vlNMj6Ru0,The Commitments,spotify:artist:5kiBy7FO5L4ywMz1xF70PX,The Commitments,1991-01-01,https://i.scdn.co/image/ab67616d0000b2738e790709b9f3ce9dc731f49f,1,1,241866,https://p.scdn.co/mp3-preview/9b7b42d96362d897b5b0575ae6bd2a8844f29b1a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USMC19135887,spotify:user:bradnumber1,2021-11-11T04:16:14Z,,0.744,0.735,1.0,-10.766,1.0,0.0587,0.011,0.0,0.0564,0.891,115.062,4.0,,Geffen*,"C © 1991 Geffen Records, P ℗ 1991 Geffen Records",7069 +7070,spotify:track:40YcuQysJ0KlGQTeGUosTC,"Me, Myself & I","spotify:artist:02kJSzxNuaWGqwubyUba0Z, spotify:artist:64M6ah0SkkRsnPGtGiRAbb","G-Eazy, Bebe Rexha",spotify:album:09Q3WwGYsQe5ognkvVkmCu,When It's Dark Out,spotify:artist:02kJSzxNuaWGqwubyUba0Z,G-Eazy,2015-12-04,https://i.scdn.co/image/ab67616d0000b27398acfa8c055deedc25e6081d,1,3,251466,https://p.scdn.co/mp3-preview/ea733ebf4d40c173af190a73c375b51d316e5442?cid=9950ac751e34487dbbe027c4fd7f8e99,True,80,USRC11502210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie pop rap,oakland hip hop,pop rap,rap,dance pop,pop",0.756,0.674,0.0,-6.518,0.0,0.0959,0.0184,0.0,0.158,0.389,111.995,4.0,,BPG/RVG/RCA Records,"P (P) 2015 RCA Records, a division of Sony Music Entertainment",7070 +7071,spotify:track:0PZbaGIEj3L7ZsWhuNhtpR,Hurricane,spotify:artist:2PCUhxD40qlMqsKHjTZD2e,Parachute,spotify:album:1rMnGJr9YrHZepHvgyyJd8,Overnight,spotify:artist:2PCUhxD40qlMqsKHjTZD2e,Parachute,2013-01-01,https://i.scdn.co/image/ab67616d0000b273dfd6a275365f889412cf53f9,1,4,250880,https://p.scdn.co/mp3-preview/8a4a6e507546deec2befe7528a081c0d775fe8d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USUM71308836,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,charlottesville indie,neo mellow,neon pop punk,pop rock,viral pop",0.568,0.814,7.0,-5.078,0.0,0.043,0.0382,0.0,0.402,0.462,144.956,4.0,,Mercury Records,"C © 2013 The Island Def Jam Music Group, P ℗ 2013 The Island Def Jam Music Group",7071 +7072,spotify:track:29mlXUONiZNuHn7euEes7v,Body II Body,spotify:artist:7L12TqJ0fbwtFljTbwfwRI,Samantha Mumba,spotify:album:5hrhGEdZrxOjBe32cfIuwc,Gotta Tell You,spotify:artist:7L12TqJ0fbwtFljTbwfwRI,Samantha Mumba,2000,https://i.scdn.co/image/ab67616d0000b2732dce2ff2d684c4b0fd254b16,1,2,239400,https://p.scdn.co/mp3-preview/7e7a490c98cb8552c495815cfc233e6854776275?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBALS0000013,spotify:user:bradnumber1,2023-01-31T06:40:08Z,"bubblegum dance,europop,talent show",0.87,0.914,10.0,-5.624,0.0,0.04,0.0358,0.0,0.0355,0.964,120.494,4.0,,Polydor Records,"C © 2001 Polydor Ltd. (UK), P ℗ 2001 Polydor Ltd. (UK)",7072 +7073,spotify:track:04aAxqtGp5pv12UXAg4pkq,Centuries,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,spotify:album:022DrG7Wp2PSCwzuD0bSzT,American Beauty/American Psycho,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2015-01-16,https://i.scdn.co/image/ab67616d0000b2733cf1c1dbcfa3f1ab7282719b,1,3,228360,https://p.scdn.co/mp3-preview/d6fcac6047be8c069b563701022ce2713d7c05cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USUM71412644,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop,rock",0.393,0.858,4.0,-2.868,0.0,0.0729,0.00359,0.0,0.102,0.56,176.042,4.0,,Island Records,"C © 2015 Island Records, a division of UMG Recordings, Inc., P ℗ 2015 Island Records, a division of UMG Recordings, Inc.",7073 +7074,spotify:track:0aj2QKJvz6CePykmlTApiD,Señorita,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:6QPkyl04rXwTGlGlcYaRoW,Justified,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2002-11-04,https://i.scdn.co/image/ab67616d0000b273346a5742374ab4cf9ed32dee,1,1,294866,https://p.scdn.co/mp3-preview/d74d7bf55877cb13561fb057336e1725017e7acf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USJI10200363,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.841,0.63,1.0,-5.356,1.0,0.0443,0.0725,0.0,0.0742,0.876,97.964,4.0,,Jive,P (P) 2002 Zomba Recording LLC,7074 +7075,spotify:track:3oGcHyoXwBMIAXkgIzLoQn,Love & Pride,spotify:artist:3ckiHuEKcXHXV0QOkCdCki,King,spotify:album:7dTQ7PhsaV6a6AeGV9l97N,Steps In Time,spotify:artist:3ckiHuEKcXHXV0QOkCdCki,King,1984-09-26,https://i.scdn.co/image/ab67616d0000b27395ddb3c9821c10a51da39443,1,2,201386,https://p.scdn.co/mp3-preview/8d4a70a340bf213c25159fdff91f396dbe567459?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBBBN8400002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"coventry indie,deep new wave",0.708,0.611,9.0,-9.889,0.0,0.0378,0.0992,2.51e-05,0.0889,0.799,126.093,4.0,,Sony Music Entertainment,P (P) 1984 Sony BMG Music Entertainment (UK) Limited,7075 +7076,spotify:track:1jM23jASF0JrhgqYhqCZfl,Original Sin,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:7CJvhqb2PJq5fBcY6eKqjl,INXS Remastered,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b273114b2baa75317b81a8c9c7ca,4,1,317240,https://p.scdn.co/mp3-preview/05f3431e05fddb6e72e743868eab533476db660a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,NLF050190259,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.685,0.633,9.0,-7.259,1.0,0.0377,0.0136,0.000106,0.0935,0.731,131.397,4.0,,Petrol Records,"C © 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",7076 +7077,spotify:track:1Cae1YAN5Tf4CPfnWz3nmj,Body,"spotify:artist:6t1gpxYbY8OlLA7D2RiikQ, spotify:artist:5uEeqYFuIChoWKy34jp8xE","Loud Luxury, Brando",spotify:album:5cs22dNVAT8XfOiGxMXv6l,Body,spotify:artist:6t1gpxYbY8OlLA7D2RiikQ,Loud Luxury,2018-04-13,https://i.scdn.co/image/ab67616d0000b273be7b1107378e5e0151c77a04,1,1,163216,https://p.scdn.co/mp3-preview/500f32c94358533f3736af033498350a9636e701?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,NLF711710457,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,dance pop,pop dance,uk dance",0.752,0.764,1.0,-4.399,1.0,0.038,0.0476,9.44e-05,0.0543,0.582,121.958,4.0,,Hussle Recordings,"C © 2018 Hussle Recordings, a division of TMRW Music Pty Ltd., P ℗ 2018 Hussle Recordings, a division of TMRW Music Pty Ltd.",7077 +7078,spotify:track:6f3Slt0GbA2bPZlz0aIFXN,The Business,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,spotify:album:2adSO4KU3FDjeM1PXCRDZm,The Business,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,2020-09-16,https://i.scdn.co/image/ab67616d0000b273f461bbc21a9bcec43a926973,1,1,164000,https://p.scdn.co/mp3-preview/e516723e41dab08c241fc981aeed21407f322d72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,CYA112000624,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance",0.798,0.62,8.0,-7.079,0.0,0.232,0.414,0.0192,0.112,0.235,120.031,4.0,,Atlantic Records,"C © 2020 Musical Freedom Label, LLC under exclusive license to Atlantic Recording Corporation for the world., P ℗ 2020 Musical Freedom Label, LLC under exclusive license to Atlantic Recording Corporation for the world.",7078 +7079,spotify:track:4Ich2datyOWMWvdNjksBDT,You Ain't Seen Nothing Yet,spotify:artist:5q4AzEtCoYJyXjMMoEkSU5,Bachman-Turner Overdrive,spotify:album:05FPUb1Vimvo50NNFn6nqC,The Anthology,spotify:artist:5q4AzEtCoYJyXjMMoEkSU5,Bachman-Turner Overdrive,1993-01-01,https://i.scdn.co/image/ab67616d0000b2731c0c630917ff24d726f959c9,2,1,232466,https://p.scdn.co/mp3-preview/b43ee975293a1b1f420a9fae91c7087e66770e64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39401742,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic canadian rock,classic rock,country rock,folk rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.479,0.512,11.0,-12.462,0.0,0.0382,0.000199,0.0164,0.123,0.795,118.953,4.0,,Strategic Marketing,"C © 1993 The Island Def Jam Music Group, P ℗ 1993 The Island Def Jam Music Group",7079 +7080,spotify:track:2hDUKHUVdVgEjF5XqgsqXk,Dakota,spotify:artist:21UJ7PRWb3Etgsu99f8yo8,Stereophonics,spotify:album:4TPenRsdsxar4cQTLEpZph,Decade In The Sun - Best Of Stereophonics,spotify:artist:21UJ7PRWb3Etgsu99f8yo8,Stereophonics,2008-01-01,https://i.scdn.co/image/ab67616d0000b273d9cb92b2fb4dd0a820f231f5,1,1,298253,https://p.scdn.co/mp3-preview/45a03d196e3366d2235b0ef2b81724529c0c4d80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70812875,spotify:user:bradnumber1,2022-08-31T00:22:16Z,"britpop,modern rock,welsh rock",0.503,0.93,4.0,-3.501,1.0,0.0679,0.112,0.00382,0.103,0.328,146.998,4.0,,EMI,"C © 2008 V2 Music Limited, P This Compilation ℗ 2008 V2 Music Limited",7080 +7081,spotify:track:3Yr4gXagnFlMVGpMWAkOPa,Blackout,spotify:artist:53M4Iv2RkzzxFFvW2B1jhC,Breathe Carolina,spotify:album:6pr2uwJm3TD7u10q5302we,Hell Is What You Make It,spotify:artist:53M4Iv2RkzzxFFvW2B1jhC,Breathe Carolina,2011-07-12,https://i.scdn.co/image/ab67616d0000b2732b9de194a7998b4a3c9c78d5,1,3,210200,https://p.scdn.co/mp3-preview/f5b92c74bf31007be55893c836caa9181ae37e5d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US5261115303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropowerpop,neon pop punk,trancecore",0.666,0.839,6.0,-4.629,1.0,0.139,0.00718,0.0,0.054,0.792,122.955,4.0,,Fearless Records,"C (C) 2011 Fearless Records, P (P) 2011 Fearless Records",7081 +7082,spotify:track:4KNLGKJyx4PzvgOxHcHDjv,The Sound Of Breaking Up,spotify:artist:2ZW29i2YE4YDQf6WemPJ4W,Paul Mac,spotify:album:55HS4H3fehwCLdzS0ybKic,3000 Feet High,spotify:artist:2ZW29i2YE4YDQf6WemPJ4W,Paul Mac,2001-01-01,https://i.scdn.co/image/ab67616d0000b2736f3192664d94c6334b8955a5,1,4,205960,https://p.scdn.co/mp3-preview/f567d2e242b56ae227909f036d10899a4156afa4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUEL00100015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.726,0.638,7.0,-7.553,0.0,0.0285,0.0914,0.0,0.0792,0.482,110.45,4.0,,Universal Music Australia Pty. Ltd.,"C © 2001 Eleven: A Music Company, P ℗ 2001 Eleven: A Music Company",7082 +7083,spotify:track:37rKwjBHaZurlyPYy3Nqvz,Thrift Shop (feat. Wanz),"spotify:artist:6WLvgbfYXQPO396oJEYCsi, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp, spotify:artist:56xTxG4nQMAs1GW9kvn0uA","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis, Wanz",spotify:album:76FXHQhTuT4QMIxfL09gX8,The Heist,"spotify:artist:6WLvgbfYXQPO396oJEYCsi, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis",2012-10-09,https://i.scdn.co/image/ab67616d0000b27398a02fef3a8b1d80a0f164ec,1,3,235982,https://p.scdn.co/mp3-preview/1804ec4e74412d8b3efb67a929f21bc35dec5472?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GMM881200022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop,pop rap",0.747,0.525,6.0,-7.164,0.0,0.313,0.0531,0.0,0.039,0.699,94.949,4.0,,Macklemore,"C © 2012 Macklemore, LLC., P ℗ 2012 Macklemore, LLC.",7083 +7084,spotify:track:6WhzFzROw3aq3rPWjgYlxr,Gold,spotify:artist:4u5smJBskI6Adzv08PuiUP,Kiiara,spotify:album:4sbZHOW6I2LTTjlRJbhVtA,Gold,spotify:artist:4u5smJBskI6Adzv08PuiUP,Kiiara,2015-10-26,https://i.scdn.co/image/ab67616d0000b273bdb4de8c6db74044aabe6047,1,1,225882,https://p.scdn.co/mp3-preview/6026e006e566b4fdb9607a408ae729aa754d13dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USAT21503773,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,electropop",0.6,0.412,8.0,-9.343,1.0,0.344,0.615,0.0025,0.134,0.408,113.049,5.0,,Atlantic Records,"C © 2015 EFFESS/Atlantic Recording Corporation for the United States and WEA International Inc. for the outside of the United States., P ℗ 2015 EFFESS/Atlantic Recording Corporation for the United States and WEA International Inc. for the outside of the United States.",7084 +7085,spotify:track:15vzANxN8G9wWfwAJLLMCg,Paris,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,spotify:album:64vx3cUb97lQGlgt8zozWL,Paris,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2017-01-13,https://i.scdn.co/image/ab67616d0000b273e1b22ace42c98117458010b4,1,1,221520,https://p.scdn.co/mp3-preview/3dedbb441715ef3aa43e9bd22dfe7bf85587e646?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USQX91603031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.646,0.644,2.0,-6.763,1.0,0.031,0.0243,0.0,0.0888,0.251,99.999,4.0,,Disruptor Records/Columbia,P (P) 2017 Disruptor Records/Columbia Records,7085 +7086,spotify:track:3gmNmsgAgh5usicOQt6QsL,Tragedy,spotify:artist:17UkABEasVRlCcIFZ3wHb7,Steps,spotify:album:6GikBlo9eN41ecdJDCfIJh,The Collection,spotify:artist:17UkABEasVRlCcIFZ3wHb7,Steps,1998,https://i.scdn.co/image/ab67616d0000b273ffad63fcd034a115b9a07904,1,1,271920,https://p.scdn.co/mp3-preview/9592c4f343a032293cb5b8919790d85b11515d6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK9800107,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,europop,talent show",0.684,0.936,2.0,-4.432,1.0,0.0353,0.0546,0.00226,0.192,0.895,125.027,4.0,,Sony Music CG,P (P) 1998 Sony Music Entertainment UK Limited/(P) 1999 Sony Music Entertainment UK Limited,7086 +7087,spotify:track:1mHoqHeQClLBp5UO3TbUac,The Show,spotify:artist:5g3uG8zZZANGT6YOssgjfC,Lenka,spotify:album:4RDt6hhOexGpinuMYkhpBE,Lenka (Expanded Edition),spotify:artist:5g3uG8zZZANGT6YOssgjfC,Lenka,2008-09-23,https://i.scdn.co/image/ab67616d0000b27373828856d5bb812e8a5e66d5,1,1,235693,https://p.scdn.co/mp3-preview/f7c7ff4ea5bfc375956049839368a04a74063db5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM10802201,spotify:user:bradnumber1,2023-03-08T22:18:41Z,,0.753,0.59,0.0,-4.144,1.0,0.0317,0.259,0.0,0.0836,0.593,123.028,4.0,,Epic,"P (P) 2008 Epic Records, a division of Sony Music Entertainment",7087 +7088,spotify:track:4oST8HiZTBrgJLHBMpbVUW,Psycho,spotify:artist:7Hsfh7YZzoyojYWQeMSHID,Mia Rodriguez,spotify:album:3Z6RWTDo2xuPWmS68MDLMi,Psycho,spotify:artist:7Hsfh7YZzoyojYWQeMSHID,Mia Rodriguez,2020-04-06,https://i.scdn.co/image/ab67616d0000b2732d87c5a7c4329eb96dad4dff,1,1,176160,https://p.scdn.co/mp3-preview/8b8f80613bc9629537d17b9bade61947dee1d2ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUZN32000026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alt z,0.799,0.496,5.0,-7.882,0.0,0.0544,0.389,0.0506,0.164,0.159,100.011,4.0,,City Pop Records,"C 2020 City Pop Records, P 2020 City Pop Records",7088 +7089,spotify:track:523uk3CDXUNSXPAMqFvibP,One Perfect Day,spotify:artist:16uR0wl5ShrtluUW707XPv,The Little Heroes,spotify:album:7kp8zdX1j8a2pz4euqOBU7,Play By Numbers,spotify:artist:16uR0wl5ShrtluUW707XPv,The Little Heroes,1982-08-01,https://i.scdn.co/image/ab67616d0000b273ae89be7a6a67166b36448f2e,1,6,220685,https://p.scdn.co/mp3-preview/c2e690d60bfd9cb8e8ec9855652b48169a08f5ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUUM71700178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.585,0.55,7.0,-7.23,1.0,0.0264,0.292,0.0,0.425,0.242,125.983,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 1982 EMI Music (Australia) Limited, P ℗ 1982 EMI Music (Australia) Limited",7089 +7090,spotify:track:3VMMmMR4IYL28n7oKHyUoD,Hey Joe,spotify:artist:776Uo845nYHJpNaStv1Ds4,Jimi Hendrix,spotify:album:2vfiwvlxOBNBohRXfvlMtY,Experience Hendrix: The Best Of Jimi Hendrix,spotify:artist:776Uo845nYHJpNaStv1Ds4,Jimi Hendrix,1997-09-16,https://i.scdn.co/image/ab67616d0000b2737bfdcc5707e04f9418d2b69d,1,4,209813,https://p.scdn.co/mp3-preview/e105caf3e3c962c69c4f0e65e96de049865d1368?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USQX90900767,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,alternative rock,classic rock,hard rock,proto-metal,psychedelic rock,rock",0.349,0.757,9.0,-5.659,1.0,0.0359,0.00351,0.329,0.0332,0.569,166.717,4.0,,Legacy Recordings,P This compilation (P) 1997 Sony Music Entertainment,7090 +7091,spotify:track:5G3UfEFiR4MUqkC8ETbzeR,Nobody but Me,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:2OXZJLXxM8jrY3gBoVNfmz,Nobody but Me (Deluxe),spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2016-10-21,https://i.scdn.co/image/ab67616d0000b273576629f3c4631eb55612a7c7,1,3,179640,https://p.scdn.co/mp3-preview/aee6538a51b6454f7758471e1cf06c318a149b4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USRE11600450,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.686,0.698,4.0,-5.142,1.0,0.0642,0.139,0.0,0.134,0.963,93.972,4.0,,Reprise,"C © 2016 Reprise Records, P ℗ 2016 Reprise Records",7091 +7092,spotify:track:2olVm1lHicpveMAo4AUDRB,The Power Of Love,spotify:artist:7A9yZMTrFZcgEWAX2kBfK6,Huey Lewis & The News,spotify:album:0u34k1ANjgZ47uQfG9yaLj,Greatest Hits: Huey Lewis And The News,spotify:artist:7A9yZMTrFZcgEWAX2kBfK6,Huey Lewis & The News,2006-01-01,https://i.scdn.co/image/ab67616d0000b2735306ed42ae78f317258c51bb,1,3,234333,https://p.scdn.co/mp3-preview/1102e37c79ea611a0afa20f454da9f6ccb7a58a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USCA20600519,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave pop,rock,singer-songwriter,soft rock",0.768,0.828,5.0,-5.109,1.0,0.0313,0.0964,2.85e-05,0.097,0.961,118.777,4.0,,Capitol Records,"C © 2006 Capitol Records Inc., P This Compilation ℗ 2006 Capitol Records Inc.",7092 +7093,spotify:track:3Dv1eDb0MEgF93GpLXlucZ,Say So,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,spotify:album:1MmVkhiwTH0BkNOU3nw5d3,Hot Pink,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,2019-11-07,https://i.scdn.co/image/ab67616d0000b273f14aa81116510d3a6df8432b,1,5,237893,https://p.scdn.co/mp3-preview/7131c09d3479d06d84281176255c851d88f6670b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,USRC11903454,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.787,0.673,11.0,-4.583,0.0,0.159,0.264,3.35e-06,0.0904,0.779,110.962,4.0,,Kemosabe Records/RCA Records,P (P) 2019 Kemosabe Records/RCA Records,7093 +7094,spotify:track:468JfxVVGA2K9vnXjhCs1B,The Best We Got,spotify:artist:2hrWpLNoJcs1EnWSXvB6JI,The Rubens,spotify:album:1SmR2unWU6dPXtH72M67dX,The Rubens,spotify:artist:2hrWpLNoJcs1EnWSXvB6JI,The Rubens,2012-09-14,https://i.scdn.co/image/ab67616d0000b2735524a496d9d8515c723d4c75,1,1,234710,https://p.scdn.co/mp3-preview/574c601b3f0e87a934f838776038d4078183c1d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01283610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.384,0.918,9.0,-4.33,0.0,0.0388,0.0115,2.62e-05,0.0986,0.573,190.069,4.0,,Ivy League Records,"C 2012 Ivy League Records, P 2012 Ivy League Records",7094 +7095,spotify:track:0dMd4rilfd6gPbXaLpNYhu,Higher Ground,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:5jgI8Eminx9MmLBontDWq8,Innervisions,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1973-08-03,https://i.scdn.co/image/ab67616d0000b273ea8ab1a548312b79ac955266,1,5,222600,https://p.scdn.co/mp3-preview/5b9df6d4e699b7b6f20d58eb796fe22965cd563e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USMO17382652,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.716,0.85,8.0,-9.949,1.0,0.0426,0.0631,0.00133,0.189,0.821,125.474,4.0,,Motown,"C © 1973 Motown Record Company L.P., P ℗ 1973 UMG Recordings, Inc.",7095 +7096,spotify:track:2Y90nL1ohB4sgYELDs7uNx,Glory Days,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,spotify:album:0PMasrHdpaoIRuHuhHp72O,Born In The U.S.A.,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,1984-06-04,https://i.scdn.co/image/ab67616d0000b273a7865e686c36a4adda6c9978,1,10,254733,https://p.scdn.co/mp3-preview/b4228bc31b0040da6fa0cc4a50bb82a29c351a8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM18400415,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"heartland rock,mellow gold,permanent wave,rock,singer-songwriter",0.574,0.96,9.0,-4.906,1.0,0.032,0.0457,0.0,0.121,0.978,117.486,4.0,,Columbia,P (P) 1984 Bruce Springsteen,7096 +7097,spotify:track:0UPeIcv7JDE1U7K0OHkmQH,Ring My Bell,spotify:artist:29X5ymQSDf34W2I4q0BSZd,Collette,spotify:album:2M3Ebt1k3hLG22riCWO0JX,Raze the Roof,spotify:artist:29X5ymQSDf34W2I4q0BSZd,Collette,1989-10-30,https://i.scdn.co/image/ab67616d0000b2739d39e1c31cda1b3a240644cf,1,2,210600,https://p.scdn.co/mp3-preview/cce97baa62960c3d2d0cc5b80496fb74b15303ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUSM00000425,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.64,0.65,1.0,-15.15,1.0,0.0401,0.0109,9.88e-05,0.2,0.608,127.711,4.0,,Sony Music Entertainment,P (P) 1989 Sony Music Entertainment Australia Pty Limited,7097 +7098,spotify:track:0fvdqmk2HiMWQUmtTh5LLa,Try to Remember,spotify:artist:7EgGmzFxfUmVFTDDMHEg8d,New World,spotify:album:0Hc8DnnVB8x3nF39yz9hwf,Tom Tom Turnaround,spotify:artist:7EgGmzFxfUmVFTDDMHEg8d,New World,2011-10-01,https://i.scdn.co/image/ab67616d0000b273cb9c8efd91e627640252f955,1,5,180773,https://p.scdn.co/mp3-preview/b450636d65750b0e03c9ea357af9978648a45c9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA371514011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.55,0.368,6.0,-15.208,1.0,0.0271,0.657,0.0915,0.106,0.207,100.021,3.0,,BIANCO,C 2011 Lumi Entertainment Ltd.,7098 +7099,spotify:track:5AI0igDZhr8Au7Y4f3sczL,Can't You See That She's Mine - 2019 - Remaster,spotify:artist:2HBbky0Z08ZcCKVsXWbNE4,The Dave Clark Five,spotify:album:698DblzRJoc9iF0QivVQv2,The Dave Clark Five Return! (2019 - Remaster),spotify:artist:2HBbky0Z08ZcCKVsXWbNE4,The Dave Clark Five,1964-06-01,https://i.scdn.co/image/ab67616d0000b273f52067f724922ea707267e61,1,1,141880,https://p.scdn.co/mp3-preview/27d848c93422c289fce15648a3fbc3d67580ab76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB5KW1901736,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,merseybeat",0.52,0.812,7.0,-8.171,1.0,0.182,0.0961,1.22e-05,0.27,0.81,164.869,4.0,,BMG Rights Management (UK) Ltd,"C © 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Limited, P ℗ 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Limited",7099 +7100,spotify:track:5gZEhPrN1VLqTG1nIAXeNK,I Wanna Love You Forever,spotify:artist:2tFN9ubMXEhdAQvdQxcsma,Jessica Simpson,spotify:album:2z4kcQqO0W8des2nWq5ECY,Sweet Kisses,spotify:artist:2tFN9ubMXEhdAQvdQxcsma,Jessica Simpson,1999-11-16,https://i.scdn.co/image/ab67616d0000b27381bc5415310a2739d3940b7d,1,1,263800,https://p.scdn.co/mp3-preview/eb4abc616dcd6bda317883d7169817af6a3956fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM19902623,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.59,0.666,4.0,-4.047,0.0,0.0244,0.156,0.0,0.136,0.0743,104.042,4.0,,Columbia,P (P) 1999 Sony Music Entertainment Inc.,7100 +7101,spotify:track:2ZNTPtYmAhN9vCwnAgqKn1,"Shout, Pts. 1 & 2",spotify:artist:53QzNeFpzAaXYnrDBbDrIp,The Isley Brothers,spotify:album:3TU9a0ngwVYr7YRe5fJPVH,Shout!,spotify:artist:53QzNeFpzAaXYnrDBbDrIp,The Isley Brothers,1959-08-21,https://i.scdn.co/image/ab67616d0000b273f9ddaa9b3da1cd7275626987,1,11,268560,https://p.scdn.co/mp3-preview/daaef949078ecfea871f20f8af03e65877987e53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USRC15903415,spotify:user:bradnumber1,2024-01-02T03:29:05Z,"classic soul,funk,motown,quiet storm,soul",0.489,0.866,10.0,-7.433,1.0,0.0933,0.753,0.0,0.876,0.416,138.63,4.0,,Epic/Legacy,"P Originally released 1959, (P) Compilation 2015 Sony Music Entertainment",7101 +7102,spotify:track:7nUkkGRaX3SXnSxKkyiTJY,Hey There Lonely Girl,spotify:artist:6XJ5IHDtW2OkjtwVllkANt,Shaun Cassidy,spotify:album:2hmAwFaEuQ7NTR23H9fvjQ,Shaun Cassidy,spotify:artist:6XJ5IHDtW2OkjtwVllkANt,Shaun Cassidy,1977-06-07,https://i.scdn.co/image/ab67616d0000b273eaab6058b67ea07bd1a1a98d,1,5,215066,https://p.scdn.co/mp3-preview/dc67e2467f2c77ef879a15946f1861005971a0cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USCRB1109732,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.351,0.328,0.0,-15.166,1.0,0.0276,0.412,0.0,0.127,0.523,73.444,4.0,,Curb Records,"C 1977 Curb Records, Inc., P 1977 Curb Records, Inc.",7102 +7103,spotify:track:7CHIJREUYyM7vndBQE6iMy,Mr. Know It All,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:0VmE95pr5TSpZWucfyhO5e,Stronger (Deluxe Version),spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2011-10-24,https://i.scdn.co/image/ab67616d0000b273af384269742c6b04308c1be8,1,1,232520,https://p.scdn.co/mp3-preview/6e2f823551082463ddadcd0550a719481aa24b51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBCTA1100219,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.676,0.807,5.0,-5.131,1.0,0.029,0.0284,0.0,0.0701,0.443,95.956,4.0,,RCA Records Label,P (P) 2011 19 Recordings Limited under exclusive license to RCA Records,7103 +7104,spotify:track:6ZLlbkFj2prfzpgwft5Pzg,Harder to Breathe,spotify:artist:2OHEv8cQ8d51jRGsC2KaAJ,"Love\, Marco",spotify:album:0o6QGGbgsU7h47BKbPCDmz,Harder to Breathe,spotify:artist:2OHEv8cQ8d51jRGsC2KaAJ,"Love\, Marco",2020-02-21,https://i.scdn.co/image/ab67616d0000b273a4426fcea651a10dcabd6f42,1,1,165666,https://p.scdn.co/mp3-preview/6646ee2e0f6d7411c002b33de5b1473eaa84a435?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM02000053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.638,0.563,2.0,-7.609,1.0,0.0332,0.515,0.0,0.0758,0.428,90.021,4.0,,Sony Music Entertainment,P (P) 2020 Marco under exclusive licence to Sony Music Entertainment Australia Pty Ltd,7104 +7105,spotify:track:2StkTuGOTc5wM7RaflLclm,If I Were A Carpenter,spotify:artist:5IukvMjujEz3crLaC6SW1T,Swanee,spotify:album:2Ykb6IKqJ1meBAshXhFzbA,This Time It's Different,spotify:artist:5IukvMjujEz3crLaC6SW1T,Swanee,1982-01-01,https://i.scdn.co/image/ab67616d0000b273ed347954e99d5f5940ba3969,1,4,208993,https://p.scdn.co/mp3-preview/dc7eaaf1843090dad3036af3a27e15e71ab7e66a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USLZJ2043158,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.589,0.412,0.0,-15.708,0.0,0.0311,0.0171,2.47e-06,0.154,0.327,108.261,4.0,,Planet Blue Records,"C 1982 John Swan Music, P 1982 John Swan Music",7105 +7106,spotify:track:2pag2vElkdroT8hIO4Gozi,It's a Heartache,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,spotify:album:5D43457Yz0FUwufF4ogvfA,It's a Heartache,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,2006-07-07,https://i.scdn.co/image/ab67616d0000b273a0473825f51aed3fac5fd187,2,1,209760,https://p.scdn.co/mp3-preview/89ed145b9baf62d6b358d76e211c83180fce0e27?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBAJE7700003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,new wave pop,soft rock",0.54,0.709,0.0,-5.539,1.0,0.0294,0.0288,1.27e-06,0.368,0.499,118.878,4.0,,Sanctuary Records,"C © 2006 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2006 Sanctuary Records Group Ltd., a BMG Company",7106 +7107,spotify:track:1Fovcw2l65GDnf3utzqdGC,This Ole House,spotify:artist:0wi4yTYlGtEnbGo4ltZTib,Shakin' Stevens,spotify:album:0X2mbcnFCW3xu4YKXurMLw,This Ole House,spotify:artist:0wi4yTYlGtEnbGo4ltZTib,Shakin' Stevens,1981-03-30,https://i.scdn.co/image/ab67616d0000b273f3984186af9a3f27b7612b84,1,11,185866,https://p.scdn.co/mp3-preview/4b17e7238c6ba9a1dce1517f5cc05cccd002c159?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBARL0801563,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,rockabilly",0.502,0.965,10.0,-2.946,1.0,0.112,0.053,0.0,0.34,0.962,192.811,4.0,,Sony Music CG,P (P) 2009 Sony Music Entertainment UK Limited under exclusive license to BMG Rights Management (UK) Limited,7107 +7108,spotify:track:391CwgcBxvUHmEKda2b5In,I'd Do Anything For Love (But I Won't Do That) - Single Edit,spotify:artist:7dnB1wSxbYa8CejeVg98hz,Meat Loaf,spotify:album:2frbTcZJoMRuAbeXpuOx0Z,Bat Out Of Hell II: Back Into Hell,spotify:artist:7dnB1wSxbYa8CejeVg98hz,Meat Loaf,1993,https://i.scdn.co/image/ab67616d0000b273577bafd70c666aac2e72f69d,2,2,316466,https://p.scdn.co/mp3-preview/0b1b445c7bb2aef55cadf645e159cdbb7afd49e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USMC19341323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,album rock,0.419,0.672,2.0,-6.353,1.0,0.092,0.623,0.0,0.412,0.304,105.212,4.0,,Geffen*,"C © 2002 Geffen Records, P This Compilation ℗ 2002 Geffen Records",7108 +7109,spotify:track:1BHyi5tS67s00jDSlGQXg4,Always,"spotify:artist:0D9AnJzAnYyu1kfJFQDY5d, spotify:artist:19ra5tSw0tWufvUp8GotLo, spotify:artist:1XkoF8ryArs86LZvFOkbyr, spotify:artist:3FIKR274tI6Xk3uw9Dqu5B","Waze & Odyssey, George Michael, Mary J. Blige, Tommy Theo",spotify:album:1QiwBjsjHlnfFSKumhozCu,Always,"spotify:artist:0D9AnJzAnYyu1kfJFQDY5d, spotify:artist:19ra5tSw0tWufvUp8GotLo, spotify:artist:1XkoF8ryArs86LZvFOkbyr","Waze & Odyssey, George Michael, Mary J. Blige",2020-02-28,https://i.scdn.co/image/ab67616d0000b273773521351d16e85e56a7555f,1,1,186300,https://p.scdn.co/mp3-preview/efd391b791642123e2cdeea1aebdfe1d4fe2266c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBCEN1900103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"house,uk house,new wave pop,soft rock,dance pop,hip pop,neo soul,r&b,urban contemporary",0.7,0.914,8.0,-6.43,0.0,0.106,0.0109,0.00296,0.0849,0.913,125.07,4.0,,Ministry of Sound Recordings,P (P) 2019 Under exclusive license to Ministry of Sound Recordings Limited,7109 +7110,spotify:track:5CSKbHjpqborGnlzagyaDo,Love Again,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:0JeyP8r2hBxYIoxXv11XiX,Future Nostalgia (The Moonlight Edition),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2021-02-11,https://i.scdn.co/image/ab67616d0000b273ccdddb2e5349ea0608c3e016,1,8,258004,https://p.scdn.co/mp3-preview/46e92047133c80aca29179d80a11a5decfb2b37f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAHT1901302,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.659,0.667,11.0,-4.668,0.0,0.0339,0.00173,2.85e-05,0.1,0.468,115.982,4.0,,Warner Records,"C A Warner Records UK Release, © 2021 Dua Lipa Limited under exclusive licence to Warner Music UK Limited. Except tracks 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 18 ℗ 2020, tracks 1 & 2 ℗ 2019 Dua Lipa Limited under exclusive licence to Warner Music UK Limited, track 14 ℗ 2020 RCA Records, a division of Sony Music Entertainment, track 19 ℗ 2020 Sueños Globales, LLC, Exclusively Licensed to UMG Recordings Inc, ℗ Universal Music Latino/NEON16., P A Warner Records UK Release, ℗ 2021 Dua Lipa Limited under exclusive licence to Warner Music UK Limited. Except tracks 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 18 ℗ 2020, tracks 1 & 2 ℗ 2019 Dua Lipa Limited under exclusive licence to Warner Music UK Limited, track 14 ℗ 2020 RCA Records, a division of Sony Music Entertainment, track 19 ℗ 2020 Sueños Globales, LLC, Exclusively Licensed to UMG Recordings Inc, ℗ Universal Music Latino/NEON16.",7110 +7111,spotify:track:1PQX5xpQsXNG3s4i5xpwgG,With Ur Love (feat. Mike Posner),"spotify:artist:4m4SfDVbF5wxrwEjDKgi4k, spotify:artist:2KsP6tYLJlTBvSUxnwlVWa","Cher Lloyd, Mike Posner",spotify:album:5bgU9eChoaXgc5DMhRSyug,With Ur Love (feat. Mike Posner),spotify:artist:4m4SfDVbF5wxrwEjDKgi4k,Cher Lloyd,2011-10-30,https://i.scdn.co/image/ab67616d0000b273440d0ca077c6e624b53cd6a8,1,1,226320,https://p.scdn.co/mp3-preview/ee321b448618ee211a427b8c8aa120a324f0ef28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GBHMU1100093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,talent show,dance pop,pop,pop dance,pop rap",0.553,0.858,4.0,-2.181,1.0,0.044,0.00966,0.0,0.203,0.704,169.996,4.0,,Syco Music UK,P (P) 2011 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,7111 +7112,spotify:track:0FgGs3zjTJAv42bwcgeXN5,Only for Sheep,spotify:artist:366F0fK0l1AcbJciJizbDX,The Bureau,spotify:album:1PyxOUuJhhEjzp5FXMK1nq,The Bureau - Remastered & Expanded,spotify:artist:366F0fK0l1AcbJciJizbDX,The Bureau,2005-02-21,https://i.scdn.co/image/ab67616d0000b2737065e62eaddd20151b8d6d3d,1,1,219466,https://p.scdn.co/mp3-preview/0794ab90a1d564e6417cd5e52aff195b713e97e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GBAHT0500042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.601,0.621,2.0,-8.312,0.0,0.0434,0.0153,9.58e-05,0.109,0.899,143.849,4.0,,Warner Strategic Marketing,"C © 2005 Warner Music UK Ltd., P ℗ 2005 Warner Music UK Ltd.",7112 +7113,spotify:track:72WZtWs6V7uu3aMgMmEkYe,You Can't Always Get What You Want,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:0c78nsgqX6VfniSNWIxwoD,Let It Bleed,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1969-12-05,https://i.scdn.co/image/ab67616d0000b27373d92707b0e7da0c493f5b86,1,9,448720,https://p.scdn.co/mp3-preview/0500dea51541628306fd5ee0c4bc335c0f2d12d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176910100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.319,0.627,0.0,-9.611,1.0,0.0687,0.675,7.29e-05,0.289,0.497,85.818,4.0,,Universal Music Group,"C © 2002 ABKCO Music & Records Inc., P ℗ 2002 ABKCO Music & Records Inc.",7113 +7114,spotify:track:6UlOSPVKXHM32ZRecNlgOw,Breakaway,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:3xkK5tqB1kP84ZzWPnJ1x3,Breakaway,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2004,https://i.scdn.co/image/ab67616d0000b2731573829abee986ce991c3e26,1,1,237000,https://p.scdn.co/mp3-preview/a2c2a16842af76f5f322d80017676fed54a4a6d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCTA0400230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.267,0.715,9.0,-4.153,0.0,0.0337,0.0426,9.44e-06,0.108,0.396,160.026,3.0,,RCA Records Label,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT,7114 +7115,spotify:track:7ADMneN05dG5QwUlAEzy85,Style,spotify:artist:79u2TpoFyAscz2Q1WLbja1,WickedStranger,spotify:album:5kYlG7oAz18wQqvmplTCwA,Style,spotify:artist:79u2TpoFyAscz2Q1WLbja1,WickedStranger,2021-07-02,https://i.scdn.co/image/ab67616d0000b273dd722c1f2a352b426b560c18,1,1,181524,,False,0,QZHNC2160197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.78,0.455,2.0,-11.291,1.0,0.0353,0.035,0.00506,0.109,0.209,111.987,4.0,,WickedWittyWise,"C 2021 WickedWittyWise, P 2021 WickedWittyWise",7115 +7116,spotify:track:7tAqJLfHwLyyaYHbqeqBQ1,Instruction,"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:6S2OmqARrzebs0tKUEyXyp, spotify:artist:2ExGrw6XpbtUAJHTLtUXUD","Jax Jones, Demi Lovato, Stefflon Don",spotify:album:1MI6gNg0plcEOgs8aezsjH,Tell Me You Love Me (Deluxe),spotify:artist:6S2OmqARrzebs0tKUEyXyp,Demi Lovato,2017-09-29,https://i.scdn.co/image/ab67616d0000b2734122abdb126fc17db275f710,1,13,166426,https://p.scdn.co/mp3-preview/b2b1d4983ee134d8949633c80322a82f1643b682?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71702567,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,house,pop dance,uk dance,pop,post-teen pop,dancehall,dancehall queen,uk dancehall,uk hip hop",0.771,0.916,4.0,-3.658,0.0,0.199,0.112,0.0,0.125,0.927,121.115,4.0,,Island Records,"C © 2017 Island Records, a division of UMG Recordings, Inc./Hollywood Records, P ℗ 2017 Island Records, a division of UMG Recordings, Inc./Hollywood Records",7116 +7117,spotify:track:1ZZMu5cxiU4eFUNVwMnCJq,Fast Fuse,spotify:artist:11wRdbnoYqRddKBrpHt4Ue,Kasabian,spotify:album:2DHGeuRTttjurZDb0pSjx6,West Ryder Pauper Lunatic Asylum,spotify:artist:11wRdbnoYqRddKBrpHt4Ue,Kasabian,2009,https://i.scdn.co/image/ab67616d0000b273358f726999166b87f00e7066,1,4,249946,https://p.scdn.co/mp3-preview/6eaa1fc931fe8a7726a713071a4463cdb93021ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBARL0700833,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,garage rock,leicester indie,modern rock,rock",0.363,0.991,6.0,-2.561,0.0,0.0791,0.113,0.0265,0.0792,0.476,175.064,4.0,,Columbia,P Track 4 (P) 2007; all other tracks (P) 2009 Sony Music Entertainment UK Limited,7117 +7118,spotify:track:1Lo0QY9cvc8sUB2vnIOxDT,Fast Car,spotify:artist:718COspgdWOnwOFpJHRZHS,Luke Combs,spotify:album:5Uly85dJHHDfHQCsyUQ8gw,Gettin' Old,spotify:artist:718COspgdWOnwOFpJHRZHS,Luke Combs,2023-03-24,https://i.scdn.co/image/ab67616d0000b273ca650d3a95022e0490434ba1,1,14,265493,https://p.scdn.co/mp3-preview/1dc0426c95058783e0fe1d70c41583ca98317108?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,US6XF2200436,spotify:user:bradnumber1,2023-05-07T11:59:41Z,"contemporary country,country",0.712,0.603,8.0,-5.52,1.0,0.0262,0.186,0.0,0.115,0.67,97.994,4.0,,River House Artists/Columbia Nashville,"P (P) 2023 River House Artists LLC, under exclusive license to Sony Music Entertainment. All rights reserved.",7118 +7119,spotify:track:2Q1M18Ksr50i8mjXgl2UDW,Sweet Surrender,spotify:artist:2u0gw0uCWBMiqV7h0N8kai,Wet Wet Wet,spotify:album:1mnjhNxGlBdesgCqqileGw,Step By Step The Greatest Hits,spotify:artist:2u0gw0uCWBMiqV7h0N8kai,Wet Wet Wet,2013-11-25,https://i.scdn.co/image/ab67616d0000b273cecf5d59e55b0264215cbe12,1,11,262573,https://p.scdn.co/mp3-preview/04ef89a5f6dd0d59b2c1e79b4555f354ae4d32cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088990020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,new romantic,new wave pop,soft rock,sophisti-pop",0.657,0.71,7.0,-9.743,1.0,0.0447,0.167,4.83e-05,0.0787,0.525,96.043,4.0,,Universal Music Group,"C © 2013 Mercury Records Limited, P ℗ 2013 Mercury Records Limited",7119 +7120,spotify:track:5eAZSmWJjKNnMposeGbcCh,Poison & Wine,spotify:artist:6J7rw7NELJUCThPbAfyLIE,The Civil Wars,spotify:album:3GtyVMEnfmc3rl8pTYBJqi,Barton Hollow,spotify:artist:6J7rw7NELJUCThPbAfyLIE,The Civil Wars,2012-03-05,https://i.scdn.co/image/ab67616d0000b273465178c7625579e6cf3631d9,1,5,219466,https://p.scdn.co/mp3-preview/7265373b0d7624e4208684d672615aba74f63098?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USW5Q1100005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,indie folk,neo mellow,new americana,stomp and holler",0.284,0.171,1.0,-12.762,1.0,0.0285,0.788,7.03e-05,0.103,0.192,153.948,4.0,,Columbia,P (P) 2011 Sensibility Records LLC & The Civil Wars LLC under exclusive license to Sony Music Entertainment UK Limited,7120 +7121,spotify:track:7hxHWCCAIIxFLCzvDgnQHX,"Lemonade (feat. Gunna, Don Toliver & NAV)","spotify:artist:6MPCFvOQv5cIGfw3jODMF0, spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ, spotify:artist:4Gso3d4CscCijv0lmajZWs, spotify:artist:7rkW85dBwwrJtlHRDkJDAC","Internet Money, Gunna, Don Toliver, NAV",spotify:album:2vGU0DOcfsDee0euvhl1iZ,B4 The Storm,spotify:artist:6MPCFvOQv5cIGfw3jODMF0,Internet Money,2020-08-28,https://i.scdn.co/image/ab67616d0000b2739ca0c952f130e28025209cf0,1,17,195428,https://p.scdn.co/mp3-preview/2c70ae554b0019f3780af30177c211e40aea0512?cid=9950ac751e34487dbbe027c4fd7f8e99,True,5,QZJ842000368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,trap,atl hip hop,melodic rap,rap,trap,rap,canadian hip hop,canadian trap,melodic rap,rap,trap",0.8,0.658,1.0,-6.142,0.0,0.079,0.25,0.0,0.111,0.462,140.042,4.0,,Internet Money Records/ TenThousand Projects,"C © 2020 Internet Money Records / TenThousand Projects, P ℗ 2020 Internet Money Records / TenThousand Projects",7121 +7122,spotify:track:5FgtdSf7I5lClThz2ptWvl,Blue (Da Ba Dee),spotify:artist:64rxQRJsLgZwHHyWKB8fiF,Eiffel 65,spotify:album:65DySolRDG1LNSvRXcWQWN,Europop,spotify:artist:64rxQRJsLgZwHHyWKB8fiF,Eiffel 65,1999,https://i.scdn.co/image/ab67616d0000b273810117c8f9bbc79800076b3a,1,4,283747,https://p.scdn.co/mp3-preview/bbac41684f243a85862b5c010ec7c38e1a8bef5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,ITT019810102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,italian adult pop,italo dance",0.822,0.969,7.0,-11.471,0.0,0.0582,0.259,0.000162,0.39,0.765,128.007,4.0,,,"C 1999 BlissCo., P 1999 BlissCo.",7122 +7123,spotify:track:4nOLOVczHzCMXZOtSlvZgV,Light My Fire,spotify:artist:7GPNaPWw3STF8NYp39pd8G,Amii Stewart,spotify:album:4GmEpUaXxyJ9YhO8pzIa2V,Greatest Hits,spotify:artist:7GPNaPWw3STF8NYp39pd8G,Amii Stewart,2012-10-17,https://i.scdn.co/image/ab67616d0000b2732be7c5a2d95b69b97e3b1f62,1,8,235906,https://p.scdn.co/mp3-preview/fc1c88bc28b215c607a7dda864dc41c42e2736ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA561379854,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg",0.564,0.74,4.0,-12.087,0.0,0.0855,0.128,0.00354,0.388,0.642,135.168,4.0,,Best Buy Classical,"C (C) 2012 Entertain Me Ltd., P (P) 2012 Entertain Me Ltd.",7123 +7124,spotify:track:2Ap8HfVsL7gDHFBvhQAYAb,Flashing Lights,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,spotify:album:4KVrN1mStUcHU6ciBL7dHj,Flashing Lights,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,2013-01-01,https://i.scdn.co/image/ab67616d0000b273982ad9b28d563d2e3fb7ba1b,1,6,260806,https://p.scdn.co/mp3-preview/9c037dbdb2ab81a8b1cc9a35de06234ff287623b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUUM71301071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.706,0.92,9.0,-5.047,0.0,0.0451,0.0105,3.85e-06,0.171,0.786,119.972,4.0,,Universal Music Australia Pty. Ltd.,"C © 2013 Island Records Australia / Universal Music Australia, P ℗ 2013 Island Records Australia / Universal Music Australia",7124 +7125,spotify:track:48eiLW57CqSmCYNZRM2J8M,From a Distance,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,spotify:album:7s86va7L6qq82p0y7KVBeb,Some People's Lives,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,1990,https://i.scdn.co/image/ab67616d0000b2737f6ec8782beefbc3eea88a82,1,7,276346,https://p.scdn.co/mp3-preview/139c7f61c3028a894b2dde8f5effb649e9f797c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAT20000391,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,new wave pop,soft rock",0.536,0.242,7.0,-11.716,1.0,0.0277,0.674,0.0,0.331,0.331,137.989,4.0,,Rhino Atlantic,"C © 2005 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing., P ℗ 2005 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing.",7125 +7126,spotify:track:3DKr9CKd9yOuqOEiMA8Ux7,Ring Of Fire,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,spotify:album:1PDMbS2eZH7LLQ76D4bWri,Love Is,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,1968-01-01,https://i.scdn.co/image/ab67616d0000b273e2681b7320dbe52dbad26112,1,4,297080,https://p.scdn.co/mp3-preview/7b68702274fc5dcad75a3e316b538465ae2ad698?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR10080013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock",0.39,0.597,7.0,-7.202,1.0,0.0342,0.265,6.25e-05,0.433,0.462,88.042,4.0,,Universal Records,"C © 1968 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1968 Universal Records, a Division of UMG Recordings, Inc.",7126 +7127,spotify:track:0IMS1Za69G3KHMX4liB2Nr,Hello Mary Lou (Goodbye Heart),spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,spotify:album:6B2Bk4rcGuYVjlMukQHJJL,Greatest Love Songs,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,2008,https://i.scdn.co/image/ab67616d0000b273b364e6db443d84cdd1ec22db,1,8,139280,https://p.scdn.co/mp3-preview/d66899886db1c7351e49f5d2ccbd1d49978f2ea9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USEM38700116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,doo-wop,rock-and-roll,rockabilly",0.559,0.78,9.0,-6.597,1.0,0.0328,0.158,6.89e-06,0.0793,0.964,98.661,4.0,,Capitol Records,"C © 2008 Capitol Records Inc., P This Compilation ℗ 2008 Capitol Records Inc.",7127 +7128,spotify:track:4ZpXHlV2vQVfPXUvbDSZ92,I Remember You,spotify:artist:4opTS86dN9uO313J9CE8xg,Skid Row,spotify:album:0kSTuMp9GpX9pJR45Bksgi,Skid Row,spotify:artist:4opTS86dN9uO313J9CE8xg,Skid Row,1989-01-24,https://i.scdn.co/image/ab67616d0000b273ae63b58e90bef8888658ae21,1,10,313693,https://p.scdn.co/mp3-preview/dd8f7501a0e80f2e050b75702c200b3f167cf322?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USAT20901911,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam metal,hard rock,metal,rock",0.345,0.531,0.0,-12.708,1.0,0.0305,0.00642,7.28e-06,0.14,0.49,176.302,4.0,,Rhino Atlantic,"C 2009 © 1989 Atlantic Recording Corp., P ℗ 1989 Atlantic Recording Corp. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",7128 +7129,spotify:track:36orMWv2PgvnzXsd5CJ0yL,Post Malone (feat. RANI),"spotify:artist:20gsENnposVs2I4rQ5kvrf, spotify:artist:3SYnDj7btg9gFY7ps8m5d5","Sam Feldt, RANI",spotify:album:45nsubB5EsRVWWqx0ED1ET,Post Malone (feat. RANI) [Joe Stone Remix],"spotify:artist:20gsENnposVs2I4rQ5kvrf, spotify:artist:4kwEd1P9j15ZqUVP5zK7Pv","Sam Feldt, Joe Stone",2019-08-16,https://i.scdn.co/image/ab67616d0000b273fe0b8453036cd35aa89eb6ad,1,2,174444,https://p.scdn.co/mp3-preview/df2e38f031e06398552d6b1fa46fb366c48d53dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,NLZ541900734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,tropical house,dutch pop",0.59,0.642,7.0,-3.87,1.0,0.122,0.0771,0.0,0.105,0.651,107.356,4.0,,Spinnin' Remixes,"C © 2019 Spinnin' Remixes / SpinninRecords.com, P ℗ 2019 Spinnin' Remixes / SpinninRecords.com",7129 +7130,spotify:track:2hdy9Wt9qp7M7d0U3ossu2,If U Seek Amy,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:2tve5DGwub1TtbX1khPX5j,Circus (Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2008-12-02,https://i.scdn.co/image/ab67616d0000b27354c6edd554935d73e159e199,1,6,216520,https://p.scdn.co/mp3-preview/3901b9f163a5fb42017c80e2d45261bf0e440919?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USJI10801329,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.717,0.587,4.0,-7.296,0.0,0.0339,0.0192,0.0,0.0523,0.544,129.954,4.0,,Jive,P (P) 2008 Zomba Recording LLC,7130 +7131,spotify:track:6f5sSC3ORfpUMYtE4J06VW,He Ain't Heavy He's My Brother,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:5ourevL93kFzjWH6lIyT42,20 Golden Greats,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1978-07-01,https://i.scdn.co/image/ab67616d0000b273759620a4e1348ace16d6c682,1,20,258800,https://p.scdn.co/mp3-preview/0b028e1124b7d9ffc201353bbb2fc3e6aa6bb8ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBGYU6900005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.319,0.275,7.0,-13.195,1.0,0.0303,0.444,0.000365,0.183,0.253,75.754,4.0,,BMG Rights Management (US) LLC,"C © 1978 BMG Rights Management (US) LLC, P ℗ 1978 BMG Rights Management (US) LLC",7131 +7132,spotify:track:21kduC12lDUqlqnYKUsDXW,Breaking up Is Hard to Do,spotify:artist:7u1mqP3ykglpCB2c1p1p5I,The Partridge Family,spotify:album:4Ze1fA73mUq8aEKK2fa3Ih,The Definitive Collection,"spotify:artist:0isDnZYMWbwDz7hzw0XRjt, spotify:artist:7u1mqP3ykglpCB2c1p1p5I","David Cassidy, The Partridge Family",1974,https://i.scdn.co/image/ab67616d0000b27309eba48d48ebd1ab53b85f19,1,11,153640,https://p.scdn.co/mp3-preview/fdb7a2386db12ccf2b156f417e04486d2edd66ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USAR19901036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.715,0.546,8.0,-9.753,1.0,0.0327,0.534,0.0,0.0769,0.944,121.742,4.0,,Arista,"P (P) 1974, 2000 Arista Records, Inc.",7132 +7133,spotify:track:5Kt64y0teh7Y23o8JHNC8l,Baby Blue,spotify:artist:3NIenDn2OsCH7GDyY3Uw2w,The Echoes,spotify:album:2TEGR6zilNxZ0E2pPKJmDq,Goldisc Records From The Vault Volume 1,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2006-02-13,https://i.scdn.co/image/ab67616d0000b273dcbf6ff4c2c793ed4b6fd4e8,1,2,156813,https://p.scdn.co/mp3-preview/7979b3f55c11f8a446e9f733ea4e038547efcfca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,uscgh0651106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.5,0.373,7.0,-13.548,1.0,0.0275,0.779,0.0,0.0667,0.727,132.368,4.0,,Goldisc,"C (C) 2006 Goldisc, P (P) 2006 Timeless Entertainment Corp.",7133 +7134,spotify:track:2dy2C0StZ3yiEeb0Aoolcn,Bang Bang,"spotify:artist:5CCwRZC6euC8Odo6y9X8jr, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj","Rita Ora, Imanbek",spotify:album:4xeVBTBwaVNQhUdIRC4G9s,Bang,"spotify:artist:5CCwRZC6euC8Odo6y9X8jr, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj","Rita Ora, Imanbek",2021-02-12,https://i.scdn.co/image/ab67616d0000b2730b94c63fde72efeb6fd512c4,1,2,179578,https://p.scdn.co/mp3-preview/ec4790fb839ecd2630ddc2eb8efbb3b68aed23da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAHS2100007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,electro house,pop dance,slap house",0.764,0.846,10.0,-2.743,0.0,0.0636,0.159,0.000263,0.0475,0.777,122.992,4.0,,Atlantic Records UK,"C An Atlantic Records UK release, © 2021 Warner Music UK Limited., P An Atlantic Records UK release., ℗ 2021 Warner Music UK Limited.Except Track 1 2021 Warner Music UK Limited/ What a DJ Limited",7134 +7135,spotify:track:7LoVbAV8iBUWJJ5g17Lsor,On & On,spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt,Illy,spotify:album:0AVD0hJCteRdN51sXiAEOz,Cinematic,spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt,Illy,2013-11-08,https://i.scdn.co/image/ab67616d0000b273214b8a06e0faec3acca9420e,1,4,187108,https://p.scdn.co/mp3-preview/2a7957effbf6592f8206e4253bc3f82744adb212?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUWA01300031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian trap",0.58,0.675,8.0,-6.676,1.0,0.238,0.015,0.0,0.176,0.783,175.799,4.0,,WM Australia,"C © 2013 ONETWO, P ℗ 2013 ONETWO",7135 +7136,spotify:track:1CRtPEP5cePJIhlsjvwj8F,Mouldy Old Dough,spotify:artist:6PjhWre0MnI0Ww95vATRhK,Lieutenant Pigeon,spotify:album:0Y7hVgiaQIl621gDKtxMPd,The Greatest Hits,spotify:artist:6PjhWre0MnI0Ww95vATRhK,Lieutenant Pigeon,2008-05-04,https://i.scdn.co/image/ab67616d0000b273ede79fd6fa9eaf8b38817f34,1,1,167813,https://p.scdn.co/mp3-preview/049bcfcd65c84c17e6959d48c616ac9589b98d6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAJE7200302,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,novelty",0.735,0.522,11.0,-9.434,1.0,0.033,0.192,0.591,0.0787,0.925,107.704,4.0,,Union Square Music,"C © 2008 Makepeace Music Ltd., P ℗ 2008 Makepeace Music Ltd.",7136 +7137,spotify:track:2zjDv3FWXNdGEmXmIYf1yV,You Found Me,spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,spotify:album:2bE8GcQ4FpUrYaPwZpg9QL,You Found Me,spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,2008-11-21,https://i.scdn.co/image/ab67616d0000b27392fb104a6b2fac25bda3a25d,1,1,243506,https://p.scdn.co/mp3-preview/9cfbb71ac7b2247137f25f9018820bb515c23ff1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10803009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop,pop rock",0.366,0.791,8.0,-5.463,0.0,0.0423,0.018,0.0,0.153,0.398,76.057,4.0,,Epic,P (P) 2008 SONY BMG MUSIC ENTERTAINMENT,7137 +7138,spotify:track:0BCPKOYdS2jbQ8iyB56Zns,Clocks,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:0RHX9XECH8IVI3LNgWDpmQ,A Rush of Blood to the Head,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2002-08-27,https://i.scdn.co/image/ab67616d0000b273de09e02aa7febf30b7c02d82,1,5,307879,https://p.scdn.co/mp3-preview/f7af250125a083c8212e4b7dd508a12c12aeac37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,GBAYE0200771,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.577,0.749,5.0,-7.215,0.0,0.0279,0.599,0.0115,0.183,0.255,130.97,4.0,,Parlophone Records Limited,"C © 2002 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2002 Parlophone Records Ltd, a Warner Music Group Company",7138 +7139,spotify:track:0AH6WMe3OlAlUb5miXt2FQ,Only Girl (In The World),spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:7vN82vd1Vq44fjlhjfvHJp,Loud,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2010-11-16,https://i.scdn.co/image/ab67616d0000b2732ed326786e4c61c6b1dbf222,1,5,235493,https://p.scdn.co/mp3-preview/19e14594536fff9304c31bfa100a0fada74d6b28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USUM71023200,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.789,0.716,11.0,-4.241,0.0,0.0432,0.129,1.07e-05,0.069,0.611,125.906,4.0,,Def Jam Recordings,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",7139 +7140,spotify:track:4HjwGX3pJKJTeOSDpT6GCo,What's New Pussycat?,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,spotify:album:6mKja2qWIfJ0BiYjg0PDWq,What's New Pussycat,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,1966-01-01,https://i.scdn.co/image/ab67616d0000b27340cce76a437e4a66d76f123c,1,1,128800,https://p.scdn.co/mp3-preview/c974f733dfda027561a03756323564689a5ea54a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBF076520020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion",0.392,0.453,2.0,-13.297,1.0,0.171,0.752,0.0,0.115,0.574,183.92,3.0,,UMC (Universal Music Catalogue),"C © 1966 Decca Music Group Limited, P ℗ 1966 Decca Music Group Limited",7140 +7141,spotify:track:4IFYR5smTnHYCLP82AiDrJ,Officially Missing You,spotify:artist:0le01dl1WllSHhjEXRl4in,Tamia,spotify:album:0WdxQHUdLZBGbscwYV72zM,More,spotify:artist:0le01dl1WllSHhjEXRl4in,Tamia,2004,https://i.scdn.co/image/ab67616d0000b27373891035db78b08e4a5deffd,1,3,242466,https://p.scdn.co/mp3-preview/072eb0d157bc01745e7434000b9e5f715ce68ff6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USEE10340451,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,contemporary r&b,hip pop,r&b,urban contemporary",0.476,0.407,4.0,-9.239,0.0,0.0368,0.247,0.0,0.144,0.226,178.258,4.0,,Elektra Records,"C © 2003 Elektra Entertaiment for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2003 Elektra Entertainment for the United States and WEA International Inc. for the world outside of the United States.",7141 +7142,spotify:track:4W4wYHtsrgDiivRASVOINL,Love Shack,spotify:artist:3gdbcIdNypBsYNu3iiCjtN,The B-52's,spotify:album:5BAzAODqIwttjj7wxmlNMS,Cosmic Thing,spotify:artist:3gdbcIdNypBsYNu3iiCjtN,The B-52's,1989-06-23,https://i.scdn.co/image/ab67616d0000b27393bf4c5e67f6a72149d94c94,1,4,320680,https://p.scdn.co/mp3-preview/12892842ef266b839d14aed00de47b8137fd7a8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USRE18900030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,new romantic,new wave,new wave pop,permanent wave,post-punk,rock,zolo",0.701,0.803,5.0,-6.786,0.0,0.0545,0.0544,1.54e-06,0.7,0.903,133.608,4.0,,Warner Records,"C © 1989 Reprise Records, P ℗ 1989 Reprise Records",7142 +7143,spotify:track:1PvunFPBDQKAefclw33Oqh,If You Don't Mean It,spotify:artist:7DBNoRaD1Ff4PUjwmjcXpg,Dean Geyer,spotify:album:6z2DcDUUUdplZXRlPBPE8y,Rush,spotify:artist:7DBNoRaD1Ff4PUjwmjcXpg,Dean Geyer,2007-05-26,https://i.scdn.co/image/ab67616d0000b27391a88ec2bf0fbfe1c49e17f1,1,1,192120,https://p.scdn.co/mp3-preview/82c68c381473ea0a3ae8fa5fa299c41b617bbe4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM00700354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.445,0.792,9.0,-3.847,0.0,0.0354,8.71e-06,0.0,0.381,0.423,105.021,4.0,,Sony Music Entertainment,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,7143 +7144,spotify:track:6j3FBU8OVNAJ0axmcd3fsS,Stay Awake - Radio Edit,spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,spotify:album:7hTgDSZl5iqnOF9K6HZLpX,Stay Awake,spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,2011-08-26,https://i.scdn.co/image/ab67616d0000b273e01ac148c2b4b1b28e91b8f2,1,1,204195,https://p.scdn.co/mp3-preview/a711bde1e6988037c2362dbf4b4e2b7986ed3741?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBCEN1101150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,uk dance",0.532,0.958,9.0,-3.619,0.0,0.139,0.00794,0.0,0.0936,0.322,134.886,4.0,,Ministry of Sound Recordings,P (P) 2011 Ministry of Sound Recordings Limited,7144 +7145,spotify:track:2xPbEhd1ilXNzIYUYEBUuL,We Connect,spotify:artist:3q8tRS0hCMVCylgKAoA0ya,Stacey Q,spotify:album:71st36nPTXAgWnEaNg9AZa,Better Than Heaven,spotify:artist:3q8tRS0hCMVCylgKAoA0ya,Stacey Q,1986-08-18,https://i.scdn.co/image/ab67616d0000b273af663332c29212056de51b05,1,2,254973,https://p.scdn.co/mp3-preview/16bc0aaf48c4e830767d8507eac3a5b0c95a3eb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USAT29902110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hi-nrg",0.734,0.759,8.0,-7.074,0.0,0.0345,0.0998,1.03e-05,0.0779,0.842,133.745,4.0,,Atlantic Records,"C © 1986 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1986 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",7145 +7146,spotify:track:42B7tsc3N17lBufA1tcTWa,"Back in Time - featured in ""Men In Black 3""",spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,spotify:album:3zDXeAmrZkjvWsQqa8niwc,Global Warming (Deluxe Version),spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2012-11-16,https://i.scdn.co/image/ab67616d0000b273b7c01ad5c9836e918fd08e3d,1,4,207440,https://p.scdn.co/mp3-preview/03b7d0b54b19ab95c621633f2761f8285d8f000b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USRC11200227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop",0.727,0.91,0.0,-4.516,1.0,0.0466,0.00211,1.01e-06,0.165,0.747,127.088,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",7146 +7147,spotify:track:24fQpRwKFkC3Fe8QtvvrNw,Back for Good - Radio Mix,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,spotify:album:5QnHvl0ne6yEhRGw3ajvFF,Nobody Else (Deluxe),spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,1995,https://i.scdn.co/image/ab67616d0000b273fac1a50f185d5f49a7e76f3c,1,2,242266,https://p.scdn.co/mp3-preview/0a24721ab80a30ab192a9b1c0097569f40c65446?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9500020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop,talent show",0.601,0.504,5.0,-9.761,1.0,0.0284,0.31,0.0,0.137,0.564,78.986,4.0,,RCA Records Label,P This Compilation (P) 2006 SONY BMG MUSIC ENTERTAINMENT (UK) Limited,7147 +7148,spotify:track:4G8gkOterJn0Ywt6uhqbhp,Radioactive,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:6htgf3qv7vGcsdxLCDxKp8,Night Visions,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273b2b2747c89d2157b0b29fb6a,1,1,186813,https://p.scdn.co/mp3-preview/10a6946f6466990d6ffee5821d745999c1492932?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USUM71201074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.448,0.784,9.0,-3.686,1.0,0.0625,0.0999,0.000108,0.668,0.237,136.239,4.0,,Kid Ina Korner / Interscope,"C © 2012 KIDinaKORNER/Interscope Records, P ℗ 2012 KIDinaKORNER/Interscope Records",7148 +7149,spotify:track:5q10Ov2JEbODDK2tk4NYWW,Tribal Dance,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,spotify:album:31ZELjZPFpr5326F1uojYm,Unlimited Hits & Remixes,spotify:artist:18JD8DVlD1fakDAw7E9LFC,2 Unlimited,2014-05-05,https://i.scdn.co/image/ab67616d0000b273a8440fea5eb100ae2a5d4458,1,6,218899,https://p.scdn.co/mp3-preview/b3a67b4e7a2cb2e61fef90ce08e838b6dea5aed3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BEAA19505020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,hip house",0.653,0.982,5.0,-7.388,0.0,0.051,0.06,0.00481,0.097,0.76,130.074,4.0,,Byte Records,"C 2014 BYTE Records, P 2014 BYTE Records",7149 +7150,spotify:track:43G3McVkRa8V7oGQzfQuRr,Let's Go,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:4UFgeduzEZegQE74xUwI6J,Candy-O,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,1979,https://i.scdn.co/image/ab67616d0000b273975e4ea669bae6009a4996c5,1,1,213173,https://p.scdn.co/mp3-preview/c514fcefd18db91637af08496e9fb628f7018783?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USEA28400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.651,0.83,2.0,-8.785,1.0,0.0316,0.00824,0.0429,0.0837,0.917,131.282,4.0,,Rhino/Elektra,"C © 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",7150 +7151,spotify:track:0msX2RyUnG8b23YsSIThnH,Down Among The Dead Men,spotify:artist:573nSltoBinkbQXk5JSY9U,Flash and the Pan,spotify:album:0P9q63bMtm9s8VDQp6cJSK,Collection,spotify:artist:573nSltoBinkbQXk5JSY9U,Flash and the Pan,1995-01-01,https://i.scdn.co/image/ab67616d0000b273d712038832a36fa270bd40f1,1,3,289160,https://p.scdn.co/mp3-preview/87f80b04adda017ce860c81387f79e0af7611926?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07800017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.51,0.915,9.0,-9.675,0.0,0.0318,0.325,0.52,0.299,0.657,142.793,4.0,,Albert Productions,"C © 1995 BMG AM Pty Ltd., P ℗ 1995 BMG AM Pty Ltd.",7151 +7152,spotify:track:5UDDktLyjyYAIfNSvwUGrk,Peppermint Twist,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,spotify:album:26FFCS8Hx6Ocr6MovNitos,Sweet Fanny Adams,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,1974-04,https://i.scdn.co/image/ab67616d0000b27390d593e1ae333763c4d84c79,1,5,208520,https://p.scdn.co/mp3-preview/000d78b0159828e9e3045bab238bddec15821624?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,DEC767400022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam rock,hard rock",0.536,0.952,4.0,-4.028,1.0,0.0406,0.0083,0.0356,0.154,0.961,95.612,4.0,,RCA Records Label,P (P) This Compilation 2005 SONY BMG MUSIC ENTERTAINMENT (UK) Ltd.,7152 +7153,spotify:track:7lXOqE38eCr979gp27O5wr,If I Knew,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:58ufpQsJ1DS5kq4hhzQDiI,Unorthodox Jukebox,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2012-12-07,https://i.scdn.co/image/ab67616d0000b273926f43e7cce571e62720fd46,1,10,132640,https://p.scdn.co/mp3-preview/6887f06b4663fe0f845e12b50952a4551d1d3c38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USAT21206913,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.522,0.413,3.0,-5.86,1.0,0.0316,0.722,0.0,0.0854,0.49,175.972,3.0,,Atlantic Records,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",7153 +7154,spotify:track:528CAH5pTLq86oZ52fHifA,The Flame,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,spotify:album:1aYjx4tcmci0lYwT5sKgvM,Lap Of Luxury,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,1988-04-12,https://i.scdn.co/image/ab67616d0000b273ee30d27bd0a70b01e14eca11,1,3,338800,https://p.scdn.co/mp3-preview/7f535b12a81cd9e0a5676ff2d0b237b775cefac8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM18700122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,glam metal,glam rock,hard rock,mellow gold,power pop,rock,singer-songwriter,soft rock",0.629,0.581,4.0,-11.856,1.0,0.027,0.513,2.06e-06,0.0755,0.359,97.074,4.0,,Epic/Legacy,P (P) 1988 Sony Music Entertainment,7154 +7155,spotify:track:2RWxrpsFshOBFwRBRstUlQ,Check On It (feat. Bun B & Slim Thug),"spotify:artist:6vWDO969PvNqNYHIOW5v0m, spotify:artist:45a6gCQWq61lIUDmr1tKuO, spotify:artist:0st5vgzw9XkH5ALJiUM1lE","Beyoncé, Bun B, Slim Thug",spotify:album:77eZ5eMEh3U0KWricrbevO,B'Day,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2006-09-04,https://i.scdn.co/image/ab67616d0000b273632e4eafb2ffba59a2ae4500,1,11,210453,https://p.scdn.co/mp3-preview/c02c6de972fdc28d2923f49117968032e61749a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM10600137,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b,dirty south rap,houston rap,crunk,dirty south rap",0.705,0.796,7.0,-6.845,1.0,0.267,0.0708,0.0,0.388,0.864,166.042,4.0,,Sony Urban Music/Columbia,P (P) 2006 SONY BMG MUSIC ENTERTAINMENT,7155 +7156,spotify:track:442j8VxaB60dWf9cBFuX5w,Almost Is Never Enough,"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:2Rf4X6m0oayCJhaJ5K63GQ","Ariana Grande, Nathan Sykes",spotify:album:6czdbbMtGbAkZ6ud2OMTcg,Yours Truly,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2013-01-01,https://i.scdn.co/image/ab67616d0000b273ea28881e9e363244a4a2347b,1,10,327773,https://p.scdn.co/mp3-preview/447c550ca83710c87bf041b6423ef74d061f1785?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USUM71310268,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop,talent show,teen pop",0.324,0.327,2.0,-7.494,1.0,0.0409,0.825,0.0,0.101,0.334,81.328,4.0,,Universal Records,"C © 2013 Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2013 Universal Republic Records, a division of UMG Recordings, Inc.",7156 +7157,spotify:track:5awZBMKId8PN6ZrQh2Z3Rp,You're An Ocean,spotify:artist:7FtVJzRtpQpU61nBwB7cKN,Fastball,spotify:album:0wF1xNJmPx1LGAgRtYj8ad,The Harsh Light Of Day,spotify:artist:7FtVJzRtpQpU61nBwB7cKN,Fastball,2000-01-01,https://i.scdn.co/image/ab67616d0000b273d4c269d0dcb1fe82ed2368a4,1,2,197866,https://p.scdn.co/mp3-preview/790feb1bf1770ad5a378da191f5ba90ae86be1f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USHR10023701,spotify:user:bradnumber1,2022-01-12T23:16:54Z,"pop rock,post-grunge",0.543,0.958,6.0,-3.736,1.0,0.0431,0.0367,7.05e-06,0.27,0.69,134.087,4.0,,Hollywood Records,"C © 2000 Hollywood Records, Inc., P ℗ 2000 Hollywood Records, Inc.",7157 +7158,spotify:track:0CsM8VGDi38kusMv3pxyj1,True - Single Edit,spotify:artist:2urZrEdsq72kx0UzfYN8Yv,Spandau Ballet,spotify:album:2ZcceaFPxi5CuqoBUfedKn,True - The Digital E.P.,spotify:artist:2urZrEdsq72kx0UzfYN8Yv,Spandau Ballet,2008-04-25,https://i.scdn.co/image/ab67616d0000b273b82e04673372a3e30bc0c111,1,1,329146,https://p.scdn.co/mp3-preview/b42f91b402e4ca4141a48177712aac6b2f7838c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBAYK8300004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,sophisti-pop,synthpop",0.742,0.533,0.0,-9.098,1.0,0.0288,0.459,0.148,0.064,0.391,97.395,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",7158 +7159,spotify:track:7jGzYUZ2Bgg8BDfYlQRfn8,Wild Thing,spotify:artist:57xdnSVt4ahJCIXYLieQ25,The Troggs,spotify:album:1myVNI7Ucy8g9HudbJ8Vu2,From Nowhere,spotify:artist:57xdnSVt4ahJCIXYLieQ25,The Troggs,1966-07-25,https://i.scdn.co/image/ab67616d0000b27327b24620f0b3b592472552f5,1,1,155333,https://p.scdn.co/mp3-preview/3cab3c6dd9558a40528e647e1c90f29492bbe015?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBF086600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.453,0.658,9.0,-13.472,1.0,0.0539,0.741,0.0288,0.135,0.761,203.871,4.0,,UMC (Universal Music Catalogue),"C © 1966 Mercury Records Limited, P ℗ 1989 Mercury Records Limited",7159 +7160,spotify:track:5RqR4ZCCKJDcBLIn4sih9l,Party Girl,spotify:artist:1XLWox9w1Yvbodui0SRhUQ,StaySolidRocky,spotify:album:4NPX54YtocHqTOq6yXDEFM,Party Girl,spotify:artist:1XLWox9w1Yvbodui0SRhUQ,StaySolidRocky,2020-04-21,https://i.scdn.co/image/ab67616d0000b273f3fb166b5515fb19b070773c,1,1,147800,https://p.scdn.co/mp3-preview/3a6283e721e8cc1f8fd9ca5b589ea7915d876aaf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USSM12002247,spotify:user:bradnumber1,2021-08-08T09:26:31Z,melodic rap,0.728,0.431,6.0,-9.966,0.0,0.0622,0.749,0.0,0.0996,0.629,130.022,4.0,,Columbia,"P (P) 2020 Columbia Records, a Division of Sony Music Entertainment",7160 +7161,spotify:track:42AYTFbt1sl7NJkeIH4iod,Raining In My Heart,"spotify:artist:3wYyutjgII8LJVVOLrGI0D, spotify:artist:4r7JUeiYy24L7BuzCq9EjR","Buddy Holly, The Crickets",spotify:album:1tTTDe47X0rTO4q7RidIan,The Definitive Collection,spotify:artist:3wYyutjgII8LJVVOLrGI0D,Buddy Holly,2006-04-18,https://i.scdn.co/image/ab67616d0000b273988665e0435d5283cfd38b1d,1,26,167866,https://p.scdn.co/mp3-preview/7fcb3c66df860bafe595bf0817046a15a4135bb7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USMC15805871,spotify:user:bradnumber1,2022-01-12T23:09:45Z,"classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,doo-wop,rock-and-roll,rockabilly",0.674,0.113,7.0,-19.916,1.0,0.0353,0.87,0.000387,0.117,0.596,105.159,4.0,,Geffen,"C © 2006 UMG Recordings, Inc., P This Compilation ℗ 2006 UMG Recordings, Inc.",7161 +7162,spotify:track:0wruS6JEQCGeYrvsCIdG0Z,Right Round (feat. Ke$ha),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:6LqNN22kT3074XbTVUrhzX","Flo Rida, Kesha",spotify:album:5YR5kiArxVflj0yKeupoP1,Right Round,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2009-02-09,https://i.scdn.co/image/ab67616d0000b273f9ca1ac1fea0c8c7220e4210,1,1,202680,https://p.scdn.co/mp3-preview/aa6819dace2539d3cb23bfdc55c8e7e30865ab53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT20900316,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,dance pop,pop",0.453,0.975,7.0,-3.074,1.0,0.291,0.0518,1.57e-06,0.223,0.155,129.174,4.0,,Atlantic Records,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",7162 +7163,spotify:track:7l2tmgUhV7Y2aJHjiszifg,Mr. Perfectly Fine (Taylor’s Version) (From The Vault),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:2MbdQUj7tAaaBBhUwJE3KG,Mr. Perfectly Fine (Taylor’s Version) (From The Vault),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2021-04-07,https://i.scdn.co/image/ab67616d0000b27345731927c3396bb4c0276543,1,1,277591,https://p.scdn.co/mp3-preview/c6eddb6e6eb25f1d7c3443ff74a445edfb379471?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUG12100638,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.661,0.819,11.0,-6.269,0.0,0.0519,0.167,0.0,0.0647,0.724,135.937,4.0,,Taylor Swift,"C © 2021 Taylor Swift, P ℗ 2021 Taylor Swift",7163 +7164,spotify:track:2d4e45fmUnguxh6yqC7gNT,Dirty Deeds Done Dirt Cheap,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:76mvVgXOde87B9aOzLXCOI,Dirty Deeds Done Dirt Cheap,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1976-09-20,https://i.scdn.co/image/ab67616d0000b27368b03027356fb05501948f62,1,1,231933,https://p.scdn.co/mp3-preview/73f5aa60896cf68aee31ca088ca180263f2f876c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,AUAP07600046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.668,0.906,11.0,-4.881,0.0,0.17,0.214,0.00245,0.135,0.507,135.653,4.0,,Columbia,P (P) 1976 Australian Music Corporation Pty Ltd.,7164 +7165,spotify:track:1DObcq9MoYIEFuKS6SOCqQ,Attracting Flies,spotify:artist:2VAnyOxzJuSAj7XIuEOT38,AlunaGeorge,spotify:album:5WwesTmhyEx9cNre8fwnm9,Body Music (Deluxe),spotify:artist:2VAnyOxzJuSAj7XIuEOT38,AlunaGeorge,2013-01-01,https://i.scdn.co/image/ab67616d0000b27318e6a543f3371fa014af3b43,1,3,188592,https://p.scdn.co/mp3-preview/d19f67f3e441ea98e6f553aca4cc6265ca587442?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71207663,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,house,uk dance",0.76,0.856,0.0,-6.142,1.0,0.0561,0.0552,5.13e-05,0.146,0.93,98.008,4.0,,Universal Music Group,"C © 2013 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2013 Universal Island Records, a division of Universal Music Operations Limited",7165 +7166,spotify:track:6HUnnBwYZqcED1eQztxMBN,Solo Dance,spotify:artist:4ehtJnVumNf6xzSCDk8aLB,Martin Jensen,spotify:album:3BcNHuKlAm57APDcwh7LJq,Solo Dance,spotify:artist:4ehtJnVumNf6xzSCDk8aLB,Martin Jensen,2016-11-04,https://i.scdn.co/image/ab67616d0000b273950d67dbe3f31f1d9a5d06a2,1,1,174933,https://p.scdn.co/mp3-preview/bc167a00bd4177368f5c68e567ab9e0291c95301?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DK4YA1610901,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"danish electronic,edm,pop dance",0.744,0.836,6.0,-2.396,0.0,0.0507,0.0435,0.0,0.194,0.36,114.965,4.0,,Virgin,"C © 2016 disco:wax, under exclusive license to Virgin Records, a division of Universal Music GmbH, P ℗ 2016 disco:wax, under exclusive license to Virgin Records, a division of Universal Music GmbH",7166 +7167,spotify:track:37sINbJZcFdHFAsVNsPq1i,Superheroes,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:6yd9yk8nFcHalXzy7mgaDx,No Sound Without Silence,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2014-09-15,https://i.scdn.co/image/ab67616d0000b27359d2079e141301ab89b6cbc5,1,2,245466,https://p.scdn.co/mp3-preview/195c70c6cda7717f5db543a114586bb52b1eced5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBARL1400978,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.49,0.885,3.0,-4.121,1.0,0.0396,0.00218,0.0,0.0741,0.64,166.996,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,7167 +7168,spotify:track:5yvnuEZmDBNH4uEhqdayCS,Sunday Morning Coming Down - Live,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,spotify:album:4E2eUhFHqTG2pu9MN1NDIF,The Essential Johnny Cash,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,2002-02-12,https://i.scdn.co/image/ab67616d0000b273c17beab3e27f18af397a00b2,2,9,249866,https://p.scdn.co/mp3-preview/18f3b3eb27bfb606ac929077724201fbf4cc2359?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSM17000572,spotify:user:bradnumber1,2021-11-11T04:13:04Z,"arkansas country,outlaw country,rock",0.375,0.536,8.0,-6.648,1.0,0.0275,0.363,0.000147,0.453,0.807,78.239,4.0,,Columbia/Legacy,P This compilation (P) 2002 Sony Music Entertainment,7168 +7169,spotify:track:3KzIRHURM1dMrHhTOEVKIo,(Glad I'm Not) a Kennedy,spotify:artist:67r8AUFLw2RfU1fkzzvwCK,Shona Laing,spotify:album:5WFNHmOWMMSCpHfK1o2Wcp,South,spotify:artist:67r8AUFLw2RfU1fkzzvwCK,Shona Laing,1987-06-01,https://i.scdn.co/image/ab67616d0000b27315be4a3d9044ad6100278f1d,1,2,207293,https://p.scdn.co/mp3-preview/bc78e50c3e628a4088ddd9cbd46bde37ec332c01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZRI11301401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic nz pop,0.687,0.587,0.0,-12.666,1.0,0.0319,0.163,3.58e-06,0.0959,0.804,112.311,4.0,,Shona Laing,"C 2013 Shona Laing, P 2013 Shona Laing",7169 +7170,spotify:track:5VVuxxuQIJD0pjjFls1DKL,No One Knows,spotify:artist:4pejUc4iciQfgdX6OKulQn,Queens of the Stone Age,spotify:album:05lAJqgSkDJwrgLJckTslD,No One Knows (International Version),spotify:artist:4pejUc4iciQfgdX6OKulQn,Queens of the Stone Age,2002-01-01,https://i.scdn.co/image/ab67616d0000b2734c7b46257098f397bc0fa73a,1,1,255066,https://p.scdn.co/mp3-preview/5fa5a3431e35c36e811569fff11cb24c6130a5f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10211291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,modern rock,palm desert scene,rock,stoner metal,stoner rock",0.518,0.538,0.0,-5.818,1.0,0.0486,0.0137,0.000398,0.141,0.687,170.953,4.0,,Universal Music GmbH,"C (C) 2002 Interscope Records, P (P) 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",7170 +7171,spotify:track:1xNcBAoUw8Hz6LqK2jt4Ff,Call on Me - Radio Mix,spotify:artist:5sm0jQ1mq0dusiLtDJ2b4R,Eric Prydz,spotify:album:7thKR3tw162CqNqIRdwZ3z,Call on Me (Radio Mix),spotify:artist:5sm0jQ1mq0dusiLtDJ2b4R,Eric Prydz,2004-09-10,https://i.scdn.co/image/ab67616d0000b2731cd65e046a28cef435feff21,1,1,171360,https://p.scdn.co/mp3-preview/31bc0a16df83fa78aa422068e79d2aa960ac3249?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,GBCEN0400130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,electro house,house,pop dance,progressive electro house,progressive house",0.597,0.837,10.0,-6.518,1.0,0.375,0.00427,0.00115,0.839,0.447,126.342,4.0,,Pryda Presents,P (P) 2004 Data Records / Ministry of Sound Recordings Limited / Wincraft Music Limited,7171 +7172,spotify:track:2CKZS6WdOyj9hjgW0H4DLI,Do to You,spotify:artist:5ghiRwgyYZfnmC0Upu6ZtR,Machinations,spotify:album:4jH016PDfYAuNbO2whYLlg,Uptown,spotify:artist:5ghiRwgyYZfnmC0Upu6ZtR,Machinations,1988,https://i.scdn.co/image/ab67616d0000b273c62ed5bf8f2134306e9f6ceb,1,3,253066,https://p.scdn.co/mp3-preview/8e00dd0edb1775290647ceed329ecd925050a645?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUMU08800147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.848,0.594,5.0,-12.072,1.0,0.0375,0.0705,0.306,0.264,0.875,119.803,4.0,,WM Australia,"C © 1988 Mushroom Records Pty Ltd, P ℗ 1988 Mushroom Records Pty Ltd",7172 +7173,spotify:track:0DfG1ltJnZyq4Tx3ZLL7ZU,Rock Me Amadeus,spotify:artist:0hLd40hVpRDGENe4KGZLnW,Falco,spotify:album:4shdkbv0jIstZhSrpMR9wh,Falco 3,spotify:artist:0hLd40hVpRDGENe4KGZLnW,Falco,1985-02-19,https://i.scdn.co/image/ab67616d0000b27387e51905aaafd4b2e46e9121,1,1,202236,https://p.scdn.co/mp3-preview/9c9d703a1a205173679fd31d39d3aecb0bed7d1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,ATB158500018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"austropop,neue deutsche welle",0.61,0.817,4.0,-9.45,0.0,0.133,0.296,0.00336,0.0884,0.89,176.735,4.0,,Ariola,P (P) 1985 Sony Music Entertainment Austria GmbH,7173 +7174,spotify:track:6hVPqxsb9EmuXJ3osbNGQa,Quicksand - Standard Version,spotify:artist:3K2zB87GZv1krx031en5VA,La Roux,spotify:album:0jBkrUrXIxtaMrfAkHjXoZ,La Roux,spotify:artist:3K2zB87GZv1krx031en5VA,La Roux,2009,https://i.scdn.co/image/ab67616d0000b2731ea4804c178ed97c2c1a0241,1,3,185693,https://p.scdn.co/mp3-preview/17a2df35e3aecfec1969fe8bb0f7ed9beb562444?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70816237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,electropop,indietronica,neo-synthpop",0.732,0.897,10.0,-3.454,0.0,0.04,0.00339,2.44e-05,0.191,0.946,137.03,4.0,,Polydor,"C © 2008 Polydor Ltd. (UK), P ℗ 2008 Polydor Ltd. (UK)",7174 +7175,spotify:track:6RtPijgfPKROxEzTHNRiDp,Rude,spotify:artist:0DxeaLnv6SyYk2DOqkLO8c,MAGIC!,spotify:album:0RZ4Ct4vegYBmL9g88TBNi,Don't Kill the Magic,spotify:artist:0DxeaLnv6SyYk2DOqkLO8c,MAGIC!,2014-06-25,https://i.scdn.co/image/ab67616d0000b273604f8ac39f15d287e251f193,1,1,224840,https://p.scdn.co/mp3-preview/7cdc54190cf06e5269d8406c5a7bba71a7e04cf1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,CAV161300016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,reggae fusion",0.773,0.758,1.0,-4.993,1.0,0.0381,0.0422,0.0,0.305,0.925,144.033,4.0,,Latium Records/RCA Records,P (P) 2014 Sony Music Entertainment International Limited,7175 +7176,spotify:track:0UOxp1BpnD8uPQMKU4wKjz,I Shot The Sheriff,spotify:artist:6PAt558ZEZl0DmdXlnjMgD,Eric Clapton,spotify:album:408nODJ1r3nO7f3qWkCrCB,461 Ocean Blvd. (Deluxe Edition),spotify:artist:6PAt558ZEZl0DmdXlnjMgD,Eric Clapton,1974-07-01,https://i.scdn.co/image/ab67616d0000b273d752956b8a82ffa07baa835e,1,5,263746,https://p.scdn.co/mp3-preview/5ba0be7349716243826ebdf5a38d8579e14f08d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,NLF057490008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,electric blues,mellow gold,rock,singer-songwriter,soft rock",0.73,0.639,7.0,-11.025,0.0,0.0524,0.0853,0.00221,0.102,0.658,94.395,4.0,,Polydor,"C © 2004 Polydor Ltd. (UK), P This Compilation ℗ 2004 Polydor Ltd. (UK)",7176 +7177,spotify:track:2RSYcHr1dqXD7UmHXHbbaq,Let's Kiss (Like Angels Do),spotify:artist:67PiUcvCvLFNUNBiKagzQm,Wendy Matthews,spotify:album:6ccsW7Itr6E8o1JSAPrUo6,Emigre,spotify:artist:67PiUcvCvLFNUNBiKagzQm,Wendy Matthews,1990,https://i.scdn.co/image/ab67616d0000b273d6a4ea1b56524750877a46e3,1,11,209466,https://p.scdn.co/mp3-preview/43fe160b4c9b641a57301fa1904ccd1f98056608?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUBM09020311,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.675,0.87,10.0,-10.645,1.0,0.0453,0.0179,0.000465,0.267,0.669,117.973,4.0,,rooArt,P (P) 1995 rooArt Pty Ltd,7177 +7178,spotify:track:7gDQdfMgNwlSkqG1YbbIvN,And I Am Telling You (with Nicole Scherzinger),"spotify:artist:5o61gIxxfbohs0sm3B88d6, spotify:artist:40xbWSB4JPdOkRyuTDy1oP","Sam Bailey, Nicole Scherzinger",spotify:album:1L7QZiua9ZStfJk7bBmGAF,The Power of Love,spotify:artist:5o61gIxxfbohs0sm3B88d6,Sam Bailey,2014-03-24,https://i.scdn.co/image/ab67616d0000b2732e280f8abb49361bd5394da3,1,4,260013,https://p.scdn.co/mp3-preview/7533415545c1474608d002f194bc769e9d12e13b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GBHMU1400012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"talent show,uk pop,dance pop,pop,post-teen pop",0.354,0.757,10.0,-3.764,1.0,0.0461,0.202,2.68e-06,0.273,0.246,118.221,4.0,,Syco Music,P (P) 2014 Simco Limited,7178 +7179,spotify:track:3xkoUGbf11dLvsfIdgfmIp,Hold Me Now,spotify:artist:5jVeqi3PNaTOajfvBa4uFn,Thompson Twins,spotify:album:518KEiiREhbb0ks7rA6ACM,The Best of Thompson Twins Greatest Mixes,spotify:artist:5jVeqi3PNaTOajfvBa4uFn,Thompson Twins,1988,https://i.scdn.co/image/ab67616d0000b27368e0a297b44a693d243d3bc5,1,6,429173,https://p.scdn.co/mp3-preview/6327e1b0f5a95c13949ec4004144c585a52f564b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL8300064,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop",0.871,0.491,7.0,-13.407,1.0,0.0392,0.573,0.00862,0.12,0.73,107.92,4.0,,Arista,"P (P) 1982, 1983, 1984, 1985, 1987, 1988 BMG/Arista Records Ltd.",7179 +7180,spotify:track:0VFcEHSgg2wiuLDuhK9oxD,Sheila,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,spotify:album:73ZfQq8MhP6KiLvi5eGIY0,Sheila,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,2008-11-17,https://i.scdn.co/image/ab67616d0000b273088e1df2b7b83c71d7bcd644,1,4,127773,https://p.scdn.co/mp3-preview/a2546829e7e49e252b3565f97470ddd7281b27c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,USJGN0801324,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,rock-and-roll",0.58,0.654,2.0,-8.485,0.0,0.0681,0.0273,0.000142,0.149,0.499,131.357,4.0,,Sony/ATV Europe Ltd,C 2008 Sony/ATV Europe Ltd,7180 +7181,spotify:track:7A0IJM6FR1HQphfdfN66pI,Long As I Live,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,spotify:album:1nmxUznbVkZorzeY4olXco,Sex & Cigarettes,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,2018-03-23,https://i.scdn.co/image/ab67616d0000b273daa640ca60a76a4240c55b28,1,3,290906,https://p.scdn.co/mp3-preview/1dd0384823c96cbb809a259f473c8bc7dde662d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USUM71800544,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,r&b,urban contemporary",0.533,0.749,3.0,-5.106,0.0,0.117,0.0631,0.000109,0.0684,0.569,89.989,4.0,,Def Jam Recordings,"C © 2018 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2018 Def Jam Recordings, a division of UMG Recordings, Inc.",7181 +7182,spotify:track:07nH4ifBxUB4lZcsf44Brn,Blame (feat. John Newman),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:34v5MVKeQnIo0CWYMbbrPf","Calvin Harris, John Newman",spotify:album:48zisMeiXniWLzOQghbPqS,Motion,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2014-10-31,https://i.scdn.co/image/ab67616d0000b2738fba5806a323efd272677c4d,1,3,212960,https://p.scdn.co/mp3-preview/8cc0178f211851bea0780a38757d301509d20bd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,GBARL1400567,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,dance pop",0.414,0.857,0.0,-4.078,0.0,0.0808,0.0287,0.00574,0.343,0.348,128.024,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,7182 +7183,spotify:track:1NLYuHxlrtDF8iSEQExmZu,She Is,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,spotify:album:5pwPik6VKu2r55aO2X7DYC,747 (Deluxe),spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,2014-09-30,https://i.scdn.co/image/ab67616d0000b27330fe384d6352cb2f71ed6cd8,1,8,201426,https://p.scdn.co/mp3-preview/4f5adb10af7e607c291c54d7aab16f66e7f166e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11401133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country pop,country road",0.463,0.815,1.0,-4.734,1.0,0.049,0.199,0.0,0.0946,0.574,160.204,4.0,,Capitol Records Nashville,"C © 2014 Lady A Entertainment, LLC, under exclusive license to Capitol Records Nashville, P ℗ 2014 Lady A Entertainment, LLC, under exclusive license to Capitol Records Nashville",7183 +7184,spotify:track:1Hh5gDiXZGhtKfHzJYYhSJ,Give It Up,spotify:artist:2OQkm6IvTu9MeHkGQQ4cSK,Cut 'N' Move,spotify:album:6Dvs8Sy0kCLhx0yDWvIhym,"Peace, Love & Harmony",spotify:artist:2OQkm6IvTu9MeHkGQQ4cSK,Cut 'N' Move,1993-01-08,https://i.scdn.co/image/ab67616d0000b273c2515db0201e4568a5176907,1,2,265200,https://p.scdn.co/mp3-preview/b65205a47384b3b1db18a00ab7051781a3f5380a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,DKABA9403902,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.698,0.92,5.0,-8.507,0.0,0.0361,0.00327,0.00222,0.0665,0.76,119.965,4.0,,Parlophone Denmark,"C © 1993 Parlophone Music Denmark, a division of Warner Music Denmark A/S, P ℗ 1993 Parlophone Music Denmark, a division of Warner Music Denmark A/S",7184 +7185,spotify:track:6TWezDt5piKJEbQC8GxQYa,Global Concepts,spotify:artist:42crL07E4WPfVovyUtMpvC,Robert DeLong,spotify:album:11kqs72VoLU1o9ab2A9lm4,Global Concepts,spotify:artist:42crL07E4WPfVovyUtMpvC,Robert DeLong,2012-12-03,https://i.scdn.co/image/ab67616d0000b2738ffa17d715e1ab1bda054c83,1,1,278160,https://p.scdn.co/mp3-preview/24bcd10879337aa790c5bc490f0b40c3be71d766?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USYAH1200404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie poptimism,modern alternative rock,shimmer pop",0.733,0.801,4.0,-3.728,0.0,0.195,0.356,9.37e-06,0.365,0.664,107.961,4.0,,Liberator Music,"C 2012 Glassnote Entertainment Group LLC, P 2012 Glassnote Entertainment Group LLC",7185 +7186,spotify:track:4VdYpmlf6EDmqbAcWc2jt7,When You're Gone,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:0XypvgyeJm4mNjH4QRHmYR,The Best Damn Thing,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2007,https://i.scdn.co/image/ab67616d0000b27359c1960ef8f6d502269b8008,1,5,240866,https://p.scdn.co/mp3-preview/d60908f0a1ba12f1ad21495b141122a79346f20d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10700004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,candy pop,dance pop,pop",0.456,0.714,4.0,-3.98,0.0,0.0332,0.208,0.0,0.296,0.155,142.072,4.0,,RCA Records Label,"P (P) 2007 RCA Records, a Unit of SONY BMG MUSIC ENTERTAINMENT",7186 +7187,spotify:track:1NW32mer4GFgDvDZ0idTUt,Nothin' But A Good Time - Remastered 2006,spotify:artist:1fBCIkoPOPCDLUxGuWNvyo,Poison,spotify:album:41zwJpZ2Xw6o5P0OHHGE5t,Nothing But A Good Time,spotify:artist:1fBCIkoPOPCDLUxGuWNvyo,Poison,2009-01-01,https://i.scdn.co/image/ab67616d0000b273864c4ad1d9285c8f8d58749f,1,1,223666,https://p.scdn.co/mp3-preview/6ae645e3caa09c071f674fe69efeebcebba8faee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USCA20501298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,rock",0.57,0.973,1.0,-2.771,1.0,0.0764,0.0182,0.0,0.203,0.557,129.051,4.0,,Capitol Records,"C © 2009 Capitol Records, LLC, P ℗ 2009 Capitol Records, LLC",7187 +7188,spotify:track:2wz5weI4PREzpexKfrKgwv,Sweet Dreams,spotify:artist:488v7rQzthLNK22r0UvMie,La Bouche,spotify:album:7hP1XPeFjOYTM2xgruJZyo,Greatest Hits,spotify:artist:488v7rQzthLNK22r0UvMie,La Bouche,2007,https://i.scdn.co/image/ab67616d0000b273b08ab36b08a1e2d184ef127d,1,1,204586,https://p.scdn.co/mp3-preview/2098aa641d00924b736bf04452fc1864aa1c7867?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,DED160200020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,europop,german techno",0.656,0.956,11.0,-5.647,0.0,0.0536,0.0784,0.0247,0.0923,0.831,133.713,4.0,,MCI,P (P) 2006 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GMBH,7188 +7189,spotify:track:4q5cQyhhUW5X0PQVzA8VsG,Mr. Jones,spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,spotify:album:3Eli3WxEALRUBF06CvcDtV,August And Everything After,spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,1993-01-01,https://i.scdn.co/image/ab67616d0000b273cbc9c30af28079cc16cb8095,1,3,272506,https://p.scdn.co/mp3-preview/66350d687f6596c2d75205b8a7ae507ebd19511d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10000287,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge,rock",0.58,0.814,0.0,-6.582,1.0,0.0363,0.173,1.8e-06,0.246,0.722,141.606,4.0,,Universal Music Group,"C © 1993 DGC Records, P ℗ 1993 DGC Records",7189 +7190,spotify:track:0hrBpAOgrt8RXigk83LLNE,The Sign,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,spotify:album:5UwIyIyFzkM7wKeGtRJPgB,The Sign,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,1993-12-24,https://i.scdn.co/image/ab67616d0000b273fda5556cb6981c3113df6175,1,4,191240,https://p.scdn.co/mp3-preview/80fb2519938df63631258cfb4908e6a906c15e32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,SEVJH0803404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,new wave pop",0.808,0.786,4.0,-6.897,0.0,0.0447,0.00928,0.0701,0.0574,0.899,96.987,4.0,,Playground Music,"C 2014 Mega Records, a Division of Playground Music Scandinavia AB, P 1993 Mega Records, a Division of Playground Music Scandinavia AB",7190 +7191,spotify:track:3SdingSsFcZDZAyvcJbgAw,Can't Buy Me Love - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:6wCttLq0ADzkPgtRnUihLV,A Hard Day's Night (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1964-07-10,https://i.scdn.co/image/ab67616d0000b273e230f303815e82a86713eedd,1,7,131866,https://p.scdn.co/mp3-preview/8689407d60032b10e6cdd7bddd09506ad467051a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAYE0601444,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.483,0.677,0.0,-5.91,1.0,0.0593,0.283,0.0,0.321,0.842,170.72,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",7191 +7192,spotify:track:5xdVqHtFS0eLuNp4Z8Wbpa,Good For You,"spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx, spotify:artist:13ubrt8QOOCPljQ2FL1Kca","Selena Gomez, A$AP Rocky",spotify:album:3Kbuu2tHsIbplFUkB7a5oE,Revival (Deluxe),spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2015-10-09,https://i.scdn.co/image/ab67616d0000b2736bc7473df6c9d1fd90972e84,1,6,221280,https://p.scdn.co/mp3-preview/adfda3f9b3bf16151f347e78574aa6dd7185fe56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USUM71508741,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop,east coast hip hop,hip hop,rap",0.609,0.674,5.0,-6.484,0.0,0.0502,0.179,0.0,0.069,0.228,88.945,4.0,,Selena Gomez PS,"C © 2015 Interscope Records, P ℗ 2015 Interscope Records",7192 +7193,spotify:track:012Q7KJWBkuLKsuuveiN1w,Don't Miss You,spotify:artist:45zLG5M6J0SN3A8qVeNZmM,Amy Pearson,spotify:album:4bBKX4VnpwdytjZKlOSnXo,Who I Am,spotify:artist:45zLG5M6J0SN3A8qVeNZmM,Amy Pearson,2007-11-20,https://i.scdn.co/image/ab67616d0000b2736a1859a0240f6f58875ba96b,1,1,199586,https://p.scdn.co/mp3-preview/0dae647e69b05b6f46c3579c14f9c79dfca92b17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM00700235,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.471,0.822,7.0,-3.743,1.0,0.0371,0.0805,1.67e-05,0.341,0.536,182.88,4.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,7193 +7194,spotify:track:1ppuHX1oVMku5LTL0swNZP,Peace Train,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,spotify:album:2B719vL1xtPTwYs0j5BuAo,Teaser And The Firecat,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,1971-01-01,https://i.scdn.co/image/ab67616d0000b273bdcddb67975065e17a0cb168,1,10,251333,https://p.scdn.co/mp3-preview/716dec7925bb49b30d544c79a6a632604dfb68b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN7100033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british folk,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.61,0.582,0.0,-10.422,1.0,0.044,0.119,3.76e-05,0.12,0.781,82.492,4.0,,Universal-Island Records Ltd.,"C © 2000 Universal Island Records Ltd. A Universal Music Company., P ℗ 1971 Island Records, a division of Universal Music Operations Limited",7194 +7195,spotify:track:721DwsHOeKf7zHRABCR2rh,You're the Voice,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4cBfyeNYbJAmOq0sl3Hijd,Whispering Jack,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1986,https://i.scdn.co/image/ab67616d0000b273710d3231cb732a6a7ff91a4e,1,2,300733,https://p.scdn.co/mp3-preview/af0b3b4882ad5184421718dc99300789ce100531?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,AUBM08641001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.502,0.66,10.0,-11.852,1.0,0.0394,0.393,0.000138,0.608,0.722,85.209,4.0,,RCA Victor,"P (P) 1986 Wheatley Records, Pty. Ltd.",7195 +7196,spotify:track:4f3aDtFMsq8wlAQKhZEmKz,Who's Gonna Save Us?,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:1JfbMyeFCCSpjRGfvmtvNV,Modern Artillery,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,2003-10-28,https://i.scdn.co/image/ab67616d0000b2737ad3ab6f3e5244d895728b37,1,3,201293,https://p.scdn.co/mp3-preview/997483749444f862079d796e1c0660a934233df6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEMO0300058,spotify:user:bradnumber1,2021-11-11T04:08:11Z,"australian alternative rock,australian rock,australian ska",0.577,0.903,7.0,-3.954,1.0,0.0557,0.0114,0.0,0.133,0.545,140.227,4.0,,BMG Rights Management (Australia) Pty Ltd.,"C © 2018 BMG Rights Management (Australia) Pty Ltd., P ℗ 2018 BMG Rights Management (Australia) Pty Ltd.",7196 +7197,spotify:track:6rvXznPVt21K7Adhw9zKEJ,Fade To Grey,spotify:artist:0EPf9vAXPdFV5Ezp1sMX8B,Visage,spotify:album:5LE6PG8LCZXYIfJJ5UESgT,Visage,spotify:artist:0EPf9vAXPdFV5Ezp1sMX8B,Visage,1980-01-01,https://i.scdn.co/image/ab67616d0000b273ba2756a49e1ce45d42d60683,1,5,239359,https://p.scdn.co/mp3-preview/16a106e23f14ec0af2e494a9be63ba83f34ba7a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR38080067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"early synthpop,new romantic,synthpop",0.604,0.423,2.0,-17.156,0.0,0.0374,0.000387,0.0328,0.0857,0.472,112.344,4.0,,Universal Music Group,"C © 1980 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1980 Universal Records, a Division of UMG Recordings, Inc.",7197 +7198,spotify:track:2271qTmPggEs2srV3i4g2e,Keep Searchin' (We'll Follow the Sun),spotify:artist:3c8WoNjBfyLJhFObE6RHgs,Del Shannon,spotify:album:2LjBUwKueWIe8fhYGuUYBb,"1,661 Seconds with Del Shannon",spotify:artist:3c8WoNjBfyLJhFObE6RHgs,Del Shannon,1965-01-01,https://i.scdn.co/image/ab67616d0000b273eb0be23d6f4b2873b257bec7,1,12,128973,https://p.scdn.co/mp3-preview/14c0be86e36710e6bc860d268044465043211128?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USPBR0502306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rock-and-roll,rockabilly",0.407,0.679,4.0,-9.465,0.0,0.0359,0.238,0.929,0.814,0.855,149.195,4.0,,Mole Hole Records,C (C) 2007 Mole Hole Records,7198 +7199,spotify:track:1vuxzuOz2FVHuUVPY68rGd,Sukiyaki,spotify:artist:5t5SLR66rZDxwuVHTSATOt,4 P.M.,spotify:album:5FJbZWw3FUcWn8q3Q1hvXs,Best Love Songs Of All Time,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2019-06-21,https://i.scdn.co/image/ab67616d0000b273fdc2dc6d3c14f2a1f2aca952,1,9,162093,https://p.scdn.co/mp3-preview/cdd75e41b208fd0f2fe35834d8f7d08b4d66ac83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLR29400093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,contemporary r&b,0.363,0.388,11.0,-8.608,0.0,0.034,0.749,0.0,0.363,0.348,76.099,4.0,,UME - Global Clearing House,"C © 2019 UMG Recordings, Inc., P ℗ 2019 UMG Recordings, Inc. FP",7199 +7200,spotify:track:0w5Bdu51Ka25Pf3hojsKHh,Hard Times,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:1c9Sx7XdXuMptGyfCB6hHs,After Laughter,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2017-05-12,https://i.scdn.co/image/ab67616d0000b273dbd83e179619408e5d05cc99,1,1,182693,https://p.scdn.co/mp3-preview/eb046d4ef05b36f6509b1e764ff2919b22c2baed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAT21700948,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.695,0.818,5.0,-5.379,0.0,0.0334,0.00647,4.87e-06,0.0219,0.916,119.965,4.0,,Fueled By Ramen,"C © 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",7200 +7201,spotify:track:1LNTSZ2tzwhYpN9xopkDqI,More Than We Know,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,spotify:album:5M31iLPzYuYxkpSO5tBOMN,HERE,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2016-11-04,https://i.scdn.co/image/ab67616d0000b273c2b8088bf48953a269f7a1fd,1,14,275786,https://p.scdn.co/mp3-preview/e462849b867d37c292a79baa0d108aa3d5e86516?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USRC11602392,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b",0.711,0.847,8.0,-3.811,0.0,0.145,0.231,1.38e-05,0.281,0.674,84.073,4.0,,RCA Records Label,"P (P) 2016 RCA Records, a divsion of Sony Music Entertainment",7201 +7202,spotify:track:78pHMOI9qUWonIMySjO3XY,Shut Up!,spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,spotify:album:6RSpKXfvVzCqtLi6VySxsU,Still Not Getting Any,spotify:artist:2p4FqHnazRucYQHyDCdBrJ,Simple Plan,2004-10-25,https://i.scdn.co/image/ab67616d0000b2736cb8cbc645eebdfc0ebffa72,1,1,182986,https://p.scdn.co/mp3-preview/741d9e0b55ff7fdfa786a5697c6090a675403d31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAT20402497,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop punk,canadian punk,canadian rock,modern rock,neon pop punk,pop punk,pop rock",0.507,0.959,1.0,-4.763,1.0,0.118,0.00104,0.0,0.147,0.436,165.136,4.0,,143/Atlantic Entertainment,"C © 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States excluding Australia and New Zealand., P ℗ 2004 Lava Records LLC for the United States and WEA International Inc. for the world outside of the United States",7202 +7203,spotify:track:47BBI51FKFwOMlIiX6m8ya,I Want It That Way,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:5ySxm9hxBNss01WCL7GLyQ,Millennium,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1999-05-18,https://i.scdn.co/image/ab67616d0000b2732160c02bc56f192df0f4986b,1,2,213306,https://p.scdn.co/mp3-preview/4eec31d974fd622ac7858affd9759f2017dd87e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USJI19910614,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.689,0.694,6.0,-5.83,0.0,0.027,0.257,0.0,0.148,0.482,99.039,4.0,,Jive,P (P) 1999 Zomba Recording LLC,7203 +7204,spotify:track:3jHCXrZNz8fQEEf4BpWCAj,Purpose,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,13,210160,https://p.scdn.co/mp3-preview/cac5ab9f110a48b486719f6f5937adef82771f04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516767,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.481,0.285,0.0,-10.848,1.0,0.0424,0.9,0.0,0.123,0.316,130.029,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",7204 +7205,spotify:track:3e2KBwxibC1rq4bA5TNKW2,Psycho,spotify:artist:3dXaa6jwM7B52GZpaJEIr5,Puddle Of Mudd,spotify:album:64gmkAgWQqEGJtvAaGm2La,Famous,spotify:artist:3dXaa6jwM7B52GZpaJEIr5,Puddle Of Mudd,2007-01-01,https://i.scdn.co/image/ab67616d0000b273d4db245afb190263a38b52f1,1,4,210653,https://p.scdn.co/mp3-preview/99140d7faee536d0aace149a864857a36ea1c011?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USUM70741373,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge",0.573,0.897,1.0,-3.549,1.0,0.0553,0.00473,0.0,0.278,0.463,126.034,4.0,,Flawless Records,"C © 2007 Flawless / Geffen Records, P ℗ 2007 Flawless / Geffen Records",7205 +7206,spotify:track:1izlCIGf2AbqgQqOvyj6RU,My Baby Loves Lovin',spotify:artist:0xWTQw2TL6j7mHGOTltsEW,White Plains,spotify:album:2XSXhTdmLsQWcXeIVQRgkn,The Adventures Of Priscilla: Queen Of The Desert,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1994-01-01,https://i.scdn.co/image/ab67616d0000b27342d35d1c934cff0fa800bd14,1,4,165560,https://p.scdn.co/mp3-preview/7df9a23edaf35a89749f04cc7238cbff82659d4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF077020060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic uk pop,merseybeat",0.638,0.625,10.0,-12.124,1.0,0.0293,0.128,0.0,0.0691,0.89,125.927,4.0,,Universal Music Australia Pty. Ltd.,"C © 1994 Polydor Records, P This Compilation ℗ 1994 Polydor Records",7206 +7207,spotify:track:62ke5zFUJN6RvtXZgVH0F8,Only Love Can Hurt Like This,spotify:artist:4fwuXg6XQHfdlOdmw36OHa,Paloma Faith,spotify:album:3jRG3qOfsSSW3SBdeBiIfC,A Perfect Contradiction (Outsiders' Expanded Edition),spotify:artist:4fwuXg6XQHfdlOdmw36OHa,Paloma Faith,2014-03-10,https://i.scdn.co/image/ab67616d0000b273c4576f635253db511bb43789,1,4,232893,https://p.scdn.co/mp3-preview/0fbdfe1aa9aa59bcbf1e3f556ddcfa488430b1ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBARL1301427,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,talent show,uk pop",0.566,0.885,8.0,-4.528,1.0,0.0818,0.0958,9.97e-05,0.334,0.304,90.99,4.0,,RCA Records Label,P (P) 2014 BBC/(P) 2014 Sony Music Entertainment UK Limited,7207 +7208,spotify:track:6wMVpi8yuhMwqDsS2TCBZD,Working Class Man,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:53DtbEC4uD4tbrsLDXO6uN,30:30 Hindsight (Deluxe Version),spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,2014-08-29,https://i.scdn.co/image/ab67616d0000b27315dd906554c74df1af9901e1,1,21,251093,https://p.scdn.co/mp3-preview/fea096e74e2751896f824431d363392b7e73af74?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00629010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.379,0.944,11.0,-3.867,1.0,0.0947,0.0109,3.27e-05,0.158,0.389,138.309,4.0,,Bloodlines,"C 2014 Bloodlines, P 2014 Bloodlines",7208 +7209,spotify:track:6LtvuBGgVkvJc5BkbdH3dH,Hot Chilli Woman,spotify:artist:3IJFGnsUboabVEbJz1UR91,Noiseworks,spotify:album:7AszIyfkX9nTYs6Md4tBhh,Greatest Hits,spotify:artist:3IJFGnsUboabVEbJz1UR91,Noiseworks,1992-03-05,https://i.scdn.co/image/ab67616d0000b2738ab3a3015d39464755d92500,1,12,203120,https://p.scdn.co/mp3-preview/78c0b09cefb5974a226e2a88de11433ca2db61ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUSM09200032,spotify:user:bradnumber1,2022-08-31T00:23:28Z,australian rock,0.448,0.982,9.0,-7.311,1.0,0.0628,0.000996,0.0048,0.191,0.387,157.086,4.0,,Columbia,P (P) 1992 Sony Music Entertainment Australia Pty Ltd,7209 +7210,spotify:track:2iRMw9WkPW4JRoiyo63Hp3,To All the Girls I've Loved Before (with Willie Nelson),"spotify:artist:4etuCZVdP8yiNPn4xf0ie5, spotify:artist:5W5bDNCqJ1jbCgTxDD0Cb3","Julio Iglesias, Willie Nelson",spotify:album:46xgry5j79IBHzX73dkgYU,The Essential Willie Nelson,spotify:artist:5W5bDNCqJ1jbCgTxDD0Cb3,Willie Nelson,2015-01-01,https://i.scdn.co/image/ab67616d0000b273cd06c30fffa0c176b7fe0065,2,4,211493,https://p.scdn.co/mp3-preview/0f7e2a10b76f2aa898a5436b3c1e10d4d0e1addf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USSM19904976,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,classic country pop,classic texas country,country,country rock,nashville sound,outlaw country,singer-songwriter",0.516,0.484,6.0,-10.171,1.0,0.0296,0.592,7.77e-06,0.083,0.355,82.304,4.0,,Columbia Nashville Legacy,P This Compilation (P) 2015 Sony Music Entertainment,7210 +7211,spotify:track:5U2yUQc2yUoQuH4ACPbcWq,Busted,spotify:artist:0E2Jf1UHMqdQDdH12mc712,Claes Janson,spotify:album:05eBedkqgXKAqcsLPXtFh7,The Best of Ray Charles,spotify:artist:0E2Jf1UHMqdQDdH12mc712,Claes Janson,2009-05-12,https://i.scdn.co/image/ab67616d0000b273ed657c7cf94232243f803d8a,1,4,189173,https://p.scdn.co/mp3-preview/ce88bf66922b561401aece4c2bb97fbc0ed45740?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,SEBJA0901004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,swedish jazz,0.466,0.43,0.0,-10.834,1.0,0.0461,0.704,4.76e-05,0.0966,0.775,183.77,3.0,,Gazell Records,"C 2009 Gazell Records AB, P 2009 Gazell Records AB",7211 +7212,spotify:track:6FDEI5NvhyOWwfKmvTzoWJ,You Beat Me To The Punch - Stereo Version,spotify:artist:1cjZk1xXn3YCToNg3uJpA7,Mary Wells,spotify:album:6lKBzs3A5C1sSimDr1gu75,The One Who Really Loves You,spotify:artist:1cjZk1xXn3YCToNg3uJpA7,Mary Wells,1963-01-01,https://i.scdn.co/image/ab67616d0000b273dc1325fe12eda19d5c7c126b,1,3,165333,https://p.scdn.co/mp3-preview/4998242ca73ac29c245cddd74da0253860843dee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO10400232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,soul,southern soul",0.747,0.395,11.0,-14.502,0.0,0.0459,0.613,0.0,0.198,0.961,113.515,4.0,,Universal Music Group,"C © 1963 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1963 Motown Records, a Division of UMG Recordings, Inc.",7212 +7213,spotify:track:36AWdhZIGLUTkWpJDhe7va,2 Become 1,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:3x2jF7blR6bFHtk4MccsyJ,Spice,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,1996-01-01,https://i.scdn.co/image/ab67616d0000b27363facc42e4a35eb3aa182b59,1,3,241026,https://p.scdn.co/mp3-preview/9df9f269f7a4e53e6b8eacbbadf96ab1b6a44970?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAAA9600212,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.645,0.665,6.0,-7.878,1.0,0.0268,0.325,1.82e-05,0.238,0.704,143.969,4.0,,Virgin Records,"C © 1996 Virgin Records Limited, P ℗ 1996 Virgin Records Limited",7213 +7214,spotify:track:0vek6wjRWWevITeoCHE2AS,Rock and Roll (Part 1),spotify:artist:61zv3hX7l838ZyhaDyAx8S,Gary Glitter,spotify:album:2OJ3hrfbAj2sdswRqIj5CB,The Ultimate Gary Glitter,spotify:artist:61zv3hX7l838ZyhaDyAx8S,Gary Glitter,2011-11-13,https://i.scdn.co/image/ab67616d0000b2730a80d9a18e73dffcd033e9f6,1,1,184840,https://p.scdn.co/mp3-preview/452adbee4b9132307204934cd624cc297d110f8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBCQV7200001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.694,0.4,2.0,-11.491,1.0,0.0727,0.0402,0.0176,0.529,0.38,129.813,4.0,,Snapper Music,"C (C) 2011 Snapper Music, P (P) 2011 Snapper Music",7214 +7215,spotify:track:2KH16WveTQWT6KOG9Rg6e2,Eye of the Tiger,spotify:artist:26bcq2nyj5GB7uRr558iQg,Survivor,spotify:album:3t3BbpFJiGcXl4jI5CRLLA,Rocky IV,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1985,https://i.scdn.co/image/ab67616d0000b273f4a2ccbe20d6d52f16816812,1,4,245640,https://p.scdn.co/mp3-preview/ae5fdf6639eeb270ed9732750b65a3656b807154?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USVR19600010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam metal,hard rock,soft rock",0.817,0.599,0.0,-9.249,0.0,0.0328,0.132,0.000311,0.0873,0.548,108.873,4.0,,Volcano/Legacy,"P (P) 1993 Chrysalis Records Ltd.; 1982, 1985, 1986, 2006 Volcano Entertainment III, LLC",7215 +7216,spotify:track:1FzZiA9gPkMJcvB9auYUya,The Day You Went Away,spotify:artist:67PiUcvCvLFNUNBiKagzQm,Wendy Matthews,spotify:album:1P7aWdof1yRCa6cKuM5myR,Lily,spotify:artist:67PiUcvCvLFNUNBiKagzQm,Wendy Matthews,1992,https://i.scdn.co/image/ab67616d0000b27357643fae33e553505d41275f,1,6,282866,https://p.scdn.co/mp3-preview/09ac716c7f1028e1adbda988968a722335c9a14e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUBM09320306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.628,0.203,4.0,-13.713,1.0,0.034,0.867,1.65e-06,0.0892,0.293,105.675,4.0,,rooArt,P (P) 1995 rooArt Pty Ltd,7216 +7217,spotify:track:5ZV8CYspQMr9ocDcfOUHnj,"Boom, Boom, Boom, Boom! !",spotify:artist:0cwmNvclzPd8mQnoHuIksj,Vengaboys,spotify:album:3wI7M7bG9BOSxXOUWPyzeU,The Best Of – Australian Tour Edition,spotify:artist:0cwmNvclzPd8mQnoHuIksj,Vengaboys,2011-10-12,https://i.scdn.co/image/ab67616d0000b2736b0899d7fc12f30de3aad63f,1,2,205840,https://p.scdn.co/mp3-preview/682b78fc86d206b27e8fc71fb79f1e43f05abbb0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLC529811150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop",0.797,0.897,1.0,-7.364,1.0,0.0399,0.0112,0.496,0.0827,0.967,138.488,4.0,,Central Station Records,"C 2011 Central Station Records, P 2011 Central Station Records",7217 +7218,spotify:track:0eG5CqXwJpa5MBjYyg1lRm,Slide,spotify:artist:2sil8z5kiy4r76CRTXxBCA,The Goo Goo Dolls,spotify:album:0UccZZgelTAbbk3OSPZymO,Greatest Hits Volume One - The Singles,spotify:artist:2sil8z5kiy4r76CRTXxBCA,The Goo Goo Dolls,2007-11-06,https://i.scdn.co/image/ab67616d0000b273d54c4b12c9242bda37f4bb25,1,4,213200,https://p.scdn.co/mp3-preview/3e90173baeeae8eccaef3f30388df6b6b27843cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB10704697,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,permanent wave,pop rock,post-grunge",0.371,0.845,8.0,-4.199,1.0,0.0399,0.00753,0.0,0.0556,0.471,112.198,4.0,,Warner Records,"C © 2007 Warner Records Inc., P ℗ 2007 Warner Records Inc.",7218 +7219,spotify:track:46jLy47W8rkf8rEX04gMKB,Wherever I Go,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:6p01JdkB7ry8iAf4IuC1Lv,Oh My My (Deluxe),spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2016-12-02,https://i.scdn.co/image/ab67616d0000b273780c99d2c7307e9525efa03d,1,14,169773,https://p.scdn.co/mp3-preview/662395b1ce51aed89128e4fc566a35cdeaa01a64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USUM71603851,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.552,0.689,10.0,-6.444,0.0,0.0425,0.0915,0.0,0.27,0.349,99.961,4.0,,Mosley / Interscope,"C © 2016 Mosley Music/Interscope Records, P ℗ 2016 Mosley Music/Interscope Records",7219 +7220,spotify:track:0LjtuCIQ9VNBnNgH1Wpe7S,Hey St. Peter,spotify:artist:573nSltoBinkbQXk5JSY9U,Flash and the Pan,spotify:album:0P9q63bMtm9s8VDQp6cJSK,Collection,spotify:artist:573nSltoBinkbQXk5JSY9U,Flash and the Pan,1995-01-01,https://i.scdn.co/image/ab67616d0000b273d712038832a36fa270bd40f1,1,1,264626,https://p.scdn.co/mp3-preview/462c0a25bb8a5e79e4f305da4154f149ca242dd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07600044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.479,0.85,11.0,-11.295,1.0,0.0405,0.0916,0.0117,0.223,0.454,142.228,4.0,,Albert Productions,"C © 1995 BMG AM Pty Ltd., P ℗ 1995 BMG AM Pty Ltd.",7220 +7221,spotify:track:4buDeg67vos7KP1yHrS9wl,You Got It (The Right Stuff),spotify:artist:55qiaow2sDYtjqu1mwRua6,New Kids On The Block,spotify:album:0W7mquARagPr9V1N0nHYgK,Hangin' Tough,spotify:artist:55qiaow2sDYtjqu1mwRua6,New Kids On The Block,1988-09-02,https://i.scdn.co/image/ab67616d0000b273c9866ae0043a0ccd4075fd05,1,1,249960,https://p.scdn.co/mp3-preview/840d3f28b653f15b493cd375084075c1172463f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USSM18700355,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.787,0.522,0.0,-13.029,0.0,0.0578,0.0126,1.34e-06,0.0671,0.923,111.576,4.0,,Columbia,P (P) 1988 Sony Music Entertainment Inc.,7221 +7222,spotify:track:1BV0m40U0M4t1SLIsDnwZl,1973,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,spotify:album:3obQJSWpREwvi19TTAvM5v,All the Lost Souls,spotify:artist:7KMqksf0UMdyA0UCf4R3ux,James Blunt,2007-09-17,https://i.scdn.co/image/ab67616d0000b273cc300ef740a46887fa862403,1,1,280026,https://p.scdn.co/mp3-preview/4d60cfad204fd88296a20f5ac2b90b0abc425ad6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USAT20703782,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.72,0.668,9.0,-7.928,1.0,0.0269,0.0653,0.00675,0.0789,0.769,123.005,4.0,,Custard/Atlantic,"C An Atlantic Records Release, © 2007 Warner Music UK Limited, P An Atlantic Records Release, ℗ 2007 Warner Music UK Limited",7222 +7223,spotify:track:65T3cyeoayN4NeasBEGWbj,Symphonies feat Kid Cudi,spotify:artist:5kW3q7Vywlw24apaeufin6,Dan Black,spotify:album:12oWAE052WEdxlhzYX42MK,((un)),spotify:artist:5kW3q7Vywlw24apaeufin6,Dan Black,2010-07-23,https://i.scdn.co/image/ab67616d0000b2738059354244d5bd804a47090e,1,13,222706,https://p.scdn.co/mp3-preview/2051897f1d9e258c6eebcd2b33dd1f1d2a795dc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US6PH0900032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk alternative pop,0.565,0.433,0.0,-13.859,1.0,0.032,0.00811,2.23e-06,0.0868,0.68,86.995,4.0,,Liberator Music,"C 2010 Cocoon Sarl, P 2010 Cocoon Sarl",7223 +7224,spotify:track:7CKbqqrs0AS1si1ZgaQdcj,Angels,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:15lwLTwByJddohg3GvxICy,Angels,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,1997-01-01,https://i.scdn.co/image/ab67616d0000b2734ac63692f6efafa9d8e4e4e8,1,1,265333,https://p.scdn.co/mp3-preview/55b077c908c28ea214a3aa3088bdcf9214062ffd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAYE9700233,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.431,0.59,4.0,-6.362,1.0,0.0284,0.163,1.11e-05,0.0981,0.257,150.193,4.0,,Chrysalis UK,"C © 1997 Chrysalis Records Ltd, P ℗ 1997 Chrysalis Records Ltd",7224 +7225,spotify:track:1VL7DLieQaRCjAEj0Kdzju,You've Made Me So Very Happy,spotify:artist:24GaH9tRBgZjlvOhpFuKi2,"Blood\, Sweat & Tears",spotify:album:4mGSw7RUWGE7IGawdFGcjA,"Blood, Sweat & Tears",spotify:artist:24GaH9tRBgZjlvOhpFuKi2,"Blood\, Sweat & Tears",1968-12,https://i.scdn.co/image/ab67616d0000b2730e158228f6b3404b49a840d3,1,8,255906,https://p.scdn.co/mp3-preview/3d4ae55c3e9f070436c63c0af0f1d9ac9f30ae1a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19911962,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,folk,folk rock,jazz rock,mellow gold,singer-songwriter,soft rock",0.411,0.376,3.0,-13.847,0.0,0.043,0.33,1.18e-06,0.722,0.513,96.094,4.0,,Columbia,P Originally released 1969 SONY BMG MUSIC ENTERTAINMENT,7225 +7226,spotify:track:1Ezs8eYxuZjhlgyoI1Bo76,Play That Funky Music,spotify:artist:7GXXMm3DB1VswVcuGyInUd,Vanilla Ice,spotify:album:1LHacvoBTd7o2d7wwQ9EZD,To The Extreme,spotify:artist:7GXXMm3DB1VswVcuGyInUd,Vanilla Ice,1990-01-01,https://i.scdn.co/image/ab67616d0000b2734bb0c02f38a183d19b410662,1,7,285800,https://p.scdn.co/mp3-preview/5b7e0e41ceab7388feea5336aba11ceebdf5d595?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USSB29000056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,miami hip hop,0.851,0.514,4.0,-15.279,0.0,0.165,0.000928,3.58e-06,0.381,0.573,100.425,4.0,,SBK/EMI RECORDS,"C © 1990 Capitol Records, LLC, P ℗ 1990 Capitol Records, LLC",7226 +7227,spotify:track:4xxn8GDqs7RUwgZTNznXNp,Dueling Banjos,"spotify:artist:2dIzGSHkciATTqFH3Xox5g, spotify:artist:77PPhg2y4Efayq60Xgumgj","Eric Weissberg, Steve Mandell",spotify:album:2Okci4K13UGLBJRMApE2sB,Dueling Banjos From The Original Sound Track Of Deliverance And Additional Music,spotify:artist:2dIzGSHkciATTqFH3Xox5g,Eric Weissberg,1973,https://i.scdn.co/image/ab67616d0000b273f0370c00d5a5336e181da900,1,1,194879,https://p.scdn.co/mp3-preview/1c29abe07adfaa0cb78fe73a1dec20c8407df4f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USWB19904166,spotify:user:bradnumber1,2021-08-08T09:26:31Z,banjo,0.417,0.484,9.0,-8.781,1.0,0.0791,0.409,0.959,0.0663,0.501,149.79,4.0,,Rhino/Warner Records,"C © 1973 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 1973 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",7227 +7228,spotify:track:77QeAqSNDpK1DahLOua9S1,And I Love You So,spotify:artist:5v8jlSmAQfrkTjAlpUfWtu,Perry Como,spotify:album:2akbZSjwUR6L8pFa55dDGG,Legends - Perry Como,spotify:artist:5v8jlSmAQfrkTjAlpUfWtu,Perry Como,2004-09-21,https://i.scdn.co/image/ab67616d0000b27361631e5857045b7f79624694,1,1,194733,https://p.scdn.co/mp3-preview/f697ae35bfe33698d20ec4145201ce041f4005b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USRC17304670,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.417,0.282,10.0,-12.745,0.0,0.0262,0.925,0.253,0.155,0.244,91.653,4.0,,RCA Camden,P (P) This compilation 2004 BMG UK & Ireland Ltd.,7228 +7229,spotify:track:0wz1LjDb9ZNEYwOmDJ3Q4b,Surfin' U.S.A. - Remastered 2001,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:6u5tGarzvESDsQiIpC4SlI,Surfin' USA (Remastered),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1963-03-25,https://i.scdn.co/image/ab67616d0000b2737cb33b8fab5302942e6a78fb,1,1,149373,https://p.scdn.co/mp3-preview/5ec43132e082e9cd8f9f92adad0765b46f4c522a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USCA20001654,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.55,0.854,3.0,-5.968,1.0,0.036,0.661,0.0,0.112,0.965,159.231,4.0,,Capitol Records,"C © 1963 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",7229 +7230,spotify:track:0yEhNqCwEfy8LHUmnZoHpP,Bohemian Like You,spotify:artist:7siPLyFwRFYQkKgWKJ5Sod,The Dandy Warhols,spotify:album:0vdIT4p5OlKOcEzYKSsqn4,Thirteen Tales From Urban Bohemia,spotify:artist:7siPLyFwRFYQkKgWKJ5Sod,The Dandy Warhols,2000-01-01,https://i.scdn.co/image/ab67616d0000b2731d6192e7258363e1878cb1d0,1,10,211706,https://p.scdn.co/mp3-preview/0d6ea43126d46e37e11f1dfe328bb1ba1a5ea52e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USCA20000241,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance-punk",0.584,0.931,9.0,-6.158,1.0,0.0344,0.00315,0.772,0.133,0.694,131.275,4.0,,Capitol Records,"C © 2000 Capitol Records, LLC, P ℗ 2000 Capitol Records, LLC",7230 +7231,spotify:track:06sImcalauWP5m1XIWTLTI,The Hustle,spotify:artist:4GA9fykGa5V3ONWHzKpzwE,Van McCoy & The Soul City Symphony,spotify:album:2AWqMVNq3a8Cin6wQWDnbh,Disco Nights,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2001-01-01,https://i.scdn.co/image/ab67616d0000b273c1c69c9e76fa824c084470ee,1,11,242040,https://p.scdn.co/mp3-preview/168056370f441b120982f97ff8a18a7c87a8dc28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBF087500039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.645,0.822,5.0,-12.08,1.0,0.0569,0.0334,0.662,0.0642,0.878,111.478,4.0,,Universal Music Group International,"C © 2001 Universal Music International, P This Compilation ℗ 2001 Universal Music International",7231 +7232,spotify:track:1qo9FWuG0DVhaLV5nvdUWO,Slave To The Music,spotify:artist:39QjUR6m5slbxO36zayaMq,Twenty 4 Seven,spotify:album:7kcAdgu3ZUrxc5aWc0IsTA,De Top 10 Van,spotify:artist:39QjUR6m5slbxO36zayaMq,Twenty 4 Seven,2011-12-05,https://i.scdn.co/image/ab67616d0000b273423b5a382ae425f32d5a5d36,1,1,244066,https://p.scdn.co/mp3-preview/e1a1aa61b428a8e6879a3992fcc73a5a60352a56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,NLA240502726,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house",0.661,0.87,11.0,-10.826,1.0,0.0365,0.000395,0.00315,0.332,0.973,131.013,4.0,,CNR Music,"C 2011 CNR Music B.V., P Deze compilatie 2011 CNR Music B.V.",7232 +7233,spotify:track:6aVNWA7KjBH3bOn7yErzlz,Almost Persuaded,spotify:artist:2OpqcUtj10HHvGG6h9VYC5,George Jones,spotify:album:0fwh1xIpc0EuqWTIZGpci8,Walk Through This World With Me,spotify:artist:2OpqcUtj10HHvGG6h9VYC5,George Jones,2005,https://i.scdn.co/image/ab67616d0000b273aa2e371f90db500a7d69c4f0,1,7,178026,https://p.scdn.co/mp3-preview/0d4602be040b942ec39ded618d448a13adff49ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USACU0511182,spotify:user:bradnumber1,2022-09-29T07:15:37Z,"classic country pop,country,country rock,honky tonk",0.481,0.237,3.0,-10.716,1.0,0.0292,0.804,0.0,0.156,0.344,84.405,3.0,,Musicor Records,"C 2005 Gusto Records Inc., P 2005 Gusto Records Inc.",7233 +7234,spotify:track:08cL9wySIMCKhxNVgbgq2J,Two Of Us,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:5KZBWJcRhnkSS9pQg55luC,Two Of Us,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2020-01-17,https://i.scdn.co/image/ab67616d0000b2733cb2bba2c924a5dfa05e529d,1,1,207015,https://p.scdn.co/mp3-preview/162c8499a6f385e520afb6120d9551eb108a504d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUYO01900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.334,0.608,11.0,-5.593,1.0,0.0489,0.346,0.0,0.138,0.427,188.985,3.0,,EMI Recorded Music Australia Pty Ltd (Distribution),"C © 2020 Birds Of Tokyo Pty Ltd, P ℗ 2020 Birds Of Tokyo Pty Ltd, manufactured and distributed by Universal Music Australia Pty Limited",7234 +7235,spotify:track:7e2QY2B3lGRqxVoQ3JbLoE,Theme from Rush,spotify:artist:7Dv2aAaLXV8Qu3m1qiVJGz,Brian May & The ABC Showband,spotify:album:4nS8eMKgX3LZZlDs1bEokO,Themes & Dreams,spotify:artist:7Dv2aAaLXV8Qu3m1qiVJGz,Brian May & The ABC Showband,2017-10-09,https://i.scdn.co/image/ab67616d0000b273a9b2827e316cf56ff756d219,1,1,120466,https://p.scdn.co/mp3-preview/136b2a447962c15786c1d326a11a4e9d255f1fc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,UKDNQ1524189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.42,0.256,2.0,-12.063,1.0,0.0353,0.845,0.944,0.099,0.531,91.731,4.0,,Eastmill,"C 2017 Westside, P 2017 Westside",7235 +7236,spotify:track:7CFQrZR4WeKEg4vweqp8Gv,How Long Will I Love You - Bonus Track,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:2Dw4fYqDQnxsgoXDdMbqh3,Halcyon Days,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2014-01-01,https://i.scdn.co/image/ab67616d0000b27360a98c3be4daffefe9014c7e,1,21,154435,https://p.scdn.co/mp3-preview/3525385073b3d9ff787561a38c80a7ae03126f5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBUM71304067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.512,0.304,0.0,-9.19,1.0,0.0318,0.295,0.000622,0.118,0.172,126.078,5.0,,Polydor Records,"C © 2014 Polydor Ltd. (UK), P ℗ 2014 Polydor Ltd. (UK)",7236 +7237,spotify:track:7EjyzZcbLxW7PaaLua9Ksb,Surfin' Bird,spotify:artist:5QEA3sofVt5QckQA6QX2nN,The Trashmen,spotify:album:3tpJtzZm4Urb0n2ITN5mwF,Full Metal Jacket (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1987-08-04,https://i.scdn.co/image/ab67616d0000b273c9e646bdfea2776e7f6f9751,1,7,137133,https://p.scdn.co/mp3-preview/3c840a5a69a02ba979781f252000cd26e78a6cca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USWB10102873,spotify:user:bradnumber1,2023-02-14T22:29:57Z,"classic garage rock,protopunk,surf music",0.564,0.959,11.0,-13.125,0.0,0.0691,0.0146,0.638,0.208,0.834,101.239,4.0,,Warner Records,"C © 1987 Warner Records Inc., P ℗ 1987 Warner Records Inc.",7237 +7238,spotify:track:6nYoTBmGFNgfTyRC8x1Fvp,TiK ToK,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:5peRwC6pQh8eaoIPtvmmOB,Animal,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010,https://i.scdn.co/image/ab67616d0000b2737e531970051e341bfbbdc115,1,2,199693,https://p.scdn.co/mp3-preview/ea95bec21bd6c4979cc91f5d5528b533d879905c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10900433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.755,0.832,2.0,-2.741,0.0,0.116,0.0746,1.27e-06,0.291,0.735,120.032,4.0,,RCA Records Label,"P (P) 2009 RCA/Jive Label Group, a unit of Sony Music Entertainment",7238 +7239,spotify:track:4osg3vT6sXv6wNxm9Z6ucQ,Rehab,spotify:artist:6Q192DXotxtaysaqNPy5yR,Amy Winehouse,spotify:album:6GJCGWfI95aeRsdtVB52vc,Back To Black,spotify:artist:6Q192DXotxtaysaqNPy5yR,Amy Winehouse,2006-01-01,https://i.scdn.co/image/ab67616d0000b2734b6583b0a1505e40779faec6,1,1,213760,https://p.scdn.co/mp3-preview/8d044d09dcb616082fe61a9d6d9f959cea339022?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70603730,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,neo soul",0.434,0.872,0.0,-2.974,1.0,0.0702,0.0473,1.83e-06,0.396,0.732,71.515,4.0,,Universal Music Group,"C © 2006 Universal Island Records Ltd. A Universal Music Company., P ℗ 2006 Universal Island Records Ltd. A Universal Music Company.",7239 +7240,spotify:track:0ug5NqcwcFR2xrfTkc7k8e,Style,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1yGbNOtRIgdIiGHOEBaZWf,1989 (Deluxe),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-01-01,https://i.scdn.co/image/ab67616d0000b27352b2a3824413eefe9e33817a,1,3,231000,https://p.scdn.co/mp3-preview/5ed0bbbc40dda2bce0e008fe02949cd254f0ea69?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USCJY1431319,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.588,0.791,7.0,-5.595,1.0,0.0402,0.00245,0.00258,0.118,0.487,94.933,4.0,,"Big Machine Records, LLC","C © 2014 Apollo A-1 LLC, P ℗ 2014 Apollo A-1 LLC",7240 +7241,spotify:track:0vmbJCS1WCWnj9232fyMrv,Its A Miracle - Remastered 2012,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,spotify:album:51NPMfa9QfxsYtqzcB2VfY,Colour By Numbers (Remastered / Expanded Edition),spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,1983-10-01,https://i.scdn.co/image/ab67616d0000b273c7d7cdad0c2ffa5620129ee8,1,2,205360,https://p.scdn.co/mp3-preview/617c17c18feea9d757bbcab9bb4ef06ded88fa14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAAA0201012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock,synthpop",0.752,0.733,1.0,-8.178,0.0,0.0385,0.0682,0.0,0.0891,0.703,118.789,4.0,,EMI Marketing,"C © 2003 Virgin Records Limited, P ℗ 2003 Virgin Records Limited",7241 +7242,spotify:track:0gzCo19TZTdiKhNt5LFyi0,Sealed with a Kiss,spotify:artist:5bnNgwp3nooah9yHAHsnR4,Jason Donovan,spotify:album:6rL0xfZj23qRaFrGiTmvPP,Greatest Hits,spotify:artist:5bnNgwp3nooah9yHAHsnR4,Jason Donovan,2007-02-06,https://i.scdn.co/image/ab67616d0000b273cd12dd55b0c00f57c56571eb,1,4,152826,https://p.scdn.co/mp3-preview/9f84e77c7c10966939b649ccb45658c9a87cd2f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUMU08900170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,europop,new wave pop",0.557,0.364,4.0,-13.874,0.0,0.0253,0.64,0.0,0.151,0.589,96.007,4.0,,WM Australia,"C © 1991 Mushroom Records, P ℗ 1991 Mushroom Records",7242 +7243,spotify:track:5zwwXMjE6OrqfVpYGnA9RW,Whistle (While You Work It),spotify:artist:2E19mfEFhCr6UgZUYJGOEW,Katy Tiz,spotify:album:1C0txQpTvo2z5N6Rrm6Y9D,Whistle (While You Work It),spotify:artist:2E19mfEFhCr6UgZUYJGOEW,Katy Tiz,2015-02-10,https://i.scdn.co/image/ab67616d0000b273ec7bec4e9f5d27504748a999,1,1,215032,https://p.scdn.co/mp3-preview/5b679aa195507ded7d53eaadaad50cdc5502c65b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USAT21500220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.697,0.932,2.0,-3.157,1.0,0.115,0.258,0.0,0.263,0.806,161.96,4.0,,Atlantic Records,"C © 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",7243 +7244,spotify:track:3PfIrDoz19wz7qK7tYeu62,Don't Start Now,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:7fJJK56U9fHixgO0HQkhtI,Future Nostalgia,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-03-27,https://i.scdn.co/image/ab67616d0000b2734bc66095f8a70bc4e6593f4f,1,2,183290,https://p.scdn.co/mp3-preview/cfc6684fc467e40bb9c7e6da2ea1b22eeccb211c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,GBAHT1901121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.793,0.793,11.0,-4.521,0.0,0.083,0.0123,0.0,0.0951,0.679,123.95,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, with the exception of track 1 & 2 2019 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",7244 +7245,spotify:track:3ge54HUrk1ht3EX5SMhIzZ,NO,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:5nkgosKhWt1yXRzmjXNV2d,Thank You (Deluxe),spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2016-05-13,https://i.scdn.co/image/ab67616d0000b2734148fc1af9294805e35e9446,1,3,213506,https://p.scdn.co/mp3-preview/4975f83b20eedaba7dc1c5b805395bf45851913d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM11600935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop",0.471,0.802,1.0,-3.599,0.0,0.27,0.0125,1.45e-06,0.702,0.653,88.615,4.0,,Epic,"P (P) 2016 Epic Records, a division of Sony Music Entertainment",7245 +7246,spotify:track:0g8Q1Pmem92k7PzI3VLWKz,All at Once,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:2MH37enG6IPvNK5QFLyKes,Whitney Houston,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1985-02-14,https://i.scdn.co/image/ab67616d0000b2732ae4fcec560ab559d6f5dc88,1,7,268600,https://p.scdn.co/mp3-preview/962cc9c57950095d6a80df38cd46b31a2622c845?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAR18500148,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.58,0.325,0.0,-16.16,0.0,0.0294,0.539,0.0,0.135,0.342,132.548,4.0,,Arista,"P (P) 1985 Arista Records, Inc.",7246 +7247,spotify:track:7lidXGPXPYLNThITAOTlkK,You should be sad,spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,spotify:album:68enXe5XcJdciSDAZr0Alr,Manic,spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,2020-01-17,https://i.scdn.co/image/ab67616d0000b2737636e1c9e67eaafc9f49aefd,1,4,205473,https://p.scdn.co/mp3-preview/c2b39ca89c7c97715905b7463cff6aebde90848b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,66,USUM71918343,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,etherpop,indie poptimism,pop",0.591,0.585,2.0,-6.35,1.0,0.0276,0.143,0.0,0.109,0.323,110.943,4.0,,Capitol Records,"C © 2020 Capitol Records, LLC, P ℗ 2020 Capitol Records, LLC",7247 +7248,spotify:track:5Q7ayTarb9Tpmkik5cVMug,Viva Las Vegas,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:3ufobt4J5vaT3z7lgUub6a,"Elvis' Gold Records, Vol. 4",spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1968-01-22,https://i.scdn.co/image/ab67616d0000b273615da669de17a4432e5a4824,1,14,144840,https://p.scdn.co/mp3-preview/df200be6346e8ec49e287b3d54464c761ce0ed7e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC16301778,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.608,0.567,7.0,-11.297,1.0,0.0445,0.819,0.0,0.344,0.861,144.034,4.0,,RCA/Legacy,P (P) 1968 Sony Music Entertainment,7248 +7249,spotify:track:7nToEPuB95Y5rsJ3VrH3wQ,Masterpiece,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:3hQ64JbgfPMbXwYRvmZ41z,Sweet Talker (Deluxe Version),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2014-10-10,https://i.scdn.co/image/ab67616d0000b27301b57b2d37dad2a9e1fb10b9,1,7,220653,https://p.scdn.co/mp3-preview/fe2ec21bad3839f0bc23f743b43db2ecf5143ee9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71412828,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.657,0.737,0.0,-2.692,0.0,0.0446,0.02,0.0,0.0979,0.573,143.864,4.0,,Universal Music Group,"C © 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC, P ℗ 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC",7249 +7250,spotify:track:7ueP5u2qkdZbIPN2YA6LR0,Sail,spotify:artist:4njdEjTnLfcGImKZu1iSrz,AWOLNATION,spotify:album:1fag8cnc5p4Umu4tRMAsLv,Megalithic Symphony,spotify:artist:4njdEjTnLfcGImKZu1iSrz,AWOLNATION,2011-03-15,https://i.scdn.co/image/ab67616d0000b27332f1572738340ddc9569c54b,1,10,259093,https://p.scdn.co/mp3-preview/f14574baf46e2fb574059f16f9d4e94774bd00b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USP6L1000053,spotify:user:bradnumber1,2022-11-03T23:28:37Z,"la indie,modern alternative rock,modern rock,rock,stomp pop",0.826,0.436,1.0,-9.583,1.0,0.0558,0.441,0.615,0.0964,0.272,119.051,4.0,,Red Bull Records,"C (C) 2011 Red Bull Records, Inc., P (P) 2011 Red Bull Records, Inc.",7250 +7251,spotify:track:0RVPSEZWDsOTpmP5EhKEF0,+1 (Radio Edit) [feat. Sam White],"spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:1YPTXq9n1T2Zlw3dLR3Zdf","Martin Solveig, SAM WHITE",spotify:album:0p2qWUAFJke8d1XGcTwZQ3,+1 (Radio Edit) (feat. Sam White),"spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:1YPTXq9n1T2Zlw3dLR3Zdf","Martin Solveig, SAM WHITE",2015-12-04,https://i.scdn.co/image/ab67616d0000b273f7f815b642716e5ff1c19038,1,1,193280,https://p.scdn.co/mp3-preview/494de708d4269f4b32ef48c4e6a17abebd3348ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,UK98Q1500201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,edm,electro house,filter house,house,pop dance,vocal house",0.77,0.808,11.0,-3.824,0.0,0.0359,0.112,0.0181,0.104,0.721,124.946,4.0,,Hussle Recordings,P 2015 KOPG Ltd/exclusive license SpinninRecords license Hussle Recordings division MOS Aus,7251 +7252,spotify:track:3yKQM3LNwidsfDpbHykBh2,Don't Forget About Us,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:6kRdK7cPgLqNfSoI7AMlyj,#1 to Infinity,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2015-05-15,https://i.scdn.co/image/ab67616d0000b2739ad666bef28b02eff5476ddd,1,17,233840,https://p.scdn.co/mp3-preview/ef8a5eb0e85047dc56ba8b278414dcf60cfaec0a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70504581,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.695,0.571,10.0,-5.98,0.0,0.0398,0.0649,0.0,0.122,0.444,143.539,4.0,,Columbia/Legacy,"P (P) 1990, 1991, 1992, 1993, 1995, 1997, 1999 Columbia Records, a division of Sony Music Entertainment, 2005, 2008 The Island Def Jam Music Group and Mariah Carey, 2015 Epic Records, a division of Sony Music Entertainment",7252 +7253,spotify:track:0HDVr7DVXJIJXVzHxTiSS5,Chase That Feeling,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,spotify:album:4ulZKiq9M6eBxBKgMKLn1p,State Of The Art,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2009-01-01,https://i.scdn.co/image/ab67616d0000b273270da7449e0327eb0df30487,1,3,209266,https://p.scdn.co/mp3-preview/820dfca986006eade7b6a26850853af5f3db6d60?cid=9950ac751e34487dbbe027c4fd7f8e99,True,52,AUUM70900291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.609,0.874,9.0,-4.784,0.0,0.0638,0.623,0.0,0.132,0.523,97.922,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Universal Music Australia Pty Ltd., P ℗ 2009 Universal Music Australia Pty Ltd.",7253 +7254,spotify:track:0kzw2tRyuL9rzipi5ntlIy,Shut Up and Dance,spotify:artist:6DIS6PRrLS3wbnZsf7vYic,WALK THE MOON,spotify:album:2bVVESepVYULITlO6mtmoy,TALKING IS HARD (Expanded Edition),spotify:artist:6DIS6PRrLS3wbnZsf7vYic,WALK THE MOON,2014-12-02,https://i.scdn.co/image/ab67616d0000b273e4653224c093f358eb660800,1,3,199080,https://p.scdn.co/mp3-preview/4309fadd9a0d573c1fafcca507e024b3bb51266b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC11401949,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,modern alternative rock,modern rock,neo mellow,pop rock",0.578,0.866,1.0,-3.804,1.0,0.0619,0.00701,0.0,0.257,0.619,128.038,4.0,,RCA Records Label,"P (P) 2014 RCA Records, a division of Sony Music Entertainment",7254 +7255,spotify:track:2Owgdm2WzETvnAfpW2UAFJ,Forever Young,spotify:artist:51K48NCxjB11t9eqUWWoIq,Youth Group,spotify:album:0NARyRsJpFR1wzhFIQwwsJ,Casino Twilight Dogs,spotify:artist:51K48NCxjB11t9eqUWWoIq,Youth Group,2006-01-01,https://i.scdn.co/image/ab67616d0000b27369e556c1e8ae77cd995ac22d,1,12,238866,https://p.scdn.co/mp3-preview/6dd8feeb953297968da0e4f270f5264f648a0ece?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEP40517101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.391,0.649,11.0,-6.986,1.0,0.0305,0.06,0.0019,0.107,0.258,115.284,4.0,,Ivy League Records,"C 2006 2006 Ivy League Records, P 2006 2006 Ivy League Records",7255 +7256,spotify:track:6YSqo9ChgWD3S1TU4lJlPX,I Love To Love,spotify:artist:488v7rQzthLNK22r0UvMie,La Bouche,spotify:album:4adqftIYavKgrnLyOD5gxZ,Sweet Dreams,spotify:artist:488v7rQzthLNK22r0UvMie,La Bouche,1996-01-16,https://i.scdn.co/image/ab67616d0000b273d9f98206dc1513d8de71f6ee,1,7,237066,https://p.scdn.co/mp3-preview/b5d5bd0841092bbf64a6a15d976d33c57311e9df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,DED169500052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,europop,german techno",0.613,0.902,0.0,-8.134,0.0,0.032,0.000239,8.3e-05,0.12,0.842,148.987,4.0,,RCA Records Label,P (P) 1996 MCI,7256 +7257,spotify:track:00d05ogind9ZQ1LrNmyD1F,Boys In Town,spotify:artist:5t06MTkDD3yr5LVs3YFLQC,Divinyls,spotify:album:4Yz03wMtt5EPE7J29PPB0l,Essential,"spotify:artist:5t06MTkDD3yr5LVs3YFLQC, spotify:artist:2c0pcpdtdPQR43bR4dLh1A","Divinyls, Michael Chapman",1991-01-01,https://i.scdn.co/image/ab67616d0000b2739115764f90ac6f121eb897bc,1,7,171973,https://p.scdn.co/mp3-preview/061229095857590e500f84fdc26f3447f394b390?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USCH38300009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new wave pop",0.495,0.839,1.0,-7.8,0.0,0.0377,0.00844,0.000469,0.0939,0.742,158.425,4.0,,Chrysalis\EMI Records (USA),"C © 1991 Capitol Records, LLC, P ℗ 1991 Capitol Records, LLC",7257 +7258,spotify:track:3kgutGd839IOYRl6ekeq6V,All I Have (feat. LL Cool J),"spotify:artist:2DlGxzQSjYe5N6G9nkYghR, spotify:artist:1P8IfcNKwrkQP5xJWuhaOC","Jennifer Lopez, LL COOL J",spotify:album:2NG4OLyeNMwcLqirwwwvs2,This Is Me...Then,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2002-11-19,https://i.scdn.co/image/ab67616d0000b273c0d17a37386e6891cc4d8877,1,6,254466,https://p.scdn.co/mp3-preview/fb845d76fd732dce03dcf80fe5725af293560da4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USSM10213166,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,east coast hip hop,golden age hip hop,hip hop,old school hip hop,queens hip hop,rap",0.699,0.668,1.0,-5.305,1.0,0.106,0.265,0.0,0.141,0.472,83.074,4.0,,Epic,P (P) 2002 Sony Music Entertainment Inc.,7258 +7259,spotify:track:1GjbTNFImFrjFsNdleDe78,Never Tear Us Apart,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:6p6RTnoHCJMnMx2jcK4oGu,Kick (Remastered 2011),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,1987,https://i.scdn.co/image/ab67616d0000b273dac4efc0ebdfd9d92f127129,1,8,184586,https://p.scdn.co/mp3-preview/f823ba04c17d41b80ee811623cd2b7eb97b6af32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBAMX8700005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.664,0.613,0.0,-7.56,1.0,0.0273,0.00294,0.000129,0.175,0.193,96.6,3.0,,Petrol Records,"C © 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, A Division of UMG Recordings, Inc., P ℗ 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, A Division of UMG Recordings, Inc.",7259 +7260,spotify:track:01BvT9GPtThEzcMxkptkgN,Disturbia,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:1G2ZRwcqN6warfakvcPgEs,Good Girl Gone Bad: Reloaded,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2008-06-02,https://i.scdn.co/image/ab67616d0000b273ad4ef80be7f5e15d64ac5c25,1,13,238626,https://p.scdn.co/mp3-preview/65d5a82c2a0494c4d397b7ea5e0b49897a6356f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70814476,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.707,0.813,11.0,-4.515,0.0,0.0571,0.0863,0.0,0.168,0.722,124.921,4.0,,Universal Music Group,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",7260 +7261,spotify:track:2SK465W0wbu56rmVNHwVnk,I Am...I Said - Single Version,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:1q2tD1XJGxzLbBwlW8bxXy,Stones,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1971,https://i.scdn.co/image/ab67616d0000b273c0b098ccb8231a064551dfb6,1,1,213200,https://p.scdn.co/mp3-preview/4798b3aef5031e42cc43a52ff6e6fd7aa3ecb648?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC17146646,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.268,0.379,10.0,-14.286,1.0,0.0268,0.177,5.66e-06,0.0885,0.568,90.422,4.0,,Universal Strategic Marketing,"C © 2007 MCA Records Inc., P ℗ 2007 Geffen Records",7261 +7262,spotify:track:0sE9ZTxMxYneIUAEHN4Tg7,The Power of Love,spotify:artist:3w6zswp5THsSKYLICUbDTZ,Gabrielle Aplin,spotify:album:7kyjDxYcff3MeWKtw0fnLW,English Rain,spotify:artist:3w6zswp5THsSKYLICUbDTZ,Gabrielle Aplin,2013-05-13,https://i.scdn.co/image/ab67616d0000b27391df3331ecc28d6d199255e9,1,8,245160,https://p.scdn.co/mp3-preview/a352dada65220f784de0903d9593d921685678c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAYE1202354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,indie anthem-folk,neo-singer-songwriter,uk pop,viral pop",0.277,0.291,11.0,-9.851,0.0,0.0306,0.901,2.47e-05,0.103,0.175,75.119,3.0,,WM UK,"C © 2013 EMI Records Limited under exclusive licence to Warner Music UK Limited, P ℗ 2013 EMI Records Limited under exclusive licence to Warner Music UK Limited",7262 +7263,spotify:track:04MNKrAnzrHDUzuXAtNoLr,Live And Let Die,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:4L5pz06MVlsWaTEjSQPN8h,Use Your Illusion I,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1991-09-17,https://i.scdn.co/image/ab67616d0000b273c5803d7a2712cc6beee72281,1,3,183973,https://p.scdn.co/mp3-preview/78340097d6a0bee4883b6341756ba2cc5e1b97e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19141503,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.262,0.793,11.0,-8.668,1.0,0.0646,0.00968,0.08,0.115,0.247,152.447,4.0,,Universal Music Group,"C © 1991 Geffen Records Inc., P ℗ 1991 Geffen Records Inc.",7263 +7264,spotify:track:4Af8yzidDPc520TFd4TmkE,Don't Leave Me This Way,spotify:artist:3sgUnR8TF35euWEV07RPyO,Thelma Houston,spotify:album:6lap95wPl0DwJva1FLGIfx,The Best Of,spotify:artist:3sgUnR8TF35euWEV07RPyO,Thelma Houston,1998-01-01,https://i.scdn.co/image/ab67616d0000b273e587d09aeb9843f7857bc134,1,1,217733,https://p.scdn.co/mp3-preview/f393bb5c524b510b14af8bf24908c0b47357f343?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USMO17600547,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,diva house,motown,post-disco",0.553,0.839,0.0,-5.844,0.0,0.116,0.153,6e-05,0.13,0.673,121.819,4.0,,Spectrum,"C © 1998 Spectrum Music, P This Compilation ℗ 1998 Spectrum Music",7264 +7265,spotify:track:2xYlyywNgefLCRDG8hlxZq,"Take Me Home, Country Roads - Rerecorded",spotify:artist:7EK1bQADBoqbYXnT4Cqv9w,John Denver,spotify:album:5erROp1lRW31aNxj9PbAUf,"The John Denver Collection, Vol. 1: Take Me Home Country Roads",spotify:artist:7EK1bQADBoqbYXnT4Cqv9w,John Denver,1997-06-17,https://i.scdn.co/image/ab67616d0000b273facd59568d0cfc3200296bb2,1,1,197813,https://p.scdn.co/mp3-preview/b0805419e05dd1872abea1d5a798399be024cde8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA370529726,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.255,0.43,9.0,-12.564,1.0,0.0322,0.546,1.87e-05,0.188,0.546,164.267,4.0,,Windstar Productions,,7265 +7266,spotify:track:3cq6mwsjgygbwRIi9wVPGv,Mr. Bojangles - Remastered 2001,spotify:artist:7y70dch6JuuuNnwlsOQvwW,Nitty Gritty Dirt Band,spotify:album:2ZJcwgKQMSLyQAfBJsWfbD,Certified Hits (Remastered),spotify:artist:7y70dch6JuuuNnwlsOQvwW,Nitty Gritty Dirt Band,2001-01-01,https://i.scdn.co/image/ab67616d0000b2736b83cabfed67cdd0016b0191,1,1,215400,https://p.scdn.co/mp3-preview/aec85e3b1ab7292d706bdb8b44a2aaaa9c11b2ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USCN10100667,spotify:user:bradnumber1,2021-08-08T09:26:31Z,country rock,0.444,0.757,11.0,-6.884,0.0,0.0541,0.699,0.0,0.329,0.554,154.26,3.0,,Capitol Nashville,"C © 2001 Capitol Records Nashville, P This Compilation ℗ 2001 Capitol Records Nashville",7266 +7267,spotify:track:4bZd0nRuX8HyjeXAUBczvm,I Cry,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,spotify:album:7eLwoxxWs6lfkVYJGkGNbk,Wild Ones,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2012-06-22,https://i.scdn.co/image/ab67616d0000b273871d85943145dde548f4ae09,1,8,223800,https://p.scdn.co/mp3-preview/677818325ecfeb591d3e91779d54c7974c0d3d39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USAT21202584,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap",0.693,0.822,4.0,-5.441,0.0,0.0439,0.00616,1.79e-06,0.315,0.763,126.035,4.0,,Poe Boy/Atlantic,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",7267 +7268,spotify:track:31PM7tDPEWzbFrdRoAE4Zn,I Know,spotify:artist:6uJZLuhxKK0kNUcoGNIy9k,Barbara George,spotify:album:0bU5qWMCKCJpdU24lx6Rb2,I Know,spotify:artist:6uJZLuhxKK0kNUcoGNIy9k,Barbara George,2013-05-13,https://i.scdn.co/image/ab67616d0000b273e0ba3253d982151f8b594e0c,1,1,145214,https://p.scdn.co/mp3-preview/04cc09351095d5f92f50974c4b966f7b33c13f6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMDA61301183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new orleans soul,0.858,0.41,5.0,-10.503,1.0,0.0468,0.604,1.25e-06,0.0877,0.902,124.1,4.0,,Black Sheep Music,C (C) 2013 Entertain Me Europe LTD,7268 +7269,spotify:track:2Vi0fxL1fyE7KrKt3JihJn,Build Me up Buttercup (Re-Recorded),spotify:artist:4GITZM5LCR2KcdlgEOrNLD,The Foundations,spotify:album:2VuaUQ4Jft7SAqGiTquqBg,60s Greatest Moments,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b273d5d46b3ca2ccb7093f0ce21f,2,13,185480,https://p.scdn.co/mp3-preview/277cdf305f39ec3d32159ba3750beb786625374b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA560659871,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.707,0.814,0.0,-7.364,1.0,0.0367,0.158,2.72e-06,0.106,0.922,132.062,4.0,,Silverphonic Records,C (C) 2007 Goldenlane Records,7269 +7270,spotify:track:73sEFRISCOmunToMJtjuPS,Hate That I Love You,"spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:21E3waRsmPlU7jZsS13rcj","Rihanna, Ne-Yo",spotify:album:1YhbfKnjrFgnYyWz6cn9mN,Good Girl Gone Bad: Reloaded,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2007-03-31,https://i.scdn.co/image/ab67616d0000b273c10fafad6a659f2802b32421,1,6,218946,https://p.scdn.co/mp3-preview/49bc78065b15070eb5ac5ea0cf8ed241ed1710d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUM70734713,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary,dance pop,pop,r&b,urban contemporary",0.641,0.721,8.0,-5.38,1.0,0.0811,0.326,0.0,0.102,0.723,93.994,4.0,,Def Jam Recordings,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",7270 +7271,spotify:track:2gFvRmQiWg9fN9i74Q0aiw,24K Magic,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:5EA4kogB3cZr2qykFlZDYV,24K Magic,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2016-10-07,https://i.scdn.co/image/ab67616d0000b2738b36ce22ea4b5e64bb03582c,1,1,225983,https://p.scdn.co/mp3-preview/3a76820d510fa5f84abb413e9d13815bcc86da0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAT21602944,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.818,0.803,1.0,-4.282,1.0,0.0797,0.034,0.0,0.153,0.632,106.97,4.0,,Atlantic Records,"C © 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",7271 +7272,spotify:track:7trABhQmiqt7UdIAmLm2hA,Real World,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:7GHROYaPxZr0dRMYQ7xHHu,The Matchbox Twenty Collection,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2013-11-08,https://i.scdn.co/image/ab67616d0000b273a09220722ea0004d7da146a7,1,1,231693,https://p.scdn.co/mp3-preview/d9a3368df06704296f59203a7d15e50361a260df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USAT29600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.504,0.761,10.0,-5.446,1.0,0.0437,0.00628,0.0,0.0892,0.884,117.999,4.0,,Emblem / Atlantic,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",7272 +7273,spotify:track:5qbrpQ5ac44s48PU1ouUVC,Ain't No Doubt,spotify:artist:5JmiJ0uN4rutaRsDfBUPHl,Jimmy Nail,spotify:album:1SJamO5H1EerRJXXvq18Yi,The Nail File,spotify:artist:5JmiJ0uN4rutaRsDfBUPHl,Jimmy Nail,1992-07-24,https://i.scdn.co/image/ab67616d0000b27393dba7650d3a509109672adf,1,2,247800,https://p.scdn.co/mp3-preview/4d60a3ddf729b27fbc0c2bae278437c65ce87086?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAHS0200167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.684,0.921,11.0,-6.039,0.0,0.0414,0.0377,0.000358,0.055,0.775,101.991,4.0,,Rhino,"C © 1997 Warner Music UK Ltd, P ℗ 1997 Warner Music UK Ltd",7273 +7274,spotify:track:6OsefWNJtsWqO7myze1HEX,Money (That's What I Want) - Single Version / Mono,spotify:artist:3MKwHkhEjcvzva2rasZeWD,Barrett Strong,spotify:album:0ZjG7lMUm7k920ZgEL2pmi,The Collection,spotify:artist:3MKwHkhEjcvzva2rasZeWD,Barrett Strong,2004-01-01,https://i.scdn.co/image/ab67616d0000b2738133c389b5a5ce1fc4fdd477,1,1,158493,https://p.scdn.co/mp3-preview/407297f0b5690c350c5a6ffd5df38d248bff8e2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USMO15900265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,rhythm and blues,southern soul",0.656,0.813,5.0,-7.324,1.0,0.033,0.349,0.0,0.114,0.96,132.313,4.0,,UNI/MOTOWN,"C © 2004 Spectrum Music, P This Compilation ℗ 2004 Spectrum Music",7274 +7275,spotify:track:1vqk04aT50lCcrP3eLCYEc,The Fear,spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,spotify:album:4igqw0NNmYEsOVU4zeu1LG,"It's Not Me, It's You (Special Edition)",spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,2009-11-16,https://i.scdn.co/image/ab67616d0000b273e834267b8d605d9b37bf832b,1,2,207120,https://p.scdn.co/mp3-preview/a6ff08e27c59a10eb5cfdb9f4005d9248c66c8c2?cid=9950ac751e34487dbbe027c4fd7f8e99,True,31,GBAYE0802259,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo mellow",0.661,0.847,10.0,-6.948,1.0,0.0404,0.419,8.82e-05,0.107,0.522,134.002,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",7275 +7276,spotify:track:6fOt552vV1FLlXAKcAKc5g,(I Just) Died In Your Arms,spotify:artist:3cniTumSiUysiPWXapGx1i,Cutting Crew,spotify:album:0jv8ttx7Xyy601PGso0qNT,Playlist: Ballads,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-04-28,https://i.scdn.co/image/ab67616d0000b27381ac97fdb4f4b74fe7150055,1,18,275680,https://p.scdn.co/mp3-preview/3b38a8a511f4f6717fbf046bdad469a5a6e4ae55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAA8600046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,new romantic,new wave,new wave pop,soft rock",0.585,0.869,11.0,-6.935,0.0,0.0543,0.0193,0.000163,0.164,0.423,124.958,4.0,,Parlophone UK,"C 2008 Parlophone Records Ltd, a Warner Music Group Company, P 2008 Parlophone Records Ltd, a Warner Music Group Company",7276 +7277,spotify:track:0odFiE8hCSUwocstrqPvVO,NDA,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,spotify:album:6oH213XomZvwiEbUvod5sw,NDA,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,2021-07-09,https://i.scdn.co/image/ab67616d0000b2739a4e51e9c34de89df0278687,1,1,195776,https://p.scdn.co/mp3-preview/8352143e2dc6724745bf3d6f2bcc44148617551a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM72106986,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.686,0.349,8.0,-9.903,1.0,0.102,0.33,0.562,0.114,0.608,170.181,4.0,,Darkroom/Interscope Records,"C © 2021 Darkroom/Interscope Records, P ℗ 2021 Darkroom/Interscope Records",7277 +7278,spotify:track:0boctXTmA3IAzm2mPiJzOt,It Should Have Been Me,spotify:artist:4mGB0olhR5RpsEZWn0cqA8,Yvonne Fair,spotify:album:0g4hcfMoBKXPmMvNCHtlTC,Motown Queens,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-12-01,https://i.scdn.co/image/ab67616d0000b2736dc4e91765eeb118eea30f48,1,13,207373,https://p.scdn.co/mp3-preview/81397bff25f7e50409b35cb0f9b63913bdb49969?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USMO17582775,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic soul,0.692,0.382,10.0,-10.745,1.0,0.136,0.424,0.000463,0.201,0.763,183.541,4.0,,Universal Music Group International,"C © 2017 Universal Music International B.V., P This Compilation ℗ 2017 Universal Music International B.V.",7278 +7279,spotify:track:0pxSWLTNNDqVfCttX1iodN,deja vu,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,spotify:album:6yWrpE2mIyPHZGruU12jhP,deja vu,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,2021-04-01,https://i.scdn.co/image/ab67616d0000b2734b601cded0da25182a2bd79c,1,1,215507,https://p.scdn.co/mp3-preview/d5d11a1389de43fcb42f4980c59e85634ba6d95d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USUG12101241,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.447,0.608,2.0,-7.294,1.0,0.103,0.587,9.44e-06,0.436,0.169,180.558,4.0,,Olivia Rodrigo PS,"C © 2021 Olivia Rodrigo, under exclusive license to Geffen Records, P ℗ 2021 Olivia Rodrigo, under exclusive license to Geffen Records",7279 +7280,spotify:track:7pwYj6OLSMGodgSQiiQN6U,Blue Jeans - 2015 Remaster,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,spotify:album:4eiyoZSd1hCIOsUdMHYR1w,Hits'n'Riffs,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,2015-11-13,https://i.scdn.co/image/ab67616d0000b273d1df454194df63d318f728eb,1,9,151693,https://p.scdn.co/mp3-preview/3cbc37585e377e45d1c3f2385fc9655b37f55685?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUWA01500416,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.605,0.702,9.0,-8.062,1.0,0.0323,0.406,0.00129,0.647,0.921,132.339,4.0,,WM Australia,"C © 2015 Warner Music Australia Pty. Limited, P ℗ This compilation 2015 Warner Music Australia Pty Ltd.",7280 +7281,spotify:track:0FxRbTtlo8AutEbifokqGf,Ashes to Ashes,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,spotify:album:15eiCGvldXlDbIz9ZQLmw6,Album of the Year,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,1997-06-03,https://i.scdn.co/image/ab67616d0000b27382ef5dc6908a18f23f64ecb9,1,7,217333,https://p.scdn.co/mp3-preview/e50b229ac77347cafdf6a2d6ce5e1429b08d732a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBAAP0200562,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,funk metal,funk rock,hard rock,nu metal,post-grunge,rap metal,rock",0.57,0.866,2.0,-6.106,0.0,0.0281,9.87e-05,0.000355,0.144,0.358,98.551,4.0,,WM UK,"C © 1997 Slash Records, P ℗ 1997 Slash Records",7281 +7282,spotify:track:2YbwkDu7LATFJAuhyOBUTI,That Ain't Bad,spotify:artist:5ydii9WwX1NPG6k5lrAb6m,Ratcat,spotify:album:71i8dKUUAArnRbrkajBLLS,Tingles,spotify:artist:5ydii9WwX1NPG6k5lrAb6m,Ratcat,1990-06-13,https://i.scdn.co/image/ab67616d0000b273f884ad39a481303e528a8dd3,1,1,244760,https://p.scdn.co/mp3-preview/d2175e037e0104b038a14f7691388ca53c7435eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM09025802,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.503,0.798,9.0,-7.888,1.0,0.0383,2.72e-06,0.754,0.236,0.553,134.389,4.0,,Sony Music Entertainment,P (P) 1990 rooArt,7282 +7283,spotify:track:5Iml5Ps4qmwYd4qZ6jBnRs,She Makes My Day,spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,spotify:album:0GpLCi7mAAflASQlR26oib,Heavy Nova (Bonus Tracks Version),spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,1988,https://i.scdn.co/image/ab67616d0000b27398691a6bf480e589f2a1854e,1,7,262146,https://p.scdn.co/mp3-preview/b6a8f61c2b4a6a2e4fda4796928ada1383c3c43b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GB01A8800014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,mellow gold,new romantic,new wave,new wave pop,singer-songwriter,soft rock,yacht rock",0.538,0.661,9.0,-8.912,1.0,0.0344,0.725,0.0,0.191,0.732,79.963,4.0,,EMI,"C © 1988 Remlap Co Inc under exclusive licence to Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2013 Remlap Co Inc under exclusive licence to Parlophone Records Ltd",7283 +7284,spotify:track:48YZhmKL3aZKhQUfpvkelu,Burning Up,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:5lrlWKjNY0eTDXp9Bd3LpW,Madonna,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1983-07-27,https://i.scdn.co/image/ab67616d0000b273fe4d93329a65de9afd0ebbdb,1,3,225333,https://p.scdn.co/mp3-preview/f44a47f92c99838dc858ca95b990509266580230?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USWB19902986,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.869,0.738,6.0,-4.566,0.0,0.11,0.0276,0.00096,0.262,0.988,138.329,4.0,,Warner Records,"C © 1983, 2001 Warner Records Inc., P ℗ 1982, 1983 Warner Records Inc.",7284 +7285,spotify:track:0rhyBUAgNXwdyvGVXSrLzc,Into The Night,spotify:artist:6ZalUpnU8HaHSjROM92Txw,Benny Mardones,spotify:album:5ERaMYO6utxG7HftrKO95m,Never Run Never Hide,spotify:artist:6ZalUpnU8HaHSjROM92Txw,Benny Mardones,1980-01-01,https://i.scdn.co/image/ab67616d0000b273e31c7e7ce21a220c92055aae,1,3,271800,https://p.scdn.co/mp3-preview/53c782a315ed0c6843fab0b19148465a1ba88baa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USUMG0000673,spotify:user:bradnumber1,2022-10-03T11:14:32Z,,0.435,0.69,0.0,-6.635,0.0,0.0388,0.463,0.0,0.104,0.51,163.486,4.0,,Polydor,"C © 1980 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1980 Universal Records, a Division of UMG Recordings, Inc.",7285 +7286,spotify:track:70OTIpw8x8UXUsuCHW9i1i,Drag Me Down,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:7LnU0hAOYe9aq91PCKMI7A,Drag Me Down,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2015-07-31,https://i.scdn.co/image/ab67616d0000b27370e2af26b1812efc5b9e44c6,1,1,192106,https://p.scdn.co/mp3-preview/e7076008e9bccbf5c30ba62adb18a20040987f04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1500070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.723,0.711,0.0,-5.576,0.0,0.0378,0.0997,0.0,0.0528,0.606,138.098,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,7286 +7287,spotify:track:4qv7YSyt5UV8LvrXyE8sGn,"Can You Feel It - 7"" Version",spotify:artist:2yrbLiuBmc9j81lTX3XUuI,The Jacksons,spotify:album:77dNyQA0z8dV33M4so4eRY,The Essential Michael Jackson,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2005-07-19,https://i.scdn.co/image/ab67616d0000b273ed1c305cd1e673fe925407ce,1,14,230773,https://p.scdn.co/mp3-preview/4aac6b89f33fa2fe92e77dbca08f51ab424c280d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USSM10503851,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,motown",0.843,0.702,6.0,-4.981,0.0,0.0462,0.0499,0.000306,0.308,0.882,125.464,4.0,,Epic/Legacy,"P (P) 1972 Motown Records, a Division of UMG Recordings, Inc., 1976, 1978, 1980 Sony Music Entertainment, 1979, 1982, 1987, 1991, 1995, 2001, 2005 MJJ Productions Inc.",7287 +7288,spotify:track:4g6DLXf5FawA5P0WiAWpIf,The Ballad of Bonnie & Clyde,spotify:artist:5rWKAmlxinr3muqedXVIHa,Georgie Fame,spotify:album:5wE973IcRveDESH52qmKLD,On Your 60's Radio,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2002-02-21,https://i.scdn.co/image/ab67616d0000b2732875c1f0599f27888dbb4f3c,1,7,188960,https://p.scdn.co/mp3-preview/98bf8268ac74ebf2203ea17c235746e52da76d2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GBBBN6700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,jazz organ",0.683,0.343,7.0,-14.084,1.0,0.116,0.796,2.33e-06,0.213,0.735,106.332,4.0,,Columbia,P (P) 2002 Sony Music Entertainment (UK) Ltd.,7288 +7289,spotify:track:7Hv89f7Dpm5Hce1XkBbjQZ,On The Floor - Radio Edit,"spotify:artist:2DlGxzQSjYe5N6G9nkYghR, spotify:artist:0TnOYISbd1XYRBk9myaseg","Jennifer Lopez, Pitbull",spotify:album:2EKXoS58MiZRrNXz3DKxv3,On The Floor,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2011-01-01,https://i.scdn.co/image/ab67616d0000b2736cd31c5ff88271d694de82df,1,1,230906,https://p.scdn.co/mp3-preview/21a3faab531df2173b21057ec78826822012be84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71100721,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,dance pop,miami hip hop,pop",0.765,0.68,11.0,-6.306,1.0,0.0932,0.0953,0.0009,0.138,0.462,129.998,4.0,,Universal Music Group,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",7289 +7290,spotify:track:33YmfTNoLnbkRnOjf7YIVm,Lean On (feat. MØ & DJ Snake),"spotify:artist:738wLrAtLtCtFOLvQBXOXp, spotify:artist:0bdfiayQAKewqEvaU6rXCv, spotify:artist:540vIaP2JwjQb9dm3aArA4","Major Lazer, MØ, DJ Snake",spotify:album:0C7tn68LWhhw5Ez6g9LMjz,Peace Is the Mission,spotify:artist:738wLrAtLtCtFOLvQBXOXp,Major Lazer,2015-06-01,https://i.scdn.co/image/ab67616d0000b2732241b2e696f05a4bfad7144d,1,4,176561,https://p.scdn.co/mp3-preview/5cdeec9f8b351372aa5e9f36f39d03d7bb58cef8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,QMUY41500008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,moombahton,pop,pop dance,dance pop,danish pop,electropop,pop dance,dance pop,edm,electronic trap,pop,pop dance",0.723,0.809,7.0,-3.081,0.0,0.0625,0.00346,0.00123,0.565,0.274,98.007,4.0,,WM Australia,"C © 2015 Major Lazer LLC. Marketed, manufactured and distributed in Australia and New Zealand by Warner Music Australia under exclusive licence., P ℗ 2015 Major Lazer LLC. Marketed, manufactured and distributed in Australia and New Zealand by Warner Music Australia under exclusive licence.",7290 +7291,spotify:track:67WTwafOMgegV6ABnBQxcE,Some Nights,spotify:artist:5nCi3BB41mBaMH9gfr6Su0,fun.,spotify:album:7m7F7SQ3BXvIpvOgjW51Gp,Some Nights,spotify:artist:5nCi3BB41mBaMH9gfr6Su0,fun.,2012-02-14,https://i.scdn.co/image/ab67616d0000b273a036e1724bc7f2bab15cfda8,1,2,277040,https://p.scdn.co/mp3-preview/270d1a141e0493689e31d43c42b464e23583b820?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,USAT21104050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,metropopolis,neo mellow",0.672,0.738,0.0,-7.045,1.0,0.0506,0.0178,6.75e-05,0.0927,0.392,107.938,4.0,,Fueled By Ramen,"C © 2012 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2012 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States.",7291 +7292,spotify:track:57Y3UccJEJqT8w8RWkUAz0,Upside Down,spotify:artist:3MdG05syQeRYPPcClLaUGl,Diana Ross,spotify:album:0Gy4phN6Xwx4uyskE7Wkls,Diana,spotify:artist:3MdG05syQeRYPPcClLaUGl,Diana Ross,1980-05-22,https://i.scdn.co/image/ab67616d0000b2735334fdec11d3cee1ba545a56,1,1,244826,https://p.scdn.co/mp3-preview/6facaf561c52c3b088079539ba1e24e87c15f16a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18000379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,disco,motown,quiet storm,soft rock,soul",0.887,0.904,5.0,-5.107,0.0,0.0703,0.079,0.0101,0.0165,0.89,107.955,4.0,,Motown,"C © 1998 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1980 Motown Records, a Division of UMG Recordings, Inc.",7292 +7293,spotify:track:3AYcyxEACnmE6d96RPubID,Thrift Shop (feat. Wanz),"spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:56xTxG4nQMAs1GW9kvn0uA","Macklemore & Ryan Lewis, Wanz",spotify:album:0CoiTAUBiO70lic9p9Lboq,The Heist (Deluxe Edition),spotify:artist:5BcAKTbp20cv7tC5VqPFoC,Macklemore & Ryan Lewis,2012-10-09,https://i.scdn.co/image/ab67616d0000b2730dff053a2ffb550d25184999,1,3,235613,https://p.scdn.co/mp3-preview/aa64e01779ed8b6d1362bd8bfc170c8a4fa85773?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GMM881200003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop",0.781,0.526,6.0,-6.985,0.0,0.293,0.0619,0.0,0.0457,0.662,94.992,4.0,,Macklemore,"C © 2012 Macklemore, LLC., P ℗ 2012 Macklemore, LLC.",7293 +7294,spotify:track:55CHeLEfn5iJ0IIkgaa4si,Savage,spotify:artist:181bsRPaVXVlUKXrxwZfHK,Megan Thee Stallion,spotify:album:6Lo6ylJg4qbFfxicPEOzMI,Suga,spotify:artist:181bsRPaVXVlUKXrxwZfHK,Megan Thee Stallion,2020-03-06,https://i.scdn.co/image/ab67616d0000b27320fbc17fcb9376bc76a1b510,1,2,155497,https://p.scdn.co/mp3-preview/275028c7d76bb4b7136b0d98656f2b6a0d4b483f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,65,QMCE32000097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"houston rap,pop,rap,trap queen",0.843,0.741,11.0,-5.609,1.0,0.334,0.0252,0.0,0.096,0.68,168.983,4.0,,300 Entertainment,"C © 2020 1501 Certified Ent. LLC under exclusive license to 300 Entertainment, P ℗ 2020 1501 Certified Ent. LLC under exclusive license to 300 Entertainment",7294 +7295,spotify:track:4Hff1IjRbLGeLgFgxvHflk,DARE,spotify:artist:3AA28KZvwAUcZuOKwyblJQ,Gorillaz,spotify:album:0bUTHlWbkSQysoM3VsWldT,Demon Days,spotify:artist:3AA28KZvwAUcZuOKwyblJQ,Gorillaz,2005-05-23,https://i.scdn.co/image/ab67616d0000b27319d85a472f328a6ed9b704cf,1,12,244999,https://p.scdn.co/mp3-preview/fb02aea39283e35a92f0ce79b67788b6b1e5ed51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBAYE0500178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative hip hop,modern rock,rock",0.76,0.891,11.0,-5.852,0.0,0.0372,0.0229,0.0869,0.298,0.966,120.264,4.0,,Parlophone UK,"C © 2005 Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 2005 Parlophone Records Ltd, P ℗ 2005 The copyright in this sound recording is owned by Parlophone Records Ltd",7295 +7296,spotify:track:4pbG9SUmWIvsROVLF0zF9s,I Want To Hold Your Hand - Remastered 2015,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:7vEJAtP3KgKSpOHVgwm3Eh,1 (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,2000-11-13,https://i.scdn.co/image/ab67616d0000b273582d56ce20fe0146ffa0e5cf,1,4,145746,https://p.scdn.co/mp3-preview/63a3a4d731e44e8a03a10e11afa33db665573f5d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBUM71505904,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.49,0.715,7.0,-5.549,1.0,0.0476,0.386,0.0,0.311,0.866,130.726,4.0,,UMC (Universal Music Catalogue),"C © 2015 Apple Corps Ltd., P This Compilation ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",7296 +7297,spotify:track:2rzuE1Kcz7mNb0xIV9SYmS,Call Me When You're Sober,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,spotify:album:6UW1rkWS9Fn45pRkv2xmrE,The Open Door,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,2006-01-01,https://i.scdn.co/image/ab67616d0000b2739bf52a763f3246e9891472db,1,2,214706,https://p.scdn.co/mp3-preview/f2c4301d9c95dde74ccf9a0c709c7b8090c3cc0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU30600102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alternative metal,0.459,0.879,7.0,-4.098,1.0,0.0518,0.00234,0.0,0.291,0.304,93.469,4.0,,Universal Music Group,"C © 2006 The Bicycle Music Company, P ℗ 2006 The Bicycle Music Company",7297 +7298,spotify:track:4sDuZmEuKIo7S49MCqxpjm,Amigo,spotify:artist:5g3nAtwyoQFlhdK8mSU4I3,Caramel Blue,spotify:album:3BtBNkSHnOOsCBLDty7EaM,Gold Bars & Cuban Cigars,spotify:artist:5g3nAtwyoQFlhdK8mSU4I3,Caramel Blue,2021-05-09,https://i.scdn.co/image/ab67616d0000b273e76dd8c1888dc883c772c9d8,1,3,154737,https://p.scdn.co/mp3-preview/f363e1370e99dd51670a4291ebd1e2376b5bc9a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZHN62128719,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.688,0.621,6.0,-7.315,0.0,0.0451,0.0378,0.704,0.108,0.328,96.974,4.0,,3034305 Records DK,"C 2021 3034305 Records DK, P 2021 3034305 Records DK",7298 +7299,spotify:track:1IIKrJVP1C9N7iPtG6eOsK,Go Crazy,"spotify:artist:7bXgB6jMjp9ATFy66eO08Z, spotify:artist:50co4Is1HCEo8bhOyUWKpn","Chris Brown, Young Thug",spotify:album:7fZKtzZAsfH0kzeTivu5TG,Slime & B,"spotify:artist:7bXgB6jMjp9ATFy66eO08Z, spotify:artist:50co4Is1HCEo8bhOyUWKpn","Chris Brown, Young Thug",2020-05-08,https://i.scdn.co/image/ab67616d0000b27363e0ddbb488d0eeec0e738fc,1,2,176960,https://p.scdn.co/mp3-preview/5953ca484a09698a5e34c5ac585e3ecddbae8b37?cid=9950ac751e34487dbbe027c4fd7f8e99,True,72,USRC12001468,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap,atl hip hop,atl trap,gangster rap,hip hop,melodic rap,rap,trap",0.755,0.578,0.0,-8.932,0.0,0.145,0.316,0.0,0.25,0.581,94.148,4.0,,Chris Brown Entertainment/300 Entertainment/RCA Records,"P (P) 2020 Chris Brown Entertainment, LLC, under exclusive license to RCA Records",7299 +7300,spotify:track:4MVA30NmvNtpbDon1ZG7mk,Star Wars Theme/Cantina Band,spotify:artist:4MptlUxSUHf2QAW9JMrv4W,Meco,spotify:album:3RhVd2QtOoRhRGmCnptrOU,Music Inspired By Star Wars And Other Galactic Funk,spotify:artist:4MptlUxSUHf2QAW9JMrv4W,Meco,1977-01-01,https://i.scdn.co/image/ab67616d0000b273621560f7bcafead2c1df6a23,1,3,212306,https://p.scdn.co/mp3-preview/d3593647fe1d7e1a94520453629f4bd26be55cff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USUM71511789,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.677,0.915,0.0,-3.859,1.0,0.0912,0.00121,0.916,0.322,0.545,124.929,4.0,,Island Def Jam,"C © 2015 Mercury Records, P ℗ 1999 Mercury Records",7300 +7301,spotify:track:45u98kplW1TAIG3gIhPOoT,One Last Cry,spotify:artist:6k0IBR0lU42s2GYpNX7kA9,Brian McKnight,spotify:album:6b7ggWCXDVPG9mufs6Vvwj,Brian McKnight,spotify:artist:6k0IBR0lU42s2GYpNX7kA9,Brian McKnight,1992-06-23,https://i.scdn.co/image/ab67616d0000b273dcf9bcd5a4ac209bd67c5f7c,1,6,295357,https://p.scdn.co/mp3-preview/2a1aa5fcc5ebfc5d23caaab6ab3cb7f16113f55f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWWW0128475,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,quiet storm,r&b,urban contemporary",0.355,0.126,11.0,-13.801,1.0,0.0301,0.909,0.000337,0.131,0.102,109.769,4.0,,Universal Music Group,"C © 1991 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1991 Motown Records, a Division of UMG Recordings, Inc.",7301 +7302,spotify:track:6trn2Smoif7ejl3SyEbBJu,Feel Like Making Love,spotify:artist:5AEG63ajney2BoDXi0Vb84,Bad Company,spotify:album:73iVQndgikX2BpxklY2b5S,Live At Wembley Arena 2010,spotify:artist:5AEG63ajney2BoDXi0Vb84,Bad Company,2010-07-19,https://i.scdn.co/image/ab67616d0000b273a5d34205812cea589c7b020a,1,10,406023,https://p.scdn.co/mp3-preview/6d6e3d30079775acb58c5b6afa1f590b265b8a78?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBC9X1000027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,glam metal,hard rock,mellow gold,rock,singer-songwriter,soft rock,southern rock",0.452,0.635,7.0,-7.444,1.0,0.0321,0.153,1.45e-06,0.754,0.311,81.825,4.0,,Concert Live Ltd,"C 2010 Concert Live Ltd, P 2010 Concert Live Ltd",7302 +7303,spotify:track:5uWbfrkHNsY6i4ZYCr5km9,Burn For You,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:7CJvhqb2PJq5fBcY6eKqjl,INXS Remastered,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b273114b2baa75317b81a8c9c7ca,4,9,297826,https://p.scdn.co/mp3-preview/e77de426320936196cd61fb0c2d69b4dfad1b58b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,NLF050190182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.799,0.757,7.0,-8.168,1.0,0.0395,0.252,0.0898,0.0841,0.379,115.74,4.0,,Petrol Records,"C © 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",7303 +7304,spotify:track:3SPVZJzf1Hs30rB6yXVf2y,Mountain Sound,spotify:artist:4dwdTW1Lfiq0cM8nBAqIIz,Of Monsters and Men,spotify:album:4p9dVvZDaZliSjTCbFRhJy,My Head Is An Animal,spotify:artist:4dwdTW1Lfiq0cM8nBAqIIz,Of Monsters and Men,2012-01-01,https://i.scdn.co/image/ab67616d0000b273cb3f67e8026e2e493a1e8262,1,3,211453,https://p.scdn.co/mp3-preview/5183506cc468eb64c3ca9d55386c2cf5e9f89a06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USUM71202068,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,metropopolis,modern rock,stomp and holler",0.379,0.878,1.0,-4.338,0.0,0.0359,0.042,0.00431,0.146,0.381,102.023,4.0,,Universal Records,"C © 2012 SKRIMSL ehf, nder exclusive license to Universal Republic Records, a Division of UMG Recordings, Inc., P ℗ 2012 SKRIMSL ehf, nder exclusive license to Universal Republic Records, a Division of UMG Recordings, Inc.",7304 +7305,spotify:track:65UnVEqHActQfVQiAF81Ws,How We Do (Party),spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:72jwnHPKDGkMsiZSjIM6kU,How We Do (Party),spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2012-03-20,https://i.scdn.co/image/ab67616d0000b27307b0f1cf9ecea00c7364e200,1,1,246173,https://p.scdn.co/mp3-preview/bde1f90dde923b1d5657af24543f1d743930cd6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQX91101878,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.751,0.923,7.0,-4.031,1.0,0.0733,0.00427,0.0,0.109,0.734,116.03,4.0,,Roc Nation/Columbia,"P (P) 2012 Roc Nation LLC, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",7305 +7306,spotify:track:6R9NqD0WX9sJYs6PbA5onu,He's so Shy,spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,spotify:album:5AnJr2Axqy5aIhcvaVKGEB,Special Things (Bonus Track Version),spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,1980-04-23,https://i.scdn.co/image/ab67616d0000b273229278d76e65060cbce7f1c3,1,2,218320,https://p.scdn.co/mp3-preview/7f672babe3023bf0b9e888ea8bc9c19e57e167ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USRC18003278,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,girl group,hi-nrg,motown,new wave pop,soft rock",0.871,0.736,0.0,-7.896,0.0,0.0675,0.22,0.000725,0.0894,0.967,115.149,4.0,,Legacy Recordings,P (P) 1980 Sony Music Entertainment,7306 +7307,spotify:track:6eLepzSGHC6Tq5BPmCWRxF,The Wedding,spotify:artist:0TvxYJwhD6rqKvdMxgtVsO,Julie Rogers,spotify:album:5md9S0qFQmYEqLbSJv6uBY,The Wedding,spotify:artist:0TvxYJwhD6rqKvdMxgtVsO,Julie Rogers,2020-02-07,https://i.scdn.co/image/ab67616d0000b273f1824cae84a591bc66f46f75,1,1,146040,https://p.scdn.co/mp3-preview/473da0a58e7cf586d2981e287a3e797f817c5c10?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBT21622868,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.379,0.401,8.0,-10.285,1.0,0.0375,0.804,3.68e-06,0.137,0.488,97.195,3.0,,Delta Records,"C 2020 Delta Records, P 2020 Delta Records",7307 +7308,spotify:track:6X6SdJzxyw7GzxwP2fr9WV,All I Am,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,spotify:album:5OcUNJc5661j2QGSJkJC7L,All I Am,spotify:artist:4ScCswdRlyA23odg9thgIO,Jess Glynne,2018-08-17,https://i.scdn.co/image/ab67616d0000b273ac930a5e2ab26755acd9bf2e,1,1,218868,https://p.scdn.co/mp3-preview/e5ed567f31b25211c742f000caa2e6ac1f40d840?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAHS1800455,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.74,0.669,0.0,-5.199,1.0,0.0373,0.0445,0.0,0.184,0.536,122.007,4.0,,Atlantic Records UK,"C © 2018 Atlantic Records UK Ltd, a Warner Music Group Company, P ℗ 2018 Atlantic Records UK Ltd, a Warner Music Group Company",7308 +7309,spotify:track:5rSekme9Kdoj2XZebQVl4C,Love My Way,spotify:artist:0O0lrN34wrcuBenkqlEDZe,The Psychedelic Furs,spotify:album:4sdhLZRcO9DQmrs889H0tl,The Psychedelic Furs Superhits,spotify:artist:0O0lrN34wrcuBenkqlEDZe,The Psychedelic Furs,2003-08-29,https://i.scdn.co/image/ab67616d0000b273adaf7bcb316b31cdcf10bc30,1,4,214053,https://p.scdn.co/mp3-preview/88e46a29a45a60cc84b0861237c4d28884dd637c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBBBN0102488,spotify:user:bradnumber1,2024-01-21T09:02:05Z,"alternative rock,new romantic,new wave,new wave pop,post-punk",0.64,0.768,0.0,-7.667,1.0,0.0355,0.00432,0.000228,0.126,0.531,126.093,4.0,,Columbia,P (P) 2003 Sony Music Entertainment (UK) Ltd.,7309 +7310,spotify:track:1LaGFtGh2yoBipaCdqJeRU,Build Me Up Buttercup,spotify:artist:4GITZM5LCR2KcdlgEOrNLD,The Foundations,spotify:album:0E91XsyENUXnrTnPqXGokS,Build Me Up Buttercup (The Complete Pye Collection),spotify:artist:4GITZM5LCR2KcdlgEOrNLD,The Foundations,1968,https://i.scdn.co/image/ab67616d0000b27341e4038784e403590cf7c49c,1,16,178226,https://p.scdn.co/mp3-preview/bf0881bd8c7eef444157aea54ce0b95e02b4ff6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6800059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.631,0.681,0.0,-4.729,1.0,0.028,0.192,0.0,0.308,0.868,66.914,4.0,,Sanctuary,"C (C) 2004 Sanctuary Records Group Ltd., a BMG Company, under exclusive license to INgrooves, P (P) 1968 Sanctuary Records Group Ltd., a BMG Company, under exclusive license to INgrooves",7310 +7311,spotify:track:3BifasjnwlHpiNRZdHb33t,We Run The Night,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,spotify:album:79YeWwPGgPYXSz4CibR5Gy,We Run The Night,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,2011-01-01,https://i.scdn.co/image/ab67616d0000b27338a685867a7bcb435f46c603,1,1,216217,https://p.scdn.co/mp3-preview/d00d0348454a41eddabcd84cf6a3084576d14503?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUUM71100295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.711,0.839,9.0,-4.633,0.0,0.0386,0.0624,0.000817,0.0948,0.614,126.998,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P ℗ 2011 Universal Music Australia Pty Ltd.",7311 +7312,spotify:track:3KtIVDOChQMVi3SxHc6RrK,You Are Not Alone - Single Version,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:77dNyQA0z8dV33M4so4eRY,The Essential Michael Jackson,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2005-07-19,https://i.scdn.co/image/ab67616d0000b273ed1c305cd1e673fe925407ce,2,16,295986,https://p.scdn.co/mp3-preview/428966eb33d379bbe177ae284dacad55e26b79f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USSM10503693,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.64,0.421,11.0,-9.33,1.0,0.0274,0.634,5.44e-05,0.109,0.23,119.478,4.0,,Epic/Legacy,"P (P) 1972 Motown Records, a Division of UMG Recordings, Inc., 1976, 1978, 1980 Sony Music Entertainment, 1979, 1982, 1987, 1991, 1995, 2001, 2005 MJJ Productions Inc.",7312 +7313,spotify:track:1o2QE6KUthclwKuEDweROU,Change the World - 2015 Remaster,spotify:artist:6PAt558ZEZl0DmdXlnjMgD,Eric Clapton,spotify:album:1i1OirKFpITQYYWDPEDjx7,Forever Man,spotify:artist:6PAt558ZEZl0DmdXlnjMgD,Eric Clapton,2015-04-28,https://i.scdn.co/image/ab67616d0000b273598606176ae130ae1ddd32e2,1,11,234813,https://p.scdn.co/mp3-preview/4b1f5e3cf80c9992c08c31171c0c631b5ab8ed52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRE11500100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,electric blues,mellow gold,rock,singer-songwriter,soft rock",0.719,0.556,9.0,-8.77,1.0,0.0248,0.477,0.00511,0.0935,0.511,96.9,4.0,,Reprise,"C © This Compilation C2015 Reprise Records, P ℗ This Compilation P2015 Reprise Records",7313 +7314,spotify:track:2VgJDTfkuwlm7WIHnvtRCQ,You Are The Reason,spotify:artist:6ydoSd3N2mwgwBHtF6K7eX,Calum Scott,spotify:album:7svCjsI5rs6xm58d82z5Pl,Only Human (Deluxe),spotify:artist:6ydoSd3N2mwgwBHtF6K7eX,Calum Scott,2018-03-09,https://i.scdn.co/image/ab67616d0000b2732de9d082a9beb8e31cc9ce5a,1,4,204326,https://p.scdn.co/mp3-preview/b9e816a532d71bcd7a41b7c7068effa2f4d91c83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71710315,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.329,0.234,10.0,-7.725,1.0,0.0303,0.913,0.0,0.132,0.199,170.466,3.0,,Universal Music Group,"C © 2018 Capitol Records, P ℗ 2018 Capitol Records",7314 +7315,spotify:track:6mqfq8EdYoV07TXM2rgPgb,Hurt,spotify:artist:2JyxVsEiD9HVRM7CtFaLCK,Timi Yuro,spotify:album:18UaMS0uVYtzsIoDIS5v3P,The Best Of Timi Yuro,spotify:artist:2JyxVsEiD9HVRM7CtFaLCK,Timi Yuro,1992-01-01,https://i.scdn.co/image/ab67616d0000b273892f44a91a252a3ee2ecd743,1,1,148466,https://p.scdn.co/mp3-preview/431c45701f370ec7cfdacdd181e2d170ff6773c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USCA26100175,spotify:user:bradnumber1,2021-08-08T09:26:31Z,northern soul,0.493,0.244,5.0,-11.487,1.0,0.0277,0.707,0.000462,0.121,0.222,87.044,3.0,,EMI/EMI Records (USA),"C © 1992 EMI Catalog, P ℗ 1992 Capitol Records, LLC",7315 +7316,spotify:track:5siee1e4lz8uF51OokjglA,Shackles (Praise You),spotify:artist:12Kgt2eahvxNWhD5PnSUde,Mary Mary,spotify:album:2CW02evpO85vRxOSYx7zcP,Thankful,spotify:artist:12Kgt2eahvxNWhD5PnSUde,Mary Mary,2000-04-25,https://i.scdn.co/image/ab67616d0000b273ba6d305f6aa505d03438818f,1,4,196240,https://p.scdn.co/mp3-preview/0cae47144420d34c80810286d7b7b01046ad9b0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USSM19922334,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gospel,gospel r&b",0.79,0.68,7.0,-7.807,1.0,0.153,0.0313,0.0,0.194,0.813,100.442,4.0,,Columbia/C2Records,"P (P) 1999, 2000 SONY BMG MUSIC ENTERTAINMENT",7316 +7317,spotify:track:0jdso14vaFnpRazMLEZovF,Astronaut In The Ocean,spotify:artist:1uU7g3DNSbsu0QjSEqZtEd,Masked Wolf,spotify:album:023KmMyB2DNZR3V8YKoET9,Astronaut In The Ocean,spotify:artist:1uU7g3DNSbsu0QjSEqZtEd,Masked Wolf,2019-06-07,https://i.scdn.co/image/ab67616d0000b273214ace0e5ba30b74d19efb19,1,1,132780,https://p.scdn.co/mp3-preview/e89e477c2467c477031561ff801c055c5777de4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFXV1900105,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.778,0.695,4.0,-6.865,0.0,0.0913,0.174,0.0,0.151,0.472,149.996,4.0,,Teamwrk Records,"C 2019 Teamwrk Records, P 2019 Teamwrk Records",7317 +7318,spotify:track:05pKAafT85jeeNhZ6kq7HT,I Won't Give Up,spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,spotify:album:3WeU5jvi9QBSbwV0hYG66P,I Won't Give Up,spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,2012-01-03,https://i.scdn.co/image/ab67616d0000b2731a538dbbc117f0723b8e94da,1,1,240165,https://p.scdn.co/mp3-preview/6061d92d73d39c30cf32a63a2cd976fc057c3fa4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USEE11100768,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,dance pop,neo mellow,pop",0.585,0.303,4.0,-10.058,1.0,0.0398,0.694,0.0,0.115,0.142,136.703,3.0,,Atlantic Records,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",7318 +7319,spotify:track:3Nciyx5OTBo8XVRFYt3FV1,You Are Everything,"spotify:artist:2O0Hw1WSMbskB5tD9aWah3, spotify:artist:3vFFK9T74YkzeNYkNvjGLl","The Stylistics, Russell Thompkins\, Jr.",spotify:album:0EwxSxiTwGwqdbjIYrg6Uq,The Stylistics,spotify:artist:2O0Hw1WSMbskB5tD9aWah3,The Stylistics,1971-01-01,https://i.scdn.co/image/b092c90f58ff0576bd3f7bf8a288d7f03b9212e1,1,6,177093,https://p.scdn.co/mp3-preview/bfff013c66ea7cd4dbe9cf5f5838d6458d49ff8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US37B0500139,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,motown,philly soul,quiet storm,soul",0.516,0.559,2.0,-9.425,0.0,0.0367,0.843,0.0,0.431,0.685,142.207,4.0,,Amherst Records,"C (C) 1971 Amherst Records, Inc",7319 +7320,spotify:track:0cshR238JUXLwLLcEmguM0,Puppet On A String,spotify:artist:5uxkcHbgyNbyzq1nyChvCa,Sandie Shaw,spotify:album:1neXFRBTVrRjyWj3PO4hmB,Puppet On A String - The Best Of Sandie Shaw,spotify:artist:5uxkcHbgyNbyzq1nyChvCa,Sandie Shaw,2018-04-02,https://i.scdn.co/image/ab67616d0000b27339569a80e9de9e33d4005234,1,1,146186,https://p.scdn.co/mp3-preview/3fdeea0f3e4420376406af47b7b462486f6ceedb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUV401468048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.722,0.664,7.0,-6.647,1.0,0.0446,0.451,0.0,0.0709,0.96,124.432,4.0,,The Music Factory,P 2018 V&H Holdings Pty Ltd,7320 +7321,spotify:track:76LfrEEYsjRIXOMhZVCijI,Flaws,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,spotify:album:2r1iXEfyFZaYSmthwnKGGp,All This Bad Blood,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,2013-01-01,https://i.scdn.co/image/ab67616d0000b273ea31b7b318e504c083d44346,1,9,218800,https://p.scdn.co/mp3-preview/a0ed4cf40ec7b55783c2bf668da5b2e3036cab47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAA1200682,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop",0.555,0.644,8.0,-6.97,1.0,0.0367,0.42,0.0,0.0751,0.417,144.202,4.0,,Universal Music Group,"C © 2013 Virgin Records Ltd, P ℗ 2013 Virgin Records Ltd",7321 +7322,spotify:track:794eCAahidbYjWkKy0t9BS,If I Can't Have You,spotify:artist:73a6pNH4YtLNgDbPQwXveo,Kim Wilde,spotify:album:0W8AprzSATgTr5urju5yYz,The Very Best Of Kim Wilde,spotify:artist:73a6pNH4YtLNgDbPQwXveo,Kim Wilde,2001,https://i.scdn.co/image/ab67616d0000b273ab906dbb8040c0160aa9a508,1,15,209373,https://p.scdn.co/mp3-preview/d2273e98e09669a9663d8a181186cd1025d4df3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19341421,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.675,0.801,0.0,-6.397,1.0,0.0277,0.0465,1.6e-05,0.152,0.722,117.923,4.0,,Parlophone UK,"C 2001 Parlophone Records Ltd, a Warner Music Group Company, P 2001 Parlophone Records Ltd, a Warner Music Group Company",7322 +7323,spotify:track:5hxuBWWmk9cGM1p8vrJ8bP,Loud Like Love,spotify:artist:6RZUqkomCmb8zCRqc9eznB,Placebo,spotify:album:1I7nurs0QFuIrDPXjdx96L,Loud Like Love,spotify:artist:6RZUqkomCmb8zCRqc9eznB,Placebo,2013-01-01,https://i.scdn.co/image/ab67616d0000b273342ccb4f67cedf91136c527a,1,1,291720,https://p.scdn.co/mp3-preview/b7975ed0b5889bab4747e642a391eb0391f3724b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEUM71301907,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,britpop,permanent wave,rock",0.403,0.94,8.0,-4.761,1.0,0.0605,0.000171,5.32e-06,0.121,0.356,76.503,4.0,,Universal Music Group,"C © 2013 Elevator Lady Ltd., under exclusive license to Vertigo/Capitol, a division of Universal Music GmbH, P ℗ 2013 Elevator Lady Ltd., under exclusive license to Vertigo/Capitol, a division of Universal Music GmbH",7323 +7324,spotify:track:7tUEDtHchueeUJTfEFEhii,Right Here - Human Nature Radio Mix,spotify:artist:2NmK5FyrQ18HOPXq1UBzqa,SWV,spotify:album:2BBrAtWY0c6dPio5b2JYFK,It's About Time,spotify:artist:2NmK5FyrQ18HOPXq1UBzqa,SWV,1992-10-27,https://i.scdn.co/image/ab67616d0000b273f56546aac4f5d002c4c3d705,1,15,226946,https://p.scdn.co/mp3-preview/640a7886b3e2897673572de83477cf8297af83e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRC19305619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,girl group,hip pop,new jack swing,r&b,urban contemporary",0.615,0.72,9.0,-5.16,0.0,0.0658,0.068,0.0105,0.0889,0.696,94.002,4.0,,RCA Records Label,"P (P) 1992 RCA Records, a division of Sony Music Entertainment",7324 +7325,spotify:track:31HhcRSNcS8Rgv9ldIfh66,Make Me Lose Control,spotify:artist:2ekjTXgjxbWwBX5lTAj4DU,Eric Carmen,spotify:album:02CxAhdSRhzcm6XQ8m5RNp,The Definitive Collection,spotify:artist:2ekjTXgjxbWwBX5lTAj4DU,Eric Carmen,1997,https://i.scdn.co/image/ab67616d0000b27356daa802ddbaedf04e8123cc,1,18,285946,https://p.scdn.co/mp3-preview/f659cf58a80f557f2908fa242b7a2d4f675ecbce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAR19700260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock,yacht rock",0.724,0.619,4.0,-9.074,1.0,0.0242,0.0728,0.0,0.205,0.746,109.029,4.0,,Arista,"P This compilation (P) 1997 Arista Records LLC, a division of Sony Music Entertainment",7325 +7326,spotify:track:0WuYuWhLws8VahMy2zLLRJ,Eat It,spotify:artist:1bDWGdIC2hardyt55nlQgG,"""Weird Al"" Yankovic",spotify:album:2WMY5Qm6ztMQsAubpumeb4,"The Essential ""Weird Al"" Yankovic",spotify:artist:1bDWGdIC2hardyt55nlQgG,"""Weird Al"" Yankovic",2009,https://i.scdn.co/image/ab67616d0000b273e840912a60b4d50e0b75154b,1,3,200626,https://p.scdn.co/mp3-preview/d80ffb59925839ae64b56835fff1b1e0631197d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USVR10200028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"comedy rock,comic,parody",0.767,0.811,7.0,-8.548,1.0,0.0766,0.0866,0.0,0.0684,0.858,147.423,4.0,,Volcano/Legacy,"P (P) 1983, 1984, 1985, 1986, 1988, 1989, 1992, 1993 Sony Music Entertainment/(P) 1996, 1999, 2003, 2006 Sony Music Entertainment",7326 +7327,spotify:track:3SWIQx1j5erTiT9IXcaRNH,"That Sunday, That Summer",spotify:artist:7v4imS0moSyGdXyLgVTIV7,Nat King Cole,spotify:album:5jA1HyOHqWy718lEXH2koC,Those Lazy Hazy Crazy Days Of Summer,spotify:artist:7v4imS0moSyGdXyLgVTIV7,Nat King Cole,1963-04-01,https://i.scdn.co/image/ab67616d0000b273817da87bdbfac461a03dccf6,1,5,190666,https://p.scdn.co/mp3-preview/c3e00fa6a31dabd72c778776b0b584a2f88d46b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USCA29100642,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,soul,swing,vocal jazz",0.249,0.46,1.0,-9.914,1.0,0.0406,0.755,0.0,0.395,0.462,82.495,4.0,,Capitol Records,"C © 1963 Capitol Records, LLC, P ℗ 2009 Capitol Records, LLC",7327 +7328,spotify:track:3BINArUJhtdRH2n176nipN,Stone Cold Sober,spotify:artist:4fwuXg6XQHfdlOdmw36OHa,Paloma Faith,spotify:album:2Nux29fvtv1jlTuXPT28E0,Do You Want The Truth Or Something Beautiful?,spotify:artist:4fwuXg6XQHfdlOdmw36OHa,Paloma Faith,2009-09-24,https://i.scdn.co/image/ab67616d0000b27308fd1156d6ba26edc6cc22c0,1,1,174333,https://p.scdn.co/mp3-preview/018ccebcf23b298dca3bea25fcf1f31199356730?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL0901135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,talent show,uk pop",0.566,0.927,4.0,-1.887,0.0,0.0693,0.259,0.0,0.385,0.836,105.161,4.0,,Epic,P (P) 2009 Sony Music Entertainment UK Limited,7328 +7329,spotify:track:2EnZ9bpgUtLgKkRFehp8xS,Nothing's Gonna Change My Love for You,spotify:artist:0bByarMN8ryEFQsRo6iCUN,Glenn Medeiros,spotify:album:65kb5QQ9XBwQmxTdcyF1I8,Glenn Medeiros,spotify:artist:0bByarMN8ryEFQsRo6iCUN,Glenn Medeiros,1987-01-01,https://i.scdn.co/image/ab67616d0000b27353ac914222e4edb1dbe67bc5,1,1,232066,https://p.scdn.co/mp3-preview/1498eaddd88655ebca565a8ef9d3be4554259665?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US37B0500611,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.445,0.378,1.0,-15.257,1.0,0.0381,0.627,0.0,0.0758,0.406,142.061,4.0,,Amherst Records,"C (C) 1987 Amherst Records, Inc",7329 +7330,spotify:track:25ys1lEf3z6lvkDEE5mG0R,Where's Your Head At,spotify:artist:4YrKBkKSVeqDamzBPWVnSJ,Basement Jaxx,spotify:album:6Gv1fOIDgnEfT0RnoUJ65Z,Rooty,spotify:artist:4YrKBkKSVeqDamzBPWVnSJ,Basement Jaxx,2001-06-25,https://i.scdn.co/image/ab67616d0000b2739889b43ea774009ee592e4b8,1,9,283533,https://p.scdn.co/mp3-preview/d1601f47f376497319dab1e7da3678c8a818f8d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS0100014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,big beat,electronica",0.604,0.924,0.0,-4.848,1.0,0.0303,7.53e-05,0.119,0.332,0.411,127.862,4.0,,XL Recordings,"C 2001 XL Recordings Ltd, P 2001 XL Recordings Ltd",7330 +7331,spotify:track:5tV7QNSURiLd8trSLrZahV,The Cave,spotify:artist:3gd8FJtBJtkRxdfbTu19U2,Mumford & Sons,spotify:album:1c2Ee269Rj9w8wn8s3qQu9,Sigh No More,spotify:artist:3gd8FJtBJtkRxdfbTu19U2,Mumford & Sons,2009-01-01,https://i.scdn.co/image/ab67616d0000b273ff8fd758310f8dcd96e99a43,1,2,218000,https://p.scdn.co/mp3-preview/ebf9a368ed0330bac3c9a4f9a266becfd0d4a953?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBUM70909075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern folk rock,modern rock,neo mellow,stomp and holler,uk americana",0.59,0.513,4.0,-9.476,1.0,0.0375,0.0481,0.000108,0.0906,0.406,141.988,4.0,,Universal-Island Records Ltd.,"C © 2009 Universal Island Records Ltd. A Universal Music Company., P ℗ 2009 Mumford & Sons, Under exclusive license to Universal Island Records Ltd. A Universal Music Company",7331 +7332,spotify:track:0UZqLyiCqfEYNFQ9ioNC64,She's Like A Comet,spotify:artist:6L9bfTvOEA9BOJEIBhU4ln,Jebediah,spotify:album:3G4p2A1xTCxVlbYrcn8RkD,Kosciuszko,spotify:artist:6L9bfTvOEA9BOJEIBhU4ln,Jebediah,2011-01-01,https://i.scdn.co/image/ab67616d0000b273d5073c18eccb79bf2150f1ec,1,3,222893,https://p.scdn.co/mp3-preview/e3914aa69cfb10f5def9e64cab28eef992814a75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71002301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussie emo,australian alternative rock,australian indie,australian rock,perth indie",0.463,0.931,6.0,-3.809,0.0,0.0436,7.58e-05,0.000867,0.138,0.585,145.013,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Jebediah Pty Ltd, Under exclusive license to Dew Process/Universal Music Australia Pty Ltd, P ℗ 2011 Jebediah Pty Ltd, Under exclusive license to Dew Process/Universal Music Australia Pty Ltd",7332 +7333,spotify:track:3zCzffrOzTrqXggqCouSlT,Never Ending Song of Love,spotify:artist:6dTCMsjfH2odCFlNb36SCG,Delaney & Bonnie,spotify:album:2TjdFBIZbjq8mMOpZme6Mg,Motel Shot,spotify:artist:6dTCMsjfH2odCFlNb36SCG,Delaney & Bonnie,1971-03-01,https://i.scdn.co/image/ab67616d0000b273ae59c1d543f3b5931265bd06,1,9,200466,https://p.scdn.co/mp3-preview/773b3bca67165b432a4224ffb4127a979bf8e574?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USEE10301943,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,southern rock,swamp rock",0.669,0.533,0.0,-14.096,1.0,0.0273,0.261,0.0,0.156,0.847,92.273,4.0,,Rhino Atlantic,"C © 1971 Atlantic Recording Corporation. All Rights Reserved., P ℗ 1971 Atlantic Recording Corporation. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company",7333 +7334,spotify:track:1CtAzw53AIXKjAemxy4b1j,Beds Are Burning - Remastered,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:243XzHQegX82bPnUVQ0SPV,Diesel And Dust,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1987-10-02,https://i.scdn.co/image/ab67616d0000b2730dd350beeb5ac73672ad6e80,1,1,255680,https://p.scdn.co/mp3-preview/5be028a45461c43aac74fd04a6d5466fe5cfc515?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,AUBM00700707,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.753,0.427,0.0,-11.112,1.0,0.0387,0.00787,0.00065,0.058,0.295,119.18,4.0,,Columbia,P (P) 1987 Midnight Oil Ents Pty Ltd,7334 +7335,spotify:track:6H63UyU8O7M7nYDR9GbtaW,Don't Wanna Go to Bed Now,spotify:artist:5v2GEv1pQaCp6oeOQROdKE,Gabriella Cilmi,spotify:album:00fdw3tBe9l8qRBIm6Y1Ei,Lessons To Be Learned (Special Edition),spotify:artist:5v2GEv1pQaCp6oeOQROdKE,Gabriella Cilmi,2008-05-10,https://i.scdn.co/image/ab67616d0000b2732ad48ee25c11f68ed143d2c0,1,6,189386,https://p.scdn.co/mp3-preview/f35073116ae4762084f261c894d1a11402c90750?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,GBUM70711088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian r&b",0.526,0.846,6.0,-5.368,1.0,0.0406,0.000241,0.315,0.0822,0.8,150.908,4.0,,WM Australia,"C © 2008 Warner Music Australia Pty Limited For Australia and New Zealand, P ℗ 2008 Warner Music Australia Pty Limited For Australia and New Zealand",7335 +7336,spotify:track:0r8H7m8knNVn3iUXwQCnVo,Shot Through The Heart,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:1UUOBzIHw0noiRGRpbt3sz,Bon Jovi,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1984-01-23,https://i.scdn.co/image/ab67616d0000b273ede118b5f0e159dd18d42b90,1,4,265933,https://p.scdn.co/mp3-preview/5be93b12dca48152ef8bda56e6f60828c9eff3f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USMR18489018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.435,0.931,9.0,-5.055,0.0,0.0725,0.0418,0.000293,0.0846,0.387,153.475,4.0,,Island Records,"C © 1984 UMG Recordings, Inc., P ℗ 1984 UMG Recordings, Inc.",7336 +7337,spotify:track:7GSt1wQIumbnBcx3Fc6oxS,Mowgli's Road,spotify:artist:6CwfuxIqcltXDGjfZsMd9A,MARINA,spotify:album:1CtDa7pVfLF4u2ZadRTWz7,The Family Jewels,spotify:artist:6CwfuxIqcltXDGjfZsMd9A,MARINA,2009-07-15,https://i.scdn.co/image/ab67616d0000b27336f6918170afcb7fe66130e5,1,5,192560,https://p.scdn.co/mp3-preview/410142aa2def740d68b7e494221f04b98b8ce5de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBFFS0900113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,pop,pov: indie,uk alternative pop",0.62,0.81,10.0,-6.773,0.0,0.0488,0.00707,0.000169,0.336,0.66,146.29,4.0,,WM UK,"C © 2010 679 Recordings Ltd., P ℗ 2010 679 Recordings Ltd.",7337 +7338,spotify:track:2BQZvZsA9SRafvWEBSQnri,Anyone Who Had a Heart,spotify:artist:2JSjCHK79gdaiPWdKiNUNp,Dionne Warwick,spotify:album:6wdZ2YwGsOGmhlrmlglpsc,Anyone Who Had a Heart,spotify:artist:2JSjCHK79gdaiPWdKiNUNp,Dionne Warwick,1964,https://i.scdn.co/image/ab67616d0000b273eaa0aecce000bb2569ea9864,1,1,184226,https://p.scdn.co/mp3-preview/e9d7799eed99a5cfac3183955c798b8688b2efdb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USWSP0000010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,disco,quiet storm,soft rock,soul,vocal jazz",0.505,0.0477,8.0,-23.032,1.0,0.0278,0.91,2.61e-06,0.0675,0.309,78.856,3.0,,Rhino,"C © 2004 Warner Special Products. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Warner Special Products. Manufactured & Marketed by Warner Strategic Marketing",7338 +7339,spotify:track:7dltD9eEX7X1zk8JJ9BS0e,Superstar (feat. Matthew Santos),"spotify:artist:01QTIT5P1pFP3QnnFSdsJf, spotify:artist:5t2P9w0qT2I9y0DrNhykSj","Lupe Fiasco, Matthew Santos",spotify:album:0MihD70HInk2rDaChdAdEy,Lupe Fiasco's The Cool,spotify:artist:01QTIT5P1pFP3QnnFSdsJf,Lupe Fiasco,2007-01-01,https://i.scdn.co/image/ab67616d0000b273c3244d303444a43b933b9bf4,1,5,289000,https://p.scdn.co/mp3-preview/e49ad71d2cbd369765f88131c93996291e985607?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USAT20704985,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,conscious hip hop,hip hop,political hip hop,pop rap,rap,southern hip hop",0.572,0.822,11.0,-6.015,0.0,0.361,0.207,0.0,0.359,0.472,94.812,4.0,,1st & 15th/Atlantic,"C © 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",7339 +7340,spotify:track:0nyrltZrQGAJMBZc1bYvuQ,Get Up Offa That Thing,spotify:artist:7GaxyUddsPok8BuhxN6OUW,James Brown,spotify:album:6MjOv3BeIjmht2ymtRih3s,20 All-Time Greatest Hits!,spotify:artist:7GaxyUddsPok8BuhxN6OUW,James Brown,1991,https://i.scdn.co/image/ab67616d0000b27312b16cbb525e11bcbfd50d82,1,19,250200,https://p.scdn.co/mp3-preview/ac06972599e7b70d33847c9e4f2f1f0a4c09b386?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USF067625010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,soul,vocal jazz",0.883,0.664,4.0,-10.395,1.0,0.411,0.225,2.3e-06,0.941,0.8,118.104,4.0,,Strategic Marketing,"C © 2008 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2008 Universal Records, a Division of UMG Recordings, Inc.",7340 +7341,spotify:track:1QUpqu8865jfasDr8M3IKN,a thousand years,spotify:artist:7H55rcKCfwqkyDFH9wpKM6,Christina Perri,spotify:album:1iGIqDBXm5HpTqHCvdc4QP,The Twilight Saga: Breaking Dawn - Part 1 (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2011-11-04,https://i.scdn.co/image/ab67616d0000b273f01ba25235fb24f73605b9dd,1,6,285120,https://p.scdn.co/mp3-preview/be3f3ae6466123836bb05ce0a23a368c196e62f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAT21102141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.421,0.407,10.0,-7.445,1.0,0.0267,0.309,0.000961,0.11,0.161,139.028,3.0,,Chop Shop/Atlantic,"C © 2011 TM & 2011 Summit Entertainment, LLC. All rights reserved., P ℗ 2011 This compilation 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",7341 +7342,spotify:track:7M02kXq1w8EppeQzkc8BoB,Rubberneckin' - Paul Oakenfold Remix / Radio Edit,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0p8PgHjOZJ6MrbHUXQ8ENM,Elvis 2nd To None,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2003-10-07,https://i.scdn.co/image/ab67616d0000b273fff6b0a441b0d673ee820528,1,30,209240,https://p.scdn.co/mp3-preview/2e4db2149e75fcf563a32f788ae87603de76eadf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USRC10301117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.583,0.895,0.0,-6.024,1.0,0.0325,0.000785,0.000158,0.122,0.931,141.986,4.0,,SBME Strategic Marketing Group,P (P) 2003 Sony Music Entertainment,7342 +7343,spotify:track:7vPhap0noMZ60QQY27IkPv,Annie's Song,spotify:artist:7EK1bQADBoqbYXnT4Cqv9w,John Denver,spotify:album:6IWq54w4j5ZpaXUxro3bsr,Back Home Again,spotify:artist:7EK1bQADBoqbYXnT4Cqv9w,John Denver,1974-06-15,https://i.scdn.co/image/ab67616d0000b273a18c7b36537f7ebd6c5b5e62,1,7,180693,https://p.scdn.co/mp3-preview/465e75f7e04d6552dc42f03801279b8a56aaaa52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC17403082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.304,0.305,2.0,-10.879,1.0,0.0298,0.871,0.00368,0.367,0.464,146.066,3.0,,RCA/Legacy,P (P) 1974 Sony Music Entertainment,7343 +7344,spotify:track:1ixtKlUJDgKCvYcSIviMuV,Bless You,spotify:artist:6PNZ6ZfwWLiUA2BrranFl3,Tony Orlando,spotify:album:3cceuam4ZfqSSC4uVchxvx,Pure... '60s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-03-26,https://i.scdn.co/image/ab67616d0000b273c59e912a41f34db94c75c828,3,15,127066,https://p.scdn.co/mp3-preview/650b230e33bd6ed938de99e8a35b8e181bdb230d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,USSM16101251,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.491,0.458,1.0,-9.567,1.0,0.0359,0.518,0.0,0.108,0.811,125.619,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment,7344 +7345,spotify:track:4dGJf1SER1T6ooX46vwzRB,Chicken Fried,spotify:artist:6yJCxee7QumYr820xdIsjo,Zac Brown Band,spotify:album:0Im5nUhAuNDSYVjfPh7RyS,The Foundation,spotify:artist:6yJCxee7QumYr820xdIsjo,Zac Brown Band,2008-11-17,https://i.scdn.co/image/ab67616d0000b2733f6f4ab78c05dfdfcc37a205,1,6,238146,https://p.scdn.co/mp3-preview/88d6f7a1fa2c4714a6a77ca64d6af26ec952830a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USAT20804178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road,modern country rock",0.566,0.713,6.0,-4.25,1.0,0.0417,0.645,0.0,0.114,0.807,169.864,4.0,,Home Grown/Big Picture/Atlantic,"C 2008 Home Grown Music, Inc. under exclusive license to Atlantic Recording Corporation, P 2008 Home Grown Music, Inc. under exclusive license to Atlantic Recording Corporation",7345 +7346,spotify:track:0KTfZWEWivacSuZSjUe7JS,Big Yellow Taxi,"spotify:artist:0vEsuISMWAKNctLlUAhSZC, spotify:artist:5ILrArfIV0tMURcHJN8Q07","Counting Crows, Vanessa Carlton",spotify:album:7FJlveNFRrWYiD6xWGPHSb,Films About Ghosts (The Best Of Counting Crows),spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,2003-11-24,https://i.scdn.co/image/ab67616d0000b273fd27e72c498404db51289520,1,10,225426,https://p.scdn.co/mp3-preview/51fb050601e892c5676c6d6895bf59a15ff37457?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USIR10211754,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge,rock,lilith,neo mellow,piano rock,pop rock,post-teen pop",0.669,0.873,8.0,-4.315,1.0,0.0494,0.00204,0.0,0.136,0.826,88.03,4.0,,Geffen,"C © 2004 Geffen Records, P ℗ 2004 Geffen Records",7346 +7347,spotify:track:3nPuiyquRnUIiJ87VFNHEt,We've Got Tonight,"spotify:artist:0jYKX08u1XxmHrl5TdM2QZ, spotify:artist:3nlHsNqwCSvT988ZfSW1Yh","Lulu, Ronan Keating",spotify:album:3AVtAHUxVZQMPGEJ7USE0j,10 Years Of Hits,spotify:artist:3nlHsNqwCSvT988ZfSW1Yh,Ronan Keating,2004-01-01,https://i.scdn.co/image/ab67616d0000b27380a68ec129fd0263547e1c7c,1,7,217360,https://p.scdn.co/mp3-preview/05a94ba9dec2be84628cc8f726a77f948dda5e4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBF080201111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,europop,talent show",0.606,0.28,6.0,-10.049,1.0,0.0301,0.506,1.36e-05,0.0935,0.198,123.631,4.0,,Polydor Records,"C © 2004 Polydor Ltd. (UK), P ℗ 2004 Polydor Ltd. (UK)",7347 +7348,spotify:track:5N3dv2MACON0IkBc8KoGRS,All the Wrong Places - Radio Edit,spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,spotify:album:4sxj4Z8g8stVQ7eQKf0nrg,Live Life Living (Deluxe),spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW,Example,2014-07-07,https://i.scdn.co/image/ab67616d0000b273d0e45bb296c00440473ae4f4,1,9,207866,https://p.scdn.co/mp3-preview/606db5b928e5b179207832da6f88f1edf28cf009?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBARL1300788,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,uk dance",0.623,0.972,3.0,-3.566,0.0,0.0555,0.0517,0.0,0.656,0.623,135.03,4.0,,Epic,P (P) 2014 Sony Music Entertainment UK Limited,7348 +7349,spotify:track:4V9BTST4BSkvOL4xIQNHuS,Heaven Is A Place On Earth,spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,spotify:album:08pQhv89ezKOhOKqZner5D,Heaven on Earth (Remastered & Expanded Special Edition),spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,1987-10-05,https://i.scdn.co/image/ab67616d0000b273e489befcd9fed0e7cf04052f,1,1,247093,https://p.scdn.co/mp3-preview/814a22098ab3e9c01a74591c26051a3fde06bbcc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAAA8700010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock",0.634,0.901,4.0,-6.508,1.0,0.0333,0.0061,9.01e-06,0.0419,0.687,122.851,4.0,,Edsel,"C (C) 2013 Demon Music Group Ltd., P (P) 1987 Artist Management Services Ltd",7349 +7350,spotify:track:5pfznNIfG6LJNcKX0gIGHJ,80s Mercedes,spotify:artist:6WY7D3jk8zTrHtmkqqo5GI,Maren Morris,spotify:album:59oClmNedlPrPkRTQJVilC,Maren Morris - EP,spotify:artist:6WY7D3jk8zTrHtmkqqo5GI,Maren Morris,2015-11-06,https://i.scdn.co/image/ab67616d0000b273485b7d778dbd8a299bbb5b6c,1,2,212093,https://p.scdn.co/mp3-preview/a7a3f7da24d16f934a57ee531ac276663de5f754?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USG4X1500777,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic texas country,contemporary country",0.51,0.843,9.0,-5.463,1.0,0.0732,0.0673,0.0,0.284,0.64,90.956,4.0,,Columbia Nashville,P (P) 2015 Sony Music Entertainment,7350 +7351,spotify:track:2iUmqdfGZcHIhS3b9E9EWq,Everybody Talks,spotify:artist:0RpddSzUHfncUWNJXKOsjy,Neon Trees,spotify:album:0uRFz92JmjwDbZbB7hEBIr,Picture Show,spotify:artist:0RpddSzUHfncUWNJXKOsjy,Neon Trees,2012-01-01,https://i.scdn.co/image/ab67616d0000b2734a6c0376235e5aa44e59d2c2,1,3,177280,https://p.scdn.co/mp3-preview/9ad5a3b2443d6842bab6770eec8c9e12c29074a0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,76,USUM71119189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,neo mellow,pop rock,pov: indie",0.471,0.924,8.0,-3.906,1.0,0.0584,0.00301,0.0,0.313,0.716,154.962,4.0,,Mercury Records,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",7351 +7352,spotify:track:1C0pmryC2MdXfa7MZ9uIrU,One Week,spotify:artist:0dEvJpkqhrcn64d3oI8v79,Barenaked Ladies,spotify:album:4FsibLgkGMV9AfbLtEqvxT,Stunt,spotify:artist:0dEvJpkqhrcn64d3oI8v79,Barenaked Ladies,1998-07-07,https://i.scdn.co/image/ab67616d0000b2732db1f620d6d51d31825ebebe,1,1,169760,https://p.scdn.co/mp3-preview/07d07770b7271de52eeacc2e4892205b47b91594?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USRE19800261,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian rock,pop rock,post-grunge",0.702,0.898,9.0,-6.003,1.0,0.0373,0.00854,0.000154,0.0917,0.731,112.845,4.0,,Reprise,"C 1998 Reprise Records, P 1998 Reprise Records",7352 +7353,spotify:track:7DY005dTZhZjHBCpi09apk,Angel Eyes,spotify:artist:69lNua6PEluHihKfuIRPKc,Paulini,spotify:album:2uGQzA2evNHfuI652xh5bt,One Determined Heart,spotify:artist:69lNua6PEluHihKfuIRPKc,Paulini,2004-07-23,https://i.scdn.co/image/ab67616d0000b273856b6602517ff02980666aae,1,1,241440,https://p.scdn.co/mp3-preview/a498139d9a3c287ccca06b2619b40d7ddd48fe05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUSM00400086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.478,0.582,5.0,-5.318,1.0,0.0299,0.544,0.0,0.103,0.211,127.902,4.0,,Columbia,P (P) 2004 Sony Music Entertainment Australia Pty Ltd,7353 +7354,spotify:track:4rIEkt9wgcmoIJtiRcvtNX,If You're Not The One,spotify:artist:11hIqBsGRPztdjBHCSLClX,Daniel Bedingfield,spotify:album:6119li3hGAUgOngMRDp0vo,Gotta Get Thru This (New Non EU Version),spotify:artist:11hIqBsGRPztdjBHCSLClX,Daniel Bedingfield,2002,https://i.scdn.co/image/ab67616d0000b27386e70fcccc080a24626b16ea,1,4,257026,https://p.scdn.co/mp3-preview/130e2516bdf059a4f71eaffad08a9ae797adf6d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0201297,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.688,0.538,10.0,-7.608,1.0,0.0292,0.504,0.0,0.111,0.27,119.998,4.0,,Universal Music Taiwan,"C © 2003 Polydor Ltd. (UK), P ℗ 2003 Polydor Ltd. (UK)",7354 +7355,spotify:track:6PlA5mYzcTz4tEsBCkJpGm,You're So Strong,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:4hx41t6IQkOUy7exOtu7wp,Fundamental As Anything,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,1985-09-01,https://i.scdn.co/image/ab67616d0000b27393ddca090b7df9554d32e050,1,1,209133,https://p.scdn.co/mp3-preview/acf5d96e1b310a840aa349017dcad60d02ce24fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUFE09800663,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.633,0.748,7.0,-9.689,1.0,0.0664,0.172,0.0,0.38,0.497,142.575,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Syray Music, P ℗ 2015 Syray Music",7355 +7356,spotify:track:57J2znxukXsXzS3XPuZ1TG,(I Can't Get No) Satisfaction - Mono Version / Remastered 2002,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:1YYEC5hLwDbQPtErSBD223,The Rolling Stones Singles Collection: The London Years (Remastered),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1989-08-15,https://i.scdn.co/image/ab67616d0000b2738431cf0e9d64de9e0c2fa931,1,19,222840,https://p.scdn.co/mp3-preview/22782e4be2eb4daa12edd8882a894ffda3601b43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176510160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.722,0.882,2.0,-6.763,1.0,0.0348,0.0354,0.0496,0.119,0.921,136.299,4.0,,Universal Music Group,"C © 2002 ABKCO Music & Records Inc., P ℗ 2002 ABKCO Music & Records Inc.",7356 +7357,spotify:track:5N5k9nd479b1xpDZ4usjrg,Promises (with Sam Smith),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:3KedxarmBCyFBevnqQHy3P","Calvin Harris, Sam Smith, Jessie Reyez",spotify:album:2tpWgbBdzjkaJVJzR4T8y1,Promises (with Sam Smith),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:3KedxarmBCyFBevnqQHy3P","Calvin Harris, Sam Smith, Jessie Reyez",2018-08-17,https://i.scdn.co/image/ab67616d0000b273ccdcbd450e42fc7b27a82a1f,1,1,213309,https://p.scdn.co/mp3-preview/74355c0f30e80eb410b8c22d3b118f1aa0c930d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBARL1801049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,pop,uk pop,canadian contemporary r&b,canadian pop",0.781,0.768,11.0,-5.991,1.0,0.0394,0.0119,4.91e-06,0.325,0.486,123.07,4.0,,Columbia,P (P) 2018 Sony Music Entertainment UK Limited,7357 +7358,spotify:track:4feXcsElKIVsGwkbnTHAfV,Somethin' Stupid,"spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0, spotify:artist:3IZrrNonYELubLPJmqOci2","Frank Sinatra, Nancy Sinatra",spotify:album:67Evm6gPc9wFSUf1aXOrKO,The World We Knew,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,1967-08,https://i.scdn.co/image/ab67616d0000b2733e2331ff09f59ea3c87fe5d6,1,2,162493,https://p.scdn.co/mp3-preview/a82a1c7a9ef51533572f492831d154eac8f23b3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USRH10800988,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,lounge,sunshine pop",0.257,0.338,4.0,-12.902,1.0,0.0357,0.736,0.0,0.252,0.544,207.356,4.0,,FRANK SINATRA DIGITAL REPRISE,"C © 1967 Frank Sinatra Enterprises, LLC, P ℗ 2010 Frank Sinatra Enterprises, LLC",7358 +7359,spotify:track:1JtKjseM1zu8uwJxKna5VV,Never Tear Us Apart,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:303WS9fT5qqGo9KlnImdZG,Kick 25 (Deluxe Edition),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2012-01-01,https://i.scdn.co/image/ab67616d0000b2735999577a1d188f37b2a6a60b,1,8,184586,https://p.scdn.co/mp3-preview/f823ba04c17d41b80ee811623cd2b7eb97b6af32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMX8700005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.661,0.613,0.0,-7.56,1.0,0.0273,0.00298,0.000176,0.176,0.19,96.609,3.0,,Universal Music Group,"C © 2012 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2012 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",7359 +7360,spotify:track:2BrzlUj1u1CtvaJDGIKpsP,Make Me (Cry),"spotify:artist:55fhWPvDiMpLnE4ZzNXZyW, spotify:artist:2feDdbD5araYcm6JhFHHw7","Noah Cyrus, Labrinth",spotify:album:46yAYzRhSMPA44m0MzSr6g,Make Me (Cry),"spotify:artist:55fhWPvDiMpLnE4ZzNXZyW, spotify:artist:2feDdbD5araYcm6JhFHHw7","Noah Cyrus, Labrinth",2016-11-15,https://i.scdn.co/image/ab67616d0000b273bf2ec8b87525fbd01fb0111f,1,1,242081,https://p.scdn.co/mp3-preview/899d20896020852ecd17d00771f408661392470a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,QM33K1500042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,pop,indie poptimism,pop",0.588,0.471,0.0,-7.287,1.0,0.0577,0.592,0.00146,0.0733,0.209,152.881,4.0,,"Records Label, LLC","P (P) 2016 RECORDS, LLC",7360 +7361,spotify:track:6HZLMsw7ZdObf3Jk7lKAMX,Stay Awake,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:1mRtVjwGgBvLiaJhPGHZ8M,A Place We Knew,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2019-03-22,https://i.scdn.co/image/ab67616d0000b273bdf61ee5112d498581b8d42c,1,4,185546,https://p.scdn.co/mp3-preview/5aafa6ef673affb9d5b8a4da4e2aab5bc669123d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71800260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop",0.727,0.797,11.0,-7.956,0.0,0.0454,0.311,4.27e-05,0.0922,0.6,106.033,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Universal Music Australia Pty Ltd., P An Island Records Australia release; ℗ 2019 Universal Music Australia Pty Ltd.",7361 +7362,spotify:track:4WbZxzzmWlFkqwBFVNNGKf,Before Too Long,"spotify:artist:0SNWoGaDlrCompmg9rXeNq, spotify:artist:6cBdXnLZZ80RDHOvNPVUcY","Paul Kelly, The Messengers",spotify:album:3380X2DBGZPKpeZTPQrcsr,Gossip,"spotify:artist:0SNWoGaDlrCompmg9rXeNq, spotify:artist:6cBdXnLZZ80RDHOvNPVUcY","Paul Kelly, The Messengers",1986-09-01,https://i.scdn.co/image/ab67616d0000b2732de284a2018f326e1ccae5ae,1,7,202253,https://p.scdn.co/mp3-preview/b668da81f7d97ae68912bbc7c19a53621e2fc6b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUYP00820056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian rock,muzica crestina",0.557,0.825,2.0,-4.345,1.0,0.029,0.00403,1.87e-05,0.335,0.785,133.814,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Paul Kelly, Manufactured and distributed by Universal Music Australia Pty Ltd, P ℗ 2010 Paul Kelly, Manufactured and distributed by Universal Music Australia Pty Ltd",7362 +7363,spotify:track:61WbtB6ujkpNAsAf5LjF4b,Bon appétit,"spotify:artist:6jJ0s89eD6GaHleKKya26X, spotify:artist:6oMuImdp5ZcFhWP0ESe6mG","Katy Perry, Migos",spotify:album:03ntx95u0wotf68NnE3aGw,Witness,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2017-06-09,https://i.scdn.co/image/ab67616d0000b2731487979a7e0181a5d0406d1a,1,11,227821,https://p.scdn.co/mp3-preview/a3906ba71f87aff18b3c0efbdb7b281179b37956?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71702488,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,atl hip hop,hip hop,pop rap,rap,southern hip hop,trap",0.797,0.792,6.0,-5.758,1.0,0.0607,0.111,7.88e-05,0.24,0.54,106.038,4.0,,Universal Music Group,"C © 2017 Capitol Records, P ℗ 2017 Capitol Records",7363 +7364,spotify:track:4ycahhaQdjoN61KNFxvGA9,He Walks Like A Man,spotify:artist:656TGMl6uRQSQlFRVCKt7w,Jody Miller,spotify:album:54PKMWVvNzW8kIN3uzXiEc,Queen Of The House,spotify:artist:656TGMl6uRQSQlFRVCKt7w,Jody Miller,1965-01-01,https://i.scdn.co/image/ab67616d0000b273e0004a86828752cb84dea7cc,1,2,157847,https://p.scdn.co/mp3-preview/d6eb5d78c82963dfa5dd49f0c5652c716ea19b7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USCA29701074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic oklahoma country,nashville sound",0.484,0.375,3.0,-10.026,1.0,0.0334,0.688,0.0,0.0556,0.674,120.523,4.0,,EMI Music Nashville (ERN),"C © 1965 Capitol Records, LLC, P ℗ 1965 Capitol Records, LLC",7364 +7365,spotify:track:3NnHbRoChijsTVSP8kQTp2,O Yeah,spotify:artist:5eZMLzpKYU5n4qAt5z4T13,End Of Fashion,spotify:album:2AUu4arz88yY0bGU84KjfD,End Of Fashion,spotify:artist:5eZMLzpKYU5n4qAt5z4T13,End Of Fashion,2005-01-01,https://i.scdn.co/image/ab67616d0000b273951d55a9a044878a8daafb1a,1,2,179768,https://p.scdn.co/mp3-preview/fe02927accfe0f88ef68d935ed6023b11be77e33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM00500012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,perth indie",0.39,0.878,4.0,-5.157,1.0,0.0383,0.0104,0.0,0.379,0.509,159.94,4.0,,Virgin Records,"C © 2005 EMI Recorded Music Australia Pty Ltd., P ℗ 2005 EMI Recorded Music Australia Pty Ltd.",7365 +7366,spotify:track:39shmbIHICJ2Wxnk1fPSdz,Should I Stay or Should I Go - Remastered,spotify:artist:3RGLhK1IP9jnYFH4BRFJBS,The Clash,spotify:album:1ZH5g1RDq3GY1OvyD0w0s2,Combat Rock (Remastered),spotify:artist:3RGLhK1IP9jnYFH4BRFJBS,The Clash,1982,https://i.scdn.co/image/ab67616d0000b27325a4df452a3c42ccc2e9288b,1,3,188986,https://p.scdn.co/mp3-preview/30dfcd239fdb4a9ee277ff3a214a4f6771bd8cb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBARL1200670,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,permanent wave,punk,rock",0.743,0.836,2.0,-6.465,1.0,0.116,0.0804,0.0,0.384,0.82,113.375,4.0,,Sony Music UK,P (P) 2013 Sony Music Entertainment UK Limited,7366 +7367,spotify:track:0ftGBKU81CcsYPU453BUaa,O.P.P.,spotify:artist:4Otx4bRLSfpah5kX8hdgDC,Naughty By Nature,spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,12,272200,https://p.scdn.co/mp3-preview/09b8e04e35f6fea1f9689bf562ae8abbf910bd28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20619496,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hip hop,new jersey rap",0.856,0.91,4.0,-8.423,0.0,0.081,0.0308,7.87e-06,0.14,0.76,97.755,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",7367 +7368,spotify:track:3TW48DvQ7ChwY1Yy1tkMaP,Runaway Train (2022 Remaster),spotify:artist:02da1vDJ2hWqfK7aJL6SJm,Soul Asylum,spotify:album:3EFhsxrJoH3yE3r8bHheE6,Grave Dancers Union (2022 Remaster),spotify:artist:02da1vDJ2hWqfK7aJL6SJm,Soul Asylum,1992-10-06,https://i.scdn.co/image/ab67616d0000b273817095aab443a6f0ce6dd86a,1,3,266560,https://p.scdn.co/mp3-preview/0fd3098d25337ae427ba099282e22e2055632bfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USSM19200235,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,grunge,permanent wave,pop rock,post-grunge",0.605,0.764,0.0,-5.833,1.0,0.0395,0.00588,1.24e-06,0.109,0.487,117.293,4.0,,Columbia,P (P) 1992 Sony Music Entertainment Inc.,7368 +7369,spotify:track:1hiQvNeCyWySpH9OcBD984,Blow Up The Pokies,spotify:artist:2fczAptz6g62e12F9LxYI6,The Whitlams,spotify:album:4DOTLwQyY9rCztbvkUDMh5,"Truth, Beauty And A Picture Of You - The Best Of The Whitlams",spotify:artist:2fczAptz6g62e12F9LxYI6,The Whitlams,2008-08-02,https://i.scdn.co/image/ab67616d0000b27322de9d79e2899fef75880f66,1,1,204506,https://p.scdn.co/mp3-preview/14e336e320ef44911324276c6115a81b0175715f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA09901240,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,piano rock",0.349,0.564,9.0,-6.069,0.0,0.0344,0.123,0.0,0.219,0.222,158.277,3.0,,WM Australia,"C 2008 This Compilation 2008 Warner Music Australia Pty. Ltd, P 2008 This Compilation 2008 Warner Music Australia Pty. Ltd",7369 +7370,spotify:track:5PYEBQrRHWoMuRr5Ers9vR,Sad Movies Make Me Cry,spotify:artist:4KCnuZQWRl9FEwAcduZhP9,Sue Thompson,spotify:album:7yJzSeLuyRbgtE35OMXdzq,Essential Sue Thompson,spotify:artist:4KCnuZQWRl9FEwAcduZhP9,Sue Thompson,2011-12-08,https://i.scdn.co/image/ab67616d0000b273e82eff0514f9b38a302c8c3f,1,4,199346,https://p.scdn.co/mp3-preview/029bfb2b208ff1d7bece7aacb81dc44571297030?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USJGN0802846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.61,0.272,2.0,-10.071,1.0,0.0286,0.888,7.11e-06,0.245,0.608,107.116,4.0,,Hickory Records (2009 Deal),C (C) 2011 Sony ATV,7370 +7371,spotify:track:76cy1WJvNGJTj78UqeA5zr,IDGAF,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:01sfgrNbnnPUEyz6GZYlt9,Dua Lipa (Deluxe),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2017-06-02,https://i.scdn.co/image/ab67616d0000b273838698485511bd9108fadadc,1,5,217946,https://p.scdn.co/mp3-preview/5338a987bfe51f8365bf43b899ecd8a83df83226?cid=9950ac751e34487dbbe027c4fd7f8e99,True,77,GBAHT1600301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.836,0.544,7.0,-5.975,1.0,0.0943,0.0403,0.0,0.0824,0.51,97.028,4.0,,Warner Records,"C © 2017 Dua Lipa Limited under exclusive license to Warner Music UK Limited, P ℗ 2017 Dua Lipa Limited under exclusive license to Warner Music UK Limited. Tracks 3, 6, 7, 8, 9, 13, 14 (P) 2016 Warner Music UK Limited. Tracks 4, 15, 17 (P) 2015 Warner Music UK Limited.",7371 +7372,spotify:track:2Bls0igCm79XQQ95IoUbhq,Mr. Big Stuff,spotify:artist:2Tk0pWxTuQgnE5nsUexrLr,Jean Knight,spotify:album:0p86nom1q9716gzstS4Y5e,Mr. Big Stuff,spotify:artist:2Tk0pWxTuQgnE5nsUexrLr,Jean Knight,1971,https://i.scdn.co/image/ab67616d0000b2735b221b78b425f3f4b45188d2,1,1,164560,https://p.scdn.co/mp3-preview/77ed4370baaf1f41484cb33d093bd8ea7dd7bf23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USFI87100077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new orleans soul,southern soul",0.886,0.491,8.0,-12.589,1.0,0.171,0.29,2.46e-06,0.229,0.971,93.236,4.0,,Fantasy Records,"C © 1990 Fantasy, Inc., P ℗ 1990 Fantasy, Inc.",7372 +7373,spotify:track:3md1QXAi82tUh1FkJP7K2Y,Happy Ending,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,spotify:album:1lGwdsq4OtYZfIIoi4p79E,Life In Cartoon Motion,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,2007-01-01,https://i.scdn.co/image/ab67616d0000b273eb0b41d40b300163767da4b3,1,10,273800,https://p.scdn.co/mp3-preview/cfa8e1b5425378455ba825cb0865eb74dd5482a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC7R0600016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electropop,0.561,0.436,1.0,-8.375,1.0,0.0285,0.554,0.0,0.217,0.308,96.032,4.0,,Universal Music Group,"C © 2007 Casablanca Music, LLC, P ℗ 2007 Casablanca Music, LLC",7373 +7374,spotify:track:7vldwy3gdhmPRKWSCi8H61,The Feeling,"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:26VFTg2z8YR0cCuwLzESi2","Justin Bieber, Halsey",spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,9,244906,https://p.scdn.co/mp3-preview/d16016c8a8d14d277501f352183bde99c2a78215?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516765,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,electropop,etherpop,indie poptimism,pop",0.525,0.809,1.0,-6.185,0.0,0.0619,0.0819,1.22e-06,0.0971,0.21,127.073,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",7374 +7375,spotify:track:28FRcsSqCrY8GtG5KOjSiY,"Hey Baby (Uhh, ahh)","spotify:artist:4CZLoCIZfFOPmv2GRYMzjw, spotify:artist:0DR4z5jMA1eqx0CmHBUpkr","Anton, DJ Ötzi",spotify:album:3cOWgbuDqtPClEburOYqS1,Das Album,spotify:artist:4CZLoCIZfFOPmv2GRYMzjw,Anton,2010-04-24,https://i.scdn.co/image/ab67616d0000b273f67eca387b89ebc07349254f,1,14,218773,https://p.scdn.co/mp3-preview/62b8bd8fd3710f77dde77eed14484736398290af?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,ATHE51082140,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic schlager,oktoberfest,schlager",0.662,0.961,7.0,-4.282,0.0,0.044,0.122,0.0,0.35,0.834,135.1,4.0,,HIT GALAXY musicentertainment GmbH,P 2010 HIT GALAXY musicentertainment GmbH,7375 +7376,spotify:track:5Uf6OfGfz436zAegn1kui6,Sunday Bloody Sunday,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:1WupyTEE8twuMK5iEoBcm2,The Best of 1980-1990 & B-Sides,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1998-10-01,https://i.scdn.co/image/ab67616d0000b273d24fdd83acfb78a533093dc4,1,5,279493,https://p.scdn.co/mp3-preview/9cd377cd24addafee29e2b2b9ac04e40cc511ecd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8300034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.543,0.964,6.0,-5.687,1.0,0.0515,0.411,0.00205,0.047,0.777,100.456,4.0,,Universal Music Group,"C (C) 1998 Universal-Island Records Ltd., P (P) 1998 Universal-Island Records Ltd.",7376 +7377,spotify:track:2rmwqU7yzTvzkiaRV53DpT,2 Be Loved (Am I Ready),spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,spotify:album:1NgFBv1PxMG1zhFDW1OrRr,Special,spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,2022-07-15,https://i.scdn.co/image/ab67616d0000b273fe3b1b9cb7183a94e1aafd43,1,4,187107,https://p.scdn.co/mp3-preview/d8547bb88b7fff366d43a27961d772c105d934e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAT22203706,spotify:user:bradnumber1,2022-11-02T00:25:54Z,"escape room,minnesota hip hop,pop,trap queen",0.721,0.769,7.0,-4.111,1.0,0.105,0.0922,0.0,0.0817,0.915,155.932,4.0,,Nice Life/Atlantic,"C © 2021 Nice Life Recording Company and Atlantic Recording Corporation, P ℗ 2021 Nice Life Recording Company and Atlantic Recording Corporation",7377 +7378,spotify:track:3FteycP8CaXS1MhjcXekVT,Stop,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,spotify:album:3sr6lAuO3nmB1u8ZuQgpiX,Spiceworld,spotify:artist:0uq5PttqEjj3IH1bzwcrXF,Spice Girls,1997-01-01,https://i.scdn.co/image/ab67616d0000b273f660420bcef3b16b4c7e5f2b,1,2,204753,https://p.scdn.co/mp3-preview/802f76fab6211f6ec34175d0ef1fd64224dae92f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAAA9710053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.723,0.845,2.0,-4.446,0.0,0.0308,0.289,0.0,0.0561,0.965,130.13,4.0,,Virgin Records,"C © 1997 Virgin Records Limited, P ℗ 1997 Virgin Records Limited",7378 +7379,spotify:track:1WYEDcS7WGjv0rG7rmMX3o,Bitter Sweet Symphony,spotify:artist:2cGwlqi3k18jFpUyTrsR84,The Verve,spotify:album:0pygZ3lfsCkG1WmnWWq6a1,This Is Music: The Singles 92-98,spotify:artist:2cGwlqi3k18jFpUyTrsR84,The Verve,2004-01-01,https://i.scdn.co/image/ab67616d0000b2732cdc4b4e178dabf49c002280,1,12,359546,https://p.scdn.co/mp3-preview/ec66f7684e858ad8d1f9bb425c7d44f0749a3d72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAAA0400535,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,permanent wave,rock,shoegaze",0.356,0.913,9.0,-6.015,1.0,0.0499,0.0339,0.0,0.221,0.537,171.157,4.0,,Virgin Records,"C © 2004 Virgin Records Limited, P This Compilation ℗ 2004 Virgin Records Limited",7379 +7380,spotify:track:3VzJE6yGuj8fDExUh6TLnc,Candy Shop,"spotify:artist:3q7HBObVc0L8jNeTe5Gofh, spotify:artist:5YBSzuCs7WaFKNr7Bky0Uf","50 Cent, Olivia",spotify:album:3PdtIrHMhNPNGV2NQAlTuU,The Massacre,spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,2005-03-03,https://i.scdn.co/image/ab67616d0000b273edc8039b4fdf96a8ebb480ad,1,7,209106,https://p.scdn.co/mp3-preview/b92617a6011fe70dc2d7b20e47ffb843d1bcdd73?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10500072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap",0.614,0.574,11.0,-7.961,1.0,0.466,0.0253,3.2e-05,0.38,0.755,125.173,5.0,,Universal Music Group,"C © 2004 Shady Records/Aftermath Records/Interscope Records, P ℗ 2004 Shady Records/Aftermath Records/Interscope Records",7380 +7381,spotify:track:6C4iMi6YSLjmZ8GFqEsrby,Mrs Brown You've Got a Lovely Daughter - 1997 Remaster,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,spotify:album:0Wh5CDAsETUmKz4BxN6j7j,Herman's Hermits,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,1965-01-01,https://i.scdn.co/image/ab67616d0000b2733df7d495a8a6f443c26c57c4,1,12,165266,https://p.scdn.co/mp3-preview/afd91d299584fad08ce0b3b74990a3a543a1dd8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAYE9701777,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock,rock-and-roll,singer-songwriter",0.638,0.47,0.0,-8.814,1.0,0.0601,0.673,0.00704,0.0912,0.921,149.364,4.0,,Parlophone UK,"C © 1997 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1997 Parlophone Records Ltd, a Warner Music Group Company",7381 +7382,spotify:track:44GRhOEpslmtULLztdec4m,Believe,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,spotify:album:1cW0de5T5fdedlS4YqvyCv,Greatest Hits,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,2000,https://i.scdn.co/image/ab67616d0000b273550699c44dd74a7663c6ebfa,1,13,295066,https://p.scdn.co/mp3-preview/ad679ac5044ba20651e4cabfec60dd01c032bca1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USVI29300009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,rock",0.409,0.593,9.0,-6.325,0.0,0.0279,0.0085,0.0552,0.107,0.187,158.094,4.0,,Virgin Records,"C © 2000 Virgin Records America, Inc., P This Compilation ℗ 2000 Virgin Records America, Inc.",7382 +7383,spotify:track:3dvaZd1eOBYCewZXqQ8nA6,Poison Ivy,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,spotify:album:3cJuy4g8vnye5101NGQtmC,The Very Best Of,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,2007-02-06,https://i.scdn.co/image/ab67616d0000b273423d8fbd404e3a60d5e1dde8,1,7,185026,https://p.scdn.co/mp3-preview/1526ed6527bc3bb50bd77c78442641cdd148c5cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUFE06400016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.63,0.852,2.0,-6.52,0.0,0.0532,0.681,0.0,0.292,0.914,130.105,4.0,,WM Australia,"C © 1994 Mushroom Records, P ℗ 1994 Mushroom Records",7383 +7384,spotify:track:3vjQt1znaFEnX3PBXsgtVc,Next To Me,spotify:artist:7sfgqEdoeBTjd8lQsPT3Cy,Emeli Sandé,spotify:album:0QwbgAJnx9FEFFC3EsyLrQ,Our Version Of Events (Special Edition),spotify:artist:7sfgqEdoeBTjd8lQsPT3Cy,Emeli Sandé,2012-01-01,https://i.scdn.co/image/ab67616d0000b273623108b3d24c016e5a14374b,1,10,196746,https://p.scdn.co/mp3-preview/99ac5b5ab34588cc3b60e15b6edbcec2e7553733?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAAA1200003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,talent show,uk pop",0.664,0.799,7.0,-5.121,0.0,0.0368,0.0932,0.000107,0.105,0.35,94.989,4.0,,Virgin,"C © 2012 Virgin Records Limited, P ℗ 2012 Virgin Records Limited",7384 +7385,spotify:track:5l3CML2OnzfNs5RfVgbcLt,Talk Dirty (feat. 2 Chainz),"spotify:artist:07YZf4WDAMNwqr4jfgOZ8y, spotify:artist:17lzZA2AlOHwCwFALHttmp","Jason Derulo, 2 Chainz",spotify:album:1OdcBxCNY52OXH0r4odXqP,Tattoos,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2013-09-10,https://i.scdn.co/image/ab67616d0000b273ba30e4d27e93015180b4924d,1,2,177685,https://p.scdn.co/mp3-preview/1bc07a5c8add955817ff4570e10ae0b31a1d8677?cid=9950ac751e34487dbbe027c4fd7f8e99,True,71,USWB11302648,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,atl hip hop,hip hop,pop rap,rap,southern hip hop,trap",0.76,0.652,6.0,-7.321,1.0,0.232,0.0348,0.0,0.307,0.759,100.315,4.0,,Beluga Heights/Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc.",7385 +7386,spotify:track:1qDrWA6lyx8cLECdZE7TV7,Somebody That I Used To Know,"spotify:artist:2AsusXITU8P25dlRNhcAbG, spotify:artist:6hk7Yq1DU9QcCCrz9uc0Ti","Gotye, Kimbra",spotify:album:4G2rJNhsKOE6iHgtUqZ0Ye,Making Mirrors,spotify:artist:2AsusXITU8P25dlRNhcAbG,Gotye,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738ac5768205ad97df3f4f4c0e,1,3,244884,https://p.scdn.co/mp3-preview/8721423c664c8ec64df22cd2a85711437431a98c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,AUZS21100040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,bergen indie,electropop,nz pop",0.865,0.521,0.0,-6.932,1.0,0.0371,0.548,0.000115,0.0989,0.748,129.059,4.0,,Universal-Island Records Ltd.,"C © 2011 Samples 'n' Seconds Records, under exclusive license to Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Interscope Records, under exclusive license to Universal Island Records, a division of Universal Music Operations Limited",7386 +7387,spotify:track:6Ut5LWjfxHqaFtcaBpcvw9,Sweet Sweet Love - Radio Edit,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,spotify:album:7A1aa80x9ma2tsnZjmBlHA,Retrospective,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,1978-01-01,https://i.scdn.co/image/ab67616d0000b273160d30800da9b4f95b1ce2f0,1,10,266640,https://p.scdn.co/mp3-preview/1ea51ed8b837d41c510d4852e25d9d55e97c6c36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUEM07100010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.402,0.386,2.0,-17.293,1.0,0.0563,0.248,5.34e-05,0.215,0.26,85.978,4.0,,EMI Music Australia,"C © 1996 EMI Recorded Music Australia Pty Ltd., P ℗ 1978 EMI Recorded Music Australia Pty Ltd.",7387 +7388,spotify:track:18eny7PcnjREe5DduB1OSc,I Hear Motion,spotify:artist:2k0zkxxRvJKwiHQq5QfjYn,Models,spotify:album:098ehNcR8Pzjr2inpaiq8x,The Essential Hits,spotify:artist:2k0zkxxRvJKwiHQq5QfjYn,Models,2010-08-13,https://i.scdn.co/image/ab67616d0000b27361927c0bd2efed9ffd5b0a9f,1,3,331493,https://p.scdn.co/mp3-preview/1ca93ad05c214ae534969ef5f89439c90bc9def1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUMU08300002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.728,0.712,5.0,-16.021,1.0,0.0433,0.43,0.0149,0.22,0.737,113.39,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Limited, P ℗ 2010 Warner Music Australia Pty Limited",7388 +7389,spotify:track:5l0RudD17f3y9vwhgr2obT,Own This Club,spotify:artist:7DQ3WCryhwdbFr2D5SaKZN,Marvin Priest,spotify:album:05t3EAQ9N6hbbo389uUdSe,Beats & Blips,spotify:artist:7DQ3WCryhwdbFr2D5SaKZN,Marvin Priest,2011-01-01,https://i.scdn.co/image/ab67616d0000b2735344a6b0eabc431deb2745bc,1,1,201680,https://p.scdn.co/mp3-preview/788c8bb24d461209045cc11a385ee345c82059eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUUM71100059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.754,0.812,10.0,-3.772,1.0,0.101,0.189,0.0,0.135,0.857,124.981,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P ℗ 2011 Universal Music Australia Pty Ltd.",7389 +7390,spotify:track:2Cdvbe2G4hZsnhNMKyGrie,I Love Rock 'N Roll,spotify:artist:1Fmb52lZ6Jv7FMWXXTPO3K,Joan Jett & the Blackhearts,spotify:album:555qwe1qUgLdee80TZ2CQt,I Love Rock 'N' Roll (Expanded Edition),spotify:artist:1Fmb52lZ6Jv7FMWXXTPO3K,Joan Jett & the Blackhearts,1981-11-18,https://i.scdn.co/image/ab67616d0000b2733c73b2e0a6aa490736f19751,1,1,175173,https://p.scdn.co/mp3-preview/931dee7b6bcc7c60edc631ff1892e363a47fe222?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USBH18100118,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam punk,rock",0.535,0.716,4.0,-5.025,1.0,0.0431,0.326,0.0,0.659,0.901,94.379,4.0,,Legacy Recordings,"P (P) 1981 Blackheart Records Group, under exclusive license to Sony Music Entertainment",7390 +7391,spotify:track:214EGZbo6xPoEDb4uBtqRY,Fool in Love,spotify:artist:5lcXivnykIkBmcmaD2Vi99,Jeff St John,spotify:album:4divbu8OHmYMSO0X8wXiwg,So Far so Good,spotify:artist:5lcXivnykIkBmcmaD2Vi99,Jeff St John,1978-07-01,https://i.scdn.co/image/ab67616d0000b2730daac76ab62cd057f29e142b,1,10,174960,https://p.scdn.co/mp3-preview/189f65d4480505bf1d4543fa3e5ab8d42fadf64f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA2P1606758,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hammond organ,0.563,0.826,9.0,-5.824,1.0,0.0607,0.437,0.000758,0.136,0.855,116.723,4.0,,Laneway Music,"C (C) 2016 Laneway Music, P (P) 2016 Laneway Music",7391 +7392,spotify:track:5fJQ4FP7EL6Y89edK6P71F,The Crusher,spotify:artist:3J2hbYcBkNZOIbSDYiObRG,The Atlantics,spotify:album:35HLzJ3Gwn3C5mRykgGmax,The Atlantics the Best Of,spotify:artist:3J2hbYcBkNZOIbSDYiObRG,The Atlantics,2005-12-27,https://i.scdn.co/image/ab67616d0000b27323167e447e79a8692a42c879,1,7,184226,https://p.scdn.co/mp3-preview/fc4f16f8826c58b5976dfc523c664293a2bdf7bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,ushm90850532,spotify:user:bradnumber1,2021-08-08T09:26:31Z,surf music,0.425,0.862,9.0,-5.977,1.0,0.0518,8.5e-05,0.729,0.153,0.655,162.862,4.0,,Atlantics Music,"C (C) 2005 Atlantics Music, P (P) 2005 Atlantics Songs",7392 +7393,spotify:track:3fHNjvF6AU1LXVez0wnFvw,Lost Cause,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,spotify:album:5mpsCCzPW31VL43nEgoB9d,Lost Cause,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,2021-06-02,https://i.scdn.co/image/ab67616d0000b2735fc9004374cb795c362d812c,1,1,212496,https://p.scdn.co/mp3-preview/ccc0f9949abdf5ec8708ce4090f7cd6c30bac788?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM72106984,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.642,0.33,10.0,-8.565,0.0,0.262,0.713,0.00728,0.0577,0.523,74.974,4.0,,Darkroom/Interscope Records,"C © 2021 Darkroom/Interscope Records, P ℗ 2021 Darkroom/Interscope Records",7393 +7394,spotify:track:12lZTPlXwUtrQuhEty6098,Raise Your Glass,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:6Ozsat2gzIj9uXd6JMwYXz,Raise Your Glass,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2010-10-06,https://i.scdn.co/image/ab67616d0000b2738c713cc3f93ac864582eecd5,1,1,203333,https://p.scdn.co/mp3-preview/85bdce6320672d2ad29e11eabd15912b73f3b89d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,2,USLF21000090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.7,0.695,7.0,-4.973,1.0,0.0897,0.00629,0.0,0.0319,0.633,122.028,4.0,,LaFace Records,P (P) 2010 Arista Records LLC,7394 +7395,spotify:track:2PX54jMPTjvpgAod0oIuIP,You've Never Been This Far Before,spotify:artist:7gi3jmwpUpNWdswT8eEprF,Conway Twitty,spotify:album:4GeLWE7lG3Ur3SaYaolhkh,25 Number Ones,spotify:artist:7gi3jmwpUpNWdswT8eEprF,Conway Twitty,2004-01-01,https://i.scdn.co/image/ab67616d0000b273e16efe87ce3602ee3a73ef19,1,8,181932,https://p.scdn.co/mp3-preview/7f24600db0a470cbd20c24e9bbc65609646eff48?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USMC17301546,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,classic country pop,country,country rock",0.469,0.235,10.0,-14.399,1.0,0.0336,0.694,0.153,0.0962,0.52,138.522,4.0,,MCA Nashville,"C © 2004 MCA Nashville, a Division of UMG Recordings, Inc., P This Compilation ℗ 2015 MCA Nashville, a Division of UMG Recordings, Inc.",7395 +7396,spotify:track:5qsPpUhBHCOKNcHtTWJ9tt,Right On Track,spotify:artist:4nsuck0htFQjVl6OCKVzRb,Breakfast Club,spotify:album:5vSp95mRfxkzlVvbhuFvn5,Breakfast Club,spotify:artist:4nsuck0htFQjVl6OCKVzRb,Breakfast Club,2009-01-01,https://i.scdn.co/image/ab67616d0000b2730537c6b46e728c35abb5f571,1,2,256946,https://p.scdn.co/mp3-preview/56198b3bb4df660201a474b81dbfa1c473c8d378?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC18721208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.756,0.837,1.0,-10.055,0.0,0.0322,0.0605,5.28e-05,0.0264,0.94,116.985,4.0,,Universal Music Group,"C © 2009 Geffen Records, P ℗ 2009 Geffen Records",7396 +7397,spotify:track:5O4NFbDqJ8SOfbjnIhdPDt,The Safety Dance,spotify:artist:34PLzyi7CdXUekiLHYyqXq,Men Without Hats,spotify:album:0qj6LhMLgU1ferLbZ8Rbnw,Greatest,spotify:artist:34PLzyi7CdXUekiLHYyqXq,Men Without Hats,2013-02-11,https://i.scdn.co/image/ab67616d0000b273b5b8cc071f275542924c573a,1,1,164866,https://p.scdn.co/mp3-preview/a5a2be1b8357dea63572dd2f2b38898742878093?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBBLG0200043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic canadian rock,new romantic,new wave pop,synthpop",0.525,0.882,5.0,-4.479,1.0,0.0467,0.0252,0.0,0.101,0.623,101.674,4.0,,Demon Digital,"C (C) 2012 Demon Music Group Ltd., P (P) 2012 Demon Music Group Ltd.",7397 +7398,spotify:track:2fGxYYMQbVqgIdaqfz2OwA,Younger Now,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:5xG9gJcs9ut3qDWezHUlsX,Younger Now,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2017-09-29,https://i.scdn.co/image/ab67616d0000b2739012e092ad8ed4731ea11134,1,1,248773,https://p.scdn.co/mp3-preview/f57f4868d927c563a23c1eacaa38634ccc6be4cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USRC11701959,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.548,0.873,4.0,-4.881,1.0,0.0618,0.00129,4.55e-05,0.138,0.328,121.918,4.0,,RCA Records Label,"P (P) 2017 RCA Records, a division of Sony Music Entertainment",7398 +7399,spotify:track:1U0qg40pv7s4PZ3rdVVPIF,After All These Years,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:0Zq85Us1Vyb4BhbjvIx9VN,Diorama (U.S. Version),spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,2002-07-29,https://i.scdn.co/image/ab67616d0000b273f3b8847b4ae44d7583d7e65b,1,11,604266,https://p.scdn.co/mp3-preview/9f6fd5db069ed817a482aba03d0028920b53d4e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USAT20705046,spotify:user:bradnumber1,2022-05-04T08:45:14Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.431,2.03e-05,1.0,-12.24,1.0,0.0463,0.906,3.09e-05,0.144,0.12,101.77,4.0,,Atlantic Records,"C © 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the rest of the world (including Japan but excluding the rest of Asia and Australasia)., P ℗ 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the rest of the world (including Japan but excluding the rest of Asia and Australasia).",7399 +7400,spotify:track:5pfJsMwoRYKampPay8amX0,"Downtown (feat. Melle Mel, Grandmaster Caz, Kool Moe Dee & Eric Nally)","spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp, spotify:artist:0AWhixY9hX7LEPyPMjh4O0, spotify:artist:6QeZTS8BrU3r2TYJdA68j9, spotify:artist:2RE8NwNxsOyuNZDD0jRxHP, spotify:artist:3NoeRIxHApi6qe4yan2Vnn","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis, Grandmaster Melle Mel, Grandmaster Caz, Kool Moe Dee, Eric Nally",spotify:album:2kqn09pydzvKvB3xWbAxY4,This Unruly Mess I've Made,"spotify:artist:5BcAKTbp20cv7tC5VqPFoC, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis",2016-02-26,https://i.scdn.co/image/ab67616d0000b27351245bae78fd3afa47e90453,1,2,292593,https://p.scdn.co/mp3-preview/9b3a1019acb4a65991b57f854304c7bdc1695489?cid=9950ac751e34487dbbe027c4fd7f8e99,True,64,GMM881500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop,pop rap,seattle hip hop,pop rap,bronx hip hop,east coast hip hop,old school hip hop,bronx hip hop,old school hip hop,east coast hip hop,harlem hip hop,new jack swing,old school hip hop",0.828,0.609,1.0,-4.402,1.0,0.0694,0.0916,1.21e-06,0.291,0.707,109.725,4.0,,Macklemore,"C © 2016 Macklemore, LLC, P ℗ 2016 Macklemore, LLC",7400 +7401,spotify:track:1AHR24HYoVVCTHC5bujra6,Hallelujah,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,spotify:album:5M31iLPzYuYxkpSO5tBOMN,HERE,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2016-11-04,https://i.scdn.co/image/ab67616d0000b273c2b8088bf48953a269f7a1fd,1,17,189733,https://p.scdn.co/mp3-preview/d0a6e443d5854ae2c2f0474d39a9328d06ed7a87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USRC11601220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b",0.427,0.497,5.0,-6.938,0.0,0.0395,0.0937,1.09e-05,0.2,0.276,124.972,4.0,,RCA Records Label,"P (P) 2016 RCA Records, a divsion of Sony Music Entertainment",7401 +7402,spotify:track:73XoZy2XtPPdsz1Hpbev2i,Read About It - Remastered Version,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:1iWFOvjt1FQfkMJrZxtwiF,"10,9,8,7,6,5,4,3,2,1",spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1982-11-22,https://i.scdn.co/image/ab67616d0000b273c2291f09e7181e3ec0910977,1,4,232466,https://p.scdn.co/mp3-preview/7a87612a5df21a93a45fe4f9f0310056adacc2e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUBM00800384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.499,0.981,1.0,-2.239,0.0,0.0625,0.193,0.0102,0.296,0.639,155.571,4.0,,Sony BMG Music Entertainment,P (P) 2008 Sony BMG Music Entertainment (Australia) Pty Limited,7402 +7403,spotify:track:7FCfMXYTIiQ9b4hDYs4Iol,Be the One,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:01sfgrNbnnPUEyz6GZYlt9,Dua Lipa (Deluxe),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2017-06-02,https://i.scdn.co/image/ab67616d0000b273838698485511bd9108fadadc,1,4,202914,https://p.scdn.co/mp3-preview/63f74b93242c7a4f1794f387413742ac5532ce38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBAHT1500573,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.661,0.651,7.0,-3.771,0.0,0.0499,0.117,1.32e-05,0.056,0.368,87.46,4.0,,Warner Records,"C © 2017 Dua Lipa Limited under exclusive license to Warner Music UK Limited, P ℗ 2017 Dua Lipa Limited under exclusive license to Warner Music UK Limited. Tracks 3, 6, 7, 8, 9, 13, 14 (P) 2016 Warner Music UK Limited. Tracks 4, 15, 17 (P) 2015 Warner Music UK Limited.",7403 +7404,spotify:track:3fvDLsiTHPQNgzuMd3Mpb5,Slow Hand,spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,spotify:album:4ZjbAxpWpR9qhY7253jNrX,Black & White (Expanded Edition),spotify:artist:2kreKea2n96dXjcyAU9j5N,The Pointer Sisters,1981,https://i.scdn.co/image/ab67616d0000b27354e43352bf913ab2d336f292,1,4,231960,https://p.scdn.co/mp3-preview/6121fdd26b05f587b48a9c535102659221f5a447?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRC18101745,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,girl group,hi-nrg,motown,new wave pop,soft rock",0.826,0.558,6.0,-7.766,1.0,0.0322,0.403,1.94e-05,0.0631,0.359,110.77,4.0,,RCA/Legacy,P This compilation (P) 2009 Sony Music Entertainment,7404 +7405,spotify:track:1TXOxJj1pfSFoYQXkZJ0Ut,Slipping Away,"spotify:artist:7Ew8IOlYDqnmn7wO68vSnc, spotify:artist:3xIQ2erxq4q0pELxC2iIQ1","Max Merritt, The Meteors",spotify:album:5FhRjxeW15qLKw4O2ZsRLN,A Little Easier,"spotify:artist:7Ew8IOlYDqnmn7wO68vSnc, spotify:artist:3xIQ2erxq4q0pELxC2iIQ1","Max Merritt, The Meteors",1975,https://i.scdn.co/image/ab67616d0000b2730dc2129aa32fb1930cab2492,1,8,327387,https://p.scdn.co/mp3-preview/8459dce6439db44adbfd3758c054d0383268457e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUBM02000035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,classic nz pop",0.312,0.396,2.0,-8.886,0.0,0.0286,0.449,2.71e-06,0.157,0.158,157.101,4.0,,Sony Music Entertainment,P (P) 1975 Sony Music Entertainment Australia Pty Ltd,7405 +7406,spotify:track:1mpD5Q8IM32I4bF6eCpU74,Up All Night,spotify:artist:6LuN9FCkKOj5PcnpouEgny,Khalid,spotify:album:2pSH41L4EXqhGHyTjM2dA2,Up All Night,spotify:artist:6LuN9FCkKOj5PcnpouEgny,Khalid,2019-11-14,https://i.scdn.co/image/ab67616d0000b27336b5099b9e614214f6919bd9,1,1,157220,https://p.scdn.co/mp3-preview/5963a3310e7d81bcfd0d948e37af5fb14a2b7575?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC11903550,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop r&b",0.665,0.712,1.0,-7.536,1.0,0.0527,0.00103,0.00333,0.102,0.669,93.992,4.0,,"Right Hand Music Group, LLC/RCA Records","P (P) 2019 RCA Records, a division of Sony Music Entertainment",7406 +7407,spotify:track:3QI96xFA7pHph2AwHu3rYT,Black & Gold - Radio Edit,spotify:artist:0H0rBbf7vHXO3qh50Wap7y,Sam Sparro,spotify:album:5k9GJrQA094vSrj34Larkq,Black & Gold (International),spotify:artist:0H0rBbf7vHXO3qh50Wap7y,Sam Sparro,2008-01-01,https://i.scdn.co/image/ab67616d0000b2736e8b762044c25f39a864db91,1,1,211266,https://p.scdn.co/mp3-preview/dd4ef5405d8c890bc776a578bb478efc4c2a75a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70800413,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,funktronica",0.372,0.715,4.0,-5.669,0.0,0.0803,0.00128,4.25e-05,0.113,0.4,102.048,3.0,,Island Records,"C © 2008 Universal Island Records Ltd. A Universal Music Company., P ℗ 2008 Universal Island Records Ltd. A Universal Music Company.",7407 +7408,spotify:track:4JiEyzf0Md7KEFFGWDDdCr,Knockin' On Heaven's Door,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:00eiw4KOJZ7eC3NBEpmH4C,Use Your Illusion II,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1991-09-18,https://i.scdn.co/image/ab67616d0000b27392d21aef6c0d288cc4c05973,1,4,336000,https://p.scdn.co/mp3-preview/78914815856c67e274e7facedced537fe96dcfe7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USGF19142004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.496,0.739,6.0,-7.193,1.0,0.0416,0.0209,0.00451,0.106,0.377,132.411,4.0,,Guns N Roses P&D,"C © 1991 UMG Recordings, Inc., P ℗ 1991 UMG Recordings, Inc.",7408 +7409,spotify:track:4nK5YrxbMGZstTLbvj6Gxw,Supalonely,"spotify:artist:0Cp8WN4V8Tu4QJQwCN5Md4, spotify:artist:6sHCvZe1PHrOAuYlwTLNH4","BENEE, Gus Dapperton",spotify:album:3ZJSoxsPMkNC9eb6gUn0Q8,STELLA & STEVE,spotify:artist:0Cp8WN4V8Tu4QJQwCN5Md4,BENEE,2019-11-15,https://i.scdn.co/image/ab67616d0000b27382f4ec53c54bdd5be4eed4a0,1,2,223480,https://p.scdn.co/mp3-preview/458aaec598c98e51a6164917522d19e3985e0f0f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,65,USUM71922597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,nz pop,bedroom pop,indie poptimism,pov: indie",0.863,0.63,7.0,-4.688,1.0,0.0537,0.304,3.04e-05,0.123,0.816,128.977,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",7409 +7410,spotify:track:6qJN5BgfZkjiBcw97FhDQb,I Want To Know What Love Is - Single Edit,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,spotify:album:3eArVEbkPCtNGoCFkFCftz,Greatest Hits 1994 - 2004,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,2004-11-06,https://i.scdn.co/image/ab67616d0000b273760ffd6240e045b0c0d7e17c,1,12,295653,https://p.scdn.co/mp3-preview/eafe0b8b6adbb2cec456a0704ed03643c87f8dd5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUSM09800117,spotify:user:bradnumber1,2022-02-03T10:04:05Z,"australian dance,australian pop,australian rock",0.475,0.592,3.0,-7.61,0.0,0.042,0.397,1.09e-05,0.0744,0.596,166.444,4.0,,Columbia,P (P) 2004 Sony Music Entertainment Australia Pty Ltd,7410 +7411,spotify:track:5I0620xa6ecXZinsDUUcYF,The Belle of St. Mark,spotify:artist:6OQrOpxSIfPai3cFaN4v4P,Sheila E.,spotify:album:2fv3CMkuVgYRtQVnhv1rQW,The Glamorous Life,spotify:artist:6OQrOpxSIfPai3cFaN4v4P,Sheila E.,1984,https://i.scdn.co/image/ab67616d0000b273a1d3d9b674a0955ae6b66233,1,1,306573,https://p.scdn.co/mp3-preview/ac1d1391ebb57a5c290f2cd290d135179fed6b07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USWB19903235,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,freestyle,funk,minneapolis sound,new jack swing,quiet storm,rock drums,urban contemporary",0.612,0.806,1.0,-7.456,1.0,0.0479,0.0319,1.44e-06,0.168,0.676,79.142,4.0,,Rhino/Warner Records,"C © 2004 Warner Records Inc. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Warner Records Inc. Manufactured & Marketed by Warner Strategic Marketing",7411 +7412,spotify:track:6Zkq3yk1qrNovJr7YwycAA,Sweet Soul Music,spotify:artist:10TSIJnyUcowWhpjj59gHB,Arthur Conley,spotify:album:6GpYgUer7JXdT8D7MGzyLT,The Platinum Collection,spotify:artist:10TSIJnyUcowWhpjj59gHB,Arthur Conley,2007-03-19,https://i.scdn.co/image/ab67616d0000b2731cc93847387733a602820e7b,1,1,141066,https://p.scdn.co/mp3-preview/be874992c8de2c7cfe2a49b5d44be07669364d5a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USAT20001064,spotify:user:bradnumber1,2022-12-20T01:53:29Z,southern soul,0.59,0.659,5.0,-9.669,1.0,0.0697,0.104,6.56e-06,0.356,0.965,80.201,4.0,,Rhino Atlantic,"C © 2007 Rhino Entertaiment Company, a Warner Music Group Company, P ℗ 2007 Rhino Entertaiment Company, a Warner Music Group Company",7412 +7413,spotify:track:2DEEMhTiUMvkiHFdXkrKfI,Church Of The Poison Mind - Remastered 2002,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,spotify:album:51NPMfa9QfxsYtqzcB2VfY,Colour By Numbers (Remastered / Expanded Edition),spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,1983-10-01,https://i.scdn.co/image/ab67616d0000b273c7d7cdad0c2ffa5620129ee8,1,6,212146,https://p.scdn.co/mp3-preview/f259b16bbd7bccf713e89e015943a2889f4b5d23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAAA0201016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock,synthpop",0.597,0.902,7.0,-4.246,0.0,0.0355,0.0899,0.0,0.65,0.96,130.674,4.0,,EMI Marketing,"C © 2003 Virgin Records Limited, P ℗ 2003 Virgin Records Limited",7413 +7414,spotify:track:7up9pItKk5GJf9GutIxsmf,Sugar Man,"spotify:artist:4KkHjCe8ouh8C2P9LPoD4F, spotify:artist:6OkVmXCnj1BPjTf5aihiwt","Yolanda Be Cool, DCup",spotify:album:5VO8sc46dlTJfLFi4WLWAd,Sugar Man,"spotify:artist:4KkHjCe8ouh8C2P9LPoD4F, spotify:artist:6OkVmXCnj1BPjTf5aihiwt","Yolanda Be Cool, DCup",2014-11-28,https://i.scdn.co/image/ab67616d0000b273afb8d12c40d34cc90466e7b2,1,1,183780,https://p.scdn.co/mp3-preview/a18073a047b03a9354ec4cf129e71cf756530421?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUDCB1300396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,bass house",0.73,0.843,9.0,-5.9,0.0,0.159,0.00739,0.000626,0.601,0.633,123.023,4.0,,Sweat It Out!,"C © 2014 Sweat It Out! Distributed by Warner Music Australia Pty Limited under exclusive licence, P ℗ 2014 Sweat It Out! / Warner Music",7414 +7415,spotify:track:2wJhFcye5iiW2mVBpGednz,Close,"spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi, spotify:artist:4NHQUGzhtTLFvgF5SZesLK","Nick Jonas, Tove Lo",spotify:album:1J1mjhlth8XnU8ttfRKp5r,Last Year Was Complicated,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,2016-06-10,https://i.scdn.co/image/ab67616d0000b2736a3a97f24b3475bfbca5de76,1,3,234213,https://p.scdn.co/mp3-preview/a8611254fb7ee1b76baca30705f834ef06ce2c4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USUM71602394,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,metropopolis,pop,swedish electropop,swedish pop,swedish synthpop",0.654,0.623,6.0,-5.273,0.0,0.082,0.253,0.0,0.144,0.401,123.996,4.0,,Safehouse Records / Island Records,"C © 2016 Island Records, a division of UMG Recordings, Inc., P ℗ 2016 Island Records, a division of UMG Recordings, Inc.",7415 +7416,spotify:track:6c20LH3R4foocWLmYyojWq,Maggie May,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:3fa5cl6Nplripk1h9z1SFv,Every Picture Tells A Story,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1971-01-01,https://i.scdn.co/image/ab67616d0000b27344620376d19750fb65cc351c,1,5,350266,https://p.scdn.co/mp3-preview/0fc64bacd8ebd5b672274d055b374d6318e93881?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUMG9900646,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.611,0.583,2.0,-10.428,1.0,0.0408,0.611,0.0853,0.0688,0.53,129.432,4.0,,Universal Special Markets,"C © 1971 The Island Def Jam Music Group, P ℗ 1971 The Island Def Jam Music Group",7416 +7417,spotify:track:5R4e7C87YPIR1RCqSMLA35,In the Midnight Hour,spotify:artist:0lmRxVVpx9hSmeQv9jGYYR,Ray Brown And The Whispers,spotify:album:7eZzdwhXvWOmGGe3C2SpPF,Miles Of Hits,spotify:artist:0lmRxVVpx9hSmeQv9jGYYR,Ray Brown And The Whispers,1988,https://i.scdn.co/image/ab67616d0000b27321c645d42f6e5681a523a966,1,12,147760,https://p.scdn.co/mp3-preview/d6044bc959f4a80cdc70b496d76e23f1046e0d25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUFE09100010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.367,0.668,4.0,-10.61,1.0,0.0568,0.0744,0.231,0.23,0.749,120.005,4.0,,WM Australia,"C © 1988 Festival Records, P ℗ 1988 Festival Records",7417 +7418,spotify:track:1N7VlZoWl5EIa3XG2nK1tO,Sorry,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,spotify:album:0RdfMFaUK1XWnv2ELNvZoh,Vol. 3,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,1966-01-01,https://i.scdn.co/image/ab67616d0000b2738b8234651e11b1472f7bd52f,1,1,154000,https://p.scdn.co/mp3-preview/239ab1ae93c1cf434fee8dd45601de68348ef2f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06600049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,freakbeat,protopunk,psychedelic rock",0.541,0.887,11.0,-2.954,1.0,0.0715,0.048,6.01e-05,0.086,0.951,92.338,4.0,,Albert Productions,"C © 1966 BMG AM Pty Ltd., P ℗ 1966 BMG AM Pty Ltd.",7418 +7419,spotify:track:1nOcjkKgryMCwU1QNFlAgn,Rise & Fall (feat. Sting),"spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c, spotify:artist:0Ty63ceoRnnJKVEYP0VQpk","Craig David, Sting",spotify:album:1YI5yNJkzhBpN0BoK9AO4B,Rewind - The Collection,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2017-03-03,https://i.scdn.co/image/ab67616d0000b273caab4c5bfeaaa5adb89379c6,1,3,287586,https://p.scdn.co/mp3-preview/e560c1be4bc21630ac510251ba4c108e1df68628?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAWV0203029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,permanent wave,soft rock,sophisti-pop",0.386,0.638,6.0,-6.097,0.0,0.0635,0.296,0.0,0.632,0.764,83.243,4.0,,Sony Music UK,"P (P) 2001, 2002, 2005, 2008 & 2017 Wildstar Records Limited, licensed exclusively to Sony Music Entertainment UK Limited",7419 +7420,spotify:track:5X864LOuv4j0UZUWPqVVYV,More Money for You and Me - Medley,spotify:artist:5MsnoFODDc5nxWrjm99Zew,The Four Preps,spotify:album:1D3RoXN5rNvviZ2KoinQwk,The Best of the Four Preps,spotify:artist:5MsnoFODDc5nxWrjm99Zew,The Four Preps,2007-11-27,https://i.scdn.co/image/ab67616d0000b2731b61c9cee713882e8ed510c7,1,3,388466,https://p.scdn.co/mp3-preview/e651c5332ff6bcac4b13df9eda41093fa3ccf41d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,US25T0810144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,vocal harmony group",0.544,0.163,2.0,-20.184,1.0,0.27,0.796,0.0,0.973,0.447,116.515,4.0,,Bruce Belland,"C 2008 Bruce Belland, P 2008 Bruce Belland",7420 +7421,spotify:track:6KuHjfXHkfnIjdmcIvt9r0,On Top Of The World,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:1rzDtYMpZDhRgKNigB467r,Night Visions (Deluxe),spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273a8f95e7f840c11edfa6cc3bd,1,5,189840,https://p.scdn.co/mp3-preview/63c233fd86794fed3c0b3a3ba5e1e4916e1a23bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USUM71201073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.635,0.926,0.0,-5.589,1.0,0.15,0.0892,4.4e-06,0.0928,0.771,100.043,4.0,,Kid Ina Korner / Interscope,"C © 2013 KIDinaKORNER/Interscope Records, P ℗ 2013 KIDinaKORNER/Interscope Records",7421 +7422,spotify:track:0zKbDrEXKpnExhGQRe9dxt,Lay Low,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,spotify:album:0EYKSXXTsON8ZA95BuCoXn,Lay Low,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,2023-01-06,https://i.scdn.co/image/ab67616d0000b273c8fdaf1b33263d88246ba90a,1,1,153442,https://p.scdn.co/mp3-preview/d4e0715dc213858f53a104ee498944a0d759b6cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,NLZ542202348,spotify:user:bradnumber1,2023-07-18T22:06:36Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance",0.555,0.884,1.0,-4.424,0.0,0.213,0.0645,8.18e-05,0.349,0.42,121.906,4.0,,Musical Freedom,"C © 2023 Musical Freedom Label Ltd., P ℗ 2023 Musical Freedom Label Ltd.",7422 +7423,spotify:track:48lVHYfNO1TvL54zMNwVnX,Need You Now,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,spotify:album:5nzSVa3uk2ctc4ELkld7mj,Need You Now (Remix),spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,2010-01-01,https://i.scdn.co/image/ab67616d0000b27337088e64670246a598f74a7e,1,1,236786,https://p.scdn.co/mp3-preview/7b4dc647f33a83dd7e2a5257dae045257ef59528?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCN10900695,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country pop,country road",0.588,0.724,4.0,-4.379,1.0,0.0315,0.0348,9.52e-05,0.239,0.377,107.986,4.0,,Capitol Nashville,"C © 2010 Capitol Records Nashville, P ℗ 2010 Capitol Records Nashville",7423 +7424,spotify:track:2wSAWEYUHkt92X4SBAPqZE,Karma Chameleon - Remastered 2002,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,spotify:album:51NPMfa9QfxsYtqzcB2VfY,Colour By Numbers (Remastered / Expanded Edition),spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,1983-10-01,https://i.scdn.co/image/ab67616d0000b273c7d7cdad0c2ffa5620129ee8,1,1,252773,https://p.scdn.co/mp3-preview/644d79e248722e1ff28b5d89244ae9f4873fe810?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBAAA0201011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock,synthpop",0.668,0.73,10.0,-7.182,1.0,0.0366,0.225,0.0,0.188,0.894,92.049,4.0,,EMI Marketing,"C © 2003 Virgin Records Limited, P ℗ 2003 Virgin Records Limited",7424 +7425,spotify:track:4sZ18grub5D6qJ9GOrhKW2,Get Down (feat. Stush & Red Rat) - Radio Edit,"spotify:artist:67tgMwUfnmqzYsNAtnP6YJ, spotify:artist:3lR9sktAKCI2eJeTEHBcTT, spotify:artist:4lthN9sVX4QW2lnXQEUbMh","Groove Armada, Stush, Red Rat",spotify:album:4gAC6u1x2Bld7EBhJppCnQ,Groove Armada Greatest Hits,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2017-09-21,https://i.scdn.co/image/ab67616d0000b2732aa2ad150b13e8703233fe8d,1,2,202040,https://p.scdn.co/mp3-preview/9d2e5bc2a7f94926d5dab958cbb3a1d2f9a46da3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GBAHK0700019,spotify:user:bradnumber1,2023-08-09T21:16:13Z,"big beat,electronica,nu skool breaks,trip hop,uk dancehall,dancehall",0.75,0.905,2.0,-5.86,1.0,0.127,0.0135,0.0,0.405,0.678,127.034,4.0,,Columbia,P This compilation (P) 2007 Sony Music Entertainment UK Limited,7425 +7426,spotify:track:4BJbyLI3wpetPc07IVl2de,Burning Bridges,spotify:artist:4ucP0bNegd7Q4ewdOKIBfz,Jack Scott,spotify:album:3p3PuPkPJAdqu9EelmPhnQ,Burning Bridges,spotify:artist:4ucP0bNegd7Q4ewdOKIBfz,Jack Scott,2016-03-02,https://i.scdn.co/image/ab67616d0000b273c86f38a6c5d7e59dc85d09d1,1,7,162333,https://p.scdn.co/mp3-preview/8ab73dbd7a8c4a87ebc3daae4e4e71eca8f55514?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USESK1601558,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian rockabilly,doo-wop,rock-and-roll,rockabilly,traditional rockabilly",0.448,0.288,9.0,-13.047,1.0,0.0246,0.804,0.000176,0.287,0.255,82.656,4.0,,"Diamond Records, Inc.","C 2016 Diamond Records, Inc., P 2016 Diamond Records, Inc.",7426 +7427,spotify:track:1ufw4MHpNrimD5e6pna6JA,Something Good,spotify:artist:2KB6LGMBaOYYYdvvgyptFH,Utah Saints,spotify:album:5PuJ1ocyfvAmgVEazfKoqZ,UTAH SAINTS,spotify:artist:2KB6LGMBaOYYYdvvgyptFH,Utah Saints,1992,https://i.scdn.co/image/ab67616d0000b27368dc75be55ead641c98c0b3d,1,6,355880,https://p.scdn.co/mp3-preview/1b46c320cd17fee99d2a614c0fbea350038a2eef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP0000678,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,britpop,hardcore techno,hip house",0.53,0.95,6.0,-10.553,1.0,0.0423,0.000517,0.821,0.13,0.507,126.86,4.0,,London Records,"C 1993 FFRR, P 1993 FFRR",7427 +7428,spotify:track:4VqPOruhp5EdPBeR92t6lQ,Uprising,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,spotify:album:0eFHYz8NmK75zSplL5qlfM,The Resistance,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,2009-09-10,https://i.scdn.co/image/ab67616d0000b273b6d4566db0d12894a1a3b7a2,1,1,304840,https://p.scdn.co/mp3-preview/529eb48df232955cdd3b870f21e2bd41f1657fae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,GBAHT0900320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern rock,permanent wave,rock",0.602,0.905,2.0,-4.046,1.0,0.0775,0.000202,0.064,0.117,0.411,128.019,4.0,,Warner Records,"C © 2009 Warner Music UK Limited, P ℗ 2009 Warner Music UK Limited",7428 +7429,spotify:track:0d2iYfpKoM0QCKvcLCkBao,Eastside (with Halsey & Khalid),"spotify:artist:5CiGnKThu5ctn9pBxv7DGa, spotify:artist:26VFTg2z8YR0cCuwLzESi2, spotify:artist:6LuN9FCkKOj5PcnpouEgny","benny blanco, Halsey, Khalid",spotify:album:7pkLXlFdpQDfmHujT2AbBK,Eastside (with Halsey & Khalid),"spotify:artist:5CiGnKThu5ctn9pBxv7DGa, spotify:artist:26VFTg2z8YR0cCuwLzESi2, spotify:artist:6LuN9FCkKOj5PcnpouEgny","benny blanco, Halsey, Khalid",2018-07-12,https://i.scdn.co/image/ab67616d0000b2733154f0bdf9a17385d7afc6ba,1,1,173799,https://p.scdn.co/mp3-preview/24726be4c89b67eab298a72560b637581450421c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUM71809132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,electropop,etherpop,indie poptimism,pop,pop,pop r&b",0.56,0.68,6.0,-7.648,0.0,0.321,0.555,0.0,0.116,0.319,89.391,4.0,,Benny Blanco Solo Album PS,"C © 2018 Friends Keep Secrets/Interscope Records, P ℗ 2018 Friends Keep Secrets/Interscope Records",7429 +7430,spotify:track:6Nvu50LQOaN7ug7MvKnhkC,Islands In The Stream,spotify:artist:3gy0HQ907MeWE20ZTZdbGm,Kenny Rogers with Dolly Parton,spotify:album:6md7UfuNiiKIHI7sPYROYE,A Decade Of Hits,spotify:artist:4tw2Lmn9tTPUv7Gy7mVPI4,Kenny Rogers,1997-01-01,https://i.scdn.co/image/ab67616d0000b273ed8b36b49707a4fe4255bef5,1,4,251600,https://p.scdn.co/mp3-preview/529de121886f65d6c7d288675591cb4d2199f74a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRE19600504,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.589,0.577,8.0,-7.149,1.0,0.0323,0.6,0.0,0.116,0.767,203.995,4.0,,Warner Bros.,"C 1997 Reprise Records, P 1997 Reprise Records",7430 +7431,spotify:track:1yf3K4e74VM6egV7QDhXyz,When We Were Young,"spotify:artist:09NYzWfQlunWS3XBZFaDEC, spotify:artist:1hlXIybvN1I8r3ooBEkYRh","Andy Black, Juliet Simms",spotify:album:3vpUxVKjm32bKN7c3LkNxU,"Punk Goes Pop, Vol. 7",spotify:artist:05DSiNi8z8w8iXz34JfHse,Punk Goes,2017-07-14,https://i.scdn.co/image/ab67616d0000b273cc2ca6b486b9eab3dcf68412,1,5,285506,https://p.scdn.co/mp3-preview/e1f6c6a59fba1b5a107d164058455d6b26c9fd36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,US5261722636,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pixie,deep talent show",0.413,0.605,11.0,-6.275,1.0,0.0298,0.136,7.25e-06,0.113,0.356,141.842,4.0,,Fearless Records,"C © 2017 Fearless Records, a division of Concord Music Group, Inc., P ℗ 2017 Fearless Records, a division of Concord Music Group, Inc.",7431 +7432,spotify:track:2ihwel4BNkqSUQRHTGJtVF,I Like That,"spotify:artist:5yCd7bxcAc3MdQ1h54ESsD, spotify:artist:3s2wTjWxK8NOX09dmsvVOh, spotify:artist:0qziYi2GvPoLPnchRMQdxk, spotify:artist:1Oa0bMld0A3u5OTYfMzp5h","Houston, Chingy, I-20, Nate Dogg",spotify:album:5a8Z0XZk4Ashbh3lMSw3Dr,I Like That,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2004-01-01,https://i.scdn.co/image/ab67616d0000b273d17a4b48f055e4ba995a1ccb,1,1,390653,https://p.scdn.co/mp3-preview/0045668216bc95ecb9f0a0b5e0ab8f1b6c7d69d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USCA20400265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"crunk,dirty south rap,hip pop,pop rap,southern hip hop,atl hip hop,g funk,gangster rap,hardcore hip hop,hip hop,west coast rap",0.868,0.379,10.0,-5.839,0.0,0.144,0.011,1.29e-05,0.053,0.424,106.945,4.0,,Capitol Records,"C © 2004 Capitol Records Inc., P ℗ 2004 Capitol Records Inc.",7432 +7433,spotify:track:4hJNA7VCBfNDly2Lz1SKAt,Battlefield,spotify:artist:2AQjGvtT0pFYfxR3neFcvz,Jordin Sparks,spotify:album:5rIieyO35qlrr6W0eS9y8d,Battlefield,spotify:artist:2AQjGvtT0pFYfxR3neFcvz,Jordin Sparks,2009,https://i.scdn.co/image/ab67616d0000b273871e96e53bac144057add8db,1,2,241920,https://p.scdn.co/mp3-preview/aff9bb5d3350b344ffbc5101c2ebb2cca5dd121d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBCTA0900150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,urban contemporary",0.613,0.634,2.0,-3.472,1.0,0.0339,0.0178,0.0,0.0639,0.37,144.953,4.0,,Jive,"P (P) 2007, 2009 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",7433 +7434,spotify:track:6kxHMpVt9OYDQOwXYJrQAb,Touch The Fire,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,spotify:album:5Pf2kkz10HySmJjWu2Fhd4,Man Of Colours,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,1987-09-21,https://i.scdn.co/image/ab67616d0000b273d1565d17bd1808f0ee0da90d,1,15,226480,https://p.scdn.co/mp3-preview/e806c1205d0ab3d032f547c3984188ba1d479330?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUC441100037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic,sophisti-pop,synthpop",0.539,0.955,7.0,-3.997,1.0,0.0427,0.0894,3.31e-05,0.0873,0.502,129.875,4.0,,Diva,"C © 2012 Diva Records, P ℗ 2012 Diva Records",7434 +7435,spotify:track:3hBBKuWJfxlIlnd9QFoC8k,What Lovers Do (feat. SZA),"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:7tYKF4w9nC0nq9CsPZTHyP","Maroon 5, SZA",spotify:album:1Jmq5HEJeA9kNi2SgQul4U,Red Pill Blues (Deluxe),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2017-11-03,https://i.scdn.co/image/ab67616d0000b2739ccf08d3f74b36b7880522b5,1,2,199849,https://p.scdn.co/mp3-preview/a293b6d1e5a4147af4b5d65cc9e4bf865f12e99a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71709292,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop,r&b,rap",0.795,0.615,5.0,-5.211,0.0,0.0671,0.0786,2.98e-06,0.0855,0.393,110.009,4.0,,Universal Music Group,"C © 2017 Interscope Records, P A 222 Records/Interscope Records Release; ℗ 2017 Interscope Records",7435 +7436,spotify:track:40e9kU9Wd4vbedqSA7Io4n,Notion,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:5CZR6ljD0x9fTiS4mh9wMp,Only By The Night,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2008-09-23,https://i.scdn.co/image/ab67616d0000b2732519d01c0cca06f134eeadd8,1,8,180840,https://p.scdn.co/mp3-preview/f62f16c88a7060c7c25b8b122881e42e9233af9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRC10800305,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.433,0.887,4.0,-5.111,1.0,0.047,0.00597,2.87e-05,0.119,0.426,142.968,4.0,,RCA/Legacy,"P (P) 2008 RCA Records, a division of Sony Music Entertainment",7436 +7437,spotify:track:559sRyyz7AJOWopCQ7yxao,Al di là,spotify:artist:78SZetGidiOyErFwdWTmgQ,Emilio Pericoli,spotify:album:7n4nNfHcSEfHhOdWA59Opb,Espérame en Roma,spotify:artist:55mjk9dEkxtmhJk6BiXlbx,Espérame en Roma,2016-05-13,https://i.scdn.co/image/ab67616d0000b273ef2bd6f8ff35f4e2bce3a80f,1,6,197137,https://p.scdn.co/mp3-preview/ae5c365c8408812f9e2faf91841d0773d85bdab6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ES5331606761,spotify:user:bradnumber1,2021-08-08T09:26:31Z,swing italiano,0.32,0.301,11.0,-12.301,1.0,0.0293,0.682,0.0,0.123,0.217,84.918,4.0,,MARFER,"C 2016 Marfer / Discos Lollipop S.L., P 2016 Discos Marfer",7437 +7438,spotify:track:089vxHEH64AKLKhokNXEJx,Higher,"spotify:artist:6MF9fzBmfXghAz953czmBC, spotify:artist:4RVnAU35WRWra6OZ3CbbMA","Taio Cruz, Kylie Minogue",spotify:album:7CCqoU4oEIV3bSLm75IL5n,Rokstarr (Special Edition),spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,2011-01-01,https://i.scdn.co/image/ab67616d0000b273cb3c02f19237ff14c433136f,1,10,187666,https://p.scdn.co/mp3-preview/d88fc33a0ddb272c35a7ba7c88552a4c77646935?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBUM71029512,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,australian dance,australian pop,dance pop,eurodance,new wave pop",0.675,0.916,8.0,-5.015,0.0,0.0776,0.00448,7.26e-05,0.128,0.702,128.024,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records Ltd. A Universal Music Company., P ℗ 2011 Universal Island Records Ltd. A Universal Music Company.",7438 +7439,spotify:track:7xGOvQukPKKQVLiJOPSmt0,Don't Let the Sun Go Down on Me,"spotify:artist:19ra5tSw0tWufvUp8GotLo, spotify:artist:3PhoLpVuITZKcymswpck5b","George Michael, Elton John",spotify:album:0IJcpy0eM4o63J43qij68g,Ladies & Gentlemen,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1998-11-09,https://i.scdn.co/image/ab67616d0000b273813629baee66b2ec5f90ebee,1,4,346813,https://p.scdn.co/mp3-preview/e64bb3e1d9ab34e4d791dd5131c2a203eb05b674?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBBBM9102004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock,glam rock,mellow gold,piano rock,rock",0.435,0.547,0.0,-8.092,1.0,0.0287,0.494,0.0,0.544,0.26,135.453,4.0,,Epic,P This compilation (P) 2011 Sony Music Entertainment UK Limited,7439 +7440,spotify:track:3aLSrx8qhssXrh5yjB6oy9,All Stars,"spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:6c0mTNAxJxlp9HpKTUZwA8","Martin Solveig, ALMA",spotify:album:6ODMll7MM8Q89W8Wj6Y7j4,All Stars,spotify:artist:1bj5GrcLom5gZFF5t949Xl,Martin Solveig,2017-06-16,https://i.scdn.co/image/ab67616d0000b2734a4ec708ff1b2d40930dc9fc,1,1,170322,https://p.scdn.co/mp3-preview/f9e6b892b7de63ded5a3fa322bb5c751d3c4a358?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UK98Q1700100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,edm,electro house,filter house,house,pop dance,vocal house,electropop",0.775,0.722,1.0,-3.502,1.0,0.0463,0.151,0.000724,0.058,0.649,124.037,4.0,,Universal Music Group,"C © 2017 KOPG Ltd, under exclusive licence to Virgin EMI Records, a division of Universal Music Operations Ltd, P ℗ 2017 KOPG Ltd, under exclusive licence to Virgin EMI Records, a division of Universal Music Operations Ltd",7440 +7441,spotify:track:76JxERY5uyd6Uad9bc2kDv,From the Inside,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,spotify:album:3OWloNx2gY95VXXpotMvky,The Essential,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,2007-07-28,https://i.scdn.co/image/ab67616d0000b273cc2776d1c08d6f14acc450c2,1,2,208466,https://p.scdn.co/mp3-preview/bda6955f980011d63d8f43694aad29acf659e61a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUBM00460314,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.306,0.512,0.0,-8.512,1.0,0.0298,0.125,1.63e-05,0.63,0.299,181.935,4.0,,Sony Music Entertainment,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,7441 +7442,spotify:track:1b7LMtXCXGc2EwOIplI35z,Stuck In The Middle With You,spotify:artist:7bPU7cvfoD20ixGD9Qnqki,Stealers Wheel,spotify:album:4pFfvZt1riTaIWzkHFfmsF,Reservoir Dogs (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-01-01,https://i.scdn.co/image/ab67616d0000b2734becd2321d8c4044a67f49b0,1,11,203893,https://p.scdn.co/mp3-preview/d828841f8e86ca5b90cf0308d4de9aee478555fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBAAM7200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,folk rock,0.795,0.564,7.0,-10.482,1.0,0.0392,0.0934,0.000531,0.0631,0.961,124.166,4.0,,Geffen*,"C © 2009 Geffen Records, P This Compilation ℗ 2009 Geffen Records",7442 +7443,spotify:track:4txFRJmpBJCRfDIAc30yTB,Hit Me With Your Rhythm Stick,"spotify:artist:5PFSmueeFLrjYXqn3agenn, spotify:artist:52jfQPouCIphLVi3FqGa7x","Ian Dury, The Blockheads",spotify:album:6U3aTdltbQ5RaCYbLxogNM,Sex&Drugs&Rock&Roll - The Essential Collection,spotify:artist:5PFSmueeFLrjYXqn3agenn,Ian Dury,2010-01-11,https://i.scdn.co/image/ab67616d0000b273aca46adb446b0ab8102c1fe9,1,4,223133,https://p.scdn.co/mp3-preview/28f0dba4387ab99399e7b1df18b3cc83ed0d181a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBAFR7910095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pub rock,pub rock",0.713,0.861,5.0,-7.834,0.0,0.036,0.0739,0.00173,0.114,0.898,104.299,4.0,,DMGTV,C (C) 2010 Demon Music Group Ltd.,7443 +7444,spotify:track:5ppySBXXkUzmr1jplNTWOC,Mad About You,spotify:artist:2WqkJNGi03LsYcUo40H8rr,Bruce Ruffin,spotify:album:3Sy5T1Te55s9B8K4jeOFKK,Ska & Reggae Classics,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-05-25,https://i.scdn.co/image/ab67616d0000b2736cdb0b2faf04851de4f4fe8f,1,31,208360,https://p.scdn.co/mp3-preview/497f88abb90ab807bf4cccc542ec6b3b7e9b24a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE7200733,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"early reggae,rocksteady",0.734,0.519,5.0,-8.966,1.0,0.0416,0.0904,0.171,0.369,0.851,121.458,4.0,,Sanctuary Records,"C © 2018 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2018 Sanctuary Records Group Ltd., a BMG Company",7444 +7445,spotify:track:34oFblvtTvOwbBbFks85xy,Seasons,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:0jD1tOJpP0Qz8UcLq3FFkr,Never Been Better (Deluxe),spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2014-11-21,https://i.scdn.co/image/ab67616d0000b2739bf59f7a0e061de08140d425,1,5,217253,https://p.scdn.co/mp3-preview/65642b3d8d41806d29fcfb7eaefcceec1e2199ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1401281,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.633,0.817,7.0,-4.495,0.0,0.0663,0.0754,0.0,0.256,0.584,91.968,4.0,,Epic,P (P) 2014 Sony Music Entertainment UK Limited,7445 +7446,spotify:track:2HfKAe4ZlaJXjrggObJ24P,Friends & Lovers,"spotify:artist:4OvZ8Dx72DO6lo6DRL6vjK, spotify:artist:7Bp4xXabhvbSB51SK3LJim","Gloria Loring, Carl Anderson",spotify:album:0p1vSYlMCcJnK8xvGk0nZv,Friends & Lovers,"spotify:artist:4OvZ8Dx72DO6lo6DRL6vjK, spotify:artist:7Bp4xXabhvbSB51SK3LJim","Gloria Loring, Carl Anderson",2008,https://i.scdn.co/image/ab67616d0000b273d2d7db905b62966aab7a62b2,1,1,213013,https://p.scdn.co/mp3-preview/2903f1a43ac25d42b1f687b3e01264caf464ad2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,NLG620414252,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.529,0.222,3.0,-16.093,1.0,0.0298,0.789,0.0,0.096,0.164,111.196,3.0,,Dessca/Marfontaine,C (C) 2008 Marfontaine,7446 +7447,spotify:track:2oVm9jWR7xAT3kHWLnrae8,Shivers,spotify:artist:3vgQA38yGGMvn4DHjsVre5,The Screaming Jets,spotify:album:625QqN3HWlkXdzfik5It0b,Tear Of Thought,spotify:artist:3vgQA38yGGMvn4DHjsVre5,The Screaming Jets,1992-02-11,https://i.scdn.co/image/ab67616d0000b273432c22599bf9adb88859a8f4,1,15,266773,https://p.scdn.co/mp3-preview/fcaba997f58ed98c44d2c06fb2ece0520aa9459c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUBM09220215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.409,0.486,6.0,-11.958,1.0,0.0278,0.0743,0.014,0.125,0.417,134.626,4.0,,rooArt,P (P) 1992 Sony Music Entertainment (Australia) Pty Limited,7447 +7448,spotify:track:3Wisc4h0W8lVVSR3KlNiZu,Thong Song,spotify:artist:6x9QLdzo6eBZxJ1bHsDkjg,Sisqo,spotify:album:67ma4XvpbAfD4UpUPRwRN4,RnB Fridays Vol. 3,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-04-21,https://i.scdn.co/image/ab67616d0000b2730e545611e016c993b81bbbce,1,13,253200,https://p.scdn.co/mp3-preview/64db1a50c1c970738804a263821154f4e7c7c5a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USDJ29905193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.739,0.933,2.0,-4.207,1.0,0.0749,0.0792,1.82e-05,0.0785,0.726,121.494,4.0,,Universal Music Australia Pty. Ltd.,"C © 2017 Universal Music Australia Pty Ltd., P This Compilation ℗ 2017 Universal Music Australia Pty Ltd.",7448 +7449,spotify:track:5WuVWOngcRkMOx9RRLCvui,The Tide Is High - Radio Mix,spotify:artist:6JMHws5haIO6V35YNYDnDw,Atomic Kitten,spotify:album:340y6ZpqGxp4xW0203bOPN,Atomic Kitten,spotify:artist:6JMHws5haIO6V35YNYDnDw,Atomic Kitten,2003-04-22,https://i.scdn.co/image/ab67616d0000b27351dd08c353a4171da5f98d3a,1,3,205360,https://p.scdn.co/mp3-preview/79c393d254e3fc3d6ea0a9e5ac62e15211bac827?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAAA0200509,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,dance pop,europop,girl group",0.776,0.693,7.0,-2.528,1.0,0.0314,0.0234,0.00177,0.0322,0.635,102.996,4.0,,Innocent,"C © 2003 Virgin Records Limited, P This Compilation ℗ 2003 Virgin Records Limited",7449 +7450,spotify:track:70jnaGaj1rtpyABfUURpvr,Green Tambourine,spotify:artist:2rUmEpDSHKMhamwClclHs5,The Lemon Pipers,spotify:album:7xqsq9EdxlurNTjMSZTCDg,The Best of the Lemon Pipers,spotify:artist:2rUmEpDSHKMhamwClclHs5,The Lemon Pipers,2001-04-03,https://i.scdn.co/image/ab67616d0000b273534eb1db0a7d68274b6e89e6,1,1,147000,https://p.scdn.co/mp3-preview/b0dfeb07feca38524e53230d7263ca219503ba83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USBR16700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,psychedelic rock",0.503,0.614,7.0,-7.814,1.0,0.0283,0.123,0.023,0.17,0.313,111.148,4.0,,Buddha Records,P (P) 2001 Buddha Records,7450 +7451,spotify:track:1KONmY3enP3r3nIPQidWAy,Now That We Found Love,"spotify:artist:4KHdmkq99PXA6QEJ2lKpA3, spotify:artist:772SIFJQiXTCfxncTK1UMn","Heavy D & The Boyz, Aaron Hall",spotify:album:4bAwnTaD8QcruiVdb1zzzY,Peaceful Journey,spotify:artist:4KHdmkq99PXA6QEJ2lKpA3,Heavy D & The Boyz,1991-01-01,https://i.scdn.co/image/ab67616d0000b273dd74f68682370e83a9845dca,1,1,258200,https://p.scdn.co/mp3-preview/12dba3ced247ed49784f6535fecfaa9a8525a678?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USMC19135589,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,east coast hip hop,new jack swing,old school hip hop,contemporary r&b,new jack swing,r&b",0.744,0.697,8.0,-14.753,1.0,0.0631,0.039,0.0,0.171,0.683,119.955,4.0,,Uptown,"C © 1991 MCA Records Inc., P ℗ 1991 UMG Recordings, Inc.",7451 +7452,spotify:track:2Pn5gvVioma5LHPxgEBBmD,"No More ""I Love You's""",spotify:artist:5MspMQqdVbdwP6ax3GXqum,Annie Lennox,spotify:album:1T2aRQcFUL59f9kQ876dLX,Medusa,spotify:artist:5MspMQqdVbdwP6ax3GXqum,Annie Lennox,1995,https://i.scdn.co/image/ab67616d0000b273414a19484165b2f67589eeb4,1,1,291333,https://p.scdn.co/mp3-preview/17049d3389358dccc2e50a859cedd5c2d68ebb27?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBARL9400416,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop",0.372,0.57,3.0,-7.305,1.0,0.0305,0.517,2.57e-06,0.141,0.234,179.907,4.0,,RCA Records Label,P (P) 1995 SONY BMG MUSIC ENTERTAINMENT (UK) Limited,7452 +7453,spotify:track:5eU8qMd0TpaLqTGDZJaLDs,Need You Tonight,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:7cuwWzS0oiApEt2fpKafkX,Kick,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,1987,https://i.scdn.co/image/ab67616d0000b2734053ce7818f114a4e8dde08f,1,4,180517,https://p.scdn.co/mp3-preview/3b272d8783ab1350da669cb8fd71cbdbc174c23c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,AUWC41010228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.801,0.723,10.0,-4.985,0.0,0.0689,0.0713,0.154,0.0675,0.883,109.03,4.0,,Rhino Atlantic,"C © 1988 Atlantic Recording Corporation, P ℗ 1988 Atlantic Recording Corporation. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",7453 +7454,spotify:track:2si9smgJqjB3aCRpzz6rYE,Everything Has Changed,"spotify:artist:06HL4z0CvFAxyc27GXpf02, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Taylor Swift, Ed Sheeran",spotify:album:5FerdPFXSHSnCVq4OBy4Ey,Red,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2012-10-22,https://i.scdn.co/image/ab67616d0000b2737d2f918a1b23f98ceb7510fa,1,14,245413,https://p.scdn.co/mp3-preview/f89635067c4f3ebb130a8420ab72e60260097e24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1231044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop,singer-songwriter pop,uk pop",0.631,0.475,6.0,-6.66,1.0,0.0283,0.349,2.57e-06,0.336,0.426,80.029,4.0,,Universal Music Group,"C © 2012 Big Machine Records, LLC., P ℗ 2012 Big Machine Records, LLC.",7454 +7455,spotify:track:6OfAaE2skMyNtZtzhlpA5q,Feelings,spotify:artist:4sFsq7NFJ0zz0uN3Zb6QJ9,Morris Albert,spotify:album:2bFRJMBSCvhsa4vLfw3tuT,Feelings,spotify:artist:4sFsq7NFJ0zz0uN3Zb6QJ9,Morris Albert,2004-01-01,https://i.scdn.co/image/ab67616d0000b27341f8b3330c661a1984cffb36,1,1,224386,https://p.scdn.co/mp3-preview/e1e1e191e0c719c8bdd8f0183c52fc05907fe03d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,BREMI7700081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.392,0.383,4.0,-8.972,0.0,0.0267,0.415,3.23e-06,0.126,0.216,80.472,4.0,,EMI Music Brasil Ltda,"C © 2004 EMI Records Brasil Ltda, P This Compilation ℗ 2004 EMI Records Brasil Ltda",7455 +7456,spotify:track:6DRNqyHyHySMMS1GkXt1Jy,Learning To Fly,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:2OAkzJdbnDtd45Zh2lkdWe,Into The Great Wide Open,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,1991-07-02,https://i.scdn.co/image/ab67616d0000b2737d69a4b6837d27e484f62321,1,1,242106,https://p.scdn.co/mp3-preview/224f23e906fa5154bf3643c4d93b51a35f12f949?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19135647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.651,0.766,0.0,-9.935,1.0,0.0299,0.206,0.00103,0.362,0.949,116.74,4.0,,Universal Music Group,"C © 1991 MCA Records Inc., P ℗ 1991 Geffen Records",7456 +7457,spotify:track:0cj2joJcY6b4XSRfj2eZOl,When We Were Young,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7uwTHXmFa1Ebi5flqBosig,25,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2015-11-20,https://i.scdn.co/image/ab67616d0000b2735ffbbc3dca25d5c81491af1f,1,4,290900,https://p.scdn.co/mp3-preview/b35676526fa76530da3e9b880a64305e761bc2ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBBKS1500217,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.377,0.595,3.0,-5.936,1.0,0.0489,0.303,0.0,0.095,0.264,144.464,4.0,,XL Recordings,"C 2015 XL Recordings Limited., P 2015 XL Recordings Limited.",7457 +7458,spotify:track:1bdlSRsfxwDQ8H9TUQ81BJ,Wide Open Road,spotify:artist:2kTn692duPSkqN6czSilyk,The Triffids,spotify:album:7AUtBmsCDaiEprC7lJSBNt,Born Sandy Devotional,spotify:artist:2kTn692duPSkqN6czSilyk,The Triffids,1986,https://i.scdn.co/image/ab67616d0000b27390556184624fdff2bbe71299,1,6,248533,https://p.scdn.co/mp3-preview/e45a6cdc4be6dd4ce9ea70a27bd4f3f2505e0b47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEL0501212,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,melancholia,perth indie",0.54,0.695,9.0,-8.522,0.0,0.0427,0.102,0.259,0.0958,0.572,80.956,4.0,,Bloodlines,"C 1986 Bloodlines, P 1986 Bloodlines",7458 +7459,spotify:track:069sKBU6UX7E2swAvSguE5,Hearts On Fire,spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,spotify:album:34NNRiAunm4I1jvmviZrBE,In Ghost Colours (Deluxe),spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,2008-01-01,https://i.scdn.co/image/ab67616d0000b273a1ff5dba27dabdcc0ee764c8,1,9,292560,https://p.scdn.co/mp3-preview/928534c93423b8399d6875f29dfd232ab5175a45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70800092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian electropop,electronic rock,electronica,indietronica,neo-synthpop",0.556,0.962,10.0,-3.997,0.0,0.0519,0.0299,0.877,0.245,0.699,124.988,4.0,,Modular,"C © 2008 Modular Recordings, P ℗ 2008 Modular Recordings",7459 +7460,spotify:track:3OIKgKNUt87GHz8OmmHZop,Is This How You Feel?,spotify:artist:5gcDZA9xXCOspWgQilUYIu,The Preatures,spotify:album:3JxzIkZt1ttKx2Xr0J0w7l,Blue Planet Eyes,spotify:artist:5gcDZA9xXCOspWgQilUYIu,The Preatures,2014-01-01,https://i.scdn.co/image/ab67616d0000b2730ca633ca3df5f8442ef17577,1,3,214093,https://p.scdn.co/mp3-preview/94786c6aadd246ca22bbe06c7a1049da060bdd17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUUM71401125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian indie rock",0.536,0.807,9.0,-7.696,1.0,0.129,0.00014,0.128,0.069,0.638,184.894,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 Universal Music Australia Pty Ltd., P ℗ 2014 Universal Music Australia Pty Ltd.",7460 +7461,spotify:track:7uFhHMYpEC2MLXwxt64pMD,I Won't Tell a Soul,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:5t4A7Loq1pKRFlkBOs1O2O,Some Type of Love,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2015-05-01,https://i.scdn.co/image/ab67616d0000b273e7bd365fb962fb7882a81d24,1,1,187884,https://p.scdn.co/mp3-preview/7fb45fbb27eec9a65dda708ce83f641caf05f5e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USAT21501193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop",0.439,0.445,2.0,-6.972,1.0,0.0383,0.692,0.0,0.0605,0.163,77.198,4.0,,Artist Partner,"C © 2015 Artist Partner Group, Inc, P ℗ 2015 Artist Partner Group, Inc",7461 +7462,spotify:track:5txqlF1lxNhkWy1xYOwr8r,Sunsets,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:7luRbYWUzEZONdwCZbdbEH,Vulture Street,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2003-01-01,https://i.scdn.co/image/ab67616d0000b2739c7dd05a21a98d8986faf295,1,5,229333,https://p.scdn.co/mp3-preview/aaf64c78cb80827944cb59a6c0231ed0afb5db5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00330026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.282,0.862,2.0,-3.591,1.0,0.0377,1.1e-05,0.0414,0.0904,0.705,167.36,4.0,,Universal Music Group,"C © 2003 Universal Music Australia Pty Ltd., P ℗ 2003 Universal Music Australia Pty Ltd.",7462 +7463,spotify:track:52fvvav4fVp7o6mL9SxuGF,Nobody I Know - Mono; 2002 Remaster,spotify:artist:6lHC2EQMEMZiEmSfFloarn,Peter And Gordon,spotify:album:4tbBthCq16aPiOjpo5E9qv,Peter And Gordon Plus,spotify:artist:6lHC2EQMEMZiEmSfFloarn,Peter And Gordon,1964-01-01,https://i.scdn.co/image/ab67616d0000b2733ad8cf1824eb89bacce96f25,1,16,150933,https://p.scdn.co/mp3-preview/1ebb2e149e2f83e6d9c91911a38ccbc700d57433?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBAYE0201626,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,british blues,british invasion",0.595,0.848,0.0,-6.571,1.0,0.0311,0.717,0.0,0.247,0.801,131.558,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",7463 +7464,spotify:track:0w2TpOsQrzS0pX4uvCZmGP,Burn It Down,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,spotify:album:6L8KVdP0dIxENiMAP0sR2o,Fear & Freedom,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,2012-01-01,https://i.scdn.co/image/ab67616d0000b273a1ec8d7e6cd2c99e14cc7f23,1,3,235131,https://p.scdn.co/mp3-preview/456bb9ab0fb8256ebc573f711937a318e52a5dfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AUEM01200023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian talent show",0.56,0.865,7.0,-2.631,1.0,0.0316,0.0029,0.000199,0.158,0.477,127.952,4.0,,Virgin Records,"C © 2013 EMI Recorded Music Australia Pty Ltd., P ℗ 2012 EMI Recorded Music Australia Pty Ltd.",7464 +7465,spotify:track:3cnrKJa5rMLh95O2pOYD4O,Let Me Drink (feat. The Hamiltones & Wale),"spotify:artist:5PjekOABtfU2Kwo0AHVmci, spotify:artist:1Nj9dLuiwh4DHn8AIkQyqs, spotify:artist:67nwj3Y5sZQLl72VNUHEYE","Guy Sebastian, The HamilTones, Wale",spotify:album:5f5NH8JVkmbKLgurCgViHH,Let Me Drink (feat. The Hamiltones & Wale),spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2019-11-15,https://i.scdn.co/image/ab67616d0000b273f8749dbfb951461526364837,1,1,158921,https://p.scdn.co/mp3-preview/81afa51e6b8a031dcedbbf57ae309c7162d3837f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUBM01900249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop rap,r&b,rap,southern hip hop,trap",0.711,0.721,0.0,-4.692,1.0,0.264,0.146,0.0,0.426,0.75,92.979,4.0,,Sony Music Entertainment,P (P) 2019 Sony Music Entertainment Australia Pty Ltd,7465 +7466,spotify:track:1v4TMV3rFb5pIhMpQA7kY3,Randy Scouse Git,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:338yWfNJWW2SXxVfIdczUD,The Best of The Monkees,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,2008-07-01,https://i.scdn.co/image/ab67616d0000b2730b74e9fcbe76d8245535a207,1,15,153653,https://p.scdn.co/mp3-preview/09810d91648d6e807c0d9ca77f514b2c98fc5eb7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USRH10125799,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.563,0.585,9.0,-8.241,0.0,0.0362,0.518,0.0,0.11,0.744,101.733,4.0,,Rhino,"C © 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co., P ℗ 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co.",7466 +7467,spotify:track:78His8pbKjbDQF7aX5asgv,Rivers of Babylon,spotify:artist:54R6Y0I7jGUCveDTtI21nb,Boney M.,spotify:album:0txzXbDfTn3vAdx77iCaXd,Nightflight to Venus,spotify:artist:54R6Y0I7jGUCveDTtI21nb,Boney M.,1978,https://i.scdn.co/image/ab67616d0000b2739e77d65619f80436b5cc9d12,1,6,261266,https://p.scdn.co/mp3-preview/addfdddfafa878b2cc807d7a1f171400e0e10d91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,DED167800006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.729,0.851,7.0,-7.033,1.0,0.0362,0.13,0.000912,0.443,0.741,115.118,4.0,,MCI,P (P) 1978/2007 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,7467 +7468,spotify:track:4w0mTXaAAMhNH4qF0fniCC,Touch,spotify:artist:26OrZl5U3VNGHU9qUj8EcM,Shift K3Y,spotify:album:3NiDiuphH3KoLDWHphMmQL,Touch,spotify:artist:26OrZl5U3VNGHU9qUj8EcM,Shift K3Y,2014-04-13,https://i.scdn.co/image/ab67616d0000b273f40e25277f538ee7f7ebc8f4,1,1,180840,https://p.scdn.co/mp3-preview/7171d5ca0a3ff6203795bcf4bfbab900cbdf94ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBARL1301621,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"house,uk dance",0.758,0.907,6.0,-6.099,0.0,0.247,0.263,1.99e-06,0.062,0.6,133.042,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,7468 +7469,spotify:track:46NBoIAHrmR7qcUGCIFEjR,This One's for You (feat. Zara Larsson) (Official Song UEFA EURO 2016),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:1Xylc3o4UrD53lo9CvFvVg","David Guetta, Zara Larsson",spotify:album:7EvlnQaVuUuFLIeSuE6nRq,This One's for You (feat. Zara Larsson) [Official Song UEFA EURO 2016],spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2016-05-13,https://i.scdn.co/image/ab67616d0000b273c052c52bc0218b778ca136f5,1,1,207272,https://p.scdn.co/mp3-preview/921a8000e87b94b6c4a82f957ef862544cc79598?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GB28K1500141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,pop,scandipop,swedish electropop,swedish pop",0.367,0.915,9.0,-3.456,0.0,0.0488,0.0022,5.81e-05,0.0905,0.365,110.169,4.0,,Parlophone (France),"C © 2016 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company, P ℗ 2016 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company",7469 +7470,spotify:track:3XDLCOBP5kyHSx939C3xr4,In The Hall Of The Mountain King,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:7CiSh3Wv5DrOmoxIZhzBYm,Let The Bad Times Roll (Deluxe Edition),spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,2021-08-20,https://i.scdn.co/image/ab67616d0000b2737c8a923e9407a36ed6ce01bc,1,8,60093,https://p.scdn.co/mp3-preview/98d3e202d75d5e3f61c54ac8027798be6905a96e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USC4R2007931,spotify:user:bradnumber1,2023-08-14T02:10:18Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.217,0.993,11.0,-3.979,0.0,0.101,1.38e-05,0.971,0.103,0.105,108.536,3.0,,Concord Records,"C © 2021 Wabi Sabi Worldwide, LLC., Under exclusive license to Concord Records. Distributed by Concord., P ℗ 2021 Wabi Sabi Worldwide, LLC., Under exclusive license to Concord Records. Distributed by Concord.",7470 +7471,spotify:track:0hCB0YR03f6AmQaHbwWDe8,Whole Lotta Love - 1990 Remaster,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,spotify:album:70lQYZtypdCALtFVlQAcvx,Led Zeppelin II (1994 Remaster),spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,1969-10-22,https://i.scdn.co/image/ab67616d0000b273fc4f17340773c6c3579fea0d,1,1,333893,https://p.scdn.co/mp3-preview/89f3dc45265602fa874c23d638538af0f2c6b56a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USAT29900471,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.412,0.902,9.0,-11.6,1.0,0.405,0.0484,0.131,0.405,0.422,89.74,4.0,,Rhino Atlantic,"C © 1969 Swan Song Inc., P ℗ 1969 Atlantic Recording Corp., a Warner Music Group company",7471 +7472,spotify:track:64qGiwJq4tO4wrxiY9CWjE,Find You (feat. Jake Reese),"spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:0eBOZ74PcpQb3SisNPgaRQ","Topic, Jake Reese",spotify:album:2k1XtZe5LUoRgKOurhXrOO,Find You (feat. Jake Reese),"spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:0eBOZ74PcpQb3SisNPgaRQ","Topic, Jake Reese",2016-07-08,https://i.scdn.co/image/ab67616d0000b2731331077db33a525a1fa3c445,1,1,209000,https://p.scdn.co/mp3-preview/a6a6af3f59c95dacbaa7eeff1b6c9842b796c8ff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,DEA621601336,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german dance,pop dance,pop edm,uk dance,dutch pop",0.651,0.815,0.0,-5.87,1.0,0.0698,0.0344,7.51e-05,0.118,0.42,109.044,4.0,,WM Germany,"C © 2016 Warner Music Group Germany Holding GmbH / A Warner Music Group, P ℗ 2016 Warner Music Group Germany Holding GmbH / A Warner Music Group",7472 +7473,spotify:track:7uCQb1MoL0kC4nw6WsGk38,20 Good Reasons,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,spotify:album:72ofNtyCnr54WRoZa6K289,Slideshows,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,2007-04-21,https://i.scdn.co/image/ab67616d0000b273db4c552ec0434ae0b7bc091a,1,2,229120,https://p.scdn.co/mp3-preview/356f3a1f5587b5334f6ddf8698854729651e1348?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUWA00606100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.419,0.663,1.0,-5.393,1.0,0.0355,0.0284,0.0,0.209,0.149,93.012,4.0,,WM Australia,"C © 2007 Warner Music Australia Pty Limited, P ℗ 2007 Warner Music Australia Pty Limited",7473 +7474,spotify:track:4kYZWXlFUZaCCrzZZJL7X8,You Promised Me,spotify:artist:1SLFnlhgHr5lExgdr6YeoL,In-Grid,spotify:album:5hTyAuyFnBblAAqkfhDtCT,Rendèz-vous (English Edition),spotify:artist:1SLFnlhgHr5lExgdr6YeoL,In-Grid,2003-09-24,https://i.scdn.co/image/ab67616d0000b27323802c73f2508a4ff0594a79,1,1,222013,https://p.scdn.co/mp3-preview/28024e36888f24bdba7631e4ad1a5d32ffc4a98d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,IT00D0300819,spotify:user:bradnumber1,2023-05-16T01:31:23Z,,0.883,0.84,1.0,-6.059,0.0,0.0458,0.00377,0.153,0.112,0.876,132.028,4.0,,X-Energy,"C 2003 X-Energy / Energy Production S.r.l., P 2003 X-Energy / Energy Production S.r.l.",7474 +7475,spotify:track:7xe1rxQLilEfk1VwfD3Jik,Moonlight Shadow - Remastered,spotify:artist:562Od3CffWedyz2BbeYWVn,Mike Oldfield,spotify:album:6HZ1hWRjUd17fA0AICbdf4,Crises (Deluxe Edition),spotify:artist:562Od3CffWedyz2BbeYWVn,Mike Oldfield,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d917a138e843c62129d84def,1,2,218909,https://p.scdn.co/mp3-preview/856deafe0c9dbcd0708f3d61eb0f9191ffebce6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71303848,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"progressive rock,symphonic rock",0.62,0.69,4.0,-9.882,1.0,0.0267,0.262,2.53e-06,0.235,0.821,128.347,4.0,,Universal Music Group,"C © 2013 Mike Oldfield under exclusive licence to Mercury Records Ltd., a division of Universal Music Operations Ltd, P ℗ 2013 Mike Oldfield under exclusive licence to Mercury Records Ltd., a division of Universal Music Operations Ltd",7475 +7476,spotify:track:4Gnl12vioGd6lgIjeYcMCl,Mickey,spotify:artist:59hMeIYY3k3NoX54rrVGPv,Toni Basil,spotify:album:1gFkSr7JzUqVvKcSUk4HeC,Mickey: The Very Best Of Toni Basil,spotify:artist:59hMeIYY3k3NoX54rrVGPv,Toni Basil,1997,https://i.scdn.co/image/ab67616d0000b2730be37380aad9fb41a4389050,1,1,253199,https://p.scdn.co/mp3-preview/41fa582c48edcd4d6893834a7e32c094091640a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCKK8175201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.674,0.913,4.0,-5.898,1.0,0.0521,0.124,1.06e-05,0.139,0.968,148.891,4.0,,The Devils Own Jukebox,"C 1997 The Devils Own Jukebox, P 1997 The Devils Own Jukebox",7476 +7477,spotify:track:4oKdS5NAUH603U3IUTIQ36,Stone Cold,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:5Hw7vceIgo04O7AAq6RCcc,Hits,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1996,https://i.scdn.co/image/ab67616d0000b2733dd4fb220d9107082b3f858b,1,2,227666,https://p.scdn.co/mp3-preview/345cc65cf7658fd3a4c508d56bd69987d26ca99c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI09600880,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.412,0.539,9.0,-7.794,1.0,0.0252,0.396,0.000631,0.1,0.33,96.812,3.0,,Bloodlines,"C 1996 Bloodlines, P 1996 Bloodlines",7477 +7478,spotify:track:4PKRAcbN8aPrgzFe0kOxRx,Georgia On My Mind,spotify:artist:1eYhYunlNJlDoQhtYBvPsi,Ray Charles,spotify:album:3XKYSvPAmrCVaFs4gzr1Ig,Georgia On My Mind,spotify:artist:1eYhYunlNJlDoQhtYBvPsi,Ray Charles,2012-02-23,https://i.scdn.co/image/ab67616d0000b273df3d459abce953d24caf1f91,1,1,216613,https://p.scdn.co/mp3-preview/0c281efe9c1136bcf5938d031d875645d7de7a5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,FR6V81229416,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,jazz blues,piano blues,soul,soul blues,vocal jazz",0.282,0.247,7.0,-11.838,1.0,0.0305,0.839,0.0,0.144,0.255,112.146,5.0,,DOM,"C DOM, P DOM",7478 +7479,spotify:track:0oXuKhuNkXiZtuoxrdt3Ca,Hot In Herre,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,spotify:album:502wXEj9iWWdqaAi0CO75M,Nellyville (Explicit Version),spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2002-06-25,https://i.scdn.co/image/ab67616d0000b27399ad1a6dd3c8b95ca4778d34,1,3,228226,https://p.scdn.co/mp3-preview/e3d856695fd100c4c2cf21e6c65fac1e0649cc02?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10200371,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.955,0.728,9.0,-4.862,0.0,0.122,0.219,0.0,0.0612,0.922,107.082,4.0,,Universal Music Group,"C © 2002 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2002 Universal Motown Records, a division of UMG Recordings, Inc.",7479 +7480,spotify:track:5TvFfDlVoUWZvfqrhTJzD7,One,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:1xn54DMo2qIqBuMqHtUsFd,x (Deluxe Edition),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2014-06-21,https://i.scdn.co/image/ab67616d0000b27313b3e37318a0c247b550bccd,1,1,252760,https://p.scdn.co/mp3-preview/9a27ec964aaa90ead0b17b558161230ba82e16d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAHS1400092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.464,0.321,2.0,-11.12,1.0,0.0418,0.877,0.0,0.0789,0.306,93.528,4.0,,Atlantic Records UK,"C © 2014 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 Asylum Records UK, a Warner Music UK Company, except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",7480 +7481,spotify:track:4jnFqNWeJCeCRHc4HCdxfd,Remember the Time,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:0oX4SealMgNXrvRDhqqOKg,Dangerous,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1991-11-13,https://i.scdn.co/image/ab67616d0000b2733b9f8b18cc685e1502128aa8,1,5,239226,https://p.scdn.co/mp3-preview/4ea719dd3e633874e12f1617c1b8289f12ea10a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USSM10020715,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.831,0.921,5.0,-2.383,0.0,0.0582,0.153,0.00224,0.305,0.795,108.002,4.0,,Epic/Legacy,P (P) 1991 MJJ Productions Inc.,7481 +7482,spotify:track:1aj4GXfmEYXfdVZohCpNKu,Stand by Me,spotify:artist:60df5JBRRPcnSpsIMxxwQm,Otis Redding,spotify:album:2BFOk5b8jjm2xmsbx7qXq3,Pain in My Heart,spotify:artist:60df5JBRRPcnSpsIMxxwQm,Otis Redding,1964,https://i.scdn.co/image/ab67616d0000b273cd404b5ae961b29d83f17c1f,1,3,172333,https://p.scdn.co/mp3-preview/f7dad57b4e6a17e2f8dd90b98dee8fa8d31b69d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USAT10000012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,memphis soul,soul,soul blues,southern soul,vocal jazz",0.883,0.464,10.0,-11.251,1.0,0.0591,0.279,1.51e-05,0.0744,0.925,111.548,4.0,,Rhino/Elektra,"C © 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",7482 +7483,spotify:track:1X3Vb1oIAW6Ee22JZAEi59,It's Probably Me,"spotify:artist:0Ty63ceoRnnJKVEYP0VQpk, spotify:artist:6PAt558ZEZl0DmdXlnjMgD","Sting, Eric Clapton",spotify:album:1rZTn68Lgr5J4F4vIpgpWf,Fields Of Gold - The Best Of Sting 1984 - 1994,spotify:artist:0Ty63ceoRnnJKVEYP0VQpk,Sting,1994-01-01,https://i.scdn.co/image/ab67616d0000b273973e8b89e74fbabf0736df8a,1,7,302040,https://p.scdn.co/mp3-preview/79be4f6f591934fed0f29df46cfcaad6dc8472dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USAM19200374,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,soft rock,sophisti-pop,album rock,blues rock,classic rock,electric blues,mellow gold,rock,singer-songwriter,soft rock",0.791,0.41,4.0,-12.604,0.0,0.084,0.167,4.38e-06,0.0763,0.511,91.021,4.0,,A&M,"C © 1998 A&M Records Inc., P ℗ 1994 UMG Recordings, Inc.",7483 +7484,spotify:track:2uuW3roQlIXlp8V59Cd08Q,You Needed Me,spotify:artist:6X9aYHnQ75YI8o08aoa0iS,Boyzone,spotify:album:2uJAf1p3d0ZH9s053lQDqm,The Love Songs Collection,spotify:artist:6X9aYHnQ75YI8o08aoa0iS,Boyzone,2003-03-17,https://i.scdn.co/image/ab67616d0000b273127844559e8a530dd3d37025,1,14,208773,https://p.scdn.co/mp3-preview/fcbe6b1fbd371f5b642413c21e4b2b9c1226b863?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAKW9900104,spotify:user:bradnumber1,2022-01-13T01:25:06Z,boy band,0.583,0.499,5.0,-7.894,1.0,0.0284,0.465,0.0,0.154,0.289,132.021,4.0,,UMC (Universal Music Catalogue),"C © 2003 Universal Music TV, a division of Universal Music Operations Ltd., P ℗ 2003 Universal Music TV, a division of Universal Music Operations Ltd.",7484 +7485,spotify:track:6ckVhQnKxHMyeC70f7sOS2,Rubber Ball - (1990 - Remastered),spotify:artist:5MX2l6ewjOaeWn1lYNhzlO,Bobby Vee,spotify:album:434hmQ0GM7ynBeMZz5BSQ3,The Legendary Masters Series,spotify:artist:5MX2l6ewjOaeWn1lYNhzlO,Bobby Vee,2011-01-01,https://i.scdn.co/image/ab67616d0000b273940b776a0ae7b0078d881daf,1,8,141866,https://p.scdn.co/mp3-preview/46522ab84f66d5d4be0a89a59cd877c8afa9b4c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USEM38900273,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,doo-wop,rock-and-roll,rockabilly",0.407,0.361,9.0,-13.94,1.0,0.0363,0.766,0.0,0.113,0.837,143.088,4.0,,Capitol Records,"C © 2011 Capitol Records, LLC, P This Compilation ℗ 2011 Capitol Records, LLC",7485 +7486,spotify:track:0pgRw8M6xNB1O4Puc9Tnyk,Heaven Knows,spotify:artist:2IJxOGPJDJzf6lLQqa84jl,Rick Price,spotify:album:4N8KeXHET6oYWKiUutct3E,HEAVEN KNOWS,spotify:artist:2IJxOGPJDJzf6lLQqa84jl,Rick Price,1992-07-10,https://i.scdn.co/image/ab67616d0000b273b8f9440460763a3106741755,1,5,267573,https://p.scdn.co/mp3-preview/d4102aaab6fe6006fadbc1a329c884d94e026d3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUSM09200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.457,0.27,0.0,-11.219,1.0,0.0258,0.721,0.0,0.0951,0.192,77.707,4.0,,Epic,P (P) 1992 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,7486 +7487,spotify:track:6rVNnvyNeibts1uOqdSNIw,Mother,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,spotify:album:5OrSjlgjIvI3GmTnTt6wnT,Mother,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2019-09-12,https://i.scdn.co/image/ab67616d0000b2734d63c46e82a0d534b4420378,1,1,162864,https://p.scdn.co/mp3-preview/3ca83db5c2ac8739dd86c230893f4af8f6791ab1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USAT21904486,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop",0.407,0.697,11.0,-5.612,1.0,0.342,0.375,5.07e-06,0.125,0.632,179.681,3.0,,Artist Partner,"C © 2019 Artist Partner Group, Inc. for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P ℗ 2019 Artist Partner Group, Inc. for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",7487 +7488,spotify:track:0yuBwKZJLISISw2jxv0KMu,I Wanna Know,"spotify:artist:4AVFqumd2ogHFlRbKIjp1t, spotify:artist:0awl5piYwO0CDTHEkCjUhn","Alesso, Nico & Vinz",spotify:album:29tbDHhcueX21y1wJ6da2P,I Wanna Know,spotify:artist:4AVFqumd2ogHFlRbKIjp1t,Alesso,2016-04-01,https://i.scdn.co/image/ab67616d0000b273327ba0a861d17dfd8a5000ff,1,1,240413,https://p.scdn.co/mp3-preview/137ddfb1eaa7c05baf01a4f8025f377733f06857?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11600111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,progressive electro house,afrobeats",0.652,0.819,2.0,-3.681,1.0,0.0338,0.0776,0.0,0.097,0.515,115.916,4.0,,Universal Music Group,"C © 2016 Alefune, under exclusive license in the United States to Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2016 Alefune, under exclusive license in the United States to Def Jam Recordings, a division of UMG Recordings, Inc.",7488 +7489,spotify:track:3G2cEEyPBmg1ICmRqUBNkg,Treatment,spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,spotify:album:6PBBbXmYV7dKnaik0fjkOI,Electronic Earth (Expanded Edition),spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,2012-04-02,https://i.scdn.co/image/ab67616d0000b273d9370e27abe3de676c56873a,1,4,270520,https://p.scdn.co/mp3-preview/09ce15565c916d998d0396ffd978c2ee4b91ecd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBHMU1200006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie poptimism,pop",0.586,0.855,2.0,-3.619,1.0,0.0446,0.00677,0.0,0.0704,0.517,129.931,4.0,,Syco Music UK,P (P) 2012 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,7489 +7490,spotify:track:3AzjcOeAmA57TIOr9zF1ZW,Physical,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:7fJJK56U9fHixgO0HQkhtI,Future Nostalgia,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-03-27,https://i.scdn.co/image/ab67616d0000b2734bc66095f8a70bc4e6593f4f,1,4,193829,https://p.scdn.co/mp3-preview/a40862d3e14b3758de55a84a6e06e5dbf87b3d0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBAHT1901298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.647,0.844,0.0,-3.756,1.0,0.0457,0.0137,0.000658,0.102,0.746,146.967,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, with the exception of track 1 & 2 2019 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",7490 +7491,spotify:track:23DExviO7cU7uytDf0XekC,Spiderwebs,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,spotify:album:22MtHr01EzeL6jmc5uwpHC,Tragic Kingdom,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,1995-10-10,https://i.scdn.co/image/ab67616d0000b273ada8d00d23273a097e6df364,1,1,266733,https://p.scdn.co/mp3-preview/07169c8f375aa03c09827fa2db1cbab576ee3d63?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19500270,spotify:user:bradnumber1,2022-01-12T23:24:11Z,"dance pop,dance rock,permanent wave,pop rock,rock",0.487,0.852,10.0,-7.184,1.0,0.0489,0.0376,4.06e-06,0.0995,0.666,143.258,4.0,,Trauma,"C © 1995 Interscope Records, P ℗ 1995 Interscope Records",7491 +7492,spotify:track:0QBzMgT7NIeoCYy3sJCof1,Bam Bam (feat. Ed Sheeran),"spotify:artist:4nDoRrQiYLoBzwC5BhVJzF, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Camila Cabello, Ed Sheeran",spotify:album:6FIMt58naoGYrOe4Wn2P3n,Bam Bam (feat. Ed Sheeran),"spotify:artist:4nDoRrQiYLoBzwC5BhVJzF, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Camila Cabello, Ed Sheeran",2022-03-04,https://i.scdn.co/image/ab67616d0000b273364ef5f9057092741f667fea,1,1,206070,https://p.scdn.co/mp3-preview/1bd8b56f5623c6eee74601848b0abdca40688743?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USSM12200047,spotify:user:bradnumber1,2022-04-05T08:06:18Z,"dance pop,pop,pop,singer-songwriter pop,uk pop",0.756,0.697,8.0,-6.377,1.0,0.0401,0.182,0.0,0.333,0.956,94.996,4.0,,Epic,"P (P) 2022 Epic Records, a division of Sony Music Entertainment",7492 +7493,spotify:track:5JqZ3oqF00jkT81foAFvqg,Prisoner (feat. Dua Lipa),"spotify:artist:5YGY8feqx7naU7z4HrwZM6, spotify:artist:6M2wZ9GZgrQXHCFfjv46we","Miley Cyrus, Dua Lipa",spotify:album:3hUh17FzYZwwZyNjU9B3vL,Prisoner (feat. Dua Lipa),"spotify:artist:5YGY8feqx7naU7z4HrwZM6, spotify:artist:6M2wZ9GZgrQXHCFfjv46we","Miley Cyrus, Dua Lipa",2020-11-20,https://i.scdn.co/image/ab67616d0000b2733797253ef8b94a9e35e1b7c6,1,1,169333,https://p.scdn.co/mp3-preview/cd0c535e75a018a3e0d8d57045834e1098bb6353?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USRC12003364,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,pop,uk pop",0.781,0.67,3.0,-3.912,0.0,0.0452,0.0103,0.0,0.0761,0.595,127.99,4.0,,RCA Records Label,"P (P) 2020 RCA Records, a division of Sony Music Entertainment",7493 +7494,spotify:track:6COoRaCNma7V9sBf81y9EK,I Send A Message,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:3GSxZlsQkGEjkHa09sdwRP,The Swing,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,1984,https://i.scdn.co/image/ab67616d0000b2739f41eabd4e8f9ba656f4f995,1,3,202426,https://p.scdn.co/mp3-preview/38cd13e30a8afbdc2ca50acd3bec5aa7f6f4c63d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,NLF050190176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.816,0.508,0.0,-6.839,1.0,0.0643,0.0782,0.532,0.0745,0.665,136.442,4.0,,Petrol Records,"C © 2011 Universal International Music BV, under exclusive license to Mercury Records Limited, P ℗ 2011 Universal International Music BV, under exclusive license to Mercury Records Limited",7494 +7495,spotify:track:4AAF8cbjVMBt7Y6eWqkPZz,Fallin' For You,spotify:artist:6aZyMrc4doVtZyKNilOmwu,Colbie Caillat,spotify:album:7Mh8CYqJA6spKg5bcE3GzM,Fallin' For You,spotify:artist:6aZyMrc4doVtZyKNilOmwu,Colbie Caillat,2009-01-01,https://i.scdn.co/image/ab67616d0000b273883bbfdd7f6f83f7027b95dc,1,1,217240,https://p.scdn.co/mp3-preview/743f9ff025bf15bf0f6656d291f89a052d7cac53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70970021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop",0.641,0.861,4.0,-5.206,1.0,0.0285,0.204,0.0,0.109,0.54,117.044,4.0,,Universal Records,"C (C) 2009 Universal Republic Records, a division of UMG Recordings, Inc., P (P) 2009 Universal Republic Records, a division of UMG Recordings, Inc.",7495 +7496,spotify:track:32L05FkUrYfVlc0IwJ45ld,MONTERO (Call Me By Your Name),spotify:artist:7jVv8c5Fj3E9VhNjxT4snq,Lil Nas X,spotify:album:03t71EZD4QdMD6PI1QdZC2,MONTERO (Call Me By Your Name),spotify:artist:7jVv8c5Fj3E9VhNjxT4snq,Lil Nas X,2021-03-24,https://i.scdn.co/image/ab67616d0000b273f3e1aa1e218f9c59d9df8461,1,1,137875,https://p.scdn.co/mp3-preview/1679e8947f5378729ac48d12e7e881976e8c380d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USSM12100532,spotify:user:bradnumber1,2021-08-08T09:26:31Z,lgbtq+ hip hop,0.433,0.498,8.0,-6.711,0.0,0.207,0.263,0.0,0.339,0.69,79.434,1.0,,Columbia,"P (P) 2021 Columbia Records, a Division of Sony Music Entertainment",7496 +7497,spotify:track:1ds2QsfhAAfRiaFMGDzrdb,What Do You Mean?,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:2hL8vuRtlo75Wr9PyZI5Jb,What Do You Mean?,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-08-28,https://i.scdn.co/image/ab67616d0000b273137c52bef1a7b917847fa108,1,1,207546,https://p.scdn.co/mp3-preview/408d55c4d5d6383a57b93361b6e58d5e8916ebe3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71511919,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.842,0.564,5.0,-8.042,0.0,0.105,0.617,0.00024,0.0912,0.782,124.984,4.0,,Universal Music LLC,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",7497 +7498,spotify:track:6RUKPb4LETWmmr3iAEQktW,Something Just Like This,"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:4gzpq5DPGxSnKTe4SA8HAU","The Chainsmokers, Coldplay",spotify:album:4JPguzRps3kuWDD5GS6oXr,Memories...Do Not Open,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2017-04-07,https://i.scdn.co/image/ab67616d0000b2730c13d3d5a503c84fcc60ae94,1,5,247160,https://p.scdn.co/mp3-preview/4e117abe76700eb13e9e0557fa2d9c44b565b9da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,87,USQX91700278,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,permanent wave,pop",0.617,0.635,11.0,-6.769,0.0,0.0317,0.0498,1.44e-05,0.164,0.446,103.019,4.0,,Disruptor Records/Columbia,P (P) 2017 Disruptor Records/Columbia Records,7498 +7499,spotify:track:4vEUJR9W3IknzgbtBaZRUS,Stop And Stare,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:72c3ugX0yPaFCtEuHPDXaY,Dreaming Out Loud (International Version),spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2007-01-01,https://i.scdn.co/image/ab67616d0000b273bb1b5ad136dc5176a70e8e74,1,3,223853,https://p.scdn.co/mp3-preview/0f84c850f0b65a6c5acfe0dd67f2e9421aa5cfbe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70758804,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.492,0.859,4.0,-4.274,1.0,0.0332,0.0659,0.0,0.0756,0.251,92.474,4.0,,Universal Music Group,"C © 2007 Mosley Music/Interscope Records, P ℗ 2007 Mosley Music/Interscope Records",7499 +7500,spotify:track:6mDTcLsheIzu5tvaF25kl4,It Ain't Me,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","Kygo, Selena Gomez",spotify:album:2sPYPyDFwgi1jrRTGhoxq2,Stargazing - EP,spotify:artist:23fqKkggKUBHNkbKtXEls4,Kygo,2017-09-21,https://i.scdn.co/image/ab67616d0000b273a333559091297eda04eba27c,1,2,220773,https://p.scdn.co/mp3-preview/b78a834a199aaaff9f0b3025077b2ee302f4c701?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEBGA1700015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,pop,post-teen pop",0.607,0.536,0.0,-6.735,1.0,0.0927,0.113,0.0,0.0812,0.461,100.027,4.0,,Kygo,"P (P) 2017 Kygo AS under exclusive license to Sony Music Entertainment International Ltd / Ultra Records, LLC",7500 +7501,spotify:track:4uGIJG1jYFonGc4LGp5uQL,Somebody to Love,spotify:artist:2qFr8w5sWUITRlzZ9kZotF,Jefferson Airplane,spotify:album:6lPb7Eoon6QPbscWbMsk6a,Surrealistic Pillow,spotify:artist:2qFr8w5sWUITRlzZ9kZotF,Jefferson Airplane,1967,https://i.scdn.co/image/ab67616d0000b2732dac7a01676ddb36c1d0ec05,1,2,174840,https://p.scdn.co/mp3-preview/19c01e1fdf45dd0a1e47051dd2e449de658a991c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USRC10301008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,blues rock,classic rock,folk rock,hard rock,mellow gold,psychedelic rock,rock,singer-songwriter",0.504,0.578,4.0,-9.302,1.0,0.031,0.408,0.0,0.321,0.654,132.411,4.0,,RCA/BMG Heritage,"P (P) 1967 Sony Music Entertainment, Inc.",7501 +7502,spotify:track:3l8cZBQmuOAQcQTkBvKx3m,Shadows,spotify:artist:2tGIh9kwbXuko0z3BTldBx,Midnight Juggernauts,spotify:album:1iGpOMvuM3uaHqjTAakuil,Dystopia,spotify:artist:2tGIh9kwbXuko0z3BTldBx,Midnight Juggernauts,2007,https://i.scdn.co/image/ab67616d0000b2731d0ef61ed43e555b1e7d0c9e,1,4,257173,https://p.scdn.co/mp3-preview/8566180a3ba24ff96e7a62d117771159d5c8edc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUIO05000188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,electrofox,filter house,neo-synthpop,new rave",0.678,0.807,10.0,-4.051,0.0,0.0532,0.00382,0.804,0.0828,0.724,126.986,4.0,,Siberia,"C 2007 Siberia, P 2007 Siberia",7502 +7503,spotify:track:7uKcScNXuO3MWw6LowBjW1,"1, 2 Step (feat. Missy Elliott)","spotify:artist:2NdeV5rLm47xAvogXrYhJX, spotify:artist:2wIVse2owClT7go1WT98tk","Ciara, Missy Elliott",spotify:album:71gUhKYZIWmmjqAHlY4Br3,Goodies,spotify:artist:2NdeV5rLm47xAvogXrYhJX,Ciara,2004-09-27,https://i.scdn.co/image/ab67616d0000b273c1e3659212de0f437bbf395e,1,2,203786,https://p.scdn.co/mp3-preview/e44153b954e8c9a9104e2f8e445c11801c783f9e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USLF20400121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,pop,r&b,urban contemporary,dance pop,hip hop,hip pop,neo soul,pop rap,r&b,rap,urban contemporary,virginia hip hop",0.944,0.511,5.0,-10.96,0.0,0.161,0.042,0.00107,0.0379,0.842,113.046,4.0,,So So Def,P (P) 2004 LaFace Records LLC,7503 +7504,spotify:track:4vS8VaBwJJV5Ry7UFIQuoo,Lean On (feat. MØ & DJ Snake),"spotify:artist:738wLrAtLtCtFOLvQBXOXp, spotify:artist:0bdfiayQAKewqEvaU6rXCv, spotify:artist:540vIaP2JwjQb9dm3aArA4","Major Lazer, MØ, DJ Snake",spotify:album:4DOcG4A40Wf3q2vPNGQwQg,Peace Is The Mission,spotify:artist:738wLrAtLtCtFOLvQBXOXp,Major Lazer,2015-06-01,https://i.scdn.co/image/ab67616d0000b2733cef8ef366eb38ea230d2070,1,4,176561,https://p.scdn.co/mp3-preview/5cdeec9f8b351372aa5e9f36f39d03d7bb58cef8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMUY41500008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,moombahton,pop,pop dance,dance pop,danish pop,electropop,pop dance,dance pop,edm,electronic trap,pop,pop dance",0.723,0.809,7.0,-3.081,0.0,0.0625,0.00346,0.00123,0.565,0.274,98.007,4.0,,Mad Decent,"C 2015 Mad Decent, P 2015 Mad Decent",7504 +7505,spotify:track:5cwN1htZyoWqZCc33f3RfE,The High Road,spotify:artist:6dgwEwnK0YtDfS9XhRwBTG,Broken Bells,spotify:album:0X7WyEKdm5afGj1fmD7Blx,Broken Bells,spotify:artist:6dgwEwnK0YtDfS9XhRwBTG,Broken Bells,2010-03-01,https://i.scdn.co/image/ab67616d0000b273e198b6b9c5bfe013458e8ec9,1,1,232200,https://p.scdn.co/mp3-preview/77a6780ba4f3e73b6ba6399c386bd551905a10f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USSM10906065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chamber pop,indie rock,indietronica,la indie,modern rock",0.61,0.638,0.0,-6.574,1.0,0.0238,0.0672,6.59e-06,0.283,0.603,79.955,4.0,,Columbia,"P (P) 2009, 2010 Sony Music Entertainment",7505 +7506,spotify:track:7t6CAWplijBj4sdl0q3z0e,Legs - 2008 Remaster,spotify:artist:2AM4ilv6UzW0uMRuqKtDgN,ZZ Top,spotify:album:5LMGAYhn2ywaxGZdtmXGpw,Eliminator,spotify:artist:2AM4ilv6UzW0uMRuqKtDgN,ZZ Top,1983-03-23,https://i.scdn.co/image/ab67616d0000b27328a00032ff3b86af3d7e0e54,1,6,273906,https://p.scdn.co/mp3-preview/5a350fbfbb55d456e76d228a6fdb875e32502c1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,USWB10702822,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,hard rock,rock",0.611,0.946,4.0,-5.357,1.0,0.0378,0.00957,0.0708,0.36,0.763,125.398,4.0,,Rhino/Warner Records,"C 2008 © 1983 Warner Records Inc., P 2008 ℗ 1983 Warner Records Inc. Marketed by Warner Strategic Marketing, a Warner Music Group Company.",7506 +7507,spotify:track:7wxDZuz39nLbKDYR5KAT8O,Scarborough Fair/Canticle - Original,spotify:artist:6hCsqVHnBo1BVQWuIjRMkL,Sergio Mendes & Brasil '66,spotify:album:3NUYpiODVbKWgmmVYrwsTv,The Classical Sergio Mendes & Brasil '66,spotify:artist:6hCsqVHnBo1BVQWuIjRMkL,Sergio Mendes & Brasil '66,2020-04-03,https://i.scdn.co/image/ab67616d0000b27365c7fd4c3ac8d76936ff53a8,1,2,200826,https://p.scdn.co/mp3-preview/2b6ac9867465d567388a3d1584e5afdd0b11bce5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,GBACC2002502,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.655,0.478,0.0,-13.556,0.0,0.0246,0.107,0.0149,0.101,0.841,109.667,4.0,,FM-Revolver Records,"C 2020 FM-Revolver Records, P 2020 FM-Revolver Records",7507 +7508,spotify:track:3OtsmzTZs50ahEnHKVvozC,Paperback Writer - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:6126O4XLYAfzU3961ziahP,The Beatles 1962 - 1966 (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1973-04-01,https://i.scdn.co/image/ab67616d0000b2735ef4660298ae29ee18799fc2,2,11,139186,https://p.scdn.co/mp3-preview/29c35b1783a8dd03a8c164491c2aea0d2ac2bb0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAYE0900592,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.501,0.689,7.0,-8.679,1.0,0.0732,0.179,6.45e-06,0.551,0.804,157.372,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P This Compilation ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",7508 +7509,spotify:track:2qoszVHCNhXnNKg9gdIjJU,Show No Mercy,spotify:artist:2ohOQrrh4DH64UbVA9D6sr,Mark Williams,spotify:album:6hEOGivsBogQKSt6QZovX3,Vanda and Young The Official Songbook,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-01-23,https://i.scdn.co/image/ab67616d0000b273aa46c1496fd820d255c4ebfc,1,20,263280,https://p.scdn.co/mp3-preview/db9b55005cf60eed1823e336473c6234f3d5400f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP09000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic nz pop,0.675,0.843,0.0,-3.774,0.0,0.0482,0.109,4.93e-06,0.0851,0.535,121.992,4.0,,Albert Productions,P (P) 2014 J. Albert & Son Pty Ltd,7509 +7510,spotify:track:5k38wzpLb15YgncyWdTZE4,Him & I (with Halsey),"spotify:artist:02kJSzxNuaWGqwubyUba0Z, spotify:artist:26VFTg2z8YR0cCuwLzESi2","G-Eazy, Halsey",spotify:album:1VAc77UvK5wj8ZSWCo3V2b,The Beautiful & Damned,spotify:artist:02kJSzxNuaWGqwubyUba0Z,G-Eazy,2017-12-15,https://i.scdn.co/image/ab67616d0000b273046527a9c176f7c2916f3530,1,3,268866,https://p.scdn.co/mp3-preview/f3b074fff3b73dfec619cf9a3ff72be8d6de2cb6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,75,USRC11701867,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie pop rap,oakland hip hop,pop rap,rap,electropop,etherpop,indie poptimism,pop",0.589,0.731,2.0,-6.343,1.0,0.0868,0.0534,0.0,0.308,0.191,87.908,4.0,,BPG/RVG/RCA Records,"P (P) 2017 RCA Records, a division of Sony Music Entertainment",7510 +7511,spotify:track:7BpyfQEmvi0sUmOq29plEE,You Don't Know Me (feat. Duane Harden) - Radio Edit,"spotify:artist:3cQA9WH8liZfeja1DxcDYE, spotify:artist:6t8VAB5OTHKxi4p1I5aqn0","Armand Van Helden, Duane Harden",spotify:album:62vJ3t4nZ50SigVCT6TUwb,You Don't Know Me (feat. Duane Harden),spotify:artist:3cQA9WH8liZfeja1DxcDYE,Armand Van Helden,1998-01-01,https://i.scdn.co/image/ab67616d0000b273bda22eb85e1a6dc323b3b58c,1,1,242333,https://p.scdn.co/mp3-preview/d652fac23d935bd5eadc4e40162568ad25cbb619?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBANR9800212,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,classic house,deep house,disco house,filter house,house,speed garage,uk dance,vocal house",0.772,0.682,10.0,-6.919,1.0,0.0701,0.0461,0.00285,0.0672,0.868,129.978,4.0,,London Music Stream,"C © 1998 London Records Ltd, P ℗ 1998 London Records Ltd",7511 +7512,spotify:track:5Pc3lYC8NuGRRu046gWzOl,Heavensent,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,spotify:album:3X6EH7lqHdejbiXuvdKIml,Present,spotify:artist:6eQ3AHw7yEVoX87xDS1ZiP,Killing Heidi,2002-10-25,https://i.scdn.co/image/ab67616d0000b27304deb8622c81f90dbc31a0cc,1,5,271480,https://p.scdn.co/mp3-preview/3155b15a90706c32798187d4144fd165c5cb841b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUBM00600213,spotify:user:bradnumber1,2023-01-31T06:25:18Z,"australian alternative rock,australian rock",0.505,0.932,9.0,-6.1,1.0,0.0452,0.0064,1.05e-05,0.759,0.484,127.062,4.0,,Universal Music Australia Pty. Ltd.,"C © 2002 Wah Wah Music Pty Ltd, under Licence to Universal Music Australia., P ℗ 2002 Wah Wah Music Pty Ltd, under Licence to Universal Music Australia.",7512 +7513,spotify:track:3T0ggmh35mdaTCXT2c0wkb,Throw Your Arms Around Me,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,spotify:album:39EJWDJI8959h6aMZkZ5pS,Human Frailty,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,1986,https://i.scdn.co/image/ab67616d0000b2733ea43efe89294092e5d5fbd3,1,2,233493,https://p.scdn.co/mp3-preview/f60b9e433adbcd40887371420d02d630b0c38f1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00508340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.57,0.765,4.0,-5.782,1.0,0.0264,0.156,0.00528,0.317,0.93,112.966,4.0,,Bloodlines,"C 1987 Bloodlines, P 1987 Bloodlines",7513 +7514,spotify:track:6PUzxtIHkv346yP89NzP9X,Kernkraft 400,spotify:artist:7vFpNLbCXbBFs4kFBUlkSl,Zombie Nation,spotify:album:2qmrRoUZQemrKFr9PBMDHd,Kernkraft 400 Single Mixes,spotify:artist:7vFpNLbCXbBFs4kFBUlkSl,Zombie Nation,2006-03-07,https://i.scdn.co/image/ab67616d0000b273916e34ccc44c2b56cdd0d7e4,1,1,285173,https://p.scdn.co/mp3-preview/4c12378c6faf04d4d75a0dee5749c8141e79f1f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,DE-Z20-06-00038,spotify:user:bradnumber1,2023-07-11T10:57:16Z,german techno,0.798,0.43,8.0,-7.839,0.0,0.0868,0.0055,0.901,0.146,0.487,140.064,4.0,,UKW Records,"C 2006 Copyright Control, P 2006 Copyright Control",7514 +7515,spotify:track:6SPD3JwwRejBhCDiQAQ4he,Run It!,"spotify:artist:7bXgB6jMjp9ATFy66eO08Z, spotify:artist:6Uh8uJyN9g7oFjDK16nJgb","Chris Brown, Juelz Santana",spotify:album:2gRm1k9fVkhTfZDHvBI2sR,Chris Brown,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2005-11-29,https://i.scdn.co/image/ab67616d0000b2732341c852b4db72824c0e3185,1,2,229866,https://p.scdn.co/mp3-preview/74a14b8bc5d019c40321871ad15e024576d6dbfc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI10500482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap,gangster rap,harlem hip hop,hip pop,nyc rap,pop rap,trap",0.85,0.482,1.0,-6.684,0.0,0.102,0.0246,0.0,0.387,0.217,100.957,4.0,,Jive,"P (P) 2005 RCA/JIVE Label Group, a unit of Sony Music Entertainment",7515 +7516,spotify:track:1YhzlKAGZCgFmu3maqDQtl,My Delirium,spotify:artist:5TfnQ0Ai1cEbKY5katFK14,Ladyhawke,spotify:album:31AFNVRlzhlhqX9LCwPfHF,Ladyhawke (Deluxe Edition),spotify:artist:5TfnQ0Ai1cEbKY5katFK14,Ladyhawke,2009-04-10,https://i.scdn.co/image/ab67616d0000b2730000e47a4e869d4323ad0e3d,1,3,254480,https://p.scdn.co/mp3-preview/fbf4a6386ef9fb9a765fa56ef548d9648b398eeb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBUM70808705,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,metropopolis,neo-synthpop",0.456,0.802,9.0,-4.025,0.0,0.0477,0.000697,0.000934,0.474,0.461,150.029,4.0,,Modular,"C © 2009 Modular Recordings, P ℗ 2009 Modular Recordings",7516 +7517,spotify:track:0RaEqkxeaUFwNhvcD9pAit,Joyride - Single Version,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,spotify:album:1nQK4dpultSS3YeHfYrgEW,A Collection of Roxette Hits! Their 20 Greatest Songs!,spotify:artist:2SHhfs4BiDxGQ3oxqf0UHY,Roxette,2006-10-18,https://i.scdn.co/image/ab67616d0000b2739357cebbe215e97c287012ae,1,7,241733,https://p.scdn.co/mp3-preview/636aeb5a9c5cf3f6d6a731ccc060cdc448619221?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,SEAMA9079011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop,synthpop",0.651,0.74,2.0,-6.244,1.0,0.0272,0.0862,0.0,0.142,0.615,102.233,4.0,,Parlophone Sweden,"C © 2006 Parlophone Music Sweden AB/Roxette Recordings under exclusive licence to Parlophone Music Sweden AB, a Warner Music Group Company., P ℗ 2006 Parlophone Music Sweden AB/Roxette Recordings under exclusive licence to Parlophone Music Sweden AB, a Warner Music Group Company.",7517 +7518,spotify:track:63kd4m3VFxcJjPVVtbVNAu,"Hello, Dolly!",spotify:artist:19eLuQmk9aCobbVDHc6eek,Louis Armstrong,spotify:album:213k6pbTGOHxlMpz5lb7zC,"Hello, Dolly! (Remastered)",spotify:artist:19eLuQmk9aCobbVDHc6eek,Louis Armstrong,1964-10-25,https://i.scdn.co/image/ab67616d0000b273a11c39d4d29e2aa2917a6300,1,1,147000,https://p.scdn.co/mp3-preview/08dab711fae6792de92397a3a3d7c2821755b761?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USMC16356894,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,dixieland,harlem renaissance,jazz trumpet,lounge,new orleans jazz,soul,swing,vocal jazz",0.0,0.405,0.0,-9.935,1.0,0.0,0.842,0.00114,0.198,0.0,0.0,0.0,,Verve Reissues,"C © 1964 UMG Recordings, Inc., P ℗ 1964 UMG Recordings, Inc.",7518 +7519,spotify:track:5B7S7GjR1tuyeDLSRNiTMO,Superstar,"spotify:artist:3KDpcZPHxvsaVk5PReoGqh, spotify:artist:4aP1lp10BRYZO658B2NwkG, spotify:artist:479Yp6DvyXoIaCssAxB4QR, spotify:artist:6pgLxFqJE6Wm9wWyM2iFEn","Tim Rice, Andrew Lloyd Webber, Murray Head, The Trinidad Singers",spotify:album:32tSaPx5IHoxZiZHXLhH61,Jesus Christ Superstar,"spotify:artist:4aP1lp10BRYZO658B2NwkG, spotify:artist:3KDpcZPHxvsaVk5PReoGqh, spotify:artist:2temQjFlKHox5OfGiwCVPy","Andrew Lloyd Webber, Tim Rice, Jesus Christ Superstar - The Original Studio Cast",1970-01-01,https://i.scdn.co/image/ab67616d0000b273ff323b514009394f0c92b5d5,2,9,255826,https://p.scdn.co/mp3-preview/30a57909a5f50e42b124ef20572803ab3e562502?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USMC17101337,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"broadway,west end,new wave pop",0.404,0.669,9.0,-5.481,1.0,0.0417,0.0569,0.0,0.429,0.526,122.29,4.0,,Polydor Records,"C © 2012 Decca Label Group, a division of UMG Recordings, Inc., 1755 Broadway , New York, NY 10019., P ℗ 1970 Decca Label Group, a division of UMG Recordings, Inc., 1755 Broadway , New York, NY 10019.",7519 +7520,spotify:track:7FdUvDkaE24o3FPIWTvzv2,Follow You,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:1nz0PWfAcTQVbFtpU6u1UY,Follow You / Cutthroat,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2021-03-12,https://i.scdn.co/image/ab67616d0000b27325e1a02097987b3480c7a8c5,1,1,175643,https://p.scdn.co/mp3-preview/68aaa32a993ad206272f942d5e642f3972db00f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USUM72102981,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.542,0.732,9.0,-5.956,1.0,0.0521,0.00209,7.92e-05,0.496,0.489,124.912,4.0,,KIDinaKORNER/Interscope Records,"C © 2021 KIDinaKORNER/Interscope Records, P ℗ 2021 KIDinaKORNER/Interscope Records",7520 +7521,spotify:track:63HdeyLwFqY8g97VGXzBuh,Hey Now,"spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:7C64wNX3howEFZjAYRKsfP, spotify:artist:4qBgvVog0wzW75IQ48mU7v","Martin Solveig, The Cataracs, KYLE",spotify:album:0ctfNYQHt2p0O5v5UkgFYK,Hey Now,"spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:7C64wNX3howEFZjAYRKsfP","Martin Solveig, The Cataracs",2013-05-27,https://i.scdn.co/image/ab67616d0000b273a7ec8cf0082fa44bd5e06b65,1,1,187500,https://p.scdn.co/mp3-preview/8869e59d1e3001b926e5bbca56b3a7207c8473dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,FR2PA1300010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,edm,electro house,filter house,house,pop dance,vocal house,deep underground hip hop,indie pop rap,meme rap,pop rap,viral trap",0.712,0.957,0.0,-1.923,1.0,0.0793,0.00552,1.89e-06,0.103,0.701,128.039,4.0,,Onelove,"C 2013 Temps d’Avance under exclusive license to ONELOVE, P 2013 Temps d’Avance under exclusive license to ONELOVE",7521 +7522,spotify:track:6pPCOXIQeNMr1oCWJTomSf,Sisters Are Doin' It for Themselves - Remastered Version,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg, spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok","Eurythmics, Annie Lennox, Dave Stewart, Aretha Franklin",spotify:album:2tbXCl8en5ZDVnHIk1OZGI,Be Yourself Tonight,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",1985-04-29,https://i.scdn.co/image/ab67616d0000b2738b9d4820655b6bf032ed41f3,1,4,357146,https://p.scdn.co/mp3-preview/dd9377d794fd8a0be2c7e13d452b422fdaf99e41?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBARL0300619,spotify:user:bradnumber1,2024-07-22T06:08:42Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard,classic soul,jazz blues,memphis soul,soul,southern soul,vocal jazz",0.67,0.903,10.0,-5.796,0.0,0.0402,0.0129,0.0,0.331,0.953,136.193,4.0,,RCA Records Label,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,7522 +7523,spotify:track:30E8uLGFNDOZXpf4xlzskB,Cradle of Love,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,spotify:album:7B0bXIuZ1qJhYvxxcXrRiJ,Charmed Life,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,1990,https://i.scdn.co/image/ab67616d0000b273b202e3f3c8835e10d3bc72c5,1,6,281493,https://p.scdn.co/mp3-preview/0b971bfcbf66edeb87fac3ffc8e01428b15b28c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCH39000011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,hard rock,new romantic,new wave,new wave pop,rock,soft rock",0.603,0.939,5.0,-5.498,0.0,0.0398,0.0037,0.0,0.0651,0.61,144.052,4.0,,Capitol Records,"C (C) 2007 Capitol Records, Inc., P (P) (C) 2007 Capitol Records, Inc.. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Capitol Catalog,",7523 +7524,spotify:track:7iHwz8MeLAgoeCqnYvApgI,A Million to One,spotify:artist:2aWMpUpxRV3pGXVdr6Srp9,Jimmy Charles,spotify:album:4Ut4K0tPhwChan5kinvzph,A Million to One,spotify:artist:2aWMpUpxRV3pGXVdr6Srp9,Jimmy Charles,2013-05-14,https://i.scdn.co/image/ab67616d0000b273d79bbb37273efcaec4ed06fa,1,1,158432,https://p.scdn.co/mp3-preview/5523e0c824f57e617ac4ff25251f846dec7509bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMFME1316697,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.394,0.317,10.0,-10.749,1.0,0.0284,0.731,0.0,0.17,0.423,102.738,3.0,,Black Sheep Music,C (C) 2013 Entertain Me Europe LTD,7524 +7525,spotify:track:5QhBKPqsnX1uY9fZNaAtZg,Stronger,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:5PmgtkodFl2Om3hMXONDll,Oops!... I Did It Again,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2000-05-16,https://i.scdn.co/image/ab67616d0000b2732aa20611c7fb964a74ab01a6,1,2,203000,https://p.scdn.co/mp3-preview/095864c3856a1f104c11997c59c5e56cb7f2a10b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USJI10000143,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.707,0.923,11.0,-3.957,1.0,0.0521,0.128,0.000437,0.273,0.842,108.049,4.0,,Jive,P (P) 2000 Zomba Recording LLC,7525 +7526,spotify:track:2HAVFycrhtbmLxyyxpm6JI,Killing Me Softly With His Song,"spotify:artist:2WKdxPFRD7IqZvlIAvhMgY, spotify:artist:2Mu5NfyYm8n5iTomuKAEHl, spotify:artist:7aBzpmFXB4WWpPl2F7RjBe, spotify:artist:0kJMPTXq7h3ztpDukSx5iD","Fugees, Ms. Lauryn Hill, Wyclef Jean, Pras",spotify:album:29pTiwvAAgbAjrl0g1twLy,Greatest Hits,spotify:artist:2WKdxPFRD7IqZvlIAvhMgY,Fugees,2003-03-25,https://i.scdn.co/image/ab67616d0000b27308c18e8a38e47817b6e9aed8,1,5,290293,https://p.scdn.co/mp3-preview/88b80accd420eb9b6925e1b87c9a0ca4a9a553e6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,51,USSM19600055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hip hop,neo soul,new jersey rap,alternative r&b,conscious hip hop,hip hop,neo soul,new jersey rap,r&b,rap kreyol,new jersey rap",0.765,0.437,4.0,-10.122,0.0,0.0727,0.0271,1.31e-06,0.167,0.498,92.402,4.0,,Columbia,"P (P) 1994, 1996, 1997, 2003 Sony Music Entertainment",7526 +7527,spotify:track:5BFWQXNGPYadZxNKxY1UfU,Green Green Grass Of Home,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,spotify:album:15QRC2FhT659a5YJIS0Nff,"Green, Green Grass Of Home",spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,1967-03-01,https://i.scdn.co/image/ab67616d0000b2734d61fd562f4d182f6af9af79,1,7,184893,https://p.scdn.co/mp3-preview/611b2a422c093b40dcc102fd57fc76387b76771a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBF076700190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion",0.543,0.41,8.0,-13.253,1.0,0.0268,0.157,0.0,0.0996,0.817,95.363,4.0,,UMC (Universal Music Catalogue),"C © 1967 Decca Music Group Limited, P ℗ 1967 Decca Music Group Limited",7527 +7528,spotify:track:4xCVHlmzEyIn1t4gXYsMaf,I've Gotta Get A Message To You,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:3LcOOTBvHj22Nl90AuRsro,Idea (Deluxe Edition),spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1968-08-11,https://i.scdn.co/image/ab67616d0000b273d40610074e9816f2a2004336,1,7,177440,https://p.scdn.co/mp3-preview/1cc7155dcf7b66ae8641c57efcfa6dfd0fc65cff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAKW6801007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.443,0.595,2.0,-6.327,0.0,0.0281,0.037,4.39e-06,0.172,0.495,83.413,4.0,,Bee Gees Catalog,"C © 1968 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 2008 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",7528 +7529,spotify:track:0d5f6gzzW1Pgx9uJsLrSDP,Bom Bom - Radio Edit,spotify:artist:3tgiOZXeC1DIimfprvfL64,Sam And The Womp,spotify:album:69onf0drqjCpyjgJsIb8BJ,Bom Bom,spotify:artist:3tgiOZXeC1DIimfprvfL64,Sam And The Womp,2012-08-17,https://i.scdn.co/image/ab67616d0000b2732b9414d50b39ed61efa36eff,1,1,174033,https://p.scdn.co/mp3-preview/1a3e9295cd027e67fa2fe80aac0d8773f5baa4a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAHT1200388,spotify:user:bradnumber1,2021-08-08T09:26:31Z,balkan beats,0.755,0.925,0.0,-3.977,1.0,0.257,0.0213,3.32e-05,0.101,0.804,125.06,4.0,,Big Beat Records/Atlantic,"C 2012 © Stiff Records Limited under exclusive licence to One More Tune / Warner Music UK, P 2012 ℗ Stiff Records Limited under exclusive licence to One More Tune / Warner Music UK",7529 +7530,spotify:track:18lq8FwQ94jlSk95PTM7Mr,Around The World,spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,spotify:album:0VN03Z2zA08bsq8eiDQZxu,Aquarius (Special Edition),spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,2000-01-01,https://i.scdn.co/image/ab67616d0000b2734d97078467429eff08e98c79,1,2,209760,https://p.scdn.co/mp3-preview/571c822dcd569adbb11511f45a8aa3452b36cdf1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,DKBKA0000102,spotify:user:bradnumber1,2022-01-13T01:17:13Z,"bubblegum dance,eurodance,europop",0.705,0.976,6.0,-4.261,1.0,0.0309,0.00213,0.000158,0.342,0.967,129.952,4.0,,Universal Music A/S,"C © 2000 Universal Music (Denmark) A/S, P ℗ 2000 Universal Music (Denmark) A/S",7530 +7531,spotify:track:2F0h9qvjJPbmZGpzE8dRxF,Born Slippy (Nuxx) - Radio Edit,spotify:artist:1PXHzxRDiLnjqNrRn2Xbsa,Underworld,spotify:album:10QtKCMNPA48VisBufj8Vf,Born Slippy (Nuxx) [Radio Edit],spotify:artist:1PXHzxRDiLnjqNrRn2Xbsa,Underworld,1995-01-01,https://i.scdn.co/image/ab67616d0000b2734ef56dfb6f43d7447a7f6c96,1,1,264187,https://p.scdn.co/mp3-preview/a582abd12896f536372fbcb4d2de0ceff0614ab8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCGL9800026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica",0.553,0.962,10.0,-8.253,1.0,0.0418,0.00121,0.195,0.0979,0.345,140.081,4.0,,Universal Music Group,"C © 2017 Smith Hyde Productions, under exclusive licence to UMC, a division of Universal Music Operations Ltd., P ℗ 1995 Smith Hyde Productions, under exclusive licence to UMC, a division of Universal Music Operations Ltd.",7531 +7532,spotify:track:7xdLNxZCtY68x5MAOBEmBq,All Along the Watchtower,spotify:artist:776Uo845nYHJpNaStv1Ds4,Jimi Hendrix,spotify:album:2vfiwvlxOBNBohRXfvlMtY,Experience Hendrix: The Best Of Jimi Hendrix,spotify:artist:776Uo845nYHJpNaStv1Ds4,Jimi Hendrix,1997-09-16,https://i.scdn.co/image/ab67616d0000b2737bfdcc5707e04f9418d2b69d,1,5,238626,https://p.scdn.co/mp3-preview/4cadffaefe46a1d605176237baf08dc4ef85cadc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USQX90900749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,alternative rock,classic rock,hard rock,proto-metal,psychedelic rock,rock",0.429,0.812,8.0,-6.252,1.0,0.0657,0.00282,2.44e-05,0.0882,0.625,113.279,4.0,,Legacy Recordings,P This compilation (P) 1997 Sony Music Entertainment,7532 +7533,spotify:track:0e9NrCWRZmkpWtmIiG04j2,Have A Little Faith In Me,spotify:artist:4Sld5LOPbAm1QSq9U32fFV,John Hiatt,spotify:album:7gEujjEBidfFXKVwBxUiun,The Best Of John Hiatt,spotify:artist:4Sld5LOPbAm1QSq9U32fFV,John Hiatt,1998-01-01,https://i.scdn.co/image/ab67616d0000b2736011b2f42d8876ff1c04430c,1,1,230826,https://p.scdn.co/mp3-preview/7fa3346666a875289437377fc8511b7f7316f8f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USCA29800004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,folk,heartland rock,roots rock,singer-songwriter",0.614,0.713,4.0,-7.941,1.0,0.0358,0.349,4.71e-05,0.121,0.437,87.108,4.0,,CAPITOL CATALOG MKT (C92),"C © 1998 Capitol Records, LLC, P This Compilation ℗ 1998 Capitol Records, LLC",7533 +7534,spotify:track:1ucA58jHhWSDkucfzvW9Tb,All Torn Down,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:7E5gQ3ZRt5elxXuDUNpdq0,The Living End,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,1998-12-10,https://i.scdn.co/image/ab67616d0000b273ef4bc670221f741d0e6d9cb9,1,7,248733,https://p.scdn.co/mp3-preview/b0461078d3058f060338db338b4fb4bf1efb5348?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUMP09800028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,australian ska",0.545,0.918,1.0,-4.849,0.0,0.033,0.000391,3.86e-06,0.126,0.68,133.497,4.0,,RedCat Sounds,"C 1998 Redcat Sounds, P 1998 Redcat Sounds",7534 +7535,spotify:track:35h2plG9OUFTznGdTGWraS,Leaving Your Keys,spotify:artist:4GOXTwL3RdkWmP9y3wTNDI,Fakebitcheshero,spotify:album:3aZemwXMtyxBW3Tsn68zSe,Leaving Your Keys,spotify:artist:4GOXTwL3RdkWmP9y3wTNDI,Fakebitcheshero,2021-07-23,https://i.scdn.co/image/ab67616d0000b27348da549b80f0a93f1733af5c,1,1,103026,https://p.scdn.co/mp3-preview/7c8bcf98fc889fae4c35896c3a7f5623e762af46?cid=9950ac751e34487dbbe027c4fd7f8e99,True,1,CA5KR2190289,spotify:user:bradnumber1,2021-08-08T09:26:31Z,trap queen,0.768,0.723,0.0,-6.41,1.0,0.113,0.091,0.0,0.126,0.174,152.007,4.0,,Fakebitcheshero,"C 2021 Fakebitcheshero, P 2021 Fakebitcheshero",7535 +7536,spotify:track:1ku3ylD0Fco099YiYt7CLN,Big When I Was Little,spotify:artist:14L5rpGTLVUz1pD8fUeJB1,Eliza Doolittle,spotify:album:0hN881bjeuXhjZyPsukc2x,In Your Hands,spotify:artist:14L5rpGTLVUz1pD8fUeJB1,Eliza Doolittle,2013-10-11,https://i.scdn.co/image/ab67616d0000b2731d1c15668d9b6539df6a5fa1,1,12,229199,https://p.scdn.co/mp3-preview/d7fd84d339c99d36318315427b7a87b3315ce4bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,GBAYE1300689,spotify:user:bradnumber1,2021-08-08T09:26:31Z,lilith,0.536,0.88,0.0,-3.686,1.0,0.0865,0.0217,0.0,0.386,0.795,170.086,4.0,,Parlophone UK,"C © 2013 Parlophone Records Ltd. A Warner Music Group Company, P ℗ 2013 Parlophone Records Ltd. A Warner Music Group Company",7536 +7537,spotify:track:6rHYGHf6QXrsnErxkJqP8b,My True Story,spotify:artist:2HWsf577KqaPhXyBFzei7L,The Jive Five,spotify:album:1EcYPV7BYL6jTlxavw14ba,Their Greatest Hits,spotify:artist:2HWsf577KqaPhXyBFzei7L,The Jive Five,1990,https://i.scdn.co/image/ab67616d0000b27324280855a1f20ec19a338e27,1,1,153493,https://p.scdn.co/mp3-preview/3279d6066facc7785fa265ab19def6239319982e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USPB81010060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.354,0.437,3.0,-7.485,1.0,0.0292,0.756,0.0,0.282,0.623,184.518,3.0,,Oldies.com,"C 1990 Oldies.com, P 1990 Oldies.com",7537 +7538,spotify:track:1SRkKyJ2JjMZgyDWC30zKv,My Best Friend's Girl,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:4tJPWT4r4FSKwy784Qs1Fq,The Cars,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,1978-06-06,https://i.scdn.co/image/ab67616d0000b273f725bc7907dcf15aa2c6e7b7,1,2,223253,https://p.scdn.co/mp3-preview/2983ffa70d53fb706be8f7c7c2e62c9089fbd0db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USEE10170465,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.799,0.608,5.0,-8.193,1.0,0.0411,0.0854,0.0138,0.102,0.963,121.916,4.0,,Elektra Records,"C © 1978 Elektra Records for the United States and WEA International for the world outside of the United States., P ℗ 1978 Elektra Entertainment, a division of Warner Communications, Inc. for the United States and WEA International Inc. for the world outside of the United States.",7538 +7539,spotify:track:2pxpJ9lmbqPEIk3M7ezLR0,Wonderful Life,spotify:artist:3w4VAlllkAWI6m0AV0Gn6a,Hurts,spotify:album:5cZgn1Bqk3msMykasZtZod,Happiness - Deluxe Edition,spotify:artist:3w4VAlllkAWI6m0AV0Gn6a,Hurts,2011-10-28,https://i.scdn.co/image/ab67616d0000b273df3d8fb47baeacc36d7df844,1,2,254133,https://p.scdn.co/mp3-preview/c7fade79bc56a218559876f0ab36dca1eda095b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBARL0901539,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,neo-synthpop",0.696,0.836,11.0,-7.231,0.0,0.0584,0.167,0.00155,0.184,0.414,120.022,4.0,,Epic,P (P) 2011 Major Label Limited under exclusive licence to Sony Music Entertainment UK Limited,7539 +7540,spotify:track:184QpO8ZchGncbNyJe9SDT,Make Me Smile (Come up and See Me) - 2014 Remaster,"spotify:artist:3dS8rLINyM7EYuMXryXJym, spotify:artist:6EL5GD53kaaVgJCHgdtdLz","Steve Harley, Steve Harley & Cockney Rebel",spotify:album:7GSkRCzsWwH8rJhzuswLgf,The Best Years of Our Lives (Deluxe Version),"spotify:artist:3dS8rLINyM7EYuMXryXJym, spotify:artist:6EL5GD53kaaVgJCHgdtdLz","Steve Harley, Steve Harley & Cockney Rebel",1975-03-22,https://i.scdn.co/image/ab67616d0000b27304e30f273be3dff4572b93f7,1,6,239213,https://p.scdn.co/mp3-preview/d4112c5c6baa982400a0a7d7c45ec01d6a28baa2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE1349972,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,glam rock,glam rock",0.571,0.818,0.0,-8.277,1.0,0.0337,0.00706,0.000177,0.0877,0.773,141.463,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 2014 Chrysalis Records Limited",7540 +7541,spotify:track:6wGFeQNzc0OnEFE4HqOzeH,Already Gone,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:3TDimUGd7RULilf8dvoGXf,Fingerprints & Footprints - The Ultimate Collection,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b273c99282eb112e0ad89430afc6,1,12,208680,https://p.scdn.co/mp3-preview/0300189ce036c781c22517cd339cd612936089bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUPO09820088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.329,0.356,4.0,-6.938,1.0,0.0309,0.0304,3.08e-06,0.135,0.529,161.394,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P This Compilation ℗ 2011 Universal Music Australia Pty Ltd.",7541 +7542,spotify:track:2gG7E5OZi5D5QLRIctv63z,I'm Your Man,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,spotify:album:6ZJD7uT643TvniNyAk90bd,The Final,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,1986-11-25,https://i.scdn.co/image/ab67616d0000b273ee44e3a23aaaa941f7adb48d,1,10,243093,https://p.scdn.co/mp3-preview/346c0005430f95101aa25626c5ba590a779bef23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBBBM8501285,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock",0.756,0.837,2.0,-6.943,1.0,0.051,0.297,0.0,0.0567,0.588,132.146,4.0,,Sony Music UK,P (P) 1986 Sony Music Entertainment UK Limited,7542 +7543,spotify:track:1lhpxZT57yw5toGJtt8fGE,Old Time Rock & Roll,spotify:artist:485uL27bPomh29R4JmQehQ,Bob Seger,spotify:album:3IqhO2ukdUkAs83DzamqIJ,Stranger In Town,spotify:artist:485uL27bPomh29R4JmQehQ,Bob Seger,1978-05-05,https://i.scdn.co/image/ab67616d0000b273f1adcb113c8ad75318f66f9d,1,3,194146,https://p.scdn.co/mp3-preview/334dff2915c9b754318f8231abd68c064e9a0d1f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA28600270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,detroit rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.713,0.931,6.0,-2.965,1.0,0.0394,0.219,0.0,0.0694,0.963,124.127,4.0,,Universal Music Group,"C © 1978 Hideout Records & Distributors, Inc., under exclusive license to Capitol Records, P ℗ 1978 Hideout Records & Distributors, Inc., under exclusive license to Capitol Records",7543 +7544,spotify:track:7dt6x5M1jzdTEt8oCbisTK,Better Now,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,spotify:album:6trNtQUgC8cgbWcqoMYkOR,beerbongs & bentleys,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2018-04-27,https://i.scdn.co/image/ab67616d0000b273b1c4b76e23414c9f20242268,1,9,231266,https://p.scdn.co/mp3-preview/1aa169aa2705c55c3c5e8d93dea91b682225ae59?cid=9950ac751e34487dbbe027c4fd7f8e99,True,78,USUM71805170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap",0.674,0.578,10.0,-5.804,1.0,0.0408,0.331,0.0,0.135,0.34,145.07,4.0,,Republic Records,"C © 2018 Republic Records, a division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",7544 +7545,spotify:track:0BxvfzkrHl3A0wlWcl7O2Q,The Only Thing That Looks Good On Me Is You,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:3TUsU5vU8MIPNk8K3n0rea,The Best Of Me,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1999-01-01,https://i.scdn.co/image/ab67616d0000b273b2ff0bbd92e0489bb95cccaf,1,14,217400,https://p.scdn.co/mp3-preview/686b93b3f5527db752f96b9f23e2c1f43a891844?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19602270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.642,0.93,7.0,-4.41,1.0,0.0365,0.0456,0.0,0.321,0.943,118.894,4.0,,Universal Music Australia Pty. Ltd.,"C © 1999 A&M Records Inc., P ℗ 1999 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",7545 +7546,spotify:track:1raaNykBg1bDnWENUiglUA,Break My Heart,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:368tzVdeju4vLSY8PHnQUs,Break My Heart,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-03-25,https://i.scdn.co/image/ab67616d0000b273d9e76eedbaac141a655b41ea,1,1,221820,https://p.scdn.co/mp3-preview/f3f1c35644604c47d061d03d2692c5d07679e56a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBAHT1901303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.73,0.729,4.0,-3.434,0.0,0.0886,0.167,1.39e-06,0.349,0.467,113.012,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, with the exception of track 1 & 2 2019 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",7546 +7547,spotify:track:21GGa6yivGAA6gZTPBPqMZ,Skippin',spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,spotify:album:0eVCjyTxbKofAMvf5e51K2,Go,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,2007-10-29,https://i.scdn.co/image/ab67616d0000b2734a098fe8653acebffa707f2c,1,3,238960,https://p.scdn.co/mp3-preview/6673f747842cfbb22f82112b6a527a50e358254a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJAY0700194,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,southern hip hop,urban contemporary",0.791,0.664,10.0,-6.876,0.0,0.203,0.201,0.0,0.128,0.619,123.917,4.0,,J Records,"P (P) 2006, 2007 J Records, a unit of SONY BMG MUSIC ENTERTAINMENT",7547 +7548,spotify:track:2xF0GzAiDMEugLYqLZFWLr,Push It,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,spotify:album:5dDxTFSOhUp6Y7PtlcflVZ,"Hot, Cool & Vicious",spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,1986-12-08,https://i.scdn.co/image/ab67616d0000b273b7f02a720d3e76036440820b,1,1,272133,https://p.scdn.co/mp3-preview/f56d6242c6fa9a995407dae416afd1585d8b5193?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20180482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop",0.914,0.594,11.0,-12.478,0.0,0.0727,0.00709,0.00318,0.0832,0.972,127.226,4.0,,Universal Music Group,"C © 1986 The Island Def Jam Music Group, The Island Def Jam Music Group, P ℗ 1986 The Island Def Jam Music Group, The Island Def Jam Music Group",7548 +7549,spotify:track:1nInOsHbtotAmEOQhtvnzP,Stronger (What Doesn't Kill You),spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:0VmE95pr5TSpZWucfyhO5e,Stronger (Deluxe Version),spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2011-10-24,https://i.scdn.co/image/ab67616d0000b273af384269742c6b04308c1be8,1,2,221946,https://p.scdn.co/mp3-preview/4956c3edb0a79489adc21e2d16eb8f7880c94d36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBCTA1100364,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.562,0.939,0.0,-4.282,1.0,0.0475,0.046,0.0,0.112,0.684,116.044,4.0,,RCA Records Label,P (P) 2011 19 Recordings Limited under exclusive license to RCA Records,7549 +7550,spotify:track:69vToJ9BMbbLlFZo7k7A7B,You Are The Reason,spotify:artist:6ydoSd3N2mwgwBHtF6K7eX,Calum Scott,spotify:album:6Vip5A5NmEazvKuxj6GLYf,Only Human (Deluxe),spotify:artist:6ydoSd3N2mwgwBHtF6K7eX,Calum Scott,2018-03-09,https://i.scdn.co/image/ab67616d0000b273f2d671c22b70e01b78a618a8,1,4,204326,https://p.scdn.co/mp3-preview/b9e816a532d71bcd7a41b7c7068effa2f4d91c83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USUM71710315,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.329,0.235,10.0,-7.699,1.0,0.0303,0.918,0.0,0.137,0.22,171.006,3.0,,Capitol Records (US1A),"C © 2018 Capitol Records, P ℗ 2018 Capitol Records",7550 +7551,spotify:track:7Ie9W94M7OjPoZVV216Xus,Not Afraid,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:47BiFcV59TQi2s9SkBo2pb,Recovery,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2010-06-18,https://i.scdn.co/image/ab67616d0000b273c08d5fa5c0f1a834acef5100,1,7,248133,https://p.scdn.co/mp3-preview/d4d9aa2c6b44dda05115e4e983e741caf4efde40?cid=9950ac751e34487dbbe027c4fd7f8e99,True,78,USUM71011769,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.855,0.954,0.0,-1.19,0.0,0.264,0.529,0.0,0.205,0.668,114.635,5.0,,Aftermath,"C © 2010 Aftermath Records, P ℗ 2010 Aftermath Records",7551 +7552,spotify:track:5r4a8aHraKhaK1u7OKvHwW,You - Remastered,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,spotify:album:2AT0TEOivhfQPiftdI0pOs,You,spotify:artist:7pUbbv62ajr1JDVFaftZJT,Marcia Hines,2005-03-04,https://i.scdn.co/image/ab67616d0000b2732bc310d1192c38a5cad0b8c5,1,4,197133,https://p.scdn.co/mp3-preview/6d2ecd14e6d34820f0dc36a04469c0905a91c3d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUBM00460324,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.687,0.739,3.0,-4.197,1.0,0.0274,0.384,0.00233,0.0618,0.765,114.074,4.0,,Sony Music Entertainment,P (P) 2005 Sony Music Entertainment Australia Pty Ltd,7552 +7553,spotify:track:0l9RGwc48deJ6j61KXAAvs,"Yester-Me, Yester-You, Yesterday",spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:51DUbu4v2tjYXxgy4I8vrG,My Cherie Amour,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1969-08-01,https://i.scdn.co/image/ab67616d0000b273a2b75ce3f397373fb135c1d4,1,9,185293,https://p.scdn.co/mp3-preview/5c6fa53e49627b93c9e512e3e66d701c1c6b3ba4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USMO16900526,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.604,0.357,6.0,-11.419,1.0,0.0269,0.0311,0.0,0.0927,0.638,100.721,4.0,,Motown,"C © 1989 The Motown Record Company LP, P ℗ 1969 The Motown Record Company LP",7553 +7554,spotify:track:1kMt9DMzQZJlWKQLkwYDYO,Run To The Water,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,spotify:album:5B6BSGEJlbsLRaCTf5oowJ,Best Of Live,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,2004-01-01,https://i.scdn.co/image/ab67616d0000b2732929083fb3fa476f7ebe1abf,1,11,267306,https://p.scdn.co/mp3-preview/22fdfb2794b7a1dd12b18aecc42eae7476c1a52c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USMC19959497,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,pop rock,post-grunge",0.154,0.855,8.0,-4.489,0.0,0.0527,0.00169,0.000676,0.11,0.292,179.922,4.0,,Radioactive,"C © 2004 Radioactive Records J.V., P ℗ 2004 Radioactive Records J.V.",7554 +7555,spotify:track:646q8KXpCZB40MU3OwyAlC,Inside Outside,spotify:artist:08umUXhtQEChP8ode5a978,Sophie Monk,spotify:album:2pXo5XBi0QdBjOoXI6hWor,Calendar Girl,spotify:artist:08umUXhtQEChP8ode5a978,Sophie Monk,2003-01-01,https://i.scdn.co/image/ab67616d0000b273185c4f1cd2f25e98c03d08c8,1,8,248266,https://p.scdn.co/mp3-preview/f37611e9d3c0cc2ee09cf10d8f022db89f05e8cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUWA00209100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.69,0.882,9.0,-3.347,0.0,0.0417,0.0207,4.36e-05,0.228,0.569,126.938,4.0,,WM Australia,"C © 2003 Warner Music Australia, P ℗ 2003 Warner Music Australia",7555 +7556,spotify:track:5xJRdHGIpRdwVranRFS51V,Pash,spotify:artist:6E4eoLJTZYyIC5cZVg6fDx,Kate Ceberano,spotify:album:00MnUtAkDl3y4WwvQKK94E,True Romantic - The Best of Kate Ceberano,spotify:artist:6E4eoLJTZYyIC5cZVg6fDx,Kate Ceberano,1999,https://i.scdn.co/image/ab67616d0000b2733fc1ac8da27fdb7ffb967c13,1,2,262466,https://p.scdn.co/mp3-preview/26cced4ff3e9f7313a542044ffec495577d5e559?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUMU09900006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian rock",0.7,0.909,5.0,-4.868,0.0,0.0391,0.00155,0.0166,0.0715,0.931,135.162,4.0,,WM Australia,"C 1999 Mushroom Records, P 1999 Mushroom Records",7556 +7557,spotify:track:4xanWVQIzdCf51mg8cd1cQ,Times Like These,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:1zCNrbPpz5OLSr6mSpPdKm,Greatest Hits,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-11-03,https://i.scdn.co/image/ab67616d0000b273136d7250568820409f8fdd60,1,7,267973,https://p.scdn.co/mp3-preview/4965272ac902d9543fe17b2757fdb572b44f2315?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USRW30200005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.36,0.905,4.0,-3.808,0.0,0.0812,1.37e-05,7.51e-06,0.0753,0.309,144.544,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",7557 +7558,spotify:track:0punrcknrU0dEBQJ28SEUr,My Place - Album Version / Explicit,"spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:4sbB4Yy6Qig51pKCIKSLw3","Nelly, Jaheim",spotify:album:2OngzqI3AHJL8k3XlTWEam,Suit,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2004-09-14,https://i.scdn.co/image/ab67616d0000b27348b2f89ee6cbefd0f889da25,1,3,336506,https://p.scdn.co/mp3-preview/502303fdbc44fa9cea2b1c89ae9fa69a29ed5622?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10400516,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary,contemporary r&b,r&b,urban contemporary",0.6,0.641,1.0,-4.237,0.0,0.0423,0.0498,1.49e-06,0.0982,0.642,163.153,4.0,,Universal Music Group,"C © 2004 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2004 Universal Records, a Division of UMG Recordings, Inc.",7558 +7559,spotify:track:15O20RQyWJgKrkHID9ynT9,Never Be Like You,"spotify:artist:6nxWCVXbOlEVRexSbLsTer, spotify:artist:6xHUXzrfhFgnIv86EBR3Ml","Flume, kai",spotify:album:2lBRNqB9iOJZFNu1JOSUBW,Skin,spotify:artist:6nxWCVXbOlEVRexSbLsTer,Flume,2016-05-27,https://i.scdn.co/image/ab67616d0000b273bbcee7c6bb62b2ebcf3ef33c,1,2,233337,https://p.scdn.co/mp3-preview/e27486d20eb1ffd4d844cdb0e084c1d568efeb60?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,AUFF01500784,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,australian indie,downtempo,edm,indietronica",0.443,0.558,0.0,-5.436,1.0,0.0624,0.441,0.0,0.163,0.248,116.838,4.0,,Future Classic,"C 2016 Future Classic, P 2016 Future Classic",7559 +7560,spotify:track:2CxzPA3L8cVWw41m2njpAI,Love At First Night,spotify:artist:5uY77rgciWNUxVv938Im3v,Kim Hart,spotify:album:4pQIVcFpvEqPmueyDstLOf,Love At First Night,spotify:artist:5uY77rgciWNUxVv938Im3v,Kim Hart,1979,https://i.scdn.co/image/ab67616d0000b273819d1b133e60990be75cfbe9,1,4,205933,https://p.scdn.co/mp3-preview/bc2158533725a74b15a9461dcccb6c315022f22b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,NZEM08000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.86,0.649,3.0,-8.713,1.0,0.0685,0.174,0.00348,0.126,0.947,111.232,4.0,,Universal Music New Zealand Limited,"C © 1979 EMI New Zealand Ltd, P ℗ 1979 EMI New Zealand Ltd",7560 +7561,spotify:track:1CdLweA1brUOAoYEvzTt8M,Russians,spotify:artist:0Ty63ceoRnnJKVEYP0VQpk,Sting,spotify:album:1rZTn68Lgr5J4F4vIpgpWf,Fields Of Gold - The Best Of Sting 1984 - 1994,spotify:artist:0Ty63ceoRnnJKVEYP0VQpk,Sting,1994-01-01,https://i.scdn.co/image/ab67616d0000b273973e8b89e74fbabf0736df8a,1,14,236973,https://p.scdn.co/mp3-preview/ed0b0f185eb25e43f26097a473bd66c4bd3d6257?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USAM18500044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,soft rock,sophisti-pop",0.444,0.422,0.0,-11.327,0.0,0.0327,0.477,1.38e-05,0.22,0.157,115.573,4.0,,A&M,"C © 1998 A&M Records Inc., P ℗ 1994 UMG Recordings, Inc.",7561 +7562,spotify:track:72QB8235EEpKdQAa5eImAm,Bumble Bee - Mono Version,spotify:artist:4QmkLL9JOqM9dusHS1Hghe,The Searchers,spotify:album:0i2VaiznHnihFRJq7iHRG0,Needles & Pins,spotify:artist:4QmkLL9JOqM9dusHS1Hghe,The Searchers,1964-01-01,https://i.scdn.co/image/ab67616d0000b2735d0dd46b2e5b276e13a6296c,2,7,132426,https://p.scdn.co/mp3-preview/ef7256f25078b5d724a60b329e67bee988a39cf4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6500048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,rock-and-roll",0.758,0.679,9.0,-8.559,1.0,0.0574,0.635,0.0,0.116,0.954,129.705,4.0,,Sanctuary Records,"C © 2006 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2006 Sanctuary Records Group Ltd., a BMG Company",7562 +7563,spotify:track:14XWXWv5FoCbFzLksawpEe,Riders on the Storm,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,spotify:album:7IKUTIc9UWuVngyGPtqNHS,L.A. Woman,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,1971-04-19,https://i.scdn.co/image/ab67616d0000b2733992c7ab57975935b29fa22b,1,10,434720,https://p.scdn.co/mp3-preview/0d7d4d35554f6097fce04d464f7aacd7c6f59727?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USEE19900773,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,classic rock,hard rock,psychedelic rock,rock",0.55,0.722,11.0,-11.729,0.0,0.0283,0.25,0.0129,0.11,0.716,103.886,4.0,,Rhino/Elektra,"C © 1971 Elektra Entertainment for United States and WEA International Inc. for the world outside of the United States., P ℗ 1971 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States",7563 +7564,spotify:track:3U4isOIWM3VvDubwSI3y7a,All of Me,spotify:artist:5y2Xq6xcjJb2jVM54GHK3t,John Legend,spotify:album:4OTAx9un4e6NfoHuVRiOrC,Love In The Future (Expanded Edition),spotify:artist:5y2Xq6xcjJb2jVM54GHK3t,John Legend,2013-08-30,https://i.scdn.co/image/ab67616d0000b27394c9217a398f5174757c0c78,1,6,269560,https://p.scdn.co/mp3-preview/29f542e5e8b4b6bb7e4e71a52bc3ff35b6b962ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USSM11303954,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,pop soul,urban contemporary",0.422,0.264,8.0,-7.064,1.0,0.0322,0.922,0.0,0.132,0.331,119.93,4.0,,G.O.O.D. Music/Columbia,"P (P) 2013 Getting Out Our Dreams and Columbia Records, a Division of Sony Music Entertainment",7564 +7565,spotify:local:Koo+De+Tah:Too+Young+For+Promises:Too+Young+For+Promises:216,Too Young For Promises,,Koo De Tah,,Too Young For Promises,,,,,0,0,216000,,False,0,,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,,,,,,,,,,,,,,,,7565 +7566,spotify:track:0YPXkQthLWrhNGoKTbwCJ8,(I Just) Died In Your Arms,spotify:artist:3cniTumSiUysiPWXapGx1i,Cutting Crew,spotify:album:6P6YSjfWz53suf41Bqt9BH,The Best Of Cutting Crew,spotify:artist:3cniTumSiUysiPWXapGx1i,Cutting Crew,1993-01-01,https://i.scdn.co/image/ab67616d0000b273b44a04404923d0361d8f8299,1,1,278626,https://p.scdn.co/mp3-preview/42b6a181c17a73acc797d3aa37be2ba6a13b396c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBAAA8600046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,new romantic,new wave,new wave pop,soft rock",0.632,0.727,11.0,-11.209,0.0,0.0438,0.0119,7.64e-05,0.0678,0.499,124.919,4.0,,EMI Gold,"C © 2003 Virgin Records Limited, P This Compilation ℗ 1993 Virgin Records Limited",7566 +7567,spotify:track:1ssmjAYSU5PbmsjLq5yrNH,Never Give Up,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:3pOA3oohNOrloauSH9rd8n,"Never Give Up (From ""Lion"" Soundtrack)",spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2016-11-18,https://i.scdn.co/image/ab67616d0000b273e839740212c6dbd8d559a709,1,1,221986,https://p.scdn.co/mp3-preview/11c4eaa50a5aede1823e3b959c936126789a9203?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USQX91602554,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.568,0.936,6.0,-2.961,0.0,0.053,0.00497,0.0138,0.12,0.605,91.009,4.0,,Masterworks,P (P) 2016 Monkey Puzzle Records Inc.,7567 +7568,spotify:track:4hLk7Bjz1XJWNDiqovvgBW,Sylvia's Mother,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,spotify:album:0WmdelW8OCAAsxayYY7vHm,Doctor Hook,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,1972,https://i.scdn.co/image/ab67616d0000b273adea90eb5e83ba3a45c39ed4,1,1,228333,https://p.scdn.co/mp3-preview/28150447e5e54038deefcc470765a4cedab12498?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM10105635,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,mellow gold,soft rock",0.303,0.47,9.0,-12.715,1.0,0.0512,0.692,0.0,0.339,0.563,168.104,4.0,,Columbia,P (P) 1972 Sony Music Entertainment Inc.,7568 +7569,spotify:track:5T7uKM64Yq3wG8wQyXQAtq,Lanterns - Single Version,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:0SFqw0hVO4SRDF9Wq91s2T,Lanterns,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2012-01-01,https://i.scdn.co/image/ab67616d0000b273d971486250059ffee9f3533b,1,1,236239,https://p.scdn.co/mp3-preview/59c97725ee33a2493980d951ed26810078db2e9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUYO01200100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.409,0.688,0.0,-6.862,1.0,0.0414,0.231,0.0257,0.174,0.3,167.986,4.0,,Capitol Records,"C © 2013 Birds Of Tokyo Pty Ltd, P ℗ 2012 Birds Of Tokyo Pty Ltd",7569 +7570,spotify:track:2eXKisDOt2fInd7vj1buOg,Dreamworld,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:4tSyLb9l1xuqGBxjv1jiLn,Diesel And Dust,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1987-06-22,https://i.scdn.co/image/ab67616d0000b273fa49ec77079f6b25edaebd32,1,3,217106,https://p.scdn.co/mp3-preview/0a48c5a4ff703584593a6b71cc29c23780bb73f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUSM09800192,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.322,0.731,9.0,-12.282,1.0,0.0277,0.00167,0.000257,0.322,0.852,161.166,4.0,,Columbia,P (P) 1987 Midnight Oil,7570 +7571,spotify:track:3ztKHejzVoxJRKSZHFFMdJ,Twilight Zone,spotify:artist:1iTlOqIrZy8DlvCPJY2sjS,Golden Earring,spotify:album:2qZLEQ9KsfExIhQKJF3VkD,The Long Versions - Part One,spotify:artist:1iTlOqIrZy8DlvCPJY2sjS,Golden Earring,2008-10-22,https://i.scdn.co/image/ab67616d0000b27393b0b0bc9bc1566e23999d88,1,2,478106,https://p.scdn.co/mp3-preview/421fee26519b44efff69a042d9e4b6766f61797c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,NLC288200071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dutch prog,dutch rock,nederpop",0.656,0.756,11.0,-6.516,0.0,0.0399,0.00785,3.49e-05,0.0927,0.542,118.56,4.0,,Red Bullet,"C 2008 Red Bullet, P 2008 Red Bullet",7571 +7572,spotify:track:2T1Xemp92qxuUCAFBWfRrj,Put Your Hands Up For Detroit,spotify:artist:7dc6hUwyuIhrZdh80eaCEE,Fedde Le Grand,spotify:album:5NaES6denS6wM2M2zV1YkR,Put Your Hands Up For Detroit,spotify:artist:7dc6hUwyuIhrZdh80eaCEE,Fedde Le Grand,2015-06-22,https://i.scdn.co/image/ab67616d0000b273c84c42a61fe9ec659aeae138,1,1,396000,https://p.scdn.co/mp3-preview/7a353f11ae4719fd653893c126c7081ce41afbac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHAD0600276,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch house,edm,electro house,house,pop dance,progressive electro house,progressive house",0.923,0.954,1.0,-4.575,1.0,0.208,0.00407,0.844,0.0493,0.282,128.03,4.0,,Cr2 Records,"C 2015 Cr2 Records Ltd, P 2015 Cr2 Records Ltd",7572 +7573,spotify:track:4ye6YRG07XMpZZ9Y9tNTt6,To Love Somebody,spotify:artist:6YHEMoNPbcheiWS2haGzkn,Michael Bolton,spotify:album:7g7nFMPWmFfk70ZvhTs0TT,Timeless (The Classics),spotify:artist:6YHEMoNPbcheiWS2haGzkn,Michael Bolton,1992-08-31,https://i.scdn.co/image/ab67616d0000b273086f37b3c161fda26947088c,1,2,247973,https://p.scdn.co/mp3-preview/ec2e099c4b6006756249f3d921cc0cc0dee593b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM19200381,spotify:user:bradnumber1,2021-11-11T05:10:14Z,soft rock,0.367,0.353,11.0,-11.786,1.0,0.0288,0.335,0.0,0.1,0.282,74.103,4.0,,Columbia,P (P) 1992 Sony Music Entertainment Inc.,7573 +7574,spotify:track:6JHLoGr7Gss3HhBp5RdKiH,Sorry,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,spotify:album:1nmxUznbVkZorzeY4olXco,Sex & Cigarettes,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,2018-03-23,https://i.scdn.co/image/ab67616d0000b273daa640ca60a76a4240c55b28,1,5,236000,https://p.scdn.co/mp3-preview/b5191fedd1f9a1474386575af82fbec284b836d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USUM71801171,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,r&b,urban contemporary",0.699,0.68,4.0,-3.607,0.0,0.0276,0.00993,0.0,0.11,0.578,94.979,4.0,,Def Jam Recordings,"C © 2018 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2018 Def Jam Recordings, a division of UMG Recordings, Inc.",7574 +7575,spotify:track:5yJCo7EewUcX9qj5nnk9O2,Baby Sittin' Boogie - Radio Version,spotify:artist:4Z1spMbjudmqwjyBPleP7s,Buzz Clifford,spotify:album:1LL6GWTsMYiRc0fwGfoU3h,Rock & Roll 50s & 60s Mix,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-10-01,https://i.scdn.co/image/ab67616d0000b27325a738dc864174811aa67d1b,1,24,122958,https://p.scdn.co/mp3-preview/6798b36f687e65889d4987e0dd3b3508b9c0647f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,DEAR41442794,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.483,0.533,6.0,-9.883,1.0,0.145,0.805,0.0,0.161,0.878,140.11,4.0,,Rock Miramike,"C 2016 Rock Miramike, P 2016 Rock Miramike",7575 +7576,spotify:track:7IahivnWF9l1W8DSBQe3Xv,Zebra,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,spotify:album:4Plc6eI1zbCMTawqZTxwgz,Sunrise Over Sea,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,2004-08-03,https://i.scdn.co/image/ab67616d0000b273017f522421a3f4e609ac2510,1,10,237626,https://p.scdn.co/mp3-preview/708be4c71f8750b34d2b3b550b3ffd04eef16351?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,AUFC00400100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,banjo,0.609,0.638,4.0,-6.988,1.0,0.0435,0.127,0.0663,0.142,0.748,78.785,4.0,,Jarrah Records,"C 2004 Jarrah Records, P 2004 Jarrah Records",7576 +7577,spotify:track:1ZgEpCLk5sQcwMSpIpGfiQ,Everything I Own,spotify:artist:2BWfZGPtsjRlRp7JTDqI45,Boy George,spotify:album:6B4RhkHgm341clE9eX8x0I,Sold,spotify:artist:2BWfZGPtsjRlRp7JTDqI45,Boy George,1987-01-01,https://i.scdn.co/image/ab67616d0000b273c198e6ef1d82986e75ad2bfe,1,4,233426,https://p.scdn.co/mp3-preview/c6dce7a09939424b490dc15eb9e056b29098019f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAAA8700025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock",0.781,0.441,6.0,-12.46,1.0,0.0341,0.256,1.74e-05,0.0767,0.789,87.185,4.0,,Virgin Catalogue,"C © 1987 Virgin Records Limited, P ℗ 1987 Virgin Records Limited",7577 +7578,spotify:track:5kM3UFOQH6W4KVbv4U8Ozs,Walls,spotify:artist:1Ic7597AdNZRVWP8Lwoa36,Flowers,spotify:album:3UuP7QQWY6hXNiESqZei92,White Heat: 30 Hits,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,2011-08-26,https://i.scdn.co/image/ab67616d0000b273c1e97e3b542ffb0713d1bd8d,1,3,262173,https://p.scdn.co/mp3-preview/d896edbdda644bdd8cad6c780ce35d564b29ee7c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUWA00207251,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.632,0.631,5.0,-8.059,1.0,0.0592,0.000219,3.05e-05,0.162,0.312,79.021,4.0,,Universal Music Group,"C © 2011 Diva Records, P ℗ 2011 Diva Records",7578 +7579,spotify:track:6qspW4YKycviDFjHBOaqUY,Waterfalls,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,spotify:album:5eg56dCpFn32neJak2vk0f,Crazysexycool,spotify:artist:0TImkz4nPqjegtVSMZnMRq,TLC,1994-11-15,https://i.scdn.co/image/ab67616d0000b273a6125b1964a555892c49ea53,1,8,279506,https://p.scdn.co/mp3-preview/7fae23d7bb19a77d6c5552f385cc6f80534dfae7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USLF29400133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,girl group,hip pop,r&b,urban contemporary",0.769,0.505,1.0,-7.345,1.0,0.0829,0.311,7.49e-05,0.0777,0.757,171.804,4.0,,Arista/LaFace Records,P (P) 1994 LaFace Records LLC,7579 +7580,spotify:track:0UaMYEvWZi0ZqiDOoHU3YI,Lose Control (feat. Ciara & Fat Man Scoop),"spotify:artist:2wIVse2owClT7go1WT98tk, spotify:artist:2NdeV5rLm47xAvogXrYhJX, spotify:artist:15GGbJKqC6w0VYyAJtjej6","Missy Elliott, Ciara, Fatman Scoop",spotify:album:6vV5UrXcfyQD1wu4Qo2I9K,The Cookbook,spotify:artist:2wIVse2owClT7go1WT98tk,Missy Elliott,2005-07-04,https://i.scdn.co/image/ab67616d0000b273f1dfae21eaac0d24fb3dcf5a,1,4,226863,https://p.scdn.co/mp3-preview/253a76c453026570394aa26156691d1d81b387c0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,65,USEE10414022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip hop,hip pop,neo soul,pop rap,r&b,rap,urban contemporary,virginia hip hop,dance pop,hip pop,pop,r&b,urban contemporary,nyc rap",0.904,0.813,4.0,-7.105,0.0,0.121,0.0311,0.00697,0.0471,0.81,125.461,4.0,,Atlantic Records/ATG,"C © 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",7580 +7581,spotify:track:1Cy71Rb6aB5EjVYVYvVFIx,Let It Hurt,spotify:artist:0a1gHP0HAqALbEyxaD5Ngn,Rascal Flatts,spotify:album:3UFdvzvKR3spzlCkVpcqKb,Changed,spotify:artist:0a1gHP0HAqALbEyxaD5Ngn,Rascal Flatts,2012-01-01,https://i.scdn.co/image/ab67616d0000b2735456e600a1afe86a655686ba,1,6,233693,https://p.scdn.co/mp3-preview/9321fb4e7b860b9d0d0101a212093c7c8898e565?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USCJY1112137,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road",0.474,0.603,0.0,-5.99,1.0,0.027,0.0546,0.0,0.198,0.255,135.988,4.0,,"Big Machine Records, LLC.","C © 2012 Big Machine Records, LLC., P ℗ 2012 Big Machine Records, LLC.",7581 +7582,spotify:track:42oNny7A4CqwQzmCLTRXv9,Too Funky - Remastered 2006,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:5HaOXSCK1IlwzV4ve7CUKY,Twenty Five,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,2006-11-11,https://i.scdn.co/image/ab67616d0000b2730387e54a214e3ed5ff795956,1,5,226253,https://p.scdn.co/mp3-preview/6de889df5df7702fdcef7b3b290d2ec282975385?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBARL0601599,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.65,0.882,1.0,-8.747,1.0,0.0817,0.0188,0.351,0.767,0.769,98.24,4.0,,Aegean/Epic,P This compilation (P) 2008 Sony BMG Music Entertainment (UK) Limited,7582 +7583,spotify:track:1xQ6trAsedVPCdbtDAmk0c,Savage Love (Laxed - Siren Beat),"spotify:artist:56mfhUDKa1vec6rSLZV5Eg, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Jawsh 685, Jason Derulo",spotify:album:1XMw3pBrYeXzNXZXc84DNw,Savage Love (Laxed - Siren Beat),"spotify:artist:56mfhUDKa1vec6rSLZV5Eg, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Jawsh 685, Jason Derulo",2020-06-11,https://i.scdn.co/image/ab67616d0000b2730f619e50cfa37c94e3f8300e,1,1,171374,https://p.scdn.co/mp3-preview/70e9427cbf64fb1d8520366219ec79ff41d5b0a1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,70,USSM12003798,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"nz pop,dance pop,pop",0.767,0.481,0.0,-8.52,0.0,0.0803,0.234,0.0,0.269,0.761,150.076,4.0,,Columbia,"P (P) 2020 Columbia Records, a Division of Sony Music Entertainment",7583 +7584,spotify:track:7nD9nN3jord9wWcfW3Gkcm,All In My Head (Flex) (feat. Fetty Wap),"spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt, spotify:artist:6PXS4YHDkKvl1wkIl4V8DL","Fifth Harmony, Fetty Wap",spotify:album:0pF0oyuPNdOObniB1Ng0kW,7/27 (Deluxe),spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt,Fifth Harmony,2016-05-27,https://i.scdn.co/image/ab67616d0000b273d03fa6f4e758282b7920b5c8,1,6,210573,https://p.scdn.co/mp3-preview/919cbfbef09365ed8ce9481ec8b2699a970c12e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM11601121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,new jersey rap,pop rap,rap,southern hip hop,trap",0.689,0.791,0.0,-5.194,0.0,0.053,0.023,0.0,0.0526,0.755,95.04,4.0,,Syco Music/Epic,"P (P) 2016 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",7584 +7585,spotify:track:779ooI3rBd0CLqCiiJmtVo,Hero (feat. Josey Scott),"spotify:artist:7fJYw1vK9yWb8o51I8qHin, spotify:artist:5mNloTgSaf5qCyk48t9NSP","Chad Kroeger, Josey Scott",spotify:album:4JLTenJ9u07tFnk3On1ypa,Hero (feat. Josey Scott),spotify:artist:7fJYw1vK9yWb8o51I8qHin,Chad Kroeger,2003,https://i.scdn.co/image/ab67616d0000b273cab637c3978c4db066bfd16f,1,1,200480,https://p.scdn.co/mp3-preview/e26284b2a387742bc250f455ea4ed7bfb8502f57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,NLA320219756,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.427,0.843,4.0,-4.54,1.0,0.0364,0.00216,0.0,0.179,0.304,147.387,3.0,,Roadrunner Records,"C © 2003 The All Blacks B.V., P ℗ 2003 The All Blacks B.V.",7585 +7586,spotify:track:1KwSX5vubaSHtCeqO0yvZK,Spinning Around,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:4oaGBehVCW8w4Ekf8sTbqb,The Best of Kylie Minogue,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2012-05-28,https://i.scdn.co/image/ab67616d0000b2732775ed6b5267d46354f4476a,1,2,206626,https://p.scdn.co/mp3-preview/113436d2d1e9b6611c4f037b5ba1134e11adc54d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAYE0000351,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.757,0.73,6.0,-5.705,0.0,0.0539,0.283,7.67e-05,0.0917,0.67,120.039,4.0,,WM Australia,"C © 2014 KDB Pty Limited, P ℗ 2014 KDB Pty Limited",7586 +7587,spotify:track:0MCUkwn1vaGY9W3dCw5GbJ,No Love,"spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:55Aa2cqylxrFIXC767Z865","Eminem, Lil Wayne",spotify:album:2sH5LthgBQ95vHzgPBB1Wl,Recovery,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2010-06-18,https://i.scdn.co/image/ab67616d0000b2737b47a8c294c0fbda8bff3c8c,1,9,299506,https://p.scdn.co/mp3-preview/dc92e0b36122494a972179d599d51d4aa97fe7f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USUM71015434,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap,hip hop,new orleans rap,pop rap,rap,trap",0.514,0.935,11.0,-2.961,1.0,0.236,0.107,0.0,0.14,0.289,129.565,4.0,,Aftermath,"C © 2010 Aftermath Records, P ℗ 2010 Aftermath Records",7587 +7588,spotify:track:0FDzzruyVECATHXKHFs9eJ,A Sky Full of Stars,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:2G4AUqfwxcV1UdQjm2ouYr,Ghost Stories,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2014-05-19,https://i.scdn.co/image/ab67616d0000b273e5a95573f1b91234630fd2cf,1,8,267866,https://p.scdn.co/mp3-preview/870ebba9927cd7c73467fc5772f398a8a8999344?cid=9950ac751e34487dbbe027c4fd7f8e99,False,86,GBAYE1400217,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.545,0.675,6.0,-6.474,1.0,0.0279,0.00617,0.00197,0.209,0.162,124.97,4.0,,Parlophone UK,"C © 2014 Parlophone Records Limited, a Warner Music Group Company., P ℗ 2014 Parlophone Records Limited, a Warner Music Group Company.",7588 +7589,spotify:track:62GYoGszQfROZswLee6W3O,Give Me the Night,spotify:artist:4N8BwYTEC6XqykGvXXlmfv,George Benson,spotify:album:1IcNxT9zu74BfNhuHD9MBN,The George Benson Collection,spotify:artist:4N8BwYTEC6XqykGvXXlmfv,George Benson,1981,https://i.scdn.co/image/ab67616d0000b2733a3c381f6910a4fe51c2640b,1,3,222626,https://p.scdn.co/mp3-preview/307d52b4c167242adf51eab7a630d5a9cdbcccb5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USWB10902424,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"jazz funk,jazz guitar,smooth jazz,soul jazz,yacht rock",0.85,0.466,1.0,-15.673,1.0,0.0555,0.314,0.0234,0.129,0.86,109.936,4.0,,Rhino/Warner Records,"C © 2007 Rhino Entertainment Company., P ℗ 1981 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",7589 +7590,spotify:track:5dyDkXi1bnQKSyIdO0JXp8,Hundred Miles,"spotify:artist:0ZRBa9pTfhhCsJW95F1ugg, spotify:artist:69YKwunlA0xl2yMS12cyMu","YALL, Gabriela Richardson",spotify:album:6PEYvIrLYHJ8BvpE5uUChz,Hundred Miles,"spotify:artist:0ZRBa9pTfhhCsJW95F1ugg, spotify:artist:69YKwunlA0xl2yMS12cyMu","YALL, Gabriela Richardson",2015-10-16,https://i.scdn.co/image/ab67616d0000b273a66b939ac0ab20acaab077d7,1,1,172413,https://p.scdn.co/mp3-preview/f209bb6586c166495f8ca057f46f81441331f66f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ES7001520501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.479,0.714,7.0,-3.776,0.0,0.109,0.025,0.0153,0.206,0.49,98.23,4.0,,Sony Music Entertainment,"P (P) de esta edicion 2015 Sony Music Entertainment España, S.L. bajo la licencia exclusiva de Mushroom Pillow Music",7590 +7591,spotify:track:45vKP0cRjVu9UxNIWVHDoj,Sad Girl Summer,spotify:artist:2RVvqRBon9NgaGXKfywDSs,Maisie Peters,spotify:album:01RDRSabinKcm0bjdo3tJw,Sad Girl Summer,spotify:artist:2RVvqRBon9NgaGXKfywDSs,Maisie Peters,2020-07-01,https://i.scdn.co/image/ab67616d0000b2731be38dcdb8910e9ff1b0653b,1,1,164800,https://p.scdn.co/mp3-preview/d4173158df198e4103e19f4b93be9266a81a7da9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAHS2000615,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,uk pop",0.547,0.791,0.0,-3.906,1.0,0.127,0.558,0.0,0.354,0.595,84.222,4.0,,Atlantic Records UK,"C © 2020 an Atlantic Records UK release. (p) and © 2020 Felion Limited under exclusive license to Warner Music UK Limited., P ℗ 2020 an Atlantic Records UK release. (p) and © 2020 Felion Limited under exclusive license to Warner Music UK Limited.",7591 +7592,spotify:track:1lntL1cI2UIWlxjL5QiN8g,The Other,spotify:artist:5JZ7CnR6gTvEMKX4g70Amv,Lauv,spotify:album:5UuX5qUN4wL5hMmGom92lu,The Other,spotify:artist:5JZ7CnR6gTvEMKX4g70Amv,Lauv,2015-03-31,https://i.scdn.co/image/ab67616d0000b2733c6e07056b26bb9804a596da,1,1,189333,https://p.scdn.co/mp3-preview/f4140954b3295d81d0768bb02cf211d8d315b2f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCACE1579641,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.38,0.553,7.0,-6.621,1.0,0.0653,0.421,2.63e-06,0.0788,0.384,179.629,4.0,,Lauv,"C 2015 Lauv, P 2015 Lauv",7592 +7593,spotify:track:6IRdLKIyS4p7XNiP8r6rsx,all the good girls go to hell,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,spotify:album:0S0KGZnfBGSIssfF54WSJh,"WHEN WE ALL FALL ASLEEP, WHERE DO WE GO?",spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,2019-03-29,https://i.scdn.co/image/ab67616d0000b27350a3147b4edd7701a876c6ce,1,5,168839,https://p.scdn.co/mp3-preview/8182ac34d71d81155f8748f4d6f9147ebcd55ac9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USUM71900766,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.726,0.444,8.0,-8.922,0.0,0.372,0.283,0.143,0.177,0.569,185.044,4.0,,Darkroom/Interscope Records,"C © 2019 Darkroom/Interscope Records, P ℗ 2019 Darkroom/Interscope Records",7593 +7594,spotify:track:0HihhK0L7qhDuTZq1r2RTf,Summer Love,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:5zkK9olctrQZL4mu363row,Greatest Hits,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,2006-07-15,https://i.scdn.co/image/ab67616d0000b27352568cf788a239ff702cc4b3,1,8,215586,https://p.scdn.co/mp3-preview/3b16c50fd513da096d8a01607f3441d06445963c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00621330,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.448,0.82,5.0,-6.91,1.0,0.033,0.2,0.00387,0.138,0.613,130.857,4.0,,Bloodlines,"C 2006 Bloodlines, P 2006 Bloodlines",7594 +7595,spotify:track:3k79jB4aGmMDUQzEwa46Rz,vampire,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,spotify:album:5kqfR7EuGbyp8x27Pr1kY9,vampire,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,2023-06-30,https://i.scdn.co/image/ab67616d0000b2731e5e75dc1d878a0007cb6525,1,1,219724,https://p.scdn.co/mp3-preview/8b46a1ab83d60d36098bbe142b07536dc3788f2b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,18,USUG12304091,spotify:user:bradnumber1,2023-07-05T22:55:39Z,pop,0.484,0.53,5.0,-5.82,1.0,0.054,0.148,0.0,0.283,0.319,136.874,4.0,,Olivia Rodrigo PS,"C © 2023 Olivia Rodrigo, under exclusive license to Geffen Records, P ℗ 2023 Olivia Rodrigo, under exclusive license to Geffen Records",7595 +7596,spotify:track:4W8kRoExIlgYJLahiHY2No,Keep Your Hands Off My Girl,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:02abrECBsxdR3Ywjy1hCuW,Greatest Hits,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2010-11-12,https://i.scdn.co/image/ab67616d0000b273aabb9557204ead9f05752743,1,14,203946,https://p.scdn.co/mp3-preview/f6e41b1c98161fcb107d26213ff20dc9404705a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USSM10605926,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.598,0.951,1.0,-3.7,1.0,0.138,0.0145,0.0,0.586,0.638,137.917,4.0,,Epic/Legacy,"P (P) 2010 Epic Records, a division of Sony Music Entertainment",7596 +7597,spotify:track:4DhbiXEuV7JxSR0wuqetTa,Free Ride,spotify:artist:7j9PMegEgVN1fNp8NZXNCI,The Edgar Winter Group,spotify:album:4CNEJF5wYGqhOYEKq8ciu8,They Only Come Out At Night,spotify:artist:3UNrI3SG1l2ezKikxQ2zuk,Edgar Winter,1972-11-30,https://i.scdn.co/image/ab67616d0000b27309a01850dfed5fdc478151b3,1,4,187173,https://p.scdn.co/mp3-preview/9d29144b7b8f94e0495521ba13856373ea597905?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM17200422,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,electric blues,folk rock,hard rock,mellow gold,soft rock",0.674,0.686,2.0,-11.927,1.0,0.0597,0.29,0.00322,0.189,0.814,124.204,4.0,,Epic,P (P) 1972 SONY BMG MUSIC ENTERTAINMENT,7597 +7598,spotify:track:3vGXU8AxtVrlHrmiIM9qRN,Wedding Song - There Is Love,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,spotify:album:0acEaxeIRySaTWEQpQdHcq,"I Couldn't Live Without Your Love: Hits, Classics & More",spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,2017-12-01,https://i.scdn.co/image/ab67616d0000b27316bd946b8aba6a6409e0753e,1,25,195026,,False,0,CH8497200010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,folk rock,merseybeat,rock-and-roll,rockabilly",0.427,0.458,0.0,-6.775,1.0,0.0267,0.726,6.13e-06,0.119,0.252,146.842,4.0,,BMG Rights Management (UK) Limited,"C © 2017 BMG Rights Management (UK) Limited, P ℗ 2017 BMG Rights Management (UK) Limited",7598 +7599,spotify:track:2v1aJMvSWa5KLawWPDU6Pv,Strong,spotify:artist:3Bd1cgCjtCI32PYvDC3ynO,London Grammar,spotify:album:6oL2G6TgAo3mq4O2i6n2JI,If You Wait (Deluxe),spotify:artist:3Bd1cgCjtCI32PYvDC3ynO,London Grammar,2013-01-01,https://i.scdn.co/image/ab67616d0000b273b57bc7b2d3c40cd06e8f0402,1,6,274806,https://p.scdn.co/mp3-preview/f5de63d1551da99890217015cd1b8ab74494320f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBCEN1300608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,nottingham indie",0.486,0.419,10.0,-10.465,1.0,0.0355,0.729,3.04e-05,0.077,0.251,76.082,4.0,,Dew Process,"C © 2013 Metal & Dust Recordings Ltd, under exclusive license by Dew Process/Universal Music Australia Pty Ltd, P ℗ 2013 Metal & Dust Recordings Ltd, under exclusive license by Dew Process/Universal Music Australia Pty Ltd",7599 +7600,spotify:track:7IYrdMp0MZZ997uCsSYRTH,Better Than Me,spotify:artist:6BMhCQJYHxxKAeqYS1p5rY,Hinder,spotify:album:16k9BtslYWgs4H0opBExyJ,Extreme Behavior,spotify:artist:6BMhCQJYHxxKAeqYS1p5rY,Hinder,2005-01-01,https://i.scdn.co/image/ab67616d0000b273152aefe609e8efd5ca086c81,1,6,223533,https://p.scdn.co/mp3-preview/de13e1f793c96a03c3fd3b53339b1100c45d7bbb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70503176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge",0.449,0.682,2.0,-5.295,0.0,0.029,0.205,0.0,0.175,0.254,139.924,4.0,,Universal Records,"C © 2005 Universal Records, a Division of UMG Recordings Inc and Disturbing Tha Peace Records Inc., P ℗ 2005 Universal Records, a Division of UMG Recordings Inc and Disturbing Tha Peace Records Inc.",7600 +7601,spotify:track:1vYXt7VSjH9JIM5oRRo7vA,Dance The Night - From Barbie The Album,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:5cH7FqB7JD5q1tJXJ7FHYu,Dance The Night (From Barbie The Album),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2023-05-25,https://i.scdn.co/image/ab67616d0000b2737dd3ba455ee3390cb55b0192,1,1,176579,https://p.scdn.co/mp3-preview/acaea048f50a3b30ca24b348c84a6047373baabb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USAT22305457,spotify:user:bradnumber1,2023-05-28T04:12:13Z,"dance pop,pop,uk pop",0.671,0.845,11.0,-4.93,0.0,0.048,0.0207,0.0,0.329,0.775,110.056,4.0,,Atlantic Records,"C © 2023 Atlantic Recording Corporation, Warner Bros. Entertainment, Inc. & Mattel, Inc., P ℗ 2023 Atlantic Recording Corporation, Warner Bros. Entertainment, Inc. & Mattel, Inc.",7601 +7602,spotify:track:3k0UuzWfCBrcxndlYcRuL8,Not Afraid,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:2sH5LthgBQ95vHzgPBB1Wl,Recovery,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2010-06-18,https://i.scdn.co/image/ab67616d0000b2737b47a8c294c0fbda8bff3c8c,1,7,248133,https://p.scdn.co/mp3-preview/15f2469701b4c8dcf66836a6a61826d6b34ed351?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USUM71015449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.852,0.955,0.0,-1.206,0.0,0.275,0.537,0.0,0.356,0.65,114.64,5.0,,Aftermath,"C © 2010 Aftermath Records, P ℗ 2010 Aftermath Records",7602 +7603,spotify:track:6bZlab0NrNteVppLu9C2Zy,Ramblin' Rose,spotify:artist:7v4imS0moSyGdXyLgVTIV7,Nat King Cole,spotify:album:0E6nzXbvyyVzZls1TtEmRP,Ramblin Rose,spotify:artist:7v4imS0moSyGdXyLgVTIV7,Nat King Cole,1962,https://i.scdn.co/image/ab67616d0000b273539dc2d465fe4f84684c0676,1,1,167853,https://p.scdn.co/mp3-preview/69c9aac5553f9adfeb9ca566fa0736d27bbe0e9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USCA28700065,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,soul,swing,vocal jazz",0.431,0.379,9.0,-8.615,1.0,0.0267,0.794,0.0,0.303,0.31,97.061,4.0,,Capitol Records,"C © 2008 Capitol Records, LLC, P ℗ 2008 Capitol Records, LLC",7603 +7604,spotify:track:6DCZcSspjsKoFjzjrWoCdn,God's Plan,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,spotify:album:1ATL5GLyefJaxhQzSPVrLX,Scorpion,spotify:artist:3TVXtAsR1Inumwj472S9r4,Drake,2018-06-29,https://i.scdn.co/image/ab67616d0000b273f907de96b9a4fbc04accc0d5,1,5,198973,https://p.scdn.co/mp3-preview/a90a7912992fdfd494c99027c31eb9002b592ed3?cid=9950ac751e34487dbbe027c4fd7f8e99,True,81,USCM51800004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian hip hop,canadian pop,hip hop,pop rap,rap",0.754,0.449,7.0,-9.211,1.0,0.109,0.0332,8.29e-05,0.552,0.357,77.169,4.0,,Cash Money/Drake LP6,"C © 2018 Young Money/Cash Money Records, P ℗ 2018 Young Money/Cash Money Records",7604 +7605,spotify:track:3QqcE0U4RE3MQbmJfD1tsO,Do The Bartman,spotify:artist:7r0Otd9dEStSVIxJ02ml5a,The Simpsons,spotify:album:3VyAp9RxWzbjiwg47aKmk5,The Simpsons Sing The Blues,spotify:artist:7r0Otd9dEStSVIxJ02ml5a,The Simpsons,1990-01-01,https://i.scdn.co/image/ab67616d0000b2737ffda34fc8861c57c146fe7e,1,1,310706,https://p.scdn.co/mp3-preview/bc386773ba6c2e2ab1b525198ef6793607fd6ed3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10110129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.895,0.535,1.0,-11.131,1.0,0.171,0.0813,0.0,0.25,0.717,103.733,4.0,,Geffen*,"C © 1990 Geffen Records Inc., P ℗ 1990 Geffen Records Inc.",7605 +7606,spotify:track:5Km6e8PWkwEPVKlifElIDB,Start Again,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,spotify:album:6AZP6Qm8YD7hUALhn0pd6O,Start Again,spotify:artist:1rw8ZTLnDHd74TWDDukjVi,Conrad Sewell,2015-03-10,https://i.scdn.co/image/ab67616d0000b273a683e6f445894f09d5376741,1,1,217974,https://p.scdn.co/mp3-preview/e91d77cb2c7f04b6d2f69bc0848207013d59a83d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,QMCE31400157,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.553,0.343,10.0,-9.466,1.0,0.0407,0.68,3.5e-06,0.122,0.216,66.543,3.0,,300 Entertainment,"C © 2015 300 Entertainment for the United States and 300 Entertainment under exclusive license to WEA International, Inc. for the world excluding the United States., P ℗ 2015 300 Entertainment for the United States and 300 Entertainment under exclusive license to WEA International, Inc. for the world excluding the United States.",7606 +7607,spotify:track:5i66xrvSh1MjjyDd6zcwgj,Umbrella,"spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:3nFkdlSjzX9mRTtwJOzDYB","Rihanna, JAY-Z",spotify:album:1YhbfKnjrFgnYyWz6cn9mN,Good Girl Gone Bad: Reloaded,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2007-03-31,https://i.scdn.co/image/ab67616d0000b273c10fafad6a659f2802b32421,1,1,275986,https://p.scdn.co/mp3-preview/8b84a8e20cc948c08e73abbb74223304508833d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USUM70736771,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary,east coast hip hop,gangster rap,hip hop,pop rap,rap",0.583,0.827,1.0,-4.566,1.0,0.142,0.0101,0.0,0.0522,0.552,173.99,4.0,,Def Jam Recordings,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",7607 +7608,spotify:track:1lmI6RUBH3b5sxI0PYBk4u,Our Way Home,spotify:artist:7wlWWs08zvaXAvAxqAlTQ3,Optacure,spotify:album:6brgxa6HqdqoTkyXjeazUb,Our Way Home,spotify:artist:7wlWWs08zvaXAvAxqAlTQ3,Optacure,2021-04-26,https://i.scdn.co/image/ab67616d0000b2735cfbc987b77a9ed3bf9b7b80,1,1,236084,https://p.scdn.co/mp3-preview/fd4c749ff349f1e241860d9a228e3440a4c23217?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,TCAFN2136129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.64,0.676,9.0,-11.096,1.0,0.0418,0.16,0.122,0.0867,0.562,119.993,4.0,,Edmund Gemelo Jr,"C 2021 Edmund Gemelo Jr, P 2021 Edmund Gemelo Jr",7608 +7609,spotify:track:7x8dCjCr0x6x2lXKujYD34,The Pretender,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:3ilXDEG0xiajK8AbqboeJz,"Echoes, Silence, Patience & Grace",spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2007-09-25,https://i.scdn.co/image/ab67616d0000b27383e260c313dc1ff1f17909cf,1,1,269373,https://p.scdn.co/mp3-preview/23a6ace3679431062d5e6f0bc60a514f3a26da4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USRW30700007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.433,0.959,9.0,-4.04,1.0,0.0431,0.000917,0.0,0.028,0.365,172.984,4.0,,RCA Records Label,"P (P) 2007 Roswell Records, Inc.",7609 +7610,spotify:track:7FS541dJh3iQAEXEZoDhE6,Twistin' the Night Away,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,spotify:album:406RCIvK6uh49XviqAI6kY,Twistin' the Night Away,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,1962-04,https://i.scdn.co/image/ab67616d0000b273b3d6f99b4783feeb98b2e7d6,1,1,159853,https://p.scdn.co/mp3-preview/637c732e1fc52648d2585c1cca6a42eb0983e851?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC16107214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,soul,vocal jazz",0.458,0.801,9.0,-7.83,1.0,0.0565,0.691,0.0,0.328,0.93,160.547,4.0,,RCA/Legacy,"P Originally released 1962. All rights reserved by RCA Records, a division of Sony Music Entertainment",7610 +7611,spotify:track:1MUKpAMAj9z7P5RZfHROY3,Thank God I'm A Country Boy,spotify:artist:5eI4MKl2BlybuVrLJGhEMT,Hampton The Hampster,spotify:album:5AqElYq4JgyDxWTx88v2SO,Hampsterdance Album,spotify:artist:5eI4MKl2BlybuVrLJGhEMT,Hampton The Hampster,2000-10-24,https://i.scdn.co/image/ab67616d0000b273fb1c612fa10dc61ea06941f1,1,4,162786,https://p.scdn.co/mp3-preview/b900b53be39877d44243936510e5fe0ac2e9859c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USKO10403385,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.788,0.958,2.0,-8.892,1.0,0.0427,0.0753,0.815,0.113,0.889,126.977,4.0,,Koch Records,"C 2000 KOCH RECORDS, P 2000 KOCH RECORDS",7611 +7612,spotify:track:3ncplTQUYBcxi2cCTiqvKC,Sink the Bismark,spotify:artist:1bBZcz4jP7CoPlqpCFh4gz,Johnny Horton,spotify:album:7G7QvJcUOGbzwnOpxLOVRp,American Originals,spotify:artist:1bBZcz4jP7CoPlqpCFh4gz,Johnny Horton,1989-06-13,https://i.scdn.co/image/ab67616d0000b273b2c387be0df5af51992044ab,1,3,194400,https://p.scdn.co/mp3-preview/51564703d9d77bc474b20c7f818a480510a16783?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USSM10010120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,cowboy western",0.679,0.565,3.0,-12.405,1.0,0.0896,0.68,2.64e-05,0.0509,0.965,115.432,4.0,,Columbia Nashville,P (P) 1989 Sony Music Entertainment Inc.,7612 +7613,spotify:track:3h9mCACYWP4iDVFEBhyyYC,"Doin' The Do - 7"" Radio Mix",spotify:artist:5hMCIlD2CIuOBcWPHuQXKJ,Betty Boo,spotify:album:6945nocZM0gGU8U9IG0gzp,Boomania,spotify:artist:5hMCIlD2CIuOBcWPHuQXKJ,Betty Boo,1990-04-02,https://i.scdn.co/image/ab67616d0000b2734d8603cae9ca7eefa738af91,1,13,222253,https://p.scdn.co/mp3-preview/7cf070f01f209fadd9995d6a113de80663096c41?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBARL0700231,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hip house,0.801,0.961,10.0,-7.027,0.0,0.0604,0.00765,7.7e-05,0.0639,0.909,120.378,4.0,,Sony BMG Music UK,P (P) 1990 Rhythm King,7613 +7614,spotify:track:1sRwgaEIopRYXkN1ziooVu,Some Kind of Bliss - Radio Edit,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:4mlKMSVduuGMKcmqOL8dGW,Impossible Princess,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,1997-10-22,https://i.scdn.co/image/ab67616d0000b273de75ebe01922f7b904f44968,1,3,214013,https://p.scdn.co/mp3-preview/22cd5335bac2428b7c7671e0fe870738d1d1d5eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBARL9700339,spotify:user:bradnumber1,2021-11-20T11:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.515,0.827,0.0,-4.746,1.0,0.0267,0.00116,5.25e-05,0.194,0.636,105.035,4.0,,WM Australia,"C © 1997 Mushroom Records, P ℗ 1997 Mushroom Records",7614 +7615,spotify:track:01IvgQWyfz8bLjBie5o2Oq,UFO (Radio Edit),spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,spotify:album:317pVYI9QzLakSjZM0E4aT,UFO,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,2007,https://i.scdn.co/image/ab67616d0000b273a75c0912b92c5e688e5c4584,1,1,226440,https://p.scdn.co/mp3-preview/a887a995270259742f64ebc07e11ac62568bddb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUQK00700016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,funktronica",0.593,0.895,4.0,-3.909,0.0,0.029,0.0166,0.00253,0.298,0.815,131.961,4.0,,Whack Records,"C 2007 Whack Records, P 2007 Whack Records",7615 +7616,spotify:track:4H1ZiD0aytFHoOiosVmT1w,DONTTRUSTME,spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,spotify:album:10xgy5KkSpP3prnygQmFoN,WANT (Deluxe),spotify:artist:0FWzNDaEu9jdgcYTbcOa4F,3OH!3,2009-01-16,https://i.scdn.co/image/ab67616d0000b273bc12db3758aeb3b198fb362d,1,3,192573,https://p.scdn.co/mp3-preview/a846deda1f57f06c1963832ec77c3b92c7c0516a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,51,USAT20802554,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropowerpop,pop punk,pop rap,post-teen pop",0.791,0.713,5.0,-3.742,0.0,0.254,0.0163,0.0,0.189,0.514,130.012,4.0,,Rhino Atlantic,"C © 2008 Photo Finish Records, LLC. All Rights Reserved. Manufactured and Distributed by Atlantic Recording Corporation, a Warner Music Group Company, P ℗ 2008 Photo Finish Records, LLC. All Rights Reserved. Manufactured and Distributed by Atlantic Recording Corporation, a Warner Music Group Company",7616 +7617,spotify:track:5vOWdyk23iqRryEmbNCrCp,Side Effects,"spotify:artist:4EPJlUEBy49EX1wuFOvtjK, spotify:artist:26OmQHradZrF0CS7DrgWDH","Becky Hill, Lewis Thompson",spotify:album:2LgiXusyrxXV3OqXJLK13j,Side Effects,"spotify:artist:4EPJlUEBy49EX1wuFOvtjK, spotify:artist:26OmQHradZrF0CS7DrgWDH","Becky Hill, Lewis Thompson",2023-05-12,https://i.scdn.co/image/ab67616d0000b2738791409e905bbe831385ba6a,1,1,153742,https://p.scdn.co/mp3-preview/45fe67e032874229615ac5dec9608e30ac8efd62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBUM72302579,spotify:user:bradnumber1,2023-10-24T09:31:07Z,"pop dance,pop house,uk dance,uk pop,uk dance",0.758,0.823,0.0,-4.2,0.0,0.0565,0.0442,0.0,0.0772,0.787,120.972,4.0,,Polydor Records,"C © 2023 Universal Music Operations Limited, P ℗ 2023 Universal Music Operations Limited",7617 +7618,spotify:track:55NBt1WuvShjsGE1grbi2v,I Want Your Love,spotify:artist:7oIgcNOdEHNwP8NFl9tYWs,Transvision Vamp,spotify:album:5QAE6zeYz3Z7O83UdPOJcX,Pop Art,spotify:artist:7oIgcNOdEHNwP8NFl9tYWs,Transvision Vamp,1988-01-01,https://i.scdn.co/image/ab67616d0000b273019667162b50032969b8e072,1,2,209906,https://p.scdn.co/mp3-preview/7ee878fbb26c5091d43bd292cbb8695b6c14a433?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBBBY0080015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop",0.465,0.821,4.0,-11.115,1.0,0.0487,0.0133,0.00855,0.447,0.697,149.824,4.0,,Universal-Island Records Ltd.,"C © 1988 MCA Records Ltd., P ℗ 1988 MCA Records Ltd.",7618 +7619,spotify:track:1YpNDG1DnNadlZzR8kAXqF,Pink Cadillac,spotify:artist:5tTsrGPwQRWUsHR2Xf7Ke9,Natalie Cole,spotify:album:7b93FRR4chv1pMbtuAKyNt,Everlasting,spotify:artist:5tTsrGPwQRWUsHR2Xf7Ke9,Natalie Cole,1987-06-14,https://i.scdn.co/image/ab67616d0000b27336099b2ea732bc3af82caaf7,1,6,268666,https://p.scdn.co/mp3-preview/0afa82376b2783aac0702ac6afc7a1fd5c942c0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE19901239,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,disco,quiet storm,soft rock,soul,vocal jazz",0.901,0.576,5.0,-10.314,0.0,0.0566,0.41,9.72e-05,0.0447,0.959,124.995,4.0,,Craft Recordings,"C 1991 Craft Recordings, a division of Concord Music Group, Inc., P 1991 Craft Recordings, a division of Concord Music Group, Inc.",7619 +7620,spotify:track:3skn2lauGk7Dx6bVIt5DVj,Starlight,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,spotify:album:0lw68yx3MhKflWFqCsGkIs,Black Holes and Revelations,spotify:artist:12Chz98pHFMPJEknJQMWvI,Muse,2006-06-19,https://i.scdn.co/image/ab67616d0000b27328933b808bfb4cbbd0385400,1,2,240213,https://p.scdn.co/mp3-preview/f4dc0eed34079ebc130dbd81826c88006978f30e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBAHT0500592,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern rock,permanent wave,rock",0.55,0.874,4.0,-4.046,1.0,0.0321,0.000436,1.02e-05,0.206,0.318,121.61,4.0,,Warner Records,"C © 2006 A&E Records Limited, P ℗ 2006 A&E Records Limited",7620 +7621,spotify:track:5OLMMQ7k25SvDV7taKAYnb,Alive,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:0kgt4qRi4nH6refkbZiCr6,Dami Im,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2013-11-15,https://i.scdn.co/image/ab67616d0000b273452b118417deb3a339339d2c,1,1,236213,https://p.scdn.co/mp3-preview/f282cd986f01c1190833b1670e5e5de981a8b06f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUBM01300561,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.495,0.828,8.0,-2.986,1.0,0.0581,0.0596,0.0,0.208,0.382,150.212,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,7621 +7622,spotify:track:1dNpILhORN3txo1mPIAMpc,Breakout,spotify:artist:4phr5rAgWhcZtWJu8w8lKv,Swing Out Sister,spotify:album:4xb5h9HfsJ5abpnv4yDRRC,It's Better To Travel,spotify:artist:4phr5rAgWhcZtWJu8w8lKv,Swing Out Sister,1987-01-01,https://i.scdn.co/image/ab67616d0000b2730f17245edf6bbc9bda68568d,1,1,226453,https://p.scdn.co/mp3-preview/1a91b48387e0714fac456a915eb142d71b492ec9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088690112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,sophisti-pop",0.704,0.557,4.0,-12.813,1.0,0.0316,0.175,0.00231,0.0631,0.777,113.194,4.0,,Mercury,"C © 1987 Mercury Records Limited, P ℗ 1987 Mercury Records Limited",7622 +7623,spotify:track:3BzQ4YUYUAIF09bQeKfXVt,Ma Belle Amie - US Version,spotify:artist:0uBrmlGaTI6nSg4JpVC1VR,Tee-Set,spotify:album:1w8NTmn2OP6z5liXLqf2Ac,Ma Belle Amie,spotify:artist:0uBrmlGaTI6nSg4JpVC1VR,Tee-Set,2013-12-16,https://i.scdn.co/image/ab67616d0000b2739640711648ca40f45d976bd3,1,1,194856,https://p.scdn.co/mp3-preview/792acc8b03c5202a8b03c8b36617504ed79ac014?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLL6R1602577,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nederpop,0.425,0.503,7.0,-10.973,1.0,0.0458,0.1,0.000749,0.169,0.701,86.562,4.0,,Pseudonym,"C 2013 Pseudonym, P 2013 Pseudonym",7623 +7624,spotify:track:4Sqc0kPuZpfI0T2TZBu8JT,Grace Kelly,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,spotify:album:1lGwdsq4OtYZfIIoi4p79E,Life In Cartoon Motion,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,2007-01-01,https://i.scdn.co/image/ab67616d0000b273eb0b41d40b300163767da4b3,1,1,187733,https://p.scdn.co/mp3-preview/2dfc3bfee24162d5caa94c0056b78a022b3dc07c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC7R0600006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electropop,0.676,0.824,0.0,-5.752,1.0,0.0449,0.0271,0.0152,0.363,0.696,122.221,4.0,,Universal Music Group,"C © 2007 Casablanca Music, LLC, P ℗ 2007 Casablanca Music, LLC",7624 +7625,spotify:track:1Z044RdmytQDD8571vd4fl,Things Can Only Get Better,spotify:artist:2dCQKsTjB762AhtIACbAQA,D:Ream,spotify:album:2WEz05B90H3qjP6dnTQi4v,On Vol.1,spotify:artist:2dCQKsTjB762AhtIACbAQA,D:Ream,1993,https://i.scdn.co/image/ab67616d0000b273bf5cb1e578ca3ce07487c444,1,9,263360,https://p.scdn.co/mp3-preview/4651c8bff80b7886f00e941a23f09858dd6d485b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHS0500255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,new wave pop",0.679,0.854,10.0,-7.613,0.0,0.0326,0.157,3.78e-06,0.201,0.106,125.209,4.0,,Rhino,"C 1993 Warner Music UK Ltd, P 1993 Warner Musi UK Ltd",7625 +7626,spotify:track:2dThEJP9S344qzNhePcSzj,I'm Gonna Miss You,spotify:artist:3vRclCt9VnNhYIxFMQCxuM,Milli Vanilli,spotify:album:6s8bfXrXEqaFFmAi02m7k4,All Or Nothing,spotify:artist:3vRclCt9VnNhYIxFMQCxuM,Milli Vanilli,1988-11-14,https://i.scdn.co/image/ab67616d0000b27330951af6ae2cced0a3defd49,1,5,238866,https://p.scdn.co/mp3-preview/e6a30f543220937fc2e38c81fe4697d94253114a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,DED168800007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,new jack swing,new wave pop",0.708,0.27,9.0,-18.52,1.0,0.0659,0.133,0.00662,0.0982,0.752,75.644,4.0,,Hansa Local,P 1988 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,7626 +7627,spotify:track:0X7TZKdFNIAlEMPR6V5e6S,Escapee,spotify:artist:60eT7q88iLWKnuSXed1AGr,Architecture In Helsinki,spotify:album:6MzPmBHghBU85eH0XHNmT6,Moment Bends,spotify:artist:60eT7q88iLWKnuSXed1AGr,Architecture In Helsinki,2011-01-01,https://i.scdn.co/image/ab67616d0000b27360a153684ccacd989ccd2915,1,2,177709,https://p.scdn.co/mp3-preview/43d250a5143010936ee91673dfb873028990bc20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71100361,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian indie,indietronica",0.673,0.738,1.0,-4.466,1.0,0.0282,0.0416,0.0,0.132,0.671,110.962,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Architecture In Helsinki, under exclusive license to Modular Recordings, P ℗ 2011 Architecture In Helsinki, under exclusive license to Modular Recordings",7627 +7628,spotify:track:2GsteFRbq6UyW0WfUWgQtX,"Fallin' - Original Song from the TV Series ""The Secret Daughter""",spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:6SQ44FAH1353fO4iSWyp8F,"Fallin' (Original Song from the TV Series ""The Secret Daughter"")",spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2017-06-09,https://i.scdn.co/image/ab67616d0000b273831c9a656bb6789d8f0b7d67,1,1,187574,https://p.scdn.co/mp3-preview/a0829f94dee37744229243fb01c1dd37623fff02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUBM01700549,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.729,0.474,9.0,-5.478,1.0,0.0321,0.176,0.0,0.145,0.351,124.972,4.0,,Sony Music Entertainment,P (P) 2017 Sony Music Entertainment Australia Pty Ltd / Screentime Pty Limited / Seven Network (Operations) Limited,7628 +7629,spotify:track:5j1zOOvkxxe4uZZ2Jgl8r4,Should've Known Better,"spotify:artist:0grdhNhiRLFBaFVyybqsj6, spotify:artist:3g0V90wvKDRsZY8aOZZVic","Richard Marx, David Cole",spotify:album:3C2cO3wo4f2bLzOpFypgmZ,Richard Marx,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,1987-01-01,https://i.scdn.co/image/ab67616d0000b273b661bb5a12e524bd407208f0,1,1,250240,https://p.scdn.co/mp3-preview/3151b94cc84c3d75d0ab9160d83706446ece2f3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USEM38700110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.548,0.704,8.0,-13.061,1.0,0.0402,0.0751,0.00051,0.0463,0.682,169.119,4.0,,Capitol Records,"C © 1987 Capitol Records, LLC, P ℗ 1987 Capitol Records, LLC",7629 +7630,spotify:track:4E5tZYJujvISFewOvXN3Ph,Delta Dawn,spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,spotify:album:2CGgJ9PpKXTDCEvJ6qS9AV,Helen Reddy's Greatest Hits (And More),spotify:artist:0Sq7oGrYEe0BDmb13wgjOO,Helen Reddy,1987-01-01,https://i.scdn.co/image/ab67616d0000b273823351ac09824d25f3b09db8,1,4,191093,https://p.scdn.co/mp3-preview/72d0b8c7415e258fda61e3f33cd63df8d323cf46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USCA28700187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,mellow gold,soft rock",0.566,0.659,7.0,-11.976,1.0,0.0893,0.582,0.0,0.286,0.824,78.729,4.0,,Capitol Records,"C © 1987 Capitol Records, LLC, P This Compilation ℗ 1987 Capitol Records, LLC",7630 +7631,spotify:track:7HC3sppue0re7HPfo5zscF,You Make Me,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:02h9kO2oLKnLtycgbElKsw,True,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d20bacc84d203cc330a5df75,1,2,233346,https://p.scdn.co/mp3-preview/11d5190662801a8e51c19eda3d2ecc27de6f673c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CH3131340083,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.586,0.727,6.0,-4.799,1.0,0.039,0.00247,0.0107,0.152,0.496,124.99,4.0,,Universal Music Group,"C © 2013 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2013 Avicii Music AB, under exclusive license to Universal Music AB",7631 +7632,spotify:track:2Bfk3vFoMmbAUqpJbA3N06,Time Is Tight,spotify:artist:2vDV0T8sxx2ENnKXds75e5,Booker T. & the M.G.'s,spotify:album:1992cblEpavtTb6JfPVddi,Soul Six Pack,spotify:artist:2vDV0T8sxx2ENnKXds75e5,Booker T. & the M.G.'s,2009-01-01,https://i.scdn.co/image/ab67616d0000b2737170551f4604014fdf896c05,1,1,194920,https://p.scdn.co/mp3-preview/25c394e90f58374b317795510abe1bbd9b6375da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USFI86900094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,classic soul,instrumental funk,instrumental soul,memphis soul,soul,southern soul,traditional blues",0.778,0.524,9.0,-11.775,0.0,0.0424,0.0808,0.9,0.108,0.96,134.561,4.0,,Stax,"C © 2009 Concord Music Group Inc., P ℗ 2009 Concord Music Group Inc.",7632 +7633,spotify:track:3c6afiysmB7OnxQzzSqRfD,So Into You,spotify:artist:0le01dl1WllSHhjEXRl4in,Tamia,spotify:album:3PFEg7sWLEMuS3nyTIguEV,Tamia,spotify:artist:0le01dl1WllSHhjEXRl4in,Tamia,1998,https://i.scdn.co/image/ab67616d0000b273d3f287e73f69eb431ee17f50,1,2,261866,https://p.scdn.co/mp3-preview/c820b6b2a81e9b3d25bd417961af379ef8024f35?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USWB11002076,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,contemporary r&b,hip pop,r&b,urban contemporary",0.656,0.479,7.0,-7.055,0.0,0.0348,0.0665,0.00272,0.168,0.708,184.374,4.0,,Rhino/Warner Records,"C © 1998 Qwest Records, a label of Warner Records Inc., P ℗ 1998 Qwest Records, a label of Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",7633 +7634,spotify:track:7GaFYUqP2WdR4KTPk7cXoP,Let Me Love You,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,spotify:album:0aihmuRLi1gBkxk4mbNfcv,Turning Point,spotify:artist:20s0P9QLxGqKuCsGwFsp7w,Mario,2004-03-15,https://i.scdn.co/image/ab67616d0000b273ba8db944ef3e2846ba9efa57,1,2,249120,https://p.scdn.co/mp3-preview/b89e675435ad7a4789f7eb2a969567b7bf5e2a02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USJAY0400348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,southern hip hop,urban contemporary",0.686,0.588,7.0,-8.343,0.0,0.0554,0.178,0.0,0.0954,0.617,94.519,4.0,,J Records,"P (P) 2004 J Records, a unit of BMG",7634 +7635,spotify:track:2zJZwWF7BTGIIvrAlgzJEx,Whatcha Say,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:773TVtjVxXvD6DFHsWFJGN,Jason Derulo (Deluxe Audio),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2010-03-01,https://i.scdn.co/image/ab67616d0000b2738740e6343acb0f12c075c541,1,1,221253,https://p.scdn.co/mp3-preview/c38e8cf655b1b4ffe8d31d340dc9675f91e43f3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USWB10901504,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.615,0.711,11.0,-5.507,1.0,0.078,0.0444,0.0,0.145,0.711,144.034,4.0,,Beluga Heights/Warner Records,"C © 2010 Warner Records Inc., P ℗ 2010 Warner Records Inc.",7635 +7636,spotify:track:26eccs3bbw6DMekFwZbdL2,You Belong With Me,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:6mhqCOSN7y93aydjeBatWb,Fearless (Platinum Edition),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2008-11-11,https://i.scdn.co/image/ab67616d0000b27323772ebfb18de81c57186964,1,12,231146,https://p.scdn.co/mp3-preview/dc7fa6f0972569033990723847e6b7ae88c91c87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY0803328,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.687,0.771,6.0,-4.424,1.0,0.0384,0.164,2.46e-05,0.112,0.445,129.964,4.0,,Universal Music Group,"C © 2009 Big Machine Records, LLC, P ℗ 2009 Big Machine Records, LLC",7636 +7637,spotify:track:5JSVa5i6lFPoyOzK4gj0Ox,No Shame,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:2i4RHN9tSRQiQ8pcaaD2Gj,No Shame,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2020-02-05,https://i.scdn.co/image/ab67616d0000b273020192ddcc9ad5baafa6c18a,1,1,190893,https://p.scdn.co/mp3-preview/2c1043170ea0501609ce0c06dd722f3a52e24a91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG12000281,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.576,0.815,7.0,-3.125,1.0,0.0361,0.0186,2.07e-06,0.158,0.445,90.972,4.0,,5 Seconds of Summer/Interscope Records,"C © 2020 5 Seconds of Summer, under exclusive license to Interscope Records, P ℗ 2020 5 Seconds of Summer, under exclusive license to Interscope Records",7637 +7638,spotify:track:4uBzDO9wmPEXBKhfwAlMFJ,No Surprises,spotify:artist:4Z8W4fKeB5YxbusRsdQVPb,Radiohead,spotify:album:5bNn3KPcrlgLmhRXj4d2EX,OK Computer (Collector's Edition),spotify:artist:4Z8W4fKeB5YxbusRsdQVPb,Radiohead,1997-06-17,https://i.scdn.co/image/ab67616d0000b27332118d6d924fbd6d8b9bdaa0,1,10,228533,https://p.scdn.co/mp3-preview/969161ef645e3e89a4ee8a0274013dae480a9e2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE9700386,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art rock,melancholia,oxford indie,permanent wave,rock",0.268,0.406,5.0,-10.232,1.0,0.0276,0.0495,0.0066,0.113,0.104,76.432,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",7638 +7639,spotify:track:4AIE3h5R0OVykGpg3Vsyhf,On the Beach - 1998 Remaster,spotify:artist:4IdvJZeciaa37wYr2qBpjm,Cliff Richard & The Shadows,spotify:album:7iRIRyvhY1iwIIhwnhTVKS,1960s,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1998-10-19,https://i.scdn.co/image/ab67616d0000b2735ddad6b5b6a24ddade0851ef,1,9,153000,https://p.scdn.co/mp3-preview/1073e04d9d2fad4a36325ed481ccd0779fe5d141?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAYE9802438,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"merseybeat,rock-and-roll,rockabilly",0.548,0.813,2.0,-4.361,1.0,0.0505,0.127,0.0,0.125,0.942,157.504,4.0,,Parlophone UK,"C © 1998 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1998 Parlophone Records Ltd, a Warner Music Group Company",7639 +7640,spotify:track:1IONKlRfi7XzoAAluK7p7r,16,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,spotify:album:0zfs0RZJZxFhATFXskyNwq,2,spotify:artist:6ieVhWXtOmK6DO6dmX7Eko,Sneaky Sound System,2008-01-01,https://i.scdn.co/image/ab67616d0000b27377846519ad226469dd4489ec,1,2,222613,https://p.scdn.co/mp3-preview/510ebca8ea3f17605431a896cc18fadaaf4b1973?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUQK00800059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,funktronica",0.59,0.786,3.0,-3.126,0.0,0.0873,0.00338,2.06e-05,0.134,0.902,129.976,4.0,,Whack Records,"C 2008 Whack Records, P 2008 Whack Records",7640 +7641,spotify:track:0iyEaciAmtiv8xMkBg97Fy,Payphone,"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:137W8MRPWKqSmrBGDBFSop","Maroon 5, Wiz Khalifa",spotify:album:3MLzYyjkFBMPTgsso73O36,Payphone,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2012-01-01,https://i.scdn.co/image/ab67616d0000b27320839238d0f69d5486743905,1,1,231466,https://p.scdn.co/mp3-preview/3fa424cf3b47431d48b7a12368ce0eeb134fc03f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71203347,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap",0.745,0.756,4.0,-4.749,1.0,0.0429,0.021,0.0,0.356,0.495,109.999,4.0,,A&M / Octone Records,"C © 2012 A&M/Octone Records, P ℗ 2012 Interscope Records",7641 +7642,spotify:track:7FpoD2ZlcBSj05rEHSZoiB,Who Knew,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2gccJPbfddWfxNdvsRxL8J,I'm Not Dead,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2006-03-31,https://i.scdn.co/image/ab67616d0000b273f366eba0d5127af7a7acc52a,1,2,208493,https://p.scdn.co/mp3-preview/e187153d84f4b0876b2d1218ae890f8817b4c66f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF20600021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.691,0.749,9.0,-4.567,1.0,0.0274,0.00559,0.0,0.0762,0.473,140.014,4.0,,LaFace Records,"P (P) 2006 RCA/JIVE Label Group, a unit of Sony Music Entertainment",7642 +7643,spotify:track:6w40zjwprgA1s99VUxvuMx,That'll Be The Day - Decca Version,spotify:artist:3wYyutjgII8LJVVOLrGI0D,Buddy Holly,spotify:album:2YFdtCUiNcDIPUNdazX2Mg,The Great Buddy Holly,spotify:artist:3wYyutjgII8LJVVOLrGI0D,Buddy Holly,1982-01-01,https://i.scdn.co/image/ab67616d0000b27340cb8a3b605a8fc2d5ef9f4a,1,6,150000,https://p.scdn.co/mp3-preview/c06b9248cfaf93c5bb8862b29064ae3aa1feb364?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC15600442,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter",0.527,0.648,2.0,-7.469,1.0,0.0323,0.61,0.0,0.0804,0.882,114.775,4.0,,Geffen*,"C © 1982 Geffen Records, P This Compilation ℗ 1982 UMG Recordings, Inc.",7643 +7644,spotify:track:6iF4RgIjDvDqyW13PezSj3,Single Soon,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:6EejduBuRYb7rzJaD2YCqO,Single Soon,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2023-08-25,https://i.scdn.co/image/ab67616d0000b273fabd32dd9cefca8714c0ed41,1,1,171655,https://p.scdn.co/mp3-preview/8597b974df3383fd58091ee228ad4ec496a175e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUM72310919,spotify:user:bradnumber1,2024-01-14T19:58:46Z,"pop,post-teen pop",0.61,0.571,2.0,-5.649,1.0,0.0782,0.00863,0.0,0.131,0.747,105.01,4.0,,Interscope Records,"C © 2023 Interscope Records, P ℗ 2023 Interscope Records",7644 +7645,spotify:track:1YQWosTIljIvxAgHWTp7KP,Take Five,spotify:artist:4iRZAbYvBqnxrbs6K25aJ7,The Dave Brubeck Quartet,spotify:album:0nTTEAhCZsbbeplyDMIFuA,Time Out,spotify:artist:4iRZAbYvBqnxrbs6K25aJ7,The Dave Brubeck Quartet,1959-12-14,https://i.scdn.co/image/ab67616d0000b27300ace5d3c5bffc123ef1eb51,1,3,324133,https://p.scdn.co/mp3-preview/eb37af1ddf50ffaa177884c1a62fc669e69dd472?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM15900108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bebop,jazz,jazz quartet",0.454,0.26,8.0,-13.193,0.0,0.0401,0.539,0.00078,0.0675,0.598,174.322,5.0,,Columbia/Legacy,P Originally released 1959. All rights reserved by SONY BMG MUSIC ENTERTAINMENT,7645 +7646,spotify:track:5nNmj1cLH3r4aA4XDJ2bgY,September,spotify:artist:4QQgXkCYTt3BlENzhyNETg,"Earth\, Wind & Fire",spotify:album:6UixeNUSjrBnxeYV0ZuGHR,The Eternal Dance,spotify:artist:4QQgXkCYTt3BlENzhyNETg,"Earth\, Wind & Fire",1992-09-08,https://i.scdn.co/image/ab67616d0000b273af0d466d16c97b6385219d90,3,1,214826,https://p.scdn.co/mp3-preview/27390b5ac85b9dd997e8ae98a3356f0dd4a61f51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USSM17800253,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,jazz funk,motown,soul",0.697,0.809,9.0,-8.197,1.0,0.0302,0.114,0.000521,0.183,0.98,125.941,4.0,,Legacy/Columbia,P (P) 1992 Sony Music Entertainment Inc.,7646 +7647,spotify:track:3ErOTVi5IHKRP0KzdIuLk8,More Than A Woman,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:684Fi6YqIP9xU9JeboAgVM,Greatest,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1979-01-01,https://i.scdn.co/image/ab67616d0000b27340b421ae6b0a1206390cc52a,2,4,197213,https://p.scdn.co/mp3-preview/59dcf7ab85c7a89ce4b5adbf88f6a3aaeab79696?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057790033,spotify:user:bradnumber1,2021-08-08T09:27:38Z,"disco,mellow gold,soft rock",0.632,0.683,7.0,-6.434,1.0,0.0383,0.163,0.00013,0.847,0.701,105.955,4.0,,Universal Music Group,"C © 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",7647 +7648,spotify:track:5u1n1kITHCxxp8twBcZxWy,Holy (feat. Chance The Rapper),"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:1anyVhU62p31KFi8MEzkbf","Justin Bieber, Chance the Rapper",spotify:album:4hR7jjsPvRwwcHx8ntJSQS,Holy,"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:1anyVhU62p31KFi8MEzkbf","Justin Bieber, Chance the Rapper",2020-09-18,https://i.scdn.co/image/ab67616d0000b273572c68f79b356c21202e248c,1,1,212093,https://p.scdn.co/mp3-preview/f5f395935b92632ca49742786c32493475c0b493?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM72017013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,chicago rap,conscious hip hop,hip hop,pop rap,rap,trap",0.673,0.704,6.0,-8.056,1.0,0.36,0.196,0.0,0.0898,0.372,86.919,4.0,,RBMG/Def Jam,"C © 2020 The Island Def Jam Music Group, P ℗ 2020 Def Jam Recordings, a division of UMG Recordings, Inc.",7648 +7649,spotify:track:1Eck97uRMlprKOOJN9oO1E,Good Life (with G-Eazy & Kehlani),"spotify:artist:02kJSzxNuaWGqwubyUba0Z, spotify:artist:0cGUm45nv7Z6M6qdXYQGTX","G-Eazy, Kehlani",spotify:album:5PO2cqkBjAUOSHdxSDJOL4,Good Life (with G-Eazy & Kehlani),"spotify:artist:02kJSzxNuaWGqwubyUba0Z, spotify:artist:0cGUm45nv7Z6M6qdXYQGTX","G-Eazy, Kehlani",2017-03-16,https://i.scdn.co/image/ab67616d0000b273fcc36f9c0515e6e7faa2030b,1,1,225525,https://p.scdn.co/mp3-preview/875a492b2ac38341d4b7482fd1be5b019e9136db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT21700489,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie pop rap,oakland hip hop,pop rap,rap,pop,r&b,rap",0.565,0.771,1.0,-5.22,1.0,0.213,0.00464,0.0,0.0568,0.573,168.385,4.0,,Artist Partner,"C © 2017 Motion Picture Artwork, Artwork Title, and Photos 2017 Universal Studios, P ℗ 2017 Artist Partner Group, Inc. for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",7649 +7650,spotify:track:7dpsvjg2hHZRoo2C1YDvfc,Ass Back Home (feat. Neon Hitch),"spotify:artist:4IJczjB0fJ04gs4uvP0Fli, spotify:artist:2TnJ7VOpGzjtKUn0ObpEYe","Gym Class Heroes, Neon Hitch",spotify:album:58vjL9aBYw2aLRB1fMt0lw,Ass Back Home (feat. Neon Hitch),spotify:artist:4IJczjB0fJ04gs4uvP0Fli,Gym Class Heroes,2011-11-01,https://i.scdn.co/image/ab67616d0000b273332f5c33f64a32107d34e897,1,1,222213,https://p.scdn.co/mp3-preview/108ce6efd9e244ca0242984fc06aa5ed87245c26?cid=9950ac751e34487dbbe027c4fd7f8e99,True,36,USAT21102797,spotify:user:bradnumber1,2022-11-16T13:21:54Z,"dance pop,pop rap,electropop",0.716,0.838,10.0,-4.289,1.0,0.0513,0.134,0.0,0.148,0.646,130.034,4.0,,Decaydance/Fueled By Ramen,"C © 2011 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2011 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",7650 +7651,spotify:track:7ojJ4XvqBhBcteM0zjMebT,(I Can't Help) Falling In Love With You,spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,spotify:album:0B0RuH2PSWoEkIvi75xY5d,Promises And Lies,spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,1993-01-01,https://i.scdn.co/image/ab67616d0000b2732dc219f646be779b0e43a36b,1,7,207440,https://p.scdn.co/mp3-preview/a8c60b7126bd95eabf00fe69441b8169c65abd8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAAA9300027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,uk reggae",0.642,0.722,2.0,-13.031,1.0,0.0375,0.0444,0.00388,0.122,0.836,172.406,4.0,,Virgin Records,"C © 1993 DEP International, P ℗ 1993 Virgin Records Limited",7651 +7652,spotify:track:55Xmw4ktRJg9dY1LPZgX4x,Holiday,spotify:artist:5BvJzeQpmsdsFp4HGUYUEx,Vampire Weekend,spotify:album:0zeAijecFGZOS4OaRdPVz5,Contra,spotify:artist:5BvJzeQpmsdsFp4HGUYUEx,Vampire Weekend,2010-01-11,https://i.scdn.co/image/ab67616d0000b2732efbbd3b97ac33268266b805,1,3,138293,https://p.scdn.co/mp3-preview/e760ed01d613551438ad9614ce8218abd11cb303?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS0900319,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,chamber pop,garage rock,indie rock,indietronica,modern rock",0.717,0.775,2.0,-5.241,1.0,0.109,0.0222,0.000771,0.126,0.893,155.857,4.0,,XL,"C 2010 Vampire Weekend under exclusive license to XL Recordings Ltd., P 2010 Vampire Weekend under exclusive license to XL Recordings Ltd.",7652 +7653,spotify:track:39badcyKTjOtBvv4aywpfs,Universally Speaking,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:6deiaArbeoqp1xPEGdEKp1,By the Way (Deluxe Edition),spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,2002-07-09,https://i.scdn.co/image/ab67616d0000b273de1af2785a83cc660155a0c4,1,2,256959,https://p.scdn.co/mp3-preview/94c9e13d96ba510f5bbbcb1e109d702fd14e415d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USWB10201689,spotify:user:bradnumber1,2022-10-20T10:32:35Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.558,0.924,2.0,-2.312,1.0,0.0367,0.0887,0.00326,0.263,0.344,117.111,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",7653 +7654,spotify:track:5CFzqDNWT1rfCzYBmuXugs,I Want That Man,spotify:artist:7FxMjqH6DH056sdsstGeVl,Debbie Harry,spotify:album:7uGw3kAs32v8I4xZ2Ja9gj,"Def, Dumb & Blonde",spotify:artist:7FxMjqH6DH056sdsstGeVl,Debbie Harry,1989-10-28,https://i.scdn.co/image/ab67616d0000b273ef998252be084d0ae9b21605,1,1,223533,https://p.scdn.co/mp3-preview/67d463f716b37635b8c6bf8d188394d4948c3a7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK8900029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.746,0.625,9.0,-12.574,1.0,0.032,0.0322,0.000214,0.226,0.955,130.182,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1989 Chrysalis Records Limited",7654 +7655,spotify:track:4QN7nPeo5KDAM6HiRI0NJU,Change Your Life,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:0SHgpefjbVvnR2NnMPj1ve,DNA: The Deluxe Edition,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2012,https://i.scdn.co/image/ab67616d0000b273a72a9f6d0b66322e367c40c9,1,3,201586,https://p.scdn.co/mp3-preview/3e43876c3992799e377a226d322c1c3a77ece94d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1200275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.514,0.756,6.0,-4.011,0.0,0.0406,0.0786,0.0,0.359,0.361,160.11,4.0,,Syco Music,P (P) 2013 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,7655 +7656,spotify:track:7iPjAWw87asdxXr0OwLkgK,UP!,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,spotify:album:0ikUBPDyhy3iEO1IxSW7NB,UP!,spotify:artist:5i84V8Zk7YqCN6xxb7SWgw,Samantha Jade,2014-04-11,https://i.scdn.co/image/ab67616d0000b273565b7130270d5a0f5a28aa3b,1,1,207040,https://p.scdn.co/mp3-preview/79461c9b87fe38e3640f678e867adb1fc6684bde?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUBM01400060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.644,0.902,1.0,-3.127,1.0,0.162,0.0242,0.0482,0.101,0.552,126.004,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,7656 +7657,spotify:track:5l1DRutSEVtp52WxzGg90J,Almost Here (Duet with Brian McFadden) (with Brian McFadden),"spotify:artist:2g6fa86fL6oLcoDqanBbuR, spotify:artist:5ny07v4RRsvdv1uQVplMry","Delta Goodrem, Brian McFadden",spotify:album:6sCFWNbps5NqwfjdK8pWH1,Mistaken Identity,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2004-11-05,https://i.scdn.co/image/ab67616d0000b273dafff3f5ee4e38e38c937541,1,8,227986,https://p.scdn.co/mp3-preview/82bea1e2656863c17d63ad5625018aa5eb25f346?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUSM00400208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.565,0.471,9.0,-7.348,0.0,0.0321,0.4,0.0,0.122,0.29,78.004,4.0,,Epic,P (P) 2004 Sony Music Entertainment Australia Pty Ltd,7657 +7658,spotify:track:7q0XY2i6LWR68qft8Fvh4h,"Painted, Tainted Rose",spotify:artist:7egNqIGRldMzifHoh8pib6,Al Martino,spotify:album:7cWOTIQlYrLII0auKgu8iy,"Painted, Tainted Rose",spotify:artist:7egNqIGRldMzifHoh8pib6,Al Martino,2001-09-20,https://i.scdn.co/image/ab67616d0000b27340975e3c9735f98489a8a833,1,1,165720,https://p.scdn.co/mp3-preview/6d7a04d7555cb4fbaff9d27955ef01f98ecee68e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,ZA42A1536704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.228,0.417,7.0,-11.293,1.0,0.0319,0.901,0.000206,0.375,0.394,103.529,4.0,,TP4 Music,"C 2015 TP4 Music, P 2015 TP4 Music",7658 +7659,spotify:track:6EBDmMZBQkWrj7jWlGhFU1,Doctor Jones,spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,spotify:album:3hHmYc6mrl6NkmRW1ZwYvm,Aquarium (Special Edition),spotify:artist:6kBjAFKyd0he7LiA5GQ3Gz,Aqua,1997-01-01,https://i.scdn.co/image/ab67616d0000b273f5768db89dd8ac30fd0e414f,1,5,203440,https://p.scdn.co/mp3-preview/aa6d730512c63a29f23c7f22eff99625ce6fd3f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,DKBKA9700405,spotify:user:bradnumber1,2022-01-13T01:17:06Z,"bubblegum dance,eurodance,europop",0.702,0.802,0.0,-11.659,0.0,0.053,0.146,0.000221,0.0683,0.496,139.971,4.0,,Universal Music A/S,"C © 2016 Universal Music (Denmark) A/S, P ℗ 2016 Universal Music (Denmark) A/S",7659 +7660,spotify:track:7lQ8MOhq6IN2w8EYcFNSUk,Without Me,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:2cWBwpqMsDJC1ZUwz813lo,The Eminem Show,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2002-05-26,https://i.scdn.co/image/ab67616d0000b2736ca5c90113b30c3c43ffb8f4,1,10,290320,https://p.scdn.co/mp3-preview/35fc7456c892c11867fe1513b92dc44e9664eaba?cid=9950ac751e34487dbbe027c4fd7f8e99,True,86,USIR10211038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.908,0.669,7.0,-2.827,1.0,0.0738,0.00286,0.0,0.237,0.662,112.238,4.0,,Aftermath,"C © 2002 Aftermath Records, P ℗ 2002 Aftermath Records",7660 +7661,spotify:track:7jsYlbbaAzP2VHkLGlfn6r,Look at Me,spotify:artist:5orH1OWgjAYUX8sZ5gihTv,Geri Halliwell,spotify:album:7r14xPWDHH2ao9gLrDxHMd,Schizophonic,spotify:artist:5orH1OWgjAYUX8sZ5gihTv,Geri Halliwell,1999-06-07,https://i.scdn.co/image/ab67616d0000b27314af5b7185324564d027b742,1,1,272160,https://p.scdn.co/mp3-preview/36f35619b58d08d06c2bfc24371f3ce1010d0d51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAYE9900798,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.64,0.947,9.0,-3.925,0.0,0.102,0.0581,0.0,0.0656,0.708,145.108,4.0,,Parlophone UK,"C © 1999 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1999 Parlophone Records Ltd, a Warner Music Group Company",7661 +7662,spotify:track:52ekzF7DfQBszZq87MIbPY,FWMGAB,spotify:artist:6vXTefBL93Dj5IqAWq6OTv,French Montana,spotify:album:58zbc1nYIQmLd4rxnH1Blt,FWMGAB,spotify:artist:6vXTefBL93Dj5IqAWq6OTv,French Montana,2021-06-11,https://i.scdn.co/image/ab67616d0000b2730cbe63f4412808ec15a645a7,1,1,187819,https://p.scdn.co/mp3-preview/1485e53a94dfdce896621748c595306b6631d319?cid=9950ac751e34487dbbe027c4fd7f8e99,True,44,USSM12103553,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap,rap,southern hip hop,trap",0.654,0.792,10.0,-2.018,0.0,0.0346,0.0978,0.0,0.731,0.172,94.132,4.0,,Epic/Bad Boy Entertainment,"P (P) 2021 Epic Records, a division of Sony Music Entertainment",7662 +7663,spotify:track:64iZLIYuqRR8rNedN0Yvnh,Don't Go Now,spotify:artist:5ydii9WwX1NPG6k5lrAb6m,Ratcat,spotify:album:7xzbS2dfDKut0dUpSH1rX5,Blind Love,spotify:artist:5ydii9WwX1NPG6k5lrAb6m,Ratcat,1991-06-13,https://i.scdn.co/image/ab67616d0000b273ec500fe5a1622a9d7aa005df,1,9,191933,https://p.scdn.co/mp3-preview/0be276f1a9982374e020ea5f22f7378e4ab28ff9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUBM09025801,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.5,0.91,1.0,-6.659,1.0,0.053,3.71e-05,1.13e-05,0.384,0.476,114.423,4.0,,rooArt,P (P) 1991 rooArt,7663 +7664,spotify:track:4lwUpqUd1uZKve6swy9SM7,I Love Your Smile,spotify:artist:0Ttph0pOZiPNTD3y2wUUb6,Shanice,spotify:album:1mh5aMRskPvGMBx4E3Vgcc,Inner Child,spotify:artist:0Ttph0pOZiPNTD3y2wUUb6,Shanice,1991-01-01,https://i.scdn.co/image/ab67616d0000b273fa70eba1f2a408e00315a57a,1,2,257973,https://p.scdn.co/mp3-preview/3a541ba1e8cd7d7e60772435a07b9109c04e5411?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO19190003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing,urban contemporary",0.722,0.842,5.0,-8.745,0.0,0.126,0.00955,8.45e-06,0.178,0.751,93.954,4.0,,Universal Music Group,"C © 1991 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1991 Motown Records, a Division of UMG Recordings, Inc.",7664 +7665,spotify:track:5Z4SaSAhRh5UEYNAv0VjvH,Mr. America,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,spotify:album:6gtesHG15KmNH5rvdeRIJo,The Very Best Of Russell Morris,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d6067f86a6560ec7ddd00965,1,9,233480,https://p.scdn.co/mp3-preview/cb81e99cd7a8a66c9d714c55a94e0cc2aecb4201?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUEM07000006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.423,0.845,8.0,-6.877,1.0,0.0748,0.251,0.000725,0.109,0.41,90.138,4.0,,EMI,"C © 2013 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2013 EMI Recorded Music Australia Pty Ltd.",7665 +7666,spotify:track:4BggEwLhGfrbrl7JBhC8EC,Butterfly,spotify:artist:4iSKnRZAxkmqNok6tv10Se,Crazy Town,spotify:album:0hdOk76DmEMYI6QV92mIin,The Gift Of Game,spotify:artist:4iSKnRZAxkmqNok6tv10Se,Crazy Town,1999-11-04,https://i.scdn.co/image/ab67616d0000b273be3d60f650c3b9dbad061f7f,1,6,216733,https://p.scdn.co/mp3-preview/9d3bbc954641720af57379d0ef40a9e3dd807335?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USSM19911429,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,post-grunge,rap rock",0.736,0.811,9.0,-4.17,0.0,0.081,0.00132,0.000142,0.107,0.609,103.502,4.0,,Columbia,P (P) 1999 SONY BMG MUSIC ENTERTAINMENT,7666 +7667,spotify:track:3FK83WNjwRIBQlLkyapu6R,Come And Get These Memories - Single Version (Mono),spotify:artist:1Pe5hlKMCTULjosqZ6KanP,Martha Reeves & The Vandellas,spotify:album:0kvY6WYTWWJXQnesQRJZUZ,The Ultimate Collection: Martha Reeves & The Vandellas,spotify:artist:1Pe5hlKMCTULjosqZ6KanP,Martha Reeves & The Vandellas,1998-01-01,https://i.scdn.co/image/ab67616d0000b27390952efe73b2e33751fed1cd,1,1,147026,https://p.scdn.co/mp3-preview/cb043f1a802a226f82f0b3dc517a35e5842d7c6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16300242,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,motown,soul,southern soul",0.531,0.77,3.0,-3.809,1.0,0.0463,0.391,0.0,0.407,0.857,126.908,4.0,,Universal Music Group,"C © 1998 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1998 UMG Recordings, Inc.",7667 +7668,spotify:track:7AEAGTc8cReDqcbPoY9gwo,We Are Never Ever Getting Back Together,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1EoDsNmgTLtmwe1BDAVxV5,Red,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2012-10-22,https://i.scdn.co/image/ab67616d0000b27396384c98ac4f3e7c2440f5b5,1,8,191880,https://p.scdn.co/mp3-preview/d07b7d66c4fa1ae6205a7c683aab466dd0ac2e03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USCJY1231018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.628,0.676,7.0,-5.911,1.0,0.0916,0.00957,2.65e-05,0.102,0.75,85.984,4.0,,"Big Machine Records, LLC","C © 2012 Apollo A-1 LLC, P ℗ 2012 Apollo A-1 LLC",7668 +7669,spotify:track:0Q0gxKN8nOfkgAFoU7V00T,Get 'Em Girls (feat. Snoop Dogg),"spotify:artist:6rHWAH6F4mr2AViSxMV673, spotify:artist:7hJcb9fa4alzcOq3EaNPoG","Jessica Mauboy, Snoop Dogg",spotify:album:0PjdWlIJbPAUMPUbcS8lZm,Get 'Em Girls,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2010-11-05,https://i.scdn.co/image/ab67616d0000b2733352f78f7d2b03d05432ef0b,1,1,236853,https://p.scdn.co/mp3-preview/018ca0ae3cde9898e4b33b477ba193ca4d7919de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUBM01000325,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show,g funk,gangster rap,hip hop,pop rap,rap,west coast rap",0.666,0.804,9.0,-5.502,1.0,0.265,0.0182,0.0,0.167,0.67,172.058,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd.,7669 +7670,spotify:track:1nQRg9q9uwALGzouOX5OyQ,Radio Ga Ga - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:5RS9xkMuDmeVISqGDBmnSa,The Works (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1984-02-27,https://i.scdn.co/image/ab67616d0000b2735be5f807f6f0549e198a44b4,1,1,348226,https://p.scdn.co/mp3-preview/a725f72b6620b6072e35fbeab0045f263cb96da9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBUM71029623,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.744,0.502,5.0,-7.719,1.0,0.0359,0.183,0.000228,0.189,0.66,112.344,4.0,,EMI,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",7670 +7671,spotify:track:2p4r2xoMTtWJls64ZSl7H4,Rockin' Robin,spotify:artist:6i4EFkZpoYvs0XTiWsGv59,The Henchmen,spotify:album:1YKGX5Xtotdb7BLJvAwNJl,Rockin' Robin,spotify:artist:6i4EFkZpoYvs0XTiWsGv59,The Henchmen,1964-06-08,https://i.scdn.co/image/ab67616d0000b2731291f53513bf87f28b68896a,1,1,130613,https://p.scdn.co/mp3-preview/80bcb14fca5c29e309b9cd661a6a17022c9fb07d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,QM6P42003150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.503,0.953,7.0,-5.299,1.0,0.0414,0.452,0.00114,0.0571,0.972,151.613,4.0,,Swan Records,"C (C) 1964 © Swan Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws., P (P) 1964 © Swan Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",7671 +7672,spotify:track:303ccTay2FiDTZ9fZ2AdBt,Music Sounds Better With You,"spotify:artist:2w7IutHv5g4e8LumrwtjWR, spotify:artist:2XOvFG8pp1XAV1V6ZJABim, spotify:artist:24JRvbKfTcF2x7c2kCCJrW, spotify:artist:41vv2Tj1knysv6MuFUmdwi","Stardust, Benjamin Diamond, Alan Braxe, Thomas Bangalter",spotify:album:7Kusf5plZjl76X5ARWJbNO,Music Sounds Better With You,spotify:artist:2w7IutHv5g4e8LumrwtjWR,Stardust,1998-07-20,https://i.scdn.co/image/ab67616d0000b273b98afa12c212cbbda4f1799b,1,1,403293,https://p.scdn.co/mp3-preview/ad7af826d107e7a54ec75558e9191dc026747c11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,FR11Q9800000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"filter house,filter house,electrofox,filter house,filter house",0.735,0.72,1.0,-7.04,1.0,0.336,0.00105,0.15,0.382,0.364,124.174,4.0,,Because Music,"C 1998 Because Music LC33186, P 1998 Because Music LC33186",7672 +7673,spotify:track:58E1XVmZTODC67YNjneuXM,Tainted Love,spotify:artist:6aq8T2RcspxVOGgMrTzjWc,Soft Cell,spotify:album:1R4TikWrz6Mz53aB66dZRn,Non-Stop Erotic Cabaret,spotify:artist:6aq8T2RcspxVOGgMrTzjWc,Soft Cell,1981,https://i.scdn.co/image/ab67616d0000b273db5f42a5cd45458926cab59d,1,2,153840,https://p.scdn.co/mp3-preview/03f13a169368253ffeb3a9ff37f69659e5c7d728?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBF088100017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop",0.542,0.45,7.0,-9.931,0.0,0.0361,0.558,6.43e-06,0.579,0.626,144.437,4.0,,Island Records,"C © 2002 Mercury Records Limited, P ℗ 2002 Mercury Records Limited",7673 +7674,spotify:track:5EJGcsOqVIAdicco0FYJA5,The Greatest View,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:0zg0bnlwOrBsYslyxpNydr,Diorama,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,2002,https://i.scdn.co/image/ab67616d0000b27375ce71bf7846bd39adacf177,1,2,245346,https://p.scdn.co/mp3-preview/d1c1e31bf0c1c75d6aee52117ba58f6f8d1ab125?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEL00200027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.269,0.756,9.0,-7.043,1.0,0.0343,8.99e-05,6.14e-05,0.129,0.356,158.49,4.0,,Universal Music Australia Pty. Ltd.,"C © 2002 Eleven: A Music Company, P ℗ 2002 Eleven: A Music Company",7674 +7675,spotify:track:233w9uwogsiEz5p54qaE1q,Fallin' in Love - Live,spotify:artist:6JGUkLiRAWMNYaHdUCIUvC,Rocky Burnette,spotify:album:5Q4qViIsEC5u1puOHWhJKv,Rock Solid,spotify:artist:6JGUkLiRAWMNYaHdUCIUvC,Rocky Burnette,2019-11-01,https://i.scdn.co/image/ab67616d0000b27326ac16023547f3d313292067,2,9,268933,https://p.scdn.co/mp3-preview/d2cad51b1da0e265017bc1304116c3a0866982aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBT21620950,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.452,0.877,3.0,-3.583,1.0,0.0963,0.314,0.000298,0.927,0.685,146.236,4.0,,Sunset Blvd. Records,"C 2019 Blue Lagoon, P 2019 Blue Lagoon",7675 +7676,spotify:track:0TDLuuLlV54CkRRUOahJb4,Titanium (feat. Sia),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","David Guetta, Sia",spotify:album:4bTjdxhRRUiWfwj200f9Kl,Nothing but the Beat (Ultimate Edition),spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2012-12-07,https://i.scdn.co/image/ab67616d0000b2735c8cfe4b2c4aa89c9c92108e,1,1,245040,https://p.scdn.co/mp3-preview/6c3e9bbcebdbfa7875c6a56c2bb4da2a870c250b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GB28K1100036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,pop",0.604,0.787,0.0,-3.674,0.0,0.103,0.0679,0.15,0.127,0.301,126.062,4.0,,Parlophone (France),"C © 2012 What A Music Ltd., licence exclusive Parlophone Music France, P ℗ 2012 What A Music Ltd., licence exclusive Parlophone Music France",7676 +7677,spotify:track:7jA4agDnt1Oc6Fn2hifX0t,Bohemian Like You,spotify:artist:7siPLyFwRFYQkKgWKJ5Sod,The Dandy Warhols,spotify:album:6xQF1SfwVLRXTF1j5OZs5Y,Alternative,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-04-28,https://i.scdn.co/image/ab67616d0000b273dd4fb03aec711275fbc3bb70,1,5,208906,https://p.scdn.co/mp3-preview/19a9f6387d200ec9b3339e5a2b6bc701a8e64f52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USCA20000241,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance-punk",0.578,0.936,9.0,-5.761,1.0,0.0364,0.00305,0.687,0.47,0.659,131.268,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",7677 +7678,spotify:track:0snyjt8NMg7Dc7E3xnDH9b,What Is Truth,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,spotify:album:5Tw0sanofDSd7h44GySmoa,The Legend,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,2005,https://i.scdn.co/image/ab67616d0000b27385e04a530474e2b6ddffa39b,1,18,157666,https://p.scdn.co/mp3-preview/3b7c89af57754a8995b422b40ed0df2c6235342e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USSM10414715,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,outlaw country,rock",0.681,0.385,4.0,-12.568,1.0,0.118,0.383,0.171,0.277,0.628,86.137,4.0,,Columbia/Legacy,"P (P) 1982, 2001 Sugar Hill Records, a Welk Music Group Company, 1987 Mercury Records, a Division of UMG Recordings, 1993 Universal International Music B.V. under exclusive license to Interscope Records, Inc., 2002, 2003 Capitol Records, Inc., 2004, 20",7678 +7679,spotify:track:2cS4P8xExQooEY0EYgx3Kq,All I Wanna Do,spotify:artist:6XCS9JCn56Q252cMOTbeq6,Dannii Minogue,spotify:album:0JpVbXHKFpNszSRZVsXti6,Hits of the '90s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-04,https://i.scdn.co/image/ab67616d0000b273e870de28c112072efbfeb328,1,75,266960,https://p.scdn.co/mp3-preview/8edf1b63295ecaefe965f58dcd99b48b1af5cda3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHT1200634,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,europop",0.571,0.95,8.0,-6.242,1.0,0.0357,0.00726,0.239,0.0939,0.416,133.973,4.0,,WM Australia,"C 2016 Warner Music Australia, P 2016 Warner Music Australia",7679 +7680,spotify:track:7hjNBLlsfNhvcWSu5sdOfA,Take A Long Line,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,spotify:album:4GS4lOodhAiD4RiVSeRusH,40 Years of Rock - Vol. 1: 40 Greatest Studio Hits,spotify:artist:2PeqTZKroEc2oDwTfmB2al,The Angels,2014-05-02,https://i.scdn.co/image/ab67616d0000b27333076ba0dca338af801d7d4b,1,6,181005,https://p.scdn.co/mp3-preview/922355def2998b19a09fc820fcb5c5182426384b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07800015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.497,0.662,7.0,-7.172,1.0,0.135,0.00346,9.75e-06,0.0796,0.377,181.7,4.0,,Bloodlines,"C 2014 Bloodlines, P 2014 Bloodlines",7680 +7681,spotify:track:53B2XmmjJ9rriW1qciMBeX,Treat You Better,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:5W7vVhoTaSBEUTfEydrQfp,Treat You Better,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2016-06-03,https://i.scdn.co/image/ab67616d0000b27323e65e72ab9cd20a1e450c0b,1,1,187973,https://p.scdn.co/mp3-preview/964acb3eecee3568fb10baf97d094b34887fb292?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71604711,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.45,0.825,10.0,-4.066,0.0,0.372,0.121,0.0,0.109,0.742,82.823,4.0,,Universal Music Group,"C (C) 2016 Island Records, a division of UMG Recordings, Inc., P (P) 2016 Island Records, a division of UMG Recordings, Inc.",7681 +7682,spotify:track:5wCi0z3lEQpp5f4Ybx585S,Like a Killer,spotify:artist:5k4H6TUXcqQiT4tB9wfGKt,Sammi Elston,spotify:album:6aCxtwI5eL53zJbxrR47Nj,Like a Killer,spotify:artist:5k4H6TUXcqQiT4tB9wfGKt,Sammi Elston,2021-06-11,https://i.scdn.co/image/ab67616d0000b273f8587ec75cab0cd296d63740,1,1,171467,,False,0,TCAFO2158855,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.549,0.568,4.0,-7.952,1.0,0.0336,0.786,4.79e-06,0.0835,0.245,115.046,4.0,,Sammi Elston,"C 2021 Sammi Elston, P 2021 Sammi Elston",7682 +7683,spotify:track:0UvCh63URrLFcPkKt99hHd,Don't Look Back in Anger - Remastered,spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,spotify:album:1VW1MFNstaJuygaoTPkdCk,(What's The Story) Morning Glory? [Remastered],spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,1995-10-02,https://i.scdn.co/image/ab67616d0000b27385e5dcc05cc216a10f141480,1,4,289560,https://p.scdn.co/mp3-preview/0ec76dac522643d740f7ae47e395a0499d7ef756?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBQCP1400110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,britpop,madchester,permanent wave,rock",0.327,0.938,0.0,-3.237,1.0,0.0636,0.0707,3.79e-06,0.148,0.327,162.933,4.0,,Big Brother,P (P) 2014 Big Brother Recordings Ltd exclusively licensed to Sony Music Entertainment UK Limited/(P) 2014 Big Brother Recordings Ltd exclusively licensed to Sony Music Entertainment UK Limited),7683 +7684,spotify:track:59NraMJsLaMCVtwXTSia8i,Prada,"spotify:artist:5wCmhq5J2hPwL2r0eKurxn, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2, spotify:artist:5VadK1havLhK1OpKYsXv9y","cassö, RAYE, D-Block Europe",spotify:album:5MU0RmBSpoSxOPYBfcobDc,Prada,"spotify:artist:5wCmhq5J2hPwL2r0eKurxn, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2, spotify:artist:5VadK1havLhK1OpKYsXv9y","cassö, RAYE, D-Block Europe",2023-08-11,https://i.scdn.co/image/ab67616d0000b273e4b7dccdfd54375ded9ccc5c,1,1,132359,https://p.scdn.co/mp3-preview/07ca5d41f53802807fd40d2778e66f633a2f3b8b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,83,GBCEN2300147,spotify:user:bradnumber1,2024-01-14T19:57:25Z,"hypertechno,pop dance,uk contemporary r&b,uk pop,melodic drill,uk hip hop",0.638,0.717,8.0,-5.804,1.0,0.0375,0.001,1.79e-06,0.113,0.422,141.904,4.0,,Ministry of Sound Recordings,P (P) 2023 Under Exclusive License to Ministry of Sound Recordings,7684 +7685,spotify:track:31qCy5ZaophVA81wtlwLc4,Anyone,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:51kijm0sjZz0yOa3kVBPUU,Anyone,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2021-01-01,https://i.scdn.co/image/ab67616d0000b2734b02db5cefb177ff97346cf2,1,1,190779,https://p.scdn.co/mp3-preview/1846708354789db46d714ffa9246540083ea4634?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM72023175,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.686,0.538,2.0,-8.026,1.0,0.0345,0.181,3.13e-06,0.113,0.584,115.884,4.0,,RBMG/Def Jam,"C © 2020 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2020 Def Jam Recordings, a division of UMG Recordings, Inc.",7685 +7686,spotify:track:4ne3v111lC2qKs98lnQdi0,Pasadena,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,spotify:album:28L7sCuuF8Zt6dW1FuZqRh,I Hate the Music,spotify:artist:2wMcQIxzH2LYHJZNxo9FcN,John Paul Young,2009-09-18,https://i.scdn.co/image/ab67616d0000b273c6cd995a8ad657da9a0c10f4,1,2,198786,https://p.scdn.co/mp3-preview/6775350a42d3ff582efa25287eb3602daef92735?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07100039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,classic uk pop",0.714,0.566,8.0,-5.64,1.0,0.0342,0.693,6.77e-06,0.221,0.827,124.786,4.0,,Albert Productions,"C © 2009 BMG AM Pty Ltd., P ℗ 2009 BMG AM Pty Ltd.",7686 +7687,spotify:track:4v8nPkShzk7lxoGjlHAeJW,Mr. Bojangles,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:0D9jxLRpdhEG583Yqji2EJ,"Touching You, Touching Me",spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1969-12-13,https://i.scdn.co/image/ab67616d0000b27322a51c7bac7972cdf650c68e,1,2,293760,https://p.scdn.co/mp3-preview/e6dc3dbe21e6410884199387ad5d09748b3f9414?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USMC16948887,spotify:user:bradnumber1,2022-09-25T11:08:48Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.437,0.338,0.0,-16.387,1.0,0.0316,0.278,1.73e-06,0.098,0.484,134.478,3.0,,Geffen,"C © 2007 UMG Recordings, Inc., P ℗ 1969 UMG Recordings, Inc.",7687 +7688,spotify:track:6zR5rIivVSMFkgzIkVp8l9,Listen to the Man,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,spotify:album:5tF2lAa2rh2kU2xIiBzWia,Wanted on Voyage,spotify:artist:2ysnwxxNtSgbb9t1m2Ur4j,George Ezra,2014-06-27,https://i.scdn.co/image/ab67616d0000b2732b01e29ac167ad5be48f03ef,1,5,183680,https://p.scdn.co/mp3-preview/def702db3f63a672ca08b79074e09d32383d3569?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1400479,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo-singer-songwriter",0.599,0.548,9.0,-5.911,1.0,0.0323,0.505,0.0,0.0898,0.518,121.163,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,7688 +7689,spotify:track:5dRQUolXAVX3BbCiIxmSsf,Your Love,spotify:artist:1zxDewzd2j1ZdSBGaYcr0y,The Outfield,spotify:album:5FfkiNcXAvagExRCLd8nn4,Super Hits,spotify:artist:1zxDewzd2j1ZdSBGaYcr0y,The Outfield,1985,https://i.scdn.co/image/ab67616d0000b27301ed248b4ac01c868e688322,1,5,221840,https://p.scdn.co/mp3-preview/70ba0126426a961829911794993a07c520a95d96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USSM18500264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,power pop,0.555,0.757,1.0,-7.868,0.0,0.0601,0.103,1.16e-06,0.0631,0.582,129.607,4.0,,Columbia/Legacy,"P 1985, 1987, 1989, 1998 Sony Music Entertainment Inc.",7689 +7690,spotify:track:1ML2r3gzmd9776dmnlGYlh,Hands Of Love,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:59ZRjqjHEKcBvKKbCn7PmT,Hands Of Love,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2015-10-02,https://i.scdn.co/image/ab67616d0000b273c52076a2075b0885187deb21,1,1,229386,https://p.scdn.co/mp3-preview/0ae2a0d17bdfec8fa5d75db8fe9efb27d054e129?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USRC11502057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.442,0.542,0.0,-7.356,1.0,0.033,0.38,0.000117,0.085,0.139,144.006,4.0,,RCA Records Label,"P (P) 2015 RCA Records, a division of Sony Music Entertainment",7690 +7691,spotify:track:70FCugJxa7XW04Np6iYJdI,21 Questions,"spotify:artist:3q7HBObVc0L8jNeTe5Gofh, spotify:artist:1Oa0bMld0A3u5OTYfMzp5h","50 Cent, Nate Dogg",spotify:album:5G5rgQHzdQnw32SI0WjIo5,Get Rich Or Die Tryin',spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,2003-02-06,https://i.scdn.co/image/ab67616d0000b273d843fabb75fef14010e30cae,1,14,224440,https://p.scdn.co/mp3-preview/77a25e19e14207e68cf6824df73427206a50a249?cid=9950ac751e34487dbbe027c4fd7f8e99,True,76,USIR10300002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap,g funk,gangster rap,hardcore hip hop,hip hop,west coast rap",0.646,0.813,6.0,-3.846,0.0,0.299,0.349,9.37e-05,0.0427,0.895,92.729,4.0,,Shady Records,"C © 2003 Shady Records/Aftermath Records/Interscope Records, P ℗ 2003 Shady Records/Aftermath Records/Interscope Records",7691 +7692,spotify:track:1TQZzuDUPMRM2qdstODLYX,Young World - Remastered 2005,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,spotify:album:6B2Bk4rcGuYVjlMukQHJJL,Greatest Love Songs,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,2008,https://i.scdn.co/image/ab67616d0000b273b364e6db443d84cdd1ec22db,1,18,146786,https://p.scdn.co/mp3-preview/5d783640cb68c0e4e6728dab30974373cea64736?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USCA20501024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,doo-wop,rock-and-roll,rockabilly",0.532,0.607,0.0,-6.878,1.0,0.0304,0.37,6.56e-05,0.136,0.718,117.214,4.0,,Capitol Records,"C © 2008 Capitol Records Inc., P This Compilation ℗ 2008 Capitol Records Inc.",7692 +7693,spotify:track:2tnVG71enUj33Ic2nFN6kZ,Ride It,spotify:artist:4ofCBoyEiGSePFAG500xev,Regard,spotify:album:4zOhjJfe0dwqsNdDYk622E,Ride It,spotify:artist:4ofCBoyEiGSePFAG500xev,Regard,2019-07-26,https://i.scdn.co/image/ab67616d0000b2735c27813ae019011fcb370c78,1,1,157605,https://p.scdn.co/mp3-preview/ce29bb243cf40118b87070b00a49822e09a317b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,GBCEN1900047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,pop edm,slap house,uk dance",0.88,0.751,7.0,-4.258,0.0,0.0874,0.177,6.43e-05,0.106,0.884,117.948,4.0,,Ministry of Sound Recordings,P (P) 2019 Ministry of Sound Recordings Limited,7693 +7694,spotify:track:0b9djfiuDIMw1zKH6gV74g,Somebody Like You,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,spotify:album:1O87Gkgvc6QR1JRpMkgnE7,Golden Road,spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,2002-01-01,https://i.scdn.co/image/ab67616d0000b2736b884d4969e2438f5a83ed5b,1,1,323040,https://p.scdn.co/mp3-preview/f525f329c01c642bfa57934700ef6f25bcd99d8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USCN10200137,spotify:user:bradnumber1,2021-11-11T04:16:17Z,"contemporary country,country,country road",0.625,0.84,4.0,-5.768,1.0,0.0337,0.109,0.000555,0.144,0.656,111.02,4.0,,Capitol Nashville,"C © 2002 Capitol Records Nashville, P ℗ 2002 Capitol Records Nashville",7694 +7695,spotify:track:7wK6pBmu1iI3V62DaSzuZ3,Stay With Me - Darkchild Version,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:01zS3oMfUniMmX7qhTFW4s,Stay With Me,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2014-01-01,https://i.scdn.co/image/ab67616d0000b273d28cdce8a427f51c1e62176b,1,2,174919,https://p.scdn.co/mp3-preview/53c65c9e3d5c455d8388d615c1de10905c2fc60f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBUM71401356,spotify:user:bradnumber1,2021-08-08T09:27:38Z,"pop,uk pop",0.449,0.37,0.0,-7.153,1.0,0.0425,0.45,0.000116,0.0923,0.103,83.694,4.0,,PLG - Capitol,"C © 2014 Capitol Records, a division of Universal Music Operations Limited, P ℗ 2014 Capitol Records, a division of Universal Music Operations Limited",7695 +7696,spotify:track:2cFl7utlqyZjCXN1G5nRvA,Stuck With You,spotify:artist:7A9yZMTrFZcgEWAX2kBfK6,Huey Lewis & The News,spotify:album:5L0vaNLbzgP8RIJqs1zamE,Fore!,spotify:artist:7A9yZMTrFZcgEWAX2kBfK6,Huey Lewis & The News,1986-01-01,https://i.scdn.co/image/ab67616d0000b273f511dc00e29c2a2bdf483b53,1,2,269573,https://p.scdn.co/mp3-preview/3d5452693222bc7c1fbaf46b4ffc64057e2fbdcf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USCH38600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave pop,rock,singer-songwriter,soft rock",0.704,0.544,4.0,-11.402,0.0,0.026,0.0873,1.58e-05,0.041,0.627,120.717,4.0,,EMI/EMI Records (USA),"C © 1986 Capitol Records, LLC, P ℗ 1986 Capitol Records, LLC",7696 +7697,spotify:track:1xOM3M5U1Mjpj4WFiHcf35,Black Suits Comin' (Nod Ya Head),"spotify:artist:41qil2VaGbD194gaEcmmyx, spotify:artist:5YfHAR9oWkNkUFcqjHfyWn","Will Smith, Traknox",spotify:album:3md0Ar5BLMv4MjHp72UBym,Black Suits Comin' (Nod Ya Head),spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,1997,https://i.scdn.co/image/ab67616d0000b273b3de21925f2a70520ad55713,1,1,259786,https://p.scdn.co/mp3-preview/87b45b7a470682a724622d4d689b939399de20f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USSM10205167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap",0.738,0.794,1.0,-4.848,1.0,0.0665,0.00703,0.0,0.341,0.737,96.036,4.0,,Columbia,"P (P) 2002, 1997 Sony Music Entertainment Inc. / (P) 1997 Columbia Pictures Industries, Inc.",7697 +7698,spotify:track:2aa37jRL4DRFvDs8og3uun,Hold Me Close,spotify:artist:46n0cAhBmsRJZiX6GSFmbf,David Essex,spotify:album:4kRaawwPcWlpw33TjpPuiQ,Best Of David Essex,spotify:artist:46n0cAhBmsRJZiX6GSFmbf,David Essex,1996-01-08,https://i.scdn.co/image/ab67616d0000b2737f39354389a634ea4a2fb62b,1,1,232533,https://p.scdn.co/mp3-preview/d2c416e59c02632e0b77f0cd540402afe3b8b8b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBBBN7500003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.598,0.525,11.0,-9.815,1.0,0.215,0.732,0.0,0.306,0.791,128.244,4.0,,Columbia,P (P) 1996 Sony Music Entertainment (UK) Ltd.,7698 +7699,spotify:track:0qHMhBZqYb99yhX9BHcIkV,Magical Mystery Tour - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:2BtE7qm1qzM80p9vLSiXkj,Magical Mystery Tour (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1967-11-27,https://i.scdn.co/image/ab67616d0000b273692d9189b2bd75525893f0c1,1,1,170106,https://p.scdn.co/mp3-preview/0ddac8a1705db98139a3798350d6c315b5d421fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAYE0601633,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.298,0.613,9.0,-9.065,1.0,0.0912,0.0385,3.98e-05,0.0734,0.338,170.61,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",7699 +7700,spotify:track:4Gh4BkOrigfGe804NgoJvS,Because,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:2PzvfJGK74FgwPrvMB0qOh,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2008-11-17,https://i.scdn.co/image/ab67616d0000b2732e14e3c145c0cac92a12feac,1,6,258853,https://p.scdn.co/mp3-preview/5c32afc01c499dd1e20be58d01269fa4271ae808?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM00800494,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.592,0.669,5.0,-5.588,1.0,0.0271,0.273,0.0,0.21,0.322,132.03,4.0,,Sony BMG Music Entertainment,P (P) 2008 SONY BMG Music Entertainment (Australia) Pty Limited,7700 +7701,spotify:track:221LRlPHPuevgE1tuUlof9,I Want You Back - Radio Edit,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,spotify:album:7K5qlneuWF1CcY6ERzwkLB,'N Sync UK Version,spotify:artist:6Ff53KvcvAj5U7Z1vojB5o,*NSYNC,1997,https://i.scdn.co/image/ab67616d0000b273186b235052f031900c5cb282,1,8,200440,https://p.scdn.co/mp3-preview/481856f51b927e5ce077ee47d266341eeda9f2ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,DEA819600477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.751,0.939,8.0,-3.305,0.0,0.0466,0.0521,0.00056,0.477,0.905,112.041,4.0,,Northwestside Records,"P (P) 1997/1998 Trans Continental Records, Inc.",7701 +7702,spotify:track:74YvAbwZrFub1C6EMeEQoG,Radio - Remastered,spotify:artist:4aUvbQAAA2SLQUH8ib96yn,The Members,spotify:album:4oDIa7QyT6NPkfCKpDFTJ2,Working Girl (Remastered),spotify:artist:4aUvbQAAA2SLQUH8ib96yn,The Members,1983-06-01,https://i.scdn.co/image/ab67616d0000b27394ce66e14ddfd1ccec642af5,1,7,272000,https://p.scdn.co/mp3-preview/73574a039dac989c59325ee0846769ba56f564a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKPL1376193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,mod revival,0.665,0.722,9.0,-9.782,1.0,0.0987,0.17,0.000237,0.744,0.279,139.008,4.0,,The Members,"C 2014 The Members, P 2014 The Members",7702 +7703,spotify:track:14IKLtPlsqWL077svIJYey,Stand Tall,spotify:artist:5ziVRv2caoBDNG2fythJ2n,Burton Cummings,spotify:album:5FGQWzDZk1i5JNv3beHOCx,Burton Cummings,spotify:artist:5ziVRv2caoBDNG2fythJ2n,Burton Cummings,1976,https://i.scdn.co/image/ab67616d0000b273b5762ba4f9a742094155e1a2,1,6,272293,https://p.scdn.co/mp3-preview/95a92adeba510075d1a704437cf166ecc841f601?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USSM10003989,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian singer-songwriter,classic canadian rock",0.463,0.396,7.0,-10.128,1.0,0.0304,0.0243,7.23e-05,0.173,0.365,80.753,4.0,,Epic/Legacy,"P (P) 1976, 1999 Sony Music Entertainment Inc.",7703 +7704,spotify:track:6K0kK40E7PA2i9LsGmVCfK,Can the Can,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,spotify:album:06HJVlWlwBfMKf8BE0eAHW,Suzi Quatro,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,1973-10-01,https://i.scdn.co/image/ab67616d0000b27357d3809ca687051ca8832a24,1,15,214400,https://p.scdn.co/mp3-preview/ecd6345d958dead45b6a5669e9b1f8175154e244?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE7300068,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.646,0.831,10.0,-6.011,0.0,0.16,0.017,0.91,0.422,0.593,133.431,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1973 Chrysalis Records Limited",7704 +7705,spotify:track:3monYp74moNPjM2JJMWa3Y,Without You,spotify:artist:36msvw9B10rxW90NSQ2794,Johnny Tillotson,spotify:album:62N9znca7VeEvahgwKaEbs,25 All-Time Greatest Hits,spotify:artist:36msvw9B10rxW90NSQ2794,Johnny Tillotson,2001-04-02,https://i.scdn.co/image/ab67616d0000b27326ca6475bf9dc8ac201974fc,1,8,128800,https://p.scdn.co/mp3-preview/e0c2873a265b5e428f3ba7e0d28f0a11142bd880?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US3M50121008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,merseybeat,nashville sound,rock-and-roll",0.297,0.58,2.0,-5.554,1.0,0.03,0.362,0.728,0.165,0.753,198.691,3.0,,Varese Sarabande,"C © 2001 Varese Sarabande Records, P ℗ 2001 Varese Sarabande Records",7705 +7706,spotify:track:7o10Pto0YFchZl1zL4dLPH,Always,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:3Ad4QdO0EJr1c2livr9cmm,Bon Jovi Greatest Hits,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273f0d41275363a36b5772b49b2,1,13,353106,https://p.scdn.co/mp3-preview/3d08ed5b79bf883840ffcf61c43df5b068a5ea8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USPR39412221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.373,0.678,4.0,-5.528,1.0,0.0325,0.143,0.0,0.168,0.346,141.42,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",7706 +7707,spotify:track:1yy2DlSDtEt90d54rPDPXz,I'll Be Missing You (feat. Faith Evans & 112) - 2014 Remaster,"spotify:artist:59wfkuBoNyhDMQGCljbUbA, spotify:artist:7urq0VfqxEYEEiZUkebXT4, spotify:artist:5NDMothbpdpq2xHqSjrrWn","Diddy, 112, Faith Evans",spotify:album:33hEDxsIVGf7R6wRdZBQOw,No Way Out (2014 Remaster),spotify:artist:59wfkuBoNyhDMQGCljbUbA,Diddy,1997,https://i.scdn.co/image/ab67616d0000b2733680b3a63917a1523b5a8ac9,1,12,306560,https://p.scdn.co/mp3-preview/00293d45c0423c1278747e13e4d4e087d5a9b002?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USBB41400049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap,atl hip hop,boy band,contemporary r&b,hip pop,r&b,urban contemporary,contemporary r&b,hip pop,r&b,urban contemporary",0.833,0.619,7.0,-5.595,1.0,0.0538,0.111,2.13e-05,0.159,0.901,109.92,4.0,,Rhino Atlantic,"C © 1997 Atlantic Records, P ℗ 1997 Bad Boy/Atlantic Records. Marketed By Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",7707 +7708,spotify:track:6WzHwmlEXBtygh04Q3Q91I,Don’t Stop The Party,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:5zwp1Sa7v6Mjp9CNZLZ7RO,The Beginning,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2010-01-01,https://i.scdn.co/image/ab67616d0000b27348caf395c71e325a242b092e,1,8,367413,https://p.scdn.co/mp3-preview/d75680f3201b853cc1c72085291d6624d68fdfeb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71026669,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.873,0.741,0.0,-6.109,1.0,0.0783,0.0349,2.14e-06,0.127,0.754,128.003,4.0,,Universal Music Group,"C © 2010 Interscope Records, P ℗ 2010 Interscope Records",7708 +7709,spotify:track:2RzJwBCXsS1VnjDm2jKKAa,I Believe I Can Fly,spotify:artist:2mxe0TnaNL039ysAj51xPQ,R. Kelly,spotify:album:4yRYsQZfQpzkoVWH2XCX66,R.,spotify:artist:2mxe0TnaNL039ysAj51xPQ,R. Kelly,1998-11-08,https://i.scdn.co/image/ab67616d0000b2731a81e3abee4b067492baaf44,2,13,320666,https://p.scdn.co/mp3-preview/9227a7dd0e3cbff12d5af1ca1cae90d625a26f63?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USJI19610437,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.55,0.444,7.0,-7.588,1.0,0.0292,0.241,0.0,0.187,0.0438,120.179,4.0,,Jive,"P (P) 1998 Zomba Recording LLC, except ""I Believe I Can Fly"" - (P) 1996 Zomba Recording Corporation",7709 +7710,spotify:track:5JOVSWohrjXW0BFTboh8XO,Don't Go,spotify:artist:1G1mX30GpUJqOr1QU2eBSs,Yazoo,spotify:album:35XWsJcKVHGmDKE8XUd3o3,Upstairs at Eric's,spotify:artist:1G1mX30GpUJqOr1QU2eBSs,Yazoo,1982-07-01,https://i.scdn.co/image/ab67616d0000b273e0c3e555afcd70597d605b8e,1,1,188466,https://p.scdn.co/mp3-preview/459dcee22c84c6e4ce059bba3b62e7b3f093169f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAJH9600227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop",0.803,0.411,6.0,-16.013,1.0,0.0521,0.312,0.00344,0.0411,0.654,126.236,4.0,,"Mute, a BMG Company","C © 1982 Mute Records Ltd., a BMG Company, P ℗ 1982 Mute Records Ltd., a BMG Company",7710 +7711,spotify:track:4Y2glvLjQGOb4dXnwm1hQf,Witchcraft,spotify:artist:7MqnCTCAX6SsIYYdJCQj9B,Pendulum,spotify:album:3XtEGVx9uh7J46nBzEc1VS,Immersion,spotify:artist:7MqnCTCAX6SsIYYdJCQj9B,Pendulum,2010-05-21,https://i.scdn.co/image/ab67616d0000b27330f8e0f777376780c4077507,1,12,252786,https://p.scdn.co/mp3-preview/80c453fe2d6364cfa6634a8f37c0bed2e323bd6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBAHT1000133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,dancefloor dnb,drum and bass",0.42,0.969,1.0,-3.139,1.0,0.0581,2.84e-05,0.00861,0.379,0.182,174.038,4.0,,WM UK,"C © 2010 Warner Music UK Limited, P ℗ 2010 Warner Music UK Limited",7711 +7712,spotify:track:2oNV9ABtLyb0SvhXZibgL0,You've Lost That Lovin' Feelin' - 2006 Digital Remaster,spotify:artist:5x9DWz6SpEVu9NgL8aktm2,Long John Baldry,spotify:album:7dPKPmxPnr3D1Si8AmR1vX,Looking At Long John Baldry (The UA Years 1964-1966),spotify:artist:5x9DWz6SpEVu9NgL8aktm2,Long John Baldry,2006-01-01,https://i.scdn.co/image/ab67616d0000b273bed0f1cf79e487dc1b67a219,2,1,204013,https://p.scdn.co/mp3-preview/c007d485ac8eec92ff5272f374c154216a366e59?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,GBAYE0501911,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,canadian blues",0.4,0.335,0.0,-8.769,1.0,0.0349,0.845,2.24e-05,0.108,0.311,95.739,4.0,,Parlophone Catalogue,"C © 2006 EMI Records Ltd, P This Compilation ℗ 2006 EMI Records Ltd",7712 +7713,spotify:track:4mn2kNTqiGLwaUR8JdhJ1l,House of the Rising Sun,spotify:artist:3ICflSq6ZgYAIrm2CTkfVP,The Animals,spotify:album:1v4O55JGou3T0Vlj06fdXz,The Singles Plus,spotify:artist:3ICflSq6ZgYAIrm2CTkfVP,The Animals,1987-10-19,https://i.scdn.co/image/ab67616d0000b273015c484a7aca592df1a77828,1,3,269906,https://p.scdn.co/mp3-preview/4d753f2d9dcaf048ba216a6bd10bea25473b47d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBAYE6400209,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,protopunk,psychedelic rock,rock",0.316,0.484,9.0,-9.11,0.0,0.0308,0.000334,0.00445,0.0912,0.299,117.363,3.0,,Parlophone UK,"C © 1987 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1987 Parlophone Records Ltd, a Warner Music Group Company",7713 +7714,spotify:track:5nvYnwbX1Gb60mpX7m8P01,The Best Things in Life Are Free,spotify:artist:62TGTq6LdDV08FxXEqgWF6,Superstar,spotify:album:595s7LBeQF53JDZbhe8RdF,The Greatest Hits of Luther Vandross,spotify:artist:62TGTq6LdDV08FxXEqgWF6,Superstar,2015-03-01,https://i.scdn.co/image/ab67616d0000b273811da3fe79e81d3ffbea4f51,1,10,297906,https://p.scdn.co/mp3-preview/9000b6c6710b23a8281984b0c0ef664d7584d5d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,QM6P41458773,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.852,0.863,6.0,-9.241,0.0,0.136,0.197,0.0,0.143,0.496,120.953,4.0,,MMT,C (C) 2015 MMT,7714 +7715,spotify:track:1XmxvUmM2QUTfFTnZ3YQqW,Give It To Me - Radio Edit,"spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ, spotify:artist:31TPClRtHm23RisEBtV3X7, spotify:artist:2jw70GZXlAI8QzWeY2bgRc","Timbaland, Justin Timberlake, Nelly Furtado",spotify:album:41Qn6C4MQzk3hjJOcs1zV0,Big Brother 07 Party Mix,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b273bcc1e1483356afac7ffdd1d8,1,11,212533,https://p.scdn.co/mp3-preview/4c472cb26cad84079dfbd20f92c6909af8b7a7fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70700432,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,dance pop,pop,canadian latin,canadian pop,dance pop,pop",0.975,0.644,8.0,-5.702,1.0,0.0699,0.152,0.0272,0.0899,0.845,110.613,4.0,,Universal Music Australia Pty. Ltd.,"C © 2007 Universal Music Australia Pty Ltd., P This Compilation ℗ 2007 Universal Music Australia Pty Ltd.",7715 +7716,spotify:track:0csUoMvvImqcIPpobc21QU,Somethin' 4 Da Honeyz,spotify:artist:0iVrCROxeyon7MZUW3MfzT,Montell Jordan,spotify:album:3EXrvTpmGBVUht9FqRidHl,This Is How We Do It,spotify:artist:0iVrCROxeyon7MZUW3MfzT,Montell Jordan,1995-04-04,https://i.scdn.co/image/ab67616d0000b2731c1e3f60f3c8c8706a476dad,1,2,276106,https://p.scdn.co/mp3-preview/0e6cdcf61354b320ba67538587c0c732b5a612de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRL19500005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,new jack swing,r&b,urban contemporary",0.723,0.704,4.0,-8.507,0.0,0.0885,0.0149,0.0,0.157,0.744,93.168,4.0,,Def Jam Recordings,"C © 1995 Rush Associated Labels Inc., P ℗ 1995 Rush Associated Labels Inc.",7716 +7717,spotify:track:5Lza3PRwBfT1INyE6wMLDq,How to Dance,spotify:artist:7DwxyX8DS22ZbIsT2Pk6S5,Bingoboys,spotify:album:4Y7E4wQKr2OIjG1b5OJ8la,The Best Of Bingoboys,spotify:artist:7DwxyX8DS22ZbIsT2Pk6S5,Bingoboys,2008-04-08,https://i.scdn.co/image/ab67616d0000b273526ed087976140638ff804c4,1,1,227466,https://p.scdn.co/mp3-preview/f7844bf48de02afbf7317567b7571e00b83340c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USAT20801327,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.78,0.909,7.0,-11.917,0.0,0.0506,0.111,0.00924,0.156,0.726,120.188,4.0,,Rhino Atlantic,"C © 1991 Atlantic Recording Corp., a Warner Music Group Company, P ℗ 1991 Atlantic Recording Corp., a Warner Music Group Company",7717 +7718,spotify:track:2wrJq5XKLnmhRXHIAf9xBa,"10,000 Hours (with Justin Bieber)","spotify:artist:7z5WFjZAIYejWy0NI5lv4T, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Dan + Shay, Justin Bieber",spotify:album:4ow6xJwn49gpWz7iHpOzWY,"10,000 Hours (with Justin Bieber)","spotify:artist:7z5WFjZAIYejWy0NI5lv4T, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Dan + Shay, Justin Bieber",2019-10-04,https://i.scdn.co/image/ab67616d0000b27386953b1cbaa29e477db0b479,1,1,167693,https://p.scdn.co/mp3-preview/d36cde63177e7e6d460340bd5763780323b6374e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USWB11902440,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road,canadian pop,pop",0.654,0.63,10.0,-4.644,1.0,0.0259,0.153,0.0,0.111,0.43,89.991,4.0,,Warner Music Nashville,"C © 2019 Warner Music Nashville LLC., P ℗ 2019 Warner Music Nashville LLC./Def Jam Recordings, a division of UMG Recordings, Inc.",7718 +7719,spotify:track:3oUvvUcdQCOEPujLfd805G,Kiss The World Goodbye,spotify:artist:2Hjj68yyUPiC0HKEOigcEp,Jesse McCartney,spotify:album:77rnUV63tJ8WOh0fgoSfHT,Kiss The World Goodbye,spotify:artist:2Hjj68yyUPiC0HKEOigcEp,Jesse McCartney,2021-07-21,https://i.scdn.co/image/ab67616d0000b273e6563da10ac3d80dfeb06509,1,1,152840,https://p.scdn.co/mp3-preview/c98777e282e5c3f17ee13cec87fb00357ea821a9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBKPL2156858,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.777,0.647,2.0,-5.837,1.0,0.105,0.0584,0.000344,0.0452,0.502,76.074,4.0,,Blue Suit,"C 2021 Blue Suit, P 2021 Blue Suit",7719 +7720,spotify:track:02XnQdf7sipaKBBHixz3Zp,Paparazzi,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:1qwlxZTNLe1jq3b0iidlue,The Fame,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2008-01-01,https://i.scdn.co/image/ab67616d0000b273e691217483df8798445c82e2,1,3,208306,https://p.scdn.co/mp3-preview/769475c6a0156d8458fa41b1110860d8ff41a3cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USUM70824408,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.762,0.692,5.0,-3.973,0.0,0.0437,0.112,0.0,0.094,0.397,114.903,4.0,,Streamline/Interscope,"C © 2008 Interscope Records, P ℗ 2008 Interscope Records",7720 +7721,spotify:track:1jDUEsSWt4YNQBB5X8uuZ2,Sunset,spotify:artist:1goOx6gnQdUllLfSMsL4Rt,Marques Houston,spotify:album:2ozlulRmBtM8PodltLZAIh,Mr. Houston,spotify:artist:1goOx6gnQdUllLfSMsL4Rt,Marques Houston,2009,https://i.scdn.co/image/ab67616d0000b273681f6b3ac5c1ec5abec9d548,1,12,238786,https://p.scdn.co/mp3-preview/9c92e97081e6c220ef894ee8ea072b8c14deb199?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USZXT0933441,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.818,0.373,9.0,-10.255,0.0,0.0564,0.65,0.0,0.379,0.89,107.009,4.0,,Music Works,"C 2010 Musicworks Entertainment Inc This label copy information is the subject of copyright protection. All rights reserved. (C) 2010 Parlophone Records Ltd, P 2010 The copyright in this sound recording is owned by Musicworks Entertainment Inc",7721 +7722,spotify:track:0VNzEY1G4GLqcNx5qaaTl6,Vincent,spotify:artist:1gRNBaI4yn6wCCTvRhGWh8,Don McLean,spotify:album:10jsW2NYd9blCrDITMh2zS,American Pie,spotify:artist:1gRNBaI4yn6wCCTvRhGWh8,Don McLean,1971,https://i.scdn.co/image/ab67616d0000b2730085dd4362653ef4c54ebbeb,1,3,243493,https://p.scdn.co/mp3-preview/b4e8591f8fc4f9a51ff72247de3549c173882ca4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USEM38600091,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.398,0.0851,7.0,-19.387,1.0,0.0368,0.908,5.3e-06,0.34,0.459,90.991,3.0,,Capitol Records,"C © 1971 EMI Catalog, P ℗ 1988 Capitol Records, LLC",7722 +7723,spotify:track:4OTw5splgMdlYklwHMHxLK,Long Cool Woman (In a Black Dress) - 1999 Remaster,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:37fVxdmMKreIb0FnffxjRI,Distant Light (Expanded Edition),spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1971-10-01,https://i.scdn.co/image/ab67616d0000b273bb7dfb2d46ee5158d505d7db,1,7,199200,https://p.scdn.co/mp3-preview/718bebe2fac6d26d559b6babee20cbbdd66d5390?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBGYU9900019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.757,0.868,9.0,-9.326,1.0,0.062,0.411,0.00221,0.355,0.815,138.923,4.0,,BMG Rights Management (US) LLC,"C © 2013 BMG Rights Management (US) LLC, P ℗ 2013 BMG Rights Management (US) LLC",7723 +7724,spotify:track:4AFCrbzvR3vLfekhABLjDU,! (The Song Formerly Known As),spotify:artist:6n3YUZcayLRuAunJUUelvz,Regurgitator,spotify:album:1M9n4vCmOH4lbcHrpt21Qy,Unit,spotify:artist:6n3YUZcayLRuAunJUUelvz,Regurgitator,1997-11-17,https://i.scdn.co/image/ab67616d0000b2738d73373a4b108e7a8007f30b,1,3,206666,https://p.scdn.co/mp3-preview/16f65d467db1b1902da1badb378dd5326f4df02a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,43,AUWA09800180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.643,0.934,11.0,-3.579,1.0,0.0874,0.000171,0.00379,0.218,0.638,114.821,4.0,,WM Australia,"C © 1997 Warner Music Australia Pty Ltd., P ℗ 1997 Warner Music Australia Pty Ltd.",7724 +7725,spotify:track:1ZqBQ2FD2UulxiYPOfTN5c,Say I Love You,spotify:artist:0cVfbS8JHCcrxUJc4F5QCK,Renee Geyer,spotify:album:4mO3ClRFpVMHdQjT29vYpq,So Lucky,spotify:artist:0cVfbS8JHCcrxUJc4F5QCK,Renee Geyer,1981,https://i.scdn.co/image/ab67616d0000b2733560452edc81c1152b7f4968,1,3,213040,https://p.scdn.co/mp3-preview/42e6995c80ccb6b382e7eb03d88073a66cce56be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUMU08100019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.671,0.837,2.0,-6.521,1.0,0.0303,0.0743,0.0,0.106,0.893,115.319,4.0,,WM Australia,"C © 1981 Mushroom Records Pty Limited, P ℗ 1981 Mushroom Records Pty Limited",7725 +7726,spotify:track:45oIGEnIM1t8uzuZgxW6ZD,Don't Forget To Remember,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:22U7HHpKnefIgny3PwM13j,Cucumber Castle,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1970-01-01,https://i.scdn.co/image/ab67616d0000b27371341047c592b972a24bee15,1,12,207066,https://p.scdn.co/mp3-preview/3e2e132445934a16179795b3ac7193ecf495b6a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAKW6901023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.38,0.448,0.0,-11.043,1.0,0.025,0.178,1.21e-06,0.315,0.494,82.374,4.0,,Bee Gees Catalog,"C © 1970 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, P ℗ 1970 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb",7726 +7727,spotify:track:7utcI11TJOG04Vl3noomNX,This Is Tomorrow,spotify:artist:5RNFFojXkPRmlJZIwXeKQC,Bryan Ferry,spotify:album:5mop3U7FxoJDAP3AACa5x2,In Your Mind,spotify:artist:5RNFFojXkPRmlJZIwXeKQC,Bryan Ferry,1977,https://i.scdn.co/image/ab67616d0000b27334bf9833a38f6a32a440021d,1,1,220133,https://p.scdn.co/mp3-preview/334c2aa5802a8715bf6db7fad07a852089e08020?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAAA9900245,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,melancholia,new romantic,new wave,new wave pop,solo wave,sophisti-pop",0.421,0.66,8.0,-8.106,1.0,0.0407,0.152,0.444,0.0948,0.512,119.46,4.0,,EG Records,"C © 1999 Virgin Records Limited, P ℗ 1999 Virgin Records Limited",7727 +7728,spotify:track:2eqSXs0g5E7ydQqLcT58Lr,Beautiful People (feat. Benny Benassi),"spotify:artist:7bXgB6jMjp9ATFy66eO08Z, spotify:artist:4Ws2otunReOa6BbwxxpCt6","Chris Brown, Benny Benassi",spotify:album:4Y0fafStNYB3LWQS6aa7H5,F.A.M.E. (Deluxe Version),spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2011-04-04,https://i.scdn.co/image/ab67616d0000b27325bb6d86da6cf1bab19e61e6,1,13,226773,https://p.scdn.co/mp3-preview/6fe8d283044b75301b9a98b1b84a1c7dd900ce53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI11100070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap,dutch house,edm,electro house,pop dance",0.417,0.806,5.0,-5.339,0.0,0.16,0.0703,0.00637,0.0841,0.545,127.887,4.0,,Jive,"P (P) 2011 JIVE Records, a unit of Sony Music Entertainment",7728 +7729,spotify:track:43TxY9bYSyZ4QRPA0UJddL,Monkey Wrench,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:1zCNrbPpz5OLSr6mSpPdKm,Greatest Hits,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-11-03,https://i.scdn.co/image/ab67616d0000b273136d7250568820409f8fdd60,1,8,230826,https://p.scdn.co/mp3-preview/943da9a4163bbebd8d707c13e2364e752bc6a912?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USRW29600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.395,0.941,4.0,-4.609,1.0,0.0723,2.13e-05,0.000238,0.268,0.681,174.209,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",7729 +7730,spotify:track:0TwCT6rA9dkzJFSzUGCo78,Mean To Me,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:0Vw2BOifLhBx5mvnepOGVf,Crowded House,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1986,https://i.scdn.co/image/ab67616d0000b27376177060a17476581dbe276e,1,1,196026,https://p.scdn.co/mp3-preview/72eec5af72211e4c868e9db2902442afd59213d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCA28600049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.485,0.76,9.0,-14.838,1.0,0.0412,0.0715,0.000173,0.221,0.602,119.02,4.0,,Capitol Records,"C (C) 1986 Capitol Records, Inc.. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Capitol Records, Inc., 1750 North Vine Street, Hollywood, CA 90028., P (P) 2005 Capitol Records, Inc.. All rights reserved.",7730 +7731,spotify:track:6XriyFFLuomM8z2qmKKmpl,In The Still Of The Nite (I'll Remember),spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,spotify:album:7i1IGTmDlkn9XXpkUjyMbt,Legacy - The Greatest Hits Collection,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,2001-10-30,https://i.scdn.co/image/ab67616d0000b273488a34949b10579188c4391e,1,4,169306,https://p.scdn.co/mp3-preview/fa30436e3b1edd83513fddf20617801b2dec814e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USMO10000058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.518,0.259,9.0,-13.003,1.0,0.0352,0.771,0.0,0.371,0.242,78.105,4.0,,Universal-Island Records Ltd.,"C © 2001 Universal Records Inc., P This Compilation ℗ 2001 Universal Records Inc.",7731 +7732,spotify:track:1sXUWdKx03aP9Gmzft58rt,Issues,spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m,Julia Michaels,spotify:album:1FulpD9JiAPbqP2F31pmUP,Issues,spotify:artist:0ZED1XzwlLHW4ZaG4lOT6m,Julia Michaels,2017-01-13,https://i.scdn.co/image/ab67616d0000b2739615e35e0e9e4b2c3dccb520,1,1,176346,https://p.scdn.co/mp3-preview/280043158f1556321e6c41f1a7c154ed5b1f0d33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71615691,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.683,0.427,8.0,-6.827,1.0,0.0777,0.368,0.0,0.0604,0.426,113.634,4.0,,Universal Music Group,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",7732 +7733,spotify:track:3bvi2UlYBk4gGq93U18IQ5,Too Much,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,spotify:album:6yczcYYmQiZslouFGXZAko,It's 2 Easy,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,1966-04-01,https://i.scdn.co/image/ab67616d0000b27344887f6663c15f178d5829e2,1,16,106293,https://p.scdn.co/mp3-preview/3bfa53638ddda3366ca7fcb81d52dc0021d94c90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06600033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,freakbeat,protopunk,psychedelic rock",0.716,0.395,11.0,-8.989,0.0,0.0545,0.4,2.95e-06,0.0921,0.585,130.536,4.0,,Albert Productions,"C © 1966 BMG AM Pty Ltd., P ℗ 1966 BMG AM Pty Ltd.",7733 +7734,spotify:track:2c5wml8wsBnPfNSbCZ574T,Take a Picture,spotify:artist:01WjpKiWVNurV5hjIadB8C,Filter,spotify:album:5G6pS4ES22Np0hehqJYIct,Title Of Record,spotify:artist:01WjpKiWVNurV5hjIadB8C,Filter,1999-08-23,https://i.scdn.co/image/ab67616d0000b273615484d88ae54b0a5b82cfe4,1,6,359520,https://p.scdn.co/mp3-preview/e12b8ad5b7c03a45537aa01f6ae8960a390b69c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRE10900252,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,industrial metal,nu metal,post-grunge",0.446,0.762,2.0,-8.971,1.0,0.0422,0.000103,7.2e-05,0.26,0.276,98.993,4.0,,Concord Music Group,"C 1999 Concord Music Group, Inc., P 1999 Concord Music Group, Inc.",7734 +7735,spotify:track:4FdDorlbJTVHcH3djLbIfn,Ode To Billie Joe,spotify:artist:4E9w0bms6HcEppFlWjeW2d,Bobbie Gentry,spotify:album:05I1EsreLq47JU8pypj7TR,Ode To Billie Joe,spotify:artist:4E9w0bms6HcEppFlWjeW2d,Bobbie Gentry,1967-08-21,https://i.scdn.co/image/ab67616d0000b273c052a03d8f5e9e2bff95b99d,1,10,255001,https://p.scdn.co/mp3-preview/8e132ee143f38f6e4a8129b1a496729e39a56853?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USCN18900028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.637,0.189,7.0,-10.726,1.0,0.0471,0.721,0.0,0.0939,0.695,120.142,4.0,,EMI Catalogue,"C © 1967 Capitol Records Nashville, P ℗ 1967 Capitol Records Nashville",7735 +7736,spotify:track:4nVBt6MZDDP6tRVdQTgxJg,Story of My Life,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:7p1fX8aUySrBdx4WSYspOu,Midnight Memories (Deluxe),spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2013-11-25,https://i.scdn.co/image/ab67616d0000b2732f76b797c382bedcafdf45e1,1,2,245493,https://p.scdn.co/mp3-preview/9c3f89f926a702034ae182e723b2d601c2bd754d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,GBHMU1300210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.6,0.663,3.0,-5.802,1.0,0.0477,0.225,0.0,0.119,0.286,121.07,4.0,,Syco Music,P (P) 2013 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,7736 +7737,spotify:track:0V1UrYfF9QmRwtpULzXQgw,Regular Touch,spotify:artist:5ujrA1eZLDHR7yQ6FZa2qA,Vera Blue,spotify:album:0YneCKu6aJCtBSkP9f8rrK,Perennial,spotify:artist:5ujrA1eZLDHR7yQ6FZa2qA,Vera Blue,2017-07-21,https://i.scdn.co/image/ab67616d0000b2732e86be39251574edc3a323bc,1,3,208146,https://p.scdn.co/mp3-preview/79d02e208da5497f6d59b06fefeeb7d51111dcae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71700477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop",0.617,0.555,8.0,-7.802,0.0,0.132,0.181,5.68e-06,0.111,0.462,93.833,4.0,,Universal Music Group,"C © 2017 Universal Music Australia Pty Ltd., P An Island Records Australia release;℗ 2017 Universal Music Australia Pty Ltd.",7737 +7738,spotify:track:443VARdacv4KDvymFkZ8Mt,This Is How We Do It,spotify:artist:0iVrCROxeyon7MZUW3MfzT,Montell Jordan,spotify:album:2Ijn9qdA63L0xyqBt61isF,Best Of Montell Jordan,spotify:artist:0iVrCROxeyon7MZUW3MfzT,Montell Jordan,2015-09-25,https://i.scdn.co/image/ab67616d0000b27322ee52953c4276eec91dcf1e,1,1,237546,https://p.scdn.co/mp3-preview/2387825b996ad8f192ad5264875563be4003c703?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70728132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,new jack swing,r&b,urban contemporary",0.788,0.702,1.0,-7.331,1.0,0.0652,0.0177,0.0,0.42,0.774,103.654,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",7738 +7739,spotify:track:4suhxpsuFo9CdUVyOYB6Kl,Swear It Again - Radio Edit,spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,spotify:album:3Iq8rXgxwlSPpRsIacNLgK,Greatest Hits,spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,2011-11-21,https://i.scdn.co/image/ab67616d0000b2737635ddd429d1369e4742360c,1,1,247626,https://p.scdn.co/mp3-preview/499076d4aef4aff0a84c7ef0384cf3d9f6d6617f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.57,0.586,9.0,-5.986,1.0,0.0297,0.333,0.0,0.12,0.327,130.099,4.0,,RCA Records Label,P (P) 2011 Sony Music Entertainment UK Limited,7739 +7740,spotify:track:6ebkx7Q5tTxrCxKq4GYj0Y,Club Can't Handle Me (feat. David Guetta),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai","Flo Rida, David Guetta",spotify:album:1TwNATuAqnNjTd5BSvFZlS,Only One Flo (Part 1),spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2010-11-24,https://i.scdn.co/image/ab67616d0000b273c0ddb38854cde41708d606a1,1,7,234560,https://p.scdn.co/mp3-preview/4eb7cf3beaef7d774c99206cbf24b6b2f83fbb52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USAT21001281,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,big room,dance pop,edm,pop,pop dance",0.616,0.869,0.0,-3.911,1.0,0.0327,0.0283,0.0,0.064,0.473,127.966,4.0,,Poe Boy/Atlantic,"C © 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",7740 +7741,spotify:track:0cQUOFWG27UCdOS1F8s80V,Spaceman,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,spotify:album:0G1t4uPgOGjvH9FJcEjXRb,Day & Age,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,2008-11-18,https://i.scdn.co/image/ab67616d0000b27391c72687466c99b3b8345260,1,3,284546,https://p.scdn.co/mp3-preview/4e3fc69c1eda3e6fceeb21cb37098fb5d2b4e3eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70842814,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,modern rock,permanent wave,rock",0.526,0.921,4.0,-4.07,1.0,0.0549,0.00273,0.000728,0.126,0.85,152.019,4.0,,Island Records,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",7741 +7742,spotify:track:5iR5GQnY5ds7mxizUUVyfl,Killing Me Softly,spotify:artist:5UftfQWTTrlhXc1yhQqzd0,C. J. Johnson,spotify:album:0rL0hPe4jsHSoNq3Z0i4VY,The Feel Sessions - Accoustic Set Vol. 1,spotify:artist:5UftfQWTTrlhXc1yhQqzd0,C. J. Johnson,2006,https://i.scdn.co/image/ab67616d0000b273b38048a74033e3bcde364a7d,1,2,251400,https://p.scdn.co/mp3-preview/65cad00a5233d623da6df274b1f20d3961229c10?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEC830601009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,acoustic cover,0.668,0.291,7.0,-10.136,0.0,0.0294,0.916,0.00495,0.0751,0.357,118.135,4.0,,Fuego,"C 2006 FUEGO, P 2006 FUEGO",7742 +7743,spotify:track:5kr3j5Clb9rjEposoMyLVt,Welcome to Paradise,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:4uG8q3GPuWHQlRbswMIRS6,Dookie,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,1994-02-01,https://i.scdn.co/image/ab67616d0000b273db89b08034de626ebee6823d,1,5,224133,https://p.scdn.co/mp3-preview/3997c511ba41414ffd460b57caefb59b925ebbea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USRE19900149,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.37,0.96,3.0,-4.162,0.0,0.0378,0.000241,0.0116,0.0563,0.717,89.428,4.0,,Reprise,"C © 1994 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S., P ℗ 1994 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S.",7743 +7744,spotify:track:0Cq5h2Xnn6EqA5dhDQUcss,Thunderball,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,spotify:album:4ZUMKIP2q2iWW61GJQU1cv,The Best Of ... Tom Jones,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,1997-10-13,https://i.scdn.co/image/ab67616d0000b2736168a09c3fdc2e00d00689bd,1,5,171066,https://p.scdn.co/mp3-preview/e6d2afd6b3305e324f5e7bf19b12e963f6d1ae74?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBF076520920,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion",0.266,0.673,3.0,-5.618,0.0,0.0371,0.609,4.26e-05,0.595,0.45,94.319,4.0,,Decca Music Group Ltd.,"C © 1997 Decca Music Group Limited, P This Compilation ℗ 1997 Decca Music Group Limited",7744 +7745,spotify:track:2QKRYxSyOExxnOoTD453dC,A Whole New World (Aladdin's Theme),"spotify:artist:49iKbKGqgn8OESkW5WduX0, spotify:artist:3J9tQvcK0bY3CcVcgRELxH, spotify:artist:3xvaSlT4xsyk6lY1ESOspO","Peabo Bryson, Regina Belle, Disney",spotify:album:1Eq5qk8DnHWGOZT2cAASP2,Aladdin: Special Edition Soundtrack,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2004-01-01,https://i.scdn.co/image/ab67616d0000b273e1776feea9ad1685fc34cd60,1,21,250400,https://p.scdn.co/mp3-preview/371d8b9194ef9d767cccaa388acb9d7ada1eb924?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USWD10110154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"quiet storm,contemporary r&b,quiet storm,urban contemporary,movie tunes",0.545,0.187,2.0,-17.103,1.0,0.036,0.63,0.0,0.176,0.126,107.951,4.0,,EMI Gold,"C © 2006 Disney, P This Compilation ℗ 2004 Walt Disney Records, Inc",7745 +7746,spotify:track:02MWAaffLxlfxAUY7c5dvx,Heat Waves,spotify:artist:4yvcSjfu4PC0CYQyLy4wSq,Glass Animals,spotify:album:0KTj6k94XZh0c6IEMfxeWV,Dreamland (+ Bonus Levels),spotify:artist:4yvcSjfu4PC0CYQyLy4wSq,Glass Animals,2020-08-06,https://i.scdn.co/image/ab67616d0000b2739e495fb707973f3390850eea,1,14,238805,https://p.scdn.co/mp3-preview/3ad42c65bc41d0845369a662a21d0c1e25df67fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBUM72000433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gauze pop,indietronica,modern rock,pov: indie,shiver pop",0.761,0.525,11.0,-6.9,1.0,0.0944,0.44,6.7e-06,0.0921,0.531,80.87,4.0,,Polydor Records,"C © 2020 Wolf Tone Records, a division of Universal Music Operations Limited, P ℗ 2020 Wolf Tone Records, a division of Universal Music Operations Limited",7746 +7747,spotify:track:2a33x9SW58ztVPPdD9ZSM8,All My Lovin,spotify:artist:0LmgCb9GDONh4eFlyzIhUE,Johnny Young & Kompany,spotify:album:1TJTD57o8R9XXUKnmZa7o1,Step Back With,spotify:artist:0LmgCb9GDONh4eFlyzIhUE,Johnny Young & Kompany,1992,https://i.scdn.co/image/ab67616d0000b27379d41459281ee4db94923c46,1,10,179626,https://p.scdn.co/mp3-preview/787a76538d9250edbc3f9bdd354b374b6cc283c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUFE09400022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic australian country,0.18,0.313,0.0,-12.975,1.0,0.0295,0.224,1.76e-06,0.124,0.315,95.357,4.0,,WM Australia,"C © 1992 Festival Records, P ℗ 1992 Festival Records",7747 +7748,spotify:track:1f8UCzB3RqIgNkW7QIiIeP,Heart Skips a Beat (feat. Rizzle Kicks),"spotify:artist:3whuHq0yGx60atvA2RCVRW, spotify:artist:2ajhZ7EA6Dec0kaWiKCApF","Olly Murs, Rizzle Kicks",spotify:album:2OvZ8JCShhvxNkptwoGjve,In Case You Didn't Know,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2011-11-28,https://i.scdn.co/image/ab67616d0000b273ff2057b7343d2233451ff8e7,1,1,202266,https://p.scdn.co/mp3-preview/bb6789b8baff0d0dcafe83e7b0506788445c41f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBARL1100728,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop,uk hip hop",0.843,0.881,9.0,-3.951,1.0,0.0581,0.14,0.0,0.0765,0.876,110.621,4.0,,Epic,P (P) 2011 Sony Music Entertainment UK Limited,7748 +7749,spotify:track:3f8Uygfz3CIpUCo6H6iNOJ,Slow Dancing in a Burning Room,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:6feeQj5H1QIpt1y17F1jJG,Continuum,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2006,https://i.scdn.co/image/ab67616d0000b2733c1aa231980ba09ce7b60cdf,1,8,242000,https://p.scdn.co/mp3-preview/6d12adc4a57955aea80caa0f6b81b71c6301788e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10603632,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.668,0.361,1.0,-8.69,0.0,0.0273,0.573,0.00506,0.0805,0.288,134.15,5.0,,Aware/Columbia,"P (P) 2006, 2007 Aware Records LLC",7749 +7750,spotify:track:0NPRq1Ti6JYKOqSyiVYWZT,Back from the Edge,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:7oiJYvEJHsmYtrgviAVIBD,Back from the Edge,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2016-10-28,https://i.scdn.co/image/ab67616d0000b27320beb61f61fcbeb33b10a9ab,1,1,234146,https://p.scdn.co/mp3-preview/e1e5256bf39b113df9ec23e2d48c83f7bbb59cda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,DEE861600585,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.486,0.726,7.0,-4.441,0.0,0.0539,0.091,0.0,0.122,0.474,73.102,4.0,,Columbia,P (P) 2016 Sony Music Entertainment Germany GmbH,7750 +7751,spotify:track:61i3tMeBgaLEAaGZcBLALc,Rock Hard,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,spotify:album:4wdlHUHVAVliRemEtiBIEW,Rock Hard,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,1980,https://i.scdn.co/image/ab67616d0000b2738a1e41f9f8d2d20e4ec87c8b,1,1,200933,https://p.scdn.co/mp3-preview/c2873ef3f09c6e0dee3c50399095b846494f8b73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBLY1200472,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.39,0.873,2.0,-7.267,1.0,0.0403,0.00154,1.17e-05,0.081,0.852,173.921,3.0,,Cherry Red Records,"C (C) 2012 Cherry Red Records, P (P) 2012 7Ts Records",7751 +7752,spotify:track:0tHOhXCKhFB5odvbMYEMbb,Neopolitan Dreams,spotify:artist:53f2OKMfVLTsHFkGyA5dnz,Lisa Mitchell,spotify:album:0JR5U7wsYbHaSZhkYS2r7X,Wonder (Standard),spotify:artist:53f2OKMfVLTsHFkGyA5dnz,Lisa Mitchell,2009-07-09,https://i.scdn.co/image/ab67616d0000b2736eb05bca232ae1db890d25bc,1,2,193946,https://p.scdn.co/mp3-preview/39873f2cf5500d174caa0176ac5c6cf64e4abf0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBARL0900654,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian indie folk,australian indigenous music",0.739,0.485,0.0,-10.715,1.0,0.0299,0.22,0.0,0.105,0.492,113.98,4.0,,WM Australia,"C © 2009 Warner Music Australia Pty Limited. Marketed and distributed by Warner Music Australia Pty Limited in Australia and New Zealand, P ℗ 2009 Warner Music Australia Pty Limited",7752 +7753,spotify:track:5OWokvF4QOqMDQ8ByQsm6V,Shake It Up,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:4lDlCfyIhAXwP3hO2GVUaw,Shake It Up,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,1981-11-06,https://i.scdn.co/image/ab67616d0000b273e88d3b5d636ad86643f3a804,1,2,215440,https://p.scdn.co/mp3-preview/c7627d615751f391e98080359cd0463bd9530fe2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USEE18100033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.692,0.74,0.0,-7.466,1.0,0.0329,0.0723,8.83e-05,0.136,0.864,147.274,4.0,,Elektra Records,"C © 1981 Elektra Entertainment, P ℗ 1981 Elektra Entertainment",7753 +7754,spotify:track:1tNJrcVe6gwLEiZCtprs1u,3 Nights,spotify:artist:6USv9qhCn6zfxlBQIYJ9qs,Dominic Fike,spotify:album:1DNx0H5ZX1ax3yyRwtgT4S,"Don't Forget About Me, Demos",spotify:artist:6USv9qhCn6zfxlBQIYJ9qs,Dominic Fike,2018-10-16,https://i.scdn.co/image/ab67616d0000b2734a42166d927b3acce345c5c0,1,1,177666,https://p.scdn.co/mp3-preview/8325ba1536d8717e84cc033a80928331c2a8551a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USQX91802455,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative pop rock,pov: indie",0.815,0.518,7.0,-6.594,0.0,0.0897,0.223,0.0,0.104,0.877,151.891,4.0,,Columbia,"P (P) 2018 Sandy Boys, LLC., under exclusive license to Columbia Records, a Division of Sony Music Entertainment",7754 +7755,spotify:track:5aWvinQcbc1W1WdP0GQ6J1,Electric Blue,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,spotify:album:5Pf2kkz10HySmJjWu2Fhd4,Man Of Colours,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,1987-09-21,https://i.scdn.co/image/ab67616d0000b273d1565d17bd1808f0ee0da90d,1,2,263680,https://p.scdn.co/mp3-preview/5fa404ca84a0dc56defe32827fa1c9e8f00e19d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,AUC441100033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic,sophisti-pop,synthpop",0.688,0.909,10.0,-4.756,1.0,0.0354,0.0608,1.97e-06,0.1,0.641,109.673,4.0,,Diva,"C © 2012 Diva Records, P ℗ 2012 Diva Records",7755 +7756,spotify:track:7fyo8M3HAdhU1XTfLH05al,Secret Garden,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,spotify:album:50OBIvFZb1J8Cz5hyyHJdj,Greatest Hits,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,1995-02-27,https://i.scdn.co/image/ab67616d0000b2736c4b9a2a1a51b76e5182f8bb,1,15,266600,https://p.scdn.co/mp3-preview/b167b294864d64bf653941d407ce853ee9147af5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19500017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"heartland rock,mellow gold,permanent wave,rock,singer-songwriter",0.525,0.285,0.0,-16.56,1.0,0.0266,0.494,0.0999,0.117,0.131,86.83,4.0,,Columbia,P (P) 1995 Bruce Springsteen,7756 +7757,spotify:track:2Y0wPrPQBrGhoLn14xRYCG,Come & Go (with Marshmello),"spotify:artist:4MCBfE4596Uoi2O4DtmEMz, spotify:artist:64KEffDW9EtZ1y2vBYgq8T","Juice WRLD, Marshmello",spotify:album:6n9DKpOxwifT5hOXtgLZSL,Legends Never Die,spotify:artist:4MCBfE4596Uoi2O4DtmEMz,Juice WRLD,2020-07-10,https://i.scdn.co/image/ab67616d0000b2733e0698e4ae5ffb82a005aeeb,1,12,205484,https://p.scdn.co/mp3-preview/56bf05555aca85738ac99236d8fd58a936c47e36?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,USUG12001904,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,melodic rap,rap,brostep,edm,pop,progressive electro house",0.625,0.814,0.0,-5.181,1.0,0.0657,0.0172,0.0,0.158,0.535,144.991,4.0,,Grade A Productions/Interscope Records,"C © 2020 Grade A Productions, LLC, under exclusive license to Interscope Records, P ℗ 2020 Grade A Productions, LLC, under exclusive license to Interscope Records",7757 +7758,spotify:track:04iCsRraf8cH2HnS26BuwY,Nasty Girl - Main,spotify:artist:0kEcxP5ezzvP5RcO51TCBD,Nitty,spotify:album:50DZkQXHtsUjZksvKZ77q4,Players Paradise,spotify:artist:0kEcxP5ezzvP5RcO51TCBD,Nitty,2005-01-01,https://i.scdn.co/image/ab67616d0000b2730ac1fca52a343a1ad68d03d4,1,3,248466,https://p.scdn.co/mp3-preview/c5695ba825d4f8999c4ba7f6400d780ba9d2a241?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR10400585,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bronx hip hop,0.937,0.98,2.0,-5.037,1.0,0.0473,0.0566,0.000373,0.0273,0.939,122.007,4.0,,Universal Music,"C © 2005 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Records, a Division of UMG Recordings, Inc.",7758 +7759,spotify:track:6XanIH6OX3Kq41kU6gnLjA,Life Goes On,spotify:artist:2d3VHzlOEwXvmBdS4pzOPL,LeAnn Rimes,spotify:album:6xPQ1KliozUso45L09UzG0,All-Time Greatest Hits,spotify:artist:2d3VHzlOEwXvmBdS4pzOPL,LeAnn Rimes,2015-02-03,https://i.scdn.co/image/ab67616d0000b273e3b1e713258a8eccfbf12a97,1,16,213360,https://p.scdn.co/mp3-preview/c17f51e204a1e6acedd0a409d13a3ba051abd8f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USCRB0201646,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,country dawn,country road",0.558,0.851,2.0,-4.561,1.0,0.106,0.174,0.0,0.553,0.85,191.964,4.0,,Curb Records,"C 2015 Curb Records, Inc., P 2015 Curb Records, Inc.",7759 +7760,spotify:track:6vnDoUOHTiVB5DvX18tJon,Say It,"spotify:artist:6nxWCVXbOlEVRexSbLsTer, spotify:artist:4NHQUGzhtTLFvgF5SZesLK","Flume, Tove Lo",spotify:album:2lBRNqB9iOJZFNu1JOSUBW,Skin,spotify:artist:6nxWCVXbOlEVRexSbLsTer,Flume,2016-05-27,https://i.scdn.co/image/ab67616d0000b273bbcee7c6bb62b2ebcf3ef33c,1,5,262521,https://p.scdn.co/mp3-preview/a5dda0293e98412eced450b88fc46ccb8a95f355?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,AUFF01600799,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,australian indie,downtempo,edm,indietronica,dance pop,metropopolis,pop,swedish electropop,swedish pop,swedish synthpop",0.597,0.531,3.0,-6.83,0.0,0.0295,0.0685,3.72e-06,0.0617,0.271,74.938,4.0,,Future Classic,"C 2016 Future Classic, P 2016 Future Classic",7760 +7761,spotify:track:5xC8uOesnn0udeXAYlAnoY,Alright,spotify:artist:0sHeX8oQ6o7xic3wMf4NBU,Supergrass,spotify:album:3YfIjaJEWqiSbKPguS9Bxd,I Should Coco,spotify:artist:0sHeX8oQ6o7xic3wMf4NBU,Supergrass,1995-05-15,https://i.scdn.co/image/ab67616d0000b2737d2fd2378160e40c96bc61ff,1,4,180880,https://p.scdn.co/mp3-preview/5662323fe09d95d506c2ef5211f66ff38efaf16f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,GBAYE9500044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,britpop,oxford indie",0.467,0.958,4.0,-4.808,0.0,0.0775,0.000479,0.199,0.299,0.701,145.92,4.0,,Echo,"C © 1995 The Echo Label Limited, a BMG Company trading as ECHO, P ℗ 1995 The Echo Label Limited, a BMG Company trading as ECHO",7761 +7762,spotify:track:5AJrhrwz4oSZX2PwwV4qrN,Time of the Season - Mono Version,spotify:artist:2jgPkn6LuUazBoBk6vvjh5,The Zombies,spotify:album:7K6JtyaSSVr7HidQsCHun0,Odessey and Oracle,spotify:artist:2jgPkn6LuUazBoBk6vvjh5,The Zombies,1968-04-19,https://i.scdn.co/image/ab67616d0000b2736de69821e8460a9d689e20ba,1,12,214026,https://p.scdn.co/mp3-preview/2f88e736844deead8ac1bdf555ae2ccdc7477e8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBCBS6732269,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,british invasion,classic rock,folk rock,psychedelic rock",0.537,0.7,4.0,-6.852,0.0,0.0366,0.142,1.58e-06,0.383,0.695,117.111,4.0,,Marquis Enterprises Ltd,"C 1968 Marquis Enterprises Ltd, P 1968 Marquis Enterprises Ltd",7762 +7763,spotify:track:4rkiST7hsHEuU5EMvApemD,Everybody's Free (To Feel Good),spotify:artist:2wnJCxpnKAagrdBJAvaDrQ,Rozalla,spotify:album:2xLMSSS0oFoJshrOIrvK7b,The Very Best of Rozalla,spotify:artist:2wnJCxpnKAagrdBJAvaDrQ,Rozalla,2000,https://i.scdn.co/image/ab67616d0000b2731565c9aedb499f93c8d170fd,1,2,211733,https://p.scdn.co/mp3-preview/8c65fff6dc6d63e9e94e37e4de8ccf76faaa5a32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBBLG0400723,spotify:user:bradnumber1,2021-08-08T09:26:31Z,diva house,0.588,0.929,9.0,-9.278,0.0,0.0778,0.013,0.000783,0.231,0.175,130.103,4.0,,Amazon,"C (C) 2010 Demon Music Group Ltd., P (P) 2000 Amazon Reords",7763 +7764,spotify:track:6H9BaFXUq95NQpkkFBGuv3,Take Me Over (feat. Safia)),spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,spotify:album:6L5Jb5J7NPdIPvehlI4LIb,Wild Energy 2015 (Mixed by Hard Dance Alliance),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-02-20,https://i.scdn.co/image/ab67616d0000b273c3093797201028fc842e493f,1,19,208121,https://p.scdn.co/mp3-preview/6a79bd3bb2709ca4c4d738cf344b6c15b7c4e950?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUVC01437211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian electropop,australian indie,edm",0.49,0.803,6.0,-3.211,0.0,0.0502,0.0088,0.0,0.114,0.425,97.151,4.0,,Central Station Records,P 2015 Central Station Records,7764 +7765,spotify:track:2HPB3px8MJZRMfu1L65Z41,Does Your Mother Know,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:7iLuHJkrb9KHPkMgddYigh,Voulez-Vous,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1979,https://i.scdn.co/image/ab67616d0000b273aa22899360d8ba6704732dec,1,6,193440,https://p.scdn.co/mp3-preview/29f2065cc1fae5533c2b0e441d73d3b5af918162?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,SEAYD7901060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.728,0.865,7.0,-5.68,1.0,0.0364,0.151,2.43e-05,0.0906,0.975,135.571,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",7765 +7766,spotify:track:7GK2KVYH8FrTC9zehmjVMd,Ring My Bell,spotify:artist:3Dd6jD1AApgtNoU6SJWR7P,Anita Ward,spotify:album:5G7Hry7SFLrdsvPu12EUyV,Ring My Bell,spotify:artist:3Dd6jD1AApgtNoU6SJWR7P,Anita Ward,2005-09-26,https://i.scdn.co/image/ab67616d0000b2733b0e0d19618f2dec4531f368,1,1,491933,https://p.scdn.co/mp3-preview/54682eb44deee12988205f137b02d72902c68050?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSZ10503009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.781,0.556,5.0,-13.067,0.0,0.0611,0.0661,0.0907,0.0339,0.968,125.999,4.0,,601 Music,"C 2005 601 Music, P 2005 601 Music",7766 +7767,spotify:track:3sa06xVNmLLYIxdNNmVQN8,Where Did You Go? (feat. MNEK),"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:7uMh23xWiuR7zsNkuNcm2G","Jax Jones, MNEK",spotify:album:5vSLX6JljaSXuRY2Wqi6xL,Where Did You Go (feat. MNEK),"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:7uMh23xWiuR7zsNkuNcm2G","Jax Jones, MNEK",2022-02-04,https://i.scdn.co/image/ab67616d0000b273490a887b85a95378ea66b41d,1,1,177689,https://p.scdn.co/mp3-preview/c67960d6e8f7ea04de61f7ce9372481d8f561209?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBUM72108841,spotify:user:bradnumber1,2023-04-30T00:27:55Z,"dance pop,edm,house,pop dance,uk dance,house,pop dance,uk contemporary r&b,uk dance,uk pop",0.763,0.782,7.0,-4.541,0.0,0.0346,0.182,7.08e-06,0.293,0.502,127.034,4.0,,Polydor Records,"C © 2022 Universal Music Operations Limited, P ℗ 2022 Universal Music Operations Limited",7767 +7768,spotify:track:2cCWbBmadLbKvr9xddC79R,Too Bad,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:5fKL7vMTXvhR9tov8Kqt3u,Silver Side Up,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2001-09-11,https://i.scdn.co/image/ab67616d0000b273699a422d25adc550dc5aa11c,1,4,232240,https://p.scdn.co/mp3-preview/37645b9e6693cc203248a4f6e37510b28396f4f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,NLA320119568,spotify:user:bradnumber1,2022-08-26T01:41:16Z,"alternative metal,canadian rock,post-grunge",0.598,0.808,10.0,-5.209,1.0,0.0388,0.00304,0.0,0.147,0.288,128.025,4.0,,Roadrunner Records,"C © 2001 The All Blacks B.V., P ℗ 2001 The All Blacks B.V.",7768 +7769,spotify:track:4tdGyzQ3WqygwxOEpbQ8eo,Around the Bend,spotify:artist:68g1s6VqLLLBI3tXR0Bb7C,The Asteroids Galaxy Tour,spotify:album:4S45eZCWeIq3tk8Oabprlv,Around the Bend,spotify:artist:68g1s6VqLLLBI3tXR0Bb7C,The Asteroids Galaxy Tour,2008-11-03,https://i.scdn.co/image/ab67616d0000b273b33dcc46eb932f62e9960902,1,1,229112,https://p.scdn.co/mp3-preview/9cd35cfa991e8916ad4672995d78d71d50faa46e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBWRR0800023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.704,0.907,1.0,-6.408,0.0,0.0373,0.11,0.00982,0.334,0.712,95.026,4.0,,Small Giants,"C (C) 2008 Small Giant, P (P) 2008 Small Giant",7769 +7770,spotify:track:1q4y46jcnwkWZPj1Qz7u4W,Devotion,spotify:artist:1pbHrVayIcVpHI9z97u4bK,Bingo Players,spotify:album:5gx3xmJXJQGF4nvGceA1pn,"ONELOVE MOBILE DISCO 2010 Mixed by Andy Murphy, John Dahlbäck & Bang Gang Deejays",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-12-04,https://i.scdn.co/image/ab67616d0000b27314398fd8988447d0d4bed495,2,1,215773,https://p.scdn.co/mp3-preview/25f1202e84768e77b82104b47abc70f1a263fe02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,NLC280911139,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dutch house,edm,electro house,melbourne bounce,pop dance,progressive electro house,progressive house",0.829,0.656,1.0,-9.454,1.0,0.0586,0.000156,0.877,0.0475,0.285,127.993,4.0,,Onelove,P (P) 2009 ONELOVE & Sony Music Entertainment Australia Pty Ltd.,7770 +7771,spotify:track:1mXuMM6zjPgjL4asbBsgnt,Firework,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:06SY6Ke6mXzZHhURLVU57R,Teenage Dream,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2010-08-24,https://i.scdn.co/image/ab67616d0000b273f619042d5f6b2149a4f5e0ca,1,4,227893,https://p.scdn.co/mp3-preview/f5452ebf843f4c126eacc038fbfdc9502bf0a9b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USCA21001262,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.638,0.831,8.0,-5.039,1.0,0.049,0.142,0.0,0.113,0.649,124.071,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",7771 +7772,spotify:track:3fjXJEcLO9teTpeL8EDrSm,Magic Fountain,spotify:artist:4MlrZKzgi3UuZi2iDKjOar,Art vs Science,spotify:album:4jSYqbenhyolbSdJmEOTpx,The Experiment,spotify:artist:4MlrZKzgi3UuZi2iDKjOar,Art vs Science,2011-02-25,https://i.scdn.co/image/ab67616d0000b2738994a126ca446570218b57f8,1,5,282346,https://p.scdn.co/mp3-preview/36941def60494d833953cf2e7b31eff8ad5891ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVS31000016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian dance,australian indie",0.392,0.837,4.0,-4.742,0.0,0.0733,0.00144,0.126,0.108,0.11,125.258,4.0,,Magellanic,"C 2011 Art vs Science, P 2011 Art vs Science",7772 +7773,spotify:track:5SKXlfKfhNUyJ3GkpI0ELJ,Wonderful World,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,spotify:album:6iZDqkbQcU4sCwy1271iQr,21 Love Songs,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-02-10,https://i.scdn.co/image/ab67616d0000b2734a71cdb0762e05f9230a28ac,1,21,125789,https://p.scdn.co/mp3-preview/f86b244689128f478f1e8b31a364341830ae754b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USRC16006731,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,soul,vocal jazz",0.675,0.554,11.0,-8.388,1.0,0.031,0.693,0.0,0.408,0.887,128.529,4.0,,Legacy Recordings,P This compilation (P) 2015 Sony Music Entertainment,7773 +7774,spotify:track:6520aj0B4FSKGVuKNsOCOi,Chained To The Rhythm,"spotify:artist:6jJ0s89eD6GaHleKKya26X, spotify:artist:4ryoUS0W8qXokfMxrlJt6O","Katy Perry, Skip Marley",spotify:album:03ntx95u0wotf68NnE3aGw,Witness,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2017-06-09,https://i.scdn.co/image/ab67616d0000b2731487979a7e0181a5d0406d1a,1,9,237734,https://p.scdn.co/mp3-preview/6503927850ab2a5f2e21d148e62303ffaca00fc6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71700560,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,modern reggae",0.448,0.801,0.0,-5.363,1.0,0.165,0.0733,0.0,0.146,0.462,189.798,4.0,,Universal Music Group,"C © 2017 Capitol Records, P ℗ 2017 Capitol Records",7774 +7775,spotify:track:4hHbeIIKO5Y5uLyIEbY9Gn,Come Fly With Me - Remastered 1998,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,spotify:album:66v9QmjAj0Wwhh2OpbU4BE,Come Fly With Me (Expanded Edition),spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,1958,https://i.scdn.co/image/ab67616d0000b273068a5559744d17bd5e871740,1,1,199093,https://p.scdn.co/mp3-preview/ecbd865df2da7d28a5ec29949f8c4844e3493060?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USCA29800360,spotify:user:bradnumber1,2024-01-02T05:25:13Z,"adult standards,easy listening,lounge",0.494,0.338,6.0,-11.376,1.0,0.0464,0.847,0.0,0.165,0.499,134.106,1.0,,Capitol Records,"C © 1987 Capitol Records Inc., P This Compilation ℗ 1998 Capitol Records Inc.",7775 +7776,spotify:track:75CyGwBMJ5mSgf79NQhTPF,Cinderella Rockefella,spotify:artist:5t4rRblBWXqobBiD5nkJ37,Anne & Johnny Hawker,spotify:album:2Wx4ffQWMAxD0DN8F5VFg7,Anne & Johnny Hawker,spotify:artist:5t4rRblBWXqobBiD5nkJ37,Anne & Johnny Hawker,1968,https://i.scdn.co/image/ab67616d0000b2736c09e4509aaa6759dc08474c,1,1,151800,https://p.scdn.co/mp3-preview/0c4afddd2d50438c0050adaa152c68c5cad98cb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41800125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.524,0.46,2.0,-8.695,1.0,0.0317,0.279,0.0,0.0677,0.746,131.842,4.0,,Fable Records,"C 1968 Astor Records, P 2017 Southern Cross Music Pty Limited",7776 +7777,spotify:track:0VsEY4KImxFPv0y4v7YEq4,Phoenix,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:7oiJYvEJHsmYtrgviAVIBD,Back from the Edge,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2016-10-28,https://i.scdn.co/image/ab67616d0000b27320beb61f61fcbeb33b10a9ab,1,9,249120,https://p.scdn.co/mp3-preview/c8996f7391d02e054ba8ede1eff2d13a90b5b0c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,DEE861600593,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.507,0.586,9.0,-7.136,1.0,0.088,0.461,0.0,0.128,0.714,149.457,4.0,,Columbia,P (P) 2016 Sony Music Entertainment Germany GmbH,7777 +7778,spotify:track:0MthqhXLlmozTP7MkRviXG,M.O.B.,spotify:artist:1kMPdZQVdUhMDKDWOJM5iK,Tkay Maidza,spotify:album:6hHXm67E7h1Z86G8nEIh89,M.O.B.,spotify:artist:1kMPdZQVdUhMDKDWOJM5iK,Tkay Maidza,2015-02-10,https://i.scdn.co/image/ab67616d0000b2739d94802688337072c1077bc8,1,1,194275,https://p.scdn.co/mp3-preview/653e82f3040aee7ea4073706e0bc9e50bc3c567f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUUM71500119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative r&b,australian hip hop",0.685,0.848,10.0,-3.437,0.0,0.0444,0.3,0.0,0.164,0.467,137.934,4.0,,Dew Process,"C © 2015 Takudzwa Maidza, under exclusive licence to Dew Process/Universal Music Australia, P ℗ 2015 Takudzwa Maidza, under exclusive licence to Dew Process/Universal Music Australia",7778 +7779,spotify:track:6vYK729O29XnvQqPWyLPfe,It's a Sin - 2001 Remaster,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,spotify:album:1rpYTarp7Bam68zdhw7EXG,Actually: Further Listening 1987-1988,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,1987-09-07,https://i.scdn.co/image/ab67616d0000b27379e07d090ff06ddc4610b28f,1,7,300293,https://p.scdn.co/mp3-preview/a6269d1ae6c18ab944bcd33cadfdc37a71f9d665?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE0100057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,permanent wave,synthpop",0.538,0.864,0.0,-5.928,0.0,0.0451,0.243,0.00054,0.239,0.293,127.127,4.0,,Parlophone UK,"C © 2001 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",7779 +7780,spotify:track:3OmEIZ6bYHqlReQ1YLaRHV,Great Southern Land,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,spotify:album:5B3wFWPqWgpRnan9sSSQzr,Primitive Man (Bonus Track Edition),spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,1982-09-06,https://i.scdn.co/image/ab67616d0000b2731930b7403f77c454f3c36680,1,1,317240,https://p.scdn.co/mp3-preview/6b4daf25e5d51f4d8b1f6fb391532ae33cfa2030?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,AUC441100021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic,sophisti-pop,synthpop",0.719,0.842,9.0,-5.603,1.0,0.0284,0.252,0.000218,0.0697,0.421,120.147,4.0,,Diva,"C © 2012 Diva Records, P ℗ 2012 Diva Records, Manufactured & Distributed by Universal Music Australia",7780 +7781,spotify:track:5k6lAqY0Nx5kwsZvA6FtGs,Especially for You (duet with Jason Donovan),"spotify:artist:4RVnAU35WRWra6OZ3CbbMA, spotify:artist:5bnNgwp3nooah9yHAHsnR4","Kylie Minogue, Jason Donovan",spotify:album:7FfyAlMb6eoZbUTZ7V2tBG,Kylie Greatest Hits,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2006-08-05,https://i.scdn.co/image/ab67616d0000b2730dd530f4c8e2424f3d31679a,1,5,236880,https://p.scdn.co/mp3-preview/3634f31a13c64d45552d49a4b9f441380fbdca45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAHK0200216,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop,australian dance,australian pop,europop,new wave pop",0.556,0.837,5.0,-5.646,1.0,0.0437,0.714,0.0,0.0719,0.41,80.081,4.0,,WM Australia,"C © 1997 Mushroom Records, P ℗ 1997 Mushroom Records",7781 +7782,spotify:track:2RMeGXGofxpGolBUyvTnZf,The Wild Colonial Boy,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,spotify:album:4z6lzPnxVfkCibGIbPuIuu,Timeless,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,2015-04-17,https://i.scdn.co/image/ab67616d0000b273eff2b78ab68ae2e8bd8655b3,1,41,266669,https://p.scdn.co/mp3-preview/08c5899fbcd95e4a82eaa726b61abee1979b3d2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,GBUM71302541,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,mellow gold,soft rock",0.448,0.312,1.0,-14.926,1.0,0.0552,0.84,3.8e-06,0.0848,0.403,158.27,3.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",7782 +7783,spotify:track:2S4lAby9LtHrSS8l5kyHO9,All Apologies,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,spotify:album:5pbjLidJuoty9QUOy6X682,MTV Unplugged In New York,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,1994-11-01,https://i.scdn.co/image/ab67616d0000b273f411d2833d932f4d84d616ef,1,13,263293,https://p.scdn.co/mp3-preview/4c21f4bd39dbe8716765c8dae5aa438bf76c4538?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19972713,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,permanent wave,rock",0.616,0.58,1.0,-10.965,1.0,0.0714,0.479,3.4e-05,0.118,0.376,108.969,4.0,,Universal Music Group,"C © 1994 Geffen Records Inc., P ℗ 1994 UMG Recordings, Inc.",7783 +7784,spotify:track:2CwONxMUL0aBC95Gg8j8S5,Stuck On You,spotify:artist:1VD4h1JSUFoCt5HTQKMtZi,Paul Norton,spotify:album:7bcaSMlAHnFsJpY4Wjq5Ff,Under A Southern Sky,spotify:artist:1VD4h1JSUFoCt5HTQKMtZi,Paul Norton,1990-07-01,https://i.scdn.co/image/ab67616d0000b273a5aefd4b226684d9435ca73b,1,2,240000,https://p.scdn.co/mp3-preview/0028b303a7f6fca035d41dcfc4599a5fd19d8434?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUWA02000208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.772,0.533,9.0,-12.736,1.0,0.0303,0.0286,0.00169,0.0542,0.448,124.483,4.0,,WM Australia,"C © 1990 Mushroom Records Pty Ltd, P ℗ 1990 Mushroom Records Pty Ltd",7784 +7785,spotify:track:0V6imIPZVXJEtl2umdNILO,Everything (feat. John Legend),"spotify:artist:7HkdQ0gt53LP4zmHsL0nap, spotify:artist:5y2Xq6xcjJb2jVM54GHK3t","Ella Mai, John Legend",spotify:album:67ErXRS9s9pVG8JmFbrdJ0,Ella Mai,spotify:artist:7HkdQ0gt53LP4zmHsL0nap,Ella Mai,2018-10-12,https://i.scdn.co/image/ab67616d0000b2737ce0faf0620ab9c1779e1fbf,1,9,181644,https://p.scdn.co/mp3-preview/f037c461dceb90dcc5e625db9befd02b5767afb1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USUM71813375,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap,uk contemporary r&b,urban contemporary,neo soul,pop,pop soul,urban contemporary",0.319,0.456,7.0,-5.358,1.0,0.0692,0.433,0.0,0.108,0.0593,80.187,3.0,,10 Summers / Interscope PS,"C © 2018 10 Summers Records, LLC, P ℗ 2018 10 Summers Records, LLC",7785 +7786,spotify:track:1LOlli0YkvRs1vJLSnWARs,Another Life,spotify:artist:3KCX3JQgSE4P3iJGh9iCTP,The Collective,spotify:album:7yJl0qpHyWG64Jm50n04wp,Another Life,spotify:artist:3KCX3JQgSE4P3iJGh9iCTP,The Collective,2013-06-28,https://i.scdn.co/image/ab67616d0000b273d701e2bd5d11cb82213935cf,1,1,230973,https://p.scdn.co/mp3-preview/6923b824a438ae09cd1f792d6ba7bc33731e6050?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM01300302,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,boy band",0.582,0.747,0.0,-4.332,1.0,0.0378,0.0368,0.0,0.0818,0.544,143.073,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,7786 +7787,spotify:track:5D87YPNveULyllS5LGjjwE,Edge of Reality,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:37RnDHLg68pu4owUWJYmMt,Almost in Love,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1970-10-01,https://i.scdn.co/image/ab67616d0000b273f1b1d438731e1ba4fbee57a8,1,3,195920,https://p.scdn.co/mp3-preview/a40c0342d5c55391d38a86707bd888398b9b8772?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USRC10201736,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.563,0.324,7.0,-14.033,1.0,0.0282,0.694,0.0,0.404,0.467,103.495,4.0,,RCA/Legacy,P (P) 1970 Sony Music Entertainment,7787 +7788,spotify:track:0UzMTr7IBIaQpAiyMHe7uK,One,spotify:artist:3YW6OQ9tKlQ01mccFjXmtl,Johnny Farnham,spotify:album:3VpxYgNndpziZiCKslmAMY,Johnny Farnham,spotify:artist:3YW6OQ9tKlQ01mccFjXmtl,Johnny Farnham,1995-01-01,https://i.scdn.co/image/ab67616d0000b2739c54d225d57a10b62ee31185,1,9,169960,https://p.scdn.co/mp3-preview/4f0274f5f9b4c63f49f2ff72f99a86262a482af5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUEM06900642,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.341,0.564,7.0,-6.461,0.0,0.0353,0.0155,0.0,0.123,0.515,128.155,4.0,,EMI Music Australia,"C © 2017 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2017 EMI Recorded Music Australia Pty Ltd.",7788 +7789,spotify:track:5UKeFkVeUfvP6S43I8s9mt,Jailbreak,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:7kkopGL8qBX9KNQu88tH2y,'74 Jailbreak,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1984-10-15,https://i.scdn.co/image/ab67616d0000b27310bf017ea10a0887469e2763,1,1,280960,https://p.scdn.co/mp3-preview/e28363393e2dd0735afc9d599bbfcd623dbb9932?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,AUAP07600031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.572,0.835,9.0,-5.552,1.0,0.079,0.00953,0.0144,0.012,0.591,131.567,4.0,,Columbia,P (P) Compilation 1984 Australian Music Corporation Pty Ltd.,7789 +7790,spotify:track:2XPc8gL9PwxGURQFcFaDJR,Cheerleader - Felix Jaehn Remix Radio Edit,"spotify:artist:5MouCg6ta7zAxsfMEbc1uh, spotify:artist:4bL2B6hmLlMWnUEZnorEtG","OMI, Felix Jaehn",spotify:album:3CDIhRuL5iaenmrd95W3Ym,Cheerleader (Felix Jaehn Remix Radio Edit),spotify:artist:5MouCg6ta7zAxsfMEbc1uh,OMI,2015-03-06,https://i.scdn.co/image/ab67616d0000b273b3b494eb7a611438c08735be,1,1,181826,https://p.scdn.co/mp3-preview/9ef1666d9a28af2e8e531754e1804c736a8e6cec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USQX91500448,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,edm,german dance,pop dance,tropical house,uk dance",0.777,0.663,4.0,-6.117,1.0,0.0305,0.146,1.52e-05,0.174,0.614,118.016,4.0,,Ultra/Louder Than Life/Columbia,"P (P) 2014 Ultra Records, LLC under exclusive license to Columbia Records, a Division of Sony Music Entertainment",7790 +7791,spotify:track:2OyOFtPKYtHHUxFSjR8v0x,Room Full of Roses,spotify:artist:5kFY4Bv5VRSBsM6CUYBoTC,Mickey Gilley,spotify:album:2o3QDnbZKX4cSBFuFosPPx,Super Hits,spotify:artist:5kFY4Bv5VRSBsM6CUYBoTC,Mickey Gilley,1974,https://i.scdn.co/image/ab67616d0000b273c462e3d796846c76fcd997df,1,1,167893,https://p.scdn.co/mp3-preview/33e0d910c7e26cb47351ab144fa3b9f448efa8be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USSM17400224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,country rock,nashville sound",0.59,0.36,0.0,-11.716,1.0,0.0288,0.705,0.132,0.204,0.441,105.825,4.0,,Epic/Nashville,"P P) 1974, 1976, 1980, 1982, 1983, 1997 SONY BMG MUSIC ENTERTAINMENT",7791 +7792,spotify:track:5bJ796cOnGBzSN5bm4mwMj,You're Makin' Me High,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,spotify:album:6rxtWZH5ua9eANwWdwwf9o,Secrets,spotify:artist:3X458ddYA2YcVWuVIGGOYe,Toni Braxton,1996-06-18,https://i.scdn.co/image/ab67616d0000b2735bc7429f54c5f6745c225fc6,1,2,267440,https://p.scdn.co/mp3-preview/f856ee8d86aad54fe2fbad21dc14a2d40fce6f70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USLF29600019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,r&b,urban contemporary",0.853,0.563,10.0,-8.663,0.0,0.0379,0.0118,2.12e-05,0.119,0.893,92.112,4.0,,Arista/LaFace Records,P (P) 1996 LaFace Records LLC,7792 +7793,spotify:track:6PmsdbHtrtKc4WIHeB2WB8,Clarity,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:1JDD38K8LBQbCmVw0pZTIK,In Our Own Sweet Time,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2022-06-10,https://i.scdn.co/image/ab67616d0000b2731e52f02844fd4e9954680869,1,7,227240,https://p.scdn.co/mp3-preview/b2885b2e614916dca8c55b6c8cba56218e70d31e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USAT22201801,spotify:user:bradnumber1,2022-08-18T11:13:21Z,"folk-pop,modern rock",0.551,0.869,0.0,-6.397,1.0,0.046,0.00118,0.000222,0.0972,0.605,125.047,4.0,,Liberation Records,"C 2022 Liberation Records, P 2022 Liberation Records",7793 +7794,spotify:track:3tWNGJRzzP3BUAg8XT4GAp,Blue Bayou,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:14m8svkAlZuLFSsmfcHQsH,Playlist: The Very Best Of Roy Orbison,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2008-05-29,https://i.scdn.co/image/ab67616d0000b273b61c93c736e82ce9ec04bb07,1,6,148800,https://p.scdn.co/mp3-preview/09c480fb906b905ac78a01243cd52138eea69385?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USSM16101576,spotify:user:bradnumber1,2023-08-04T05:07:40Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.531,0.271,0.0,-11.715,1.0,0.0341,0.662,4.8e-06,0.12,0.811,117.403,4.0,,Orbison Records/Legacy,"P (P) Originally Released 1960, 1961, 1962, 1963, 1964, 1965. All rights reserved by SONY BMG MUSIC ENTERTAINMENT. (P) 1989 Orbison Records, Inc., 2008 SONY BMG MUSIC ENTERTAINMENT",7794 +7795,spotify:track:074Xt2DSblp5OOK6lYVuPS,Lovers Who Wander,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,spotify:album:4lP8thNjRiunNToMfq3QUd,The Best Of Dion,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,2001-01-01,https://i.scdn.co/image/ab67616d0000b273fee4f38c11470827a2ab4f96,1,8,150200,https://p.scdn.co/mp3-preview/f254953eb32832a92bb9878167d1c3685c3bcb3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLA19300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rock-and-roll,rockabilly",0.37,0.461,0.0,-12.545,1.0,0.055,0.273,0.0,0.189,0.736,73.358,4.0,,Universal Music Group,"C © 2001 Capitol Records LLC, P ℗ 2001 Capitol Records LLC",7795 +7796,spotify:track:6WEBIVqiEsevfgJefTyuQQ,Too Shy,spotify:artist:0f3kLT4wvi2mFHlHJgV8Hl,Kajagoogoo,spotify:album:52koatNHePHRWEmmkP0z2Z,White Feathers,spotify:artist:0f3kLT4wvi2mFHlHJgV8Hl,Kajagoogoo,1983,https://i.scdn.co/image/ab67616d0000b273858f93b738db08c4e500bd30,1,2,221520,https://p.scdn.co/mp3-preview/a3a5b270a25d4af63e81d324be86adeb536f5659?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBAYE8300270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.702,0.871,10.0,-6.728,0.0,0.0926,0.127,4.18e-05,0.0819,0.664,107.982,4.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",7796 +7797,spotify:track:76S09sHj7GGMJAtOLjmVQ2,Done For Me (feat. Kehlani),"spotify:artist:6VuMaDnrHyPL1p4EHjYLi7, spotify:artist:0cGUm45nv7Z6M6qdXYQGTX","Charlie Puth, Kehlani",spotify:album:4mSjLadCxIz5QDpGwUaEBn,Done For Me (feat. Kehlani),"spotify:artist:6VuMaDnrHyPL1p4EHjYLi7, spotify:artist:0cGUm45nv7Z6M6qdXYQGTX","Charlie Puth, Kehlani",2018-03-15,https://i.scdn.co/image/ab67616d0000b2730c6e2199db8c3710f7e0a520,1,1,180493,https://p.scdn.co/mp3-preview/0f31a95dabe2d1f4a0bed124055ed5a03c3ac345?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21702279,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop,pop,r&b,rap",0.856,0.632,6.0,-3.692,0.0,0.074,0.193,0.0,0.0688,0.697,112.009,4.0,,Artist Partner,"C 2018 Artist Partner Group, Inc., P 2018 Artist Partner Group, Inc.",7797 +7798,spotify:track:6c2Wa5npsUkvrogzNdGfdv,West End Girls - Faces on Posters Mix,"spotify:artist:6lOC7lwSO1ql4Gc2Y3QObY, spotify:artist:7fJkvrfbWiCiQEToPCkmn6","East 17, Mixed By: Mykaell Riley & Jeremy Allom",spotify:album:7MQC2dK8HwlubTC4efNPAO,Walthamstow,spotify:artist:6lOC7lwSO1ql4Gc2Y3QObY,East 17,1993-02-12,https://i.scdn.co/image/ab67616d0000b27395ed4e1097b1704e2408acc3,1,11,267426,https://p.scdn.co/mp3-preview/6b12d94514c2520e9915b2bcfbba48498d605126?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP0000462,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop",0.743,0.888,9.0,-7.321,1.0,0.0709,0.0334,0.022,0.0747,0.748,102.442,4.0,,London Records,"C 1992 London Records 90 Ltd., P 1992 London Records 90 Ltd. except tracks 9 and 11 1993 London Records 90 Ltd.",7798 +7799,spotify:track:2q1IrGfID48gnXawZA5ekH,Dancing To The Same Song,spotify:artist:3gClSlUEpEoQd4IldcqBUz,Elen Levon,spotify:album:0YQ3zrNhYjuXnAKCVJ3cGi,Dancing To The Same Song,spotify:artist:3gClSlUEpEoQd4IldcqBUz,Elen Levon,2012-01-01,https://i.scdn.co/image/ab67616d0000b2739e2967b926adc79b9c09f8f5,1,1,232635,https://p.scdn.co/mp3-preview/4480d16ccfc0c483dc4d01867ae73ee9183d2cda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUNV01200408,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.556,0.886,8.0,-3.83,1.0,0.11,0.0187,0.0,0.173,0.276,129.951,4.0,,Ministry Of Sound,"C © 2012 Ministry Of Sound Australia Pty Ltd, P ℗ 2012 Ministry Of Sound Australia Pty Ltd, Distributed & Marketed in Australia by Ministry of Sound / Universal Music Australia",7799 +7800,spotify:track:5Zea1yhPWuhGKVa9sBFuZu,My Prerogative - Remastered,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:2ti2e8J05nwg9ikcMjW8aS,The Essential Britney Spears,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2014-07-29,https://i.scdn.co/image/ab67616d0000b273e2d88ce9b368639664aa7847,2,1,213893,https://p.scdn.co/mp3-preview/da507bbf15b6f4288e4bb97793257eef2996b1fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USJI10900668,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.763,0.935,10.0,-4.372,0.0,0.104,0.0081,3.45e-06,0.0739,0.636,111.026,4.0,,Jive/Legacy,"P This Compilation (P) 2013 RCA Records, a division of Sony Music Entertainment",7800 +7801,spotify:track:2Nz6aF1umHh5Et6I5H581L,Hooked On A Feeling,"spotify:artist:0UpuH5U4nZ3UGGUJi0Zfbp, spotify:artist:1Ek3VdZ8EPmcvgRIqnHlrF","Blue Swede, Björn Skifs",spotify:album:12UILuDVbIIjLZhcRBNcOJ,Hooked On A Feeling - 40th Anniversary Collection,spotify:artist:0UpuH5U4nZ3UGGUJi0Zfbp,Blue Swede,2014-09-30,https://i.scdn.co/image/ab67616d0000b273e0114a86a2a0a7d8762951d9,1,1,172866,https://p.scdn.co/mp3-preview/349b959f3339c75b269ab47a0f576c5f39ba46cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,SEAMA7343050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic swedish pop,classic swedish pop",0.547,0.82,8.0,-6.728,1.0,0.0805,0.261,0.0,0.3,0.933,118.208,4.0,,Parlophone Sweden,"C © 2014 Parlophone Music Sweden A Warner Music Group Company, P ℗ 2014 Parlophone Music Sweden A Warner Music Group Company",7801 +7802,spotify:track:12KUFSHFgT0XCoiSlvdQi4,Break Free,"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:2qxJFvFYMEDqd7ui6kSAcq","Ariana Grande, Zedd",spotify:album:6EVYTRG1drKdO8OnIQBeEj,My Everything (Deluxe),spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2014-08-22,https://i.scdn.co/image/ab67616d0000b273deec12a28d1e336c5052e9aa,1,5,214840,https://p.scdn.co/mp3-preview/86e074aa8cf7cb9930b5c28415dc7b3a56e5d3ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USUM71409719,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,complextro,edm,german techno,pop,pop dance",0.686,0.702,7.0,-5.325,0.0,0.0455,0.00637,4.46e-05,0.204,0.29,129.948,4.0,,Universal Records,"C © 2014 Republic Records, a division of UMG Recordings, Inc., P ℗ 2014 Republic Records, a division of UMG Recordings, Inc.",7802 +7803,spotify:track:7BNDyzwDboNRR2wmd7GSew,Of The Night,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,spotify:album:5G6oMu9zNW2acdV0lqzI3L,All This Bad Blood,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,2013-01-01,https://i.scdn.co/image/ab67616d0000b273faee7306ec2f36aeccc4bc98,2,9,214205,https://p.scdn.co/mp3-preview/5dda0d137e43da75f6322824c3148e79cae281d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBUM71306498,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop",0.67,0.829,5.0,-7.2,0.0,0.0427,0.0192,0.000225,0.089,0.349,125.01,4.0,,EMI (Virgin),"C © 2013 Virgin Records Limited, P ℗ 2013 Virgin Records Limited",7803 +7804,spotify:track:7jVwYxRPooIkkOzqbfWkXB,My Baby Just Cares for Me,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:2OXZJLXxM8jrY3gBoVNfmz,Nobody but Me (Deluxe),spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2016-10-21,https://i.scdn.co/image/ab67616d0000b273576629f3c4631eb55612a7c7,1,9,195680,https://p.scdn.co/mp3-preview/42a31356ebb2cebb4c308253b68beeab0df30e34?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USRE11600459,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.493,0.534,7.0,-5.524,1.0,0.0401,0.512,0.0,0.361,0.616,120.179,4.0,,Reprise,"C © 2016 Reprise Records, P ℗ 2016 Reprise Records",7804 +7805,spotify:track:20Irf8obthJnYxH7S3wfHn,Only Love Can Hurt Like This,spotify:artist:4fwuXg6XQHfdlOdmw36OHa,Paloma Faith,spotify:album:1wntiqxekueWQttszhDW5h,A Perfect Contradiction (Deluxe),spotify:artist:4fwuXg6XQHfdlOdmw36OHa,Paloma Faith,2014-03-07,https://i.scdn.co/image/ab67616d0000b273a6bc3ea90c3e63b94d6e5054,1,4,232893,https://p.scdn.co/mp3-preview/0fbdfe1aa9aa59bcbf1e3f556ddcfa488430b1ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1301427,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,talent show,uk pop",0.568,0.883,8.0,-4.512,1.0,0.0802,0.0865,0.000115,0.276,0.299,91.026,4.0,,RCA Records Label,P (P) 2014 Sony Music Entertainment UK Limited,7805 +7806,spotify:track:3ZdJffjzJWFimSQyxgGIxN,Just A Dream,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,spotify:album:3mz9p3cA0Cl5oDUlpTxB0c,5.0,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2010-11-12,https://i.scdn.co/image/ab67616d0000b273ad198c2dfdaf6b7fdc460df7,1,4,237800,https://p.scdn.co/mp3-preview/ca0bf2f470733491409c38e198bf990b0b437f9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USUM71020948,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.528,0.753,1.0,-6.162,1.0,0.0307,0.0424,0.0,0.12,0.103,89.954,4.0,,Motown,"C © 2010 Universal Records a division of UMG Recordings Inc., P ℗ 2010 Universal Records a division of UMG Recordings Inc.",7806 +7807,spotify:track:1wKNJ357jNrlMYXOz2eC6g,In Love By Now,spotify:artist:7LnaAXbDVIL75IVPnndf7w,Jamie Foxx,spotify:album:25y4pAGCDU3PG1O2ogFM3s,In Love By Now,spotify:artist:7LnaAXbDVIL75IVPnndf7w,Jamie Foxx,2015-05-15,https://i.scdn.co/image/ab67616d0000b273fe43c5c2ca47c98616221e18,1,1,185626,https://p.scdn.co/mp3-preview/47c2bf29dfdbfb301948c9523b216f392912e8c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USRC11500832,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,pop rap,r&b,southern hip hop,trap,urban contemporary",0.645,0.379,10.0,-8.877,1.0,0.0295,0.81,1.76e-06,0.124,0.278,130.836,4.0,,JB Venture/RCA Records,"P (P) 2015 RCA Records, a division of Sony Music Entertainment",7807 +7808,spotify:track:6XJ2PVp2Vs9G2j5B2Cbbnb,Princess of China - Radio Edit,"spotify:artist:4gzpq5DPGxSnKTe4SA8HAU, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Coldplay, Rihanna",spotify:album:3yddXawPNWK9qUDqB2UMY7,Princess of China,"spotify:artist:4gzpq5DPGxSnKTe4SA8HAU, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Coldplay, Rihanna",2012-06-01,https://i.scdn.co/image/ab67616d0000b2730e56e43adfae6402ab272d17,1,1,217575,https://p.scdn.co/mp3-preview/7d39e8bdbe92d40494ced453f6dab948740749bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAYE1200653,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop,barbadian pop,pop,urban contemporary",0.402,0.7,9.0,-5.918,0.0,0.0361,0.00171,0.00641,0.191,0.314,85.025,4.0,,Parlophone UK,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",7808 +7809,spotify:track:3LtwmK1OfN0dGs9jf3qSjn,Her Diamonds,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,spotify:album:72aNaOna8AV0GZADXRbFlX,Cradlesong,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,2009-06-22,https://i.scdn.co/image/ab67616d0000b273da8f63e21bfaeeaf5be6d445,1,1,280000,https://p.scdn.co/mp3-preview/66ef2f6bed455db024a07b7d6662dca8301fcdff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USAT20900637,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.555,0.924,7.0,-4.93,1.0,0.0604,0.0159,0.0,0.075,0.865,87.606,4.0,,Emblem / Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",7809 +7810,spotify:track:1gFNm7cXfG1vSMcxPpSxec,"Ob-La-Di, Ob-La-Da - Remastered 2009",spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:1klALx0u4AavZNEvC4LrTL,The Beatles (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1968-11-22,https://i.scdn.co/image/ab67616d0000b2734ce8b4e42588bf18182a1ad2,1,4,188960,https://p.scdn.co/mp3-preview/adfa1959f0b3be9c6db8e9ce66ac9e3fff46d2fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAYE0601647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.818,0.728,10.0,-8.331,1.0,0.0314,0.232,0.0642,0.251,0.975,113.059,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",7810 +7811,spotify:track:78qd8dvwea0Gosb6Fe6j3k,Boss Bitch,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,spotify:album:4pmyFpGicLLIgNPc1TQXKc,Boss Bitch,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,2020-01-23,https://i.scdn.co/image/ab67616d0000b27310356a0e81371e6644cb1371,1,1,134239,https://p.scdn.co/mp3-preview/5703175744792dd4ac2353a2d2599d1d458a02b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USAT21907355,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.707,0.955,10.0,-4.593,0.0,0.222,0.127,0.0,0.202,0.575,125.989,4.0,,Atlantic Records,"C © 2020 Kemosabe Records/RCA Records, P ℗ 2020 Kemosabe Records/RCA Records",7811 +7812,spotify:track:65zmFWDgzNuTlpwnErXJ7j,Aussie As,spotify:artist:2VcnJAwkrzgnZ1iEJ1b0ml,Matt Scullion,spotify:album:2SwhJEwrr67HiKHjdQXAJv,Aussie As,spotify:artist:2VcnJAwkrzgnZ1iEJ1b0ml,Matt Scullion,2019-09-23,https://i.scdn.co/image/ab67616d0000b2737bc184f13dee0cef27276ca6,1,1,220241,https://p.scdn.co/mp3-preview/705236927144e2e8737ea685e8259d236c65f002?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUYPX1900001,spotify:user:bradnumber1,2022-06-20T02:54:06Z,australian country,0.454,0.349,2.0,-9.004,1.0,0.0272,0.55,2.37e-06,0.139,0.269,76.611,5.0,,William Osland Consulting,"C 2019 Matt Scullion. Under exclusive license to Checked Label Services., P 2019 Matt Scullion. Under exclusive license to Checked Label Services.",7812 +7813,spotify:track:0rHVd8h0cFwgLgPFem6S60,Girls Like (feat. Zara Larsson),"spotify:artist:0Tob4H0FLtEONHU1MjpUEp, spotify:artist:1Xylc3o4UrD53lo9CvFvVg","Tinie Tempah, Zara Larsson",spotify:album:0EUrNFkbVL5kokjQbzHxl3,Girls Like (feat. Zara Larsson),spotify:artist:0Tob4H0FLtEONHU1MjpUEp,Tinie Tempah,2016-02-26,https://i.scdn.co/image/ab67616d0000b27332a7b8f7a3bd4bd9574f289a,1,1,196000,https://p.scdn.co/mp3-preview/fe8795a6f67643a31db9b808ff30f1287bc0105b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,59,GB7TP1500034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,grime,pop rap,pop,scandipop,swedish electropop,swedish pop",0.916,0.804,0.0,-3.406,1.0,0.049,0.37,1.18e-05,0.0812,0.538,120.028,4.0,,Parlophone UK,"C © 2016 Parlophone Records Limited, a Warner Music Group Company, P ℗ 2016 The copyright in this sound recording is owned by Disturbing London Records Limited under exclusive licence to Parlophone Records Limited, a Warner Music Group Company",7813 +7814,spotify:track:5HQEmiV2lKnSO6qa2fsR7x,I'm Not In Love,spotify:artist:6i6WlGzQtXtz7GcC5H5st5,10cc,spotify:album:1CMgmJjMFskwwmK8h8j1Oj,The Original Soundtrack,spotify:artist:6i6WlGzQtXtz7GcC5H5st5,10cc,1975,https://i.scdn.co/image/ab67616d0000b273d3e47e52f8f218c9ba12b8eb,1,2,366640,https://p.scdn.co/mp3-preview/97b17a635a4cd0d0af4ca38066eb37ce74ed28e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBF087500001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,glam rock,mellow gold,new romantic,soft rock,symphonic rock,yacht rock",0.404,0.523,4.0,-15.7,1.0,0.0575,0.685,0.000498,0.282,0.164,133.738,4.0,,EMI,"C © 1997 Mercury Records Limited, P ℗ 1996 Mercury Records Limited",7814 +7815,spotify:track:2Ms33RTRCT6gArrpcrPxmo,Feel,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:4QyE2i0y4nyxHsiwm6VK9V,Escapology,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2002,https://i.scdn.co/image/ab67616d0000b2733a9ad390e0635b43ff01d250,1,2,263866,https://p.scdn.co/mp3-preview/2f21e7ad58ac37bb9bdb82fb1f3da317cb6ea72b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBFFG0200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.599,0.732,5.0,-6.843,1.0,0.026,0.0145,0.000467,0.143,0.295,97.997,4.0,,Chrysalis UK,"C © 2002 Robert Williams/The In Good Company Co Ltd, P ℗ 2002 Robert Williams/The In Good Company Co Ltd",7815 +7816,spotify:track:7K3lY3aeLcNWe320TK9zwX,Bedroom Eyes,spotify:artist:6E4eoLJTZYyIC5cZVg6fDx,Kate Ceberano,spotify:album:00MnUtAkDl3y4WwvQKK94E,True Romantic - The Best of Kate Ceberano,spotify:artist:6E4eoLJTZYyIC5cZVg6fDx,Kate Ceberano,1999,https://i.scdn.co/image/ab67616d0000b2733fc1ac8da27fdb7ffb967c13,1,10,236933,https://p.scdn.co/mp3-preview/db4d18ce9fc46261dc057ecdb7683b97e5451350?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUMU09900014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian rock",0.78,0.725,1.0,-5.472,1.0,0.0395,0.0662,6.79e-06,0.0823,0.772,142.169,4.0,,WM Australia,"C 1999 Mushroom Records, P 1999 Mushroom Records",7816 +7817,spotify:track:5432DTrALeRWjISDKhCO8A,Father And Son,spotify:artist:6X9aYHnQ75YI8o08aoa0iS,Boyzone,spotify:album:5ERgHLJKUFli3BDnkGQx53,Said And Done,spotify:artist:6X9aYHnQ75YI8o08aoa0iS,Boyzone,1995-08-21,https://i.scdn.co/image/ab67616d0000b273ea8df8afb76aef0d3709d55f,1,13,168066,https://p.scdn.co/mp3-preview/eb38d05415f9d198dda5ddd1b27ae9832aa403f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,IEAAA9400004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.518,0.331,3.0,-12.779,1.0,0.0279,0.302,0.0,0.123,0.146,146.048,4.0,,Universal Music Group,"C © 1995 Universal Music Ireland Ltd., P ℗ 1995 Universal Music Ireland Ltd.",7817 +7818,spotify:track:3jDdpx9PMlfMBS5tOBHFm9,Return of the Mack,spotify:artist:6V3F8MZrOKdT9fU686ybE9,Mark Morrison,spotify:album:6plavTFCGXv5vpy0jZVtOV,Return of the Mack,spotify:artist:6V3F8MZrOKdT9fU686ybE9,Mark Morrison,1996-04-22,https://i.scdn.co/image/ab67616d0000b27301841d493ec3808242042c0f,1,6,213093,https://p.scdn.co/mp3-preview/456989fb9b32c4525f0668676ad5067d20479b4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,GBAHT0200668,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.715,0.833,2.0,-5.379,1.0,0.108,0.00631,0.0,0.164,0.612,95.487,4.0,,WM UK,"C © 1996 Warner Music UK Ltd, P ℗ 1996 Warner Music UK Ltd",7818 +7819,spotify:track:2aoo2jlRnM3A0NyLQqMN2f,All Along the Watchtower,spotify:artist:776Uo845nYHJpNaStv1Ds4,Jimi Hendrix,spotify:album:5z090LQztiqh13wYspQvKQ,Electric Ladyland,spotify:artist:776Uo845nYHJpNaStv1Ds4,Jimi Hendrix,1968-10-25,https://i.scdn.co/image/ab67616d0000b273522088789d49e216d9818292,1,15,240800,https://p.scdn.co/mp3-preview/4f5eb4f96894dcab22691ebc7605cdbc4a7e70aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USQX90900749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,alternative rock,classic rock,hard rock,proto-metal,psychedelic rock,rock",0.438,0.805,8.0,-6.237,1.0,0.0624,0.00255,5.69e-05,0.0842,0.564,113.253,4.0,,Legacy Recordings,"P (P) 2009 Experience Hendrix L.L.C., under exclusive license to Sony Music Entertainment",7819 +7820,spotify:track:5JekI9NYdEz6cSfw4mug35,At This Moment,spotify:artist:1QQBo7mfkehMjDfz1tj5Pq,Billy Vera & The Beaters,spotify:album:5dAsmmBtVLrEvUzUz6hNoT,Hopeless Romantic: The Best Of Billy Vera & The Beaters,spotify:artist:1QQBo7mfkehMjDfz1tj5Pq,Billy Vera & The Beaters,2008-06-24,https://i.scdn.co/image/ab67616d0000b273340bee099a35000911663d0d,1,6,260746,https://p.scdn.co/mp3-preview/974e0bf9ea289599bc99dc7c6c7ea36ca5510f3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USSE90829656,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.392,0.278,6.0,-10.888,1.0,0.0363,0.608,3.18e-06,0.979,0.146,131.12,4.0,,Shout! Factory,"C (C) 2008 Billy Vera, P (P) 2008 Billy Vera",7820 +7821,spotify:track:0WtM2NBVQNNJLh6scP13H8,Calm Down (with Selena Gomez),"spotify:artist:46pWGuE3dSwY3bMMXGBvVS, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","Rema, Selena Gomez",spotify:album:2b2GHWESCWEuHiCZ2Skedp,Calm Down (with Selena Gomez),"spotify:artist:46pWGuE3dSwY3bMMXGBvVS, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","Rema, Selena Gomez",2022-08-25,https://i.scdn.co/image/ab67616d0000b273a3a7f38ea2033aa501afd4cf,1,1,239317,https://p.scdn.co/mp3-preview/b61b32e2928081fc98d438fd8c72919ab4fb12a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,NGA3B2214021,spotify:user:bradnumber1,2023-07-05T22:56:51Z,"afrobeats,nigerian pop,pop,post-teen pop",0.801,0.806,11.0,-5.206,1.0,0.0381,0.382,0.000669,0.114,0.802,106.999,4.0,,Mavin Records / Jonzing World,"C © 2022 Mavin Global Holdings Ltd/Jonzing World Entertainment/SMG Music LLC, under exclusive licence to Interscope Records, P ℗ 2022 Mavin Global Holdings Ltd/Jonzing World Entertainment/SMG Music LLC, under exclusive licence to Interscope Records",7821 +7822,spotify:track:3Si8y5xSh5wcn26l2yqV84,Cold Water (feat. Justin Bieber & MØ),"spotify:artist:738wLrAtLtCtFOLvQBXOXp, spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0bdfiayQAKewqEvaU6rXCv","Major Lazer, Justin Bieber, MØ",spotify:album:73rweOuD3LLPgkyZSXf3On,Cold Water (feat. Justin Bieber & MØ),spotify:artist:738wLrAtLtCtFOLvQBXOXp,Major Lazer,2016-07-22,https://i.scdn.co/image/ab67616d0000b2733032fa0fe777460bae5ffb62,1,1,185351,https://p.scdn.co/mp3-preview/92c3f984d12a0af5fb9aece2f3868d3bc8f620ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,QMUY41600027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,moombahton,pop,pop dance,canadian pop,pop,dance pop,danish pop,electropop,pop dance",0.608,0.798,6.0,-5.092,0.0,0.0432,0.0736,0.0,0.156,0.501,92.943,4.0,,WM Australia,"C © 2016 Third Pardee, LLC, P ℗ 2016 Third Pardee, LLC. Marketed and distributed by Warner Music Australia Pty Ltd under exclusive licence.",7822 +7823,spotify:track:2IA4WEsWAYpV9eKkwR2UYv,Everybody Get Up - Radio Edit,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,spotify:album:5jSAkaiC1BBKZQSZ7wFYOY,Greatest Hits,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,2003-06-02,https://i.scdn.co/image/ab67616d0000b27310df926bec224d743644ea3e,1,4,183840,https://p.scdn.co/mp3-preview/62f2bec26eb5b4bfb269aa52eb3d0e45268b10f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBARL9800114,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.728,0.885,0.0,-4.528,1.0,0.0966,0.00121,0.0,0.113,0.609,96.0,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,7823 +7824,spotify:track:00MrgaGieZ2tO1Z8jwL3W1,Right Place Right Time,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:2hOuWIWkhIxKXj6dUVI734,Right Place Right Time,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2012-11-23,https://i.scdn.co/image/ab67616d0000b27383a1b851143e6adaf56db39b,1,5,193293,https://p.scdn.co/mp3-preview/35246b3844efe44de3cab31893d1857e0af3a23c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1201983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.489,0.886,5.0,-4.449,1.0,0.0538,0.0578,0.0,0.22,0.443,139.941,4.0,,Epic,P (P) 2012 Sony Music Entertainment UK Limited,7824 +7825,spotify:track:2dngx6srtqsxvyh7oGV8FM,Lights & Music,spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,spotify:album:6k3dwEFYKsGrhS40jtiAGt,In Ghost Colours,spotify:artist:4EENT7N7rCBwrddM3s0vFS,Cut Copy,2008-01-01,https://i.scdn.co/image/ab67616d0000b273063651446188d0425c2173cb,1,3,277360,https://p.scdn.co/mp3-preview/c7483111af7b2478579f4de6383820df4936ecc6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70800086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian electropop,electronic rock,electronica,indietronica,neo-synthpop",0.612,0.939,10.0,-4.206,0.0,0.0412,0.0763,0.119,0.749,0.543,125.981,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Modular Recordings, P ℗ 2008 Modular Recordings",7825 +7826,spotify:track:5XcZRgJv3zMhTqCyESjQrF,Poison,spotify:artist:3EhbVgyfGd7HkpsagwL9GS,Alice Cooper,spotify:album:033cvSPAuSU5ArRfIgQSDU,Trash,spotify:artist:3EhbVgyfGd7HkpsagwL9GS,Alice Cooper,1989-07-25,https://i.scdn.co/image/ab67616d0000b2735d149c05419231f335e35bb7,1,1,270080,https://p.scdn.co/mp3-preview/2a0faa69cc2b5a8b4ce4bdae3fe2fe7ba603330a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM18900004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,detroit rock,glam metal,glam rock,hard rock,metal,protopunk,rock",0.28,0.908,2.0,-5.509,0.0,0.109,0.0327,8.85e-06,0.18,0.26,118.698,4.0,,Epic,P (P) 1989 Sony Music Entertainment Inc.,7826 +7827,spotify:track:7jLcHabAmvWNvzGgeWv9NY,I Love You's,spotify:artist:5p7f24Rk5HkUZsaS3BLG5F,Hailee Steinfeld,spotify:album:0KeYs8cmvHvO5ISk5fx78e,I Love You’s,spotify:artist:5p7f24Rk5HkUZsaS3BLG5F,Hailee Steinfeld,2020-03-26,https://i.scdn.co/image/ab67616d0000b273f7574ec4a61c836ecff0651e,1,1,216083,https://p.scdn.co/mp3-preview/bb60e45dcfeb607719731d753fc3dd3eca9d67e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM72003153,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.482,0.787,8.0,-5.09,1.0,0.396,0.0251,0.0,0.209,0.277,107.03,4.0,,Republic Records,"C © 2020 Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Republic Records, a division of UMG Recordings, Inc.",7827 +7828,spotify:track:3aZPzF7Sr0zy3K0EkKyEzk,It Ain't Over 'Til It's Over,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,spotify:album:1cW0de5T5fdedlS4YqvyCv,Greatest Hits,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,2000,https://i.scdn.co/image/ab67616d0000b273550699c44dd74a7663c6ebfa,1,5,242640,https://p.scdn.co/mp3-preview/8a06877eb8e30729259bbf62589dea7c3d482cd5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USVI29100003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,rock",0.663,0.748,6.0,-5.83,1.0,0.0462,0.277,0.003,0.312,0.926,159.719,4.0,,Virgin Records,"C © 2000 Virgin Records America, Inc., P This Compilation ℗ 2000 Virgin Records America, Inc.",7828 +7829,spotify:track:6jHBKCN0A4nYI8Y6RZ5vBj,Duncan,spotify:artist:0M4w6wFmaVFmP4lIndnEU5,Slim Dusty,spotify:album:78LRfatOMrEN0a3Ix1NmeW,No. 50 - The Golden Anniversary Album,spotify:artist:0M4w6wFmaVFmP4lIndnEU5,Slim Dusty,1981-01-01,https://i.scdn.co/image/ab67616d0000b2733e620ce416038674c9928b97,1,18,155026,https://p.scdn.co/mp3-preview/793700cbef5ec3d154800bd86abeb1f630f1d493?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUEM08000003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,bush ballad",0.785,0.557,5.0,-13.548,1.0,0.0361,0.29,0.00134,0.312,0.961,93.064,4.0,,Slim Dusty Enterprises,"C © 2006 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 1981 EMI Recorded Music Australia Pty Ltd.",7829 +7830,spotify:track:0g5EKLgdKvNlln7TNqBByK,Middle,"spotify:artist:540vIaP2JwjQb9dm3aArA4, spotify:artist:0CjWKoS55T7DOt0HJuwF1H","DJ Snake, Bipolar Sunshine",spotify:album:02sEJTj1sye1JaqxqpcSCp,Encore,spotify:artist:540vIaP2JwjQb9dm3aArA4,DJ Snake,2016-08-05,https://i.scdn.co/image/ab67616d0000b273212d776c31027c511f0ee3bc,1,2,220573,https://p.scdn.co/mp3-preview/31f2092a01cba193ae0441cc85a93990af211cea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USUM71515784,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electronic trap,pop,pop dance,gauze pop",0.583,0.695,9.0,-5.336,1.0,0.0423,0.0138,0.0,0.0527,0.224,104.879,4.0,,DJ Snake Def Jam,"C © 2016 DJ Snake Music, under exclusive license to Interscope Records, P ℗ 2016 DJ Snake Music, under exclusive license to Interscope Records",7830 +7831,spotify:track:2rqfA8JU31ctqTxikZXR8J,What I've Done,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:7j01w8Vi8FlP9BsOHWXjyf,What I've Done (Int'l 2-Track),spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2007-05-04,https://i.scdn.co/image/ab67616d0000b2731260f6a53d9a85a1e74667ab,1,1,205613,https://p.scdn.co/mp3-preview/2a595a2e02236d5a9b8936f3de371a9ba1c9eea9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USWB10700721,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.623,0.93,5.0,-5.285,1.0,0.0324,0.0141,1.64e-06,0.138,0.287,120.119,4.0,,Warner Bros.,"C 2007 Warner Bros. Records Inc. for the U.S. and WEA International Inc. for the world outside of the U.S., P 2007 Warner Bros. Records Inc. for the U.S. and WEA International Inc. for the world outside of the U.S.",7831 +7832,spotify:track:6Tgjsd4bD8eb74HOTCr6LC,Accidently Kelly Street,spotify:artist:2qgHV12WsnwzHZGUB9nd9U,Frente!,spotify:album:1ir0cVK6b0TzZgYfgsY6SE,Marvin The Album,spotify:artist:2qgHV12WsnwzHZGUB9nd9U,Frente!,1992,https://i.scdn.co/image/ab67616d0000b2735b102de2e265ae2dd7993808,1,2,201160,https://p.scdn.co/mp3-preview/0aea53b03d324048271a6ab3f55705c56baca97c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUMU09200018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian alternative rock,0.678,0.608,10.0,-9.839,1.0,0.0339,0.28,0.0,0.0638,0.943,152.745,4.0,,WM Australia,"C © 1992 Warner Music Australia Pty Limited, P ℗ 1992 Warner Music Australia Pty Limited",7832 +7833,spotify:track:7ajnitQVYIKKXFaVUZOSEW,Mama Do The Hump,spotify:artist:2ajhZ7EA6Dec0kaWiKCApF,Rizzle Kicks,spotify:album:7dn5EHt0T7jdPf4q0ljrmp,Stereo Typical,spotify:artist:2ajhZ7EA6Dec0kaWiKCApF,Rizzle Kicks,2011-01-01,https://i.scdn.co/image/ab67616d0000b273ae451c89ef63aa41005eded0,1,7,216013,https://p.scdn.co/mp3-preview/f49ad7185a1b8a6c5395dc2f1643af6dfef5aac1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBUM71106438,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk hip hop,0.719,0.889,7.0,-4.088,1.0,0.127,0.00722,0.0,0.0731,0.562,97.987,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Universal Island Records, a division of Universal Music Operations Limited",7833 +7834,spotify:track:0UUQkbfJlEa5qnsC3XHQ45,Foreign Land,spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,spotify:album:6kxdUI5j6cA1yOBIEvzhko,Inshalla (Standard),spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,2009-05-29,https://i.scdn.co/image/ab67616d0000b27307c285218e3b012c277f64bd,1,1,270826,https://p.scdn.co/mp3-preview/b80a0b257701c9545bdabd47fb51c931035aaa97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUWA00900023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,perth indie",0.403,0.938,9.0,-4.633,0.0,0.0475,0.00391,3.23e-05,0.885,0.31,85.501,4.0,,WM Australia,"C © 2009 Warner Music Australia Pty Limited, P ℗ 2009 Warner Music Australia Pty Limited",7834 +7835,spotify:track:3AoeaZs8dFemFJr3JdzOL0,You Are Not Alone,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:3OBhnTLrvkoEEETjFA3Qfk,"HIStory - PAST, PRESENT AND FUTURE - BOOK I",spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1995-06-16,https://i.scdn.co/image/ab67616d0000b273d0593178c6c2594693ee34b7,2,9,345600,https://p.scdn.co/mp3-preview/8514ea0121a2fc28bf0288fb541b19d024e636c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM19500002,spotify:user:bradnumber1,2022-08-31T00:26:25Z,"r&b,soul",0.651,0.402,11.0,-9.303,1.0,0.028,0.639,7.73e-05,0.0765,0.258,119.873,4.0,,Epic,"P (P) 1979, 1982, 1987, 1988, 1991, 1995 MJJ Productions Inc.",7835 +7836,spotify:track:0LXCH2FepNHonEtz61tenS,Go Now!,spotify:artist:5BcZ22XONcRoLhTbZRuME1,The Moody Blues,spotify:album:6t09zAS2zxRNiGEcz3YORG,An Introduction to the Moody Blues,spotify:artist:5BcZ22XONcRoLhTbZRuME1,The Moody Blues,1960,https://i.scdn.co/image/ab67616d0000b27335498dbcc024bc720f8fccd8,1,1,191013,https://p.scdn.co/mp3-preview/471cae3c1cb74495fe13be43141a31a42121a20b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US2Y30615292,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,country rock,flute rock,folk rock,mellow gold,progressive rock,rock,singer-songwriter,soft rock,symphonic rock",0.343,0.522,5.0,-10.082,0.0,0.0348,0.385,0.0,0.132,0.693,119.911,3.0,,Fuel Records,"C (C) 1960 © Fuel Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws., P (P) 1960 © Fuel Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",7836 +7837,spotify:track:2pM15qcmuGUPslSRsvvm7v,I’ll Make Love To You,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,spotify:album:3LYpJyN7wfDy7fTaYWwL2e,Twenty,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,2011-10-25,https://i.scdn.co/image/ab67616d0000b273d7d15eaed0a3f9192dc8869f,2,7,237306,https://p.scdn.co/mp3-preview/394788bfe61092772cb66a5258c500e4c59ac9a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMU9Z1100019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.463,0.621,2.0,-5.111,1.0,0.0291,0.189,0.0,0.086,0.218,140.647,3.0,,Universal Music Group,"C © 2011 MSM Music Group/Benchmark Entertainment., Under Exclusive Licence to Universal International Music B.V., P ℗ 2011 MSM Music Group/Benchmark Entertainment., Under Exclusive Licence to Universal International Music B.V.",7837 +7838,spotify:track:3iJTbZDSnZ676y5qObWDm0,Since U Been Gone,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:6eYW3u9E60TXB8Lg2XlPd9,Since U Been Gone,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2005-01-01,https://i.scdn.co/image/ab67616d0000b27324c2e23f46eb28b0344c1c0d,1,1,188960,https://p.scdn.co/mp3-preview/304dd40f6c00c3ea9806d8313b4ca1aa1a247f1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBCTA0400231,spotify:user:bradnumber1,2023-06-02T06:05:29Z,"dance pop,pop,talent show",0.664,0.741,0.0,-5.391,1.0,0.0343,0.00169,0.0502,0.113,0.409,131.006,4.0,,RCA Records Label,P (P) 2005 19 Recordings Limited,7838 +7839,spotify:track:36umtbUVPKxlgJzKcrQIwI,"Let's Dance - Single Version, 2014 Remaster",spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,spotify:album:5CeaUy7mAbMw3nMI3ezmie,Nothing Has Changed (The Best of David Bowie) [Deluxe Edition],spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,2014-11-14,https://i.scdn.co/image/ab67616d0000b2735696d575e6883ae7397d0988,2,11,248586,https://p.scdn.co/mp3-preview/5b7a57983f71b89e8c9c146d2010cb8b473a53bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USJT11400016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,glam rock,permanent wave,rock",0.642,0.629,8.0,-10.969,1.0,0.0404,0.00776,0.00264,0.123,0.719,114.491,4.0,,Parlophone UK,"C © 2014 Jones/Tintoretto Entertainment Co, LLC, P ℗ 2014 Parlophone Records Ltd, a Warner Music Group Company",7839 +7840,spotify:track:78Rxtykmgn8XZTGyYBpaDn,Hello - Edited Version,"spotify:artist:1dnbud9cuozLQ86MtrDPFr, spotify:artist:55Aa2cqylxrFIXC767Z865, spotify:artist:4eAOcbAXIF4BmbN6E1QIlw","Stafford Brothers, Lil Wayne, Christina Milian",spotify:album:5p6366G0kGyFvs58NUhuij,Hello,spotify:artist:1dnbud9cuozLQ86MtrDPFr,Stafford Brothers,2012-01-01,https://i.scdn.co/image/ab67616d0000b273cee9de0eb14f940fed9d6be6,1,1,207013,https://p.scdn.co/mp3-preview/07fb4ca213ee73d398d673d50fcfff219f4dd8ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USCM51200846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,hip hop,new orleans rap,pop rap,rap,trap,dance pop,hip pop,r&b,urban contemporary",0.653,0.845,4.0,-4.912,0.0,0.0352,0.219,0.0,0.921,0.552,123.086,4.0,,Cash Money,"C © 2012 Cash Money Records Inc., P ℗ 2012 Cash Money Records Inc.",7840 +7841,spotify:track:3h04eZTnmFLRMjZajbrp2R,Need You Tonight,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:6p6RTnoHCJMnMx2jcK4oGu,Kick (Remastered 2011),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,1987,https://i.scdn.co/image/ab67616d0000b273dac4efc0ebdfd9d92f127129,1,4,181106,https://p.scdn.co/mp3-preview/3b272d8783ab1350da669cb8fd71cbdbc174c23c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBAMX8700008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.795,0.63,10.0,-7.217,0.0,0.084,0.0419,0.573,0.0894,0.785,108.701,4.0,,Petrol Records,"C © 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, A Division of UMG Recordings, Inc., P ℗ 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, A Division of UMG Recordings, Inc.",7841 +7842,spotify:track:4mS1Su5zf50QwNcjYjYzG6,Surrender,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,spotify:album:58er2WdwdmxNdGA5hOuJYV,Discover Cheap Trick,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,2007-08-21,https://i.scdn.co/image/ab67616d0000b2733a07c9df79734005a5509a28,1,3,253826,https://p.scdn.co/mp3-preview/c5c316a4b47eacfa1e9a4fe34ca337d10ec435e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19802566,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,glam metal,glam rock,hard rock,mellow gold,power pop,rock,singer-songwriter,soft rock",0.523,0.954,0.0,-7.042,1.0,0.0408,0.00554,8.01e-06,0.755,0.861,133.829,4.0,,Epic/Legacy,"P (P) 1978, 1979, 1985, 1988, 1990, 2007 SONY BMG MUSIC ENTERTAINMENT",7842 +7843,spotify:track:4gvea7UlDkAvsJBPZAd4oB,The Boys Of Summer,spotify:artist:5dbuFbrHa1SJlQhQX9OUJ2,Don Henley,spotify:album:2x1s5aVQ01ylPs5nUdeA2i,Building The Perfect Beast,spotify:artist:5dbuFbrHa1SJlQhQX9OUJ2,Don Henley,1984-11-19,https://i.scdn.co/image/ab67616d0000b273e59d7ff5a9d7634c02135b19,1,1,288733,https://p.scdn.co/mp3-preview/9c54ce8fd84b10aa931182e1797ae7b1f71c7940?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USGF18502601,spotify:user:bradnumber1,2022-08-31T00:19:34Z,"album rock,classic rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.516,0.549,6.0,-13.741,1.0,0.0373,0.501,0.00572,0.184,0.907,176.941,4.0,,Geffen,"C © 1984 UMG Recordings, Inc., P ℗ 1984 UMG Recordings, Inc.",7843 +7844,spotify:track:7rlCeTnjn0plPZkVAcctPZ,Bills,spotify:artist:2iUbk5KhZYZt4CRvWbwb7S,LunchMoney Lewis,spotify:album:6ItEjseW8RWuVTDLd1vcnp,Bills,spotify:artist:2iUbk5KhZYZt4CRvWbwb7S,LunchMoney Lewis,2015-02-05,https://i.scdn.co/image/ab67616d0000b27304ce014b55b3e6c812e22242,1,1,204600,https://p.scdn.co/mp3-preview/923de3fc768edd4044861e188a7c9a7f0f7419b9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,56,USSM11500429,spotify:user:bradnumber1,2021-08-08T09:26:31Z,miami hip hop,0.699,0.747,5.0,-3.453,1.0,0.0964,0.274,0.0,0.486,0.683,126.001,4.0,,Kemosabe Records/RCA Records,"P (P) 2015 Kemosabe Records, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",7844 +7845,spotify:track:6Knv6wdA0luoMUuuoYi2i1,My House,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,spotify:album:5lkNnHVlnCCCV304t89wOH,My House,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2015-04-07,https://i.scdn.co/image/ab67616d0000b2737947bf3e8af32378de181b41,1,2,192190,https://p.scdn.co/mp3-preview/3bf2d48a92c9a21ddb14d8aae379488ff0604aff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USAT21500384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap",0.688,0.702,7.0,-4.792,0.0,0.0499,0.0215,0.0,0.128,0.74,94.006,4.0,,Poe Boy/Atlantic,"C © 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",7845 +7846,spotify:track:1FsH6OZCKLWbBgqj8JcCvO,The Man,spotify:artist:0id62QV2SZZfvBn9xpmuCl,Aloe Blacc,spotify:album:1ImxhQBpfEQeM7bNh61Aqg,Lift Your Spirit,spotify:artist:0id62QV2SZZfvBn9xpmuCl,Aloe Blacc,2013-01-01,https://i.scdn.co/image/ab67616d0000b27382f429d91437df1d03e878c8,1,2,255906,https://p.scdn.co/mp3-preview/aff4c06bbaa9a66f6849b8aa8344bea11699c706?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71312880,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,r&b",0.531,0.77,11.0,-7.205,0.0,0.0434,0.0332,0.0,0.235,0.504,85.996,4.0,,Universal Music Group,"C © 2013 Aloe Blacc Recording, Inc., under exclusive license to XIX Recordings LLC/Interscope Records, P ℗ 2013 Aloe Blacc Recording, Inc., under exclusive license to XIX Recordings LLC/Interscope Records",7846 +7847,spotify:track:3PS1Q0c2VNKQMIiUusjlFf,Young Guns (Go for It!),spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,spotify:album:6vihnceXTNegYbpurc6qkR,Fantastic,spotify:artist:5lpH0xAS4fVfLkACg9DAuM,Wham!,1983-07-09,https://i.scdn.co/image/ab67616d0000b27334229e11a2146f96d6956044,1,10,236200,https://p.scdn.co/mp3-preview/1e31c03ff1257c75f023340f553226ade4c8261e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBBBM8200034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock",0.895,0.753,9.0,-9.222,0.0,0.0825,0.201,0.0047,0.153,0.589,117.932,4.0,,Epic,P (P) 1983 Innervision Records,7847 +7848,spotify:track:38QaAl0ftZJPqtO9w3Y74n,Seemed Like a Good Idea (At the Time),spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:1TpsfehykLtWHqBlTpWv6N,Then Again ...,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1993-10-18,https://i.scdn.co/image/ab67616d0000b27355da6ef0291010b5a5b1b25f,1,2,257906,https://p.scdn.co/mp3-preview/fd8d7d444070a8a0417d1dd9aeff2788fa127166?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUBM09341015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.729,0.811,2.0,-11.214,1.0,0.0624,0.267,0.000347,0.17,0.902,97.965,4.0,,RCA Records Label,P (P) 1993 Sony Music Entertainment Australia Pty Ltd,7848 +7849,spotify:track:2fTsFCKRFQ5M0igJgabnLA,Price Tag,"spotify:artist:2gsggkzM5R49q6jpPvazou, spotify:artist:5ndkK3dpZLKtBklKjxNQwT","Jessie J, B.o.B",spotify:album:0BZbTNqpXFg6lxNv78X7Lp,Who You Are (Platinum Edition),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2011-01-01,https://i.scdn.co/image/ab67616d0000b2737805aebd5a39023d553ada3a,1,1,223053,https://p.scdn.co/mp3-preview/71b3faabe9cf3b0d5613ba1dd110cbbbfde88e03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USUM71029357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,atl hip hop,dance pop,pop rap,rap,southern hip hop",0.636,0.831,5.0,-3.945,1.0,0.182,0.0294,3.85e-06,0.272,0.668,175.015,4.0,,Lava Music/Republic Records,"C © 2011 Universal Republic Records, P ℗ 2011 Universal Republic Records",7849 +7850,spotify:track:4SyowQi18ym4zJGJDBnsTj,You Know I'm No Good,spotify:artist:6Q192DXotxtaysaqNPy5yR,Amy Winehouse,spotify:album:6GJCGWfI95aeRsdtVB52vc,Back To Black,spotify:artist:6Q192DXotxtaysaqNPy5yR,Amy Winehouse,2006-01-01,https://i.scdn.co/image/ab67616d0000b2734b6583b0a1505e40779faec6,1,2,256946,https://p.scdn.co/mp3-preview/94dd8d57f2933b5a59d11af188f6465d3a28dfed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70603488,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,neo soul",0.705,0.806,9.0,-3.607,1.0,0.0309,0.0132,0.00428,0.0701,0.734,103.383,4.0,,Universal Music Group,"C © 2006 Universal Island Records Ltd. A Universal Music Company., P ℗ 2006 Universal Island Records Ltd. A Universal Music Company.",7850 +7851,spotify:track:4cS2HQ6jK80vqdY9ofpztx,She Wolf,spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,spotify:album:5u0OuxRnf3FzvZR07xAxL2,She Wolf (Expanded Edition),spotify:artist:0EmeFodog0BfCgMzAIvKQp,Shakira,2009,https://i.scdn.co/image/ab67616d0000b27338abd299129f8be89e636d98,1,1,188866,https://p.scdn.co/mp3-preview/43a384c6842dfeeecb60e0af890490130a091b41?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USSM10903570,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"colombian pop,dance pop,latin pop,pop",0.865,0.69,7.0,-7.448,1.0,0.0443,0.285,0.0162,0.225,0.867,121.983,4.0,,Epic,P (P) 2009 Sony Music Entertainment (Holland) B.V.,7851 +7852,spotify:track:2p3S6dHgXqNAi5nV1Gd85i,Bonnie Please Don't Go (She's Leavin'),spotify:artist:3uFDkiNjjX0eNG5F9obt1C,Kevin Johnson,spotify:album:7t7QV7OZO0pgb2gyOTRMVx,The Ultimate Collection,spotify:artist:3uFDkiNjjX0eNG5F9obt1C,Kevin Johnson,2016-09-30,https://i.scdn.co/image/ab67616d0000b273d7094deb2ed6c3fb5c8f21cd,1,10,201146,https://p.scdn.co/mp3-preview/79d48295c5a2701b4bbedc5e3e9e3060c3d4d8e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBLG1400577,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,super eurobeat",0.617,0.552,4.0,-13.654,1.0,0.0331,0.664,0.0,0.548,0.888,104.12,4.0,,Ambition Entertainment,P (P) 2015 Kevin Johnson Enterprises,7852 +7853,spotify:track:5qmXgeIDa1lXB07pgAVlNM,Stickwitu,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,spotify:album:0ylxpXE00fVxh6d60tevT8,PCD (Revised International Version),spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2005-01-01,https://i.scdn.co/image/ab67616d0000b27308c08a13d8d1fbe59606a427,1,4,207506,https://p.scdn.co/mp3-preview/70bb2f391509eb7f8ce17f300b859d74e1e67701?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70503127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.548,0.554,9.0,-6.408,1.0,0.0587,0.283,0.0,0.0708,0.382,79.918,4.0,,Universal Music Group,"C © 2005 Pussycat Dolls, LLC, P ℗ 2005 Pussycat Dolls, LLC",7853 +7854,spotify:track:4LutIwQfcpXjVs7mIySYCD,Centuries - Remix,"spotify:artist:4UXqAaa6dQYAk18Lv7PEgX, spotify:artist:5gCRApTajqwbnHHPbr2Fpi, spotify:artist:0td8n3WZG9kptG9UsmYfc9","Fall Out Boy, Juicy J, Jonathan ""JR"" Rotem",spotify:album:4vfQ7uk37WT80Ed8JeIdNO,Make America Psycho Again,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2015-10-30,https://i.scdn.co/image/ab67616d0000b273e82798cec1ab46dbc1c1e21c,1,3,202946,https://p.scdn.co/mp3-preview/1ad04b1a744264e082e489d2818596737c73bb9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USUM71515734,spotify:user:bradnumber1,2022-06-27T06:53:41Z,"emo,modern rock,pop,rock,crunk,memphis hip hop,pop rap,rap,southern hip hop,trap",0.603,0.839,4.0,-3.617,0.0,0.102,0.0758,0.0,0.342,0.613,176.109,4.0,,Island Records,"C © 2015 Island Records, a division of UMG Recordings, Inc., P ℗ 2015 Island Records, a division of UMG Recordings, Inc.",7854 +7855,spotify:track:1u0l8zWpQeMYStFkc2mLD7,Everywhere,spotify:artist:5rScKX1Sh1U67meeUyTGwk,Michelle Branch,spotify:album:1agL7TUoZXr0Xd4Irievqi,The Spirit Room,spotify:artist:5rScKX1Sh1U67meeUyTGwk,Michelle Branch,2001-07-31,https://i.scdn.co/image/ab67616d0000b27311e62b6d4e56b060aa71e09d,1,1,214826,https://p.scdn.co/mp3-preview/c19460dcc25199f4514c2f08fa912668b18dd921?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USMV20100080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,dance pop,lilith,neo mellow,pop rock",0.523,0.828,1.0,-4.696,1.0,0.0762,0.0136,0.000255,0.165,0.476,96.952,4.0,,Maverick,"C © 2001 Maverick Recording Company, P ℗ 2001 Maverick Recording Company",7855 +7856,spotify:track:1wrT33b6HuKlpk9ziscEUY,Baby Jane - 2008 Remaster,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:065Q5LxNZPSjmqcZmGeRGc,Body Wishes,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1983,https://i.scdn.co/image/ab67616d0000b273bcf214aa282a19326c295e31,1,2,283493,https://p.scdn.co/mp3-preview/9e9afbe3cdc94ccf559398f59858afb48840ac7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USWB10806973,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.641,0.796,2.0,-8.56,0.0,0.0407,0.0137,0.000115,0.358,0.727,123.229,4.0,,Rhino/Warner Records,"C © 1983 Warner Records Inc., P ℗ 1983 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",7856 +7857,spotify:track:6SSBWjGwdBmwhmtOYVL0Pn,Born A Woman,spotify:artist:5Xh0e6sCvMXJUNVa4oynvx,Sandy Posey,spotify:album:3Lzznx139RsWiksHBUR9zH,I Will Follow Him - The Best Of,spotify:artist:5Xh0e6sCvMXJUNVa4oynvx,Sandy Posey,2009-09-01,https://i.scdn.co/image/ab67616d0000b273d14fc1dc1c827c1ea6e8b45c,1,7,114040,https://p.scdn.co/mp3-preview/a7858aa26aaee3d9245d89089c641ecb6c47b31d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,USA370946191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.853,0.414,0.0,-11.52,1.0,0.0374,0.825,0.000163,0.172,0.969,116.448,4.0,,"Nifty Music, Inc.",C (C) 2009 Goldenlane Records,7857 +7858,spotify:track:3Z3wKY8zT5M7olKAGBTwMi,If I Never See Your Face Again - Featuring Rihanna,"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:5pKCCKE2ajJHZ9KAiaK11H","Maroon 5, Rihanna",spotify:album:0aIIIT8iBIpmiHUSzNCQIL,If I Never See Your Face Again,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2008-01-01,https://i.scdn.co/image/ab67616d0000b273eb1fd01e34cc561f33bd0ea1,1,1,198413,https://p.scdn.co/mp3-preview/22f6fc57896a1d6f37eec66a093eb4999395bc75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70813040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,barbadian pop,pop,urban contemporary",0.767,0.807,6.0,-3.066,1.0,0.0389,0.00408,1.19e-06,0.117,0.902,106.008,4.0,,Universal Music,"C © 2008 A&M/Octone Records, P ℗ 2008 Interscope Records",7858 +7859,spotify:track:62aP9fBQKYKxi7PDXwcUAS,ily (i love you baby) (feat. Emilee),"spotify:artist:1lmU3giNF3CSbkVSQmLpHQ, spotify:artist:4ArPQ1Opcksbbf3CPwEjWE","Surf Mesa, Emilee",spotify:album:4MHHajvRTUHItDsvfdIC8B,ily (i love you baby) (feat. Emilee),spotify:artist:1lmU3giNF3CSbkVSQmLpHQ,Surf Mesa,2019-11-26,https://i.scdn.co/image/ab67616d0000b273b3de5764cc02f94714487c86,1,1,176546,https://p.scdn.co/mp3-preview/fa4dbefb15d4ca98324066312e0e5250b2c4fd1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,QZJRC1945204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop edm,social media pop",0.674,0.774,11.0,-7.567,0.0,0.0892,0.0686,0.00188,0.393,0.33,112.05,4.0,,Astralwerks,"C © 2019 Surf Mesa, under exclusive license to UMG Recordings, Inc., P ℗ 2019 Surf Mesa, under exclusive license to UMG Recordings, Inc.",7859 +7860,spotify:track:3w2GGz0HjIu9OcWXINRFJR,Rock and Roll - 1990 Remaster,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,spotify:album:1Ugdi2OTxKopVVqsprp5pb,Led Zeppelin IV,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,1971-11-08,https://i.scdn.co/image/ab67616d0000b273cd25ce73e3eddeedb995fcee,1,2,219800,https://p.scdn.co/mp3-preview/9464a064068943a58f673035d9ebe58e98f46bea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT29900619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.327,0.895,9.0,-7.428,1.0,0.0367,0.000564,0.0159,0.104,0.898,169.39,4.0,,Rhino Atlantic,"C © 1971 Swan Song Inc., P ℗ 1971 Atlantic Recording Corp., a Warner Music Group company",7860 +7861,spotify:track:2hw2fDtNPkIowTNuQRmlnN,Sometimes When We Touch,spotify:artist:5rOhfAsK4uxq9OdREiQRKa,Dan Hill,spotify:album:68kM51V7P3ys10rx3RDFnH,Longer Fuse,spotify:artist:5rOhfAsK4uxq9OdREiQRKa,Dan Hill,1977-07-05,https://i.scdn.co/image/ab67616d0000b273441d6e613cd0cd07d7201e10,1,1,252707,https://p.scdn.co/mp3-preview/145e4500e2cc2e6bfff6f586e26b41a9992c0936?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USFDB0610032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.589,0.348,2.0,-11.032,1.0,0.038,0.685,3.2e-06,0.0849,0.28,119.374,4.0,,Anthem Legacy,"C 1977 ole, P 1977 ole",7861 +7862,spotify:track:2ACOWPLUe4A4KuQ5ioD2od,That's My Girl,spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt,Fifth Harmony,spotify:album:0pF0oyuPNdOObniB1Ng0kW,7/27 (Deluxe),spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt,Fifth Harmony,2016-05-27,https://i.scdn.co/image/ab67616d0000b273d03fa6f4e758282b7920b5c8,1,1,204013,https://p.scdn.co/mp3-preview/267c68e23bb5bb75332451175fae4a8ba3ddb2f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM11601117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show",0.596,0.851,5.0,-4.245,0.0,0.121,0.0358,3.19e-05,0.365,0.612,202.049,4.0,,Syco Music/Epic,"P (P) 2016 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",7862 +7863,spotify:track:3EPXxR3ImUwfayaurPi3cm,Be Alright,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:0YZLXTaHLcgl5UdtKDiUXD,Be Alright,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2018-06-29,https://i.scdn.co/image/ab67616d0000b27313480e8127119dcb882eb53d,1,1,196373,https://p.scdn.co/mp3-preview/7f0c1f017ab25877db81815cc0c9681bf1673acc?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,AUUM71800255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop",0.553,0.586,11.0,-6.319,1.0,0.0362,0.697,0.0,0.0813,0.443,126.684,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Universal Music Australia Pty Ltd., P ℗ 2018 Universal Music Australia Pty Ltd.",7863 +7864,spotify:track:7Ag89czNB5rkyO0P8bJF2p,I Know Where It's At,spotify:artist:5TDVKqW9uhqGjwwwKGuma4,All Saints,spotify:album:2Sam76NnCypb8RGg3B6vhc,I Know Where It's At,spotify:artist:5TDVKqW9uhqGjwwwKGuma4,All Saints,1997,https://i.scdn.co/image/ab67616d0000b273c29761ff57ea4da906314fe0,1,4,293733,https://p.scdn.co/mp3-preview/4e11ff69175543235e740674c950f71acabb8906?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAAP9700078,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group,new wave pop",0.684,0.737,6.0,-7.068,1.0,0.053,0.0221,3.85e-06,0.154,0.712,97.472,4.0,,London Records,"C 1997 Warner Music UK Limited, P 1997 Warner Music UK Limited",7864 +7865,spotify:track:1s4Zrfm5IL2nwtC9uJWwIQ,You've Got What It Takes,spotify:artist:40PAEtNxO98lBeQHCza9vA,Marv Johnson,spotify:album:0WiigxnrPx6Of0gdOvLP56,Marvelous Marv Johnson,spotify:artist:40PAEtNxO98lBeQHCza9vA,Marv Johnson,2013-01-01,https://i.scdn.co/image/ab67616d0000b2734672608e4d71d7f0734cb941,1,2,171676,https://p.scdn.co/mp3-preview/97252e76b02347768128c5b898e246736a3875f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,FR6V81568137,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,rhythm and blues",0.671,0.635,7.0,-8.825,1.0,0.0866,0.643,0.0,0.426,0.964,136.727,4.0,,Rumble Records,"C 2013 Rumble Records, P 2013 Rumble Records",7865 +7866,spotify:track:4yoPGbCMNFqv2MAafUOo8I,Last One Standing,spotify:artist:6u7Xu6msBBuSXGyl60BuQF,Girl Thing,spotify:album:6rQuZ9mCt1q6y9n71tIk08,Girl Thing,spotify:artist:6u7Xu6msBBuSXGyl60BuQF,Girl Thing,2014-01-27,https://i.scdn.co/image/ab67616d0000b2734142f1e6f2c90e3f2beeafbf,1,1,216826,https://p.scdn.co/mp3-preview/0169da8865b2694bedf71c9de24d07af9fb6daab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBARL0000025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,girl group,0.784,0.96,1.0,-3.941,0.0,0.0558,0.156,0.0434,0.205,0.858,102.001,4.0,,Sony Music UK,P (P) 2014 Sony Music Entertainment UK Limited,7866 +7867,spotify:track:0ire4j2mcGovF5JA1D2cTp,Don't Leave Me This Way (with Sarah Jane Morris),"spotify:artist:17U2ImH5IyYMvjkCfPhMHT, spotify:artist:7g6rQ236kj9vrXWdGyiC8o","The Communards, Sarah Jane Morris",spotify:album:0qqP0gMVjjSEj8odGxMbf3,Communards,spotify:artist:17U2ImH5IyYMvjkCfPhMHT,The Communards,1986-01-01,https://i.scdn.co/image/ab67616d0000b27378cc1b7af3f28ab51ea81266,1,1,271066,https://p.scdn.co/mp3-preview/ae5ba1471b04d63a8d7f8c3dd710c8eeeb010f25?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBANP8600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hi-nrg,new romantic,new wave pop,sophisti-pop,synthpop,british soul,italian lounge",0.64,0.926,3.0,-5.597,1.0,0.0322,0.135,2.04e-06,0.134,0.901,131.997,4.0,,London Records (Because Ltd),"C © 1986 London Records Ltd, P ℗ 1986 London Records Ltd",7867 +7868,spotify:track:0rsssMU4XSm6pgLFKnVObd,Operaa House!,spotify:artist:4ihCM8I0fpWodgjo0mTlhZ,Malcolm McLaren,spotify:album:65wYGH5C0wTYlhFs2heSco,Round The Outside! Round The Outside!,"spotify:artist:4ihCM8I0fpWodgjo0mTlhZ, spotify:artist:2Fm3Re7cTNY00MWSFOPgoK","Malcolm McLaren, The World's Famous Supreme Team",1990-01-01,https://i.scdn.co/image/ab67616d0000b2738e18f5ae1f52d0a0fcaf92e7,1,1,353760,https://p.scdn.co/mp3-preview/3f24729b9c5ef89964b4cdfbdf7c16d4e3ca9642?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GBAAA9000435,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.799,0.462,0.0,-11.702,1.0,0.0727,0.00118,8.63e-05,0.239,0.595,117.966,4.0,,One Up,"C © 1990 Virgin Records Limited, P ℗ 1990 Virgin Records Limited",7868 +7869,spotify:track:6Srw86DNENcEprHmmYR4B8,Anything,spotify:artist:0BZ3BHzfYwpd3k5TDnvAz8,Culture Beat,spotify:album:4dButnBmVJox87ObbC9vTr,Serenity,spotify:artist:0BZ3BHzfYwpd3k5TDnvAz8,Culture Beat,1993,https://i.scdn.co/image/ab67616d0000b27355fce527065d0f792af677b9,1,7,383600,https://p.scdn.co/mp3-preview/665c699d8a7aecdb7f7844a5fdb884562069be7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEPT99300138,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,german techno,hip house",0.578,0.889,9.0,-7.27,0.0,0.038,0.00159,0.000198,0.121,0.799,142.866,4.0,,Abfahrt Media,"C 2012 Abfahrt Media GmbH, P 2012 Abfahrt Media GmbH",7869 +7870,spotify:track:017PF4Q3l4DBUiWoXk4OWT,Break My Heart,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:7fJJK56U9fHixgO0HQkhtI,Future Nostalgia,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-03-27,https://i.scdn.co/image/ab67616d0000b2734bc66095f8a70bc4e6593f4f,1,9,221820,https://p.scdn.co/mp3-preview/a0078bbdb4351ec221eb7f330bd01856636601b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBAHT1901303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.73,0.729,4.0,-3.434,0.0,0.0884,0.167,1.39e-06,0.349,0.467,113.011,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, with the exception of track 1 & 2 2019 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",7870 +7871,spotify:track:4H3aS6slQrNt9GqsDzKNOL,Happy Birthday Helen,spotify:artist:3kpwO5KGhMeWcWq6MiGVXN,Things Of Stone and Wood,spotify:album:6bHtwizWnoF2PcnW3hk8tT,The Yearning,spotify:artist:3kpwO5KGhMeWcWq6MiGVXN,Things Of Stone and Wood,1993-02-19,https://i.scdn.co/image/ab67616d0000b273e21fbd0ae7a492c896681274,1,3,228666,https://p.scdn.co/mp3-preview/870f2094a41df004e6725b885074c6635d2b839e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUSM09200001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.448,0.677,5.0,-8.99,1.0,0.0302,0.000361,0.0,0.334,0.663,138.2,4.0,,Columbia,P (P) 1993 Sony Music Entertainment Australia Pty Ltd,7871 +7872,spotify:track:77rzoJ5VaC2BLB1IkjGnoi,Do Somethin',spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:3caKTh2tJMowPiMz0cguLI,Greatest Hits: My Prerogative,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2004-11-08,https://i.scdn.co/image/ab67616d0000b27338a33970ad21a2a1d1315875,1,20,202720,https://p.scdn.co/mp3-preview/22a22ae263f5b1adcc062ae92e1aedcea5430eca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USJI10401154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.845,0.937,4.0,-3.283,1.0,0.0653,0.0316,2.35e-05,0.359,0.963,129.966,4.0,,Jive,P (P) 2004 Zomba Recording LLC,7872 +7873,spotify:track:6yJxCltgtmGxIgKOS6ndnu,Greatest Love of All,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:2MH37enG6IPvNK5QFLyKes,Whitney Houston,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1985-02-14,https://i.scdn.co/image/ab67616d0000b2732ae4fcec560ab559d6f5dc88,1,9,291400,https://p.scdn.co/mp3-preview/8449ac5104cb5baec1822898bdb8ce2979c94b57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USAR18500139,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.502,0.305,9.0,-16.011,1.0,0.0339,0.484,3.55e-06,0.117,0.248,131.242,4.0,,Arista,"P (P) 1985 Arista Records, Inc.",7873 +7874,spotify:track:0P8KjmGbfmFbtINEgTH7n4,Are You Magnetic?,spotify:artist:0RaO9p4AomXaVUXzV8SPVW,Faker,spotify:album:0AOg1ZrWAG6es29UAhrWyS,Be The Twilight,spotify:artist:0RaO9p4AomXaVUXzV8SPVW,Faker,2007-11-17,https://i.scdn.co/image/ab67616d0000b2732f1e7b0fd35891f96d2fc6ef,1,2,230852,https://p.scdn.co/mp3-preview/d8ab0cf35d674fb6ecc9aa52a21d19a05afcf94b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,AUEM00700150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.452,0.966,2.0,-3.867,1.0,0.125,0.000866,0.00028,0.865,0.292,138.019,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2007 EMI Recorded Music Australia Pty Ltd., P ℗ 2007 EMI Recorded Music Australia Pty Ltd.",7874 +7875,spotify:track:62pSYErgGri97X9aIyBzHm,Got 2 Luv U (feat. Alexis Jordan),"spotify:artist:3Isy6kedDrgPYoTS1dazA9, spotify:artist:5LmYIx9kSWBJOWbP4xAxb1","Sean Paul, Alexis Jordan",spotify:album:25o3xNsjPJahI22xQENaPd,Tomahawk Technique,spotify:artist:3Isy6kedDrgPYoTS1dazA9,Sean Paul,2012-01-24,https://i.scdn.co/image/ab67616d0000b27379e1dc7700b325641537518b,1,1,196640,https://p.scdn.co/mp3-preview/17250c86b55c18f7b274335894868d6ef2c52f1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAT21101550,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dancehall,pop,pop rap,talent show",0.605,0.793,7.0,-3.084,0.0,0.297,0.0825,0.0,0.124,0.647,184.032,4.0,,VP/Atlantic Records,"C © 2012 This compilation 2012 VP Records, a division of VP Music Group, Inc., P ℗ 2012 This compilation 2012 VP Records, a division of VP Music Group, Inc.",7875 +7876,spotify:track:1dzQoRqT5ucxXVaAhTcT0J,Just Dance,"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:7fObcBw9VM3x7ntWKCYl0z","Lady Gaga, Colby O'Donis",spotify:album:1qwlxZTNLe1jq3b0iidlue,The Fame,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2008-01-01,https://i.scdn.co/image/ab67616d0000b273e691217483df8798445c82e2,1,1,241933,https://p.scdn.co/mp3-preview/95cc6f61db841d49e062c94e68a62a89da0c46c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USUM70807646,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.822,0.739,1.0,-4.541,0.0,0.0311,0.0264,4.28e-05,0.181,0.745,118.99,4.0,,Streamline/Interscope,"C © 2008 Interscope Records, P ℗ 2008 Interscope Records",7876 +7877,spotify:track:6eOHOpNXzYUx79NDB4dMRd,Atomic - Remastered/2001,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,spotify:album:4SxhwzlhAfa0FgYHrGfGz8,Eat To The Beat,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,1979-10-01,https://i.scdn.co/image/ab67616d0000b273f56bb875eff3d8405542bbfe,1,9,280306,https://p.scdn.co/mp3-preview/787f00ddf2678d05b6ea16f5ace86fa594f31640?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USCH30100032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop,permanent wave,power pop,rock,synthpop",0.598,0.727,4.0,-7.596,0.0,0.0318,0.0451,0.226,0.0843,0.9,135.228,4.0,,Chrysalis\EMI Records (USA),"C © 2001 Capitol Records Inc., P ℗ 2001 Capitol Records Inc.",7877 +7878,spotify:track:12X0B3P3m6ugh3VhMY7vov,Picking Up Pebbles,spotify:artist:66i0Q1q4YuRe6N0jnYi5BR,Matt Flinders,spotify:album:3AWhIpddYaPjzRPniXfi5F,The Best of Matt Flinders,spotify:artist:66i0Q1q4YuRe6N0jnYi5BR,Matt Flinders,1974,https://i.scdn.co/image/ab67616d0000b2739ea8820ac0387457a634bbd2,1,1,187840,https://p.scdn.co/mp3-preview/15d4988176aa3711ca7e5baeaad820c24b304391?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700373,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.23,0.376,0.0,-14.373,1.0,0.0327,0.00632,0.0423,0.0679,0.496,68.954,4.0,,Fable Records,"C 1974 Fable records, P 2017 Southern Cross Music Pty Limited",7878 +7879,spotify:track:5tUpijqpFAlj13CGpuWn5s,Boys from the Bush - Remastered 2017,spotify:artist:7rT5vCRSip37zugzc8KN4i,Lee Kernaghan,spotify:album:5m1NwaKeJp9FIzHfrPnJNr,The Outback Club,spotify:artist:7rT5vCRSip37zugzc8KN4i,Lee Kernaghan,1992-01-01,https://i.scdn.co/image/ab67616d0000b27394974e7cfee139e643bbce8c,1,1,168226,https://p.scdn.co/mp3-preview/3ad117cf30f8ee6aa844387e662be446da1b061c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,AUAB01601028,spotify:user:bradnumber1,2022-03-20T21:34:46Z,"australian country,australian indigenous music",0.535,0.877,7.0,-5.544,1.0,0.0365,0.335,4.94e-05,0.0762,0.806,176.629,4.0,,ABC Country,"C (C) 2017 Australian Broadcasting Corporation, P (P) 2017 Australian Broadcasting Corporation",7879 +7880,spotify:track:6R1IKoJb7a6HJgl6uoSRMf,The Letter,"spotify:artist:2MqhkhX4npxDZ62ObR5ELO, spotify:artist:5M0fvL9GMc2zTuIIQwresj","Hoobastank, Vanessa Amorosi",spotify:album:1mYhnvcCnco4VKgg45wYKy,For(N)ever,spotify:artist:2MqhkhX4npxDZ62ObR5ELO,Hoobastank,2009-01-27,https://i.scdn.co/image/ab67616d0000b27386ef5ebdf0988990228549c6,1,5,234853,https://p.scdn.co/mp3-preview/deec0bd297cd0efde06218a2706fef96965cfc1b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USUM70851374,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,pop rock,post-grunge,australian dance,australian pop,australian rock",0.424,0.88,4.0,-4.716,0.0,0.0416,0.000547,0.0,0.153,0.353,155.055,4.0,,Mercury Records,"C © 2009 UMG Recordings, Inc., P ℗ 2009 UMG Recordings, Inc.",7880 +7881,spotify:track:0l7CcMTq1k965KZPaAtsmR,Pray,spotify:artist:2rblp9fJo16ZPTcKDtlmKW,MC Hammer,spotify:album:4r1WecJyt5FOhglysp9zhN,Please Hammer Don't Hurt 'Em,spotify:artist:2rblp9fJo16ZPTcKDtlmKW,MC Hammer,1990-02-20,https://i.scdn.co/image/ab67616d0000b273f5e5babccf665ef8c912b190,1,8,313200,https://p.scdn.co/mp3-preview/1d77ee53bc9ea41c8afd5b21bd5e247726d612f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USCA29000293,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,hip house,miami bass",0.967,0.632,6.0,-12.426,0.0,0.137,0.000347,5.25e-05,0.487,0.898,121.437,4.0,,EMI/EMI Records (USA),"C © 1990 Capitol Records, LLC, P ℗ 1990 Capitol Records, LLC",7881 +7882,spotify:track:2C6xtuFgJFaOo9ThXh3jt6,Undercover Angel,spotify:artist:63f6RFsOlwDMnAuDwjB58Y,Alan O'Day,spotify:album:04qnWxS5PuVgHhK8KYEjK0,Soft Rock Classics,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-10-23,https://i.scdn.co/image/ab67616d0000b2732553eceb5c711ca63c07148b,1,14,211226,https://p.scdn.co/mp3-preview/b2bf4d34c7b86703fc126e1f34fe6a3f4de7daa6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20619940,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.673,0.663,5.0,-7.021,1.0,0.0397,0.226,0.0,0.121,0.725,98.618,4.0,,Warner Music Group - X5 Music Group,"C 2017 Warner Music Group - X5 Music Group, P 2017 Warner Music Group - X5 Music Group",7882 +7883,spotify:track:2buH0cLzCW2DnMiapMQud5,B with Me,spotify:artist:6csA2rxNLkQJXeEa7lyGXn,Mis-Teeq,spotify:album:7fw8rAhWi3UWw92jgemhbZ,Mis-Teeq,spotify:artist:6csA2rxNLkQJXeEa7lyGXn,Mis-Teeq,2004-07-13,https://i.scdn.co/image/ab67616d0000b273ddd16a8e54ab44bf669364e6,1,10,268146,https://p.scdn.co/mp3-preview/c97e6edd11937f4c35a17ebae4e6be1b9eb97ca9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GBAWV0102635,spotify:user:bradnumber1,2023-01-31T06:32:02Z,"girl group,uk garage",0.778,0.728,8.0,-4.098,1.0,0.0448,0.0263,5.28e-05,0.0952,0.917,102.046,4.0,,Reprise,"C © 2004 Twenty-First Artists Limited, under exclusive license to Reprise Records for the U.S., P ℗ 2004 Twenty-First Artists Limited, under exclusive license to Reprise Records for the U.S.",7883 +7884,spotify:track:3m6KkYKdnbffMpGd9Pm9FP,Seven Nation Army,spotify:artist:4F84IBURUo98rz4r61KF70,The White Stripes,spotify:album:0rRNLpdA8nA8Sm8Fk490b9,Elephant,spotify:artist:4F84IBURUo98rz4r61KF70,The White Stripes,2003-04-01,https://i.scdn.co/image/ab67616d0000b273f5ae4810a9529d7614e28e76,1,1,231920,https://p.scdn.co/mp3-preview/eca519f0a85862d9510d57d59df557081d375e3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBBKS0200608,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,blues rock,detroit rock,garage rock,modern blues rock,permanent wave,punk blues,rock",0.745,0.466,4.0,-7.62,0.0,0.0864,0.00666,0.35,0.272,0.303,123.889,4.0,,XL Recordings,"C 2003 XL Recordings Ltd under exclusive license from Third Man Recordings, P 2003 XL Recordings Ltd under exclusive license from Third Man Recordings",7884 +7885,spotify:track:2W2ieVidLIx9TDvxu0ZT6F,The Best - Edit,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,spotify:album:1ZFC0iOKUp4M16eHXVaeG4,Simply the Best,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,1991-01-01,https://i.scdn.co/image/ab67616d0000b273885426f7a6ef11b1cd483279,1,1,255936,https://p.scdn.co/mp3-preview/d455101ffc8c26f7e6d0b84b813e20cb41be0138?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USCA28900113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.683,0.81,0.0,-6.864,1.0,0.0279,0.0213,0.00145,0.1,0.818,103.789,4.0,,Parlophone UK,"C © 1991 Parlophone Records Ltd, P ℗ 1991 Parlophone Records Ltd. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Parlophone Records Ltd,",7885 +7886,spotify:track:1xy4apMFecGGkgBeaHFZ2M,Chasing Fire,spotify:artist:5JZ7CnR6gTvEMKX4g70Amv,Lauv,spotify:album:5XHD9eCEJ05CuiuEQb0FsR,Chasing Fire,spotify:artist:5JZ7CnR6gTvEMKX4g70Amv,Lauv,2018-03-29,https://i.scdn.co/image/ab67616d0000b273484795cd955d7423df2ab692,1,1,205267,https://p.scdn.co/mp3-preview/2545d2504f752bb8d2d758e195bb87c00aa539c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBWWP1803692,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.709,0.562,5.0,-4.864,1.0,0.0724,0.0449,0.0,0.217,0.386,125.965,4.0,,Lauv,"C 2018 Lauv, P 2018 Lauv",7886 +7887,spotify:track:1Y3LN4zO1Edc2EluIoSPJN,Until I Found You (with Em Beihold) - Em Beihold Version,"spotify:artist:5XKFrudbV4IiuE5WuTPRmT, spotify:artist:7o2ZQYM7nTsaVdkXY38UAA","Stephen Sanchez, Em Beihold",spotify:album:7ARtQpvnPN2ucbmVHngLOs,Until I Found You (Em Beihold Version),"spotify:artist:5XKFrudbV4IiuE5WuTPRmT, spotify:artist:7o2ZQYM7nTsaVdkXY38UAA","Stephen Sanchez, Em Beihold",2022-04-22,https://i.scdn.co/image/ab67616d0000b2732bf0876d42b90a8852ad6244,1,1,176440,https://p.scdn.co/mp3-preview/b3a1f2337811888fd2264a908987a60d4ad01774?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USUG12202266,spotify:user:bradnumber1,2023-02-14T22:36:02Z,"gen z singer-songwriter,alt z,gen z singer-songwriter",0.551,0.55,10.0,-5.339,1.0,0.0286,0.777,0.0,0.202,0.342,101.19,3.0,,Republic Records,"C © 2022 Stephen Sanchez, under exclusive license to Mercury Records/Republic Records, a division of UMG Recordings, Inc., P ℗ 2022 Stephen Sanchez, under exclusive license to Mercury Records/Republic Records, a division of UMG Recordings, Inc.",7887 +7888,spotify:track:4du0TY3NTgvQGlelrBHfDL,I Wanna Be With You,spotify:artist:2LJxr7Pt3JnP60eLxwbDOu,Mandy Moore,spotify:album:4XbSwLzvznYCophbz8ElMV,I Wanna Be With You,spotify:artist:2LJxr7Pt3JnP60eLxwbDOu,Mandy Moore,2000-05-09,https://i.scdn.co/image/ab67616d0000b273d0d4444a8740e5272f7f00ea,1,1,252600,https://p.scdn.co/mp3-preview/d2e736f80c6f29fc6bb26a02f721f4ef8114e3f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USSM10008006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hollywood,neo mellow,post-teen pop",0.515,0.908,8.0,-4.632,1.0,0.0368,0.0158,1.88e-05,0.412,0.637,150.031,4.0,,Epic/550 Music,"P (P) 1999, 2000 Sony Music Entertainment Inc.",7888 +7889,spotify:track:0LjdDekNQzCC6n5wac2JEC,Summer (The First Time),spotify:artist:5gPEo032lzARtzuVqJIm9o,Bobby Goldsboro,spotify:album:54V1F4HBtZ5fJvAbLUKhNo,Summer (The First Time),spotify:artist:5gPEo032lzARtzuVqJIm9o,Bobby Goldsboro,1973-01-01,https://i.scdn.co/image/ab67616d0000b273468af1bc52a9de59ee40f553,1,1,281000,https://p.scdn.co/mp3-preview/d67e82142c8606e9042a3325bfa0e57f4eba6738?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USCN17300113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,merseybeat,rock-and-roll",0.268,0.344,4.0,-15.614,1.0,0.0454,0.624,0.0271,0.342,0.429,168.677,4.0,,CAPITOL CATALOG MKT (C92),"C © 1973 Capitol Records, LLC, P ℗ 1973 Capitol Records, LLC",7889 +7890,spotify:track:4GnEwilW2EtzpPHoABcc4w,Trembling Hands,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,spotify:album:1ZJ4xpGek7G3i9HdHa5ShC,The Temper Trap,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,2012-05-18,https://i.scdn.co/image/ab67616d0000b2732bdaba3d7c25e73a208dc7a9,1,3,281680,https://p.scdn.co/mp3-preview/7e8445ad1ae94f9a8aa8dfdcc766575ef55fd7ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01281160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern rock,shimmer pop",0.262,0.601,0.0,-5.459,1.0,0.0309,0.0553,0.000693,0.105,0.0419,101.829,3.0,,Liberation Records,"C 2012 Liberation Music, P 2012 Liberation Music",7890 +7891,spotify:track:4AxVXHgv0clBuS4dl4S7Gw,Cruel Summer,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,spotify:album:7Mh7Q5DQIE9evMeGrKHjg8,Cruel Summer,spotify:artist:5ksRONqssB7BR161NTtJAm,Ace of Base,1998-07-14,https://i.scdn.co/image/ab67616d0000b273911b5d912163f675160853b1,1,1,215360,https://p.scdn.co/mp3-preview/4dcaaf4d820da32b744503c89890b8e26c05d5a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,SEVJH0803303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,new wave pop",0.721,0.842,1.0,-1.97,0.0,0.0279,0.013,0.00187,0.076,0.882,109.966,4.0,,Playground Music,"C 1998 Mega Records, a Division of Playground Music Scandinavia AB, P 1998 Mega Records, a Division of Playground Music Scandinavia AB",7891 +7892,spotify:track:0i0wnv9UoFdZ5MfuFGQzMy,Last Hurrah,spotify:artist:64M6ah0SkkRsnPGtGiRAbb,Bebe Rexha,spotify:album:5ljc69MQ6iwGcJ4SmHaAh5,Last Hurrah,spotify:artist:64M6ah0SkkRsnPGtGiRAbb,Bebe Rexha,2019-02-15,https://i.scdn.co/image/ab67616d0000b273967032732fbe7de24b4a463e,1,1,150333,https://p.scdn.co/mp3-preview/f7ba20cfdeee8a4d8b27732e121336369cb0e48c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USWB11803381,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.514,0.618,11.0,-4.585,0.0,0.0317,0.175,0.0,0.117,0.401,84.259,4.0,,Warner Records,"C © 2019 Warner Records Inc., P ℗ 2019 Warner Records Inc.",7892 +7893,spotify:track:5kXmiepRVuKhhz0SxyCVeL,The Most Beautiful Girl,spotify:artist:218kRJZ7FJs0hWIk8Ynzhz,Charlie Rich,spotify:album:3kN2WdUo9AGwDcgcMKZ1ib,Charlie Rich - 16 Biggest Hits,spotify:artist:218kRJZ7FJs0hWIk8Ynzhz,Charlie Rich,1973,https://i.scdn.co/image/ab67616d0000b27338b8972ca30bac27de2c51a2,1,3,162866,https://p.scdn.co/mp3-preview/15ce2f78f1399f49e631a81c3bd497cb5af58048?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSM17300647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,country,nashville sound",0.566,0.409,7.0,-10.379,1.0,0.0265,0.702,3.36e-06,0.101,0.458,103.233,4.0,,Epic/Nashville,"P (P) 1973, 1974, 1975, 1976, 1977, 1999 Sony Music Entertainment Inc. WARNING: All rights reserved. Unauthorized duplication is a violation of applicable laws.",7893 +7894,spotify:track:0vDSWxRlWN0LWsSQdGIPuE,Two Hearts - 2016 Remaster,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:7yZHLfxqiGPbSQLrVJljah,The Singles (Expanded),spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,2016-10-14,https://i.scdn.co/image/ab67616d0000b2736731eabe4c268971eeed3c06,2,3,204253,https://p.scdn.co/mp3-preview/1b2e3ee9ebf2c291ce3f16fd4b2eb52772c98596?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRH11603369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.568,0.912,7.0,-3.25,1.0,0.0367,0.299,0.0502,0.0717,0.729,155.514,4.0,,Rhino,"C © 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company, P ℗ 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company",7894 +7895,spotify:track:6jEZLz3YpnEBRpVkv35AmP,Gasolina,spotify:artist:4VMYDCV2IEDYJArk749S6m,Daddy Yankee,spotify:album:5i2HhIrYyMNQvmsBk9h8Im,Barrio Fino (Bonus Track Version),spotify:artist:4VMYDCV2IEDYJArk749S6m,Daddy Yankee,2004-07-13,https://i.scdn.co/image/ab67616d0000b2737f68406bafad6162f6acdf8a,1,5,192600,https://p.scdn.co/mp3-preview/7c545be6847f3a6b13c4ad9c70d10a34f49a92d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,QM6N21759342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin hip hop,reggaeton,trap latino,urbano latino",0.857,0.801,0.0,-6.499,1.0,0.0618,0.332,1.2e-06,0.0789,0.753,96.009,4.0,,El Cartel Records Inc.,"C (C) 2004 Los Cangris Music, P (P) 2004 Los Cangris Music",7895 +7896,spotify:track:6RMo3zv9VjmcGi4V5O3cOL,Please Mr. Postman,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,spotify:album:2FxmC1q7CTXLSfHIX5xWCr,Horizon,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,1975-01-01,https://i.scdn.co/image/ab67616d0000b27370b00e13ce6f99ad0d817cd6,1,4,172733,https://p.scdn.co/mp3-preview/e974f7c6e9efd0c3d50de0e03e01123c24f2895b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWWW0140313,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock",0.669,0.514,9.0,-11.503,1.0,0.0293,0.157,6.97e-06,0.095,0.966,132.955,4.0,,Universal Special Markets,"C © 1975 A&M Records, P ℗ 1975 UMG Recordings, Inc.",7896 +7897,spotify:track:5qaEfEh1AtSdrdrByCP7qR,Demons,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:6nxDQi0FeEwccEPJeNySoS,Night Visions,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273407bd04707c463bbb3410737,1,4,177506,https://p.scdn.co/mp3-preview/dffa47dbbfe06cff32e8b676e66e7d50ad358ca7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USUM71201071,spotify:user:bradnumber1,2021-11-17T22:20:56Z,"modern rock,pop,rock",0.5,0.71,3.0,-3.015,1.0,0.0339,0.19,0.00025,0.269,0.419,89.929,4.0,,Kid Ina Korner / Interscope,"C © 2013 KIDinaKORNER/Interscope Records, P ℗ 2013 KIDinaKORNER/Interscope Records",7897 +7898,spotify:track:5OMwQFBcte0aWFJFqrr5oj,TiK ToK,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:4Fts9DL8sj5UQ0TkN4SvMK,Animal,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010,https://i.scdn.co/image/ab67616d0000b27365836b344b9d983462d5f1a7,1,2,199693,https://p.scdn.co/mp3-preview/ea95bec21bd6c4979cc91f5d5528b533d879905c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10900433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.755,0.832,2.0,-2.741,0.0,0.116,0.0746,1.27e-06,0.291,0.735,120.032,4.0,,RCA Records Label,"P (P) 2009 RCA/Jive Label Group, a unit of Sony Music Entertainment",7898 +7899,spotify:track:20on25jryn53hWghthWWW3,Do It To It,"spotify:artist:4pnp4w9g30yLfVIAFnZMRd, spotify:artist:1c70yCa8sRgIiQxl3HOEFo","ACRAZE, Cherish",spotify:album:58cd90Jkrovggh556JPN9L,Do It To It,spotify:artist:4pnp4w9g30yLfVIAFnZMRd,ACRAZE,2021-08-20,https://i.scdn.co/image/ab67616d0000b27384d413b195aac8a69cc6e5c6,1,1,157890,https://p.scdn.co/mp3-preview/83667924d625146cf6a31a198ff9e2bc25867a54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,QZFPL2100100,spotify:user:bradnumber1,2022-01-03T05:31:12Z,"pop dance,tech house,atl hip hop,girl group,hip pop,r&b,southern hip hop,urban contemporary",0.854,0.806,11.0,-8.262,0.0,0.0886,0.0209,0.0542,0.0703,0.637,124.927,4.0,,"Thrive Music, LLC","C © 2021 Thrive Music, LLC, P ℗ 2021 Thrive Music, LLC",7899 +7900,spotify:track:6HuugFQZzdTYrHluRMUkzH,Zoom,spotify:artist:0DapOnrmvQGwToOmgk6Fz8,Fat Larry's Band,spotify:album:7EJ7WCaYLgelKpBONqOCaN,Breakin' Out,spotify:artist:0DapOnrmvQGwToOmgk6Fz8,Fat Larry's Band,1982-01-01,https://i.scdn.co/image/ab67616d0000b273e88a017e11d2dc06ff391761,1,3,323866,https://p.scdn.co/mp3-preview/a4ce43844dbd57399daf7b94abf4a294119ee44a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,CAU118205619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"philly soul,post-disco",0.557,0.692,8.0,-7.583,1.0,0.0251,0.0799,0.0,0.183,0.587,104.733,4.0,,UNIDISC MUSIC INC.,"C 1982 Unidisc Music Inc., P 1982 Unidisc Music Inc.",7900 +7901,spotify:track:5WfhXulggG0c6WoVeMPA8N,Shake It Off,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:6w36pmMA5bxECalu5rxQAw,1989,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-10-27,https://i.scdn.co/image/ab67616d0000b27304986cc325ba79fe52314a7b,1,6,219200,https://p.scdn.co/mp3-preview/b2f4ace48deea16c8c94a7dee85f5db6cd90b8dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1431349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.648,0.785,7.0,-5.414,1.0,0.165,0.0561,0.0,0.148,0.943,160.02,4.0,,Universal Music Group,"C © 2014 Big Machine Records, LLC, P ℗ 2014 Big Machine Records, LLC",7901 +7902,spotify:track:6IjeDgkEfact4RDxnq4s9n,Rapunzel,spotify:artist:4Q6bcEc5YCypvMZ5kjaTMp,Drapht,spotify:album:4q3oz28Y0RUa22SRQh3quY,The Life Of Riley,spotify:artist:4Q6bcEc5YCypvMZ5kjaTMp,Drapht,2011-04-01,https://i.scdn.co/image/ab67616d0000b2739ff8bc848ad1b57a09cd6ba7,1,4,202733,https://p.scdn.co/mp3-preview/5f35a318a6f727533c61015495483fc5a43faf88?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01000558,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian underground hip hop,west australian hip hop",0.737,0.865,0.0,-3.698,1.0,0.0651,0.0359,0.0,0.0438,0.847,120.038,4.0,,Sony Music Entertainment,P (P) 2011 Drapht Music under exclusive licence to Sony Music Entertainment Australia Pty Ltd.,7902 +7903,spotify:track:2KHWuIEL5peYokB3HoLY4m,React,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,spotify:album:1kApiZqAxZ1xwJQNwwyl7T,React,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2020-02-07,https://i.scdn.co/image/ab67616d0000b273353666407411d5fc47ff0dd4,1,1,204176,https://p.scdn.co/mp3-preview/831882a52c478d03c634b969a297f94f84d92d5d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,UKELY1900090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.745,0.74,10.0,-5.719,0.0,0.0697,0.116,0.0,0.117,0.544,120.014,4.0,,Liberator Music / Access Records,"C 2020 First Accessent, P 2020 First Accessent",7903 +7904,spotify:track:76OGwb5RA9h4FxQPT33ekc,SNAP,spotify:artist:46xBNx0j6cwY6sD9LgMTm1,Rosa Linn,spotify:album:4fb1QzgTJpTk9TBjFzjmlR,SNAP,spotify:artist:46xBNx0j6cwY6sD9LgMTm1,Rosa Linn,2022-03-19,https://i.scdn.co/image/ab67616d0000b2731391b1fdb63da53e5b112224,1,1,179551,https://p.scdn.co/mp3-preview/dae85bb4c85c56d4e7e3d067f66c58b3f2419028?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM12207342,spotify:user:bradnumber1,2022-10-14T12:52:40Z,alt z,0.565,0.636,0.0,-8.198,1.0,0.0638,0.107,9.9e-06,0.447,0.525,170.01,4.0,,Columbia,"P (P) 2022 Nvak Collective/Columbia Records, a Division of Sony Music Entertainment",7904 +7905,spotify:track:7wACkspl92hkVI1BtLDIKn,Purple Hat,spotify:artist:586uxXMyD5ObPuzjtrzO1Q,Sofi Tukker,spotify:album:1dqAXR7W8cdS8p5ztzghv4,DANCING ON THE PEOPLE,spotify:artist:586uxXMyD5ObPuzjtrzO1Q,Sofi Tukker,2019-09-20,https://i.scdn.co/image/ab67616d0000b273b69c8f12db53ea00cbe8f985,1,4,178369,https://p.scdn.co/mp3-preview/fa4f8568645259fb1e68aee40efafc14caf267db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,QM37X1900018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,edm,0.777,0.744,9.0,-7.42,1.0,0.205,0.335,0.00743,0.088,0.654,94.023,4.0,,"Ultra Records, LLC","P (P) 2019 Sofi Tukker, LLC under exclusive license to Ultra Records, LLC",7905 +7906,spotify:track:4Bo6FwC7Oe9zywSZc6q7hO,Love Someone,spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,spotify:album:2bqksLEQxw80lhxXp6Xtcz,YES!,spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,2014-07-08,https://i.scdn.co/image/ab67616d0000b2739157ad65874195e75c14d243,1,2,257173,https://p.scdn.co/mp3-preview/318291179c447e5e5b81c9f4e3f934925f2d658b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USEE11400514,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,dance pop,neo mellow,pop",0.582,0.347,7.0,-14.769,1.0,0.0305,0.317,0.00678,0.111,0.0797,97.957,4.0,,Atlantic Records/ATG,"C © 2014 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2014 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",7906 +7907,spotify:track:6TMzuNLw1ZPgBqPKmnnObm,Desire,"spotify:artist:5vBSrE1xujD2FXYRarbAXc, spotify:artist:4NHQUGzhtTLFvgF5SZesLK","Olly Alexander (Years & Years), Tove Lo",spotify:album:0bWYlK9rRmIB68icHx9PNR,Communion (Deluxe),spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),2015-07-10,https://i.scdn.co/image/ab67616d0000b273b84e077bb3f2e36adbdeb6d4,1,18,203204,https://p.scdn.co/mp3-preview/cb8b14a5c829f4ef2b676676dfd30ea04ec5cff2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBUM71600961,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gauze pop,pop,pop dance,uk pop,dance pop,metropopolis,pop,swedish electropop,swedish pop,swedish synthpop",0.706,0.777,10.0,-4.591,0.0,0.0567,0.299,0.0,0.298,0.638,126.008,4.0,,Polydor Records,"C © 2016 Polydor Ltd. (UK), P ℗ 2016 Polydor Ltd. (UK)",7907 +7908,spotify:track:1RgQ8sBbzoRXBV78Tn6hQA,Sitting on Top of the World,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:6PmGlL9KcHSl1jDbGalh1B,Child Of The Universe (Deluxe Edition),spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2012-10-26,https://i.scdn.co/image/ab67616d0000b2736a7241d9a4ac30b00ce5264a,1,5,238866,https://p.scdn.co/mp3-preview/9399c3f7a7442099577e1fe4a2a6c7316fb1b118?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUBM01200112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.558,0.957,10.0,-3.156,1.0,0.0523,0.0214,2.43e-06,0.0954,0.687,124.847,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertaiinment Australia Pty Ltd./(P) 2012 Sony Music Entertainment Australia Pty Ltd.,7908 +7909,spotify:track:5hmJIY19Z6bLs0JNsrAMPD,Dancing in the Moonlight,spotify:artist:6xeFne1rkxMhKSW3ipvkdV,Toploader,spotify:album:0tz7fJQHS08LrsJsubYQNy,4 Hits,spotify:artist:6xeFne1rkxMhKSW3ipvkdV,Toploader,2011-09-16,https://i.scdn.co/image/ab67616d0000b2734c1141a372f982beb823db90,1,1,233373,https://p.scdn.co/mp3-preview/6d259dc3c9bc978297f609514799792ab6d76eb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBL9902165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british alternative rock,0.639,0.845,10.0,-3.333,1.0,0.0372,0.0528,0.0,0.336,0.871,119.485,4.0,,Sony Music UK,P This Compilation (P) 2011 Sony Music Entertainment UK Limited,7909 +7910,spotify:track:5g2JVLQzcomY9CHxUIVx86,Free,spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS,BROODS,spotify:album:16WfWS1MmEsRiuFmCs9RMn,Conscious,spotify:artist:5r5Va4lVQ1zjEfbJSrmCsS,BROODS,2016-06-24,https://i.scdn.co/image/ab67616d0000b2733ea2372dccf65e5120dc9d17,1,1,223826,https://p.scdn.co/mp3-preview/96290311e72e92a71b1475cb4cef32564970d757?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USUM71601167,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"auckland indie,etherpop,indietronica,metropopolis,nz pop",0.608,0.778,7.0,-3.567,1.0,0.0529,0.0202,0.0,0.129,0.395,90.011,4.0,,Universal Music Australia Pty. Ltd.,"C © 2016 Dryden Street Ltd, under exclusive license to Universal Music Australia, P ℗ 2016 Dryden Street Ltd, under exclusive license to Universal Music Australia",7910 +7911,spotify:track:0uppYCG86ajpV2hSR3dJJ0,Give It Away,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:30Perjew8HyGkdSmqguYyg,Blood Sugar Sex Magik (Deluxe Edition),spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,1991-09-24,https://i.scdn.co/image/ab67616d0000b273153d79816d853f2694b2cc70,1,9,282906,https://p.scdn.co/mp3-preview/e0c62e6fb378167d40ab941124f9ed7b9911a35e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USWB19901574,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.666,0.936,7.0,-9.919,1.0,0.0476,0.00244,0.086,0.153,0.776,91.577,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",7911 +7912,spotify:track:1yjY7rpaAQvKwpdUliHx0d,Still into You,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:4sgYpkIASM1jVlNC8Wp9oF,Paramore,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2013-04-05,https://i.scdn.co/image/ab67616d0000b273532033d0d90736f661c13d35,1,9,216013,https://p.scdn.co/mp3-preview/4abdea56e053fe7d0f4f4e446b43d404b28edf69?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USAT21300012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.602,0.923,5.0,-3.763,1.0,0.044,0.0098,0.0,0.0561,0.765,136.01,4.0,,Fueled By Ramen,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",7912 +7913,spotify:track:7qiZfU4dY1lWllzX7mPBI3,Shape of You,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:3T4tUhGYeRNVUGevb0wThu,÷ (Deluxe),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2017-03-03,https://i.scdn.co/image/ab67616d0000b273ba5db46f4b838ef6027e6f96,1,4,233712,https://p.scdn.co/mp3-preview/7339548839a263fd721d01eb3364a848cad16fa7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,GBAHS1600463,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.825,0.652,1.0,-3.183,0.0,0.0802,0.581,0.0,0.0931,0.931,95.977,4.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company.",7913 +7914,spotify:track:4YTL3n9Ve19arkW5G5EBo6,Wild At Heart,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:5SJkYrOgbOHRPTtvVm23FI,Birds Of Tokyo,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2010-07-23,https://i.scdn.co/image/ab67616d0000b2733d17fe2837c2f33e37296ae1,1,6,240800,https://p.scdn.co/mp3-preview/1909f95b64d224d3f5dc6062f56cd98c644a5652?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUYO01000028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.463,0.916,8.0,-5.464,1.0,0.0469,0.000258,1.58e-05,0.154,0.294,100.485,4.0,,Capitol Records,"C © 2010 Birds Of Tokyo Pty Ltd, P ℗ 2010 Birds Of Tokyo Pty Ltd, Manufactured and distributed by EMI Recorded Music Australia Pty Ltd",7914 +7915,spotify:track:5KG3Jt9obEx9s4AN5ToXSh,I Don't Want You Back,spotify:artist:1y20PpXw0yeuJ1avCD0Ob9,Eamon,spotify:album:5IAaloXCg6VIB5TjA9rvP1,I Don't Want You Back,spotify:artist:1y20PpXw0yeuJ1avCD0Ob9,Eamon,2004,https://i.scdn.co/image/ab67616d0000b273ec501ddc87b3ddb6ff0e834b,1,5,225066,https://p.scdn.co/mp3-preview/befe2739686bb014926734b38618b06cd64788b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USJI10300479,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.817,0.639,0.0,-6.13,0.0,0.0548,0.0991,0.000176,0.0401,0.522,68.511,4.0,,Jive,"P (P) 2004, 2003 Zomba Recording LLC",7915 +7916,spotify:track:55Am8neGJkdj2ADaM3aw5H,Train Wreck,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:7oiJYvEJHsmYtrgviAVIBD,Back from the Edge,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2016-10-28,https://i.scdn.co/image/ab67616d0000b27320beb61f61fcbeb33b10a9ab,1,6,208826,https://p.scdn.co/mp3-preview/b844823ed86631219a514760db55169dc7ae4b51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,DEE861600590,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.311,0.485,6.0,-5.726,0.0,0.0365,0.701,0.0,0.0726,0.225,77.355,4.0,,Columbia,P (P) 2016 Sony Music Entertainment Germany GmbH,7916 +7917,spotify:track:2plRom0urixt6BE8t7kOhQ,Girl From Rio,spotify:artist:7FNnA9vBm6EKceENgCGRMb,Anitta,spotify:album:4mMUHylk2hcCsxc2FursmJ,Girl From Rio,spotify:artist:7FNnA9vBm6EKceENgCGRMb,Anitta,2021-04-29,https://i.scdn.co/image/ab67616d0000b2730d847ff5620fa92330eac52a,1,1,194421,https://p.scdn.co/mp3-preview/6e492a45871c4fcc1af108460d5180a6caa9f13c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USWB12101015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk pop,funk rj,pagode baiano,pop,pop nacional",0.692,0.639,0.0,-6.717,1.0,0.0352,0.00727,0.0,0.199,0.733,140.059,4.0,,Warner Records,"C © 2021 Warner Records Inc., P ℗ 2021 Warner Records Inc.",7917 +7918,spotify:track:7jz7FfrYoEwVcBf1BNbcBb,Love and Other Bruises,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,spotify:album:2ebMvsVfclK27T5fcmS6n1,Air Supply,spotify:artist:4xXCRXOfQKQ2gjWxNhNzYW,Air Supply,1976-12-01,https://i.scdn.co/image/ab67616d0000b273f73f8a062fd96be664d8789d,1,7,223493,https://p.scdn.co/mp3-preview/b73b8967f320d6ee8d42d14263526768a6fd68d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUBM01900410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.47,0.515,9.0,-11.847,1.0,0.0317,0.434,0.0,0.12,0.13,115.725,4.0,,Sony Music Entertainment,P (P) 1976 Sony Music Entertainment Australia Pty Ltd,7918 +7919,spotify:track:7ry3Qbbphajb3USx6eZVJU,Lil' Red Riding Hood,spotify:artist:05sRO4JdAtJGyZQOTb6kSL,Sam The Sham & The Pharaohs,spotify:album:7sZlvnsiAKTaS3iKOZAyyU,The Very Best Of,spotify:artist:05sRO4JdAtJGyZQOTb6kSL,Sam The Sham & The Pharaohs,2011-03-01,https://i.scdn.co/image/ab67616d0000b27351e894ffad8d6b14d4621741,1,1,162440,https://p.scdn.co/mp3-preview/fd93276cd9ffbb4ce9215fa71e4ecb1ca20647e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USA371227147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,rock-and-roll,surf music",0.712,0.412,2.0,-10.503,1.0,0.0334,0.605,0.0,0.113,0.528,122.211,4.0,,Master Classics Records,C 2011 Master Classics Records,7919 +7920,spotify:track:7mocbWQc7a3Y7AOZNUpRJC,Back in Black,spotify:artist:7D7R9UL0A4ngSASP5yW9ZQ,Back In Black,spotify:album:76VDwh1H6aDqirqL4y1ABx,Back in Black,spotify:artist:7D7R9UL0A4ngSASP5yW9ZQ,Back In Black,2012-06-14,https://i.scdn.co/image/ab67616d0000b2733ad5858333ae0ddaae61e5df,1,1,231333,https://p.scdn.co/mp3-preview/b4ef7685e7d14a6731627f4bdc67e9f52a7256a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUUS00606436,spotify:user:bradnumber1,2021-08-08T09:26:31Z,britcore,0.264,0.716,9.0,-2.46,0.0,0.0437,0.000487,1.83e-05,0.365,0.511,184.1,4.0,,Rachelle Productions,C 2012 Rachelle Productions,7920 +7921,spotify:track:3iWmHAl4xCwlBaUSayCID5,Bring It Back - Original Mix,"spotify:artist:1u7OVFmWah4wQhOPIbUb8U, spotify:artist:2Z4QqhmV5Xw5vX2ZI70HOR","Will Sparks, Joel Fletcher",spotify:album:6ID0iro8FFCHx4paUDbmzE,Bring It Back,"spotify:artist:1u7OVFmWah4wQhOPIbUb8U, spotify:artist:2Z4QqhmV5Xw5vX2ZI70HOR","Will Sparks, Joel Fletcher",2013-07-04,https://i.scdn.co/image/ab67616d0000b273b8739fa9c082e8b2ec8ad287,1,1,301854,https://p.scdn.co/mp3-preview/f447abacb74aa6590493f46d2c69e699388f575f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLXS81300041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dutch house,melbourne bounce,melbourne bounce international,progressive electro house,deep minimal techno,melbourne bounce,melbourne bounce international",0.814,0.883,6.0,-4.261,0.0,0.112,0.00537,0.634,0.26,0.442,128.026,4.0,,Ones To Watch Records (Mixmash),"C 2013 Ones To Watch Records (Mixmash), P 2013 Ones To Watch Records (Mixmash)",7921 +7922,spotify:track:4wtlxQREXd4IJuCuCxo1ur,Circle,spotify:artist:1goOx6gnQdUllLfSMsL4Rt,Marques Houston,spotify:album:3YIlytmIMgYATjcmrqioxg,Veteran,spotify:artist:1goOx6gnQdUllLfSMsL4Rt,Marques Houston,2007-01-01,https://i.scdn.co/image/ab67616d0000b27332bd751125b6f129f5a8b85c,1,5,245026,https://p.scdn.co/mp3-preview/e4e91af002196f4070ed554cda29ae330a4c0c86?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70615128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.676,0.662,1.0,-6.438,1.0,0.0442,0.107,0.0,0.122,0.464,127.997,4.0,,Universal Music,"C © 2007 Universal Records, a Division of UMG Recordings, Inc. and The Ultimate Group, Inc., P ℗ 2007 Universal Records, a division of UMG Recordings, Inc. and Ecstatic Peace LLC",7922 +7923,spotify:track:3dN40bSbuV5cR9OlcYQI8u,The Lighthouse,spotify:artist:1jTf4nd1ALbUIhVpmTx7RG,Amity Dry,spotify:album:6RntwSj8jqJZvfI2gK6zAf,The Lighthouse,spotify:artist:1jTf4nd1ALbUIhVpmTx7RG,Amity Dry,2003-01-01,https://i.scdn.co/image/ab67616d0000b2735ea9fe78d8cf060cf6f21ad1,1,5,279440,https://p.scdn.co/mp3-preview/adfc5b4b342e6136b1db580aef8e7274684cc85d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,AUUM00330078,spotify:user:bradnumber1,2022-01-12T23:18:45Z,,0.504,0.597,2.0,-6.038,1.0,0.0302,0.313,0.000409,0.102,0.247,125.941,4.0,,Universal Music Australia Pty. Ltd.,"C © 2003 Universal Music Australia Pty Ltd., Marketed in Australasia by Universal Music Australia, under exclusive licence, P This Compilation ℗ 2003 Universal Music Australia Pty Ltd., Marketed in Australasia by Universal Music Australia, under exclusive licence",7923 +7924,spotify:track:59CLe8stbcx4XYBWdsfbwK,One Way Or Another,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,spotify:album:4M6s2jbhKWEcOdXZ8WiHts,Parallel Lines,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,1978-09-23,https://i.scdn.co/image/ab67616d0000b273ace2bedb8e6cfa04207d5c0f,1,2,217364,https://p.scdn.co/mp3-preview/e67491736b0c6848f7419498ba7b23af9e085952?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USCH38500014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop,permanent wave,power pop,rock,synthpop",0.442,0.921,2.0,-5.086,1.0,0.0655,0.0532,3.89e-06,0.0767,0.855,162.267,4.0,,Chrysalis\EMI Records (USA),"C © 1978 Blondie Music, Inc., P ℗ 1978 Blondie Music, Inc.",7924 +7925,spotify:track:5yVIlYEHZxQVLyInCdldoS,Impossible,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:029WUoBjWc7Js1QiPH3mw0,James Arthur (Deluxe),spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2013-11-04,https://i.scdn.co/image/ab67616d0000b273192221f838b7b6b9cb4629bf,1,4,209440,https://p.scdn.co/mp3-preview/e5b169ee32ec1f51a1df0ffc4fe730599379ee51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,GBHMU1200338,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.376,0.695,0.0,-4.782,0.0,0.0933,0.135,0.0,0.11,0.302,169.533,4.0,,Syco Music,P (P) 2013 Simco Limited,7925 +7926,spotify:track:72jbDTw1piOOj770jWNeaG,Paris,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,spotify:album:4JPguzRps3kuWDD5GS6oXr,Memories...Do Not Open,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2017-04-07,https://i.scdn.co/image/ab67616d0000b2730c13d3d5a503c84fcc60ae94,1,8,221506,https://p.scdn.co/mp3-preview/2b043ab3ea679d2e91c5bd827cbf24ef7a2b1b44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USQX91603031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.653,0.658,2.0,-6.428,1.0,0.0304,0.0215,1.66e-06,0.0939,0.219,99.99,4.0,,Disruptor Records/Columbia,P (P) 2017 Disruptor Records/Columbia Records,7926 +7927,spotify:track:40ay0VMg01sF2trze2DrNL,Drop the Boy,spotify:artist:2LKrAJVB1842xPDvx4uuwU,Bros,spotify:album:2Fge13BVj9xQN1VAzylpu5,Push (Deluxe Edition),spotify:artist:2LKrAJVB1842xPDvx4uuwU,Bros,2013-11-08,https://i.scdn.co/image/ab67616d0000b27304ac00b52282fa61045ad3dd,1,2,248066,https://p.scdn.co/mp3-preview/f9ce0eb833bab9c71ad373dc58edeecd4b556fa6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBARL1301264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop",0.553,0.843,7.0,-8.398,1.0,0.0489,0.00307,0.0,0.0818,0.834,177.113,4.0,,Sony Music UK,P (P) 2013 Sony Music Entertainment UK Limited,7927 +7928,spotify:track:2X1EonkN2OiF2tKyNEuzHY,Communication Breakdown - Remastered 2015,"spotify:artist:0JDkhL4rjiPNEp92jAgJnS, spotify:artist:1fprDBeCKrHSz3TZDiML9a, spotify:artist:6QDmPJhokG5dCAAyn7RWeP","Roy Orbison, Alex Orbison, Chuck Turner",spotify:album:31IQIES7UGCdRqzWwuUwKD,Cry Softly Lonely One (Remastered),spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,1967-10-01,https://i.scdn.co/image/ab67616d0000b273618da640c9078f07f727945a,1,2,181146,https://p.scdn.co/mp3-preview/fe0575fd51f1e7db95a23a0af1e954948f722913?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USUM71504586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock,deep ragga,old school dancehall",0.613,0.436,4.0,-12.176,1.0,0.0324,0.858,0.00131,0.147,0.668,118.167,4.0,,Roy Orbison P&D,"C © 2015 Roy's Boys, LLC, P ℗ 2015 Roy's Boys, LLC, Courtesy of Roys Boys under license from Universal Music Enterprises, a Division of UMG Recordings, Inc.",7928 +7929,spotify:track:5X6HkkTe8mUwkHo3Lccr6E,Shine a Little Love,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,spotify:album:1CvVSn2MtKDBR6aWMkNkem,Discovery,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1979-05-31,https://i.scdn.co/image/ab67616d0000b273c18cc9d6fcea1478b1257678,1,1,281026,https://p.scdn.co/mp3-preview/d9d190b15cb4ab683c66705ce4c4bc1cb3658c02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USSM10702725,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,beatlesque,classic rock,glam rock,mellow gold,rock,soft rock,symphonic rock",0.687,0.695,7.0,-8.95,1.0,0.032,0.217,0.00806,0.0569,0.884,133.134,4.0,,Epic/Legacy,"P (P) 1979 Epic Records, a division of Sony Music Entertainment",7929 +7930,spotify:track:37CRPk0L5ZpfPeePEPwE0t,Ashes to Ashes - 2017 Remaster,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,spotify:album:5fxvWHvIDPIALfTfRiwyB0,Scary Monsters (And Super Creeps) [2017 Remaster],spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,1980,https://i.scdn.co/image/ab67616d0000b273b62b49cec67e610f6f3d1221,1,4,266160,https://p.scdn.co/mp3-preview/9c239916b683fc23700dfa0db6e1f749dae9826d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USJT11700046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,glam rock,permanent wave,rock",0.71,0.743,1.0,-10.553,1.0,0.0507,0.273,0.000406,0.258,0.866,120.277,4.0,,Parlophone UK,"C © 2017 Jones/Tintoretto Entertainment Company LLC, P ℗ 1980, 2017 Jones/Tintoretto Entertainment Company LLC under exclusive license to Parlophone Records Ltd, a Warner Music Group Company",7930 +7931,spotify:track:0sNKiz82ATCvT3f3XVVUUj,Why Don't You Get A Job,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:2RNTBrSO8U8XjjEj9RVvZ5,Americana,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,1998-11-16,https://i.scdn.co/image/ab67616d0000b273cbd2ee7dff77bfb2b5f0af52,1,11,172466,https://p.scdn.co/mp3-preview/aba0f950459ff2e9b78c0338d4c6b4166887d018?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USSM19804369,spotify:user:bradnumber1,2021-11-11T04:05:34Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.766,0.882,5.0,-4.478,1.0,0.0719,0.0674,2.3e-06,0.281,0.544,107.932,4.0,,Round Hill Music (Offspring),"C © 1998 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc., P ℗ 1998 Round Hill Records, Manufactured and distributed by Universal Music Enterprises, a division of UMG Recordings, Inc.",7931 +7932,spotify:track:4NCmFVF0elcv6KO9FuQKZN,Holy Moses,spotify:artist:5AHMfr68CzfjKxMU7MQAeZ,Meg Washington,spotify:album:42ZnfZOO7MsJKyTxALNhEp,I Believe You Liar,spotify:artist:5AHMfr68CzfjKxMU7MQAeZ,Meg Washington,2010,https://i.scdn.co/image/ab67616d0000b2733fa33601a194159190e0ec50,1,5,216853,https://p.scdn.co/mp3-preview/e39a08c3c0fb12b8d33e73b249d6ad0cdd5e9c39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUZW41100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.663,0.782,7.0,-5.74,1.0,0.0471,0.0355,5.38e-06,0.0741,0.391,99.989,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Washington, Under exclusive licence to Mercury/Universal Music Australasia Pty Ltd, P ℗ 2011 Washington, Under exclusive licence to Mercury/Universal Music Australasia Pty Ltd",7932 +7933,spotify:track:0SsilQXb6Mr1W81YCtavvf,Cinema (feat. Gary Go),spotify:artist:4Ws2otunReOa6BbwxxpCt6,Benny Benassi,spotify:album:6j2iyKnqv9GzSXm9opmWfT,Electroman,spotify:artist:4Ws2otunReOa6BbwxxpCt6,Benny Benassi,2011-06-10,https://i.scdn.co/image/ab67616d0000b2730381427ae55e652e9cb37697,1,7,212760,https://p.scdn.co/mp3-preview/024a427f1cf9f14915ff116f64e74eb3761b6f3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUS11000974,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch house,edm,electro house,pop dance",0.492,0.848,9.0,-2.834,1.0,0.0702,0.0634,0.0,0.204,0.368,129.843,4.0,,Liberator Music,"C 2011 Ultra Records, Inc, P 2011 Ultra Records, Inc",7933 +7934,spotify:track:7mzvbidIxAS6aRsdSawznI,You Wear It Well,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:0jg0i6poat6I6seiPLEb0v,Never A Dull Moment,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1972-01-01,https://i.scdn.co/image/ab67616d0000b273f233cf8f003c2698a9464c05,1,7,262960,https://p.scdn.co/mp3-preview/49e8fb8b288cf1886f8e781c2313040995721a98?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR37200070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.541,0.569,2.0,-10.042,1.0,0.0316,0.464,9.21e-06,0.285,0.886,127.311,4.0,,Island Mercury,"C © 1972 The Island Def Jam Music Group, P ℗ 1972 The Island Def Jam Music Group",7934 +7935,spotify:track:0mDpR6DpKc2DyiGtH0NcX8,Kickstart My Heart,spotify:artist:0cc6vw3VN8YlIcvr1v7tBL,Mötley Crüe,spotify:album:5ZcguNVlH10M9y2yJYcAdH,The Greatest Hits,spotify:artist:0cc6vw3VN8YlIcvr1v7tBL,Mötley Crüe,2009,https://i.scdn.co/image/ab67616d0000b273bf9dbeae8487ed5c150c5c60,1,10,282920,https://p.scdn.co/mp3-preview/e7bb85b83cbbb6be210c53758ca9379da8ee5c6e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBY29900215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,alternative metal,glam metal,hard rock,metal,rock,sleaze rock",0.361,0.97,7.0,-4.817,0.0,0.284,0.00169,0.00163,0.357,0.254,179.017,4.0,,Mötley Records,"C 2009 Masters 2000, Inc., P 2009 Masters 2000, Inc.",7935 +7936,spotify:track:7Cf3QhqJC7pJJwsYTMVCOg,Not Too Late,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,spotify:album:13JVhB6qsjFCexlDNdULxD,Not Too Late,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,2017-09-01,https://i.scdn.co/image/ab67616d0000b27364309fe7469a833d826e84bb,1,1,221991,https://p.scdn.co/mp3-preview/bef1f0b2d3f8818f6d58773d05040d5007e03b0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71700713,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian talent show",0.365,0.651,10.0,-3.343,1.0,0.0506,0.1,9.61e-06,0.131,0.319,164.981,3.0,,Universal Music Group,"C © 2017 Universal Music Australia Pty Ltd., P ℗ 2017 Universal Music Australia Pty Ltd.",7936 +7937,spotify:track:7lF2jb4fv5KL4ODcqU3gwc,Light It Up (feat. Nyla & Fuse ODG) - Remix,"spotify:artist:738wLrAtLtCtFOLvQBXOXp, spotify:artist:4VZY0nxYMSNotbS7WjNVQy, spotify:artist:374sWpAJsbZckf98df2jJJ","Major Lazer, Nyla, Fuse ODG",spotify:album:37OzEaW5SwzjOvtzjgwWTG,Peace Is the Mission (Extended Edition),spotify:artist:738wLrAtLtCtFOLvQBXOXp,Major Lazer,2015-11-27,https://i.scdn.co/image/ab67616d0000b27378234745305fff2ae0125d30,1,10,166138,https://p.scdn.co/mp3-preview/d4295fdb8fdce9232e70daf8084cc36d744d6a0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,QMUY41500182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,moombahton,pop,pop dance,afrobeats,azonto",0.746,0.877,9.0,-3.782,0.0,0.0666,0.0375,0.000833,0.233,0.751,107.985,4.0,,WM Australia,"C © 2015 Third Pardee, LLC, P ℗ 2015 Third Pardee, LLC. Marketed and distributed by Warner Music Australia Pty. Limited under exclusive licence.",7937 +7938,spotify:track:3J0tOqhh6tQJJty0diKeW2,Shilo,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:512ipXtdhwJF52NTT2yryo,The Bang Years 1966-1968 - The 23 Original Mono Recordings,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1968,https://i.scdn.co/image/ab67616d0000b27336d6a0e9046f5cf060aa51e8,1,23,207333,https://p.scdn.co/mp3-preview/79f12a7f63ff87fc51689741b96a72c3ad2d925f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USSM11100086,spotify:user:bradnumber1,2022-09-25T11:08:30Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.489,0.762,0.0,-3.947,1.0,0.0322,0.141,0.000476,0.0819,0.632,134.504,4.0,,Neil Diamond,"C © 2014 Neil Diamond, under exclusive license to Capitol Records, LLC, P This Compilation ℗ 2011 Neil Diamond, under exclusive license to Capitol Records, LLC",7938 +7939,spotify:track:5W2XBZxuWp4FWgrD53WE2X,I Will Return,spotify:artist:45EO3JqkfiBrUYDWcTDge0,Springwater,spotify:album:14HeWkyKdtPvTVGQsXGRb1,Springwater,spotify:artist:45EO3JqkfiBrUYDWcTDge0,Springwater,1977,https://i.scdn.co/image/ab67616d0000b273f4fca0a97fa7e49250375803,1,1,187226,https://p.scdn.co/mp3-preview/3dd78ad0c8d63781a9416b156c2fcd462f1cb9ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMX0210501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.0994,0.495,0.0,-6.129,1.0,0.0346,0.896,0.887,0.0708,0.112,70.306,4.0,,Angel Air,"C 1977 Angel Air, P 1977 Angel Air",7939 +7940,spotify:track:4DxybsoSiMUW0JI2oM0SSN,Patience,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,spotify:album:676W2PECpK9UJuuqyjXRjk,Beautiful World,spotify:artist:1XgFuvRd7r5g0h844A5ZUQ,Take That,2006-01-01,https://i.scdn.co/image/ab67616d0000b27306e7629fa095158d50b73d57,1,2,202066,https://p.scdn.co/mp3-preview/4b95e0dc2b2ff9cde4e0807b2107da06f04ab3c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBUM70605124,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,europop,talent show",0.309,0.783,10.0,-4.154,1.0,0.0405,0.142,1.11e-06,0.118,0.372,175.788,4.0,,Polydor Records,"C © 2006 Polydor Ltd. (UK), P ℗ 2006 Polydor Ltd. (UK)",7940 +7941,spotify:track:7ujx3NYtwO2LkmKGz59mXp,HUMBLE.,spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg,Kendrick Lamar,spotify:album:7wbJhbCvhPfbK1CLAkpq25,DAMN.,spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg,Kendrick Lamar,2017-04-14,https://i.scdn.co/image/ab67616d0000b2739e0062560d8bcccca15d412a,1,8,177000,https://p.scdn.co/mp3-preview/4e6df1ccb505e0d8a8f79086c321762a2b84bfd8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,1,USUM71703085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"conscious hip hop,hip hop,rap,west coast rap",0.906,0.625,1.0,-6.779,0.0,0.0903,0.000243,3.23e-05,0.0975,0.423,150.018,4.0,,Universal Music Group,"C © 2017 Aftermath/Interscope (Top Dawg Entertainment), P ℗ 2017 Aftermath/Interscope (Top Dawg Entertainment)",7941 +7942,spotify:track:1GkHyypTFkUf0QQKwYoXH4,You (with Marshmello & Vance Joy),"spotify:artist:5CiGnKThu5ctn9pBxv7DGa, spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:10exVja0key0uqUkk6LJRT","benny blanco, Marshmello, Vance Joy",spotify:album:3U75bXq9LhqZoaGoBCXikn,You (with Marshmello & Vance Joy),"spotify:artist:5CiGnKThu5ctn9pBxv7DGa, spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:10exVja0key0uqUkk6LJRT","benny blanco, Marshmello, Vance Joy",2021-01-29,https://i.scdn.co/image/ab67616d0000b27338e349efcd6a1c63e403b97f,1,1,169632,https://p.scdn.co/mp3-preview/896d07f01997c4b58889db442ad2f204161efad1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM72100060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,brostep,edm,pop,progressive electro house,folk-pop,modern rock",0.668,0.563,11.0,-6.433,1.0,0.0522,0.0493,0.0,0.119,0.305,103.116,4.0,,Interscope / Friends Keep Secrets / Joytime Collective,"C © 2021 Friends Keep Secrets/Joytime Collective, under exclusive license to Interscope Records, P ℗ 2021 Friends Keep Secrets/Joytime Collective, under exclusive license to Interscope Records",7942 +7943,spotify:track:0HZlND4giwzgolBpaNIRGV,"Aquarius/Let The Sunshine In (The Flesh Failures) - From the Musical ""Hair""",spotify:artist:1UUYAQ9LiRsZF0ZukQNWXM,The 5th Dimension,spotify:album:1kVipwgtVNAaHM7Py341Ch,The Age Of Aquarius,spotify:artist:1UUYAQ9LiRsZF0ZukQNWXM,The 5th Dimension,1969,https://i.scdn.co/image/ab67616d0000b273ea38fd37178bbcb6d57269f3,1,1,289293,https://p.scdn.co/mp3-preview/9797daed39ac2728ca0dd25d3bf5ad25df553f21?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAR10001747,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,disco,folk rock,mellow gold,motown,singer-songwriter,soft rock,sunshine pop",0.293,0.74,7.0,-6.098,1.0,0.0399,0.445,0.00152,0.0998,0.514,118.225,4.0,,Arista/Legacy,P Originally released 1969. All rights reserved by Sony Music Entertainment,7943 +7944,spotify:track:6Gm1Eym26iEc9H6wkwbKYm,Big Girl (You Are Beautiful),spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,spotify:album:1lGwdsq4OtYZfIIoi4p79E,Life In Cartoon Motion,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,2007-01-01,https://i.scdn.co/image/ab67616d0000b273eb0b41d40b300163767da4b3,1,8,248000,https://p.scdn.co/mp3-preview/ab1a1a2f13dd9743f50913bdebbca5dddf70953d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC7R0600008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electropop,0.794,0.758,11.0,-6.289,1.0,0.0713,0.0306,1.38e-06,0.269,0.821,115.99,4.0,,Universal Music Group,"C © 2007 Casablanca Music, LLC, P ℗ 2007 Casablanca Music, LLC",7944 +7945,spotify:track:6pT33ADvrAnXzNUFvlrRdQ,The Knight in Rusty Armour - Stereo; 2011 Remaster,spotify:artist:6lHC2EQMEMZiEmSfFloarn,Peter And Gordon,spotify:album:3d0B4kaqJUPDHFOg1yI4rx,Knight In Rusty Armour (2011 Remastered Version),spotify:artist:6lHC2EQMEMZiEmSfFloarn,Peter And Gordon,1967-01-01,https://i.scdn.co/image/ab67616d0000b273e97521925d9b7fa8e35b32b1,1,1,158333,https://p.scdn.co/mp3-preview/2b95194015894f31f4bf734f96177e8d9ccf9675?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,GBAYE1001417,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,british blues,british invasion",0.549,0.618,11.0,-7.269,1.0,0.0431,0.503,0.0,0.194,0.683,135.991,4.0,,Parlophone UK,"C © 2011 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2011 Parlophone Records Ltd, a Warner Music Group Company",7945 +7946,spotify:track:1eOCyaSRBdFGofbLYjgGM2,Woman,spotify:artist:3JxCEqL9zjKnDJgUhRuRJD,Neneh Cherry,spotify:album:2bYrUTI2vWLQq2VXJ8DvVJ,Man,spotify:artist:3JxCEqL9zjKnDJgUhRuRJD,Neneh Cherry,1996-01-01,https://i.scdn.co/image/ab67616d0000b273a362c93bc0c3a4aa714aee58,1,1,270400,https://p.scdn.co/mp3-preview/3d6c7c4d9016c099b28d877818eb76378d5f7de9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAAA9600050,spotify:user:bradnumber1,2022-01-13T01:28:50Z,"new wave pop,urban contemporary",0.542,0.54,3.0,-8.888,0.0,0.0261,0.0901,0.0346,0.198,0.33,136.022,4.0,,Circa,"C © 1996 Virgin Records Limited, P ℗ 1996 Virgin Records Limited",7946 +7947,spotify:track:4w6yOgvvdY3tcG3tlOV4lG,I Go To Rio,spotify:artist:6748v9yNrbb4PPJuvfoMRa,Peter Allen,spotify:album:3TGewCKkjcPNdmanYvpBzb,Taught By Experts,spotify:artist:6748v9yNrbb4PPJuvfoMRa,Peter Allen,1976-01-01,https://i.scdn.co/image/ab67616d0000b2734fa497ca158ff04c1fc0bad6,1,4,202426,https://p.scdn.co/mp3-preview/3a35235e79382d5ea68d4ddc50707cb74e26e5d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USAM10110076,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep soft rock,0.593,0.765,5.0,-5.696,1.0,0.0385,0.503,3.91e-06,0.667,0.801,121.844,4.0,,A&M,"C © 1976 A&M Records, P ℗ 2015 A&M Records",7947 +7948,spotify:track:01iyCAUm8EvOFqVWYJ3dVX,Dancing Queen,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:79ZX48114T8NH36MnOTtl7,Arrival,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1976-10-11,https://i.scdn.co/image/ab67616d0000b2739aa209383c254c9e23e7f909,1,2,230400,https://p.scdn.co/mp3-preview/1116076e3d1538852d6605ada1fd7130c8fc75a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAYD7601020,spotify:user:bradnumber1,2021-08-08T09:27:38Z,"europop,swedish pop",0.543,0.87,9.0,-6.514,1.0,0.0428,0.358,0.000939,0.792,0.754,100.804,4.0,,Universal Music Group,"C © 2001 Polar Music International AB, P ℗ 2001 Polar Music International AB",7948 +7949,spotify:track:1RDC0WTDUtjLqoO3C82JsQ,Let's Get Ridiculous,spotify:artist:3mH3OBKopDDVgnJcT5PrPk,Redfoo,spotify:album:7a4Mp4S7C6NFTLtjC88Ml6,Let's Get Ridiculous,spotify:artist:3mH3OBKopDDVgnJcT5PrPk,Redfoo,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d00f52ee9062891da9ee4b12,1,1,215573,https://p.scdn.co/mp3-preview/ef1183908037630ebff104a181961fea38bf3baa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71312055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.651,0.938,5.0,-0.418,0.0,0.072,0.147,0.0,0.0755,0.665,127.993,4.0,,Universal Music Group,"C © 2013 Foo & Blu, LLC, under exclusive license to Interscope Records, P ℗ 2013 Foo & Blu, LLC, under exclusive license to Interscope Records",7949 +7950,spotify:track:4OeFQtRyT7vsLnRTv7t8YT,The Best,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,spotify:album:64PNGg3YLgOkJ2ySlbrmPZ,All The Best,spotify:artist:1zuJe6b1roixEKMOtyrEak,Tina Turner,2004-11-01,https://i.scdn.co/image/ab67616d0000b273f38f318e862e9fa59f18e9fe,1,5,330253,https://p.scdn.co/mp3-preview/d7d283bea4bff06fb96052bb645d5559e33a53ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USCA28900109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.651,0.87,0.0,-5.149,1.0,0.0318,0.103,0.00815,0.0979,0.729,103.857,4.0,,Parlophone,"C (C) 2004 EMI Records LtdThis label copy information is the subject of copyright protection. All rights reserved.(C) 2004 EMI Records Ltd, P (P) 2004 The copyright in this compilation is owned by EMI Records Ltd",7950 +7951,spotify:track:6PzjPyxyy7asBmcCN9AU97,Down Under,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,spotify:album:0pvhletDH7CphbKErUtPCF,80s 100 Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-03-01,https://i.scdn.co/image/ab67616d0000b273db56ceff816b668b7b6f04ff,1,23,219013,https://p.scdn.co/mp3-preview/c46c72ef7c870201690637cb29dbdf666d991949?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSM18100058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,rock,soft rock",0.739,0.467,11.0,-14.161,0.0,0.0288,0.117,0.0142,0.0486,0.898,107.122,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment,7951 +7952,spotify:track:3dxOctKO5d4yf6yasOwTqn,GAW - Zaheer Remix,"spotify:artist:12GJlFZUjiXCTtnuwKdrX6, spotify:artist:1Xc3WbacoW8ISqReb7Hjpj, spotify:artist:05xxLdPO9nWAK3O3rH8Mvw","Mickie James, Chapel Hart, Zaheer",spotify:album:067tstPu9WzqxCc3tEUuMH,GAW (Zaheer Remix),"spotify:artist:12GJlFZUjiXCTtnuwKdrX6, spotify:artist:1Xc3WbacoW8ISqReb7Hjpj, spotify:artist:05xxLdPO9nWAK3O3rH8Mvw","Mickie James, Chapel Hart, Zaheer",2021-07-02,https://i.scdn.co/image/ab67616d0000b2731be25ccc858d69ca810b077c,1,1,174154,https://p.scdn.co/mp3-preview/2d6c7ce2853a36c6af72f71bae7eaaabcf53e665?cid=9950ac751e34487dbbe027c4fd7f8e99,True,9,QZK6P2107471,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"wrestling,black americana",0.538,0.845,1.0,-0.358,0.0,0.14,0.25,0.0,0.22,0.558,168.273,4.0,,Firewater Records,"C 2021 Firewater Records, P 2021 Firewater Records",7952 +7953,spotify:track:65E62rOSbm7SZbAMYjNTJq,Pride (In The Name Of Love) - Remastered 2009,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:6akaB3XfTnCwrY4DahsBCY,The Unforgettable Fire (Deluxe Edition Remastered),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1984-10-01,https://i.scdn.co/image/ab67616d0000b27377df2aceaf90f06a20b56b14,1,2,228426,https://p.scdn.co/mp3-preview/48877f007520f123d51f2bd84742de45c3ec92a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBUM70817519,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.458,0.843,4.0,-7.201,1.0,0.0316,0.00135,0.000296,0.778,0.713,105.701,4.0,,Universal-Island Records Ltd.,"C © 2009 Universal-Island Records Limited under exclusive licence to Mercury Records Limited in the UK, Interscope Records in the US and Universal Music Group for the rest of the world, P ℗ 2009 Universal-Island Records Limited under exclusive licence to Mercury Records Limited in the UK, Interscope Records in the US and Universal Music Group for the rest of the world",7953 +7954,spotify:track:4eS9g2FLy8qDN7j4txFK0S,Out Of Reach,spotify:artist:7rftfGIYEeZ79sLb58ZBDi,GABRIELLE,spotify:album:7loeQSRUbnvwYLcmgt70D0,Now And Always: 20 Years Of Dreaming,spotify:artist:7rftfGIYEeZ79sLb58ZBDi,GABRIELLE,2013-01-01,https://i.scdn.co/image/ab67616d0000b273830d6d5f0037c8aed27c6859,1,11,197867,https://p.scdn.co/mp3-preview/8cf32abef3d5262390084acc54a6d8e1bc1cda16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBARA0100008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,new wave pop",0.656,0.476,11.0,-6.506,1.0,0.0288,0.471,0.0,0.105,0.525,91.524,4.0,,Universal-Island Records Ltd.,"C © 2013 Go! Discs Ltd., P ℗ 2013 Go! Discs Ltd.",7954 +7955,spotify:track:2pCKctXUSaqFYAuq0wS6bq,Elle fuit,spotify:artist:71pCG1Du7V5vvviL6jXwt6,Myglö,spotify:album:57c5YzS017FshkhHLe9PdI,Elle fuit,spotify:artist:71pCG1Du7V5vvviL6jXwt6,Myglö,2021-07-16,https://i.scdn.co/image/ab67616d0000b27393d69da26642514673c3b72a,1,1,256799,https://p.scdn.co/mp3-preview/e24b0fde38304017a67fa6c4e8c2e324d2990d01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ushm82135649,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.731,0.48,2.0,-8.417,0.0,0.0319,0.039,1.48e-06,0.155,0.494,99.955,4.0,,Myglö,"C 2021 Myglö, P 2021 Myglö",7955 +7956,spotify:track:60IP24D2UJvLuRhwQuUEnM,Linger (feat. Lupe Fiasco),"spotify:artist:5PjekOABtfU2Kwo0AHVmci, spotify:artist:01QTIT5P1pFP3QnnFSdsJf","Guy Sebastian, Lupe Fiasco",spotify:album:2ploE2Xfb4u43TnK7OAos3,Madness,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2014-11-21,https://i.scdn.co/image/ab67616d0000b27394e513cf40e6e38ddf847fb9,1,7,253933,https://p.scdn.co/mp3-preview/85a2d136124dd28c967ff7826042270d5ff96932?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUBM01400621,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,chicago rap,conscious hip hop,hip hop,political hip hop,pop rap,rap,southern hip hop",0.667,0.628,9.0,-5.867,0.0,0.0564,0.0284,0.0,0.0339,0.285,76.0,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,7956 +7957,spotify:track:73h4oe03sZy8bXfQLfnqMv,Who's Laughing Now,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,spotify:album:4mxU9BZA47n0hZbQ220Q5B,Who's Laughing Now,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,2020-07-30,https://i.scdn.co/image/ab67616d0000b2736ef8a84f6eaa07b2b293d412,1,1,180348,https://p.scdn.co/mp3-preview/6eea8e5de2336c0cf662260d377f4b33044c2add?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT22001106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.648,0.641,7.0,-5.521,1.0,0.0389,0.00565,3.63e-06,0.109,0.505,184.021,4.0,,Atlantic Records,"C Atlantic Records, © 2020 Artist Partner Group, Inc., P Atlantic Records, ℗ 2020 Artist Partner Group, Inc.",7957 +7958,spotify:track:2tD4VPcIx0QPXphgKc73Gz,The Wanderer,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,spotify:album:5K5zdagMRQFtpwFpzoxqCt,The Wanderer,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,1980-10-20,https://i.scdn.co/image/ab67616d0000b2733b6542b75995cbf02451183a,1,1,227173,https://p.scdn.co/mp3-preview/ab05d23e4339ccb5bc13f1db536ca4a00a85d124?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USPR38000074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg,new wave pop,soft rock",0.783,0.631,5.0,-12.06,1.0,0.0489,0.351,0.0131,0.152,0.77,137.179,4.0,,Crimson,"C (C) 2014 Crimson Productions Ltd., P (P) 1980 Driven By The Music LLC issued under exclusive license to Crimson Productions Ltd",7958 +7959,spotify:track:7aXM5I2koKhl6gvQqbQtPo,It's A Sin To Tell A Lie,spotify:artist:1vbVzmoFnkpUgT1AufpnkE,Gerry Monroe,spotify:album:4QW0m1RvgrLr2CHVGAscoA,Sally - Pride Of Our Alley: The Complete Chapter One Recordings,spotify:artist:1vbVzmoFnkpUgT1AufpnkE,Gerry Monroe,1970,https://i.scdn.co/image/ab67616d0000b273f552d4d343dd0bbeb29ac42b,1,15,140133,https://p.scdn.co/mp3-preview/58b6652c0ca236f1f0e61ad992e27c1efb0aa84e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GBLFV0600457,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.526,0.578,6.0,-5.626,1.0,0.0306,0.431,0.0,0.269,0.61,123.841,4.0,,Cherry Red Records,"C © 2017 Cherry Red Records Ltd, P ℗ 1970 Cherry Red Records Ltd",7959 +7960,spotify:track:6rvnIFtbi6OD4pNWHL0ur0,Down from Dover,spotify:artist:32vWCbZh0xZ4o9gkz4PsEU,Dolly Parton,spotify:album:2WsLHZOssU2soBqRD7x4JS,The Fairest of Them All,spotify:artist:32vWCbZh0xZ4o9gkz4PsEU,Dolly Parton,1970-02-02,https://i.scdn.co/image/ab67616d0000b273bb48e7690f50c3dac2a4e763,1,10,226360,https://p.scdn.co/mp3-preview/a098105316564786b35f94f495065a829fbd71a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USRN10000409,spotify:user:bradnumber1,2022-09-29T07:12:51Z,"classic country pop,country,country dawn",0.62,0.369,10.0,-12.791,1.0,0.0302,0.293,0.00011,0.185,0.316,100.469,4.0,,Legacy Recordings,P (P) 1970 Sony Music Entertainment,7960 +7961,spotify:track:68pN2UQYhwQgPy7VrCFKuV,In Too Deep,spotify:artist:0qT79UgT5tY4yudH9VfsdT,Sum 41,spotify:album:47wh50aG3MIgDpsMe5B7n7,"All Killer, No Filler",spotify:artist:0qT79UgT5tY4yudH9VfsdT,Sum 41,2001-01-01,https://i.scdn.co/image/ab67616d0000b2733b0ec0cdfc26b2e471591509,1,7,207093,https://p.scdn.co/mp3-preview/1e873fa3bece43233494ace8846c210b2648f9d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20110114,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian pop punk,canadian punk,modern rock,pop punk,post-grunge,punk,rock",0.566,0.835,9.0,-5.885,1.0,0.0504,0.000192,0.0,0.0581,0.749,116.041,4.0,,Universal Music Group,"C © 2001 Mercury Records Limited, P ℗ 2001 The Island Def Jam Music Group",7961 +7962,spotify:track:1ilylaGsj4XPJvFs2tvYdW,Just Ace,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,spotify:album:34ve3zvdIG0YhQnRAHv1d7,Best In Show,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,2005-01-01,https://i.scdn.co/image/ab67616d0000b273660d94ddde030ca5933d6c81,1,5,107386,https://p.scdn.co/mp3-preview/73504b4c4d6f562e95eade978d992cd835a31601?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUUN09700020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian psych,australian rock",0.57,0.867,0.0,-6.556,1.0,0.0247,3.6e-05,0.0174,0.2,0.818,100.318,4.0,,Universal Music Australia Pty. Ltd.,"C © 2005 Universal Music Australia Pty Ltd., P This Compilation ℗ 2005 Universal Music Australia Pty Ltd.",7962 +7963,spotify:track:6Vecwo7AHst9V2CE3kmwr0,No Such Thing,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:3yHOaiXecTJVUdn7mApZ48,Room For Squares,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2001-08-16,https://i.scdn.co/image/ab67616d0000b2738848d57cbfa7751e028f4dc9,1,1,231466,https://p.scdn.co/mp3-preview/6501ed97fbeb6b2d8386dd22849d7f188ee73e2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM10102940,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.668,0.739,4.0,-4.919,1.0,0.0308,0.0383,0.0,0.13,0.571,131.918,4.0,,Aware/Columbia,P 2001 Sony Music Entertainment Inc.,7963 +7964,spotify:track:6OuRbvP4PgbuzBIapVzmFJ,Sailing,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:7vV3q5jE7DSuKsnHr7OmmN,Atlantic Crossing,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1975,https://i.scdn.co/image/ab67616d0000b273e362eab0b5272915a217e501,1,10,277960,https://p.scdn.co/mp3-preview/d65de04d5248581c72f8a4f1bd39eeb50e3c175e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USWB10807925,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.43,0.375,11.0,-9.949,1.0,0.0289,0.374,0.376,0.316,0.189,128.791,4.0,,Rhino/Warner Records,"C 2008 © 1975 Warner Records Inc., P 2008 ℗ 1975 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",7964 +7965,spotify:track:2x5qF66rFO6DERBMNkQAqn,(There's Gotta Be) More To Life,spotify:artist:5QjWgYDeKNP2iPHTdTttnG,Stacie Orrico,spotify:album:05bphHAv5bizNSVDeirA9t,Stacie Orrico,spotify:artist:5QjWgYDeKNP2iPHTdTttnG,Stacie Orrico,2003-01-01,https://i.scdn.co/image/ab67616d0000b27398d746bf562ff6a1cd2a7272,1,2,200386,https://p.scdn.co/mp3-preview/d3d290437b2c2418894bf66f53bffc80106889d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USFF10319585,spotify:user:bradnumber1,2021-08-08T09:26:31Z,candy pop,0.58,0.922,1.0,-3.785,1.0,0.0957,0.0917,0.0,0.189,0.649,89.841,4.0,,Virgin Records,"C © 2003 Virgin Records America, Inc., P ℗ 2003 Virgin Records America, Inc.",7965 +7966,spotify:track:5GayeBzzXIEl6fY0cP42Z1,Addicted To You,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:1s9tU91VJt4sU5owi29GD3,True,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2013-09-13,https://i.scdn.co/image/ab67616d0000b2734cfcceb6f9b1aae8752810e7,1,4,148386,https://p.scdn.co/mp3-preview/a8ddc82236c10f83c61112653aac4f80771e5d84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CH3131340085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.569,0.785,1.0,-4.057,0.0,0.0457,0.0505,1.12e-06,0.086,0.303,128.031,4.0,,Universal Music AB,"C © 2013 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2013 Avicii Music AB, under exclusive license to Universal Music AB",7966 +7967,spotify:track:2fTdRdN73RgIgcUZN33dvt,"Baby, I'm Jealous (feat. Doja Cat)","spotify:artist:64M6ah0SkkRsnPGtGiRAbb, spotify:artist:5cj0lLjcoR7YOSnhnX0Po5","Bebe Rexha, Doja Cat",spotify:album:2N367tN1eIXrHNVe86aVy4,"Baby, I'm Jealous (feat. Doja Cat)","spotify:artist:64M6ah0SkkRsnPGtGiRAbb, spotify:artist:5cj0lLjcoR7YOSnhnX0Po5","Bebe Rexha, Doja Cat",2020-10-09,https://i.scdn.co/image/ab67616d0000b273d0927ea5b0dde802e65eb9b6,1,1,175873,https://p.scdn.co/mp3-preview/6b6a0286d46df4a241da5d3957fe6dde72f850f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB12003890,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,pop",0.737,0.867,11.0,-2.259,0.0,0.0458,0.0398,0.0,0.32,0.506,98.05,4.0,,Warner Records,"C © 2020 Warner Records Inc., P ℗ 2020 Warner Records Inc.",7967 +7968,spotify:track:3JtRSUOj7wSAXFG76T89v8,Sway,spotify:artist:3R8AurcQVHkialifehVKXV,Bic Runga,spotify:album:6RKelNVLEA7UeWnJJaKcGo,Drive,spotify:artist:3R8AurcQVHkialifehVKXV,Bic Runga,1997-06-06,https://i.scdn.co/image/ab67616d0000b273e625497c7030d933b4cc9431,1,2,262493,https://p.scdn.co/mp3-preview/c0b5ae20f375cf285df0c102c4b4bdc745b1a460?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,NZSM09700144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,lilith,new wave pop,nz pop,nz singer-songwriter",0.565,0.429,9.0,-9.196,1.0,0.0261,0.157,0.0,0.13,0.266,95.701,4.0,,Columbia,P 1997 Sony Music Entertainment (New Zealand) Ltd.,7968 +7969,spotify:track:5UqqOfFa9DYXALpCCF8VwB,(I've Had) The Time of My Life,"spotify:artist:1XE70WwxhnrXNAJYQQ9ygx, spotify:artist:1BwHztAQKypBuy5WBEdJnG","Bill Medley, Jennifer Warnes",spotify:album:03HVo5MVOWQ4kilTtF1Czg,Dirty Dancing,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1987-07-10,https://i.scdn.co/image/ab67616d0000b273741a375f2292fbe848ef27e8,1,1,289680,https://p.scdn.co/mp3-preview/5feaf05c959d64248b22ef12497710fd302db8ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10300895,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.697,0.665,6.0,-12.907,0.0,0.0412,0.0476,0.00665,0.0796,0.485,108.535,4.0,,RCA Records Label,"P (P) 1987 Vestron Pictures, Inc.",7969 +7970,spotify:track:6MTd61g9zq6CB1FnJydjEb,Sugar Sugar,spotify:artist:33QmoCkSqADuQEtMCysYLh,The Archies,spotify:album:3Yx7rFz5gPsuWOoNncW0UP,Everything's Archie,spotify:artist:33QmoCkSqADuQEtMCysYLh,The Archies,1969-11-14,https://i.scdn.co/image/ab67616d0000b273fbc98da6995bb0a504ed363d,1,9,167213,https://p.scdn.co/mp3-preview/0eb5fcb87ea56e0335c4ccec63d2e4a01dd80b8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,QM6N21704357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic canadian rock,rock-and-roll",0.757,0.725,2.0,-7.259,1.0,0.0275,0.399,0.0,0.108,0.965,122.439,4.0,,Calendar Records,"C (C) 1969 © Calendar Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws., P (P) 1969 © Calendar Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",7970 +7971,spotify:track:76ICmoJ4PcoMWoooaTxnQs,Land of 1000 Dances,spotify:artist:0N5PyKJzS3M1XNlaCL7bbE,Wilson Pickett,spotify:album:3fxWzXNMhTz01uShzMARnm,The Exciting Wilson Pickett,spotify:artist:0N5PyKJzS3M1XNlaCL7bbE,Wilson Pickett,1966,https://i.scdn.co/image/ab67616d0000b273e9417411c156207132d4c003,1,1,146973,https://p.scdn.co/mp3-preview/6000b55b179f0d6a3b596e3671a8e7972379363a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT29902208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,memphis soul,soul,southern soul",0.618,0.588,2.0,-11.624,1.0,0.0735,0.0128,0.0266,0.351,0.768,86.903,4.0,,Rhino Atlantic,"C © 1993 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1993 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",7971 +7972,spotify:track:26BpoFfXMCt0iX4daD6U9O,Hi-De-Ho,spotify:artist:24GaH9tRBgZjlvOhpFuKi2,"Blood\, Sweat & Tears",spotify:album:3Va4LEJ4n3EZxMo3CGLpB5,"Blood, Sweat And Tears 3",spotify:artist:24GaH9tRBgZjlvOhpFuKi2,"Blood\, Sweat & Tears",1970-09,https://i.scdn.co/image/ab67616d0000b2736339ce72540bd20c7b667986,1,1,263800,https://p.scdn.co/mp3-preview/28ee1371a0c13a7d8d29a7832400288cdccd6c9b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USSM19917680,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,folk,folk rock,jazz rock,mellow gold,singer-songwriter,soft rock",0.371,0.252,0.0,-14.479,1.0,0.0379,0.693,5.64e-05,0.162,0.425,112.76,4.0,,Columbia,P 1970 (P) SONY BMG MUSIC ENTERTAINMENT,7972 +7973,spotify:track:6H7nDglS6xWpRidbhMwI2L,Here You Come Again,spotify:artist:32vWCbZh0xZ4o9gkz4PsEU,Dolly Parton,spotify:album:64yIGFoYJVg66fRXIxIYJr,Here You Come Again,spotify:artist:32vWCbZh0xZ4o9gkz4PsEU,Dolly Parton,1977-10-03,https://i.scdn.co/image/ab67616d0000b273c12470f3f9af38f20ba4f2f1,1,1,179491,https://p.scdn.co/mp3-preview/f77d781b93ef5c2dda4e867644fe72fa986c8c61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USRN19600172,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,country dawn",0.585,0.511,1.0,-9.37,1.0,0.0391,0.647,0.007,0.0392,0.552,105.898,4.0,,RCA/Legacy,P (P) 1977 Sony Music Entertainment,7973 +7974,spotify:track:465AtbtDEC47xeCLj3ajPB,Stop Stop Stop - Mono; 1999 Remaster,spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,spotify:album:6Fi7djK0WLtwkl63VRX3BD,For Certain Because... (Expanded Edition),spotify:artist:6waa8mKu91GjzD4NlONlNJ,The Hollies,1966-12-09,https://i.scdn.co/image/ab67616d0000b273b7668d0d339e14cb8deb9999,1,12,178160,https://p.scdn.co/mp3-preview/54409b031619c893cea98d014e10944fb68860ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,GBAYE9900090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,folk rock,mellow gold,merseybeat,soft rock",0.367,0.874,2.0,-5.312,1.0,0.0434,0.0172,0.0,0.355,0.825,204.928,4.0,,Rhino,"C © 2013 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2013 Parlophone Records Ltd, a Warner Music Group Company",7974 +7975,spotify:track:63t9x6MyYnZ9tYprnk6cty,The Anthem,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:02abrECBsxdR3Ywjy1hCuW,Greatest Hits,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2010-11-12,https://i.scdn.co/image/ab67616d0000b273aabb9557204ead9f05752743,1,5,174213,https://p.scdn.co/mp3-preview/1e7a7af5d4b94706dc9eee132726e0aa647c79fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USSM10209827,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.562,0.938,1.0,-3.078,1.0,0.106,0.00749,0.0,0.297,0.918,88.872,4.0,,Epic/Legacy,"P (P) 2010 Epic Records, a division of Sony Music Entertainment",7975 +7976,spotify:track:2OSfEYKhlSsLx6vn4O75RK,I Want You Back,spotify:artist:2iE18Oxc8YSumAU232n4rW,The Jackson 5,spotify:album:7ioDs7ZLvqeYLD1SVFeWci,Greatest Hits,spotify:artist:2iE18Oxc8YSumAU232n4rW,The Jackson 5,1971-01-01,https://i.scdn.co/image/ab67616d0000b273b5c7655529a7102aece0de36,1,1,178493,https://p.scdn.co/mp3-preview/50138a151a0c70c36f0b8dbefc807d8f36d822d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USMO19400306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.667,0.669,8.0,-6.264,1.0,0.0326,0.441,0.00229,0.215,0.947,98.266,4.0,,Motown,"C © 1998 Motown Record Company L.P., P This Compilation ℗ 1971 UMG Recordings, Inc.",7976 +7977,spotify:track:3pU1CUgPiFfxPCpscwIwQR,I Should Have Known Better - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:6wCttLq0ADzkPgtRnUihLV,A Hard Day's Night (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1964-07-10,https://i.scdn.co/image/ab67616d0000b273e230f303815e82a86713eedd,1,2,163080,https://p.scdn.co/mp3-preview/6f9bf4248b91afed77493c9a992e7955f47521f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAYE0601439,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.682,0.444,7.0,-7.689,1.0,0.0289,0.257,0.0,0.115,0.91,130.704,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",7977 +7978,spotify:track:6vV9NyQIsWMQ08KOWMSp3a,Rumour Mill (feat. Anne-Marie & Will Heard),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:39AZSw4A8hCFWunEg2k89Z","Rudimental, Anne-Marie, Will Heard",spotify:album:68s1AYwi1JtoTOD0ggqr2j,We the Generation,spotify:artist:4WN5naL3ofxrVBgFpguzKo,Rudimental,2015-10-02,https://i.scdn.co/image/ab67616d0000b2733dc1ad51381cfbb9800bced8,1,5,243783,https://p.scdn.co/mp3-preview/19a490a0c667e87090711da84d30f26fb70d8cdf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAHS1500260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,pop,uk contemporary r&b",0.842,0.534,10.0,-8.547,0.0,0.171,0.147,7.77e-05,0.261,0.761,119.976,4.0,,Asylum/Major Tom's,"C © 2015 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company, P ℗ 2015 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company",7978 +7979,spotify:track:4FDSO33FW9LNEO0Tduum1X,Montego Bay,spotify:artist:08GxOlfbIid2OSANVKECHb,The Allniters,spotify:album:0JmPy3eNCj472KziLTmYoB,D-D-D-Dance,spotify:artist:08GxOlfbIid2OSANVKECHb,The Allniters,1983,https://i.scdn.co/image/ab67616d0000b273838243ebe33f3b645168823e,1,3,172653,https://p.scdn.co/mp3-preview/dc9385d7de917f06b95fd134b6f8495ec4e84bcb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41100003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian ska,0.893,0.724,0.0,-9.183,1.0,0.0364,0.0456,0.0,0.0827,0.974,127.888,4.0,,Southern Cross Music Pty Limited,"C 1983 Allniters, P 1983 Allniters",7979 +7980,spotify:track:3Wrjm47oTz2sjIgck11l5e,Beggin',spotify:artist:0lAWpj5szCSwM4rUMHYmrr,Måneskin,spotify:album:2qJw6w5XwQO0PQlSWPu7Tw,Chosen,spotify:artist:0lAWpj5szCSwM4rUMHYmrr,Måneskin,2017-12-08,https://i.scdn.co/image/ab67616d0000b273fa0ab3a28b5c52d8a5f97045,1,4,211560,https://p.scdn.co/mp3-preview/39cd7cd4317a9e4c4fa1277a51eeadb2e300c7de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,ITB001700846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock italiano,italian pop",0.714,0.8,11.0,-4.808,0.0,0.0504,0.127,0.0,0.359,0.589,134.002,4.0,,RCA Records Label,P (P) 2017 Sony Music Entertainment Italy S.p.A.,7980 +7981,spotify:track:7viCimyhkPVR1lKOWus8KL,Eloise - Single Version,spotify:artist:6VeL8VhaMjHTPc5uovFl3h,The Damned,spotify:album:4QWo5TAArJHd76F15h61Gq,Girl Talk,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2020-05-15,https://i.scdn.co/image/ab67616d0000b2731f70e5730baee5e86e89688c,1,25,311320,https://p.scdn.co/mp3-preview/df1764ebea4128404a4a35067122ffbf32b0a4fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USMC18724713,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave,post-punk,punk,uk post-punk",0.247,0.72,11.0,-8.881,1.0,0.0386,0.0937,5.86e-05,0.12,0.445,144.653,4.0,,UME - Global Clearing House,"C © 2020 UMG Recordings, Inc., P ℗ 2020 UMG Recordings, Inc. FP",7981 +7982,spotify:track:2lZHCWCUkxLuQ5skJhkoyS,Shooting Stars,spotify:artist:6fXEqmGQEt6ONuqVmwrN46,Bag Raiders,spotify:album:1HPUrRUr6dg34UHoqUQx6a,Bag Raiders (Deluxe),spotify:artist:6fXEqmGQEt6ONuqVmwrN46,Bag Raiders,2011-01-01,https://i.scdn.co/image/ab67616d0000b273273d3dfbf1d03268805e53b6,1,3,235813,https://p.scdn.co/mp3-preview/0ce24b107789d993b19cc3e9b5a487c8cc60a5c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71001517,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,indietronica,nu disco",0.649,0.716,11.0,-6.232,1.0,0.0445,0.0879,0.03,0.0824,0.503,124.968,4.0,,Modular,"C © 2011 Modular Recordings, P ℗ 2011 Modular Recordings",7982 +7983,spotify:track:5O3eNPhckrOCxIBtR5SQLN,Hey There Delilah,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,spotify:album:33XEF2uGTwEZuVmwXiK9d2,All That We Needed,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,2005-01-01,https://i.scdn.co/image/ab67616d0000b2737da7ca561162d1bdcd603e55,1,13,232533,https://p.scdn.co/mp3-preview/fcd477890854d132e79a028d17d89bf7812652dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US5260507213,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,neo mellow,neon pop punk,pop punk,pop rock",0.655,0.296,2.0,-10.578,1.0,0.0282,0.884,0.0,0.114,0.31,103.981,4.0,,Fearless Records,"C © 2005 Fearless Records, a division of Concord Music Group, Inc., P ℗ 2005 Fearless Records, a division of Concord Music Group, Inc.",7983 +7984,spotify:track:6Z9XH9AinBw8TjIQUTtW5k,Sing It Back - Boris Dlugosch Mix,"spotify:artist:4aaBjq7VqqQvpSF69GglvO, spotify:artist:5mrwZhvK7J8K34cWeFG3ru, spotify:artist:0r3oYkStfoV3sVeoQ1vmtw","Moloko, Boris Dlugosch, Michael Lange",spotify:album:3UuMlR5JNmqzSAkFZKNQy3,Sing It Back,spotify:artist:4aaBjq7VqqQvpSF69GglvO,Moloko,1998-10-26,https://i.scdn.co/image/ab67616d0000b273580716b6c8f2fe9f60fd5115,1,1,278000,https://p.scdn.co/mp3-preview/12ee131da6667cdb1c0a25bb5d4cbc4e8f913593?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBND9800385,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electronica,trip hop,german house,hamburg electronic",0.761,0.775,3.0,-7.495,0.0,0.034,0.00691,0.000538,0.0512,0.966,123.017,4.0,,Echo,"C © 1999 The Echo Label Limited, a BMG Company trading as ECHO, P ℗ 1999 The Echo Label Limited, a BMG Company trading as ECHO",7984 +7985,spotify:track:6XjGnmIM6rPdslUBUUphVL,Escapade,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:7jtBAkD6DL5yn7komrFTxE,Rhythm Nation 1814,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1989-09-19,https://i.scdn.co/image/ab67616d0000b27336e9e2e6de0b594414fb80c9,1,14,283933,https://p.scdn.co/mp3-preview/2dcd3a48bfd1204fd5bd030b15e9f96a70901549?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USAM18900717,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.804,0.945,1.0,-7.539,1.0,0.0483,0.0226,0.000878,0.171,0.701,115.217,4.0,,A&M,"C © 1989 A&M Records, P ℗ 1989 A&M Records",7985 +7986,spotify:track:0gPQTLaqHDgdupKEok7J2x,7 Days,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,spotify:album:5TedEgCbtmvDnXzUtXEFJY,Born to Do It,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2000-08-14,https://i.scdn.co/image/ab67616d0000b2737c2e92fb2302f8e8fcd9b389,1,4,235133,https://p.scdn.co/mp3-preview/bcbdafe3037ed6cfc085f3b1b72bc511a70d6183?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAWV9902019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.659,0.812,4.0,-7.499,0.0,0.0487,0.23,0.0,0.0951,0.888,83.014,4.0,,Sony Music UK,"P (P) 2001 Wildstar Records Limited, licensed exclusively to Sony Music Entertainment UK Limited",7986 +7987,spotify:track:4dkMqDjuN7r9mOYpJtEUGt,Better Than Ever,"spotify:artist:1lc8mnyGrCLtPhCoWjRxjM, spotify:artist:0id62QV2SZZfvBn9xpmuCl","Flight Facilities, Aloe Blacc",spotify:album:1bsWRZwEmhD0oZXKyue17v,Better Than Ever,spotify:artist:1lc8mnyGrCLtPhCoWjRxjM,Flight Facilities,2019-10-18,https://i.scdn.co/image/ab67616d0000b2737cd058f2adba283ede42f93b,1,1,183295,https://p.scdn.co/mp3-preview/d7c1f6ffbb76d5a3755b01c3c2e67d9bc2844da3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFF01900200,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian indie,indietronica,nu disco,pop soul,r&b",0.646,0.832,4.0,-2.687,1.0,0.189,0.114,0.0,0.371,0.542,90.816,4.0,,Future Classic,"C 2019 Future Classic, P 2019 Future Classic",7987 +7988,spotify:track:1zfdIGmHKuyjUavSPDDiGE,The Wanderer,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,spotify:album:4lP8thNjRiunNToMfq3QUd,The Best Of Dion,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,2001-01-01,https://i.scdn.co/image/ab67616d0000b273fee4f38c11470827a2ab4f96,1,6,167160,https://p.scdn.co/mp3-preview/9a7c35cec5529e7fb4d46a1b13021b81b4ec2854?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLA18800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rock-and-roll,rockabilly",0.626,0.477,2.0,-13.147,1.0,0.0401,0.189,0.0,0.116,0.846,114.432,4.0,,Universal Music Group,"C © 2001 Capitol Records LLC, P ℗ 2001 Capitol Records LLC",7988 +7989,spotify:track:1vTf2FcQykdB9CYUVNb69j,Step Back In Time,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:2RIQRqkdhTI31wJhl90R9P,Rhythm Of Love,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,1990-11-12,https://i.scdn.co/image/ab67616d0000b2735c19b4dfc1d038d645a60d4a,1,2,184533,https://p.scdn.co/mp3-preview/20a236e781c26b6b1ff4b5408a34f7256af08883?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK0200215,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.695,0.974,5.0,-4.452,0.0,0.05,0.0186,0.0417,0.337,0.868,122.341,4.0,,WM Australia,"C 1990 Mushroom Records Pty Ltd, P 1990 Mushroom Records Pty Ltd",7989 +7990,spotify:track:3WdmbQIAPxB6FliVo3DsDC,Rainy Days and Mondays,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:0wBP8GaN80GPolmY8M19em,Classic Carpenters,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2016-04-22,https://i.scdn.co/image/ab67616d0000b273e0883bb3ac31d595172c0a82,1,5,209146,https://p.scdn.co/mp3-preview/872144dc845e5150a7cbd9b50fce017af28fa0a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUBM01600042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.406,0.537,5.0,-5.423,1.0,0.0258,0.699,5.18e-05,0.101,0.169,75.91,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,7990 +7991,spotify:track:3I7bYwN9cMsXm5HqEH76Vv,A Little Bit More,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,spotify:album:2L4Acf5HQQT9pZqqG8Fjte,Sharing The Night Together,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,1996-01-01,https://i.scdn.co/image/ab67616d0000b273dcf0f668ee23ca387fc2f6f5,1,6,173306,https://p.scdn.co/mp3-preview/22960fa79ea32ae668016da1dc385dc04edaecb7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USCA29100203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,mellow gold,soft rock",0.299,0.435,9.0,-12.641,0.0,0.0337,0.462,0.0,0.321,0.511,184.007,4.0,,Capitol Records,"C © 1996 Capitol Catalog, P ℗ 1996 Capitol Records Inc.",7991 +7992,spotify:track:0FjMLXne5a6RXzlZyl6ftr,My Prerogative,spotify:artist:62sPt3fswraiEPnKQpAbdE,Bobby Brown,spotify:album:4JYhOe7TlnOQkwWNAcCfPt,Don't Be Cruel,spotify:artist:62sPt3fswraiEPnKQpAbdE,Bobby Brown,1988-06-20,https://i.scdn.co/image/ab67616d0000b2733fff4fb5e71f3b652a46ae29,1,2,288800,https://p.scdn.co/mp3-preview/2904c17821666b8dcd6e8565e35a8361924f7a80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC18825732,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing,r&b,urban contemporary",0.758,0.596,9.0,-11.406,1.0,0.0504,0.0605,0.0,0.288,0.645,110.608,4.0,,Geffen*,"C © 1988 MCA Records Inc., P ℗ 1988 UMG Recordings, Inc.",7992 +7993,spotify:track:0iASWKzwLiBx1hhIMoyYMj,Everybody Rise,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:3pb256CZQ5vf8kbDlguYhD,Cry Forever,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2021-04-30,https://i.scdn.co/image/ab67616d0000b27356bb5daea8dab10126661bc5,1,2,190573,https://p.scdn.co/mp3-preview/68e5bb48458776ee6dff748f46016e416fef2457?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM02000132,spotify:user:bradnumber1,2021-08-24T21:23:55Z,australian pop,0.704,0.675,0.0,-6.795,1.0,0.0485,0.0343,0.0,0.0631,0.681,102.999,4.0,,Wonderlick,P (P) 2020 Amy Shark under exclusive license to the Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd.,7993 +7994,spotify:track:3tjFYV6RSFtuktYl3ZtYcq,Mood (feat. iann dior),"spotify:artist:6fWVd57NKTalqvmjRd2t8Z, spotify:artist:6ASri4ePR7RlsvIQgWPJpS","24kGoldn, iann dior",spotify:album:4YMnOf4a7obOcN1Gy2QEuM,Mood (feat. iann dior),"spotify:artist:6fWVd57NKTalqvmjRd2t8Z, spotify:artist:6ASri4ePR7RlsvIQgWPJpS","24kGoldn, iann dior",2020-07-24,https://i.scdn.co/image/ab67616d0000b273ff8c985ecb3b7c5f847be357,1,1,140525,https://p.scdn.co/mp3-preview/c425299d5996843fc24308b896f7ce60fd262c99?cid=9950ac751e34487dbbe027c4fd7f8e99,True,6,USQX92003025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"cali rap,pop rap,melodic rap",0.7,0.722,7.0,-3.558,0.0,0.0369,0.221,0.0,0.272,0.756,90.989,4.0,,Records/Columbia,"P (P) 2020 Records Label, LLC / Columbia",7994 +7995,spotify:track:39o4aMfeuhmekejZIxE3W4,A Little More Love,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:4LZhAy9UsJ0EiqqeKyrlts,Hopelessly Devoted: The Hits,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2018-06-08,https://i.scdn.co/image/ab67616d0000b273ea73235699dcf414d1e1adae,1,5,205725,https://p.scdn.co/mp3-preview/223a7014b60a5b10bcb32d8c8e4af85de32c64f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,QM75X1500006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.713,0.534,8.0,-10.607,1.0,0.0329,0.0648,0.0158,0.0814,0.532,100.22,4.0,,Sony Music Entertainment,"P (P) 2018 ONJ Productions, Ltd. under exclusive licence to Sony Music Entertainment Australia Pty Ltd",7995 +7996,spotify:track:2EBCVPNAG46nbgs6jXPGvv,Starships,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:22F5ZYY1sxoJjk6HzZfmC1,Pink Friday: Roman Reloaded The Re-Up (Explicit Version),spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2012-01-01,https://i.scdn.co/image/ab67616d0000b273ef9ad61e2a4f15606fd4ab15,2,10,210626,https://p.scdn.co/mp3-preview/394733516cbfb50de32d089428542875e77251ed?cid=9950ac751e34487dbbe027c4fd7f8e99,True,77,USCM51200060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,queens hip hop,rap",0.747,0.716,11.0,-2.457,0.0,0.0751,0.135,0.0,0.251,0.751,125.006,4.0,,Nicki Minaj/Cash Money,"C © 2012 Cash Money Records Inc., P ℗ 2012 Cash Money Records Inc.",7996 +7997,spotify:track:1Ky1qC6Tkqz9PrNHqvHZXS,Be Together (feat. Wild Belle),"spotify:artist:738wLrAtLtCtFOLvQBXOXp, spotify:artist:4wHZkzWXD9GPr4RQAYjUcv","Major Lazer, Wild Belle",spotify:album:0C7tn68LWhhw5Ez6g9LMjz,Peace Is the Mission,spotify:artist:738wLrAtLtCtFOLvQBXOXp,Major Lazer,2015-06-01,https://i.scdn.co/image/ab67616d0000b2732241b2e696f05a4bfad7144d,1,1,233010,https://p.scdn.co/mp3-preview/4c52f119886f9a67285a3656a341e0116e99ae82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMUY41500009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,moombahton,pop,pop dance,shimmer pop",0.497,0.627,6.0,-6.141,0.0,0.0319,0.00142,0.0,0.619,0.193,79.93,4.0,,WM Australia,"C © 2015 Major Lazer LLC. Marketed, manufactured and distributed in Australia and New Zealand by Warner Music Australia under exclusive licence., P ℗ 2015 Major Lazer LLC. Marketed, manufactured and distributed in Australia and New Zealand by Warner Music Australia under exclusive licence.",7997 +7998,spotify:track:3Iba59sFmGhQ4kbCY5L8AX,Little Bit of Love,spotify:artist:5SHxzwjek1Pipl1Yk11UHv,Tom Grennan,spotify:album:19ftohYqQetn7BoGQXXlSd,Evering Road (Deluxe),spotify:artist:5SHxzwjek1Pipl1Yk11UHv,Tom Grennan,2021-03-12,https://i.scdn.co/image/ab67616d0000b273c24d95b10c39a2248745091a,1,3,226268,https://p.scdn.co/mp3-preview/d254f2af818bab3843a1de549ba19ac75dae62d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBARL2001197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk pop,0.689,0.706,1.0,-4.48,0.0,0.0312,0.0833,0.0,0.105,0.623,106.52,4.0,,Insanity Records,P (P) 2021 Insanity Records Limited under exclusive licence to Sony Music Entertainment UK Limited,7998 +7999,spotify:track:0Ua0c5HvprnpCVPfXZXZvv,Listen to Your Heart (feat. Edmée) - Furious F. Radio Edit,"spotify:artist:7lVtH5UmhLGyfN9iS2FFk7, spotify:artist:2Bn9Kf2NC3mJfExuN9DMdE, spotify:artist:5db0GomURBNEF6GmYObZvx","DHT, Edmee, Furious F.",spotify:album:2ww5cXyZ6AyAu12Zx0X66S,Listen to Your Heart (feat. Edmée) [Radio Edits],"spotify:artist:7lVtH5UmhLGyfN9iS2FFk7, spotify:artist:2Bn9Kf2NC3mJfExuN9DMdE","DHT, Edmee",2016-12-09,https://i.scdn.co/image/ab67616d0000b2731556a41fcfab352e27dab818,1,2,230000,https://p.scdn.co/mp3-preview/c51a39627ee152847c12539573526e39235a25ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,BEZ490300093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.564,0.983,11.0,-5.737,0.0,0.0421,0.013,0.00661,0.344,0.418,144.985,4.0,,Central Station Records,P 2016 Central Station Records,7999 +8000,spotify:track:6UVAFdrsnVTUzhkI1uJEOK,Make Love to Me,spotify:artist:5lD4NOWjS7yf69zIK46Chy,Kelly Marie,spotify:album:0uUf16kcNCOOYb65ZFFQuu,Feels Like I'm In Love,spotify:artist:5lD4NOWjS7yf69zIK46Chy,Kelly Marie,1979-07-01,https://i.scdn.co/image/ab67616d0000b273c446262a214d443720bf3539,1,15,258280,https://p.scdn.co/mp3-preview/616641572a5f699e5fbe1b499180ebfc1358d120?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE0701721,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hi-nrg,0.69,0.634,5.0,-9.78,1.0,0.0759,0.0441,0.0016,0.15,0.695,122.926,4.0,,Sanctuary Records,"C © 2007 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2007 Sanctuary Records Group Ltd., a BMG Company",8000 +8001,spotify:track:1v2ECI79z8S4PQv9xYwIfU,Soak Up The Sun,spotify:artist:4TKTii6gnOnUXQHyuo9JaD,Sheryl Crow,spotify:album:5SPkapdx8WH82UhGPfeoc4,"C'mon, C'mon",spotify:artist:4TKTii6gnOnUXQHyuo9JaD,Sheryl Crow,2002-04-08,https://i.scdn.co/image/ab67616d0000b273b93fec763668e17c453b3491,1,2,292133,https://p.scdn.co/mp3-preview/bf75c3fadb6ed4c441966d8f3f7f183a442a2c2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAM10200011,spotify:user:bradnumber1,2021-11-11T04:18:33Z,"lilith,new wave pop,permanent wave,pop rock,singer-songwriter",0.712,0.736,4.0,-5.026,1.0,0.0432,0.0383,0.0,0.107,0.695,119.971,4.0,,A&M,"C © 2002 A&M Records, P ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",8001 +8002,spotify:track:40MX1KAAQP8KVlvDBgl3yw,Better Get A Lawyer,spotify:artist:5m5cTNJ2RxfxKpGULocV9T,The Cruel Sea,spotify:album:4ZoufJpzOe34fB6oBtdEHc,Three Legged Dog,spotify:artist:5m5cTNJ2RxfxKpGULocV9T,The Cruel Sea,1995-01-01,https://i.scdn.co/image/ab67616d0000b27389733b2d73c267a39d049cd0,1,11,180693,https://p.scdn.co/mp3-preview/45d1a9b6a0a6a7350c9b63371ebabb7c5dfb3434?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUPO09420228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.472,0.644,2.0,-7.321,1.0,0.105,0.000643,0.2,0.256,0.862,86.32,4.0,,Universal Music,"C © 1995 Polydor Records, P ℗ 1995 Polydor Records",8002 +8003,spotify:track:5jAYbBuwroXXigCj4IGFdA,Rabbit Heart (Raise It Up),spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,spotify:album:1rLLyY5p6HXNl2lKzINWp5,Lungs (Deluxe Version),spotify:artist:1moxjboGR7GNWYIMWsRjgG,Florence + The Machine,2009,https://i.scdn.co/image/ab67616d0000b273003f81b1f4246362638e682d,1,2,232360,https://p.scdn.co/mp3-preview/6fa549dc958fbfa3e3b1a67cfa7f087f362579de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBUM70903474,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,modern rock,neo mellow,uk alternative pop",0.625,0.858,9.0,-3.483,0.0,0.0462,0.092,1.36e-06,0.266,0.418,116.98,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records Ltd. A Universal Music Company., P ℗ 2011 Universal Island Records Ltd. A Universal Music Company.",8003 +8004,spotify:track:4uNAdFLTuiIhDtbZsq31Og,Asia Minor (Rerecorded),spotify:artist:00FrqfQ1NB4Dlr10yUP4Hr,Kokomo,spotify:album:5S5TwSmNCvK8ttbDLyA32d,60's Super Hits (Rerecorded Version),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-11-20,https://i.scdn.co/image/ab67616d0000b2731fa8430a040bd5630c1a85e4,1,6,118133,https://p.scdn.co/mp3-preview/3abbfe0249fcbbfe14dd55dcd2795dda99010789?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,USDEI9802759,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.459,0.535,2.0,-11.926,0.0,0.0305,0.665,0.816,0.18,0.932,202.954,4.0,,K-Tel,"C 2007 K-tel, P 2007 K-tel",8004 +8005,spotify:track:5JHbwrC8KTnsxfKkWJx09p,Too Close,spotify:artist:2yEkZBBjhzKzt6LF5XMaFi,Blue,spotify:album:4Kx60DeMOwNNnvQRbZMuHg,All Rise,spotify:artist:2yEkZBBjhzKzt6LF5XMaFi,Blue,2001-11-26,https://i.scdn.co/image/ab67616d0000b27323b80e7083b0677a46f3c482,1,2,226853,https://p.scdn.co/mp3-preview/79d2e76420f11c6ff3a159b8e2d169201f6b313d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAAA0100482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.789,0.761,2.0,-2.905,1.0,0.0377,0.00673,0.0,0.0372,0.735,102.422,4.0,,Innocent,"C © 2001 Virgin Records Limited, P ℗ 2001 Virgin Records Limited",8005 +8006,spotify:track:2D52zjCyqEIQa221lhw6uk,This Is War,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,spotify:album:6OlCoydaNFUU7v1Xo5ZJPx,This Is War,spotify:artist:0RqtSIYZmd4fiBKVFqyIqD,Thirty Seconds To Mars,2009-01-01,https://i.scdn.co/image/ab67616d0000b27364219d797874eecfd69f2458,1,4,326983,https://p.scdn.co/mp3-preview/c7868df38ecd5db7a43c331db00e11fdbe4c40cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USVI20900430,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,post-grunge",0.402,0.723,6.0,-5.26,1.0,0.0579,0.0663,2e-06,0.233,0.224,160.047,4.0,,Virgin Records,"C © 2009 Virgin Records America, Inc., P ℗ 2009 Virgin Records America, Inc.",8006 +8007,spotify:track:4j2Xkx947eebgeZQBw6pEQ,Closer to Free,spotify:artist:2D2qwEatKbBSKhBCfP6lyn,Bodeans,spotify:album:3QBp9zhDlqTGjKvghauuzI,The Best of BoDeans - Slash and Burn,spotify:artist:2D2qwEatKbBSKhBCfP6lyn,Bodeans,2002,https://i.scdn.co/image/ab67616d0000b273e7a9f46b962894aa4c109014,1,14,190640,https://p.scdn.co/mp3-preview/35b9d85b5df90395a5365cc87494aa5d58d62280?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAAP0100534,spotify:user:bradnumber1,2021-08-08T09:26:31Z,jangle pop,0.497,0.875,7.0,-8.84,1.0,0.0355,4.59e-05,0.00399,0.625,0.505,98.171,4.0,,Rhino/Slash,"C 2011 © 2001 London Records 90 Ltd., P 2011 ℗ 2001 Slash Records Marketed by Rhino Entertainment Company, a Warner Music Group Company",8007 +8008,spotify:track:1bLjm7Gqjbuv57OxZdhLrP,Congratulations,"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:0VRj0yCOv2FXJNP47XQnx5","Post Malone, Quavo",spotify:album:2TbtBmA00IP0P1GpUqIaXS,Stoney (Deluxe),spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2016-12-09,https://i.scdn.co/image/ab67616d0000b273894a761abf954838a84c8db9,1,12,220293,https://p.scdn.co/mp3-preview/3d5fa6ed1a333e7949f847ff1ab037afc0d98390?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USUM71614486,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,atl hip hop,melodic rap,rap,trap",0.629,0.807,6.0,-4.255,1.0,0.0371,0.204,0.0,0.252,0.492,122.996,4.0,,Universal Records,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",8008 +8009,spotify:track:35X3Vo9VIbIGBEabB3zYFY,Guitar Band,spotify:artist:4tyua0wKtVDZVBVlRwyBRl,Stevie Wright,spotify:album:2xuDS6oUs11Xl0TNDkaSWI,The Definitive Collection,spotify:artist:4tyua0wKtVDZVBVlRwyBRl,Stevie Wright,1974,https://i.scdn.co/image/ab67616d0000b273fb8f42b17872c7b9a3432af6,1,11,201426,https://p.scdn.co/mp3-preview/e89627cdd85c42e4ba4476654fd0ae153084d8a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07400058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.59,0.679,0.0,-6.809,1.0,0.121,0.00786,1.15e-05,0.0594,0.668,93.161,4.0,,Albert Productions,"C © 1974 BMG AM Pty Ltd., P ℗ 1974 BMG AM Pty Ltd.",8009 +8010,spotify:track:2BVVmJQZv4fOPWavI9mkIj,Broken Arrows,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:5ttIIMPWCp2bvwsdAPcEXC,Stories,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2015-10-02,https://i.scdn.co/image/ab67616d0000b273d40648f55cadd57796f22455,1,6,232760,https://p.scdn.co/mp3-preview/747812ee0fbc0a625f78b39dedf413ed04eddb93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CHB701400188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.634,0.674,7.0,-7.145,1.0,0.0465,0.0487,0.00116,0.102,0.298,115.995,4.0,,Universal Music Group,"C © 2015 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2015 Avicii Music AB, under exclusive license to Universal Music AB",8010 +8011,spotify:track:5vE5T1RhdFY7rJeQBPFnYY,Jessie's Girl,spotify:artist:6IFXsrXBpwbIqtOUOiAa3p,Rick Springfield,spotify:album:2WK6dT3R5gggZCtxyhi2cr,Working Class Dog,spotify:artist:6IFXsrXBpwbIqtOUOiAa3p,Rick Springfield,1981-02-14,https://i.scdn.co/image/ab67616d0000b273925fb44f3921c37fc233fca1,1,2,194253,https://p.scdn.co/mp3-preview/141c3ddb3bed0377915d80b71e594a04cfa920c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,AUDD32001059,spotify:user:bradnumber1,2023-06-24T07:44:56Z,"album rock,australian rock,classic rock,glam metal,hard rock,mellow gold,new romantic,new wave pop,soft rock,yacht rock",0.72,0.613,2.0,-13.036,1.0,0.0477,0.169,0.0,0.114,0.862,131.618,4.0,,Wizard Records,"C 1981 Robie Porter Music, P 1981 Wizard Records",8011 +8012,spotify:track:1WvEr42lxz4P06DlIuYdmr,New York Mining Disaster 1941,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:2ESenDgBlvBFn6G1SfVZIw,Bee Gees' 1st,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1967-07-14,https://i.scdn.co/image/ab67616d0000b273b99aba76485e5c02fa48f3db,1,8,132360,https://p.scdn.co/mp3-preview/ed4cd0dcf50209a8ff992b2e264e34c9d74c510d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAKW6700061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.447,0.237,9.0,-13.42,0.0,0.076,0.581,0.0,0.0889,0.475,89.271,4.0,,Bee Gees Catalog,"C © 1967 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, Under exclusive license to Capitol Music Group, P ℗ 1967 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, Under exclusive license to Capitol Music Group",8012 +8013,spotify:track:1TqSckVfkPVo2CWDcEvvT2,Song 4 Mutya (Out Of Control) - Radio Edit,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,spotify:album:4gAC6u1x2Bld7EBhJppCnQ,Groove Armada Greatest Hits,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2017-09-21,https://i.scdn.co/image/ab67616d0000b2732aa2ad150b13e8703233fe8d,1,1,219000,https://p.scdn.co/mp3-preview/49879343c5d4a3e81060514e769beed5ce9ec516?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBAHK0700054,spotify:user:bradnumber1,2023-08-09T21:12:30Z,"big beat,electronica,nu skool breaks,trip hop",0.669,0.862,0.0,-3.293,1.0,0.0858,0.000327,1.52e-05,0.108,0.847,120.066,4.0,,Columbia,P This compilation (P) 2007 Sony Music Entertainment UK Limited,8013 +8014,spotify:track:5kugmV4z61Bnd4UwAkC29k,Emotion Sickness,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:5MgR5qQCxsusIOui4S2io5,The Best Of - Volume One,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,2000-11-10,https://i.scdn.co/image/ab67616d0000b273b034d912628fb636eedbf7c2,1,4,361466,https://p.scdn.co/mp3-preview/d85aaeb5429ea07f1103c3c61e0c8df706e82712?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUSM09800223,spotify:user:bradnumber1,2022-05-04T08:43:53Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.239,0.559,1.0,-8.373,0.0,0.0316,0.116,0.146,0.283,0.095,109.448,4.0,,Murmur Records,P (P) 2000 Sony Music Entertainment Australia Pty Ltd,8014 +8015,spotify:track:0kv8hQMkkfBlJxHTBIUvhP,Bad Romance,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:04gaEGvrXimVLOWvNZ0fD6,Bad Romance,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2009-01-01,https://i.scdn.co/image/ab67616d0000b2730a49322a2b093601bce2f38e,1,1,294640,https://p.scdn.co/mp3-preview/a58b8677ea3858185308224d36808920e587cec5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USUM70903859,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.695,0.919,0.0,-3.769,1.0,0.0382,0.00265,4.12e-05,0.0611,0.717,119.001,4.0,,Interscope,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",8015 +8016,spotify:track:0O45fw2L5vsWpdsOdXwNAR,SexyBack (feat. Timbaland),"spotify:artist:31TPClRtHm23RisEBtV3X7, spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ","Justin Timberlake, Timbaland",spotify:album:2scB1uhcCI1TSf6b9TCZK3,FutureSex/LoveSounds,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2006-09-12,https://i.scdn.co/image/ab67616d0000b273c6ba98fd3f3b396a6c6f7091,1,2,242733,https://p.scdn.co/mp3-preview/3093705825f1c799e2de0064a2c775ef5c56d503?cid=9950ac751e34487dbbe027c4fd7f8e99,True,79,USJI10600269,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,pop,pop rap",0.967,0.583,7.0,-5.562,0.0,0.0789,0.0584,0.0,0.0519,0.964,117.0,4.0,,Jive,P (P) 2006 Zomba Recording LLC,8016 +8017,spotify:track:1dXcUx5gQ8rkHctSsRnZuH,Pretty Paper,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:48CvRZSBT0FbOHKLFfHy0n,The Essential Roy Orbison,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2006-03-28,https://i.scdn.co/image/ab67616d0000b2734516a5d74bac51f3afcba85a,1,19,164226,https://p.scdn.co/mp3-preview/ffdf54963981b7bdfa0755a943095c5bea6b674e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USSM16301516,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.417,0.279,7.0,-11.577,1.0,0.0287,0.722,0.0,0.407,0.453,79.964,3.0,,Monument/Orbison Records/Legacy,P This compilation (P) 2006 Sony Music Entertainment,8017 +8018,spotify:track:0EFEkt29P7Icr7dO4vN6yk,Walk on the Wild Side,spotify:artist:42TFhl7WlMRXiNqzSrnzPL,Lou Reed,spotify:album:3JKDzf9F11y9kjWnehKna1,Transformer,spotify:artist:42TFhl7WlMRXiNqzSrnzPL,Lou Reed,1972-12-01,https://i.scdn.co/image/ab67616d0000b273c358c5153735d9da2d1f5f95,1,5,253960,https://p.scdn.co/mp3-preview/afe92a16fcc7d89cd74938d91c9c752bfb65c189?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC17201948,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,permanent wave,rock,singer-songwriter",0.564,0.262,0.0,-19.746,1.0,0.105,0.652,0.000204,0.0896,0.376,104.5,4.0,,RCA/BMG Heritage,P (P) 2002 BMG Heritage,8018 +8019,spotify:track:3xY5aYJcdvZX9xQxNd02ku,In The City,"spotify:artist:25uiPmTg16RbhZWAqwLBy5, spotify:artist:2wY79sveU1sp5g7SokKOiI","Charli xcx, Sam Smith",spotify:album:4yb3RB7teZSVscBmOoDWvT,In The City,"spotify:artist:25uiPmTg16RbhZWAqwLBy5, spotify:artist:2wY79sveU1sp5g7SokKOiI","Charli xcx, Sam Smith",2023-10-19,https://i.scdn.co/image/ab67616d0000b27312ca03448e4f565f0e45d837,1,1,176479,https://p.scdn.co/mp3-preview/085ddf5e7e18da772df0c9f9314353d2f0dcb072?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USAT22311077,spotify:user:bradnumber1,2023-11-23T06:47:41Z,"art pop,candy pop,metropopolis,pop,uk pop,pop,uk pop",0.736,0.754,4.0,-5.457,1.0,0.0443,0.033,0.000599,0.0731,0.648,128.046,4.0,,Atlantic Records,"C © 2023 Atlantic Recording Corporation, P ℗ 2023 Atlantic Recording Corporation",8019 +8020,spotify:track:0Vqn5YEx8He1wFlBVJ59f0,Turnaround,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,spotify:album:4ZAt2G4EguE7sBlmcA22Mp,Seizures,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,2009-01-01,https://i.scdn.co/image/ab67616d0000b27334292920eeb06dd4071061b8,1,4,223066,https://p.scdn.co/mp3-preview/fa02404f432d45b96d69ea2ed3c9a7657e4a6366?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,AUEL00900026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussie emo,australian alternative rock,australian indie",0.349,0.618,10.0,-5.487,1.0,0.0356,0.000745,0.0,0.0936,0.28,177.764,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Eleven: A Music Company, P ℗ 2009 Eleven: A Music Company",8020 +8021,spotify:track:1fDsrQ23eTAVFElUMaf38X,American Pie,spotify:artist:1gRNBaI4yn6wCCTvRhGWh8,Don McLean,spotify:album:10jsW2NYd9blCrDITMh2zS,American Pie,spotify:artist:1gRNBaI4yn6wCCTvRhGWh8,Don McLean,1971,https://i.scdn.co/image/ab67616d0000b2730085dd4362653ef4c54ebbeb,1,1,516893,https://p.scdn.co/mp3-preview/555b08d0fea79ebea7f032d86ad5446557600106?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USEM38600088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.529,0.482,4.0,-11.709,0.0,0.0599,0.7,0.0,0.0842,0.492,138.453,4.0,,Capitol Records,"C © 1971 EMI Catalog, P ℗ 1988 Capitol Records, LLC",8021 +8022,spotify:track:1fipvP2zmef6vN2IwXfJhY,I’m Ready (with Demi Lovato),"spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Sam Smith, Demi Lovato",spotify:album:44msshHeN6irJ1md7GVSlU,I’m Ready (with Demi Lovato),"spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Sam Smith, Demi Lovato",2020-04-16,https://i.scdn.co/image/ab67616d0000b2734faa7bcdea2019fc871ef49e,1,1,200838,https://p.scdn.co/mp3-preview/052e4950cf72dbb7e39f44ea06177190e1dc79f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBUM71906950,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop,pop,post-teen pop",0.501,0.674,5.0,-6.363,1.0,0.0408,0.00346,3.56e-05,0.282,0.152,155.051,4.0,,PLG - Capitol,"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",8022 +8023,spotify:track:7A9r5ZkRVuBPzjzY2CGYfS,Even Flow,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:1G1R5dY01DSyti3NaWnOp3,rearviewmirror (greatest hits 1991-2003),spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,2004-11-16,https://i.scdn.co/image/ab67616d0000b27326606c9bba49a83567fb1d9e,1,3,303666,https://p.scdn.co/mp3-preview/ea114404a46b5c5c329a4a45a5adbd06a15ed29f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,41,USSM19100673,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.373,0.844,7.0,-4.332,1.0,0.0327,0.000109,7.7e-05,0.124,0.377,104.899,4.0,,Epic,P This compilation (P) 2004 Sony Music Entertainment,8023 +8024,spotify:track:24ySl2hOPGCDcxBxFIqWBu,Rain On Me (with Ariana Grande),"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR","Lady Gaga, Ariana Grande",spotify:album:4TqgXMSSTwP3RCo3MMSR6t,Rain On Me (with Ariana Grande),"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:66CXWjxzNUsdJxJ2JdwvnR","Lady Gaga, Ariana Grande",2020-05-22,https://i.scdn.co/image/ab67616d0000b273c8583f0bd97d3042d4971acf,1,1,182200,https://p.scdn.co/mp3-preview/0e1f4d14825f1a67b816669d4fd15131c097f056?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM72004304,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop,pop",0.672,0.855,9.0,-3.764,1.0,0.0397,0.021,0.0,0.323,0.646,123.056,4.0,,Interscope Records,"C © 2020 Interscope Records, P ℗ 2020 Interscope Records",8024 +8025,spotify:track:7n3REqDfZBpkd0bEpGu2H3,Mr. Jones,spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,spotify:album:7FJlveNFRrWYiD6xWGPHSb,Films About Ghosts (The Best Of Counting Crows),spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,2003-11-24,https://i.scdn.co/image/ab67616d0000b273fd27e72c498404db51289520,1,7,272733,https://p.scdn.co/mp3-preview/276d59038d8c3c33477649a5851b00a2b5f85ae2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USIR10000287,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge,rock",0.571,0.836,0.0,-5.556,1.0,0.0371,0.194,4.09e-06,0.182,0.73,141.612,4.0,,Geffen,"C © 2004 Geffen Records, P ℗ 2004 Geffen Records",8025 +8026,spotify:track:1Mb8WgET5ozEtG0zlibyUy,Timber,"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:6LqNN22kT3074XbTVUrhzX","Pitbull, Kesha",spotify:album:7vARFzgdVkbrHWheIKMkZk,Global Warming: Meltdown,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2012,https://i.scdn.co/image/ab67616d0000b27365045141bb6f165542741ded,1,13,204160,https://p.scdn.co/mp3-preview/54825c719d56bd5b737ac7c1aa3ce41ad3eef338?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRC11301695,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,dance pop,pop",0.581,0.963,11.0,-4.087,1.0,0.0981,0.0295,0.0,0.139,0.788,129.992,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",8026 +8027,spotify:track:05fHQeRbCSjKVS6z0WbQKJ,Every Time You Go Away - Radio Edit,spotify:artist:6rqU9HQ57NYGBnBzbrY3a4,Paul Young,spotify:album:6bDQgC4mNcwz46wHKI6h2y,From Time To Time - The Singles Collection,spotify:artist:6rqU9HQ57NYGBnBzbrY3a4,Paul Young,1991-09-07,https://i.scdn.co/image/ab67616d0000b273e0126da84b670e4f81afc75e,1,1,267000,https://p.scdn.co/mp3-preview/d1b482805d69cd77a4d4a9b37586cff0bccb545a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBBBN0009262,spotify:user:bradnumber1,2023-08-05T14:22:57Z,"mellow gold,new romantic,new wave,new wave pop,soft rock",0.572,0.721,5.0,-8.959,1.0,0.0402,0.187,7.41e-06,0.216,0.844,164.252,4.0,,Columbia,P (P) 1991 Sony Music Entertainment (UK) Ltd.,8027 +8028,spotify:track:6HhKj3GiPxDI6ME9Pjx0YU,Lean on Me,spotify:artist:4kEAjV4pCBOkoowYYQydvO,Club Nouveau,spotify:album:6GzcXhTWYats2m1R4Wy7uA,"Life, Love & Pain",spotify:artist:4kEAjV4pCBOkoowYYQydvO,Club Nouveau,1986-01-01,https://i.scdn.co/image/ab67616d0000b2736ef5e489d9ccfff507be8c54,1,3,348573,https://p.scdn.co/mp3-preview/19d902cd8d8967f8982987971b084781ed1a9018?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB19903379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,freestyle,funk,new jack swing,post-disco,quiet storm,urban contemporary",0.738,0.67,0.0,-8.93,1.0,0.132,0.185,0.0,0.0989,0.687,177.278,4.0,,"Tommy Boy Music, LLC","C 1986 Tommy Boy Music, LLC, P 1986 Tommy Boy Music, LLC",8028 +8029,spotify:track:6ueBIizMIir9JtG12VSbZR,Boom! Shake the Room,spotify:artist:1mG23iQeR29Ojhq89D5gbh,DJ Jazzy Jeff & The Fresh Prince,spotify:album:4hJGpieRXNe2USrnsZ2H9o,Collections,spotify:artist:1mG23iQeR29Ojhq89D5gbh,DJ Jazzy Jeff & The Fresh Prince,2003-01-31,https://i.scdn.co/image/ab67616d0000b27336091f2f3b11307dce21779a,1,4,226026,https://p.scdn.co/mp3-preview/a185cc21ca544a249e95888f2147a367e38f5d68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USJI19300024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"golden age hip hop,old school hip hop,philly rap",0.814,0.946,10.0,-7.097,0.0,0.136,0.0536,0.0,0.304,0.667,100.035,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2003 SONY BMG MUSIC ENTERTAINMENT.,8029 +8030,spotify:track:2FAL6hxj5Qxuj0kWOkEOsF,She Bop,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,spotify:album:1FvdZ1oizXwF9bxogujoF0,She's So Unusual,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,1983-10-14,https://i.scdn.co/image/ab67616d0000b27352f532df7ba3269b0242fed9,1,5,229266,https://p.scdn.co/mp3-preview/899163bb8e8dcc50b497e5f0f36506b29b77941b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM18300651,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,permanent wave,soft rock",0.583,0.891,9.0,-4.565,0.0,0.0345,0.00088,0.000163,0.103,0.814,136.794,4.0,,Portrait,P (P) 1983 Sony Music Entertainment Inc.,8030 +8031,spotify:track:4gAM42kOXFw9TJbSsRvWAj,Part Of The Union,spotify:artist:7dtYyLTWjuZGOcweC3eD2f,Strawbs,spotify:album:1qEiYH6MnhGJRBidGcmpE0,Bursting At The Seam,spotify:artist:7dtYyLTWjuZGOcweC3eD2f,Strawbs,1973,https://i.scdn.co/image/ab67616d0000b273c11359c6c5b9a8e60466b08b,1,6,175826,https://p.scdn.co/mp3-preview/392c38a75bbf7acc7d0965ffcb2e9e37eeb26b1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USAM17300045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british folk,canterbury scene,folk rock,progressive rock,psychedelic folk,symphonic rock",0.623,0.725,5.0,-8.642,1.0,0.0323,0.382,0.0,0.071,0.889,77.492,4.0,,A&M,"C © 1998 UMG Recordings, Inc., P ℗ 1998 UMG Recordings, Inc.",8031 +8032,spotify:track:6TMMeb0Ir1GVa3ZCYag74X,The Boll Weevil Song,spotify:artist:2ttm3uT0N1RN7vwKv1pQgh,Brook Benton,spotify:album:2rcXAJ66g8FMbQAYF1wMUq,The Best Of,spotify:artist:2ttm3uT0N1RN7vwKv1pQgh,Brook Benton,2011-07-20,https://i.scdn.co/image/ab67616d0000b273f713a5bbf67061f205e67670,1,10,171693,https://p.scdn.co/mp3-preview/8537118314b80cff7584b785f0570568719d8d32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHQC0502849,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rhythm and blues,southern soul",0.795,0.144,5.0,-22.304,1.0,0.208,0.468,0.0619,0.0708,0.911,139.888,4.0,,P.E.R Records,,8032 +8033,spotify:track:1kpbM1hlD3sQ2rDKbe2guE,Regardless,"spotify:artist:23IZADrJHPStZ6aMxJVq3s, spotify:artist:4gZRt9wlRx1IsxT9glJdrc","Jarryd James, Julia Stone",spotify:album:4kZKz4ZQCnuKWV6MqOR2H2,Thirty One,spotify:artist:23IZADrJHPStZ6aMxJVq3s,Jarryd James,2015-09-11,https://i.scdn.co/image/ab67616d0000b2738819357f0210af47c90a4682,1,6,273493,https://p.scdn.co/mp3-preview/026c34f6017a004ded2d05abe830509f126f1842?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUUM71500874,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative pop,australian r&b,australian singer-songwriter",0.672,0.393,9.0,-8.739,0.0,0.0477,0.551,1.05e-05,0.105,0.319,130.086,4.0,,Universal Music Australia (Distribution),"C © 2015 Dryden Street Ltd, P ℗ 2015 Dryden Street Ltd",8033 +8034,spotify:track:3A7qX2QjDlPnazUsRk5y0M,2U (feat. Justin Bieber),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:1uNFoZAHBGtllmzznpCI3s","David Guetta, Justin Bieber",spotify:album:1PZviVfBJJxNw5EtAwzdUu,2U (feat. Justin Bieber),spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2017-06-09,https://i.scdn.co/image/ab67616d0000b27345c5570d4a66346d8f683913,1,1,194896,https://p.scdn.co/mp3-preview/626f8fd3b8fd6119192f7c5871a0b506d8da2ee6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GB28K1700019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,canadian pop,pop",0.548,0.65,8.0,-5.827,0.0,0.0591,0.219,0.0,0.225,0.557,144.937,4.0,,Parlophone (France),"C © 2017 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company, P ℗ 2017 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company",8034 +8035,spotify:track:0bfY17lNbEp2Wnw6YipXQB,My Body,spotify:artist:4j56EQDQu5XnL7R3E9iFJT,Young the Giant,spotify:album:0SjFStr64eylrHDmZHGiTI,Young The Giant,spotify:artist:4j56EQDQu5XnL7R3E9iFJT,Young the Giant,2011,https://i.scdn.co/image/ab67616d0000b2732d057fa5b5580c47ea6474c4,1,2,244400,https://p.scdn.co/mp3-preview/5a915036c5d8efcc9be676a62ee45d823d4f1ec1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,NLA321090396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern alternative rock,modern rock,pov: indie,stomp and holler",0.488,0.909,10.0,-6.591,1.0,0.0929,0.0011,1.02e-05,0.456,0.643,129.774,4.0,,Roadrunner Records,"C © 2010 The All Blacks B.V., P ℗ 2010 The All Blacks B.V.",8035 +8036,spotify:track:0u6CqsKqlArqFuMVKREXp9,Never Can Say Goodbye,spotify:artist:17U2ImH5IyYMvjkCfPhMHT,The Communards,spotify:album:5JYaoYQ7d8twJ2gp6kPt6C,Red,spotify:artist:17U2ImH5IyYMvjkCfPhMHT,The Communards,1987,https://i.scdn.co/image/ab67616d0000b273ddaaa31eb8eee59361b7073d,1,6,285986,https://p.scdn.co/mp3-preview/9bf1afc95649c355c7bd6d112e82c815ffa3b1e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP0001082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hi-nrg,new romantic,new wave pop,sophisti-pop,synthpop",0.583,0.869,5.0,-6.931,1.0,0.0287,0.0434,0.0273,0.286,0.836,132.172,4.0,,London Records,"C 1987 London Records Ltd., P 1987 London Records Ltd.",8036 +8037,spotify:track:4DNKFfL7Q1JTOHzmADofwL,You Belong To Me - JX Mix,spotify:artist:0kjCW6i4ba1M9ou8OhgbV0,JX,spotify:album:0jf6SwV9h2dJz11e3zDIHd,You Belong To Me,spotify:artist:0kjCW6i4ba1M9ou8OhgbV0,JX,1969,https://i.scdn.co/image/ab67616d0000b273f5c94e4e54f6cd82bff2ffcc,1,2,466906,https://p.scdn.co/mp3-preview/a8e99a8637143b89ff994ff3717c8b7f0d887b68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBHCD9500077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hardcore techno,hip house",0.724,0.804,1.0,-14.508,0.0,0.0502,0.0559,0.0895,0.214,0.437,141.86,4.0,,Hooj Choons,"C 1969 Hooj Choons, P 1995 Hooj Choons",8037 +8038,spotify:track:01rmKkiJU1O67AmzoqGT3o,I Was Only 19 (A Walk in the Light Green) - Live Version,spotify:artist:2FBQIV8BJF5SrvXpziFE2M,Redgum,spotify:album:5cUBI5tRlT9zCt7NLALPlU,Caught In The Act,spotify:artist:2FBQIV8BJF5SrvXpziFE2M,Redgum,1983-08-15,https://i.scdn.co/image/ab67616d0000b27357210868ce4b2f9505d1933a,1,5,357400,https://p.scdn.co/mp3-preview/fc01f1df4403ebba4d45634496d7c247b889cc7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUSM08800080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.33,0.379,9.0,-16.775,1.0,0.0823,0.693,0.0,0.403,0.382,83.671,4.0,,Epic,P (P) 1983 Sony Music Australia Limited,8038 +8039,spotify:track:09cPQLDL1JH4Zz5ax1hd27,We've Only Just Begun,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:0wBP8GaN80GPolmY8M19em,Classic Carpenters,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2016-04-22,https://i.scdn.co/image/ab67616d0000b273e0883bb3ac31d595172c0a82,1,11,182586,https://p.scdn.co/mp3-preview/f34c7d6ceaf1ed971565cbdba98b982179671df7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUBM01600048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.303,0.653,11.0,-4.71,1.0,0.0397,0.427,0.0,0.126,0.176,173.909,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,8039 +8040,spotify:track:5flkGz6hHGvA5UD8LRDSgZ,On Directing,spotify:artist:5e1BZulIiYWPRm8yogwUYH,Tegan and Sara,spotify:album:5jbNeqFGcBfFriyocUaM17,Sainthood,spotify:artist:5e1BZulIiYWPRm8yogwUYH,Tegan and Sara,2009-10-23,https://i.scdn.co/image/ab67616d0000b27322e66fc444d17b2e8ccd20c6,1,4,165493,https://p.scdn.co/mp3-preview/8782f7b76c4c1e43fbd6a6f271892c8f7c1362fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USRE10901803,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian indie,lilith,metropopolis,permanent wave",0.614,0.812,10.0,-5.256,1.0,0.0266,0.0037,0.668,0.251,0.495,143.95,4.0,,Vapor/Sire,"C © 2009 Sire Records. Marketed by Reprise Records, A Warner Music Group Company., P ℗ 2009 Sire Records. Marketed by Reprise Records, A Warner Music Group Company.",8040 +8041,spotify:track:1XgtkE4vQBLQxuavx8NpSl,Here's Johnny!,spotify:artist:29fxfZwsxiImnDJvin5joY,Hocus Pocus,spotify:album:6E7IEApUPrl9hyWmE2Mdno,Happy Hardcore Top 100,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-05-17,https://i.scdn.co/image/ab67616d0000b273bfc79018e9b91f536107d409,1,13,270158,https://p.scdn.co/mp3-preview/6665b05fbb4a071eb5623786eb35f685058da5f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLA249700014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.796,0.973,0.0,-2.826,1.0,0.267,0.0411,0.143,0.351,0.34,165.372,4.0,,Cloud 9 Music,"C 2010 Cloud 9 Music, P 2010 Cloud 9 Music",8041 +8042,spotify:track:3SawmGBjjq8EOYZJV11cJm,Only Wanna Be With You - Pokémon 25 Version,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,spotify:album:2xZhidR4y5OPpCRYF09XB4,Only Wanna Be With You (Pokémon 25 Version),spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2021-02-25,https://i.scdn.co/image/ab67616d0000b273d06b152b24e9357e81c460fe,1,1,241360,https://p.scdn.co/mp3-preview/d53e1d76e06f7cab6522ba028486cdac9190a2d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USUM72102513,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap",0.47,0.709,7.0,-4.563,1.0,0.0299,0.00124,0.00121,0.302,0.247,98.036,4.0,,Republic Records,"C © 2021 Republic Records, a division of UMG Recordings, Inc., P ℗ 2021 Republic Records, a division of UMG Recordings, Inc.",8042 +8043,spotify:track:2bAB2Hr4ODmiFYMQnqS2im,In Love Again,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,spotify:album:3JCSQWn36aUTqN794ZmbSm,Here Come The Drums,spotify:artist:3YUrEElXpqiPSbffh9XXZd,Rogue Traders,2005-10-23,https://i.scdn.co/image/ab67616d0000b2730320f53151cb67998449bd09,1,11,313680,https://p.scdn.co/mp3-preview/dfd3cf7129e313310fe52b8907c0bff9cd7c963b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUBM00599342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock,dance rock",0.639,0.813,7.0,-6.323,1.0,0.0359,0.00211,0.0781,0.101,0.626,124.963,4.0,,Columbia,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,8043 +8044,spotify:track:311nvyzSl3o9quGaNx6a0D,Hit That Perfect Beat,spotify:artist:2wpWOzQE5TpA0dVnh5YD08,Bronski Beat,spotify:album:5K6Ba06Rt9JUpBkrlfh6rw,Truthdare Doubledare,spotify:artist:2wpWOzQE5TpA0dVnh5YD08,Bronski Beat,1986,https://i.scdn.co/image/ab67616d0000b273bfab3bdad589899cd78d44f1,1,1,219733,https://p.scdn.co/mp3-preview/772e1d57a94ccf7a7ab01fed39bd4f1f688c16f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAP0200019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hi-nrg,new romantic,new wave,new wave pop,sophisti-pop,synthpop",0.695,0.836,0.0,-12.965,1.0,0.0395,0.00611,0.0,0.167,0.629,139.825,4.0,,Rhino/London-Sire,"C 1984 London Records Ltd, P 1984 London Records Ltd. Marketed by Rhino Entertainment Company, a Warner Music Group Company",8044 +8045,spotify:track:5mnvqisoDJilY0uCEdT8rG,Danny's Song,spotify:artist:7emRV8AluG3d4e5T0DZiK9,Loggins & Messina,spotify:album:1EtuN2j0AKVwsiqrddMtco,Sittin' In,spotify:artist:7emRV8AluG3d4e5T0DZiK9,Loggins & Messina,1972,https://i.scdn.co/image/ab67616d0000b273f9c424c0f5733f74a9713c4a,1,2,255773,https://p.scdn.co/mp3-preview/821d2c19366de542003dc82877ae9e7b99e6e045?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM17100303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,country rock,folk,folk rock,mellow gold,soft rock",0.507,0.198,2.0,-16.089,1.0,0.0324,0.806,0.0,0.102,0.601,141.261,4.0,,Columbia,P Originally Released 1971 SONY BMG MUSIC ENTERTAINMENT,8045 +8046,spotify:track:3Zrih6niOYdmge9hIVGBg6,Murder Reigns,spotify:artist:1J2VVASYAamtQ3Bt8wGgA6,Ja Rule,spotify:album:7HQJPTQwijtIlnOLwT0nTX,The Last Temptation,spotify:artist:1J2VVASYAamtQ3Bt8wGgA6,Ja Rule,2002-01-01,https://i.scdn.co/image/ab67616d0000b2735b31748986c995e993c3eca4,1,6,242840,https://p.scdn.co/mp3-preview/797e51d2b58327bb1915133bc11e9efe2c22a964?cid=9950ac751e34487dbbe027c4fd7f8e99,True,47,USDJ20201257,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,gangster rap,hip hop,hip pop,pop rap,queens hip hop,rap,urban contemporary",0.517,0.604,2.0,-7.703,1.0,0.238,0.0166,0.0,0.115,0.392,89.151,4.0,,"I.G. Records, Inc./Universal Records","C © 2002 The Island Def Jam Music Group, P ℗ 2002 The Island Def Jam Music Group",8046 +8047,spotify:track:0OprBk6IHvo04oyirQjdkL,Sowing The Seeds Of Love,spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,spotify:album:79XgUw5U86BeIiMnZ4Rrht,The Seeds Of Love (Remastered with bonus tracks),spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,1989-09-25,https://i.scdn.co/image/ab67616d0000b2739e9fae50b9372799240126eb,1,3,376733,https://p.scdn.co/mp3-preview/62ef52b8f2688580e6e48a43d2db5055d57366cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088990128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,rock,sophisti-pop,synthpop",0.209,0.795,0.0,-7.241,1.0,0.0443,0.0109,5.63e-05,0.355,0.682,171.975,4.0,,Universal Music Group,"C © 1999 Mercury Records Limited, P ℗ 1999 Mercury Records Limited",8047 +8048,spotify:track:3wU4yCN1LZ6dETM1SnRBXf,The Hucklebuck,spotify:artist:6ewuf1vTFhuNL31e9YRLiY,Brendan Bowyer & The Royal Showband,spotify:album:16lr8fyPj4EttC6NES8FOq,The Best Of The Royal Showband,spotify:artist:0fDu8D4Z61JHNKq7T1BuCK,The Royal Showband,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b13427ba402591fa0adb010c,1,1,144133,https://p.scdn.co/mp3-preview/0871cbf6eff33da6b35be57ab73b72ec9b2ac3d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,IEAAG0700104,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.565,0.932,4.0,-5.554,0.0,0.0565,0.455,3.26e-06,0.439,0.972,79.093,4.0,,Universal Music Ireland Ltd.,"C © 2015 The Royal Showband, under exclusive licence to Universal Music Ireland Ltd, P This Compilation ℗ 2015 The Royal Showband, under exclusive licence to Universal Music Ireland Ltd",8048 +8049,spotify:track:5w4DKOH3EsOPUuoHXieLtB,"Axel F - From ""Beverly Hills Cop"" Soundtrack",spotify:artist:7Cf73Z3RZQTH4V69GSDxnv,Harold Faltermeyer,spotify:album:3Zd4MI3Ja55JvK4Obzl6lV,Beverly Hills Cop - Music From The Motion Picture Soundtrack,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1984-01-01,https://i.scdn.co/image/ab67616d0000b273592aac5c14972ae94013746a,1,10,184800,https://p.scdn.co/mp3-preview/1e3ef234623938f6d78b282b10707862f5daa614?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USMC18416586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"german soundtrack,synthesizer,synthpop",0.796,0.381,1.0,-20.323,1.0,0.126,0.0236,0.863,0.0772,0.555,117.177,4.0,,Geffen,"C © 1984 Geffen Records, P This Compilation ℗ 1984 Geffen Records",8049 +8050,spotify:track:2QJTdq9kvrTfXGPobpdi7V,A Mean Pair of Jeans,spotify:artist:2No2vspr2KORUEcZKH4xUi,Marty Rhone,spotify:album:1zwUZLK2soBICLi5DuWReQ,50th Anniversary Album,spotify:artist:2No2vspr2KORUEcZKH4xUi,Marty Rhone,2016-08-01,https://i.scdn.co/image/ab67616d0000b2737c9eae208fe680bd19ac197c,1,8,215600,https://p.scdn.co/mp3-preview/d274e4184bbfb5f8666888174198fb7e360b5571?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,ushm21620620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic australian country,0.753,0.626,9.0,-9.7,1.0,0.104,0.649,1.43e-05,0.0753,0.851,128.923,4.0,,Marty Rhone,"C 2016 Marty Rhone, P 2016 Marty Rhone",8050 +8051,spotify:track:5vlTxb7BP5DWzpw8RgnzxR,Before I Go,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:0NTMWAuT544WcHhDgyyzyb,Before I Go,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2018-11-02,https://i.scdn.co/image/ab67616d0000b273813700f33b5e58c7c7100e2c,1,1,209424,https://p.scdn.co/mp3-preview/50cc294e8baa9485f78923c87ef1416d3769850b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUBM01800320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.603,0.519,11.0,-5.814,0.0,0.0552,0.419,0.0,0.103,0.565,89.119,4.0,,Sony Music Entertainment,P (P) 2018 Sony Music Entertainment Australia Pty Ltd,8051 +8052,spotify:track:31Y75sGePu69Qzkez9W6WP,Run Alone,spotify:artist:3vn7rk7VNMfDhuZNB9sDYP,360,spotify:album:43PP5L3A9ybQjiHTKG8Xtx,Falling & Flying,spotify:artist:3vn7rk7VNMfDhuZNB9sDYP,360,2011-09-30,https://i.scdn.co/image/ab67616d0000b27341b839ed5f8427a34bf4f4bc,1,9,273093,https://p.scdn.co/mp3-preview/93491bc8e107a8bb6543a53b5e32fd5b36410842?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUSR21100086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.663,0.548,1.0,-9.785,0.0,0.0809,0.0124,0.0,0.134,0.542,114.529,4.0,,Soulmate Records,"C © 2011 Soulmate Records Pty Limited, P ℗ 2011 Soulmate Records Pty Limited",8052 +8053,spotify:track:2FT9WmWskvuRt735aMy0mL,Moral of the Story,spotify:artist:6P5NO5hzJbuOqSdyPB7SJM,Ashe,spotify:album:4ySZGS82e7hHMzRgXYF3C9,Moral of the Story,spotify:artist:6P5NO5hzJbuOqSdyPB7SJM,Ashe,2020-02-12,https://i.scdn.co/image/ab67616d0000b273d83433815883033675a92dd2,1,1,201083,https://p.scdn.co/mp3-preview/7eaeebcbb5ce32e2c5092c5db0aa987be13bcd51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USQE91600140,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alt z,0.571,0.404,0.0,-8.592,0.0,0.0415,0.594,9.12e-06,0.104,0.305,119.793,4.0,,Mom+Pop,"C 2020 Mom+Pop, P 2020 Mom+Pop",8053 +8054,spotify:track:2HwlvOkwACOGFySnp16b9l,This Heart Attack,spotify:artist:0RaO9p4AomXaVUXzV8SPVW,Faker,spotify:album:0AOg1ZrWAG6es29UAhrWyS,Be The Twilight,spotify:artist:0RaO9p4AomXaVUXzV8SPVW,Faker,2007-11-17,https://i.scdn.co/image/ab67616d0000b2732f1e7b0fd35891f96d2fc6ef,1,1,227694,https://p.scdn.co/mp3-preview/d85ab414c20a0545a07a3c3813cc064d5ed2ccd5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUEM00700141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.625,0.813,1.0,-4.184,0.0,0.0428,0.0201,0.0,0.146,0.733,122.017,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2007 EMI Recorded Music Australia Pty Ltd., P ℗ 2007 EMI Recorded Music Australia Pty Ltd.",8054 +8055,spotify:track:5Qo6MOsOF17eBe5kRuYRMi,Mama,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,spotify:album:5jD6hO9qdUzFoHvV7Wggja,Sings Italian Favorites,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,1959-01-01,https://i.scdn.co/image/ab67616d0000b2734bc3a7fa6717e73884491342,1,9,237866,https://p.scdn.co/mp3-preview/181219186b0e6909858aee3e05262ab495da997e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR35912029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,easy listening,rock-and-roll,rockabilly",0.177,0.217,0.0,-11.12,1.0,0.0341,0.889,5.57e-05,0.346,0.11,81.316,3.0,,Universal Music Group,"C © 1959 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1959 Universal Records, a Division of UMG Recordings, Inc.",8055 +8056,spotify:track:4my5HnwvEs0HL7sFx48iTF,The One Thing,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:3TgBFSeiKspqODV8Ivk6Zl,Shabooh Shoobah (Remastered),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,1982,https://i.scdn.co/image/ab67616d0000b2735970a8f612e783a8e68903ef,1,1,205733,https://p.scdn.co/mp3-preview/bb9bdd81c518945d44be6b746ab2c3af9f02a7f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF050190214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.454,0.868,9.0,-5.422,1.0,0.0727,0.0152,0.00181,0.154,0.436,137.25,4.0,,Universal Music Group,"C © 2011 Universal International Music BV, under exclusive license to Mercury Records Limited, P ℗ 2011 Universal International Music BV, under exclusive license to Mercury Records Limited",8056 +8057,spotify:track:1HPJOoIVdUPuaebxzMrVaD,Words - Original Version 1983,spotify:artist:6GnCucI2uDaYj1j39GFxkn,F.R. David,spotify:album:3FCGXFULVQiKJkFvo6hMFo,Words,spotify:artist:6GnCucI2uDaYj1j39GFxkn,F.R. David,1983-01-01,https://i.scdn.co/image/ab67616d0000b2734742af6d5c9eae5f7f63ee5e,1,1,208000,https://p.scdn.co/mp3-preview/f421f56e51e05fc51030ae640c90433220c4e520?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,FR6V81029402,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"french synthpop,italo disco",0.536,0.782,10.0,-5.569,0.0,0.0568,0.347,1.68e-05,0.123,0.543,123.78,4.0,,Moonlight-mainlight,"C 1983 Universal, P 1983 Universal / Moonlight",8057 +8058,spotify:track:4vDBJeeQCbhP9FaPPMsYkY,Give Me One Reason,spotify:artist:7oPgCQqMMXEXrNau5vxYZP,Tracy Chapman,spotify:album:3XsOzkIBoHsxZ7jP3QF2oB,New Beginning,spotify:artist:7oPgCQqMMXEXrNau5vxYZP,Tracy Chapman,1995-10-31,https://i.scdn.co/image/ab67616d0000b2736b38571f15487588ed53032f,1,9,268333,https://p.scdn.co/mp3-preview/df2f3b5e8fc090c9e68318237afb1a53593b16bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USEE19900169,spotify:user:bradnumber1,2021-10-30T21:36:25Z,"folk,lilith,singer-songwriter,women's music",0.608,0.419,11.0,-10.016,1.0,0.0331,0.602,7.58e-06,0.108,0.602,100.22,4.0,,Elektra Records,"C © 1995 Elektra Entertainment for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1995 Elektra Entertainment for the United States and WEA International Inc. for the world outside of the United States.",8058 +8059,spotify:track:4ZhG4ACzDyIkisx2XhowDj,The Worlds Greatest Mum,spotify:artist:1eSVNZWXnk23LHL1XoVo1b,Johnny Chester,spotify:album:533wwvk9BgLG697I8Xl14w,The Best Of,spotify:artist:1eSVNZWXnk23LHL1XoVo1b,Johnny Chester,2016-07-29,https://i.scdn.co/image/ab67616d0000b27369d3eee9864e40235596de0a,1,8,157986,https://p.scdn.co/mp3-preview/ea46516b6d0ea8655dddb834c45c859b1f175593?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUGO41000496,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,classic australian country",0.634,0.341,4.0,-9.93,1.0,0.0319,0.626,0.0,0.107,0.611,127.996,4.0,,Checked Label Services,"C 2016 Johnny Chester. Under exclusive licence to Checked Label Services, P 2016 Johnny Chester. Under exclusive licence to Checked Label Services",8059 +8060,spotify:track:7FlHNJT4TC120CDvFOHzei,Rewrite The Stars,"spotify:artist:4IWBUUAFIplrNtaOHcJPRM, spotify:artist:1zNqDE7qDGCsyzJwohVaoX","James Arthur, Anne-Marie",spotify:album:1oqnHxrKI3Gq8MKgAGDtMr,The Greatest Showman: Reimagined (Deluxe),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-12-08,https://i.scdn.co/image/ab67616d0000b273c4e9d12d9ccdd7e48d2a0329,1,8,218293,https://p.scdn.co/mp3-preview/cf2a0c017f413de261c49290bf41a6d4fe5551d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAT21811541,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop,pop",0.67,0.743,10.0,-4.993,1.0,0.0393,0.237,0.0,0.465,0.571,125.944,4.0,,Atlantic Records,"C © 2018 This compilation Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation., P ℗ 2018This compilation Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation.",8060 +8061,spotify:track:6CSLNGruNhqpb5zhfs5n3i,Celebration - Single Version,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,spotify:album:02ez6TRQvxsxdA2LaCK5BU,Celebration / Morning Star,spotify:artist:3VNITwohbvU5Wuy5PC6dsI,Kool & The Gang,2009-01-01,https://i.scdn.co/image/ab67616d0000b2738a69fee00426f311d0056151,1,1,215653,https://p.scdn.co/mp3-preview/2cccc33cd7c81f5bc9f837369e12df07e5225840?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USPR38007166,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,motown,soft rock,soul",0.843,0.656,1.0,-11.184,1.0,0.0595,0.0466,0.0187,0.169,0.931,121.112,4.0,,Universal Music Group International,"C © 2009 Universal International Music B.V., P This Compilation ℗ 2009 Universal International Music B.V.",8061 +8062,spotify:track:1qYJo3iMxuxeP0YOcCp7XF,Right Back Where We Started From,spotify:artist:1nUUfnmwd9mdpTPwMcM1hd,Sinitta,spotify:album:1XrRQCyjiIvrrG9zOLTC4L,Hits+ Collection 86 - 09 Right Back Where We Started From,spotify:artist:1nUUfnmwd9mdpTPwMcM1hd,Sinitta,2009-11-30,https://i.scdn.co/image/ab67616d0000b273e30c91dd94e176b4bcf55260,1,7,195226,https://p.scdn.co/mp3-preview/61dc8cbef8a95226b86bd3d1b62405e7bad5bb8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,GBARK8900022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hi-nrg,0.714,0.922,4.0,-4.943,1.0,0.0314,0.13,1.2e-05,0.167,0.908,145.506,4.0,,Sony Music UK,P (P) 2009 Sony Music Entertainment UK Limited,8062 +8063,spotify:track:0q65HQJewwBeEJTENBClKo,History,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,spotify:album:5g6nzzrlpYo1wmLsqoCoA9,Black Light,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2010,https://i.scdn.co/image/5a9006b4880f62c84a89ab41d5a51fcb6a396713,1,11,252368,https://p.scdn.co/mp3-preview/8514a146bf49ffd3bf5b4a68485146efe37befb8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,GBCEJ0900409,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,nu skool breaks,trip hop",0.623,0.849,7.0,-5.477,1.0,0.0418,0.0165,0.00578,0.0588,0.581,112.012,4.0,,Shock Entertainment,C 2010 Ministry of Pies under exclusive license to Cooking Vinyl Ltd.,8063 +8064,spotify:track:2DBrqHk6a5InsKD0qjZQQn,Hot In Herre,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,4,231133,https://p.scdn.co/mp3-preview/71c8486dca61fd45b5849308c29c816de9a3034f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR10200252,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.962,0.748,2.0,-4.437,1.0,0.114,0.222,0.0,0.0754,0.928,107.058,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",8064 +8065,spotify:track:28V3IT1gGsuak0SvKzpqaU,What In The World’s Come Over You,spotify:artist:4ucP0bNegd7Q4ewdOKIBfz,Jack Scott,spotify:album:0PZBdhpH7rNNeO4ZnvBEgI,What In The World’s Come Over You - 4 Track EP,spotify:artist:4ucP0bNegd7Q4ewdOKIBfz,Jack Scott,2010-04-04,https://i.scdn.co/image/ab67616d0000b2730595ca5e7722c0008705555f,1,1,167146,https://p.scdn.co/mp3-preview/434c8142fe8c11ae72c29be797acdc6b73a3be1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCJQ1092468,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian rockabilly,doo-wop,rock-and-roll,rockabilly,traditional rockabilly",0.499,0.211,4.0,-12.464,1.0,0.0327,0.763,5.95e-06,0.0888,0.486,76.74,4.0,,Play Digital,"C 2010 PLAY DIGITAL, P 2010 PLAY DIGITAL",8065 +8066,spotify:track:4utp1jggcXcMzdPBTbnCA3,Whoomp! (There It Is),spotify:artist:3NfJ6VPVz0lf3jWy5F1N7g,Tag Team,spotify:album:3wi1ahnajIIFa0aDpgjTRb,Whoomp! (There It Is),spotify:artist:3NfJ6VPVz0lf3jWy5F1N7g,Tag Team,2012-03-07,https://i.scdn.co/image/ab67616d0000b273acb674b3203f147d8b089fc3,1,1,225266,https://p.scdn.co/mp3-preview/090962b4bee01f5ba7d6c23bc120966e03638dba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA371667515,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atlanta bass,miami bass",0.798,0.649,4.0,-7.392,0.0,0.0411,0.00138,0.0,0.0792,0.433,129.422,4.0,,DM Records,"C (C) 2012 DM Records, Inc.",8066 +8067,spotify:track:2EVv4Vxu3HGPr32CQecgHx,Genie in a Bottle,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:2alhzWaLZ5wXZ0oJAo38aS,Christina Aguilera,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,1999,https://i.scdn.co/image/ab67616d0000b273312f482d9c5430a04390d228,1,1,217573,https://p.scdn.co/mp3-preview/06d1b4ae1b631b29bbfd8b9a66a37f18dd73713a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC19900032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.627,0.8,1.0,-6.945,1.0,0.162,0.21,0.000123,0.137,0.912,175.815,4.0,,RCA Records Label,P (P) 2000 BMG Entertainment,8067 +8068,spotify:track:7eD2qAkE1EAs9poZhpVD6o,Before the Worst,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:51Hn2Wiq1jmUfI0BLaUhuF,The Script,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2008-09-08,https://i.scdn.co/image/ab67616d0000b273b526ba531c80ed208cd428ed,1,2,203106,https://p.scdn.co/mp3-preview/90e059a87b3d8c1d6433d1b79b5fb5507ed868e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBARL0800428,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.586,0.928,8.0,-4.231,0.0,0.0463,0.141,0.0,0.655,0.4,115.006,4.0,,Phonogenic,P (P) 2008 SONY BMG MUSIC ENTERTAINMENT (UK) LIMITED,8068 +8069,spotify:track:0QwZfbw26QeUoIy82Z2jYp,Good Times Bad Times - 1993 Remaster,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,spotify:album:3ycjBixZf7S3WpC5WZhhUK,Led Zeppelin,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,1969-01-12,https://i.scdn.co/image/ab67616d0000b2736f2f499c1df1f210c9b34b32,1,1,166266,https://p.scdn.co/mp3-preview/ccfdc9ec9390da53651792c9e30f088748dbcad9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USAT29900534,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.476,0.717,9.0,-9.192,1.0,0.0949,0.0382,7.61e-05,0.0818,0.753,93.584,4.0,,Rhino Atlantic,"C © 1969 Swan Song Inc., P ℗ 1969 Atlantic Recording Corp., a Warner Music Group company",8069 +8070,spotify:track:4ePP9So5xRzspjLFVVbj90,Two Princes,spotify:artist:2PSiyldxmJze7xiqbz658m,Spin Doctors,spotify:album:2TWdmpnFNCMlZDQROleupK,Pocket Full Of Kryptonite,spotify:artist:2PSiyldxmJze7xiqbz658m,Spin Doctors,1991-08-27,https://i.scdn.co/image/ab67616d0000b273436e38032cf3389d01426eca,1,7,256733,https://p.scdn.co/mp3-preview/b741259c548773ebdec00064db7c82cf1b9aab1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM19000350,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.543,0.912,7.0,-10.71,1.0,0.0601,0.00162,2.1e-06,0.0565,0.836,103.731,4.0,,Epic,P (P) 1991 SONY BMG MUSIC ENTERTAINMENT,8070 +8071,spotify:track:3cbLm923IeoVDOMEPOfosc,Vienna,spotify:artist:3iUjRVvYCsMfz7tuAQtBDI,Ultravox,spotify:album:5CoUCJmVlRuGJUKjx8Zh4T,The Collection,spotify:artist:3iUjRVvYCsMfz7tuAQtBDI,Ultravox,1984-11-02,https://i.scdn.co/image/ab67616d0000b27341047ba91bda067079b15645,1,5,278226,https://p.scdn.co/mp3-preview/66b0532e1d0928252a8af1baa9e426aeb084bb86?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK8000061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,synthpop,zolo",0.583,0.614,5.0,-10.312,1.0,0.0643,0.16,0.234,0.109,0.456,80.747,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1984 Chrysalis Records Limited",8071 +8072,spotify:track:6YUTL4dYpB9xZO5qExPf05,Summer,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,spotify:album:48zisMeiXniWLzOQghbPqS,Motion,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2014-10-31,https://i.scdn.co/image/ab67616d0000b2738fba5806a323efd272677c4d,1,8,222533,https://p.scdn.co/mp3-preview/f8877a2ec4963cb11fa2c282a18e9015f2e8bfad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,GBARL1400296,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance",0.596,0.856,4.0,-3.556,0.0,0.0346,0.0211,0.0178,0.141,0.743,127.949,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,8072 +8073,spotify:track:5MhMAWghLuvQMNRf7kPmVg,Longfellow Serenade,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:4eWIVvlb7HnEMDkIs3XvzZ,Serenade,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1974-10-26,https://i.scdn.co/image/ab67616d0000b2733dbfc643faee938bbca9e939,1,5,230560,https://p.scdn.co/mp3-preview/329ee1a5fb8e13e737e5a9b94f697a623d460230?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USUG11400752,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.635,0.5,4.0,-14.682,1.0,0.0308,0.284,0.0,0.0594,0.702,120.809,4.0,,Neil Diamond,"C © 1974 Neil Diamond, under exclusive license to Capitol Records LLC, P ℗ 2014 Neil Diamond, under exclusive license to Capitol Records LLC",8073 +8074,spotify:track:4arj7fiWQ2lEkneKwhAPxl,Don't Say Nothin' Bad (About My Baby),spotify:artist:1xbffduk2SYqON9nXu6jLt,The Cookies,spotify:album:6abSz3uZWpSnouHa24s7aP,Don't Say Nothin' Bad (About My Baby),spotify:artist:1xbffduk2SYqON9nXu6jLt,The Cookies,2014-03-12,https://i.scdn.co/image/ab67616d0000b273071b3163947146aa6323fa76,1,1,164493,https://p.scdn.co/mp3-preview/80de320fea4df37c92d1fc1b0c21e7067842300f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,QMFME1404025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,sunshine pop",0.604,0.655,2.0,-6.328,1.0,0.0397,0.71,0.0109,0.49,0.952,123.933,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,8074 +8075,spotify:track:3A3dgR32O1T55lR6xMd9a5,Memphis T-Shirt,spotify:artist:159pZhqLdWf1ttWtw0zBoL,Melanie Dyer,spotify:album:71Vp64V69S1AQDD87HOZnE,Memphis T-Shirt,spotify:artist:159pZhqLdWf1ttWtw0zBoL,Melanie Dyer,2019-11-01,https://i.scdn.co/image/ab67616d0000b27305924644007acb5e19a0e07d,1,1,201919,https://p.scdn.co/mp3-preview/c3b104a5212bd303e57431ea2b671e19db68f46c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUUM71900870,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian country,0.498,0.694,0.0,-3.745,0.0,0.0423,0.0333,0.0,0.0831,0.776,199.968,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Universal Music Australia Pty Ltd., P ℗ 2019 Universal Music Australia Pty Ltd.",8075 +8076,spotify:track:2S5LNtRVRPbXk01yRQ14sZ,"I Don't Like It, I Love It (feat. Robin Thicke & Verdine White)","spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:0ZrpamOxcZybMHGg1AYtHP, spotify:artist:4tMJliVd96wXoMVNdcOBHp","Flo Rida, Robin Thicke, Verdine White",spotify:album:5lkNnHVlnCCCV304t89wOH,My House,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2015-04-07,https://i.scdn.co/image/ab67616d0000b2737947bf3e8af32378de181b41,1,3,224258,https://p.scdn.co/mp3-preview/d5849f7069068cb11434687eab6ceabdad8949df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USAT21500395,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,dance pop,neo soul,pop rap,r&b,urban contemporary",0.854,0.766,9.0,-4.697,0.0,0.141,0.0242,0.0,0.0793,0.784,118.004,4.0,,Poe Boy/Atlantic,"C © 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2015 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",8076 +8077,spotify:track:1yNyoWWWikbLhwIGWjZuDW,All Night,"spotify:artist:7gAppWoH7pcYmphCVTXkzs, spotify:artist:4YXycRbyyAE0wozTk7QMEq","The Vamps, Matoma",spotify:album:4IKqYStmGY9UyG9RP1CA2Q,All Night,"spotify:artist:7gAppWoH7pcYmphCVTXkzs, spotify:artist:4YXycRbyyAE0wozTk7QMEq","The Vamps, Matoma",2016-10-14,https://i.scdn.co/image/ab67616d0000b273f03c9779c27137669304ea20,1,1,197793,https://p.scdn.co/mp3-preview/2705b6a297be4a11d68fba1091ae2a483ec7b679?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71605342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,pop dance,tropical house",0.563,0.775,8.0,-6.433,1.0,0.0366,0.00251,0.0,0.326,0.458,144.945,4.0,,Universal Music Group,"C © 2016 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2016 Virgin EMI Records, a division of Universal Music Operations Limited",8077 +8078,spotify:track:1L8SrVwjhIRsUdM7TkQprW,Where the Wild Roses Grow,"spotify:artist:4UXJsSlnKd7ltsrHebV79Q, spotify:artist:4RVnAU35WRWra6OZ3CbbMA","Nick Cave & The Bad Seeds, Kylie Minogue",spotify:album:7rShDcOhzRIRNAowXWCxbA,Murder Ballads (Remastered),spotify:artist:4UXJsSlnKd7ltsrHebV79Q,Nick Cave & The Bad Seeds,1996-02-05,https://i.scdn.co/image/ab67616d0000b2736ed819955779ff1cb71469f2,1,5,237080,https://p.scdn.co/mp3-preview/d9954103cffd4ce9846853941e6f6e20af90afaf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJH1000593,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,permanent wave,singer-songwriter,australian dance,australian pop,dance pop,eurodance,new wave pop",0.336,0.47,7.0,-10.541,0.0,0.0319,0.378,0.00332,0.0953,0.163,154.649,3.0,,Mute/BMG,"C 2011 Mute Records Ltd., a BMG Company, under exclusive license to [PIAS] UK Ltd, P 2011 Mute Records Ltd., a BMG Company, under exclusive license to [PIAS] UK Ltd",8078 +8079,spotify:track:3sZlKnnY9H5VnHkEWQVpJg,Song Sung Blue - Single Version,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:37n9Egkr4udITqxPb4UdGt,Moods,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1972,https://i.scdn.co/image/ab67616d0000b2739829c496cae3af7c2d947733,1,1,195160,https://p.scdn.co/mp3-preview/8679e964c9f2c4b52abc73c790f8a3b5e29e573b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWWW0130347,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.55,0.334,0.0,-15.681,1.0,0.0329,0.487,1.1e-05,0.289,0.373,109.158,4.0,,Universal Strategic Marketing,"C © 2007 Geffen Records, P ℗ 2007 Geffen Records",8079 +8080,spotify:track:0mqTcM8kuu2IYPotMt7AzS,Make You Feel My Love,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:2YO1F9DHVEzXPriA1JHoOQ,19,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2008-01-28,https://i.scdn.co/image/ab67616d0000b2730a5d334a63fd4455ce83b38b,1,9,212040,https://p.scdn.co/mp3-preview/3d9582dbaa291a0bdf96e750281595574f0de3ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBBKS0700586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.559,0.172,10.0,-10.636,1.0,0.0291,0.907,0.000383,0.105,0.0955,77.025,4.0,,XL Recordings,"C 2008 XL Recordings Ltd., P 2008 XL Recordings Ltd.",8080 +8081,spotify:track:0QDuxU2lGn3HThu6U84oFP,Shakin' All Over - Live,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:6W3aTLI4B5UsPpWMvhT2W4,Live At Leeds (Expanded Edition),spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1970-05-16,https://i.scdn.co/image/ab67616d0000b273692c12f604e384578a70272f,1,12,274440,https://p.scdn.co/mp3-preview/010cee5d527c1900ca53b1179a19068a9aeb526f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBAKW9500348,spotify:user:bradnumber1,2023-06-11T03:07:52Z,"album rock,british invasion,classic rock,hard rock,rock",0.406,0.964,9.0,-8.754,1.0,0.0701,0.00132,0.0139,0.966,0.602,125.954,4.0,,Geffen,"C © 1995 UMG Recordings Inc., P ℗ 1995 UMG Recordings, Inc.",8081 +8082,spotify:track:7KXjTSCq5nL1LoYtL7XAwS,HUMBLE.,spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg,Kendrick Lamar,spotify:album:4eLPsYPBmXABThSJ821sqY,DAMN.,spotify:artist:2YZyLoL8N0Wb9xBt1NhZWg,Kendrick Lamar,2017-04-14,https://i.scdn.co/image/ab67616d0000b2738b52c6b9bc4e43d873869699,1,8,177000,https://p.scdn.co/mp3-preview/4e6df1ccb505e0d8a8f79086c321762a2b84bfd8?cid=9950ac751e34487dbbe027c4fd7f8e99,True,84,USUM71703085,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"conscious hip hop,hip hop,rap,west coast rap",0.908,0.621,1.0,-6.638,0.0,0.102,0.000282,5.39e-05,0.0958,0.421,150.011,4.0,,Aftermath,"C © 2017 Aftermath/Interscope (Top Dawg Entertainment), P ℗ 2017 Aftermath/Interscope (Top Dawg Entertainment)",8082 +8083,spotify:track:1VN2vWSkSmMKOhxr8lHzSx,Seven Wonders - 2017 Remaster,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:4AsXQ17Arq1cUVoa9dKJ3F,Tango In the Night (Deluxe Edition),spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1987-04-13,https://i.scdn.co/image/ab67616d0000b273aaba065944cd82a6f15c86b6,1,2,222400,https://p.scdn.co/mp3-preview/127716ab05e9332d05bb489f1a911e90f59a1021?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USRH11602188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.707,0.625,4.0,-9.529,1.0,0.0303,0.0259,5.42e-05,0.104,0.634,119.049,4.0,,Rhino/Warner Records,"C © 2017 Warner Records Inc. for the U.S. and WEA International Inc. for the world outside the U.S. All Rights Reserved., P ℗ 2017 Warner Records Inc. Marketed by Warner Strategic Marketing, a Warner Music Group Company.",8083 +8084,spotify:track:5nlwajOutaUfiSayarrZTy,The Only Way Is Up,spotify:artist:5ApKaVHAStk5kAuyBW1wG8,Yazz,spotify:album:59RWOTMG259wspCYTvmW9x,Wanted,spotify:artist:5ApKaVHAStk5kAuyBW1wG8,Yazz,1988-11-14,https://i.scdn.co/image/ab67616d0000b273f7fa8747a8e5f4d4da56e610,1,1,268373,https://p.scdn.co/mp3-preview/a666db8d6d0b130b45f688c900e6ae202e839cd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBAKW0201571,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.634,0.893,11.0,-7.432,1.0,0.0403,0.0619,0.00142,0.161,0.667,124.621,4.0,,UMC (Universal Music Catalogue),"C © 1988 Polydor Ltd. (UK), P ℗ 1988 Polydor Ltd. (UK)",8084 +8085,spotify:track:646J2jOtUe4Jflrmh6JFjN,Bring Me To Life,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,spotify:album:20mh1X1FQQidKMu2XypyMI,Fallen,spotify:artist:5nGIFgo0shDenQYSE0Sn7c,Evanescence,2003-01-01,https://i.scdn.co/image/ab67616d0000b273f3302494cdc2c9f2eef99a18,1,2,235893,https://p.scdn.co/mp3-preview/d318a788a3a6a1ecb8cd0f1c924cef18832ff8d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USWU30200093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,alternative metal,0.312,0.946,4.0,-3.209,0.0,0.107,0.00749,2.93e-06,0.288,0.297,189.892,4.0,,Universal Music Group,"C © 2003 The Bicycle Music Company, P ℗ 2003 The Bicycle Music Company",8085 +8086,spotify:track:1ZfbMOw5VSh5Qqr8hgLCkJ,Congratulations,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:0SW33rIKZ2v0EmfqRLKufz,40 Golden Greats,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1977,https://i.scdn.co/image/ab67616d0000b2732effa5f5d8903fb4fea0838d,2,11,151800,https://p.scdn.co/mp3-preview/a4e6fc977a8223db94f7e40886198dc0c05076e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAYE6800082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.478,0.681,4.0,-5.2,1.0,0.0291,0.133,0.0,0.0748,0.962,92.898,4.0,,Parlophone UK,"C © 1989 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1977 Parlophone Records Ltd, a Warner Music Group Company",8086 +8087,spotify:track:1oH5Mg9dyAj15lWUmXvmFW,Cross Me (feat. Chance the Rapper & PnB Rock),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:1anyVhU62p31KFi8MEzkbf, spotify:artist:21WS9wngs9AqFckK7yYJPM","Ed Sheeran, Chance the Rapper, PnB Rock",spotify:album:5oUZ9TEZR3wOdvqzowuNwl,No.6 Collaborations Project,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2019-07-12,https://i.scdn.co/image/ab67616d0000b273d154d078766c19a437520f15,1,3,204833,https://p.scdn.co/mp3-preview/e82583bd6942207d867423810fe4b53153b6bc8d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAHS1900798,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop,chicago rap,conscious hip hop,hip hop,pop rap,rap,trap,melodic rap,rap,trap",0.654,0.783,8.0,-6.389,0.0,0.181,0.213,0.0,0.0666,0.603,94.878,4.0,,Atlantic Records UK,"C © 2019 Warner Music UK Limited., P ℗ 2019 An Asylum Records UK release, a division of Atlantic Records UK; ℗ 2019 Warner Music UK Limited except track 6 ℗ 2019 Warner Music UK / Def Jam Recordings, a division of UMG Recordings, Inc",8087 +8088,spotify:track:3U5JVgI2x4rDyHGObzJfNf,Unwritten,spotify:artist:7o95ZoZt5ZYn31e9z1Hc0a,Natasha Bedingfield,spotify:album:3PEzTAuPW5IjLJ58FzwQeL,Unwritten,spotify:artist:7o95ZoZt5ZYn31e9z1Hc0a,Natasha Bedingfield,2004-08-30,https://i.scdn.co/image/ab67616d0000b273b337e1ca6629a53c66a3b0d4,1,4,259333,https://p.scdn.co/mp3-preview/5559460cc3e2c5aa1eeea1c16cf838cecde326d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,86,GBARL0400707,spotify:user:bradnumber1,2023-01-05T01:55:54Z,"dance pop,pop,post-teen pop",0.706,0.8,5.0,-6.333,1.0,0.0399,0.00584,0.0,0.0822,0.629,100.011,4.0,,Sony Music CG,P (P) 2004 Sony Music Entertainment UK Limited,8088 +8089,spotify:track:0CjrIEPmqIKnBHy99hun3v,Back At One,spotify:artist:6k0IBR0lU42s2GYpNX7kA9,Brian McKnight,spotify:album:3QWvaUt6fJpYf9KqTPilPm,Back At One,spotify:artist:6k0IBR0lU42s2GYpNX7kA9,Brian McKnight,1999-09-21,https://i.scdn.co/image/ab67616d0000b2731443605af73b2f1bffb209d9,1,4,262666,https://p.scdn.co/mp3-preview/bd64f263b0a5553d4c95dc28923c0b225b551ff0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO19900016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,quiet storm,r&b,urban contemporary",0.659,0.364,11.0,-9.174,1.0,0.0317,0.559,0.0,0.129,0.231,129.776,4.0,,Universal/Island Def Jam,"C (C) 1999 Motown Records, a Division of UMG Recordings, Inc., P (P) 1999 Motown Records, a Division of UMG Recordings, Inc.",8089 +8090,spotify:track:0psB5QzGb4653K0uaPgEyh,Suck My Kiss,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:30Perjew8HyGkdSmqguYyg,Blood Sugar Sex Magik (Deluxe Edition),spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,1991-09-24,https://i.scdn.co/image/ab67616d0000b273153d79816d853f2694b2cc70,1,5,217133,https://p.scdn.co/mp3-preview/d335463f2a9c032aa54aceea06c3720f7538ff53?cid=9950ac751e34487dbbe027c4fd7f8e99,True,63,USWB19901570,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.623,0.936,0.0,-9.955,1.0,0.0528,0.000617,9.86e-05,0.269,0.705,101.514,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",8090 +8091,spotify:track:4UMTp91LHhvW33ol9ZQH0Q,We Made You,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:7MZzYkbHL9Tk3O6WeD4Z0Z,Relapse: Refill,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2009-05-15,https://i.scdn.co/image/ab67616d0000b273506c4cc93e5a6234164125e1,1,9,269613,https://p.scdn.co/mp3-preview/fab146bc463de01395b2168ac9de034c46070c89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USUM70965164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.924,0.853,2.0,-1.203,1.0,0.0792,0.107,1.45e-06,0.129,0.67,114.003,4.0,,Aftermath,"C © 2009 Aftermath Records, P ℗ 2009 Aftermath Records",8091 +8092,spotify:track:6KsCSlrgkQzYTu74YFfToL,Soul Revival,spotify:artist:0Nlg1HCtb8dpeVpxQojDiq,Johnny Diesel & The Injectors,spotify:album:5dIHfc6O2EPWxdevZi6DkZ,Johnny Diesel And The Injectors,spotify:artist:0Nlg1HCtb8dpeVpxQojDiq,Johnny Diesel & The Injectors,1989-01-01,https://i.scdn.co/image/ab67616d0000b273277659fad2498fd48648d3b4,1,8,243200,https://p.scdn.co/mp3-preview/296a521f79d9cd5041c8c35251ec37c2b07aa549?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM08900041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.488,0.856,9.0,-11.307,1.0,0.0358,0.00985,0.000169,0.091,0.676,131.73,4.0,,Chrysalis,"C © 1989 Chrysalis Records Ltd, P ℗ 1989 EMI Recorded Music Australia Pty Ltd.",8092 +8093,spotify:track:1IqFh00G2kvvMm8pRMpehA,Me and Bobby McGee,spotify:artist:4NgfOZCL9Ml67xzM0xzIvC,Janis Joplin,spotify:album:3j7nicLAWXM0Fb08q9XGyf,Pearl (Legacy Edition),spotify:artist:4NgfOZCL9Ml67xzM0xzIvC,Janis Joplin,1971-01-11,https://i.scdn.co/image/ab67616d0000b2736f8c26346723dd0531696bed,1,7,271333,https://p.scdn.co/mp3-preview/d656ab40347760b13db8291b3df58a83c49faa1a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USSM17000790,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,psychedelic rock,rock",0.43,0.463,2.0,-10.96,1.0,0.0442,0.303,5.84e-05,0.152,0.66,93.405,4.0,,Columbia/Legacy,P (P) 1971 Sony Music Entertainment,8093 +8094,spotify:track:4LK1zq7x8Xxd7Nc32anUoH,Love Don't Cost a Thing,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:4TlzQ4FABU9yI2lDvoGVb9,J.Lo,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,2001-01-01,https://i.scdn.co/image/ab67616d0000b273a0797e28d8f68c14f657422e,1,1,222693,https://p.scdn.co/mp3-preview/99c9902cfc477cee0de0fcd491c32244fceb521f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10017308,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.774,0.835,4.0,-5.137,0.0,0.0797,0.00265,3.14e-06,0.252,0.655,97.503,4.0,,Epic,"P (P) 2000, 2001 Sony Music Entertainment Inc.",8094 +8095,spotify:track:2JvPJ8ydPuN2NhpH4oti6I,Dance Hall Days,spotify:artist:6Zh3xrWlA0SA9Fsfj9AVwm,Wang Chung,spotify:album:5RMZLWa4VtvJXswpsk600P,Points On The Curve,spotify:artist:6Zh3xrWlA0SA9Fsfj9AVwm,Wang Chung,1984-01-16,https://i.scdn.co/image/ab67616d0000b273f7ae51b20b3ffa211c406d71,1,1,240800,https://p.scdn.co/mp3-preview/9f6a311032013e68dc04810ad01f8f0bf3b79589?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USGF18400401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.664,0.589,0.0,-14.415,1.0,0.0406,0.259,0.00587,0.221,0.54,102.74,4.0,,Geffen,"C © 1984 UMG Recordings, Inc., P ℗ 1984 UMG Recordings, Inc.",8095 +8096,spotify:track:5kD9T7GForh8LnRz5ClbL8,The Middle,spotify:artist:3Ayl7mCk0nScecqOzvNp6s,Jimmy Eat World,spotify:album:4ZqTPNXU0MBXs2iCcwjOPe,Bleed American (Deluxe Edition),spotify:artist:3Ayl7mCk0nScecqOzvNp6s,Jimmy Eat World,2001,https://i.scdn.co/image/ab67616d0000b273c42de59f6893457d392f4d88,1,3,168253,https://p.scdn.co/mp3-preview/5524bcb363f648a35571d9507d2d585bc9a0adc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USDW10110256,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,emo,modern power pop,modern rock,neon pop punk,pop punk,pop rock,post-grunge,punk,rock",0.634,0.886,2.0,-3.466,1.0,0.0517,0.0291,0.0,0.342,0.922,161.933,4.0,,Universal Music Group,"C © 2008 Geffen Records, P ℗ 2008 Geffen Records",8096 +8097,spotify:track:5vVZaiK2mIL9WE1GWikOE6,Down Down,spotify:artist:4gIdjgLlvgEOz7MexDZzpM,Status Quo,spotify:album:5dHrW2LCDQ0INMXqQMwoCi,On The Level,spotify:artist:4gIdjgLlvgEOz7MexDZzpM,Status Quo,1975-02-01,https://i.scdn.co/image/ab67616d0000b2730801ac97184b4817c0d38f06,1,6,324960,https://p.scdn.co/mp3-preview/726edcfca3ca27525197db6b1f412e3578ba9680?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBF080080063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,british blues,glam rock",0.47,0.899,4.0,-7.127,1.0,0.0333,0.113,6.89e-05,0.287,0.213,89.506,4.0,,UMC (Universal Music Catalogue),"C © 2005 Mercury Records Limited, P This Compilation ℗ 2005 Mercury Records Limited",8097 +8098,spotify:track:2lFlveK1y13WWp3vnQtrr3,100 Years,spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,spotify:album:6RWEJvVwr8aCQfRchRhjMq,The Battle for Everything,spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,2003,https://i.scdn.co/image/ab67616d0000b273dbcfeefa73330cc4b762fdf8,1,4,244600,https://p.scdn.co/mp3-preview/252cc0ba7be30a7fdb06b7c6e6ce51a410e8afba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM10312427,spotify:user:bradnumber1,2021-11-09T09:48:00Z,"neo mellow,piano rock,pop rock",0.643,0.569,7.0,-7.459,1.0,0.0276,0.544,2.17e-05,0.178,0.275,120.507,4.0,,Aware/Columbia,"P (P) (P) 2003, 2004 Aware Records LLC",8098 +8099,spotify:track:4JuJ9ewGWWGy0U3URuXOSI,Have You Ever Seen The Rain?,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:77Ufm02YB5qgT72qrBFt8P,Pendulum (40th Anniversary Edition),spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1970-12-07,https://i.scdn.co/image/ab67616d0000b273350cbd28753529c48f19c86d,1,4,160133,https://p.scdn.co/mp3-preview/9b5348b8d7c6bb14b63998903a46348657f70c2e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC4R0817643,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.741,0.697,0.0,-7.028,1.0,0.0277,0.0664,2.28e-05,0.133,0.774,116.109,4.0,,"Concord Records, Inc.","C © 2008 Concord Music Group, Inc., P ℗ 2008 Concord Music Group, Inc.",8099 +8100,spotify:track:74VR3AkGPhbYXnxcOYa16x,Strangers In The Night,spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,spotify:album:1kyb5tomEXcA106V57puFW,Strangers In The Night (Expanded Edition),spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0,Frank Sinatra,1966-05,https://i.scdn.co/image/ab67616d0000b27350bb7ca1fe7e98df87ce41d9,1,1,157866,https://p.scdn.co/mp3-preview/f33a1903e93b0d95332a12e85841698cfb4534e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USRH10800935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge",0.259,0.473,5.0,-8.275,1.0,0.0295,0.592,0.0,0.201,0.539,90.348,4.0,,FRANK SINATRA DIGITAL REPRISE,"C © 1966 Frank Sinatra Enterprises, LLC, P ℗ 2009 Frank Sinatra Enterprises, LLC",8100 +8101,spotify:track:7sPEGLqEhyHDLGrz4EeLm2,Cool For Cats,spotify:artist:6Jrj26oAY96EEC2lqC6fua,Squeeze,spotify:album:6BXnJVcUbSdC6E82xouYK5,Cool For Cats,spotify:artist:6Jrj26oAY96EEC2lqC6fua,Squeeze,1979-01-01,https://i.scdn.co/image/ab67616d0000b273078b9e4f389abc8563605537,1,12,219826,https://p.scdn.co/mp3-preview/84efefb98798efcc60cb17e22793cdfecd48e172?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBUM70905253,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,new romantic,new wave,new wave pop,power pop,sophisti-pop",0.792,0.747,0.0,-15.366,1.0,0.149,0.202,0.00429,0.221,0.968,144.15,4.0,,EMI,"C © 1988 A&M Records, P ℗ 1979 A&M Records",8101 +8102,spotify:track:5awP7jSLbdR8wOBJa5SUgE,Sweetest Devotion,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7uwTHXmFa1Ebi5flqBosig,25,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2015-11-20,https://i.scdn.co/image/ab67616d0000b2735ffbbc3dca25d5c81491af1f,1,11,251701,https://p.scdn.co/mp3-preview/44c2dae58dbee03e161e57aa9fc6d4eff3b85df1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1500224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.416,0.751,0.0,-5.471,1.0,0.0396,0.251,0.0,0.125,0.266,155.941,3.0,,XL Recordings,"C 2015 XL Recordings Limited., P 2015 XL Recordings Limited.",8102 +8103,spotify:track:74JdR9aXE6I74oS1BVRsvb,O-o-h Child,spotify:artist:3Inrg8cs8oc4q8oPES4a6S,The Five Stairsteps,spotify:album:5RDrnVcOfimhUGIx84Uoid,The First Family of Soul: The Best of The Five Stairsteps,spotify:artist:3Inrg8cs8oc4q8oPES4a6S,The Five Stairsteps,2001-11-06,https://i.scdn.co/image/ab67616d0000b273b4b2642b767f641a15c9fef1,1,17,197160,https://p.scdn.co/mp3-preview/b2a2bc9a0f6b10225f5bad9ab9a8a7570f601f3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USBR10100127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago soul,classic soul,motown",0.488,0.754,5.0,-7.95,0.0,0.0381,0.00154,2.42e-05,0.678,0.664,88.368,4.0,,Buddha Records,P (P) 2001 Buddha Records,8103 +8104,spotify:track:5L79aNYCTKiZq7vaOElXYj,"Gone, Gone, Gone",spotify:artist:6p5JxpTc7USNnBnLzctyd4,Phillip Phillips,spotify:album:773GsAWk3z8mGgMDeR7n1A,The World From The Side Of The Moon (Deluxe),spotify:artist:6p5JxpTc7USNnBnLzctyd4,Phillip Phillips,2013-01-01,https://i.scdn.co/image/ab67616d0000b273d9009cc16eddbc6664508cd8,1,3,209693,https://p.scdn.co/mp3-preview/cd74015331c05d8441cc56250961150f2dd60319?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,QMTM61200406,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo mellow,pop rock",0.664,0.642,6.0,-5.961,1.0,0.038,0.129,0.0,0.114,0.501,118.002,4.0,,19 Recordings/Interscope,"C © 2013 19 Recordings, Inc., P ℗ 2013 19 Recordings, Inc.",8104 +8105,spotify:track:0tX5zALVT9peeABGxl2yHX,When Julie Comes Around,spotify:artist:1VKy7hIBFmlBnfKPgPkuLH,The Cuff Links,spotify:album:5soJnwD2ABhvarbec7vycY,Tracy - The Very Best Of The Cufflinks,spotify:artist:1VKy7hIBFmlBnfKPgPkuLH,The Cuff Links,2008-02-06,https://i.scdn.co/image/ab67616d0000b2732b03677ac8063b1d1876d38a,1,7,167706,,False,0,NLG620403644,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.668,0.447,9.0,-10.963,1.0,0.0374,0.207,0.0,0.0815,0.874,119.317,4.0,,Ron Dante,C (C) 2008 Ron Dante,8105 +8106,spotify:track:0snPJPxkk0MbTc0xeUvAPt,Dancing On The Ceiling,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,spotify:album:5IvqScO5vIXQ2zrxtpCVHf,Dancing On The Ceiling - Expanded Edition,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,1986,https://i.scdn.co/image/ab67616d0000b2732c33399e119cec9b0fcde564,1,1,270720,https://p.scdn.co/mp3-preview/c48366f931efb095562e7a23f267319f989c0bcd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USMO18682745,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.698,0.774,0.0,-8.642,1.0,0.048,0.12,2.26e-06,0.394,0.731,133.197,4.0,,UNI/MOTOWN,"C © 2003 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2003 Universal Motown Records, a division of UMG Recordings, Inc.",8106 +8107,spotify:track:25BxqC9Yo7TQ175DLAyMJs,Hungry Eyes,spotify:artist:2ekjTXgjxbWwBX5lTAj4DU,Eric Carmen,spotify:album:03HVo5MVOWQ4kilTtF1Czg,Dirty Dancing,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1987-07-10,https://i.scdn.co/image/ab67616d0000b273741a375f2292fbe848ef27e8,1,4,248266,https://p.scdn.co/mp3-preview/54a8016e755e79be5b84fbeafe61685e48b18e22?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBMG0100041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock,yacht rock",0.703,0.517,5.0,-12.093,1.0,0.0254,0.0215,0.0,0.0953,0.689,110.52,4.0,,RCA Records Label,"P (P) 1987 Vestron Pictures, Inc.",8107 +8108,spotify:track:7uAX9NrF4cDpcUA2FiWmKf,David's Song,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:002H8sA77XFikjH4kbPaph,The Heavy Entertainment Show (Deluxe),spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2016-11-04,https://i.scdn.co/image/ab67616d0000b2730f7ea7d45b75a3dabac59140,1,8,254280,https://p.scdn.co/mp3-preview/1c7e43426eda9a678f9ed55276f73ecc91e6d800?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GBPS61600012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.533,0.469,0.0,-6.493,1.0,0.027,0.244,3.29e-05,0.114,0.202,76.62,4.0,,Columbia,P (P) 2016 Robert Williams/Farrell Music Limited,8108 +8109,spotify:track:4ZQmVvvP6s7K0acVdWoGMC,Casino Royale,spotify:artist:09L3cUdx0hq6qn5bKuJJ4I,Herb Alpert & The Tijuana Brass,spotify:album:5fMEVS4idvn0tPAZNtHY81,Sounds Like...,spotify:artist:09L3cUdx0hq6qn5bKuJJ4I,Herb Alpert & The Tijuana Brass,1967-05-01,https://i.scdn.co/image/ab67616d0000b273eef7066f244d31ec88c529bf,1,11,155986,https://p.scdn.co/mp3-preview/c8e3ecb7dae45de6f0d19299bd7885cec95a9e0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM4221500244,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"easy listening,lounge",0.713,0.463,2.0,-12.671,1.0,0.0394,0.649,0.689,0.0963,0.884,136.601,4.0,,Herb Alpert Presents,"C © 2015 Herb Alpert Presents, P ℗ 2015 Herb Alpert Presents",8109 +8110,spotify:track:1pViOt8zA2rl2NfHeDGnyD,You're The One That I Want,"spotify:artist:4hKkEHkaqCsyxNxXEsszVH, spotify:artist:4BoRxUdrcgbbq1rxJvvhg9","John Travolta, Olivia Newton-John",spotify:album:3ku54lKW19XjXwhNkNdtzZ,Grease,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1978-09-14,https://i.scdn.co/image/ab67616d0000b2731c518948dd61ffd8141bf471,1,4,169840,https://p.scdn.co/mp3-preview/e40c2ef7fd8bb3ba548682058005672f8ee91184?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057890004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,adult standards,australian dance,disco,mellow gold,soft rock",0.758,0.612,0.0,-11.403,1.0,0.0598,0.281,0.00288,0.0954,0.822,106.945,4.0,,Polydor Records,"C © 1978 Universal Music Group Inc., P This Compilation ℗ 1978 Universal Music Group Inc.",8110 +8111,spotify:track:3porUUHpkLWHFmtHVYQRGj,Fever,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:6FTq1YhYJLetfJQrq02gdv,Fever,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2001-10-01,https://i.scdn.co/image/ab67616d0000b273c2f18ddba993ab67b989bcb8,1,4,211826,https://p.scdn.co/mp3-preview/f32f687c6717ac6805ed6ee9ed60db6744ad22e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAYE0101378,spotify:user:bradnumber1,2023-12-31T09:36:35Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.802,0.516,6.0,-7.118,0.0,0.0425,0.0502,0.00155,0.106,0.911,114.989,4.0,,WM Australia,"C © 2001 KayDeebee Pty Ltd, P ℗ 2001 KayDeebee Pty Ltd",8111 +8112,spotify:track:41FuUh9R8gr2apoRHc17Jw,Just Hold On,"spotify:artist:77AiFEVeAVj2ORpC85QVJs, spotify:artist:57WHJIHrjOE3iAxpihhMnp","Steve Aoki, Louis Tomlinson",spotify:album:3MaHf4K4Hqpq0i5IO7yTl9,Just Hold On,"spotify:artist:77AiFEVeAVj2ORpC85QVJs, spotify:artist:57WHJIHrjOE3iAxpihhMnp","Steve Aoki, Louis Tomlinson",2016-12-11,https://i.scdn.co/image/ab67616d0000b273444ed53fc3c250fa84982d43,1,1,198774,https://p.scdn.co/mp3-preview/06209e862894c36b9f3e8faaf26950f2bb3a646f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUS11600503,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,electro house,pop dance,pop",0.649,0.933,11.0,-3.512,1.0,0.0787,0.00366,1.86e-06,0.0576,0.399,115.0,4.0,,Liberator Music,"C 2016 Ultra Records, LLC, P 2016 Ultra Records, LLC",8112 +8113,spotify:track:7jdzEajQulRkZejXLFNmaZ,Colour My World,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,spotify:album:4oa2hZ1r8L8Egf9ec6ncCM,The Classic Collection,spotify:artist:6nKqt1nbSBEq3iUXD1Xgz8,Petula Clark,1997-01-01,https://i.scdn.co/image/ab67616d0000b27324178f04350f2f94a5b2736d,2,20,168042,https://p.scdn.co/mp3-preview/95f72b778a76f6a606ad18426823f7de477bb5b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAJE6600224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,folk rock,merseybeat,rock-and-roll,rockabilly",0.433,0.812,10.0,-6.625,1.0,0.0341,0.82,0.0,0.25,0.837,167.003,4.0,,Sanctuary Budget,"C © 1997 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1997 Sanctuary Records Group Ltd., a BMG Company",8113 +8114,spotify:track:1UZOjK1BwmwWU14Erba9CZ,Malibu,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:5xG9gJcs9ut3qDWezHUlsX,Younger Now,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2017-09-29,https://i.scdn.co/image/ab67616d0000b2739012e092ad8ed4731ea11134,1,2,231906,https://p.scdn.co/mp3-preview/adb88a1bfb0a510248e6e09188e4c36cb8667a03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USRC11700814,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.573,0.781,8.0,-6.406,1.0,0.0555,0.0767,2.64e-05,0.0813,0.343,139.934,4.0,,RCA Records Label,"P (P) 2017 RCA Records, a division of Sony Music Entertainment",8114 +8115,spotify:track:7Dhvsr2oU8Mv2szLCvNh6A,Dum Dum - Single Version,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,spotify:album:3LrAX92YCFNqCwNJDBbNqH,Rock N' Roll Legends (International Version),spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,2008-01-01,https://i.scdn.co/image/ab67616d0000b2732d343a853da90c9e1ce628ea,1,5,144573,https://p.scdn.co/mp3-preview/ef9b2a81803d8c13f68f8d8182f627f16758d328?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16110639,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rockabilly",0.695,0.475,1.0,-10.288,1.0,0.222,0.79,0.0,0.128,0.581,125.985,4.0,,Geffen,"C © 2008 MCA Records, P ℗ 2008 MCA Records",8115 +8116,spotify:track:1pZWORSXTFlZnrfxChRBaz,1-2-3 - Single Version,spotify:artist:5IFCkqu9J6xdWeYMk5I889,Gloria Estefan,spotify:album:1Hx9JuA0e9dAm5z6f0oNE6,The Very Best Of Gloria Estefan (English Version),spotify:artist:5IFCkqu9J6xdWeYMk5I889,Gloria Estefan,2006-09-26,https://i.scdn.co/image/ab67616d0000b273710b01ac6bc0a9b602db1d32,1,14,215880,https://p.scdn.co/mp3-preview/1b6fcd63beb22f1ecfed48f1715256dfeba59b37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USSM10604528,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.756,0.855,7.0,-6.7,1.0,0.0687,0.102,2.48e-05,0.0185,0.699,126.423,4.0,,Epic/Legacy,"P (P) 1984, 1985, 1987, 1989, 1991, 1994, 1996, 1998, 2003, 2006 SONY BMG MUSIC ENTERTAINMENT/ (P) 2005 Breastfed Records Ltd.",8116 +8117,spotify:track:0ki20YfuY8tRxi4LIR69IO,Life in Technicolor ii,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:1MnAljVs4hcGU6pTcK2jdT,Viva La Vida (Prospekt's March Edition),spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2008-11-24,https://i.scdn.co/image/ab67616d0000b2735ec1e1f1d2e6d752d8e3f37e,2,1,245099,https://p.scdn.co/mp3-preview/9033a4ff4ebef1fbe0f46c4fc316cbfbb820c9d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBAYE0801695,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.472,0.909,9.0,-7.073,1.0,0.0391,0.00158,5.16e-05,0.248,0.278,131.051,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",8117 +8118,spotify:track:7o2CTH4ctstm8TNelqjb51,Sweet Child O' Mine,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:3I9Z1nDCL4E0cP62flcbI5,Appetite For Destruction,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1987-07-21,https://i.scdn.co/image/ab67616d0000b27368384dd85fd5e95831252f60,1,9,354520,https://p.scdn.co/mp3-preview/a941cdd2c0c74206aaa6d7e459e4fdf1d738deaa?cid=9950ac751e34487dbbe027c4fd7f8e99,True,13,USGF18714809,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.454,0.91,6.0,-7.766,1.0,0.0448,0.0866,0.0996,0.116,0.629,125.116,4.0,,Guns N Roses P&D,"C © 1987 The David Geffen Company, P ℗ 1987 UMG Recordings, Inc.",8118 +8119,spotify:track:3v19Vwp7kZNGF4kmLG006s,I Send A Message,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:5iRDO2cnFmb95rjzpiVJrT,The Very Best,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b27361720ec9790c8d7a64698ac7,2,7,203160,https://p.scdn.co/mp3-preview/38cd13e30a8afbdc2ca50acd3bec5aa7f6f4c63d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF050190176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.827,0.525,0.0,-6.82,1.0,0.0664,0.0743,0.447,0.0858,0.643,136.42,4.0,,Universal Music Group,"C © 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",8119 +8120,spotify:track:2QbuqnxPaHCsYnlbAZDxvV,Try Me Out,spotify:artist:26T6b8maqEVltcmE4kSDUl,Corona,spotify:album:6rrPmmb2lQd5pNRL6HKBZx,The Rhythm of the Night,spotify:artist:26T6b8maqEVltcmE4kSDUl,Corona,1994,https://i.scdn.co/image/ab67616d0000b273f94b2a29ccc364e8faedce10,1,2,206880,https://p.scdn.co/mp3-preview/14286b4ab9ffee87b08c83dd663d5f93ffa0a852?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,ITA199800035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,europop,hip house",0.753,0.77,7.0,-8.655,0.0,0.035,0.0489,0.000397,0.251,0.558,130.977,4.0,,DWA Records,"C 1995 Extravaganza Publishing Srl, P 1995 Robyx Srl",8120 +8121,spotify:track:2RttW7RAu5nOAfq6YFvApB,Happier,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:3T4tUhGYeRNVUGevb0wThu,÷ (Deluxe),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2017-03-03,https://i.scdn.co/image/ab67616d0000b273ba5db46f4b838ef6027e6f96,1,7,207520,https://p.scdn.co/mp3-preview/f4944de04b857647b920811fae9a1abfb27d7f8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBAHS1700028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.522,0.385,0.0,-7.355,1.0,0.0288,0.536,0.0,0.135,0.236,89.792,4.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company., P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK, a Warner Music Group company.",8121 +8122,spotify:track:4aSw1QJIMwYSoDEgzgdCJL,Ferry Cross the Mersey - Mono; 2002 Remaster,spotify:artist:3UmBeGyNwr4iDWi1vTxWi8,Gerry & The Pacemakers,spotify:album:2xjQOixp5YLkhVDcAh8MY0,You'll Never Walk Alone (The EMI Years 1963-1966),spotify:artist:3UmBeGyNwr4iDWi1vTxWi8,Gerry & The Pacemakers,2008-02-11,https://i.scdn.co/image/ab67616d0000b27356fb9aca2e348cb6c33e5bd6,2,1,141986,https://p.scdn.co/mp3-preview/13dba1b2b6058bd1cd49e64fa2ecbc64a0bd3dc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAYE0201595,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,merseybeat,rock-and-roll",0.43,0.365,6.0,-10.226,0.0,0.0287,0.255,4.35e-06,0.163,0.587,104.049,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",8122 +8123,spotify:track:4xAJSIcCHcOCli5m325X2H,We're Good,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:4t3Ur7xbLyt0ybULu8jJMH,We're Good,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2021-02-11,https://i.scdn.co/image/ab67616d0000b2735d6741e869c0a1731141f487,1,1,165506,https://p.scdn.co/mp3-preview/0ed0e3241d7dd381271156710b7153308ddfbb89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBAHT2001117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.722,0.588,6.0,-5.932,1.0,0.0544,0.0319,0.0,0.183,0.59,134.01,4.0,,Warner Records,"C under exclusive license to Warner Records UK, a division of Warner Music UK Limited, © 2021 Dua Lipa Limited, P under exclusive license to Warner Records UK, a division of Warner Music UK Limited, ℗ 2021 Dua Lipa Limited",8123 +8124,spotify:track:3kzmI3qZbtBKcVfiUyT2xI,Department of Youth,spotify:artist:3EhbVgyfGd7HkpsagwL9GS,Alice Cooper,spotify:album:4QhvqS4OQ4Lxe78Bafn8VH,Welcome to My Nightmare,spotify:artist:3EhbVgyfGd7HkpsagwL9GS,Alice Cooper,1975-03-11,https://i.scdn.co/image/ab67616d0000b2738fc780320961d4e88ae82393,1,6,196800,https://p.scdn.co/mp3-preview/ec41954ee093903f6032843ea6a68e3f95ab763a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USAT20111039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,detroit rock,glam metal,glam rock,hard rock,metal,protopunk,rock",0.533,0.906,5.0,-7.547,1.0,0.0381,0.2,0.0015,0.493,0.638,121.669,4.0,,Atlantic Records,"C © 1975 Atlantic Recording Corporation, P ℗ 1975 Atlantic Recording Corporation",8124 +8125,spotify:track:0LMXIiouGsbzarXwmJWFFX,Taylor,spotify:artist:3GBPw9NK25X1Wt2OUvOwY3,Jack Johnson,spotify:album:5omWFFPkzExf1enlfuxWeC,On And On,spotify:artist:3GBPw9NK25X1Wt2OUvOwY3,Jack Johnson,2003-01-01,https://i.scdn.co/image/ab67616d0000b27363c675bbed0fb261d0156aad,1,4,238826,https://p.scdn.co/mp3-preview/fdaf0e4c43e894a00974a7232fa58e2ed01295b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC60300013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.886,0.726,9.0,-8.135,0.0,0.0973,0.146,0.0726,0.0938,0.614,86.996,4.0,,Universal Music Group,"C © 2003 The Moonshine Conspiracy Records, Manufactured and Marketed by Universal Records, a Division of UMG Recordings, Inc., P ℗ 2003 The Moonshine Conspiracy Records, Manufactured and Marketed by Universal Records, a Division of UMG Recordings, Inc.",8125 +8126,spotify:track:6TD08uig72h348vwgry0kq,All Day and All of the Night,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:7GFn8ze0gydX3f0WNMCxaG,Pirate Radio,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-01-01,https://i.scdn.co/image/ab67616d0000b2736a6377c352fcdeb390dd86f5,1,2,141493,https://p.scdn.co/mp3-preview/8686780c85ed4c4d0cbfd95f1be5d581a33463c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.551,0.957,7.0,-5.0,1.0,0.108,0.455,0.000161,0.0665,0.533,136.966,4.0,,EMI,"C © 2009 Mercury Records Limited, P This Compilation ℗ 2009 Mercury Records Limited",8126 +8127,spotify:track:29rQJydAlO0uMyWvRIZxQg,That's The Way Love Goes,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:7qIuZgsMkRuh7rzi4qVcpg,Janet,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1993-05-18,https://i.scdn.co/image/ab67616d0000b273e63518d50aff63f57d2b8ead,1,2,265106,https://p.scdn.co/mp3-preview/ed986e50fe02f1bfd159a9e0b15bb59e15e17455?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBAAA9300170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.703,0.7,5.0,-6.789,1.0,0.0693,0.302,0.471,0.0718,0.582,97.675,4.0,,Virgin Records,"C © 1993 Black Doll Inc, P ℗ 1993 Virgin Records Limited",8127 +8128,spotify:track:5Sgow6NGwGQG5YksRMlooH,Boys Like You (feat. Gossling),"spotify:artist:3vn7rk7VNMfDhuZNB9sDYP, spotify:artist:0NnyKz36MvIC2R3dFht35A","360, Gossling",spotify:album:24BtFxH4SwrwemFvnfC2fA,Falling and Flying,spotify:artist:3vn7rk7VNMfDhuZNB9sDYP,360,2012-02-03,https://i.scdn.co/image/ab67616d0000b273f5cff385867da266b0049426,1,6,220682,https://p.scdn.co/mp3-preview/3367ed246790bcc007b96b13b5b802bf7a6c4cb0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,TCACA1446431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian pop",0.708,0.678,3.0,-9.111,0.0,0.105,0.00586,0.0,0.133,0.527,145.969,4.0,,Soulmate/EMI,"C 2014 Soulmate/EMI, P 2014 Soulmate/EMI",8128 +8129,spotify:track:0m7dJ7cibvW774OP5GbWHB,Fancy,"spotify:artist:5yG7ZAZafVaAlMTeBybKAL, spotify:artist:25uiPmTg16RbhZWAqwLBy5","Iggy Azalea, Charli xcx",spotify:album:5VVrwQK0G9ALEjclVMxU5g,The New Classic,spotify:artist:5yG7ZAZafVaAlMTeBybKAL,Iggy Azalea,2014-01-01,https://i.scdn.co/image/ab67616d0000b2734848c0422d1422ff6e4db9d1,1,5,199938,https://p.scdn.co/mp3-preview/077ffd490b5c65dfdcdc9d77b2a4cb607a8563b9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBUM71400597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,dance pop,pop,art pop,candy pop,metropopolis,pop,uk pop",0.914,0.716,10.0,-4.136,0.0,0.0646,0.0871,0.0,0.0489,0.375,94.979,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",8129 +8130,spotify:track:5FCyoZGaN6nRod1oNDJIWZ,Breathe,spotify:artist:4k1ELeJKT1ISyDv8JivPpB,The Prodigy,spotify:album:4FHd783Gm1k8Fj2JWS34eb,The Fat of the Land,spotify:artist:4k1ELeJKT1ISyDv8JivPpB,The Prodigy,1997-06-30,https://i.scdn.co/image/ab67616d0000b2734df3d28d9eff13c833b175d6,1,2,334800,https://p.scdn.co/mp3-preview/0f5f5456411718a7a8495ba6e34dec1617495399?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS9700074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,breakbeat,dance rock,hardcore techno,rave",0.682,0.819,9.0,-6.116,1.0,0.0501,0.00994,0.881,0.0389,0.312,130.032,4.0,,XL Recordings,"C 1997 XL Recordings Ltd, P 1997 XL Recordings Ltd",8130 +8131,spotify:track:68MSCSP7Y6PnzXcW1IlN7G,One Way Ticket,spotify:artist:3R6f1aBWwde7ZqGv7hf4dY,Eruption,spotify:album:26BHqKni1MTqwIcdSUFLRm,4 Hits: Eruption,spotify:artist:3R6f1aBWwde7ZqGv7hf4dY,Eruption,2011-07-15,https://i.scdn.co/image/ab67616d0000b27316460173acaa68e9bc62fd98,1,1,213200,https://p.scdn.co/mp3-preview/8cbaae34da7a0c60fb7d05197ae4cd0545258d9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,DEC737900008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.719,0.732,1.0,-9.227,0.0,0.0408,0.319,6.51e-06,0.0745,0.96,123.569,4.0,,MCI,P (P) 2011 Sony Music Entertainment Germany GmbH,8131 +8132,spotify:track:66yKv1kZIqfejvrLEGqTML,It's Gotta Be You,spotify:artist:5lXfVoQxVgC5fpjkVqvNYn,Isaiah Firebrace,spotify:album:4zSLy4XMFXIMFa52jzoEdk,It's Gotta Be You,spotify:artist:5lXfVoQxVgC5fpjkVqvNYn,Isaiah Firebrace,2016-11-21,https://i.scdn.co/image/ab67616d0000b27331ab5943eff956823f5402b7,1,1,191433,https://p.scdn.co/mp3-preview/ee6dd2e509dc507d1672c1ad170bcff720a29adf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUBM01600473,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.322,0.733,8.0,-4.905,1.0,0.045,0.223,0.0,0.11,0.585,92.133,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd,8132 +8133,spotify:track:4iLY8SCRIEkja4IkOriMYj,Give Me the Meltdown,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,spotify:album:72aNaOna8AV0GZADXRbFlX,Cradlesong,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,2009-06-22,https://i.scdn.co/image/ab67616d0000b273da8f63e21bfaeeaf5be6d445,1,3,192786,https://p.scdn.co/mp3-preview/187fda22e207d05aadebd0d0b663a53020611bdc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USAT20901094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.633,0.767,8.0,-5.559,1.0,0.035,0.0465,0.0,0.15,0.961,106.021,4.0,,Emblem / Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8133 +8134,spotify:track:7JFoeg0arawADjGcz9gBnq,I Don't Like Mondays,spotify:artist:40oYPr305MsT2lsiXr9fX9,The Boomtown Rats,spotify:album:5XRmSuESYUZSa7HauZ71ts,The Fine Art Of Surfacing,spotify:artist:40oYPr305MsT2lsiXr9fX9,The Boomtown Rats,1979,https://i.scdn.co/image/ab67616d0000b2733d5652bd490f832d75c6f45b,1,6,259093,https://p.scdn.co/mp3-preview/eda3f6b62793db1913dea6e4e352dc18f095a669?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBF087900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.464,0.46,11.0,-6.874,1.0,0.0393,0.717,0.0,0.151,0.476,143.603,4.0,,Island Records,"C © 2005 Mercury Records Limited, P This Compilation ℗ 2005 Mercury Records Limited",8134 +8135,spotify:track:4mjFMScEvHeM72791mXRCW,In the Navy - Original Version 1979,spotify:artist:0dCKce6tJJdHvlWnDMwzPW,Village People,spotify:album:3iF4amlNW1yd9DoZ9WOD1i,Go West In the Navy,spotify:artist:0dCKce6tJJdHvlWnDMwzPW,Village People,1979,https://i.scdn.co/image/ab67616d0000b273e387a0b68cda521a1cc7a743,1,1,339946,https://p.scdn.co/mp3-preview/03170422e55403ff4152ecf76299b87937d618f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,FR6V80878840,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,new wave pop,soft rock",0.725,0.959,9.0,-6.994,0.0,0.0472,0.0725,0.0,0.14,0.755,127.323,4.0,,Scorpio Music,"C 1979 Can't Stop Productions NYC, P Can't Stop Productions NYC 1979",8135 +8136,spotify:track:2952fALz8E96WGTaVdsTsQ,Maybe It’s My First Time,spotify:artist:4faUajx9k93O56nlmpkOuz,Meg Mac,spotify:album:6ShsZvRGx3dU6s0WXs7DfT,Low Blows,spotify:artist:4faUajx9k93O56nlmpkOuz,Meg Mac,2017-07-14,https://i.scdn.co/image/ab67616d0000b2734c9f530f03b6c68e1f3bd5c6,1,7,213240,https://p.scdn.co/mp3-preview/d310cd146f6a6fc31a6a00cda71f4f95e0f86d8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUGKE1700016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.704,0.645,11.0,-6.515,0.0,0.0334,0.339,0.0,0.162,0.606,90.975,4.0,,EMI Recorded Music Australia Pty Ltd (Distribution),"C © 2017 littleBIGMAN Records, P ℗ 2017 littleBIGMAN Records",8136 +8137,spotify:track:7iL8UcftjwLe6eosb3pgUH,Send in the Clowns,spotify:artist:5yzE49FicYiSxN61oaxkNn,Judy Collins,spotify:album:2ey4NEI46WsFWtlyy2fglR,The Very Best Of Judy Collins,spotify:artist:5yzE49FicYiSxN61oaxkNn,Judy Collins,2001-08-21,https://i.scdn.co/image/ab67616d0000b273b3481b0ed703f06c7a639bda,1,15,244426,https://p.scdn.co/mp3-preview/cfc1fc5dff8b5020af2d44e1b03623c19e359823?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USEE17500004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"american folk revival,folk,folk rock,mellow gold,singer-songwriter",0.223,0.0497,3.0,-16.37,1.0,0.0351,0.967,0.000258,0.222,0.1,86.659,1.0,,Rhino/Elektra,"C © 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing",8137 +8138,spotify:track:5XhkV07Vou38wnrzwURUOC,Who Am I (What's My Name)?,spotify:artist:7hJcb9fa4alzcOq3EaNPoG,Snoop Dogg,spotify:album:7f9KDGqY7X2VLBM5aA66KM,Doggystyle,spotify:artist:7hJcb9fa4alzcOq3EaNPoG,Snoop Dogg,1993,https://i.scdn.co/image/ab67616d0000b273e50059a623feb4eec8dcd668,1,8,246320,https://p.scdn.co/mp3-preview/fd5c8b69c743f53b9bf6079c097553207d64de15?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USKO10403597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,pop rap,rap,west coast rap",0.692,0.833,7.0,-3.974,1.0,0.0492,0.000136,1.98e-05,0.515,0.692,96.814,4.0,,Death Row Records,"C 2001 DEATH ROW, P 2001 DEATH ROW",8138 +8139,spotify:track:1gT8JERBG91Ki20NcMeUHf,Heartbreaker (feat. John Legend),"spotify:artist:2squZ8HjM4AzR0j6jsPn4a, spotify:artist:5y2Xq6xcjJb2jVM54GHK3t","MSTRKRFT, John Legend",spotify:album:28b0pUUjEcd7eZYN78GsGJ,Fist Of God,spotify:artist:2squZ8HjM4AzR0j6jsPn4a,MSTRKRFT,2009-03-17,https://i.scdn.co/image/ab67616d0000b2732164ad1e1251edb1f297bab2,1,5,192853,https://p.scdn.co/mp3-preview/e6aaaf3e733489443fbc73cde4d519fa4156903e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDM30800064,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,electro house,electrofox,filter house,indietronica,new rave,neo soul,pop,pop soul,urban contemporary",0.547,0.876,0.0,-4.834,0.0,0.111,0.0712,0.000142,0.322,0.367,128.059,4.0,,Dim Mak,"C 2009 Dim Mak Inc., P 2009 Dim Mak Inc.",8139 +8140,spotify:track:23OtRgjYavgOHteRMffcPs,Blue Velvet,spotify:artist:6bOYtKnpLPQSfMpS2ilotK,Bobby Vinton,spotify:album:3iMNKLqXfhxG5Dhb93EbXB,Collections,spotify:artist:6bOYtKnpLPQSfMpS2ilotK,Bobby Vinton,2006-01-31,https://i.scdn.co/image/ab67616d0000b273f53239e3427658a3b29b42c7,1,1,167213,https://p.scdn.co/mp3-preview/e0fdb06e6452f87c2abf4a78055b56a972ba7b29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM19601971,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,easy listening,rock-and-roll,rockabilly",0.38,0.2,10.0,-10.825,1.0,0.0296,0.789,1.45e-06,0.176,0.241,80.188,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2005 SONY BMG MUSIC (CANADA) INC.,8140 +8141,spotify:track:74jMwg2zsFMICzW3Wems6h,"Bump, Bump, Bump (feat. P. Diddy)","spotify:artist:51d3rUlLuMh7EW09aMe7yj, spotify:artist:59wfkuBoNyhDMQGCljbUbA","B2K, Diddy",spotify:album:5DimfXX31HuU0yxW0Ca5Uj,Greatest Hits,spotify:artist:51d3rUlLuMh7EW09aMe7yj,B2K,2004,https://i.scdn.co/image/ab67616d0000b2731bb76b3632abe850098895fc,1,1,282533,https://p.scdn.co/mp3-preview/b2ebd82cce3a5c59917d1faea75914dac9c3c725?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM10212636,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,hip pop,r&b,urban contemporary,dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap",0.833,0.681,1.0,-6.028,0.0,0.215,0.0956,0.0,0.0414,0.887,95.48,4.0,,Sony Urban/Epic,"P (P) 2001, 2002, 2003 Sony Music Entertainment, Inc.",8141 +8142,spotify:track:1m4dXbkplvaOO4Wbdjbwxs,Me Too,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:5nkgosKhWt1yXRzmjXNV2d,Thank You (Deluxe),spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2016-05-13,https://i.scdn.co/image/ab67616d0000b2734148fc1af9294805e35e9446,1,2,181240,https://p.scdn.co/mp3-preview/3edd9208dd6295b18f32c9be5dfcbd21290b913c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USSM11601177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop",0.935,0.694,11.0,-5.849,0.0,0.101,0.0963,1.2e-06,0.479,0.834,123.824,4.0,,Epic,"P (P) 2016 Epic Records, a division of Sony Music Entertainment",8142 +8143,spotify:track:0XfuvxptNRVoEWp7SaneV8,My Life Would Suck Without You,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:7KQy2pkGubHDzaTnPmX1oo,All I Ever Wanted,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2009-03-09,https://i.scdn.co/image/ab67616d0000b273ab05d85e404240f09429bdc1,1,1,211493,https://p.scdn.co/mp3-preview/d497b49b34a981de01a35f98f6696002ac0955a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBCTA0800348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.526,0.882,9.0,-4.006,1.0,0.0509,0.0014,0.0,0.144,0.424,144.982,4.0,,RCA Records Label,P (P) 2009 19 Recordings Limited,8143 +8144,spotify:track:0m8jfJIz5zUx1gG9q5wBAs,Are You Gonna Be My Girl,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,spotify:album:4UUcIdL8KRbUCGvkx4gIgK,Get Born,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,2003,https://i.scdn.co/image/ab67616d0000b27319067435dd0e90fef4ff9d30,1,2,213800,https://p.scdn.co/mp3-preview/cd8bc93c853849caa21fe05bc4b6f1b097e8aabc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10340526,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,pop rock",0.599,0.953,2.0,-3.39,1.0,0.0799,0.00183,0.000642,0.156,0.56,104.737,4.0,,Capitol Records,"C Artwork (C) 2003 Real Horrorshow Pty Ltd., P All recordings (P) 2003 Real Horrorshow Pty Ltd. Manufactured and marketed in Australia by EMI Music Australia Pty Limited under exclusive licence.",8144 +8145,spotify:track:5Huuwj6mEuAtyrH5bg6mqM,Tired of Toein' the Line,spotify:artist:6JGUkLiRAWMNYaHdUCIUvC,Rocky Burnette,spotify:album:6zsKiAfWVG6SiUeK4akAlR,Tired of Toein' the Line,spotify:artist:6JGUkLiRAWMNYaHdUCIUvC,Rocky Burnette,2008-07-08,https://i.scdn.co/image/ab67616d0000b273f617f02b2a2c0da51f12d60d,1,1,193560,https://p.scdn.co/mp3-preview/d9c62d249f3efbb7275fd85faeac255243059383?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USKWU0800148,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.647,0.694,7.0,-7.365,1.0,0.0284,0.0364,0.0,0.0776,0.694,121.975,4.0,,Gigatone,"C Gigatone Records, P Gigatone Records",8145 +8146,spotify:track:23RoR84KodL5HWvUTneQ1w,(It Goes Like) Nanana - Edit,spotify:artist:2mLA48B366zkELXYx7hcDN,Peggy Gou,spotify:album:2LVDNOUUy2g8517ZEtQIcK,(It Goes Like) Nanana [Edit],spotify:artist:2mLA48B366zkELXYx7hcDN,Peggy Gou,2023-06-15,https://i.scdn.co/image/ab67616d0000b27388d71aadd009fe1a83df88f2,1,1,231545,https://p.scdn.co/mp3-preview/e36e0bd4714844f1f9d992398b41a3e333f15cc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBBKS2300080,spotify:user:bradnumber1,2023-10-24T09:32:14Z,"electra,float house",0.671,0.876,7.0,-5.681,0.0,0.0352,0.12,0.188,0.0823,0.964,129.998,4.0,,XL Recordings,"C 2023 XL Recordings Ltd, P 2023 XL Recordings Ltd",8146 +8147,spotify:track:1VaGjVlt7LUnyhkBmLzEAV,In a Different Light,spotify:artist:3wlG40LYUIQ9rp5ff7NpPq,Daneka Nation,spotify:album:3Mmk4DxRZIystc6a0WwyQf,In a Different Light,spotify:artist:3wlG40LYUIQ9rp5ff7NpPq,Daneka Nation,2020-12-17,https://i.scdn.co/image/ab67616d0000b2733bcea0136bf696b926b79b66,1,1,187924,https://p.scdn.co/mp3-preview/1c98f0e9df19910e5b72e7afd489615f30978bad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,usx9p2066198,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.573,0.372,5.0,-14.843,1.0,0.0269,0.502,5.07e-05,0.138,0.399,94.898,4.0,,Daneka Nation,"C 2020 Daneka Nation, P 2020 Daneka Nation",8147 +8148,spotify:track:1TcSvuMbxlWtryXTaBI9LY,C U When U Get There (feat. 40 thevz),"spotify:artist:3y24n3XhZ96wgwRXjvS17T, spotify:artist:20GRegBvsJnKjeK587myg9","Coolio, 40 Thevz",spotify:album:7pcBJNscCK2D1DXgKFt5Ut,My Soul,spotify:artist:3y24n3XhZ96wgwRXjvS17T,Coolio,1997-08-26,https://i.scdn.co/image/ab67616d0000b273e98d317e0574f0a274a5dc8f,1,16,311040,https://p.scdn.co/mp3-preview/a9932a71153aed62320252993719db60e32e3490?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USTB10250032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,west coast rap",0.76,0.585,3.0,-7.307,1.0,0.161,0.0102,0.000476,0.308,0.455,91.179,4.0,,Rhino,"C 2005 Warner Strategic Marketing, P 2005 Warner Strategic Marketing",8148 +8149,spotify:track:7uOJqs56WHDFrxQkEfVX3F,Among My Souvenirs,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,spotify:album:5B9weDFlXPPdoxM5HRyreL,The Collection,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,1996-01-01,https://i.scdn.co/image/ab67616d0000b2738bb1230d0450aa5e271637ba,1,17,149866,https://p.scdn.co/mp3-preview/c495a37ae7ac21b6b3f7e0a67412490dd836641e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USF095925020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,easy listening,rock-and-roll,rockabilly",0.48,0.399,9.0,-6.954,1.0,0.0268,0.456,8.52e-06,0.136,0.582,108.934,3.0,,Spectrum,"C © 1998 Spectrum Music, P This Compilation ℗ 1996 Spectrum Music",8149 +8150,spotify:track:59CsbfwLNCAUGbBQV3Tki4,I Want It All - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:3enuKERSauyNFVTa2n0t7S,Greatest Hits II (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1991-10-28,https://i.scdn.co/image/ab67616d0000b2733db35792fa2e91722e9897b1,1,4,241253,https://p.scdn.co/mp3-preview/69dfb1068737d1ed7d010c5e0574a45c562708cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71029624,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.398,0.834,11.0,-5.786,0.0,0.0472,0.0298,2.35e-06,0.385,0.389,92.376,4.0,,Universal Music Group,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",8150 +8151,spotify:track:2y6QWfOnSufZJJ8XfrSGFz,Wide Boy,spotify:artist:7kCL98rPFsNKjAHDmWrMac,Nik Kershaw,spotify:album:69bhL4frY4toMx0No4DRQ6,The Riddle,spotify:artist:7kCL98rPFsNKjAHDmWrMac,Nik Kershaw,1984,https://i.scdn.co/image/ab67616d0000b273086adeef547fe1b5193cd8a5,1,9,208106,https://p.scdn.co/mp3-preview/a44666d8455a532cf073eabaea1e5687cd1d722e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBY0300015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.767,0.577,9.0,-13.646,1.0,0.0303,0.0976,0.0155,0.215,0.962,114.992,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",8151 +8152,spotify:track:5RhkkWN65KEq28RpBit1Hf,22,spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,spotify:album:4zZKTqu7DkowQnO9Bcx4KX,"It's Not Me, It's You (Special Edition)",spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,2008-12-02,https://i.scdn.co/image/ab67616d0000b27340c8d7aaf779b7a715dba250,1,4,186306,https://p.scdn.co/mp3-preview/5e1bb0a0912a1d17350ed69adf5bfc2e39004f23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAYE0802260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo mellow",0.719,0.736,10.0,-5.931,0.0,0.047,0.0252,0.000179,0.209,0.945,131.053,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",8152 +8153,spotify:track:2aIdVb8v9KTpEZnftkz2mD,Buy U a Drank (Shawty Snappin') (feat. Yung Joc),"spotify:artist:3aQeKQSyrW4qWr35idm0cy, spotify:artist:23LbwefIODbyGdRbAz3urj","T-Pain, Yung Joc",spotify:album:44Z1ZEmOyois0QoAgfUxrD,Epiphany,spotify:artist:3aQeKQSyrW4qWr35idm0cy,T-Pain,2007-06-05,https://i.scdn.co/image/ab67616d0000b273aad32187513cd6916ddd3c87,1,12,227960,https://p.scdn.co/mp3-preview/f7af382c64f472191f8e5ccf8d37b9ca98b5f9e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USJI10700121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,r&b,rap,southern hip hop,trap,urban contemporary,atl hip hop,crunk,dirty south rap,southern hip hop,trap",0.451,0.55,1.0,-8.137,1.0,0.262,0.0108,0.0,0.0737,0.594,80.001,4.0,,Jive,P (P) 2007 Zomba Recording LLC,8153 +8154,spotify:track:2Aab1S0t1HRbvF1BKaw2xj,Boys Like You,"spotify:artist:3vn7rk7VNMfDhuZNB9sDYP, spotify:artist:0NnyKz36MvIC2R3dFht35A","360, Gossling",spotify:album:43PP5L3A9ybQjiHTKG8Xtx,Falling & Flying,spotify:artist:3vn7rk7VNMfDhuZNB9sDYP,360,2011-09-30,https://i.scdn.co/image/ab67616d0000b27341b839ed5f8427a34bf4f4bc,1,6,220626,https://p.scdn.co/mp3-preview/48b93b66cd1fd240fafbe077d37225f3029ce4c6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,49,AUSR21100080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian pop",0.712,0.688,3.0,-8.567,0.0,0.117,0.00437,0.0,0.134,0.515,145.964,4.0,,Soulmate Records,"C © 2011 Soulmate Records Pty Limited, P ℗ 2011 Soulmate Records Pty Limited",8154 +8155,spotify:track:2KHGTpNTXeD9Z9GjaKTwAV,First Time,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:0X2BH1fck6amBIoJhDVmmJ","Kygo, Ellie Goulding",spotify:album:2sPYPyDFwgi1jrRTGhoxq2,Stargazing - EP,spotify:artist:23fqKkggKUBHNkbKtXEls4,Kygo,2017-09-21,https://i.scdn.co/image/ab67616d0000b273a333559091297eda04eba27c,1,3,194333,https://p.scdn.co/mp3-preview/ed455bed185945446fefb1fce60b65a7923a9aa0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,SEBGA1700113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,indietronica,metropopolis,pop,uk pop",0.551,0.59,0.0,-7.309,0.0,0.209,0.225,0.0,0.102,0.674,180.101,4.0,,Kygo,"P (P) 2017 Kygo AS under exclusive license to Sony Music Entertainment International Ltd / Ultra Records, LLC",8155 +8156,spotify:track:1LOZMYF5s8qhW7Rv4w2gun,Dreadlock Holiday,spotify:artist:6i6WlGzQtXtz7GcC5H5st5,10cc,spotify:album:3MecVG0PeBObAhjwEAczFG,Bloody Tourists,spotify:artist:6i6WlGzQtXtz7GcC5H5st5,10cc,1978,https://i.scdn.co/image/ab67616d0000b27364c6ef51927c575ed9f464cf,1,1,267946,https://p.scdn.co/mp3-preview/35903764336d8e7badfcea41a8f543cdc6da7b80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBF087800002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,glam rock,mellow gold,new romantic,soft rock,symphonic rock,yacht rock",0.837,0.38,7.0,-13.341,0.0,0.064,0.541,0.00789,0.198,0.892,104.995,4.0,,EMI,"C © 1997 Mercury Records Limited, P ℗ 1997 Mercury Records Limited",8156 +8157,spotify:track:22VdIZQfgXJea34mQxlt81,Can't Feel My Face,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:0P3oVJBFOv3TDXlYRhGL7s,Beauty Behind The Madness,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2015-08-28,https://i.scdn.co/image/ab67616d0000b2737fcead687e99583072cc217b,1,7,213520,https://p.scdn.co/mp3-preview/99b0d35b74903a1807c2f0a7b4e54f844c93fb68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USUG11500741,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.705,0.769,9.0,-5.526,0.0,0.0425,0.113,0.0,0.105,0.583,107.949,4.0,,Universal Republic Records,"C © 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc., P ℗ 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.",8157 +8158,spotify:track:0qst32xWAUil1sesV21uWl,Fred Astaire,spotify:artist:0Ou0138wEd8XWebhc4j7O0,San Cisco,spotify:album:27uIN8MofwAU3jvOnIRSGb,San Cisco,spotify:artist:0Ou0138wEd8XWebhc4j7O0,San Cisco,2012-11-23,https://i.scdn.co/image/ab67616d0000b273b6736af54c4811da9b992633,1,2,175986,https://p.scdn.co/mp3-preview/468d6d860830659b44dab37cb245d0290a241264?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUU221200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,fremantle indie,metropopolis,perth indie",0.408,0.676,6.0,-6.073,0.0,0.0771,0.0301,0.0,0.0684,0.644,209.591,4.0,,Island City Records,"C 2012 San Cisco, P 2012 San Cisco",8158 +8159,spotify:track:7AHZb0GnILBBitj0MxObO5,Take My Breath Away,spotify:artist:2tFN9ubMXEhdAQvdQxcsma,Jessica Simpson,spotify:album:1tCJPKhKa3j1OBgz0MhBUV,In This Skin (Deluxe Edition),spotify:artist:2tFN9ubMXEhdAQvdQxcsma,Jessica Simpson,2003,https://i.scdn.co/image/ab67616d0000b273adefab4c77e8a845234eeee4,1,3,195346,https://p.scdn.co/mp3-preview/0059b88519949fd1e15394bcffcc4ca56ae38df4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USSM10400631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.568,0.607,7.0,-6.006,1.0,0.0271,0.252,0.0,0.25,0.405,99.692,4.0,,Columbia,"P (P) 2003, 2004 Sony Music Entertainment Inc.",8159 +8160,spotify:track:4hbRj5tucVkLUVoAdJUyRi,One Step At a Time,spotify:artist:2AQjGvtT0pFYfxR3neFcvz,Jordin Sparks,spotify:album:6uADeQqYkdZqctA1AO6riB,Jordin Sparks,spotify:artist:2AQjGvtT0pFYfxR3neFcvz,Jordin Sparks,2007-11-20,https://i.scdn.co/image/ab67616d0000b273541387af4fde7d5b5def61ab,1,2,205160,https://p.scdn.co/mp3-preview/2c83d10280da8a156e4a4e4a4c18e7871762907f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCTA0700276,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,urban contemporary",0.766,0.692,1.0,-4.672,1.0,0.0289,0.0825,0.0,0.0384,0.691,102.028,4.0,,19 Recordings,"P (P) 2007 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",8160 +8161,spotify:track:59uAvq0IeWRGkCJAki11ve,Something Big,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:5wKylB0Zwnxz046O7po25D,Handwritten (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2015-04-13,https://i.scdn.co/image/ab67616d0000b27347710f5e89677e4d048e744c,1,6,161440,https://p.scdn.co/mp3-preview/5888c4d6f15fe957f1a35ba1235bfc76a93410e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71415364,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.694,0.854,7.0,-3.891,0.0,0.043,0.00614,0.0,0.158,0.803,112.007,4.0,,Universal Music Group,"C © 2015 Island Records, a division of UMG Recordings, Inc., P ℗ 2015 Island Records, a division of UMG Recordings, Inc.",8161 +8162,spotify:track:2Sh3g4QYQrIAsvgfTXmSaX,Cambodia - Single Version,spotify:artist:73a6pNH4YtLNgDbPQwXveo,Kim Wilde,spotify:album:4uwIpx0rsulTCNL1O3Mee0,Select,spotify:artist:73a6pNH4YtLNgDbPQwXveo,Kim Wilde,1982,https://i.scdn.co/image/ab67616d0000b27311e5a1f0aa2f07c7689767b1,1,12,237706,https://p.scdn.co/mp3-preview/31cd5479580029964a35aacc2a4420965e8ee02a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAYE0900397,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.683,0.685,2.0,-5.96,0.0,0.0276,0.0208,0.0177,0.1,0.696,110.791,4.0,,Cherry Red Records,"C (C) 2009 Cherry Red Records Ltd, P (P) 2009 Cherry Red Records Ltd",8162 +8163,spotify:track:32lItqlMi4LBhb4k0BaSaC,Candy Paint,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,spotify:album:6trNtQUgC8cgbWcqoMYkOR,beerbongs & bentleys,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2018-04-27,https://i.scdn.co/image/ab67616d0000b273b1c4b76e23414c9f20242268,1,17,227533,https://p.scdn.co/mp3-preview/5821f55e076a1477c63588d1a0859a8893152e97?cid=9950ac751e34487dbbe027c4fd7f8e99,True,72,USUM71711842,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap",0.66,0.667,4.0,-5.941,1.0,0.156,0.64,1.22e-06,0.0753,0.381,180.044,4.0,,Republic Records,"C © 2018 Republic Records, a division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",8163 +8164,spotify:track:4nwt5NOCtAUHeob20jQqxP,Lost In France,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,spotify:album:5D43457Yz0FUwufF4ogvfA,It's a Heartache,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,2006-07-07,https://i.scdn.co/image/ab67616d0000b273a0473825f51aed3fac5fd187,1,1,232920,https://p.scdn.co/mp3-preview/5377356883e64f0baaad1aa5c2d0ca4239f5030f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE7600013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,new wave pop,soft rock",0.443,0.701,10.0,-5.7,1.0,0.0275,0.137,0.0,0.137,0.587,116.452,4.0,,Sanctuary Records,"C © 2006 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2006 Sanctuary Records Group Ltd., a BMG Company",8164 +8165,spotify:track:3rKqIfNo9bjT0LKnNHgySm,Cotton Fields (The Cotton Song) - Remastered 2001,spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,spotify:album:2vFDenbFedYVMOwDqTiw82,20/20 (Remastered),spotify:artist:3oDbviiivRWhXwIE8hxkVV,The Beach Boys,1969-02-10,https://i.scdn.co/image/ab67616d0000b27300342f9f40e80ee0440c954d,1,7,143066,https://p.scdn.co/mp3-preview/80e44112149527d6b0066320c3afba9d4b2653e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USCA20100323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,classic rock,folk rock,mellow gold,psychedelic rock,rock,singer-songwriter,sunshine pop",0.597,0.554,8.0,-7.739,1.0,0.0285,0.486,0.00163,0.255,0.607,129.096,4.0,,Capitol Records,"C © 1969 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",8165 +8166,spotify:track:5cdDdllseHYAaPW5oxCIST,Everlovin' Man,spotify:artist:7gZMm6pQpLhYgWN2cABBP9,The Loved Ones,spotify:album:6o24C44s73co75GFoIZfwq,Magic Box,spotify:artist:7gZMm6pQpLhYgWN2cABBP9,The Loved Ones,1995-01-01,https://i.scdn.co/image/ab67616d0000b2730216a1458c48680240d64416,1,2,131693,https://p.scdn.co/mp3-preview/0494ed0cbefd5b057d388d8ec02c51e628fccda3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUUM70800439,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.619,0.339,2.0,-12.289,1.0,0.104,0.548,0.0,0.094,0.794,104.647,4.0,,Universal Music Australia Pty. Ltd.,"C © 1995 Polygram Pty Ltd, P ℗ 1995 Polygram Pty Ltd",8166 +8167,spotify:track:2IXGIhLcTl5WsCcFYuq3Tt,It's My Life,spotify:artist:3ICflSq6ZgYAIrm2CTkfVP,The Animals,spotify:album:1v4O55JGou3T0Vlj06fdXz,The Singles Plus,spotify:artist:3ICflSq6ZgYAIrm2CTkfVP,The Animals,1987-10-19,https://i.scdn.co/image/ab67616d0000b273015c484a7aca592df1a77828,1,13,189266,https://p.scdn.co/mp3-preview/2282b4abae21024367bf8a5d836e45bf9f3bad12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBAYE6500235,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,protopunk,psychedelic rock,rock",0.593,0.592,1.0,-7.75,1.0,0.0311,0.00226,9.36e-06,0.232,0.652,122.848,4.0,,Parlophone UK,"C © 1987 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1987 Parlophone Records Ltd, a Warner Music Group Company",8167 +8168,spotify:track:32kgOw8wejH7zUhtXCM8DH,More Than a Feeling,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,spotify:album:01OahkTPRCleDjobtRk7ST,Boston,spotify:artist:29kkCKKGXheHuoO829FxWK,Boston,1976,https://i.scdn.co/image/ab67616d0000b273cbdeb4ed581e56ac25609357,1,1,285133,https://p.scdn.co/mp3-preview/4e8704349932ecb754e3c03cdf3b1563309627a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM17600941,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.377,0.682,7.0,-8.039,1.0,0.0299,0.000894,0.00217,0.0504,0.288,108.736,4.0,,Epic,"P (P) 1976, 2006 Sony Music Entertainment",8168 +8169,spotify:track:5GhJIMWAw0uMLgkdbt6uMz,Fallin’ (Adrenaline),spotify:artist:2jnIB6XdLvnJUeNTy5A0J2,Why Don't We,spotify:album:68KIeRyl26qz4Qkrv25FVm,Fallin’ (Adrenaline),spotify:artist:2jnIB6XdLvnJUeNTy5A0J2,Why Don't We,2020-09-29,https://i.scdn.co/image/ab67616d0000b27362d3381a88a63957b563967e,1,1,216504,https://p.scdn.co/mp3-preview/4a339b2f20bc583d94061513a6a2327666415080?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAT22005765,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.606,0.9,0.0,-4.504,1.0,0.119,0.0101,0.0,0.075,0.233,133.963,4.0,,Atlantic Records,"C © 2020 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation, P ℗ 2020 Signature Entertainment, LLC under exclusive license to Atlantic Recording Corporation",8169 +8170,spotify:track:4faFAhOflLzhfJECveRwva,Lonely No More,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,spotify:album:07hC5JSKAodpBIVR6A772E,Something to Be,spotify:artist:3aBkeBhwadnWMWoVJ2CxJC,Rob Thomas,2005-04-05,https://i.scdn.co/image/ab67616d0000b273db3d7550e11f7a132fb81c9f,1,2,226640,https://p.scdn.co/mp3-preview/e756a40e7faa646d60fa3972811d5978aab78804?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT20500023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.551,0.896,9.0,-3.152,0.0,0.109,0.033,0.0,0.0899,0.858,171.79,4.0,,Melisma/Atlantic Records,"C © 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2005 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8170 +8171,spotify:track:0DfqzZnW2KhiyXjVQiFioT,California Love - Original Version (Explicit),"spotify:artist:1ZwdS5xdxEREPySFridCfh, spotify:artist:3GMoVpWJy4smKuxFuFTwXC, spotify:artist:6DPYiyq5kWVQS4RGwxzPC7","2Pac, Roger, Dr. Dre",spotify:album:4N35JBVRFMrHiOz76vy9vv,2Pac Greatest Hits (Explicit Version),spotify:artist:1ZwdS5xdxEREPySFridCfh,2Pac,1998-11-24,https://i.scdn.co/image/ab67616d0000b2730adfb1e8ceab6db436b543f5,2,6,284906,https://p.scdn.co/mp3-preview/d20079e7952f64534d9ceacd530b156b8cdfd8ea?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUG10702628,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,rap,west coast rap,funk,new jack swing,p funk,post-disco,quiet storm,g funk,gangster rap,hip hop,rap,west coast rap",0.769,0.832,7.0,-2.985,1.0,0.048,0.0291,1.46e-06,0.386,0.772,91.53,4.0,,Digital,"C (C) 1998 Death Row Records/Interscope Records, P (P) 1998 Death Row Records/Interscope Records",8171 +8172,spotify:track:5BZx0wikkFZF2BnaIo2qTy,Feel the Beat,spotify:artist:0LhHRmSd1EYM5QdNeNnCoQ,Darude,spotify:album:0Xks5v0dve8Gh2tRHIekjo,"Before the Storm, Special Edition",spotify:artist:0LhHRmSd1EYM5QdNeNnCoQ,Darude,2001-01-01,https://i.scdn.co/image/ab67616d0000b273f9ef39657ba18c612641ee6d,1,3,259200,https://p.scdn.co/mp3-preview/89d2869d0b278116ae29085ddbfadb8c80e7aae7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,FISGC0000001,spotify:user:bradnumber1,2022-01-09T22:02:13Z,"eurodance,finnish edm",0.569,0.913,8.0,-6.973,1.0,0.0638,0.00618,0.834,0.287,0.504,137.822,4.0,,16 Inch Records,"C (C) 2008 16 Inch Records, P (P) 2000 16 Inch Records",8172 +8173,spotify:track:37Q5anxoGWYdRsyeXkkNoI,Heaven Is A Place On Earth,spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,spotify:album:3fzHLg5RfRXzQlHlR4F7JG,Greatest Vol.1 - Belinda Carlisle,spotify:artist:7xkAwz0bQTGDSbkofyQt3U,Belinda Carlisle,1987,https://i.scdn.co/image/ab67616d0000b273e0f0aa947770fe74049dbba3,1,1,246520,https://p.scdn.co/mp3-preview/0a79f228240060a2a0d8bbe28465f6a3ade09604?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAAA8700010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock",0.64,0.852,1.0,-8.119,0.0,0.0345,0.0243,1.82e-06,0.0497,0.793,122.902,4.0,,Crimson,"C (C) 2013 Demon Music Group Ltd., P (P) 1987 Artist Management Services Ltd.",8173 +8174,spotify:track:6TaqooOXAEcijL6G1AWS2K,All My Friends (feat. Tinashe & Chance the Rapper),"spotify:artist:2FwJwEswyIUAljqgjNSHgP, spotify:artist:0NIIxcxNHmOoyBx03SfTCD, spotify:artist:1anyVhU62p31KFi8MEzkbf","Snakehips, Tinashe, Chance the Rapper",spotify:album:5cOhR878H8hC3UsxYq5Xyv,All My Friends (feat. Tinashe & Chance the Rapper),"spotify:artist:2FwJwEswyIUAljqgjNSHgP, spotify:artist:0NIIxcxNHmOoyBx03SfTCD, spotify:artist:1anyVhU62p31KFi8MEzkbf","Snakehips, Tinashe, Chance the Rapper",2015-10-21,https://i.scdn.co/image/ab67616d0000b273b7c1b8d64563e06b4b0c7919,1,1,229746,https://p.scdn.co/mp3-preview/4b5496cee8c5d450f959b5415b0baff33f1a9b85?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,GBARL1501370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,uk dance,vapor soul,alternative r&b,dance pop,metropopolis,pop,r&b,chicago rap,conscious hip hop,hip hop,pop rap,rap,trap",0.681,0.521,0.0,-5.849,1.0,0.141,0.12,8.41e-05,0.108,0.181,94.997,4.0,,Hoffman West/Columbia,P (P) 2015 Sony Music Entertainment UK Limited,8174 +8175,spotify:track:6mghCOaaSvrke0z1EUVUIf,"Hey, Soul Sister",spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:7tEPbuzTMNGSytEMdezXtS,"Save Me, San Francisco (Golden Gate Edition)",spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2009,https://i.scdn.co/image/ab67616d0000b2735d3e2c61526cb8e62a6a341d,1,2,216773,https://p.scdn.co/mp3-preview/518c823cf0f8b862bed0fa45e34cc63db5ea58e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10904113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.674,0.89,1.0,-4.446,0.0,0.0459,0.203,0.0,0.0819,0.737,97.02,4.0,,Columbia,"P (P) 2009, 2010 Sony Music Entertainment",8175 +8176,spotify:track:2QIRHAKEYk2Y4EmxWwUoPG,Ladies & Gentlemen,spotify:artist:0EdNPfEHC714LHuN0NPIyU,Short Stack,spotify:album:1Q5kXLIjDPlX6Qav7mVoOR,Stack Is The New Black,spotify:artist:0EdNPfEHC714LHuN0NPIyU,Short Stack,2008-01-01,https://i.scdn.co/image/ab67616d0000b273521f853ff4f2193dff4e075e,1,1,205720,https://p.scdn.co/mp3-preview/b4d0c8d4dee7cbb6000d5723b47688206ea22551?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70801373,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.576,0.97,1.0,-3.625,0.0,0.0968,0.0264,0.0,0.275,0.342,148.051,4.0,,Universal Music Australia Pty. Ltd.,"C © 2008 Sunday Morning Records Pty Ltd, P ℗ 2008 Sunday Morning Records Pty Ltd",8176 +8177,spotify:track:0YFHWBbEohQW4UOZq7ApR9,Orange Crush,spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,spotify:album:0N9vpee762pUGvduoRjTjQ,Green (25th Anniversary Deluxe Edition),spotify:artist:4KWTAlx2RvbpseOGMEmROg,R.E.M.,1988-11-07,https://i.scdn.co/image/ab67616d0000b27316276ffe12389336b3b8b0e8,1,7,231640,https://p.scdn.co/mp3-preview/4879771410b6914e4881cfa18c15527fcb25eac2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB11300942,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,athens indie,permanent wave,rock",0.568,0.701,9.0,-10.453,1.0,0.04,0.000613,0.00258,0.17,0.638,120.678,4.0,,Rhino/Warner Bros.,"C 1988 R.E.M. / Athens Ltd., P 2013 R.E.M. / Athens Ltd. Warner Bros Records Inc. Marketed By Rhino Entertainment, A Warner Music Group Company. All Rights Reserved.",8177 +8178,spotify:track:5N6hnOaGXHcHZxIiMXcsJm,Alley Oop,spotify:artist:2QJGwjXfe7IOoBFcrpzOTt,The Hollywood Argyles,spotify:album:0X33KbR1iwEWUWudnnAIjy,Alley Oop - The Very Best Of,spotify:artist:2QJGwjXfe7IOoBFcrpzOTt,The Hollywood Argyles,2011-03-01,https://i.scdn.co/image/ab67616d0000b2733cf66db0c0daf73a2e368c8e,1,1,161733,https://p.scdn.co/mp3-preview/401e12db60df5f07d6d22577c7ee3209c31478ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USA371249364,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.598,0.531,7.0,-5.907,1.0,0.0568,0.775,0.0,0.121,0.889,133.497,4.0,,Master Classics Records,C (C) 2011 Master Classics Records,8178 +8179,spotify:track:7CZiDzGVjUssMSOXrDNYHL,Ticket To Ride - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:0PT5m6hwPRrpBwIHVnvbFX,Help! (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1965-08-06,https://i.scdn.co/image/ab67616d0000b273e3e3b64cea45265469d4cafa,1,7,189680,https://p.scdn.co/mp3-preview/af79ad20b0d8cb64502da3493d12011a3f9f1504?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAYE0601471,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.519,0.85,9.0,-6.777,1.0,0.0677,0.0457,0.0,0.232,0.75,123.422,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",8179 +8180,spotify:track:3kwgqoBqTwoAH4nT29TYrq,Nobody's Love,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:2cDt5R89HP8ZCXhNAmZs27,Nobody's Love,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2020-07-24,https://i.scdn.co/image/ab67616d0000b273839deab240b73a3c76bf51eb,1,1,211253,https://p.scdn.co/mp3-preview/d4d15ab70468ea7afe1bb340b33611c9887fa852?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,USUM72013111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.486,0.567,1.0,-6.456,1.0,0.0379,0.31,0.0,0.0949,0.154,93.68,4.0,,222 Records/Interscope Records,"C © 2020 Interscope Records (222 Records), P ℗ 2020 Interscope Records (222 Records)",8180 +8181,spotify:track:5o63zxnLs82OTECmCLzu1m,Bow Wow (That's My Name) - Radio Edit,spotify:artist:7352aRY2mqSxBZwzUb6LmA,Bow Wow,spotify:album:3vjVTykIAH4Vl8G1jOgqH6,Gotcha! Vol. 2,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2001-09-21,https://i.scdn.co/image/ab67616d0000b2739d63ef640c5a9d4a1e583938,1,13,202733,https://p.scdn.co/mp3-preview/3b45a5ab2438dca234a171eb3efcae9d3123ee3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10015540,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,pop rap,r&b,rap,southern hip hop,trap,urban contemporary",0.921,0.621,2.0,-4.058,1.0,0.255,0.199,0.0,0.101,0.926,91.968,4.0,,Ariola,P 2001 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,8181 +8182,spotify:track:3oQBfDHP8C6TLV75Bc1ULr,Oh Carol,spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,spotify:album:4owYZafXDrppX9A4COxBAe,The Original Smokie Gold,spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,1975,https://i.scdn.co/image/ab67616d0000b273f13168d17bdec8443d6a4465,1,4,219293,https://p.scdn.co/mp3-preview/38bc33a71bae66f98130aeb2cf709e31bcd607ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,DEA817800069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.741,0.518,2.0,-12.334,1.0,0.0575,0.0392,0.0,0.0407,0.878,82.251,4.0,,Arista,P (P) 1975/1976/1977/1978 Chinnichap recordds Ltd Under Exclusive license to BMG Ariola München GmbH,8182 +8183,spotify:track:5vjigjfoXuJEttqLB3HTAg,Personality,spotify:artist:3iOE5ItEv5xr9fmKi7GNh2,Lloyd Price,spotify:album:5qYhWkc4dKbKuevLza5rlh,Lloyd Price Greatest Hits: The Original ABC-Paramount Recordings,spotify:artist:3iOE5ItEv5xr9fmKi7GNh2,Lloyd Price,1994-01-01,https://i.scdn.co/image/ab67616d0000b273c422d33814a900200b9d7ea7,1,6,157733,https://p.scdn.co/mp3-preview/167270f6daea2b468e5e77dfa18a6843165cee77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USMC16019930,spotify:user:bradnumber1,2021-09-16T21:51:29Z,"doo-wop,louisiana blues,memphis blues,new orleans blues,rhythm and blues,rock-and-roll,rockabilly",0.591,0.454,5.0,-8.936,1.0,0.0322,0.744,0.0,0.0989,0.865,128.909,4.0,,Geffen*,"C © 1994 UMG Recordings, Inc., P This Compilation ℗ 1994 UMG Recordings, Inc.",8183 +8184,spotify:track:0jIa8Bckzoy7bgURBZXxNB,The Sweet Escape,"spotify:artist:4yiQZ8tQPux8cPriYMWUFP, spotify:artist:0z4gvV4rjIZ9wHck67ucSV","Gwen Stefani, Akon",spotify:album:5I878Pc5RZzi5mRNyXv2Mp,The Sweet Escape (UK Only Version),spotify:artist:4yiQZ8tQPux8cPriYMWUFP,Gwen Stefani,2006-01-01,https://i.scdn.co/image/ab67616d0000b27370085aea85056dde8570c88d,1,2,246466,https://p.scdn.co/mp3-preview/37e0640a2cad4165d6b9ecb7773cb0c6ec9d3fe2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70618684,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop",0.756,0.77,1.0,-3.502,1.0,0.0343,0.191,0.0,0.178,0.73,119.961,4.0,,Universal Music Australia Pty. Ltd.,"C (C) 2006 Interscope Records, P (P) 2006 Interscope Records",8184 +8185,spotify:track:1fAHeeDKtYWVU25oHWG5KN,Run Baby Run,spotify:artist:1SyEBlvc4XJL7C41bDlt3R,Deadstar,spotify:album:4hXYUtljaHhnvkzUIkDDq6,Somewhere Over The Radio,spotify:artist:1SyEBlvc4XJL7C41bDlt3R,Deadstar,1999,https://i.scdn.co/image/ab67616d0000b2732e3e89964e1588984ed49085,1,1,210360,https://p.scdn.co/mp3-preview/1ab120ca76206f1bea0d7a39b848416d6db7ccb8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUMU09900096,spotify:user:bradnumber1,2022-11-20T23:08:17Z,australian alternative rock,0.536,0.665,0.0,-4.872,1.0,0.0314,0.00299,4.09e-06,0.168,0.383,121.748,4.0,,WM Australia,"C © 1999 Mushroom Records, P ℗ 1999 Mushroom Records",8185 +8186,spotify:track:02kDW379Yfd5PzW5A6vuGt,Lemonade,"spotify:artist:6MPCFvOQv5cIGfw3jODMF0, spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ, spotify:artist:4Gso3d4CscCijv0lmajZWs, spotify:artist:7rkW85dBwwrJtlHRDkJDAC","Internet Money, Gunna, Don Toliver, NAV",spotify:album:1pFaEu56zqpzSviJc3htZN,"Lemonade (feat. Gunna, Don Toliver & NAV)","spotify:artist:6MPCFvOQv5cIGfw3jODMF0, spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ, spotify:artist:4Gso3d4CscCijv0lmajZWs","Internet Money, Gunna, Don Toliver",2020-08-14,https://i.scdn.co/image/ab67616d0000b273d46a8fffbe6c8630784f04da,1,1,195428,https://p.scdn.co/mp3-preview/2c70ae554b0019f3780af30177c211e40aea0512?cid=9950ac751e34487dbbe027c4fd7f8e99,True,7,QZJ842000368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,trap,atl hip hop,melodic rap,rap,trap,rap,canadian hip hop,canadian trap,melodic rap,rap,trap",0.799,0.66,1.0,-6.153,0.0,0.079,0.256,0.0,0.111,0.471,140.04,4.0,,Internet Money Records/ TenThousand Projects,"C © 2020 Internet Money Records / TenThousand Projects, P ℗ 2020 Internet Money Records / TenThousand Projects",8186 +8187,spotify:track:5mqQ7eVYPALywSJkftTeHE,It's Your Life,spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,spotify:album:0HmRrRN3ySHkHv70ARCXZk,Bright Lights And Back Alleys,spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,1977,https://i.scdn.co/image/ab67616d0000b27316e3adff6d9f7f110b8d85ba,1,1,214960,https://p.scdn.co/mp3-preview/aeebf9396b05ab64122503e17b7e909251f4de48?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,DEA817700018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.596,0.382,7.0,-14.186,1.0,0.0501,0.115,0.00028,0.0378,0.86,91.106,4.0,,Ariola,P (P) 1990 SBME (GERMANY) GmbH,8187 +8188,spotify:track:6UkMcAA19lTdjs22jtB7o2,Big Yellow Taxi,spotify:artist:5hW4L92KnC6dX9t7tYM4Ve,Joni Mitchell,spotify:album:7JOdtLDLyXJIppDRB7kxr9,Ladies of the Canyon,spotify:artist:5hW4L92KnC6dX9t7tYM4Ve,Joni Mitchell,1970-03-01,https://i.scdn.co/image/ab67616d0000b273b80ea8399313aeffb10b0acb,1,10,134800,https://p.scdn.co/mp3-preview/3a64e270af1efbc6deaedd97f3dc57aad2c40e1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USRE19600222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian singer-songwriter,folk,folk rock,singer-songwriter",0.611,0.47,4.0,-9.135,1.0,0.0356,0.585,0.0,0.58,0.97,85.527,4.0,,Rhino,"C © 1970 Warner Records Inc., P ℗ 1970 Warner Records Inc.",8188 +8189,spotify:track:3qSWsl8lKzbKzHm5MFYKCY,"Mama Do (Uh Oh, Uh Oh)",spotify:artist:3EBRANWwnViQuBrImN61Z1,Pixie Lott,spotify:album:5sVKIf5Ki9fm4eKlMK73BK,Turn It Up,spotify:artist:3EBRANWwnViQuBrImN61Z1,Pixie Lott,2009-01-01,https://i.scdn.co/image/ab67616d0000b273120f01885263cd26f2c16ffa,1,1,196520,https://p.scdn.co/mp3-preview/44ba83af27e3b3d4d7c0f0332de9261ba8696fce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70819294,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop,talent show",0.703,0.875,3.0,-4.84,0.0,0.0811,0.129,0.0,0.319,0.617,120.034,4.0,,Universal Music Group,"C © 2009 Mercury Records Limited, P ℗ 2009 Mercury Records Limited",8189 +8190,spotify:track:4K26f4Vs89qRyyn4Q8KxNo,Living For Love,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:0ZSFNfYucinvKCiPnid7UH,Rebel Heart,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2015-03-06,https://i.scdn.co/image/ab67616d0000b273b12a809b9ddfe15ccf068171,1,1,218720,https://p.scdn.co/mp3-preview/ad233d275622282cc41d3a54a97b01643f1ec500?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11401960,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.671,0.785,1.0,-4.564,1.0,0.0797,0.043,0.000164,0.219,0.501,123.005,4.0,,Universal Music Group,"C © 2015 Boy Toy, Inc., Exclusively licensed to Live Nation Worldwide, Inc. Exclusively licensed to Interscope Records, P ℗ 2015 Boy Toy, Inc., Exclusively licensed to Live Nation Worldwide, Inc. Exclusively licensed to Interscope Records",8190 +8191,spotify:track:0uI4aw6ms90qFNawk9H9CO,Need You Tonight,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:5ikDHkayqR6ZTYkpaL2Udq,Kick 30,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,1987-10-19,https://i.scdn.co/image/ab67616d0000b2733584b98b7cad9e21e79e1719,1,4,181240,https://p.scdn.co/mp3-preview/57fa4dd2532a4ff16c48fb76b39ca9ca0201fdb9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAMX8700008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.793,0.61,0.0,-7.685,1.0,0.0832,0.0473,0.486,0.0877,0.781,108.698,4.0,,Petrol Records,"C © 2017 Petrol Records Pty Ltd, P This Compilation ℗ 2017 Petrol Records Pty Ltd",8191 +8192,spotify:track:1IuUe3A7EfJmvZH3EljtwR,Hocus Pocus - Original Single Version,spotify:artist:0ifzzRKdmtgaHy9cfnnyCR,Focus,spotify:album:60eDHgZpBc0zgn9962uKPb,Hocus Pocus,spotify:artist:0ifzzRKdmtgaHy9cfnnyCR,Focus,1971,https://i.scdn.co/image/ab67616d0000b273432a4cb5dcffc2f1c380c105,1,1,192261,https://p.scdn.co/mp3-preview/09175c7fe8c7222489e2d5e8ceff8a012574f606?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,NLC287100152,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,dutch prog,flute rock,nederpop,progressive rock,symphonic rock",0.266,0.815,9.0,-9.946,1.0,0.296,0.0514,0.916,0.242,0.432,187.106,4.0,,Red Bullet,"C 1971 Red Bullet, P 1971 Red Bullet",8192 +8193,spotify:track:1N67xd3y9s23vitoiP3Zv5,Dance The Night Away,spotify:artist:4Ud7lY9V8pOyydumajSW3O,The Mavericks,spotify:album:2JG2T3NBIs5HDWFX7CPysZ,Trampoline,spotify:artist:4Ud7lY9V8pOyydumajSW3O,The Mavericks,1998-01-01,https://i.scdn.co/image/ab67616d0000b2735913b47fc7c86ebaebf0912a,1,1,262640,https://p.scdn.co/mp3-preview/4c1880c7850bf8a3d7a0aa54c57f675f589290a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USMC19701159,spotify:user:bradnumber1,2021-11-11T04:16:31Z,neo-traditional country,0.651,0.754,4.0,-9.373,1.0,0.0293,0.00692,0.00195,0.161,0.936,140.782,4.0,,MCA Nashville,"C © 1998 MCA Records Nashville a division of MCA Records Inc., P ℗ 1998 UMG Recordings, Inc.",8193 +8194,spotify:track:2n6FX3Jcg4b4Leoz0GOqBF,Wherever You Will Go,spotify:artist:5aMmmNxw4vgpc5XC6hK0zp,The Calling,spotify:album:482njCey5m8quxX6ymvlIP,Camino Palmero,spotify:artist:5aMmmNxw4vgpc5XC6hK0zp,The Calling,2001,https://i.scdn.co/image/ab67616d0000b273cb85a33b27895613a537b809,1,3,208506,https://p.scdn.co/mp3-preview/201fb27a8e8a91802eddcef1f4d8e2d6ab342cec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USRC10001047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock",0.555,0.717,2.0,-5.114,1.0,0.0269,0.0414,0.0,0.116,0.374,112.03,4.0,,RCA Records Label,P (P) 2002 BMG Entertainment,8194 +8195,spotify:track:1i9KZctiFjJwuD2LFTThqN,Little Children,"spotify:artist:3qL4moFMePG5zA87tLcCOM, spotify:artist:3f121mss4A4LwR25ErGzP0","Billy J. Kramer, The Dakotas",spotify:album:0KCZx2uURPo1rcQmyx6qvo,EMI Legends Rock 'n' Roll Seris - The Definitive Collection,"spotify:artist:3qL4moFMePG5zA87tLcCOM, spotify:artist:3f121mss4A4LwR25ErGzP0","Billy J. Kramer, The Dakotas",1991-09-30,https://i.scdn.co/image/ab67616d0000b2739fccc527a64914511a246d6b,1,10,167506,https://p.scdn.co/mp3-preview/70977566dc9d6dcffb793a19d1a8635c34d8d7c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBAYE6400061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,merseybeat,merseybeat",0.576,0.528,10.0,-9.832,1.0,0.0325,0.731,3.64e-05,0.156,0.707,104.979,4.0,,Parlophone UK,"C © 1991 Parlophone Records Ltd, P ℗ 1991 Compilation (P) 1991 Parlophone Records Ltd. All rights reserved. Unauthorized reproduction is a violation of applicable laws.",8195 +8196,spotify:track:6Ht0wBgRgLQPjIQKks766b,Substitute,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:0NufsuTuf3U0BY0p6jFdxV,"Meaty, Beaty, Big And Bouncy",spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1971-10-30,https://i.scdn.co/image/ab67616d0000b27379707c30203f870776ff02d0,1,13,227266,https://p.scdn.co/mp3-preview/6e91e9409d854ed40d42a2e9b5545fcab3cdf03a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAKW6601001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.373,0.868,2.0,-9.763,1.0,0.0397,0.245,2.04e-06,0.0743,0.75,135.831,4.0,,Polydor Records,"C © 1990 Geffen Records, P This Compilation ℗ 1990 Geffen Records",8196 +8197,spotify:track:0LQhKGlQZrR6PRWLUFZfII,"A Little Bit Me, a Little Bit You",spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:338yWfNJWW2SXxVfIdczUD,The Best of The Monkees,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,2008-07-01,https://i.scdn.co/image/ab67616d0000b2730b74e9fcbe76d8245535a207,1,12,168053,https://p.scdn.co/mp3-preview/76c0a0ed7e8300f0199295334ab2548959549974?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USRH10125797,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.609,0.818,5.0,-4.62,1.0,0.0425,0.114,0.316,0.0999,0.922,78.955,4.0,,Rhino,"C © 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co., P ℗ 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co.",8197 +8198,spotify:track:1CRFWfZEfLCs7pYDlXFYMJ,Holdin On,spotify:artist:6nxWCVXbOlEVRexSbLsTer,Flume,spotify:album:0cQ4rRAcQ8q5jh1cCjOET1,Flume,spotify:artist:6nxWCVXbOlEVRexSbLsTer,Flume,2012-12-21,https://i.scdn.co/image/ab67616d0000b273470615f940afad6ba5d169cc,1,2,154414,https://p.scdn.co/mp3-preview/7bef0935ed1029e07ff7ca5ca32f00f6e7786c49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFF00500393,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,australian indie,downtempo,edm,indietronica",0.43,0.436,8.0,-4.816,1.0,0.119,0.17,0.0,0.128,0.217,90.053,4.0,,Future Classic,"C 2012 Future Classic, P 2012 Future Classic",8198 +8199,spotify:track:093UVG0vgKjxj4UDjLIulw,Set Adrift On Memory Bliss,spotify:artist:5DgjOwTN6o76J5Gf8MzEoL,P.M. Dawn,spotify:album:6eUVsZ7movjdgq0PB0hvSW,Let It Flow,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1999-04-23,https://i.scdn.co/image/ab67616d0000b273b9727e3627c864f3436e5eb1,1,10,211661,https://p.scdn.co/mp3-preview/a7fefb3f5ffce7b7b45851357e12292e96f02a03?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,FR8GV1838620,spotify:user:bradnumber1,2021-08-08T09:26:31Z,contemporary r&b,0.737,0.784,7.0,-7.902,1.0,0.0777,0.00682,0.2,0.537,0.587,99.773,4.0,,Grm Game,"C 1999 Grm Game, P 1999 Grm Game",8199 +8200,spotify:track:6QHIhlLTb02tvEPtZZtXXw,On A Plain,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,spotify:album:5pbjLidJuoty9QUOy6X682,MTV Unplugged In New York,spotify:artist:6olE6TJLqED3rqDCT0FyPh,Nirvana,1994-11-01,https://i.scdn.co/image/ab67616d0000b273f411d2833d932f4d84d616ef,1,8,224800,https://p.scdn.co/mp3-preview/4607cf7a14b0ee0484f35e94f88d4a442a6b18de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19972708,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,permanent wave,rock",0.708,0.793,1.0,-8.712,1.0,0.0406,0.447,0.0,0.423,0.637,117.951,4.0,,Universal Music Group,"C © 1994 Geffen Records Inc., P ℗ 1994 UMG Recordings, Inc.",8200 +8201,spotify:track:3h4udS0WeWbsur3yfjvnm4,Reet Petite,spotify:artist:4VnomLtKTm9Ahe1tZfmZju,Jackie Wilson,spotify:album:4u4SJFMnkubwHu8VmNQJ9w,He's So Fine,spotify:artist:4VnomLtKTm9Ahe1tZfmZju,Jackie Wilson,1958,https://i.scdn.co/image/ab67616d0000b2738cc2718c11345833920086b2,1,6,169240,https://p.scdn.co/mp3-preview/c8039852c1bf3576d1955f801a100786de75b3ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USBWC0110030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago soul,classic soul,quiet storm,rock-and-roll,soul",0.664,0.66,5.0,-6.526,1.0,0.13,0.447,0.0,0.298,0.873,84.345,4.0,,Brunswick Records,"C 1958 Brunswick Record Corp., P 1958 Brunswick Record Corp.",8201 +8202,spotify:track:1wcc2jURzIlgBq5GnYfGLk,aNYway,spotify:artist:0q8J3Yj810t5cpAYEJ7gxt,Duck Sauce,spotify:album:71Orn22uMw2T1DtunlBmia,Quack,spotify:artist:0q8J3Yj810t5cpAYEJ7gxt,Duck Sauce,2013-01-01,https://i.scdn.co/image/ab67616d0000b27397ac0f5fc412b3b19373fac4,1,6,302920,,False,0,GBSXS1300228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco house,0.781,0.847,0.0,-5.327,0.0,0.373,0.0288,5.78e-05,0.277,0.65,127.992,4.0,,etcetc,"C © 2013 Duck Sauce LLC, P ℗ 2013 Duck Sauce LLC, under exclusive license to etcetc Music Pty Ltd",8202 +8203,spotify:track:25NXvdd1Vvk2OBjjYDZxu5,All Of The Dreamers,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:2bJOYIC4QOQl1txYwxscCD,All Of The Dreamers,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2009-01-01,https://i.scdn.co/image/ab67616d0000b27313c40485fdf38bc91b992633,1,1,218813,https://p.scdn.co/mp3-preview/9f77dd6d474925bdefabc0544a3bf2b90d85830b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUUM70902836,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.511,0.984,0.0,-3.142,1.0,0.0648,2.3e-05,3.53e-05,0.211,0.489,135.971,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Universal Music Australia Pty Ltd., P ℗ 2009 Universal Music Australia Pty Ltd.",8203 +8204,spotify:track:12Lm52NdvlHFc3Z9XcQqs0,Don't It Make You Want To Go Home - Remastered 2002,spotify:artist:7s2L0cftC6UBVVxADuyfwS,Joe South,spotify:album:0qmZUfvicuZdo0QqW1jLp4,Classic Masters,spotify:artist:7s2L0cftC6UBVVxADuyfwS,Joe South,2002-01-01,https://i.scdn.co/image/ab67616d0000b2734c5be46f4546c900cfe8c4b5,1,5,196000,https://p.scdn.co/mp3-preview/f15b0474fac53a7fe5a76e0dd8247c1e145fae26?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USCA20101401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.438,0.613,0.0,-7.761,1.0,0.0321,0.328,0.00208,0.744,0.692,128.018,4.0,,Capitol Records,"C © 2002 Capitol Records Inc., P This Compilation ℗ 2002 Capitol Records Inc.",8204 +8205,spotify:track:4u6rcmlhDDgS0YAo8ZMI4a,Wild Wild Life - 2005 Remaster,"spotify:artist:2x9SpqnPi8rlE9pjHBwmSC, spotify:artist:1GkiKu2FJFSBrXSL8wKFzy","Talking Heads, Jerry Harrison",spotify:album:5PvkD4XryLL9oC4NFItYIM,True Stories,spotify:artist:2x9SpqnPi8rlE9pjHBwmSC,Talking Heads,1986-10-07,https://i.scdn.co/image/ab67616d0000b273851ebc64ba218563cbc1fa99,1,5,220680,https://p.scdn.co/mp3-preview/3119848a00017a87a5e0b345b5cc7d4b14f753e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GB01A0500096,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art punk,dance rock,funk rock,new wave,permanent wave,post-punk,rock,zolo,rock keyboard",0.659,0.862,9.0,-5.424,1.0,0.0302,0.0154,0.0,0.389,0.957,137.393,4.0,,Parlophone UK,"C © 2005 Talking Heads Tours Inc under exclusive licence to Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 2005 Parlophone Records Ltd, P ℗ 2005 The copyright in this sound recording is owned by Talking Heads Tours Inc under exclusive licence to Parlophone Records Ltd",8205 +8206,spotify:track:7ffwRz8lZyDOE4Vj58Lo72,I Need to Know,spotify:artist:4wLXwxDeWQ8mtUIRPxGiD6,Marc Anthony,spotify:album:2zG5uEJ1zY00uN6qXjPu5d,Marc Anthony,spotify:artist:4wLXwxDeWQ8mtUIRPxGiD6,Marc Anthony,1999-09-28,https://i.scdn.co/image/ab67616d0000b273427f8620c555ad3da3f50629,1,3,227706,https://p.scdn.co/mp3-preview/daba80900d2575fb3c74eea33b731d08f69c789b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USSM19905733,spotify:user:bradnumber1,2023-01-31T06:29:29Z,"latin pop,modern salsa,salsa,tropical",0.813,0.949,3.0,-2.563,0.0,0.0336,0.486,9.75e-06,0.112,0.792,115.061,4.0,,Columbia,P 1999 Sony Music Entertainment Inc.,8206 +8207,spotify:track:6RB9YvNyP0RZfCUcMtZELH,Freedom,spotify:artist:2RdwBSPQiwcmiDo9kixcl8,Pharrell Williams,spotify:album:3Aw8a13WJi24hkjRRtMp9n,Freedom,spotify:artist:2RdwBSPQiwcmiDo9kixcl8,Pharrell Williams,2015-07-02,https://i.scdn.co/image/ab67616d0000b273f3e795a11fd55388843b85c9,1,1,162466,https://p.scdn.co/mp3-preview/4afc22d0c4a0493980bdcdca079ddba60a41c45f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM11505220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.428,0.559,1.0,-6.374,0.0,0.067,0.395,3.56e-05,0.136,0.607,86.459,4.0,,Columbia,"P (P) 2015 Columbia Records, a Division of Sony Music Entertainment",8207 +8208,spotify:track:34tIBWjEV2F27FRz34HhHy,Ego (Is Not a Dirty Word) - 1994 Remaster,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,spotify:album:3n4x94lFsN6ugkr58gElaN,Ego Is Not A Dirty Word [remastered],spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,1975,https://i.scdn.co/image/ab67616d0000b273b4ebc45996acef775e552437,1,1,180826,https://p.scdn.co/mp3-preview/d30ca0912e6a581718482b2eaa61b591012a430a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUWA00900782,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.484,0.751,5.0,-6.825,0.0,0.0486,0.569,8.78e-06,0.552,0.888,150.968,4.0,,WM Australia,"C © 1975 Mushroom Records Pty Limited, P ℗ 1975 Mushroom Records Pty Limited",8208 +8209,spotify:track:6LnjelBSl5xYpdfhfFTJbX,Some Kind Of Wonderful,spotify:artist:0qEcf3SFlpRcb3lK3f2GZI,Grand Funk Railroad,spotify:album:4HmWOsD5ggw9It34pM7nUf,Greatest Hits: Grand Funk Railroad (Remastered),spotify:artist:0qEcf3SFlpRcb3lK3f2GZI,Grand Funk Railroad,2006-01-01,https://i.scdn.co/image/ab67616d0000b27331501fee852c5aaa5a293f82,1,4,203253,https://p.scdn.co/mp3-preview/0d935a2b1060c3cbd86416c01840614fa180dabc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USCA20200342,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.846,0.721,2.0,-5.248,1.0,0.0494,0.163,0.0,0.194,0.638,121.417,4.0,,Capitol Records,"C © 2006 Capitol Records, LLC, P This Compilation ℗ 2006 Capitol Records, LLC",8209 +8210,spotify:track:0HNAPf0cLMkVQfwPl74kF3,Ass Like That,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:4F1k3oxk5iTQKenjkBpDe4,Encore,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2004-11-12,https://i.scdn.co/image/ab67616d0000b273edc3b754981904bae77321f9,1,14,265480,https://p.scdn.co/mp3-preview/c12a75a9c8cbb29f459830cda1cf9937979786d6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10400804,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.646,0.796,2.0,-6.152,1.0,0.366,0.409,0.0,0.107,0.676,83.093,4.0,,Universal Music Group,"C © 2004 Aftermath Entertainment/Interscope Records, P ℗ 2004 Aftermath Entertainment/Interscope Records",8210 +8211,spotify:track:4DqXhYryASlQ2W6IAZF8Un,I Want Love,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:0UoYRs1WP7625dmeOsY3Zn,I Want Love,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2021-06-11,https://i.scdn.co/image/ab67616d0000b27393c68e6cdf751005289c2c15,1,1,197500,https://p.scdn.co/mp3-preview/7116328cf6d775528fb87a8b8a8bbd0c6d7f2a72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USUM72109160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.652,0.768,8.0,-3.566,0.0,0.0528,0.13,0.0,0.138,0.492,119.936,4.0,,Lava / Republic Records,"C © 2021 Republic Records a division of UMG Recordings Inc & Lava Music LLC, P ℗ 2021 Republic Records a division of UMG Recordings Inc & Lava Music LLC",8211 +8212,spotify:track:3Gf0o0j3mkOburyXQCUEYb,Mistake,spotify:artist:277EAyALDWGYg8VrJ25rni,Stephanie McIntosh,spotify:album:4mh9l16qUpvgQrj6ce5ZCN,Tightrope,spotify:artist:277EAyALDWGYg8VrJ25rni,Stephanie McIntosh,2006-01-01,https://i.scdn.co/image/ab67616d0000b273f69309315b4b4712da11ebff,1,2,200040,https://p.scdn.co/mp3-preview/9a00aa745772d3adefd6a28f121618d5fcfc95bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUUM70600117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop",0.573,0.877,9.0,-2.935,1.0,0.0401,0.00191,0.0,0.105,0.682,136.046,4.0,,Universal Music Australia Pty. Ltd.,"C © 2006 Universal Music Australia Pty Ltd., P ℗ 2006 Universal Music Australia Pty Ltd.",8212 +8213,spotify:track:5IKLwqBQG6KU6MP2zP80Nu,We Are Family - 1995 Remaster,spotify:artist:6gkWznnJkdkwRPVcmnrays,Sister Sledge,spotify:album:4GSidaoqyGNwaG5mNKmuLT,We Are Family (1995 Remaster),spotify:artist:6gkWznnJkdkwRPVcmnrays,Sister Sledge,1979-02-15,https://i.scdn.co/image/ab67616d0000b273f66d92378b233aa8253e71d2,1,5,216733,https://p.scdn.co/mp3-preview/c8e62c272be0fd81117f2059aaa6b5eaaa1e5b73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USAT20102166,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,funk,philly soul,quiet storm,soul",0.784,0.893,7.0,-5.153,0.0,0.0923,0.3,1.57e-05,0.272,0.819,118.738,4.0,,Rhino Atlantic,"C © 1995 Rhino Records Inc., P ℗ 1995 Atlantic Recording Corporation and Brookhill Records Corporation for the United States and WEA Int. for the world outside of the United States.",8213 +8214,spotify:track:5pP3RGiUtFVZlWotyJb9Ei,The Hampsterdance Song,spotify:artist:5eI4MKl2BlybuVrLJGhEMT,Hampton The Hampster,spotify:album:5AqElYq4JgyDxWTx88v2SO,Hampsterdance Album,spotify:artist:5eI4MKl2BlybuVrLJGhEMT,Hampton The Hampster,2000-10-24,https://i.scdn.co/image/ab67616d0000b273fb1c612fa10dc61ea06941f1,1,1,212866,https://p.scdn.co/mp3-preview/ab51333520a246d76089237eaf18d63809630f04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USKO10403384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.729,0.93,6.0,-7.96,0.0,0.0405,0.145,0.338,0.92,0.965,136.014,4.0,,Koch Records,"C 2000 KOCH RECORDS, P 2000 KOCH RECORDS",8214 +8215,spotify:track:1GHlAJCsyhnWBnv2nQ7y2i,Ain't No Other Man,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:6v8bG4qgPgS1YR6TRSBlAZ,Keeps Gettin' Better: A Decade Of Hits,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2008-11-07,https://i.scdn.co/image/ab67616d0000b27325956d8daeb0d6ec51958ad8,1,10,228626,https://p.scdn.co/mp3-preview/d4b3464c77435211115effa65f0b51e34a2f83f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10600321,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.856,0.716,7.0,-5.562,1.0,0.206,0.00336,0.00664,0.133,0.527,127.971,4.0,,RCA Records Label,"P (P) 2008 RCA/JIVE Label Group, a unit of Sony Music Entertainment",8215 +8216,spotify:track:1tOE1dIyIjsfLJWiQ4ZRJW,Red Red Wine,spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,spotify:album:5kxx0oDspXVyGCOjdDjSFi,Labour Of Love,spotify:artist:69MEO1AADKg1IZrq2XLzo5,UB40,1983-01-01,https://i.scdn.co/image/ab67616d0000b273dfeb2eb5f36d7879dec30874,1,6,320933,https://p.scdn.co/mp3-preview/4e3a3bea0b8b147045f57b1e0fdf32b649f96a9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBAAA8300041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,uk reggae",0.814,0.363,1.0,-15.675,1.0,0.0644,0.00614,0.000177,0.101,0.842,89.157,4.0,,Virgin Records,"C © 1983 DEP International, P ℗ 1983 Virgin Records Limited",8216 +8217,spotify:track:6SFEOsCeC2SfaXolMER4dU,Painless,spotify:artist:2DaDoR6WXStRctDQDWWQpI,Baby Animals,spotify:album:1qD1JGw8Q5WKBW4fsgHFYh,Baby Animals / Shaved & Dangerous,spotify:artist:2DaDoR6WXStRctDQDWWQpI,Baby Animals,2008-01-19,https://i.scdn.co/image/ab67616d0000b27397fc8034722824df1f51b23f,1,3,221493,https://p.scdn.co/mp3-preview/a536ebc257fbdeecd0651c93d42e5c9566bcfaee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00743420,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.629,0.817,1.0,-4.086,1.0,0.0303,0.0141,8.89e-05,0.0846,0.679,105.298,4.0,,Bloodlines,"C 2007 (P) 2007 Imago Recording Company. Under exclusive license to Liberation Music for Australia And New Zealand, P 2007 (P) 2007 Imago Recording Company. Under exclusive license to Liberation Music for Australia And New Zealand",8217 +8218,spotify:track:0ecA7bhTRuquuy7uSh0CXZ,Minority,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:6HUIbDhzmqcwxrxUfTuHdW,International Superhits!,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,2001-11-13,https://i.scdn.co/image/ab67616d0000b273f7bcced5cc8ee6e45f8f3330,1,18,168226,https://p.scdn.co/mp3-preview/b45f669ec1b0d4aabe606e132e1321e583103eca?cid=9950ac751e34487dbbe027c4fd7f8e99,True,33,USRE10000925,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.551,0.965,0.0,-2.772,1.0,0.0452,0.00576,0.0,0.171,0.708,137.841,4.0,,Reprise,"C © 2001 Reprise Records, P ℗ 2001 Reprise Records",8218 +8219,spotify:track:33I3oS8UkebR3KRvqxD9X0,Close To You,spotify:artist:3aTuTR5Nf6pVW3837q2ZL7,Maxi Priest,spotify:album:3aaKD8vFZnUI8EjHpiV9AQ,Bonafide,spotify:artist:3aTuTR5Nf6pVW3837q2ZL7,Maxi Priest,1990-01-01,https://i.scdn.co/image/ab67616d0000b2732018ad2ff9ade757b886ecef,1,2,325800,https://p.scdn.co/mp3-preview/60a1e9137b09dfb0b56a431e89f3dd59f7430b4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAAA9000061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lovers rock,reggae,reggae fusion",0.781,0.478,6.0,-15.427,1.0,0.0561,0.0849,3.93e-06,0.0877,0.962,95.992,4.0,,Ten Records,"C © 1990 Virgin Records Limited, P ℗ 1990 Virgin Records Limited",8219 +8220,spotify:track:3BnvVIFwQXXMGjkW4rWRJj,Don't Phunk With My Heart,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:6Gdt5ogiuJ9knp8Q5148ea,Monkey Business,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2005-01-01,https://i.scdn.co/image/ab67616d0000b27377234f29940be7edb73bff87,1,2,239773,https://p.scdn.co/mp3-preview/56505d7d5088d66ac7d9b8fe46f57989625aeccb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10500521,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.69,0.928,5.0,-2.76,0.0,0.061,0.00937,0.0,0.547,0.604,130.889,4.0,,Universal Music Group,"C © 2005 Interscope Records, P ℗ 2005 Interscope Records",8220 +8221,spotify:track:2jGfOCUOXBxrV63jlFVZMV,Nightshift,spotify:artist:6twIAGnYuIT1pncMAsXnEm,Commodores,spotify:album:1ZIP9kXi6QAj0SWzHGfocI,The Ultimate Collection: The Commodores,spotify:artist:6twIAGnYuIT1pncMAsXnEm,Commodores,1997-01-01,https://i.scdn.co/image/ab67616d0000b273d774fd1aececa8bd6425413c,1,15,304026,https://p.scdn.co/mp3-preview/31bc80decbdc10210c9156f4b73bf5498a168ba2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO18400528,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,disco,funk,mellow gold,motown,quiet storm,soft rock,soul",0.727,0.585,8.0,-8.996,1.0,0.0333,0.691,0.0278,0.0565,0.428,105.061,4.0,,Universal Music Group,"C © 1998 Motown Record Company L.P., P ℗ 1997 UMG Recordings, Inc.",8221 +8222,spotify:track:6kn9OzhdbC1hULUkyZreEL,Stay with Me Till Dawn,spotify:artist:7eo4Kn4hJuwXKCD6nOl2Kh,Judie Tzuke,spotify:album:4WNXyyN1BBCsNHjcSSxocF,Welcome to the Cruise,spotify:artist:7eo4Kn4hJuwXKCD6nOl2Kh,Judie Tzuke,1979-05-27,https://i.scdn.co/image/ab67616d0000b2732e6cb1b4242102df40081cbe,1,10,235266,https://p.scdn.co/mp3-preview/b8f9f243b0f7ec2aad24569a5aeae6985def5d58?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKPL1792328,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.32,0.2,2.0,-14.917,0.0,0.0326,0.834,0.00193,0.138,0.0896,129.936,4.0,,Big Moon Records,"C 1979 Big Moon Records, P 1979 Big Moon Records",8222 +8223,spotify:track:74DprDeArqMMsyBv8hU1Sj,Pop Singer,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:1BMJhOIR46Vom6APdTXMWj,Big Daddy,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1989,https://i.scdn.co/image/ab67616d0000b273c7c758a22a5ea24bd1c5e571,1,6,168000,https://p.scdn.co/mp3-preview/9e746c22bd910850e28adfc705ad2bd5259a4871?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USWWW0127253,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.724,0.841,7.0,-5.318,1.0,0.0271,0.038,4.93e-05,0.0258,0.924,112.518,4.0,,John Mellencamp 2023 (Island),"C © 2005 John Mellencamp, P ℗ 2005 John Mellencamp",8223 +8224,spotify:track:1TWnInxydK4dDawD50E5Qe,I Eat Cannibals - Pt. 1,spotify:artist:6J9jWZeMO2D14IJEO1gbmr,Toto Coelo,spotify:album:4pTgjduXH8XPGYMcqm7htt,I Eat Cannibals,spotify:artist:6J9jWZeMO2D14IJEO1gbmr,Toto Coelo,1987-01-01,https://i.scdn.co/image/ab67616d0000b273e188c7fde1ddbd6dd359a88c,1,1,215226,https://p.scdn.co/mp3-preview/ebfb6c94a6d4168a0562049d956e28d73fc21ea9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCKK8278101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.776,0.938,0.0,-9.204,0.0,0.0739,0.104,0.00784,0.302,0.874,148.54,4.0,,Twist & Shout,"C 2007 Twist & Shout, P 2007 Twist & Shout",8224 +8225,spotify:track:6AuVeIzZZxeIQTXhQARyT2,In My Mind (feat. Georgi Kay) - Axwell Radio Edit,"spotify:artist:5aBWZE8TOaaA9O50ENS3EM, spotify:artist:5FvlJcXnFIm72pgQtW3Dct, spotify:artist:32DJdHuhN1840L73Bqxhxj, spotify:artist:1xNmvlEiICkRlRGqlNFZ43","Ivan Gough, Feenixpawl, Georgi Kay, Axwell",spotify:album:7LotzoXVKKn6RC4veDjZSf,In My Mind (feat. Georgi Kay) [Axwell Radio Edit],"spotify:artist:5aBWZE8TOaaA9O50ENS3EM, spotify:artist:5FvlJcXnFIm72pgQtW3Dct","Ivan Gough, Feenixpawl",2012-04-02,https://i.scdn.co/image/ab67616d0000b27383979d6e92855559bdf7d900,1,1,185624,https://p.scdn.co/mp3-preview/6d6db053c66ba415247a016e0ffe76f77e8aafbb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNE31100277,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"progressive electro house,australian dance,pop edm,progressive electro house,sky room,australian dance,perth indie,dutch house,edm,electro house,pop dance,progressive electro house,progressive house",0.51,0.831,7.0,-4.514,0.0,0.0606,0.0435,3.14e-06,0.346,0.376,128.025,4.0,,WM Australia,"C 2011 Neon Records Pty Limited, P 2011 Neon Records Pty Limited",8225 +8226,spotify:track:15A3uqmUTxJ1KJGfAdiywb,Wanna Be Startin' Somethin' (2008 with Akon) (with Akon) - Thriller 25th Anniversary Remix,"spotify:artist:3fMbdgg4jU18AjLCKBhRSm, spotify:artist:0z4gvV4rjIZ9wHck67ucSV, spotify:artist:1SuG5iUNABfgum7OpWYvFi, spotify:artist:7AnQGuknGCDEvr1t4n6Ink","Michael Jackson, Akon, Mark ""Exit"" Goodchild, Aliaune ""Akon"" Thiam",spotify:album:1C2h7mLntPSeVYciMRTF4a,Thriller 25 Super Deluxe Edition,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2008-02-08,https://i.scdn.co/image/ab67616d0000b2734121faee8df82c526cbab2be,1,13,254120,https://p.scdn.co/mp3-preview/3f215be3cd8dad20ea9cd0623e2d28cbf657aa8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USSM10705929,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul,dance pop",0.821,0.952,5.0,-4.778,1.0,0.0723,0.117,0.000263,0.106,0.36,121.941,4.0,,Epic/Legacy,"P (P) 1982, 2001, 2008 MJJ Productions Inc.",8226 +8227,spotify:track:2bY66Hf5NbHJ8Ai8eNmJHG,My Little Corner of the World,spotify:artist:5hAhrnb0Ch4ODwWu4tsbpi,Yo La Tengo,spotify:album:3V18DIKvRuwdxc2LE4wuac,I Can Hear The Heart Beating As One,spotify:artist:5hAhrnb0Ch4ODwWu4tsbpi,Yo La Tengo,1997-04-22,https://i.scdn.co/image/ab67616d0000b2736584177113cfae22014d3d90,1,16,145573,https://p.scdn.co/mp3-preview/7e6faec298f3ffe8d4935ba85a4ab091c3c059f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USMTD9722216,spotify:user:bradnumber1,2023-03-25T02:39:18Z,"alternative rock,art pop,dream pop,indie rock,indietronica,lo-fi,new jersey indie,noise pop,permanent wave,shoegaze",0.567,0.333,3.0,-14.596,1.0,0.0289,0.86,0.929,0.0972,0.625,130.459,4.0,,Matador,"C 1997 Matador Records, P 1997 Matador Records",8227 +8228,spotify:track:4PmcCpz4PVgjf83iKSoQzy,The Band Played the Boogie,spotify:artist:4Oty2fHJ2Rxddh9trZEOJh,C.C.S.,spotify:album:3q6TwOFWVHlgUngR7zJnQW,Whole Lotta Love,spotify:artist:4Oty2fHJ2Rxddh9trZEOJh,C.C.S.,1991,https://i.scdn.co/image/ab67616d0000b273ed24d9585f2383827e17f8ef,1,15,217133,https://p.scdn.co/mp3-preview/f40c3f4ed02ee0dd38f031dae01d896c24f590ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,GBAYE7300091,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.613,0.86,6.0,-11.27,1.0,0.0412,0.144,0.313,0.112,0.698,127.489,4.0,,Parlophone UK,"C © 1991 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1991 Parlophone Records Ltd, a Warner Music Group Company",8228 +8229,spotify:track:0ySwEFQoOhVaGBky9iCdFJ,Walk Alone (feat. Tom Walker),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:7z2avKuuiMAT4XZJFv8Rvh","Rudimental, Tom Walker",spotify:album:6gvXunZzwqIn0N8pu7G5xx,Walk Alone (feat. Tom Walker),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:7z2avKuuiMAT4XZJFv8Rvh","Rudimental, Tom Walker",2018-10-26,https://i.scdn.co/image/ab67616d0000b273f8b766f98947bee92889b4e5,1,1,205408,https://p.scdn.co/mp3-preview/ea704d224105e316743c177e20aab156b8981de6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAHS1800370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,indie anthem-folk,uk pop",0.576,0.719,11.0,-5.163,1.0,0.0397,0.156,0.0,0.305,0.545,94.921,4.0,,Atlantic Records UK,"C © 2018 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company, P ℗ 2018 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company",8229 +8230,spotify:track:7KPr0YxECy4Q1k2F17Sa0Q,Memories (feat. Kid Cudi),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:0fA0VVWsXO9YnASrzqfmYu","David Guetta, Kid Cudi",spotify:album:2h7IRrDatzXKOlDdmTvKfi,Memories (feat. Kid Cudi),spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2010-02-12,https://i.scdn.co/image/ab67616d0000b273652d7edf3b2df82853f0339b,1,1,210840,https://p.scdn.co/mp3-preview/51479ac6253d105068822eefc352f2f853e1a401?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,FRZID0900480,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,hip hop,ohio hip hop,pop rap,rap",0.546,0.898,8.0,-3.938,1.0,0.232,0.00158,6.43e-06,0.229,0.466,130.002,4.0,,Parlophone (France),"C © 2010 Gum Prod licence exclusive Parlophone Music France, P ℗ 2010 Gum Prod licence exclusive Parlophone Music France",8230 +8231,spotify:track:0YImOCkIJ2PWhCXaURCZnY,I Know What You Want (feat. Flipmode Squad),"spotify:artist:1YfEcTuGvBQ8xSD1f53UnK, spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:7JXCJDLGh1k9cg6JbYCpYl","Busta Rhymes, Mariah Carey, Flipmode Squad",spotify:album:3cBk22r1tb6omRQ4jr6SE8,It Ain't Safe No More. . .,spotify:artist:1YfEcTuGvBQ8xSD1f53UnK,Busta Rhymes,2002-11-26,https://i.scdn.co/image/ab67616d0000b273ac8e6d7dae57f0c1c87e230c,1,12,324306,https://p.scdn.co/mp3-preview/f9c37797c6aaf348026d20b455a6c773a0b1d0bc?cid=9950ac751e34487dbbe027c4fd7f8e99,True,69,USJAY0200450,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hardcore hip hop,hip hop,pop rap,rap,dance pop,pop,urban contemporary,east coast hip hop",0.648,0.759,6.0,-4.315,1.0,0.306,0.0142,0.0,0.648,0.518,85.996,4.0,,J Records,P (P) 2002 J Records LLC,8231 +8232,spotify:track:4NTWZqvfQTlOMitlVn6tew,The Show Goes On,spotify:artist:01QTIT5P1pFP3QnnFSdsJf,Lupe Fiasco,spotify:album:1j0apvEvaWbTmlZpKsfr2D,Lasers,spotify:artist:01QTIT5P1pFP3QnnFSdsJf,Lupe Fiasco,2011-03-04,https://i.scdn.co/image/ab67616d0000b27320cac893b7a494f729128dac,1,6,239613,https://p.scdn.co/mp3-preview/82ecf0570b5ba506be317be1cb78cf7717348abd?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,USAT21002369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,conscious hip hop,hip hop,political hip hop,pop rap,rap,southern hip hop",0.591,0.889,7.0,-3.839,1.0,0.115,0.0189,0.0,0.155,0.65,143.067,4.0,,1st & 15th/Atlantic,"C © 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8232 +8233,spotify:track:1j3H54xdahpAkNI0q6S89q,With You,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,spotify:album:5t7BjMUC2HXa5cWDOWmnVg,Exclusive,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2007-11-01,https://i.scdn.co/image/ab67616d0000b273e5998eca652c3d485c3980e8,1,4,252160,https://p.scdn.co/mp3-preview/33a789d0579cdf367209efc99cef1306c3166371?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI10700711,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap",0.659,0.696,3.0,-4.291,1.0,0.071,0.143,0.0,0.13,0.665,86.001,4.0,,Jive,"P (P) 2007 RCA/JIVE Label Group, a unit of Sony Music Entertainment",8233 +8234,spotify:track:2UieC7GlIwUsz26jY8in0Q,Come to This,spotify:artist:2WxjxdeF7GGdcCK276qViY,Natalie Taylor,spotify:album:0rIboYv2HwSCLcTqNSHjJk,Come to This,spotify:artist:2WxjxdeF7GGdcCK276qViY,Natalie Taylor,2014-09-01,https://i.scdn.co/image/ab67616d0000b273383e451d4f5162d1555b5017,1,1,217968,https://p.scdn.co/mp3-preview/af3dd8c5f8b42489342cac2322102ed71ee80508?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,TCABZ1455606,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.31,0.315,0.0,-7.207,1.0,0.03,0.912,0.000197,0.0719,0.131,127.851,4.0,,Natalie Taylor,"C 2014 Natalie Taylor, P 2014 Natalie Taylor",8234 +8235,spotify:track:7IldPp4fUmE473PYN0jCPg,Love Takes Time,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:6kRdK7cPgLqNfSoI7AMlyj,#1 to Infinity,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,2015-05-15,https://i.scdn.co/image/ab67616d0000b2739ad666bef28b02eff5476ddd,1,2,228266,https://p.scdn.co/mp3-preview/6fe70c10406c464e1315070c147d34c59d9cfd2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USSM19000422,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.598,0.481,8.0,-7.132,0.0,0.0275,0.724,0.0,0.085,0.255,126.209,4.0,,Columbia/Legacy,"P (P) 1990, 1991, 1992, 1993, 1995, 1997, 1999 Columbia Records, a division of Sony Music Entertainment, 2005, 2008 The Island Def Jam Music Group and Mariah Carey, 2015 Epic Records, a division of Sony Music Entertainment",8235 +8236,spotify:track:75wP08AtMfGfjk0nPdvVw3,Runnin' Down A Dream,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:7ait6chB3O3C1fMGUDJhtu,Anthology: Through The Years,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,2000-01-01,https://i.scdn.co/image/ab67616d0000b2736cfd76ded516a7f12768a4b2,2,11,264333,https://p.scdn.co/mp3-preview/77a14a7fe6a62c86fece814d00a5fd55d2b34aa2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC18925680,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.467,0.955,9.0,-6.043,1.0,0.0462,0.00072,0.426,0.494,0.68,169.776,4.0,,Interscope,"C © 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc.",8236 +8237,spotify:track:7qCIP5KHYy9HuXbEEWzmC7,Pure Massacre,spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,spotify:album:4kp8sfeCDUMm4JKRdrD3aC,Frogstomp (Deluxe Edition) [Remastered],spotify:artist:4iudEcmuPlYNdbP3e1bdn1,Silverchair,1995-03-27,https://i.scdn.co/image/ab67616d0000b27372c3447a562fc7be1c8e1255,1,4,298640,https://p.scdn.co/mp3-preview/e7dbfdf01ce9dfb8521965f4df7df1d931b3fd8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUBM01500031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,australian alternative rock,australian psych,australian rock,grunge,nu metal,post-grunge",0.226,0.823,2.0,-5.425,0.0,0.0421,0.000132,6.41e-05,0.0891,0.406,183.809,4.0,,Sony Music Entertainment,P (P) 2015 Sony Music Entertainment Australia Pty Ltd.,8237 +8238,spotify:track:41DTJjf2ZT7dTuZOKBNKbb,Please Don't Go,spotify:artist:188XxH8QLu4w8GW7cxSJe9,K.W.S.,spotify:album:2iExuSxQaFAmuyRVrnLyAy,Please Don't Go,spotify:artist:188XxH8QLu4w8GW7cxSJe9,K.W.S.,2015-03-13,https://i.scdn.co/image/ab67616d0000b273be5f2de7e184d20fc8e6844c,1,1,373600,https://p.scdn.co/mp3-preview/97e1b0e63dcf603580746dfa0090caecc21a4b2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,DEA319803456,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.725,0.954,8.0,-7.234,1.0,0.0375,0.0437,0.0857,0.132,0.594,120.248,4.0,,ZYX Music,P 2015 ZYX Music GmbH & Co. KG,8238 +8239,spotify:track:1eyrmeiDpdTkOmA839nPVQ,Shed a Light,"spotify:artist:3t5xRXzsuZmMDkQzgOX35S, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:7DMveApC7UnC2NPfPvlHSU","Robin Schulz, David Guetta, Cheat Codes",spotify:album:4iu0toRdSjyU0qIdKTWMoY,Uncovered,spotify:artist:3t5xRXzsuZmMDkQzgOX35S,Robin Schulz,2017-09-29,https://i.scdn.co/image/ab67616d0000b273c874b3eb6242b8d632ac2305,1,3,191379,https://p.scdn.co/mp3-preview/f4c870e32367655fc8fcc2f6c428778115935fe1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,DEA621602181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep euro house,deep house,edm,german dance,pop dance,tropical house,big room,dance pop,edm,pop,pop dance,edm,pop,pop dance",0.483,0.787,8.0,-5.244,1.0,0.102,0.112,0.0,0.257,0.58,122.058,4.0,,WM Germany,"C © 2017 TONSPIEL / Warner Music Group Germany Holding GmbH / A Warner Music Group Company, P ℗ 2017 TONSPIEL / Warner Music Group Germany Holding GmbH / A Warner Music Group Company",8239 +8240,spotify:track:7fHXacE8GZEvBTCWxwQUyL,Talk That Talk - Album Version (Edited),"spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:3nFkdlSjzX9mRTtwJOzDYB","Rihanna, JAY-Z",spotify:album:2g1EakEaW7fPTZC6vBmBCn,Talk That Talk,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2011-11-18,https://i.scdn.co/image/ab67616d0000b273bef074de9ca825bddaeb9f46,1,4,209600,https://p.scdn.co/mp3-preview/2b77a131e989b065a66afd09ff96bda56c2b880a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USUM71118087,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary,east coast hip hop,gangster rap,hip hop,pop rap,rap",0.642,0.688,2.0,-4.094,1.0,0.0547,0.0343,1.36e-05,0.211,0.367,168.056,4.0,,Def Jam Recordings,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",8240 +8241,spotify:track:02Y0CtzmhTLjTOg0cWvAhq,No Milk Today - Mono Version,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,spotify:album:1GocNvETatEei10ng7bpJ9,"A's, B's & EP's",spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,2004-03-01,https://i.scdn.co/image/ab67616d0000b27322cf9dd2fc2a082b182ce95f,1,11,174333,https://p.scdn.co/mp3-preview/87bfa5fd3a1e7e74d0b0fa658dc3ba45b34984a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAYE6600522,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock,rock-and-roll,singer-songwriter",0.659,0.663,7.0,-6.353,1.0,0.0292,0.31,1.7e-06,0.0745,0.961,133.849,4.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",8241 +8242,spotify:track:4KoecuyOpZaNFZ0UqVsllc,Follow Me,spotify:artist:2DnqqkzzDKm3vAoyHtn8So,Uncle Kracker,spotify:album:0Fc7RtFLwtDz5pD622l7kQ,Double Wide,spotify:artist:2DnqqkzzDKm3vAoyHtn8So,Uncle Kracker,2000-06-13,https://i.scdn.co/image/ab67616d0000b2739bb9d6d8e7b6c83dc435e51c,1,4,218439,https://p.scdn.co/mp3-preview/23345d0451ddb92f420c1b83f0755ca130a7c465?cid=9950ac751e34487dbbe027c4fd7f8e99,True,70,USAT20001583,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,pop rock,post-grunge",0.817,0.585,5.0,-4.688,1.0,0.0301,0.439,0.0,0.147,0.916,105.014,4.0,,Lava/Atlantic,"C © 2000 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2000 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8242 +8243,spotify:track:2w4Hv2AATgAjQVhZJic1pf,I Want To Be Straight,spotify:artist:7r993rArgKraCkh8w4Wszl,Ian Dury & The Blockheads,spotify:album:52hZgYl4JR9iY29gwYkXP6,Sex&Drugs&Rock&Roll - The Essential Collection,spotify:artist:7r993rArgKraCkh8w4Wszl,Ian Dury & The Blockheads,2010-01-01,https://i.scdn.co/image/ab67616d0000b273cd891b3a44987d24af6caf5d,1,17,199226,https://p.scdn.co/mp3-preview/dec97bce7e0c03746d19be20db3d146175f51a46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDEM1322117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pub rock,0.81,0.851,9.0,-8.147,1.0,0.263,0.312,0.0,0.0808,0.845,117.707,4.0,,Ministry Of Sound,"C © 2010 Demon Music Group, P This Compilation ℗ 2010 Demon Music Group",8243 +8244,spotify:track:5ov2ntVXtqJ70jLFzOnpRv,Sail The Wildest Stretch,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:05mnJWSKkmk1y3Sv92uQIS,Golden Rule,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2009-11-13,https://i.scdn.co/image/ab67616d0000b27372d303d2481842499d152df4,1,5,248520,https://p.scdn.co/mp3-preview/189ac74d4390d2e853696cc1706bf269140b89f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUUM70902940,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.432,0.631,10.0,-6.79,1.0,0.0311,0.00392,0.00271,0.301,0.451,139.757,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Universal Music Australia Pty Ltd., P ℗ 2009 Universal Music Australia Pty Ltd.",8244 +8245,spotify:track:6hRoSJ3zFVLS20eMlm5UxI,Snakeskin,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,spotify:album:57kpLskpXv5xKy3o316RqX,Breed Obsession,spotify:artist:384DhgGNBZ91pyVJF61u18,Gyroscope,2008,https://i.scdn.co/image/ab67616d0000b273e80bba32b5fb4fc98c5ad232,1,1,249826,https://p.scdn.co/mp3-preview/55d4f4ec4a08c2d3c49397201a597aee7934770a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUWA00701230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.377,0.919,9.0,-6.034,0.0,0.0708,0.000762,0.000672,0.0872,0.168,156.026,4.0,,WM Australia,"C © 2008 Mushroom Records Pty Limited, P ℗ 2007 Mushroom Records Pty Limited",8245 +8246,spotify:track:79NlESqzFSW0hdBWgls4FX,Praying,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:4pfzhxwwQy4B8lySxjwKdt,Praying,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2017-07-06,https://i.scdn.co/image/ab67616d0000b2734313d7405dc66050a41c85ec,1,1,230269,https://p.scdn.co/mp3-preview/a07409c290a938a1be85901d4579d0a3095b51c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11701134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.565,0.381,10.0,-7.204,1.0,0.0302,0.48,0.0,0.109,0.325,73.483,4.0,,Kemosabe Records/RCA Records,P (P) 2017 Kemosabe Records,8246 +8247,spotify:track:6rqkwoZu5oX5hugeyiJCM8,Follow You Down,spotify:artist:6kXp61QMZFPcKMcRPqoiVj,Gin Blossoms,spotify:album:3PsTJAxjU734jZSuiLHUtE,Congratulations I'm Sorry,spotify:artist:6kXp61QMZFPcKMcRPqoiVj,Gin Blossoms,1996-01-01,https://i.scdn.co/image/ab67616d0000b2733a278b0c534011c54283cd3b,1,3,270066,https://p.scdn.co/mp3-preview/ea0e43e1bfbe704c4d6b8e01e6ae488884d84376?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAM19601246,spotify:user:bradnumber1,2023-03-11T09:06:29Z,"permanent wave,pop rock,post-grunge,tempe indie",0.461,0.924,4.0,-7.047,0.0,0.0449,0.0123,0.0,0.0342,0.68,155.829,4.0,,A&M,"C © 1996 A&M Records, P ℗ 1996 A&M Records",8247 +8248,spotify:track:4FTOpNYcGxnQdGNWSxIcio,Soldier (feat. T.I. & Lil' Wayne),"spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i, spotify:artist:4OBJLual30L7gRl5UkeRcT, spotify:artist:55Aa2cqylxrFIXC767Z865","Destiny's Child, T.I., Lil Wayne",spotify:album:0b6ivSFfDs38MG7aLn9rvO,Destiny Fulfilled,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,2004-11-16,https://i.scdn.co/image/ab67616d0000b2735a4df8a804866955ab8c4def,1,2,325573,https://p.scdn.co/mp3-preview/da7d0a9be1ce719847e47582281d43816e90f6cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM10413197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary,atl hip hop,dirty south rap,gangster rap,hip hop,pop rap,rap,southern hip hop,trap,hip hop,new orleans rap,pop rap,rap,trap",0.878,0.417,7.0,-6.799,1.0,0.361,0.0444,0.0,0.0833,0.904,77.49,4.0,,Sony Urban Music/Columbia,P (P) 2004 SONY BMG MUSIC ENTERTAINMENT,8248 +8249,spotify:track:1gsj1iqjsLqV8UvVeO99wm,I Gotcha,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:1yYliv1UwU2buW9tDjprJM,Soul Deep,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1991,https://i.scdn.co/image/ab67616d0000b2733d7307a68b73fb121005f912,1,1,208666,https://p.scdn.co/mp3-preview/158d3080724f44395270a109b4e7660d48ddc285?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00402970,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.669,0.924,8.0,-9.345,0.0,0.0412,0.194,0.0,0.345,0.53,93.9,3.0,,Bloodlines,"C 1991 Bloodlines, P 1991 Bloodlines",8249 +8250,spotify:track:4alHo6RGd0D3OUbTPExTHN,Just What I Needed,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:4tJPWT4r4FSKwy784Qs1Fq,The Cars,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,1978-06-06,https://i.scdn.co/image/ab67616d0000b273f725bc7907dcf15aa2c6e7b7,1,3,225626,https://p.scdn.co/mp3-preview/2bb7589a2ef19bc8cb2d198048f729ea7240b813?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USEE17500009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.62,0.579,4.0,-9.307,1.0,0.0473,0.0152,6.4e-05,0.0858,0.691,127.215,4.0,,Elektra Records,"C © 1978 Elektra Records for the United States and WEA International for the world outside of the United States., P ℗ 1978 Elektra Entertainment, a division of Warner Communications, Inc. for the United States and WEA International Inc. for the world outside of the United States.",8250 +8251,spotify:track:5S9Zs5g9lTWnLIboN1pdlU,Fingers Crossed,spotify:artist:79AyR6ATpj2LTPxfb6FX50,Lauren Spencer Smith,spotify:album:1UPlwdM0JYNwlDcKbeXrKZ,Fingers Crossed,spotify:artist:79AyR6ATpj2LTPxfb6FX50,Lauren Spencer Smith,2022-01-05,https://i.scdn.co/image/ab67616d0000b2737904dbff5b1dac889cdff376,1,1,175344,https://p.scdn.co/mp3-preview/773c9b7d5d7c6951eacee4850e98b80e113dcdda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCAFY2118876,spotify:user:bradnumber1,2022-05-05T11:01:35Z,"alt z,gen z singer-songwriter,singer-songwriter pop",0.603,0.473,5.0,-7.23,1.0,0.0511,0.616,0.0,0.31,0.446,109.494,4.0,,Lauren Spencer-Smith,"C 2022 Lauren Spencer-Smith, P 2022 Lauren Spencer-Smith",8251 +8252,spotify:track:0I3q5fE6wg7LIfHGngUTnV,Ms. Jackson,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,spotify:album:2tm3Ht61kqqRZtIYsBjxEj,Stankonia,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,2000-10-31,https://i.scdn.co/image/ab67616d0000b2732350e31bc346a6c20e9de166,1,5,270506,https://p.scdn.co/mp3-preview/06f8cc47c72dae9e9a66081b4dc912e9d9b430a9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,81,USLF20000357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,hip hop,old school atlanta hip hop,rap,southern hip hop",0.843,0.806,4.0,-5.946,0.0,0.269,0.143,0.0,0.0771,0.613,94.948,4.0,,Arista/LaFace Records,P (P) 2000 Arista Records LLC,8252 +8253,spotify:track:5c1QJAiC3773EwiZLwHf5x,Again,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,spotify:album:7aiQ0WWBBC0HzeI0PgGYJs,Again,spotify:artist:5gznATMVO85ZcLTkE9ULU7,Lenny Kravitz,2000-01-01,https://i.scdn.co/image/ab67616d0000b27381bb674330f0276e88bd0722,1,1,231666,https://p.scdn.co/mp3-preview/a1b3ca43209c578c27cd05bee60399d77a39093b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USVI20000423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,rock",0.55,0.804,2.0,-5.218,1.0,0.0271,0.0148,4.33e-05,0.105,0.789,79.166,4.0,,Virgin,"C © 2000 Virgin Records America, Inc., P ℗ 2000 Virgin Records America, Inc.",8253 +8254,spotify:track:2TKjbUc3zvWKFDDcMkDabH,New Moon Rising,spotify:artist:3yEnArbNHyTCwMRvD9SBy4,Wolfmother,spotify:album:7AEfdV7yuAhLs91UCEbk42,Cosmic Egg (Deluxe),spotify:artist:3yEnArbNHyTCwMRvD9SBy4,Wolfmother,2009-01-01,https://i.scdn.co/image/ab67616d0000b2731ce1c9b8da7530a19df18d05,1,2,225573,https://p.scdn.co/mp3-preview/cab7d52b81bbe2ef09b57b5559e2e05b0e456ecf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70902007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,australian psych,garage rock,modern blues rock,modern rock,rock",0.569,0.916,11.0,-3.318,0.0,0.0504,5.88e-05,0.00944,0.151,0.202,135.985,4.0,,Universal Music Taiwan,"C © 2009 Modular Recordings, P ℗ 2009 Modular Recordings",8254 +8255,spotify:track:4vkVvmjIiQibQ6zJnC1Q9z,Sucker for You,spotify:artist:2JLqTvFXmC87BksiCsBezV,Matt Terry,spotify:album:3D9FEUSPR1zGcE8AI3y2TM,Trouble,spotify:artist:2JLqTvFXmC87BksiCsBezV,Matt Terry,2017-11-24,https://i.scdn.co/image/ab67616d0000b273d6f1a8782b4786ce7cf867fe,1,1,203813,https://p.scdn.co/mp3-preview/6327f27b7c2b2d613def8a4a9fbce44cd4f0d309?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBARL1701990,spotify:user:bradnumber1,2021-08-08T09:26:31Z,talent show,0.874,0.649,0.0,-4.385,1.0,0.0833,0.218,0.0,0.337,0.712,95.004,4.0,,RCA Records Label,"P (P) 2017 Simco Limited except track 14 2017 Sony Music International, a division of Sony Music Entertainment & Track 15 2016 Simco Limited",8255 +8256,spotify:track:0OKXjd9ZpZioaHyowpQ7as,Talk It Over,spotify:artist:4SA20ppwlluQj8vOWyUc0F,Grayson Hugh,spotify:album:1Rpro648ibdo1RJyI8xi2C,Blind To Reason,spotify:artist:4SA20ppwlluQj8vOWyUc0F,Grayson Hugh,1988-01-01,https://i.scdn.co/image/ab67616d0000b273a59e20a77298ef1bf69d2e18,1,3,258399,https://p.scdn.co/mp3-preview/8b24e5b2683e19df54c9a99d4adf268cea6cf76a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USGCV1034789,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.835,0.381,10.0,-13.471,1.0,0.0307,0.695,3.31e-06,0.0648,0.78,95.082,4.0,,Grayson Hugh,"C 1988 Grayson Hugh, P 1988 Grayson Hugh",8256 +8257,spotify:track:30Co9eN7JHPf1i2wEyVSMJ,Nothing Like Us,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:4yz9rO7Q1UC2rK5eLOxmS7,Believe Acoustic,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2013-01-01,https://i.scdn.co/image/ab67616d0000b273892e9f9e3ad986310334a3d7,1,11,199800,https://p.scdn.co/mp3-preview/8bc4aef868c75c0df2f46069efea3f5f09a341bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USUM71300154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.546,0.155,0.0,-14.378,1.0,0.0428,0.987,6.02e-05,0.18,0.512,72.331,4.0,,RBMG/Def Jam,"C © 2013 The Island Def Jam Music Group, P ℗ 2013 The Island Def Jam Music Group",8257 +8258,spotify:track:3YrdBFshJAKumZ4SKNXbPf,Curiosity Killed The Cat - 2002 Digital Remaster,spotify:artist:6clbbhnIqpHnqxwtOWcilg,Little River Band,spotify:album:1iZgFhl4ik5FfPxaRiv3RN,The Definitive Collection,spotify:artist:6clbbhnIqpHnqxwtOWcilg,Little River Band,2002-01-01,https://i.scdn.co/image/ab67616d0000b2739fe8247af57cd127ab73d89f,1,2,221200,https://p.scdn.co/mp3-preview/ef3c6d80e662cd65b0e0c48e810f52e17dd24433?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM00200091,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.722,0.605,4.0,-10.165,0.0,0.0366,0.0343,0.0,0.0602,0.784,97.13,4.0,,EMI Music Australia,"C © 2005 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2002 EMI Recorded Music Australia Pty Ltd.",8258 +8259,spotify:track:1wAXODAAL6hY64ZdhrnjBO,Drive By,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:4IjfVRMzE8yNH84Q6UZSV6,Drive By,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2012-01-10,https://i.scdn.co/image/ab67616d0000b273eae3a0656610821e43139c10,1,1,196626,https://p.scdn.co/mp3-preview/04a4331f6e25d0bd2c6de9c1202ad719f24b1cef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM11106876,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.759,0.849,1.0,-3.198,0.0,0.0317,0.000983,1.51e-05,0.0864,0.73,122.033,4.0,,Columbia,"P (P) 2012 Columbia Records, a Division of Sony Music Entertainment",8259 +8260,spotify:track:0YMFcrMtBowDdD5bPz0cgy,Talkin' Bout a Revolution,spotify:artist:7oPgCQqMMXEXrNau5vxYZP,Tracy Chapman,spotify:album:6hmmX5UP4rIvOpGSaPerV8,Tracy Chapman,spotify:artist:7oPgCQqMMXEXrNau5vxYZP,Tracy Chapman,1988-04-05,https://i.scdn.co/image/ab67616d0000b27390b8a540137ee2a718a369f9,1,1,161600,https://p.scdn.co/mp3-preview/f835466b3b92b9f6ed393938040144e0ca94ce1b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USEE10100547,spotify:user:bradnumber1,2022-04-20T22:31:53Z,"folk,lilith,singer-songwriter,women's music",0.561,0.732,7.0,-6.178,1.0,0.0281,0.329,0.000228,0.0755,0.671,118.975,4.0,,Elektra Records,"C © 1988 Elektra/Asylum Records for the United States and WEA International for the world outside of the United States., P ℗ 1988 Elektra/Asylum Records for the United States and WEA International for the world outside of the United States.",8260 +8261,spotify:track:6ydHl8wMrnnVJ3RLooIzT1,Another Funny Honeymoon,spotify:artist:1NcUsr07BOPEQHnREfVUPh,David Dundas,spotify:album:3ds59N5cIvWvvQlywM6eox,David Dundas,spotify:artist:1NcUsr07BOPEQHnREfVUPh,David Dundas,1977-01-01,https://i.scdn.co/image/ab67616d0000b273d75d832ac06d104df7f8a211,1,3,174466,https://p.scdn.co/mp3-preview/4b6b11fbd41cb6c5235d5ab9cc423b160b582421?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB5KW1600133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.743,0.468,8.0,-10.436,1.0,0.0411,0.183,1.1e-06,0.102,0.961,90.348,4.0,,Chrysalis Copyrights,"C © 2016 Chrysalis Copyrights Ltd., a BMG Company, P ℗ 1977 Chrysalis Copyrights Ltd., a BMG Company",8261 +8262,spotify:track:2lYTJK94hb0fd1LQtb6Dhk,Don't Leave Me Alone (feat. Anne-Marie),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:1zNqDE7qDGCsyzJwohVaoX","David Guetta, Anne-Marie",spotify:album:4sqrDaJcbCIo6aeqO26maj,Don't Leave Me Alone (feat. Anne-Marie),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:1zNqDE7qDGCsyzJwohVaoX","David Guetta, Anne-Marie",2018-07-26,https://i.scdn.co/image/ab67616d0000b27303889a8b80ee94dccdbe34f5,1,1,183750,https://p.scdn.co/mp3-preview/d45c708e0c7e4bcc746675bb3c8451abc8a62e5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GB28K1800087,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,pop",0.659,0.738,4.0,-5.072,0.0,0.0477,0.118,0.0,0.115,0.481,127.95,4.0,,Parlophone (France),"C © 2018 What A Music Ltd. under exclusive license to Parlophone/Warner Music France, under exclusive license to Atlantic Recording Corporation for the United States. All rights reserved., P ℗ 2018 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company",8262 +8263,spotify:track:0VZ8HejqjGgKtotIvBfvd9,That's Rock 'N' Roll,spotify:artist:6XJ5IHDtW2OkjtwVllkANt,Shaun Cassidy,spotify:album:2hmAwFaEuQ7NTR23H9fvjQ,Shaun Cassidy,spotify:artist:6XJ5IHDtW2OkjtwVllkANt,Shaun Cassidy,1977-06-07,https://i.scdn.co/image/ab67616d0000b273eaab6058b67ea07bd1a1a98d,1,6,176173,https://p.scdn.co/mp3-preview/8ae789904cce3dffdd901feddc7518507804bf33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USCRB0201433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.788,0.798,0.0,-11.999,1.0,0.0375,0.0601,0.00151,0.11,0.969,129.61,4.0,,Curb Records,"C 1977 Curb Records, Inc., P 1977 Curb Records, Inc.",8263 +8264,spotify:track:4mnTMsp8Cgf9TNiQMhH11L,I Wish I Was a Punk Rocker (with Flowers in My Hair),spotify:artist:3xnfpcM4DC9zeHVuDhYICB,Sandi Thom,spotify:album:2vh0Lg3vwmArk6KI0m9eb5,Smile...It Confuses People,spotify:artist:3xnfpcM4DC9zeHVuDhYICB,Sandi Thom,2006-06-05,https://i.scdn.co/image/ab67616d0000b2737a731217c9463e1056cd727c,1,2,151640,https://p.scdn.co/mp3-preview/67ac1f3b6d06f4ffbe50c89794ab5ad5c127dcd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,QMFME1517557,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,scottish singer-songwriter",0.7,0.465,4.0,-6.815,1.0,0.358,0.544,0.0,0.606,0.719,108.102,4.0,,Guardian Angels Music,C (C) 2016 Guardian Angels Music LLC,8264 +8265,spotify:track:57QXXEBy5apjgxsyXSb8YE,Satisfied (feat. MAX),"spotify:artist:4sTQVOfp9vEMCemLw50sbu, spotify:artist:1bqxdqvUtPWZri43cKHac8","Galantis, MAX",spotify:album:7sYMi1QPQnCL99k1VCaWTZ,Satisfied (feat. MAX) / Mama Look at Me Now,"spotify:artist:4sTQVOfp9vEMCemLw50sbu, spotify:artist:1bqxdqvUtPWZri43cKHac8","Galantis, MAX",2018-07-13,https://i.scdn.co/image/ab67616d0000b2739a3c9eebbc9a748c0799bf21,1,1,155939,https://p.scdn.co/mp3-preview/e4cae6eca39fe25fb85debc6770bebc249254947?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USAT21804179,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,progressive electro house,singer-songwriter pop,teen pop,viral pop",0.75,0.651,1.0,-4.655,1.0,0.121,0.00759,0.0,0.521,0.928,120.055,4.0,,Big Beat Records,"C © 2018 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2018 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",8265 +8266,spotify:track:5oG7vsEx77WaW53BtxnWfB,Love to Love You,spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,spotify:album:4acB71ZhsfYGdTdqdbpzLK,"Forgiven, Not Forgotten",spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,1995-09-26,https://i.scdn.co/image/ab67616d0000b2737ab47a9a8416c1828d4d14e6,1,10,202666,https://p.scdn.co/mp3-preview/e7d55e1e254191540069fd2f7d5bbefccdb4cbff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USAT20002754,spotify:user:bradnumber1,2022-08-23T01:54:28Z,"celtic rock,europop,pop rock",0.447,0.767,10.0,-7.165,1.0,0.0363,0.178,0.0,0.243,0.508,83.92,4.0,,WM UK,"C © 1995 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1995 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8266 +8267,spotify:track:1cG0umU5TKStygKsPFZ9pY,Shed a Light,"spotify:artist:3t5xRXzsuZmMDkQzgOX35S, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:7DMveApC7UnC2NPfPvlHSU","Robin Schulz, David Guetta, Cheat Codes",spotify:album:6yKhjUoOsHa60DSqpugerw,Shed a Light,"spotify:artist:3t5xRXzsuZmMDkQzgOX35S, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:7DMveApC7UnC2NPfPvlHSU","Robin Schulz, David Guetta, Cheat Codes",2016-11-25,https://i.scdn.co/image/ab67616d0000b2737be189f322bc8155c103d6c9,1,1,191379,https://p.scdn.co/mp3-preview/f4c870e32367655fc8fcc2f6c428778115935fe1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,DEA621602181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep euro house,deep house,edm,german dance,pop dance,tropical house,big room,dance pop,edm,pop,pop dance,edm,pop,pop dance",0.483,0.787,8.0,-5.244,1.0,0.102,0.112,0.0,0.257,0.58,122.058,4.0,,Tonspiel,"C © 2016 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company, P ℗ 2016 TONSPIEL under exclusive license to Warner Music Group Germany Holding GmbH / A Warner Music Group Company",8267 +8268,spotify:track:4yugZvBYaoREkJKtbG08Qr,Take It Easy - 2013 Remaster,spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,spotify:album:51B7LbLWgYLKBVSpkan8Z7,Eagles (2013 Remaster),spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,1972-06-01,https://i.scdn.co/image/ab67616d0000b273c13acd642ba9f6f5f127aa1b,1,1,211577,https://p.scdn.co/mp3-preview/4b32d39b05829f2c442aa869354f0f63cefcef24?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USEE11300314,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,heartland rock,mellow gold,rock,soft rock,yacht rock",0.575,0.67,7.0,-10.39,1.0,0.0318,0.343,4.95e-06,0.129,0.74,139.191,4.0,,Rhino/Elektra,"C © 1972 Asylum Records, P ℗ 1972 Asylum Records. Marketed by Warner Stategic Marketing, a Warner Music Group Company.",8268 +8269,spotify:track:1w29UTa5uUvIri2tWtZ12Y,Hip Hop Hooray,spotify:artist:4Otx4bRLSfpah5kX8hdgDC,Naughty By Nature,spotify:album:4OEP9VlZWOCt1QcOzX0oXF,19 Naughty III,spotify:artist:4Otx4bRLSfpah5kX8hdgDC,Naughty By Nature,1993-02-23,https://i.scdn.co/image/ab67616d0000b27393e4dd713aeeeada502e5428,1,2,267266,https://p.scdn.co/mp3-preview/73a29edeace09e859acfd831d3adfbe22399fb53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USTB10250031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hip hop,new jersey rap",0.862,0.642,6.0,-13.652,0.0,0.101,0.102,0.0,0.272,0.765,99.201,4.0,,"Tommy Boy Music, LLC","C 2004 Tommy Boy Music, LLC, P 2004 Tommy Boy Music, LLC",8269 +8270,spotify:track:5qrSlOut2rNAWv3ubArkNy,Be Alright,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:61G7KL6rpj167r6H4CzS8C,A Place We Knew,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2019-03-22,https://i.scdn.co/image/ab67616d0000b273a787f718fb485b66d6219247,1,6,196493,https://p.scdn.co/mp3-preview/f6a555e84780714c22c0685e5c8866f4bb877a3d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,77,AUUM71800255,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop",0.551,0.537,11.0,-7.595,1.0,0.034,0.705,0.0,0.0802,0.493,126.421,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Universal Music Australia Pty Ltd., P ℗ 2019 Universal Music Australia Pty Ltd.",8270 +8271,spotify:track:45rVezUW4TqYwQkD7kz6eF,good 4 u,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,spotify:album:7vElfAHS2e5jdV92caq0Cb,good 4 u,spotify:artist:1McMsnEElThX1knmY4oliG,Olivia Rodrigo,2021-05-14,https://i.scdn.co/image/ab67616d0000b2730d0ec25bd83a4436db8d96ce,1,1,178147,https://p.scdn.co/mp3-preview/77b8820bc8ccd51cf65e23e389ff838fecf20798?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USUG12101253,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.629,0.649,9.0,-5.021,1.0,0.119,0.294,0.0,0.101,0.685,83.387,4.0,,Olivia Rodrigo PS,"C © 2021 Olivia Rodrigo, under exclusive license to Geffen Records, P ℗ 2021 Olivia Rodrigo, under exclusive license to Geffen Records",8271 +8272,spotify:track:01Uk1Ud1zdU39elGzinVNi,Lonely,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:314DEYqtr3bYNvSPtZpVFE,What Matters The Most,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2009-05-01,https://i.scdn.co/image/ab67616d0000b273d81b8b0252c200994b2cfd0a,1,3,282466,https://p.scdn.co/mp3-preview/15296f02bf7077719f2fd9d5031dbd0b66f29800?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUBM00599385,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,australian pop,australian rock",0.514,0.682,2.0,-4.079,1.0,0.0304,0.00085,0.0,0.209,0.182,123.986,4.0,,Sony BMG Music Entertainment,P This compilation (P) 2009 Sony Music Entertainment Australia Pty Ltd.,8272 +8273,spotify:track:4zH6dB5VUvQxuPzy19zJqp,I Love The Nightlife (Disco 'Round),spotify:artist:1UY4oIFpjCKe5qIhKDcloe,Alicia Bridges,spotify:album:2AWqMVNq3a8Cin6wQWDnbh,Disco Nights,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2001-01-01,https://i.scdn.co/image/ab67616d0000b273c1c69c9e76fa824c084470ee,1,15,200360,https://p.scdn.co/mp3-preview/d4a2da000a56fbec9b1474fa7823c02435b4da45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USPR37800082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.655,0.596,0.0,-11.375,1.0,0.0381,0.159,0.0197,0.11,0.849,125.248,4.0,,Universal Music Group International,"C © 2001 Universal Music International, P This Compilation ℗ 2001 Universal Music International",8273 +8274,spotify:track:1ACwzRhtfLRd260g7gScn1,Money,spotify:artist:4epvQMiFlOCecjYryYeeW9,Abz Winter,spotify:album:39tB4rx9IrEs0OwV8x3KbC,Money,spotify:artist:4epvQMiFlOCecjYryYeeW9,Abz Winter,2021-07-16,https://i.scdn.co/image/ab67616d0000b273274856b0a93790bd5050bb4c,1,1,224000,https://p.scdn.co/mp3-preview/5452b31c6ab40a6ac54685807cf21abef8bcb5a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBMJG2114716,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.637,0.463,1.0,-9.169,0.0,0.0436,0.387,1.29e-06,0.0835,0.0962,118.014,4.0,,Winter Records,"C 2021 Winter Records, P 2021 Winter Records",8274 +8275,spotify:track:4cC99MfXQzjd47sB4E6t6E,Dancing In The Storm,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,spotify:album:1z5znxO4MfWZztLY8jwGPv,Dancing In The Storm,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,2009-05-01,https://i.scdn.co/image/ab67616d0000b273c00b59bcfc799b1d3a699ebf,1,4,242373,https://p.scdn.co/mp3-preview/05ad3d153b647030222f30f5b466063b96f71e6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00957340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.594,0.51,6.0,-6.824,1.0,0.0263,0.574,0.00141,0.0958,0.467,109.854,4.0,,Bloodlines,"C 2009 Bloodlines, P 2009 Bloodlines",8275 +8276,spotify:track:71gllRzHoMKgU7b2y0OfM7,500 Miles Away from Home,spotify:artist:69wzuykaVXlRS5KVygESvd,Bobby Bare,spotify:album:27mfw2zyN5OY8RzlKD5C6v,Super Hits,spotify:artist:69wzuykaVXlRS5KVygESvd,Bobby Bare,2004-06-18,https://i.scdn.co/image/ab67616d0000b273fd0a989f4455ad3c23076be4,1,3,162506,https://p.scdn.co/mp3-preview/bdfc419dfd78f367494f913b9139b0b6dcefa836?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USRN19600340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,outlaw country",0.519,0.374,7.0,-13.115,1.0,0.0314,0.659,6.88e-06,0.644,0.521,109.253,4.0,,RLG/BMG Heritage,P This compilation (P) 2004 BMG Music,8276 +8277,spotify:track:486W7TsJOJl2C6NktjOd9O,Right By Your Side - Remastered Version,"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",spotify:album:4pGwe5BW8GVtIP8ruoa1jB,Touch (Reissue - Deluxe Edition),"spotify:artist:0NKDgy9j66h3DLnN8qu1bB, spotify:artist:5MspMQqdVbdwP6ax3GXqum, spotify:artist:7gcCQIlkkfbul5Mt0jBQkg","Eurythmics, Annie Lennox, Dave Stewart",1983-11-14,https://i.scdn.co/image/ab67616d0000b273a29ca418b2a64e80002a86e3,1,3,244946,https://p.scdn.co/mp3-preview/b5999a170e8b3141bf04e3ea8183470b74780679?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBARL0300602,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,soft rock,sophisti-pop,synthpop,new romantic,new wave,new wave pop,singer-songwriter,soft rock,synthpop,new wave pop,rock keyboard",0.571,0.749,6.0,-8.326,1.0,0.0409,0.0391,5.18e-05,0.193,0.897,168.741,4.0,,RCA Records Label,P (P) 2005 Sony Music Entertainment Germany GmbH,8277 +8278,spotify:track:7hxZF4jETnE5Q75rKQnMjE,I Walk the Line,spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,spotify:album:2k8N8D3YBi9Xc9iQEmTARx,I Walk the Line (Original Soundtrack Recording),spotify:artist:6kACVPfCOnqzgfEF5ryl0x,Johnny Cash,1970-11-11,https://i.scdn.co/image/ab67616d0000b2737586047ed2cb60ea3188b5bd,1,2,176533,https://p.scdn.co/mp3-preview/7a2cbbb6a6d5c57e966f9fcc8f01558101774532?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USSM19902102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,outlaw country,rock",0.713,0.258,9.0,-14.59,1.0,0.0384,0.877,0.00606,0.0967,0.56,98.805,4.0,,Columbia Nashville Legacy,P Originally released 1970. All rights reserved by Sony Music Entertainment,8278 +8279,spotify:track:5uHYcK0nbEYgRaFTY5BqnP,Magic (feat. Rivers Cuomo),"spotify:artist:5ndkK3dpZLKtBklKjxNQwT, spotify:artist:4LAz9VRX8Nat9kvIzgkg2v","B.o.B, Rivers Cuomo",spotify:album:7apLPYT8szV1IqTxyVSy5P,B.o.B Presents: The Adventures of Bobby Ray,spotify:artist:5ndkK3dpZLKtBklKjxNQwT,B.o.B,2010-04-27,https://i.scdn.co/image/ab67616d0000b273484d121f0e2d2caf87d5d10b,1,8,196133,https://p.scdn.co/mp3-preview/7766c5f7ee8ab1ef6dd8440a17f910a6e236af6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USAT21000545,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dance pop,pop rap,rap,southern hip hop,alternative rock",0.549,0.932,8.0,-4.11,0.0,0.343,0.0127,0.0,0.347,0.787,82.439,4.0,,Rebel Rock/Grand Hustle/Atlantic,"C © 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",8279 +8280,spotify:track:4vUmTMuQqjdnvlZmAH61Qk,South of the Border (feat. Camila Cabello & Cardi B),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF, spotify:artist:4kYSro6naA4h99UJvo89HB","Ed Sheeran, Camila Cabello, Cardi B",spotify:album:3oIFxDIo2fwuk4lwCmFZCx,No.6 Collaborations Project,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2019-07-12,https://i.scdn.co/image/ab67616d0000b27373304ce0653c7758dd94b259,1,2,204466,https://p.scdn.co/mp3-preview/89e5e2e241343cf318aa033a70c938a205bbda8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBAHS1900714,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop,dance pop,pop,pop,rap",0.857,0.621,9.0,-6.376,0.0,0.0825,0.148,0.0,0.0865,0.668,97.989,4.0,,Atlantic Records UK,"C © 2019 Warner Music UK Limited., P ℗ 2019 An Asylum Records UK release, a division of Atlantic Records UK; ℗ 2019 Warner Music UK Limited except track 6 ℗ 2019 Warner Music UK / Def Jam Recordings, a division of UMG Recordings, Inc",8280 +8281,spotify:track:0iyEaciAmtiv8xMkBg97Fy,Payphone,"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:137W8MRPWKqSmrBGDBFSop","Maroon 5, Wiz Khalifa",spotify:album:3MLzYyjkFBMPTgsso73O36,Payphone,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2012-01-01,https://i.scdn.co/image/ab67616d0000b27320839238d0f69d5486743905,1,1,231466,https://p.scdn.co/mp3-preview/3fa424cf3b47431d48b7a12368ce0eeb134fc03f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71203347,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap",0.745,0.756,4.0,-4.749,1.0,0.0429,0.021,0.0,0.356,0.495,109.999,4.0,,A&M / Octone Records,"C © 2012 A&M/Octone Records, P ℗ 2012 Interscope Records",8281 +8282,spotify:track:5gaEdX9W7HwrF1mrkKBT61,Gotta Pull Myself Together,spotify:artist:2H32fphWQj9hhVuCOKkchM,The Nolans,spotify:album:5QkD8KzfWvH39NNgYxyl1Z,Making Waves,spotify:artist:2H32fphWQj9hhVuCOKkchM,The Nolans,1980-12-10,https://i.scdn.co/image/ab67616d0000b2732e24433898430f5aa0477b1f,1,1,163480,https://p.scdn.co/mp3-preview/d99a1aad6622c2d5916945dbbdc2810aa529cdff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBBBM8000008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.897,0.869,7.0,-5.494,1.0,0.077,0.614,0.0,0.207,0.97,123.834,4.0,,Epic,P (P) 1980 Sony BMG Music Entertainment (UK) Limited,8282 +8283,spotify:track:0bTlXQJzw4ddaLQPJ4rGS2,Revelry,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:5CZR6ljD0x9fTiS4mh9wMp,Only By The Night,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2008-09-23,https://i.scdn.co/image/ab67616d0000b2732519d01c0cca06f134eeadd8,1,6,201733,https://p.scdn.co/mp3-preview/f8cf298269012166a06579d3dcc300d4beee372e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USRC10800306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.437,0.748,4.0,-6.593,1.0,0.0689,0.196,0.000328,0.158,0.383,149.834,4.0,,RCA/Legacy,"P (P) 2008 RCA Records, a division of Sony Music Entertainment",8283 +8284,spotify:track:0uDbaQ0mUscJhYV2dn7bNm,Precious to Me,spotify:artist:2ut1VNKTLERpjYf2uljNWn,Phil Seymour,spotify:album:0ivPGE8zZoknrTCy5MRpiF,"Archive Series, Vol. 1",spotify:artist:2ut1VNKTLERpjYf2uljNWn,Phil Seymour,2012-03-08,https://i.scdn.co/image/ab67616d0000b273791e7c8888cacdccf8dba770,1,1,171160,https://p.scdn.co/mp3-preview/b331d88a36dd49b8173fc73b990c5eb5dfb4f926?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM4TX1776560,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern power pop,power pop,underground power pop",0.698,0.867,11.0,-5.946,0.0,0.0278,0.0184,0.0,0.102,0.956,129.552,4.0,,Airline Records,"C (C) 2012 Originally Released © Airline Records. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws., P (P) 2012 Originally Released © Airline Records. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",8284 +8285,spotify:track:6DdPacpAdYkxV8MCzsjaXu,Growin' Up and Gettin' Old,spotify:artist:718COspgdWOnwOFpJHRZHS,Luke Combs,spotify:album:2tyF3XymQtvSySp5osmr6d,Growin' Up and Gettin' Old,spotify:artist:718COspgdWOnwOFpJHRZHS,Luke Combs,2023-01-27,https://i.scdn.co/image/ab67616d0000b273b7a39c2723d499d7228314d7,1,1,233666,https://p.scdn.co/mp3-preview/476a4a4d0bda8d0be2b73924dc4eab4c5db4fe01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,US6XF2100239,spotify:user:bradnumber1,2023-04-02T14:19:49Z,"contemporary country,country",0.511,0.6,2.0,-5.699,1.0,0.0268,0.16,5.25e-06,0.114,0.269,146.051,4.0,,River House Artists/Columbia Nashville,"P (P) 2023 River House Artists LLC, under exclusive license to Sony Music Entertainment. All rights reserved.",8285 +8286,spotify:track:5Vfl6AYr1PyG4BcEMIr8oT,Perfect,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:7Ecotv7Pdu4utXTqulJ45n,Perfect,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2023-10-20,https://i.scdn.co/image/ab67616d0000b273c2c42265eaa82d0d853398ce,1,1,153642,https://p.scdn.co/mp3-preview/59100b053539d1346756b4a50b87b9c58262b988?cid=9950ac751e34487dbbe027c4fd7f8e99,True,27,USA2P2348192,spotify:user:bradnumber1,2024-04-30T08:31:12Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.566,0.719,9.0,-3.908,0.0,0.0456,0.000965,3.67e-05,0.0944,0.37,139.998,4.0,,Big Noise Music Group,"C © 2023 Big Noise Music Group, LLC, P ℗ 2023 Big Noise Music Group, LLC",8286 +8287,spotify:track:562JrM9b7jiu8LgzV62x3o,The Rose,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,spotify:album:6PXrZg7FMAGm1rnu6widwU,The Rose,spotify:artist:13y0kncDD4J9wxCyfKr10W,Bette Midler,1979,https://i.scdn.co/image/ab67616d0000b273fc40a25fc081378f7c436359,1,12,221373,https://p.scdn.co/mp3-preview/65b51374760b75e22c8740d7790427b25cab43a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT29901582,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,new wave pop,soft rock",0.347,0.228,0.0,-9.667,1.0,0.0296,0.901,0.0,0.38,0.184,133.574,4.0,,Rhino Atlantic,"C © 1979 Atlantic Records., P ℗ 1979 Atlantic Records. Marketed by Rhino Entertainment, a Warner Music Group Company",8287 +8288,spotify:track:2ijMU9lYFCvGBzgwJ8Sd8q,For You I Will (Confidence),spotify:artist:1YIpZOfyHXMUgUaxxxgbaC,Teddy Geiger,spotify:album:3XDvi9IQnJ4UEs9s85pqtt,Underage Thinking,spotify:artist:1YIpZOfyHXMUgUaxxxgbaC,Teddy Geiger,2006-03-21,https://i.scdn.co/image/ab67616d0000b27311bb3f6659b3f6b57f3fdbc1,1,2,228880,,False,0,USSM10504265,spotify:user:bradnumber1,2020-03-05T09:20:46Z,"neo mellow,rochester ny indie,transpop",0.315,0.751,1.0,-5.74,0.0,0.0517,0.0041,0.0,0.0984,0.272,119.566,4.0,,Columbia,"P (P) 2005, 2006 SONY BMG MUSIC ENTERTAINMENT",8288 +8289,spotify:track:4INDiWSKvqSKDEu7mh8HFz,Mo Money Mo Problems (feat. Puff Daddy & Mase) - 2014 Remaster,"spotify:artist:5me0Irg2ANcsgc93uaYrpb, spotify:artist:1wiBLzTI7z9RUwEpNPdFT6, spotify:artist:59wfkuBoNyhDMQGCljbUbA","The Notorious B.I.G., Mase, Diddy",spotify:album:7dRdaGSxgcBdJnrOviQRuB,Life After Death (2014 Remastered Edition),spotify:artist:5me0Irg2ANcsgc93uaYrpb,The Notorious B.I.G.,1997-03-04,https://i.scdn.co/image/ab67616d0000b273fde79b88e2a659c394c5ae30,1,10,257399,https://p.scdn.co/mp3-preview/4a998f56e8a5a0093d4f29e2d5260ac2a8fee08a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USAT21402732,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hardcore hip hop,hip hop,rap,contemporary r&b,gangster rap,hardcore hip hop,harlem hip hop,hip hop,hip pop,r&b,southern hip hop,urban contemporary,dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap",0.845,0.884,6.0,-4.506,0.0,0.0759,0.0128,2.1e-06,0.203,0.904,104.536,4.0,,Rhino Atlantic,"C © 1997 Bad Boy Records, LLC., P ℗ 1997 Bad Boy Records, LLC. Marketed By Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",8289 +8290,spotify:track:1IQu8MIytsL3io4PvubwtW,Runaway,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:1azqhOR2G3aHiHTd3Rbn7L,Design Of A Decade 1986/1996,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1995-01-01,https://i.scdn.co/image/ab67616d0000b27345aebf684cbd6c64fe6589f4,1,1,214933,https://p.scdn.co/mp3-preview/09287a798eef20d0afc2b78235dcea78ed8c1362?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19500810,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.79,0.856,1.0,-4.98,1.0,0.0343,0.381,0.0387,0.0551,0.899,109.143,4.0,,Universal Music Group,"C © 1995 A&M Records, P ℗ 1995 A&M Records",8290 +8291,spotify:track:2DRymt1JC1O6qu43m2yFAM,(Down At) Papa Joe's,"spotify:artist:4hJS67dIMP9WRprPjQTIaC, spotify:artist:2jQFrKhoDmoVJIYpSDCc5N","Dixie Belles, Cornbread & Jerry",spotify:album:7j3qLOdvLP642hSEwzrHAl,(Down At) Papa Joe's,"spotify:artist:4hJS67dIMP9WRprPjQTIaC, spotify:artist:2jQFrKhoDmoVJIYpSDCc5N","Dixie Belles, Cornbread & Jerry",2014-03-12,https://i.scdn.co/image/ab67616d0000b273b3f656901ae85cc6c754fab5,1,1,153782,https://p.scdn.co/mp3-preview/dfa36e1edddae8b68c642939eb1160d6e64e0199?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMFME1408412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.452,0.852,7.0,-9.081,1.0,0.158,0.243,0.00381,0.345,0.665,166.763,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,8291 +8292,spotify:track:6xPjMFdFPl5HYDyXWV8iFa,Burn Your Name,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:1eYpJevvvxSRiyTyunmiw2,Golden Rule,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2009-01-01,https://i.scdn.co/image/ab67616d0000b273b0d653b0a08e42513e2f04f4,1,3,230706,https://p.scdn.co/mp3-preview/6c9dcfeb4bf25c8ba4fca704f4c7da7da56d9cd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70902938,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.423,0.92,0.0,-2.908,1.0,0.039,0.000675,5.99e-06,0.187,0.26,126.51,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Universal Music Australia Pty Ltd., P ℗ 2009 Universal Music Australia Pty Ltd.",8292 +8293,spotify:track:0hAKD3hdy0RUPiPJFz270S,Mama Said,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:2MD9zkmkFbrVyWy23nnAZQ,Load,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1996-06-04,https://i.scdn.co/image/ab67616d0000b273951fb3a39618e3b04eef4bf2,1,11,319600,https://p.scdn.co/mp3-preview/e9ee806071788b92b202326a06973149e4f4afca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEV19692311,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.451,0.497,8.0,-7.694,0.0,0.0311,0.0186,0.000505,0.395,0.397,135.298,4.0,,Blackened Recordings,C 1996 Blackened Recordings,8293 +8294,spotify:track:0lfrNnlVksTGfX6PHnuL0T,Fuel,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:6mEOyKfRASrT8SpT3C6bUT,Reload,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1997-01-01,https://i.scdn.co/image/ab67616d0000b273d48acd856275dbe05a45dd95,1,1,269800,https://p.scdn.co/mp3-preview/78b969551a44efcf17b4d1166cff4ad0a1bfa66e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,GBAMC9700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.49,0.951,1.0,-3.777,1.0,0.0477,2.02e-05,0.0027,0.0314,0.589,106.946,4.0,,Universal Music Group,"C © 1997 Metallica, P ℗ 1997 Metallica",8294 +8295,spotify:track:7cm9QkrwSWH0scegcO8XZ2,I Found Someone,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,spotify:album:0NxtOR1ND3Qygex4ACA0z9,Cher,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,1987-01-01,https://i.scdn.co/image/ab67616d0000b273cdcfaeab11454a21b88d3318,1,1,223160,https://p.scdn.co/mp3-preview/b74972d424de36d73c1760fc683ab5e6c6d23ec3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USGF18716401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.538,0.604,2.0,-10.936,0.0,0.0262,0.557,0.0,0.162,0.373,102.839,4.0,,Geffen,"C © 1987 Geffen Records, P ℗ 1987 Geffen Records",8295 +8296,spotify:track:3cbV252akVZInSvJk7jAYX,Flashdance...What a Feeling - Radio Edit,spotify:artist:3oZa8Xs6IjlIUGLAhVyK4G,Irene Cara,spotify:album:0BK4XIgJ3AublHWN48vNzS,What a Feelin',spotify:artist:3oZa8Xs6IjlIUGLAhVyK4G,Irene Cara,1983-11-02,https://i.scdn.co/image/ab67616d0000b2732ff76b4da68f018b4735ee59,1,1,237053,https://p.scdn.co/mp3-preview/2d32514c920447ce869c2599cc0950e8f8d5d789?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,CAU118300354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,new romantic,new wave pop,soft rock",0.572,0.655,7.0,-7.027,0.0,0.0344,0.00579,3.41e-06,0.0901,0.392,122.49,4.0,,UNIDISC MUSIC INC.,"C 1983 Unidisc Music Inc., P 1983 Unidisc Music Inc.",8296 +8297,spotify:track:4WGTwyHPMvB3HWiEO9R0wb,Whole Again,spotify:artist:6JMHws5haIO6V35YNYDnDw,Atomic Kitten,spotify:album:340y6ZpqGxp4xW0203bOPN,Atomic Kitten,spotify:artist:6JMHws5haIO6V35YNYDnDw,Atomic Kitten,2003-04-22,https://i.scdn.co/image/ab67616d0000b27351dd08c353a4171da5f98d3a,1,8,185866,https://p.scdn.co/mp3-preview/436c88b03557f789b3ecbdcb85961418b74364e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBAAA0100364,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,dance pop,europop,girl group",0.742,0.715,4.0,-4.489,1.0,0.0351,0.0621,0.00218,0.111,0.652,94.011,4.0,,Innocent,"C © 2003 Virgin Records Limited, P This Compilation ℗ 2003 Virgin Records Limited",8297 +8298,spotify:track:4NfNr2aOxfZkkDHue5gjKf,I Woke Up In Love This Morning,"spotify:artist:0isDnZYMWbwDz7hzw0XRjt, spotify:artist:7u1mqP3ykglpCB2c1p1p5I","David Cassidy, The Partridge Family",spotify:album:4Ze1fA73mUq8aEKK2fa3Ih,The Definitive Collection,"spotify:artist:0isDnZYMWbwDz7hzw0XRjt, spotify:artist:7u1mqP3ykglpCB2c1p1p5I","David Cassidy, The Partridge Family",1974,https://i.scdn.co/image/ab67616d0000b27309eba48d48ebd1ab53b85f19,1,2,160573,https://p.scdn.co/mp3-preview/801fa9d9e3b6f43da137649cd8f30cf9868ba184?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USAR19901029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,bubblegum pop",0.584,0.552,11.0,-12.36,0.0,0.0341,0.281,0.0,0.0842,0.71,137.587,4.0,,Arista,"P (P) 1974, 2000 Arista Records, Inc.",8298 +8299,spotify:track:7oOOI85fVQvVnK5ynNMdW7,Rock with You - Single Version,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:2ZytN2cY4Zjrr9ukb2rqTP,Off the Wall,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1979-08-10,https://i.scdn.co/image/ab67616d0000b2737027294551db4fda68b5ddac,1,2,220626,https://p.scdn.co/mp3-preview/45231ae15282719f56800bb115b90eea2130866c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USSM17900817,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.808,0.535,1.0,-12.521,1.0,0.0353,0.179,9.91e-05,0.158,0.848,114.031,4.0,,Epic,P (P) 1979 MJJ Productions Inc.,8299 +8300,spotify:track:1WlEhCaWIAneVEd0R11Y8j,Hearts on Fire,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:4Zm7KcV47uD0sHageJyq2h,One Voice,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,2003-10-20,https://i.scdn.co/image/ab67616d0000b2733a1db30857beb481aa6e5345,2,9,258320,https://p.scdn.co/mp3-preview/2a1bd5b780c2e6588dba629f3f017c9ee680e371?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUBM09641003,spotify:user:bradnumber1,2021-11-20T11:23:01Z,"australian pop,australian rock",0.646,0.517,5.0,-9.587,1.0,0.0259,0.256,0.0,0.116,0.611,114.028,4.0,,BMG Music,P (P) 2003 BMG Australia Limited,8300 +8301,spotify:track:4OZEu0Vwq0RB2LAq14v99n,Middle,"spotify:artist:540vIaP2JwjQb9dm3aArA4, spotify:artist:0CjWKoS55T7DOt0HJuwF1H","DJ Snake, Bipolar Sunshine",spotify:album:55bbXORm6ZrVq52zfZnxBf,Encore,spotify:artist:540vIaP2JwjQb9dm3aArA4,DJ Snake,2016-08-05,https://i.scdn.co/image/ab67616d0000b2735045de6786e0af096de73ed4,1,2,220573,https://p.scdn.co/mp3-preview/31f2092a01cba193ae0441cc85a93990af211cea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71515784,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electronic trap,pop,pop dance,gauze pop",0.611,0.7,9.0,-5.331,1.0,0.0436,0.0199,0.0,0.0549,0.213,104.981,4.0,,Universal Music Group,"C © 2016 DJ Snake Music, under exclusive license to Interscope Records, P ℗ 2016 DJ Snake Music, under exclusive license to Interscope Records",8301 +8302,spotify:track:4hf0hL4kWyjWztZzVsM39V,God Put a Smile upon Your Face,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:0RHX9XECH8IVI3LNgWDpmQ,A Rush of Blood to the Head,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2002-08-27,https://i.scdn.co/image/ab67616d0000b273de09e02aa7febf30b7c02d82,1,3,297306,https://p.scdn.co/mp3-preview/97abb6045b2fffe9bd4ac9a6a0cbaa10a3ad574f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAYE0200775,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.611,0.556,9.0,-5.761,1.0,0.0288,0.175,7.14e-05,0.0359,0.252,126.532,4.0,,Parlophone Records Limited,"C © 2002 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2002 Parlophone Records Ltd, a Warner Music Group Company",8302 +8303,spotify:track:1sCxVKWImDZSZKvG0U9B23,Bad Liar,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:1nIz2JbAAL6wK0HS6Wb9aC,Bad Liar,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2017-05-18,https://i.scdn.co/image/ab67616d0000b273f40c5ecb3d327a55e8aa6714,1,1,214647,https://p.scdn.co/mp3-preview/4aad96a769ce1b3015ab160f13973d2f1cad9126?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71704121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.953,0.41,1.0,-6.543,1.0,0.0705,0.175,0.0,0.0768,0.718,121.074,4.0,,Universal Music Group,"C © 2017 Interscope Records, P ℗ 2017 Interscope Records",8303 +8304,spotify:track:2d8JP84HNLKhmd6IYOoupQ,Trap Queen,spotify:artist:6PXS4YHDkKvl1wkIl4V8DL,Fetty Wap,spotify:album:2gKQvajkEEaDtkqJ8FJ4uw,Fetty Wap (Deluxe),spotify:artist:6PXS4YHDkKvl1wkIl4V8DL,Fetty Wap,2015-09-25,https://i.scdn.co/image/ab67616d0000b273de6bd09b07e2b4af4e409f6c,1,1,222093,https://p.scdn.co/mp3-preview/bb80bc456e2de9dc8340862fce79addd6b008fe4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,QM7XC1400004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new jersey rap,pop rap,rap,southern hip hop,trap",0.746,0.873,7.0,-3.803,1.0,0.128,0.0244,0.0,0.354,0.817,148.075,4.0,,300 Entertainment/RGF Productions,"C © 2015 300 Entertainment/RGF Productions, P ℗ 2015 300 Entertainment/RGF Productions",8304 +8305,spotify:track:1XIXkp7bJDMQeINqrKgMjq,Jump in My Car,spotify:artist:1o711LqmNPfr4wUF9KEJIE,Ted Mulry Gang,spotify:album:4ide5Gp9T9L8b5WrSYt7Rc,The Essential Ted Mulry Gang,spotify:artist:1o711LqmNPfr4wUF9KEJIE,Ted Mulry Gang,2013-04-19,https://i.scdn.co/image/ab67616d0000b273a3d7476909155df3ff17a0c8,1,8,180066,https://p.scdn.co/mp3-preview/2cbb1f7461d67c3547f521d06e6231f6fc0f266e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07400080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.788,0.673,2.0,-13.027,1.0,0.111,0.524,0.0,0.312,0.837,123.138,4.0,,Albert Productions,P (P) 2013 J. Albert & son Pty Ltd,8305 +8306,spotify:track:01VnMhCmzbDIlvaX7tC2jb,On And On And On,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1nVUhbpkGwlTKxSIF6UJyM,Super Trouper,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1980,https://i.scdn.co/image/ab67616d0000b273226c848268e693f3812e7e69,1,3,220280,https://p.scdn.co/mp3-preview/ceff3783817e0350e6dcf9cac293d6e661a30fd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEAYD8001030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.703,0.911,5.0,-6.015,1.0,0.0275,0.267,0.056,0.17,0.949,127.974,4.0,,Universal Music Group,"C © 2001 Polar Music International AB, P ℗ 2001 Polar Music International AB",8306 +8307,spotify:track:5NLuC70kZQv8q34QyQa1DP,Fight For Your Right,spotify:artist:03r4iKL2g2442PT9n2UKsx,Beastie Boys,spotify:album:11oR0ZuqB3ucZwb5TGbZxb,Licensed To Ill,spotify:artist:03r4iKL2g2442PT9n2UKsx,Beastie Boys,1986-11-15,https://i.scdn.co/image/ab67616d0000b273a7ea08ab3914c5fb2084a8ac,1,7,208653,https://p.scdn.co/mp3-preview/707ddc00a12e013b580a7b8e51fa0e23f40a76bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USDJ28600007,spotify:user:bradnumber1,2022-08-31T00:16:49Z,"alternative rock,east coast hip hop,golden age hip hop,hip hop,old school hip hop,rap,rap rock,rock",0.503,0.858,8.0,-6.296,1.0,0.0657,0.00757,0.00234,0.0803,0.419,133.615,5.0,,Def Jam Recordings,"C © 1986 Def Jam Recordings, P ℗ 1986 Def Jam Recordings",8307 +8308,spotify:track:6LzKX8hhExcmD7UIXKZatu,Child,spotify:artist:3vn7rk7VNMfDhuZNB9sDYP,360,spotify:album:43PP5L3A9ybQjiHTKG8Xtx,Falling & Flying,spotify:artist:3vn7rk7VNMfDhuZNB9sDYP,360,2011-09-30,https://i.scdn.co/image/ab67616d0000b27341b839ed5f8427a34bf4f4bc,1,5,293373,https://p.scdn.co/mp3-preview/098eff21efc33ea722512885363f6d8447c1c533?cid=9950ac751e34487dbbe027c4fd7f8e99,True,43,AUSR21100082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.699,0.539,4.0,-10.144,0.0,0.0647,0.288,3.36e-06,0.0921,0.481,203.945,4.0,,Soulmate Records,"C © 2011 Soulmate Records Pty Limited, P ℗ 2011 Soulmate Records Pty Limited",8308 +8309,spotify:track:7m4HUtdXRUHEitLIqbVWxf,Ready to Go (Get Me Out of My Mind),spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:5S0nsfYhHa1uz10V4yoWSL,Vices & Virtues,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,2011-03-18,https://i.scdn.co/image/ab67616d0000b273d8f40ad88ed77a939b716d19,1,6,217026,https://p.scdn.co/mp3-preview/687d7b6d151f24a0de681d86a68a46172f778969?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAT21100125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.57,0.922,0.0,-5.433,1.0,0.0424,0.000463,0.000188,0.363,0.32,135.01,4.0,,Decaydance/Fueled By Ramen,"C © 2011 Fueled By Ramen LLC, for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved, P ℗ 2011 Fueled By Ramen LLC, for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved",8309 +8310,spotify:track:1bmj3ov2PP4xPUm0LCUts2,Move Away,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,spotify:album:7lqMmAeFyMleTt0DLYY01c,From Luxury To Heartache,spotify:artist:6kz53iCdBSqhQCZ21CoLcc,Culture Club,1986-04-01,https://i.scdn.co/image/ab67616d0000b27302db07911a6be712e97c8f36,1,1,261733,https://p.scdn.co/mp3-preview/41744ec4df177b9809e312e5b4f49db2b902fba4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAAA8600026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,soft rock,synthpop",0.666,0.692,5.0,-11.583,1.0,0.0379,0.151,6.44e-06,0.34,0.89,132.253,4.0,,Virgin Records,"C © 1986 Virgin Records Limited, P ℗ 1986 Virgin Records Limited",8310 +8311,spotify:track:3FUnoNtMGU9XjEKFmgXIR4,Reunited,"spotify:artist:3X458ddYA2YcVWuVIGGOYe, spotify:artist:3aVoqlJOYx31lH1gibGDt3","Toni Braxton, Babyface",spotify:album:77JvBkDfZ7r74mcQcTkdqM,"Love, Marriage‎ & Divorce","spotify:artist:3X458ddYA2YcVWuVIGGOYe, spotify:artist:3aVoqlJOYx31lH1gibGDt3","Toni Braxton, Babyface",2014-01-01,https://i.scdn.co/image/ab67616d0000b273a4b5c47f7febb7a62fdb881c,1,8,197560,https://p.scdn.co/mp3-preview/7c42ddbed12d49ec33f32616f95b7bc1c56f9ff4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USUM71317812,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,r&b,urban contemporary,contemporary r&b,r&b,urban contemporary",0.641,0.609,5.0,-6.407,0.0,0.0285,0.143,0.0,0.0523,0.358,80.02,4.0,,Def Jam Recordings,"C © 2014 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2014 Def Jam Recordings, a division of UMG Recordings, Inc.",8311 +8312,spotify:track:3HuJDcOWx0gE9Yng2uWY7K,Dream A Little Dream Of Me,spotify:artist:19eLuQmk9aCobbVDHc6eek,Louis Armstrong,spotify:album:6mmv0gwumlFGWDGJXF4yEv,What A Wonderful World,spotify:artist:19eLuQmk9aCobbVDHc6eek,Louis Armstrong,1968-01-01,https://i.scdn.co/image/ab67616d0000b273845a5660b804e5f3e821fbed,1,4,196840,https://p.scdn.co/mp3-preview/7a70f1fdb60c83c365f94d4e5bfc0d3e8c6fe1c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USMC15015276,spotify:user:bradnumber1,2024-01-02T05:25:25Z,"adult standards,dixieland,harlem renaissance,jazz trumpet,lounge,new orleans jazz,soul,swing,vocal jazz",0.455,0.183,2.0,-18.085,1.0,0.0626,0.6,0.0,0.121,0.399,95.642,4.0,,GRP,"C © 1996 GRP Records Inc., P This Compilation ℗ 1968 UMG Recordings, Inc.",8312 +8313,spotify:track:7KxhSJOYiqCDclXDBNlFSZ,Kill Em With Kindness,spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,spotify:album:3Kbuu2tHsIbplFUkB7a5oE,Revival (Deluxe),spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx,Selena Gomez,2015-10-09,https://i.scdn.co/image/ab67616d0000b2736bc7473df6c9d1fd90972e84,1,2,217906,https://p.scdn.co/mp3-preview/9c5d9bed7ba6e0f80c11e85f1b274127bb6588d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USUM71513588,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.757,0.884,10.0,-5.488,0.0,0.0404,0.00789,5.87e-05,0.0973,0.399,120.013,4.0,,Selena Gomez PS,"C © 2015 Interscope Records, P ℗ 2015 Interscope Records",8313 +8314,spotify:track:5jaz6aiRknA63NIYWdbr2O,We R Who We R,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:4fnG1cdbnCV5NF9leYWjyA,We R Who We R,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010-10-22,https://i.scdn.co/image/ab67616d0000b273111ae0210dc729cb910c1c84,1,1,204826,https://p.scdn.co/mp3-preview/87e275c268cbc6f76b509f4dd237bcea41d92059?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11000838,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.739,0.818,8.0,-5.062,1.0,0.0418,0.008,0.00504,0.164,0.713,119.982,4.0,,RCA Records Label,"P (P) 2010 RCA Records, a unit of Sony Music Entertainment",8314 +8315,spotify:track:6l5AAEJhBR9Zku6qgI9Fo2,My Heart Is Open,"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:4yiQZ8tQPux8cPriYMWUFP","Maroon 5, Gwen Stefani",spotify:album:1fDIcH8ZatZy0eEc7QoimB,V,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2014-09-02,https://i.scdn.co/image/ab67616d0000b273fbc54e07281f044e11b300e2,1,11,238400,https://p.scdn.co/mp3-preview/3924e5ca3270f4b65cf7d74f38a4f2f6801aefa1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71410365,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,pop",0.319,0.337,1.0,-7.73,1.0,0.0312,0.573,0.0,0.0863,0.282,101.836,4.0,,222 Records/Interscope Records,"C (C) 2014 Interscope Records, P (P) 2014 Interscope Records",8315 +8316,spotify:track:1O1Wgi2rPdWUiWkRVqj5Tb,Let Me In,spotify:artist:708pmTl2zRKC87egxplOGc,The Sensations,spotify:album:4B8AcD8Bmdbt8fhcMbrxuX,Let Me In,spotify:artist:708pmTl2zRKC87egxplOGc,The Sensations,2014-02-05,https://i.scdn.co/image/ab67616d0000b2733e1fad34a95c7b86e7f3c00c,1,1,188104,https://p.scdn.co/mp3-preview/5b254d34e3bcf3c548f7a7c2f010e24dd00fbac2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,FR6V82255407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,early reggae,rocksteady",0.61,0.848,10.0,-11.987,1.0,0.0513,0.296,0.000392,0.495,0.837,130.446,4.0,,JB Production,"C JB Production, P JB Production",8316 +8317,spotify:track:0o6wn6O3UHDywIGC2oVh14,Smoky Places,spotify:artist:5kj1p126UHXHCDl9SgG7W7,The Corsairs,spotify:album:0TbmhhsRLZvQL534qkjTpK,Smoky Places,spotify:artist:5kj1p126UHXHCDl9SgG7W7,The Corsairs,2013-05-07,https://i.scdn.co/image/ab67616d0000b27382e8e178cd7f6b781dd9eccd,1,1,176248,https://p.scdn.co/mp3-preview/b956a25d08e3f4302c332d2b7f9ede2604a70b3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USV351349147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.605,0.483,3.0,-12.674,1.0,0.0413,0.457,0.0,0.298,0.738,124.197,4.0,,Black Sheep Music,C (C) 2013 Entertain Me Europe LTD,8317 +8318,spotify:track:1Cj2vqUwlJVG27gJrun92y,The Sound of Silence,spotify:artist:3TOqt5oJwL9BE2NG9MEwDa,Disturbed,spotify:album:3qFQ4XNQ15alZrAaj5oGJK,Immortalized,spotify:artist:3TOqt5oJwL9BE2NG9MEwDa,Disturbed,2015-08-14,https://i.scdn.co/image/ab67616d0000b273d7bd0f8e4d2a399020b333e8,1,11,248466,https://p.scdn.co/mp3-preview/c7b31e975ada3394607f622548c08a348297981f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USRE11500180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,rap metal,rock",0.322,0.28,6.0,-9.367,0.0,0.0281,0.468,1.1e-06,0.102,0.175,85.794,4.0,,Reprise,"C © 2015 Reprise Records, P ℗ 2015 Reprise Records",8318 +8319,spotify:track:4q8PHoRsPUB52LFylX8Ulz,More Than You Know,spotify:artist:2XnBwblw31dfGnspMIwgWz,Axwell /\ Ingrosso,spotify:album:5wtHzowB37Fre3iXWQW5v5,More Than You Know,"spotify:artist:2XnBwblw31dfGnspMIwgWz, spotify:artist:1xNmvlEiICkRlRGqlNFZ43, spotify:artist:6hyMWrxGBsOx6sWcVj1DqP","Axwell /\ Ingrosso, Axwell, Sebastian Ingrosso",2017-05-24,https://i.scdn.co/image/ab67616d0000b2738f24ce68154603cffe698779,1,1,203000,https://p.scdn.co/mp3-preview/5630a95a43cdbf5380f0590b26b6d6e3670101c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBUM71701735,spotify:user:bradnumber1,2022-05-19T00:14:46Z,"edm,pop dance,progressive electro house",0.645,0.741,5.0,-4.989,0.0,0.0339,0.0323,0.0,0.29,0.534,123.07,4.0,,Universal Music Group,"C © 2017 Axwell Music AB and Refune Music Ltd, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd, P ℗ 2017 Axwell Music AB and Refune Music Ltd, under exclusive license to Virgin EMI Records, a division of Universal Music Operations Ltd",8319 +8320,spotify:track:1i1OuCNhNf7JwrlWlFZFu1,That's Not My Name,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,spotify:album:1b9KEBOO7A5awr16aCd6VP,We Started Nothing,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,2007,https://i.scdn.co/image/ab67616d0000b2735a478451a8e3cbd1b11679dc,1,2,310573,https://p.scdn.co/mp3-preview/7581d37ad411cfa1c671605798429c2adc0c3052?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBARL0800038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,electropop,neo-synthpop,new rave",0.755,0.901,9.0,-3.152,1.0,0.0893,0.0451,0.0373,0.363,0.959,145.042,4.0,,Columbia,P Track 1 (P) 2007; all other tracks (P) 2008 Sony Music Entertainment UK,8320 +8321,spotify:track:3Timk4Wy8wnJDCfq6O7YDW,16 Candles,"spotify:artist:1pXoY8oTJtPVGsrB4jmCRw, spotify:artist:64vw6q9ZBTop3Tf2ol1x4U","Johnny Maestro, The Crests",spotify:album:56XCkJo7HtVwYmGSrt2vHo,For Collectors Only,"spotify:artist:1pXoY8oTJtPVGsrB4jmCRw, spotify:artist:64vw6q9ZBTop3Tf2ol1x4U","Johnny Maestro, The Crests",1993,https://i.scdn.co/image/ab67616d0000b273dddfca6cec0a05d6f3cf49ef,1,1,174640,https://p.scdn.co/mp3-preview/063299f2b88362c8b6a9359a59b3b3ef6a1514ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USPB81010336,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,doo-wop,rhythm and blues",0.604,0.307,10.0,-10.832,1.0,0.0275,0.727,0.0,0.0932,0.604,114.009,3.0,,Oldies.com,"C 1993 Oldies.com, P 1993 Oldies.com",8321 +8322,spotify:track:2hMF7H2dO3oMz1WwIQnQw1,Against All Odds (Take A Look At Me Now),spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:7hV0YSxAQSng8H0zMR0HBf,...Hits,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1998-09-25,https://i.scdn.co/image/ab67616d0000b273c8860dfcdadefb529bf29757,1,7,204600,https://p.scdn.co/mp3-preview/521852836c6bfd67f27d4d286e0f9ee509e24f8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWI19600231,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.594,0.444,1.0,-9.042,1.0,0.0284,0.255,0.0,0.159,0.139,116.225,4.0,,Atlantic Records,"C 1998 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8322 +8323,spotify:track:2B98ljvzqpCVgt5reTHq28,Better Man,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:5pd9B3KQWKshHw4lnsSLNy,Vitalogy,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,1994-11-22,https://i.scdn.co/image/ab67616d0000b273f0f6b8bc425633e6ed6369c4,1,11,268586,https://p.scdn.co/mp3-preview/84e4fa43f4954d2c1a89bd6921cdc3c937cb29d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM11100237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.445,0.671,2.0,-7.937,1.0,0.0387,0.165,1.56e-05,0.0791,0.267,125.712,4.0,,Epic/Legacy,"P (P) 1994, 2011 Sony Music Entertainment",8323 +8324,spotify:track:440JHgcmlgu65MbKBg20ba,I Know What You Want (feat. Flipmode Squad),"spotify:artist:1YfEcTuGvBQ8xSD1f53UnK, spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:7JXCJDLGh1k9cg6JbYCpYl","Busta Rhymes, Mariah Carey, Flipmode Squad",spotify:album:7xfoGxTPNTt33IVcWjDrRt,It Ain't Safe No More. . .,spotify:artist:1YfEcTuGvBQ8xSD1f53UnK,Busta Rhymes,2002-11-26,https://i.scdn.co/image/ab67616d0000b273a91f81e8bbd2aedec00cb2c9,1,12,324306,https://p.scdn.co/mp3-preview/cf92ce463802edebd0576ac17b9fcc4ac8b44930?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USJAY0200478,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,hardcore hip hop,hip hop,pop rap,rap,dance pop,pop,urban contemporary,east coast hip hop",0.563,0.751,6.0,-4.325,1.0,0.317,0.0141,0.0,0.636,0.487,85.789,4.0,,J Records,P (P) 2002 J Records LLC,8324 +8325,spotify:track:2z0IupRlVRlDN5r2IVqHyN,Shy Away,spotify:artist:3YQKmKGau1PzlVlkL1iodx,Twenty One Pilots,spotify:album:4JFHfIYCtka66G0izGrJhz,Shy Away,spotify:artist:3YQKmKGau1PzlVlkL1iodx,Twenty One Pilots,2021-04-07,https://i.scdn.co/image/ab67616d0000b2730b33607f183db7e2e3fe2957,1,1,175044,https://p.scdn.co/mp3-preview/ddb03539505a230a452e52eb80bdcf456a104ad5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT22101330,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,pov: indie,rock",0.588,0.856,9.0,-5.242,0.0,0.0316,0.000818,0.0739,0.238,0.635,96.966,4.0,,Fueled By Ramen,"C © 2021 Fueled By Ramen LLC, P ℗ 2021 Fueled By Ramen LLC",8325 +8326,spotify:track:1JLn8RhQzHz3qDqsChcmBl,I Want to Know What Love Is - 1999 Remaster,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,spotify:album:4oQhDQDKMeI6IMlwpXt3j8,Agent Provocateur,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,1984-12-12,https://i.scdn.co/image/ab67616d0000b2733e030a7e606959674643d274,1,3,304786,https://p.scdn.co/mp3-preview/23f9b7ad0a9008aca1017cce9b5ba375b322ac8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USAT29900662,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.477,0.471,6.0,-10.036,1.0,0.0277,0.193,1.76e-06,0.131,0.423,81.204,4.0,,Atlantic Records,"C © 1984 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1984 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8326 +8327,spotify:track:0SNIAtRCPVVLoGEPcuHSIc,I'll Show You,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:6Fr2rQkZ383FcMqFyT7yPr,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273f46b9d202509a8f7384b90de,1,2,199946,https://p.scdn.co/mp3-preview/f5fd6d68c571597ef01e9c5f271123f97ea121ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USUM71516758,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.401,0.608,9.0,-6.757,0.0,0.0578,0.0505,7.96e-05,0.183,0.0761,133.595,3.0,,RBMG/Def Jam,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",8327 +8328,spotify:track:3xjLAPMsYy32W9oFHsSsGl,Have You Ever Really Loved A Woman?,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:60E1kV0xn3LFWfUCEWgJub,18 Til I Die,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1996-06-04,https://i.scdn.co/image/ab67616d0000b27394b19dec4db60c5809bc23c6,1,13,291666,https://p.scdn.co/mp3-preview/e3bd97014c2bae4d39950dcb3e049d35ac360bc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19500599,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.569,0.472,7.0,-10.138,1.0,0.0313,0.536,1.44e-05,0.1,0.346,145.513,3.0,,Universal Music Group,"C © 1996 Badman Ltd. / A&M Records, P ℗ 1996 Badman Ltd./A&M Records Inc.",8328 +8329,spotify:track:27ilMN1oiW9849fReEYgOj,I Love It,"spotify:artist:1VBflYyxBhnDc9uVib98rw, spotify:artist:25uiPmTg16RbhZWAqwLBy5","Icona Pop, Charli xcx",spotify:album:5ntm6HNABamnxHMI3T3OUb,Icona Pop,spotify:artist:1VBflYyxBhnDc9uVib98rw,Icona Pop,2012-01-01,https://i.scdn.co/image/ab67616d0000b27397e035c0a2f5c869aafd2471,1,2,156773,https://p.scdn.co/mp3-preview/429e91c9cdcf45a97960ab87560953e894aac997?cid=9950ac751e34487dbbe027c4fd7f8e99,True,23,SEWEE1200301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,dance pop,electropop,metropopolis,swedish electropop,swedish synthpop,art pop,candy pop,metropopolis,pop,uk pop",0.71,0.901,1.0,-2.686,1.0,0.0296,0.00828,1.34e-05,0.172,0.86,125.953,4.0,,Universal Music AB,"C © 2012 Record company TEN, Under exclusive license to Universal Music AB, P ℗ 2012 Record company TEN, Under exclusive license to Universal Music AB",8329 +8330,spotify:track:6S4Z214kph4Pnx1Xkr9Obs,Bigger,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,spotify:album:1ZswrHxRhZh19zOmsl0cpv,Bigger,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,2020-07-31,https://i.scdn.co/image/ab67616d0000b27377b49d11358193aba25881f6,1,1,176574,https://p.scdn.co/mp3-preview/49e957618760b85feac62f55c019658ae4e4bc30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,NZSG02000029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,nz christian,nz pop",0.495,0.478,10.0,-7.945,1.0,0.0889,0.185,0.0,0.51,0.431,77.58,4.0,,Sony Music Entertainment,P (P) 2020 Sony Music Entertainment NZ Limited,8330 +8331,spotify:track:4zvcdfyrGUGgJRsgiCJlVX,Music Box Dancer,spotify:artist:1rlNSO7W5SWGspO6fgrHPS,Frank Mills,spotify:album:2Ym6tiJht0CqqPTOEhlatf,Music Box Dancer,spotify:artist:1rlNSO7W5SWGspO6fgrHPS,Frank Mills,1978-01-01,https://i.scdn.co/image/ab67616d0000b2738b245d18aa4823dfe5680a34,1,1,192360,https://p.scdn.co/mp3-preview/291147ce4ddc74127745004dac7513091d331a2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBLY0606398,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.467,0.471,1.0,-13.761,1.0,0.039,0.572,0.824,0.122,0.794,132.164,4.0,,Richmond Records,"C (C) 2000 Richmond Records, P (P) 1978 Richmond Records",8331 +8332,spotify:track:4Y3Spvz9E6x0cBuVUh8FW2,I Wish That We Were Married,spotify:artist:64NBWzoBYRleutVJjDfpkT,Ronnie And The Hi-Lites,spotify:album:7MYeVAixEG5jdK97Ueskhv,I Wish That We Were Married,spotify:artist:64NBWzoBYRleutVJjDfpkT,Ronnie And The Hi-Lites,2012-04-17,https://i.scdn.co/image/ab67616d0000b27368aec6df58e530268fbd6b25,1,1,171786,https://p.scdn.co/mp3-preview/fddeecd0041e15e7eedf33274ce5052e28743e97?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR6V80241852,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.528,0.34,11.0,-12.91,1.0,0.0308,0.856,5.78e-06,0.197,0.217,100.564,3.0,,JB Production,"C JB Production, P JB Production",8332 +8333,spotify:track:3CkyJCNGaL7qk06CTMouqY,Catch 22 (feat. Anne-Marie),"spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt, spotify:artist:1zNqDE7qDGCsyzJwohVaoX","Illy, Anne-Marie",spotify:album:1g6R3TtIjfe0Jxhx3Ma85e,Catch 22 (feat. Anne-Marie),spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt,Illy,2016-10-10,https://i.scdn.co/image/ab67616d0000b27329b8bad031bbc052010cf433,1,1,221417,https://p.scdn.co/mp3-preview/4c2f1bf3594065da9cc892ca38c40de271a20342?cid=9950ac751e34487dbbe027c4fd7f8e99,True,32,AUWA01600462,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian trap,pop",0.765,0.561,0.0,-7.464,1.0,0.0987,0.0981,0.0,0.141,0.584,97.447,4.0,,WM Australia,"C © 2016 ONETWO, P ℗ 2016 ONETWO. Marketed and distributed by Warner Music Australia Pty Ltd under exclusive license",8333 +8334,spotify:track:61uAY9xdzYiIbYJ07XvKso,Big Bad John,spotify:artist:1RaDKTFXuy0qA8YV1h9SwC,Jimmy Dean,spotify:album:2vCenQXDX4DqtRShqJzCci,The Best Of Jimmy Dean,spotify:artist:1RaDKTFXuy0qA8YV1h9SwC,Jimmy Dean,2004-06-22,https://i.scdn.co/image/ab67616d0000b27327d93862a093ad506c03739e,1,1,182560,https://p.scdn.co/mp3-preview/20f89196d973c29aba37d24064a3ecc2a4049841?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM16101330,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,nashville sound",0.516,0.457,8.0,-12.609,1.0,0.184,0.596,0.0,0.106,0.455,173.934,4.0,,Columbia,"P Originally Released 1961, 1962, 1963, 1964, 1965, (P) 2004 Sony Music Entertainment Inc.",8334 +8335,spotify:track:0mbS3VwRbO6HVBMPXnzOGA,To Love Somebody,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:2ESenDgBlvBFn6G1SfVZIw,Bee Gees' 1st,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1967-07-14,https://i.scdn.co/image/ab67616d0000b273b99aba76485e5c02fa48f3db,1,10,182000,https://p.scdn.co/mp3-preview/b1a41a1fd21f5823b11f6a6cf760568a27d31f31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,GBAKW6701004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.434,0.384,9.0,-12.503,1.0,0.0324,0.731,4.11e-06,0.27,0.526,90.795,4.0,,Bee Gees Catalog,"C © 1967 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, Under exclusive license to Capitol Music Group, P ℗ 1967 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, Under exclusive license to Capitol Music Group",8335 +8336,spotify:track:1IMi3chVPe4t5MUxIjn4Lk,Sick Cycle Carousel,spotify:artist:5PokPZn11xzZXyXSfnvIM3,Lifehouse,spotify:album:73VoR62ltV5NrQfdK06CC6,No Name Face,spotify:artist:5PokPZn11xzZXyXSfnvIM3,Lifehouse,2001-03-02,https://i.scdn.co/image/ab67616d0000b27368ab54333fd33f279da0d3ae,1,2,263400,https://p.scdn.co/mp3-preview/be72895d18f39d884cdba1b2888ac50e54e62fe7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10022032,spotify:user:bradnumber1,2022-02-03T10:25:38Z,"neo mellow,pop rock,post-grunge",0.445,0.8,8.0,-5.228,0.0,0.0301,0.00168,1.32e-06,0.0802,0.47,95.481,4.0,,Universal Music Ltd.,"C (C) 2000 SKG Music L.L.C., P (P) 2000 SKG Music L.L.C.",8336 +8337,spotify:track:2W6PNGCN4PGwPMf1jYazL4,Can't Stop Loving You - 2016 Remaster,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:5Tby0U5VndHW0SomYO7Id7,Testify (Deluxe Edition),spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,2002-11-11,https://i.scdn.co/image/ab67616d0000b2732881594ebf3be23f47016a50,1,10,256453,https://p.scdn.co/mp3-preview/c0501a9b2b19bfb4b02cc5a7e340e5be4928aa8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USRH11600031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock drums,soft rock",0.604,0.778,0.0,-5.686,1.0,0.0259,0.00726,1.33e-05,0.114,0.419,100.155,4.0,,Rhino,"C © 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company, P ℗ 2016 Philip Collins Ltd. under exclusive license to Rhino Entertainment Company, A Warner Music Group Company",8337 +8338,spotify:track:285pBltuF7vW8TeWk8hdRR,Lucid Dreams,spotify:artist:4MCBfE4596Uoi2O4DtmEMz,Juice WRLD,spotify:album:6tkjU4Umpo79wwkgPMV3nZ,Goodbye & Good Riddance,spotify:artist:4MCBfE4596Uoi2O4DtmEMz,Juice WRLD,2018-12-10,https://i.scdn.co/image/ab67616d0000b273f7db43292a6a99b21b51d5b4,1,3,239835,https://p.scdn.co/mp3-preview/85ba40ef782e993bac9ee1c945f90c123b11ffec?cid=9950ac751e34487dbbe027c4fd7f8e99,True,82,USUG11800685,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,melodic rap,rap",0.511,0.566,6.0,-7.23,0.0,0.2,0.349,0.0,0.34,0.218,83.903,4.0,,Juice WRLD Mixtape / ISR P&D,"C © 2018 Grade A Productions, LLC, distributed by Interscope Records, P ℗ 2018 Grade A Productions, LLC, distributed by Interscope Records",8338 +8339,spotify:track:7KATU5SV5dNmETSDLbJmZc,Jeremy,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:1G1R5dY01DSyti3NaWnOp3,rearviewmirror (greatest hits 1991-2003),spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,2004-11-16,https://i.scdn.co/image/ab67616d0000b27326606c9bba49a83567fb1d9e,1,4,319466,https://p.scdn.co/mp3-preview/ed9e9973128ab51f766290f81a0628740805e0b1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,37,USSM19100674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.234,0.909,2.0,-4.424,1.0,0.0438,0.0208,0.0,0.104,0.262,105.53,4.0,,Epic,P This compilation (P) 2004 Sony Music Entertainment,8339 +8340,spotify:track:5ttrcoxtfHKa20so1U7l5V,B-52,spotify:artist:3Fx75oiItjxMWuSA1mkMmy,Near Mrs,spotify:album:3QxfLOV7oGOuLiINYPKQYo,Sanguine,spotify:artist:3Fx75oiItjxMWuSA1mkMmy,Near Mrs,2021-06-17,https://i.scdn.co/image/ab67616d0000b273a1fc8878800886b3e40583d6,1,1,198857,https://p.scdn.co/mp3-preview/43ebf3c405c1051b90bb5c0d7949a366c09258ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZHN82119470,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.335,0.96,4.0,-4.155,1.0,0.33,0.00388,0.0,0.319,0.553,83.421,4.0,,Near Mrs,"C 2021 Near Mrs, P 2021 Near Mrs",8340 +8341,spotify:track:7xp7FkbxGEWcVDvL1KayoD,In Da Club - Single Version / Edit,spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,spotify:album:67ma4XvpbAfD4UpUPRwRN4,RnB Fridays Vol. 3,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-04-21,https://i.scdn.co/image/ab67616d0000b2730e545611e016c993b81bbbce,1,2,225426,https://p.scdn.co/mp3-preview/a35e05df33fa06e9c89d216a44022658988d78fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USIR10211884,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap",0.91,0.675,1.0,-4.138,0.0,0.318,0.194,0.0,0.0951,0.702,89.999,4.0,,Universal Music Australia Pty. Ltd.,"C © 2017 Universal Music Australia Pty Ltd., P This Compilation ℗ 2017 Universal Music Australia Pty Ltd.",8341 +8342,spotify:track:30XU4suKzCeoCK9YFzdufg,Born This Way,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:6LY3AerY6KNGOPsNPL63Kk,Born This Way (International Special Edition Version),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2011-05-23,https://i.scdn.co/image/ab67616d0000b273a5d31644260279be8d0c46c0,1,2,260252,https://p.scdn.co/mp3-preview/0babf4d4a9541ef3f664e3dd87ab51be6f16c610?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USUM71100638,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.587,0.828,11.0,-5.108,1.0,0.161,0.00327,0.0,0.331,0.493,123.907,4.0,,Interscope,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",8342 +8343,spotify:track:3icbmPGKTsKAa0IinkizCM,That's How You Know (feat. Kid Ink & Bebe Rexha),"spotify:artist:0awl5piYwO0CDTHEkCjUhn, spotify:artist:6KZDXtSj0SzGOV705nNeh3, spotify:artist:64M6ah0SkkRsnPGtGiRAbb","Nico & Vinz, Kid Ink, Bebe Rexha",spotify:album:7skmxw0M4VQMZwY4lICAHl,That's How You Know (feat. Kid Ink & Bebe Rexha),spotify:artist:0awl5piYwO0CDTHEkCjUhn,Nico & Vinz,2015-07-17,https://i.scdn.co/image/ab67616d0000b2738df2aa337c99e8d7752c60b3,1,1,186443,https://p.scdn.co/mp3-preview/549276c2bc3fb53ea183fb880fba4a30e05a291f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,51,USWB11507836,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"afrobeats,pop rap,rap,southern hip hop,trap,dance pop,pop",0.769,0.437,1.0,-6.406,1.0,0.0363,0.44,0.0,0.116,0.737,103.921,4.0,,Warner Records,"C © 2015 Warner Records Inc., P ℗ 2015 Warner Records Inc.",8343 +8344,spotify:track:1FHNctV68GUNLgXclG2DtR,Dancing in the Moonlight,spotify:artist:6xeFne1rkxMhKSW3ipvkdV,Toploader,spotify:album:3Yxy4ITyguWRkdXwrB9uC9,Dancing In The Moonlight: The Best Of Toploader,spotify:artist:6xeFne1rkxMhKSW3ipvkdV,Toploader,2009-04-22,https://i.scdn.co/image/ab67616d0000b273a3ebdfcbd1a5336b2920b699,1,1,233373,https://p.scdn.co/mp3-preview/6d259dc3c9bc978297f609514799792ab6d76eb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBBBL9902165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british alternative rock,0.639,0.845,0.0,-3.333,0.0,0.0372,0.0528,0.0,0.336,0.871,119.48,4.0,,Sony BMG Music UK,P This compilation (P) 2009 Sony Music Entertainment UK Limited,8344 +8345,spotify:track:4uAhIw8WeAb0HfGsFKME4c,Till the World Stops Turning,spotify:artist:5FogkLPJrtPci0zey7QSiT,Kaleb Jones,spotify:album:2XGFQvyfebcSbYDtxPXpNE,Open Ocean,spotify:artist:5FogkLPJrtPci0zey7QSiT,Kaleb Jones,2014-11-18,https://i.scdn.co/image/ab67616d0000b27311563cf1ed2a1b3dd4fa3c77,1,6,227497,https://p.scdn.co/mp3-preview/d18f7df1313b4ce8ecf3a4bb8b22de0b3831080b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,QM9AA1456445,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.453,0.117,4.0,-11.847,1.0,0.0482,0.953,0.000327,0.109,0.193,120.379,4.0,,Kaleb Jones,"C 2014 Kaleb Jones, P 2014 Kaleb Jones",8345 +8346,spotify:track:089keBWJUOsI9wUeVr1uIr,Hummingbird Heartbeat,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:5BvgP623rtvlc0HDcpzquz,Teenage Dream: The Complete Confection,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2012-03-12,https://i.scdn.co/image/ab67616d0000b273937af329667311f4b2831616,1,11,212280,https://p.scdn.co/mp3-preview/58d2f0afbf10989b7133d9de905baa194b544e0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USCA21001260,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.596,0.893,6.0,-2.946,1.0,0.0935,0.00247,0.0,0.0913,0.625,121.957,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P ℗ 2012 Capitol Records, LLC",8346 +8347,spotify:track:6jCihpuVqfsdEVrzBOQ2hI,Heat Wave,spotify:artist:1Pe5hlKMCTULjosqZ6KanP,Martha Reeves & The Vandellas,spotify:album:2h786XM1x1s0uLH01m4VZI,Martha Reeves & The Vandellas,spotify:artist:1Pe5hlKMCTULjosqZ6KanP,Martha Reeves & The Vandellas,2010-04-20,https://i.scdn.co/image/ab67616d0000b27388b40e1df17e5cbcfd6f0387,1,3,162093,https://p.scdn.co/mp3-preview/655bbe02811217613eebc888d98e6c0fa0c62cd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USI4R1011509,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,motown,soul,southern soul",0.655,0.654,5.0,-10.462,0.0,0.0456,0.209,0.725,0.217,0.924,164.55,4.0,,Monaco Entertainment Corporation,"C (C) 2010 Monaco Entertainment Corporation, P (P) 2010 TBD",8347 +8348,spotify:track:6miqdoICzUXCL5UHCuucjK,Clothes Off!!,spotify:artist:4IJczjB0fJ04gs4uvP0Fli,Gym Class Heroes,spotify:album:7oudPjsM2U10YTaWOPRVxm,As Cruel as School Children,spotify:artist:4IJczjB0fJ04gs4uvP0Fli,Gym Class Heroes,2006-07-25,https://i.scdn.co/image/ab67616d0000b2736c3cac3cd03598c43eaf3663,1,4,235480,https://p.scdn.co/mp3-preview/30111aa173523ba071c7f5423324f7a290cd49fa?cid=9950ac751e34487dbbe027c4fd7f8e99,True,43,USAT20615049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap",0.761,0.69,11.0,-5.56,1.0,0.11,0.0225,0.0,0.34,0.742,114.987,4.0,,Decaydance/Fueled By Ramen/ATL,"C © 2006 Fueled By Ramen, LLC. All Rights Reserved., P ℗ 2006 Fueled By Ramen, LLC. All Rights Reserved.",8348 +8349,spotify:track:0qYok0f8O5DE8yJSo146dn,Roses Are Red (My Love) - Single Version,spotify:artist:6bOYtKnpLPQSfMpS2ilotK,Bobby Vinton,spotify:album:4qK4QZUSp8QdoMEm9mrzyA,The Best Of Bobby Vinton,spotify:artist:6bOYtKnpLPQSfMpS2ilotK,Bobby Vinton,2004-06-22,https://i.scdn.co/image/ab67616d0000b2735980cda6de8365d077f34a5e,1,1,158933,https://p.scdn.co/mp3-preview/e1c0ea81138e76ba97e3245ad9ae2568f1e61c11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USSM10404744,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,easy listening,rock-and-roll,rockabilly",0.515,0.218,5.0,-10.071,1.0,0.0287,0.828,0.0,0.302,0.534,102.997,4.0,,Epic/Legacy,"P Originally Released 1962, 1963, 1964, 1965, 1967, 1968, (P) 1972, 2004 Sony Music Entertainment Inc.",8349 +8350,spotify:track:1TAuw7KEOKz4DnhgyqSFp7,I Am Australian,spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,spotify:album:7gD0vyTYaVxxY2tnpYSE0a,Carnival Of Hits Tour 2000,spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,2019-08-23,https://i.scdn.co/image/ab67616d0000b273b806241e3ae4dcc4a01dd5f2,1,9,365720,https://p.scdn.co/mp3-preview/179188c68dd02f31fab1ac0e032c738b29279cfb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,AUUM71900707,spotify:user:bradnumber1,2024-02-03T01:35:00Z,british invasion,0.447,0.477,0.0,-10.569,1.0,0.313,0.449,0.0,0.536,0.505,148.519,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Universal Music Australia Pty Ltd., P ℗ 2019 The Seekers Partnership, under exclusive licence to Universal Music Australia Pty Limited",8350 +8351,spotify:track:0OSAJEA0ekX6pr2nuiPzX7,Rapture (feat.Nadia Ali),"spotify:artist:5WVf5DCSYmK4JYD6vIcttw, spotify:artist:1C60viSZv6BoYtrnkZ44g5","iio, Nadia Ali",spotify:album:64cR11AqqLidCg6VGjUzxD,Poetica (feat. Nadia Ali),spotify:artist:5WVf5DCSYmK4JYD6vIcttw,iio,2006-06-27,https://i.scdn.co/image/ab67616d0000b273e391f672d6274dbb5d17758b,1,1,253586,https://p.scdn.co/mp3-preview/35f63393e402ee905f279eff8a885fcc1b798cbb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,US4BR0500030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"vocal house,vocal trance",0.661,0.855,8.0,-8.403,1.0,0.0377,0.0722,0.0185,0.199,0.601,123.943,4.0,,Made Records,"C 2006 Made Records, P 2006 Made Records",8351 +8352,spotify:track:1z6WtY7X4HQJvzxC4UgkSf,Love On Top,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:1gIC63gC3B7o7FfpPACZQJ,4,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2011-06-24,https://i.scdn.co/image/ab67616d0000b273ff5429125128b43572dbdccd,1,1,267413,https://p.scdn.co/mp3-preview/b33aaf728bc4a9357d00b4460ba81fde8a1407b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM11102908,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.652,0.749,0.0,-5.248,1.0,0.0886,0.0848,0.0,0.604,0.651,94.103,4.0,,Parkwood Entertainment/Columbia,"P (P) 2011, 2012 Columbia Records, a Division of Sony Music Entertainment",8352 +8353,spotify:track:38VXcoyksXlWBJtWQzNPbs,Hey Lover,"spotify:artist:1P8IfcNKwrkQP5xJWuhaOC, spotify:artist:6O74knDqdv3XaWtkII7Xjp","LL COOL J, Boyz II Men",spotify:album:1wknSyzdXstbYaLQeu11cg,Mr. Smith,spotify:artist:1P8IfcNKwrkQP5xJWuhaOC,LL COOL J,1995-11-21,https://i.scdn.co/image/ab67616d0000b2730c5d9df4050216916bf6d7b2,1,4,284733,https://p.scdn.co/mp3-preview/2e1080aaf3e5ce00b230bc40aa3bf044d930b0dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USMO10000243,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,golden age hip hop,hip hop,old school hip hop,queens hip hop,rap,boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.707,0.426,5.0,-12.406,0.0,0.0663,0.326,0.0,0.113,0.587,88.088,4.0,,Def Jam Recordings,"C © 1995 UMG Recordings, Inc., P ℗ 1995 UMG Recordings, Inc.",8353 +8354,spotify:track:2OARIMw1hpehr86Iwmv04c,Peggy Sue,"spotify:artist:3wYyutjgII8LJVVOLrGI0D, spotify:artist:4r7JUeiYy24L7BuzCq9EjR","Buddy Holly, The Crickets",spotify:album:4Qy0SOU9Jg7Td10K68SanP,Buddy Holly,spotify:artist:3wYyutjgII8LJVVOLrGI0D,Buddy Holly,1958,https://i.scdn.co/image/ab67616d0000b27358816b5b546bdc2c0e7f6416,1,2,150960,https://p.scdn.co/mp3-preview/bc9ca5621a6b59134bd324ae4ff1fcb8d00f0638?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USMC15703180,spotify:user:bradnumber1,2022-01-12T23:08:50Z,"classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,doo-wop,rock-and-roll,rockabilly",0.676,0.424,9.0,-8.132,1.0,0.0329,0.947,0.000494,0.119,0.493,148.373,4.0,,Geffen,"C © 1958 UMG Recordings Inc., P This Compilation ℗ 2015 UMG Recordings Inc.",8354 +8355,spotify:track:1OtWwtGFPXVhdAVKZHwrNF,Suspicious Minds,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:38lhaWsw8PImY1pIIlKyDJ,Back In Memphis,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1969-10,https://i.scdn.co/image/ab67616d0000b273dddd54bb14e57f4a5d970655,1,14,263973,https://p.scdn.co/mp3-preview/e7072dbcb87f4c8c62f2dab5daa22be4a6eccb9b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC16901355,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.474,0.343,7.0,-12.138,1.0,0.0298,0.0225,0.00704,0.152,0.607,114.877,4.0,,RCA Victor/Legacy,"P Originally released 1969. All rights reserved by RCA Records, a division of Sony Music Entertainment / Originally recorded 1969 & released 2010. All rights reserved by RCA Records, a division of Sony Music Entertainment",8355 +8356,spotify:track:3ZxhEGcEmCuwyBzwqCa7oW,End Of The Road,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,spotify:album:0hizzarWYWhBfygpvfFOnt,Cooleyhighharmony - Expanded Edition,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,2009-01-01,https://i.scdn.co/image/ab67616d0000b2730d25a85fdd362fb9a062b657,1,11,349640,https://p.scdn.co/mp3-preview/1a5089879c5a24a8c53d85e61d058c4f97a73b43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO19200465,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.561,0.579,5.0,-6.022,0.0,0.0243,0.0343,0.0,0.0673,0.55,74.822,3.0,,Universal Music Group,"C © 2009 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2009 Motown Records, a Division of UMG Recordings, Inc.",8356 +8357,spotify:track:0dW6U5UC9lBD1EblLJdhN5,Music Won't Break Your Heart,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,spotify:album:7nCXhDHK9lBJ66TVu1F5Ao,Let The Music Play,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,2011-11-21,https://i.scdn.co/image/ab67616d0000b2731c82728b51b6dfd86d0da6b6,1,3,199813,https://p.scdn.co/mp3-preview/2b2e253a75d058f484ac94859e3a0e81d311b741?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM01100556,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,nz christian,nz pop",0.746,0.71,5.0,-5.465,1.0,0.0419,0.0381,0.0,0.22,0.606,124.996,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,8357 +8358,spotify:track:1z3ugFmUKoCzGsI6jdY4Ci,Like a Prayer,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,9,342680,https://p.scdn.co/mp3-preview/d6f995a2eb0f481237c8c63d6bf0658f9e86f943?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USWB10903606,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.625,0.842,5.0,-5.285,1.0,0.0376,0.264,2.12e-05,0.181,0.26,111.038,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",8358 +8359,spotify:track:4a3mIp7Mrmom2SXd3S81m7,Cherish - remastered,spotify:artist:0isDnZYMWbwDz7hzw0XRjt,David Cassidy,spotify:album:4Ze1fA73mUq8aEKK2fa3Ih,The Definitive Collection,"spotify:artist:0isDnZYMWbwDz7hzw0XRjt, spotify:artist:7u1mqP3ykglpCB2c1p1p5I","David Cassidy, The Partridge Family",1974,https://i.scdn.co/image/ab67616d0000b27309eba48d48ebd1ab53b85f19,1,5,227266,https://p.scdn.co/mp3-preview/0535abd90df55860e1e7ca3c61a78b1ce80c1b04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USAR19901645,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop",0.502,0.279,5.0,-13.301,1.0,0.0269,0.666,0.0,0.121,0.33,97.966,4.0,,Arista,"P (P) 1974, 2000 Arista Records, Inc.",8359 +8360,spotify:track:3hlhefxgyp4MDnN6C2dQ5H,All I Have to Give,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:0wvQovgaVU99eqw8n3g22S,Backstreet Boys,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1996,https://i.scdn.co/image/ab67616d0000b273dafd4b9261a1ab9acd53a53d,1,5,276573,https://p.scdn.co/mp3-preview/2e74fd5a4f761d81e2bd182c8b8a9d8dc3754f35?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USJI19710095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.731,0.574,1.0,-7.114,1.0,0.029,0.0648,0.0,0.0675,0.393,95.995,4.0,,Jive,P (P) 1997 Zomba Recording LLC,8360 +8361,spotify:track:4GdYM1hIvRfK8keBF2eQ1a,Inside Out (feat. Charlee),"spotify:artist:69GGBxA162lTqCwzJG5jLp, spotify:artist:6qaQDRYp95AylkA1FnEI3Q","The Chainsmokers, Charlee",spotify:album:22rp3PnM3q2mtTI0OGCzpq,Collage EP,spotify:artist:69GGBxA162lTqCwzJG5jLp,The Chainsmokers,2016-11-04,https://i.scdn.co/image/ab67616d0000b2737c3b8acbb943c8da17364f34,1,4,233573,https://p.scdn.co/mp3-preview/437f5251bcfbdadf4db969724a7e6af39ca63317?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USQX91600467,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.549,0.652,7.0,-5.875,0.0,0.0311,0.00289,1.49e-05,0.138,0.141,143.963,4.0,,Disruptor Records/Columbia,"P (P) 2015, 2016 Disruptor Records/Columbia Records",8361 +8362,spotify:track:78pULHVnsTsnAQcOrdALc0,Scars,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,spotify:album:3GqsyMrJu3o8jLiGyBsBQW,Chaos And The Calm,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,2015-03-20,https://i.scdn.co/image/ab67616d0000b273066483b34a405583429b8049,1,8,272600,https://p.scdn.co/mp3-preview/3e4e11fd393a043de7c7e39fa5393c206605863d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USUM71417479,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop,uk pop",0.424,0.452,5.0,-8.816,1.0,0.0624,0.092,0.00044,0.11,0.205,129.768,5.0,,Universal Records,"C © 2015 Republic Records, a division of UMG Recordings, Inc., P ℗ 2015 Republic Records, a division of UMG Recordings, Inc.",8362 +8363,spotify:track:4EWCNWgDS8707fNSZ1oaA5,Heartless,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,spotify:album:3WFTGIO6E3Xh4paEOBY9OU,808s & Heartbreak,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2008-11-24,https://i.scdn.co/image/ab67616d0000b273346d77e155d854735410ed18,1,3,211000,https://p.scdn.co/mp3-preview/920b09535e94d18179265783aeb8b3ccb2495977?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USUM70840511,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap",0.79,0.647,10.0,-5.983,0.0,0.136,0.0515,0.0,0.248,0.654,87.999,4.0,,Roc-A-Fella,"C © 2008 UMG Recordings, Inc., P ℗ 2008 UMG Recordings, Inc.",8363 +8364,spotify:track:1Q1b8eVkUPGlpSArl8JAVw,Heart of Gold - 2009 Remaster,spotify:artist:6v8FB84lnmJs434UJf2Mrm,Neil Young,spotify:album:2l3QxNo4QubBNmVKxLeum0,Harvest (2009 Remaster),spotify:artist:6v8FB84lnmJs434UJf2Mrm,Neil Young,1972-02-14,https://i.scdn.co/image/ab67616d0000b27340007250b3b5624f2c63d050,1,4,187013,https://p.scdn.co/mp3-preview/8d841e48f1acacf0de36a3d22bd1d06c9a79f9a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USRE10900201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian singer-songwriter,classic canadian rock,classic rock,folk rock,mellow gold,permanent wave,rock,roots rock,singer-songwriter",0.541,0.459,4.0,-10.433,0.0,0.0297,0.189,0.0274,0.099,0.802,171.163,4.0,,Reprise,"C © 2009 Reprise Records, P ℗ 2009 Reprise Records",8364 +8365,spotify:track:40NRm1ZLvZpUSCUXAGGZ8J,Kung Fu Fighting,spotify:artist:5Pqx4mXYDGIDcg8E5FYjZ8,Carl Douglas,spotify:album:7wA3s9ug9RoJXi9qGQbSjX,The Soul of the Kung Fu Fighter,spotify:artist:5Pqx4mXYDGIDcg8E5FYjZ8,Carl Douglas,2001,https://i.scdn.co/image/ab67616d0000b273eac0dad8b069a4c1356a54a1,1,1,197693,https://p.scdn.co/mp3-preview/9986a744a86515731713d009f2d113810fae3a5d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAJE7400014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.598,0.673,2.0,-10.431,1.0,0.0693,0.0422,6.9e-05,0.289,0.59,102.034,4.0,,Sanctuary Records,"C © 2001 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2001 Sanctuary Records Group Ltd., a BMG Company",8365 +8366,spotify:track:6sjNqhfajowPKi2wH50yI6,Let's Dance - Radio Edit,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,spotify:album:5jSAkaiC1BBKZQSZ7wFYOY,Greatest Hits,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,2003-06-02,https://i.scdn.co/image/ab67616d0000b27310df926bec224d743644ea3e,1,5,218066,https://p.scdn.co/mp3-preview/30d58b31cae22441b51ea4e41351cf2d56fad6c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBARL0100173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.629,0.853,4.0,-6.705,0.0,0.0932,0.00854,0.000385,0.413,0.562,117.992,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,8366 +8367,spotify:track:7MooGz4ZPE4bNxjFegR6Jx,You Don't Know How It Feels,spotify:artist:2UZMlIwnkgAEDBsw1Rejkn,Tom Petty,spotify:album:3ZGUBwDiY5HPOcWv4SBPQg,Wildflowers,spotify:artist:2UZMlIwnkgAEDBsw1Rejkn,Tom Petty,1994-10-21,https://i.scdn.co/image/ab67616d0000b27341be6d9cf0ec0067d095a072,1,2,289440,https://p.scdn.co/mp3-preview/40b5fda09d4dfbb689bcb1c8b6e30252f27666d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USWB10102188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.765,0.502,9.0,-7.393,1.0,0.0321,0.119,0.0011,0.171,0.836,144.204,4.0,,143/Warner Records,"C © 1994 Warner Records Inc., P ℗ 1994 Warner Records Inc.",8367 +8368,spotify:track:3EofjRgUI1WrzqqtLb8NoF,Cheyenne,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:59eUYETmE1zi31ESb3SUkI,Everything Is 4,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2015-05-29,https://i.scdn.co/image/ab67616d0000b273519241bcfc352fc3eaaac5db,1,2,215107,https://p.scdn.co/mp3-preview/00a53bc15cf1e2e9bcb5833359b8dda92f945eb1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USWB11504527,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.554,0.768,6.0,-5.812,0.0,0.127,0.0126,7.13e-06,0.122,0.324,99.679,4.0,,Beluga Heights/Warner Records,"C © 2015 Warner Records Inc., P ℗ 2015 Warner Records Inc.",8368 +8369,spotify:track:7oULk6VxtOdXFZB3Xwqekj,She Wears My Ring,spotify:artist:53xt77SWSCBxurJQWuxUkM,Johnny O'Keefe,spotify:album:7dlDws3T6RBEO0QvFSVPow,The Wild One,spotify:artist:53xt77SWSCBxurJQWuxUkM,Johnny O'Keefe,2001,https://i.scdn.co/image/ab67616d0000b273b6ee8a754ff6dd988c24714e,1,14,135493,https://p.scdn.co/mp3-preview/ebec2050fdcc96ea7f19d093ccb14a81b45bc1d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUFE09800257,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.251,0.691,5.0,-6.889,1.0,0.0361,0.722,0.00027,0.855,0.614,100.873,4.0,,WM Australia,"C © 2001 Festival Records, P ℗ 2001 Festival Records",8369 +8370,spotify:track:05kAnRGmYvzwFo4nXdQH66,"Someday, One Day",spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,spotify:album:3vMmPXoijRRhpE9lPpUyq4,The Seekers,spotify:artist:7dedWAqd0IKTdCiqiadUrV,The Seekers,1989-01-30,https://i.scdn.co/image/ab67616d0000b273e517ee64fd625057c25108fc,1,26,155106,https://p.scdn.co/mp3-preview/56e7df782558e391b001b8942339dc81be703751?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBAYE6600151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.471,0.5,3.0,-12.303,1.0,0.0312,0.26,0.0,0.286,0.803,117.94,4.0,,Parlophone UK,"C © 1990 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1990 Parlophone Records Ltd, a Warner Music Group Company",8370 +8371,spotify:track:0bBVRsBbgnzW8wmdlD7Apq,Overkill,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,spotify:album:30aG9Rjezn1vxaYXrB8j3d,The Essential Men At Work,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,1981,https://i.scdn.co/image/ab67616d0000b273915d3557be11cf6820aaa785,1,11,227133,https://p.scdn.co/mp3-preview/f1b16cdc8b1b99903caf848b470f84d01cbf474f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USSM18200071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,rock,soft rock",0.641,0.816,1.0,-3.963,0.0,0.0285,0.087,0.0,0.116,0.553,139.185,4.0,,Columbia/Legacy,"P (P) 1985 Sony Music Entertainment (Australia) PTY. Ltd., 1981, 1982, 1983, 2003 Sony Music Entertainment Inc.",8371 +8372,spotify:track:135bOPTl0vo3P5o1oBJIux,Stuck In A Moment You Can't Get Out Of,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7k7aHoW1MGWWQR0KXvswkx,U218 Singles (Deluxe Version),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a589a051c46a5ff41125e9d6,1,8,272346,https://p.scdn.co/mp3-preview/caab4dec8be7cbd7ac82585e5d915ef7c58ee80d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN0000226,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.527,0.61,4.0,-5.819,1.0,0.0237,0.422,0.000203,0.281,0.331,158.478,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",8372 +8373,spotify:track:3wJVBz7gvGTwTWVAxFa6ny,Fever,"spotify:artist:6M2wZ9GZgrQXHCFfjv46we, spotify:artist:3QVolfxko2UyCOtexhVTli","Dua Lipa, Angèle",spotify:album:35c9iadFgrCWLY0tuJH23H,Fever,"spotify:artist:6M2wZ9GZgrQXHCFfjv46we, spotify:artist:3QVolfxko2UyCOtexhVTli","Dua Lipa, Angèle",2020-10-29,https://i.scdn.co/image/ab67616d0000b273d3f071a4f79dafdd5d9e8b01,1,1,156910,https://p.scdn.co/mp3-preview/8bc5e53c711b522a7009b3784263f17c75d1c0c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAHT2000834,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,belgian pop,french pop,variete francaise",0.868,0.693,6.0,-7.052,0.0,0.181,0.0597,0.00399,0.106,0.396,114.999,4.0,,Warner Records,"C under exclusive license to Warner Records UK, a division of Warner Music UK Limited, © 2020 Dua Lipa Limited, P under exclusive license to Warner Records UK, a division of Warner Music UK Limited, ℗ 2020 Dua Lipa Limited",8373 +8374,spotify:track:08bNPGLD8AhKpnnERrAc6G,FRIENDS,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:1zNqDE7qDGCsyzJwohVaoX","Marshmello, Anne-Marie",spotify:album:1BmxOYHjQv1dKZRr13YRZM,FRIENDS,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:1zNqDE7qDGCsyzJwohVaoX","Marshmello, Anne-Marie",2018-02-09,https://i.scdn.co/image/ab67616d0000b273569f64493ca55cd96fdee412,1,1,202620,https://p.scdn.co/mp3-preview/6245dd62009fbbe6c5479d10d5470024553d60d0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,GBAHS1800025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,edm,pop,progressive electro house,pop",0.626,0.88,9.0,-2.384,0.0,0.0504,0.205,0.0,0.128,0.534,95.079,4.0,,Atlantic Records UK,"C © 2018 Asylum Records, a division of Atlantic Records UK, a Warner Music Group Company, P ℗ 2018 Joytime Collective under exclusive licence to Asylum Records a division of Atlantic Records UK, a Warner Music Group Company",8374 +8375,spotify:track:3bgrrmGOh23O97dSvnklcK,Crying In The Chapel,spotify:artist:5iA3hgdfblCifdxOrPvJMF,Peter Blakeley,spotify:album:5cFuMkFosnO9Zqq9tZ9rh0,Harry's Cafe De Wheels,spotify:artist:5iA3hgdfblCifdxOrPvJMF,Peter Blakeley,1990-01-01,https://i.scdn.co/image/ab67616d0000b27322160a66c0066650d6453c67,1,1,222333,https://p.scdn.co/mp3-preview/0f593a444e482338366a15c75751f99d13c9d144?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USCA28900106,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.757,0.666,8.0,-13.615,1.0,0.0295,0.143,2.8e-06,0.0592,0.951,119.986,4.0,,Capitol Records,"C © 1990 Capitol Records, LLC, P ℗ 1990 Capitol Records, LLC",8375 +8376,spotify:track:3X7abqSXC4xrxuC1ykpWcY,Livin' On A Prayer,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:3Ad4QdO0EJr1c2livr9cmm,Bon Jovi Greatest Hits,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,2010-01-01,https://i.scdn.co/image/ab67616d0000b273f0d41275363a36b5772b49b2,1,1,250626,https://p.scdn.co/mp3-preview/2a84c209d6bfe17da820bbc28d1e610a5d304a53?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR38619998,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.522,0.882,0.0,-3.216,1.0,0.0359,0.0599,0.00021,0.33,0.815,122.541,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",8376 +8377,spotify:track:2wWdwNwfYiI7bSCGYtq0Un,Light My Fire,spotify:artist:7K78lVZ8XzkjfRSI7570FF,José Feliciano,spotify:album:4BppvR0nLDQ3uh3b3NCu2R,Mis Favoritas,spotify:artist:7K78lVZ8XzkjfRSI7570FF,José Feliciano,2011-09-05,https://i.scdn.co/image/ab67616d0000b273f46832a71f85b950436d87b3,1,14,215133,https://p.scdn.co/mp3-preview/685e6befbf8a44f09a1b76c5528c973ef81a8d6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USRC19405069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,puerto rican pop",0.479,0.546,4.0,-6.619,0.0,0.035,0.708,0.031,0.35,0.761,108.372,4.0,,Sony Music Latin,P Compilation (P) 2011 Sony Music Entertainment US Latin LLC,8377 +8378,spotify:track:0J1JdPuKQ1uUOueYLEU2BC,Having a Party,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,spotify:album:2Dpw2XUAsBvuNdNLarNzz8,The Best of Sam Cooke,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,1962,https://i.scdn.co/image/ab67616d0000b273a931553dd32099aa87088ecf,1,11,157296,https://p.scdn.co/mp3-preview/bac6371386596d4aa3579e73c1775e84fd9f306e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USRC10501183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,soul,vocal jazz",0.526,0.555,7.0,-9.523,0.0,0.0456,0.532,0.0,0.388,0.736,123.615,4.0,,RCA/Legacy,"P This compilation (P) 2010 RCA Records, a division of Sony Music Entertainment",8378 +8379,spotify:track:4l0Yeb1SCLPuRXaKjORFhN,Lady Godiva - Mono; 2003 Remaster,spotify:artist:6lHC2EQMEMZiEmSfFloarn,Peter And Gordon,spotify:album:4J3Ei1ibnoclDjwNPYy4LJ,Peter And Gordon (1966) Plus,spotify:artist:6lHC2EQMEMZiEmSfFloarn,Peter And Gordon,1966-01-01,https://i.scdn.co/image/ab67616d0000b2734953392518a15e07b086bccd,1,17,145933,https://p.scdn.co/mp3-preview/7ee3bb8dea9590f9eb0e90a230766aee7fb3d00d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,GBAYE0300663,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,british blues,british invasion",0.607,0.488,5.0,-8.846,0.0,0.0311,0.42,0.0,0.0609,0.838,124.601,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",8379 +8380,spotify:track:4UMmpE4kR6VVthIz4dwsP0,Itsy Bitsy Teenie Weenie Yellow Polkadot Bikini,spotify:artist:6YROFUbu5zRCHi2xkir5pk,Brian Hyland,spotify:album:5N7arssMwvUFFKTA6QT4BB,Itsy Bitsy Teenie Weenie Yellow Polkadot Bikini,spotify:artist:6YROFUbu5zRCHi2xkir5pk,Brian Hyland,2015-05-04,https://i.scdn.co/image/ab67616d0000b273b57f353ae524bfd77088fc93,1,1,143374,https://p.scdn.co/mp3-preview/3e273b4bca35759637e39744f67fd3cd9a05ff2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,QM4TW1568295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,doo-wop,merseybeat,rock-and-roll",0.804,0.419,3.0,-10.729,1.0,0.149,0.714,0.0,0.0486,0.962,123.839,4.0,,Sunday Club Records,C (C) 2015 Sunday Club Records,8380 +8381,spotify:track:5ULebABr6yD27jgCaBm1Lp,Levels,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,spotify:album:2YoTBTn4jykeDlHOI9sqnj,Nick Jonas X2,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,2015-11-20,https://i.scdn.co/image/ab67616d0000b2739974fbfa7cb7748d518d301b,1,15,167693,https://p.scdn.co/mp3-preview/4476c4dc0a5c03c9d510ffc01d377b1492b008a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71512568,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.429,0.671,5.0,-4.689,0.0,0.446,0.0497,0.0,0.265,0.684,198.709,4.0,,Universal Music Group,"C © 2015 Island Records, a division of UMG Recordings, Inc. / Safehouse Records, LLC, P ℗ 2015 Island Records, a division of UMG Recordings, Inc. / Safehouse Records, LLC",8381 +8382,spotify:track:0bsuSsRatN6sXKTnOMIwBb,Emma,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,spotify:album:21WO1b9XPMwVxk4B57HVHo,Cicero Park,spotify:artist:72VzFto8DYvKHocaHYNWSi,Hot Chocolate,1974,https://i.scdn.co/image/ab67616d0000b27317e5b933c43cbaa2030bb9e0,1,5,232040,https://p.scdn.co/mp3-preview/5db145dc3a913562dab16ced7a4c1b3c5f2a8806?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBAYE7400053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.632,0.609,2.0,-6.69,1.0,0.0902,0.317,0.00141,0.0788,0.767,100.625,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",8382 +8383,spotify:track:3MeL7vAsVbgSrGFd0HioaJ,Forget You,spotify:artist:5nLYd9ST4Cnwy6NHaCxbj8,CeeLo Green,spotify:album:5uR0dqBMYWZFYJT7mvPZ82,The Lady Killer (Deluxe),spotify:artist:5nLYd9ST4Cnwy6NHaCxbj8,CeeLo Green,2010-11-09,https://i.scdn.co/image/ab67616d0000b2731c44d79c994c1a26aa387617,1,3,222733,https://p.scdn.co/mp3-preview/e7374ffebab0ea1fce2a2c5f147228e6a5adca28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USAT21001778,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,pop rap",0.696,0.875,0.0,-3.682,1.0,0.0649,0.134,0.0,0.159,0.772,127.39,4.0,,Radiculture/Elektra,"C © 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",8383 +8384,spotify:track:41DpvNasaZdQzQqQYntd0o,Aeroplane,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:74cQBDmkkzRBntR064f0SD,One Hot Minute,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,1995-09-12,https://i.scdn.co/image/ab67616d0000b27384b9d450917fbae37b2e3d91,1,2,285066,https://p.scdn.co/mp3-preview/7e2eb38ccc3fd7ae829df8689f2aa7efbfaafa06?cid=9950ac751e34487dbbe027c4fd7f8e99,True,43,USWB19500363,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.639,0.839,5.0,-4.703,1.0,0.0634,0.0446,3.74e-06,0.468,0.603,101.447,4.0,,Warner Records,"C © 1995 Warner Records Inc., P ℗ 1995 Warner Records Inc.",8384 +8385,spotify:track:6IctRzzSyMt5OtAjPaXgd4,Take Me Bak 'Ome,spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,spotify:album:0gAA09tbZAALAGebq8R3mW,Sladest (Expanded),spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,1973-09-28,https://i.scdn.co/image/ab67616d0000b27323840816dd15f4053bdd494d,1,8,195973,https://p.scdn.co/mp3-preview/cf9360f8e91d7f0db95888fa054b25f23a34f172?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBC267200020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.372,0.898,9.0,-4.425,1.0,0.0959,0.0189,3.06e-06,0.0669,0.663,130.023,4.0,,BMG Rights Management (UK) Limited,"C © 2011 Whild John Ltd. under exclusive licence to BMG Rights Management (UK) Ltd., P ℗ 2011 Whild John Ltd. under exclusive licence to BMG Rights Management (UK) Ltd.",8385 +8386,spotify:track:2GgxS8bUT5G25QJTsfSv0R,Burn,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:2Dw4fYqDQnxsgoXDdMbqh3,Halcyon Days,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2014-01-01,https://i.scdn.co/image/ab67616d0000b27360a98c3be4daffefe9014c7e,1,15,231211,https://p.scdn.co/mp3-preview/948398ed1f816b6558e435554d3ef45d1399b7a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBUM71303482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.559,0.777,1.0,-5.031,1.0,0.0432,0.31,0.0,0.105,0.329,87.016,4.0,,Polydor Records,"C © 2014 Polydor Ltd. (UK), P ℗ 2014 Polydor Ltd. (UK)",8386 +8387,spotify:track:6hTBP6QLwJdxbKyLlLXrGo,Let's Talk About Sex,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,spotify:album:4iCiqnufcdAdTyKrkKGwqR,Blacks' Magic,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,1990-01-01,https://i.scdn.co/image/ab67616d0000b2732cdf80d702f69bfebaa6af87,1,10,213266,https://p.scdn.co/mp3-preview/a5b1559f9bb17a1bdb21767179f28cd5d26d8a7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USIR20180412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop",0.863,0.543,6.0,-13.497,1.0,0.13,0.0507,0.0,0.241,0.799,106.929,4.0,,Island Def Jam,"C © 1990 UMG Recordings, Inc., P ℗ 1990 UMG Recordings, Inc.",8387 +8388,spotify:track:4vvFgtr3s1Bbt6NrgCgyX3,I Don't Remember,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:20NuHYF4fcLXgQcqkjq9rI,Footprints: The Best of Powderfinger 2001 - 2011,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b27329c8f244b0044e3aaac83927,1,9,220386,https://p.scdn.co/mp3-preview/ffdbc0e2adb68da74cb7d432267a051044d8a65c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70700158,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.286,0.675,4.0,-4.742,1.0,0.0345,8.73e-05,1.23e-05,0.246,0.486,178.033,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P This Compilation ℗ 2011 Universal Music Australia Pty Ltd.",8388 +8389,spotify:track:7gQAFGUyHPcY0cQNPsjMf0,Crying at the Discoteque - Radio Edit,spotify:artist:5HnkAAaf0MCIxMWzsJNrdg,Alcazar,spotify:album:5FWRzWPvOHCxOoo0ibUfI5,Casino,spotify:artist:5HnkAAaf0MCIxMWzsJNrdg,Alcazar,1999-12-30,https://i.scdn.co/image/ab67616d0000b27385e78df7d2c89c311bcd567b,1,2,231533,https://p.scdn.co/mp3-preview/49e5d2ff33f43a52f38687fab710810b88ab35bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,SEBMA0065010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,swedish electropop,swedish pop",0.705,0.927,9.0,-5.942,0.0,0.0426,0.0703,0.0,0.0661,0.962,138.017,4.0,,Ariola,P (P) 2001 BMg Sweden AB,8389 +8390,spotify:track:1ZqBzsfPKShlR1PILDx4Ey,Your Love Is My Drug,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:7jvZDeVK5NRP4uafgJzHAC,So Fresh The Hits of Summer 2011 + The Best Of 2010,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-01-01,https://i.scdn.co/image/ab67616d0000b2731c2dfb07e0d459e66592ed90,2,4,187960,https://p.scdn.co/mp3-preview/8fc78e277e1e5249c6d43078533d55df5e3378de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10900735,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.822,0.604,1.0,-4.527,1.0,0.106,0.00848,0.0,0.0954,0.704,120.043,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Universal Music Australia Pty Ltd., P ℗ 2010 Universal Music Australia Pty Ltd.",8390 +8391,spotify:track:5WwqdeavrQrbeAMDxGawse,Can't Fight This Feeling,spotify:artist:55vs7NT1KxcFjbMC4y202E,REO Speedwagon,spotify:album:35KafpmKh0nDLzBLV75MpR,Wheels Are Turnin',spotify:artist:55vs7NT1KxcFjbMC4y202E,REO Speedwagon,1984-11-05,https://i.scdn.co/image/ab67616d0000b273b815265c56ecfa5136a4015d,1,6,294773,https://p.scdn.co/mp3-preview/47811ce4b58e8fb058e13bdfb21225aa357a5c9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM18400442,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.408,0.48,9.0,-11.017,1.0,0.0266,0.155,1.82e-05,0.0877,0.19,156.344,4.0,,Epic,P (P) 1984 Sony Music Entertainment,8391 +8392,spotify:track:1zGzAMc21oKstWlEvXRp2i,Dream Girl,spotify:artist:7Ls9QwSDJmmP65RnnEJBT8,David Jones,spotify:album:6itPRfFQncP30pMqNV7Pvh,David Jones,spotify:artist:7Ls9QwSDJmmP65RnnEJBT8,David Jones,1965,https://i.scdn.co/image/ab67616d0000b273fb92feba83552414d2704d34,1,8,136293,https://p.scdn.co/mp3-preview/66297121c72ff399afb8c18e8768afa75e5ed227?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USRH11102280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.617,0.658,0.0,-9.223,1.0,0.0512,0.494,0.0,0.293,0.949,128.363,4.0,,Rhino,"C © 1965 Rhino Entertainment Company., P ℗ 2011 Rhino Entertainment Company, A Warner Music Group Company.",8392 +8393,spotify:track:3uVEtIOcyE7rGAqcWJt95h,Bruises,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,spotify:album:2wiPF3m0ylst0JSk1IvZL8,Divinely Uninspired To A Hellish Extent (Extended Edition),spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,2019-11-22,https://i.scdn.co/image/ab67616d0000b2737b9639babbe96e25071ec1d4,1,2,220200,https://p.scdn.co/mp3-preview/c890dd9278748cb15d2a578a7db868e4320e87b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBKPL1778698,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.746,0.322,1.0,-7.922,0.0,0.0798,0.944,0.0,0.197,0.321,110.774,4.0,,Vertigo Berlin,"C © 2019 Universal Music GmbH, P ℗ 2019 Universal Music GmbH",8393 +8394,spotify:track:0QXtw4rDLQtpzqPS4uJbZJ,Give Me All Your Luvin',"spotify:artist:6tbjWDEIzxoDsBA1FuhfPW, spotify:artist:0hCNtLu0JehylgoiP8L4Gh, spotify:artist:0QJIPDAEDILuo8AIq3pMuU","Madonna, Nicki Minaj, M.I.A.",spotify:album:2trAegxlPgPnZHfYrUNvp0,MDNA,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2012-01-01,https://i.scdn.co/image/ab67616d0000b273a1e03980266fb9fa105cbc51,1,5,202760,https://p.scdn.co/mp3-preview/9da0aa9ce26456c3fb9ec0c7920f481de16cc338?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USUG11200184,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,hip pop,pop,queens hip hop,rap,escape room,indietronica,new rave",0.68,0.885,11.0,-4.345,1.0,0.0382,0.00563,0.000756,0.379,0.877,144.998,4.0,,Interscope,"C © 2012 Boy Toy, Inc., Exclusively licensed to Live Nation Worldwide, Inc. Exclusively licensed to Interscope Records, P ℗ 2012 Boy Toy, Inc., Exclusively licensed to Live Nation Worldwide, Inc. Exclusively licensed to Interscope Records",8394 +8395,spotify:track:300zfRaCgTmEm5Eqe3HqZZ,Ghostbusters,spotify:artist:0NyzfcGDZZ6GM25EBG9BYK,Ray Parker Jr.,spotify:album:1Fq1oCtmlSQabl1zIdoWCg,Arista Heritage Series: Ray Parker,spotify:artist:0NyzfcGDZZ6GM25EBG9BYK,Ray Parker Jr.,2000-02-08,https://i.scdn.co/image/ab67616d0000b27332f8412a7cae5f847aef07d8,1,4,240800,https://p.scdn.co/mp3-preview/107e8dfabb7be6126043e6ad26b86badd819675d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAR18400117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,theme,0.779,0.717,6.0,-9.7,0.0,0.0335,0.0125,0.0536,0.355,0.789,115.384,4.0,,Arista,"P (P) 1978, 1980, 1982, 1984, 2000 Arista Records, Inc.",8395 +8396,spotify:track:6wqGAJqHiWW6FeJclvCRVL,Lovers in Japan,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:1MnAljVs4hcGU6pTcK2jdT,Viva La Vida (Prospekt's March Edition),spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2008-11-24,https://i.scdn.co/image/ab67616d0000b2735ec1e1f1d2e6d752d8e3f37e,1,5,411013,https://p.scdn.co/mp3-preview/b90f0e221a8175ec8fb6e79cc9a61af04bc0e4ed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,GBAYE0800256,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.202,0.733,7.0,-7.599,1.0,0.0446,0.0427,0.696,0.243,0.0728,118.217,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",8396 +8397,spotify:track:6cmgXQozMvu3LJgT9Z8HPC,Catch My Disease,spotify:artist:06y1hH4hu3rcTUXHJevPCf,Ben Lee,spotify:album:31vkFfU7fegCtuirdMqxtE,Awake Is The New Sleep,spotify:artist:06y1hH4hu3rcTUXHJevPCf,Ben Lee,2005-02-22,https://i.scdn.co/image/ab67616d0000b273a56b2221973d8de4ebba89a5,1,4,253653,https://p.scdn.co/mp3-preview/66bbf79df5d3e9d6f5f14153b4acbf4df1861e13?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US27Q0460704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian pop,australian rock",0.766,0.684,11.0,-6.28,1.0,0.0324,0.0199,2.15e-05,0.173,0.929,115.983,4.0,,New West,"P (P) 2005 New West Records, LLC",8397 +8398,spotify:track:73QQXxidIpNmhR7LnWQe0g,Hustle,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:6SyaEkEVLhdzhdWBWlNtUL,Hustle,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2019-03-27,https://i.scdn.co/image/ab67616d0000b2737abf3e20f5dc43b8e2dc7447,1,1,175599,https://p.scdn.co/mp3-preview/ce7c01095341b0e10d63f351aeca15eccd852123?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USRC11900547,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.724,0.813,9.0,-5.083,0.0,0.334,0.0564,0.0,0.0842,0.56,97.038,4.0,,RCA Records Label,"P (P) 2019 RCA Records, a division of Sony Music Entertainment",8398 +8399,spotify:track:6St9lR6dhV2tpCNVz7qfrS,In My Head,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:0DEsmIQ5ir7tz52Nkf4i1K,Jason Derulo (International),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2010-02-26,https://i.scdn.co/image/ab67616d0000b273293e8055dd8814fcdf4742f7,1,3,199026,https://p.scdn.co/mp3-preview/8924a764249c24b4a7f767e5016f8bf3824a515f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USWB10904633,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.762,0.748,0.0,-4.15,0.0,0.033,0.0266,0.0,0.348,0.851,110.009,4.0,,Beluga Heights/Warner Records,"C © 2010 Warner Records Inc., P ℗ 2010 Warner Records Inc.",8399 +8400,spotify:track:5zF2zGPkL6Ipsn9AfAK6RP,This Love,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:7gGcnUEEQgIMV2JRwVQbrF,Songs About Jane,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2002-06-25,https://i.scdn.co/image/ab67616d0000b273fb869ab46e93e7069c67134f,1,2,206200,https://p.scdn.co/mp3-preview/05d17c445a19455c74237d48b5d6e780f899f1ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJAY0300080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.714,0.868,5.0,-4.596,0.0,0.0363,0.0551,0.0,0.0987,0.78,95.05,4.0,,Universal Music Group,"C © 2007 A&M/Octone Records, P ℗ 2007 A&M/Octone Records",8400 +8401,spotify:track:4VbDJMkAX3dWNBdn3KH6Wx,Helena Beat,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,spotify:album:7Kmmw7Z5D2UD5MVwdm10sT,Torches,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,2011-05-23,https://i.scdn.co/image/ab67616d0000b273121d5f92cf90576907dfb1e5,1,1,276173,https://p.scdn.co/mp3-preview/3e9398063b1dcd2dd3d2c1e4ff57284022a0981f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM11005693,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern alternative rock,modern rock,rock",0.67,0.876,5.0,-4.905,0.0,0.0536,0.0127,0.00302,0.109,0.736,126.968,4.0,,Columbia,"P (P) 2010, 2011 Sony Music Entertainment",8401 +8402,spotify:track:46K6ha7ewGSY30ob1B0JMI,"Tonight, I Celebrate My Love",spotify:artist:0GQDNe6VaOC1CHlG1wBzyN,Peabo Bryson with Roberta Flack,spotify:album:5SUJuwK3WUmX1OxrJUiw6n,"Bedroom Classics, Vol. 2",spotify:artist:49iKbKGqgn8OESkW5WduX0,Peabo Bryson,2005-03-22,https://i.scdn.co/image/ab67616d0000b273d8ec9455bcbba7ff1897dbe3,1,3,209626,https://p.scdn.co/mp3-preview/4cf5182b867b4a8dcf39901a137c7241d44a483e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USRHD0530170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.439,0.35,3.0,-9.639,1.0,0.0293,0.753,4.16e-05,0.15,0.176,117.081,4.0,,Rhino/Elektra,"C © 2005 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2005 Elektra Entertainment Group Manufactured & Marketed by Warner Strategic Marketing",8402 +8403,spotify:track:5r5GXkI2BY9Lpp2qqa5ahf,She's The One,spotify:artist:6Lycpe225dRqZS3abnkNuE,The Cockroaches,spotify:album:3ztnDeBF4B2dkQkruoiiKd,The Cockroaches,spotify:artist:6Lycpe225dRqZS3abnkNuE,The Cockroaches,1987-06-01,https://i.scdn.co/image/ab67616d0000b27344ca4e23bd93514deccf5236,1,1,152960,https://p.scdn.co/mp3-preview/6d947e19cc981c832bcc19cf397f733036db82aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAB01400280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.604,0.635,0.0,-14.205,1.0,0.0294,0.0699,7.63e-06,0.167,0.913,166.515,4.0,,Universal Music Group,"C © 1987 The Cockroaches, exclusively licensed to the Australian Broadcasting Corporation, P ℗ 1987 The Cockroaches, exclusively licensed to the Australian Broadcasting Corporation",8403 +8404,spotify:track:54tWzW3JZe9KsHSzYDQzUO,Concrete And Clay,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:0ytyL1t6abbFa3FDGmhruw,Surf & Mull & Sex & Fun: The Classic Recordings Of Mental As Anything,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,2019-10-25,https://i.scdn.co/image/ab67616d0000b2733afcb92e2acf52ecefda7eee,1,21,165275,https://p.scdn.co/mp3-preview/15d3fe1f0c648db09088b98657c0a8c57aa4b244?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUWA00900095,spotify:user:bradnumber1,2022-11-21T04:39:16Z,australian rock,0.56,0.851,2.0,-6.519,1.0,0.0414,0.0972,0.0,0.0682,0.862,92.652,4.0,,Universal Music Australia Pty. Ltd.,"C © 2019 Syray Music, P ℗ 2019 Syray Music",8404 +8405,spotify:track:7ks6AZmFcm3Y6PGGxGSmlB,Where Them Girls At (feat. Nicki Minaj & Flo Rida),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","David Guetta, Flo Rida, Nicki Minaj",spotify:album:4bTjdxhRRUiWfwj200f9Kl,Nothing but the Beat (Ultimate Edition),spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2012-12-07,https://i.scdn.co/image/ab67616d0000b2735c8cfe4b2c4aa89c9c92108e,1,10,194840,https://p.scdn.co/mp3-preview/66097ef2519b9e7227e7362ccb5b039e50be3eca?cid=9950ac751e34487dbbe027c4fd7f8e99,True,74,FRZID1100110,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,dance pop,miami hip hop,pop,pop rap,hip pop,pop,queens hip hop,rap",0.666,0.876,3.0,-3.078,1.0,0.0414,0.055,0.0,0.259,0.552,129.884,4.0,,Parlophone (France),"C © 2012 What A Music Ltd., licence exclusive Parlophone Music France, P ℗ 2012 What A Music Ltd., licence exclusive Parlophone Music France",8405 +8406,spotify:track:0r5u9i2GzrqzU2Pv0eIvVq,Superwoman,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,spotify:album:0neqylYFL6s6Ikdf3UFmUo,As I Am,spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2007-11-09,https://i.scdn.co/image/ab67616d0000b2730e7e087dea9187d221f7976d,1,3,274106,https://p.scdn.co/mp3-preview/8fdc7d57680295c23b302e285a584520284b446b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJAY0700218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b",0.553,0.495,0.0,-8.251,1.0,0.0364,0.285,0.00359,0.125,0.126,81.068,4.0,,J Records,"P (P) 2007 RCA/JIVE Label Group, a unit of Sony Music Entertainment",8406 +8407,spotify:track:5TewgNx79xxmaPz1yjdrgj,"Danger Zone - From ""Top Gun"" Original Soundtrack",spotify:artist:3Y3xIwWyq5wnNHPp5gPjOW,Kenny Loggins,spotify:album:0aAtSw6p6dKW33Azdc0Ihq,TOP GUN/SOUNDTRACK,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1986-06-30,https://i.scdn.co/image/ab67616d0000b27354c5478cbb4de237fecf5e54,1,1,211626,https://p.scdn.co/mp3-preview/71f394b84ea43ccba057c0fe34cac5010547fcf6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM18600108,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new wave pop,singer-songwriter,soft rock,yacht rock",0.549,0.903,3.0,-7.179,0.0,0.0394,0.289,0.0,0.0929,0.75,157.31,4.0,,Columbia,P (P) 1986 Sony Music Entertainment / (P) 1986 Sony Music Entertainment (Canada) Inc.,8407 +8408,spotify:track:0bORa4VpL8NzyMXEI6UFGK,Long Road To Ruin,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:3ilXDEG0xiajK8AbqboeJz,"Echoes, Silence, Patience & Grace",spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2007-09-25,https://i.scdn.co/image/ab67616d0000b27383e260c313dc1ff1f17909cf,1,4,224880,https://p.scdn.co/mp3-preview/d502a9cbe3b2f5412891416998f0c8afe317a70b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USRW30700010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.401,0.888,0.0,-3.793,1.0,0.0401,0.000367,0.0,0.12,0.365,146.781,4.0,,RCA Records Label,"P (P) 2007 Roswell Records, Inc.",8408 +8409,spotify:track:14GRd9N57h1rTou0rPts0i,"Burning Heart - From ""Rocky IV"" Soundtrack",spotify:artist:26bcq2nyj5GB7uRr558iQg,Survivor,spotify:album:5SPoOMzF5s2ff8LJ2W6oyH,The Rocky Story,spotify:artist:3huVQoEWdqUTvlYpFVUHcF,Original Soundtrack,1990-04-14,https://i.scdn.co/image/ab67616d0000b27367c0a118cc63685a9f6d4f63,1,2,232173,https://p.scdn.co/mp3-preview/15a553b960ad5436994031820fee6c0bed7c4820?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USVR19300003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam metal,hard rock,soft rock",0.659,0.626,9.0,-9.189,0.0,0.0272,0.288,6.26e-06,0.0968,0.66,97.996,4.0,,Volcano,"P (P) 1990 Volcano Entertaiment, III, L.L.C.",8409 +8410,spotify:track:4w1lzcaoZ1IC2K5TwjalRP,A Thousand Miles,spotify:artist:5ILrArfIV0tMURcHJN8Q07,Vanessa Carlton,spotify:album:5e7T2qUigzt0oIr50KsOld,Be Not Nobody,spotify:artist:5ILrArfIV0tMURcHJN8Q07,Vanessa Carlton,2002-04-30,https://i.scdn.co/image/ab67616d0000b273bc3ada3a19bb4e657f10917e,1,3,237493,https://p.scdn.co/mp3-preview/1dab77144140b38cf360a7e770f002335884954f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USIR10210955,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,neo mellow,piano rock,pop rock,post-teen pop",0.56,0.825,11.0,-3.862,1.0,0.0379,0.323,0.0,0.161,0.268,94.931,4.0,,A&M,"C © 2002 A&M Records, P ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",8410 +8411,spotify:track:40h65HAR8COEoqkMwUUQHu,Peaceful Easy Feeling - 2013 Remaster,spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,spotify:album:51B7LbLWgYLKBVSpkan8Z7,Eagles (2013 Remaster),spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,1972-06-01,https://i.scdn.co/image/ab67616d0000b273c13acd642ba9f6f5f127aa1b,1,9,257962,https://p.scdn.co/mp3-preview/2b5b9400d354e0c4bd6f079dff55d37865c6b18b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USEE11300322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,heartland rock,mellow gold,rock,soft rock,yacht rock",0.568,0.634,4.0,-12.336,1.0,0.0282,0.494,0.00281,0.252,0.866,142.686,4.0,,Rhino/Elektra,"C © 1972 Asylum Records, P ℗ 1972 Asylum Records. Marketed by Warner Stategic Marketing, a Warner Music Group Company.",8411 +8412,spotify:track:4GBq8IPJieQyxwpHfLCxAx,Kiss and Say Goodbye,spotify:artist:1DpIDwg8FGD50N9Tfunfsf,The Manhattans,spotify:album:4shPsyHdXeoYwJeqt10Ttq,The Best Of The Manhattans: Kiss And Say Goodbye,spotify:artist:1DpIDwg8FGD50N9Tfunfsf,The Manhattans,1995-10-30,https://i.scdn.co/image/ab67616d0000b2730454e8dda607461e79c2307e,1,1,265626,https://p.scdn.co/mp3-preview/7762bfcd0124ee00a7ed3e6803bb4dc0648b3705?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSM17500006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,motown,philly soul,quiet storm,soul",0.587,0.376,10.0,-13.52,1.0,0.0634,0.399,2.8e-06,0.156,0.655,129.199,4.0,,Legacy/Columbia,P (P) 1995 SONY BMG MUSIC ENTERTAINMENT,8412 +8413,spotify:track:0zmvQOn3dP2LLOENxz9XC3,AFTERGLOW,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,spotify:album:76hqEMQKrJpYntZVub1wlG,Garage Mahal,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,2002-07-10,https://i.scdn.co/image/ab67616d0000b2731125ed752f65ff13c714ed2e,1,1,247893,https://p.scdn.co/mp3-preview/2052fbb5ac60fc3763550fdc22c3ae72dfe55ea5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUWA00206270,spotify:user:bradnumber1,2022-04-20T22:23:37Z,"australian pop,australian rock",0.35,0.775,7.0,-6.3,1.0,0.0417,0.00121,6.85e-05,0.198,0.467,148.982,4.0,,WM Australia,"C © 2002 Warner Music Australia Pty Limited, P ℗ 2002 Warner Music Australia Pty Limited",8413 +8414,spotify:track:64VP3skE86iTvdOlbzuIcO,Great Balls Of Fire,spotify:artist:2zyz0VJqrDXeFDIyrfVXSo,Jerry Lee Lewis,spotify:album:02FCCye8QsWyjHwedg9Quj,Jerry Lee's Greatest,spotify:artist:2zyz0VJqrDXeFDIyrfVXSo,Jerry Lee Lewis,1961-12-01,https://i.scdn.co/image/ab67616d0000b27395788c15edfdca94ad6fa6ab,1,8,111535,https://p.scdn.co/mp3-preview/4daddb4f967c17844549d8e16beca7d475619760?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSE60370213,spotify:user:bradnumber1,2024-01-02T03:28:02Z,"piano rock,rock-and-roll,rockabilly",0.533,0.729,7.0,-7.227,0.0,0.0714,0.563,0.0,0.159,0.884,78.67,4.0,,Sun Records,"C © 1961 Sun Label Group, LLC, P ℗ 1961 Sun Label Group, LLC",8414 +8415,spotify:track:2mCoPoJKtIoUuqkvTsJs3Z,Boys Will Be Boys,spotify:artist:2u6qHMpQaE48aowjWKJeCM,Choirboys,spotify:album:2RUPcjcTFN1B4jxYe4RsIF,Big Bad Noise,spotify:artist:2u6qHMpQaE48aowjWKJeCM,Choirboys,1987,https://i.scdn.co/image/ab67616d0000b273a3a6751bbf9ebc1e966ecd5b,1,3,208506,https://p.scdn.co/mp3-preview/976adf3146598abbefce1a0c8aab666e6394fa0b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,AUMU08700094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.631,0.814,0.0,-8.591,1.0,0.0311,0.0556,0.00087,0.277,0.819,132.297,4.0,,WM Australia,"C © 1987 MUSHROOM RECORDS Pty Limited, P ℗ 1987 MUSHROOM RECORDS Pty Limited",8415 +8416,spotify:track:7CUVkezEM6rJykLY6KTJxQ,Message to My Girl,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,spotify:album:0ZB3WMYHlq9Pzmou6cXWDO,Conflicting Emotions,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,1983,https://i.scdn.co/image/ab67616d0000b273bfc07c82d7a816479e70dbc4,1,3,243973,https://p.scdn.co/mp3-preview/ae3f966b95cbe5b8d7f2c36b6ef4a5466a00f218?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUWA00601720,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,kiwi rock,zolo",0.601,0.607,1.0,-7.312,1.0,0.0279,0.0466,8.39e-05,0.0564,0.609,104.542,4.0,,WM Australia,"C © 2006 Warner Music Australia Pty Limited, P ℗ 2006 Warner Music Australia",8416 +8417,spotify:track:7MYX0Vu0uMjVLCiy804sdX,Summertime Sadness (Lana Del Rey Vs. Cedric Gervais) - Cedric Gervais Remix,"spotify:artist:00FQb4jTyendYWaN8pK0wa, spotify:artist:4Wjf8diP59VmPG7fi4y724","Lana Del Rey, Cedric Gervais",spotify:album:2vFyRm6ZrYI7ravDNolYsr,Summertime Sadness [Lana Del Rey vs. Cedric Gervais] (Cedric Gervais Remix),"spotify:artist:00FQb4jTyendYWaN8pK0wa, spotify:artist:4Wjf8diP59VmPG7fi4y724","Lana Del Rey, Cedric Gervais",2013-02-01,https://i.scdn.co/image/ab67616d0000b273646dad66629e45c839341886,1,1,214912,https://p.scdn.co/mp3-preview/9f7bcc0561d385b41853058d5e0a354b3cbe0ff7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBUM71304610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop,dutch house,edm,electro house,pop dance,progressive electro house",0.572,0.81,1.0,-5.791,0.0,0.0558,0.0157,6.53e-06,0.13,0.11,126.052,4.0,,Polydor Records,"C © 2013 Lana Del Rey, under exclusive licence to Polydor Ltd. (UK) / Interscope Records in the USA. Released in Australia & New Zealand through Universal Music Australia / Ministry of Sound Australia, P ℗ 2013 Lana Del Rey, under exclusive licence to Polydor Ltd. (UK) / Interscope Records in the USA. Released in Australia & New Zealand through Universal Music Australia / Ministry of Sound Australia",8417 +8418,spotify:track:0EKBV6GybPtALXUgWqWrym,The Story,spotify:artist:2sG4zTOLvjKG1PSoOyf5Ej,Brandi Carlile,spotify:album:23XH8Ej694esQAb3IYu00h,The Story,spotify:artist:2sG4zTOLvjKG1PSoOyf5Ej,Brandi Carlile,2007-04-03,https://i.scdn.co/image/ab67616d0000b2737ce8763fe2a173ad26ca3032,1,2,238493,https://p.scdn.co/mp3-preview/a5c7e561e6235f8a2495bc909c77a052aaefa477?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM10607485,spotify:user:bradnumber1,2022-01-12T23:20:20Z,"acoustic pop,ectofolk,folk,indie folk,lilith,modern folk rock,new americana",0.544,0.5,11.0,-8.253,1.0,0.026,0.0325,3.78e-06,0.109,0.177,93.621,4.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT,8418 +8419,spotify:track:4JIo8RztBbELr2gWJ5OGK6,Secret Love Song (feat. Jason Derulo),"spotify:artist:3e7awlrlDSwF3iM0WBjGMp, spotify:artist:07YZf4WDAMNwqr4jfgOZ8y","Little Mix, Jason Derulo",spotify:album:4bzVI1FElc13HQagFR7S1W,Get Weird (Deluxe),spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2015-11-06,https://i.scdn.co/image/ab67616d0000b2734e977ec3406c06c9401642d5,1,4,249813,https://p.scdn.co/mp3-preview/7746fbb287b6488216d9b6a6ab00ff65d7afbdc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1500073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop,dance pop,pop",0.539,0.643,9.0,-3.982,1.0,0.0479,0.256,0.0,0.29,0.136,92.962,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,8419 +8420,spotify:track:0Z2CgMqTyPxSMJVcZZ2rGX,Always,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:5uduy563XjmdkLryIna87r,Cross Road (Sound & Vision) [2CD/DVD Sound & Vision],spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1994,https://i.scdn.co/image/ab67616d0000b273ace2e8aa2dfdde12b3cb3158,1,4,353320,https://p.scdn.co/mp3-preview/3d08ed5b79bf883840ffcf61c43df5b068a5ea8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USPR39412221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.377,0.658,4.0,-5.589,1.0,0.0318,0.117,0.0,0.0677,0.307,143.713,4.0,,Universal International Music BV,"C (C) 2007 Universal International Music BV, P (P) 2007 Universal International Music BV",8420 +8421,spotify:track:5a4zLc4KfVOWGNpu0tkPRK,I Need Somebody,spotify:artist:6jaSo7MeMbXQCUOrNCF8tj,Bardot,spotify:album:6iIzs3NaIkhx03OwONRwc7,Play It Like That,spotify:artist:6jaSo7MeMbXQCUOrNCF8tj,Bardot,2001-11-12,https://i.scdn.co/image/ab67616d0000b273ac3d9d3f0c68c96029da3776,1,2,206413,https://p.scdn.co/mp3-preview/519fb6299b0bf4a076db94c3791c3bf2c352a7cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNHG1900069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.641,0.978,8.0,-6.727,1.0,0.247,0.258,9.7e-06,0.143,0.605,128.957,4.0,,LilliPilli IP,"C 2001 LilliPilli IP, P 2001 LilliPilli IP",8421 +8422,spotify:track:0TrPqhAMoaKUFLR7iYDokf,Know Your Worth,"spotify:artist:6LuN9FCkKOj5PcnpouEgny, spotify:artist:6nS5roXSAGhTGr34W6n7Et","Khalid, Disclosure",spotify:album:0uLz2ygHQAtLknyGasJOr5,Know Your Worth,"spotify:artist:6LuN9FCkKOj5PcnpouEgny, spotify:artist:6nS5roXSAGhTGr34W6n7Et","Khalid, Disclosure",2020-02-04,https://i.scdn.co/image/ab67616d0000b273b9cff3f017498dd08950775c,1,1,181436,https://p.scdn.co/mp3-preview/cadf00b884c08538b1e70d92d9eaab94d3e1a0e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USRC11903871,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop r&b,edm,house,indietronica,uk dance",0.79,0.694,9.0,-7.726,0.0,0.0708,0.145,0.00252,0.281,0.508,103.007,4.0,,"Right Hand Music Group, LLC/RCA Records","P (P) 2020 RCA Records, a division of Sony Music Entertainment",8422 +8423,spotify:track:1J9UPtMi1tbpktnu2J3oiR,I Wanna Be a Cowboy,spotify:artist:4Vu68x2xlwYZtz4ZVpz52g,Boys Don't Cry,spotify:album:5Z5Q2pke3MNAdVXJuVEGNO,All the Very Best,spotify:artist:4Vu68x2xlwYZtz4ZVpz52g,Boys Don't Cry,2020-04-25,https://i.scdn.co/image/ab67616d0000b273a081521ed9eff77a6a52839f,1,3,366155,https://p.scdn.co/mp3-preview/ce3ce0035a6c932767841e991e9cc6ac5774556d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,TCAET2031682,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave,0.754,0.63,0.0,-12.447,1.0,0.0397,0.0121,0.56,0.0651,0.758,142.558,4.0,,MICRORICH INC,"C 2020 MICRORICH INC, P 2020 MICRORICH INC",8423 +8424,spotify:track:17baAghWcrewNOcc9dCewx,Mockingbird,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:71xFWYFtiHC8eP99QB30AA,Curtain Call (Deluxe),spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2005-12-06,https://i.scdn.co/image/ab67616d0000b273a8a32ae2a279b9bf03445738,1,12,251266,https://p.scdn.co/mp3-preview/43887419c9301358d28b7d487dfeb078f9668a6a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,1,USIR10400813,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.621,0.672,4.0,-3.892,0.0,0.276,0.21,0.0,0.13,0.228,83.808,4.0,,Universal Music Group,"C © 2005 Aftermath Entertainment/Interscope Records, P ℗ 2005 Aftermath Entertainment/Interscope Records",8424 +8425,spotify:track:3KPwt1LBpt1jVSHz8GXERo,Feel like Makin' Love - 2015 Remaster,spotify:artist:5AEG63ajney2BoDXi0Vb84,Bad Company,spotify:album:1LgPUiosPMevbB4NHxcNiO,Straight Shooter,spotify:artist:5AEG63ajney2BoDXi0Vb84,Bad Company,1975,https://i.scdn.co/image/ab67616d0000b2739baa3a2390773faeca065aa8,1,2,313840,https://p.scdn.co/mp3-preview/183d936e69143edcae0cd6f6213b6e4e9979e54f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USAT21405193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,glam metal,hard rock,mellow gold,rock,singer-songwriter,soft rock,southern rock",0.543,0.529,7.0,-9.717,1.0,0.0301,0.326,0.00269,0.709,0.746,85.126,4.0,,Rhino Atlantic,"C © 2015 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved., P ℗ 2015 Rhino Entertainment Company, a Warner Music Group Company. Marketed by Rhino Entertainment Company.",8425 +8426,spotify:track:0IddqJw5uVK0nKrmdiIo6J,Up There Cazaly,spotify:artist:24a0mSTRh1lwYq7DqR3AoD,"Two Man Band\, The",spotify:album:55gg2Fcvk5a1hR1zDkiSKT,More Than a Game - the Footy Album,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1999,https://i.scdn.co/image/ab67616d0000b273dd1d0beb2b6562994af71336,1,3,170800,,False,0,AULB41700160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.269,0.851,0.0,-5.61,1.0,0.0494,0.336,0.0,0.309,0.519,85.22,4.0,,Fable Records,"C 1999 Fable Records, P 2017 Southern Cross Music Pty Limited",8426 +8427,spotify:track:6yqThFsiJG2jUEA6jdhruE,I Got You (I Feel Good),spotify:artist:7GaxyUddsPok8BuhxN6OUW,James Brown,spotify:album:6f8C6KCkU3ybGalzVqbXY8,Get On Up - The James Brown Story (Original Motion Picture Soundtrack),spotify:artist:7GaxyUddsPok8BuhxN6OUW,James Brown,2014-07-29,https://i.scdn.co/image/ab67616d0000b273378e07aab4c073076dbaf531,1,4,167346,https://p.scdn.co/mp3-preview/8a9fac11f510a6d5d6cd6ff903f6e8cd0c43dd54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USF066500010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,soul,vocal jazz",0.564,0.589,7.0,-6.692,1.0,0.138,0.412,3.35e-06,0.117,0.749,144.276,4.0,,Universal Music Group,"C © 2014 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2014 Universal Records, a Division of UMG Recordings, Inc.",8427 +8428,spotify:track:3aqTTareFsrd7gMeV7Qvif,How Deep Is Your Love,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:684Fi6YqIP9xU9JeboAgVM,Greatest,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1979-01-01,https://i.scdn.co/image/ab67616d0000b27340b421ae6b0a1206390cc52a,1,6,245200,https://p.scdn.co/mp3-preview/d9e96ef2af8fdf857c1e8dc255136e4836c6ae2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW7701005,spotify:user:bradnumber1,2021-08-08T09:27:32Z,"disco,mellow gold,soft rock",0.633,0.357,5.0,-9.366,0.0,0.0264,0.105,0.0,0.133,0.674,104.938,4.0,,Universal Music Group,"C © 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",8428 +8429,spotify:track:2M2XIGKd4sF8GcYteFN9n2,Until It Sleeps,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:2y3CggQI4N4EpMCGNHR56S,Load,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1996-01-01,https://i.scdn.co/image/ab67616d0000b273189f216b3b5b6483abec3a61,1,4,267933,https://p.scdn.co/mp3-preview/11c2a9795fdc309865c9eae8b0dd5ac38172ae73?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMC9600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.568,0.92,8.0,-4.434,0.0,0.0297,0.000248,0.0714,0.149,0.719,113.394,4.0,,Universal Music Group,"C © 1996 Metallica, P ℗ 1996 Metallica",8429 +8430,spotify:track:3d9DChrdc6BOeFsbrZ3Is0,Under the Bridge,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:30Perjew8HyGkdSmqguYyg,Blood Sugar Sex Magik (Deluxe Edition),spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,1991-09-24,https://i.scdn.co/image/ab67616d0000b273153d79816d853f2694b2cc70,1,11,264306,https://p.scdn.co/mp3-preview/46b0229c06712c5b5e143724c0617e51a9b6e432?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USWB19901576,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.559,0.345,4.0,-13.496,1.0,0.0459,0.0576,0.000105,0.141,0.458,84.581,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",8430 +8431,spotify:track:3xl7PsO7Hzuig6To9FgDm6,Left Outside Alone,spotify:artist:2siHvYaxjaW5rKVRiIrMYH,Anastacia,spotify:album:032ovDTHUzM5tWZeFqPPEA,Anastacia,spotify:artist:2siHvYaxjaW5rKVRiIrMYH,Anastacia,2004,https://i.scdn.co/image/ab67616d0000b273ff4a7c68133a6c9398be6b64,1,2,257426,https://p.scdn.co/mp3-preview/e70de308b4bcb928c9279fa29115ec050b8824f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM10400150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop soul,0.663,0.746,2.0,-3.567,0.0,0.0321,0.0697,0.0,0.0929,0.325,102.847,4.0,,Epic,P (P) 2004 Sony Music Entertainment Inc.,8431 +8432,spotify:track:0TfvkExNBkUhEkWwGMz71I,God Only Knows,spotify:artist:2l35CQqtYRh3d8ZIiBep4v,MKTO,spotify:album:5lpAXw4rMQajbfPxbc6boh,MKTO,spotify:artist:2l35CQqtYRh3d8ZIiBep4v,MKTO,2012,https://i.scdn.co/image/ab67616d0000b273b2f5c48752c54bce0c3892ca,1,3,195840,https://p.scdn.co/mp3-preview/bdb0eeec885443a0e52dd5a8875fb6ae71bfba3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USSM11305986,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.65,0.745,4.0,-3.969,1.0,0.028,0.0276,1.11e-06,0.206,0.649,114.974,4.0,,Columbia/M2V,"P (P) 2012, 2013, 2014 Columbia Records, a Division of Sony Music Entertainment",8432 +8433,spotify:track:7kMfu3KUydmrFVGEAhjtyl,Good Girls Go Bad (feat. Leighton Meester),"spotify:artist:2aYJ5LAta2ScCdfLhKgZOY, spotify:artist:481VlDdXZAIRxnHyywNbXn","Cobra Starship, Leighton Meester",spotify:album:41TUivD915ztiKgyu99H9T,Hot Mess,spotify:artist:2aYJ5LAta2ScCdfLhKgZOY,Cobra Starship,2009-08-07,https://i.scdn.co/image/ab67616d0000b273c83d25c1b9d5f384c32d834a,1,3,196413,https://p.scdn.co/mp3-preview/d790129bfbe891b89ad69dff5381662862b3b42f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USAT20901277,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neon pop punk,pop punk,post-teen pop",0.594,0.874,0.0,-3.716,1.0,0.0815,0.0116,0.0,0.549,0.628,119.964,4.0,,Decaydance/Fueled By Ramen,"C © 2009 Fueled By Ramen LLC All Rights Reserved., P ℗ 2009 Fueled By Ramen LLC All Rights Reserved.",8433 +8434,spotify:track:1oHxIPqJyvAYHy0PVrDU98,Drinking from the Bottle (feat. Tinie Tempah),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:0Tob4H0FLtEONHU1MjpUEp","Calvin Harris, Tinie Tempah",spotify:album:7w19PFbxAjwZ7UVNp9z0uT,18 Months,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2012-10-29,https://i.scdn.co/image/ab67616d0000b273dcef905cb144d4867119850b,1,9,240346,https://p.scdn.co/mp3-preview/9a754fa7217a26d34554f2dacf811a65b56e73ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBARL1201391,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,dance pop,grime,pop rap",0.665,0.886,9.0,-4.175,0.0,0.0514,0.0469,6.24e-05,0.0525,0.53,128.062,4.0,,Columbia,P (P) 2012 Sony Music Entertainment UK Limited,8434 +8435,spotify:track:1LKPYuJXIK8r6CJYThCZEU,Hair (Rerecorded),spotify:artist:4ZSzroBNV7HzBDO9aohuF1,The Cowsills,spotify:album:7FxYRsJscr7fha69a2Zcjl,The Cowsills - Their Very Best (Rerecorded),spotify:artist:4ZSzroBNV7HzBDO9aohuF1,The Cowsills,2007-12-23,https://i.scdn.co/image/ab67616d0000b273cabc622d51ef02d2b1650730,1,2,207786,https://p.scdn.co/mp3-preview/c3fdff149184743589eec3ac3d829df7132c726e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USDEI7903449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,underground power pop",0.623,0.377,0.0,-11.716,0.0,0.0375,0.106,0.0,0.0911,0.448,112.432,4.0,,K-Tel,"C 2007 K-tel, P 2007 K-tel",8435 +8436,spotify:track:0R9RcxbMmx4Q58IDFaKDJz,Lonely Blue Boy,spotify:artist:7gi3jmwpUpNWdswT8eEprF,Conway Twitty,spotify:album:5C43R8VfBKN6uIDeuAyORU,Here's Conway,spotify:artist:7gi3jmwpUpNWdswT8eEprF,Conway Twitty,2013-09-03,https://i.scdn.co/image/ab67616d0000b2735453a92e215caab4c7857fb7,1,8,136437,https://p.scdn.co/mp3-preview/b091095d55adddd9a80636339a3e738f320db506?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBGQH0604142,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"arkansas country,classic country pop,country,country rock",0.656,0.439,5.0,-9.489,1.0,0.0363,0.694,1.56e-06,0.117,0.671,112.851,3.0,,X5 Music Group,"C 2013 X5 Music Group, P 2013 X5 Music Group",8436 +8437,spotify:track:77f8ZOAkMqUe5OY7wgngKr,Runnin' (Dying To Live),"spotify:artist:1ZwdS5xdxEREPySFridCfh, spotify:artist:5me0Irg2ANcsgc93uaYrpb","2Pac, The Notorious B.I.G.",spotify:album:15ZFjyQp3PmOKwOp6lWJUF,Resurrection (Music From And Inspired By The Motion Picture),spotify:artist:1ZwdS5xdxEREPySFridCfh,2Pac,2003-01-01,https://i.scdn.co/image/ab67616d0000b273dc99ddd304766eb8bd34dc26,1,6,230786,https://p.scdn.co/mp3-preview/7a2c4a83ab2d41fa0fb9b0c88c391b50030322da?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10312319,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,rap,west coast rap,east coast hip hop,gangster rap,hardcore hip hop,hip hop,rap",0.531,0.799,10.0,-2.76,0.0,0.414,0.0459,0.000172,0.331,0.631,165.964,4.0,,Universal Music Group,"C © 2003 Amaru Entertainment, Inc., P ℗ 2003 Amaru Entertainment, Inc.",8437 +8438,spotify:track:7uzmGiiJyRfuViKKK3lVmR,Mine,spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl,Bazzi,spotify:album:5EEkfRgfYHiFu0lGur6Z6M,COSMIC,spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl,Bazzi,2018-04-12,https://i.scdn.co/image/ab67616d0000b273f9f2d43ff44bdfbe8c556f8d,1,14,131064,https://p.scdn.co/mp3-preview/c0a7b6ae1f9e5af8169b6aa870bf05c41933c8da?cid=9950ac751e34487dbbe027c4fd7f8e99,True,71,USAT21704227,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.71,0.789,4.0,-3.874,1.0,0.0722,0.0161,2.77e-06,0.451,0.717,142.929,4.0,,iamcosmic,"C 2018, P 2018",8438 +8439,spotify:track:15DwFznkBJir7AK9PyMyRR,17,spotify:artist:1yqxFtPHKcGcv6SXZNdyT9,MK,spotify:album:0K1826JxL1dViQBsEKApN5,17,spotify:artist:1yqxFtPHKcGcv6SXZNdyT9,MK,2017-09-01,https://i.scdn.co/image/ab67616d0000b273ee9487095bf2e593ac06f0d3,1,1,196489,https://p.scdn.co/mp3-preview/69f540c13f7e68556efbb296d2947151935af11f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBARL1701492,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"house,pop dance",0.703,0.832,0.0,-7.202,0.0,0.0689,0.00149,0.127,0.0696,0.667,122.029,4.0,,Columbia,P (P) 2017 Area10 / Big on Blue Entertainment Inc. under exclusive licence to Sony Music Entertainment UK Limited / Ultra Records LLC,8439 +8440,spotify:track:54ajFvckvt3v9HVdPyicru,Passerby,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,spotify:album:5o3qwXAf0DXEY5LDJ7cTSW,Passerby,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,2012-01-01,https://i.scdn.co/image/ab67616d0000b27349e9d0f49650425f03769f7a,1,1,214040,https://p.scdn.co/mp3-preview/55dd332759fe54cf7e264041236814f78c5faa4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71200824,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian psych,australian rock",0.638,0.828,2.0,-4.408,1.0,0.107,0.00153,0.0,0.105,0.408,117.007,4.0,,Universal Music Australia (Distribution),"C © 2012 Grinspoon, P ℗ 2012 Grinspoon",8440 +8441,spotify:track:6ebxt3Iylxe0GcEuUGlIvb,Dreaming of You,spotify:artist:6OiHleP2bHM18dXq4aZQWt,The Coral,spotify:album:6Fhnezpt7TKojq1ufkZ5qA,The Coral,spotify:artist:6OiHleP2bHM18dXq4aZQWt,The Coral,2002-02-26,https://i.scdn.co/image/ab67616d0000b2732cfbfcaccd52f76488c56418,1,4,141000,https://p.scdn.co/mp3-preview/ca764335f56fdc0cc9ec98e45544dd2440384a57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBETG0202031,spotify:user:bradnumber1,2022-06-07T08:59:15Z,britpop,0.441,0.684,9.0,-7.495,0.0,0.031,0.374,0.000848,0.108,0.971,199.001,4.0,,Sony Music CG,P (P) 2002 Deltasonic Record Limited,8441 +8442,spotify:track:4iBLjdxbL9VKzNEfPeZ6zR,R U Crazy - Radio Edit,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,spotify:album:1dSskLm3uE0Q5JjHolZ0de,R U Crazy,spotify:artist:6mU8ucezzms5I2kNH6HNlu,Conor Maynard,2013-10-04,https://i.scdn.co/image/ab67616d0000b273ec46a65c7f8b0ff5af1d4f73,1,1,207666,https://p.scdn.co/mp3-preview/b491da97c6f63c450455687c37ebb8d4e19b0db8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAYE1301353,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,uk pop,viral pop",0.546,0.586,7.0,-4.211,1.0,0.272,0.0699,0.0,0.109,0.819,89.089,5.0,,Parlophone UK,"C © 2013 Parlophone Records Ltd, A Warner Music Group Company, P ℗ 2013 Parlophone Records Ltd, A Warner Music Group Company",8442 +8443,spotify:track:23KvV9IE87PmHAHO50QKq9,Honey To The Bee - Single Version,spotify:artist:3RjnAn8EWb7zaLlGWVxQeP,Billie Piper,spotify:album:3sNtFp20Iy8BgiNtRwUJkI,The Very Best Of Billie Piper,spotify:artist:3RjnAn8EWb7zaLlGWVxQeP,Billie Piper,2005-01-01,https://i.scdn.co/image/ab67616d0000b2732ed2304fd3e47484d8dd64e6,1,6,304933,https://p.scdn.co/mp3-preview/362ac6c0d23e1e3c934265eb03f3ebc12cea65e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,GBAAA9900031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,europop,talent show",0.63,0.656,8.0,-7.633,1.0,0.0451,0.257,0.0,0.611,0.63,139.751,4.0,,Virgin Budget,"C © 2005 EMI Records Ltd, P This Compilation ℗ 2005 EMI Records Ltd",8443 +8444,spotify:track:1Sj8oInlMBZjy2lS9mwmEK,The Clapping Song,spotify:artist:79mvAIaa8bVyObPdeqs2i3,The Belle Stars,spotify:album:49lt16ScZyPFZtrT6U8w9m,Belle-Issima! Sweet Memories…,spotify:artist:79mvAIaa8bVyObPdeqs2i3,The Belle Stars,1981,https://i.scdn.co/image/ab67616d0000b2732789b68b13e40d350a987f30,1,11,195373,https://p.scdn.co/mp3-preview/be22cf87be3484682300ed2eada3b3d2750f1dc6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAFR8210058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.866,0.762,2.0,-9.256,1.0,0.207,0.0712,0.000116,0.148,0.662,88.972,4.0,,Edsel,"C (C) 2019 Demon Music Group Ltd., P (P) 1981 The Belle Stars",8444 +8445,spotify:track:1ZMiCix7XSAbfAJlEZWMCp,Falling,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,spotify:album:7xV2TzoaVc0ycW7fwBwAml,Fine Line,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,2019-12-13,https://i.scdn.co/image/ab67616d0000b27377fdcfda6535601aff081b6a,1,6,240133,https://p.scdn.co/mp3-preview/8d18a1a78e59131bf03cba65d124f803f5834ef6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USSM11912590,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.567,0.267,4.0,-6.502,1.0,0.0299,0.839,1.46e-06,0.089,0.0592,110.011,4.0,,Columbia,"P (P) 2019 Erskine Records Limited, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",8445 +8446,spotify:track:3pTYRUFEzU21WMpqsULLwU,This Time I Know It's For Real,spotify:artist:3KT9AeoTUPHKnntwQxlP9S,Young Divas,spotify:album:6uMZgyfpavnYnGa9pOWA70,Young Divas,spotify:artist:3KT9AeoTUPHKnntwQxlP9S,Young Divas,2006-11-14,https://i.scdn.co/image/ab67616d0000b2736b39fff29de478c2a2e8b189,1,2,234453,https://p.scdn.co/mp3-preview/846a87575ba2c7181c25da98d747fb8f20836ec6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUBM00600936,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.588,0.859,7.0,-8.719,1.0,0.0411,0.00019,0.0224,0.452,0.854,125.013,4.0,,Sony BMG Music Entertainment,P (P) 2006 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,8446 +8447,spotify:track:4txc3txsIt81diMzGhrVPS,wish you were gay,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,spotify:album:0l89FgpjfprAbdXegY4Xn3,wish you were gay,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,2019-03-04,https://i.scdn.co/image/ab67616d0000b273183f9dea5ccdf2a7eee97393,1,1,221543,https://p.scdn.co/mp3-preview/4aedf9c1b858723de6438021c9204f815efac64e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71900767,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.853,0.351,7.0,-10.198,1.0,0.241,0.39,9.38e-06,0.752,0.282,118.028,4.0,,Darkroom,"C © 2019 Darkroom/Interscope Records, P ℗ 2019 Darkroom/Interscope Records",8447 +8448,spotify:track:3APayTEWiUl9Ssep4BOXR2,Torn,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,spotify:album:5snQakFpbHsJmrAvhgeuHX,Glorious: The Singles 97-07,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,2007-09-05,https://i.scdn.co/image/ab67616d0000b273d538f5e07dc7405909514f09,1,3,244813,https://p.scdn.co/mp3-preview/bb94c2cb7c4cdbe22822e6893e92ec8312a8037e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBARL9700412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,lilith,new wave pop,pop rock",0.558,0.928,5.0,-3.04,1.0,0.0356,0.0746,5.44e-05,0.696,0.6,96.313,4.0,,Brightside Recordings,"P This compilation (P) 2007 Brightside Recordings, a division of Blue Sky Music Limited under exclusive license to Sony Music Entertainment UK Limited",8448 +8449,spotify:track:5R1A32AEuQbnVr9p15hn84,One More Chance,spotify:artist:3MM8mtgFzaEJsqbjZBSsHJ,Bloc Party,spotify:album:5a7Dn74V13183Gz2kcR38c,Intimacy,spotify:artist:3MM8mtgFzaEJsqbjZBSsHJ,Bloc Party,2008,https://i.scdn.co/image/ab67616d0000b2735d1fbaafb2bfc742ff7c0b45,1,14,279986,https://p.scdn.co/mp3-preview/3e8d137f3430d07a756ba10ea6e9a24c2055d4db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDNH0900201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,alternative rock,dance-punk,indie rock,indietronica,modern rock,neo-synthpop,new rave",0.59,0.881,0.0,-6.473,1.0,0.0505,0.000266,8.88e-06,0.0991,0.803,126.1,4.0,,Wichita Recordings,"C 2009 Bloc Party, under exclusive license to Wichita Recordings Ltd., P 2009 Bloc Party, under exclusive license to Wichita Recordings Ltd; except “One More Chanceâ€?: (P) 2009 Bloc Party, under exclusive license to Wichita Recordings Ltd.",8449 +8450,spotify:track:0z1b34WikhOH9ZxU8QDWcv,One Headlight,spotify:artist:0jJNGWrpjGIHUdTTJiIYeB,The Wallflowers,spotify:album:2BOlaNQt6WJ1HO5pQcKHGh,Bringing Down The Horse,spotify:artist:0jJNGWrpjGIHUdTTJiIYeB,The Wallflowers,1996-01-01,https://i.scdn.co/image/ab67616d0000b273e542fbcf1a83b7c726eb50a6,1,1,312626,https://p.scdn.co/mp3-preview/6b0a1c1ab240bd452e9645e6a495b6fc32000a46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USIR19600462,spotify:user:bradnumber1,2021-11-09T09:47:53Z,"pop rock,post-grunge",0.701,0.539,2.0,-8.968,1.0,0.0277,0.000655,0.005,0.0589,0.752,107.531,4.0,,Interscope,"C © 1996 Interscope Records, P ℗ 1996 Interscope Records",8450 +8451,spotify:track:6ml6iL8HUdQKgtMaehAZc8,Start Me Up - 2009 Re-Mastered Digital Version,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:1YvnuYGlblQ5vLnOhaZzpn,Tattoo You (2009 Re-Mastered),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1981-08-24,https://i.scdn.co/image/ab67616d0000b27361ce44658c2a0b453bde7d92,1,1,213066,https://p.scdn.co/mp3-preview/6b6f57d8c70b98d05ac1566144506874ef67ee6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70909474,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.631,0.932,5.0,-4.142,1.0,0.0354,0.0436,0.137,0.0918,0.971,122.429,4.0,,Universal Music Group,"C © 2009 Promotone B.V., under exclusive licence to Universal International Music B.V., P ℗ 2009 Promotone B.V., under exclusive licence to Universal International Music B.V.",8451 +8452,spotify:track:6RjKVXi31fui9m4dbiGRrL,I Knew You Were Trouble,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:5FerdPFXSHSnCVq4OBy4Ey,Red,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2012-10-22,https://i.scdn.co/image/ab67616d0000b2737d2f918a1b23f98ceb7510fa,1,4,219720,https://p.scdn.co/mp3-preview/9acb9a869e7bd8e7154c7d816c59f4cda6a42447?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1231039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.499,0.467,6.0,-6.744,1.0,0.0461,0.00593,1.65e-06,0.0361,0.637,76.76,4.0,,Universal Music Group,"C © 2012 Big Machine Records, LLC., P ℗ 2012 Big Machine Records, LLC.",8452 +8453,spotify:track:2nCXuFS4Dt4BpHkxA9rhPL,Eagle Rock - 2011 Remaster,spotify:artist:5ht2HGrvbN9eDWJarHsou6,Daddy Cool,spotify:album:4ZejRTERcKwWr0bc8CslGV,Daddy Who? Daddy Cool (40th Anniversary Edition),spotify:artist:5ht2HGrvbN9eDWJarHsou6,Daddy Cool,1971-07-01,https://i.scdn.co/image/ab67616d0000b2738a62b3ddb1b4eaa7739cc770,1,7,250066,https://p.scdn.co/mp3-preview/820bf3ea2ef0b2068dc3bf27950ba30e641d82e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,AUBM01100328,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.618,0.776,2.0,-5.16,1.0,0.0402,0.125,5.35e-05,0.0808,0.674,125.536,4.0,,Sony Music Entertainment,P (P) 1971 Sony Music Entertainment Australia Pty Ltd.,8453 +8454,spotify:track:2JWKzkQbYsNzx019WyGzaH,I Don't Want to Talk About It - 2008 Remaster,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,spotify:album:7vV3q5jE7DSuKsnHr7OmmN,Atlantic Crossing,spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT,Rod Stewart,1975,https://i.scdn.co/image/ab67616d0000b273e362eab0b5272915a217e501,1,6,288266,https://p.scdn.co/mp3-preview/b138ee402b328f5b144c3bbfa97e6a2659cd836d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USWB10807379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.472,0.373,3.0,-12.98,1.0,0.0262,0.871,0.2,0.147,0.46,135.189,4.0,,Rhino/Warner Records,"C 2008 © 1975 Warner Records Inc., P 2008 ℗ 1975 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",8454 +8455,spotify:track:1puwYWRSG7g0d8ChPmOV6t,Ain't That Loving You Baby,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:3ufobt4J5vaT3z7lgUub6a,"Elvis' Gold Records, Vol. 4",spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1968-01-22,https://i.scdn.co/image/ab67616d0000b273615da669de17a4432e5a4824,1,11,143013,https://p.scdn.co/mp3-preview/953bf0f258bf8a8882f343a0b2cf5c0a89507bd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USRC15805832,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.584,0.761,4.0,-10.087,1.0,0.0414,0.643,0.000776,0.079,0.913,138.143,4.0,,RCA/Legacy,P (P) 1968 Sony Music Entertainment,8455 +8456,spotify:track:39lnzOIUCSNaQmgBHoz7rt,Everyday,"spotify:artist:3wYyutjgII8LJVVOLrGI0D, spotify:artist:4r7JUeiYy24L7BuzCq9EjR","Buddy Holly, The Crickets",spotify:album:4Qy0SOU9Jg7Td10K68SanP,Buddy Holly,spotify:artist:3wYyutjgII8LJVVOLrGI0D,Buddy Holly,1958,https://i.scdn.co/image/ab67616d0000b27358816b5b546bdc2c0e7f6416,1,7,129120,https://p.scdn.co/mp3-preview/0ce85d6df42f24e51f7df62cdc20c463ebd0532d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USMC15703105,spotify:user:bradnumber1,2022-01-12T23:08:45Z,"classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,doo-wop,rock-and-roll,rockabilly",0.747,0.219,3.0,-12.562,1.0,0.0371,0.584,2.57e-05,0.107,0.498,135.562,4.0,,Geffen,"C © 1958 UMG Recordings Inc., P This Compilation ℗ 2015 UMG Recordings Inc.",8456 +8457,spotify:track:6rmeuhnICjrgsrcKM6af5L,Shout To The Top - Full Version,spotify:artist:3loflELg7MzgrOyNqERolN,The Style Council,spotify:album:589d7vHMtOyqhXGsf5h9Rc,Our Favourite Shop (Deluxe Edition),spotify:artist:3loflELg7MzgrOyNqERolN,The Style Council,1985,https://i.scdn.co/image/ab67616d0000b273e1b5301d61e5cf062217b9ff,1,16,254186,https://p.scdn.co/mp3-preview/d3ad07d557c20626e2fa016371324429225192fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW8401003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,sophisti-pop",0.719,0.932,4.0,-6.244,0.0,0.0709,0.19,0.582,0.0238,0.843,143.849,4.0,,Universal Music Group,"C © 2006 Polydor Ltd. (UK), P ℗ 2006 Polydor Ltd. (UK)",8457 +8458,spotify:track:6SlJooJullmwjBsrnRNROA,Moments (feat. Gavin James),"spotify:artist:1xSSjJrKTO2ZNPU81uLtmI, spotify:artist:25tMQOrIU4LlUo6Sv8v5SE","Bliss n Eso, Gavin James",spotify:album:6jEbT4dTzAMHByiX7wLsts,Off The Grid,spotify:artist:1xSSjJrKTO2ZNPU81uLtmI,Bliss n Eso,2017-04-28,https://i.scdn.co/image/ab67616d0000b27388f3b4da6237f0152e59b513,1,12,237613,https://p.scdn.co/mp3-preview/59a9fdedeb4f77901703768943b74fc5afc722e6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,AULI01609090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,irish pop",0.632,0.724,8.0,-7.183,1.0,0.326,0.387,0.0,0.0991,0.311,82.227,4.0,,ILLUSIVE,"C 2017 Illusive, P 2017 Illusive",8458 +8459,spotify:track:0Dm43YLUlGdePpSbI1ct8h,Part-Time Lover,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:1nLKZqTGA48v3I8dNFkvQt,In Square Circle,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1985-09-13,https://i.scdn.co/image/ab67616d0000b273ed0ddbe4b2590f448e9845be,1,1,252560,https://p.scdn.co/mp3-preview/77257eb3b4801647b278a2b5c32714b6adf93626?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USMO18500543,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.662,0.624,10.0,-13.606,0.0,0.0417,0.165,0.0,0.0674,0.961,174.513,4.0,,Motown,"C © 1985 The Motown Record Company LP, P ℗ 1985 The Motown Record Company LP",8459 +8460,spotify:track:6Jmyt5MDXcSSbXAChDH5Xe,Strawberry Kisses,spotify:artist:6lFnLt6t0Wyq87KQK19BkA,Nikki Webster,spotify:album:6HGWlQCln8iS5PYliYPcLr,Strawberry Kisses,spotify:artist:6lFnLt6t0Wyq87KQK19BkA,Nikki Webster,2001-06-11,https://i.scdn.co/image/ab67616d0000b273051cde3bf387e9648bcd2b74,1,1,213773,https://p.scdn.co/mp3-preview/dd4312beb036bf988d02b339f35058ed0173edd7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUBM00136401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.699,0.802,9.0,-6.813,1.0,0.0356,0.00507,0.00123,0.108,0.658,112.041,4.0,,Sony Music Entertainment,P (P) 2001 Sony Music Entertainment Australia Pty Ltd,8460 +8461,spotify:track:7KrvzSAXmM45m7AnoqdDsx,Close To You,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,spotify:album:523dGJIK9WHqavNNZBv57s,April Uprising,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,2010-03-26,https://i.scdn.co/image/ab67616d0000b2738c58b143b2b7df84eabe6400,1,7,231413,https://p.scdn.co/mp3-preview/e3d7ff76956aa7d003e20d59d607b4afcc182743?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUFC00900018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,banjo,0.662,0.809,9.0,-6.175,0.0,0.0298,0.00442,3.09e-05,0.317,0.951,134.022,4.0,,Jarrah Records,"C 2010 Family Music Pty Ltd, P 2010 Jarrah Records",8461 +8462,spotify:track:4fs51wRnDJo4XrRdk6h0GD,Mmm Yeah (feat. Pitbull),"spotify:artist:04abdnqPQe2N4fjztDea6z, spotify:artist:0TnOYISbd1XYRBk9myaseg","Austin Mahone, Pitbull",spotify:album:4nSUFTm077fVEPP046MZMk,The Secret,spotify:artist:04abdnqPQe2N4fjztDea6z,Austin Mahone,2014-05-27,https://i.scdn.co/image/ab67616d0000b27342cb727373959066111f7d75,1,3,231624,https://p.scdn.co/mp3-preview/8df55d3edaf4d0046ce17cd9fd19726507e4d8d9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCM51400015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop,dance pop,miami hip hop,pop",0.712,0.922,6.0,-3.902,0.0,0.0411,0.00266,1.9e-06,0.268,0.976,125.984,4.0,,A.M. Music LLC / Mr. 305,"C 2014 A.M. Music LLC / Mr. 305, P 2014 A.M. Music LLC / Mr. 305",8462 +8463,spotify:track:0E4Y1XIbs8GrAT1YqVy6dq,Afterglow,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:5bb2Sf8jps2DTyI2urMThV,Afterglow,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2020-12-21,https://i.scdn.co/image/ab67616d0000b27388e170d5ced543d191593fc8,1,1,185486,https://p.scdn.co/mp3-preview/25165d1fe48fcd45cb91ebbbbd1a0056f236476b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GBAHS2001193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.641,0.324,11.0,-5.851,1.0,0.0299,0.698,0.0,0.328,0.273,110.184,4.0,,Atlantic Records UK,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2020 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2020 Warner Music UK Limited",8463 +8464,spotify:track:6iZTQ7OJ0B4Z4Lij5o7Ub0,Say My Name,spotify:artist:2QSPrJfYeRXaltEEiriXN9,Tove Styrke,spotify:album:1bNiDHGgQOVMnuk2H0M8BQ,Say My Name,spotify:artist:2QSPrJfYeRXaltEEiriXN9,Tove Styrke,2017-04-28,https://i.scdn.co/image/ab67616d0000b273190ec414e310715326679e89,1,1,203250,https://p.scdn.co/mp3-preview/ce82371b955b6d783f80163d0729e9513f964286?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,SEBGA1700096,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,swedish electropop,swedish pop,swedish synthpop",0.717,0.452,2.0,-9.711,1.0,0.127,0.0717,0.0,0.0768,0.509,164.037,4.0,,RCA Records Label,P (P) 2017 Sony Music Entertainment Sweden AB,8464 +8465,spotify:track:39IA9GoPnfM9ZNQVoekKXh,Spray On Pants,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,spotify:album:5MnKpoZxGlfUgDtlgoLIC8,Hymns For The Non-Believer,spotify:artist:21wuAm9OFJEeN7h3EozO0r,Kisschasy,2007,https://i.scdn.co/image/ab67616d0000b273b3b57735494f5167109acc62,1,8,227186,https://p.scdn.co/mp3-preview/cbfb2cb63f8bb2b535baa40250063497621b39f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUAY00700234,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussie emo,australian alternative rock,australian indie",0.568,0.838,3.0,-3.926,1.0,0.0318,0.00152,1.65e-06,0.0562,0.772,128.119,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Below Par Records, P ℗ 2010 Below Par Records",8465 +8466,spotify:track:5teCpJlMjeP4ycz9LmCA8D,Sober,spotify:artist:73sIBHcqh3Z3NyqHKZ7FOL,Childish Gambino,spotify:album:2x1iOiIOZtPA4QEVBlpexp,Kauai EP,spotify:artist:73sIBHcqh3Z3NyqHKZ7FOL,Childish Gambino,2014-10-06,https://i.scdn.co/image/ab67616d0000b2734495705f0d6a4c57cb071838,1,1,252013,https://p.scdn.co/mp3-preview/4b8809e41adc3feffa3ee2ae30b6e04585d54b84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USYAH1400031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,hip hop,rap",0.708,0.565,0.0,-7.412,1.0,0.03,0.113,1.35e-05,0.542,0.431,97.896,4.0,,Liberator Music,"C 2014 Glassnote Entertainment Group LLC, P 2014 Glassnote Entertainment Group LLC",8466 +8467,spotify:track:0KaU5T2268e0B1tKSVsiah,This Is Love,"spotify:artist:085pc2PYOi8bGKj0PNjekA, spotify:artist:2d6W4cnC5XsVOaxtgaj9hA","will.i.am, Eva Simons",spotify:album:6H7mXPXFFDOpby7Xcke1vh,#willpower (Deluxe),spotify:artist:085pc2PYOi8bGKj0PNjekA,will.i.am,2013-01-01,https://i.scdn.co/image/ab67616d0000b2737cd0e09e531fbca549d76cbf,1,3,279026,https://p.scdn.co/mp3-preview/0b05b9eb8abcc2d6ff076f1300faa32d8a1627a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71205053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dutch pop",0.54,0.809,0.0,-3.397,0.0,0.0445,0.0043,0.0,0.142,0.257,129.01,4.0,,Universal Music Group,"C © 2013 Interscope Records, P ℗ 2013 Interscope Records",8467 +8468,spotify:track:2sY0M3k69oAYz7EOPVRFjo,Big Girl (You Are Beautiful),spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,spotify:album:6oIaXBTIZ2Q9cJKBgrZ2Ox,Life In Cartoon Motion,spotify:artist:5MmVJVhhYKQ86izuGHzJYA,MIKA,2006-01-01,https://i.scdn.co/image/ab67616d0000b2733408a925e0bcb7940f864a0e,1,8,248000,https://p.scdn.co/mp3-preview/ab1a1a2f13dd9743f50913bdebbca5dddf70953d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USC7R0600008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electropop,0.796,0.75,11.0,-6.324,1.0,0.0773,0.0384,0.0,0.232,0.808,116.006,4.0,,Universal-Island Records Ltd.,"C © 2006 Casablanca Music, LLC, P ℗ 2006 Casablanca Music, LLC",8468 +8469,spotify:track:4NoyxIVBKBfhLtGPVH4wyP,Tattoo,spotify:artist:2AQjGvtT0pFYfxR3neFcvz,Jordin Sparks,spotify:album:6uADeQqYkdZqctA1AO6riB,Jordin Sparks,spotify:artist:2AQjGvtT0pFYfxR3neFcvz,Jordin Sparks,2007-11-20,https://i.scdn.co/image/ab67616d0000b273541387af4fde7d5b5def61ab,1,1,233466,https://p.scdn.co/mp3-preview/f66621e67ea7213bdb828b61b08a01b09ca03d23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCTA0700266,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop,urban contemporary",0.566,0.766,2.0,-5.036,1.0,0.0399,0.431,0.0,0.101,0.547,168.005,4.0,,19 Recordings,"P (P) 2007 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",8469 +8470,spotify:track:34rpxZkKF8pUozfwBK9lSG,Love Long Distance,spotify:artist:3sFTupo9UGgrujjN21BjwR,Gossip,spotify:album:2mZLwfD2mGi91rjj9O3aN3,Music For Men,spotify:artist:3sFTupo9UGgrujjN21BjwR,Gossip,2009-10-30,https://i.scdn.co/image/ab67616d0000b27350da0a4540036049a6e6ae4b,1,4,264826,https://p.scdn.co/mp3-preview/fa2a2c60ce2b52ca830c1a0551aecf5d9ebc8387?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,USSM10902241,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,electroclash,new rave,olympia wa indie",0.775,0.671,0.0,-5.793,1.0,0.0332,0.0355,0.0123,0.152,0.805,119.986,4.0,,Columbia,P (P) 2009 Sony Music Entertainment,8470 +8471,spotify:track:1JfBYDZya2fuNprM5EA0L8,See See Rider,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,spotify:album:3oAKJWMt9Ol8W5vkOQrBNf,Greatest Hits,spotify:artist:70tMW5bZT3TJUa1CWtfVkq,Eric Burdon & the Animals,2011-01-17,https://i.scdn.co/image/ab67616d0000b273dd5172b3cbbd0e3c44230ad4,1,10,245456,https://p.scdn.co/mp3-preview/72404c3efdf93a9af847d2c8fe8792aee0f642f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,USG291135637,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock",0.647,0.625,5.0,-9.613,0.0,0.0273,0.0893,2.67e-05,0.232,0.704,88.02,4.0,,K-Tel,,8471 +8472,spotify:track:2m0M7YqCy4lXfedh18qd8N,Into the Groove,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,8,285093,https://p.scdn.co/mp3-preview/7f9afcf0c02dd6e52e98cc55ae9c2389c5e35fd0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USWB10903605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.731,0.856,10.0,-4.164,0.0,0.0351,0.0664,0.00857,0.0691,0.805,116.472,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",8472 +8473,spotify:track:6aiKIFjPwa3UvDCD5ecoJj,Whenever You Need Somebody,spotify:artist:0gxyHStUsqpMadRV0Di1Qt,Rick Astley,spotify:album:6N9PS4QXF1D0OWPk0Sxtb4,Whenever You Need Somebody,spotify:artist:0gxyHStUsqpMadRV0Di1Qt,Rick Astley,1987-11-12,https://i.scdn.co/image/ab67616d0000b273255e131abc1410833be95673,1,2,233666,https://p.scdn.co/mp3-preview/37d0ae538df83108ed2b2da8e94a133f9bb1ea56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9300134,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock,sophisti-pop,synthpop",0.716,0.946,0.0,-13.01,0.0,0.0402,0.108,9.48e-06,0.184,0.524,115.18,4.0,,Sony Music CG,P (P) 1987 Sony Music Entertainment UK Limited under exclusive license to BMG Rights Management (UK) Limited,8473 +8474,spotify:track:1tFgbvRzyEaIhnVRqCwJy9,Out Of Mind Out Of Sight,spotify:artist:2k0zkxxRvJKwiHQq5QfjYn,Models,spotify:album:2I0dTsIaTMvqbg23xSbbjH,Out Of Mind Out Of Sight,spotify:artist:2k0zkxxRvJKwiHQq5QfjYn,Models,1985,https://i.scdn.co/image/ab67616d0000b273cc4e89505b4862c1175d90b1,1,1,217466,https://p.scdn.co/mp3-preview/205c1336c07f128c1b77891ece2d429867c24e07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUMU08500054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.628,0.771,6.0,-13.637,0.0,0.0536,0.0117,0.000986,0.203,0.793,122.091,4.0,,WM Australia,"C © 1985 Mushroom Records P/L, P ℗ 1985 Mushroom Records P/L",8474 +8475,spotify:track:6ejipC6dh8CGi2WiUACOvN,You Really Got Me,spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,spotify:album:7G2PY8yve3Db0PeGsosb4x,Van Halen (Reissue),spotify:artist:2cnMpRsOVqtPMfq7YiFE6K,Van Halen,1978-02-07,https://i.scdn.co/image/ab67616d0000b273d0225e4a37f185ebe0885e09,1,3,157640,https://p.scdn.co/mp3-preview/5ea4566225b76e5899597d8d820ba001db0292be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB17800053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.464,0.944,1.0,-5.309,1.0,0.107,0.0159,5.66e-06,0.384,0.716,137.864,4.0,,Rhino/Warner Bros.,"C 1978, 2000 Warner Bros. Records Inc., P 1978 Warner Bros. Records Inc.",8475 +8476,spotify:track:756xOfT6UoTgkf0w8PnVIC,Keep Me Crazy,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:1ZNpLRqIe6ISM0kEMfqqIZ,Keep Me Crazy,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2017-03-10,https://i.scdn.co/image/ab67616d0000b2738346918390775dac490ca968,1,1,196953,https://p.scdn.co/mp3-preview/5eac7c3bb51cf19e8daef1af544ef8ba41028a12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,AUIYA1700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.683,0.827,2.0,-6.745,1.0,0.0553,0.0222,0.0,0.179,0.697,143.95,4.0,,Empire Of Song,"C 2017 Empire of Song (Australia) Pty Ltd, P 2017 Empire of Song (Australia) Pty Ltd",8476 +8477,spotify:track:2Hvc7KrkQo8bdLbOdDNOk5,Home,"spotify:artist:1bT7m67vi78r2oqvxrP3X5, spotify:artist:4b8dLpJgJpNQYzu4AtXLt3","Naughty Boy, RØMANS",spotify:album:18uQZjRGg80okeaeg5bhgq,Hotel Cabana (Deluxe Version),spotify:artist:1bT7m67vi78r2oqvxrP3X5,Naughty Boy,2013-01-01,https://i.scdn.co/image/ab67616d0000b2735b25eef6245591ebe19a982e,1,16,205065,https://p.scdn.co/mp3-preview/2d59635114322a017b02f5a553c80c9a64df3798?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBUM71402292,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"uk contemporary r&b,uk pop",0.618,0.732,0.0,-7.025,1.0,0.0602,0.00631,6.41e-05,0.0729,0.27,100.015,4.0,,Virgin Records Ltd,"C © 2014 Naughty Boy Recordings Limited, under exclusive licence to Virgin Records Ltd, P ℗ 2014 Naughty Boy Recordings Limited, under exclusive licence to Virgin Records Ltd",8477 +8478,spotify:track:735rjks7kQgWCjTQlIHMuH,Head over Feet - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,spotify:album:5Ap3F8CxjjsQKZGASDcHNA,Jagged Little Pill - 2015 Remaster,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,1995,https://i.scdn.co/image/ab67616d0000b273242e643ea07118ecf677a6ef,1,8,267293,https://p.scdn.co/mp3-preview/1a66a41631f4c58973ecb338ed9305ad2a802d23?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USMV21500008,spotify:user:bradnumber1,2022-08-26T01:33:10Z,"canadian pop,canadian singer-songwriter,lilith,neo mellow,pop rock,singer-songwriter",0.482,0.808,0.0,-7.176,1.0,0.065,0.0562,0.0,0.202,0.438,79.599,4.0,,Rhino/Maverick Records,"C © 1995 Maverick Recording Company. All Rights Reserved, P ℗ 1995 Maverick Recording Company. Marketed by Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",8478 +8479,spotify:track:3u15HIfwOuesnY5Bn27eXm,Looking for an Echo,spotify:artist:3UmfCgpdKzg2WTa6453o4E,Ol' 55,spotify:album:776mBHwcQXD39eBSqmR3eQ,Take It Greasy,spotify:artist:3UmfCgpdKzg2WTa6453o4E,Ol' 55,1976,https://i.scdn.co/image/ab67616d0000b273644d67f41beda36cb3ada2ec,1,13,205266,https://p.scdn.co/mp3-preview/035fe026bee8ad08375e76fe4e5341f32ce41576?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUMU07600013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.628,0.264,9.0,-16.125,0.0,0.0275,0.633,0.0,0.0809,0.312,106.271,3.0,,WM Australia,"C © 1976 Mushroom Records Pty Ltd, P ℗ 1976 Mushroom Records Pty Ltd",8479 +8480,spotify:track:3CrOmXikSbhPlvEj67NVOV,Mother's Daughter,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:0MpriJa1c1RxO45SaTCvls,SHE IS COMING,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2019-05-31,https://i.scdn.co/image/ab67616d0000b2732439faaa714af568c974565c,1,1,219080,https://p.scdn.co/mp3-preview/91b43868ba719fb45fd9f7c6f4809e7556d99639?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11901530,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.598,0.856,6.0,-4.161,0.0,0.158,0.00707,0.00118,0.139,0.573,182.064,4.0,,RCA Records Label,"P (P) 2019 RCA Records, a division of Sony Music Entertainment",8480 +8481,spotify:track:428Dl0NOBojmUS98R2pDHr,Heavy Cross,spotify:artist:3sFTupo9UGgrujjN21BjwR,Gossip,spotify:album:1GB8gZTSdbiup5FzxNknRo,Music For Men,spotify:artist:3sFTupo9UGgrujjN21BjwR,Gossip,2009-06-22,https://i.scdn.co/image/ab67616d0000b273df4cf17c83fd12112c6cd371,1,2,242773,https://p.scdn.co/mp3-preview/a3f628859543899d64b04d49b1833bb7c90f464d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USSM10902231,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,electroclash,new rave,olympia wa indie",0.793,0.688,2.0,-4.216,1.0,0.0328,0.079,0.0604,0.145,0.221,120.058,4.0,,Columbia,P (P) 2009 Sony Music Entertainment,8481 +8482,spotify:track:3aw9iWUQ3VrPQltgwvN9Xu,Family Affair,spotify:artist:1XkoF8ryArs86LZvFOkbyr,Mary J. Blige,spotify:album:5QJmKwPveBV4IwLlo4OcG4,No More Drama,spotify:artist:1XkoF8ryArs86LZvFOkbyr,Mary J. Blige,2001-08-28,https://i.scdn.co/image/ab67616d0000b273096a7fc9668305db9d3175fc,1,2,265866,https://p.scdn.co/mp3-preview/2b7bfcc9c6e074b70ca3bdb219c174d7c8133116?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USMC10111369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,neo soul,r&b,urban contemporary",0.911,0.551,8.0,-3.75,0.0,0.045,0.133,4.35e-05,0.0863,0.969,92.887,4.0,,Uptown,"C © 2001 MCA Records Inc., P ℗ 2001 Geffen Records",8482 +8483,spotify:track:3uhO8R46JUCJiEPTpleVcN,Put Your Hands Up,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:7GHROYaPxZr0dRMYQ7xHHu,The Matchbox Twenty Collection,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2013-11-08,https://i.scdn.co/image/ab67616d0000b273a09220722ea0004d7da146a7,5,4,173120,https://p.scdn.co/mp3-preview/55e8e9319f539ced2c28b5a0d92b5b7a99522044?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USAT21202742,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.636,0.798,2.0,-4.7,1.0,0.0422,0.000221,1.03e-05,0.0315,0.86,122.004,4.0,,Emblem / Atlantic,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",8483 +8484,spotify:track:1Mc1QqgB1TENCjA88CwBx6,Thunder,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:1d2u8egQLmE07acQGypt1P,Alive,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2013-01-01,https://i.scdn.co/image/ab67616d0000b2735a8bd9a642d34f267ecd2b55,1,2,215840,https://p.scdn.co/mp3-preview/11f86ffd75ea7fc7dfb700229a6184e0cdd6e05a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,USUM71311075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.661,0.803,0.0,-8.591,1.0,0.0496,0.0024,0.00134,0.1,0.725,107.964,4.0,,Lava Music/Republic Records,"C © 2013 Universal Republic Records, P ℗ 2013 Universal Republic Records",8484 +8485,spotify:track:2x9BavXrcqPKF0dHkrmkj6,Coming Home,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:18jAoHd0lR5tMaoqViNPMh,Coming Home,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2017-11-10,https://i.scdn.co/image/ab67616d0000b273eaea1b3b8d4436ce189dace5,1,1,218385,https://p.scdn.co/mp3-preview/cab2f8776c0344b85f6da3999ba77835fc62d568?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,AUIYA1700032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.61,0.928,4.0,-6.676,1.0,0.0585,0.152,3.1e-06,0.107,0.644,144.034,4.0,,Empire Of Song,"C 2017 Empire Of Song (Australia) Pty Ltd, P 2017 Empire Of Song (Australia) Pty Ltd",8485 +8486,spotify:track:2aFiaMXmWsM3Vj72F9ksBl,Cake By The Ocean,spotify:artist:6T5tfhQCknKG4UnH90qGnz,DNCE,spotify:album:7K89F9bgY1jks0uIlMerm3,DNCE,spotify:artist:6T5tfhQCknKG4UnH90qGnz,DNCE,2016-11-18,https://i.scdn.co/image/ab67616d0000b273a19a2912e1618ada66b2e6e8,1,3,219146,https://p.scdn.co/mp3-preview/f42a9a2157e1b4653ffe9c54c3bb9357c293ead6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71514637,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.774,0.764,4.0,-5.445,0.0,0.0518,0.156,0.0,0.0383,0.912,118.997,4.0,,Universal Music Group,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",8486 +8487,spotify:track:0JqZAtfchMdhGOIhj6NNT5,Everywhere I Go,"spotify:artist:5K7qYCFk4J0A6m25hYP0fB, spotify:artist:604iqbiglyTgxMeKkvlBGc","QED, Jenny Morris",spotify:album:0934rpndVD3stgiOgyE18X,Animal Magic,spotify:artist:5K7qYCFk4J0A6m25hYP0fB,QED,1984,https://i.scdn.co/image/ab67616d0000b273d5f1d395aa9d80bb05c86a01,1,10,211800,https://p.scdn.co/mp3-preview/c30c9ff3f8cb18ab9a0e130b433111b3ee3514eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUUM71900151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic nz pop,0.616,0.511,9.0,-14.807,0.0,0.0378,0.0887,2.33e-06,0.0736,0.724,134.769,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 1984 Universal Music Australia Pty Ltd., P ℗ 1984 Universal Music Australia Pty Ltd.",8487 +8488,spotify:track:38TozZBUSqO5HA4ya6OxZr,Not An Addict,spotify:artist:1lO13Grp3I1AsIbcACRWvv,K's Choice,spotify:album:7u5VdkpJuSXEWxNq4PdXJ2,10: 1993-2003 - Ten Years of K's Choice,spotify:artist:1lO13Grp3I1AsIbcACRWvv,K's Choice,2009-10-26,https://i.scdn.co/image/ab67616d0000b273915bddc014dfc6c009f9dd14,1,2,288183,https://p.scdn.co/mp3-preview/82ce72e84c3c66f6688a4fe1151b95de65d86b91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USTCY0908809,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative pop,belgian rock,lilith",0.261,0.645,4.0,-7.012,1.0,0.0392,0.000306,5.15e-05,0.121,0.34,169.326,4.0,,"Cocoon Records, LLC","C 2013 Cocoon Records, LLC, P 2013 Cocoon Records, LLC",8488 +8489,spotify:track:0ZZCW0rSV1mEt5eKUamL9c,Cash in My Pocket (feat. Daniel Merriweather),"spotify:artist:7k9T7lZlHjRAM1bb0r9Rm3, spotify:artist:6HD2mo0Gz8wd8IbOXYwUfN","Wiley, Daniel Merriweather",spotify:album:6jyCINx0IQwks3MnchgcOR,See Clear Now,spotify:artist:7k9T7lZlHjRAM1bb0r9Rm3,Wiley,2008-11-10,https://i.scdn.co/image/ab67616d0000b2730265fb96ccfadb41cbd0cc71,1,6,179906,https://p.scdn.co/mp3-preview/1a83236cb000e276f4809b2649f174ed085b102e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAHS0800450,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grime,uk dancehall,uk hip hop,australian pop",0.69,0.949,4.0,-3.84,1.0,0.153,0.00717,0.0,0.65,0.691,116.195,4.0,,Atlantic Records UK,"C © 2008 Warner Music UK Limited, P ℗ 2008 Warner Music UK Limited",8489 +8490,spotify:track:0iINibMKtoS8duvexsqnm5,Tusk - 2015 Remaster,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:1d075yQcykHjerQ2BN0ABn,Tusk (Deluxe Edition),spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1979-10-12,https://i.scdn.co/image/ab67616d0000b273ac3b1b1e8bb8a4986b485fb5,1,19,217573,https://p.scdn.co/mp3-preview/2be0b25bb023158d1392ad5cc342ee5a5d0b8823?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USRH11507787,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.628,0.779,0.0,-11.841,1.0,0.0831,0.224,0.776,0.151,0.936,180.837,4.0,,Rhino/Warner Records,"C © 2015 Warner Records Inc., P ℗ 2015 Warner Records Inc.",8490 +8491,spotify:track:44AauRai27QWKEx4dKn0oU,500 Miles Away from Home,spotify:artist:69wzuykaVXlRS5KVygESvd,Bobby Bare,spotify:album:06zl9w7hWWtjxFt76bMZEE,500 Miles Away From Home,spotify:artist:69wzuykaVXlRS5KVygESvd,Bobby Bare,1963-12-11,https://i.scdn.co/image/ab67616d0000b2734dcb7236f25e18598f5a3972,1,1,162560,https://p.scdn.co/mp3-preview/bfe076b1dafc372f137d2bf5e0620a139ec829e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USRN19600340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,outlaw country",0.501,0.429,7.0,-10.803,1.0,0.0293,0.669,0.0,0.539,0.551,108.948,4.0,,RLG/Legacy,P (P) 1963 Sony Music Entertainment,8491 +8492,spotify:track:1v0E30pA3wOBXuDxfsyOPa,Seventeen Forever,spotify:artist:7vXwfZyDp3spzIVNXDaTPN,Metro Station,spotify:album:2tZnyjZ6Orm55gE8bqJ3UG,Metro Station,spotify:artist:7vXwfZyDp3spzIVNXDaTPN,Metro Station,2007-09-18,https://i.scdn.co/image/ab67616d0000b273bcd25f2bbe505682863c3df2,1,1,174133,https://p.scdn.co/mp3-preview/82af57548b0d2b961b7d63152ee920b4a560232f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USSM10702534,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropowerpop,neon pop punk,pixie,pop punk",0.569,0.793,0.0,-5.041,0.0,0.0329,0.00172,0.00054,0.136,0.687,139.979,4.0,,Red Ink,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT,8492 +8493,spotify:track:0vur7myNcfUymUt6mHhNZe,How You Remind Me,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:40AdpVZhtBTyvSn0MuGclz,"The Best of Nickelback, Vol. 1",spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2013-11-01,https://i.scdn.co/image/ab67616d0000b27301031273c40c1b1c8111fa4e,1,2,224173,https://p.scdn.co/mp3-preview/3c683a6011344de522cf71887448b70710f0bd56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,NLA321393034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.432,0.795,10.0,-4.023,1.0,0.0321,0.00128,0.0,0.101,0.519,172.011,4.0,,Roadrunner Records,"C © 2013 Roadrunner Records, Inc., P 2001 ℗ 2013 Roadrunner Records, Inc.",8493 +8494,spotify:track:0eQjA54TJkwTHDJKG8OkRg,Be Somebody,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:5CZR6ljD0x9fTiS4mh9wMp,Only By The Night,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2008-09-23,https://i.scdn.co/image/ab67616d0000b2732519d01c0cca06f134eeadd8,1,10,227146,https://p.scdn.co/mp3-preview/44299c0a26093af5abcecb366431f78fb57a534f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USRC10800303,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.487,0.835,2.0,-6.44,1.0,0.0588,0.0274,0.00754,0.211,0.311,133.907,4.0,,RCA/Legacy,"P (P) 2008 RCA Records, a division of Sony Music Entertainment",8494 +8495,spotify:track:2nYR8mMHG0ViIdHtS9hJ6w,Wasabi,spotify:artist:7eIoAymVZ9RQZidZgt4e7t,Lee Harding,spotify:album:2ur5tutx8q4cteH9Wnp6dt,What's Wrong With This Picture?,spotify:artist:7eIoAymVZ9RQZidZgt4e7t,Lee Harding,2006-02-19,https://i.scdn.co/image/ab67616d0000b27397fb975be53943a43a5b124a,1,1,180333,https://p.scdn.co/mp3-preview/804d2d2f6eb6f05c2767410592d855c5290ac454?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUBM00599641,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian talent show,0.393,0.916,8.0,-3.009,1.0,0.057,4.69e-05,0.0,0.34,0.511,173.933,4.0,,Sony BMG Music Entertainment,P (P) 2006 Sony Music Entertainment Australia Pty Ltd,8495 +8496,spotify:track:30cSNer6TV8x2utjULVeQ5,SOS,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:2JdjS6jjOml7nt7Yjo0nnh,A Girl Like Me,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2006-04-10,https://i.scdn.co/image/ab67616d0000b273d744a51e193d52170070062b,1,1,238920,https://p.scdn.co/mp3-preview/02282f8a31c4610790c486aea7da19a655e0ae9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USUM70507379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.677,0.671,7.0,-4.905,1.0,0.0361,0.004,5.07e-05,0.413,0.527,137.046,4.0,,Def Jam Recordings,"C © 2006 The Island Def Jam Music Group, P ℗ 2006 The Island Def Jam Music Group",8496 +8497,spotify:track:51PJ2iCdBMEfxtVk3iy4p1,You Da One - Album Version (Edited),spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:2g1EakEaW7fPTZC6vBmBCn,Talk That Talk,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2011-11-18,https://i.scdn.co/image/ab67616d0000b273bef074de9ca825bddaeb9f46,1,1,200013,https://p.scdn.co/mp3-preview/4499f38d62ea74cc2b04fa2150195c085b2f57ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USUM71118075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.706,0.693,8.0,-5.416,1.0,0.04,0.497,3.13e-05,0.145,0.859,127.079,4.0,,Def Jam Recordings,"C © 2011 The Island Def Jam Music Group, P ℗ 2011 The Island Def Jam Music Group",8497 +8498,spotify:track:4DzPPja6CrMvxi6zn4fmFe,"Hello, You Beautiful Thing",spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,spotify:album:0BXNqyHSP4PVo865RUJgZf,"Hello, You Beautiful Thing",spotify:artist:4phGZZrJZRo4ElhRtViYdl,Jason Mraz,2014-05-23,https://i.scdn.co/image/ab67616d0000b273f7fe483a7b3c60aeeb6c4eba,1,1,212586,https://p.scdn.co/mp3-preview/99c348475aa54c488095ea24bead4117f93157bf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USEE11400515,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,dance pop,neo mellow,pop",0.708,0.457,2.0,-10.124,0.0,0.0376,0.542,0.0,0.0984,0.268,138.072,4.0,,Atlantic Records/ATG,"C © 2014 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2014 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",8498 +8499,spotify:track:1Vb0sEHboCBthv6fUqLjME,(Baby I've Got You) On My Mind,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:11lnp34TFhwc0274mF7YaZ,Vulture Street,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2003-01-01,https://i.scdn.co/image/ab67616d0000b27378a33e0640c1cb770ea9e4f4,1,2,200440,https://p.scdn.co/mp3-preview/e951ebdd562f40ac3f8c16a562da6b1478dc7c18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,AUUM00330019,spotify:user:bradnumber1,2022-03-10T21:32:55Z,"australian alternative rock,australian rock",0.366,0.969,3.0,-3.361,1.0,0.0935,0.00066,0.000142,0.106,0.666,146.545,4.0,,Universal Music Australia Pty. Ltd.,"C © 2003 Universal Music Australia Pty Ltd., P ℗ 2003 Universal Music Australia Pty Ltd.",8499 +8500,spotify:track:3Oww84xrmgjyr5J1ilOmAf,Down Under (feat. Colin Hay),"spotify:artist:20cmhoGvN0eyzhmsHJH1Mg, spotify:artist:5mxB08ktCukEhGMg2YZeEv","Luude, Colin Hay",spotify:album:6jwTcGQIb9PZaZinJGqgVX,Down Under (feat. Colin Hay),"spotify:artist:20cmhoGvN0eyzhmsHJH1Mg, spotify:artist:5mxB08ktCukEhGMg2YZeEv","Luude, Colin Hay",2021-11-19,https://i.scdn.co/image/ab67616d0000b2738a86b4c6ece638f8c095d85b,1,1,158774,https://p.scdn.co/mp3-preview/aa0f91be0365302b3dd2205c776ea471c2fae8d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,AUDCB1701966,spotify:user:bradnumber1,2022-04-27T22:12:11Z,"aussietronica,solo wave",0.308,0.86,11.0,-4.111,0.0,0.168,0.0116,0.000828,0.277,0.0387,171.835,4.0,,Sweat It Out!,"C © 2021 Sweat It Out under exclusive license from Colin Hay., P ℗ 2021 Sweat It Out under exclusive license from Colin Hay. Distributed by Warner Music Australia Pty Ltd",8500 +8501,spotify:track:18DfMhEx4ddoreHrvZDF6Q,The Power of Love,spotify:artist:3fsCWTIuWIRvEGS7gerSJX,Jennifer Rush,spotify:album:6qCyqeMjwwh2wRQWvQyHgG,The Power Of Love: The Best Of Jennifer Rush,spotify:artist:3fsCWTIuWIRvEGS7gerSJX,Jennifer Rush,1995-07-24,https://i.scdn.co/image/ab67616d0000b273b3030d635fdba26d12279145,1,1,268200,https://p.scdn.co/mp3-preview/e2d18731d7ff15f660dcfad139bc9202ccd85ff1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,DEE868400010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.521,0.654,8.0,-6.993,1.0,0.0401,0.452,6.12e-05,0.0984,0.125,139.071,4.0,,Columbia,"P (P) 1995 Sony Music Entertainment GmbH, Berlin",8501 +8502,spotify:track:1hRFVIy9As8OVRk8B7CrD5,When Love Takes Over (feat. Kelly Rowland),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:3AuMNF8rQAKOzjYppFNAoB","David Guetta, Kelly Rowland",spotify:album:5DJc5qCdB5pPrDO97LXjeW,One More Love,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2010-11-22,https://i.scdn.co/image/ab67616d0000b273f45c50e7cff5f2376c1e36ea,1,1,191000,https://p.scdn.co/mp3-preview/42e969580838eed22ef2439cd5adbc7f48575b0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,FRZID0900200,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,atl hip hop,dance pop,hip pop,r&b,urban contemporary",0.675,0.862,11.0,-4.614,1.0,0.0253,0.0165,0.000427,0.169,0.498,129.967,4.0,,Parlophone (France),"C © 2010 Gum Prod licence exclusive Parlophone Music France, P ℗ 2010 Gum Prod licence exclusive Parlophone Music France",8502 +8503,spotify:track:00FRRwuaJP9KimukvLQCOz,"Never, Never Gonna Give Ya Up - Long Version",spotify:artist:3rfgbfpPSfXY40lzRK7Syt,Barry White,spotify:album:4jpsKvXyMWyAnr778cJ4Um,The Complete 20th Century Records Singles (1973-1979),spotify:artist:3rfgbfpPSfXY40lzRK7Syt,Barry White,2018-04-13,https://i.scdn.co/image/ab67616d0000b27320fdad72e4cdea8e2bad6943,1,6,280280,https://p.scdn.co/mp3-preview/59591560b861baebe555260ae989ba3ce12bb822?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USIR20110146,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,quiet storm,soul",0.583,0.798,2.0,-9.716,0.0,0.0612,0.113,0.0,0.0513,0.96,85.323,4.0,,Island Def Jam,"C © 2018 UMG Recordings, Inc., P ℗ 2018 UMG Recordings, Inc.",8503 +8504,spotify:track:1zWMf9bVyhY5W3ZORbjNWt,LIKE I WOULD,spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,spotify:album:5amj9zNeZ3B2EdpBgXrOZ0,Mind Of Mine (Deluxe Edition),spotify:artist:5ZsFI1h6hIdQRw2ti0hz81,ZAYN,2016-03-25,https://i.scdn.co/image/ab67616d0000b273a15e26d05b7ce776b566579d,1,17,192133,https://p.scdn.co/mp3-preview/6f868775134d63aba7dfc5295ce07db3cfd87f2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USRC11600403,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.565,0.832,10.0,-5.732,0.0,0.114,0.0247,0.0,0.26,0.233,112.827,4.0,,RCA Records Label,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",8504 +8505,spotify:track:2JzErxvclrRRG9bj9dEXR3,Don't Start Now - Purple Disco Machine Remix,"spotify:artist:6M2wZ9GZgrQXHCFfjv46we, spotify:artist:2WBJQGf1bT1kxuoqziH5g4","Dua Lipa, Purple Disco Machine",spotify:album:4bFD3e4YDki1tu4EQCfSdt,Don't Start Now (Remixes),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-01-10,https://i.scdn.co/image/ab67616d0000b273e45e2fd04f2653205ebd09a4,1,2,216774,https://p.scdn.co/mp3-preview/5d58972a7b9b1baff5381e9c7cb5e2ca306f3357?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAHT1901159,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,deep house,house",0.766,0.752,11.0,-6.185,0.0,0.0506,0.0457,2.87e-06,0.351,0.807,123.979,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",8505 +8506,spotify:track:05LoBwiXyb1sx3xV3S3tEd,Like an Animal,spotify:artist:5Pb27ujIyYb33zBqVysBkj,RÜFÜS DU SOL,spotify:album:396Y1EKWxeJt2Yh3Da1for,Bloom,spotify:artist:5Pb27ujIyYb33zBqVysBkj,RÜFÜS DU SOL,2016-01-22,https://i.scdn.co/image/ab67616d0000b273de342b284f5dc7e0257fe38c,1,2,241580,https://p.scdn.co/mp3-preview/0d818330c3869e86f479419db54453d588a912d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUDCB1500577,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian electropop,indietronica",0.71,0.748,9.0,-6.244,0.0,0.0305,0.0341,0.000105,0.0897,0.38,119.994,4.0,,Sweat It Out,P (P) 2015 Sweat It Out Music! Distributed in Australia & New Zealand by Sony Music Australia Pty Ltd under exclusive license.,8506 +8507,spotify:track:7eEV29N1Me9WKq4tQVNN3X,Ooh-Wakka-Doo-Wakka-Day,spotify:artist:4HVmeVTQBgvTuvjB1JYwaf,Gilbert O'Sullivan,spotify:album:7EZeSlS7lupfVVaZXGXVUs,Back to Front (Deluxe Edition),spotify:artist:4HVmeVTQBgvTuvjB1JYwaf,Gilbert O'Sullivan,1972-01-01,https://i.scdn.co/image/ab67616d0000b2732a17bb450e1326dbac8a456d,1,17,165160,https://p.scdn.co/mp3-preview/f5d8e001545081c836fec52c52fe09d2b17adba6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEQJ0400009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,soft rock",0.67,0.607,10.0,-7.335,1.0,0.0312,0.737,1.15e-06,0.145,0.741,112.219,4.0,,Salvo,"C © 2012 Union Square Music Limited, a BMG Company, P ℗ 2012 Grand Upright Music Limited under exclusive license to Union Square Music Limited, a BMG Company",8507 +8508,spotify:track:4Ypojjb7T5AW2IgkCAxmAO,Moving on Up,spotify:artist:3lcbKPLl0ci2mKRdcP5Etf,M People,spotify:album:6YO5GMex0uebaq5btc0EuE,One Night In Heaven: The Very Best Of M People,spotify:artist:3lcbKPLl0ci2mKRdcP5Etf,M People,2009-03-26,https://i.scdn.co/image/ab67616d0000b2732f08743030cc7dd090e56b68,1,1,216040,https://p.scdn.co/mp3-preview/d0570154133e5ebec1a7712ed8902a25172caf2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBARL9300289,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,new romantic,new wave pop,sophisti-pop",0.895,0.862,0.0,-6.078,0.0,0.0365,0.0408,0.0399,0.102,0.964,125.078,4.0,,Legacy Recordings,P (P) 2009 Sony Music Entertainment,8508 +8509,spotify:track:5wtSei6pJpDEB1iKqPHhfU,Houdini,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:0HAb43LIP2Gf9bYwRfBgY6,Houdini,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2023-11-10,https://i.scdn.co/image/ab67616d0000b273b931be9989996605dbafe4e8,1,1,185917,https://p.scdn.co/mp3-preview/df4af86970ffb1a7042d1d228bcea7b4aabfdba4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBAHT2301246,spotify:user:bradnumber1,2024-03-27T20:55:15Z,"dance pop,pop,uk pop",0.744,0.791,9.0,-4.878,0.0,0.0586,0.00368,0.00171,0.0944,0.872,116.981,4.0,,Urban,"C © 2023 Dua Lipa Limited, under exclusive license to Universal Music GmbH, P ℗ 2023 Dua Lipa Limited, under exclusive license to Universal Music GmbH",8509 +8510,spotify:track:6e6ag4qyhhn8JRF1xmMJYR,"Beauty and the Beast - From ""Beauty and the Beast""","spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:5y2Xq6xcjJb2jVM54GHK3t","Ariana Grande, John Legend",spotify:album:4udnd2FcW6YbanmHn1T0CU,"Beauty and the Beast (From ""Beauty and the Beast"")","spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:5y2Xq6xcjJb2jVM54GHK3t","Ariana Grande, John Legend",2017-02-03,https://i.scdn.co/image/ab67616d0000b2738e3f8ec7bea65266e99f4414,1,1,227928,https://p.scdn.co/mp3-preview/3a37964485c30e5ef4268703059f5c8173c42cf5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWD11778859,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,neo soul,pop,pop soul,urban contemporary",0.497,0.547,1.0,-6.988,1.0,0.0277,0.157,0.0,0.101,0.241,81.425,4.0,,Walt Disney Records,"C (C) 2017 Disney Enterprises, Inc., P (P) 2017 Walt Disney Records",8510 +8511,spotify:track:37f4ITSlgPX81ad2EvmVQr,Fight Song,spotify:artist:3QLIkT4rD2FMusaqmkepbq,Rachel Platten,spotify:album:0mFDIOqypzHp6Xd0el1hoT,Wildfire,spotify:artist:3QLIkT4rD2FMusaqmkepbq,Rachel Platten,2016-01-01,https://i.scdn.co/image/ab67616d0000b273a9e4d7fae5dfcc8f9cc96bc9,1,5,204013,https://p.scdn.co/mp3-preview/6f663802836a949b3485a71e13ff92d7a6fba6b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USSM11500753,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,viral pop",0.564,0.714,7.0,-4.987,1.0,0.129,0.0549,0.0,0.155,0.33,175.924,4.0,,Columbia,"P (P) 2015 Columbia Records, a Division of Sony Music Entertainment",8511 +8512,spotify:track:1PhDGZS2NBPrNsJHmvZuHM,Devil Or Angel,spotify:artist:5MX2l6ewjOaeWn1lYNhzlO,Bobby Vee,spotify:album:2qvgU7ANFcPldErKcJkcnR,Essential,spotify:artist:5MX2l6ewjOaeWn1lYNhzlO,Bobby Vee,1985-01-01,https://i.scdn.co/image/ab67616d0000b27357a0266906215948f2356122,1,4,139440,https://p.scdn.co/mp3-preview/d5133999542b04a2ee119f133121e995f90f25fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,USEM38700042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,doo-wop,rock-and-roll,rockabilly",0.374,0.25,5.0,-13.995,1.0,0.0461,0.858,0.0,0.151,0.518,135.92,4.0,,EMI Trade Marketing,"C © 2003 EMI Records Ltd, P This Compilation ℗ 1985 EMI Records Ltd",8512 +8513,spotify:track:0EiV5cF6FoOiwLHWbVMrqd,Til Death - Denzal Park Radio Edit,spotify:artist:4nmrm4zpgJ0RC6aZRSUEjF,Wynter Gordon,spotify:album:7ge2XRwQBXK0oAtQn52ggh,With The Music I Die,spotify:artist:4nmrm4zpgJ0RC6aZRSUEjF,Wynter Gordon,2010-11-09,https://i.scdn.co/image/ab67616d0000b2730421ed6fd19cbe84cb84950e,1,1,180240,https://p.scdn.co/mp3-preview/e0af157312d6e4068fccfc1157bbe914e77b9cd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USAT21100832,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.696,0.699,4.0,-3.76,0.0,0.0468,0.0374,0.00108,0.0485,0.967,127.988,4.0,,Big Beat Records/Atlantic,"C © 2011 Big Beat Records, Inc. for the United States and WEA International for the world outside the United States, P ℗ 2011 Big Beat Records, Inc. for the United States and WEA International for the world outside the United States",8513 +8514,spotify:track:74MfBIVOVHzQiJqfJ1dgTo,I Wish,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:2HVx2tiZnLX8xeaUthed1e,Songs In The Key Of Life,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1976-09-28,https://i.scdn.co/image/ab67616d0000b273492e424606db3574bf2d8823,1,6,252373,https://p.scdn.co/mp3-preview/4c07b0f47c516e5242f0233c76549fefcd753a38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO17682657,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.826,0.718,10.0,-10.388,0.0,0.0555,0.0845,5.44e-06,0.0652,0.884,105.857,4.0,,Universal/Island Def Jam,"C © 1976 Motown Record Company L.P., P ℗ 1976 UMG Recordings, Inc.",8514 +8515,spotify:track:6gEioWsXbaNY025YFTYaBE,Most Girls,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:1FtowJguLCYT0Fe2xAsKMb,Can't Take Me Home,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2000,https://i.scdn.co/image/ab67616d0000b273b6d42aa9edfe910a7f85b2d5,1,3,298933,https://p.scdn.co/mp3-preview/2dcbbbfcb263e3b45f666cbd7cf3fd4fd0f2d89c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF20000037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.753,0.745,11.0,-5.698,0.0,0.0312,0.0392,0.00321,0.0664,0.692,97.919,4.0,,Arista/LaFace Records,"P (P) 1999, 2000 LaFace Records LLC",8515 +8516,spotify:track:2Y9AXrqaI1FHbIJFGXL54c,I Want to Be Wanted,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,spotify:album:7B4ewUWVdSC9yuFGiFWuem,"Ultimate Collection, Vol. 1",spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,2015-03-06,https://i.scdn.co/image/ab67616d0000b27337f474838296378c820e7d72,1,34,182626,https://p.scdn.co/mp3-preview/e84a4932b1ab8058e86a52d8aa5161120109d276?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,DEG320701734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rockabilly",0.45,0.465,8.0,-5.12,1.0,0.0271,0.627,0.0,0.123,0.448,107.578,3.0,,10TEN MEDIA,"C 2015 10TEN MEDIA, P 2015 10TEN MEDIA",8516 +8517,spotify:track:6Z5wWOqBfk4G3bP1KF2Vbj,Popcorn,spotify:artist:2vaRrv3i7PDOXPEue24qe5,Hot Butter,spotify:album:5A8Yx93pjDI0gi8HhmI3v6,28 Big Ones,spotify:artist:2vaRrv3i7PDOXPEue24qe5,Hot Butter,2005,https://i.scdn.co/image/ab67616d0000b273b74dff9d1001b01d3c718312,1,1,151440,https://p.scdn.co/mp3-preview/a7b2fe3061e0477538773cfd6982583fc3a286e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0511897,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"early synthpop,moog",0.784,0.626,11.0,-14.617,0.0,0.0572,0.0425,0.703,0.0645,0.952,136.886,4.0,,Musicor Records,"C 2005 Gusto Records Inc., P 2005 Gusto Records Inc.",8517 +8518,spotify:track:05n5jVlrWO9hFjtfHU61OT,Don’t Be So Shy - Filatov & Karas Remix,"spotify:artist:74eY8wbrhhVD7pACbBHwHw, spotify:artist:7daBhtlX1OrXCVsv7ARasU, spotify:artist:313pfNNXQaSJr5knWPV1m5","Imany, Filatov, Karas",spotify:album:2V1hHcajXluLRQMlvpwRDN,Don’t Be So Shy (Filatov & Karas Remix),spotify:artist:74eY8wbrhhVD7pACbBHwHw,Imany,2016-03-11,https://i.scdn.co/image/ab67616d0000b273b65cd866ff4a88225648fb36,1,1,190000,https://p.scdn.co/mp3-preview/297b9464e79ea931d6a22895a94a7a52cc54b369?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,FR9W11515482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,french indie pop,0.737,0.954,8.0,-2.936,0.0,0.05,0.034,0.0103,0.412,0.904,119.979,4.0,,Astrx,"C © 2016 Ministry of Sound Recordings Ltd., under exclusive license to Astrx Music, a division of Ministry of Sound Australia Pty Ltd. www.ministryofsound.com.au, P ℗ 2016 Ministry of Sound Recordings Ltd., under exclusive license to Astrx Music, a division of Ministry of Sound Australia Pty Ltd. www.ministryofsound.com.au",8518 +8519,spotify:track:1DWmir4zA2RO1HkAeD2vrD,We Built This City,spotify:artist:0kObWap02DEg9EAJ3PBxzf,Starship,spotify:album:3HcgOp0YQDt8rYzgvJwdwk,Knee Deep In The Hoopla,spotify:artist:0kObWap02DEg9EAJ3PBxzf,Starship,1985,https://i.scdn.co/image/ab67616d0000b27392a75d804b1696f4df41834f,1,1,294933,https://p.scdn.co/mp3-preview/7c136e7220892133e94c4d13d4ca7262d3d5cf4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC18503424,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new romantic,new wave pop,soft rock,synthpop",0.649,0.82,5.0,-8.841,1.0,0.0353,0.0471,0.0,0.0816,0.702,144.226,4.0,,RCA Records Label,P (P) 1999 BMG Entertainment,8519 +8520,spotify:track:6sUvNDgdjyC6c2Nffc0biF,Mirror (feat. Wrabel),"spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt, spotify:artist:7r2uG6BlFXKcwmh9ItqlII","Illy, Wrabel",spotify:album:2WzvrllPVAaOzNr3Juq5xJ,The Space Between,spotify:artist:6NFyaN9PMCDZ3LKxGwHAXt,Illy,2021-01-15,https://i.scdn.co/image/ab67616d0000b2730675d2476a81a9adc0e62b92,1,5,221706,https://p.scdn.co/mp3-preview/c8dfc1393eb8c58c9c36d63ba9b36967e46c5df9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUBM02000693,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,australian trap,alt z,indie poptimism",0.667,0.54,9.0,-7.768,0.0,0.0585,0.221,0.0,0.0932,0.675,145.106,4.0,,Sony Music Entertainment,P (P) 2020 Illy under exclusive license to Sony Music Entertainment Australia Pty Ltd,8520 +8521,spotify:track:5EhFzA5rP6O6phY64QYeZ4,Accidents Happen,spotify:artist:16Mje1BDQmN1DWp4a94YOC,Zoë Badwi,spotify:album:1AaoFuNEJeLAw9metGwbon,Zoë,spotify:artist:16Mje1BDQmN1DWp4a94YOC,Zoë Badwi,2011-06-14,https://i.scdn.co/image/ab67616d0000b273ef914a97a92a933e498206d5,1,5,187845,https://p.scdn.co/mp3-preview/9cb48f267a0477b2915515c5af8c1c7d22177aba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNE31100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.66,0.851,1.0,-5.748,0.0,0.0482,0.00378,0.00498,0.0865,0.488,130.046,4.0,,WM Australia,"C 2011 Neon Records Pty Limited Licensed courtesy of Neon Records Pty Limited marketed & distributed by Warner Music Australia Pty Limited, P 2011 Neon Records Pty Limited Licensed courtesy of Neon Records Pty Limited marketed & distributed by Warner Music Australia Pty Limited",8521 +8522,spotify:track:6IGA5YrFiEr5ANrMqKkR6H,Good Grief,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,spotify:album:5NfeW0DqFVT3Su3kHBgTf4,Wild World,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,2016-09-09,https://i.scdn.co/image/ab67616d0000b273e13429d57208d9d69e91566e,1,1,206493,https://p.scdn.co/mp3-preview/4818c7d14613e5d9ec5b6299d7f3c825d8879af6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBUM71602854,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop",0.731,0.758,1.0,-4.888,1.0,0.065,0.143,0.0,0.311,0.88,120.041,4.0,,EMI (Virgin),"C © 2016 Virgin Records Limited, P ℗ 2016 Virgin Records Limited",8522 +8523,spotify:track:0cv1Mnb47oMvjVKMc2cyZw,Can't Hold Us Down (feat. Lil' Kim),"spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS, spotify:artist:5tth2a3v0sWwV1C7bApBdX","Christina Aguilera, Lil' Kim",spotify:album:2USigX9DhGuAini71XZEEK,Stripped,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2002-07-19,https://i.scdn.co/image/ab67616d0000b2737cd872c7701c4737b2f81d87,1,2,255266,https://p.scdn.co/mp3-preview/f336f76fda99c46d27fc9ac648fb42238c674c51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC10201077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,east coast hip hop,hip hop,hip pop,pop rap,r&b,rap,southern hip hop,trap queen,urban contemporary",0.859,0.658,8.0,-4.481,1.0,0.192,0.0326,0.00181,0.0651,0.538,98.989,4.0,,RCA Records Label,P (P) 2002 Sony Music Entertainment,8523 +8524,spotify:track:3ZPCqx2W8U6lOS6hM5xSBR,I Remember You,spotify:artist:4opTS86dN9uO313J9CE8xg,Skid Row,spotify:album:0D48ZbriW82M2GbOKCbd1G,Best Of,spotify:artist:4opTS86dN9uO313J9CE8xg,Skid Row,2007-10-15,https://i.scdn.co/image/ab67616d0000b2733d9de99dfd0d3bc6f974dea6,1,4,314026,https://p.scdn.co/mp3-preview/dd8f7501a0e80f2e050b75702c200b3f167cf322?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USAT29800351,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam metal,hard rock,metal,rock",0.474,0.704,0.0,-6.425,1.0,0.0277,0.000962,7.25e-05,0.194,0.475,88.25,4.0,,Rhino Atlantic,"C © 1998 Atlantic Recording Corp., a Warner Music Group Company, P ℗ 1998 Atlantic Recording Corp., a Warner Music Group Company",8524 +8525,spotify:track:4BjJ6bUhjmV7ojjryM1gLI,What Have They Done To My Song Ma?,spotify:artist:4jrTNltJtTMUfXybDdsHDn,The New Seekers,spotify:album:7fCJV5AS4vWwgSaeYPwKEj,The Albums 1970-73,spotify:artist:4jrTNltJtTMUfXybDdsHDn,The New Seekers,2019-02-15,https://i.scdn.co/image/ab67616d0000b273cf920e39bf6a32738cd04395,1,13,202040,https://p.scdn.co/mp3-preview/b4c21d08a8f35c0df9e9f648ff0d5ce009f03939?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,NLF050390181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic uk pop,merseybeat,rock-and-roll",0.448,0.467,8.0,-9.529,1.0,0.0458,0.615,0.0,0.309,0.367,135.536,4.0,,Virgin Music UK,"C © 2019 Polydor Records (UK), under exclusive licence to Caroline International, P This Compilation ℗ 2019 Polydor Records (UK), under exclusive licence to Caroline International",8525 +8526,spotify:track:3E7dfMvvCLUddWissuqMwr,Party In The U.S.A.,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:0IuHVgAvbNDJnJepuSZ8Oz,The Time Of Our Lives - International Version,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2009-01-01,https://i.scdn.co/image/ab67616d0000b2734ea6653890e297d53e93e3e0,1,2,202066,https://p.scdn.co/mp3-preview/b2ba87ea556f5c9f44c947b176ccec21da3e612f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USHR10924519,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.652,0.698,10.0,-4.667,0.0,0.042,0.00112,0.000115,0.0886,0.47,96.021,4.0,,Hollywood Records,"C © 2009 Hollywood Records, Inc., P ℗ 2009 Hollywood Records, Inc.",8526 +8527,spotify:track:75tHHyxJw2u6EeMPaTNXHD,If I Were A Carpenter,spotify:artist:7fIvjotigTGWqjIz6EP1i4,Four Tops,spotify:album:4Jw0RycAqlXeAoymbc0CYp,Reach Out,spotify:artist:7fIvjotigTGWqjIz6EP1i4,Four Tops,1967-07-01,https://i.scdn.co/image/ab67616d0000b27347d4f42187d70ddbaac864a2,1,4,168800,https://p.scdn.co/mp3-preview/579b06a18f9ccc0567b9528a9b56095a5c2a39a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USMO16700448,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,motown,quiet storm,soul",0.586,0.571,0.0,-8.343,1.0,0.0271,0.199,0.0,0.245,0.69,126.825,4.0,,Motown,"C © 1967 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1967 Motown Records, a Division of UMG Recordings, Inc.",8527 +8528,spotify:track:64EWXSXvxhpdFQgvvtL22y,Helping Hand,spotify:artist:3vgQA38yGGMvn4DHjsVre5,The Screaming Jets,spotify:album:625QqN3HWlkXdzfik5It0b,Tear Of Thought,spotify:artist:3vgQA38yGGMvn4DHjsVre5,The Screaming Jets,1992-02-11,https://i.scdn.co/image/ab67616d0000b273432c22599bf9adb88859a8f4,1,6,290493,https://p.scdn.co/mp3-preview/77aee9bf2aaca74ecdbb796fee20edd32f1dd68c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUBM09220206,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.498,0.557,8.0,-10.462,0.0,0.0354,0.00038,2.62e-05,0.312,0.473,133.264,4.0,,rooArt,P (P) 1992 Sony Music Entertainment (Australia) Pty Limited,8528 +8529,spotify:track:4MVhYm4LCenxBIZKrT5CAc,Dancing in the City,spotify:artist:0bUGoPJdCrDnuIQNLxsnBb,Marshall Hain,spotify:album:6fIotKh6Xp44xP0hvYYboe,Free Ride,spotify:artist:0bUGoPJdCrDnuIQNLxsnBb,Marshall Hain,2011-07-01,https://i.scdn.co/image/ab67616d0000b273750bcf0e47b1a74cd2217d90,1,2,229480,https://p.scdn.co/mp3-preview/bf980f16e36ba7f7f91dae9466235878524c3562?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBAYE7800132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.721,0.422,7.0,-14.654,0.0,0.0425,0.454,0.0118,0.0794,0.605,102.194,4.0,,Parlophone UK,"C © 2011 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2011 Parlophone Records Ltd, a Warner Music Group Company",8529 +8530,spotify:track:0DGEsyoeTeEtlcZj1gGIPX,I'll Never Fall In Love Again,spotify:artist:4E9w0bms6HcEppFlWjeW2d,Bobbie Gentry,spotify:album:6BcMYJ3L0tMDD8gQFKKdDF,Touch 'Em With Love,spotify:artist:4E9w0bms6HcEppFlWjeW2d,Bobbie Gentry,1969-08-01,https://i.scdn.co/image/ab67616d0000b273268e91262ea9e15c74f7cb56,1,9,175799,https://p.scdn.co/mp3-preview/75ff3a087ce21903bf78d5561abdcdf3d579cf61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USCN19000130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.601,0.425,2.0,-13.368,1.0,0.0287,0.276,0.000127,0.12,0.58,114.948,4.0,,EMI Catalogue,"C © 1969 Capitol Records Nashville, P ℗ 1969 Capitol Records Nashville",8530 +8531,spotify:track:20I6sIOMTCkB6w7ryavxtO,Call Me Maybe,spotify:artist:6sFIWsNpZYqfjUpaCgueju,Carly Rae Jepsen,spotify:album:6SSSF9Y6MiPdQoxqBptrR2,Kiss,spotify:artist:6sFIWsNpZYqfjUpaCgueju,Carly Rae Jepsen,2012-01-01,https://i.scdn.co/image/ab67616d0000b273d3ee4bf67c2ac2154006ad72,1,3,193400,https://p.scdn.co/mp3-preview/c4a7b5e8b012344e607dc50991a32b4a00326739?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,CAB391100615,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,dance pop,pop",0.782,0.58,7.0,-6.548,1.0,0.0407,0.0114,2.28e-06,0.108,0.66,120.021,4.0,,Silent Records IGA,"C © 2012 School Boy/Interscope Records, P ℗ 2012 School Boy/Interscope Records",8531 +8532,spotify:track:586SWMAwcR753dDyZnx8J3,The Man Who Can't Be Moved,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:045la5i4prOgK6GP16KOtM,The Man Who Can't Be Moved,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2008-07-18,https://i.scdn.co/image/ab67616d0000b27329d53620a681aa399c34ee64,1,1,242106,https://p.scdn.co/mp3-preview/b5126c67a4973b633b4a95c3359206fa9122bc92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL0800144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.612,0.619,10.0,-5.038,1.0,0.0255,0.442,0.0,0.0976,0.357,99.897,4.0,,Phonogenic,P (P) 2008 Sony Music Entertainment UK Limited,8532 +8533,spotify:track:58q2HKrzhC3ozto2nDdN4z,I Like It,"spotify:artist:4kYSro6naA4h99UJvo89HB, spotify:artist:4q3ewBCX7sLwd24euuV69X, spotify:artist:1vyhD5VmyZ7KMfW5gqLgo5","Cardi B, Bad Bunny, J Balvin",spotify:album:4KdtEKjY3Gi0mKiSdy96ML,Invasion of Privacy,spotify:artist:4kYSro6naA4h99UJvo89HB,Cardi B,2018-04-06,https://i.scdn.co/image/ab67616d0000b273a0caffda54afd0a65995bbab,1,7,253390,https://p.scdn.co/mp3-preview/0fe3542d88da43dd131627df756ac1ce318713fd?cid=9950ac751e34487dbbe027c4fd7f8e99,True,75,USAT21801431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,rap,reggaeton,trap latino,urbano latino,reggaeton,reggaeton colombiano,trap latino,urbano latino",0.816,0.726,5.0,-3.998,0.0,0.129,0.099,0.0,0.372,0.65,136.048,4.0,,Atlantic/KSR,"C © 2018 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2018 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",8533 +8534,spotify:track:22PMfvdz35fFKYnJyMn077,Marry You,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:1uyf3l2d4XYwiEqAb7t7fX,Doo-Wops & Hooligans,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2010-05-11,https://i.scdn.co/image/ab67616d0000b273f6b55ca93bd33211227b502b,1,6,230192,https://p.scdn.co/mp3-preview/6747a3674ec0b24ab9067972bb19291c3048a8d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USAT21001887,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.621,0.82,10.0,-4.865,1.0,0.0367,0.332,0.0,0.104,0.452,144.905,4.0,,Atlantic Records,"C © 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States., P ℗ 2010 Atlantic Recording Corporation For the United States and WEA International Inc. for the world outside of the United States.",8534 +8535,spotify:track:1ZWLWVqeEMWMKTlteS0yLH,Love You Goodbye,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,spotify:album:1gMxiQQSg5zeu4htBosASY,Made In The A.M. - Deluxe Edition,spotify:artist:4AK6F7OLvEQ5QYCBNiQWHq,One Direction,2015-11-13,https://i.scdn.co/image/ab67616d0000b273241e4fe75732c9c4b49b94c3,1,11,196933,https://p.scdn.co/mp3-preview/12367f9ac4957d89c3ca6c50fcd636845423b8e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBHMU1500112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop,post-teen pop,talent show",0.547,0.657,1.0,-4.787,1.0,0.0332,0.0928,0.0,0.119,0.36,133.189,4.0,,Syco Music,P (P) 2015 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,8535 +8536,spotify:track:6jQlAObMMtULuYctlVjCLg,No Aphrodisiac - Original,spotify:artist:2fczAptz6g62e12F9LxYI6,The Whitlams,spotify:album:0x7f8WBEVg0SpVDRAydbvn,Eternal Nightcap,spotify:artist:2fczAptz6g62e12F9LxYI6,The Whitlams,1997,https://i.scdn.co/image/ab67616d0000b2732ee1f37f4989b5e35679d7c2,1,1,259493,https://p.scdn.co/mp3-preview/ea7bd0176a5ea166aa73bbd39a04fba15ae1251e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBY09701100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,piano rock",0.455,0.607,2.0,-8.27,0.0,0.039,0.355,8.27e-06,0.119,0.636,74.52,4.0,,Black Yak Records,C (C) 1997 Black Yak/Phantom,8536 +8537,spotify:track:31sSFHIe4NaxltVFOEIcTa,working,"spotify:artist:45dkTj5sMRSjrmBSBeiHym, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Tate McRae, Khalid",spotify:album:4iCcsBlzVQVZoJzxBvhuyS,working,"spotify:artist:45dkTj5sMRSjrmBSBeiHym, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Tate McRae, Khalid",2021-06-17,https://i.scdn.co/image/ab67616d0000b273e9d11eb596a7a7e426d81635,1,1,210219,https://p.scdn.co/mp3-preview/0793ddc8738dcbf948255042a74c26892cea5e5b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,57,USRC12101632,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop,pop r&b",0.783,0.435,7.0,-7.78,1.0,0.0588,0.282,0.0,0.0833,0.512,106.974,4.0,,RCA Records Label,"P (P) 2021 RCA Records, a division of Sony Music Entertainment",8537 +8538,spotify:track:14BNlprhNMYVRUROXn6N87,Mystify,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:7CJvhqb2PJq5fBcY6eKqjl,INXS Remastered,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b273114b2baa75317b81a8c9c7ca,6,9,197586,https://p.scdn.co/mp3-preview/063653c8cad6b2255863e103b8f640f826ebc0bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAMX8700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.603,0.837,9.0,-5.662,0.0,0.0371,0.0117,0.000322,0.112,0.429,129.435,4.0,,Petrol Records,"C © 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2011 Petrol Records Pty Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",8538 +8539,spotify:track:1FXPDGbO6mVSqnQKts7Nvr,1-2-3-4 (Sumpin' New),spotify:artist:3y24n3XhZ96wgwRXjvS17T,Coolio,spotify:album:3gj5MfnW3Oud8Ji1n7Tops,Gangsta's Paradise,spotify:artist:3y24n3XhZ96wgwRXjvS17T,Coolio,1995-11-07,https://i.scdn.co/image/ab67616d0000b2737ffd7ae57eaffcac65ea2431,1,7,213920,https://p.scdn.co/mp3-preview/8b549dc8ebd56b9b7d4e4bc3ff30009570ff63b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USTB10250030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,west coast rap",0.904,0.747,1.0,-7.218,0.0,0.158,0.296,0.00291,0.322,0.611,115.182,4.0,,Rhino,"C 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",8539 +8540,spotify:track:79JSK9KJq20yINUKx0feVz,Don't Throw Your Love Away - Mono,spotify:artist:4QmkLL9JOqM9dusHS1Hghe,The Searchers,spotify:album:3PZGP5tT1U7f46FuiCpm8g,It's The Searchers,spotify:artist:4QmkLL9JOqM9dusHS1Hghe,The Searchers,1964-01-01,https://i.scdn.co/image/ab67616d0000b27307378f3347ee1b121d2f70e0,1,14,136960,https://p.scdn.co/mp3-preview/80ce4b654b81af06d878cdf72c895c8cc0295e92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6400045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,rock-and-roll",0.539,0.682,6.0,-7.307,1.0,0.0387,0.579,0.0,0.044,0.803,122.171,4.0,,Castle Communications,"C © 2001 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2001 Sanctuary Records Group Ltd., a BMG Company",8540 +8541,spotify:track:4QYCUJkn33EUjsQO6NOWty,When You're Not Near,spotify:artist:5ZeVrxxiSV3BCNF3Q5fqP7,Rob E.G.,spotify:album:1CVbJIIclRZvuEIFtRmXIg,The Greatest Hits,spotify:artist:5ZeVrxxiSV3BCNF3Q5fqP7,Rob E.G.,2020-08-08,https://i.scdn.co/image/ab67616d0000b2730488ee4a8256d702483a37d4,1,14,196826,https://p.scdn.co/mp3-preview/3056590ea3ae7023845dc37826d43da17d7ccbbc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEKB1700533,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.197,0.749,10.0,-3.487,1.0,0.0389,0.709,0.000363,0.126,0.349,82.679,4.0,,Wizard Records,"C 2020 Robie Porter Music, P 2020 Wizard Records",8541 +8542,spotify:track:3HPfwpfUtcdyJPvlLtXtNg,Sirens,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:7t9f6jrmK6K7CDpVKyTaAk,Lightning Bolt,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,2013-01-01,https://i.scdn.co/image/ab67616d0000b273a97c717375f389ec4cc8b697,1,4,340320,https://p.scdn.co/mp3-preview/e364f14e2b388afdbc6c728c7498d36f3770e40f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71308244,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.525,0.846,3.0,-5.893,1.0,0.0281,0.00289,1.45e-05,0.142,0.507,155.028,4.0,,Universal Music Group,"C © 2013 Monkeywrench, Inc., Exclusively Licensed in the U.S. to Universal Republic Records, a Division of UMG Recordings, Inc, P ℗ 2013 Monkeywrench, Inc., Exclusively Licensed in the U.S. to Universal Republic Records, a Division of UMG Recordings, Inc",8542 +8543,spotify:track:1s8gN0ixgfEEqYzd5vgfdx,Doctor Pressure - Dirty Radio Edit,"spotify:artist:5YjEVrNMrIRw2xGbjTN6Ti, spotify:artist:18xgcedCGxFbqLbIQn5R8F","Mylo, Miami Sound Machine",spotify:album:2qdlsOeM9AqxvK7SWD687A,Doctor Pressure,"spotify:artist:5YjEVrNMrIRw2xGbjTN6Ti, spotify:artist:18xgcedCGxFbqLbIQn5R8F","Mylo, Miami Sound Machine",2009-01-01,https://i.scdn.co/image/ab67616d0000b273402a09412780fc2b5ccf4738,1,1,204826,https://p.scdn.co/mp3-preview/a9b24cb13c0dc4ed54ff6a1c49f6920f625f80dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUNV00600113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,filter house,disco,new romantic,new wave pop,soft rock,synthpop",0.775,0.933,11.0,-4.039,0.0,0.0505,0.0492,0.0944,0.14,0.849,129.044,4.0,,Ministry Of Sound,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",8543 +8544,spotify:track:1BmVQ5RGqqtF5cnsv6cQYu,"Girl, You'll Be A Woman Soon",spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:512ipXtdhwJF52NTT2yryo,The Bang Years 1966-1968 - The 23 Original Mono Recordings,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1968,https://i.scdn.co/image/ab67616d0000b27336d6a0e9046f5cf060aa51e8,1,3,180253,https://p.scdn.co/mp3-preview/54f425f8c4aa7d4784f56ecd63435d4a7046f138?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM11100066,spotify:user:bradnumber1,2022-09-25T11:06:20Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.515,0.641,5.0,-5.573,1.0,0.0272,0.567,0.066,0.321,0.655,109.559,4.0,,Neil Diamond,"C © 2014 Neil Diamond, under exclusive license to Capitol Records, LLC, P This Compilation ℗ 2011 Neil Diamond, under exclusive license to Capitol Records, LLC",8544 +8545,spotify:track:72hcFp4tYkd3dbNA9dZ3Pv,Bad Medicine,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:3mcKOl0KNe65BqiBa40WxR,New Jersey (Deluxe Edition),spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1988-09-13,https://i.scdn.co/image/ab67616d0000b273901d0116a03d30a5c45bb99c,1,2,316706,https://p.scdn.co/mp3-preview/a42f3cc3f87a76479da0307ae210e3d902e53928?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USPR39402228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.555,0.973,9.0,-3.804,1.0,0.035,0.048,0.0,0.0853,0.805,118.642,4.0,,Island Records,"C © 2014 The Island Def Jam Music Group, P This Compilation ℗ 2014 The Island Def Jam Music Group",8545 +8546,spotify:track:0spN4UlSI0X6YSYCWpSzgz,How You Gonna See Me Now,spotify:artist:3EhbVgyfGd7HkpsagwL9GS,Alice Cooper,spotify:album:7FFpqmbQxj3u4Q7aLGNox0,From the Inside,spotify:artist:3EhbVgyfGd7HkpsagwL9GS,Alice Cooper,1978,https://i.scdn.co/image/ab67616d0000b27393d5c740cf48ebf6adf1a4a2,1,7,235973,https://p.scdn.co/mp3-preview/eee675ab8a94ac419b4ef2062adb36cc4d8a08a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USWB10107647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,detroit rock,glam metal,glam rock,hard rock,metal,protopunk,rock",0.544,0.336,5.0,-14.413,1.0,0.038,0.458,3.48e-06,0.133,0.298,136.516,4.0,,Rhino/Warner Records,"C © 1978 Warner Records Inc., P ℗ 2007 Warner Records Inc. Manufactured & Marketed by Rhino Entertainment Company, A Warner Music Group Company",8546 +8547,spotify:track:2tUBqZG2AbRi7Q0BIrVrEj,I Wanna Dance with Somebody (Who Loves Me),spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:5Vdzprr5cOqXQo44eHeV7t,Whitney,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1987-06-02,https://i.scdn.co/image/ab67616d0000b273cc57e9b00b87dd0f6e868347,1,1,291293,https://p.scdn.co/mp3-preview/7414ae6c811dee16c467c256429c7427fbcc98d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USAR18700121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.709,0.824,1.0,-8.824,1.0,0.0453,0.207,0.000307,0.0888,0.867,118.818,4.0,,Arista/Legacy,P (P) 1987 Arista Records LLC,8547 +8548,spotify:track:60RmRJm8QwSttdgNQXpjac,Don't Tell Me,spotify:artist:5xkAtLTf309LAGZTbvULBn,Ruel,spotify:album:7IpP3pQJEfuz4pJme0lTS5,Don't Tell Me,spotify:artist:5xkAtLTf309LAGZTbvULBn,Ruel,2017-07-14,https://i.scdn.co/image/ab67616d0000b2734d64cbb5f65f1f9accdcda9a,1,1,241625,https://p.scdn.co/mp3-preview/c47a93ab4a06b07a2964eeb6f9d0d554c4172014?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUOGL1700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,australian alternative pop,singer-songwriter pop",0.565,0.324,4.0,-9.137,0.0,0.0342,0.565,2.17e-05,0.381,0.139,77.495,3.0,,Sony Music Entertainment,"P (P) 2018 RCA Records, a division of Sony Music Entertainment. In AUS/NZ, (P) 2018 Muziek Group Pty Ltd.",8548 +8549,spotify:track:5HOpkTTVcmZHnthgyxrIL8,The Fox (What Does the Fox Say?),spotify:artist:2lEOFtf3cCyzomQcMHJGfZ,Ylvis,spotify:album:77QwsMRvonZJn7adV47V78,The Fox (What Does the Fox Say?),spotify:artist:2lEOFtf3cCyzomQcMHJGfZ,Ylvis,2013-09-02,https://i.scdn.co/image/ab67616d0000b273078f1176c3c725de8e95f490,1,1,213708,https://p.scdn.co/mp3-preview/d3a46e6cb83d8d4f29dfbc75d2f92d244e9c7171?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,NOAGW1300374,spotify:user:bradnumber1,2021-08-08T09:26:31Z,comic,0.703,0.867,6.0,-4.292,1.0,0.0453,0.107,0.0,0.119,0.546,128.008,4.0,,WM Norway,"C © 2013 Urheim Recods and 45th & 3rd Music LLC under exclusive license to Parlophone Music Norway A Warner Music Group Company, P ℗ 2013 Urheim Recods and 45th & 3rd Music LLC under exclusive license to Parlophone Music Norway A Warner Music Group Company",8549 +8550,spotify:track:3qI94hINNNeb4S7xQi18lS,Blame It on the Boogie,spotify:artist:2yrbLiuBmc9j81lTX3XUuI,The Jacksons,spotify:album:46yTC334aJI4QTv4lkzj3a,Destiny,spotify:artist:2yrbLiuBmc9j81lTX3XUuI,The Jacksons,1978-12-17,https://i.scdn.co/image/ab67616d0000b27386e5468d84ed66f06d9a799e,1,1,214200,https://p.scdn.co/mp3-preview/7764eed1ae614362f9555556d0c47ddbee0e9089?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM17801024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,motown",0.774,0.641,1.0,-10.193,1.0,0.0799,0.0765,0.0,0.0867,0.875,113.256,4.0,,Epic,"P (P) 1978 Epic Records, a division of Sony Music Entertainment",8550 +8551,spotify:track:2bCQHF9gdG5BNDVuEIEnNk,Smooth Criminal - 2012 Remaster,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:24TAupSNVWSAHL0R7n71vm,Bad 25th Anniversary,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2012-09-18,https://i.scdn.co/image/ab67616d0000b2731bb21d27effb96a1d0fe8d6d,1,10,257760,https://p.scdn.co/mp3-preview/633acb8a58103ad8c3b63887108bec386d607063?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USSM11204989,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.853,0.981,8.0,-3.947,1.0,0.0751,0.247,0.468,0.306,0.595,118.193,4.0,,Epic/Legacy,P (P) 1993 MJJ Productions Inc./(P) 2012 MJJ Productions Inc./(P) 2012 MJJ Productions Inc.,8551 +8552,spotify:track:3t4EJY6cTsb6FyP1EQzajK,Baby Don't Forget My Number,spotify:artist:3vRclCt9VnNhYIxFMQCxuM,Milli Vanilli,spotify:album:6s8bfXrXEqaFFmAi02m7k4,All Or Nothing,spotify:artist:3vRclCt9VnNhYIxFMQCxuM,Milli Vanilli,1988-11-14,https://i.scdn.co/image/ab67616d0000b27330951af6ae2cced0a3defd49,1,7,249640,https://p.scdn.co/mp3-preview/3b9b125b9a31e3734a4fa7ae5b30950ddbc3a27e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,DED168800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,new jack swing,new wave pop",0.852,0.649,6.0,-12.877,0.0,0.0749,0.00537,0.0029,0.157,0.845,100.303,4.0,,Hansa Local,P 1988 SONY BMG MUSIC ENTERTAINMENT (GERMANY) GmbH,8552 +8553,spotify:track:22eYCcDGxD2JB17SONwU2J,Get Over You,spotify:artist:2cBh5lVMg222FFuRU7EfDE,Sophie Ellis-Bextor,spotify:album:5nUHh90XmqFF7MRcJmW6RU,Read My Lips (New NON-EU version),spotify:artist:2cBh5lVMg222FFuRU7EfDE,Sophie Ellis-Bextor,2002-01-01,https://i.scdn.co/image/ab67616d0000b2739d0333fcec1e99a158218001,1,8,195293,https://p.scdn.co/mp3-preview/a67a74d95b58e01bda41a6ae8961ac9163351fb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0201132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,new wave pop",0.658,0.906,0.0,-5.552,1.0,0.0354,0.00226,0.000212,0.294,0.713,121.998,4.0,,Universal Music Ltd.,"C © 2002 Polydor Ltd. (UK), P ℗ 2002 Polydor Ltd. (UK)",8553 +8554,spotify:track:3dcpXrvJczwaALgcy8f8IN,I Miss You,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:0n2FhJf0YwnCfCVotc91TQ,blink-182 (International Version),spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,2003-10-24,https://i.scdn.co/image/ab67616d0000b273f842127ab5485e468c50db2f,1,3,227253,https://p.scdn.co/mp3-preview/cc5611e3fd54bef22b311e8f689f22d4189164ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10346123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.423,0.776,11.0,-6.485,1.0,0.0452,0.000843,8e-06,0.0911,0.569,109.991,4.0,,Universal Music Ltd.,"C (C) 2003 Geffen Records, P (P) 2003 Geffen Records",8554 +8555,spotify:track:5hgxGGhRlAnPMYfFCuC1vY,Remedy,spotify:artist:0MoXIHcFwhIWnFgBfdvQ30,Little Boots,spotify:album:1SxlVyf7bCGblH0jQYfL9Z,Hands (Standard DMD),spotify:artist:0MoXIHcFwhIWnFgBfdvQ30,Little Boots,2008-06-08,https://i.scdn.co/image/ab67616d0000b2732e5d8574ecf63ba75fe8268f,1,5,199333,https://p.scdn.co/mp3-preview/1cea77065fc33ebf09b7a7ac2aa4613fa896a1d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBFFS0900006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,neo-synthpop",0.586,0.804,6.0,-2.998,0.0,0.0475,0.0332,0.0,0.242,0.81,128.963,4.0,,679 Recordings UK. Ltd.,"C © 2009 679 Recordings Ltd., P ℗ 2009 679 Recordings Ltd.",8555 +8556,spotify:track:3yUcJwYu7fXAfqMj9krY6l,Thank You,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,spotify:album:7ydMeYrv8bFFRkkHepoJM4,No Angel,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,1999,https://i.scdn.co/image/ab67616d0000b2733e5cbf3b3ac5905cb68377d5,1,6,218360,https://p.scdn.co/mp3-preview/9827bf18795cdecafe0bd571487f6fcd858cb805?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USAR19900870,spotify:user:bradnumber1,2021-10-20T22:25:42Z,"dance pop,europop,lilith,neo mellow,pop rock",0.725,0.583,1.0,-9.942,0.0,0.0427,0.3,0.000238,0.0665,0.762,79.984,4.0,,Sony BMG Music UK,P (P) 2008 Sony BMG Music Entertainment (UK) Limited,8556 +8557,spotify:track:0sXuP9uIFdL9AQbMGhRTIG,Iko Iko,spotify:artist:79mvAIaa8bVyObPdeqs2i3,The Belle Stars,spotify:album:49lt16ScZyPFZtrT6U8w9m,Belle-Issima! Sweet Memories…,spotify:artist:79mvAIaa8bVyObPdeqs2i3,The Belle Stars,1981,https://i.scdn.co/image/ab67616d0000b2732789b68b13e40d350a987f30,1,9,179173,https://p.scdn.co/mp3-preview/cf77aa25e37650c04fcbf9c633039b057a7d2833?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAFR8210056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.705,0.987,1.0,-8.628,1.0,0.0631,0.107,0.711,0.358,0.735,104.249,4.0,,Edsel,"C (C) 2019 Demon Music Group Ltd., P (P) 1981 The Belle Stars",8557 +8558,spotify:track:7wC5vOh3fQibFYWjCIotKw,Bye Bye Baby,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,spotify:album:2nZfNhrDCbTNnZEc4iuCcl,Once Upon A Star,spotify:artist:3r9TXuXfOUxXjgYgAR0fP8,Bay City Rollers,1975,https://i.scdn.co/image/ab67616d0000b2735b646e3a50ea4f0e4c5b5aa3,1,1,170360,https://p.scdn.co/mp3-preview/1e27849d9e8481b68bad224955f6cf964afd70d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USAR17500008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.627,0.497,7.0,-12.283,1.0,0.0271,0.387,0.0,0.05,0.688,129.531,4.0,,Arista,P (P) 2004 BMG UK & Ireland Ltd.,8558 +8559,spotify:track:6WvbMOjKf5y3CAHn4ubwlp,"Yummy, Yummy, Yummy",spotify:artist:6EHdKd4m8DzNf9NhVeJSVI,Ohio Express,spotify:album:1z5SrNEBvLmCnJxe54Thk9,The Best of the Ohio Express,spotify:artist:6EHdKd4m8DzNf9NhVeJSVI,Ohio Express,2001-04-03,https://i.scdn.co/image/ab67616d0000b273b75cdf9ba8d19da490b47137,1,1,140426,https://p.scdn.co/mp3-preview/4a6c121390585f775e13cd488f6c6d76943e485f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USBR16800008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock",0.7,0.718,0.0,-6.967,1.0,0.0296,0.592,0.0022,0.0999,0.967,131.48,4.0,,Buddha Records,P (P) 2001 Buddha Records,8559 +8560,spotify:track:0OgYEwK4WfEdc0PvcuyBhN,D.W. Washburn - 1968 Stereo Mix,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:05jMK1VY8Ua6yRIFXalP3F,The Monkees 50,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,2016-08-26,https://i.scdn.co/image/ab67616d0000b273df5f381a77489ddc6810dc6a,2,11,170360,https://p.scdn.co/mp3-preview/aba1cfebd45936ebd96298d0e6ac4dbab81cb245?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,USRH10904005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.69,0.496,4.0,-7.506,1.0,0.0348,0.576,2.29e-06,0.0723,0.741,113.329,4.0,,Rhino,"C © 2016 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved., P ℗ 2016 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Manufactured & Marketed by Rhino Entertainment Company. Printed In U.S.A.",8560 +8561,spotify:track:2vsnWkkh5TQr8fKbTIdHbH,You Don't Scare Me,spotify:artist:4UzQ37Y0rzonVpsXpcNyFH,Josh Pyke,spotify:album:41iPH7E1tJ6gwd2pAZXkMX,Chimney's Afire,spotify:artist:4UzQ37Y0rzonVpsXpcNyFH,Josh Pyke,2008-10-04,https://i.scdn.co/image/ab67616d0000b27390a92f4973c8a269a0957182,1,2,218253,https://p.scdn.co/mp3-preview/31fc8b21f5b141c0ae2105b1aea5289f4fc5f893?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00849320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian singer-songwriter",0.524,0.734,6.0,-6.635,0.0,0.0299,0.0565,0.0,0.23,0.689,90.97,4.0,,Ivy League Records,"C 2008 2008 Ivy League Records, P 2008 2008 Ivy League Records",8561 +8562,spotify:track:4GIsskMpViPkt0uzPJTJSp,"Nasty Girl (feat. Diddy, Nelly, Jagged Edge & Avery Storm) - 2005 Remaster","spotify:artist:5me0Irg2ANcsgc93uaYrpb, spotify:artist:79OSA519ScnPY0MVDpu8ZV, spotify:artist:59wfkuBoNyhDMQGCljbUbA, spotify:artist:7Aq8lpLMSt1Zxu56pe9bmp, spotify:artist:2gBjLmx6zQnFGQJCAQpRgw","The Notorious B.I.G., Avery Storm, Diddy, Jagged Edge, Nelly",spotify:album:2M6rjUsC2T3KJ8Ku2uTTQG,Duets: The Final Chapter,spotify:artist:5me0Irg2ANcsgc93uaYrpb,The Notorious B.I.G.,2005-12-13,https://i.scdn.co/image/ab67616d0000b273373970875cab6dc30b36f10c,1,9,286186,https://p.scdn.co/mp3-preview/396574bc95fe6c97441b14cbe15fdc77120ab649?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,USBB10500008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hardcore hip hop,hip hop,rap,dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap,atl hip hop,contemporary r&b,r&b,urban contemporary,dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.833,0.628,2.0,-7.041,1.0,0.141,0.0949,1.6e-06,0.282,0.645,106.328,4.0,,Bad Boy Records,"C © 2005 Bad Boy Records, LLC for the United States and WEA International Inc. for the world excluding the United States, South America and Central Amercia., P ℗ 2005 Bad Boy Records, LLC for the United States and WEA International Inc. for the world excluding the United States, South America and Central Amercia.",8562 +8563,spotify:track:48XTrEbn0R7YbCB6BSSIUW,I Like To Move It (feat. The Mad Stuntman) - Radio Mix,"spotify:artist:4AXX8UN3xaPrxHSqrgE3Ta, spotify:artist:2rC7eyIFrDIYnFsxsbSxF5, spotify:artist:2XXVHRAup4051ZzWvhouvD, spotify:artist:0bdiA8CQ7jEBx4KmQOvr9z","Reel 2 Real, The Mad Stuntman, Alex Natale DJ, Visnadi",spotify:album:1wWhrerz2sikVOX7v2YDOG,I Like to Move It (feat. The Mad Stuntman) [2010 Mixes],spotify:artist:4AXX8UN3xaPrxHSqrgE3Ta,Reel 2 Real,2007-03-06,https://i.scdn.co/image/ab67616d0000b27321ec501fe7ddf5eefc80d0f5,1,2,221951,https://p.scdn.co/mp3-preview/d0e1ea8099d4ff64677bc609433f93ad2da88ded?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSR39319202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house",0.832,0.877,1.0,-4.542,1.0,0.0528,0.00891,0.000389,0.122,0.57,122.947,4.0,,Strictly Rhythm Records,"C © 2010 BMG Rights Management (US) LLC, P ℗ 2010 BMG Rights Management (US) LLC",8563 +8564,spotify:track:6UN73IYd0hZxLi8wFPMQij,Players,spotify:artist:6AMd49uBDJfhf30Ak2QR5s,Coi Leray,spotify:album:4cAAsw7mPkGt15GXQzWlrM,Players,spotify:artist:6AMd49uBDJfhf30Ak2QR5s,Coi Leray,2022-11-30,https://i.scdn.co/image/ab67616d0000b2735626453d29a0124dea22fb1b,1,1,139560,https://p.scdn.co/mp3-preview/3bab012ecf8da1bb3ab617bf8b9ba604d0c3fc2c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,69,USUM72222387,spotify:user:bradnumber1,2023-05-11T07:58:24Z,"new jersey underground rap,trap queen",0.948,0.512,6.0,-5.74,0.0,0.146,0.0269,8.57e-06,0.0504,0.599,105.004,4.0,,Uptown / Republic Records,"C © 2022 Uptown Records, a division of Republic Records and UMG Recordings, Inc., P ℗ 2022 Uptown Records, a division of Republic Records and UMG Recordings, Inc.",8564 +8565,spotify:track:6ERXUZhdefk8sNScl4nDmj,Hello Stranger,spotify:artist:2UocIcNiHj5n4tj1CnBzRq,Barbara Lewis,spotify:album:7o8twH9T8iZhf2soKPqJbC,Rhino Hi-Five: Barbara Lewis,spotify:artist:2UocIcNiHj5n4tj1CnBzRq,Barbara Lewis,2005-03-15,https://i.scdn.co/image/ab67616d0000b27397cbc8a1a487d5031fe78129,1,1,164346,https://p.scdn.co/mp3-preview/0be17f03b6132fa504c6932055c4d8cab3fac3fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20100900,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,rhythm and blues",0.72,0.471,0.0,-9.359,1.0,0.028,0.676,0.0,0.0456,0.849,101.636,4.0,,Rhino Atlantic,"C © 2005 Atlantic Recording Corp. Manufactured and Marketed by Warner Strategic Marketing., P ℗ 2005 Atlantic Recording Corp. Manufactured and Marketed by Warner Strategic Marketing",8565 +8566,spotify:track:1A6OTy97kk0mMdm78rHsm8,Sunflower - Spider-Man: Into the Spider-Verse,"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:1zNqQNIdeOUZHb8zbZRFMX","Post Malone, Swae Lee",spotify:album:47LpgGVshd0tbFSbm9tTLb,Sunflower (Spider-Man: Into the Spider-Verse),"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:1zNqQNIdeOUZHb8zbZRFMX","Post Malone, Swae Lee",2018-10-18,https://i.scdn.co/image/ab67616d0000b273ef376d3257503f734de0eefc,1,1,158053,https://p.scdn.co/mp3-preview/3c0788c6aba94192edcb497d9a02075bf76c5400?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USUM71814888,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,melodic rap,rap,trap",0.753,0.498,2.0,-5.61,1.0,0.0504,0.551,0.0,0.0706,0.927,89.95,4.0,,Universal Records,"C © 2018 Republic Records, a division of UMG Recordings, Inc., P ℗ 2018 Republic Records, a division of UMG Recordings, Inc.",8566 +8567,spotify:track:7AL6qzIDHIX7pEUWrzNiIs,Hurdy Gurdy Man,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,spotify:album:22fHNsb3nrjDdPoKF7kdPz,The Hurdy Gurdy Man,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,1968-10,https://i.scdn.co/image/ab67616d0000b273eb7263ecabf3ff77a5384ded,1,1,193466,https://p.scdn.co/mp3-preview/a239d072c0db0d4f70b1dab190b0f5deaa2f6231?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM19912397,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british folk,british invasion,classic rock,folk,folk rock,glam rock,psychedelic folk,psychedelic rock,scottish singer-songwriter,singer-songwriter",0.405,0.463,0.0,-16.167,1.0,0.0542,0.00379,0.0442,0.392,0.542,79.451,4.0,,Epic,P Originally released 1968 Sony Music Entertainment Inc.,8567 +8568,spotify:track:4N6SMJvAS2Omc9evrQuYl2,For One Day,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,spotify:album:6kQOt44JVOWXExS0W6jvRN,Dreams,spotify:artist:5VWIuZAPbBdtFHdbDyYeHQ,Evermore,2004-09-27,https://i.scdn.co/image/ab67616d0000b273067e6c55e59b93b55b2a8792,1,4,250280,https://p.scdn.co/mp3-preview/adab8521a28458ecb00d847fe85e869ab8e0a06e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUWA00414140,spotify:user:bradnumber1,2022-11-28T01:00:49Z,"australian alternative rock,australian rock,kiwi rock",0.477,0.64,6.0,-6.724,0.0,0.0298,0.0661,2.13e-06,0.0922,0.13,107.975,4.0,,Evermore Music,"C 2021 Evermore Music, P 2021 Evermore Music",8568 +8569,spotify:track:0GgAAB0ZMllFhbNc3mAodO,Half Mast,spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,spotify:album:1GoqBRUPZzBKvMKZxSQ1mp,Walking On A Dream (Special Edition),spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,2009-01-01,https://i.scdn.co/image/ab67616d0000b273fffbc6bb8f405c2dacf8d64b,1,3,234360,https://p.scdn.co/mp3-preview/0f0986c5cdc64ab97407543703151dca77263ee5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUEI10800040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,dance rock,indietronica,neo-synthpop",0.771,0.738,0.0,-4.88,1.0,0.0303,0.00423,0.00419,0.501,0.761,126.983,4.0,,Capitol Records,"C © 2009 The Sleepy Jackson Pty Ltd and Nick Littlemore, P ℗ 2009 The Sleepy Jackson Pty Ltd and Nick Littlemore",8569 +8570,spotify:track:6TF2LthEA2BqImvYKToR0V,Please Don't Go,spotify:artist:2tUGlReCZRMoRgl0IS79i3,No Mercy,spotify:album:5CQHiljabLGvn72iQk0wsZ,My Promise,spotify:artist:2tUGlReCZRMoRgl0IS79i3,No Mercy,1996-10-05,https://i.scdn.co/image/ab67616d0000b27343e57c8b3faab1b58e3a161b,1,5,240093,https://p.scdn.co/mp3-preview/e972b3da12e6fe774ed80fbccc550a667bcb3138?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,DED169600124,spotify:user:bradnumber1,2023-01-31T06:36:19Z,"boy band,eurodance",0.715,0.838,7.0,-10.541,0.0,0.0341,0.169,3.67e-05,0.395,0.962,124.625,4.0,,MCI,P (P) 1996 MCI,8570 +8571,spotify:track:6gMiDnZM996kOjcVXJbRK9,Susie Darlin,spotify:artist:0esD7V3K0DRse43S4l0bP0,Barry Crocker,spotify:album:3vx8QYSuwLWAJjgSZr8ZP8,Music Makes My Day (Remastered),spotify:artist:0esD7V3K0DRse43S4l0bP0,Barry Crocker,2015-10-29,https://i.scdn.co/image/ab67616d0000b273d0f07d608d8f165231e8e44a,1,10,205973,https://p.scdn.co/mp3-preview/28d5ab3f02bc11d3d41c0a145efea525d9e83b3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLZJ1570990,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.53,0.516,9.0,-9.192,1.0,0.0337,0.171,2.36e-05,0.082,0.66,129.982,4.0,,Blue Pie Records,"C 2015 Blue Pie Records, P 2015 Blue Pie Records",8571 +8572,spotify:track:14y9mHNT905VoEw63b5GSn,Gitarzan,spotify:artist:7MpUvihmfilIxyN20kXwQj,Ray Stevens,spotify:album:0QtzjdxO5CAi9NqpiusEMh,Greatest Hits - Original Recordings,spotify:artist:7MpUvihmfilIxyN20kXwQj,Ray Stevens,2014-04-22,https://i.scdn.co/image/ab67616d0000b27379aa4a188b31512f718c580b,1,20,187040,https://p.scdn.co/mp3-preview/a2de4b934defbd64a4535e388b46c54961ca941d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USZZM0710237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,novelty",0.435,0.804,0.0,-8.48,1.0,0.169,0.466,0.0,0.942,0.727,93.83,3.0,,Barnaby Records,"C (C) 2014 Barnaby Records, P (P) 1970 Barnaby Records, Inc.",8572 +8573,spotify:track:1jaTQ3nqY3oAAYyCTbIvnM,WHATS POPPIN,spotify:artist:2LIk90788K0zvyj2JJVwkJ,Jack Harlow,spotify:album:7AaqMMiYMvnMB3RcS8u3EY,Sweet Action,spotify:artist:2LIk90788K0zvyj2JJVwkJ,Jack Harlow,2020-03-13,https://i.scdn.co/image/ab67616d0000b27305a448540b069450ccfba889,1,1,139741,https://p.scdn.co/mp3-preview/f2e1a575890ecea6d6c1a0a9c183f575cc48cfc5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USAT22000162,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep underground hip hop,hip hop,kentucky hip hop,pop rap,rap",0.923,0.604,11.0,-6.671,0.0,0.245,0.017,0.0,0.272,0.826,145.062,4.0,,Generation Now/Atlantic,"C © 2020 Generation Now/Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2020 Generation Now/Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8573 +8574,spotify:track:6Uy6K3KdmUdAfelUp0SeXn,Brave,spotify:artist:2Sqr0DXoaYABbjBo9HaMkM,Sara Bareilles,spotify:album:7lpbyGc4fHsQkBTsfWVBhp,The Blessed Unrest,spotify:artist:2Sqr0DXoaYABbjBo9HaMkM,Sara Bareilles,2013-07-16,https://i.scdn.co/image/ab67616d0000b273022b4010e20659300f42c375,1,1,220573,https://p.scdn.co/mp3-preview/a53f99868dbf34053d3377a43bf1383efa629ad6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM11301638,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic pop,lilith,neo mellow,pop rock,post-teen pop",0.551,0.836,10.0,-3.838,0.0,0.0524,0.00502,2.1e-05,0.0425,0.758,185.063,4.0,,Epic,"P (P) 2013 Epic Records, a division of Sony Music Entertainment",8574 +8575,spotify:track:6UZArptSnaRCHxUaGC2SsM,I'd Die To Be With You Tonight - Remastered,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:0HjEFG10CDIvO2oJsNXJMu,For The Working Class Man,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1985-05-22,https://i.scdn.co/image/ab67616d0000b273a2d811d9a020484904acae16,1,1,239912,https://p.scdn.co/mp3-preview/8b29e17a90ce4fd18823c7812d4d24538faf879d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AULI00509820,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.566,0.956,9.0,-4.159,1.0,0.0819,0.0167,1.62e-05,0.0175,0.531,115.063,4.0,,Bloodlines,"C 2020 Bloodlines, P 2020 Bloodlines",8575 +8576,spotify:track:5YHR8wBR5jXfGtP766NiAT,If It Ain't Love,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:7HoaC5xw6TEBJqZCcBW3Cl,If It Ain't Love,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2016-04-01,https://i.scdn.co/image/ab67616d0000b2730721bfbebd30ab32816c7e52,1,1,203105,https://p.scdn.co/mp3-preview/bf8b9801f66299ddadc7bb0bb1c493b8cdc52fdf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB11600368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.503,0.843,10.0,-4.991,0.0,0.316,0.0487,0.0,0.344,0.778,128.63,4.0,,Beluga Heights/Warner Records,"C © 2016 Warner Records Inc., P ℗ 2016 Warner Records Inc.",8576 +8577,spotify:track:7KnSQMDfPNVKJkiniY2fZF,Going in with my eyes open,spotify:artist:2eFkm34OMSYRUwP4RAtXaT,David Soul,spotify:album:6rjlNCw55OD6a6cVxMjD2Q,Playing to an Audience of One,spotify:artist:2eFkm34OMSYRUwP4RAtXaT,David Soul,1977-01-01,https://i.scdn.co/image/ab67616d0000b27322509230d3506864e3404f1d,1,6,243333,https://p.scdn.co/mp3-preview/eac8e45248eb8e272b7fc4a570030d16f7830eaa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLG620401614,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,soft rock",0.575,0.37,2.0,-13.675,1.0,0.0266,0.796,0.000285,0.101,0.397,100.443,4.0,,David Soul,"C (C) 1977 David Soul, P (P) 1977 David Soul",8577 +8578,spotify:track:7ghmZhLpmQe9nTluI1czmr,Say It,"spotify:artist:6nxWCVXbOlEVRexSbLsTer, spotify:artist:4NHQUGzhtTLFvgF5SZesLK","Flume, Tove Lo",spotify:album:1sxqYNzozsrgu0Vh6jQ6Lr,Skin,spotify:artist:6nxWCVXbOlEVRexSbLsTer,Flume,2016-05-27,https://i.scdn.co/image/ab67616d0000b2731dfae5c2bc54a1ab4b7bd5c5,1,5,262521,https://p.scdn.co/mp3-preview/a5dda0293e98412eced450b88fc46ccb8a95f355?cid=9950ac751e34487dbbe027c4fd7f8e99,True,51,AUFF01600799,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,australian indie,downtempo,edm,indietronica,dance pop,metropopolis,pop,swedish electropop,swedish pop,swedish synthpop",0.587,0.532,3.0,-6.834,0.0,0.0324,0.0684,3.66e-06,0.0618,0.265,75.059,4.0,,Transgressive,"C 2016 Future Classic under exclusive license to Transgressive Records Ltd / [PIAS], P 2016 Future Classic under exclusive license to Transgressive Records Ltd",8578 +8579,spotify:track:6K4d9KwaomGPajMvzXX7Jh,"Schnappi, das kleine Krokodil - Kids-Version",spotify:artist:3PLh6iccb8pJzxWWLaKqDp,Das singende Krokodil vom Nil,spotify:album:23atlZFZkfLouqxvYd3kKy,Die schönsten Kinderlieder,spotify:artist:3PLh6iccb8pJzxWWLaKqDp,Das singende Krokodil vom Nil,2008-02-08,https://i.scdn.co/image/ab67616d0000b2735b5c123455c92959ff4b84f8,1,1,128320,https://p.scdn.co/mp3-preview/1d8f09a72a05cef0d0189a55f9fc5c5972578cd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,ATT250501120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.89,0.444,7.0,-8.964,1.0,0.0585,0.253,0.000118,0.103,0.901,130.074,4.0,,Tyrostar,"C Tyrostar, P keiner",8579 +8580,spotify:track:3rcNGUOJ0mPOUcAFUlEyT3,Set Adrift on Memory Bliss (Re-Recorded),spotify:artist:5DgjOwTN6o76J5Gf8MzEoL,P.M. Dawn,spotify:album:3IeqyRPjr9OLdZgTop4Rxn,Latest & Greatest,spotify:artist:5DgjOwTN6o76J5Gf8MzEoL,P.M. Dawn,2014-02-24,https://i.scdn.co/image/ab67616d0000b273a5564676c55baa50c7680d8b,1,1,235800,https://p.scdn.co/mp3-preview/eb4ebc911abc94f9dbc275249d4329b280301eb8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMDA71448137,spotify:user:bradnumber1,2021-08-08T09:26:31Z,contemporary r&b,0.795,0.705,5.0,-8.552,0.0,0.0715,0.00118,0.00658,0.136,0.482,100.025,4.0,,X-Ray Records,"C (C) 2014 X-Ray Records, P (P) 2014 X-Ray Records",8580 +8581,spotify:track:0Tel1fmuCxEFV6wBLXsEdk,Kiss Me,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:02pi98kE0nra0yBqCStzbC,+,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2011-09-09,https://i.scdn.co/image/ab67616d0000b2736567a393a964a845a89b7f70,1,11,280853,https://p.scdn.co/mp3-preview/5834a5f66e0c571571d5a154e62859f7c0704bb3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBAHS1100208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.589,0.227,2.0,-16.67,1.0,0.0498,0.64,0.00469,0.0248,0.182,74.993,4.0,,Atlantic Records UK,"C © 2011 Warner Music UK Limited, P ℗ 2011 Warner Music UK Limited",8581 +8582,spotify:track:2rljUeYPPbkfnl5mUwCMKP,Don't Need Love,spotify:artist:0Nlg1HCtb8dpeVpxQojDiq,Johnny Diesel & The Injectors,spotify:album:5dIHfc6O2EPWxdevZi6DkZ,Johnny Diesel And The Injectors,spotify:artist:0Nlg1HCtb8dpeVpxQojDiq,Johnny Diesel & The Injectors,1989-01-01,https://i.scdn.co/image/ab67616d0000b273277659fad2498fd48648d3b4,1,6,251240,https://p.scdn.co/mp3-preview/99cfa199c4a42f1f8f55276fe7c2b31898b74c02?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM08900004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.453,0.751,2.0,-11.045,1.0,0.0328,0.000359,0.00213,0.269,0.788,134.921,4.0,,Chrysalis,"C © 1989 Chrysalis Records Ltd, P ℗ 1989 EMI Recorded Music Australia Pty Ltd.",8582 +8583,spotify:track:1xNmF1Uep5OGutizZSbKvd,One Of Us,spotify:artist:0djV4iaxhNfYWpH60ia85o,Joan Osborne,spotify:album:1qgjfFOO3IMDimAuAWZLLt,Relish,spotify:artist:0djV4iaxhNfYWpH60ia85o,Joan Osborne,1995-01-01,https://i.scdn.co/image/ab67616d0000b27378cb3d2e25c2424c1eee3fe5,1,6,320466,https://p.scdn.co/mp3-preview/0ce9b0aba4516cc92f2faeb997964ba6c865bc4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USPR39500200,spotify:user:bradnumber1,2021-10-20T22:25:45Z,"ectofolk,lilith,pop rock,singer-songwriter",0.316,0.499,9.0,-7.899,1.0,0.0298,0.0108,1.81e-05,0.126,0.403,174.782,4.0,,Island Mercury,"C © 1995 The Island Def Jam Music Group, P ℗ 1995 The Island Def Jam Music Group",8583 +8584,spotify:track:0q1exbzIDRxqJ6VUKH3seg,Sara,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:0LfM3PGkXE6KvJEE1HkOnz,Greatest Hits,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1988-11-21,https://i.scdn.co/image/ab67616d0000b273813da91820fd194cbee5bdce,1,13,382373,https://p.scdn.co/mp3-preview/7e1a0f32148672e534cc7d6ddfb06321fd148bb6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USWB19900208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.741,0.388,10.0,-16.693,1.0,0.031,0.384,0.0235,0.0933,0.589,126.819,4.0,,Warner Records,"C © 1988 Warner Records Inc., P ℗ 1988 Warner Records Inc.",8584 +8585,spotify:track:5g1rzUEyVFNr2i4ifEjlVN,Love Hurts - Single Edit,spotify:artist:6fvN9GmMCVKb5LY0WsnjFP,Nazareth,spotify:album:5naYBHiMro7E0MVPmhhYHP,Hair of the Dog,spotify:artist:6fvN9GmMCVKb5LY0WsnjFP,Nazareth,1975-04-01,https://i.scdn.co/image/ab67616d0000b2730ae5a97717f7518505b3b45f,1,8,232120,https://p.scdn.co/mp3-preview/1597e34ba2f9578ddae52a45840ad02c0e5b1544?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,GBCBR0402270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,rock",0.428,0.491,7.0,-6.598,1.0,0.0261,0.00692,0.00551,0.114,0.123,80.059,4.0,,Salvo,"C © 2010 Union Square Music Limited, a BMG Company, P ℗ 2010 Union Square Music Limited, a BMG Company",8585 +8586,spotify:track:123RhEzztpTieeEd13NexC,Pictures Of Lily,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:0NufsuTuf3U0BY0p6jFdxV,"Meaty, Beaty, Big And Bouncy",spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1971-10-30,https://i.scdn.co/image/ab67616d0000b27379707c30203f870776ff02d0,1,5,162760,https://p.scdn.co/mp3-preview/5095f08c3e926a5b28aa3bf6a0f1c2d94da390c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBAKW6700062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.524,0.668,2.0,-10.609,1.0,0.0433,0.373,0.0,0.159,0.794,126.842,4.0,,Polydor Records,"C © 1990 Geffen Records, P This Compilation ℗ 1990 Geffen Records",8586 +8587,spotify:track:6qVXkG01rBYGfxIndGOQ3z,Shot Me Down (feat. Skylar Grey) - Radio Edit,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:4utLUGcTvOJFr6aqIJtYWV","David Guetta, Skylar Grey",spotify:album:77UW17CZFyCaRLHdHeofZu,Listen,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2014-11-10,https://i.scdn.co/image/ab67616d0000b2733862d62a50dc6b928651bdeb,1,17,191412,https://p.scdn.co/mp3-preview/9ad806bd4ca45865d643eaa959c6e2d48c8c1dec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GB28K1400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,piano rock,viral pop",0.347,0.772,5.0,-4.359,0.0,0.0549,0.0597,0.0333,0.115,0.035,192.118,3.0,,Parlophone (France),"C © 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company, P ℗ 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company",8587 +8588,spotify:track:2gMXnyrvIjhVBUZwvLZDMP,Before You Go,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,spotify:album:2wiPF3m0ylst0JSk1IvZL8,Divinely Uninspired To A Hellish Extent (Extended Edition),spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,2019-11-22,https://i.scdn.co/image/ab67616d0000b2737b9639babbe96e25071ec1d4,1,13,215106,https://p.scdn.co/mp3-preview/fbeb79e81f4f5ab2dcb210d1ac85f028806302bd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,DEUM71905868,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.459,0.574,3.0,-4.857,1.0,0.0577,0.608,0.0,0.0885,0.183,111.881,4.0,,Vertigo Berlin,"C © 2019 Universal Music GmbH, P ℗ 2019 Universal Music GmbH",8588 +8589,spotify:track:0FmCLEHfINGqwlyzvklNqy,Holidae In,"spotify:artist:3s2wTjWxK8NOX09dmsvVOh, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi, spotify:artist:7hJcb9fa4alzcOq3EaNPoG","Chingy, Ludacris, Snoop Dogg",spotify:album:0Hv5X7RRaM7F3hfAq0YmzB,Jackpot,spotify:artist:3s2wTjWxK8NOX09dmsvVOh,Chingy,2003-01-01,https://i.scdn.co/image/ab67616d0000b273f9aefc986924f7e9e5e71b74,1,12,314400,https://p.scdn.co/mp3-preview/c6b4b6a7276c7fdd9074f0c51e58630f5543c13c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,55,USCA20300295,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"crunk,dirty south rap,hip pop,pop rap,southern hip hop,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap,g funk,gangster rap,hip hop,pop rap,rap,west coast rap",0.81,0.791,7.0,-5.909,1.0,0.181,0.0897,0.0,0.0838,0.948,153.066,4.0,,Capitol Records,"C © 2003 Capitol Records, LLC, P ℗ 2003 Capitol Records, LLC",8589 +8590,spotify:track:3bidbhpOYeV4knp8AIu8Xn,Can't Hold Us (feat. Ray Dalton),"spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp, spotify:artist:6WLvgbfYXQPO396oJEYCsi, spotify:artist:4e0nWw2r4BoQSKPQ2zpU13","Macklemore, Ryan Lewis, Macklemore & Ryan Lewis, Ray Dalton",spotify:album:76FXHQhTuT4QMIxfL09gX8,The Heist,"spotify:artist:6WLvgbfYXQPO396oJEYCsi, spotify:artist:3JhNCzhSMTxs9WLGJJxWOY, spotify:artist:4myTppRgh0rojLxx8RycOp","Macklemore & Ryan Lewis, Macklemore, Ryan Lewis",2012-10-09,https://i.scdn.co/image/ab67616d0000b27398a02fef3a8b1d80a0f164ec,1,2,258342,https://p.scdn.co/mp3-preview/989bcb16f82e4cfcbfebdf8cf0dd91abe86c84d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GMM881200021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,seattle hip hop,pop rap,pop dance",0.641,0.922,2.0,-4.457,1.0,0.0786,0.0291,0.0,0.0862,0.847,146.078,4.0,,Macklemore,"C © 2012 Macklemore, LLC., P ℗ 2012 Macklemore, LLC.",8590 +8591,spotify:track:2ia7iiEtpiOL2ZVuWxBZGB,I Will Never Let You Down,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:415fhs8Ft2VMFY0rWLK4BD,I Will Never Let You Down,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2014-03-31,https://i.scdn.co/image/ab67616d0000b273bd6c207be091d0b107405b93,1,1,203466,https://p.scdn.co/mp3-preview/588b68f056a68e3a93c524c02735f24bcc663ad2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USQX91400359,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.753,0.801,4.0,-3.215,1.0,0.0296,0.403,0.0,0.128,0.794,128.011,4.0,,Roc Nation/Columbia,"P (P) 2014 Roc Nation LLC, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",8591 +8592,spotify:track:69ZzhvHnSSnzMO8SMYEJWb,Mother,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:6IK5i5sR0uxIcM0rV8HThX,Takin' It Back (Deluxe),spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2023-03-10,https://i.scdn.co/image/ab67616d0000b273d5112e087a6ad0aa73f25e12,1,1,147481,https://p.scdn.co/mp3-preview/7be521f9c32f0f5166aa1ec6b7f2f236e9d8687c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,59,USSM12300425,spotify:user:bradnumber1,2023-07-05T22:57:26Z,"hip pop,pop",0.751,0.661,9.0,-6.131,1.0,0.0871,0.124,0.0,0.456,0.761,120.052,4.0,,Epic,"P (P) 2023 Epic Records, a division of Sony Music Entertainment",8592 +8593,spotify:track:1lDo24S34NvI1pAg7Oxldc,The Name Of The Game,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:5fLOHW1UXr1cJrnXiU3FBt,The Album,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1977,https://i.scdn.co/image/ab67616d0000b2736f705bef76c1d861c4d51d8c,1,4,291866,https://p.scdn.co/mp3-preview/6f1051b47f5ce4c08cd81ed61d75fab10d6a3e90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,SEAYD7702040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.656,0.565,9.0,-8.722,1.0,0.0301,0.357,0.000192,0.0629,0.615,77.049,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",8593 +8594,spotify:track:22E53O2cAxG6n2Mkq9EEIR,Miss Freelove '69,spotify:artist:7HZQqtnOYmjJl8XAB3Vg8y,Hoodoo Gurus,spotify:album:2PmMMeorxZ2CLkS3SsWr1d,Electric Soup,spotify:artist:7HZQqtnOYmjJl8XAB3Vg8y,Hoodoo Gurus,1992-01-01,https://i.scdn.co/image/ab67616d0000b2739e214ecd639c2a33c8839e84,1,19,254117,https://p.scdn.co/mp3-preview/07dea0a281b1f26b3cbb657c71e08faf5e7d6c90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUHD00500064,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,power pop",0.542,0.971,9.0,-4.378,0.0,0.112,0.1,0.00993,0.131,0.639,131.363,4.0,,Universal Music Australia (Distribution),"C © 1992 Hoodoo Gurus Pty Ltd., P ℗ 1992 Hoodoo Gurus Pty Ltd.",8594 +8595,spotify:track:5zXT781fTIc9yUIwUMbqnl,Not Many - Remix,"spotify:artist:1cUNRt3Ha4lnnNvPTJAIa8, spotify:artist:1GbrJTB56Xs4XQGlmVbaCf, spotify:artist:0XwaD2kV53RdItxps3P34y","Scribe, Savage, Con-Psy",spotify:album:7Gy6FjNivhXA4RJaW3vgNt,The Crusader,spotify:artist:1cUNRt3Ha4lnnNvPTJAIa8,Scribe,2003-01-01,https://i.scdn.co/image/ab67616d0000b273c965bf1461faab443c9f1980,1,10,225960,https://p.scdn.co/mp3-preview/b81f1b98f8c358248c37551f77c31a0d1f17ae15?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,NZDI00400019,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"nz hip hop,nz hip hop",0.79,0.886,5.0,-3.742,0.0,0.231,0.161,0.0,0.245,0.681,140.044,4.0,,Frequency,"C 2003 Dirty Records, P 2003 Dirty Records",8595 +8596,spotify:track:3SmPl0CGxvvkQCrTv7edEE,I'm Your Baby Tonight,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:5LaUUDnUTySWnJLj1xiBnw,I'm Your Baby Tonight,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1990-11-04,https://i.scdn.co/image/ab67616d0000b27302dffd583e3bc8eff1ad471b,1,1,299426,https://p.scdn.co/mp3-preview/6d91ed4da08d54538278e483fc6b81d1fd5b4493?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAR19000129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.665,0.899,6.0,-7.75,1.0,0.0877,0.303,2.21e-06,0.445,0.873,165.16,3.0,,Arista/Legacy,P (P) 1990 Arista Records LLC,8596 +8597,spotify:track:5o8gWPZxr4GZFslU85YMmu,Beautiful In My Eyes,spotify:artist:2VrP5BkyzDhY43dWMlaYjD,Joshua Kadison,spotify:album:1EEVf5UBSD4YlE1NBQXLfW,Painted Desert Serenade,spotify:artist:2VrP5BkyzDhY43dWMlaYjD,Joshua Kadison,1993-01-01,https://i.scdn.co/image/ab67616d0000b273f3cce8bfde65845aa3b0e469,1,6,249493,https://p.scdn.co/mp3-preview/fe8f86262b888d880b38666554017fa76a1292bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSB29300148,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.582,0.381,3.0,-10.045,1.0,0.0256,0.595,1.1e-05,0.132,0.283,141.947,4.0,,SBK/EMI RECORDS,"C © 1993 SBK Catalog, P ℗ 1993 Capitol Records, LLC",8597 +8598,spotify:track:0ssO4IoUxpC4KbrDqXEj2p,Women (make You Feel Alright),spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,spotify:album:6yczcYYmQiZslouFGXZAko,It's 2 Easy,spotify:artist:1pJEZXU2hJApJW3rM7LmMu,The Easybeats,1966-04-01,https://i.scdn.co/image/ab67616d0000b27344887f6663c15f178d5829e2,1,3,154200,https://p.scdn.co/mp3-preview/d2b6ba497e6a6dd7a19b7e48500bb6f001abcac4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,freakbeat,protopunk,psychedelic rock",0.678,0.793,1.0,-7.635,0.0,0.0321,0.297,0.0,0.0445,0.96,89.791,4.0,,Albert Productions,"C © 1966 BMG AM Pty Ltd., P ℗ 1966 BMG AM Pty Ltd.",8598 +8599,spotify:track:4k80K0b6KZ2QjAYkXON7q6,Blow Me (One Last Kiss),spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2Q9oTK48eb85waX1fFJsvj,The Truth About Love,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2012-09-18,https://i.scdn.co/image/ab67616d0000b2739d0f0d226987b449808e7b6f,1,2,255586,https://p.scdn.co/mp3-preview/1320064e5af7737913e7f212acbf5ab7bcf48668?cid=9950ac751e34487dbbe027c4fd7f8e99,True,65,USRC11200669,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.597,0.919,7.0,-2.954,1.0,0.0439,0.000145,0.0,0.282,0.729,113.991,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",8599 +8600,spotify:track:126TblwXGNTUZ7RPMnThkU,Left Hand Free,spotify:artist:3XHO7cRUPCLOr6jwp8vsx5,alt-J,spotify:album:6TbkWAqqY4nhQnYim61IU8,This Is All Yours,spotify:artist:3XHO7cRUPCLOr6jwp8vsx5,alt-J,2014-09-22,https://i.scdn.co/image/ab67616d0000b27357e8362b39b7b3a85822303d,1,5,173630,https://p.scdn.co/mp3-preview/b44927147b0178cb888d523586576593454faf7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBZUZ1400272,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie rock,indietronica,modern alternative rock,modern rock,rock,shimmer pop",0.698,0.876,3.0,-4.45,1.0,0.0486,0.452,0.0133,0.0824,0.81,101.992,4.0,,Infectious,"C 2014 Infectious Music, P 2014 Infectious Music",8600 +8601,spotify:track:0VGrgE7GbWaINRnh1bR4k9,Clarity,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:7qRll6DYV06u2VuRPAVqug","Zedd, Foxes",spotify:album:0C6m4LiyUwsLI0eK6kJyeh,Clarity,spotify:artist:2qxJFvFYMEDqd7ui6kSAcq,Zedd,2012-01-01,https://i.scdn.co/image/ab67616d0000b2736671c0a18af263131cc81f0e,1,5,271426,https://p.scdn.co/mp3-preview/b2fd1208b83b14121c261cfc1e74ec4439a16c8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71210662,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,electropop,metropopolis,uk pop",0.523,0.78,8.0,-3.378,1.0,0.0748,0.0376,0.0,0.0751,0.187,128.003,4.0,,Universal Music Group,"C © 2012 Interscope Records, P ℗ 2012 Interscope Records",8601 +8602,spotify:track:0IvHltq1M8zaUayrMgoajw,Sweet Sixteen,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,spotify:album:3FQC7eHJ3dPT8wXc2yUbpX,Whiplash Smile,spotify:artist:7lzordPuZEXxwt9aoVZYmG,Billy Idol,1986,https://i.scdn.co/image/ab67616d0000b273ab215fac7a9f90b8247c4bba,1,4,257266,https://p.scdn.co/mp3-preview/67d5023b2a3c996b1cd1db912c9d368d23069548?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCH38600002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,hard rock,new romantic,new wave,new wave pop,rock,soft rock",0.584,0.372,9.0,-20.913,0.0,0.0332,0.612,0.0133,0.11,0.785,156.282,4.0,,Capitol Records,"C (C) 2007 Capitol Records, Inc., P (P) (C) 2007 Capitol Records, Inc.. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Capitol Catalog,",8602 +8603,spotify:track:1Xiziz94CF3sFctb1udhAm,Love Is Only a Feeling,spotify:artist:5r1bdqzhgRoHC3YcCV6N5a,The Darkness,spotify:album:6vW9ZDllNv87WHXS3XTjlM,Permission to Land,spotify:artist:5r1bdqzhgRoHC3YcCV6N5a,The Darkness,2003-07-07,https://i.scdn.co/image/ab67616d0000b2734d54f9eccf5646d0f7a1bd30,1,5,260413,https://p.scdn.co/mp3-preview/e5a49b6c136aec7bf63748690635a323a5ea6a78?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAHS0300636,spotify:user:bradnumber1,2023-01-31T06:46:32Z,"glam metal,hard rock",0.381,0.924,2.0,-3.372,1.0,0.125,0.0315,0.000825,0.0296,0.326,158.061,4.0,,Atlantic Records,"C © 2003 Warner Music UK Ltd, P ℗ 2003 Warner Music UK Ltd",8603 +8604,spotify:track:14UjqB0xdlZranNXnB4oKW,Shut It Down (feat. Akon),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:0z4gvV4rjIZ9wHck67ucSV","Pitbull, Akon",spotify:album:5xLAcbvbSAlRtPXnKkggXA,Pitbull Starring In Rebelution,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2009-10-23,https://i.scdn.co/image/ab67616d0000b27326d73ab8423a350faa5d395a,1,2,226093,https://p.scdn.co/mp3-preview/0bcb3a7eb07dace3a0ca8df826800058184bd4d5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,38,USJAY0900143,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,dance pop",0.753,0.701,9.0,-6.57,0.0,0.0879,0.00793,0.0,0.0677,0.37,128.072,4.0,,Mr.305/Polo Grounds Music/J Records,"P (P) 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",8604 +8605,spotify:track:4TnjEaWOeW0eKTKIEvJyCa,Falling,spotify:artist:7uaIm6Pw7xplS8Dy06V6pT,Trevor Daniel,spotify:album:1Czfd5tEby3DbdYNdqzrCa,Falling,spotify:artist:7uaIm6Pw7xplS8Dy06V6pT,Trevor Daniel,2018-10-05,https://i.scdn.co/image/ab67616d0000b2730e4bd9ce99988f3182bf771a,1,1,159381,https://p.scdn.co/mp3-preview/0d911f7650ed127fbbdd7ec6a44ec5d642d1896a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USUYG1221109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,melodic rap,0.785,0.431,10.0,-8.756,0.0,0.0364,0.123,0.0,0.0887,0.236,127.085,4.0,,Alamo Records,"C 2018 Alamo Records, P 2018 Alamo Records",8605 +8606,spotify:track:1x6jPyUfLuTNQ3o5zykG2x,You Give Me Something,spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,spotify:album:6cLYs4e403jQk6PJ8PG9rs,A Funk Odyssey,spotify:artist:6J7biCazzYhU3gM9j1wfid,Jamiroquai,2001-08-29,https://i.scdn.co/image/ab67616d0000b273909ebb0c355f14d0ee7f9974,1,3,199600,https://p.scdn.co/mp3-preview/ca28b95aacede8ea09ae476b4807c3b9622e187a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBBBN0102187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.639,0.69,7.0,-10.047,1.0,0.264,0.0265,0.000551,0.146,0.579,119.63,4.0,,Epic,P (P) 2001 Sony Music Entertainment (UK) Ltd.,8606 +8607,spotify:track:51tLuq7szffePQka877QiN,I Love to Love (But My Baby Loves to Dance),spotify:artist:7Jbs4wPCLaKXPxrTxZ2zaa,Tina Charles,spotify:album:0AtwPrS3QPnyQEXbntCUHB,Forever FM Can You Feel the Force?,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-05-19,https://i.scdn.co/image/ab67616d0000b273f916e5820e1d2dd4441c8d24,1,3,186133,https://p.scdn.co/mp3-preview/5e1df715937fa21373859956c478d340ddfa2237?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,QM4TX1547765,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg",0.666,0.623,4.0,-10.662,1.0,0.0327,0.00413,0.00046,0.0443,0.853,100.003,4.0,,PMI Limited,C (C) 2015 Platinum Music Ireland,8607 +8608,spotify:track:630sXRhIcfwr2e4RdNtjKN,Rewrite The Stars,"spotify:artist:6U1dBXJhC8gXFjamvFTmHg, spotify:artist:6sCbFbEjbYepqswM1vWjjs","Zac Efron, Zendaya",spotify:album:0mRqi6mOvyVVVEIfFFfWXU,Rewrite The Stars,"spotify:artist:6U1dBXJhC8gXFjamvFTmHg, spotify:artist:6sCbFbEjbYepqswM1vWjjs","Zac Efron, Zendaya",2017-11-17,https://i.scdn.co/image/ab67616d0000b273d44e723b677380dfbc899bcd,1,1,217440,https://p.scdn.co/mp3-preview/b59e1bd5efc1916ce39ce03f67dbbeb15ef62fc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USAT21704623,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,movie tunes,post-teen pop,pop,post-teen pop",0.684,0.619,10.0,-7.005,1.0,0.0386,0.0716,0.0,0.122,0.284,125.046,4.0,,Atlantic Records,"C © 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation., P ℗ 2017 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation.",8608 +8609,spotify:track:3msjvrkCvIzUNJHULcAafN,A Walk In The Black Forest,spotify:artist:0YJh7LL1SsLgWfSXjIFbfg,Horst Jankowski,spotify:album:62UmCTr69BJK8zHNH67KX5,The Genius Of Jankowski!,spotify:artist:0YJh7LL1SsLgWfSXjIFbfg,Horst Jankowski,1964-03-20,https://i.scdn.co/image/ab67616d0000b273dfde5444ece8ede679286cb1,1,2,169680,https://p.scdn.co/mp3-preview/1ba7fbef065031554720c526a43153d958081699?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,DEF076302230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"easy listening,space age pop",0.701,0.38,2.0,-11.756,1.0,0.0294,0.611,0.728,0.233,0.783,106.284,4.0,,Boutique,"C © 1964 Electrola, a division of Universal Music GmbH, P ℗ 1964 Electrola, a division of Universal Music GmbH",8609 +8610,spotify:track:7lQWRAjyhTpCWFC0jmclT4,Gangsta's Paradise,"spotify:artist:3y24n3XhZ96wgwRXjvS17T, spotify:artist:2LhsePRtgCo4THVKULQBL7","Coolio, L.V.",spotify:album:0fYctMs4EvoEqzDh8Kmg5g,Gangsta's Paradise,spotify:artist:3y24n3XhZ96wgwRXjvS17T,Coolio,1995-11-07,https://i.scdn.co/image/ab67616d0000b2737632fe25cd368dc205927f0c,1,2,240693,https://p.scdn.co/mp3-preview/1454c63a66c27ac745f874d6c113270a9c62d28e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,USTB10400128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,west coast rap",0.647,0.514,8.0,-10.05,1.0,0.0593,0.0655,0.0,0.398,0.387,79.974,4.0,,"Tommy Boy Music, LLC","C 2005 Tommy Boy Music, LLC, P 2005 Tommy Boy Music, LLC",8610 +8611,spotify:track:38T0tPVZHcPZyhtOcCP7pF,STAR WALKIN' (League of Legends Worlds Anthem),spotify:artist:7jVv8c5Fj3E9VhNjxT4snq,Lil Nas X,spotify:album:0aIy6J8M9yHTnjtRu81Nr9,STAR WALKIN' (League of Legends Worlds Anthem),spotify:artist:7jVv8c5Fj3E9VhNjxT4snq,Lil Nas X,2022-09-22,https://i.scdn.co/image/ab67616d0000b27304cd9a1664fb4539a55643fe,1,1,210575,https://p.scdn.co/mp3-preview/ffa9d53ff1f83a322ac0523d7a6ce13b231e4a3a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,70,USSM12208809,spotify:user:bradnumber1,2022-12-11T23:08:28Z,lgbtq+ hip hop,0.637,0.715,2.0,-4.971,0.0,0.0455,0.148,0.0,0.0892,0.308,141.872,4.0,,Columbia,"P (P) 2022 Columbia Records, a Division of Sony Music Entertainment",8611 +8612,spotify:track:7B1Dl3tXqySkB8OPEwVvSu,We'll Be Coming Back (feat. Example),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW","Calvin Harris, Example",spotify:album:7w19PFbxAjwZ7UVNp9z0uT,18 Months,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2012-10-29,https://i.scdn.co/image/ab67616d0000b273dcef905cb144d4867119850b,1,5,234360,https://p.scdn.co/mp3-preview/6e203c4db9b8d807282a610240d980d3f5f60a72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBARL1200642,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,hip house,uk dance",0.596,0.952,7.0,-4.364,1.0,0.0873,0.00131,0.0,0.598,0.571,127.945,4.0,,Columbia,P (P) 2012 Sony Music Entertainment UK Limited,8612 +8613,spotify:track:2Sionb7ZAmdVGH9mieuJ7Z,Signs,"spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:6CxZzQFUTM6AzgluGwtq5w, spotify:artist:31TPClRtHm23RisEBtV3X7","Snoop Dogg, Charlie Wilson, Justin Timberlake",spotify:album:4SWXoG7H0MOIi6s4DdT96A,Signs,spotify:artist:7hJcb9fa4alzcOq3EaNPoG,Snoop Dogg,2004-01-01,https://i.scdn.co/image/ab67616d0000b27381718aed62430b5ab49cecd8,1,1,236813,https://p.scdn.co/mp3-preview/b7a9abf67d338952da4af1d521d51767e9fa0f38?cid=9950ac751e34487dbbe027c4fd7f8e99,True,51,USMC10400893,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,pop rap,rap,west coast rap,contemporary r&b,r&b,urban contemporary,dance pop,pop",0.94,0.713,7.0,-5.308,1.0,0.127,0.0319,0.00076,0.325,0.666,112.955,4.0,,Geffen,"C © 2004 Geffen Records, P ℗ 2004 Geffen Records",8613 +8614,spotify:track:3kovBaZ1LGLH1PL31qG7cL,I Was Made for Dancin',spotify:artist:2MyNAoQL07EABerr6yhoT4,Leif Garrett,spotify:album:1FWTjROros7lbWXXmHKqJc,The Leif Garrett Collection,spotify:artist:2MyNAoQL07EABerr6yhoT4,Leif Garrett,1998-07-22,https://i.scdn.co/image/ab67616d0000b273a2ff51f12d2f8e0c711320fa,1,3,196440,https://p.scdn.co/mp3-preview/101ad49922fc00e3dd13d7f53285227fc4285e0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USVR10200050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.689,0.584,11.0,-13.957,0.0,0.0314,0.0319,0.00275,0.327,0.837,127.132,4.0,,Volcano,"P (P) 1998 Volcano Entertainment, III, L.L.C.",8614 +8615,spotify:track:3GD7BGrmY6QQPHRPzp5elC,Love Will Never Do (Without You) - Single Version,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:1azqhOR2G3aHiHTd3Rbn7L,Design Of A Decade 1986/1996,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1995-01-01,https://i.scdn.co/image/ab67616d0000b27345aebf684cbd6c64fe6589f4,1,7,274800,https://p.scdn.co/mp3-preview/215fcadcdb232e22485f5031b147bb84148db4d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM18900719,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.735,0.972,1.0,-7.176,1.0,0.038,0.0659,0.00526,0.143,0.553,103.193,4.0,,Universal Music Group,"C © 1995 A&M Records, P ℗ 1995 A&M Records",8615 +8616,spotify:track:6A5gPYjdXoAnH61WNTmFub,I Love You,spotify:artist:0LWBqstmNeW3r6kOswfZ1J,Matt B,spotify:album:7DEjm4SfvD0Rc6DeBtsGp6,EDEN,spotify:artist:0LWBqstmNeW3r6kOswfZ1J,Matt B,2021-03-12,https://i.scdn.co/image/ab67616d0000b27351aaf7e8f5fcdb5e38a29730,1,10,206326,https://p.scdn.co/mp3-preview/d02e8b2b7e12e5a192bdc00dbee7506ea6a7efff?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZ8G81700029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.668,0.611,6.0,-5.232,1.0,0.0378,0.0811,0.0,0.323,0.531,98.018,4.0,,Vitae Records,"C 2021 Vitae Records, P 2021 Vitae Records",8616 +8617,spotify:track:75ZvA4QfFiZvzhj2xkaWAh,I Fall Apart,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,spotify:album:5s0rmjP8XOPhP6HhqOhuyC,Stoney (Deluxe),spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2016-12-09,https://i.scdn.co/image/ab67616d0000b27355404f712deb84d0650a4b41,1,7,223346,https://p.scdn.co/mp3-preview/2add5c025df9c2208c4b2c3b0357661f2d95eda5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,75,USUM71614475,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap",0.556,0.538,8.0,-5.408,0.0,0.0382,0.0689,0.0,0.196,0.291,143.946,4.0,,Universal Records,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",8617 +8618,spotify:track:6C2v1wGseKguLvZ7Fsmgtq,Another Day In Paradise,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:7hV0YSxAQSng8H0zMR0HBf,...Hits,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,1998-09-25,https://i.scdn.co/image/ab67616d0000b273c8860dfcdadefb529bf29757,1,1,322466,https://p.scdn.co/mp3-preview/6e86a5698f1165e5ffa7a537e4f19018e0e10eb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWI19600169,spotify:user:bradnumber1,2023-10-17T23:17:03Z,"rock drums,soft rock",0.789,0.465,5.0,-10.5,0.0,0.0319,0.731,0.00196,0.0513,0.481,101.959,4.0,,Atlantic Records,"C 1998 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1998 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8618 +8619,spotify:track:5zFglKYiknIxks8geR8rcL,Beautiful Mistakes (feat. Megan Thee Stallion),"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:181bsRPaVXVlUKXrxwZfHK","Maroon 5, Megan Thee Stallion",spotify:album:1pCA38N6MkLlthXtAOvZTU,JORDI (Deluxe),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2021-06-11,https://i.scdn.co/image/ab67616d0000b27386a8ab515de4b7aef28cd631,1,1,227395,https://p.scdn.co/mp3-preview/952fe343712095ebea9aa06609ff83c3fe6e9ccb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USUM72103449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,houston rap,pop,rap,trap queen",0.713,0.676,10.0,-5.483,1.0,0.027,0.0377,0.0,0.154,0.721,99.048,4.0,,Interscope Records*,"C © 2021 Interscope Records (222 Records), P ℗ 2021 Interscope Records (222 Records)",8619 +8620,spotify:track:7zmVAVcT1oho7iWJGpApkE,Summer Wine,"spotify:artist:3IZrrNonYELubLPJmqOci2, spotify:artist:2aVHDjRHRM7dcFkGwahXLG","Nancy Sinatra, Lee Hazlewood",spotify:album:7I7z6Lfwyc1nghsFImEhYq,Nancy & Lee,"spotify:artist:3IZrrNonYELubLPJmqOci2, spotify:artist:2aVHDjRHRM7dcFkGwahXLG","Nancy Sinatra, Lee Hazlewood",1968-01-01,https://i.scdn.co/image/ab67616d0000b2732a3c0fda11b85a7b00bc2c70,1,4,256279,https://p.scdn.co/mp3-preview/aa2314c1e1d0db40f88eb0f0c3f09401bb8f16f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USASE0510168,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lounge,sunshine pop,baroque pop,classic oklahoma country,singer-songwriter",0.321,0.664,9.0,-5.902,0.0,0.0326,0.447,0.0,0.138,0.57,139.235,4.0,,"Boots Enterprises, Inc.","C (C) 1968 Boots Enterprises, Inc., P (P) 2006 Boots Enterprises, Inc.",8620 +8621,spotify:track:2tpWsVSb9UEmDRxAl1zhX1,Counting Stars,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:20lOt6G8MHv8ZO7ViOmiP7,Native,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2013-01-01,https://i.scdn.co/image/ab67616d0000b2739e2f95ae77cf436017ada9cb,1,1,257265,https://p.scdn.co/mp3-preview/6316f6cf12631da62c5b786421b25e66c3ab4ea6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,USUM71301306,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.663,0.706,1.0,-4.972,0.0,0.0383,0.0654,0.0,0.118,0.474,122.013,4.0,,Mosley / Interscope,"C © 2013 Mosley Music/Interscope Records, P ℗ 2013 Mosley Music/Interscope Records",8621 +8622,spotify:track:5EVXjGtSm65oYpRQpwPjm0,Always Come Back To Your Love,spotify:artist:7L12TqJ0fbwtFljTbwfwRI,Samantha Mumba,spotify:album:6Tc50kI9Vo4F0AQiSMqGhH,The Collection,spotify:artist:7L12TqJ0fbwtFljTbwfwRI,Samantha Mumba,2006-01-01,https://i.scdn.co/image/ab67616d0000b27314603716dc56e031b7a6bdef,1,8,213160,https://p.scdn.co/mp3-preview/1d72f4d8ae80883c43bf033bec63a142f4d1d1e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBALS0000014,spotify:user:bradnumber1,2023-01-31T06:39:58Z,"bubblegum dance,europop,talent show",0.744,0.797,8.0,-5.333,1.0,0.0328,0.0105,0.000624,0.0638,0.899,105.231,4.0,,Spectrum,"C © 2006 Spectrum Music, P This Compilation ℗ 2006 Spectrum Music",8622 +8623,spotify:track:3HLicjnTcxTyykFvlHJxd7,Act Yr Age,spotify:artist:7sCcPQQft3sSxcJaB30dlb,Bluejuice,spotify:album:14G6bEuRS9A0vETVepVQRQ,Company,spotify:artist:7sCcPQQft3sSxcJaB30dlb,Bluejuice,2011-01-01,https://i.scdn.co/image/ab67616d0000b273ab110d30c2c6d1196ddaf333,1,2,200120,https://p.scdn.co/mp3-preview/80d17b7b9a0b1dce15ec3a6537f9b612f1a4441f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUUM71100670,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.658,0.879,2.0,-3.714,1.0,0.0277,0.000155,0.0283,0.241,0.967,135.004,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Dew Process/Universal Music Australia, P ℗ 2011 Dew Process/Universal Music Australia",8623 +8624,spotify:track:2Fn4gZI3MAeWTiv7cSVxZQ,Another Place,"spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc, spotify:artist:2wUjUUtkb5lvLKcGKsKqsR","Bastille, Alessia Cara",spotify:album:3PshhNStqCBXDzWm5O1VsE,Another Place,"spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc, spotify:artist:2wUjUUtkb5lvLKcGKsKqsR","Bastille, Alessia Cara",2019-11-01,https://i.scdn.co/image/ab67616d0000b27324c39b52de69d4d017f7c7e3,1,1,213510,https://p.scdn.co/mp3-preview/1575c6e1c1ac43b801df1e681ec83cae1843fc64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBUM71905436,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop,canadian contemporary r&b,canadian pop,pop",0.685,0.742,8.0,-5.409,1.0,0.0471,0.22,0.0,0.185,0.618,115.008,4.0,,EMI (Virgin),"C © 2019 Virgin Records Limited, P ℗ 2019 Virgin Records Limited",8624 +8625,spotify:track:3sX3c6QUPSAiKf77RZRf5B,Causing a Commotion,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:21vHnROXDZY51gJxsjTLXZ,Who's That Girl Soundtrack,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1987-07-21,https://i.scdn.co/image/ab67616d0000b2732f14ef42e50dcb91e71cedcc,1,2,261666,https://p.scdn.co/mp3-preview/fd7db5ceea4e564425f2f0cde212a9db77b969b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USWB10002767,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.771,0.749,5.0,-10.628,0.0,0.0401,0.216,0.00184,0.135,0.854,119.875,4.0,,Sire/Warner Records,"C © 1987 Sire Records Ltd., P ℗ 1987 Sire Records Ltd.",8625 +8626,spotify:track:3gJHlRePSMcwrnmhSWvUKR,Don't Change,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:5iRDO2cnFmb95rjzpiVJrT,The Very Best,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b27361720ec9790c8d7a64698ac7,2,1,266173,https://p.scdn.co/mp3-preview/6d5629c2390446f09e6633ebb9352ff6b02e9395?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF050190223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.206,0.808,9.0,-6.521,1.0,0.0412,5.29e-05,0.0765,0.0859,0.144,163.34,4.0,,Universal Music Group,"C © 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2011 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",8626 +8627,spotify:track:3c3XJ9P1BjOtmNXKvdVyHK,For A Better Day,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:5ttIIMPWCp2bvwsdAPcEXC,Stories,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2015-10-02,https://i.scdn.co/image/ab67616d0000b273d40648f55cadd57796f22455,1,5,206066,https://p.scdn.co/mp3-preview/5625f0f9aeb6aa4ed4768002b81300f542b6a3d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CHB701400189,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.631,0.836,2.0,-3.386,0.0,0.0343,0.0482,0.139,0.135,0.321,134.987,4.0,,Universal Music Group,"C © 2015 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2015 Avicii Music AB, under exclusive license to Universal Music AB",8627 +8628,spotify:track:0oDQWfEXylIcmKZvhabdfy,Sunlight,spotify:artist:6fXEqmGQEt6ONuqVmwrN46,Bag Raiders,spotify:album:1HPUrRUr6dg34UHoqUQx6a,Bag Raiders (Deluxe),spotify:artist:6fXEqmGQEt6ONuqVmwrN46,Bag Raiders,2011-01-01,https://i.scdn.co/image/ab67616d0000b273273d3dfbf1d03268805e53b6,1,2,243186,https://p.scdn.co/mp3-preview/7882cb5a013ffbde1a98c82b6718dd61db43bee8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71001516,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,indietronica,nu disco",0.613,0.905,9.0,-3.865,1.0,0.272,0.00547,0.0,0.0634,0.474,124.985,4.0,,Modular,"C © 2011 Modular Recordings, P ℗ 2011 Modular Recordings",8628 +8629,spotify:track:67t9XakWxL3JuoRTN4uk01,Not a Day Goes By,spotify:artist:2IJxOGPJDJzf6lLQqa84jl,Rick Price,spotify:album:4N8KeXHET6oYWKiUutct3E,HEAVEN KNOWS,spotify:artist:2IJxOGPJDJzf6lLQqa84jl,Rick Price,1992-07-10,https://i.scdn.co/image/ab67616d0000b273b8f9440460763a3106741755,1,2,259200,https://p.scdn.co/mp3-preview/6f4991cc84a57b68ce664c88b19a0cacbb650f0a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUSM09200056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.609,0.735,9.0,-8.568,0.0,0.0269,0.28,0.0,0.136,0.587,96.818,4.0,,Epic,P (P) 1992 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,8629 +8630,spotify:track:6iX1f3r7oUJnMbGgQ2gx1j,867-5309 / Jenny,spotify:artist:1n2LWYgwtGp7EzDapUoniE,Tommy Tutone,spotify:album:7aks5lgwJAdiZLN51UjkU1,Tommy Tutone - 2,spotify:artist:1n2LWYgwtGp7EzDapUoniE,Tommy Tutone,1981-12-04,https://i.scdn.co/image/ab67616d0000b273de364a9a587331dbf00aaae7,1,1,226200,https://p.scdn.co/mp3-preview/cb04d6d36402259b3174fca9ec7957d41faac9a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM18100804,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.584,0.708,5.0,-10.039,1.0,0.0593,0.0264,0.00364,0.112,0.564,137.657,4.0,,Columbia,"P (P) 1981 Assorted Music, Inc. d/b/a Philadelphia International Records",8630 +8631,spotify:track:02d1E4NRuh7OEQO4vCb9PD,Marry The Night,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:6LY3AerY6KNGOPsNPL63Kk,Born This Way (International Special Edition Version),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2011-05-23,https://i.scdn.co/image/ab67616d0000b273a5d31644260279be8d0c46c0,1,1,264520,https://p.scdn.co/mp3-preview/fe70ee4e17f80d447e58f9a188e0ecadcfcf3ff7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USUM71106431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.613,0.881,0.0,-4.43,1.0,0.0587,0.00103,0.0059,0.462,0.381,131.097,4.0,,Interscope,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",8631 +8632,spotify:track:07cyeNU4ACaV9kjGg4pZyc,Stole the Show,spotify:artist:48sLioddyaXkuhyHXSkpsB,Parson James,spotify:album:6mFi7ayKBXA3tz9ucQ9mb9,The Temple EP,spotify:artist:48sLioddyaXkuhyHXSkpsB,Parson James,2016-02-05,https://i.scdn.co/image/ab67616d0000b273affed0446de9aa5ae0874f90,1,4,231880,https://p.scdn.co/mp3-preview/347f78406adedb4f7c928c24f7ee3f3948652aa9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USRC11502053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop soul,0.406,0.311,8.0,-8.896,0.0,0.0366,0.872,1.33e-05,0.103,0.236,168.905,4.0,,RCA Records Label,"P (P) 2016 RCA Records, a division of Sony Music Entertainment",8632 +8633,spotify:track:425D5agfu2gtVTp0v5az8V,All In It,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,18,231413,https://p.scdn.co/mp3-preview/c02773174368583a96f9eefef620a339a4daabe8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516773,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.459,0.701,5.0,-7.496,0.0,0.0782,0.502,3.62e-05,0.238,0.509,97.648,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",8633 +8634,spotify:track:1QbQL5m30YNvukitIqAnFG,Sunglasses At Night,spotify:artist:0smy8yDrRoI4CnhpOuthg0,Corey Hart,spotify:album:5BDE3Z6clvwbPoWWwiSyGp,The Singles,spotify:artist:0smy8yDrRoI4CnhpOuthg0,Corey Hart,1992-01-01,https://i.scdn.co/image/ab67616d0000b273b261545058d4ec62dae2bfed,1,3,320573,https://p.scdn.co/mp3-preview/e19fd2ce5e1d1a90de12067d95a14c49723145f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USEM38400043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,new romantic,new wave pop,soft rock,synthpop",0.686,0.609,10.0,-11.469,0.0,0.0444,0.258,0.00015,0.113,0.719,127.736,4.0,,Capitol Records,"C © 1992 EMI Catalog, P This Compilation ℗ 1992 Capitol Records Inc.",8634 +8635,spotify:track:4GqMYg91LJXiLjvQBFc3s0,Dream Lover - 2006 Remaster,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,spotify:album:23LtBxKUYBWCNQxcM2Iefo,Definitive Pop: Bobby Darin,spotify:artist:0EodhzA6yW1bIdD5B4tcmJ,Bobby Darin,2007-02-05,https://i.scdn.co/image/ab67616d0000b273e5f60c70280913e903799371,1,6,151253,https://p.scdn.co/mp3-preview/9b550a565bdd489e5b0f3c51b4fe1af5b08e03d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USEE10609102,spotify:user:bradnumber1,2023-11-08T04:08:33Z,"adult standards,easy listening,lounge,rock-and-roll,rockabilly,vocal jazz",0.526,0.608,5.0,-6.855,1.0,0.0468,0.703,0.0,0.438,0.723,131.851,4.0,,Rhino/Elektra,"C © 2006 Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2006 Rhino Entertainment Company, a Warner Music Group Company",8635 +8636,spotify:track:57JVGBtBLCfHw2muk5416J,Another One Bites The Dust - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:6wPXUmYJ9mOWrKlLzZ5cCa,The Game (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1980-06-27,https://i.scdn.co/image/ab67616d0000b27307744e2ed983efa3e6620a47,1,3,214653,https://p.scdn.co/mp3-preview/3047625c0a8fbe66de7c4d18a1503608c397a37e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBUM71029605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.932,0.528,5.0,-6.472,0.0,0.161,0.115,0.329,0.163,0.757,109.975,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",8636 +8637,spotify:track:59uQI0PADDKeE6UZDTJEe8,Last Night,spotify:artist:4oUHIQIBe0LHzYfvXNW4QM,Morgan Wallen,spotify:album:7fOmdhRrRohTzToL617xkk,3 Songs At A Time Sampler,spotify:artist:4oUHIQIBe0LHzYfvXNW4QM,Morgan Wallen,2023-01-31,https://i.scdn.co/image/ab67616d0000b273fc1df8423733f6f3c9e8dea2,1,1,163854,https://p.scdn.co/mp3-preview/48760562c770591058c71d16a5ac81d3833e72d2?cid=9950ac751e34487dbbe027c4fd7f8e99,True,77,USUG12300802,spotify:user:bradnumber1,2023-07-05T22:57:00Z,contemporary country,0.492,0.673,6.0,-5.431,1.0,0.0347,0.413,0.0,0.137,0.488,203.812,4.0,,Big Loud Records / Mercury Records / Republic Records,"C © 2023 Big Loud Records, under exclusive license to Mercury Records/Republic Records, a division of UMG Recordings, Inc., P ℗ 2023 Big Loud Records, under exclusive license to Mercury Records/Republic Records, a division of UMG Recordings, Inc.",8637 +8638,spotify:track:5b2bu6yyATC1zMXDGScJ2d,"Hey Mama (feat. Nicki Minaj, Bebe Rexha & Afrojack)","spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:4D75GcNG95ebPtNvoNVXhz, spotify:artist:64M6ah0SkkRsnPGtGiRAbb, spotify:artist:0hCNtLu0JehylgoiP8L4Gh","David Guetta, AFROJACK, Bebe Rexha, Nicki Minaj",spotify:album:3UEEPh5wsdhP7SKC31yvhu,Listen (Deluxe),spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2014-11-10,https://i.scdn.co/image/ab67616d0000b27322f21ef4e9da48c31170a418,1,10,192560,https://p.scdn.co/mp3-preview/bfdf41e3d62f4be205ae8438a6bf6048909dae9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GB28K1400058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,big room,dance pop,dutch house,edm,electro house,pop dance,dance pop,pop,hip pop,pop,queens hip hop,rap",0.596,0.73,9.0,-4.091,1.0,0.151,0.24,0.0,0.325,0.525,85.979,4.0,,Atlantic/Parlophone,"C © 2014 What A Music Ltd. under exclusive license to Parlophone/Warner Music France, under exclusive license to Atlantic Recording Corporation for the United States. All rights reserved., P ℗ 2014 What A Music Ltd. under exclusive license to Parlophone/Warner Music France, under exclusive license to Atlantic Recording Corporation for the United States. All rights reserved.",8638 +8639,spotify:track:4jSRRbFSFOnAXuzM6wytQi,Upgrade,spotify:artist:2OcoH48k7DyyIzdcDbDsVT,Kelly Rose,spotify:album:3evxIGZhFpS0W6G9w35kgg,Upgrade,spotify:artist:2OcoH48k7DyyIzdcDbDsVT,Kelly Rose,2021-07-16,https://i.scdn.co/image/ab67616d0000b273ca01bb8c7288fc92653ba45f,1,1,170773,https://p.scdn.co/mp3-preview/c20df8ce38e35f19c6b536a7d8d90eee5b336334?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,QZHNB2193587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.782,0.587,9.0,-9.459,0.0,0.0437,0.123,0.000539,0.152,0.648,98.029,4.0,,Kelly Rose,"C 2021 Kelly Rose, P 2021 Kelly Rose",8639 +8640,spotify:track:0EcH1iItB5rVIZaaiQMbsG,Take Me Away (Into The Night) - Vocal Radio Mix,spotify:artist:2a0fbijQhcaj1hOFp5b3id,4 Strings,spotify:album:7m03aYUMXQ19qB1s5rTz4w,Believe,spotify:artist:2a0fbijQhcaj1hOFp5b3id,4 Strings,2003-04-22,https://i.scdn.co/image/ab67616d0000b2734e764041c29f80a3135982a6,1,2,190426,https://p.scdn.co/mp3-preview/7857c8a6e13d76f41f5646351d111b3f3b038ab6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,NLC280210001,spotify:user:bradnumber1,2023-09-20T06:28:21Z,"dutch trance,trance,vocal trance",0.617,0.79,3.0,-6.983,0.0,0.0365,0.00212,0.0455,0.159,0.267,138.001,4.0,,Spinnin' Records,"C © 2003 Spinnin' Records BV, P ℗ 2003 Spinnin' Records BV",8640 +8641,spotify:track:4t0Pj3iBnSCZv5pDEPNmzG,Jive Talkin',spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:2blsPE3sO5SnroFjfEAlfj,Main Course,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1975-06-01,https://i.scdn.co/image/ab67616d0000b27383566f12b1105339207b01c4,1,2,222266,https://p.scdn.co/mp3-preview/5fa2f2a69e3683228cef74da9a3c9941b9e2cc5d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAKW7501053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.811,0.545,7.0,-12.969,0.0,0.0579,0.155,0.0853,0.156,0.734,105.911,4.0,,Bee Gees Catalog,"C © 1975 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 1975 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",8641 +8642,spotify:track:3fT9nfnv5uLyPsx6ymre7z,Feel,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:631wIXDIEys9hlqINNcYVD,Feel,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2002-01-01,https://i.scdn.co/image/ab67616d0000b2731d638380935ad1d824d6ded1,1,1,264093,https://p.scdn.co/mp3-preview/d65857af38bb76f8dba4ff9fcd4856e42061cfd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBFFG0200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.579,0.8,5.0,-4.788,1.0,0.0266,0.0255,0.000202,0.152,0.282,98.0,4.0,,Chrysalis UK,"C © 2002 Robert Williams/The In Good Company Co Ltd, P ℗ 2002 Robert Williams/The In Good Company Co Ltd",8642 +8643,spotify:track:4bohbKYM5RjGsSzv1EsBed,Don't Hold Your Breath,spotify:artist:40xbWSB4JPdOkRyuTDy1oP,Nicole Scherzinger,spotify:album:5MFBaLYIF033D8PUUETebv,Killer Love,spotify:artist:40xbWSB4JPdOkRyuTDy1oP,Nicole Scherzinger,2011-01-01,https://i.scdn.co/image/ab67616d0000b2739d445625ae6f5006385d4d5f,1,3,197440,https://p.scdn.co/mp3-preview/705044dfd4509de1f8fef0924b66d002b43a4749?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71029856,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.659,0.799,5.0,-6.098,0.0,0.0264,0.00626,8.99e-05,0.183,0.658,110.955,4.0,,Nicole Scherzinger Solo,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",8643 +8644,spotify:track:50RP5xJrJdRXySXSkAWkMv,My Completeness,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,spotify:album:4ATe4EfAkzTRcyXCWIIy4u,Thirsty Merc (with Bonus Tracks),spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,2004-08-16,https://i.scdn.co/image/ab67616d0000b2736681375da7e43ba067f123d6,1,1,228000,https://p.scdn.co/mp3-preview/d2ae0b403f79df7025b92d46c84df1d08632d958?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUWA00313310,spotify:user:bradnumber1,2022-02-03T10:23:45Z,"australian pop,australian rock",0.412,0.912,2.0,-3.197,1.0,0.0526,0.0242,0.0,0.177,0.38,159.618,4.0,,WM Australia,"C © 2005 Warner Music Australia Pty Limited, P ℗ 2005 Warner Music Australia",8644 +8645,spotify:track:493TKswzQDCStxco9dtUzW,"Risk It - Original Song from the TV Series ""The Secret Daughter""",spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:0Gbc3tyOXrlor173yPH6kT,The Secret Daughter - The Secret Edition (The Songs You Loved from the Original 7 Series),spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2017-03-10,https://i.scdn.co/image/ab67616d0000b273dfb52f4043ef29206d453208,1,1,195200,https://p.scdn.co/mp3-preview/e3904ef0e97bae00278f6e866002af5ec6be0000?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUBM01600126,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.677,0.908,2.0,-3.216,1.0,0.0922,0.00874,2.35e-06,0.0404,0.822,96.543,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd / Screentime Pty Limited / Seven Network (Operations) Limited,8645 +8646,spotify:track:1iqYXkIlPhNOK8YsnFpOfX,Stop The Music,"spotify:artist:2Q13jBmo9llBTWdgnZMzyS, spotify:artist:1cUNRt3Ha4lnnNvPTJAIa8","P-Money, Scribe",spotify:album:0pRzCgWWLfSvMukBReWEsZ,Magic City,spotify:artist:2Q13jBmo9llBTWdgnZMzyS,P-Money,2005-07-03,https://i.scdn.co/image/ab67616d0000b2730170d094f86e6615232a60e2,1,15,309146,https://p.scdn.co/mp3-preview/0807045ae6ee947f69872218108872a99f109fcf?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,NZD100400115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"nz hip hop,nz hip hop",0.723,0.63,9.0,-6.749,0.0,0.0471,0.00303,0.0428,0.0926,0.0596,129.941,4.0,,All City Music,"C 2005 Dirty Records, P 2005 Dirty Records",8646 +8647,spotify:track:27AHAtAirQapVldIm4c9ZX,Jump,spotify:artist:2zrZfs23sjuHDv4E6YRmNf,Kris Kross,spotify:album:5bGumbB29JBPlv4ECVURka,Totally Krossed Out,spotify:artist:2zrZfs23sjuHDv4E6YRmNf,Kris Kross,1992-03-17,https://i.scdn.co/image/ab67616d0000b2731ffe5d4aa25c7bd1b1fc4847,1,2,195106,https://p.scdn.co/mp3-preview/3bfd22ebed8273e6ba6494f72db262a58aaf5f04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM19200533,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"gangster rap,hardcore hip hop,hip hop,hip pop,miami bass,old school atlanta hip hop",0.749,0.745,2.0,-10.625,1.0,0.164,0.000501,0.00403,0.333,0.481,101.972,4.0,,Ruffhouse/Columbia,P (P) 1992 Sony Music Entertainment Inc.,8647 +8648,spotify:track:23L74esErcn5KvWFY0ZAqS,Thug Lovin',"spotify:artist:1J2VVASYAamtQ3Bt8wGgA6, spotify:artist:62sPt3fswraiEPnKQpAbdE","Ja Rule, Bobby Brown",spotify:album:7HQJPTQwijtIlnOLwT0nTX,The Last Temptation,spotify:artist:1J2VVASYAamtQ3Bt8wGgA6,Ja Rule,2002-01-01,https://i.scdn.co/image/ab67616d0000b2735b31748986c995e993c3eca4,1,2,290373,https://p.scdn.co/mp3-preview/bed3caecc17d14bfd1397b9a1b70f9dc49b8e4a3?cid=9950ac751e34487dbbe027c4fd7f8e99,True,43,USDJ20201102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,gangster rap,hip hop,hip pop,pop rap,queens hip hop,rap,urban contemporary,contemporary r&b,new jack swing,r&b,urban contemporary",0.765,0.68,1.0,-5.593,1.0,0.177,0.142,0.0,0.6,0.772,93.059,4.0,,"I.G. Records, Inc./Universal Records","C © 2002 The Island Def Jam Music Group, P ℗ 2002 The Island Def Jam Music Group",8648 +8649,spotify:track:494OU6M7NOf4ICYb4zWCf5,Sugar,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:4KXLjIEas8MTwwX3xpmAdC,V - Deluxe,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2015-05-18,https://i.scdn.co/image/ab67616d0000b2735430b6be862e01be82a50bc8,1,5,235493,https://p.scdn.co/mp3-preview/f35cfb7e7207a1cf27ab3b0e3e07cb95c91440eb?cid=9950ac751e34487dbbe027c4fd7f8e99,True,55,USUM71410340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.748,0.788,1.0,-7.055,1.0,0.0334,0.0591,0.0,0.0863,0.884,120.076,4.0,,Interscope Records*,"C © 2015 Interscope Records, P ℗ 2015 Interscope Records",8649 +8650,spotify:track:66MsOhuFLxMyhtoJJ6dojp,Mule Skinner Blues,spotify:artist:2hOXOavOPsbPgls3ebJLFp,The Fendermen,spotify:album:04B53Cu1DuNh458LeQIkh5,Mule Skinner Blues,spotify:artist:2hOXOavOPsbPgls3ebJLFp,The Fendermen,2015-07-01,https://i.scdn.co/image/ab67616d0000b27306a3aeab53c5ca22ad6f99ca,1,1,142266,https://p.scdn.co/mp3-preview/e355688cd6d58d0a5560be571ef195519ea69e77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BEDO61502546,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.519,0.494,4.0,-7.854,1.0,0.0409,0.793,1.56e-05,0.178,0.683,127.716,4.0,,Crazy Warthog Media,"C 2015 Crazy Warthog Media, P 2015 Crazy Warthog Media",8650 +8651,spotify:track:5Ti9uSxSZUWvmAsLNxkHds,Smiley,spotify:artist:3tsvlpzINrKBjitq8YDz0D,Ronnie Burns,spotify:album:36HAfPYsx7cPglngjKbRSa,70 Hits of the '70s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-04,https://i.scdn.co/image/ab67616d0000b273a6f173ddeeeca55fc54cddf3,1,45,209186,https://p.scdn.co/mp3-preview/872662cd8e7109eebebe8a61cebbedf1b7c30a18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUFE07000003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,beatlesque,0.129,0.677,7.0,-8.138,1.0,0.0453,0.271,5.17e-05,0.163,0.309,82.141,4.0,,WM Australia,"C © 2016 Warner Music Australia Pty Ltd, P ℗ 2016 Warner Music Australia Pty Ltd",8651 +8652,spotify:track:4S1VYqwfkLit9mKVY3MXoo,Forever Young,spotify:artist:0xliTEbFfy5HQHvsTknTkX,Alphaville,spotify:album:2256qKBSQdt53T5dz4Kdcs,Forever Young,spotify:artist:0xliTEbFfy5HQHvsTknTkX,Alphaville,1984,https://i.scdn.co/image/ab67616d0000b273b9c4979446c4d39bc08e9503,1,6,226706,https://p.scdn.co/mp3-preview/715c3b3b956d769f21ce4e43ede766fce7cd31fe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,DEA629260150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,synthpop",0.489,0.482,9.0,-9.466,0.0,0.0275,0.417,0.00227,0.235,0.33,136.803,4.0,,WM Germany,"C © 1984 WEA RECORDS / WARNER MUSIC GERMANY, P ℗ 1984 WEA RECORDS / WARNER MUSIC GERMANY",8652 +8653,spotify:track:2rDwdvBma1O1eLzo29p2cr,Whataya Want from Me,spotify:artist:6prmLEyn4LfHlD9NnXWlf7,Adam Lambert,spotify:album:0cUNjl7p6LYZJkKXJWzqP0,For Your Entertainment,spotify:artist:6prmLEyn4LfHlD9NnXWlf7,Adam Lambert,2009-11-23,https://i.scdn.co/image/ab67616d0000b273fe0d9870d6d8e18c3a00c658,1,3,227320,https://p.scdn.co/mp3-preview/be2c609545e2f5a18467c97d6bae939947de9f58?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBCTA0900344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,idol,pop,post-teen pop",0.44,0.683,11.0,-4.732,0.0,0.0489,0.00706,0.0,0.0593,0.445,185.948,4.0,,RCA Records Label,"P (P) 2009 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",8653 +8654,spotify:track:4KvbH0GiowrUxQDY9uoSLd,Dreamin' - 2001 Remaster,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:5qnCTen7cFDXAkuk4vdMCU,I'm No Hero,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1980,https://i.scdn.co/image/ab67616d0000b273eb18ca302535711b01c8fac3,1,8,220440,https://p.scdn.co/mp3-preview/622a7b061eefb5b941fcc82bbbcef045b492e14b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBAYE0100597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.648,0.597,6.0,-13.247,1.0,0.0283,0.0015,0.00021,0.0983,0.879,134.116,4.0,,Parlophone UK,"C © 2001 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",8654 +8655,spotify:track:37qI0mchgzUSeUhPiwUWPY,Wherever You Will Go,spotify:artist:5aMmmNxw4vgpc5XC6hK0zp,The Calling,spotify:album:0eumbPpzy0UGChIwnCpLpl,The Best Of...,spotify:artist:5aMmmNxw4vgpc5XC6hK0zp,The Calling,2011-02-04,https://i.scdn.co/image/ab67616d0000b273effe44c0e882086284a9bc70,1,1,209360,https://p.scdn.co/mp3-preview/ec2294caf17225c2bcaa613507443f1539a91a47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USRC10001047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock",0.551,0.696,2.0,-6.192,1.0,0.0265,0.0392,0.0,0.127,0.354,112.024,4.0,,RCA/Legacy,P (P) 2010 Sony Music Entertainment,8655 +8656,spotify:track:3FUS56gKr9mVBmzvlnodlh,Killing In the Name,spotify:artist:2d0hyoQ5ynDBnkvAbJKORj,Rage Against The Machine,spotify:album:4LaRYkT4oy47wEuQgkLBul,Rage Against The Machine,spotify:artist:2d0hyoQ5ynDBnkvAbJKORj,Rage Against The Machine,1992-11-03,https://i.scdn.co/image/ab67616d0000b27324f31a0a281320f0cec6f86f,1,2,313666,https://p.scdn.co/mp3-preview/c3977b73cfc8aa2165bc088e7d9607a400b8514d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,54,USSM19200317,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,conscious hip hop,funk metal,hard rock,nu metal,political hip hop,post-grunge,rap metal,rap rock,rock",0.457,0.779,7.0,-6.323,1.0,0.257,0.0185,2.04e-06,0.0247,0.734,86.573,4.0,,Epic,"P (P) 1992 Epic Records, a division of Sony Music Entertainment",8656 +8657,spotify:track:35ItUJlMtjOQW3SSiTCrrw,Crazy Little Thing Called Love - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:6wPXUmYJ9mOWrKlLzZ5cCa,The Game (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1980-06-27,https://i.scdn.co/image/ab67616d0000b27307744e2ed983efa3e6620a47,1,5,163373,https://p.scdn.co/mp3-preview/26fc1b3bff36b451ff297175fcdbf94fd145f09a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,GBUM71029612,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.599,0.762,0.0,-6.887,1.0,0.0423,0.714,4.43e-06,0.35,0.715,76.961,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",8657 +8658,spotify:track:7fwa5I8SycGBpw2jOZ0L7m,Put Your Hand in the Hand,spotify:artist:2LgRWQn0lwQqsqidN5V9lW,Ocean,spotify:album:7Dvl1RajZXM4s9OTd2FJXH,Put Your Hand in the Hand,spotify:artist:2LgRWQn0lwQqsqidN5V9lW,Ocean,1971,https://i.scdn.co/image/ab67616d0000b273a78fdebedcb8a5f60e5ce163,1,1,176706,https://p.scdn.co/mp3-preview/4cebf4a28844c690a5724a5e4b5464d632761234?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USBR17100007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.833,0.475,9.0,-14.951,1.0,0.0403,0.0489,0.000104,0.0759,0.978,136.384,4.0,,Legacy Recordings,P Originally released 1971. All rights reserved by Sony Music Entertainment,8658 +8659,spotify:track:3iuDPdkt1l3L4MH1kPIuGc,No More Lonely Nights (Ballad),spotify:artist:4STHEaNw4mPZ2tzheohgXB,Paul McCartney,spotify:album:42XGL4SP2b0D3HoeMlPJHQ,Give My Regards To Broad Street,spotify:artist:4STHEaNw4mPZ2tzheohgXB,Paul McCartney,1984-10-22,https://i.scdn.co/image/ab67616d0000b273c2be915186b7cdd7a6908f45,1,1,312733,https://p.scdn.co/mp3-preview/0bcd9d20080cd97d07b3c9ec44058720c4ec7f62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCCS0700379,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,mellow gold,rock,soft rock",0.32,0.426,5.0,-14.143,1.0,0.0644,0.0044,0.000319,0.64,0.429,175.895,4.0,,Universal Music Group,"C © 2010 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2010 MPL Communications Inc/Ltd, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc.",8659 +8660,spotify:track:0ndXb2CwhrqtyHK6o6eVNd,Murder On The Dancefloor,spotify:artist:2cBh5lVMg222FFuRU7EfDE,Sophie Ellis-Bextor,spotify:album:3WDbM110Rjj1ELU36QkQFr,Read My Lips,spotify:artist:2cBh5lVMg222FFuRU7EfDE,Sophie Ellis-Bextor,2002-01-01,https://i.scdn.co/image/ab67616d0000b27348fee203acc965735bb6e4ad,1,1,230013,https://p.scdn.co/mp3-preview/340bdf7b29f2725f0353cb77cc8f6996cdc9fbe8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAKW0100229,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,new wave pop",0.734,0.848,1.0,-5.285,0.0,0.0309,0.00312,1.16e-05,0.313,0.863,117.31,4.0,,Polydor Records,"C © 2002 Polydor Ltd. (UK), P ℗ 2002 Polydor Ltd. (UK)",8660 +8661,spotify:track:50Lf1pAMJqgnERsUK1hzG6,Sleepwalking,spotify:artist:2vf4pRsEY6LpL5tKmqWb64,Elderbrook,spotify:album:13tqZZCObFhNQS6bsldItK,Sleepwalking,spotify:artist:2vf4pRsEY6LpL5tKmqWb64,Elderbrook,2018-05-24,https://i.scdn.co/image/ab67616d0000b2739247c40c1e2d6fbb4aeb001f,1,1,185505,https://p.scdn.co/mp3-preview/ac18ccf4fc4415cdb19252a6a10403cd98a54143?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBAYE1800488,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk dance,0.831,0.581,6.0,-8.137,0.0,0.0508,0.00925,0.0121,0.176,0.786,121.954,4.0,,Parlophone UK,"C © 2018 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2018 Parlophone Records Ltd, a Warner Music Group Company",8661 +8662,spotify:track:27QcreG4puUlokJnrbuCCs,When the Weather Is Fine,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,spotify:album:4ATe4EfAkzTRcyXCWIIy4u,Thirsty Merc (with Bonus Tracks),spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,2004-08-16,https://i.scdn.co/image/ab67616d0000b2736681375da7e43ba067f123d6,1,14,204013,https://p.scdn.co/mp3-preview/fd4433ec7450d6a53a70cb5933dc8fc0b78ef9fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUWA00515610,spotify:user:bradnumber1,2022-02-03T10:24:30Z,"australian pop,australian rock",0.509,0.559,1.0,-5.946,1.0,0.0339,0.273,0.0,0.108,0.248,168.185,4.0,,WM Australia,"C © 2005 Warner Music Australia Pty Limited, P ℗ 2005 Warner Music Australia",8662 +8663,spotify:track:22Lg6vvMS2JC07aAjsGvtU,Hot N Cold,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:4HR0CUur5ucPjpyOYdNJY1,Hot N Cold,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2008-09-09,https://i.scdn.co/image/ab67616d0000b2734e837b06165d5d397e235e5b,1,1,223226,https://p.scdn.co/mp3-preview/c0e7f2866e9b0cd55fb679b2f9d7849922700bde?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USCA20802544,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.702,0.838,7.0,-3.992,1.0,0.0439,7.98e-05,0.0,0.072,0.855,132.007,4.0,,Capitol Records,"C © 2008 Capitol Records, LLC, P ℗ 2008 Capitol Records, LLC",8663 +8664,spotify:track:1B7tV3WzEnDUS7wXSKDXk3,Gravity,spotify:artist:7o9kdTx6RmO12iAVVsNehd,The Superjesus,spotify:album:6nspDUDiUWuGGL4M5g62Xp,Jet Age,spotify:artist:7o9kdTx6RmO12iAVVsNehd,The Superjesus,2000,https://i.scdn.co/image/ab67616d0000b273d3dd6d47c940099cd65dae51,1,2,239693,https://p.scdn.co/mp3-preview/7b6641645d8d7dfeb6cd158c1acd99bb22940eee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,AUWA00001940,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.537,0.88,5.0,-5.486,1.0,0.0334,0.00515,0.0,0.22,0.581,93.052,4.0,,WM Australia,"C © 2000 Warner Music Australia Pty Limited, P ℗ 2000 Warner Music Australia Pty Limited",8664 +8665,spotify:track:1inG2cgfeGVBsTCcmMIv0e,In For The Kill,spotify:artist:3K2zB87GZv1krx031en5VA,La Roux,spotify:album:0jBkrUrXIxtaMrfAkHjXoZ,La Roux,spotify:artist:3K2zB87GZv1krx031en5VA,La Roux,2009,https://i.scdn.co/image/ab67616d0000b2731ea4804c178ed97c2c1a0241,1,1,248626,https://p.scdn.co/mp3-preview/9de3aed2102cd40e710179f6ebc77b5ff8a8e192?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70900467,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,electropop,indietronica,neo-synthpop",0.629,0.969,8.0,-0.276,0.0,0.0455,0.00184,0.0,0.122,0.905,150.01,4.0,,Polydor,"C © 2008 Polydor Ltd. (UK), P ℗ 2008 Polydor Ltd. (UK)",8665 +8666,spotify:track:7cLkQkC9Z7hnN767rfRl5G,Working My Way Back to You,spotify:artist:5fbhwqYYh4YwUoEs582mq5,The Spinners,spotify:album:05jU4HqC6CTnRuP1e4yYnS,The Very Best of the Spinners,spotify:artist:5fbhwqYYh4YwUoEs582mq5,The Spinners,2007-06-12,https://i.scdn.co/image/ab67616d0000b2738db344d24f51f53977a9c3b6,1,14,242666,https://p.scdn.co/mp3-preview/c99088c221a0194c3d926872352ec9cd2c305441?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USAT20100914,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,motown,philly soul,quiet storm,soul,southern soul",0.818,0.768,9.0,-6.975,0.0,0.0482,0.289,4.73e-06,0.107,0.922,121.562,4.0,,Rhino Atlantic,"C © 1993 Atlantic Recording Corp., P ℗ 1993 Atlantic Recording Corp.",8666 +8667,spotify:track:3s2MyU2YCwNNwcSokt0jXD,Girl,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,spotify:album:0b6ivSFfDs38MG7aLn9rvO,Destiny Fulfilled,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,2004-11-16,https://i.scdn.co/image/ab67616d0000b2735a4df8a804866955ab8c4def,1,6,224146,https://p.scdn.co/mp3-preview/51fdf3d6b5c8e4136498ad678ef6ca6277942c61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM10413912,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary",0.567,0.747,6.0,-6.019,0.0,0.105,0.31,0.0,0.04,0.556,89.036,4.0,,Sony Urban Music/Columbia,P (P) 2004 SONY BMG MUSIC ENTERTAINMENT,8667 +8668,spotify:track:46ERhnELy62toOMlxe14a3,Wanted Dead Or Alive,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,spotify:album:3gORsZp3xSbkN1ymRNonp1,Slippery When Wet,spotify:artist:58lV9VcRSjABbAbfWS6skp,Bon Jovi,1986-01-01,https://i.scdn.co/image/ab67616d0000b273a82359c9fefa599be35017b1,1,5,308266,https://p.scdn.co/mp3-preview/660a7d68333d424601daee029aab3f95ad26ca39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,rock",0.279,0.54,7.0,-11.46,1.0,0.0328,0.0618,0.0488,0.307,0.24,149.319,4.0,,Universal Music Group,"C © 1986 The Island Def Jam Music Group, P ℗ 1986 The Island Def Jam Music Group",8668 +8669,spotify:track:1XZa6MDzWqCTeNATvtxzZY,Hey Ya!,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,spotify:album:54HLuBrH9xKiOqDJnIDTKR,Ultimate Workout,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-04-12,https://i.scdn.co/image/ab67616d0000b273c343e286bc0d53a9bd281c45,1,33,228004,https://p.scdn.co/mp3-preview/a714d057c9419828b9f28573815c15c2acabb208?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USAR10301095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,hip hop,old school atlanta hip hop,rap,southern hip hop",0.744,0.916,0.0,-4.911,1.0,0.0563,0.0354,0.0,0.253,0.966,79.456,4.0,,Legacy Recordings,P This compilation (P) 2018 Sony Music Entertainment,8669 +8670,spotify:track:46EfOYq59bLsA8KU3UauRK,Poison Arrow,spotify:artist:2s79xe5F6eUQkjwjww27Fh,ABC,spotify:album:2aFWgTQdB8lG7DuMHIU6uw,The Lexicon Of Love,spotify:artist:2s79xe5F6eUQkjwjww27Fh,ABC,1982-06-21,https://i.scdn.co/image/ab67616d0000b273bd799fef187e779c0e14e7b4,1,2,204266,https://p.scdn.co/mp3-preview/1294fc325fae791f2a8274cb150d1362561e41d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088200044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,sophisti-pop,synthpop",0.728,0.879,11.0,-5.861,0.0,0.0933,0.217,0.013,0.0984,0.764,125.853,4.0,,Universal Music Group,"C © 1998 Mercury Records Limited, P ℗ 1998 Mercury Records Limited",8670 +8671,spotify:track:7vbMejkJ9yg3NA2w4QQs88,This Boys In Love,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:5ramB76eNmvFlL1cJ8mw2s,Apocalypso,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2009-01-01,https://i.scdn.co/image/ab67616d0000b2733318282bfa1b2c5c7ed36274,1,4,250546,https://p.scdn.co/mp3-preview/888925fc1f4d836baaa6151647256ac1c4dedee4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70800165,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.482,0.976,10.0,-2.76,0.0,0.0412,0.00134,0.00275,0.344,0.886,122.96,4.0,,Modular,"C © 2009 Modular Recordings, P ℗ 2009 Modular Recordings",8671 +8672,spotify:track:1vxw6aYJls2oq3gW0DujAo,Crazy,spotify:artist:5SbkVQYYzlw1kte75QIabH,Gnarls Barkley,spotify:album:5I0Wf7lRLZArM1K2uQ1AEA,St. Elsewhere,spotify:artist:5SbkVQYYzlw1kte75QIabH,Gnarls Barkley,2006-04-24,https://i.scdn.co/image/ab67616d0000b273ceb0b3423d21e3da43c58b0b,1,2,177933,https://p.scdn.co/mp3-preview/9fe25df6fe065ee723ea66a86dac33fbec29004c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBAHT0600202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,neo soul",0.866,0.537,8.0,-5.786,1.0,0.0335,0.053,0.0156,0.0866,0.643,111.987,4.0,,WM UK,"C © 2006 Gnarls Barkley under exclusive license to Warner Music UK Ltd, P ℗ 2006 Gnarls Barkley under exclusive license to Warner Music UK Ltd.",8672 +8673,spotify:track:0LcVvD1iPjqkfVdWd7ClfA,Too Much Time Together,spotify:artist:0Ou0138wEd8XWebhc4j7O0,San Cisco,spotify:album:1rpLjvQfzQAeZuRVpyMkh4,Gracetown,spotify:artist:0Ou0138wEd8XWebhc4j7O0,San Cisco,2015-03-06,https://i.scdn.co/image/ab67616d0000b2738d06ed4253e7cffac24d973b,1,2,169996,https://p.scdn.co/mp3-preview/98951d1bfac5e6f166f077f2c898b3ece11e2eb7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUU221400002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,fremantle indie,metropopolis,perth indie",0.563,0.841,2.0,-5.35,1.0,0.0519,0.263,0.000258,0.0751,0.954,154.876,4.0,,Island City Records,"C 2014 San Cisco Music Pty Ltd, P 2014 San Cisco Music Pty Ltd",8673 +8674,spotify:track:2Qm5DrmotzWvqNM3JlcQYo,Let's Dance,spotify:artist:0QRgfCLzSR9GyCjXboWQTA,Chris Montez,spotify:album:77KLEElnsx9lRInnzCqMBW,The Hits,spotify:artist:0QRgfCLzSR9GyCjXboWQTA,Chris Montez,1962-01-01,https://i.scdn.co/image/ab67616d0000b27325ef06d1b6bb19098016b3db,1,1,149626,https://p.scdn.co/mp3-preview/cef262f8ef6825c9b6371119b50c31cee51481fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,NLG620401490,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"merseybeat,rock-and-roll",0.751,0.83,1.0,-6.215,1.0,0.0951,0.212,7.94e-06,0.0584,0.935,76.489,4.0,,Monogram Records,"C (C) 2007 Smith & Co, P (P) 1962 Smith & Co",8674 +8675,spotify:track:6Db0KKhX0PyugOXLUrDqXH,As The Days Go By,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,spotify:album:1hXqV3bALCBE9pJMkGgpEF,Edge,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,1988-11-04,https://i.scdn.co/image/ab67616d0000b273d138097929158d75b903907b,1,1,243693,https://p.scdn.co/mp3-preview/9711beeca038cdfa8fcf5b0900435ae7f0223799?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUSM08800041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.563,0.497,7.0,-10.127,1.0,0.0269,0.0177,4.91e-05,0.274,0.38,156.762,4.0,,Columbia,P (P) 1988 Sony Music Entertainment Australia Pty Ltd,8675 +8676,spotify:track:0GiwV6v3AgJfdu59tj719Y,Pump It Up,spotify:artist:6F3vLfyutkUhpM50G84eMt,Endor,spotify:album:3D8C4a5lYbpEu5bPQmOpJj,Pump It Up,spotify:artist:6F3vLfyutkUhpM50G84eMt,Endor,2019-09-13,https://i.scdn.co/image/ab67616d0000b27331355fb0f556ede9c6b651cd,1,1,150635,https://p.scdn.co/mp3-preview/b29cfef831d487fec5d51ef194f00d6df34d82f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBCPZ1916610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep groove house,scottish rock",0.899,0.894,1.0,-7.255,1.0,0.222,0.203,9.95e-05,0.0606,0.654,129.047,4.0,,Defected Records,"C © 2019 Defected Records Limited, P ℗ 2019 Defected Records Limited",8676 +8677,spotify:track:2sWRC12vYVTHjdTD2WOE4v,Days Of Wine And Roses - REMASTERED,spotify:artist:2EExdpjU4SK3xnJHO5paJf,Henry Mancini,spotify:album:1qUmcNnG6GBGXw9tLCTJ3V,Greatest Hits - The Best of Henry Mancini,spotify:artist:2EExdpjU4SK3xnJHO5paJf,Henry Mancini,2000-09-14,https://i.scdn.co/image/ab67616d0000b273a80c4ebed642070128cb0234,1,12,126933,https://p.scdn.co/mp3-preview/deb4bd0eec3f6b3f765f8ed0088ae5ef67b7cf33?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USRC10001128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soundtrack,easy listening",0.246,0.171,7.0,-14.435,0.0,0.0298,0.852,0.0,0.195,0.205,81.235,4.0,,RCA Records Label,P (P) 2000 BMG Entertainment,8677 +8678,spotify:track:0NZxAq2XRdNq90UnYOwzoB,Loud,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,spotify:album:7nCXhDHK9lBJ66TVu1F5Ao,Let The Music Play,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,2011-11-21,https://i.scdn.co/image/ab67616d0000b2731c82728b51b6dfd86d0da6b6,1,2,204426,https://p.scdn.co/mp3-preview/93d469c0b23635fd4a938934902d99024249e781?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUBM01100212,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,nz christian,nz pop",0.524,0.854,8.0,-4.237,0.0,0.122,0.0118,0.0,0.0861,0.528,122.066,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,8678 +8679,spotify:track:7IR1gguYDq2T3xSau9usF6,Warning,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:6HUIbDhzmqcwxrxUfTuHdW,International Superhits!,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,2001-11-13,https://i.scdn.co/image/ab67616d0000b273f7bcced5cc8ee6e45f8f3330,1,19,221666,https://p.scdn.co/mp3-preview/37d7be22acdf49ed7cede9f1b99523dcad08e2bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USRE10000920,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.728,0.92,2.0,-2.828,1.0,0.0294,0.0673,1.61e-05,0.199,0.892,120.989,4.0,,Reprise,"C © 2001 Reprise Records, P ℗ 2001 Reprise Records",8679 +8680,spotify:track:5DiXcVovI0FcY2s0icWWUu,Mr. Jones,spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,spotify:album:4nKfZbCALT9H9LfedtDwnZ,August And Everything After,spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,1993-01-01,https://i.scdn.co/image/ab67616d0000b2737e09670f90cd47b3fb9a23e0,1,3,272293,https://p.scdn.co/mp3-preview/66350d687f6596c2d75205b8a7ae507ebd19511d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USIR10000287,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge,rock",0.578,0.817,0.0,-6.541,1.0,0.0363,0.183,2.85e-06,0.285,0.734,141.621,4.0,,DGC,"C © 1993 DGC Records, P ℗ 1993 DGC Records",8680 +8681,spotify:track:4JErskWxmILvav6U2PkTbn,What I've Done,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:4Z2zMabDzLuQQADOEiKiWF,What I've Done,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2007-04-06,https://i.scdn.co/image/ab67616d0000b273ea6a71bf394a763f2aa04904,1,1,205613,https://p.scdn.co/mp3-preview/965b294fcbb6166b82ca1171a8ebcb8c58b16a0a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USWB10700721,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.623,0.93,5.0,-5.285,1.0,0.0324,0.0141,1.64e-06,0.138,0.287,120.117,4.0,,Warner Records,"C © 2007 Warner Records Inc., P ℗ 2007 Warner Records Inc.",8681 +8682,spotify:track:5A9LtnPFOboOhuCSzPaOtY,If You Could Only See,spotify:artist:6qXwLwTLdA44HYsA26vaNU,Tonic,spotify:album:5husr53zVT1yb0vBRsjYK5,Maximum Edge - '90s Modern Rock,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2000-04-20,https://i.scdn.co/image/ab67616d0000b2738673e90d43a668751d916d0a,1,2,263200,https://p.scdn.co/mp3-preview/a1d19fd170b1e8e233c7368e832f8e601ef4507b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USI4R1052723,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rock,post-grunge",0.423,0.917,10.0,-7.065,0.0,0.0349,0.00211,0.0,0.14,0.565,95.208,4.0,,Metacom Music,"C (C) 2000 Metacom Music, P (P) 2000 Metacom Music",8682 +8683,spotify:track:3fOXMRDZo9s34OAfyD1wtv,Sweet Nothin's,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,spotify:album:2osc6a2FfmXGPcsr1ptY7b,Classic Brenda Lee - The Universal Masters Collection,spotify:artist:4cPHsZM98sKzmV26wlwD2W,Brenda Lee,2000-01-01,https://i.scdn.co/image/ab67616d0000b27306a3b68a8db6eedc8d10c3ae,1,2,143826,https://p.scdn.co/mp3-preview/899120da158207a3c8a83a1158ea82c302047f95?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC15919970,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,lounge,rockabilly",0.785,0.394,5.0,-11.73,1.0,0.0576,0.778,0.00013,0.137,0.939,125.288,4.0,,Geffen,"C © 2000 MCA Nashville, P ℗ 2000 MCA Nashville",8683 +8684,spotify:track:3lG5RffAA1qLWyzfSspYa5,History Never Repeats,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,spotify:album:3TZIk8nf69pJK0n7FFCevX,Spellbound,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,1997-07-01,https://i.scdn.co/image/ab67616d0000b273d1ab4c87bd891e918a090cfb,1,20,178800,https://p.scdn.co/mp3-preview/0cb73733bb9a8138424ed6ba27d3932d558c562f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUMU00100786,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,kiwi rock,zolo",0.295,0.8,2.0,-7.355,1.0,0.0584,0.00583,3.72e-06,0.324,0.627,139.543,4.0,,WM Australia,"C © 1997 Mushroom Records Pty Ltd, P ℗ 1997 Mushroom Records Pty Ltd",8684 +8685,spotify:track:0nlVsRpZgsOZi0BFfzHSL9,Love Really Hurts Without You,spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,spotify:album:5ciu3GM6WiMGBOSbQKgc5z,Here You Are: The Best of Billy Ocean,spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,2016-04-29,https://i.scdn.co/image/ab67616d0000b273f816e3458f3257843d8fbf6d,2,5,178933,https://p.scdn.co/mp3-preview/591156d76c73bb09f18922aed86b379637a07368?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK9700121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new romantic,new wave pop,soft rock,yacht rock",0.518,0.905,5.0,-3.846,1.0,0.034,0.00201,4.67e-06,0.095,0.96,140.989,4.0,,Sony Music CG,P This compilation (P) 2016 Leslie Charles under exclusive licence to Sony Music Entertainment UK Limited,8685 +8686,spotify:track:5zZ3ivuobLMt4fypSqsP80,Love In An Elevator - Single Version,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,spotify:album:5DS04MgiAZ1dI2jWUpDuGd,Young Lust: The Aerosmith Anthology,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,2001-11-20,https://i.scdn.co/image/ab67616d0000b2733e0ee8299479b4a82ad6e566,1,14,321733,https://p.scdn.co/mp3-preview/a28e34063f0090d999e4f7dc5954c6eecca04fac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19925404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.446,0.97,4.0,-4.754,1.0,0.0791,0.0344,0.00157,0.337,0.524,93.755,4.0,,Universal Music Group,"C © 2001 Geffen Records Inc., P ℗ 2001 Geffen Records Inc.",8686 +8687,spotify:track:6GedILEPvGzD4j6Dms8LCl,Something's Got A Hold On Me,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:1LofoLByFq3qiEqEumuAL1,Something's Got A Hold On Me,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2013-02-27,https://i.scdn.co/image/ab67616d0000b273ebe06f4faa43eda70d381ceb,1,1,206746,https://p.scdn.co/mp3-preview/35ded52807e14e69248898e3c7efd1a5d7a93574?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM01300056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.594,0.878,8.0,-3.021,0.0,0.0399,0.064,5.18e-05,0.184,0.774,127.945,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd,8687 +8688,spotify:track:5TXAySV8WBjAIMg3lPDCLN,Shout,spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,spotify:album:00EZ3edHfcpcHJpRl3QcQX,Songs From The Big Chair (Deluxe),spotify:artist:4bthk9UfsYUYdcFyqxmSUU,Tears For Fears,1985-02-25,https://i.scdn.co/image/ab67616d0000b2730bec0263f5406aa64ae06efa,1,1,392675,https://p.scdn.co/mp3-preview/1aaaae65ec0d7984495b9e426375fb7c3d8e6595?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088490125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,rock,sophisti-pop,synthpop",0.509,0.935,0.0,-11.081,1.0,0.0411,0.178,5.21e-05,0.119,0.527,97.921,4.0,,Universal Music Group,"C © 2014 Mercury Records Limited, P ℗ 2014 Mercury Records Limited",8688 +8689,spotify:track:2uVvdA2rIdY1kSO1khtEkg,Rock It,spotify:artist:74WcfqC2hmUFHEJs0PDqYi,Little Red,spotify:album:1bTLZ2jx6XFR6P9YPzQPuk,Midnight Remember,spotify:artist:74WcfqC2hmUFHEJs0PDqYi,Little Red,2010-09-10,https://i.scdn.co/image/ab67616d0000b273164f7b919cf9592879d06e13,1,4,210160,https://p.scdn.co/mp3-preview/5ed66fc98b18e9bfc75241f8e8d8bdadae5c320d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01073090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.718,0.532,5.0,-4.132,1.0,0.0298,0.0582,1.8e-06,0.0918,0.934,106.945,4.0,,Liberation Records,"C 2010 Liberation Music, P 2010 Liberation Music",8689 +8690,spotify:track:4qO03RMQm88DdpTJcxlglY,Call Me,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,spotify:album:5HRB9TeaIHRBxfIm4XZTj6,Atomic/Atomix,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,1999-01-01,https://i.scdn.co/image/ab67616d0000b273ebc918cfb51e9ced7349f436,1,4,212600,https://p.scdn.co/mp3-preview/eb33ca5844d02b09c10c367d734551ff5d720f18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USCH38900008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop,permanent wave,power pop,rock,synthpop",0.56,0.824,2.0,-6.711,0.0,0.0348,0.000785,0.00246,0.0892,0.74,142.667,4.0,,Parlophone Catalogue,"C © 1999 EMI Records Ltd, P This Compilation ℗ 1999 EMI Records Ltd",8690 +8691,spotify:track:6cmm1LMvZdB5zsCwX5BjqE,Down,"spotify:artist:4pADjHPWyrlAF0FA7joK2H, spotify:artist:55Aa2cqylxrFIXC767Z865","Jay Sean, Lil Wayne",spotify:album:2H66HrVR1UeMlAoSXpxUnk,All Or Nothing,spotify:artist:4pADjHPWyrlAF0FA7joK2H,Jay Sean,2009-01-01,https://i.scdn.co/image/ab67616d0000b273e207a14471e5356294146e9d,1,1,212506,https://p.scdn.co/mp3-preview/0cab3b7809b74ed92a3261d443db74ce1a786b3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USCM50900094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,post-teen pop,hip hop,new orleans rap,pop rap,rap,trap",0.727,0.68,2.0,-4.498,1.0,0.0286,0.0101,0.0,0.0821,0.728,132.012,4.0,,Cash Money,"C © 2009 Cash Money Records Inc., P ℗ 2009 Cash Money Records Inc.",8691 +8692,spotify:track:3EDnKqjiO6SCUHcEBQ8w0v,All My Friends Are Getting Married - 1994 Remaster,spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,spotify:album:3n4x94lFsN6ugkr58gElaN,Ego Is Not A Dirty Word [remastered],spotify:artist:1vdU5KvV0nDAjPRfpRKjRL,Skyhooks,1975,https://i.scdn.co/image/ab67616d0000b273b4ebc45996acef775e552437,1,8,290200,https://p.scdn.co/mp3-preview/193531992a4bf21294086e95d7ed6797fefc2e5d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUWA00900789,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,glam rock",0.619,0.705,4.0,-5.989,0.0,0.0342,0.509,0.000329,0.317,0.64,141.515,4.0,,WM Australia,"C © 1975 Mushroom Records Pty Limited, P ℗ 1975 Mushroom Records Pty Limited",8692 +8693,spotify:track:2UNfMwF1yY6wSKQUIOOjFh,The Streak,spotify:artist:7MpUvihmfilIxyN20kXwQj,Ray Stevens,spotify:album:0QtzjdxO5CAi9NqpiusEMh,Greatest Hits - Original Recordings,spotify:artist:7MpUvihmfilIxyN20kXwQj,Ray Stevens,2014-04-22,https://i.scdn.co/image/ab67616d0000b27379aa4a188b31512f718c580b,1,9,197733,https://p.scdn.co/mp3-preview/98377548630ee78dc7b67253b8c4a7a02b3ee034?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USZZM0710253,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,novelty",0.685,0.521,0.0,-14.33,1.0,0.295,0.647,0.0,0.918,0.791,119.813,4.0,,Barnaby Records,"C (C) 2014 Barnaby Records, P (P) 1970 Barnaby Records, Inc.",8693 +8694,spotify:track:5vmRQ3zELMLUQPo2FLQ76x,Smalltown Boy,spotify:artist:2wpWOzQE5TpA0dVnh5YD08,Bronski Beat,spotify:album:6OMYQUITdN6wBaWfEtgooI,The Age of Consent,spotify:artist:2wpWOzQE5TpA0dVnh5YD08,Bronski Beat,1984-10-15,https://i.scdn.co/image/ab67616d0000b2736affdd29d6ee84a298746ef7,1,6,302413,https://p.scdn.co/mp3-preview/38dc3cec253fb45d57c7f1972aa196eb00d83ee3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,GBAAP0200005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hi-nrg,new romantic,new wave,new wave pop,sophisti-pop,synthpop",0.685,0.584,5.0,-10.616,0.0,0.0276,0.29,0.01,0.124,0.94,134.546,4.0,,London Records (Because Ltd),"C © 1996 London Records Ltd, P ℗ 1996 London Records Ltd",8694 +8695,spotify:track:1Xp8MKmfoFDib6dHM6JF53,I'm Kissing You,spotify:artist:73ZPfpfg1LBVvDEArK4l5B,Des'ree,spotify:album:3SwBajIGtIPylPqzWS9V1i,Supernatural,spotify:artist:73ZPfpfg1LBVvDEArK4l5B,Des'ree,1998-06-29,https://i.scdn.co/image/ab67616d0000b273df5db9751cfa58ceadbed9a0,1,6,293573,https://p.scdn.co/mp3-preview/9c6d08104f611b281692277b5c71dd206d535e38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBBBL9602034,spotify:user:bradnumber1,2022-05-01T14:16:22Z,europop,0.224,0.294,9.0,-14.434,0.0,0.0402,0.911,0.0133,0.105,0.0711,82.428,5.0,,S2,"P (P) 1998 Sony Music Entertainment (UK) Ltd, except track 11 (P) 1994 Sony Music Entertainment (UK) Ltd.",8695 +8696,spotify:track:3FNy4yzOhHhFBeA5p4ofoq,"Young, Wild & Free (feat. Bruno Mars)","spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:137W8MRPWKqSmrBGDBFSop, spotify:artist:0du5cEVh5yTK9QJze8zA0C","Snoop Dogg, Wiz Khalifa, Bruno Mars",spotify:album:1LMcmxhxL1g2GXj0X3w3sQ,"Young, Wild & Free (feat. Bruno Mars)","spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:137W8MRPWKqSmrBGDBFSop","Snoop Dogg, Wiz Khalifa",2011-10-21,https://i.scdn.co/image/ab67616d0000b273fbd3128cc27caae9c0f1c03a,1,1,207346,https://p.scdn.co/mp3-preview/c7ead2fb0d0be4004af5b912846138692b1fc0f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USAT21102233,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,pop rap,rap,west coast rap,hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap,dance pop,pop",0.553,0.652,0.0,-6.685,1.0,0.206,0.0897,0.0,0.111,0.551,94.505,4.0,,Rostrum/Atlantic,"C © 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",8696 +8697,spotify:track:2jTGd685DHpxAjluVFh5gs,Salvation,spotify:artist:7t0rwkOPGlDPEhaOcVtOt9,The Cranberries,spotify:album:4phhXynEsCdxXklm5vczTB,To The Faithful Departed (The Complete Sessions 1996-1997),spotify:artist:7t0rwkOPGlDPEhaOcVtOt9,The Cranberries,1996-04-30,https://i.scdn.co/image/ab67616d0000b273ce6347a2216db7a429c90cff,1,2,143133,https://p.scdn.co/mp3-preview/eb4d5a99039c0f8f7ee6464259fe379636581cdb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR29600116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,pop rock,rock",0.325,0.979,10.0,-4.526,1.0,0.0701,0.000584,1.42e-05,0.33,0.904,169.065,4.0,,Universal Music Group,"C © 2002 The Island Def Jam Music Group, P ℗ 2002 The Island Def Jam Music Group",8697 +8698,spotify:track:16uGgkuyTqneR0gbNWohNz,Fancy,"spotify:artist:5yG7ZAZafVaAlMTeBybKAL, spotify:artist:25uiPmTg16RbhZWAqwLBy5","Iggy Azalea, Charli xcx",spotify:album:0FhVwWsk2LAVPLyH0cC50J,The New Classic (Deluxe Version),spotify:artist:5yG7ZAZafVaAlMTeBybKAL,Iggy Azalea,2014-01-01,https://i.scdn.co/image/ab67616d0000b2739cb483f51bc6dcda1fc6d090,1,5,199938,https://p.scdn.co/mp3-preview/afddf883338dda10f5906bfcadef6341b08b82c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBUM71401088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,dance pop,pop,art pop,candy pop,metropopolis,pop,uk pop",0.913,0.716,10.0,-4.152,0.0,0.071,0.0927,0.0,0.0492,0.371,94.976,4.0,,EMI,"C © 2014 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2014 Virgin EMI Records, a division of Universal Music Operations Limited",8698 +8699,spotify:track:6n3Wk44F3ZZwts8OAyB2zK,Military Madness,spotify:artist:2E6Roj0oQnJIm2BeXwDica,Graham Nash,spotify:album:3Lh1KbeS801PtOeojquUPk,Songs For Beginners,spotify:artist:2E6Roj0oQnJIm2BeXwDica,Graham Nash,1971,https://i.scdn.co/image/ab67616d0000b2733f986eddf721780bc3dd95d7,1,1,176666,https://p.scdn.co/mp3-preview/beb25263f96bbbc3433356f8d6532c575e1fa279?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USAT20000050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,folk,folk rock,singer-songwriter",0.582,0.572,0.0,-10.711,1.0,0.0328,0.323,0.0,0.0541,0.506,120.376,4.0,,Rhino Atlantic,"C © 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",8699 +8700,spotify:track:0nypsuS2jtogLaJDcRQ4Ya,Feel the Love (feat. John Newman),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:34v5MVKeQnIo0CWYMbbrPf","Rudimental, John Newman",spotify:album:6SRwxmQjAneSSyfhE7fv37,Feel the Love (feat. John Newman),spotify:artist:4WN5naL3ofxrVBgFpguzKo,Rudimental,2012-05-14,https://i.scdn.co/image/ab67616d0000b2738391469cee52835d6796ba71,1,1,245186,https://p.scdn.co/mp3-preview/9ea1885baab7620b0ffc5f805750bab82311c620?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAHS1200174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,dance pop",0.385,0.705,1.0,-6.849,1.0,0.0601,0.0026,0.000184,0.686,0.24,179.948,4.0,,Asylum,"C © 2012 Black Butter Records under exclusive licence to Warner Music UK Limited., P ℗ 2012 Black Butter Records under exclusive licence to Warner Music UK Limited.",8700 +8701,spotify:track:4675yUu8AUbE72T94BkLCD,Beautiful,"spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:2RdwBSPQiwcmiDo9kixcl8, spotify:artist:6B5fQU6gKaq7JPRL4YIg1B","Snoop Dogg, Pharrell Williams, Uncle Charlie Wilson",spotify:album:0knL5fTAXqq9oq4Yeyibc8,The Best Of Snoop Dogg,spotify:artist:7hJcb9fa4alzcOq3EaNPoG,Snoop Dogg,2005-01-01,https://i.scdn.co/image/ab67616d0000b273616e1083a3de098f82352019,1,1,299146,https://p.scdn.co/mp3-preview/aa5b1885dc70e9e5180801c92d1c50523d16adae?cid=9950ac751e34487dbbe027c4fd7f8e99,True,62,USPO10200092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,pop rap,rap,west coast rap,dance pop,pop",0.893,0.74,11.0,-4.936,0.0,0.132,0.299,0.0,0.0881,0.963,101.025,4.0,,Priority Records,"C © 2005 Priority Records, LLC, P This Compilation ℗ 2005 Priority Records, LLC",8701 +8702,spotify:track:0ir2oAMNqklGn60XP4Pgeu,Just A Song About Ping Pong,spotify:artist:3KshwzAIDBZRPr5Xc7S79C,Operator Please,spotify:album:7v5RBuKqBYKMypK3C7Uf16,Yes Yes Vindictive,spotify:artist:3KshwzAIDBZRPr5Xc7S79C,Operator Please,2007-01-01,https://i.scdn.co/image/ab67616d0000b273866f75fa6ddd262b0a1571ac,1,5,138333,https://p.scdn.co/mp3-preview/e12c9b1db5d9f44b8cc37c8b3fe65b0c38cb0733?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUOY10700046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.446,0.807,9.0,-5.256,0.0,0.0789,0.00416,0.000102,0.203,0.619,136.303,4.0,,Virgin Records,"C © 2007 Operator Please, P ℗ 2007 Operator Please",8702 +8703,spotify:track:2Nc1Tl1qHWLAtBnqRJmkP3,Boogie Shoes,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,spotify:album:6ufis2iWp3hrox9QJfg5Jq,KC & the Sunshine Band... and More,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,1994-12-13,https://i.scdn.co/image/ab67616d0000b273c15e8983eef55e19f9b73ff3,1,4,132160,https://p.scdn.co/mp3-preview/c8797019552e412bd78aa393d87e94f77bfce5d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USRH10175349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new wave pop,soft rock,soul",0.93,0.767,4.0,-11.646,1.0,0.0579,0.454,0.192,0.0692,0.972,119.538,4.0,,Rhino,"C © 2004 Warner Strategic Marketing., P ℗ 2004 Warner Strategic Marketing.",8703 +8704,spotify:track:5ynxx6zC4dgzsMHLYQ04Dc,Remedy,spotify:artist:6B5c4sch27tWHAGdarpPaW,Seether,spotify:album:1C5xrwfzgDM0hz7Kb035V3,Karma and Effect,spotify:artist:6B5c4sch27tWHAGdarpPaW,Seether,2005-01-01,https://i.scdn.co/image/ab67616d0000b273c66ad69a4c9fec63e6f49a3a,1,2,207213,https://p.scdn.co/mp3-preview/075fa454f9c2b434937531b6a249daf85c471ca7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USWU30500016,spotify:user:bradnumber1,2023-01-31T06:41:08Z,"alternative metal,nu metal,post-grunge,south african rock",0.55,0.952,8.0,-4.664,1.0,0.0924,0.000193,0.000666,0.0614,0.391,127.804,4.0,,Fantasy Records,"C © 2005 The Bicycle Music Company, P ℗ 2005 The Bicycle Music Company",8704 +8705,spotify:track:0yMOyPcqvOIXCC8X069EjQ,Righteous liar,spotify:artist:5W3CpTEfxHnas9n4k1lvit,Pryma,spotify:album:0CRqsr56wkBrP8yUhR5p5b,Righteous liar,spotify:artist:5W3CpTEfxHnas9n4k1lvit,Pryma,2021-06-25,https://i.scdn.co/image/ab67616d0000b2732e6c889d4dd84627f7f9e884,1,1,253281,https://p.scdn.co/mp3-preview/3b6d2a027a79a6b6739f836ccd4e1ceb24192fca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,QZHN92184850,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.232,0.938,1.0,-3.84,0.0,0.105,1.41e-05,4.81e-05,0.0835,0.476,156.886,4.0,,Pryma records,"C 2021 Pryma records, P 2021 Pryma records",8705 +8706,spotify:track:5lXcSvHRVjQJ3LB2rLKQog,Superstition - Single Version,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:0g6DaZtBNmIAiTJGW4n4SR,Song Review: A Greatest Hits Collection,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1996-01-01,https://i.scdn.co/image/ab67616d0000b27330a819a5c5c1d33584957d95,1,3,239120,https://p.scdn.co/mp3-preview/b7b70cda4f3c1bff01624cca71f6defb8cebcc37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO10000310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.65,0.658,10.0,-10.908,0.0,0.085,0.0887,0.00403,0.0526,0.883,100.541,4.0,,Universal Music Group,"C © 1996 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1996 Motown Records, a Division of UMG Recordings, Inc.",8706 +8707,spotify:track:3WlN3JAWrY0Q5cEb2IEJXF,Dear Life,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:3nAFLD3z8uMzU6BOo13jai,Wings of the Wild,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2016-07-01,https://i.scdn.co/image/ab67616d0000b27365028f49de79b27dc653d9df,1,3,189709,https://p.scdn.co/mp3-preview/85bca26445a53eaaa5ec5e2cba8b3e03d83224cb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUBM01600098,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.521,0.66,7.0,-3.659,1.0,0.0327,0.214,0.0,0.2,0.278,93.981,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,8707 +8708,spotify:track:5Fla3zyOCcIRqrDoKLU0DP,Let You Love Me,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:6Vn8F3hERVHYYz5RfKmsAN,Phoenix (Deluxe Edition),spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2018-11-23,https://i.scdn.co/image/ab67616d0000b273f1b136eb0388414a8225a348,1,2,191120,https://p.scdn.co/mp3-preview/ac45c8f955d7e88ffc4726bee4bf357fa28fef98?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBAHS1800674,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.475,0.846,10.0,-3.344,1.0,0.283,0.275,0.0,0.0824,0.451,96.036,4.0,,Atlantic Records UK,"C © 2018 Atlantic Records UK except Track 9 (P) 2018 Asylum/Atlantic Records UK. Tracks 1 & 5 (P) 2017 Atlantic Records UK. Track 4 (P) 2017 Avicii Music AB under exclusive licence to Universal Music AB. Track 8 (P) 2018 Universal Studios, Atlantic Records UK, Capitol Records, a division of Universal Music Operations Limited. Asylum/Atlantic Records UK are divisions of Warner Music UK Limited., P ℗ 2018 Atlantic Records UK except Track 9 (P) 2018 Asylum/Atlantic Records UK. Tracks 1 & 5 (P) 2017 Atlantic Records UK. Track 4 (P) 2017 Avicii Music AB under exclusive licence to Universal Music AB. Track 8 (P) 2018 Universal Studios, Atlantic Records UK, Capitol Records, a division of Universal Music Operations Limited. Asylum/Atlantic Records UK are divisions of Warner Music UK Limited.",8708 +8709,spotify:track:5sIx4BlfYGuZeSLF40N9GH,Remind Me to Forget,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:360IAlyVv4PCEVjgyMZrxK","Kygo, Miguel",spotify:album:5Og1PZOwpUkL8slf11stBq,Remind Me to Forget,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:360IAlyVv4PCEVjgyMZrxK","Kygo, Miguel",2018-03-16,https://i.scdn.co/image/ab67616d0000b2734ece7c376ac63049f46aec6b,1,1,217286,https://p.scdn.co/mp3-preview/f6d965f7396c2e888fc7f0230f597e13ae3f3f20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,SEBGA1800417,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,r&b,urban contemporary",0.685,0.508,0.0,-6.4,1.0,0.0987,0.193,0.0,0.139,0.315,99.063,4.0,,Kygo,"P (P) 2018 Kygo AS under exclusive license to Sony Music Entertainment International Ltd / Ultra Records, LLC",8709 +8710,spotify:track:6LSTAQ6r7OxsOOlIIYY47Q,Mr Wendal - Remastered 2002,spotify:artist:5Va9LuEmaZxnbk1gMnjMD7,Arrested Development,spotify:album:4Q0QBX3Td4FfHeG7fiJcVW,Classic Masters,spotify:artist:5Va9LuEmaZxnbk1gMnjMD7,Arrested Development,2002-01-01,https://i.scdn.co/image/ab67616d0000b273406ca7a421c0f83b14aba4e1,1,3,246960,https://p.scdn.co/mp3-preview/7654a4e19d890ff0ae3a52544af4310420e6386e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USCH30100133,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,conscious hip hop,hip hop,old school atlanta hip hop",0.893,0.593,8.0,-5.178,1.0,0.0983,0.12,0.00888,0.0465,0.854,109.979,4.0,,Capitol Records,"C © 2002 Capitol Records, LLC, P This Compilation ℗ 2002 Capitol Records, LLC",8710 +8711,spotify:track:1Gv8dvKmkHVaB1edYvW0Fr,Puppy Love - Remix,spotify:artist:7ceUfdWq2t5nbatS6ollHh,Paul Anka,spotify:album:75zBkbUSaFzpyPa1mBDjON,Put Your Head On My Shoulder: The Very Best Of Paul Anka,spotify:artist:7ceUfdWq2t5nbatS6ollHh,Paul Anka,2000-10-03,https://i.scdn.co/image/ab67616d0000b273686c29818cd37e585c48e7ef,1,7,164000,https://p.scdn.co/mp3-preview/b85f3443fe98834dd202f3987c88bfc6b3e3ca43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USRC10000602,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,easy listening,rock-and-roll",0.29,0.408,7.0,-9.607,1.0,0.0318,0.662,0.0,0.272,0.542,102.229,3.0,,RCA Records Label,"P (P) 2000 RCA Records, a division of Sony Music Entertainment",8711 +8712,spotify:track:1g5EcKDECPxeI7kgkvcbxm,Blue,spotify:artist:2d3VHzlOEwXvmBdS4pzOPL,LeAnn Rimes,spotify:album:0gHvXXQ36Lz30Romr24rF6,Blue,spotify:artist:2d3VHzlOEwXvmBdS4pzOPL,LeAnn Rimes,1996-07-09,https://i.scdn.co/image/ab67616d0000b2735f08fdb0b1ed6a804b830637,1,1,169546,https://p.scdn.co/mp3-preview/76ef4584467d64a066e7403092564db691fc7d64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USCRB9900370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country,country dawn,country road",0.545,0.452,4.0,-8.604,1.0,0.0248,0.595,1.29e-06,0.161,0.297,91.294,4.0,,Curb Records,"C 1996 Curb Records, Inc., P 1996 Curb Records, Inc.",8712 +8713,spotify:track:4Io9zVkAKSu7LBdUGVQFL7,Can We Still Be Friends?,spotify:artist:0Lpr5wXzWLtDWm1SjNbpPb,Todd Rundgren,spotify:album:5vsHuXiqwQZYT6AD5NKYsd,The Very Best of Todd Rundgren,spotify:artist:0Lpr5wXzWLtDWm1SjNbpPb,Todd Rundgren,1997-07-29,https://i.scdn.co/image/ab67616d0000b273d360d36b2ffe7370aaaefb1c,1,12,218440,https://p.scdn.co/mp3-preview/c61aa66032dedf8b270ba52977e21f20791ad269?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USRH10175301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,country rock,folk rock,mellow gold,philly soul,power pop,singer-songwriter,soft rock,zolo",0.57,0.397,0.0,-8.93,0.0,0.0389,0.791,0.00017,0.0789,0.234,172.549,3.0,,Rhino,"C © 1997 Bearsville Records Inc. Manufactured and Marketed by Rhino Records Inc., P ℗ 1997 Bearsville Records Inc. Manufactured and Marketed by Rhino Records Inc.",8713 +8714,spotify:track:4BHWe17hBiYtvgBT2KTRv3,Bow Chicka Wow Wow,spotify:artist:2KsP6tYLJlTBvSUxnwlVWa,Mike Posner,spotify:album:2nnIlWcriIqcJtjduWcTRl,31 Minutes to Takeoff,spotify:artist:2KsP6tYLJlTBvSUxnwlVWa,Mike Posner,2010-08-09,https://i.scdn.co/image/ab67616d0000b273d6165c0d6eba7e5bf3fca16d,1,3,196320,https://p.scdn.co/mp3-preview/30b4a475f513afb95a9055dbb1e3208bfed79f4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USJAY1000078,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop dance,pop rap",0.614,0.648,7.0,-5.454,1.0,0.0443,0.408,0.0,0.0523,0.585,73.49,4.0,,J Records,"P (P) 2010 J Records, a unit of Sony Music Entertainment",8714 +8715,spotify:track:2ahnofp2LbBWDXcJbMaSTu,"What Is Love - 7"" Mix",spotify:artist:0Suv0tRrNrUlRzAy8aXjma,Haddaway,spotify:album:0qTVjeVP70YvQG4GctetOf,What Is Love (Remixes),spotify:artist:0Suv0tRrNrUlRzAy8aXjma,Haddaway,1993-03-22,https://i.scdn.co/image/ab67616d0000b273b219cfdd901872b475f422f6,1,3,270373,https://p.scdn.co/mp3-preview/bfed0afe24cfb5f066d4a9f8b68efb8faaac254a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,DEA410500401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop",0.683,0.772,7.0,-7.907,0.0,0.0311,0.0222,0.0149,0.203,0.737,123.871,4.0,,Coconut Music,"C 1993 Coconut Music UG (haftungsbeschränkt) & Co. KG, P 1993 Coconut Music UG (haftungsbeschränkt) & Co. KG",8715 +8716,spotify:track:4qM200zmXHM8COYmdbRqKK,Billionaire (feat. Bruno Mars) - Radio Edit,"spotify:artist:7o9Nl7K1Al6NNAHX6jn6iG, spotify:artist:0du5cEVh5yTK9QJze8zA0C","Travie McCoy, Bruno Mars",spotify:album:5YGvdSTgfSYGFUQIm3dJ0O,R&B: The Collection,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-10-14,https://i.scdn.co/image/ab67616d0000b27389a1a9609c9d1eac7b2eca56,1,19,186746,https://p.scdn.co/mp3-preview/349183a10fcd71491ea9e981f42e61cf79ade771?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USAT21000368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,dance pop,pop",0.474,0.721,6.0,-6.146,0.0,0.337,0.232,0.0,0.228,0.642,173.773,4.0,,Rhino,"C © This Compilation 2016 Rhino UK, a division of Warner Music UK Ltd, P ℗ This Compilation 2016 Rhino UK, a division of Warner Music UK Ltd",8716 +8717,spotify:track:2C86Vf9K43LG8GWCHObAzP,Mr. Natural,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:20yE90Byym8Hg9iFMegLZU,Mr. Natural,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1974-01-01,https://i.scdn.co/image/ab67616d0000b27340a46bf9e9940b44bf94ee67,1,7,228466,https://p.scdn.co/mp3-preview/546787938d8846410235e13ce3ca2e19ed2120a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,NLF057490029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.664,0.419,0.0,-12.036,1.0,0.0286,0.0288,9.67e-05,0.331,0.555,100.47,4.0,,Bee Gees Catalog,"C © 1974 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P ℗ 1974 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",8717 +8718,spotify:track:3c22wjAcHgEVBi2VEKYGdE,Let's Stay Together,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,spotify:album:4kxN5eHweMRVcBXG1prsFM,Signed Sealed Delivered,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2010-03-29,https://i.scdn.co/image/ab67616d0000b2731923422d0ef3d0db5b80a8b0,1,11,216573,https://p.scdn.co/mp3-preview/b4b44f9ad665b22a13727295c13fa4f11723ddf0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBUM71000920,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.676,0.546,2.0,-6.467,0.0,0.0258,0.216,0.0,0.198,0.707,100.005,4.0,,UMC (Universal Music Catalogue),"C © 2010 Universal Music TV, a division of Universal Music Operations Ltd., P ℗ 2010 Universal Music TV, a division of Universal Music Operations Ltd.",8718 +8719,spotify:track:2ZNowcE7ehJYEkChoRjSx0,Life Of The Party,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:5wKylB0Zwnxz046O7po25D,Handwritten (Deluxe),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2015-04-13,https://i.scdn.co/image/ab67616d0000b27347710f5e89677e4d048e744c,1,1,214533,https://p.scdn.co/mp3-preview/65f8f73f9645c62943f4be70dd3155d8ac80cb9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71407508,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.667,0.614,10.0,-4.995,1.0,0.0314,0.0663,0.0,0.111,0.161,113.979,4.0,,Universal Music Group,"C © 2015 Island Records, a division of UMG Recordings, Inc., P ℗ 2015 Island Records, a division of UMG Recordings, Inc.",8719 +8720,spotify:track:5L10F9RikmCvAVOsNmFslE,What About Us?,spotify:artist:05oH07COxkXKIMt6mIPRee,Brandy,spotify:album:3BdkiVzzAPNAxWFvdGjiEs,Full Moon,spotify:artist:05oH07COxkXKIMt6mIPRee,Brandy,2002-02-25,https://i.scdn.co/image/ab67616d0000b273e8b0fc6ce8a84daefb4e842f,1,9,253453,https://p.scdn.co/mp3-preview/3635d9d489f182c857327b3d67fe901d3aedabd4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USAT20200050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,hip pop,r&b,urban contemporary",0.512,0.71,10.0,-2.908,0.0,0.369,0.3,0.0,0.264,0.745,185.999,4.0,,Atlantic Records,"C © 2002 Atlantic Recording Corporation and for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",8720 +8721,spotify:track:0eJle2gkR9YlGECb4QV4ZA,Sexy Eyes,spotify:artist:0lHoDF96DNKSIcIpcOfMnq,Whigfield,spotify:album:024sl8R7bYLjUvx5iikxP9,Whigfield 1,spotify:artist:0lHoDF96DNKSIcIpcOfMnq,Whigfield,1995-05-04,https://i.scdn.co/image/ab67616d0000b2730e9bbb9e7ed977809040305b,1,10,238184,https://p.scdn.co/mp3-preview/6e543d90194d226d698ed31be5b1eedbe9664440?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,IT00D9605001,spotify:user:bradnumber1,2023-11-29T11:22:29Z,"diva house,eurodance,europop",0.695,0.765,11.0,-10.588,1.0,0.0305,0.000256,0.578,0.409,0.854,131.201,4.0,,X-Energy,"C 1995 X-Energy / Energy Production S.r.l., P 1995 X-Energy / Energy Production S.r.l.",8721 +8722,spotify:track:0TZk6yGscOo5ktwk4mdhpp,Doop - Sidney Berlin Ragtime Band,spotify:artist:3IgrARF9uItsAbJ4G3uiIC,Doop,spotify:album:1c6Ypa4CXjP5FJpxu43pE8,Circus Doop,spotify:artist:3IgrARF9uItsAbJ4G3uiIC,Doop,1995,https://i.scdn.co/image/ab67616d0000b27348bb7244fa702494114f1be5,1,2,188333,https://p.scdn.co/mp3-preview/bbd8454b65c3ec7fa1eb3b392d13f44a8cb7756c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,NLA240303362,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.797,0.936,11.0,-6.172,1.0,0.0366,0.0196,0.848,0.0496,0.825,130.1,4.0,,CNR Music,"C 1995 CNR Music B.V., P 1995 CNR Music B.V.",8722 +8723,spotify:track:1bb2jMLU78mIQJ2r1GB7Rs,You & Me,"spotify:artist:3tQx1LPXbsYjE9VwN1Peaa, spotify:artist:02kJSzxNuaWGqwubyUba0Z","Marc E. Bassy, G-Eazy",spotify:album:58V8gBG4dJRAI7oZQazTcb,You & Me,spotify:artist:3tQx1LPXbsYjE9VwN1Peaa,Marc E. Bassy,2016-05-06,https://i.scdn.co/image/ab67616d0000b273dafd3fbfcca19d152df84dc4,1,1,218480,https://p.scdn.co/mp3-preview/6ca0d25316c2378f25762e45be62d69231e5890d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71603788,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie pop rap,indie pop rap,oakland hip hop,pop rap,rap",0.692,0.645,1.0,-8.375,1.0,0.178,0.0371,0.0,0.186,0.681,85.022,4.0,,Universal Music Group,"C (C) 2016 Republic Records, a division of UMG Recordings, Inc., P (P) 2016 Republic Records, a division of UMG Recordings, Inc.",8723 +8724,spotify:track:6KzkqZqhUBEsWYJJa2aBOd,The Weekend - Radio Edit,spotify:artist:2aM5jpQ0WTcQDeHsil8Ihz,Michael Gray,spotify:album:1v1bEFD6ZgEvAbrMJqK1Oz,Analog Is On,spotify:artist:2aM5jpQ0WTcQDeHsil8Ihz,Michael Gray,2007-06-01,https://i.scdn.co/image/ab67616d0000b2736901b4f4490faaf121cfb64c,1,1,192173,https://p.scdn.co/mp3-preview/c443ae356e62b6b992f1450f6d55e1b7e8d294f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBBFR0400137,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,vocal house",0.686,0.832,4.0,-5.673,0.0,0.0725,0.000321,0.127,0.583,0.884,127.023,4.0,,Altra Moda Music,"C 2007 Altra Moda Music under exclusive license from M. Gray, P 2007 Altra Moda Music under exclusive license from M. Gray",8724 +8725,spotify:track:4FlupGCHOTx5nZAxPS0ZCJ,Tease Me,spotify:artist:6RQkaOWddQmiLLJqSgnTbm,Chaka Demus & Pliers,spotify:album:79xjnRFLaRf2VWHU5ys44Z,True Reggae,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b273689cdae6fcf39d7e032b94ab,1,1,219506,https://p.scdn.co/mp3-preview/023001e1cd93ac85e4530fc53e6b75fcdf206bfd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,funana,0.948,0.567,8.0,-10.169,1.0,0.0705,0.185,3.08e-05,0.287,0.905,136.54,4.0,,Universal Music,"C © 2007 Spectrum Music, P ℗ 2007 Spectrum Music",8725 +8726,spotify:track:0c5X5Qbn1fy4EADuVdb4bV,Never Be Like You,"spotify:artist:6nxWCVXbOlEVRexSbLsTer, spotify:artist:6xHUXzrfhFgnIv86EBR3Ml","Flume, kai",spotify:album:1zbR9wF75V1TmLwduhUTg6,Never Be Like You,spotify:artist:6nxWCVXbOlEVRexSbLsTer,Flume,2016-01-16,https://i.scdn.co/image/ab67616d0000b273417d01487d641423fd048275,1,1,235058,https://p.scdn.co/mp3-preview/1480c636e10adf753126b47ee1bf39b4f58f31c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFF02000014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,australian indie,downtempo,edm,indietronica",0.551,0.598,0.0,-4.218,1.0,0.0611,0.402,0.0,0.103,0.274,119.742,4.0,,Future Classic,"C 2016 Future Classic, P 2016 Future Classic",8726 +8727,spotify:track:78xEO4qUV8ZgMA5TqYbF0L,Pony,spotify:artist:6uATIQFyydDXPc2RlLzcUE,Kasey Chambers,spotify:album:5SgPHI9Nm8dffXY8YfFEQR,Wayward Angel,spotify:artist:6uATIQFyydDXPc2RlLzcUE,Kasey Chambers,2004-01-01,https://i.scdn.co/image/ab67616d0000b273420ac78e148ed4b1b9f844b3,1,1,282600,https://p.scdn.co/mp3-preview/3f98f3f4af0af976e627426c3194660020a682ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUEM00400100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian americana,australian country,australian rock",0.755,0.31,9.0,-8.282,0.0,0.0327,0.689,0.0445,0.107,0.477,113.289,4.0,,EMI Music Australia,"C © 2004 EMI Recorded Music Australia Pty Ltd., P ℗ 2004 EMI Recorded Music Australia Pty Ltd.",8727 +8728,spotify:track:0ofbQMrRDsUaVKq2mGLEAb,Havana (feat. Young Thug),"spotify:artist:4nDoRrQiYLoBzwC5BhVJzF, spotify:artist:50co4Is1HCEo8bhOyUWKpn","Camila Cabello, Young Thug",spotify:album:5chBPOVY2I0bG5V3igb5QL,Havana (feat. Young Thug),spotify:artist:4nDoRrQiYLoBzwC5BhVJzF,Camila Cabello,2017-08-03,https://i.scdn.co/image/ab67616d0000b273d93cf4d07ba50d7b32ca7c44,1,1,216896,https://p.scdn.co/mp3-preview/49653dbbec996f228cb6edc046d318cd5a249ee6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM11706905,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,atl hip hop,atl trap,gangster rap,hip hop,melodic rap,rap,trap",0.768,0.517,7.0,-4.323,0.0,0.0312,0.186,3.8e-05,0.104,0.418,104.992,4.0,,Syco Music/Epic,"P (P) 2017 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",8728 +8729,spotify:track:0wHFktze2PHC5jDt3B17DC,First Class,spotify:artist:2LIk90788K0zvyj2JJVwkJ,Jack Harlow,spotify:album:2eE8BVirX9VF8Di9hD90iw,Come Home The Kids Miss You,spotify:artist:2LIk90788K0zvyj2JJVwkJ,Jack Harlow,2022-05-06,https://i.scdn.co/image/ab67616d0000b2738e55edb69ca44a25b52b17bb,1,4,173947,https://p.scdn.co/mp3-preview/c05a687254dbdf50a9ab4879d85e54a7594e367f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USAT22203024,spotify:user:bradnumber1,2022-06-20T02:51:20Z,"deep underground hip hop,hip hop,kentucky hip hop,pop rap,rap",0.902,0.582,5.0,-5.902,0.0,0.109,0.111,3.18e-06,0.111,0.332,107.005,4.0,,Generation Now/Atlantic,"C © 2022 Generation Now/ Atlantic Recording Corporation, P ℗ 2022 Generation Now/ Atlantic Recording Corporation",8729 +8730,spotify:track:0BgRaFy7qnwT1PuUmSTFkf,Stereo Hearts (feat. Adam Levine),"spotify:artist:4IJczjB0fJ04gs4uvP0Fli, spotify:artist:4bYPcJP5jwMhSivRcqie2n","Gym Class Heroes, Adam Levine",spotify:album:7mfb3Bnd8uMVqSwmJEurDN,Stereo Hearts (feat. Adam Levine),spotify:artist:4IJczjB0fJ04gs4uvP0Fli,Gym Class Heroes,2011-06-14,https://i.scdn.co/image/ab67616d0000b273c4e5f47678ae0cc7a4141746,1,1,210960,https://p.scdn.co/mp3-preview/a62b535109dff39bdcc859c6fd2160e927d4b1c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USAT21101071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop rap,deep talent show",0.646,0.795,9.0,-3.293,1.0,0.0976,0.0319,0.0,0.267,0.796,89.99,4.0,,Decaydance/Fueled By Ramen,"C © 2011 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2011 Fueled By Ramen LLC for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",8730 +8731,spotify:track:09tyJ0VvbLty84iHIV3WQn,Listen to the Band - Single Version,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:338yWfNJWW2SXxVfIdczUD,The Best of The Monkees,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,2008-07-01,https://i.scdn.co/image/ab67616d0000b2730b74e9fcbe76d8245535a207,1,25,149106,https://p.scdn.co/mp3-preview/c88eb650c0b16be4fe5da73029859ae026a3865c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USRH10281208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.26,0.659,2.0,-8.98,1.0,0.0625,0.114,2.95e-05,0.499,0.537,184.38,4.0,,Rhino,"C © 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co., P ℗ 2003 Warner Strategic Marketing. Warner Music Group, an AOL Time Warner Co.",8731 +8732,spotify:track:0nhu2tp9FXwTu8kUDvS0xO,Remember Me - Original Mix,spotify:artist:5wAkbDfgFUeXzWO4rdPQiG,Blue Boy,spotify:album:12VFylHDX01Xw4joC9wH6Z,Remember Me,spotify:artist:5wAkbDfgFUeXzWO4rdPQiG,Blue Boy,1997-03-03,https://i.scdn.co/image/ab67616d0000b273a43eef3a375edc6220dca517,1,3,424306,https://p.scdn.co/mp3-preview/195b2612a564f2a675751986deca2712a44c557b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,NLML61100073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic house,0.88,0.685,1.0,-8.557,1.0,0.0422,0.0441,0.876,0.117,0.963,100.863,4.0,,Altra Moda Music,"C 1997 Altra Moda Music, P 1997 Altra Moda Music",8732 +8733,spotify:track:0eti3iRdEgUxwcIcN2N9DY,Domino - 1999 Remaster,spotify:artist:44NX2ffIYHr6D4n7RaZF7A,Van Morrison,spotify:album:3YdFToTF5Mr2HLx7zRUIQA,His Band and the Street Choir,spotify:artist:44NX2ffIYHr6D4n7RaZF7A,Van Morrison,1970-11-15,https://i.scdn.co/image/ab67616d0000b27363706c24d560e6b4d3de8bcc,1,1,189426,https://p.scdn.co/mp3-preview/cd9ebe798d5756b907b6894c42f7b78096efd9a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USWB19903213,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.731,0.555,2.0,-13.684,1.0,0.0519,0.321,0.000103,0.0527,0.935,131.26,4.0,,Rhino/Warner Records,"C © 2004 Warner Records Inc. Manufactured & Marketed by Warner Strategic Marketing., P ℗ 2004 Warner Records Inc. Manufactured & Marketed by Warner Strategic Marketing.",8733 +8734,spotify:track:3dISHe66tFlOKqmom5Qr2n,Suicide Blonde,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:6Ct05XZNu2QpqDpjaxY7Xu,X (Remastered),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,1990,https://i.scdn.co/image/ab67616d0000b2737ef5c661e64ec185d6180a40,1,1,232626,https://p.scdn.co/mp3-preview/acb6267ec43346e5954144d0c9988b64e79c0e83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAMX9000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.613,0.962,4.0,-5.36,0.0,0.0897,0.00228,0.00896,0.123,0.694,119.962,4.0,,Petrol Records,"C © 2011 Petrolelectric Pty Ltd under exclusive licence to Universal International Music B.V., P ℗ 2011 Petrolelectric Pty Ltd under exclusive licence to Universal International Music B.V.",8734 +8735,spotify:track:3lJASPixida6lWj7iV8Dv7,Endless Road,spotify:artist:23DeFeMRFRhnfMfawvqFne,Time Bandits,spotify:album:3jQ7FN3TU3XEOeJqdS4NSf,As Life...,spotify:artist:23DeFeMRFRhnfMfawvqFne,Time Bandits,2012-02-27,https://i.scdn.co/image/ab67616d0000b273104ee4a0ab0c86ede79911b1,1,2,248746,https://p.scdn.co/mp3-preview/2c3c256b39928bc6b239a7906b3cf7f02147726f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NL-W2R-17-07278,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nederpop,0.497,0.678,0.0,-6.925,1.0,0.0281,0.161,1.6e-05,0.103,0.356,128.454,4.0,,SWV Records,"C Hidden Valley Records/SwV Records, P Hidden Valley Records/SwV Records",8735 +8736,spotify:track:2GxQ7IEGdPilgTxmQVL822,Funny Way Of Laughin’,spotify:artist:0MHgLfmQdutffmvWe5XBTN,Burl Ives,spotify:album:2Y9p6eB7AspyewQv2YcVwE,The Best Of Burl Ives,spotify:artist:0MHgLfmQdutffmvWe5XBTN,Burl Ives,2016-11-01,https://i.scdn.co/image/ab67616d0000b2736cfbc07ed4859170462e4231,1,2,163173,https://p.scdn.co/mp3-preview/bc9b72715803c283621611ce361a926729542058?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUV401434113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,american folk revival",0.555,0.437,4.0,-7.913,1.0,0.0375,0.728,0.0,0.0959,0.614,146.517,4.0,,The Music Factory,P 2016 V&H Holdings Pty Ltd,8736 +8737,spotify:track:5hnGrTBaEsdukpDF6aZg8a,How Do I Say Goodbye,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:3cptxwPFf3Ioj7I3AVX3mp,How Do I Say Goodbye,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2022-08-31,https://i.scdn.co/image/ab67616d0000b273bfedccaca3c8425fdc0a7c73,1,1,163603,https://p.scdn.co/mp3-preview/a3709f09e0ecb9e59ec8f9222827cf8215d8ab65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,AUUM72200172,spotify:user:bradnumber1,2022-11-02T00:26:01Z,"australian pop,pop",0.4,0.641,8.0,-6.303,1.0,0.0674,0.214,0.0,0.0656,0.393,81.552,4.0,,Universal Music Australia Pty. Ltd.,"C © 2022 Universal Music Australia Pty Ltd., P ℗ 2022 Universal Music Australia Pty Ltd.",8737 +8738,spotify:track:4gFL3QgCRx0o1B5KjlkCR1,Get A Life,spotify:artist:0zg9mF9dX2knvdTKnL22T1,Freestylers,spotify:album:35FjWueXGCUxGAOIface7O,Raw As F**k,spotify:artist:0zg9mF9dX2knvdTKnL22T1,Freestylers,2004-03-26,https://i.scdn.co/image/ab67616d0000b2735f2f359ef02665ac26599ba4,1,4,312720,https://p.scdn.co/mp3-preview/e617ef6662d3e1d9a0d4d45b4a10c30f38d17351?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GBFNF0300017,spotify:user:bradnumber1,2023-07-10T04:13:07Z,"big beat,breakbeat",0.71,0.952,11.0,-6.286,0.0,0.0557,0.0232,0.000121,0.286,0.889,137.976,4.0,,Altra Moda Music,"C 2004 Altra Moda Music, P 2004 Altra Moda Music",8738 +8739,spotify:track:2Wr970IfovsSGnfkE08iMF,Find Me,"spotify:artist:01pKrlgPJhm5dB4lneYAqS, spotify:artist:2WX2uTcsvV5OnS0inACecP","Sigma, Birdy",spotify:album:39Fu2q3D1SoyEmpxJ7M9Jg,Find Me,spotify:artist:01pKrlgPJhm5dB4lneYAqS,Sigma,2016-11-04,https://i.scdn.co/image/ab67616d0000b2734e736837a2f82031aaf82945,1,1,204444,https://p.scdn.co/mp3-preview/1d6bb9fd58d03eeb46904340c5c8cfb448b0a6e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBSXS1600141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dancefloor dnb,house,pop dance,uk dance,neo mellow,uk pop,viral pop",0.572,0.797,5.0,-3.995,0.0,0.0483,0.064,0.0,0.105,0.252,135.006,4.0,,Universal Music Group,"C © 2016 3 Beat Productions Ltd, P ℗ 2016 3 Beat Productions Ltd",8739 +8740,spotify:track:0RVeadY2MbHz4Pe4MreLNw,Rocket,spotify:artist:6H1RjVyNruCmrBEWRbD0VZ,Def Leppard,spotify:album:1ja2qzCrh6bZykcojbZs82,Hysteria,spotify:artist:6H1RjVyNruCmrBEWRbD0VZ,Def Leppard,1987-08-03,https://i.scdn.co/image/ab67616d0000b27343511b8c20112757edddc7ba,1,2,396823,https://p.scdn.co/mp3-preview/855ecb94e442f9a92d0ae965a71af58f94320396?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBF088790002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,nwobhm,rock",0.521,0.916,11.0,-6.822,1.0,0.0467,0.000249,0.00116,0.948,0.398,81.998,4.0,,UMC (Universal Music Catalogue),"C © 1987 Bludgeon Riffola Limited, under exclusive licence to Mercury Records Limited, P ℗ 1987 Mercury Records Limited",8740 +8741,spotify:track:6ldwfK0yWgTAlmIfuQkTYN,I'm a Slave 4 U,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:5ax3GTsfX5uCUaNgnJsSG5,Britney (Digital Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2001-10-31,https://i.scdn.co/image/ab67616d0000b273e1a4e01cb7a1ecff468bbead,1,1,203600,https://p.scdn.co/mp3-preview/411aec589673bde64084922356db7fd5f19cd871?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USJI10100421,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.847,0.843,5.0,-3.579,0.0,0.106,0.415,0.000134,0.107,0.963,110.027,4.0,,Jive,P (P) 2001 Zomba Recording LLC,8741 +8742,spotify:track:4OnZR9U5JRFGF1Yza9j579,I Can Love You Like That,spotify:artist:1B8ySGDAiXTCvnJNH4HSCG,All-4-One,spotify:album:0OrEq5JeWVzislPoSg0fzZ,Rhino Hi-Five: All-4-One,spotify:artist:1B8ySGDAiXTCvnJNH4HSCG,All-4-One,2005-04-19,https://i.scdn.co/image/ab67616d0000b273bd8703edf841569ca19d86b3,1,4,257959,https://p.scdn.co/mp3-preview/394a3039b68a9bed252410563bcca7b1735ee710?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT29500010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,r&b",0.635,0.712,8.0,-4.998,1.0,0.0283,0.0811,0.0,0.322,0.423,91.024,4.0,,Rhino Atlantic,"C © 2005 Warner Strategic Marketing, P ℗ 2005 Warner Strategic Marketing",8742 +8743,spotify:track:40W8Mm9t3ZO1iNQlls35lL,If,spotify:artist:70ZTdbPEcEugBNay4MvxfL,Bread,spotify:album:1X5oLLoyljROH4eCIae1PO,Manna,spotify:artist:70ZTdbPEcEugBNay4MvxfL,Bread,1971,https://i.scdn.co/image/ab67616d0000b273ed804121889655ca03722024,1,4,155773,https://p.scdn.co/mp3-preview/831acd9d745cc3690594cb0c90f2acd0de9cd587?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USEE10181208,spotify:user:bradnumber1,2022-08-26T01:23:08Z,"mellow gold,soft rock",0.388,0.176,9.0,-16.952,1.0,0.0299,0.912,0.000336,0.0977,0.342,97.628,4.0,,Rhino/Elektra,"C © 1971 Elektra Entertainment., P ℗ 1971 Elektra Entertainment. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",8743 +8744,spotify:track:6HPLeKiNm92RbykX2BDTUB,Stuck On You,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,spotify:album:5U0NU0T1JKIJwgq2ZDWb2T,Can't Slow Down,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,1983-01-01,https://i.scdn.co/image/ab67616d0000b2732166b28714239e31b48aeb17,1,4,192066,https://p.scdn.co/mp3-preview/6a8352acec2842228f796514cc1f588a848d0434?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USMO18390015,spotify:user:bradnumber1,2021-08-08T09:27:55Z,soft rock,0.509,0.317,5.0,-16.063,1.0,0.0305,0.621,5.28e-05,0.0878,0.247,131.783,4.0,,Motown,"C © 1983 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1983 Motown Records, a Division of UMG Recordings, Inc.",8744 +8745,spotify:track:3qRHCvn70YpVFFkx3lrAYf,Body on Me (feat. Chris Brown),"spotify:artist:5CCwRZC6euC8Odo6y9X8jr, spotify:artist:7bXgB6jMjp9ATFy66eO08Z","Rita Ora, Chris Brown",spotify:album:2mx2hlgAtxrXrWRnerdVGB,Body on Me (feat. Chris Brown),spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2015-08-07,https://i.scdn.co/image/ab67616d0000b273abfb90668aa8667028d96e63,1,1,225217,https://p.scdn.co/mp3-preview/fdf1fe7f4483687d8d7ba31afe06c43d93048dbc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USQX91501237,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,r&b,rap",0.636,0.741,11.0,-5.436,0.0,0.041,0.0132,0.0,0.287,0.53,88.999,4.0,,Roc Nation/Columbia,"P (P) 2015 Roc Nation LLC, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",8745 +8746,spotify:track:5kMb4J8QSUaXuVu75bc7uO,What Have You Done For Me Lately,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:5rgQevCH5hYBGnNkWQwjsI,Control,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1986-02-04,https://i.scdn.co/image/ab67616d0000b2737bbe48f4ffbbfef405747efd,1,3,300048,https://p.scdn.co/mp3-preview/ad857ff4d552ac56e684a618a31cff1d44d37a0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USAM19500846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.838,0.376,1.0,-13.313,1.0,0.0677,0.0151,0.0127,0.0545,0.83,114.055,4.0,,A&M,"C © 1986 A&M Records, P ℗ 1986 A&M Records",8746 +8747,spotify:track:5dkrQCGm5MszVzSrc7oWPw,Fly Too High - Remastered,spotify:artist:5c9uFWpZY2MTlk7Rft0tgp,Janis Ian,spotify:album:3Hfh82xe3hXI1LuyxzWkJH,Night Rains (Remastered),spotify:artist:5c9uFWpZY2MTlk7Rft0tgp,Janis Ian,2018-05-25,https://i.scdn.co/image/ab67616d0000b273a0e273507d185782784051e3,1,2,309580,https://p.scdn.co/mp3-preview/ba37225bcfde501033365563adb199b885828e76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1700699,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk,singer-songwriter",0.821,0.563,5.0,-10.584,0.0,0.0454,0.0353,7.42e-05,0.105,0.891,128.887,4.0,,Sony Music CG,"P (P) 2018 Rude Girl Records Inc., under exclusive license to Sony Music Entertainment UK Limited",8747 +8748,spotify:track:0gsIQwgHmi1DGv1n2IipUr,Move,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:06haetPrpbIFCY1FUWzVel,Salute (The Deluxe Edition),spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2013-11-11,https://i.scdn.co/image/ab67616d0000b27398652057b1044167edbe79a6,1,2,224333,https://p.scdn.co/mp3-preview/888890cce1305cb2ed12418e44c3947909cdd4a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1300243,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.85,0.741,6.0,-4.57,0.0,0.0918,0.00436,3.33e-06,0.549,0.765,121.17,4.0,,Syco Music,P (P) 2013 Simco Limited under exclusive license to Sony Music Entertainment UK Limited,8748 +8749,spotify:track:7mKjRwSWxn8pbgc74K5Z1P,Falling in Love Again,spotify:artist:4yTAya80KDHLPYiEVJbPod,Ted Mulry,spotify:album:3aTlizKS8qENJxB5diPTeM,Vanda and Young: the Official Songbook,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-01-01,https://i.scdn.co/image/ab67616d0000b273541cef85f470722bc61a0f87,1,3,228186,https://p.scdn.co/mp3-preview/7ccdefb66b83cdb10fc62648a65b8b48b9b13579?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP07000003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.501,0.633,7.0,-6.005,1.0,0.0323,0.424,0.0523,0.339,0.628,114.333,4.0,,Albert Productions,"C © 2014 BMG AM Pty Ltd., P ℗ 2014 BMG AM Pty Ltd.",8749 +8750,spotify:track:7ufnFt3fA9Ut2K0DILUZ34,The Pied Piper,spotify:artist:3Y9xnCbmXGhmpJymwpnxCz,Crispian St. Peters,spotify:album:4cS7vXLijr2jvuyRbsviKn,Follow Me...,spotify:artist:3Y9xnCbmXGhmpJymwpnxCz,Crispian St. Peters,1966-01-11,https://i.scdn.co/image/ab67616d0000b27342490e478ae4d3d3f3ada35c,1,14,151666,https://p.scdn.co/mp3-preview/ff06fb0dcca892b5a4cc0d34c805603fda0c2fce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,QM4TX1872860,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.692,0.734,11.0,-7.089,1.0,0.0465,0.112,0.0,0.164,0.963,125.436,4.0,,Fuel Records,"C (C) 1966 © Fuel Records™ a division of 43 North Broadway, LLC. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",8750 +8751,spotify:track:3LDsZ7JCzTwfuTRuteUqtB,Givin' Up,spotify:artist:5r1bdqzhgRoHC3YcCV6N5a,The Darkness,spotify:album:6vW9ZDllNv87WHXS3XTjlM,Permission to Land,spotify:artist:5r1bdqzhgRoHC3YcCV6N5a,The Darkness,2003-07-07,https://i.scdn.co/image/ab67616d0000b2734d54f9eccf5646d0f7a1bd30,1,6,214960,https://p.scdn.co/mp3-preview/af6c65d31ad7ddb69885aedd5bb97f9a240c7288?cid=9950ac751e34487dbbe027c4fd7f8e99,True,40,GBAHS0300637,spotify:user:bradnumber1,2023-01-31T06:47:10Z,"glam metal,hard rock",0.56,0.928,11.0,-3.131,1.0,0.0508,0.0169,0.00017,0.236,0.825,136.614,4.0,,Atlantic Records,"C © 2003 Warner Music UK Ltd, P ℗ 2003 Warner Music UK Ltd",8751 +8752,spotify:track:4hNnlZ2ro9G7npTrV08LS3,The Power Of Love - Radio Edit,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:0zMOz1phwhxqDqNzttMXsw,My Love Essential Collection,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,2008-10-27,https://i.scdn.co/image/ab67616d0000b273b6c3ded89e2b350636705f92,1,8,288173,https://p.scdn.co/mp3-preview/2e242c8de3fee1a45c4754385ede498f743f1fac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAC229900141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.534,0.566,8.0,-7.066,1.0,0.0307,0.405,0.000383,0.195,0.198,140.072,4.0,,Columbia,C (P) 2008 SONY BMG MUSIC (CANADA) INC.,8752 +8753,spotify:track:4uqh9bualXNHXXwO2wPorc,Daisies,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:2m5J1DUH7hJpPSOromIqpN,Daisies,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2020-05-15,https://i.scdn.co/image/ab67616d0000b2738df6751bad8ab6b5c928dba3,1,1,173123,https://p.scdn.co/mp3-preview/23baf26ad814ce1027aa476a9b5afcfbab19ac86?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USUM72007214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.639,0.546,1.0,-5.382,1.0,0.0407,0.0837,0.0,0.122,0.149,122.179,4.0,,Capitol Records,"C © 2020 Capitol Records, LLC, P ℗ 2020 Capitol Records, LLC",8753 +8754,spotify:track:69uxyAqqPIsUyTO8txoP2M,Adventure of a Lifetime,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:3cfAM8b8KqJRoIzt3zLKqw,A Head Full of Dreams,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2015-12-04,https://i.scdn.co/image/ab67616d0000b2738ff7c3580d429c8212b9a3b6,1,5,263786,https://p.scdn.co/mp3-preview/0b666b9a07035a659c7e5b7cb754f1b81bf1535b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,GBAYE1500981,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.638,0.924,7.0,-3.887,1.0,0.036,0.00205,0.000175,0.149,0.53,111.995,4.0,,Parlophone UK,"C © 2015 Parlophone Records Limited, a Warner Music Group Company, P ℗ 2015 Parlophone Records Limited, a Warner Music Group Company",8754 +8755,spotify:track:4zN21mbAuaD0WqtmaTZZeP,Ferrari,"spotify:artist:43BxCL6t4c73BQnIJtry5v, spotify:artist:45ruzGUmIr8WLjLOPJ9mGU","James Hype, Miggy Dela Rosa",spotify:album:6moZ4sNThthUAwCklyuPY8,Ferrari,"spotify:artist:43BxCL6t4c73BQnIJtry5v, spotify:artist:45ruzGUmIr8WLjLOPJ9mGU","James Hype, Miggy Dela Rosa",2022-04-01,https://i.scdn.co/image/ab67616d0000b2736cc861b5c9c7cdef61b010b4,1,1,186661,https://p.scdn.co/mp3-preview/3c21e0bea740ed198a79f0abf2b3b113b68f3f29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GB3CE2200004,spotify:user:bradnumber1,2022-09-28T07:15:28Z,"deep groove house,house,pop dance,uk dance,dance pop,pop dance",0.847,0.69,1.0,-7.877,0.0,0.0493,0.0127,6e-05,0.0526,0.692,125.004,4.0,,Universal-Island Records Ltd.,"C © 2022 James Hype, under exclusive licence to Universal Music Operations Limited, P ℗ 2022 James Hype, under exclusive licence to Universal Music Operations Limited",8755 +8756,spotify:track:0IRHUlQ9XCp5aG9NIruLu2,Abergavenny,spotify:artist:49Jb7NSMLFMM3n8M7BNRxN,Marty Wilde,spotify:album:6MLD7tcwokFlJ4Nu048flm,The Full Marty,spotify:artist:49Jb7NSMLFMM3n8M7BNRxN,Marty Wilde,2010-01-01,https://i.scdn.co/image/ab67616d0000b273aabe1c2dfae9a0602fc394b1,3,21,168000,https://p.scdn.co/mp3-preview/46e47fff324614b547b1c559c6717c251a4a472a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,GBUM70700737,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,merseybeat,rock-and-roll",0.609,0.895,11.0,-8.208,1.0,0.0695,0.162,0.498,0.522,0.792,123.102,4.0,,UMC (Universal Music Catalogue),"C © 2010 Mercury Records Limited, P This Compilation ℗ 2010 Mercury Records Limited",8756 +8757,spotify:track:0l6Al2fd5aFnQgXITq4WGc,Mona,spotify:artist:4Ctw4152leMyJKFOung1X8,Craig McLachlan;Check 1-2,spotify:album:0Awg8rbxKaH6VTDKoJTuhZ,Mona,spotify:artist:4Ctw4152leMyJKFOung1X8,Craig McLachlan;Check 1-2,1990-01-08,https://i.scdn.co/image/ab67616d0000b273c51621b6adf6bd777093a3b6,1,1,223133,https://p.scdn.co/mp3-preview/e5fb612167192a78563a719f8db492858f1221b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUSM09000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.697,0.816,0.0,-7.216,1.0,0.0316,0.00124,0.00117,0.252,0.751,102.981,4.0,,Sony BMG Music Entertainment,P (P) 1990 Sony Music Entertainment (Australia) Pty. Ltd.,8757 +8758,spotify:track:6jA8HL9i4QGzsj6fjoxp8Y,There for You,"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:3WGpXCj9YhhfX11TToZcXP","Martin Garrix, Troye Sivan",spotify:album:0OK35duHpTPnvqya2d4pnn,There for You,"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:3WGpXCj9YhhfX11TToZcXP","Martin Garrix, Troye Sivan",2017-05-26,https://i.scdn.co/image/ab67616d0000b27372c57da7edfe8e915182cdd4,1,1,221904,https://p.scdn.co/mp3-preview/700c66cc14263266ba9dc8a6e497215c934abbac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,NLM5S1600060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch edm,edm,pop,pop dance,progressive house,australian pop,pop,viral pop",0.611,0.644,6.0,-7.607,0.0,0.0553,0.124,0.0,0.124,0.13,105.969,4.0,,Epic Amsterdam,"P (P) 2017 STMPD RCRDS B.V. exclusively licensed to Epic Amsterdam, a divison of Sony Music Entertainment Netherlands B.V.",8758 +8759,spotify:track:6YwLgicpvVuMt1eE2OldwQ,Five More Hours,"spotify:artist:6VD4UEUPvtsemqD3mmTqCR, spotify:artist:7bXgB6jMjp9ATFy66eO08Z","Deorro, Chris Brown",spotify:album:1j4y4oErsQ2dIiZXClg1Zc,Five More Hours,"spotify:artist:6VD4UEUPvtsemqD3mmTqCR, spotify:artist:7bXgB6jMjp9ATFy66eO08Z","Deorro, Chris Brown",2015-03-03,https://i.scdn.co/image/ab67616d0000b27329409ca87220ac083d04c6fe,1,1,211975,https://p.scdn.co/mp3-preview/39cb89399b05a99dd14a7cc0ddf13fd426db97df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USUS11203275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch house,edm,electro house,melbourne bounce,melbourne bounce international,pop dance,progressive electro house,r&b,rap",0.699,0.883,5.0,-3.226,0.0,0.219,0.0288,0.0,0.817,0.499,127.961,4.0,,"Ultra Records, LLC","P (P) 2015 PRMD, LLC under exclusive license to Ultra Records, LLC / B1 Recordings GmbH",8759 +8760,spotify:track:1A8OrMrc15qpXp5MuOfvG2,Cruisin' - Single Edit,"spotify:artist:2OU0OH164ypvP4G3AYynXs, spotify:artist:4njFVSUWyxD84ur7w8Oy7h","Huey Lewis, Gwyneth Paltrow",spotify:album:0u34k1ANjgZ47uQfG9yaLj,Greatest Hits: Huey Lewis And The News,spotify:artist:7A9yZMTrFZcgEWAX2kBfK6,Huey Lewis & The News,2006-01-01,https://i.scdn.co/image/ab67616d0000b2735306ed42ae78f317258c51bb,1,15,214306,https://p.scdn.co/mp3-preview/5ae8228d14c666a79e24bf4e6118ec6142ed7605?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USNPD0600195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,new wave pop,0.747,0.646,4.0,-6.458,1.0,0.0438,0.127,0.0,0.0506,0.819,83.357,4.0,,Capitol Records,"C © 2006 Capitol Records Inc., P This Compilation ℗ 2006 Capitol Records Inc.",8760 +8761,spotify:track:2GAcmsgBScPDaxw6tE9hww,Saturday Night,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:1Htwv3I81HU6YUWWs0ommZ,The Best of Cold Chisel - All for You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b27306dc40069e45da5e5d9f90e6,1,10,261569,https://p.scdn.co/mp3-preview/637d4695350bc89bd70967c862f906af38851bf4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABB1158222,spotify:user:bradnumber1,2024-07-16T14:18:22Z,australian rock,0.62,0.532,5.0,-5.936,1.0,0.0285,0.223,0.0,0.325,0.462,90.532,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",8761 +8762,spotify:track:5AkBuGO6iMLxwGmjRj9PNU,One Great Mystery,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,spotify:album:5lvGpzH4UGGwtyIBx3A5NV,747,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,2014-09-30,https://i.scdn.co/image/ab67616d0000b2732bb40fcfd4b510fe75546009,1,6,214813,https://p.scdn.co/mp3-preview/9bb3b0a8b43df1075fffc9bab5b4b34180ca99e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUG11401131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country pop,country road",0.555,0.517,1.0,-6.147,1.0,0.0251,0.37,0.0,0.233,0.465,77.022,4.0,,Capitol Records Nashville,"C © 2014 Lady A Entertainment, LLC, under exclusive license to Capitol Records Nashville, P ℗ 2014 Lady A Entertainment, LLC, under exclusive license to Capitol Records Nashville",8762 +8763,spotify:track:7F1cvZrjJyVKi1dbB0IpS3,When The War Is Over,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:1Htwv3I81HU6YUWWs0ommZ,The Best of Cold Chisel - All for You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b27306dc40069e45da5e5d9f90e6,1,4,265306,https://p.scdn.co/mp3-preview/c47268efc209261da75386a93d2f1ccbc5410e8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABB1158216,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.562,0.661,9.0,-3.433,1.0,0.0246,0.0762,0.0,0.071,0.455,92.836,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",8763 +8764,spotify:track:27cXevtj5VflsCUAZwr9eI,Music,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,2,225813,https://p.scdn.co/mp3-preview/1dfc635cc7b7fb3a811b556aa6eaeba96e759e35?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USWB10903599,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.738,0.852,7.0,-6.13,1.0,0.0768,0.00153,0.0892,0.178,0.834,119.735,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",8764 +8765,spotify:track:3Eoe2nUdMXWM5Vz805Erqj,Rain,spotify:artist:4ajzEXRIqw9kvEQQR4femH,Anthony Callea,spotify:album:3TMFDmGy36fjZ3LePYnU91,Anthony Callea,spotify:artist:4ajzEXRIqw9kvEQQR4femH,Anthony Callea,2005,https://i.scdn.co/image/ab67616d0000b27319739c476619dba7d2e2a9b3,1,2,228986,https://p.scdn.co/mp3-preview/be66005464dd564b91a191673ac22911a0d257cf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUBM00548805,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.495,0.755,3.0,-4.966,1.0,0.0282,0.00477,1.42e-06,0.11,0.409,108.01,4.0,,BMG Music,P (P) 2005 Sony Music Entertainment Australia Pty Ltd,8765 +8766,spotify:track:3SG0r51qgOaENNG1dQplRv,Not Many,spotify:artist:1cUNRt3Ha4lnnNvPTJAIa8,Scribe,spotify:album:3blVRNRwnTQvfa5bl93S1n,The Crusader,spotify:artist:1cUNRt3Ha4lnnNvPTJAIa8,Scribe,2003-10-16,https://i.scdn.co/image/ab67616d0000b2738971c2ae8654a31cb430107d,1,1,223080,https://p.scdn.co/mp3-preview/91e207835f547c41a40384ffa672cffa025bfa04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZDI00400010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nz hip hop,0.824,0.879,5.0,-3.581,0.0,0.118,0.11,0.0,0.146,0.662,140.097,4.0,,Dirty Records,"C 2003 Dirty Records, P 2003 Dirty Records",8766 +8767,spotify:track:5UjZoYxGINaZJStfd4bQNF,Cherry Lips (Go Baby Go),spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,spotify:album:1pURneqm0FwlvA4vsgHrD8,Beautiful Garbage,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,2001,https://i.scdn.co/image/ab67616d0000b273dae567487d08b8d2f4ead5ee,1,7,192040,https://p.scdn.co/mp3-preview/428b0e4728b9be3e0e686d0efc77fcf38830c872?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10110724,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,electronic rock,permanent wave",0.912,0.447,6.0,-6.545,0.0,0.0422,0.176,0.0,0.444,0.965,116.188,4.0,,Liberator Music,"C 2012 STUNVOLUME, P 2012 STUNVOLUME",8767 +8768,spotify:track:7wqSzGeodspE3V6RBD5W8L,See You Again (feat. Charlie Puth),"spotify:artist:137W8MRPWKqSmrBGDBFSop, spotify:artist:6VuMaDnrHyPL1p4EHjYLi7","Wiz Khalifa, Charlie Puth",spotify:album:02tTjKlh9iQ5jlWYPbKLJZ,See You Again (feat. Charlie Puth),spotify:artist:137W8MRPWKqSmrBGDBFSop,Wiz Khalifa,2015-03-10,https://i.scdn.co/image/ab67616d0000b273916d2308473f0c00c3470b19,1,1,229525,https://p.scdn.co/mp3-preview/69c2ac6f1501e5c8bc6970273da5d06fb97a2e76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21500313,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap,pop,viral pop",0.689,0.481,10.0,-7.503,1.0,0.0815,0.369,1.03e-06,0.0649,0.283,80.025,4.0,,Atlantic Records,"C 2015 Universal Studios Motion Picture Artwork, Artwork Title, and Photos, P This compilation 2015 Universal Studios and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8768 +8769,spotify:track:2fNi8T6DLiY9SxFnZrhOeV,HEAVEN,"spotify:artist:3WGpXCj9YhhfX11TToZcXP, spotify:artist:0t3QQl52F463sxGXb1ckhB","Troye Sivan, Betty Who",spotify:album:2mRBvhDWqm8Fj2U0F6mMY4,Blue Neighbourhood (Deluxe),spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2015-12-09,https://i.scdn.co/image/ab67616d0000b273cc2504583eeb105a99b54cc8,1,9,261114,https://p.scdn.co/mp3-preview/9a61432a822c0af4bbd5235019718d54798d491a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,AUUM71501372,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,viral pop,australian dance,dance pop,electropop,metropopolis",0.529,0.725,8.0,-7.492,1.0,0.113,0.0751,2.39e-05,0.09,0.332,144.013,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2016 Universal Music Australia Pty Ltd., P ℗ 2016 Universal Music Australia Pty Ltd.",8769 +8770,spotify:track:2AOKDw1hjXL9C4pVKPtkcO,Are You The One?,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:6ivvGq9dhnlDHoEdHrWzsQ,Beams (Deluxe),spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2005-09-12,https://i.scdn.co/image/ab67616d0000b27306363db40293bfc8fa095d3b,1,2,203986,https://p.scdn.co/mp3-preview/4c9765173dc5f7a3d511c4caf819ac560affb5c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUMP00500102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.667,0.781,0.0,-3.311,1.0,0.0799,0.00596,1.98e-06,0.463,0.568,132.952,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Modular Recordings, P ℗ 2018 Modular Recordings",8770 +8771,spotify:track:4DMPn1rEujpIJIvjy9HKV8,Scream & Shout,"spotify:artist:085pc2PYOi8bGKj0PNjekA, spotify:artist:26dSoYclwsYLMAKD3tpOr4","will.i.am, Britney Spears",spotify:album:6H7mXPXFFDOpby7Xcke1vh,#willpower (Deluxe),spotify:artist:085pc2PYOi8bGKj0PNjekA,will.i.am,2013-01-01,https://i.scdn.co/image/ab67616d0000b2737cd0e09e531fbca549d76cbf,1,4,283400,https://p.scdn.co/mp3-preview/00b53e02ef664048f1d36459cba3c50d239ceab9?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71215597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,pop",0.77,0.684,0.0,-6.854,1.0,0.0768,0.0219,6.16e-05,0.128,0.479,130.03,4.0,,Universal Music Group,"C © 2013 Interscope Records, P ℗ 2013 Interscope Records",8771 +8772,spotify:track:7to68V64Cu6zk0UDo5tyw3,Confidence,spotify:artist:18lpwfiys4GtdHWNUu9qQr,Ocean Alley,spotify:album:0MVMsDS0kofp6A8cbJ5kSH,Chiaroscuro,spotify:artist:18lpwfiys4GtdHWNUu9qQr,Ocean Alley,2018-03-09,https://i.scdn.co/image/ab67616d0000b27346329ac2946a9313ff6b52f3,1,4,253076,https://p.scdn.co/mp3-preview/7c57d55f1b17e88a9036bc1d9c29dde3674689a3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AUZN31700127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian reggae fusion,australian surf rock",0.59,0.562,11.0,-9.607,0.0,0.0505,0.0637,0.0,0.105,0.561,140.835,4.0,,Ocean Alley,"C (C) 2018 Ocean Alley, P (P) 2018 Ocean Alley",8772 +8773,spotify:track:21MsRs5ShUpwYsr6xfuPyH,Jack & Diane,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:3aEIbk6NVA8d9s11cRBmSB,American Fool (Remastered),spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1982,https://i.scdn.co/image/ab67616d0000b273327bc253eda308ff03244526,1,2,254493,https://p.scdn.co/mp3-preview/b03b592db51b8b06e0b04b538630912849195a14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJM18200001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.811,0.41,9.0,-8.214,1.0,0.0392,0.0365,6.94e-06,0.0799,0.625,103.94,4.0,,Universal Music Group,"C © 2005 John Mellencamp, under exclusive license to The Island Def Jam Music Group, P ℗ 2005 John Mellencamp, under exclusive license to The Island Def Jam Music Group",8773 +8774,spotify:track:3mNecsYFb6LQg7822DPXCP,Absolutely (Story of a Girl) - Radio Mix,spotify:artist:306JHpIRGVaQd6OltnOzUO,Nine Days,spotify:album:4BcmNEt6VK0KBVsVY8yClD,The Madding Crowd,spotify:artist:306JHpIRGVaQd6OltnOzUO,Nine Days,2000-05-16,https://i.scdn.co/image/ab67616d0000b273df51a705c36af75f7ecbf181,1,2,189333,https://p.scdn.co/mp3-preview/863bb2c3649e37fa86dad22b4e4da05012a59a5a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USSM10001437,spotify:user:bradnumber1,2021-11-11T04:12:30Z,pop rock,0.481,0.94,7.0,-5.204,1.0,0.066,0.000891,0.0,0.0939,0.66,96.493,4.0,,Epic/550 Music,P (P) 2000 Sony Music Entertainment Inc.,8774 +8775,spotify:track:41Fflg7qHiVOD6dEPvsCzO,Worth It (feat. Kid Ink),"spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt, spotify:artist:6KZDXtSj0SzGOV705nNeh3","Fifth Harmony, Kid Ink",spotify:album:0zAsh6hObeNmFgFPrUiFcP,Reflection (Deluxe),spotify:artist:1l8Fu6IkuTP0U5QetQJ5Xt,Fifth Harmony,2015-01-30,https://i.scdn.co/image/ab67616d0000b2735bdd9e580fdda5e676a25e6a,1,4,224573,https://p.scdn.co/mp3-preview/de93c7aed8dff779d1fdba63d1522f2c770980f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM11406644,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,pop rap,rap,southern hip hop,trap",0.884,0.765,8.0,-3.865,1.0,0.0882,0.063,7.04e-06,0.118,0.594,99.987,4.0,,Syco Music/Epic,"P (P) 2014, 2015 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",8775 +8776,spotify:track:1n4hjOvZNngnD48CASmEvJ,When You Were Mine,spotify:artist:40usJiKvNyNHy3GAcNXSWx,Taylor Henderson,spotify:album:35q6agQrUXirvl16mq8YAa,Burnt Letters,spotify:artist:40usJiKvNyNHy3GAcNXSWx,Taylor Henderson,2014-07-11,https://i.scdn.co/image/ab67616d0000b273c2dfbea1ee4cbffd420bab2d,1,1,208026,https://p.scdn.co/mp3-preview/de660d90a57a9f88d7a612005a83267bc737d400?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUBM01400050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.582,0.686,10.0,-5.361,1.0,0.048,0.385,0.0,0.0932,0.209,120.166,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,8776 +8777,spotify:track:48qgKbH9HrrSMj3j6KSPzN,Bow River,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:1Htwv3I81HU6YUWWs0ommZ,The Best of Cold Chisel - All for You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b27306dc40069e45da5e5d9f90e6,1,6,262480,https://p.scdn.co/mp3-preview/2a911b59ed4bcf90e846296b644f0c91530453fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABB1158218,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.272,0.946,9.0,-2.11,0.0,0.163,0.0581,0.0,0.34,0.564,176.6,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",8777 +8778,spotify:track:0M3HkE321xpCbCYqVKzr1q,It Will Rain,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:4A0vJtV9ok7vmr9ursSKj8,It Will Rain,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2011-09-28,https://i.scdn.co/image/ab67616d0000b273dec2e6bae5062b94fc4eeb84,1,1,257720,https://p.scdn.co/mp3-preview/b4e70a4b9cfc7e25c2ac9c6ec4325524ec84c1d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USAT21102075,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.576,0.835,2.0,-6.826,1.0,0.0486,0.337,0.0,0.082,0.476,150.017,4.0,,Elektra (NEK),"C © 2011 TM & 2011 Summit Entertainment, LLC. All rights reserved., P ℗ 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",8778 +8779,spotify:track:57F80059mWaWFvWG3tBTbO,The Edge Of Glory,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:6LY3AerY6KNGOPsNPL63Kk,Born This Way (International Special Edition Version),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2011-05-23,https://i.scdn.co/image/ab67616d0000b273a5d31644260279be8d0c46c0,1,17,320546,https://p.scdn.co/mp3-preview/769f9fb79bfe14974752eab4368464de0e5dc6b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USUM71106458,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.583,0.771,9.0,-6.477,1.0,0.0412,0.000323,0.0163,0.109,0.358,127.955,4.0,,Interscope,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",8779 +8780,spotify:track:6bKetqXF3g4UgaXQlAYdgz,Anything Could Happen,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:0UxDUFlte3hkCkvOpmNGgG,Halcyon,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2012-01-01,https://i.scdn.co/image/ab67616d0000b273310f78a4a2d3f2c7e2a02fd7,1,3,286322,https://p.scdn.co/mp3-preview/5c7caf205d54a37ebe65c656928157b2b5519502?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBUM71205026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.702,0.781,0.0,-4.081,1.0,0.03,0.433,0.0,0.135,0.382,102.997,4.0,,Polydor Records,"C © 2012 Polydor Ltd. (UK), P ℗ 2012 Polydor Ltd. (UK)",8780 +8781,spotify:track:6jrQpctf9Fg3btO1I7qX7X,Girls Like That (Don't Go for Guys Like Us),spotify:artist:09NEIWHdaWneBWsjYdDnwz,Custard,spotify:album:6d56WimrCEkbHu2x0WM196,Loverama,spotify:artist:09NEIWHdaWneBWsjYdDnwz,Custard,1999-10-11,https://i.scdn.co/image/ab67616d0000b273317061bf09e4f40bfe32a174,1,1,190826,https://p.scdn.co/mp3-preview/315d4f36f97094b829c121eddde7a4d7265f319e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUBM09810505,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian alternative rock,0.672,0.718,6.0,-7.315,1.0,0.0434,0.451,0.000883,0.107,0.907,118.083,4.0,,Sony Music Entertainment,P (P) 1999 Sony Music Entertainment Australia Pty Ltd,8781 +8782,spotify:track:0XvvqmKU9qggK9KW3CZqzM,Lola,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:2CgMbcGBEyFj1LTUHDoN51,"Lola Versus Powerman and the Money-Go-Round, Pt. 1",spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,1970-11-27,https://i.scdn.co/image/ab67616d0000b2737a188951d88c0edda4edd9a6,1,5,241040,https://p.scdn.co/mp3-preview/f94cad9e017ec344d390fe1d9c0c6034abbda35f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE0701939,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.474,0.917,9.0,-4.19,1.0,0.0395,0.582,0.231,0.2,0.902,152.113,4.0,,Sanctuary,"C (C) 2004 Sanctuary Records Group Ltd., a BMG Company, under exclusive license to INgrooves, P (P) 1970 Sanctuary Records Group Ltd., a BMG Company, under exclusive license to INgrooves",8782 +8783,spotify:track:1OakwmqlAsweeecdYGqkXO,I Don't Need A Man,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,spotify:album:0ylxpXE00fVxh6d60tevT8,PCD (Revised International Version),spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2005-01-01,https://i.scdn.co/image/ab67616d0000b27308c08a13d8d1fbe59606a427,1,6,219093,https://p.scdn.co/mp3-preview/ed1c004ee105961ffba4ec848695f05b951c7534?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70503129,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.77,0.954,10.0,-3.898,1.0,0.0436,0.048,5.3e-05,0.0691,0.743,105.838,4.0,,Universal Music Group,"C © 2005 Pussycat Dolls, LLC, P ℗ 2005 Pussycat Dolls, LLC",8783 +8784,spotify:track:7roxK4OkEgfAH8GamPp35m,One Mint Julep,"spotify:artist:1eYhYunlNJlDoQhtYBvPsi, spotify:artist:1etZbbAlGpjf8r1oa3kYhx","Ray Charles, Rudolph Toombs",spotify:album:6yFi30xgH1KwFsb3Gnk8lT,R&B Classics of the 60s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-11-19,https://i.scdn.co/image/ab67616d0000b2739f1d9981decd2057be10c7e7,1,4,189226,https://p.scdn.co/mp3-preview/defb6712b1ecf2cec3de1e0f92e20be51669c7fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USC4R0919159,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,jazz blues,piano blues,soul,soul blues,vocal jazz",0.735,0.452,8.0,-11.934,1.0,0.146,0.691,0.772,0.0453,0.783,129.484,4.0,,U-5,"C 2013 U-5, P 2013 U-5",8784 +8785,spotify:track:3VWUscWqo4tv3IBpCZXMpx,Sister,spotify:artist:6aAAAaBR4MvI5HZz4BeVm0,Sister2sister,spotify:album:4AFfRPo1FqxkigADIZCZR7,One,spotify:artist:6aAAAaBR4MvI5HZz4BeVm0,Sister2sister,2000,https://i.scdn.co/image/ab67616d0000b2734497475be3e82ce527571b47,1,1,209253,https://p.scdn.co/mp3-preview/6788e905003b014e1e88af0d0b4fe2410280557e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUMU00000340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.641,0.702,8.0,-7.497,0.0,0.0547,0.0353,4.58e-05,0.204,0.647,96.466,4.0,,WM Australia,"C © 2000 Standard Records, P ℗ 2000 Standard Records",8785 +8786,spotify:track:4T3fNx3CgwDRRYgmFCbD4J,Better,spotify:artist:6LuN9FCkKOj5PcnpouEgny,Khalid,spotify:album:6Nd4PYvQ7aYid1Gn6sWgeG,Better,spotify:artist:6LuN9FCkKOj5PcnpouEgny,Khalid,2018-09-14,https://i.scdn.co/image/ab67616d0000b27397bbd3ef27fe0b40b36f8002,1,1,229412,https://p.scdn.co/mp3-preview/390acf653217c30f7b999c9e92aae5c9440d6289?cid=9950ac751e34487dbbe027c4fd7f8e99,True,63,USRC11803179,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop r&b",0.442,0.585,0.0,-10.332,0.0,0.0964,0.0984,0.391,0.14,0.116,97.565,4.0,,"Right Hand Music Group, LLC/RCA Records","P (P) 2018 RCA Records, a division of Sony Music Entertainment",8786 +8787,spotify:track:7KtgJpP3d6UIrTWKc1rnLC,It Ain't Necessarily So - 2015 Remaster,spotify:artist:7AYAlJS3jjcIj813LTx5rQ,Normie Rowe & The Playboys,spotify:album:3a7JXyIuAl4LZ4niKhEf2W,Frenzy! The 50th Anniversary Collection,spotify:artist:5c9HsNOWkLSqCduVHX8iyO,Normie Rowe,2015-06-05,https://i.scdn.co/image/ab67616d0000b273221b1558078e41a184f29a9e,1,1,199720,https://p.scdn.co/mp3-preview/5093614b1b48063a9667730ee4d9574f4ca9cc80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,AU3O01401524,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.52,0.448,2.0,-5.998,0.0,0.0316,0.21,0.0,0.0719,0.663,113.472,4.0,,WM Australia,"C © 2015 Warner Music Australia Pty Ltd, P ℗ 2015 Warner Music Australia Pty Ltd",8787 +8788,spotify:track:1othhMi2WsiF9oLoisJjYW,TALK ME DOWN,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,spotify:album:2mRBvhDWqm8Fj2U0F6mMY4,Blue Neighbourhood (Deluxe),spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2015-12-09,https://i.scdn.co/image/ab67616d0000b273cc2504583eeb105a99b54cc8,1,7,237464,https://p.scdn.co/mp3-preview/15d2fd9b5b3eab978e950355091035e958ab4993?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,AUUM71501113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,viral pop",0.363,0.781,6.0,-6.804,1.0,0.0739,0.148,0.000222,0.125,0.342,173.696,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2016 Universal Music Australia Pty Ltd., P ℗ 2016 Universal Music Australia Pty Ltd.",8788 +8789,spotify:track:550VgckDUlpsVkzM7bRAvs,Groove,spotify:artist:48kXmrNGCBMAz7N8x1J2na,Eurogliders,spotify:album:4CcQB2faGXDMd25pxKblur,Groove,spotify:artist:48kXmrNGCBMAz7N8x1J2na,Eurogliders,1988-03-01,https://i.scdn.co/image/ab67616d0000b27356d23e032a4459df8bc6f861,1,6,259760,https://p.scdn.co/mp3-preview/848a6cbfc963daf224f14f9507b91cd69d49f4fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUSM09100041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,synthpop",0.699,0.757,6.0,-8.733,1.0,0.0334,0.0053,0.00401,0.123,0.387,109.709,4.0,,Sony Music Entertainment,P (P) 1988 Sony Music Entertainment Australia Pty Ltd,8789 +8790,spotify:track:0CmIALzGn4vHIHJG4n3Q4z,At Last - Single Version,spotify:artist:0iOVhN3tnSvgDbcg25JoJb,Etta James,spotify:album:2pBhXw3Hi1hBf8FpAtE101,At Last!,spotify:artist:0iOVhN3tnSvgDbcg25JoJb,Etta James,1960,https://i.scdn.co/image/ab67616d0000b273d97bf715a906411fe4709fff,1,7,182400,https://p.scdn.co/mp3-preview/33a1d8d54f9a05885866036e1322391771eaa41d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC16046323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"jazz blues,soul,soul blues,torch song,vocal jazz",0.168,0.326,5.0,-9.981,1.0,0.0324,0.721,0.0006,0.316,0.322,174.794,3.0,,Universal Music Group,"C © 1999 The Verve Music Group, a Division of UMG Recordings, Inc., P ℗ 1999 The Verve Music Group, a Division of UMG Recordings, Inc.",8790 +8791,spotify:track:6bldx2VmqcHGB8OkNdtqA0,Love Me,spotify:artist:2d6JU9LvNhZR7AAtu4x2rS,Yvonne Elliman,spotify:album:1IrBNTc364DkrvUBmISfMC,70s Love,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2001-01-01,https://i.scdn.co/image/ab67616d0000b273ac7db91a4fd7b8f37bc7bbac,1,9,197920,https://p.scdn.co/mp3-preview/5fd30d558b98ced15bb289fda12ccc3d68b9ec91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,NLF057690002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco,0.653,0.543,4.0,-11.261,0.0,0.0636,0.699,0.0,0.157,0.915,149.708,4.0,,Universal Music Group International,"C © 2001 Universal Music International, P This Compilation ℗ 2001 Universal Music International",8791 +8792,spotify:track:4b4c0oH7PtrPsI86drzgFs,Chasing The Sun,spotify:artist:2NhdGz9EDv2FeUw6udu2g1,The Wanted,spotify:album:6FftnKauTntTYF5PBI0yOm,The Wanted (Special Edition),spotify:artist:2NhdGz9EDv2FeUw6udu2g1,The Wanted,2012-01-01,https://i.scdn.co/image/ab67616d0000b273de4c56829c88f6e4822f10f7,1,2,198800,https://p.scdn.co/mp3-preview/8837709ba07dca215b8317ce3907baa4fe7b6801?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBUM71202380,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop,post-teen pop",0.637,0.732,7.0,-6.209,0.0,0.0965,0.244,0.0,0.498,0.68,128.108,4.0,,Universal-Island Records Ltd.,"C © 2012 Global Talent Records Limited, under exclusive licence to Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2012 Global Talent Records Limited, under exclusive licence to Universal Island Records, a division of Universal Music Operations Limited",8792 +8793,spotify:track:7qZkxwsLq037y51MvzyxgQ,Listening,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,spotify:album:0om5TTowoRq6YWMWJirWGe,The Essential,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,2008-01-01,https://i.scdn.co/image/ab67616d0000b273127a89bad0a3cb904749ced3,1,2,179866,https://p.scdn.co/mp3-preview/7cb6f4997abace22ba4ec3e51c109205d4b98d5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUEM08400006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,dance rock,synthpop",0.6,0.731,7.0,-8.338,1.0,0.034,0.258,2.18e-05,0.296,0.61,131.077,4.0,,EMI Music Australia,"C © 2008 EMI Recorded Music Australia Pty Ltd., P This Compilation ℗ 2008 EMI Recorded Music Australia Pty Ltd.",8793 +8794,spotify:track:0vE1E6ZNJGlCHPe95z5Orl,Boogie Fever,spotify:artist:0efkWb9xKhT6H0E7kgSjFK,The Sylvers,spotify:album:1YWIa6QASbS8AkCWYiwI1H,Classic Masters,spotify:artist:0efkWb9xKhT6H0E7kgSjFK,The Sylvers,2010-01-01,https://i.scdn.co/image/ab67616d0000b27399e27e686e06d4d20b1bb278,1,1,208000,https://p.scdn.co/mp3-preview/58df165134e7f7ea161577850f8746e0b9980ae2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USCA20101451,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco",0.925,0.875,7.0,-5.743,0.0,0.0371,0.19,0.00495,0.0287,0.973,132.8,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P This Compilation ℗ 2010 Capitol Records, LLC",8794 +8795,spotify:track:0ofHAoxe9vBkTCp2UQIavz,Dreams - 2004 Remaster,spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,spotify:album:0BwWUstDMUbgq2NYONRqlu,Rumours (Super Deluxe),spotify:artist:08GQAI4eElDnROBrJRGE0X,Fleetwood Mac,1977-02-04,https://i.scdn.co/image/ab67616d0000b273e52a59a28efa4773dd2bfe1b,1,2,257800,https://p.scdn.co/mp3-preview/30d63954de3ee9c0bc3600a4560260cb252d4fbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,USWB11301111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,rock,soft rock,yacht rock",0.828,0.492,0.0,-9.744,1.0,0.0276,0.0644,0.00428,0.128,0.789,120.151,4.0,,Rhino/Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",8795 +8796,spotify:track:2EqlS6tkEnglzr7tkKAAYD,Come Together - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:0ETFjACtuP2ADo6LFhL6HN,Abbey Road (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1969-09-26,https://i.scdn.co/image/ab67616d0000b273dc30583ba717007b00cceb25,1,1,259946,https://p.scdn.co/mp3-preview/e4d979e98ee52f13b2d77ea5808f8059221be5f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBAYE0601690,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.53,0.376,9.0,-11.913,0.0,0.04,0.0304,0.247,0.0926,0.188,164.775,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",8796 +8797,spotify:track:2ldAdghnrO34HPcZ0IWfTu,Ten Feet Tall,"spotify:artist:4D75GcNG95ebPtNvoNVXhz, spotify:artist:7r2uG6BlFXKcwmh9ItqlII","AFROJACK, Wrabel",spotify:album:7G1441qDQeERZDyMipQPE8,Forget The World (Deluxe),spotify:artist:4D75GcNG95ebPtNvoNVXhz,AFROJACK,2014-01-01,https://i.scdn.co/image/ab67616d0000b273b3d1511a14dbfb2ba74bdf18,1,1,229149,https://p.scdn.co/mp3-preview/2b6425bd7529ff4382611e5f67af843e396a7f4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,CYA221400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,dutch house,edm,electro house,pop dance,alt z,indie poptimism",0.523,0.861,0.0,-3.447,1.0,0.0644,0.0336,0.0,0.144,0.346,127.049,4.0,,Wall Recordings,"C © 2014 Wall Recordings, distributed by UM_ID, a division of Universal International Music B.V., P ℗ 2014 Wall Recordings, distributed by UM_ID, a division of Universal International Music B.V.",8797 +8798,spotify:track:32OlwWuMpZ6b0aN2RZOeMS,Uptown Funk (feat. Bruno Mars),"spotify:artist:3hv9jJF3adDNsBSIQDqcjp, spotify:artist:0du5cEVh5yTK9QJze8zA0C","Mark Ronson, Bruno Mars",spotify:album:3vLaOYCNCzngDf8QdBg2V1,Uptown Special,spotify:artist:3hv9jJF3adDNsBSIQDqcjp,Mark Ronson,2015-01-12,https://i.scdn.co/image/ab67616d0000b273e419ccba0baa8bd3f3d7abf2,1,4,269666,https://p.scdn.co/mp3-preview/3074e956e6794c0eadea660b9cef671db6b27234?cid=9950ac751e34487dbbe027c4fd7f8e99,True,82,GBARL1401524,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,dance pop,pop",0.856,0.609,0.0,-7.223,1.0,0.0824,0.00801,8.15e-05,0.0344,0.928,114.988,4.0,,Columbia,"P Tracks 3, 4 & 6 (P) 2014, all other tracks (P) 2015 Mark Ronson under exclusive licence to Sony Music Entertainment UK Limited",8798 +8799,spotify:track:31CYUJj5f9lbQ0Qqm9PzK5,Falling,spotify:artist:4Pt1HZtuJwrQB8l0ES5iTX,Julee Cruise,spotify:album:3N6VPyK0YsRTccqoRQjkVx,Floating Into The Night,spotify:artist:4Pt1HZtuJwrQB8l0ES5iTX,Julee Cruise,1989-09-12,https://i.scdn.co/image/ab67616d0000b273e70f4f014070340f0739db30,1,2,321853,https://p.scdn.co/mp3-preview/abc5001f0a61d3ad8c030896c6c0fbef114b222a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USWB10100198,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dream pop,0.192,0.138,5.0,-17.135,1.0,0.0315,0.892,0.553,0.114,0.0757,142.187,4.0,,143/Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",8799 +8800,spotify:track:5hHfO70XvjCezL0YNtonNk,You Make Me Feel Brand New,"spotify:artist:2O0Hw1WSMbskB5tD9aWah3, spotify:artist:4iIUGgoxDjoMWk34GIcGs6, spotify:artist:3vFFK9T74YkzeNYkNvjGLl","The Stylistics, Airrion Love, Russell Thompkins\, Jr.",spotify:album:1rt8wY3v7jjrB9eLBlLCq0,The Best Of The Stylistics,spotify:artist:2O0Hw1WSMbskB5tD9aWah3,The Stylistics,1985,https://i.scdn.co/image/dec6c9c6f790afb1bc8ca44d1d374fc17ab7e3cf,1,1,287546,,False,0,US37B0500001,spotify:user:bradnumber1,2020-03-05T09:20:26Z,"classic soul,disco,funk,motown,philly soul,quiet storm,soul",0.334,0.219,7.0,-13.641,1.0,0.0275,0.886,2.04e-06,0.137,0.205,154.275,4.0,,Amherst Records,"C (C) 1985 Amherst Records, Inc",8800 +8801,spotify:track:1dm00I58PW9kfpQ7su2opJ,Wild Horses - Rerecorded,spotify:artist:6ltcwvni6HdZAJaWhmIvNR,Gino Vannelli,spotify:album:1hzeOHyZNRjgAJyIKPfEIn,The Best and Beyond,spotify:artist:6ltcwvni6HdZAJaWhmIvNR,Gino Vannelli,2009-10-30,https://i.scdn.co/image/ab67616d0000b27398bb588b26efe0bb9645cf81,1,2,356022,https://p.scdn.co/mp3-preview/9fc2a1b80713b3e2ab9438e61204de1caeac58b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,ITS040900666,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic canadian rock,soft rock,yacht rock",0.534,0.875,1.0,-5.637,1.0,0.0407,0.214,0.000184,0.0516,0.727,168.95,4.0,,Azzurra music,"C 2009 Azzurra Music, P 2009 Azzurra Music",8801 +8802,spotify:track:69sz3g03qkaDPLrJPGAMFr,Wig Wam Bam,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,spotify:album:0ZSMNKAIzJR9fcQs09rWKO,Best Of...,spotify:artist:3JaAGmSTpJK35DqWrDUzBz,Sweet,1998-01-02,https://i.scdn.co/image/ab67616d0000b2733119bb42bdf272a7ab990a44,1,6,180800,https://p.scdn.co/mp3-preview/59bc51c415781762579c4d5b92018bb45e4b57da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBARL7200004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,glam rock,hard rock",0.714,0.781,4.0,-9.572,1.0,0.103,0.155,1.58e-05,0.0849,0.581,126.575,4.0,,Ariola Express,P (P) 2002 BMG Ariola Miller GmbH,8802 +8803,spotify:track:7Ho3T7ERfooiAfvODaMQ2N,Rock And Roll Music - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:1vANZV20H5B4Fk6yf7Ot9a,Beatles For Sale (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1964-12-04,https://i.scdn.co/image/ab67616d0000b27355612ece447bec5d62c68375,1,4,151280,https://p.scdn.co/mp3-preview/9118cb0ff84f6a5f28c0ef5f6724e215f2214c99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAYE0601454,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.457,0.917,9.0,-6.213,1.0,0.0441,0.566,0.0,0.333,0.965,167.092,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",8803 +8804,spotify:track:1X7PKKDSLGw7eqZz2Pzgtz,Long Live The Weekend,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:3UGJjvcY3reGR8EwomJYoA,State of Emergency,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,2006-02-04,https://i.scdn.co/image/ab67616d0000b273103407badc5c79a56ee15874,1,2,173866,https://p.scdn.co/mp3-preview/e48063fbc0b7e73ea715b4d210bf77cef07ba746?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUKVO0500008,spotify:user:bradnumber1,2021-11-11T04:07:47Z,"australian alternative rock,australian rock,australian ska",0.205,0.943,0.0,-3.385,1.0,0.0721,1.93e-05,2.62e-06,0.363,0.254,167.67,4.0,,BMG Rights Management (Australia) Pty Ltd.,"C © 2018 BMG Rights Management (Australia) Pty Ltd., P ℗ 2018 BMG Rights Management (Australia) Pty Ltd.",8804 +8805,spotify:track:64Ret7Tf2M8pDE4aqbW2tX,One,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:69oeRoYEpSsNPGVuYRxfoB,...And Justice For All,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1988-08-25,https://i.scdn.co/image/ab67616d0000b273db16db05648965be0768aabb,1,4,447440,https://p.scdn.co/mp3-preview/f348ce743e0ae6cad29067bae80f72b1f521f52d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10001274,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.444,0.703,7.0,-9.443,1.0,0.0641,0.00112,0.0761,0.127,0.419,106.228,4.0,,Blackened Recordings,C 1988 Blackened Recordings,8805 +8806,spotify:track:0VRxqpFICUHJKuWx9sQrm6,He Wasn't,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:7851Vsjv3apS52sXUik6iF,Under My Skin,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2004,https://i.scdn.co/image/ab67616d0000b2739c291af4bf0c3071847f2b80,1,4,179360,https://p.scdn.co/mp3-preview/738945dd7c7dda9a872fb469bf63f169d5cd3d7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USAR10400484,spotify:user:bradnumber1,2024-02-27T01:35:59Z,"canadian pop,candy pop,dance pop,pop",0.409,0.855,7.0,-3.599,1.0,0.0477,0.000207,2.81e-05,0.0818,0.66,172.911,4.0,,Arista,P (P) 2004 Arista Records LLC,8806 +8807,spotify:track:6Zo3wgDE076K2AuiGZF3CS,Fun (feat. Chris Brown),"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:7bXgB6jMjp9ATFy66eO08Z","Pitbull, Chris Brown",spotify:album:4EUf4YyNjuXypWY6W5wEDm,Globalization,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2014-11-21,https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7,1,2,202306,https://p.scdn.co/mp3-preview/d83896e2d4eb059b31c083df65a200fe39e5159b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USRC11402646,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,r&b,rap",0.793,0.774,0.0,-3.667,0.0,0.0478,0.156,0.0,0.193,0.547,113.967,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2014 RCA Records, a division of Sony Music Entertainment",8807 +8808,spotify:track:2eot2orcEQn5wR11DSVcbO,It's Only Make Believe,spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,spotify:album:2bVr7AMmHlGmRtCI1A0cwf,Glen Campbell Goodtime Album,spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,1970-01-01,https://i.scdn.co/image/ab67616d0000b273a18a4ac42582767d4abec8c6,1,1,147480,https://p.scdn.co/mp3-preview/1c3714472f103c259f0ecfadd76cf73270af8e93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USCN16700035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,arkansas country,classic country pop,folk rock,mellow gold,nashville sound,singer-songwriter,soft rock",0.448,0.558,0.0,-5.482,1.0,0.0299,0.191,0.000835,0.276,0.537,112.754,3.0,,Capitol Nashville,"C © 1970 Capitol Records Nashville, P ℗ 1970 Capitol Records Nashville",8808 +8809,spotify:track:3S3dZXxNGghLtOqehzHtii,One Moment in Time,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:2No9DisAfser7YCYQcYpj3,I Will Always Love You: The Best Of Whitney Houston,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,2012-11-12,https://i.scdn.co/image/ab67616d0000b273bddfe60a1ae03aeb8f7460c9,1,20,285000,https://p.scdn.co/mp3-preview/309989642c0039ada6265fe0e88373cb5cfe33d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR19901006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.266,0.539,0.0,-6.738,1.0,0.0333,0.493,0.0,0.0964,0.325,155.484,4.0,,Arista Records/RCA Records,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",8809 +8810,spotify:track:3AjSfp5FDvwtMU9XBsbS8j,Push Up - Main Edit,spotify:artist:2gW0M5fn2r7Lo4Hn1r8HZ5,Creeds,spotify:album:3v5BP6gPT1nNU9rjs57fF0,Push Up (Main Edit),spotify:artist:2gW0M5fn2r7Lo4Hn1r8HZ5,Creeds,2023-03-31,https://i.scdn.co/image/ab67616d0000b273b1f8e7c90fbffff33cb74254,1,1,139300,https://p.scdn.co/mp3-preview/b7bd7fa2bdcb29f456bdc684885b56fa091efd64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,DEE862300564,spotify:user:bradnumber1,2023-07-11T01:16:38Z,hypertechno,0.767,0.83,7.0,-8.78,1.0,0.206,0.209,0.836,0.0582,0.187,75.023,4.0,,Columbia/B1 Recordings,"P (P) 2023 Rave Alert Records, under exclusive license to Ministry of Sound/Arista Records/B1 Recordings GmbH, a Sony Music Entertainment company.",8810 +8811,spotify:track:12B0Twa9kRz45Xw2PgXHJm,Afire Love,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:1xn54DMo2qIqBuMqHtUsFd,x (Deluxe Edition),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2014-06-21,https://i.scdn.co/image/ab67616d0000b27313b3e37318a0c247b550bccd,1,12,314280,https://p.scdn.co/mp3-preview/bcee161dccd2ae3df26775624060b74bfeb2adcb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAHS1400100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.552,0.637,5.0,-6.568,1.0,0.0445,0.464,1.63e-05,0.136,0.333,97.97,4.0,,Atlantic Records UK,"C © 2014 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 Asylum Records UK, a Warner Music UK Company, except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",8811 +8812,spotify:track:2VDTqhsSzrRxsbjvv4KLPl,Memories,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:4UCjvqGiMnghqo31aPQQ09,Memories,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2024-02-01,https://i.scdn.co/image/ab67616d0000b273eb3539da1cdc5cc996afc912,1,1,179534,https://p.scdn.co/mp3-preview/e2620e29495829abbdf2be4090af568ad7cf7717?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,AUUM72300507,spotify:user:bradnumber1,2024-02-07T22:57:49Z,"australian pop,pop",0.569,0.393,2.0,-6.507,1.0,0.0411,0.797,0.0,0.123,0.405,128.704,4.0,,Universal Music Australia Pty. Ltd.,"C © 2024 Universal Music Australia Pty Ltd., P ℗ 2024 Universal Music Australia Pty Ltd.",8812 +8813,spotify:track:3BseI2RqmMy9QLMBc4jtRd,I Thought About You,spotify:artist:0hDJSg859MdK4c9vqu1dS8,The Beautiful Girls,spotify:album:5xLZlgl8Njj2FiCtwkSHpc,Ziggurats,spotify:artist:0hDJSg859MdK4c9vqu1dS8,The Beautiful Girls,2007-05-12,https://i.scdn.co/image/ab67616d0000b273d1b768c639d3e37a8f62e8b9,1,3,192466,https://p.scdn.co/mp3-preview/26279648a9158d4ae5fdeca346e2a28c85821dab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUKU00700051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian reggae fusion,0.684,0.77,7.0,-5.007,1.0,0.0431,0.0182,3.8e-06,0.0869,0.967,141.99,4.0,,Die!Boredom Records,"C 2007 Die!Boredom Records, P 2007 Die!Boredom Records",8813 +8814,spotify:track:1tuc39i6BfB04XeSnUVMgy,Young Emotions - Remastered,"spotify:artist:73sSFVlM6pkweLXE8qw1OS, spotify:artist:3tkZ5S6yPSkEQZV6wXqHGl","Ricky Nelson, Bob Fisher",spotify:album:2F19gpxQZftkrDhBPeemxZ,More Songs By Ricky / Rick Is 21,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,2001-01-01,https://i.scdn.co/image/ab67616d0000b27378041b81a507e731640b9dba,1,15,155200,https://p.scdn.co/mp3-preview/b706fbdc2833b148ee35a25524ecfb8e7002e87d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEM30100524,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,doo-wop,rock-and-roll,rockabilly",0.511,0.222,7.0,-13.469,0.0,0.0333,0.371,3.74e-05,0.171,0.398,78.08,4.0,,Capitol Records,"C © 2001 Capitol Records, LLC, P A Capitol Records Release; This Compilation ℗ 2001 Capitol Records, LLC",8814 +8815,spotify:track:7CHNIK6EGjnwpWkSpx6JZe,Medicine,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:6K8gvUTwVftCa3gd0MFtI4,Medicine,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2021-03-05,https://i.scdn.co/image/ab67616d0000b273f9517c380a615cd75a375a57,1,1,208906,https://p.scdn.co/mp3-preview/7497f819ebb9b8dfe3bb65bacf26ab1a2c8bb465?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,DEE862100191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.306,0.74,10.0,-4.521,1.0,0.0532,0.232,0.0,0.0892,0.314,98.3,5.0,,Columbia Local,P (P) 2021 COLUMBIA a division of Sony Music Entertainment Germany GmbH,8815 +8816,spotify:track:1GLCArNjvSSIFphBkpEqQz,Talking Like I'm Falling Down Stairs,spotify:artist:1uF4cReE3ePCZK1oCyCYJI,Sparkadia,spotify:album:4nr3kxu5Xqzz4A6LgMhdPO,The Great Impression,spotify:artist:1uF4cReE3ePCZK1oCyCYJI,Sparkadia,2011-03-18,https://i.scdn.co/image/ab67616d0000b2735a44420c1cc1bea454232fb6,1,3,247840,https://p.scdn.co/mp3-preview/eecf76f1d3b7fd8aa726707f21ad843065350c1c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI01175700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie",0.619,0.724,4.0,-6.128,1.0,0.0298,0.063,0.00211,0.363,0.717,119.993,4.0,,Ivy League Records,"C 2011 (P) Sparkadia © Ivy League Records, P 2011 (P) Sparkadia © Ivy League Records",8816 +8817,spotify:track:2LjiPAQOVazT8sRyXL3XRs,Informer,spotify:artist:3uZFBSsMiooimnprFL9jD1,Snow,spotify:album:6bNWz7bHK8M0xPfAPmFSRW,12 Inches Of Snow,spotify:artist:3uZFBSsMiooimnprFL9jD1,Snow,1993,https://i.scdn.co/image/ab67616d0000b27350cb0dcd257aea8ae4e44c85,1,7,268910,https://p.scdn.co/mp3-preview/f705b8603537cdfc8d572ecea841b041cae4f6c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USEW19300006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian old school hip hop,reggae fusion",0.763,0.742,6.0,-10.975,0.0,0.188,0.0984,0.0,0.38,0.483,98.145,4.0,,EastWest,"C © 1993 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1993 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",8817 +8818,spotify:track:44AxeBXrK9LQlGjXyT2oZQ,Run to the Hills,spotify:artist:6mdiAmATAx73kdxrNrnlao,Iron Maiden,spotify:album:0QXyw5GWqDZe3nSWrM6d4z,The Number of the Beast,spotify:artist:6mdiAmATAx73kdxrNrnlao,Iron Maiden,1982,https://i.scdn.co/image/ab67616d0000b27396779a5f90f12af486a81e20,1,6,233946,https://p.scdn.co/mp3-preview/8e4a64bb7e209db7364c3f36da1ee4cc4800b087?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE9801382,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,hard rock,metal,nwobhm,rock",0.225,0.951,0.0,-4.654,1.0,0.0924,0.00837,0.000225,0.219,0.471,173.241,4.0,,Sanctuary,"C (C) 1998 Iron Maiden Holdings Ltd./ Sanctuary Records Group Ltd., a BMG Company, under exclusive license to INgrooves, P (P) 1982 Iron Maiden Holdings Ltd., licensed in the United States to Sanctuary Records Group Ltd., a BMG company, under exclusive license to INgrooves",8818 +8819,spotify:track:1IyCo9c1WOij7mz0pmhvNt,Don't Stop,spotify:artist:7zT7AVH9OzrLtJCnMscvkR,Tim & Jean,spotify:album:2kO89CzpTvtNKGPIoy8w8X,Like What,spotify:artist:7zT7AVH9OzrLtJCnMscvkR,Tim & Jean,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738ebcda683220eb49e9efdba3,1,7,216146,,False,0,AUUM71100006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian indie,0.503,0.95,2.0,-3.71,1.0,0.0338,0.011,0.00279,0.404,0.34,126.018,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Tim & Jean, P ℗ 2011 Tim & Jean",8819 +8820,spotify:track:6wjY4ksLjCWU5D3lnNBAhy,Love's Theme,spotify:artist:457yGSZecENoIuNWelRHhH,The Love Unlimited Orchestra,spotify:album:7rUZRoEDIcsRXSB86xFMBk,The Best Of Love Unlimited Orchestra,spotify:artist:457yGSZecENoIuNWelRHhH,The Love Unlimited Orchestra,1995-01-01,https://i.scdn.co/image/ab67616d0000b273244f4bb7dc99d2525d51d7e7,1,5,248266,https://p.scdn.co/mp3-preview/ea6dddeae7506891850d3bdc867d733844355f87?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR37300012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco",0.589,0.61,2.0,-10.542,1.0,0.0325,0.00166,0.808,0.265,0.712,97.072,4.0,,Universal/Island Def Jam,"C © 1995 The Island Def Jam Music Group, P ℗ 1995 The Island Def Jam Music Group",8820 +8821,spotify:track:70YvYr2hGlS01bKRIho1HM,La Grange - 2005 Remaster,spotify:artist:2AM4ilv6UzW0uMRuqKtDgN,ZZ Top,spotify:album:0Em8m9kRctyH9S3MTXAHvY,Tres Hombres (Expanded 2006 Remaster),spotify:artist:2AM4ilv6UzW0uMRuqKtDgN,ZZ Top,1973-07-26,https://i.scdn.co/image/ab67616d0000b2730fe2ec86a0ec561ef2e2aae1,1,8,230480,https://p.scdn.co/mp3-preview/1de566ed732e7c2762c9c4432eb1ac3f6fa41d39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USWB10505222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,hard rock,rock",0.545,0.64,4.0,-9.937,0.0,0.224,0.00249,0.0304,0.196,0.606,80.544,4.0,,Rhino/Warner Records,"C © 2006 Warner Records Inc. Manufactued & Marketed by Warner Strategic Marketing, P ℗ 2006 Warner Records Inc. Manufactued & Marketed by Warner Strategic Marketing",8821 +8822,spotify:track:1HChuZvDKwcl76LvaGExeo,Copperhead Road,spotify:artist:2UBTfUoLI07iRqGeUrwhZh,Steve Earle,spotify:album:2XHFLRzTwQMQL8hrGeQoMC,Copperhead Road,spotify:artist:2UBTfUoLI07iRqGeUrwhZh,Steve Earle,1988-01-01,https://i.scdn.co/image/ab67616d0000b273b8145f5012318fb699dd69d1,1,1,270733,https://p.scdn.co/mp3-preview/b1baef67bae4102137aa20616c09c482de140543?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USMC18826253,spotify:user:bradnumber1,2022-08-26T01:34:57Z,"alternative country,classic texas country,country rock,folk,heartland rock,outlaw country,roots rock,singer-songwriter",0.39,0.597,7.0,-15.289,1.0,0.0405,0.0209,9.9e-05,0.057,0.694,156.103,4.0,,UNI,"C © 1988 MCA Nashville, P ℗ 1988 MCA Nashville",8822 +8823,spotify:track:5eUB6MpcKB8dN4mPOOkqpV,Shoot Me Down - Radio Edit,spotify:artist:16Mje1BDQmN1DWp4a94YOC,Zoë Badwi,spotify:album:5Js5UKQAkAdda7s6lIb8le,Shoot Me Down,spotify:artist:16Mje1BDQmN1DWp4a94YOC,Zoë Badwi,2012-09-28,https://i.scdn.co/image/ab67616d0000b273807777603ed15048fa39deb8,1,1,211949,https://p.scdn.co/mp3-preview/1781790f82e8f8a5163a08b97bd745a20d07f2fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNE31200058,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.597,0.681,3.0,-6.253,1.0,0.03,0.000646,0.13,0.437,0.325,126.003,4.0,,WM Australia,"C 2012 Neon Records Pty Limitied, P 2012 Neon Records Pty Limitied",8823 +8824,spotify:track:1LyMFWND4HmkCCxXOFDpRp,Peppermint Twist,spotify:artist:5a1eYf2G4v4UKubimlfGAJ,Joey Dee & The Starliters,spotify:album:0U8ck9kHluW3pSpTyEdiew,Peppermint Twist,spotify:artist:5a1eYf2G4v4UKubimlfGAJ,Joey Dee & The Starliters,2012-09-24,https://i.scdn.co/image/ab67616d0000b2732f8eb6e84b644f58cbc4fc4c,1,2,122017,https://p.scdn.co/mp3-preview/8d9fd6ce007681b326bfa1fe2d0a76aef3a818cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB8XC1053709,spotify:user:bradnumber1,2021-08-08T09:26:31Z,doo-wop,0.411,0.734,0.0,-10.8,1.0,0.157,0.41,0.0,0.781,0.664,198.531,4.0,,AP Music Ltd,"C Ap Music Ltd, P Ap Music Ltd",8824 +8825,spotify:track:3J0AoQhAufniMrznCRJASD,I Drove All Night,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,spotify:album:3wegC2LXYCQknfUuOYBwmz,A Night To Remember,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,1989-05-09,https://i.scdn.co/image/ab67616d0000b273cb6c3a8c80190493c6a44e33,1,2,251506,https://p.scdn.co/mp3-preview/959e09ea83da60ce4ba3ddc4c19652cc84a52519?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM10020723,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,permanent wave,soft rock",0.703,0.706,8.0,-10.637,1.0,0.0302,0.233,0.00109,0.585,0.766,131.067,4.0,,Epic,P (P) 1989 SONY BMG MUSIC ENTERTAINMENT,8825 +8826,spotify:track:01QicLin8hNjIcUDuE0nRP,Diane,spotify:artist:0qDtyCZRYrja9CoeHXV6FD,The Bachelors,spotify:album:6fPWamZmTK0d03dzR0S2ab,The Bachelors - The Decca Years,spotify:artist:0qDtyCZRYrja9CoeHXV6FD,The Bachelors,1999-01-01,https://i.scdn.co/image/ab67616d0000b273589b9c6ea2c6bb65c047ca17,1,5,154000,https://p.scdn.co/mp3-preview/1f7c9098fd15462fb0574b42782a6e3f6b293732?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,GBF076323550,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british invasion,0.401,0.426,3.0,-10.8,1.0,0.0315,0.66,0.0,0.165,0.395,129.86,4.0,,Decca Music Group Ltd.,"C © 1999 Decca Music Group Limited, P This Compilation ℗ 1999 Decca Music Group Limited",8826 +8827,spotify:track:5iwyLsQ5yjnCaRrJGyAPZM,Endless Love,"spotify:artist:3gMaNLQm7D9MornNILzdSl, spotify:artist:3MdG05syQeRYPPcClLaUGl","Lionel Richie, Diana Ross",spotify:album:1ET5QG3pd6NGqEFuZh0Qiz,Back To Front,spotify:artist:3gMaNLQm7D9MornNILzdSl,Lionel Richie,1992-01-01,https://i.scdn.co/image/ab67616d0000b273a47127db3e929f64a2795666,1,7,266800,https://p.scdn.co/mp3-preview/a4cad6e43a6a9e5122bd458f103b9e229e1c2e37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USMO18190008,spotify:user:bradnumber1,2021-10-30T21:35:48Z,"soft rock,adult standards,disco,motown,quiet storm,soft rock,soul",0.49,0.268,10.0,-11.809,1.0,0.0257,0.866,0.0161,0.145,0.181,93.352,4.0,,Motown,"C © 1992 Motown Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 1992 Motown Records, a Division of UMG Recordings, Inc.",8827 +8828,spotify:track:2y4lAQpi5VTNLu2ldeTdUH,We Can't Stop,spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,spotify:album:3RDqXDc1bAETps54MSSOW0,Bangerz (Deluxe Version),spotify:artist:5YGY8feqx7naU7z4HrwZM6,Miley Cyrus,2013-10-04,https://i.scdn.co/image/ab67616d0000b2736b18d0490878750cd69abf2c,1,2,231240,https://p.scdn.co/mp3-preview/2832db9492a17af6654d86be3ae07d4baa1f55ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USRC11300686,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.613,0.622,1.0,-5.794,0.0,0.0334,0.00882,0.0,0.37,0.484,80.003,4.0,,RCA Records Label,"P (P) 2013 RCA Records, a division of Sony Music Entertainment",8828 +8829,spotify:track:7cCf8vPXJw4e7e2CQYyYgi,You're Still The One,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,spotify:album:1Xq7GtFHmTt110bmxQrtC4,Come On Over,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,1997,https://i.scdn.co/image/ab67616d0000b27351cfe8c7a9f78702fc36a0cb,1,1,212560,https://p.scdn.co/mp3-preview/7be4a6437fca0ad4c3082bc476055de2f08f7dca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19887499,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian country,canadian pop,contemporary country,country,country dawn",0.556,0.513,3.0,-7.201,1.0,0.029,0.476,0.0,0.237,0.665,133.803,4.0,,Universal Music Group,"C © 2009 Mercury Records, P ℗ 2009 Mercury Records",8829 +8830,spotify:track:7FV2dNSFj8hP8D4XobzS7T,Missing You,spotify:artist:7BDI9Iqt24gl4RGdS6hWs9,Ray Peterson,spotify:album:6x25E0Zu66B5IGkIn14rqE,Best Music Legends,spotify:artist:7BDI9Iqt24gl4RGdS6hWs9,Ray Peterson,2016-03-11,https://i.scdn.co/image/ab67616d0000b2730ab54a9f0c910c726cf41530,1,10,167836,https://p.scdn.co/mp3-preview/896db06f89e1b5f49551fd5032f5ba7029820898?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBURZ1502866,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.545,0.266,9.0,-11.413,1.0,0.0311,0.851,0.0,0.0985,0.372,90.504,4.0,,Blind Data Records,"C Blind Data Records, P Blind Data Records",8830 +8831,spotify:track:5m3ncZkdjMEAjZaS4Wp5hj,If You're Not the One,spotify:artist:4zM0rSWDYUaWlrnn4FTNa6,Nicholas McDonald,spotify:album:41jltyJhKhDY0gyoHmVHhW,In the Arms Of an Angel,spotify:artist:4zM0rSWDYUaWlrnn4FTNa6,Nicholas McDonald,2014-03-17,https://i.scdn.co/image/ab67616d0000b2735fc3c2760b91f564fcfeb80b,1,10,234026,https://p.scdn.co/mp3-preview/aa1504176910c8236c80b5da25635251b1a26b56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,GBHMU1300591,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.671,0.4,10.0,-6.333,1.0,0.029,0.113,0.0,0.201,0.456,119.87,4.0,,RCA Records Label,P (P) 2014 Simco Limited,8831 +8832,spotify:track:3mw87P6YW3956SMm7d9UfM,Make You Happy,spotify:artist:4UzQ37Y0rzonVpsXpcNyFH,Josh Pyke,spotify:album:41iPH7E1tJ6gwd2pAZXkMX,Chimney's Afire,spotify:artist:4UzQ37Y0rzonVpsXpcNyFH,Josh Pyke,2008-10-04,https://i.scdn.co/image/ab67616d0000b27390a92f4973c8a269a0957182,1,7,175960,https://p.scdn.co/mp3-preview/b1d3981d9cf24aed37c4f65e6ebd5b31236e7462?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00849330,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian singer-songwriter",0.585,0.759,1.0,-6.328,1.0,0.029,0.0107,0.00151,0.195,0.689,135.976,4.0,,Ivy League Records,"C 2008 2008 Ivy League Records, P 2008 2008 Ivy League Records",8832 +8833,spotify:track:5WQ1hIc5d2EVbRQ8qsj8Uh,Hey Ya! - Radio Mix / Club Mix,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,spotify:album:00XMrHZoOsYLmiyx890axX,Speakerboxxx/The Love Below,spotify:artist:1G9G7WwrXka3Z1r7aIDjI7,Outkast,2003-09-23,https://i.scdn.co/image/ab67616d0000b273b21b359f2d9cb74092780da6,2,9,235213,https://p.scdn.co/mp3-preview/d24b3c4135ced9157b0ea3015a6bcc048e0c2e3a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USAR10300924,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,hip hop,old school atlanta hip hop,rap,southern hip hop",0.719,0.967,0.0,-2.435,1.0,0.0552,0.0588,0.000249,0.206,0.964,79.505,4.0,,Arista,"P (P) 2003 Arista Records, Inc.",8833 +8834,spotify:track:5dL5jv5GSCRoDhTtnY8maL,Mesmerize,"spotify:artist:1J2VVASYAamtQ3Bt8wGgA6, spotify:artist:5rkVyNGXEgeUqKkB5ccK83","Ja Rule, Ashanti",spotify:album:7HQJPTQwijtIlnOLwT0nTX,The Last Temptation,spotify:artist:1J2VVASYAamtQ3Bt8wGgA6,Ja Rule,2002-01-01,https://i.scdn.co/image/ab67616d0000b2735b31748986c995e993c3eca4,1,3,278693,https://p.scdn.co/mp3-preview/9024bb64f7574ceb63624f88f840911fbc0da5c0?cid=9950ac751e34487dbbe027c4fd7f8e99,True,60,USDJ20201253,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,east coast hip hop,gangster rap,hip hop,hip pop,pop rap,queens hip hop,rap,urban contemporary,dance pop,hip pop,r&b,urban contemporary",0.769,0.646,1.0,-6.653,1.0,0.199,0.0566,0.0,0.406,0.433,90.079,4.0,,"I.G. Records, Inc./Universal Records","C © 2002 The Island Def Jam Music Group, P ℗ 2002 The Island Def Jam Music Group",8834 +8835,spotify:track:44xO8889yUQHn70P73NILS,Believe Me,spotify:artist:6YCM9JwkqdEFQSzztmh4Kb,Navos,spotify:album:7GJVQX2wiktNMP4QV20Y3E,Believe Me,spotify:artist:6YCM9JwkqdEFQSzztmh4Kb,Navos,2021-01-22,https://i.scdn.co/image/ab67616d0000b273ddc685f76ffabc0e9aea6aab,1,1,188260,https://p.scdn.co/mp3-preview/aa523c6a4c3d6bc8a8e8a627c7bb23c155b24581?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBUM72100423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.629,0.876,5.0,-5.572,0.0,0.0408,0.129,1.39e-06,0.29,0.645,124.999,4.0,,Universal-Island Records Ltd.,"C © 2021 Navos, under exclusive licence to Universal Music Operations Limited, P ℗ 2021 Navos, under exclusive licence to Universal Music Operations Limited",8835 +8836,spotify:track:4IOZERH4tFMC7OtFek2MF6,Gotcha,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:723OG0s0ZJXT9hzPeFpPqG,Gotcha,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2012-07-13,https://i.scdn.co/image/ab67616d0000b273e8d928637e44efa8262f853e,1,1,188253,https://p.scdn.co/mp3-preview/6b961e3f0b5514f7a7fc2f898898bf53225dcbb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,AUBM01200157,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.69,0.732,2.0,-5.816,0.0,0.0612,0.000996,7.55e-05,0.0962,0.922,161.001,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,8836 +8837,spotify:track:3RNyGLgSvmVRZ7xKUp8Wgd,In the Summertime,spotify:artist:2mbvqMGpwLsakeH45p1Jrb,Mungo Jerry,spotify:album:30UgyUTvmdYXNo7CeMabXY,In the Summertime,spotify:artist:2mbvqMGpwLsakeH45p1Jrb,Mungo Jerry,1970-01-01,https://i.scdn.co/image/ab67616d0000b2739bf5b1980b271ad321e73b0f,1,1,215800,https://p.scdn.co/mp3-preview/fac3e1142816840107f1eba47c64589375229749?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBAJE7000049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,classic uk pop",0.642,0.65,4.0,-8.567,1.0,0.0623,0.66,0.0,0.14,0.973,164.421,4.0,,Sanctuary Records,"C © 2006 Sanctuary Records Group Ltd., a BMG Company, P ℗ 2000 Sanctuary Records Group Ltd., a BMG Company",8837 +8838,spotify:track:3nKeNPOQXlQhT7vPPdwDaq,Lonely,spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,spotify:album:5YgxPLNYgoGPA6xd9XFhMi,Trouble Deluxe Edition,spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,2005-01-01,https://i.scdn.co/image/ab67616d0000b273f76344dfd580f3225d1022ae,1,8,235800,https://p.scdn.co/mp3-preview/3bab1970085de0754ac78aa2b6127243430e19f5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10400235,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.634,0.526,5.0,-7.881,0.0,0.0333,0.339,0.0,0.257,0.623,90.086,4.0,,SRC Records,"C © 2005 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Records, a Division of UMG Recordings, Inc. and SRC Records, Inc.",8838 +8839,spotify:track:2pobHsjxYNYI885GZVVZUc,Still,spotify:artist:0gWNSMYCSHF4wxIs1XTSDh,Bill Anderson,spotify:album:7gRDNrevWdBj5IJete0Nay,Po' Folks and Other Great Country Hits,spotify:artist:0gWNSMYCSHF4wxIs1XTSDh,Bill Anderson,2017-09-05,https://i.scdn.co/image/ab67616d0000b273f3cf55216e90dba192033c05,1,13,172225,https://p.scdn.co/mp3-preview/3770179685f019b833c8674a0e1156eec3bd5bd5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA2P1700178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.515,0.131,3.0,-20.088,1.0,0.0497,0.827,0.00971,0.0963,0.301,94.043,4.0,,FourMatt Music,"C 2017 FourMatt Music, P 2017 FourMatt Music",8839 +8840,spotify:track:1qJRJSd8TRFGkT5cnN93s9,Sometimes When We Touch - Radio Edit,"spotify:artist:4ePkEXGAFYetvqmFU2YZeb, spotify:artist:2DKOETVZ19zpFNWxN3y4XX","Newton, StarLab",spotify:album:1Chxi7lO0vc9FnK4S2UE3g,Time to Believe,spotify:artist:4ePkEXGAFYetvqmFU2YZeb,Newton,2013-12-01,https://i.scdn.co/image/ab67616d0000b2732379078f29524a3a30935096,1,13,235920,,False,0,QM6P41478677,spotify:user:bradnumber1,2020-03-05T09:20:39Z,ruta destroy,0.592,0.815,2.0,-13.517,1.0,0.0529,0.0799,0.0,0.216,0.689,133.918,4.0,,U4iA Recordings,"C (C) 2013 U4iA Recordings, P (P) 2015 U4iA Recordings",8840 +8841,spotify:track:27K3ZDS5B4fwjhwyihrdzC,(What A) Wonderful World - Remastered,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,spotify:album:4y3NeFX7yaEzQfxy70NhZ3,The Wonderful World Of Sam Cooke (Remastered),spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,1960,https://i.scdn.co/image/ab67616d0000b273c9095308718afc39e4b65e72,1,1,125506,https://p.scdn.co/mp3-preview/f86b244689128f478f1e8b31a364341830ae754b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA171120052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,soul,vocal jazz",0.524,0.543,11.0,-9.889,1.0,0.0397,0.734,0.0,0.275,0.877,128.091,4.0,,Keen Records,"C © 2011 Keen Records, P ℗ 2011 Keen Records",8841 +8842,spotify:track:6DiPkm7C3LD9XsJWTGPFgv,Three Little Pigs,spotify:artist:6dyxkRwYuTw6ezj1tjC2rY,Green Jelly,spotify:album:25yM9uYhtVeUHAI160wRcu,Cereal Killer Soundtrack,spotify:artist:6dyxkRwYuTw6ezj1tjC2rY,Green Jelly,1993-02-25,https://i.scdn.co/image/ab67616d0000b273244680b7c99c97532157cef9,1,2,353640,https://p.scdn.co/mp3-preview/0163dad9449168c02db6e363e878076b5cc76457?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USVR10300338,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"comic metal,funk metal",0.449,0.95,7.0,-4.978,1.0,0.225,0.0115,3.66e-05,0.514,0.339,144.469,4.0,,Volcano,"P (P) 1993 Volcano Entertainment II, LLC",8842 +8843,spotify:track:6aJ90LBl96bly9zuEH1U2X,This Is How We Do It,spotify:artist:0iVrCROxeyon7MZUW3MfzT,Montell Jordan,spotify:album:6J9fX2iXc9W7ILQUWvEhAx,Best Of Montell Jordan,spotify:artist:0iVrCROxeyon7MZUW3MfzT,Montell Jordan,2015-09-25,https://i.scdn.co/image/ab67616d0000b273430debb283066ac6725483cf,1,1,237546,https://p.scdn.co/mp3-preview/2387825b996ad8f192ad5264875563be4003c703?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USUM70728132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,new jack swing,r&b,urban contemporary",0.791,0.702,1.0,-7.333,1.0,0.0625,0.0176,0.0,0.423,0.788,103.646,4.0,,Def Soul,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P This Compilation ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",8843 +8844,spotify:track:3QyxB6fNUFNSLyjiwkycOY,Some Like It Hot - 2005 Remaster,spotify:artist:1EemADz12kjlGwkpY4EINv,The Power Station,spotify:album:4IpUyI6R1fyDtJF3cmJS4E,The Power Station,spotify:artist:1EemADz12kjlGwkpY4EINv,The Power Station,1985,https://i.scdn.co/image/ab67616d0000b273045e8fbb92f22237fc078417,1,1,305466,https://p.scdn.co/mp3-preview/5d897c05a066876c48dec07272ae67d00e0b0ae5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBAYE0400210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop",0.732,0.893,2.0,-8.355,1.0,0.0487,0.0808,2.06e-05,0.0783,0.654,125.491,4.0,,Parlophone UK,"C © 2014 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2014 Parlophone Records Ltd, a Warner Music Group Company",8844 +8845,spotify:track:09mhA1SJjMHniZPF4Hcihn,Company,spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,spotify:album:7fZH0aUAjY3ay25obOUf2a,Purpose (Deluxe),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2015-11-13,https://i.scdn.co/image/ab67616d0000b273b6d9a4fbb0bd49f0f034aead,1,6,208120,https://p.scdn.co/mp3-preview/3bbe7de0de838a4487495fd55422b0919c20a58b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71516762,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop",0.59,0.797,4.0,-4.901,0.0,0.0614,0.132,0.0,0.0846,0.425,94.948,4.0,,Universal Music Group,"C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",8845 +8846,spotify:track:2k2dy09WIdwhQUP73JkvKb,That Day,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,spotify:album:1XAbHdKbNGjFMvPYoVMwAy,White Lilies Island,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,2001-01-01,https://i.scdn.co/image/ab67616d0000b273704be8e2205e7c587dd6f989,1,1,282693,https://p.scdn.co/mp3-preview/6027a1ab5c0a3a8d10651eb9e139f21a7cec8acc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBARL0100225,spotify:user:bradnumber1,2023-10-23T09:03:23Z,"dance pop,europop,lilith,new wave pop,pop rock",0.432,0.8,2.0,-4.357,1.0,0.0337,0.011,0.0,0.369,0.283,111.316,3.0,,RCA Records Label,P (P) 2001 BMG Entertainment UK & Ireland Ltd.,8846 +8847,spotify:track:5MLLuLqPdUlx8bfKtdkLwO,The Best of My Love - 2013 Remaster,spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,spotify:album:2iCHyD9XHtA3vJFJIuXzqu,On the Border (2013 Remaster),spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,1974-03-22,https://i.scdn.co/image/ab67616d0000b273a7606c60725b45b636458d7c,1,10,274891,https://p.scdn.co/mp3-preview/316a1dd6ee911f6b1957dd028b63d416ba9bb008?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USEE11300333,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,heartland rock,mellow gold,rock,soft rock,yacht rock",0.559,0.393,0.0,-11.095,1.0,0.0237,0.717,0.0,0.0532,0.669,90.105,4.0,,Rhino/Elektra,"C © 1974 Asylum Records, P ℗ 1974 Asylum Records. Marketed by Warner Strategic Marketing, a Warner Music Group Company.",8847 +8848,spotify:track:5MabgvuQ3GGj2Ayborp60c,Better Than Love - Radio Edit,spotify:artist:3w4VAlllkAWI6m0AV0Gn6a,Hurts,spotify:album:1jw24NV7A714MKHo4edOXW,Better Than Love,spotify:artist:3w4VAlllkAWI6m0AV0Gn6a,Hurts,2010-05-14,https://i.scdn.co/image/ab67616d0000b27373958efa3f460b5b3db9bb82,1,1,210213,https://p.scdn.co/mp3-preview/23e8224fa486989042aed7911ad8986a8d71c8e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBARL1000318,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,neo-synthpop",0.472,0.874,11.0,-3.556,0.0,0.06,0.00873,7.25e-05,0.299,0.202,132.03,4.0,,RCA Records Label,P (P) 2010 Major Label Limited under exclusive licence to Sony Music Entertainment UK Limited,8848 +8849,spotify:track:5ImoRAws2ni1qYWrLR7sqi,Real Men,spotify:artist:6KOqPxwfNAmZPkiCnDE9yT,Joe Jackson,spotify:album:0qXKy00l8syNSBNjE15o4t,Night And Day,spotify:artist:6KOqPxwfNAmZPkiCnDE9yT,Joe Jackson,1982-01-01,https://i.scdn.co/image/ab67616d0000b273b8442651c8177ff950744441,1,8,242573,https://p.scdn.co/mp3-preview/13e9795359a8b9bcedfcce5055136dbeaf455119?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAAM8200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,new romantic,new wave,new wave pop,permanent wave,singer-songwriter,sophisti-pop",0.676,0.452,2.0,-7.283,1.0,0.0265,0.494,1.89e-06,0.08,0.345,113.899,4.0,,EMI,"C © 1997 A&M Records Limited, P ℗ 1982 A&M Records Limited",8849 +8850,spotify:track:3UN6cIn3VIyg0z1LCuFSum,Without You (feat. Usher),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:23zg3TcAtWQy7J6upgbUnj","David Guetta, USHER",spotify:album:4bTjdxhRRUiWfwj200f9Kl,Nothing but the Beat (Ultimate Edition),spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2012-12-07,https://i.scdn.co/image/ab67616d0000b2735c8cfe4b2c4aa89c9c92108e,1,4,208133,https://p.scdn.co/mp3-preview/dc7d9e45294e4f2ed194693a78e46e9a85fd1210?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GB28K1100030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.608,0.614,2.0,-3.727,1.0,0.0285,0.227,4.06e-06,0.157,0.402,127.884,4.0,,Parlophone (France),"C © 2012 What A Music Ltd., licence exclusive Parlophone Music France, P ℗ 2012 What A Music Ltd., licence exclusive Parlophone Music France",8850 +8851,spotify:track:1qiQduM84A0VeH8Y2uAbqi,That's the Way (I Like It) - 2004 Remaster,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,spotify:album:6S2ZnQo8V7k7EQZZEK3WcR,KC & the Sunshine Band,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,1975,https://i.scdn.co/image/ab67616d0000b273777ea94183cc6c14db581da3,1,2,185106,https://p.scdn.co/mp3-preview/ff437fc7b580d0f78125ff8f8e097462baf16bc3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAYE0400454,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new wave pop,soft rock,soul",0.68,0.877,5.0,-10.241,0.0,0.0353,0.191,0.000656,0.349,0.922,108.674,4.0,,Rhino,"C © 1975 Rhino Entertainment, P ℗ 1975 Rhino Entertainment. Marketed by Rhino Entertainment, a Warner Music Group Company",8851 +8852,spotify:track:3kcKlOkQQEPVwxwljbGJ5p,Kernkraft 400 (A Better Day),"spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:5Wg2b4Mp42gicxEeDNawf7","Topic, A7S",spotify:album:2NIChqkijGw4r4Dqfmg0A3,Kernkraft 400 (A Better Day),"spotify:artist:0u6GtibW46tFX7koQ6uNJZ, spotify:artist:5Wg2b4Mp42gicxEeDNawf7","Topic, A7S",2022-06-17,https://i.scdn.co/image/ab67616d0000b273e1cafe604179a9438dee7a94,1,1,165800,https://p.scdn.co/mp3-preview/c65bf1e69065314a08d43e124abd144c21aed3eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,DECE72201091,spotify:user:bradnumber1,2023-07-11T10:57:25Z,"german dance,pop dance,pop edm,uk dance,pop dance,scandipop",0.623,0.727,11.0,-5.57,0.0,0.0562,0.184,2.02e-05,0.309,0.4,125.975,4.0,,Virgin,"C © 2022 Topic, under exclusive license to Universal Music GmbH, P ℗ 2022 Topic, under exclusive license to Universal Music GmbH",8852 +8853,spotify:track:6QqK6a1CmV4L504uMQaGDH,Freeze-Frame,spotify:artist:69Mj3u4FTUrpyeGNSIaU6F,The J. Geils Band,spotify:album:48joW5905AMbTFLvy8ZWch,Freeze Frame,spotify:artist:69Mj3u4FTUrpyeGNSIaU6F,The J. Geils Band,1981,https://i.scdn.co/image/ab67616d0000b27338b2429ef948e6ca8d3ab599,1,1,237506,https://p.scdn.co/mp3-preview/0c84dbb7914ddf49eb026de7f460c3e681e33869?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USEM38800164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.573,0.806,0.0,-10.978,1.0,0.0356,0.152,0.0116,0.405,0.934,186.326,4.0,,EMI/EMI Records (USA),"C © 2006 EMI Catalog, P ℗ 2006 EMI Catalog",8853 +8854,spotify:track:2xpGRGcqQjNdmgkwzH0k4z,I Told the Brook,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,spotify:album:4Tzok4AlxCpo8YVFRWKk3a,It's All Happening - 23 Original Hits (1964-1975),spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,1995-01-01,https://i.scdn.co/image/ab67616d0000b2732a0a7bf57031f91316bb840a,1,16,193026,https://p.scdn.co/mp3-preview/791c95721a3b03be4a080fce680e91dd49757a4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAP06500008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.553,0.194,5.0,-15.082,1.0,0.0313,0.898,6.32e-06,0.107,0.355,106.575,3.0,,Albert Productions,"C © 1995 BMG AM Pty Ltd., P ℗ 1995 BMG AM Pty Ltd.",8854 +8855,spotify:track:4BbxSTDqfnX76DtwZLHuJb,The Boy Does Nothing,spotify:artist:5jLwURKdEPDvuYnac74s9c,Alesha Dixon,spotify:album:0DYVOKMWwUoom6RlqrSThb,The Boy Does Nothing,spotify:artist:5jLwURKdEPDvuYnac74s9c,Alesha Dixon,2008-10-31,https://i.scdn.co/image/ab67616d0000b273b55051396103003209beb3fe,1,1,214906,https://p.scdn.co/mp3-preview/8bc17f57401e1a973fcaf7ad5f3dbbbbdc790487?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBAHS0800416,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.57,0.961,3.0,-3.664,0.0,0.175,0.124,4.76e-05,0.137,0.842,174.053,4.0,,Asylum,"C © 2008 Warner Music UK Limited, P ℗ 2008 Warner Music UK Limited",8855 +8856,spotify:track:1eQeHTGrfh6rHU1sBHcjNw,Dead And Gone,"spotify:artist:4OBJLual30L7gRl5UkeRcT, spotify:artist:31TPClRtHm23RisEBtV3X7","T.I., Justin Timberlake",spotify:album:3uH0v0aAhwz0UYwDphuc7W,Paper Trail,spotify:artist:4OBJLual30L7gRl5UkeRcT,T.I.,2008-09-07,https://i.scdn.co/image/ab67616d0000b2730dd170d60a89c5cbb8cb8bb3,1,16,300533,https://p.scdn.co/mp3-preview/816714297339cf5722f3c9706ef9a034b93fb253?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USAT20803664,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,gangster rap,hip hop,pop rap,rap,southern hip hop,trap,dance pop,pop",0.7,0.778,0.0,-4.409,1.0,0.321,0.0415,0.0,0.477,0.432,134.986,4.0,,"Grand Hustle, LLC","C 2008 Grand Hustle, LLC | Cinq Recordings, P 2008 Grand Hustle, LLC | Cinq Recordings",8856 +8857,spotify:track:1AfYo6cKm3yHsJHdmNoGO1,Interstate Love Song,spotify:artist:2UazAtjfzqBF0Nho2awK4z,Stone Temple Pilots,spotify:album:2vi1ddPi3fY7vePMqxUVob,Purple,spotify:artist:2UazAtjfzqBF0Nho2awK4z,Stone Temple Pilots,1994-06-07,https://i.scdn.co/image/ab67616d0000b273a6e07487251d331f8a68b553,1,4,193613,https://p.scdn.co/mp3-preview/f42cc9d39437328b5c38f0c9c18debe8a78f4598?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20181162,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,nu metal,post-grunge,rock",0.214,0.947,4.0,-5.053,1.0,0.0507,0.000552,0.00352,0.238,0.483,170.616,4.0,,Atlantic Records,"C 1994 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P 1994 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",8857 +8858,spotify:track:4In6YbLZkQsVnjXdXUKcEi,She Hates Me,spotify:artist:3dXaa6jwM7B52GZpaJEIr5,Puddle Of Mudd,spotify:album:6hwbHXJsHxC2FDKqN7cGfd,Come Clean (Repackaged International Version),spotify:artist:3dXaa6jwM7B52GZpaJEIr5,Puddle Of Mudd,2001,https://i.scdn.co/image/ab67616d0000b27311b9e65e0be3cae3d53c4f6f,1,6,216760,https://p.scdn.co/mp3-preview/b1632066f278f090d9cf25f497b9ab6b53e9bd7e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10110582,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge",0.585,0.757,4.0,-5.424,1.0,0.0302,0.00643,0.0,0.741,0.619,109.781,4.0,,Universal Music Group,"C © 2002 Interscope Records, P ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",8858 +8859,spotify:track:1cV2ZlkzRvW3cXkW4mTduE,Fishin' in the Dark,spotify:artist:7y70dch6JuuuNnwlsOQvwW,Nitty Gritty Dirt Band,spotify:album:3d1juyGb4yIxMQ8Sh8UP7B,More Great Dirt: The Best of the Nitty Gritty Dirt Band,spotify:artist:7y70dch6JuuuNnwlsOQvwW,Nitty Gritty Dirt Band,1989-01-06,https://i.scdn.co/image/ab67616d0000b273a1b330ff81a5bbe2aa35d30a,1,6,202786,https://p.scdn.co/mp3-preview/5646b7a32792d3033b8c51a627662bfedf62338d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USWB10101477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,country rock,0.771,0.283,2.0,-16.326,1.0,0.0444,0.198,0.0,0.0888,0.906,77.756,4.0,,Warner Records,"C © 1989 Warner Records Inc., P ℗ 1989 Warner Records Inc.",8859 +8860,spotify:track:4vfzROmNsxedKICcHod5Rh,Here Comes the Hotstepper,spotify:artist:1VJspRsoC6c0bvqhnSiFCs,iNi Kamoze,spotify:album:3mc83JE8jhpDb9Jd0eNm7M,On Your 90's Radio,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2001-01-01,https://i.scdn.co/image/ab67616d0000b273924125344c7084390b588050,1,19,244813,https://p.scdn.co/mp3-preview/7dbd069530a347896dffd4bbd37739191c8731b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USSM19802296,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae,reggae fusion,roots reggae",0.852,0.537,7.0,-7.424,1.0,0.114,0.0328,0.000248,0.229,0.483,100.369,4.0,,Columbia,P (P) 2002 Sony Music Entertainment Inc.,8860 +8861,spotify:track:79NO70vlgF7CW5xFpM2Ysu,Emancipate Myself,spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,spotify:album:4ATe4EfAkzTRcyXCWIIy4u,Thirsty Merc (with Bonus Tracks),spotify:artist:0tTLmQvo0tn8vYlpJpA2no,Thirsty Merc,2004-08-16,https://i.scdn.co/image/ab67616d0000b2736681375da7e43ba067f123d6,1,2,251613,https://p.scdn.co/mp3-preview/689ca341da38b12d87c5cd680443281e784ce214?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUWA00411891,spotify:user:bradnumber1,2022-02-03T10:23:40Z,"australian pop,australian rock",0.735,0.799,11.0,-3.719,1.0,0.0563,0.0114,2.17e-06,0.123,0.469,111.233,4.0,,WM Australia,"C © 2005 Warner Music Australia Pty Limited, P ℗ 2005 Warner Music Australia",8861 +8862,spotify:track:5D5eypKWn0nhBBI35I2CBi,Lose My Mind,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,spotify:album:75Hvy9ou42WBVTNNSWxzJG,Same Kind Of Different,spotify:artist:3QSQFmccmX81fWCUSPTS7y,Dean Lewis,2017-05-12,https://i.scdn.co/image/ab67616d0000b2735b3e8ff86eb13869c77ab447,1,4,200880,https://p.scdn.co/mp3-preview/00e6996e9bc216b01e2ed993dec4c80d1eef6c6c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71700126,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop",0.554,0.641,8.0,-6.604,1.0,0.0307,0.0499,0.0,0.11,0.215,128.061,4.0,,Universal Music Group,"C © 2017 Universal Music Australia Pty Ltd., P ℗ 2017 Universal Music Australia Pty Ltd.",8862 +8863,spotify:track:57EyDAxErYua949EnLk9WO,For You,spotify:artist:7EK1bQADBoqbYXnT4Cqv9w,John Denver,spotify:album:7pXb9CIW4OJCnaatMWc2gw,Higher Ground,spotify:artist:7EK1bQADBoqbYXnT4Cqv9w,John Denver,1988,https://i.scdn.co/image/ab67616d0000b27354e908cce3be0d2d5deedca9,1,8,201293,https://p.scdn.co/mp3-preview/6d45008b73777f9b06b7b97dad2406d85d031489?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA370529707,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.27,0.114,0.0,-19.563,1.0,0.0341,0.869,2.91e-06,0.13,0.437,90.493,4.0,,Windstar Productions,,8863 +8864,spotify:track:17bGtGqqaXOgVnhnfx5NlE,Looking for Me,"spotify:artist:4CA8PTrbq1l5IgyvBA2JSV, spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:0Fb9qTWnjsB90xH3zWr4oa","Paul Woolford, Diplo, Kareen Lomax",spotify:album:55QDKKenyNcudrsy1Svd3o,Looking for Me,"spotify:artist:4CA8PTrbq1l5IgyvBA2JSV, spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:0Fb9qTWnjsB90xH3zWr4oa","Paul Woolford, Diplo, Kareen Lomax",2020-06-24,https://i.scdn.co/image/ab67616d0000b273ab080bd1dc604f9b4d9c1d71,1,1,211452,https://p.scdn.co/mp3-preview/5384998d39054851714258284257cad7e80d6677?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USZ4V2000222,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"house,uk dance,uk house,dance pop,edm,electro house,moombahton,pop dance",0.641,0.529,6.0,-11.536,1.0,0.0288,0.00441,0.000862,0.0809,0.449,121.027,4.0,,Ministry of Sound Recordings,P (P) 2020 Higher Ground under exclusive licence to Ministry of Sound Recordings Limited,8864 +8865,spotify:track:1dGr1c8CrMLDpV6mPbImSI,Lover,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1NAmidJlEaVgA3MpcPFYGq,Lover,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2019-08-23,https://i.scdn.co/image/ab67616d0000b273e787cffec20aa2a396a61647,1,3,221306,https://p.scdn.co/mp3-preview/aad996e106de5278d8387dc838e8f08105dcd588?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USUG11901473,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.359,0.543,7.0,-7.582,1.0,0.0919,0.492,1.58e-05,0.118,0.453,68.534,4.0,,Taylor Swift,"C © 2019 Taylor Swift, P ℗ 2019 Taylor Swift",8865 +8866,spotify:track:6pGUGTIaZ1H4jKHIL4Fged,Wild Strawberries,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,spotify:album:4r6fRqJ6wWnlci4hRabi08,PNAU (Tour Edition),spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,2009-01-01,https://i.scdn.co/image/ab67616d0000b27373b70fa58651c155ec3fff3a,1,2,235106,https://p.scdn.co/mp3-preview/95b861477e41a29cda0da8c69df52bd857c13aa0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV00700748,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,aussietronica,australian dance,australian electropop",0.647,0.933,7.0,-4.056,1.0,0.111,0.000351,0.00277,0.334,0.332,119.921,4.0,,Ministry Of Sound,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",8866 +8867,spotify:track:0oVSvrU612xkj7vbvbUAT2,Streets of Philadelphia - Single Edit,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,spotify:album:50OBIvFZb1J8Cz5hyyHJdj,Greatest Hits,spotify:artist:3eqjTLE0HfPfh78zjh6TqT,Bruce Springsteen,1995-02-27,https://i.scdn.co/image/ab67616d0000b2736c4b9a2a1a51b76e5182f8bb,1,14,195293,https://p.scdn.co/mp3-preview/015884640241cacd2456e0e0bc34fe2ed9f5f98b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19303834,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"heartland rock,mellow gold,permanent wave,rock,singer-songwriter",0.724,0.249,5.0,-15.488,1.0,0.0321,0.341,0.11,0.0933,0.444,93.667,4.0,,Columbia,P (P) 1995 Bruce Springsteen,8867 +8868,spotify:track:7uNvKuQZ40q2Qv3itfQDSi,Where The Streets Have No Name,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7k7aHoW1MGWWQR0KXvswkx,U218 Singles (Deluxe Version),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a589a051c46a5ff41125e9d6,1,9,286480,https://p.scdn.co/mp3-preview/e7f40c8971da77ffffef116bc795f0c8dc9e2f93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70605565,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.499,0.871,2.0,-4.75,1.0,0.0366,0.00574,0.00239,0.105,0.301,125.778,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",8868 +8869,spotify:track:4MutGO46F4aKOEjrS5UUkM,Crying for No Reason,spotify:artist:5EUdiv20t58GCS09VMKk7M,Katy B,spotify:album:2aSZDutyr98qI6ym4CuHb4,Little Red (Deluxe),spotify:artist:5EUdiv20t58GCS09VMKk7M,Katy B,2014-02-10,https://i.scdn.co/image/ab67616d0000b2732491284159c15ca3c476c501,1,4,242146,https://p.scdn.co/mp3-preview/4a6f81488589bec7b01225ba8f62eb8c79160f61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBARL1301553,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip house,uk funky,uk garage",0.667,0.701,1.0,-5.285,0.0,0.0323,0.415,0.000491,0.072,0.241,111.945,4.0,,Rinse / Columbia,P (P) 2014 Ammunition Promotions Limited under exclusive licence to Sony Music Entertainment UK Limited,8869 +8870,spotify:track:3vebNfy1J5fqvz05hKt2Xl,"Burning Bridges - From ""Kelly's Heroes""",spotify:artist:3Ngmu4UfpEPwwnfEcIRz1t,Mike Curb Congregation,spotify:album:3rhQoKnVUAezmIUDzU3uPv,Burning Bridges And Other Great Motion Picture Themes,spotify:artist:3Ngmu4UfpEPwwnfEcIRz1t,Mike Curb Congregation,1971-11-04,https://i.scdn.co/image/ab67616d0000b27396333d81559b01cc2127b073,1,1,165333,https://p.scdn.co/mp3-preview/d3d35c89d6e74b5795564d00c692bbed97ce9e8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USUM71703300,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.401,0.677,5.0,-9.325,1.0,0.0382,0.521,0.0,0.213,0.949,90.356,4.0,,Universal Records,"C © 1971 Republic Records, a Division of UMG Recordings, Inc., P ℗ 1971 Republic Records, a Division of UMG Recordings, Inc.",8870 +8871,spotify:track:262gSLgPEBJvowplt7WavQ,Can'T Touch It,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,spotify:album:0cXWcOhishaehiEhLIXnuB,Brand New Day,spotify:artist:07lgEPGfoA4Lqos6YGYPDU,Ricki-Lee,2007,https://i.scdn.co/image/4cfe6c7aa8a231436f2193d7cbd44b0b703224c9,1,6,178346,https://p.scdn.co/mp3-preview/52b9504eccb3c3492ee4b913dccf55ac0fe1cbc2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUOY00700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian talent show",0.584,0.863,4.0,-3.707,0.0,0.194,0.000331,0.206,0.207,0.695,103.946,4.0,,Shock Entertainment,C 2007 Public Opinion Music Pty Ltd. under agreement with Shock Records,8871 +8872,spotify:track:3tP0kdmWRSqmJAt4nR3ykw,Mississippi,spotify:artist:2rmQ5EEAIkloNGWdGlvCYM,Pussycat,spotify:album:0A1kkCm8cEEPcA6yIkz1wr,First Of All,spotify:artist:2rmQ5EEAIkloNGWdGlvCYM,Pussycat,1976-01-01,https://i.scdn.co/image/ab67616d0000b273f29bea2413e6f0ceb1fa84cb,1,8,273800,https://p.scdn.co/mp3-preview/e7ec360dc3bc02d65916ac426d6b5621c7bfcc92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,NLA277500082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nederpop,0.605,0.731,10.0,-9.327,1.0,0.0358,0.24,0.000459,0.257,0.638,123.332,4.0,,"Universal Music, a division of Universal International Music BV","C © 2001 Universal International Music B.V., P ℗ 2001 Universal International Music B.V.",8872 +8873,spotify:track:0zKZ3TSGmBdklnLlnxJbWb,"Don't Let Me Be Misunderstood / Esmeralda Suite - 7"" Edit","spotify:artist:0iGmfKLgK5eSMgHp8YgLnS, spotify:artist:6AUru0agJtAyp0xa000Fhg","Santa Esmeralda, Leroy Gomez",spotify:album:4o63NldmBGI3MNjrN25aR8,Don't Let Me Be Misunderstood / Esmeralda Suite,spotify:artist:0iGmfKLgK5eSMgHp8YgLnS,Santa Esmeralda,2015-11-27,https://i.scdn.co/image/ab67616d0000b273925a32e50aa4dd4ad5e547d2,1,4,227070,https://p.scdn.co/mp3-preview/6df21d68191e68437cfca4429762762dfbad1645?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USGZ21562191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.6,0.819,9.0,-8.222,0.0,0.0676,0.00118,0.000157,0.117,0.923,118.035,4.0,,"Essential 12"" Classics",C (C) 2015 Essential Media Group LLC,8873 +8874,spotify:track:31MkGwj0SWgZaTvEt5Hgxv,What About Us,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:3rHjznKxeCNz38iF3tGv4J,What About Us,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2017-08-10,https://i.scdn.co/image/ab67616d0000b27364c09006ff7004c5e1078c57,1,1,271519,https://p.scdn.co/mp3-preview/916cfc7a147b17fc185cb5c68eb4affc32074db5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USRC11701586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.386,0.594,1.0,-6.186,1.0,0.0566,0.0252,3.19e-06,0.0873,0.187,113.756,4.0,,RCA Records Label,"P (P) 2017 RCA Records, a division on Sony Music Entertainment",8874 +8875,spotify:track:4HHQCUQyVIpxt5atyISGMt,Ain't Been Done,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:3hQ64JbgfPMbXwYRvmZ41z,Sweet Talker (Deluxe Version),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2014-10-10,https://i.scdn.co/image/ab67616d0000b27301b57b2d37dad2a9e1fb10b9,1,1,180520,https://p.scdn.co/mp3-preview/1b488b3fcd348d62fd7470984f44e70f535862c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71412778,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.56,0.923,10.0,-2.633,1.0,0.191,0.116,1.7e-06,0.241,0.807,167.903,4.0,,Universal Music Group,"C © 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC, P ℗ 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC",8875 +8876,spotify:track:5pkd9ib1RgbkAd1R9bIOCa,Cracklin' Rosie - Single Version,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,spotify:album:0WGnkp386fyXfTvKwTIVRO,Tap Root Manuscript,spotify:artist:7mEIug7XUlQHikrFxjTWes,Neil Diamond,1970,https://i.scdn.co/image/ab67616d0000b2738759a2487d817843bdf1462d,1,1,179933,https://p.scdn.co/mp3-preview/7395d6e2fdd569de40864b9603edba3dff3f7502?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USMC17046641,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,folk rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.564,0.505,1.0,-14.835,1.0,0.0336,0.318,0.0,0.163,0.863,127.815,4.0,,Geffen*,"C © 1972 MCA Records Inc., P ℗ 1972 UMG Recordings, Inc.",8876 +8877,spotify:track:5s6pQWa3WI2hqe8bYa8Ai9,Love Songs Ain't for Us (feat. Keith Urban),"spotify:artist:2DORQjKJVYZMx9uu82UGtT, spotify:artist:0u2FHSq3ln94y5Q57xazwf","Amy Shark, Keith Urban",spotify:album:7M3LEiOe6WBwqNkEYytwXg,Love Songs Ain't for Us,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2021-02-18,https://i.scdn.co/image/ab67616d0000b273b2b25a7bf2b2af84a2b3df1a,1,1,220866,https://p.scdn.co/mp3-preview/0f8b6002430f7373ef829251eb1f8ec04f294a1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUBM02000723,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,contemporary country,country,country road",0.396,0.351,4.0,-7.787,1.0,0.0655,0.591,0.0,0.158,0.245,182.457,3.0,,Wonderlick,P (P) 2021 Amy Shark under exclusive license to the Wonderlick Recording Company/Sony Music Entertainment Australia Pty Ltd.,8877 +8878,spotify:track:01uk7IzZyFNfQTDBXxx6NB,One Last Song,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,spotify:album:3TJz2UBNYJtlEly0sPeNrQ,The Thrill Of It All (Special Edition),spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2017-11-03,https://i.scdn.co/image/ab67616d0000b273005cd7d0ae87b081601f6cca,1,3,192922,https://p.scdn.co/mp3-preview/45b0d30bfc91173052a2b124e3ad2b02f9e1a8f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBUM71703749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk pop",0.671,0.53,1.0,-6.43,1.0,0.0284,0.367,0.0,0.321,0.485,103.327,3.0,,PLG - Capitol,"C © 2017 Universal Music Operations Limited, P ℗ 2017 Universal Music Operations Limited",8878 +8879,spotify:track:7tFiyTwD0nx5a1eklYtX2J,Bohemian Rhapsody - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:6X9k3hSsvQck2OfKYdBbXr,A Night At The Opera (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1975-11-21,https://i.scdn.co/image/ab67616d0000b273ce4f1737bc8a646c8c4bd25a,1,11,354320,https://p.scdn.co/mp3-preview/d56de4777551c3eb7430ecf289809b1653147bf8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBUM71029604,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.391,0.402,0.0,-9.961,0.0,0.0539,0.289,0.0,0.243,0.228,143.879,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",8879 +8880,spotify:track:0A4PZuepTcIQVvA5m7R0M1,Don't You (Forget About Me) - Remastered,spotify:artist:6hN9F0iuULZYWXppob22Aj,Simple Minds,spotify:album:7dKQCCQnnkqgRQFxKRDqkJ,Celebrate (Greatest Hits),spotify:artist:6hN9F0iuULZYWXppob22Aj,Simple Minds,2013-03-25,https://i.scdn.co/image/ab67616d0000b2733a973ec9729173683bf5c266,1,14,263973,https://p.scdn.co/mp3-preview/38f40fe3d0b47ee1476bba46b42af26a1c2810de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBAAA0100587,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,scottish new wave,soft rock",0.602,0.784,11.0,-7.976,0.0,0.0313,0.00398,0.0852,0.0931,0.918,133.019,4.0,,Virgin Catalogue,"C © 2013 Virgin Records Ltd, P This Compilation ℗ 2013 Virgin Records Ltd",8880 +8881,spotify:track:6fTsxhIosAU6zXTAhSaemI,Chasing Highs,spotify:artist:6c0mTNAxJxlp9HpKTUZwA8,ALMA,spotify:album:1Yx8WUnHX4zrpQVF3nOPUg,Chasing Highs,spotify:artist:6c0mTNAxJxlp9HpKTUZwA8,ALMA,2017-03-23,https://i.scdn.co/image/ab67616d0000b273a77067da548e040dde5459ac,1,1,195678,https://p.scdn.co/mp3-preview/514c157114c20ec01811f24011e1d6af8208dbc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FIPEB1700041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electropop,0.782,0.764,2.0,-4.591,0.0,0.0572,0.303,1.17e-05,0.433,0.526,111.968,4.0,,Universal Music Group,"C © 2017 PME Records, under exclusive license to Virgin Records, a division of Universal Music GmbH, P ℗ 2017 PME Records, under exclusive license to Virgin Records, a division of Universal Music GmbH",8881 +8882,spotify:track:60a0Rd6pjrkxjPbaKzXjfq,In the End,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:6hPkbAV3ZXpGZBGUvL6jVM,Hybrid Theory (Bonus Edition),spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2000,https://i.scdn.co/image/ab67616d0000b273e2f039481babe23658fc719a,1,8,216880,https://p.scdn.co/mp3-preview/b5ee275ca337899f762b1c1883c11e24a04075b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,87,USWB10002407,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.556,0.864,3.0,-5.87,0.0,0.0584,0.00958,0.0,0.209,0.4,105.143,4.0,,Warner Records,"C © 2000 Warner Records Inc., P ℗ 2000 Warner Records Inc.",8882 +8883,spotify:track:5dNfHmqgr128gMY2tc5CeJ,Ignition - Remix,spotify:artist:2mxe0TnaNL039ysAj51xPQ,R. Kelly,spotify:album:35Ea7OWXZPZB1vAPiaEGOM,Chocolate Factory,spotify:artist:2mxe0TnaNL039ysAj51xPQ,R. Kelly,2003,https://i.scdn.co/image/ab67616d0000b2734cb949e9f103f12d96797121,1,10,186066,https://p.scdn.co/mp3-preview/4adf68efb6228b5090979e233e2fa1236e9afa60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USJI10300018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.795,0.523,1.0,-7.165,1.0,0.0423,0.061,0.0,0.0914,0.855,133.024,4.0,,Jive,"P (P) 2003 , 2002 Zomba Recording LLC",8883 +8884,spotify:track:2XMTqoHHSH0lvuXrvIEdco,Capsize,"spotify:artist:7xEFii6utZmQ61kX59HmLH, spotify:artist:1oKdM70mJD8VvDOTKeS8t1","FRENSHIP, Emily Warren",spotify:album:5qeKpDQFyotJjLh61pUZQo,Truce - EP,spotify:artist:7xEFii6utZmQ61kX59HmLH,FRENSHIP,2016-09-02,https://i.scdn.co/image/ab67616d0000b273670048174db73ef55039c7bf,1,2,237706,https://p.scdn.co/mp3-preview/e84caeb4ae95b8b6b6f1ef9e2848fa1ccce893f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USSM11605173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,indie poptimism,la pop,nyc pop",0.683,0.708,5.0,-6.244,0.0,0.0305,0.0398,0.155,0.686,0.355,92.991,4.0,,Columbia,"P (P) 2016 Columbia Records, a Division of Sony Music Entertainment",8884 +8885,spotify:track:0mx1IpcgziXENQOcqpHeMp,Borderline,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:3cc9LPeZ2WB7qtMuGbkwbG,Celebration,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b273a80f02b8329e3f24fb69a87e,1,14,238360,https://p.scdn.co/mp3-preview/c92bbf72ad2eb8f85eba0b6af64b6ae8e25c7324?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USWB10903611,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.807,0.766,2.0,-5.185,1.0,0.0313,0.0808,3.8e-05,0.115,0.373,119.867,4.0,,Warner Records,"C © 2009 Warner Records Inc., P 2007 ℗ 2009 This Compilation P2009 Warner Records Inc.",8885 +8886,spotify:track:72vWmeqYcT1irKClpbenQm,"1, 2 Step (feat. Missy Elliott) - Main","spotify:artist:2NdeV5rLm47xAvogXrYhJX, spotify:artist:2wIVse2owClT7go1WT98tk","Ciara, Missy Elliott",spotify:album:7H6YocXhKJ46aWF0XoLCSS,Goodies,spotify:artist:2NdeV5rLm47xAvogXrYhJX,Ciara,2005-01-22,https://i.scdn.co/image/ab67616d0000b273802ffb408c9dc543d461f37a,1,2,202213,https://p.scdn.co/mp3-preview/3eae678dd869e893a641eb384b2953f36bf35831?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USLF20400135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,pop,r&b,urban contemporary,dance pop,hip hop,hip pop,neo soul,pop rap,r&b,rap,urban contemporary,virginia hip hop",0.939,0.498,5.0,-10.94,0.0,0.161,0.0444,0.00128,0.0475,0.801,113.053,4.0,,LaFace Records,P (P) 2004 LaFace Records LLC,8886 +8887,spotify:track:3OOFEF20WqtsUPcRbPY3L7,Short Skirt / Long Jacket,spotify:artist:6A43Djmhbe9100UwnI7epV,CAKE,spotify:album:5OCg9OWnL1PY4tW2ON8ssj,Comfort Eagle,spotify:artist:6A43Djmhbe9100UwnI7epV,CAKE,2001-07-24,https://i.scdn.co/image/ab67616d0000b27331dc2b6da1570a9c8929e0f6,1,4,204128,https://p.scdn.co/mp3-preview/ac3673123affeea07a4c09a570f14fd358710f8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM10104611,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,pop rock,post-grunge,sacramento indie",0.771,0.809,2.0,-10.029,1.0,0.0461,0.003,0.0223,0.0252,0.886,120.038,4.0,,Columbia,"P (P) 2001 Columbia Records, a division of Sony Music Entertainment",8887 +8888,spotify:track:3MFFDRC4wTN9JNGtzXsZlN,Love Her Madly,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,spotify:album:7IKUTIc9UWuVngyGPtqNHS,L.A. Woman,spotify:artist:22WZ7M8sxp5THdruNY3gXt,The Doors,1971-04-19,https://i.scdn.co/image/ab67616d0000b2733992c7ab57975935b29fa22b,1,2,198466,https://p.scdn.co/mp3-preview/345d46c9b928f65d5a3ed882fe3c60d77f5f46ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USEE19900765,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid rock,album rock,classic rock,hard rock,psychedelic rock,rock",0.565,0.587,4.0,-7.393,0.0,0.0317,0.0573,0.00493,0.0416,0.966,147.462,4.0,,Rhino/Elektra,"C © 1971 Elektra Entertainment for United States and WEA International Inc. for the world outside of the United States., P ℗ 1971 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States",8888 +8889,spotify:track:0rTV5WefWd1J3OwIheTzxM,Talk,"spotify:artist:6LuN9FCkKOj5PcnpouEgny, spotify:artist:6nS5roXSAGhTGr34W6n7Et","Khalid, Disclosure",spotify:album:58kvvQvx6OtLqEDhqYSzyM,Talk,"spotify:artist:6LuN9FCkKOj5PcnpouEgny, spotify:artist:6nS5roXSAGhTGr34W6n7Et","Khalid, Disclosure",2019-02-07,https://i.scdn.co/image/ab67616d0000b2730eb47b2eec859a783ceb72c8,1,1,197487,https://p.scdn.co/mp3-preview/f63f47b2ed5c3f81c303c630af40b2fad0d14a9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USRC11900004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop r&b,edm,house,indietronica,uk dance",0.9,0.4,0.0,-8.443,1.0,0.124,0.0501,0.0,0.0876,0.338,136.001,4.0,,"Right Hand Music Group, LLC/RCA Records","P (P) 2019 RCA Records, a division of Sony Music Entertainment",8889 +8890,spotify:track:6ihL9TjfRjadfEePzXXyVF,Gives You Hell,spotify:artist:3vAaWhdBR38Q02ohXqaNHT,The All-American Rejects,spotify:album:3BCMpDOcQlbCZpf5vnTadZ,When The World Comes Down,spotify:artist:3vAaWhdBR38Q02ohXqaNHT,The All-American Rejects,2008-01-01,https://i.scdn.co/image/ab67616d0000b2738f6b4035c82eb9cf42e9d8d7,1,4,213106,https://p.scdn.co/mp3-preview/d86175c06b0fe2d2b1357774a480cf0994c3a767?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USUM70837368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neo mellow,neon pop punk,pop punk,pop rock,post-grunge",0.718,0.691,4.0,-6.44,1.0,0.0387,0.0159,0.0,0.0627,0.552,100.008,4.0,,Interscope,"C © 2008 DGC/Interscope Records, P ℗ 2008 DGC/Interscope Records",8890 +8891,spotify:track:3Yh9lZcWyKrK9GjbhuS0hR,Good as Hell,spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,spotify:album:4CA8GvVF7swZafg0zYh9qq,Good as Hell,spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,2016-03-09,https://i.scdn.co/image/ab67616d0000b273cb4af8530c68c59fa98c4aa8,1,1,159735,https://p.scdn.co/mp3-preview/eff7853a768016bf8dbfbd33436a43393fef2d0d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT21600354,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"escape room,minnesota hip hop,pop,trap queen",0.682,0.919,0.0,-3.18,0.0,0.0875,0.256,0.0,0.442,0.535,95.982,4.0,,Nice Life/Atlantic,"C © 2016 Nice Life Recording Company and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Nice Life Recording Company and Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",8891 +8892,spotify:track:6SluaPiV04KOaRTOIScoff,Show Me Love - Radio Version,spotify:artist:6UE7nl9mha6s8z0wFQFIZ2,Robyn,spotify:album:5OvepfQiCFMCzML6fTgrBW,Robyn Is Here,spotify:artist:6UE7nl9mha6s8z0wFQFIZ2,Robyn,1995-10-13,https://i.scdn.co/image/ab67616d0000b2732dbf3c8a92b1af1942918ad0,1,6,229226,https://p.scdn.co/mp3-preview/f32fddd5a17a64a0350d5de4a7abfeba2f79f71f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,SEBML9707010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo-synthpop,scandipop,swedish electropop,swedish pop",0.546,0.643,6.0,-4.069,0.0,0.0437,0.0745,0.0,0.213,0.704,181.838,4.0,,RCA Records Label,"P (P) 1998 Ricochet/BMG Sweden AB, A unit of BMG Entertainment",8892 +8893,spotify:track:2CAK2t1reUgPK6OMgAMURB,Wasted,"spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z, spotify:artist:1mU61l2mcjEFraXZLpvVMo","Tiësto, Matthew Koma",spotify:album:7we1BNenehBwimeIkK0jL0,A Town Called Paradise,spotify:artist:2o5jDhtHVPhrJdv3cEQ99Z,Tiësto,2014-06-13,https://i.scdn.co/image/ab67616d0000b2734f4944ceeffac9693cc90e40,1,8,190013,https://p.scdn.co/mp3-preview/af63e1ed9b523aa62953da086f81161bf0abf92f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CYA111400022,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,brostep,dutch edm,edm,house,pop dance,progressive electro house,slap house,trance,pop edm",0.638,0.816,2.0,-5.503,1.0,0.0308,0.00149,0.00115,0.195,0.386,112.014,4.0,,Universal Music Group,"C © 2014 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings, a division of Universal Music BV, P ℗ 2014 Musical Freedom Label Ltd, under exclusive license to PM:AM Recordings, a division of Universal Music BV",8893 +8894,spotify:track:12Ns5IphkblPmHxpRILG9t,Don't Wake Me Up,spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,spotify:album:6sAeDMYVsr4YUFA8aWk4yj,Fortune (Deluxe Version),spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2012-06-29,https://i.scdn.co/image/ab67616d0000b27345dab83fce8c992ab0fd3bc8,1,13,222306,https://p.scdn.co/mp3-preview/ac99350fd09118bb67aef0254c92248ecf28e86c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11200464,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap",0.602,0.691,7.0,-5.197,0.0,0.051,0.0548,0.0,0.144,0.206,127.967,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",8894 +8895,spotify:track:6VRhkROS2SZHGlp0pxndbJ,Bangarang (feat. Sirah),"spotify:artist:5he5w2lnU9x7JFhnwcekXX, spotify:artist:3oAazIwC0nAYkOKVQPUC38","Skrillex, Sirah",spotify:album:5XJ2NeBxZP3HFM8VoBQEUe,Bangarang EP,spotify:artist:5he5w2lnU9x7JFhnwcekXX,Skrillex,2011-12-27,https://i.scdn.co/image/ab67616d0000b2736081278cb62df2757d55633b,1,2,215253,https://p.scdn.co/mp3-preview/00b4b4d11169ef33d3fb65ef9bdbf292100b0a1b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,USAT21104243,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,complextro,edm,electro,pop dance",0.716,0.972,7.0,-2.302,1.0,0.196,0.0145,3.22e-05,0.317,0.576,110.026,4.0,,Big Beat Records/Atlantic,"C © 2012 Big Beat Records, Inc. for the United States and WEA International for the world outside the United States., P ℗ 2012 Big Beat Records, Inc. for the United States and WEA International for the world outside the United States.",8895 +8896,spotify:track:5lWSa1rmuSL6OBPOnkAqoa,Rasputin,spotify:artist:54R6Y0I7jGUCveDTtI21nb,Boney M.,spotify:album:155cebHEGGBqYJAXKWJw6D,Daddy Cool,spotify:artist:54R6Y0I7jGUCveDTtI21nb,Boney M.,1994-03-14,https://i.scdn.co/image/ab67616d0000b273d792d961638fd28f8d281947,1,3,220666,https://p.scdn.co/mp3-preview/99129129d46b1937b0897e38d561110e1cd319f4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,DED160000010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.69,0.752,6.0,-11.47,0.0,0.0455,0.463,0.00102,0.595,0.97,126.005,4.0,,Ariola Express,P (P) 2000 BMG Berlin Musik GmbH/MCI,8896 +8897,spotify:track:3gNGi2iUGHXGpBQHce6Nua,When You Were Young,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,spotify:album:62zNw66LWCYoYSPGkJ2qCm,Sam's Town,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,2006-10-03,https://i.scdn.co/image/ab67616d0000b273a1fa9bedf4794b53c1d2f259,1,3,220426,https://p.scdn.co/mp3-preview/314efbfac26df58f98898087eaa9f56ae2dca944?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70605164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,modern rock,permanent wave,rock",0.467,0.988,11.0,-3.313,1.0,0.112,0.000152,0.0484,0.28,0.321,130.435,4.0,,Universal Music Group,"C © 2006 The Island Def Jam Music Group, P ℗ 2006 The Island Def Jam Music Group",8897 +8898,spotify:track:2nUJvBO87SkxCViQsLc9Zr,Man's Not Hot,spotify:artist:7mnAzEmgquhrVtGob81SmO,Big Shaq,spotify:album:65wFooaReDlx2R70m1DN7J,Man's Not Hot,spotify:artist:7mnAzEmgquhrVtGob81SmO,Big Shaq,2017-09-22,https://i.scdn.co/image/ab67616d0000b273e297a281788cf46e9094a2ca,1,1,186026,https://p.scdn.co/mp3-preview/01061cb61da7861b8b52a170ff17348f561a8b55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71705147,spotify:user:bradnumber1,2021-08-08T09:26:31Z,london rap,0.895,0.885,0.0,-4.182,1.0,0.268,0.11,4.04e-05,0.106,0.633,134.973,4.0,,Universal Music Group,"C © 2017 Michael Dapaah, under exclusive licence to Universal Music Operations Limited, P An Island Records Release; ℗ 2017 Michael Dapaah, under exclusive licence to Universal Music Operations Limited",8898 +8899,spotify:track:2z7dSOS87BhVTTGOopZhC5,I Was Made For Loving You,"spotify:artist:1vSN1fsvrzpbttOYGsliDr, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Tori Kelly, Ed Sheeran",spotify:album:4UwFWirjlWiHHAL7k7t9Bo,Unbreakable Smile - Deluxe,spotify:artist:1vSN1fsvrzpbttOYGsliDr,Tori Kelly,2016-01-29,https://i.scdn.co/image/ab67616d0000b2738e51f8b7b7a9c3ebb9034cba,1,7,188946,https://p.scdn.co/mp3-preview/1db742c61707c3055ba8d821c5b2281a333fc4eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USUM71505913,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop,pop,singer-songwriter pop,uk pop",0.352,0.34,2.0,-11.925,1.0,0.0295,0.349,0.0,0.0992,0.226,145.024,4.0,,Tori Kelly,"C © 2016 Capitol Records & Schoolboy Records, P ℗ 2016 Capitol Records & Schoolboy Records",8899 +8900,spotify:track:5zA8vzDGqPl2AzZkEYQGKh,Uptown Girl,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:3R3x4zIabsvpD3yxqLaUpc,An Innocent Man,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1983-08-08,https://i.scdn.co/image/ab67616d0000b273814cbc4746358a25c84c62e7,1,6,197706,https://p.scdn.co/mp3-preview/62bccc2f61bb990df31d1a247a3bf69efd32da18?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USSM18300270,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.701,0.944,4.0,-2.986,1.0,0.0455,0.0755,0.0,0.601,0.792,128.993,4.0,,Columbia,"P (P) 1983 Columbia Records, a division of Sony Music Entertainment",8900 +8901,spotify:track:4NtUY5IGzHCaqfZemmAu56,Dancing Queen,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1M4anG49aEs4YimBdj96Oy,Arrival,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1976,https://i.scdn.co/image/ab67616d0000b2733c60391b048d33edff6f3d62,1,2,230693,https://p.scdn.co/mp3-preview/1116076e3d1538852d6605ada1fd7130c8fc75a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,SEAYD7601020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.539,0.884,9.0,-6.53,1.0,0.0403,0.382,0.00166,0.76,0.752,100.812,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",8901 +8902,spotify:track:3bSkTiWBmcib0ptB6XKWha,Jona Vark,spotify:artist:54xBWCXYw0pydXBknIdiC6,GATC,spotify:album:1OilKlEbVfBaEJEfkFX8Lo,Gilgamesh,spotify:artist:54xBWCXYw0pydXBknIdiC6,GATC,2010-10-04,https://i.scdn.co/image/ab67616d0000b273b634bf67662f9291f3e71732,1,3,218560,https://p.scdn.co/mp3-preview/cbb8ab4afe658ab27537ddcefb35c3dbeab70638?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1000831,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,shimmer pop",0.68,0.933,5.0,-5.566,1.0,0.0329,0.00886,0.0115,0.58,0.966,125.056,4.0,,RCA Records Label,P (P) 2010 Sony Music Entertainment UK Limited,8902 +8903,spotify:track:7mSUMlp8ttG8H00RePyZ5J,Right Back Where We Started From - 1994 Remaster,spotify:artist:6jQ9UtYXqNfVnPkrH1Xxwi,Maxine Nightingale,spotify:album:4Qy5iKJx5KyRfYkXLJVcnS,Playlist: Dance,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2008-04-28,https://i.scdn.co/image/ab67616d0000b2734a51b9a84a6de879f9cddc05,1,18,190733,https://p.scdn.co/mp3-preview/728508636a80869d51c0b0d9e78169d4e74d9c72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE9400846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.688,0.676,5.0,-5.425,1.0,0.038,0.58,0.00361,0.483,0.933,148.026,4.0,,Parlophone UK,"C 2008 Parlophone Records Ltd, a Warner Music Group Company, P 2008 Parlophone Records Ltd, a Warner Music Group Company",8903 +8904,spotify:track:0a8a8EzWXxSExS9fnTyYb3,Rainy Days And Mondays,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,spotify:album:6nE8lKuURaEUm51rtlF7d2,Carpenters,spotify:artist:1eEfMU2AhEo7XnKgL7c304,Carpenters,1971-01-01,https://i.scdn.co/image/ab67616d0000b273194d473ce87e1d1ed4a2de9a,1,1,218893,https://p.scdn.co/mp3-preview/b202aeea46da9bc91b4bae5e84c7d83927aaa02e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWWW0140298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,mellow gold,soft rock",0.352,0.235,10.0,-11.513,1.0,0.0322,0.85,0.0,0.0688,0.219,74.719,4.0,,Universal Music Group,"C © 1971 A&M Records, P ℗ 1971 UMG Recordings, Inc.",8904 +8905,spotify:track:59ZTxQo8rBycIXPLUIKvE2,Dirrty (feat. Redman),"spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS, spotify:artist:7xTKLpo7UCzXSnlH7fOIoM","Christina Aguilera, Redman",spotify:album:2USigX9DhGuAini71XZEEK,Stripped,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,2002-07-19,https://i.scdn.co/image/ab67616d0000b2737cd872c7701c4737b2f81d87,1,16,298853,https://p.scdn.co/mp3-preview/09e5725942d39324740547e316de8922484dcd1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USRC10200845,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,east coast hip hop,hardcore hip hop,new jersey rap,wu fam",0.64,0.889,2.0,-3.073,1.0,0.322,0.107,0.0,0.339,0.436,99.931,4.0,,RCA Records Label,P (P) 2002 Sony Music Entertainment,8905 +8906,spotify:track:3Y8Ff1nH44jFywAtpgmleZ,1979 - Remastered 2012,spotify:artist:40Yq4vzPs9VNUrIBG5Jr2i,The Smashing Pumpkins,spotify:album:4bPT6Q8ppaSNppk1kbEbLl,Mellon Collie And The Infinite Sadness (Remastered),spotify:artist:40Yq4vzPs9VNUrIBG5Jr2i,The Smashing Pumpkins,1995-12-12,https://i.scdn.co/image/ab67616d0000b2734c42e40240028664f939f81c,2,5,266200,https://p.scdn.co/mp3-preview/5c2f38c90920f9d3db3784bc0205cf24ec7a1abe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USVI21200910,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,permanent wave,rock,spacegrunge",0.767,0.787,3.0,-9.897,1.0,0.0331,0.0163,0.583,0.0513,0.964,126.879,4.0,,Virgin Records,"C © 2012 VIRGIN RECORDS, P ℗ 2012 VIRGIN RECORDS",8906 +8907,spotify:track:3I8OxXXhFXnuVFmDz1DQNA,One Day / Reckoning Song (Wankelmut Remix) [Radio Edit],"spotify:artist:2TwepUY7feaTuipStcyzLZ, spotify:artist:01e2lCvLZ4fLUIRy68nptH","Asaf Avidan & the Mojos, Wankelmut",spotify:album:53hvutsfBAIIg3pHvW122r,Ballermann Hitparade,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-03-17,https://i.scdn.co/image/ab67616d0000b273868d2051b3234ca1950fa185,1,13,210880,https://p.scdn.co/mp3-preview/5f9da78704e738812fe9c2c51c713697721cfd7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEQ321200132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"israeli pop,deep euro house",0.822,0.641,3.0,-7.051,0.0,0.0587,0.213,8.55e-05,0.108,0.577,118.99,4.0,,Sony Music Catalog,P (P) 2014 Sony Music Entertainment Germany GmbH,8907 +8908,spotify:track:4alHo6RGd0D3OUbTPExTHN,Just What I Needed,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:4tJPWT4r4FSKwy784Qs1Fq,The Cars,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,1978-06-06,https://i.scdn.co/image/ab67616d0000b273f725bc7907dcf15aa2c6e7b7,1,3,225626,https://p.scdn.co/mp3-preview/2bb7589a2ef19bc8cb2d198048f729ea7240b813?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USEE17500009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.62,0.579,4.0,-9.307,1.0,0.0473,0.0152,6.4e-05,0.0858,0.691,127.215,4.0,,Elektra Records,"C © 1978 Elektra Records for the United States and WEA International for the world outside of the United States., P ℗ 1978 Elektra Entertainment, a division of Warner Communications, Inc. for the United States and WEA International Inc. for the world outside of the United States.",8908 +8909,spotify:track:1kElUlboZiuwVXnv1FSiYQ,Down On The Border,spotify:artist:6clbbhnIqpHnqxwtOWcilg,Little River Band,spotify:album:26GMUYsLxKd24UiJLOpNzL,Greatest Hits,spotify:artist:6clbbhnIqpHnqxwtOWcilg,Little River Band,2014-01-01,https://i.scdn.co/image/ab67616d0000b2730a9522b6335d4fe6d2af03d1,1,9,171773,,False,0,USCA21001433,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.69,0.412,9.0,-10.074,0.0,0.0392,0.63,4.03e-05,0.052,0.573,130.74,4.0,,Universal Music Group,"C © 2014 Capitol Records, LLC, P ℗ 2014 Capitol Records, LLC",8909 +8910,spotify:track:6RpiAj9Ofv0Uqp6n2OuRoh,In the Ayer (feat. will.I.am),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:085pc2PYOi8bGKj0PNjekA","Flo Rida, will.i.am",spotify:album:5j1wrOAOm5KFd17pPiSvle,Mail on Sunday,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2008-03-17,https://i.scdn.co/image/ab67616d0000b273f9bd7a6c772ac496015be3f8,1,9,220506,https://p.scdn.co/mp3-preview/7b3033926b513c8117d0393d2cbac242e5048e9e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAT20801524,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,dance pop,pop",0.83,0.746,5.0,-6.286,0.0,0.0579,0.00456,0.0,0.26,0.646,125.992,4.0,,Poe Boy/Atlantic,"C © 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",8910 +8911,spotify:track:3E5XrOtqMAs7p2wKhwgOjf,Just Dance,"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:7fObcBw9VM3x7ntWKCYl0z","Lady Gaga, Colby O'Donis",spotify:album:4yHr095BMG5I3IRH4ToE5l,The Fame Monster (Deluxe),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2009-01-01,https://i.scdn.co/image/ab67616d0000b273ebb720684d839c8909d1dac3,1,9,241933,https://p.scdn.co/mp3-preview/95cc6f61db841d49e062c94e68a62a89da0c46c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70807646,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.818,0.732,1.0,-4.474,0.0,0.0334,0.0335,4.95e-05,0.19,0.679,119.002,4.0,,Interscope,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",8911 +8912,spotify:track:3gkUWlXM4gDUZbKn5WO3N9,Rock It,spotify:artist:74WcfqC2hmUFHEJs0PDqYi,Little Red,spotify:album:1ali3G594gMxV4Bl92NTdw,Midnight Remember,spotify:artist:74WcfqC2hmUFHEJs0PDqYi,Little Red,2010-09-10,https://i.scdn.co/image/ab67616d0000b2734ac1bf12d349c36e1359979f,1,4,210160,https://p.scdn.co/mp3-preview/5ed66fc98b18e9bfc75241f8e8d8bdadae5c320d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,AULI01073090,spotify:user:bradnumber1,2024-01-26T02:58:18Z,australian indie,0.718,0.532,5.0,-4.132,1.0,0.0298,0.0582,1.8e-06,0.0918,0.934,106.945,4.0,,Liberation Records,"C 2010 Liberation Music, P 2010 Liberation Music",8912 +8913,spotify:track:209NkbzmsUa9pAobU7xGyf,Born This Way,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:30D9CrjDAZRrN7esS8CCgO,Born This Way (International Standard Version),spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2011-05-23,https://i.scdn.co/image/ab67616d0000b27300e1d8265195799790277e5a,1,2,260252,https://p.scdn.co/mp3-preview/02a1eff6ac741d95945e2ecccb54b8b2a9cdc05b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USUM71100638,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.587,0.826,11.0,-5.103,1.0,0.152,0.00361,0.0,0.327,0.505,123.907,4.0,,Interscope,"C © 2011 Interscope Records, P ℗ 2011 Interscope Records",8913 +8914,spotify:track:2D3Rkkr4MzwsyoGLuRU3Vn,Try,spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,spotify:album:2vCWHXLetotBI8ETx7TICg,The Best of Nelly Furtado (International Version),spotify:artist:2jw70GZXlAI8QzWeY2bgRc,Nelly Furtado,2010-01-01,https://i.scdn.co/image/ab67616d0000b273c040c24bec2a6212a5531c92,1,6,278600,https://p.scdn.co/mp3-preview/99c58ca126020cb73ea0c1a68fedb3eb60de6771?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDW10300649,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian latin,canadian pop,dance pop,pop",0.473,0.591,4.0,-7.33,0.0,0.0362,0.074,0.000267,0.486,0.369,187.821,4.0,,Universal Music Group,"C © 2010 Geffen Records, P ℗ 2010 Geffen Records",8914 +8915,spotify:track:5sC4GlhZ9zCb6gPxSIbX5j,Don't Tell Me,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,34,249733,https://p.scdn.co/mp3-preview/562a881a825ab0cd5e4cc2b417212fbfb92a8ac1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USWB10903631,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.711,0.696,7.0,-5.605,1.0,0.0515,0.0272,0.000888,0.105,0.724,100.119,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",8915 +8916,spotify:track:4hPpVbbakQNv8YTHYaOJP4,One Thing Right,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:3oSJ7TBVCWMDMiYjXNiCKE","Marshmello, Kane Brown",spotify:album:4QAC6FquY8D0RXom13iE5J,One Thing Right,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:3oSJ7TBVCWMDMiYjXNiCKE","Marshmello, Kane Brown",2019-06-21,https://i.scdn.co/image/ab67616d0000b273f0d9f552f55d802413da1002,1,1,181823,https://p.scdn.co/mp3-preview/85369c35fbf8cbcfc40186cb1323d85d2f00aabd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,US6XF1800275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,edm,pop,progressive electro house,black americana,contemporary country,country,country road",0.659,0.625,4.0,-2.253,1.0,0.045,0.0644,0.0,0.582,0.442,88.042,4.0,,RCA Records Label Nashville,"P (P) 2019 Joytime Collective, under exclusive license to Sony Music Entertainment. All rights reserved.",8916 +8917,spotify:track:4Q4jmPHwu0wrJvqrld0FQ6,I Would Like,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,spotify:album:5YLRVHDVRw3QqWbeTGpC5B,So Good,spotify:artist:1Xylc3o4UrD53lo9CvFvVg,Zara Larsson,2017-03-17,https://i.scdn.co/image/ab67616d0000b2739e1683774b22648f4f178ed3,1,3,226720,https://p.scdn.co/mp3-preview/442f9ce0dbd0571bb2e003e2104141bfcfc4534b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM11609249,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,scandipop,swedish electropop,swedish pop",0.486,0.713,2.0,-3.949,0.0,0.0529,0.0853,0.0,0.0839,0.298,120.586,4.0,,Epic/Record Company TEN,"P (P) 2017 Record Company TEN, exclusively licensed by Epic Records, a division of Sony Music Entertainment",8917 +8918,spotify:track:1mnqraQ8oV8MX92rdOFLWW,1 Thing,spotify:artist:08rMCq2ek1YjdDBsCPVH2s,Amerie,spotify:album:2PFK4dMZkqUQfxfSrK8WMf,Touch,spotify:artist:08rMCq2ek1YjdDBsCPVH2s,Amerie,2005,https://i.scdn.co/image/ab67616d0000b27315dd2fc9aa1109bbe1456916,1,1,238760,https://p.scdn.co/mp3-preview/118feb6cd7eb4d017f0727d7d8937e1980570009?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM10500100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,neo soul,r&b,urban contemporary",0.612,0.961,10.0,-3.078,0.0,0.333,0.107,4.17e-05,0.0413,0.867,129.873,5.0,,Richcraft/Sony Urban Music/Columbia,"P (P) 2002, 2005 SONY BMG MUSIC ENTERTAINMENT",8918 +8919,spotify:track:1dXFZeIjgDJ8sAc1csFNY2,Sunsets,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:11lnp34TFhwc0274mF7YaZ,Vulture Street,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2003-01-01,https://i.scdn.co/image/ab67616d0000b27378a33e0640c1cb770ea9e4f4,1,5,229333,https://p.scdn.co/mp3-preview/aaf64c78cb80827944cb59a6c0231ed0afb5db5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,AUUM00330026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.283,0.859,2.0,-3.591,1.0,0.0375,1.1e-05,0.0446,0.0901,0.699,167.37,4.0,,Universal Music Australia Pty. Ltd.,"C © 2003 Universal Music Australia Pty Ltd., P ℗ 2003 Universal Music Australia Pty Ltd.",8919 +8920,spotify:track:2HHmOEB67fXLg4PIhMtY9t,I'll Never Dance Again,spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,spotify:album:2x1ROcWb3CulgW30CkzIxp,Cameo Parkway - The Best Of Bobby Rydell (Original Hit Recordings),spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,1963-01-01,https://i.scdn.co/image/ab67616d0000b273a78111f084b0e101370d93be,1,17,149360,https://p.scdn.co/mp3-preview/5f45f673f6aed16b3786b66464bb94e173b064e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176240020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,merseybeat,rock-and-roll",0.586,0.431,0.0,-5.675,1.0,0.0271,0.729,0.0,0.263,0.582,104.757,4.0,,Universal Music Group,"C © 2006 ABKCO Records Inc., P ℗ 2006 ABKCO Records Inc.",8920 +8921,spotify:track:428lSKYV9R5f5d4XGOeniY,Apologize,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:1J7OJuxxZ0qqLnzAFFregQ,Dreaming Out Loud (Deluxe),spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2007-11-20,https://i.scdn.co/image/ab67616d0000b2734b58d865610972c6d359f7e0,1,4,208106,https://p.scdn.co/mp3-preview/533f93f896db2cd863c581539401838fa5210c85?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USUM70757102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.593,0.74,8.0,-6.12,1.0,0.0339,0.363,2.22e-05,0.102,0.502,118.008,4.0,,Mosley / Interscope,"C © 2008 Mosley Music/Interscope Records, P ℗ 2008 Mosley Music/Interscope Records",8921 +8922,spotify:track:0xgTmnbKX8mOjlyWqw1eEc,Candydrunk,spotify:artist:0Zule6oLStQ3YN5ojc2hlU,Zeek Power,spotify:album:5HOejqdUDN2rcu3PlgdGEL,Candydrunk,spotify:artist:0Zule6oLStQ3YN5ojc2hlU,Zeek Power,2019-08-30,https://i.scdn.co/image/ab67616d0000b273607ad01e2a9cd6fa501cdd69,1,1,215723,https://p.scdn.co/mp3-preview/ccf2697e82640cb7e24d2f461ba38f88bbf88279?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM6P41991170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian talent show,0.474,0.458,9.0,-7.727,1.0,0.0315,0.454,0.0,0.18,0.216,75.851,4.0,,Nesian Roots Entertainment,"C (C) 2019 Nesian Roots Entertainment Pty Ltd, P (P) 2019 Nesian Roots Entertainment Pty Ltd",8922 +8923,spotify:track:3zW6vFtJnlleGIsaIicqqn,The Weight (with Jimmy Barnes),"spotify:artist:64czVVta8TqMAqkZ0M0Avc, spotify:artist:1k5aZWIOUbUfKcnMxtEivJ","The Badloves, Jimmy Barnes",spotify:album:2A8O8Kr2qizvWgBTvjWuRO,The Mushroom Tapes,spotify:artist:64czVVta8TqMAqkZ0M0Avc,The Badloves,2000,https://i.scdn.co/image/ab67616d0000b273875f41e7af795e07330009c1,1,17,267826,https://p.scdn.co/mp3-preview/067496641720761f15cb5ad1a7888ea914666697?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUMU09300090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,australian rock",0.569,0.389,9.0,-12.897,1.0,0.0381,0.203,0.0,0.105,0.449,73.901,4.0,,WM Australia,"C © 2000 Mushroom Records, P ℗ 2000 Mushroom Records",8923 +8924,spotify:track:7rBzAkopTL4baeJGCFU7M4,Another Day in Paradise - R&B-Version,"spotify:artist:05oH07COxkXKIMt6mIPRee, spotify:artist:6gbGGM0E8Q1hE511psqxL0","Brandy, Ray J",spotify:album:3BdkiVzzAPNAxWFvdGjiEs,Full Moon,spotify:artist:05oH07COxkXKIMt6mIPRee,Brandy,2002-02-25,https://i.scdn.co/image/ab67616d0000b273e8b0fc6ce8a84daefb4e842f,1,17,271626,https://p.scdn.co/mp3-preview/423ba5911ea4f913269a72de636e13fe09efdd4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,DEA620100074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,dance pop,hip pop,r&b,urban contemporary,pop rap,urban contemporary",0.7,0.786,6.0,-5.176,0.0,0.0325,0.00662,4.21e-05,0.0724,0.552,102.043,4.0,,Atlantic Records,"C © 2002 Atlantic Recording Corporation and for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2002 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",8924 +8925,spotify:track:5tZWtGT65sMrDVPB5H444n,Castles,spotify:artist:5pDjmC5mRl7vDJhsjVwNfk,Freya Ridings,spotify:album:3dcenoRctm8OAnqoCrQrLd,Freya Ridings,spotify:artist:5pDjmC5mRl7vDJhsjVwNfk,Freya Ridings,2019-07-19,https://i.scdn.co/image/ab67616d0000b273692701741cd800811b944be9,1,3,211842,https://p.scdn.co/mp3-preview/70f6f727c28ba2dd3c5e1db52596a7ae288cc2c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,UK8E21802002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk pop,0.672,0.752,4.0,-4.866,1.0,0.0843,0.0046,0.00047,0.056,0.429,116.945,4.0,,Good Soldier Records/Capitol Records,"C © 2019 Good Soldier Records Limited, under exclusive license to UMG Recordings, Inc., P ℗ 2019 Good Soldier Records Limited, under exclusive license to UMG Recordings, Inc.",8925 +8926,spotify:track:2kH3RZN9KdGBj1c1jL3GjO,Jesus Walks,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,spotify:album:3lQePoIm6iNQIiZkCYxCy0,The College Dropout,spotify:artist:5K4W6rqBFWDnAN6FQUkS6x,Kanye West,2004-02-10,https://i.scdn.co/image/ab67616d0000b273ba869545176c153a9542db2d,1,7,193733,https://p.scdn.co/mp3-preview/a25861eb77f27e8aa6feb4b860a18839fcb97fe7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USDJ20400015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap",0.623,0.839,6.0,-4.725,1.0,0.391,0.571,0.0,0.293,0.689,87.277,4.0,,Roc-A-Fella,"C © 2004 UMG Recordings, Inc., P ℗ 2004 UMG Recordings, Inc.",8926 +8927,spotify:track:47DzE0bNSqWj4z3mrPU3gj,Aussie As,spotify:artist:2VcnJAwkrzgnZ1iEJ1b0ml,Matt Scullion,spotify:album:1gmAfBfKaHUDtOaa7PBiPY,Aussie As,spotify:artist:2VcnJAwkrzgnZ1iEJ1b0ml,Matt Scullion,2019-09-23,https://i.scdn.co/image/ab67616d0000b2731939c53a6364969c3464acf0,1,1,219840,https://p.scdn.co/mp3-preview/705236927144e2e8737ea685e8259d236c65f002?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUYPX1900001,spotify:user:bradnumber1,2022-02-14T10:29:12Z,australian country,0.53,0.34,2.0,-9.308,1.0,0.0279,0.574,1.92e-06,0.144,0.231,76.959,5.0,,Checked Label Services Pty Ltd,"C 2019 Matt Scullion. Under exclusive license to Checked Label Services., P 2019 Matt Scullion. Under exclusive license to Checked Label Services.",8927 +8928,spotify:track:1co9HQhp1tMkH3OEkb3vXV,Here We Are,spotify:artist:5IFCkqu9J6xdWeYMk5I889,Gloria Estefan,spotify:album:4RaCI7dlcYLPLhLeEzbgT8,Cuts Both Ways,spotify:artist:5IFCkqu9J6xdWeYMk5I889,Gloria Estefan,1989-07-06,https://i.scdn.co/image/ab67616d0000b2730afebb2b898f1d686d0139d6,1,2,289706,https://p.scdn.co/mp3-preview/60ee91b680ae91b896db9871be6dfc43cb6f1d27?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM19805103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.694,0.467,9.0,-14.437,1.0,0.0329,0.639,1.61e-05,0.0847,0.63,142.132,4.0,,Epic,P (P) 1989 SONY BMG MUSIC ENTERTAINMENT.,8928 +8929,spotify:track:70cTMpcgWMcR18t9MRJFjB,I Gotta Feeling,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:5lNzygOpCmzRx4N301icBB,THE E.N.D. (THE ENERGY NEVER DIES) [International Version],spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2009-01-01,https://i.scdn.co/image/ab67616d0000b27349ed7a0ea23c40c730f6bb37,1,5,289133,https://p.scdn.co/mp3-preview/b3398fc473e546c85e965482e7b908342c46b7b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USUM70965169,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.743,0.766,0.0,-6.375,1.0,0.0265,0.0873,0.0,0.509,0.61,127.96,4.0,,Universal Music Group,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",8929 +8930,spotify:track:4LRPiXqCikLlN15c3yImP7,As It Was,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,spotify:album:2pqdSWeJVsXAhHFuVLzuA8,As It Was,spotify:artist:6KImCVD70vtIoJWnq6nGn3,Harry Styles,2022-03-31,https://i.scdn.co/image/ab67616d0000b273b46f74097655d7f353caab14,1,1,167303,https://p.scdn.co/mp3-preview/c43dd07043b29e800c1a65b3a0102861fa3cf418?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USSM12200612,spotify:user:bradnumber1,2022-04-05T08:06:34Z,pop,0.52,0.731,6.0,-5.338,0.0,0.0557,0.342,0.00101,0.311,0.662,173.93,4.0,,Columbia,"P (P) 2022 Erskine Records Limited, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",8930 +8931,spotify:track:0obBFrPYkSoBJbvHfUIhkv,Sexy And I Know It,spotify:artist:3sgFRtyBnxXD5ESfmbK4dl,LMFAO,spotify:album:5EuNq3rYUESwy6Vcsz2PZe,Sorry For Party Rocking (Deluxe Version),spotify:artist:3sgFRtyBnxXD5ESfmbK4dl,LMFAO,2011-01-01,https://i.scdn.co/image/ab67616d0000b2730dfa923895a2814ae422c49a,1,4,199480,https://p.scdn.co/mp3-preview/dd70b7db98aa5b41e43172e64c39737acacd04b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USUM71108090,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.708,0.861,7.0,-4.225,1.0,0.316,0.1,0.0,0.191,0.795,130.043,4.0,,Will I Am / A&M,"C © 2011 Foo & Blu, LLC, under exclusive License to Interscope Records, P ℗ 2011 Foo & Blu, LLC, under exclusive License to Interscope Records",8931 +8932,spotify:track:5th3TiUIQxPA4MkoxJTZxy,I'm Gonna Be Strong,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,spotify:album:6gJ1d3KgMLwEKeck53FYxc,The Best Of Gene Pitney,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,2019-04-17,https://i.scdn.co/image/ab67616d0000b273fb4c46e199dfc54f5400ba69,1,10,133626,https://p.scdn.co/mp3-preview/b43362fe20c84f55498d6bd9095e265850b2104e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500086,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,merseybeat,rock-and-roll,rockabilly",0.397,0.332,5.0,-14.356,1.0,0.0335,0.545,7.42e-05,0.357,0.394,92.135,4.0,,Musicor Records,"C 1984 Gusto Records Inc., P 1984 Gusto Records Inc.",8932 +8933,spotify:track:5TjwiYZVMHVrGvRzbeCaV7,I Just Wanna Live,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:6Qbaq8mJBFOV30nBMmqLxc,"The Chronicles of Life and Death (""LIFE"" version)",spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2004-09-28,https://i.scdn.co/image/ab67616d0000b273a58ea3c31c1fd13a659a4ef0,1,5,166053,https://p.scdn.co/mp3-preview/e5e1cf13c95130f8c88705627433700b3a48797c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM10412717,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.803,0.83,10.0,-4.636,0.0,0.0356,0.0144,0.0,0.103,0.935,111.033,4.0,,Epic/Daylight,"P (P) 2004 Epic Records, a division of Sony Music Entertainment",8933 +8934,spotify:track:0nx0ykcEyjITS1IDhaLGHx,Breakfast At Sweethearts,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:1Htwv3I81HU6YUWWs0ommZ,The Best of Cold Chisel - All for You,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2011-10-31,https://i.scdn.co/image/ab67616d0000b27306dc40069e45da5e5d9f90e6,1,12,250485,https://p.scdn.co/mp3-preview/80ee0a5e92237af354b7c770734d8013f68ed8ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABB1158224,spotify:user:bradnumber1,2024-07-16T14:18:40Z,australian rock,0.636,0.497,9.0,-5.725,0.0,0.0285,0.102,1.04e-05,0.274,0.26,116.906,4.0,,Cold Chisel Pty Ltd,"C 2011 Cold Chisel Pty Ltd, P 2011 Cold Chisel Pty Ltd",8934 +8935,spotify:track:5tMvBAxxchFuqu5FQw5su9,Cry,spotify:artist:6WshiDext64oLUmu6LSHAl,The Mavis's,spotify:album:77yh4kzaebhcv7rw1YMd8q,Pink Pills,spotify:artist:6WshiDext64oLUmu6LSHAl,The Mavis's,1998,https://i.scdn.co/image/ab67616d0000b2730b2391d30b2d8fe34ef3b5c9,1,3,253026,https://p.scdn.co/mp3-preview/788a55456ae16c87c573c8d04cebaa6c0dd24561?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUMU09700003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.451,0.933,9.0,-4.743,1.0,0.058,0.000897,0.000431,0.29,0.431,126.94,4.0,,WM Australia,"C © 1998 Mushroom Records, P ℗ 1998 Mushroom Records",8935 +8936,spotify:track:6KfoDhO4XUWSbnyKjNp9c4,Maniac,spotify:artist:4Uc8Dsxct0oMqx0P6i60ea,Conan Gray,spotify:album:2CMlkzFI2oDAy5MbyV7OV5,Kid Krow,spotify:artist:4Uc8Dsxct0oMqx0P6i60ea,Conan Gray,2020-03-20,https://i.scdn.co/image/ab67616d0000b27388e3cda6d29b2552d4d6bc43,1,3,185773,https://p.scdn.co/mp3-preview/437f1ad1a89448e0a09f5a856f6ba4987647b082?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USUM71920712,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bedroom pop,pop,pov: indie",0.628,0.639,8.0,-5.46,1.0,0.0435,0.00162,0.0,0.354,0.493,108.045,4.0,,Republic Records,"C © 2020 Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 Republic Records, a division of UMG Recordings, Inc.",8936 +8937,spotify:track:3K67L83YEiEo6Wyir4pkDU,Fuck It (I Don't Want You Back),spotify:artist:1y20PpXw0yeuJ1avCD0Ob9,Eamon,spotify:album:7djLhmBV0vH7fUCQMWn6Te,Fuck It (I Don't Want You Back),spotify:artist:1y20PpXw0yeuJ1avCD0Ob9,Eamon,2004-04-05,https://i.scdn.co/image/ab67616d0000b27380d1d9b4ab261ac1068c0867,1,1,224173,https://p.scdn.co/mp3-preview/52ac0cbaa649e19a98aaf306d0472fb0bbd61f40?cid=9950ac751e34487dbbe027c4fd7f8e99,True,49,USJI10300480,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.834,0.623,0.0,-6.236,0.0,0.06,0.0957,4.07e-06,0.0625,0.499,68.49,4.0,,Jive,P (P) 2004 Zomba Recording LLC,8937 +8938,spotify:track:0CAfXk7DXMnon4gLudAp7J,Low (feat. T-Pain),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:3aQeKQSyrW4qWr35idm0cy","Flo Rida, T-Pain",spotify:album:5j1wrOAOm5KFd17pPiSvle,Mail on Sunday,spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2008-03-17,https://i.scdn.co/image/ab67616d0000b273f9bd7a6c772ac496015be3f8,1,5,231400,https://p.scdn.co/mp3-preview/328d15426dd8b5e128341b72d0826ff0b32d1eb4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USAT20705841,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,dance pop,gangster rap,hip hop,pop rap,r&b,rap,southern hip hop,trap,urban contemporary",0.918,0.609,10.0,-5.64,0.0,0.0791,0.0928,0.0,0.139,0.304,128.008,4.0,,Poe Boy/Atlantic,"C © 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2008 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",8938 +8939,spotify:track:0b8NSp03mAkWHZoQYRYvO4,"Seasons of Change, Pt. 1",spotify:artist:67dnqvT66VC7F7EEMbhfWS,Blackfeather,spotify:album:2h9Ghq18NEk2KZJPqs2x4o,At The Mountains Of Madness,spotify:artist:67dnqvT66VC7F7EEMbhfWS,Blackfeather,1971,https://i.scdn.co/image/ab67616d0000b2731ff135204eafdf8c3e0de378,1,3,232946,https://p.scdn.co/mp3-preview/5740770773d028a10a9a09d7104d5024e9ef42a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUFE07100018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,psychedelic blues-rock,0.59,0.618,6.0,-6.446,1.0,0.0342,0.527,0.0,0.103,0.517,106.02,4.0,,WM Australia,"C © 1992 Festival Records, P ℗ 1971 Festival Records",8939 +8940,spotify:track:403oiKw757eJnbDKPSjhHV,Thieves in the Temple,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:2tHDc9g2bu1rz62xIjX1GE,Music from Graffiti Bridge,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1990,https://i.scdn.co/image/ab67616d0000b273992d0e6aeb59f587a1e81ac8,1,12,200680,https://p.scdn.co/mp3-preview/07360d1893626a2cdfa403506323c8e289e869b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USWB19900558,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.775,0.676,5.0,-10.582,0.0,0.042,0.0228,0.0,0.0631,0.646,129.948,4.0,,Rhino/Warner Records,"C © 1990 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1990 NPG Records, Inc. under exclusive license to Warner Records Inc.",8940 +8941,spotify:track:75miYzXfHBB7Bb8zbLMzFZ,Bang Bang (My Baby Shot Me Down),spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,spotify:album:3XYxB1eX8ouHMAZ00dAZ0C,The Sonny Side Of Chér,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,1966-04-01,https://i.scdn.co/image/ab67616d0000b273742c9d2f5c7ca5af8fdeb37e,1,1,165293,https://p.scdn.co/mp3-preview/a5ab48a9283303cda7f670d888a157601d3a3892?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USCA26600195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.515,0.291,7.0,-17.016,0.0,0.0302,0.311,0.0,0.288,0.781,84.264,4.0,,CAPITOL CATALOG MKT (C92),"C © 1966 Capitol Records, LLC, P ℗ 1966 Capitol Records, LLC",8941 +8942,spotify:track:3qT4bUD1MaWpGrTwcvguhb,Black Dog - Remaster,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,spotify:album:44Ig8dzqOkvkGDzaUof9lK,Led Zeppelin IV (Deluxe Edition),spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,1971-11-08,https://i.scdn.co/image/ab67616d0000b273c8a11e48c91a982d086afc69,1,1,295386,https://p.scdn.co/mp3-preview/78dd352fdbe8d2a867b72c5a71ac44ef6a462ab4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USAT21300956,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.437,0.864,4.0,-7.842,0.0,0.0904,0.396,0.0314,0.242,0.749,81.394,4.0,,Atlantic Records,"C © 2014 Atlantic Recording Corporation. All Rights Reserved, P ℗ 2014 Atlantic Recording Corporation, a Warner Music Group Company. Marketed by Warner Music Group Company. All Rights Reserved",8942 +8943,spotify:track:6nSt8n7r0bznM8PCvHEmPj,You're Moving out Today,spotify:artist:6yjU0SoX3vxPV7KoopXlWe,Carole Bayer Sager,spotify:album:5tW3pVPPCwv5gLFKMgXTdP,Carole Bayer Sager,spotify:artist:6yjU0SoX3vxPV7KoopXlWe,Carole Bayer Sager,1977-10-10,https://i.scdn.co/image/ab67616d0000b2731f464e7f7be932f7d2e00916,1,8,215053,https://p.scdn.co/mp3-preview/c1f5aca6956a61c6602832c8cb63f6f7c982e71c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USEE10300269,spotify:user:bradnumber1,2021-08-08T09:26:31Z,yacht rock,0.638,0.557,0.0,-11.34,1.0,0.111,0.729,1.05e-05,0.0986,0.915,112.893,4.0,,Rhino/Elektra,"C © 1977 Elektra Entertainment for United States and WEA International Inc. for the world outside of the United States, P ℗ 1977 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States Marketed by Rhino Entertainment Company, A Warner Music Group Company.",8943 +8944,spotify:track:4MzXwWMhyBbmu6hOcLVD49,DÁKITI,"spotify:artist:4q3ewBCX7sLwd24euuV69X, spotify:artist:6nVcHLIgY5pE2YCl8ubca1","Bad Bunny, JHAYCO",spotify:album:2d9BCZeAAhiZWPpbX9aPCW,EL ÚLTIMO TOUR DEL MUNDO,spotify:artist:4q3ewBCX7sLwd24euuV69X,Bad Bunny,2020-11-27,https://i.scdn.co/image/ab67616d0000b273005ee342f4eef2cc6e8436ab,1,11,205090,https://p.scdn.co/mp3-preview/78f5e89d6384301b40fd9e5a659152a33dac6646?cid=9950ac751e34487dbbe027c4fd7f8e99,True,76,QMFME2004132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggaeton,trap latino,urbano latino,reggaeton,trap latino,urbano latino",0.731,0.573,4.0,-10.059,0.0,0.0544,0.401,5.22e-05,0.113,0.145,109.928,4.0,,Rimas Entertainment LLC,"C (C) 2020 Rimas Entertainment LLC, P (P) 2020 Rimas Entertainment LLC",8944 +8945,spotify:track:3GCpEbJzknVdpvx9WI03x3,Mysterious Girl - Radio Edit,spotify:artist:4zVfvSWs6FvSD6B5lQGs2S,Peter Andre,spotify:album:5SzHkxYKPIK4LcGaJrgnNU,The Long Road Back,spotify:artist:4zVfvSWs6FvSD6B5lQGs2S,Peter Andre,2004-06-07,https://i.scdn.co/image/ab67616d0000b27370c088eb2076edd4ce7cd392,1,4,217106,https://p.scdn.co/mp3-preview/22f215f0ccc9837fdaee8c19abdaf465a9b4558a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBAHS0400990,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,talent show",0.655,0.822,8.0,-5.755,1.0,0.211,0.14,0.0,0.298,0.859,171.983,4.0,,EastWest U.K.,"C © 2004 Warner Music UK Ltd, P ℗ 2004 Warner Music UK Ltd",8945 +8946,spotify:track:2ieIS6MkDVPbgl1TBjcvqx,Djapana - Radio Mix,spotify:artist:5sHPYevv4ykaH79HIHqBDP,Yothu Yindi,spotify:album:7n50XELKBAuN7YJtFjsm5d,Tribal Voice,spotify:artist:5sHPYevv4ykaH79HIHqBDP,Yothu Yindi,1991-11-02,https://i.scdn.co/image/ab67616d0000b2731e54103601b6f8a4d81c8dd8,1,16,238533,https://p.scdn.co/mp3-preview/5a04e0085cefcf8b2efcc5320e7c335380366a49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUYT20700031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,didgeridoo",0.67,0.841,11.0,-12.176,0.0,0.0419,0.0727,0.0,0.196,0.558,123.986,4.0,,Bloodlines,"C 2012 Bloodlines, P 2012 Bloodlines",8946 +8947,spotify:track:7qiYVaYlAZ8sR0wysxnmxq,Looking For Clues,spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,spotify:album:5oBVLzqiieS8YgO5my63ol,Clues,spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,1980-01-01,https://i.scdn.co/image/ab67616d0000b273d73e3dfde9a8d1feb6373f1b,1,1,292333,https://p.scdn.co/mp3-preview/3d77f7471afb90bbc046361aa3dd8957049b6118?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR28000055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,mellow gold,new romantic,new wave,new wave pop,singer-songwriter,soft rock,yacht rock",0.848,0.591,9.0,-11.556,0.0,0.0738,0.289,0.154,0.0748,0.944,143.519,4.0,,Universal Music Group,"C © 1980 The Island Def Jam Music Group, P ℗ 1980 The Island Def Jam Music Group",8947 +8948,spotify:track:3tUeeimKbYBggXTdkxdrgf,Come Back,spotify:artist:0gcMPgunYh4rX1UOdvZKBn,Londonbeat,spotify:album:3zsZeS3xAnlvA25CKM8rKs,The Very Best Of,spotify:artist:0gcMPgunYh4rX1UOdvZKBn,Londonbeat,1997-09-29,https://i.scdn.co/image/ab67616d0000b273548232fa98cc7a36ec3b9bef,1,9,232066,https://p.scdn.co/mp3-preview/cfaee3727275ba75f11bd891b22467d088e3f5a9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,GBARL9400177,spotify:user:bradnumber1,2021-08-08T09:26:31Z,hip house,0.704,0.753,7.0,-11.61,0.0,0.0469,0.271,0.0,0.107,0.867,120.495,4.0,,RCA Camden,P (P) 1997 BMG Entertainment International UK & Ireland Ltd.,8948 +8949,spotify:track:5D7hWZniuDPuCDRE0mdKnf,Love Has No Pride - 2017 Remastered,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,spotify:album:2dtL4Q81aBnP0nNkZYAJk9,Days Go By: The Definitive Greatest Hits Collection,spotify:artist:4t52ndk0OkAxtb4vMDLPhe,Daryl Braithwaite,2017-11-24,https://i.scdn.co/image/ab67616d0000b273fdc57ef0d735277ba71beb69,2,11,203066,https://p.scdn.co/mp3-preview/ec99b1824e33cccc81ae6787a708dc7f929a8ec3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUYJL1700005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.382,0.429,5.0,-7.054,1.0,0.0269,0.182,0.0,0.214,0.264,89.017,3.0,,Sony Music Entertainment,P (P) 2017 Sony Music Entertainment Australia Pty Ltd,8949 +8950,spotify:track:73YXXC5N6UKONVzdJUNQGg,Sandy,spotify:artist:17nxEt3oZte3eUuVio6W55,Larry Hall,spotify:album:1PefRjHr721BaFmDQl68OD,Totally Cool '60s: Lost Hits & Misses,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-12-02,https://i.scdn.co/image/ab67616d0000b2733051419917d8f505313010af,1,9,150680,https://p.scdn.co/mp3-preview/9b5b68712c4e6381c2d29e0a486bbfbdd38e7f63?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBT21603678,spotify:user:bradnumber1,2021-08-08T09:26:31Z,instrumental worship,0.359,0.414,0.0,-11.949,1.0,0.0339,0.636,0.00108,0.367,0.628,158.741,4.0,,Record Town,"C 2016 Sunset Blvd., P 2016 Copyright Control",8950 +8951,spotify:track:701QMBPifGEACZoD2vFhmB,A Rockin' Good Way (To Mess Around And Fall In Love),"spotify:artist:32LHRiof0sa4taYew9i3Fa, spotify:artist:2ttm3uT0N1RN7vwKv1pQgh","Dinah Washington, Brook Benton",spotify:album:71yj5g7xnIOl64D1drtSQd,The Two Of Us,"spotify:artist:32LHRiof0sa4taYew9i3Fa, spotify:artist:2ttm3uT0N1RN7vwKv1pQgh","Dinah Washington, Brook Benton",1960,https://i.scdn.co/image/ab67616d0000b2731dfec06f2e430e9d2b72b74e,1,6,148226,https://p.scdn.co/mp3-preview/e8c488b0ff8426fbdf5a3d2c7572ddef4b82445d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR35902467,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"jazz blues,soul,vocal jazz,rhythm and blues,southern soul",0.789,0.533,3.0,-10.637,1.0,0.048,0.847,2.24e-05,0.168,0.967,130.259,4.0,,Verve,"C © 1995 The Island Def Jam Music Group, P ℗ 1995 The Island Def Jam Music Group",8951 +8952,spotify:track:3GQETOg4ZXyQ1jEFqfMoac,I Will Follow Him,spotify:artist:5EVZqrbIyEYGGite2sMhDk,Peggy March,spotify:album:5R0M6bpjLmFutJBcFhqNlg,I Will Follow Him,spotify:artist:5EVZqrbIyEYGGite2sMhDk,Peggy March,1963-12-10,https://i.scdn.co/image/ab67616d0000b273dd2c27a99e0aff7b9210bf69,1,1,148160,https://p.scdn.co/mp3-preview/fa8644dfef43b45b7c9e431d65c831117f6186f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USRC10200763,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,classic schlager",0.638,0.44,0.0,-10.892,1.0,0.0348,0.722,0.0,0.515,0.904,125.483,4.0,,Legacy Recordings,"P Originally released 1963. All rights reserved by RCA Records, a division of Sony Music Entertainment",8952 +8953,spotify:track:7pYFPMeK0TnaTGdS6qOtEr,Waterfall,"spotify:artist:7KUri7klyLaIFXLcuuOMCd, spotify:artist:1KCSPY1glIKqW2TotWuXOR, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","Stargate, P!nk, Sia",spotify:album:4j8Wr17zfsvxEpeTXHbrmL,Waterfall,"spotify:artist:7KUri7klyLaIFXLcuuOMCd, spotify:artist:1KCSPY1glIKqW2TotWuXOR, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","Stargate, P!nk, Sia",2017-03-10,https://i.scdn.co/image/ab67616d0000b27354c089210c98bb4c1f4e12ac,1,1,200029,https://p.scdn.co/mp3-preview/7797e970944d26f6060f8a5011f6fd9a461ed492?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USRC11700338,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"norwegian pop,dance pop,pop,pop",0.372,0.919,11.0,-1.68,0.0,0.3,0.0987,0.0,0.234,0.419,182.785,4.0,,Interstellar Music/RCA Records,"P (P) 2017 Interstellar Music, under license to RCA Records, a division of Sony Music Entertainment",8953 +8954,spotify:track:6DksBOgKv1NZL1oaMGAflz,Sexy (Is The Word),spotify:artist:64fbN3FGr1FkRhFh1AoGQA,Melissa Tkautz,spotify:album:7yyHk0JtQZabdJmChfdA0j,The Hits & More,spotify:artist:64fbN3FGr1FkRhFh1AoGQA,Melissa Tkautz,2008-08-09,https://i.scdn.co/image/ab67616d0000b2736edf6376a7dcd9c28b267bf4,1,2,214136,https://p.scdn.co/mp3-preview/3eb9ba16502d33f4c0b8fc52cb58f97bbb898462?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUDD31200697,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,europop",0.649,0.954,5.0,-4.939,0.0,0.0597,0.00318,0.00057,0.058,0.932,123.062,4.0,,Timeless Music Company,"C 2012 Melissa Tkautz, P 2012 Melissa Tkautz",8954 +8955,spotify:track:2b9lp5A6CqSzwOrBfAFhof,Crazy Train,spotify:artist:6ZLTlhejhndI4Rh53vYhrY,Ozzy Osbourne,spotify:album:6aGfK3YpRxZ1rJfaNRckLH,Blizzard of Ozz (Expanded Edition),spotify:artist:6ZLTlhejhndI4Rh53vYhrY,Ozzy Osbourne,1980-09-20,https://i.scdn.co/image/ab67616d0000b2735776e18c520194c48d92815b,1,2,296200,https://p.scdn.co/mp3-preview/82413173824c77d38be0f2db4456ebf289d12f05?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USSM11002845,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,alternative metal,birmingham metal,classic rock,glam metal,hard rock,metal,rock",0.453,0.905,9.0,-4.001,1.0,0.115,0.36,0.000569,0.26,0.474,137.571,4.0,,Epic/Legacy,"P (P) 1980 Epic Records, a division of Sony Music Entertainment",8955 +8956,spotify:track:6lV2MSQmRIkycDScNtrBXO,Airplanes (feat. Hayley Williams of Paramore),"spotify:artist:5ndkK3dpZLKtBklKjxNQwT, spotify:artist:6Rx1JKzBrSzoKQtmbVmBnM","B.o.B, Hayley Williams",spotify:album:7apLPYT8szV1IqTxyVSy5P,B.o.B Presents: The Adventures of Bobby Ray,spotify:artist:5ndkK3dpZLKtBklKjxNQwT,B.o.B,2010-04-27,https://i.scdn.co/image/ab67616d0000b273484d121f0e2d2caf87d5d10b,1,4,180480,https://p.scdn.co/mp3-preview/e12837a41beb80284f339bea4a38d951630997a6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USAT21000477,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dance pop,pop rap,rap,southern hip hop,art pop",0.66,0.867,6.0,-4.285,0.0,0.116,0.11,0.0,0.0368,0.377,93.033,4.0,,Rebel Rock/Grand Hustle/Atlantic,"C © 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2010 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",8956 +8957,spotify:track:0hxCRcTNxtMLZhL7yjV6Mw,Jealous,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,spotify:album:3F5UFEwefmWchvdhkvRUcT,Nick Jonas,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,2014-11-10,https://i.scdn.co/image/ab67616d0000b27355aa91fe90af23863bca0f25,1,2,223106,https://p.scdn.co/mp3-preview/986626ff137406e1d38700c4bc2deee10145431b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71412696,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.699,0.702,11.0,-3.83,0.0,0.11,0.0121,0.0,0.449,0.373,93.023,4.0,,Universal Music Group,"C © 2014 Island Records, a division of UMG Recordings, Inc. / Safehouse Records, LLC, P ℗ 2014 Island Records, a division of UMG Recordings, Inc. / Safehouse Records, LLC",8957 +8958,spotify:track:73ucpKq91TuejrLHgzDNHK,Poison,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:6hKHpD9mnIjiJWmAunnQT8,Poison,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2015-05-18,https://i.scdn.co/image/ab67616d0000b273fabd9e4a96acce8a3734c737,1,1,202906,https://p.scdn.co/mp3-preview/2b20197bd2c127971d1a46f8ede4358050546b1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,USQX91500791,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.579,0.738,10.0,-5.711,1.0,0.0542,0.0821,1.52e-06,0.232,0.431,124.023,4.0,,Roc Nation/Columbia,"P (P) 2015 Roc Nation LLC, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",8958 +8959,spotify:track:1eyq8cjUQ2daFthW2PC2GM,Glory of Love,spotify:artist:5xWPOujQqd4wXyB08slZ9Z,Peter Cetera,spotify:album:1O2sEdKLsSHROEyYgUQmnb,Solitude / Solitaire,spotify:artist:5xWPOujQqd4wXyB08slZ9Z,Peter Cetera,1986,https://i.scdn.co/image/ab67616d0000b2739cd3665c5518c19b9ba36676,1,3,258333,https://p.scdn.co/mp3-preview/db8481c754fe86fe6d76c517c089b02013666089?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USWB10000619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.52,0.61,5.0,-7.935,1.0,0.0282,0.0805,2.95e-06,0.276,0.329,144.983,4.0,,Rhino/Warner Records,"C © 1986 Warner Records Inc., P ℗ 1986 Warner Records Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",8959 +8960,spotify:track:1rfofaqEpACxVEHIZBJe6W,Havana (feat. Young Thug),"spotify:artist:4nDoRrQiYLoBzwC5BhVJzF, spotify:artist:50co4Is1HCEo8bhOyUWKpn","Camila Cabello, Young Thug",spotify:album:2vD3zSQr8hNlg0obNel4TE,Camila,spotify:artist:4nDoRrQiYLoBzwC5BhVJzF,Camila Cabello,2018-01-12,https://i.scdn.co/image/ab67616d0000b2736eb0b9e73adcf04e4ed3eca4,1,4,217306,https://p.scdn.co/mp3-preview/49653dbbec996f228cb6edc046d318cd5a249ee6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USSM11706905,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,atl hip hop,atl trap,gangster rap,hip hop,melodic rap,rap,trap",0.765,0.523,2.0,-4.333,1.0,0.03,0.184,3.56e-05,0.132,0.394,104.988,4.0,,Syco Music/Epic,"P (P) 2018 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",8960 +8961,spotify:track:5BCcTvJhJ2cEAM9IUSh7vI,Yesterday Man,spotify:artist:49czbwrhT97D0tODGwDyLs,Chris Andrews,spotify:album:5eddFYfsY8fQBj8fpi6P7Q,Fifty Fifty – 50 Years On Stage,spotify:artist:49czbwrhT97D0tODGwDyLs,Chris Andrews,2011-03-23,https://i.scdn.co/image/ab67616d0000b27347832fcd2683e457742abaee,1,14,174880,https://p.scdn.co/mp3-preview/083b7a7d3129d2b6e7df456620fefd7396f548c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,DEMS21000012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,nederpop",0.733,0.84,0.0,-4.208,1.0,0.0333,0.00752,0.0,0.142,0.798,107.932,4.0,,Spectre,"C Spectre, P Art of Pop Music GmbH",8961 +8962,spotify:track:1OhyE4pJdNDLvBjJsc6mo3,Let Me Down Easy,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,spotify:album:6BfgDdkVUsERG4SZQTbO97,Bombs Away,spotify:artist:6VxCmtR7S3yz4vnzsJqhSV,Sheppard,2014-07-11,https://i.scdn.co/image/ab67616d0000b2737f80e1c7ed450180dd8f93e6,1,3,227631,https://p.scdn.co/mp3-preview/f8b18b9af9da9af74650619b57f187044bfd610b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUIYA1400003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop,folk-pop",0.556,0.588,9.0,-6.274,1.0,0.0325,0.307,0.0,0.0956,0.298,144.979,4.0,,Empire Of Song,"C 2014 Empire of Song, P 2014 Empire of Song",8962 +8963,spotify:track:4mn7iv4DYJxPYbPy5R0nPE,"(Shake, Shake, Shake) Shake Your Booty",spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,spotify:album:7nb5eaxuDO4jbOxk0euRJv,Part 3,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,1976,https://i.scdn.co/image/ab67616d0000b273274a11627dcf495bbc0a4b1d,1,4,185640,https://p.scdn.co/mp3-preview/09ff67363b0105db455e2b47089c609af5eb77e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBAYE7600024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new wave pop,soft rock,soul",0.651,0.945,10.0,-7.922,1.0,0.0361,0.169,0.475,0.15,0.939,112.292,4.0,,Parlophone UK,"C © 1976 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1976 Parlophone Records Ltd, a Warner Music Group Company",8963 +8964,spotify:track:6B5vBKtJPOPrS2kMOZPKey,Rich Girl,spotify:artist:7EEIyejQGa1kWg5gSkrUMZ,Selwyn,spotify:album:6PGYdW97FpxCaY47W2t4cv,Meant To Be,spotify:artist:7EEIyejQGa1kWg5gSkrUMZ,Selwyn,2002-08-30,https://i.scdn.co/image/ab67616d0000b273ac12475be7f12bcb44162696,1,7,238933,https://p.scdn.co/mp3-preview/7eced4c4b4a301c2bb3505c1cd3be9545d19ee99?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUSM00200043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.74,0.567,8.0,-5.283,0.0,0.0702,0.0327,0.0,0.402,0.916,90.094,4.0,,Epic,P (P) 2002 Sony Music Entertainment (Australia) Pty. Ltd.,8964 +8965,spotify:track:7q3qX7Ees3FZtRFJXWgPZs,It's Raining Men,spotify:artist:5orH1OWgjAYUX8sZ5gihTv,Geri Halliwell,spotify:album:2sgOJkKcXuxEqXW26W3sQf,Scream If You Wanna Go Faster,spotify:artist:5orH1OWgjAYUX8sZ5gihTv,Geri Halliwell,2001-05-14,https://i.scdn.co/image/ab67616d0000b27320fa8a1a52c78ef950f52745,1,10,254640,https://p.scdn.co/mp3-preview/e006ed2f49beb55b9e0746f12845cdf77ff536b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAYE0100368,spotify:user:bradnumber1,2021-08-08T09:26:31Z,europop,0.637,0.929,5.0,-6.03,0.0,0.0447,0.063,0.00796,0.318,0.604,136.482,4.0,,Parlophone UK,"C © 2001 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2001 Parlophone Records Ltd, a Warner Music Group Company",8965 +8966,spotify:track:70XtWbcVZcpaOddJftMcVi,From the Bottom of My Broken Heart,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:3WNxdumkSMGMJRhEgK80qx,...Baby One More Time (Digital Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,1999-01-12,https://i.scdn.co/image/ab67616d0000b2738e49866860c25afffe2f1a02,1,6,312533,https://p.scdn.co/mp3-preview/1de5faef947224dcb7efb26a5303ae0735b28167?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USJI19910455,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.677,0.665,7.0,-5.171,1.0,0.0305,0.56,1.01e-06,0.338,0.706,74.981,4.0,,Jive,P (P) 1999 Zomba Recording LLC,8966 +8967,spotify:track:2zaMZQEo0NSIl5ubSgDkqs,High Sheriff of Calhoun Parrish,spotify:artist:6QvgWa4x3Ij4tvBpFMo11P,Tony Joe White,spotify:album:5M3GlaTkttptrGEX4a01JT,"The Best Of Tony Joe White Featuring ""Polk Salad Annie""",spotify:artist:6QvgWa4x3Ij4tvBpFMo11P,Tony Joe White,1993-09-10,https://i.scdn.co/image/ab67616d0000b273dd3031745cdc98e2b0687da7,1,7,233400,https://p.scdn.co/mp3-preview/4a776d4875dc36ba1bb8b10bcc8e1599996f2157?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USWB17000003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acoustic blues,louisiana blues,swamp blues,swamp pop,swamp rock",0.691,0.234,2.0,-17.215,1.0,0.0357,0.689,0.0346,0.112,0.528,88.559,4.0,,Warner Records,"C © 1993 Warner Records Inc., P ℗ 1972, 1973 1993 Warner Records Inc.",8967 +8968,spotify:track:0vnCaQ0QtDnMYI5tVuhZiV,This Love of Mine,spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,spotify:album:2OXZJLXxM8jrY3gBoVNfmz,Nobody but Me (Deluxe),spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2016-10-21,https://i.scdn.co/image/ab67616d0000b273576629f3c4631eb55612a7c7,1,10,259959,https://p.scdn.co/mp3-preview/077fc46402f6cdad77fa972a07c31721e407b7c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USRE11600458,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge",0.163,0.172,9.0,-10.672,1.0,0.0312,0.697,0.000688,0.161,0.107,55.305,4.0,,Reprise,"C © 2016 Reprise Records, P ℗ 2016 Reprise Records",8968 +8969,spotify:track:0ujklxrVM2jwpLMgbTwTd1,"Black Fingernails, Red Wine",spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,spotify:album:4PXy3cBCNeY0ZVKTOGi9Cw,"Black Fingernails, Red Wine",spotify:artist:3yW6jTzGjHUUkLvLkjLOVn,Eskimo Joe,2006-06-10,https://i.scdn.co/image/ab67616d0000b27394e91cb353f83a901f97c6d6,1,3,249866,https://p.scdn.co/mp3-preview/57214fd5825b39f881b8132a6861811cf83f6609?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,AUWA00601070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,perth indie",0.553,0.917,1.0,-4.658,1.0,0.0424,0.00847,0.0975,0.251,0.433,124.001,4.0,,WM Australia,"C © 2006 Mushroom Records Pty Limited, P ℗ 2006 Mushroom Records Pty Limited",8969 +8970,spotify:track:40sQJLcAmhFfzPjx5ikBEv,No Second Prize,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,spotify:album:16XRPwzw1iIzAwgqwM5qYZ,Hits,spotify:artist:1k5aZWIOUbUfKcnMxtEivJ,Jimmy Barnes,1996-10-21,https://i.scdn.co/image/ab67616d0000b27388f2c82f6386037ca3972911,1,12,239360,https://p.scdn.co/mp3-preview/46ac8187db9854489d2201223051652a6abbbb9a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AULI09600980,spotify:user:bradnumber1,2022-08-26T01:32:12Z,australian rock,0.571,0.809,7.0,-5.994,1.0,0.0319,0.0013,0.00183,0.352,0.733,122.645,4.0,,Bloodlines,"C 1996 Bloodlines, P 1996 Bloodlines",8970 +8971,spotify:track:5Z3GHaZ6ec9bsiI5BenrbY,Young Dumb & Broke,spotify:artist:6LuN9FCkKOj5PcnpouEgny,Khalid,spotify:album:6kf46HbnYCZzP6rjvQHYzg,American Teen,spotify:artist:6LuN9FCkKOj5PcnpouEgny,Khalid,2017-04-27,https://i.scdn.co/image/ab67616d0000b273988ede5e1276e758b5f9e577,1,2,202546,https://p.scdn.co/mp3-preview/05e9e3f61b30cf532a171bf40db63c086f9b6d5b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USRC11700144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop r&b",0.799,0.539,1.0,-6.351,1.0,0.0421,0.199,1.66e-05,0.165,0.394,136.948,4.0,,"Right Hand Music Group, LLC/RCA Records","P (P) 2017 RCA Records, a division of Sony Music Entertainment",8971 +8972,spotify:track:6GG73Jik4jUlQCkKg9JuGO,The Middle,spotify:artist:3Ayl7mCk0nScecqOzvNp6s,Jimmy Eat World,spotify:album:0UJhhj5bn5AGAjryFnhueP,Bleed American,spotify:artist:3Ayl7mCk0nScecqOzvNp6s,Jimmy Eat World,2001-07-17,https://i.scdn.co/image/ab67616d0000b27395d1d98c5176e4f982bd73d6,1,3,165853,https://p.scdn.co/mp3-preview/5524bcb363f648a35571d9507d2d585bc9a0adc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USDW10110256,spotify:user:bradnumber1,2021-11-17T22:20:40Z,"alternative metal,alternative rock,emo,modern power pop,modern rock,neon pop punk,pop punk,pop rock,post-grunge,punk,rock",0.643,0.849,2.0,-5.428,1.0,0.0526,0.0371,0.0,0.058,0.903,162.152,4.0,,Interscope,"C © 2001 UMG Recordings, Inc., P ℗ 2001 UMG Recordings, Inc.",8972 +8973,spotify:track:7eOfcKKfwdUnNV3rKZLX1H,We Hold On,spotify:artist:1XGHs7YFtpCbDGKaNdPPtA,Kaz James,spotify:album:15Zb2g4RVnUvTv5Z9dd2TA,If They Knew,spotify:artist:1XGHs7YFtpCbDGKaNdPPtA,Kaz James,2008-10-11,https://i.scdn.co/image/ab67616d0000b273fb37c03777e64670e3b21aaa,1,1,211480,https://p.scdn.co/mp3-preview/5f8cf2bf5ec54376ff07870f2c9e179a51275e47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,GBVKY0800006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.584,0.788,2.0,-4.265,1.0,0.0295,0.00635,0.0,0.11,0.43,129.002,4.0,,Sony BMG Music Entertainment,"P (P) 2008 KJM Limited, under exclusive licence to SONY BMG Music Entertainment (Australia) Pty Limited",8973 +8974,spotify:track:6jcfNQ192hwRe2h8oQvHYv,Changing,"spotify:artist:01pKrlgPJhm5dB4lneYAqS, spotify:artist:4fwuXg6XQHfdlOdmw36OHa","Sigma, Paloma Faith",spotify:album:10fFS2PNuQuBssLFjn1zDy,Life (Deluxe),spotify:artist:01pKrlgPJhm5dB4lneYAqS,Sigma,2015-12-04,https://i.scdn.co/image/ab67616d0000b273762ea781ce73b029b318d1f8,1,8,205000,https://p.scdn.co/mp3-preview/047964b4b27704db5d0a0529a7485d7b2df9b4a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBSXS1400136,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dancefloor dnb,house,pop dance,uk dance,british soul,talent show,uk pop",0.504,0.807,2.0,-3.839,1.0,0.0505,0.0905,0.0,0.142,0.378,171.061,4.0,,Universal Music Group,"C © 2015 3 Beat Productions Ltd, P ℗ 2015 3 Beat Productions Ltd",8974 +8975,spotify:track:6usohdchdzW9oML7VC4Uhk,Lose Control,spotify:artist:33qOK5uJ8AR2xuQQAhHump,Teddy Swims,spotify:album:5QMiub2LonMqxB7dhtbPlX,Lose Control,spotify:artist:33qOK5uJ8AR2xuQQAhHump,Teddy Swims,2023-06-23,https://i.scdn.co/image/ab67616d0000b2731d856e66d33e22746c21a09c,1,1,210688,https://p.scdn.co/mp3-preview/51e51cc257e4186893b1923abf42fdaabbeeda37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USWB12302315,spotify:user:bradnumber1,2024-02-24T10:11:30Z,,0.561,0.604,9.0,-4.409,1.0,0.0337,0.199,1.9e-05,0.104,0.242,159.92,3.0,,Warner Records,"C © 2023 SWIMS Int. under exclusive license to Warner Records Inc., P ℗ 2023 SWIMS Int. under exclusive license to Warner Records Inc.",8975 +8976,spotify:track:66ujRcQB3xjilVohGyvTKM,San Francisco (Be Sure to Wear Flowers in Your Hair),spotify:artist:7d7AZ3CQC457bFhK0wHpSO,Scott McKenzie,spotify:album:28oPljw32I8H4LWfdQ2z7z,The Graduate - Music From The Broadway Comedy,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2002-04-09,https://i.scdn.co/image/ab67616d0000b2736694d49395fd6b69b2221faa,1,13,177333,https://p.scdn.co/mp3-preview/5663231ea5c8340e4198352a0cef6ba4094e26e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USSM16701025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.569,0.428,7.0,-13.038,1.0,0.0292,0.457,5.08e-06,0.105,0.617,113.168,4.0,,Columbia/Legacy,"P Originally Recorded Prior to 1972. All Rights Reserved By BMG Entertainment, (P) 1990 Capitol Records, Inc., Originally Released 1959, 1962, 1964, 1965, 1966, 1967, 1968, 1970, (P) 2002 Sony Music Entertainment Inc.",8976 +8977,spotify:track:1oHClQEgDmmbcEx12Kc5nZ,4 Minutes (feat. Justin Timberlake & Timbaland),"spotify:artist:6tbjWDEIzxoDsBA1FuhfPW, spotify:artist:31TPClRtHm23RisEBtV3X7, spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ","Madonna, Justin Timberlake, Timbaland",spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,4,189693,https://p.scdn.co/mp3-preview/57e975c1cc003797ed03390474ce9e345e20e031?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USWB10903601,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,pop,dance pop,pop,pop rap",0.753,0.931,2.0,-4.922,1.0,0.0653,0.00994,0.00696,0.234,0.767,113.026,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",8977 +8978,spotify:track:5dRQUolXAVX3BbCiIxmSsf,Your Love,spotify:artist:1zxDewzd2j1ZdSBGaYcr0y,The Outfield,spotify:album:5FfkiNcXAvagExRCLd8nn4,Super Hits,spotify:artist:1zxDewzd2j1ZdSBGaYcr0y,The Outfield,1985,https://i.scdn.co/image/ab67616d0000b27301ed248b4ac01c868e688322,1,5,221840,https://p.scdn.co/mp3-preview/70ba0126426a961829911794993a07c520a95d96?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USSM18500264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,power pop,0.555,0.757,1.0,-7.868,0.0,0.0601,0.103,1.16e-06,0.0631,0.582,129.607,4.0,,Columbia/Legacy,"P 1985, 1987, 1989, 1998 Sony Music Entertainment Inc.",8978 +8979,spotify:track:1bdXMstfxFWYSkEFTnJMoN,Enter Sandman,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:3A4zAmE5c4dUAAqEJz6hCH,Metallica,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1991-01-01,https://i.scdn.co/image/ab67616d0000b273aeef6d1f525548aabcea0f6e,1,1,331266,https://p.scdn.co/mp3-preview/6e1016d38d99a88b37d7546d785f3fede2691eb2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF089190013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.577,0.828,6.0,-8.691,0.0,0.0298,0.00213,0.0114,0.0581,0.604,123.257,4.0,,Universal Music Group,"C © 1991 Metallica, P ℗ 1991 Metallica",8979 +8980,spotify:track:3XKIUb7HzIF1Vu9usunMzc,Maria Maria (feat. The Product G&B),"spotify:artist:6GI52t8N5F02MxU0g5U69P, spotify:artist:782IpIScTpnDhYb9hyxOu1","Santana, The Product G&B",spotify:album:10aiDpdFGyfCFEcqpx6XTq,Supernatural (Remastered),spotify:artist:6GI52t8N5F02MxU0g5U69P,Santana,1999-06-15,https://i.scdn.co/image/ab67616d0000b27347eb3ea5a92904c19e102e54,1,7,261973,https://p.scdn.co/mp3-preview/aeca3af8544ab78fef1485a06e5542b65ce00d66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USAR19900035,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,classic rock,mexican classic rock",0.777,0.601,2.0,-5.931,1.0,0.126,0.0406,0.00201,0.0348,0.68,97.911,4.0,,Columbia/Legacy,"P (P) 1999 RCA/JIVE Label Group, a unit of Sony Music Entertainment",8980 +8981,spotify:track:5p7ujcrUXASCNwRaWNHR1C,Without Me,spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,spotify:album:0zzrCTzvL4ZmR42xF46Afm,Without Me,spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,2018-10-04,https://i.scdn.co/image/ab67616d0000b273c42acc1b86597285c2c79559,1,1,201660,https://p.scdn.co/mp3-preview/f689e4e6d50fa889f3fdc9a726ec5ed2c76477f6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,69,USUM71813499,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,etherpop,indie poptimism,pop",0.752,0.488,6.0,-7.05,1.0,0.0705,0.297,9.11e-06,0.0936,0.533,136.041,4.0,,Capitol Records,"C © 2018 Capitol Records, LLC, P ℗ 2018 Capitol Records, LLC",8981 +8982,spotify:track:5b2ACxzxhGeLPDr500fQzy,Ghosts 'N' Stuff - Radio Edit,"spotify:artist:2CIMQHirSU0MQqyYHq0eOx, spotify:artist:2SNg8nqwOHF1eZgRnL9zes","deadmau5, Rob Swire",spotify:album:06W8V7TcWsyKAW4NxGl2lQ,Ghosts 'n' Stuff,"spotify:artist:2CIMQHirSU0MQqyYHq0eOx, spotify:artist:2SNg8nqwOHF1eZgRnL9zes","deadmau5, Rob Swire",2009-01-01,https://i.scdn.co/image/ab67616d0000b2738492bf7e21ad9185602de768,1,1,191426,https://p.scdn.co/mp3-preview/cb44dd1a76cd35ed89ce8fa66a48af65a73fa4dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBTDG0900132,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian electronic,complextro,edm,electro house,pop dance,progressive electro house,progressive house",0.542,0.8,8.0,-5.362,1.0,0.0804,6.69e-05,0.00541,0.79,0.41,127.964,4.0,,Mau5trap/Virgin,"C © 2009 mau5trap Recordings Ltd, P ℗ 2009 mau5trap Recordings Ltd",8982 +8983,spotify:track:3W5KHP0Yr56ejVDns9vci3,Wish You The Best,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,spotify:album:7dhkqX7ovYADB1xwZr9bwS,Wish You The Best,spotify:artist:4GNC7GD6oZMSxPGyXy4MNB,Lewis Capaldi,2023-04-14,https://i.scdn.co/image/ab67616d0000b273f4b2bcecd4647b0ba6f59e0b,1,1,210880,https://p.scdn.co/mp3-preview/8080796f52a9890c557cb15aff35a69babf52ad5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEUM72206010,spotify:user:bradnumber1,2023-07-05T22:56:22Z,"pop,uk pop",0.675,0.48,3.0,-3.658,1.0,0.0316,0.547,0.0,0.0943,0.491,107.86,4.0,,Vertigo Berlin,"C © 2023 Universal Music GmbH, P ℗ 2023 Universal Music GmbH",8983 +8984,spotify:track:4xFxK0FXmNlUDRgCaIQCVn,Here With Me,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,spotify:album:7ydMeYrv8bFFRkkHepoJM4,No Angel,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,1999,https://i.scdn.co/image/ab67616d0000b2733e5cbf3b3ac5905cb68377d5,1,1,255400,https://p.scdn.co/mp3-preview/ea104cd879d8ea4875223ac20dceefa64f340c37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USAR19900244,spotify:user:bradnumber1,2022-12-21T10:16:11Z,"dance pop,europop,lilith,neo mellow,pop rock",0.555,0.578,11.0,-7.942,0.0,0.0277,0.113,3.43e-06,0.0747,0.333,83.382,4.0,,Sony BMG Music UK,P (P) 2008 Sony BMG Music Entertainment (UK) Limited,8984 +8985,spotify:track:7HR024DKw3SnKzCDJp3Bnf,Sweet Home Alabama,spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,spotify:album:5G5zoGQ8b9h0FRuazRvDdJ,A Retrospective,spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,1993-04-19,https://i.scdn.co/image/ab67616d0000b273e566319958fcf66cee4d5340,1,1,287173,https://p.scdn.co/mp3-preview/125986ae6eb995983b84776b7e0d368f6a74cbbf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC17446153,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock,southern rock",0.598,0.606,0.0,-11.812,1.0,0.0256,0.162,0.000357,0.353,0.91,97.736,4.0,,Universal Music Ltd.,"C (C) 1993 Geffen Records, P (P) 1993 Geffen Records",8985 +8986,spotify:track:55JrQ3cHaR9lWGnmAZ0sGy,Ruby Don't Take Your Love to Town,spotify:artist:0WjkBDqno4HbjwNDqyMgVa,Kenny Rogers & The First Edition,spotify:album:1ICCEMh0HkoVHoQrRZrPbc,The Very Best of Kenny Rogers & The First Edition,spotify:artist:0WjkBDqno4HbjwNDqyMgVa,Kenny Rogers & The First Edition,2016-09-23,https://i.scdn.co/image/ab67616d0000b27345cef166a877606768766af6,1,1,179933,https://p.scdn.co/mp3-preview/fd81499d3643008a4c12d7896b5d6fbe986d359e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAFM0601338,spotify:user:bradnumber1,2021-08-08T09:26:31Z,psychedelic rock,0.665,0.504,0.0,-15.043,1.0,0.0369,0.249,0.0344,0.0995,0.963,109.738,4.0,,Ambition Entertainment,P (P) 2015 Ambition Entertainment Pty Ltd,8986 +8987,spotify:track:2xI7o9zYcqynmueNH4foku,Take A Look Around,spotify:artist:165ZgPlLkK7bf5bDoFc6Sb,Limp Bizkit,spotify:album:3hGM52SddRWwI4yatyZYmb,Chocolate Starfish And The Hot Dog Flavored Water,spotify:artist:165ZgPlLkK7bf5bDoFc6Sb,Limp Bizkit,2000-10-17,https://i.scdn.co/image/ab67616d0000b2736a64f9b4a4909f3c86e4572a,1,10,321040,https://p.scdn.co/mp3-preview/374cab869a83d694dbb329c87897fece5ea466e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10000604,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,post-grunge,rap metal,rock",0.49,0.856,1.0,-5.659,1.0,0.049,0.018,0.36,0.0871,0.516,101.93,4.0,,Universal Music Group,"C © 2000 Interscope Records, P ℗ 2000 Interscope Records",8987 +8988,spotify:track:54aoawijl2b6LdsjHmmXME,Black Friday,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,spotify:album:64z1bEoHESzL1vSYWFP6M7,Pushing Buttons,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,1998-09-21,https://i.scdn.co/image/ab67616d0000b273186241b2aef8d9e5aedcd72b,1,1,148493,https://p.scdn.co/mp3-preview/b8c0fad0c8f468bd23c776d7e71564ead19a79c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUUNO9800024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian psych,australian rock",0.407,0.971,9.0,-1.461,0.0,0.112,7.2e-05,0.00802,0.219,0.431,159.15,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Grinspoon, P ℗ 1998 Grinspoon",8988 +8989,spotify:track:31RSYSyrlWJpWBVhVSaF81,I'm Leaving It up to You,spotify:artist:4pm3g02BZ11lBvSCuomYaW,Dale & Grace,spotify:album:3IE3gaD38XDmEPh4NJvCfO,I'm Leaving It up to You,spotify:artist:4pm3g02BZ11lBvSCuomYaW,Dale & Grace,2014-03-07,https://i.scdn.co/image/ab67616d0000b273d699d92c9ebe4ac09648e837,1,1,138997,https://p.scdn.co/mp3-preview/9277c1cb959b64d043e0211b8479503afb6777cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,QMDA71494105,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brill building pop,swamp pop",0.528,0.429,11.0,-7.155,1.0,0.0256,0.205,0.00143,0.102,0.723,104.766,3.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,8989 +8990,spotify:track:5Xm9m4FR8Uw9pDR6ph2K0c,Let It Rock,"spotify:artist:0Chxmm4XMM87mJOHvyiUzL, spotify:artist:55Aa2cqylxrFIXC767Z865","Kevin Rudolf, Lil Wayne",spotify:album:3339EQMJMyAcEfr9a5UQE8,In The City,spotify:artist:0Chxmm4XMM87mJOHvyiUzL,Kevin Rudolf,2008-01-01,https://i.scdn.co/image/ab67616d0000b2739b01b7acf50adbb59c52a6b3,1,2,231173,https://p.scdn.co/mp3-preview/37978d416d66066afb04a74ca466122d91a39852?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USCM50800823,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop rap,wrestling,hip hop,new orleans rap,pop rap,rap,trap",0.607,0.784,7.0,-4.41,1.0,0.0397,0.000684,0.0,0.0678,0.442,113.172,4.0,,Universal Music Group,"C © 2008 Cash Money Records Inc., P ℗ 2008 Cash Money Records Inc.",8990 +8991,spotify:track:6QfS2wq5sSC1xAJCQsTSlj,Shallow - Radio Edit,"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:4VIvfOurcf0vuLRxLkGnIG","Lady Gaga, Bradley Cooper",spotify:album:3edjzMAVB9RYRd4UcZBchx,A Star Is Born Soundtrack (Without Dialogue),"spotify:artist:1HY2Jd0NmPuamShAr6KMms, spotify:artist:4VIvfOurcf0vuLRxLkGnIG","Lady Gaga, Bradley Cooper",2018-10-05,https://i.scdn.co/image/ab67616d0000b273b5d4b4ed17ec86c4b3944af2,1,6,217212,https://p.scdn.co/mp3-preview/c24eedd14e6ba0dc3a70618eb784840216f0ceb5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM71815945,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop,hollywood",0.575,0.33,7.0,-6.557,1.0,0.031,0.416,0.0,0.0872,0.276,95.799,4.0,,A Star is Born OST,"C © 2018 Interscope Records, Motion Picture Artwork © 2018 Warner Bros. Entertainment Inc. Motion Picture Photography © 2018 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Inc.,, P ℗ 2018 Interscope Records",8991 +8992,spotify:track:1yfHCiyxfm3XlKpFj5zsJU,Summer Rain - Remastered,spotify:artist:3TiISqKS6ESlMQ4WFfZJw2,Johnny Rivers,spotify:album:0Z3OgIIz9jnQ8lPofJn9zO,Realization,spotify:artist:3TiISqKS6ESlMQ4WFfZJw2,Johnny Rivers,1968,https://i.scdn.co/image/ab67616d0000b2737b114df6618de493d4cbeeb0,1,4,232426,https://p.scdn.co/mp3-preview/a896360c015eccdf7c0865f792b8197e14262de4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USEM39800097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.514,0.533,4.0,-12.024,0.0,0.033,0.25,0.00428,0.575,0.626,117.684,4.0,,Zonophone,"C © 1998 EMI Records USA, a division of Capitol Records Inc, P ℗ 1998 EMI Records USA, a division of Capitol Records Inc",8992 +8993,spotify:track:2vz1CsL5WBsbpBcwgboTAw,"Footloose - From ""Footloose"" Soundtrack",spotify:artist:3Y3xIwWyq5wnNHPp5gPjOW,Kenny Loggins,spotify:album:4FZ9s0pelFSliPWhVEWRcC,Footloose (15th Anniversary Collectors' Edition),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1984,https://i.scdn.co/image/ab67616d0000b2733b7492bb678d5d51683444ae,1,1,226826,https://p.scdn.co/mp3-preview/1e7776bbe23530e26f7947e52b0bd8555b9fc604?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USSM19803320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,new wave pop,singer-songwriter,soft rock,yacht rock",0.583,0.905,2.0,-6.132,1.0,0.0733,0.0984,0.00019,0.0593,0.646,173.982,4.0,,Columbia/Legacy,"P (P) 1981 Atlantic Recording Corp.,1982 Riva Records, Inc. 1983, 1984, 1998 Sony Music Entertainment Inc. WAITING FOR PLINE BAND 12",8993 +8994,spotify:track:4tMxTsEPybFSX1dq7BOC4K,I Heard It Through The Grapevine - Single Version (Mono),spotify:artist:3koiLjNrgRTNbOwViDipeA,Marvin Gaye,spotify:album:3ocIMWOUAdfgk0PZhFyFcM,Anthology: The Best Of Marvin Gaye,spotify:artist:3koiLjNrgRTNbOwViDipeA,Marvin Gaye,1995-01-01,https://i.scdn.co/image/ab67616d0000b27358d63359a8ebe83283eba84f,1,25,193493,https://p.scdn.co/mp3-preview/c0a09baf1364822c694b171b61db2f1480064bb6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16800265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,neo soul,northern soul,quiet storm,soul",0.735,0.52,11.0,-6.18,1.0,0.0371,0.255,0.0,0.106,0.688,118.441,4.0,,Universal Music Group,"C © 1995 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1995 Motown Records, a Division of UMG Recordings, Inc.",8994 +8995,spotify:track:2Avh5LgyS4UCeYbzmgiSg9,Who You Are,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:3FKhxgSZdtJBIjdHsjbxI0,No Code,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,1996-08-06,https://i.scdn.co/image/ab67616d0000b2734c29f49b11488856e468719c,1,3,230133,https://p.scdn.co/mp3-preview/80f6939225237a49e384c2a0a4e6e06a360e1b1c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,40,USSM19601754,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.427,0.884,4.0,-8.631,1.0,0.0905,0.0301,0.211,0.109,0.623,176.563,3.0,,Epic,P 1996 Sony Music Entertainment Inc.,8995 +8996,spotify:track:6F2vo4sxRNQ58VYe3pdiaL,Rapture,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,spotify:album:25eZFwT2UvVK1kxC3wMoSW,Greatest Hits: Blondie,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,2006-01-01,https://i.scdn.co/image/ab67616d0000b2734a91996f05bcfcdbc2c88e0e,1,6,299373,https://p.scdn.co/mp3-preview/d687a5408c81a5656848e702de53510b109d7bf1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USCH38700028,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop,permanent wave,power pop,rock,synthpop",0.724,0.704,11.0,-8.258,0.0,0.0511,0.113,0.00425,0.466,0.96,107.486,4.0,,Capitol Records,"C © 2006 Capitol Records, LLC, P This Compilation ℗ 2006 Capitol Records, LLC",8996 +8997,spotify:track:19ErwmP0jgtD889IXuE2xg,Paper Roses,spotify:artist:3ijY78RxOagYo8FOgSEkWj,Marie Osmond,spotify:album:0PIvR9XOFaqL6DYIChr4Hp,The Collection,"spotify:artist:5ZEAzHE2TzAwUcOj6jMIgf, spotify:artist:3ijY78RxOagYo8FOgSEkWj","Donny Osmond, Marie Osmond",2002-01-01,https://i.scdn.co/image/ab67616d0000b273de50cdc395c583aae809cfc4,1,5,158226,https://p.scdn.co/mp3-preview/112f0cca79710e08a1aa280abfaa3b057d58b44d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USPR37307333,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic country pop",0.343,0.491,8.0,-11.465,1.0,0.0337,0.0982,3.92e-06,0.351,0.687,114.761,4.0,,Spectrum,"C © 2002 Spectrum Music, P This Compilation ℗ 2002 Spectrum Music",8997 +8998,spotify:track:2cICfavTHuXtjn7Vz0xMPz,Sometimes Love Just Ain't Enough,"spotify:artist:2dgfCEMSVETFp29mRpiFpz, spotify:artist:5dbuFbrHa1SJlQhQX9OUJ2","Patty Smyth, Don Henley",spotify:album:0m1GeQ9X0dRcHknRxKIvUA,Patty Smyth's Greatest Hits Featuring Scandal,spotify:artist:2dgfCEMSVETFp29mRpiFpz,Patty Smyth,1998-09-07,https://i.scdn.co/image/ab67616d0000b273c013d1db667cc6169f9071a2,1,2,266000,https://p.scdn.co/mp3-preview/3a5410cbae016804ce79a16b5eed5723ab51fcf0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLIC0600775,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,album rock,classic rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.561,0.553,10.0,-6.537,1.0,0.0242,0.347,0.0,0.332,0.252,83.001,4.0,,Columbia/Legacy,"P (P) 1992, 1993 MCA Records, Inc., 1982, 1984, 1987, 1998 Sony Music Entertainment Inc.",8998 +8999,spotify:track:03UrZgTINDqvnUMbbIMhql,Gangnam Style (강남스타일),spotify:artist:2dd5mrQZvg6SmahdgVKDzh,PSY,spotify:album:0ZjxizLeMyFEjR27JIvD99,Gangnam Style (강남스타일),spotify:artist:2dd5mrQZvg6SmahdgVKDzh,PSY,2012-01-01,https://i.scdn.co/image/ab67616d0000b2736cfc57e5358c5e39e79bccbd,1,1,219493,https://p.scdn.co/mp3-preview/4ed443643fee0e9e3217630789a03b7a8f58b4a7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USUM71210283,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"k-rap,korean old school hip hop",0.727,0.937,11.0,-2.871,0.0,0.286,0.00417,0.0,0.091,0.749,132.067,4.0,,Silent Records/Universal Republic Records,"C © 2012 Schoolboy/Universal Republic Records, a division of UMG Recordings, Inc., P ℗ 2012 Schoolboy/Universal Republic Records, a division of UMG Recordings, Inc.",8999 +9000,spotify:track:6tXjP6xgPJ7Xr1igrO6bOE,Don't Stop The Music,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:1G2ZRwcqN6warfakvcPgEs,Good Girl Gone Bad: Reloaded,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2008-06-02,https://i.scdn.co/image/ab67616d0000b273ad4ef80be7f5e15d64ac5c25,1,3,267080,https://p.scdn.co/mp3-preview/9bd74e431cb8ae37489984e3dd3cdd77905a5c26?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70734700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.835,0.669,6.0,-5.582,0.0,0.0643,0.0336,6.92e-05,0.0535,0.542,122.668,4.0,,Universal Music Group,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",9000 +9001,spotify:track:1O2DYAwaGNRkGPGKEGpxo5,Fight For Your Right,spotify:artist:03r4iKL2g2442PT9n2UKsx,Beastie Boys,spotify:album:5izHWBylmEjk1yTVPAYJWj,Licensed To Ill,spotify:artist:03r4iKL2g2442PT9n2UKsx,Beastie Boys,1986-11-15,https://i.scdn.co/image/ab67616d0000b2731f3b3032cab1c984f9658e04,1,7,207400,https://p.scdn.co/mp3-preview/707ddc00a12e013b580a7b8e51fa0e23f40a76bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDJ28600007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,east coast hip hop,golden age hip hop,hip hop,old school hip hop,rap,rap rock,rock",0.669,0.76,8.0,-10.301,1.0,0.0344,0.138,0.0115,0.0876,0.591,133.7,4.0,,Universal Music Group,"C © 1986 Def Jam Recordings, P ℗ 1986 Def Jam Recordings",9001 +9002,spotify:track:2wO8aOvN1ogLy1N8XT1WJE,This Is a Call,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:4EnNuo8fG7dMoxMefbApRY,Foo Fighters,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,1995-07-04,https://i.scdn.co/image/ab67616d0000b273126420226a30aa75a2f52691,1,1,233360,https://p.scdn.co/mp3-preview/31e03ba51f4580aaf62ce4d05abc12d8010ef2a5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USRW29500014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.261,0.964,9.0,-6.654,1.0,0.0638,0.00141,2.87e-05,0.183,0.326,162.902,3.0,,RCA Records Label,"P (P) 1995 Roswell Records, Inc.",9002 +9003,spotify:track:7EADA7optHbdfvthkJFCmW,Someday,spotify:artist:4uN3DsfENc7dp0OLO0FEIb,Sugar Ray,spotify:album:717p2dG02D55NmbZY61135,The Sugar Ray Collection,spotify:artist:4uN3DsfENc7dp0OLO0FEIb,Sugar Ray,2013-07-17,https://i.scdn.co/image/ab67616d0000b273889a00a8fd3bf01435e1c8b0,3,6,242800,https://p.scdn.co/mp3-preview/4fbaa0228cce7049c0f948e492566128adddab0a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USAT20902984,spotify:user:bradnumber1,2022-09-21T03:52:53Z,"alternative metal,funk metal,pop rock,post-grunge",0.745,0.682,1.0,-4.39,0.0,0.0287,0.0105,0.0836,0.21,0.939,110.855,4.0,,Razor & Tie,"C © 2013 RT Industries, P ℗ 2013 RT Industries",9003 +9004,spotify:track:2U8g9wVcUu9wsg6i7sFSv8,Every Teardrop Is a Waterfall,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:2R7iJz5uaHjLEVnMkloO18,Mylo Xyloto,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2011-10-24,https://i.scdn.co/image/ab67616d0000b273de0cd11d7b31c3bd1fd5983d,1,7,240796,https://p.scdn.co/mp3-preview/701e4b419f941137fdcafdf04fbc3ac625d54e64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBAYE1101193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.425,0.732,9.0,-6.883,1.0,0.0396,0.00194,0.0103,0.171,0.333,117.98,4.0,,Parlophone UK,"C © 2011 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2011 Parlophone Records Ltd, a Warner Music Group Company",9004 +9005,spotify:track:1zfQmBioUdDy9ZhuJP3hA7,Smile Like You Mean It,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,spotify:album:1ujPmNlTMp41h4EG6OOBGR,Hot Fuss,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,2004-06-07,https://i.scdn.co/image/ab67616d0000b27348f15b8233e77462047a6e99,1,3,235480,https://p.scdn.co/mp3-preview/af2c458563f58ec255c03703ecaf9a56cc100989?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20400275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,modern rock,permanent wave,rock",0.37,0.981,3.0,-2.627,0.0,0.156,0.00037,0.0101,0.163,0.395,125.006,4.0,,Island Records,"C © 2007 Island Records, a division of UMG Recordings, Inc., P ℗ 2007 Island Records, a division of UMG Recordings, Inc.",9005 +9006,spotify:track:4Kun2cYYTXYCoz1vfhKLbq,Celebration,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,spotify:album:2uo4Y480P0k5rKL8lwzuW6,Bondi Road,spotify:artist:622HMYOaiqowUmcd5t3b7t,Dragon,1989,https://i.scdn.co/image/ab67616d0000b273a128f6f2f426d9ce7b253f04,1,12,235400,https://p.scdn.co/mp3-preview/6290f9e2a780f773dcb345f740dd30cc42333c50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUBM08945501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,kiwi rock",0.647,0.852,2.0,-11.169,1.0,0.0512,0.11,0.000283,0.237,0.436,125.908,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,9006 +9007,spotify:track:015qd1I4v00JIoK7yOUgKC,Rush Rush,spotify:artist:4PpmBoqphQusNFsxuVKb6j,Paula Abdul,spotify:album:6gHhunUztPgpyBmzeie6MH,Spellbound,spotify:artist:4PpmBoqphQusNFsxuVKb6j,Paula Abdul,1991-01-01,https://i.scdn.co/image/ab67616d0000b2734cca3a496c860b0558a11e02,1,3,292933,https://p.scdn.co/mp3-preview/0853b97c1045949243697109516dc98666c2855e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USVI29100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,soft rock",0.706,0.44,4.0,-11.577,1.0,0.0493,0.763,0.0,0.0958,0.395,90.012,4.0,,Virgin Records,"C © 1991 Virgin Records America, Inc., P ℗ 1991 Virgin Records America, Inc.",9007 +9008,spotify:track:5yY9lUy8nbvjM1Uyo1Uqoc,Life Is Good (feat. Drake),"spotify:artist:1RyvyyTE3xzB2ZywiAwp0i, spotify:artist:3TVXtAsR1Inumwj472S9r4","Future, Drake",spotify:album:5uCEoLCj3ZZZ1EtzQdQWVl,Life Is Good (feat. Drake),"spotify:artist:1RyvyyTE3xzB2ZywiAwp0i, spotify:artist:3TVXtAsR1Inumwj472S9r4","Future, Drake",2020-01-10,https://i.scdn.co/image/ab67616d0000b2738a01c7b77a34378a62f46402,1,1,237735,https://p.scdn.co/mp3-preview/f7e8ac5cc4f6b702718ac3e2e280e270ac16facc?cid=9950ac751e34487dbbe027c4fd7f8e99,True,71,USSM11914962,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,hip hop,rap,southern hip hop,trap,canadian hip hop,canadian pop,hip hop,pop rap,rap",0.676,0.609,2.0,-5.831,0.0,0.481,0.0706,0.0,0.152,0.508,142.037,4.0,,Epic/Freebandz,"P (P) 2020 Epic Records, a division of Sony Music Entertainment. With Freebandz.",9008 +9009,spotify:track:18SFEVHt61HnNrAcK8Rlos,He's Gonna Step On You Again - 2014 Remastered Version,spotify:artist:15KbeP35gI9t2vgYzwsTjj,John Kongos,spotify:album:0L12QTm0mPNvE5Lya3eJwx,Kongos (2014 Remastered Version),spotify:artist:15KbeP35gI9t2vgYzwsTjj,John Kongos,2014-10-02,https://i.scdn.co/image/ab67616d0000b273097a4e4648e0db801a290de6,1,10,267786,https://p.scdn.co/mp3-preview/d1180e11e8743bf3d5356aeff68454a360db7efc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBWX1400032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.705,0.728,0.0,-11.413,0.0,0.0301,0.0141,0.343,0.245,0.737,107.088,5.0,,Fly Records,"C (C) 2014 Bucks Records Limited, P (P) 2014 Bucks Records Limited",9009 +9010,spotify:track:0lOEOflAkoqLcgp0jqshcZ,On Top,"spotify:artist:6nxWCVXbOlEVRexSbLsTer, spotify:artist:09v1n02OCBEntKxrSTw1L1","Flume, T-Shirt",spotify:album:0cQ4rRAcQ8q5jh1cCjOET1,Flume,spotify:artist:6nxWCVXbOlEVRexSbLsTer,Flume,2012-12-21,https://i.scdn.co/image/ab67616d0000b273470615f940afad6ba5d169cc,1,5,231106,https://p.scdn.co/mp3-preview/d73c233239cd5dc94a8260a7ea60c24a64d8012d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFF00500382,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,australian indie,downtempo,edm,indietronica",0.528,0.757,6.0,-5.423,1.0,0.212,0.00957,5.53e-05,0.145,0.304,93.007,4.0,,Future Classic,"C 2012 Future Classic, P 2012 Future Classic",9010 +9011,spotify:track:3fcGGP62sllcNEhuFJVYeC,Right Here Right Now,spotify:artist:0roeI3yPusDWwWRzAqTopw,Jesus Jones,spotify:album:7hKst6QIxeAcpOx3o2y6mi,Doubt,spotify:artist:0roeI3yPusDWwWRzAqTopw,Jesus Jones,1991-01-28,https://i.scdn.co/image/ab67616d0000b273bb31ee7f9507621c548f1ec2,1,5,189293,https://p.scdn.co/mp3-preview/7e726bbbe1574a74a39bbbcd4b6e56da7ea30be6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAYE9000326,spotify:user:bradnumber1,2022-08-31T00:21:16Z,"britpop,dance rock,grebo",0.657,0.608,2.0,-13.565,1.0,0.0287,0.0088,3.45e-06,0.103,0.723,106.862,4.0,,RT Industries,"C © 2007 RT Industries, P ℗ 2007 RT Industries",9011 +9012,spotify:track:3Uo7WG0vmLQ07WB4BDwy7D,willow,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:5jmVg7rwRcgd6ARPAeYNSm,evermore,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2020-12-10,https://i.scdn.co/image/ab67616d0000b27325751b4b32829d6bbfe6be7f,1,1,214706,https://p.scdn.co/mp3-preview/a631beaf0401063d95402d4df8414f7c7db7ed04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USUG12004699,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.392,0.579,7.0,-9.195,1.0,0.164,0.835,0.00179,0.145,0.549,80.961,4.0,,Taylor Swift,"C © 2020 Taylor Swift, P ℗ 2020 Taylor Swift",9012 +9013,spotify:track:27qrSIhtCLUaKa3mAdGJPE,Scar,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,spotify:album:7Jdod1UuU1qpQArV8FDn2y,The Sound of White,spotify:artist:6aP8ry8w3bSNyfyqhE8rGf,Missy Higgins,2004,https://i.scdn.co/image/ab67616d0000b273da9e089d31e71af51bda6010,1,3,216200,https://p.scdn.co/mp3-preview/3ec49e381329754c3c54e3b4bcb6e20715f5ad49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWB10401947,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop",0.653,0.803,0.0,-5.674,1.0,0.0533,0.355,0.0,0.291,0.808,91.911,4.0,,Eleven: A Music Company,"C 2004 Eleven: A Music Company, P 2004 Eleven: A Music Company",9013 +9014,spotify:track:3PbsDnKdrZY0ttX7VE9s5R,Underdog,spotify:artist:11wRdbnoYqRddKBrpHt4Ue,Kasabian,spotify:album:2DHGeuRTttjurZDb0pSjx6,West Ryder Pauper Lunatic Asylum,spotify:artist:11wRdbnoYqRddKBrpHt4Ue,Kasabian,2009,https://i.scdn.co/image/ab67616d0000b273358f726999166b87f00e7066,1,1,277466,https://p.scdn.co/mp3-preview/5e0eefd1c6fd79caa07b4392c156dc4b78c72dd5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBARL0801796,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"britpop,garage rock,leicester indie,modern rock,rock",0.526,0.895,5.0,-5.407,0.0,0.0543,0.0603,1.3e-06,0.582,0.655,101.016,4.0,,Columbia,P Track 4 (P) 2007; all other tracks (P) 2009 Sony Music Entertainment UK Limited,9014 +9015,spotify:track:0BjfodYJYki5xbxHJZe0Cf,Big (feat. Gunna),"spotify:artist:5CCwRZC6euC8Odo6y9X8jr, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj, spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ","Rita Ora, David Guetta, Imanbek, Gunna",spotify:album:6Xpurw7FgmUrdcXjeiabmh,Big (feat. Gunna),"spotify:artist:5CCwRZC6euC8Odo6y9X8jr, spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5rGrDvrLOV2VV8SCFVGWlj","Rita Ora, David Guetta, Imanbek",2021-02-11,https://i.scdn.co/image/ab67616d0000b273645e64307719cff77b0d2ecf,1,1,156781,https://p.scdn.co/mp3-preview/4a6acbab898040f433e16d1c17bc30e8a794f4e1?cid=9950ac751e34487dbbe027c4fd7f8e99,True,34,GBAHS2100008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop,big room,dance pop,edm,pop,pop dance,electro house,pop dance,slap house,atl hip hop,melodic rap,rap,trap",0.781,0.843,7.0,-3.445,1.0,0.0349,0.0672,1.27e-06,0.0637,0.616,111.992,4.0,,Columbia/B1 Recordings,"P (P) 2021 Warner Music UK Limited under exclusive license to B1 Recordings GmbH, a Sony Music Entertainment company.",9015 +9016,spotify:track:1TsNXdBAoCqwQ5Z9UWuodm,Worry About Me (feat. blackbear),"spotify:artist:0X2BH1fck6amBIoJhDVmmJ, spotify:artist:2cFrymmkijnjDg9SS92EPM","Ellie Goulding, blackbear",spotify:album:0eAMj26t7RADI4nLaVqDum,Worry About Me,"spotify:artist:0X2BH1fck6amBIoJhDVmmJ, spotify:artist:2cFrymmkijnjDg9SS92EPM","Ellie Goulding, blackbear",2020-03-13,https://i.scdn.co/image/ab67616d0000b273264e66a15440551f9e42b9b5,1,1,179758,https://p.scdn.co/mp3-preview/daa1a84fffad9697cdad83de9189a472010e4808?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,GBUM72000941,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop,alt z,pop",0.663,0.716,5.0,-7.154,1.0,0.176,0.128,0.0,0.342,0.688,161.852,4.0,,Polydor Records,"C © 2020 Polydor Limited, P ℗ 2020 Polydor Limited",9016 +9017,spotify:track:4SYZ7FCMjYcBLbfRr4JARr,Leave (Get Out),spotify:artist:5xuNBZoM7z1Vv8IQ6uM0p6,JoJo,spotify:album:6IyAFxG9HItYtyHM1u5jhI,Jo Jo,spotify:artist:5xuNBZoM7z1Vv8IQ6uM0p6,JoJo,2004-01-01,https://i.scdn.co/image/ab67616d0000b273447102a93f66241d8b6bf29e,1,7,242840,https://p.scdn.co/mp3-preview/83012d6803de5564745c60fda2a5716ee75966b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBGR0300051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.689,0.566,5.0,-6.897,1.0,0.206,0.168,5.87e-05,0.082,0.449,87.033,4.0,,Universal Music Group International,"C © 2004 Black Ocean Records LLC, under exclusive licence to Universal Music International., P ℗ 2004 Black Ocean Records LLC, under exclusive licence to Universal Music International.",9017 +9018,spotify:track:4ebOl4StIjtrHteTl5NZhB,Hot,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:0XypvgyeJm4mNjH4QRHmYR,The Best Damn Thing,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2007,https://i.scdn.co/image/ab67616d0000b27359c1960ef8f6d502269b8008,1,7,203906,https://p.scdn.co/mp3-preview/51acc65e639ed512b347edff1a3030d6bfe1c6c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10700073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,candy pop,dance pop,pop",0.585,0.931,8.0,-3.784,1.0,0.0847,0.0188,1.74e-06,0.296,0.522,144.985,4.0,,RCA Records Label,"P (P) 2007 RCA Records, a Unit of SONY BMG MUSIC ENTERTAINMENT",9018 +9019,spotify:track:5LNYYasciJsYzgsWuRkXkp,Not Fair,spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,spotify:album:52MLLeRgpLPVpTQUk0BXNs,"It's Not Me, It's You",spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,2009-01-26,https://i.scdn.co/image/ab67616d0000b2730b386bfc7e98feaf1b5ed350,1,3,201146,https://p.scdn.co/mp3-preview/ba89443b9940a7705abab999ad43e1a2d674aa27?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAYE0802378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo mellow",0.712,0.864,5.0,-6.99,1.0,0.0399,0.0516,0.0115,0.173,0.934,121.474,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",9019 +9020,spotify:track:0v9Wz8o0BT8DU38R4ddjeH,No Problem (feat. Lil Wayne & 2 Chainz),"spotify:artist:1anyVhU62p31KFi8MEzkbf, spotify:artist:55Aa2cqylxrFIXC767Z865, spotify:artist:17lzZA2AlOHwCwFALHttmp","Chance the Rapper, Lil Wayne, 2 Chainz",spotify:album:71QyofYesSsRMwFOTafnhB,Coloring Book,spotify:artist:1anyVhU62p31KFi8MEzkbf,Chance the Rapper,2016-05-27,https://i.scdn.co/image/ab67616d0000b273e71dd15fc5bdefd5bff70452,1,2,304606,https://p.scdn.co/mp3-preview/b2246fd3360ec58aa7a12a9bf7381c6e9ebdf16a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,64,TCACO1667423,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,conscious hip hop,hip hop,pop rap,rap,trap,hip hop,new orleans rap,pop rap,rap,trap,atl hip hop,hip hop,pop rap,rap,southern hip hop,trap",0.652,0.795,11.0,-5.192,0.0,0.174,0.156,0.0,0.123,0.788,135.018,4.0,,Chance the Rapper,"C 2016 Chance the Rapper, P 2016 Chance the Rapper",9020 +9021,spotify:track:7uSsHbBFFAnkRQR1rDwP3L,Black Betty - Edit,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,spotify:album:5WqHoLszhaCZHgtTebMx8X,Tonight Alright,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,2004-03-29,https://i.scdn.co/image/ab67616d0000b273e49d8e4b88b70ac7fc3cc31c,1,3,205973,https://p.scdn.co/mp3-preview/a0dd803bcad33ac5bb239fb9e84dad3f96343d0d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,AUUM00430014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.562,0.865,7.0,-6.476,0.0,0.0922,2.06e-05,0.597,0.219,0.35,124.046,4.0,,Universal Music Australia Pty. Ltd.,"C © 2004 Universal Music Australia Pty Ltd., P ℗ 2004 Universal Music Australia Pty Ltd.",9021 +9022,spotify:track:2D7WrirGvL1vJwBFLwBSzJ,Little Shocks,spotify:artist:0LbLWjaweRbO4FDKYlbfNt,Kaiser Chiefs,spotify:album:4Zy4QEbCOIfB6PRyVvKQ7S,The Future Is Medieval,spotify:artist:0LbLWjaweRbO4FDKYlbfNt,Kaiser Chiefs,2011-07-27,https://i.scdn.co/image/ab67616d0000b27382f37f6c30793851a9d0b1f3,1,1,221959,https://p.scdn.co/mp3-preview/ee629b9e6b8732493d3c9f8226da089fcfa6c44c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDVX1100018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,modern rock,0.482,0.939,11.0,-3.77,0.0,0.133,0.00428,0.00437,0.102,0.358,91.929,4.0,,B Unique UK Ltd,"C 2011 Hipgnosis Songs Fund Limited, P 2011 Hipgnosis Songs Fund Limited",9022 +9023,spotify:track:2NMgVh5qaPprKTEzFe3501,Roxanne,spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:5vLIfhDpTmdyQ0YrlnXzSr,The Very Best Of Sting And The Police,"spotify:artist:0Ty63ceoRnnJKVEYP0VQpk, spotify:artist:5NGO30tJxFlKixkPSgXcFE","Sting, The Police",2002-01-01,https://i.scdn.co/image/ab67616d0000b273032ecf340e696eeb51b0e7a3,1,17,188906,https://p.scdn.co/mp3-preview/0e03a027992294c5c49cf64fcaf9a48e89139556?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAM7800003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.611,0.683,0.0,-9.872,1.0,0.426,0.0535,4.23e-06,0.0378,0.65,133.149,4.0,,Universal Music Group,"C © 2002 A&M Records Inc., P ℗ 2002 A&M Records Inc.",9023 +9024,spotify:track:6KKRDClzyxixBankDVkVUv,Timber,"spotify:artist:0TnOYISbd1XYRBk9myaseg, spotify:artist:6LqNN22kT3074XbTVUrhzX","Pitbull, Kesha",spotify:album:1webHYaeCy8j9smqS23sgE,Greatest Hits,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2017-12-01,https://i.scdn.co/image/ab67616d0000b273a5a3e231b426f32464c007a5,1,2,204000,https://p.scdn.co/mp3-preview/c5092de8ee41e2bc8398176d2949ce69a4112dae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USRC11301695,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,dance pop,pop",0.588,0.964,11.0,-4.099,1.0,0.0982,0.0291,0.0,0.145,0.802,129.975,4.0,,Mr.305/Polo Grounds Music/RCA Records,"P (P) 2017 RCA Records, a division of Sony Music Entertainment",9024 +9025,spotify:track:0sp00HSXkQyqTa6QqM0O8V,Leave Out All The Rest,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:2tlTBLz2w52rpGCLBGyGw6,Minutes to Midnight,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2007-05-14,https://i.scdn.co/image/ab67616d0000b2736e996745f2c7b8036abef213,1,3,209306,https://p.scdn.co/mp3-preview/69d997177dbddfb23aeddc495afb40c52ceb8485?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,USWB10701212,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.514,0.637,0.0,-6.418,1.0,0.0363,0.213,2.27e-06,0.389,0.18,80.401,4.0,,Warner Records,"C © 2007 Warner Records Inc., P ℗ 2007 Warner Records Inc.",9025 +9026,spotify:track:6QLU1GKy2Zh2mOh2uoJ0TV,These Words,spotify:artist:7o95ZoZt5ZYn31e9z1Hc0a,Natasha Bedingfield,spotify:album:1meis09isQJFDA65afUTt8,Unwritten,spotify:artist:7o95ZoZt5ZYn31e9z1Hc0a,Natasha Bedingfield,2004-09-06,https://i.scdn.co/image/ab67616d0000b2735c8872bc90197dd979e069fe,1,1,216360,https://p.scdn.co/mp3-preview/058951a3a7faa91e8ab612630af2b2e05e428bfe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL0400683,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,post-teen pop",0.734,0.636,5.0,-7.03,1.0,0.0815,0.0322,0.0,0.0808,0.931,96.987,4.0,,Phonogenic,P (P) 2004 Sony Music Entertainment UK Limited,9026 +9027,spotify:track:2ufmtcIFdFpuUYBPXK5f67,Graveyard,spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,spotify:album:68enXe5XcJdciSDAZr0Alr,Manic,spotify:artist:26VFTg2z8YR0cCuwLzESi2,Halsey,2020-01-17,https://i.scdn.co/image/ab67616d0000b2737636e1c9e67eaafc9f49aefd,1,3,181805,https://p.scdn.co/mp3-preview/5f6436586ce6389f0cab8e82c07e778c59daed12?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USUM71917563,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,etherpop,indie poptimism,pop",0.667,0.583,11.0,-5.127,0.0,0.0747,0.231,4.48e-05,0.181,0.187,92.043,4.0,,Capitol Records,"C © 2020 Capitol Records, LLC, P ℗ 2020 Capitol Records, LLC",9027 +9028,spotify:track:5ZZmT9o0MSOCGai0eZU4bM,She's a Mystery to Me,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:4EpWWMjlTMRrZi0zLH1SwX,The Ultimate Collection,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2016-10-28,https://i.scdn.co/image/ab67616d0000b2734281735dab01dc1dcca9ae2f,1,20,255080,https://p.scdn.co/mp3-preview/6e4452a8340cc5411a17deffd711115c38545e0d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USLIC0701004,spotify:user:bradnumber1,2022-06-30T00:05:32Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.429,0.482,0.0,-11.707,1.0,0.0272,0.0263,0.28,0.149,0.68,177.579,4.0,,Legacy Recordings,P This compilation (P) 2016 Sony Music Entertainment,9028 +9029,spotify:track:5fBww1oNdntGPokeDX5boQ,A Million Dreams,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:1oqnHxrKI3Gq8MKgAGDtMr,The Greatest Showman: Reimagined (Deluxe),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-12-08,https://i.scdn.co/image/ab67616d0000b273c4e9d12d9ccdd7e48d2a0329,1,2,273640,https://p.scdn.co/mp3-preview/d9ad3e3e27f90e56a47fdfb97463f3242f09171c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USAT21811535,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.312,0.499,7.0,-6.282,1.0,0.0397,0.272,0.0,0.0901,0.191,148.173,4.0,,Atlantic Records,"C © 2018 This compilation Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation., P ℗ 2018This compilation Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation.",9029 +9030,spotify:track:0XvjOhwCnXXFOSlBbV9jPN,Barbra Streisand - Radio Edit,spotify:artist:0q8J3Yj810t5cpAYEJ7gxt,Duck Sauce,spotify:album:5ihBBPbPvnQutkSqvDKs2K,Barbra Streisand,spotify:artist:0q8J3Yj810t5cpAYEJ7gxt,Duck Sauce,2010-10-15,https://i.scdn.co/image/ab67616d0000b2734c5b4db59bf6e92e9beefe18,1,1,196533,,False,40,GBSXS1000131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,disco house,0.769,0.922,1.0,-1.966,1.0,0.108,0.000939,0.197,0.233,0.506,127.965,4.0,,disco:wax,"P (P) 2010 X-Mix Productions, under exclusive license to disco:wax",9030 +9031,spotify:track:38zsOOcu31XbbYj9BIPUF1,Your Song,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:69P9Ro0W286yLFgYwrGVN0,Elton John,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1970-04-10,https://i.scdn.co/image/ab67616d0000b2734b292ed7c7360a04d3d6b74a,1,1,241786,https://p.scdn.co/mp3-preview/c0fb911d5fbdbed3e6e9da543dce6a3778638156?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,GBAMB9500072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.552,0.315,3.0,-11.028,1.0,0.0299,0.828,5.52e-06,0.101,0.324,128.187,4.0,,UMC (Universal Music Catalogue),"C © 2008 Mercury Records Limited, P This Compilation ℗ 2008 Mercury Records Limited",9031 +9032,spotify:track:3zLZ7AVfbYuy0BnRWLafZg,(Keep Feeling) Fascination,spotify:artist:1aX2dmV8XoHYCOQRxjPESG,The Human League,spotify:album:4Mu7aaT2AUrNVL2WQ29kAk,The Greatest Hits,spotify:artist:1aX2dmV8XoHYCOQRxjPESG,The Human League,1988,https://i.scdn.co/image/ab67616d0000b2732f124b6b8b940e378b41c1d1,1,7,225173,https://p.scdn.co/mp3-preview/1ee0870ee38fdbcf3fb358e073fac21689feea67?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAAA8300027,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop,permanent wave,sophisti-pop,synthpop",0.711,0.624,0.0,-8.011,1.0,0.08,0.421,2.27e-06,0.271,0.703,118.137,4.0,,Virgin Records Ltd,"C © 1995 Virgin Records Limited, P This Compilation ℗ 1995 Virgin Records Limited",9032 +9033,spotify:track:61VRBRAVXRl3J5zRDvtJXZ,It's Gonna Work Out Fine,spotify:artist:1ZikppG9dPedbIgMfnfx8k,Ike & Tina Turner,spotify:album:2UCdfQEDgzWtbzpaD4Mo47,Proud Mary: The Best Of Ike & Tina Turner,spotify:artist:1ZikppG9dPedbIgMfnfx8k,Ike & Tina Turner,1991-01-01,https://i.scdn.co/image/ab67616d0000b2739797a5691b83d778d15366ee,1,4,182293,https://p.scdn.co/mp3-preview/aae35cf95bb57510fcaacbebb4367f5155c82a65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,USEM38700210,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,rock-and-roll,soul,southern soul",0.701,0.496,0.0,-12.57,1.0,0.128,0.857,0.00332,0.0439,0.938,108.679,4.0,,Parlophone Catalogue,"C © 1991 Capitol Records Inc., P This Compilation ℗ 1991 Capitol Records Inc.",9033 +9034,spotify:track:5EYdTPdJD74r9EVZBztqGG,The Bad Touch,spotify:artist:6nDLku5uL3ou60kvCGZorh,Bloodhound Gang,spotify:album:7BuCGZPiQkZpyn0Wj8rxIh,Hooray For Boobies,spotify:artist:6nDLku5uL3ou60kvCGZorh,Bloodhound Gang,1999-10-04,https://i.scdn.co/image/ab67616d0000b273d6d86be2779b5b6b4980feb9,1,10,260506,https://p.scdn.co/mp3-preview/61e0ed385aa272cbd70dc5f1c0b319933ee713db?cid=9950ac751e34487dbbe027c4fd7f8e99,True,71,USIR19902530,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,comic,funk metal,funk rock,nu metal,rap rock",0.831,0.735,0.0,-6.254,0.0,0.0384,0.00397,0.0205,0.123,0.97,122.979,4.0,,Geffen,"C © 2000 Geffen Records, P ℗ 2000 Geffen Records",9034 +9035,spotify:track:043bfUkTydw0xJ5JjOT91w,Don't You Worry Child,"spotify:artist:1h6Cn3P4NGzXbaXidqURXs, spotify:artist:2auikkNYqigWStoHWK1Grq","Swedish House Mafia, John Martin",spotify:album:4ljisoNarj0BpQSMIEv88L,Until Now,spotify:artist:1h6Cn3P4NGzXbaXidqURXs,Swedish House Mafia,2012-01-01,https://i.scdn.co/image/ab67616d0000b273781f6dd5abe91929df0314e3,1,7,403493,https://p.scdn.co/mp3-preview/abae7ffcd8c653c8500f5698a5b94b715a455fb6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBAAA1200643,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop dance,progressive electro house,pop edm",0.632,0.88,2.0,-4.051,1.0,0.0463,0.0144,0.0021,0.118,0.338,129.007,4.0,,Virgin Records,"C © 2012 EMI Records Ltd, P ℗ 2012 EMI Records Ltd",9035 +9036,spotify:track:3DL3P7ZMOu5gApQwaUtseF,Another Night,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,spotify:album:4SJ6x0Hlml18n0Ur9hnWNU,Another Night,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,1995-04-10,https://i.scdn.co/image/ab67616d0000b273fd06c1a7292da1064f45c1ca,1,1,236600,https://p.scdn.co/mp3-preview/8eb09fa8dbeefd71a2d94986c8a28e952af4e893?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,DEC739400378,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,german techno,hip house",0.812,0.877,7.0,-7.596,1.0,0.0399,0.099,0.00441,0.135,0.885,125.916,4.0,,Hansa Local,P (P)1995 BMG Berlin Musik GmbH,9036 +9037,spotify:track:1sNSG13fsK6KPKKNIQXXrh,You Know You Like It,"spotify:artist:540vIaP2JwjQb9dm3aArA4, spotify:artist:2VAnyOxzJuSAj7XIuEOT38","DJ Snake, AlunaGeorge",spotify:album:307C8qOXhP1iVcp2MttpmO,You Know You Like It,"spotify:artist:540vIaP2JwjQb9dm3aArA4, spotify:artist:2VAnyOxzJuSAj7XIuEOT38","DJ Snake, AlunaGeorge",2014-10-14,https://i.scdn.co/image/ab67616d0000b2736282559db1c4278c9660039b,1,1,247266,https://p.scdn.co/mp3-preview/2bb86fdf96a345fd24d4f88726bb05af534ea611?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71414293,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electronic trap,pop,pop dance,electropop,house,uk dance",0.407,0.725,5.0,-5.346,0.0,0.188,0.0141,2.46e-06,0.306,0.247,196.093,4.0,,Universal Music Group,"C © 2014 Island Records, a division of Universal Music Operations Limited, P ℗ 2014 Island Records, a division of Universal Music Operations Limited",9037 +9038,spotify:track:4KqsoEi99o9rdVfhvA1IPB,Home,spotify:artist:5piMnm6faQpIVYaFfaZSKf,Teddy Cream,spotify:album:6HTNjuPg6UmXE3B8qcOTzy,Home,spotify:artist:5piMnm6faQpIVYaFfaZSKf,Teddy Cream,2020-03-20,https://i.scdn.co/image/ab67616d0000b2735b5346f5ab992ea240694cba,1,1,168387,https://p.scdn.co/mp3-preview/9dc9d3fd40421968943faf024bcdaada5111800b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUNV01900013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,melbourne bounce,0.638,0.874,9.0,-5.009,0.0,0.0508,0.00361,3.21e-05,0.075,0.262,112.077,4.0,,Hussle Recordings AU,"C (C) 2020 Hussle Recordings a division of TMRW Music Pty Ltd, P (P) 2020 Hussle Recordings a division of TMRW Music Pty Ltd",9038 +9039,spotify:track:34HKskUook8LY2JFy6e4Ob,Wouldn't It Be Good,spotify:artist:7kCL98rPFsNKjAHDmWrMac,Nik Kershaw,spotify:album:73s7f6K2K8u5GyKUQu6lhY,Human Racing (Expanded Edition),spotify:artist:7kCL98rPFsNKjAHDmWrMac,Nik Kershaw,1984,https://i.scdn.co/image/ab67616d0000b273615414ca5b26885ae7701a32,1,2,277053,https://p.scdn.co/mp3-preview/a5eefa85b3c1b05f213302d7f5ffa308aa2ec68a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBY0300006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.653,0.698,2.0,-8.549,0.0,0.028,0.174,0.00723,0.0711,0.763,97.02,4.0,,Universal Music Group,"C © 2012 Island Records, a division of Universal Music Operations Limited, P ℗ 2012 Island Records, a division of Universal Music Operations Limited",9039 +9040,spotify:track:1iDcKYNvo6gglrOG6lvnHL,Sympathy For The Devil,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:7oS7E5bFMzE8PXTZQKW0ge,Beggars Banquet,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1968-12-06,https://i.scdn.co/image/ab67616d0000b273d4875c4e4f5c5d2421ab9e4f,1,1,377746,https://p.scdn.co/mp3-preview/5dd130c5686531fc33e1b5c6b22fa72729aa4ffa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176810010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.668,0.672,9.0,-10.79,1.0,0.3,0.581,1.09e-06,0.0403,0.613,115.767,4.0,,ABKCO,"C © 2002 ABKCO Music & Records Inc., P ℗ 2002 ABKCO Music & Records Inc.",9040 +9041,spotify:track:4m3OS54KWywYhP7WD7z1cg,Life in a Northern Town,spotify:artist:1JVoO5bwfU8GNuAZLpBoHe,The Dream Academy,spotify:album:3T77PrRnq17gBhcctDtDC1,The Dream Academy,spotify:artist:1JVoO5bwfU8GNuAZLpBoHe,The Dream Academy,1985,https://i.scdn.co/image/ab67616d0000b27365ad3497dc02a54091a7c6db,1,1,259293,https://p.scdn.co/mp3-preview/b8b452f66db4f58278f2108a5d96bf3780c0fb5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB10107349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,new romantic,new wave,sophisti-pop",0.563,0.476,4.0,-13.342,1.0,0.0329,0.265,0.0,0.494,0.432,121.67,4.0,,Rhino/Warner Records,"C © 2004 Atlantic Records. Manufactured and Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Records. Manufactured and Marketed by Warner Strategic Marketing",9041 +9042,spotify:track:7oAly6qQFPu1JhmlE2Vujg,This Is Heaven,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,spotify:album:0ssKKiPvCwNu8gvvUxYfgd,This Is Heaven,spotify:artist:4Rxn7Im3LGfyRkY2FlHhWi,Nick Jonas,2021-03-04,https://i.scdn.co/image/ab67616d0000b273795b83345a17b85c500af2ee,1,1,214623,https://p.scdn.co/mp3-preview/08198566153c7c29cbeada0386002350686b8be0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM72102471,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.646,0.783,2.0,-4.801,0.0,0.0543,0.0372,0.0,0.0897,0.51,100.912,4.0,,Island Records,"C © 2021 Island Records, a division of UMG Recordings, Inc., P ℗ 2021 Island Records, a division of UMG Recordings, Inc.",9042 +9043,spotify:track:4kAJawkLZj4Q7N5521ofP6,With Or Without You - Remastered,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:2qKmY7yt0kXdzSQxYAu9eZ,The Joshua Tree (Deluxe Edition Remastered),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1987-03-10,https://i.scdn.co/image/ab67616d0000b2732e5cea3a0e09cccb3d1568e8,1,3,295520,https://p.scdn.co/mp3-preview/a7e5de3437eecf201cc1817a7b2d8fae96910199?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70709792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.538,0.432,2.0,-11.882,1.0,0.0295,0.000185,0.309,0.139,0.116,110.181,4.0,,Universal Music Group,"C © 2007 Universal-Island Records Ltd., P ℗ 2007 Universal-Island Records Ltd.",9043 +9044,spotify:track:2ythTsnUtYWtpMaOaJhsHz,Pray,spotify:artist:2uhEmRPgI5Ppg2T3o8VP31,Tina Cousins,spotify:album:7D0xnocXwTZQaVbHq7FQCx,Killing Time,spotify:artist:2uhEmRPgI5Ppg2T3o8VP31,Tina Cousins,2000-06-06,https://i.scdn.co/image/ab67616d0000b273723a1053ab183bc897c48cee,1,2,236880,https://p.scdn.co/mp3-preview/4aa32909e231a4e1a5db412e02cbabfa74b09d14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAHK9800113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum dance,eurodance",0.681,0.944,11.0,-6.956,1.0,0.0374,0.187,0.000202,0.127,0.432,129.988,4.0,,NITRON media,P (P) 2010 Sony Music Entertainment UK Limited,9044 +9045,spotify:track:2IqkGWpNk5Z6AotRLwHkEp,What You Got - What U Got,spotify:artist:6oBrKiwj82jUNB6DpeUq76,Abs Breen,spotify:album:0MnIIyrXuXQCRtdNurf8Zp,Abstract Theory,spotify:artist:2T3J7n1kgrAa4ujlAiFzcQ,ABS,2003-08-25,https://i.scdn.co/image/ab67616d0000b273cf81ecb7abeada1c5683dafb,1,3,229826,https://p.scdn.co/mp3-preview/e4407f95092f277b59428471123138799788351e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBARL0200098,spotify:user:bradnumber1,2023-03-10T13:12:41Z,,0.685,0.841,7.0,-4.863,1.0,0.114,0.0254,1.51e-06,0.31,0.813,82.008,4.0,,RCA Records Label,P (P) 2003 Sony Music Entertainment UK Limited,9045 +9046,spotify:track:6SUocL0caib4mLHe8ZrZzi,Sun Comes Up (feat. James Arthur),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:4IWBUUAFIplrNtaOHcJPRM","Rudimental, James Arthur",spotify:album:5UGyzp6HT8oy0eTkBfxtQ8,Sun Comes Up (feat. James Arthur),"spotify:artist:4WN5naL3ofxrVBgFpguzKo, spotify:artist:4IWBUUAFIplrNtaOHcJPRM","Rudimental, James Arthur",2017-06-30,https://i.scdn.co/image/ab67616d0000b273db779b39b22152a560a22bde,1,1,232627,https://p.scdn.co/mp3-preview/3aba2ee1ef07898d5a396d75397ec46decf0b82b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBAHS1700559,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,uk dance,uk funky,pop,talent show,uk pop",0.619,0.858,10.0,-5.28,1.0,0.0929,0.00791,0.0,0.173,0.23,106.017,4.0,,Atlantic Records UK,"C © 2017 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company, P ℗ 2017 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group company",9046 +9047,spotify:track:6PYRmDxsODnCIOu7nngi9E,It's Like That,"spotify:artist:3CQIn7N5CuRDP8wEI7FiDA, spotify:artist:5w0ka9nPOmEH6CcZrutyP2","Run–D.M.C., Jason Nevins",spotify:album:2Cly7tOvZObQhoO0IGQ2X0,Ultimate Run Dmc,spotify:artist:3CQIn7N5CuRDP8wEI7FiDA,Run–D.M.C.,2003-10-28,https://i.scdn.co/image/ab67616d0000b273646fdccc69f5e3a31b246ee1,1,18,248573,https://p.scdn.co/mp3-preview/96c34eb444ca9d7fb771afc47a1fd85c556eda29?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR19700609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,golden age hip hop,hip hop,old school hip hop,queens hip hop,rap",0.852,0.966,1.0,-6.179,1.0,0.0385,0.00615,0.314,0.111,0.72,129.002,4.0,,Arista,P (P) 2003 Arista Records LLC,9047 +9048,spotify:track:64XSAtXpCJUmadm3fkpH4z,Back 2 Good,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:4vUXTcKz7tXxrNl84meN6i,Yourself or Someone Like You,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,1996-10-01,https://i.scdn.co/image/ab67616d0000b27323dbfb8b3b1be429587f5380,1,6,340173,https://p.scdn.co/mp3-preview/a1c616634983dd028a76fa9ab3e3d4f829c63622?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USAT29600033,spotify:user:bradnumber1,2021-11-17T22:17:33Z,"neo mellow,pop rock,post-grunge",0.559,0.504,7.0,-9.455,1.0,0.0246,0.106,0.0,0.13,0.479,89.051,4.0,,Lava/Atlantic,"C © 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 1996 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",9048 +9049,spotify:track:6vvYOBxKmCvUSEQgxdZiAq,Lovefool - Radio Edit,spotify:artist:1tqZaCwM57UFKjWoYwMLrw,The Cardigans,spotify:album:5wuDCQ0ETSqaYPRhFvoeDY,Best Of,spotify:artist:1tqZaCwM57UFKjWoYwMLrw,The Cardigans,2008-01-25,https://i.scdn.co/image/ab67616d0000b273bbed791537e764e79ac51791,1,6,198240,https://p.scdn.co/mp3-preview/f548f1a669b14992fc5d1c2339f8eb114c175f3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEBKB9629380,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,new wave pop,permanent wave,pop rock,swedish pop",0.648,0.688,9.0,-4.671,1.0,0.0282,0.0251,3.08e-06,0.149,0.937,111.854,4.0,,Universal Music Group,"C © 2008 Universal Music AB, P ℗ 2008 Universal Music AB",9049 +9050,spotify:track:3ZnlYvqCnjJ7OeZhVKkWPg,Honey - 1991 - Remaster,spotify:artist:5gPEo032lzARtzuVqJIm9o,Bobby Goldsboro,spotify:album:16QapBbCMXHEekBXfUCiKp,Honey - The Best of Bobby Goldsboro,spotify:artist:5gPEo032lzARtzuVqJIm9o,Bobby Goldsboro,1991,https://i.scdn.co/image/ab67616d0000b273e684177cdff3797ed121d300,1,15,239066,https://p.scdn.co/mp3-preview/84eb9cecc1c626fb705fc0c2c68f15801890ba94?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCN19100052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,easy listening,merseybeat,rock-and-roll",0.5,0.189,7.0,-17.563,1.0,0.0307,0.21,3.08e-05,0.129,0.587,93.259,4.0,,Capitol Nashville,"C (C) 1991 Capitol Records, Inc., P Compilation (P) 1991 Capitol Records Nashville. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by Nashville Catalog,",9050 +9051,spotify:track:5k5U7YXpf4FDY5jLDzBArn,"(I've Had) The Time of My Life - From ""Dirty Dancing"" Soundtrack","spotify:artist:1XE70WwxhnrXNAJYQQ9ygx, spotify:artist:1BwHztAQKypBuy5WBEdJnG","Bill Medley, Jennifer Warnes",spotify:album:3LRhyjBARwKrCp28rmcmAM,Dirty Dancing: Anniversary Edition,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-09-21,https://i.scdn.co/image/ab67616d0000b273cb3f972145ced47e76a95c63,1,1,288986,https://p.scdn.co/mp3-preview/63c92d13c4ace9e621b6559cef82f633536b770a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USRC10300895,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.695,0.81,6.0,-7.898,0.0,0.0547,0.087,0.00678,0.06,0.39,108.724,4.0,,RCA/Legacy,P This compilation (P) 2012 Sony Music Entertainment.,9051 +9052,spotify:track:7wvJ4sN0ld6gwZmJTOQKvH,I Believe In You,spotify:artist:4Ti0EKl2PVEms2NRMVGqNe,Don Williams,spotify:album:4u2IM9QjiwLT43LhkfivO2,The Very Best Of Don Williams,spotify:artist:4Ti0EKl2PVEms2NRMVGqNe,Don Williams,1992-01-21,https://i.scdn.co/image/ab67616d0000b27315c586676832d60a1f8ee41c,1,12,245226,https://p.scdn.co/mp3-preview/963f1035fe39ae4644fd9c3058cc92698a7f4b01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USMC18009838,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country",0.695,0.168,7.0,-23.092,1.0,0.0397,0.89,0.0271,0.121,0.557,117.939,3.0,,Geffen*,"C © 1999 MCA Records Inc., P This Compilation ℗ 1999 MCA Records Inc.",9052 +9053,spotify:track:7fKwfHOMJrSSqajdKIa7Hd,Everybody's Somebody's Fool,spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,spotify:album:16HB1qo5ljAAhNB4KFcyvL,Rock N' Roll Legends (International Version),spotify:artist:3EY5DxGdy7x4GelivOjS2Q,Connie Francis,2008-01-01,https://i.scdn.co/image/ab67616d0000b2739a0d4647652cb13d92466fa2,1,7,159613,https://p.scdn.co/mp3-preview/3f5fab79e60f55600de6ee50333cfc5cb8daddd1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR36012032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,easy listening,rock-and-roll,rockabilly",0.592,0.693,1.0,-7.243,1.0,0.029,0.779,1.4e-05,0.182,0.868,84.25,4.0,,Polydor,"C © 2008 Polydor Ltd. (UK), P ℗ 2008 Polydor Ltd. (UK)",9053 +9054,spotify:track:2JoZzpdeP2G6Csfdq5aLXP,How Deep Is Your Love,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,spotify:album:5YHZaCxCuuK81h4Fimb9rT,Greatest,spotify:artist:1LZEQNv7sE11VDY3SdxQeN,Bee Gees,1979-01-01,https://i.scdn.co/image/ab67616d0000b27352038992fc6d7868f31d23b7,1,6,245200,https://p.scdn.co/mp3-preview/d9e96ef2af8fdf857c1e8dc255136e4836c6ae2d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBAKW7701005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.633,0.357,5.0,-9.366,0.0,0.0264,0.107,0.0,0.133,0.672,104.938,4.0,,Bee Gees Catalog,"C © 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group, P This Compilation ℗ 2007 Barry Gibb, The Estate of Robin Gibb and Yvonne Gibb, under exclusive license to Capitol Music Group",9054 +9055,spotify:track:1ARs1qjtUmZ3UxTYW1z4ZM,He's Just No Good For You,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,spotify:album:2BsSH7JEiuPmVmPfIblGAn,Mouth To Mouth,spotify:artist:6PFydyUHMKD2jm5NXzRPiK,Mental As Anything,1987-07-31,https://i.scdn.co/image/ab67616d0000b273d102b294cff60fefb9603d4f,1,6,206666,https://p.scdn.co/mp3-preview/4210d123413c7fb57c24faa8b7b170739f95eb95?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUFE00000543,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.663,0.628,11.0,-11.149,0.0,0.0289,0.00686,0.0,0.139,0.938,118.159,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Syray Music, P ℗ 2015 Syray Music",9055 +9056,spotify:track:3De1LyIjNUrzsBt4cTu0iv,Crazier,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:2vBF31kBRYg7sGXyrdPdz1,Hannah Montana The Movie,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-01-01,https://i.scdn.co/image/ab67616d0000b2733f14c5de6b9703c1ab769bd2,1,12,191946,https://p.scdn.co/mp3-preview/99f0bc7d59713830265303991a10aab0b491e566?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY0803263,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.447,0.541,4.0,-5.374,1.0,0.0274,0.0707,8.48e-06,0.119,0.218,133.109,3.0,,Universal Music Group,"C (C) 2009 Disney Enterprises Inc., P (P) 2009 Walt Disney Records",9056 +9057,spotify:track:1VuBmEauSZywQVtqbxNqka,Beautiful Day,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7gskILm9UyDvFlmmAoqn2g,All That You Can't Leave Behind,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2000-01-01,https://i.scdn.co/image/ab67616d0000b273e3f4221446f724b575a9aafb,1,1,246400,https://p.scdn.co/mp3-preview/433a88ff2fa9079ef6dfedf02094fb0d849713dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,GBAAN0000196,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.539,0.926,2.0,-6.495,1.0,0.0499,0.014,0.00136,0.36,0.454,136.279,4.0,,Universal-Island Records Ltd.,"C © 2000 Universal-Island Records Ltd., P ℗ 2000 Universal-Island Records Ltd.",9057 +9058,spotify:track:0c2VC70y7jq5qMPQnuunCP,If This Is It,spotify:artist:7A9yZMTrFZcgEWAX2kBfK6,Huey Lewis & The News,spotify:album:7tupdIXanhc5g9n6EsjMW5,Sports - 30th Anniversary Edition,spotify:artist:7A9yZMTrFZcgEWAX2kBfK6,Huey Lewis & The News,1983-09-15,https://i.scdn.co/image/ab67616d0000b27346fa0c0df81603f1d0a39971,1,7,233160,https://p.scdn.co/mp3-preview/856c0931f32cc15b58cdd696c89984f6fd9e3aa0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USCH39900069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave pop,rock,singer-songwriter,soft rock",0.349,0.667,7.0,-7.407,1.0,0.0329,0.208,1.5e-06,0.317,0.84,147.414,3.0,,Capitol Records (CAP),"C © 2013 Capitol Records, LLC, P ℗ 2013 Capitol Records, LLC",9058 +9059,spotify:track:1UfGX3eL0ifA3gJSwWPMBi,Little Diane,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,spotify:album:4XCCPbgyV1L06tIZmQYFwu,The Best Of Dion & The Belmonts,spotify:artist:2loYllWFfoWpoxC5YrJKc4,Dion & The Belmonts,2005-01-01,https://i.scdn.co/image/ab67616d0000b273605566683bef0b421bf8bf52,1,25,163320,https://p.scdn.co/mp3-preview/1c1f995249da008c2cee17220b68f9f50543e1d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USLA16200001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rock-and-roll,rockabilly",0.337,0.608,11.0,-9.827,0.0,0.0715,0.523,0.0,0.227,0.381,136.306,4.0,,EMI Gold,"C © 2005 EMI Records Ltd, P This Compilation ℗ 2005 EMI Records Ltd",9059 +9060,spotify:track:3pm1X3oQBKQ4vcp3i9PWRg,Things We Lost In The Fire,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,spotify:album:1jUoeAbO2HCADZ1uiyLYIo,Bad Blood,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,2013-01-01,https://i.scdn.co/image/ab67616d0000b273b89cf022db28fa31376e0ed8,1,2,240746,https://p.scdn.co/mp3-preview/70a9a78d805eb9cbcba3c82a266f3f3b4e725e3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAAA1200932,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop",0.587,0.918,4.0,-4.878,0.0,0.0581,0.0636,0.0,0.267,0.629,134.055,4.0,,Virgin Records,"C © 2013 Virgin Records Limited, P ℗ 2013 Virgin Records Limited",9060 +9061,spotify:track:1AuH8eXCNIzojMqt5xBrSO,Die For Me (feat. Future & Halsey),"spotify:artist:246dkjvS1zLTtiykXe5h60, spotify:artist:26VFTg2z8YR0cCuwLzESi2, spotify:artist:1RyvyyTE3xzB2ZywiAwp0i","Post Malone, Halsey, Future",spotify:album:3xiq77UtnlDXfcRz5IJu20,Hollywood's Bleeding,spotify:artist:246dkjvS1zLTtiykXe5h60,Post Malone,2019-09-06,https://i.scdn.co/image/ab67616d0000b27391bf597d2ed7528de53f71be,1,7,245280,https://p.scdn.co/mp3-preview/340f778064f3b25086c6796ec58bab2af948bae6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USUM71918729,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dfw rap,melodic rap,pop,rap,electropop,etherpop,indie poptimism,pop,atl hip hop,hip hop,rap,southern hip hop,trap",0.613,0.656,0.0,-2.955,1.0,0.0468,0.194,0.0,0.221,0.443,144.993,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",9061 +9062,spotify:track:2PTvdXK3tSB7QpZEOVQ7xk,Broken,"spotify:artist:6B5c4sch27tWHAGdarpPaW, spotify:artist:0fGVuq5ed21pM7iWwTcMyk","Seether, Amy Lee",spotify:album:3v3EelZGtSQU2nw6kw8aNk,Vicennial: 2 Decades of Seether,spotify:artist:6B5c4sch27tWHAGdarpPaW,Seether,2021-10-15,https://i.scdn.co/image/ab67616d0000b27381cd81aa89e7fa9a598010aa,1,4,258333,https://p.scdn.co/mp3-preview/10797f1b597731900a2d8c76649e3ea90dee109c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USWU30400017,spotify:user:bradnumber1,2023-03-21T11:44:51Z,"alternative metal,nu metal,post-grunge,south african rock,hel",0.45,0.607,3.0,-2.692,0.0,0.0338,0.0131,0.000267,0.137,0.189,123.758,4.0,,Craft Recordings,"C © 2021 Craft Recordings., Distributed by Concord., P ℗ 2021 Craft Recordings., Distributed by Concord.",9062 +9063,spotify:track:5GV4kQCF8eBuY8LPe9FBDu,Borne on the Wind,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:2jTbcSPVTBRAoc3mHU6hy0,"Oh, Pretty Woman",spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,1962,https://i.scdn.co/image/ab67616d0000b2731b3c09cb3ec9f618664f2622,1,2,173373,https://p.scdn.co/mp3-preview/7b3bafa2df723c77b5f82fee16ddee14cc473f17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USSM16301533,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.412,0.445,0.0,-7.42,1.0,0.0305,0.683,0.000364,0.209,0.281,126.463,4.0,,Monument/Orbison Records/Legacy,"P Originally released 1962, 1963, 1964, 1966. All rights reserved by Sony Music Entertainment",9063 +9064,spotify:track:21FFj5GqlujABc0H06uN8j,Sorrow - 2015 Remaster,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,spotify:album:71nxmbr3tHAVyvdHXc0ltd,Pinups - 2015 Remaster,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,1973-10-19,https://i.scdn.co/image/ab67616d0000b2733f91d314b2b4be4f88dafe83,1,8,173453,https://p.scdn.co/mp3-preview/5952819ad06ce3973f007a49fa26a597d63400f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USJT11500225,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,glam rock,permanent wave,rock",0.661,0.535,0.0,-12.173,1.0,0.0677,0.438,1.62e-05,0.319,0.687,119.545,4.0,,Parlophone UK,"C © 2015 Jones/Tintoretto Entertainment Co, LLC, P ℗ 2015 Jones/Tintoretto Entertainment Co, LLC under exclusive license to Parlophone Records Ltd, a Warner Music Group Company",9064 +9065,spotify:track:093adSf9ll30BEpggrfask,Foolish Little Girl,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,spotify:album:0ub6dxiqvZeOwI7VxdNH5L,Foolish Little Girl,spotify:artist:0x83OBqixqdCHnStP5VMcn,The Shirelles,1963,https://i.scdn.co/image/ab67616d0000b2738bc84b2e6d7bf7916e4547f7,1,1,137293,https://p.scdn.co/mp3-preview/c53ca44dbe9992a96cafeb78ee207592598b08f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,classic soul,doo-wop,motown,rock-and-roll,soul",0.739,0.743,7.0,-5.926,0.0,0.0321,0.452,0.0,0.331,0.922,111.07,4.0,,Gusto Records,"C 2005 Gusto Records Inc, P 2005 Gusto Records Inc",9065 +9066,spotify:track:0xZgdvjmnEHdpDVm0evG0g,Good Night,spotify:artist:6pjod8SsOOGf6GW9tfEnH1,Reece Mastin,spotify:album:7qkeCoyjGeQcNM8QW7nYtp,Reece Mastin,spotify:artist:6pjod8SsOOGf6GW9tfEnH1,Reece Mastin,2011-12-09,https://i.scdn.co/image/ab67616d0000b273d3771e2f28a3fb29f7f6ceb2,1,1,182160,https://p.scdn.co/mp3-preview/5786309c574060dea6b1d271eb7a13cbeea08ec8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUBM01100645,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.637,0.887,7.0,-3.363,1.0,0.0384,0.00279,0.0,0.0458,0.901,117.978,4.0,,Sony Music Entertainment,P (P) 2011 Sony Music Entertainment Australia Pty Ltd.,9066 +9067,spotify:track:4pDN7j38IOLmgAvg6QNfaZ,Little Red Rooster - Mono,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:5nKpMsduwp5xqCKq2IbSKv,The Rolling Stones In Mono (Remastered 2016),spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1966-01-01,https://i.scdn.co/image/ab67616d0000b2738d1570a03b9354518f0b618b,4,11,186240,https://p.scdn.co/mp3-preview/9ff9dee88f9c1451d9e69a56f2cd0b088003885b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USA171610043,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.781,0.419,7.0,-10.302,1.0,0.0425,0.0546,0.0449,0.0995,0.64,109.503,3.0,,"ABKCO Music & Records, Inc.","C © 2016 ABKCO Music & Records, Inc., P ℗ 2016 This compilation ABKCO Music & Records, Inc.",9067 +9068,spotify:track:3I1IXoKkLtoo4m1b89TKyy,Swing - Joel Fletcher Remix,"spotify:artist:2Z4QqhmV5Xw5vX2ZI70HOR, spotify:artist:1GbrJTB56Xs4XQGlmVbaCf","Joel Fletcher, Savage",spotify:album:6zLxu8P18e8dCftLmQEtZb,Swing (Joel Fletcher Remix),"spotify:artist:2Z4QqhmV5Xw5vX2ZI70HOR, spotify:artist:1GbrJTB56Xs4XQGlmVbaCf","Joel Fletcher, Savage",2013-01-01,https://i.scdn.co/image/ab67616d0000b27320018120c811ea7acd743f90,1,1,180000,https://p.scdn.co/mp3-preview/5518ffa8b4fb6fa5f74ea01ddff6a253d1a397ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUNV01301435,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep minimal techno,melbourne bounce,melbourne bounce international,nz hip hop",0.922,0.811,11.0,-5.698,0.0,0.235,0.0133,0.00518,0.0512,0.792,128.035,4.0,,Hussle,"C © 2013 Hussle Recordings, a division of Ministry Of Sound Australia Pty Ltd, P ℗ 2013 Hussle Recordings, a division of Ministry Of Sound Australia Pty Ltd",9068 +9069,spotify:track:7jO1boY6qwRjeu0EBtvDuu,Hello,spotify:artist:4M0DLz8te9Q1lNIXBBwvfG,Karmin,spotify:album:7FbPwQGriWa8IT4u6RxjWK,Hello,spotify:artist:4M0DLz8te9Q1lNIXBBwvfG,Karmin,2012-05-07,https://i.scdn.co/image/ab67616d0000b273cc50268bd94de0934dad0ca0,1,7,237546,https://p.scdn.co/mp3-preview/811b73c99eed7dd3047561bce8a544eebb7f7067?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USSM11202263,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,viral pop",0.658,0.919,5.0,-2.455,1.0,0.171,0.166,0.0,0.123,0.516,127.916,4.0,,Epic,"P (P) 2012 Epic Records, a division of Sony Music Entertainment",9069 +9070,spotify:track:2pn8dNVSpYnAtlKFC8Q0DJ,On The Ground,spotify:artist:3eVa5w3URK5duf6eyVDbu9,ROSÉ,spotify:album:5BQcoDfcZ8aBcikYX9B7Ob,R,spotify:artist:3eVa5w3URK5duf6eyVDbu9,ROSÉ,2021-03-12,https://i.scdn.co/image/ab67616d0000b273fdec91537c467efa0cd75e2f,1,1,168085,https://p.scdn.co/mp3-preview/f12389f941b1e55718b06911ce1768bac91ce0dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,KRA402100040,spotify:user:bradnumber1,2021-08-08T09:26:31Z,k-pop,0.311,0.607,1.0,-6.578,1.0,0.11,0.0174,0.0,0.131,0.286,188.7,4.0,,YG Entertainment/Interscope Records,"C © 2021 YG Entertainment, distributed through Interscope Records, P ℗ 2021 YG Entertainment, distributed through Interscope Records",9070 +9071,spotify:track:03ybSpm8ldqZPPJYATUmF3,Halfway Hotel,spotify:artist:2H58zKePZXsWCVPRdIXomB,Voyager,spotify:album:55TAhucD1tTJHFe0azpiBD,Halfway Hotel,spotify:artist:2H58zKePZXsWCVPRdIXomB,Voyager,2019-04-12,https://i.scdn.co/image/ab67616d0000b273a63aad8167e15e3513afb0ae,1,7,246081,https://p.scdn.co/mp3-preview/05a470eb1febdaa3ac2caf57b65c3fc9a8038634?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBDKT1803020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.744,0.626,1.0,-8.539,1.0,0.0317,0.716,3.49e-06,0.449,0.7,107.432,4.0,,Right Recordings,C (C) 2019 Right Recordings,9071 +9072,spotify:track:6N9ZOtguCnnrvwH7zD82WJ,GDFR (feat. Sage the Gemini & Lookas),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:6d47Z08T4snK50HgTEHo5Z, spotify:artist:27fy6rHPC58Eo2VUu0iJSG","Flo Rida, Sage The Gemini, Lookas",spotify:album:2AyPe61zX0w8qipMCFopUA,GDFR (feat. Sage The Gemini & Lookas),spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2014-09-29,https://i.scdn.co/image/ab67616d0000b27376fccee22eee09fef524be97,1,1,190185,https://p.scdn.co/mp3-preview/6316ccb80845938fad240c7e9d560b997c742544?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAT21404117,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap,hyphy,pop rap,southern hip hop,trap,brostep,electro house,electronic trap",0.657,0.827,5.0,-4.036,1.0,0.0734,0.000704,0.00534,0.065,0.69,145.889,4.0,,Poe Boy/Atlantic,"C © 2014 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2014 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",9072 +9073,spotify:track:70aUjWZmd9F3bRSsR4DwAJ,Handy Man,spotify:artist:0vn7UBvSQECKJm2817Yf1P,James Taylor,spotify:album:0Pbc9Jq12a47mQ1z9yIuhn,JT,spotify:artist:0vn7UBvSQECKJm2817Yf1P,James Taylor,1977,https://i.scdn.co/image/ab67616d0000b2735965e1d70e919f2259c1dc90,1,7,196800,https://p.scdn.co/mp3-preview/2dfc65ec3fc33bfb2a942bb423b98a0f554bbaf2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM17700895,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.804,0.233,2.0,-14.17,1.0,0.0312,0.64,0.106,0.0854,0.583,90.639,4.0,,Columbia,P (P) 1977 Sony Music Entertainment Inc.,9073 +9074,spotify:track:3XVozq1aeqsJwpXrEZrDJ9,Ice Ice Baby,spotify:artist:7GXXMm3DB1VswVcuGyInUd,Vanilla Ice,spotify:album:20O6lfaDAoMhUj5TAvVbb6,Vanilla Ice Is Back! - Hip Hop Classics,spotify:artist:7GXXMm3DB1VswVcuGyInUd,Vanilla Ice,2008-11-04,https://i.scdn.co/image/ab67616d0000b2730d441bd2334134eca6761fc4,1,1,254466,https://p.scdn.co/mp3-preview/8344d5dc4d6d4de7446d0a0f0262b850bf5a439a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USA560845821,spotify:user:bradnumber1,2021-08-08T09:26:31Z,miami hip hop,0.979,0.792,2.0,-2.784,1.0,0.0388,0.0025,7.71e-06,0.102,0.583,116.012,4.0,,X-Ray Records,C 2008 X-Ray Records,9074 +9075,spotify:track:7o7E1nrHWncYY7PY94gCiX,Video Killed The Radio Star,spotify:artist:057gc1fxmJ2vkctjQJ7Tal,The Buggles,spotify:album:2fgCz9kQCDy0miERCy0sCJ,The Age Of Plastic,spotify:artist:057gc1fxmJ2vkctjQJ7Tal,The Buggles,1980-01-10,https://i.scdn.co/image/ab67616d0000b273983bb3e3f0c66b9b89a832fa,1,2,252773,https://p.scdn.co/mp3-preview/553b5a0ef34c06aaf9361acb47b02642e2956f72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBAAN7900013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"early synthpop,new wave pop,zolo",0.682,0.679,1.0,-11.548,1.0,0.0755,0.103,0.00831,0.204,0.251,131.157,4.0,,Universal-Island Records Ltd.,"C © 1999 Universal Island Records Ltd. A Universal Music Company., P ℗ 1999 Universal Island Records Ltd. A Universal Music Company.",9075 +9076,spotify:track:7vN6krtNmC15iQgLN5pUib,Another Saturday Night,spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,spotify:album:7p4RmcYD3dBOLmcIV2oxFG,Ain't That Good News (Remastered),spotify:artist:6hnWRPzGGKiapVX1UCdEAC,Sam Cooke,1964-03-01,https://i.scdn.co/image/ab67616d0000b2731b75fccc2bf8757aca94f634,1,5,160000,https://p.scdn.co/mp3-preview/032b11790910d35b9cb1f16f0735dded6b1abac6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176320170,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,soul,vocal jazz",0.781,0.667,9.0,-7.686,1.0,0.0522,0.427,0.0,0.0903,0.966,123.105,4.0,,Universal Music Group,"C © 2003 ABKCO Music & Records Inc., P ℗ 2003 ABKCO Music & Records Inc.",9076 +9077,spotify:track:7k7i5YHJSLTbBSuwnWtSBn,Twist of Fate,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:0CTCk1eshEadFqZ4NBfe9N,Stranger Things (Soundtrack from the Netflix Original Series),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-10-27,https://i.scdn.co/image/ab67616d0000b273bd0db295c0164ddbc0584ebb,1,13,217053,https://p.scdn.co/mp3-preview/34fa7a674dfe9034f72602f61ba564aa7d9645d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USMC18314846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.608,0.737,1.0,-7.573,0.0,0.0369,0.212,0.000202,0.0995,0.632,164.345,4.0,,Legacy Recordings,P This compilation (P) 2017 Sony Music Entertainment,9077 +9078,spotify:track:3sb66av9ZpdI1JmPDHVa18,Space Oddity - 2009 Remastered Version,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,spotify:album:5PfAboDCGnNBqBKnMyOLB7,Space Oddity [Space Oddity 40th Anniversary Edition],spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,1969-11-04,https://i.scdn.co/image/ab67616d0000b27382a9ee0a9352800e2004da2d,1,1,317026,https://p.scdn.co/mp3-preview/9240f576fa464f8e3fe38f1c83fd23cd4e516638?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJT10900021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,glam rock,permanent wave,rock",0.337,0.365,0.0,-15.091,1.0,0.0318,0.0788,3.84e-05,0.202,0.497,136.264,4.0,,Parlophone UK,"C 2009 Jones/Tintoretto Entertainment Company LLC under exclusive licence to Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 2009 Parlophone Records Ltd, P 2009 Parlophone Records Ltd, a Warner Music Group Company",9078 +9079,spotify:track:2CEgGE6aESpnmtfiZwYlbV,Dynamite,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,spotify:album:0eGvq1J5Ke7VlLLOYIlY4k,The Rokstarr Hits Collection,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,2010-01-01,https://i.scdn.co/image/ab67616d0000b27366c3eb32692a0ae487079cf1,1,1,202613,https://p.scdn.co/mp3-preview/97bfe8a487d41ac4c44d3f5e15d484d95e0027aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBUM71003721,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.751,0.781,4.0,-3.724,1.0,0.0862,0.0039,0.0,0.036,0.814,119.977,4.0,,Universal-Island Records Ltd.,"C © 2010 Universal Island Records Ltd. A Universal Music Company., P ℗ 2010 Universal Island Records Ltd. A Universal Music Company.",9079 +9080,spotify:track:1QLr0zOu6fv5hLEHOwdr21,Let's Spend The Night Together,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:36BIYdP4WtviD9Ngqc4SK5,Between The Buttons,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1967-01-20,https://i.scdn.co/image/ab67616d0000b2738260863a56134f1516913d7f,1,1,215920,https://p.scdn.co/mp3-preview/2b7d80a61a543e1da4d5fad755bfe81a6dfa5ed0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USA176710010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.562,0.793,7.0,-7.774,1.0,0.0526,0.705,0.0,0.222,0.57,140.838,4.0,,"ABKCO Music and Records, Inc.","C © 2002 ABKCO Music & Records Inc., P ℗ 2002 ABKCO Music & Records Inc.",9080 +9081,spotify:track:5mEqGK8HVKFjihzhWiohoq,Pointless Relationship,spotify:artist:2ACthmbrw4aqsQ4qUvTo8k,Tammin Sursok,spotify:album:09g8M43qxbSxiLopHCrRLJ,Whatever Will Be,spotify:artist:2ACthmbrw4aqsQ4qUvTo8k,Tammin Sursok,2005-05-20,https://i.scdn.co/image/ab67616d0000b27393d52cfa4613fd04387939a5,1,1,204746,https://p.scdn.co/mp3-preview/1aaf04055f557f297592c2ff120f70f95320dad4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUSM00400244,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.483,0.816,4.0,-3.26,1.0,0.0316,0.0782,0.000212,0.173,0.398,91.965,4.0,,Columbia,P (P) 2005 Sony Music Entertainment Australia Pty Ltd,9081 +9082,spotify:track:29SyMC0plk6qw8NMF7lfRL,You Really Got Me,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:08G3mGQXuHItbbsFAz50gJ,Kinks (Deluxe),spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,1964-10-02,https://i.scdn.co/image/ab67616d0000b273718bbc2828082b2f45c12dbe,1,7,131573,https://p.scdn.co/mp3-preview/81e8ec05f9d94ce88d87a5192355e717d40afa5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,GBAJE6400005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.575,0.948,8.0,-6.173,1.0,0.0945,0.333,0.0,0.0656,0.948,137.408,4.0,,Castle Communications,"C © 2004 Sanctuary Records Group Ltd., a BMG Company, P ℗ 1998 Sanctuary Records Group Ltd., a BMG Company",9082 +9083,spotify:track:7M9t7BCy51ITF8IMyiemzk,I Know What You Did Last Summer,"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:4nDoRrQiYLoBzwC5BhVJzF","Shawn Mendes, Camila Cabello",spotify:album:11fLgnq2LE8p5hzo8urweI,Handwritten (Revisited),spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2015-11-20,https://i.scdn.co/image/ab67616d0000b2731e14091e65888a7eb8d9020f,1,13,223826,https://p.scdn.co/mp3-preview/1a3b61e52a81a1718f6c7741b7da59819b816751?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USUM71516597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop,dance pop,pop",0.685,0.767,9.0,-4.628,0.0,0.0974,0.106,0.0,0.163,0.722,113.827,4.0,,Island Records,"C © 2015 Island Records, a division of UMG Recordings, Inc., P ℗ 2015 Island Records, a division of UMG Recordings, Inc.",9083 +9084,spotify:track:2ZpOQ2MJxce0xf1eKhobMR,Big Girls Don't Cry (Personal),spotify:artist:3r17AfJCCUqC9Lf0OAc73G,Fergie,spotify:album:1mtWvoEOGCTV112yCmJayi,The Dutchess Deluxe,spotify:artist:3r17AfJCCUqC9Lf0OAc73G,Fergie,2007-01-01,https://i.scdn.co/image/ab67616d0000b2735adb68440da852d5a7d7d95e,1,10,268120,https://p.scdn.co/mp3-preview/4bd9956e609b48b23ce45985318171d0d4ddef57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70609115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.697,0.645,7.0,-4.27,1.0,0.0359,0.173,0.0,0.0892,0.271,113.101,4.0,,Universal Music Group,"C © 2007 A&M Records, P ℗ 2007 A&M Records",9084 +9085,spotify:track:7mmhMfqs3knRMMlvnMPTHn,Simply Irresistible,spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,spotify:album:0GpLCi7mAAflASQlR26oib,Heavy Nova (Bonus Tracks Version),spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,1988,https://i.scdn.co/image/ab67616d0000b27398691a6bf480e589f2a1854e,1,1,254293,https://p.scdn.co/mp3-preview/34714985a2fcaf0aadce9671e74c413901e69c98?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GB01A8800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,mellow gold,new romantic,new wave,new wave pop,singer-songwriter,soft rock,yacht rock",0.645,0.933,9.0,-6.955,1.0,0.0532,0.129,1.03e-05,0.0443,0.695,142.615,4.0,,EMI,"C © 1988 Remlap Co Inc under exclusive licence to Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2013 Remlap Co Inc under exclusive licence to Parlophone Records Ltd",9085 +9086,spotify:track:5J8JQbFMEMT5qae9wkdUTE,Bloodstream,"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:4WN5naL3ofxrVBgFpguzKo","Ed Sheeran, Rudimental",spotify:album:2kumYlTSdm0hGwu1vQ5utY,Bloodstream,"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:4WN5naL3ofxrVBgFpguzKo","Ed Sheeran, Rudimental",2015-02-27,https://i.scdn.co/image/ab67616d0000b2738df49889b9167bcb6c1c61e5,1,1,308876,https://p.scdn.co/mp3-preview/d67442338218ceb2356b5d4e24be054d2f70ac2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAHS1500062,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop,pop dance,uk dance,uk funky",0.482,0.59,1.0,-6.399,1.0,0.0485,0.202,2.48e-05,0.0592,0.27,89.354,4.0,,Asylum,"C © 2015 Asylum Records, a division of Warner Music UK, A Warner Music Group Company, P ℗ 2015 Asylum Records, a division of Warner Music UK, A Warner Music Group Company",9086 +9087,spotify:track:0cgIpWV1j6mYHNDRqdDXA1,Way out West,spotify:artist:2ikAwFLCJ5H9SEAsoxk2Va,The Dingoes,spotify:album:6KrIHDb6qd2ounsoKfjF5G,The Dingoes,spotify:artist:2ikAwFLCJ5H9SEAsoxk2Va,The Dingoes,1974,https://i.scdn.co/image/ab67616d0000b273da965ccfb83b0eff5212fcce,1,4,231733,https://p.scdn.co/mp3-preview/53dc6c041e40bd2ff9ce705743a41a027a4d71e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUMU07400018,spotify:user:bradnumber1,2023-02-11T23:53:46Z,australian rock,0.751,0.389,9.0,-15.635,1.0,0.0274,0.241,0.00602,0.136,0.768,110.485,4.0,,WM Australia,"C © 1974 Mushroom Records, P ℗ 1974 Mushroom Records",9087 +9088,spotify:track:3caWBz55YTpETVOJvHBI6C,Desire,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:7k7aHoW1MGWWQR0KXvswkx,U218 Singles (Deluxe Version),spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,2006-01-01,https://i.scdn.co/image/ab67616d0000b273a589a051c46a5ff41125e9d6,1,13,178840,https://p.scdn.co/mp3-preview/632cc3206c4aec8c8181f2208d02bdd95707038a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN8890003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.484,0.916,8.0,-4.573,1.0,0.0481,0.000311,0.01,0.0861,0.665,108.561,4.0,,Universal Music Group,"C © 2006 Universal-Island Records Ltd., P ℗ 2006 Universal-Island Records Ltd.",9088 +9089,spotify:track:3WKf8HqNlAP1X3PZkw663E,"Not Me, Not I",spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,spotify:album:26h1O5W89WLiEzxTztbGfu,Innocent Eyes,spotify:artist:2g6fa86fL6oLcoDqanBbuR,Delta Goodrem,2003-03-21,https://i.scdn.co/image/ab67616d0000b273da57f76f2fc20c1ed0bede9b,1,3,265453,https://p.scdn.co/mp3-preview/f38a1a0f3953e69d531eabb8ce15753f484d5043?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUSM00300006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.489,0.568,4.0,-8.085,0.0,0.0297,0.507,0.0,0.169,0.205,150.061,4.0,,Epic,P (P) 2002/2003 Sony Music Entertainment (Australia) Limited,9089 +9090,spotify:track:4SDGb2V6J2rEbxNujwNeMl,Wipe Out,spotify:artist:6gZVflqhSHhG3MjYrf1dOv,The Surfaris,spotify:album:6m4OZ0vUzfZmNtr6bmExGn,Wipe Out,spotify:artist:6gZVflqhSHhG3MjYrf1dOv,The Surfaris,2005-01-01,https://i.scdn.co/image/ab67616d0000b273f5264c9b7d046b941a0bab8f,1,3,166092,https://p.scdn.co/mp3-preview/097b803e1dc57f87f9dfb2ed780ba91311d75f7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USTC40862543,spotify:user:bradnumber1,2021-08-08T09:26:31Z,surf music,0.461,0.955,11.0,-6.684,1.0,0.0489,0.111,0.532,0.952,0.725,160.073,4.0,,The Surfaris,"C 2005 The Surfaris, P 2005 The Surfaris",9090 +9091,spotify:track:6WC5fhc9XMaCrUNKNjm9xE,Thumbs,spotify:artist:74KM79TiuVKeVCqs8QtB0B,Sabrina Carpenter,spotify:album:7iOAJaGBmk67o337zaqt0R,EVOLution,spotify:artist:74KM79TiuVKeVCqs8QtB0B,Sabrina Carpenter,2016-10-14,https://i.scdn.co/image/ab67616d0000b273d6641a0296d8d09e416e0acd,1,3,216466,https://p.scdn.co/mp3-preview/ad3bd27f3ba71be60fcd0caba55a03e1ff7a9ea6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USHR11637546,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.73,0.718,8.0,-3.496,1.0,0.0478,0.0284,0.0,0.0892,0.127,135.045,4.0,,Hollywood Records,"C © 2016 Hollywood Records, Inc., P ℗ 2016 Hollywood Records, Inc.",9091 +9092,spotify:track:5NbAAjQV2B4OFOUhpUNmMu,I Don't Wanna Know,spotify:artist:7yk8lN0B2B5wBdb4DJfQLI,Silience,spotify:album:1dXTOqFpVgZKzJ8FQ9ArvY,I Don't Wanna Know,spotify:artist:7yk8lN0B2B5wBdb4DJfQLI,Silience,2020-09-30,https://i.scdn.co/image/ab67616d0000b273fbe793a8a6eaf1bc2dd1bb40,1,1,180522,https://p.scdn.co/mp3-preview/0c662fc243f59239c30e18615903130fafb82c4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,TCAEW2041725,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep tropical house,0.747,0.73,11.0,-8.028,0.0,0.0512,0.239,0.014,0.39,0.547,119.998,4.0,,Universal Music Australia Pty. Ltd.,"C © 2020 Casual Jam Records, Under Exclusive Licence To Neon Records, P ℗ 2020 Casual Jam Records, Under Exclusive Licence To Neon Records",9092 +9093,spotify:track:6he1dHUwbjcwfrLTEIEJOU,Tilt Ya Head Back - Album Version / Explicit,"spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS","Nelly, Christina Aguilera",spotify:album:3nLpRQmUWJ49H7JwoVGfnI,Sweat,spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2004-11-14,https://i.scdn.co/image/ab67616d0000b2732792ffb8cc5bbfac3f8eecc2,1,6,253253,https://p.scdn.co/mp3-preview/1f5144a472a470191386f5d668ca8a37acc9318f?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10400764,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary,dance pop,pop",0.836,0.724,10.0,-5.789,0.0,0.145,0.0336,0.0,0.279,0.735,115.721,4.0,,Universal Music Group,"C © 2004 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2004 Universal Records, a Division of UMG Recordings, Inc.",9093 +9094,spotify:track:1VPqqYREN10iX8CSvJYyf7,Wish You Well,spotify:artist:0afemm9P2Bb2LL99xHY32n,Bernard Fanning,spotify:album:0YNFZaLpBVQlTA75IqsRxB,Tea & Sympathy,spotify:artist:0afemm9P2Bb2LL99xHY32n,Bernard Fanning,2005-01-01,https://i.scdn.co/image/ab67616d0000b273f32b02ff718ad67c80f8bc43,1,2,151133,https://p.scdn.co/mp3-preview/e48431bbfa1959306312bc49c28b1e7c1c61f969?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUUM70500066,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.73,0.717,2.0,-3.983,1.0,0.0873,0.177,4.34e-06,0.0628,0.703,122.709,4.0,,Universal Music Australia Pty. Ltd.,"C © 2005 Dew Process/Universal Music Australia, P ℗ 2005 Dew Process/Universal Music Australia",9094 +9095,spotify:track:0SHmApKzT0EWhbFKBjsOex,C'est la Vie,spotify:artist:72eP0W3rIhkxd0NHGg4w4u,B*Witched,spotify:album:6UQVcTIRAlVetOcHQP1MLd,B*Witched,spotify:artist:72eP0W3rIhkxd0NHGg4w4u,B*Witched,1998-10-08,https://i.scdn.co/image/ab67616d0000b2738af0e9a506fd26b90c945bb4,1,2,172066,https://p.scdn.co/mp3-preview/5b5cf5e9504f6c4842164dbfd3a13bdbb6efa3e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBBBM9802095,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,europop,girl group",0.701,0.937,7.0,-4.845,1.0,0.0299,0.101,9.61e-05,0.0674,0.923,108.993,4.0,,Epic,P 1998 Sony Music Entertainment (UK) Ltd.,9095 +9096,spotify:track:7dgPaaeQSRyJzfloU8Yjpo,White Men Can't Jump,spotify:artist:3IyuxBX0pwXqbeFI4DWmhG,Riff,spotify:album:4iEv0GL50EBylyo95mpwDf,"The New Jack Swing Collection, Vol. 4",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-01-01,https://i.scdn.co/image/ab67616d0000b273b6e66e4efc062732e4cda0de,1,14,212453,https://p.scdn.co/mp3-preview/4ae7ad4dd15c14619fc54239d6b8d2ed500d0644?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,FR2X41408978,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"argentine heavy metal,argentine rock,rock nacional",0.795,0.817,1.0,-6.775,1.0,0.0547,0.00414,0.0,0.451,0.747,113.15,4.0,,First Mike,"C 2014 Mike First, P 2014 Dj Steef",9096 +9097,spotify:track:0HoMdjB1XwwMlyPfTV7DEj,Metal Guru,spotify:artist:3dBVyJ7JuOMt4GE9607Qin,T. Rex,spotify:album:3Dg3quPRLDCsEqnzgPl6PE,The Slider,spotify:artist:3dBVyJ7JuOMt4GE9607Qin,T. Rex,1972-07-21,https://i.scdn.co/image/ab67616d0000b27305657aedd93e64aef6cf3973,1,1,149786,https://p.scdn.co/mp3-preview/9055dfa1f3fbaa924155e1185c0606ef0e34c525?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBAFR7210009,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,protopunk,rock,singer-songwriter",0.307,0.95,11.0,-3.427,0.0,0.138,0.00054,7.43e-05,0.313,0.524,127.895,4.0,,Edsel,C (C) 2007 Demon Music Group Ltd.,9097 +9098,spotify:track:0ktV2JoOsoTGURzKaZnjJL,Birthday,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:4lFDt4sVpCni9DRHRmDjgG,PRISM (Deluxe),spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2013-01-01,https://i.scdn.co/image/ab67616d0000b273078cfcd17022e7fac7f59a1d,1,3,215042,https://p.scdn.co/mp3-preview/5972033e0abfdac31b597da8c8807dfa26b0302d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71311293,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.715,0.67,11.0,-5.123,1.0,0.0735,0.0948,3.9e-06,0.117,0.867,126.069,4.0,,Universal Music Group,"C © 2013 Capitol Records, LLC, P ℗ 2013 Capitol Records, LLC",9098 +9099,spotify:track:0Y4hwUppbGc8aIBmiTz30A,Familiar,"spotify:artist:5pUo3fmmHT8bhCyHE52hA6, spotify:artist:1vyhD5VmyZ7KMfW5gqLgo5","Liam Payne, J Balvin",spotify:album:1L5GP3Zuu7BvI81OJ0VkpT,Familiar,"spotify:artist:5pUo3fmmHT8bhCyHE52hA6, spotify:artist:1vyhD5VmyZ7KMfW5gqLgo5","Liam Payne, J Balvin",2018-04-20,https://i.scdn.co/image/ab67616d0000b27328cb3d8716e3716c395fec77,1,1,196552,https://p.scdn.co/mp3-preview/c060cacc2739cc07c63230f0d770e33d54d0fa13?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBUM71800362,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,reggaeton,reggaeton colombiano,trap latino,urbano latino",0.636,0.805,9.0,-4.594,1.0,0.328,0.0161,0.0,0.0794,0.908,92.95,4.0,,Capitol Records UK / EMI,"C © 2018 Hampton Records Limited, under exclusive licence to Universal Music Operations Limited, P ℗ 2018 Hampton Records Limited, under exclusive licence to Universal Music Operations Limited",9099 +9100,spotify:track:2iXdwVdzA0KrI2Q0iZNJbX,Better Together,spotify:artist:3GBPw9NK25X1Wt2OUvOwY3,Jack Johnson,spotify:album:2B9q4KPjOEYu885Keo9dfX,In Between Dreams,spotify:artist:3GBPw9NK25X1Wt2OUvOwY3,Jack Johnson,2005-01-01,https://i.scdn.co/image/ab67616d0000b273628dba01c669d89586967dc5,1,1,207680,https://p.scdn.co/mp3-preview/ecd2edaba0c90400a7363b687664b381b6b0dfd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USMC60400027,spotify:user:bradnumber1,2021-10-20T22:25:32Z,neo mellow,0.871,0.346,5.0,-9.481,1.0,0.0522,0.298,9.24e-06,0.108,0.659,110.054,4.0,,Jack Johnson,"C © 2005 Jack Johnson, P ℗ 2005 Jack Johnson",9100 +9101,spotify:track:4BLLIBSddljm6YaI9gnxYG,In Love,spotify:artist:0hDJSg859MdK4c9vqu1dS8,The Beautiful Girls,spotify:album:5xLZlgl8Njj2FiCtwkSHpc,Ziggurats,spotify:artist:0hDJSg859MdK4c9vqu1dS8,The Beautiful Girls,2007-05-12,https://i.scdn.co/image/ab67616d0000b273d1b768c639d3e37a8f62e8b9,1,8,181266,https://p.scdn.co/mp3-preview/67c1e5f5fd24c56371492062fa6bc25535c2f7ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUKU00700056,spotify:user:bradnumber1,2023-01-31T06:45:47Z,australian reggae fusion,0.646,0.653,3.0,-5.588,1.0,0.0892,0.045,0.0,0.0904,0.729,144.036,4.0,,Die!Boredom Records,"C 2007 Die!Boredom Records, P 2007 Die!Boredom Records",9101 +9102,spotify:track:1eq1wUnLVLg4pdEfx9kajC,Rolling in the Deep,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7n3QJc7TBOxXtlYh4Ssll8,21,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2011-01-19,https://i.scdn.co/image/ab67616d0000b273ba764098164f221484bcc309,1,1,228093,https://p.scdn.co/mp3-preview/d2d7e717c72a4fa08b3a8b22722c7369e8aa587d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,1,GBBKS1000335,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.73,0.77,8.0,-5.114,1.0,0.0298,0.138,0.0,0.0473,0.507,104.948,4.0,,XL Recordings,"C 2011 XL Recordings Ltd., P 2011 XL Recordings Ltd.",9102 +9103,spotify:track:6uBhi9gBXWjanegOb2Phh0,Stay,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:2wUjUUtkb5lvLKcGKsKqsR","Zedd, Alessia Cara",spotify:album:1I4W7JKzYbl8VKRfD61DIS,Stay,"spotify:artist:2qxJFvFYMEDqd7ui6kSAcq, spotify:artist:2wUjUUtkb5lvLKcGKsKqsR","Zedd, Alessia Cara",2017-02-23,https://i.scdn.co/image/ab67616d0000b273b993cba8ff7d0a8e9ee18d46,1,1,210090,https://p.scdn.co/mp3-preview/264d0f4ee99b296da9d43c4ddd0ffa265c25b247?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USUM71700736,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,german techno,pop,pop dance,canadian contemporary r&b,canadian pop,pop",0.69,0.622,5.0,-5.025,0.0,0.0622,0.253,0.0,0.116,0.544,102.04,4.0,,UMGRI Interscope,"C © 2017 Interscope Records, P ℗ 2017 Interscope Records",9103 +9104,spotify:track:0MmluR9xqG0a15ecfJP2qy,The Return Of The Red Baron,spotify:artist:2ltpcCK86foogli20z9raq,The Royal Guardsmen,spotify:album:5OHf4j9PlbkztxuXxiLbFt,Snoopy And His Friends The Royal Guardsmen,spotify:artist:2ltpcCK86foogli20z9raq,The Royal Guardsmen,1967-11-01,https://i.scdn.co/image/ab67616d0000b2736e9d740dcf91cf0977c0fedf,1,4,165240,https://p.scdn.co/mp3-preview/adfbf6038c7a5b64f67afda9d65790e452df7650?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USLA19500004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bubblegum pop,0.652,0.778,10.0,-9.743,1.0,0.127,0.639,0.0,0.173,0.825,134.621,4.0,,Capitol Records,"C © 1967 Capitol Records, LLC, P ℗ 1967 Capitol Records, LLC",9104 +9105,spotify:track:7L3b6iaVhDVjfo52Hbvh9Z,Edge of Seventeen - 2016 Remaster,spotify:artist:7crPfGd2k81ekOoSqQKWWz,Stevie Nicks,spotify:album:0IomjU2bXFng4LQBYn7Het,Bella Donna (2016 Remastered),spotify:artist:7crPfGd2k81ekOoSqQKWWz,Stevie Nicks,1981-07-27,https://i.scdn.co/image/ab67616d0000b273af14d74d5e308ce2f3ec22f8,1,6,329413,https://p.scdn.co/mp3-preview/3a2722ed50f054dc8965614dfc6782838c7554e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USRH11604198,spotify:user:bradnumber1,2021-08-08T09:26:31Z,heartland rock,0.591,0.804,0.0,-7.299,1.0,0.0454,0.327,5.98e-06,0.0818,0.658,111.457,4.0,,Rhino Atlantic,"C © 1981 Modern Records, Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved., P ℗ 1981 Modern Records, Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",9105 +9106,spotify:track:0BM6rhBpR40W0KUm2f2R1o,You Little Thief,spotify:artist:3zk5lgbVEre0rKRBqiKt0T,Feargal Sharkey,spotify:album:1fnuPLerUrbVfzcHyY6H5N,Feargal Sharkey,spotify:artist:3zk5lgbVEre0rKRBqiKt0T,Feargal Sharkey,1985-01-01,https://i.scdn.co/image/ab67616d0000b273f39e07ad24bcdc439834ee9f,1,2,304826,https://p.scdn.co/mp3-preview/787eacd1530462bcb10092f82f45c096079d26e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAAA8600072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,solo wave",0.545,0.837,11.0,-9.439,0.0,0.0434,0.0357,0.00243,0.106,0.78,128.357,4.0,,Virgin Catalogue,"C © 1985 Feargal Sharkey Ltd, P ℗ 1985 Virgin Records Limited",9106 +9107,spotify:track:0frIZMaQwtdV4Ee8nhB1te,Khe Sanh - 2011 Remastered,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:58LEKVWXpcYbeevCcl2boB,Cold Chisel,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,1978,https://i.scdn.co/image/ab67616d0000b273cfa6f0adeb400615a0fe4cd6,1,2,254045,https://p.scdn.co/mp3-preview/79b58a9120365bb71bd8bf9982b5c252400ffef9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,AUU741100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.474,0.918,7.0,-4.21,1.0,0.177,0.129,0.0,0.238,0.655,164.049,4.0,,Cold Chisel,"C © 2011 Cold Chisel Pty Ltd, P ℗ 2011 Cold Chisel Pty Ltd",9107 +9108,spotify:track:2nJx2VF14TGiqItgUSWbyn,Glad All Over,spotify:artist:7o0zXmlrHW4OT3AZCUHMaW,Hush,spotify:album:1J35cqfY6NGaHIfyLXMR3o,The Best of,spotify:artist:7o0zXmlrHW4OT3AZCUHMaW,Hush,1974,https://i.scdn.co/image/ab67616d0000b273737e26826392eda0b19729e7,1,2,199626,https://p.scdn.co/mp3-preview/5d44a2f0615318b928fe182db431322cd67c7d0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUBM07560205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.357,0.767,1.0,-5.252,1.0,0.0601,0.424,0.0,0.0381,0.549,134.001,4.0,,RCA Camden,"P (P) 1974, 1975, 1976, 1977 Sony Music Entertainment Australia Pty Ltd",9108 +9109,spotify:track:6q1qACcezH6eH77Xljh5QV,I Need A Dollar,spotify:artist:0id62QV2SZZfvBn9xpmuCl,Aloe Blacc,spotify:album:2LAdkhxTJkCWUE4sPw1zgb,Good Things,spotify:artist:0id62QV2SZZfvBn9xpmuCl,Aloe Blacc,2010-09-28,https://i.scdn.co/image/ab67616d0000b273bd6bf55ccc52ed75ce77e726,1,1,243053,https://p.scdn.co/mp3-preview/d8661b02976ed432971422618b2efff32a400ed2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US2S71045001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,r&b",0.84,0.482,6.0,-7.116,0.0,0.0333,0.202,0.0,0.0873,0.957,95.498,4.0,,Stones Throw Records,"C 2010 Stones Throw Records, P 2010 Stones Throw Records",9109 +9110,spotify:track:4S8d14HvHb70ImctNgVzQQ,I Love It (& Lil Pump),"spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:3wyVrVrFCkukjdVIdirGVY","Kanye West, Lil Pump",spotify:album:185Tm1g5U7eMOrm3m9SQUh,I Love It,"spotify:artist:5K4W6rqBFWDnAN6FQUkS6x, spotify:artist:3wyVrVrFCkukjdVIdirGVY","Kanye West, Lil Pump",2018-09-07,https://i.scdn.co/image/ab67616d0000b273b6d544387b04e1d1a5f7926c,1,1,127946,https://p.scdn.co/mp3-preview/f6093d404fa398de2fbee97c49d68973fbbdc728?cid=9950ac751e34487dbbe027c4fd7f8e99,True,68,USUM71814031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,hip hop,rap,emo rap,miami hip hop,pop rap,rap,trap",0.901,0.522,2.0,-8.304,1.0,0.33,0.0114,0.0,0.259,0.329,104.053,4.0,,"Getting Out Our Dreams, Inc./Def Jam Recordings","C © 2018 Getting Out Our Dreams II, LLC & Warner Brothers Records, Distributed by Def Jam; a Division of UMG Recordings. Inc., P ℗ 2018 Getting Out Our Dreams II, LLC & Warner Brothers Records, Distributed by Def Jam; a Division of UMG Recordings. Inc.",9110 +9111,spotify:track:2TTYIwTM2iLC1YOyHuhRMt,Lucky,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:5PmgtkodFl2Om3hMXONDll,Oops!... I Did It Again,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2000-05-16,https://i.scdn.co/image/ab67616d0000b2732aa20611c7fb964a74ab01a6,1,7,206226,https://p.scdn.co/mp3-preview/05e06adb3b0bb95796bc9e417a63b59147faa414?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USJI10000148,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.765,0.791,8.0,-5.707,1.0,0.0317,0.262,0.000154,0.0669,0.966,95.026,4.0,,Jive,P (P) 2000 Zomba Recording LLC,9111 +9112,spotify:track:2RjQ82MtgcR8sgOL2RJQAs,Hey Mr. D.J. - Original Mix - Edit,spotify:artist:6cjSmkVvMvyE6tCAo1M9Is,Zhané,spotify:album:4aABVRHUahNfxQOvs4vZwB,Pure... 90s R&B,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-03-24,https://i.scdn.co/image/ab67616d0000b273f1799fccb4a14ea978821e45,1,3,256013,https://p.scdn.co/mp3-preview/1d42b418d29bba1af9a3b8f36cec4f99a94aa9d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,USSM19303563,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,r&b",0.861,0.652,2.0,-6.31,1.0,0.0636,0.0464,0.0045,0.0998,0.885,101.307,4.0,,Sony Music Entertainment,P This compilation (P) 2014 Sony Music Entertainment,9112 +9113,spotify:track:4igIYHF3B5VBxEafHauVo3,Fat Bottomed Girls - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:21HMAUrbbYSj9NiPPlGumy,Jazz (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1978-11-10,https://i.scdn.co/image/ab67616d0000b273008b06ec71019afd70153889,1,2,255600,https://p.scdn.co/mp3-preview/d6bb956446870f6b6cf3107fb33e144ed785a89a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBUM71029607,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.337,0.684,2.0,-7.674,1.0,0.0495,0.0319,6.57e-06,0.342,0.404,88.772,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",9113 +9114,spotify:track:5WOJuP8YyDD7TSeL5miBDt,Hand Me Down World - Single Version,spotify:artist:0cQuYRSzlItquYxsQKDvVc,The Guess Who,spotify:album:3zlRX163Z3F9H0MWPmtiBV,Share The Land,spotify:artist:0cQuYRSzlItquYxsQKDvVc,The Guess Who,1970,https://i.scdn.co/image/ab67616d0000b2739c53b1167bea54415a9d022a,1,3,206493,https://p.scdn.co/mp3-preview/e6cf9727dd68d08b786d8dd5f6a272be542089e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USRC10001193,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic canadian rock,classic rock,country rock,folk rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.432,0.783,0.0,-4.349,1.0,0.0387,0.402,0.0,0.67,0.948,201.694,4.0,,Buddha Records,P Originally released 1970. All rights reserved by Sony Music Entertainment,9114 +9115,spotify:track:0vaFchxYRlvpaf3T7dnyIg,All My Life - Radio Edit,spotify:artist:05RZIdfz59ZW2FvFuwnmNK,K-Ci & JoJo,spotify:album:2GX5OWnoIrjwRRhm2jI7ui,It's Real,spotify:artist:05RZIdfz59ZW2FvFuwnmNK,K-Ci & JoJo,1999-06-22,https://i.scdn.co/image/ab67616d0000b273494969e98849e1dc0bd59f36,1,14,221493,https://p.scdn.co/mp3-preview/085d5ec4b00a61b45e1a19d73569727e2cbe312b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19757330,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,r&b,urban contemporary",0.662,0.546,1.0,-8.194,1.0,0.0295,0.0773,0.0,0.118,0.365,128.015,4.0,,Geffen*,"C © 1999 Geffen Records, P ℗ 1999 Geffen Records",9115 +9116,spotify:track:7z8k6KAvjHX3RtkYNhIC9B,Magic,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:5ycnwHGkzOlTuMOI3Zh4iO,Heartbeat City,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,1984-03-13,https://i.scdn.co/image/ab67616d0000b273473881855ae3ceadb949a625,1,3,237093,https://p.scdn.co/mp3-preview/2a3846a94452ddb1506d26190fbcb42bfcc3a577?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USEE10100558,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.683,0.806,9.0,-7.574,1.0,0.042,0.125,0.000548,0.191,0.962,118.032,4.0,,Elektra Records,"C © 1984 Elektra/Asylum Records, P ℗ 1984 Elektra/Asylum Records",9116 +9117,spotify:track:52FZW6u4BM9e1Kh4bewek3,Sad Lisa,spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,spotify:album:44VxbAytHpVi3Rq8hRhild,Tea For The Tillerman (Remastered 2020),spotify:artist:08F3Y3SctIlsOEmKd6dnH8,Yusuf / Cat Stevens,1970-11-23,https://i.scdn.co/image/ab67616d0000b273e7248738c2f7ce3b5584b15d,1,4,225653,https://p.scdn.co/mp3-preview/dacf3bb707b07f4141c0f426e2e7ad5875fbbeeb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBUM71905966,spotify:user:bradnumber1,2023-01-31T06:13:05Z,"british folk,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.572,0.197,2.0,-16.693,1.0,0.0324,0.902,0.0212,0.0881,0.388,112.338,3.0,,UMC (Universal Music Catalogue),"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",9117 +9118,spotify:track:0Ql8jkGjftATDJEE9B2zVA,Carry On,spotify:artist:1m0nEaW7JgNczyYZGUYLcu,Motor Ace,spotify:album:10HhrO4f2DKF9GVa26d9RK,Carry On,spotify:artist:1m0nEaW7JgNczyYZGUYLcu,Motor Ace,2002,https://i.scdn.co/image/ab67616d0000b273e22fee830c73e1e221771e01,1,1,264493,https://p.scdn.co/mp3-preview/8cbdb8ee7606053cc045aeb1ad1d9b1e3f871178?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUFE00200792,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian alternative rock,0.349,0.756,8.0,-8.052,1.0,0.029,0.009,0.0,0.332,0.496,169.85,4.0,,WM Australia,"C © 2002 Mushroom Records, P ℗ 2002 Mushroom Records",9118 +9119,spotify:track:2NF8A7C6tICScdRaZ0BrEe,Katchi - Ofenbach vs. Nick Waterhouse,"spotify:artist:4AKwRarlmsUlLjIwt38NLw, spotify:artist:0V7uVrIYr4FwFvUN9S4kYr","Ofenbach, Nick Waterhouse",spotify:album:7fJMKBNqYWhvWDs560x6nn,Katchi (Ofenbach vs. Nick Waterhouse),"spotify:artist:4AKwRarlmsUlLjIwt38NLw, spotify:artist:0V7uVrIYr4FwFvUN9S4kYr","Ofenbach, Nick Waterhouse",2017-08-25,https://i.scdn.co/image/ab67616d0000b273ea926e8fceb6e4f411144a8f,1,1,151011,https://p.scdn.co/mp3-preview/0773e639f7102347bf010a5cbeba4322c93c28c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,FR1A91701091,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,chicago indie,funk",0.837,0.793,11.0,-5.048,0.0,0.0567,0.0261,9.04e-05,0.0743,0.87,124.988,4.0,,Elektra France,"C 2018 © 2017 Ofenbach Music, licence exclusive Elektra France / Warner Music France, a Warner Music Group Company, P 2018 ℗ 2017 Ofenbach Music, licence exclusive Elektra France / Warner Music France, a Warner Music Group Company",9119 +9120,spotify:track:0cfzRDlIbK85XdBGDLeMIF,Whatever You Like,spotify:artist:4OBJLual30L7gRl5UkeRcT,T.I.,spotify:album:3uH0v0aAhwz0UYwDphuc7W,Paper Trail,spotify:artist:4OBJLual30L7gRl5UkeRcT,T.I.,2008-09-07,https://i.scdn.co/image/ab67616d0000b2730dd170d60a89c5cbb8cb8bb3,1,6,249533,https://p.scdn.co/mp3-preview/5530bf7595a5202d3a68c79c6a7fdf377c53a714?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USAT20803169,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,dirty south rap,gangster rap,hip hop,pop rap,rap,southern hip hop,trap",0.68,0.672,0.0,-6.199,1.0,0.0814,0.0202,0.0,0.224,0.495,149.994,4.0,,"Grand Hustle, LLC","C 2008 Grand Hustle, LLC | Cinq Recordings, P 2008 Grand Hustle, LLC | Cinq Recordings",9120 +9121,spotify:track:2aIh7tYvYLcU4KA0AlS6n0,Midnight City,spotify:artist:63MQldklfxkjYDoUE4Tppz,M83,spotify:album:5OD4H7aBoUxY83FeYXFrnX,"Hurry Up, We're Dreaming",spotify:artist:63MQldklfxkjYDoUE4Tppz,M83,2011-10-18,https://i.scdn.co/image/ab67616d0000b2734475d4c754855780c85cfbeb,1,2,243960,https://p.scdn.co/mp3-preview/a3bbe39182561b00b4104b859c29361732c0978d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB55H1100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"french shoegaze,french synthpop,indietronica,metropopolis,neo-synthpop",0.506,0.733,11.0,-5.398,0.0,0.0402,0.0182,1.49e-06,0.0658,0.261,105.01,4.0,,Pod/Inertia,"C 2011 M83 Recording Inc./Pod/Inertia Pty Ltd, P 2011 M83 Recording Inc.",9121 +9122,spotify:track:7wzl8TbHkZs68YH67cQmjB,Black Cat,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:7jtBAkD6DL5yn7komrFTxE,Rhythm Nation 1814,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1989-09-19,https://i.scdn.co/image/ab67616d0000b27336e9e2e6de0b594414fb80c9,1,16,290600,https://p.scdn.co/mp3-preview/af5f3af5e9d8493667cc05d5f591b87aafe833a8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USAM18900851,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.704,0.893,4.0,-8.038,0.0,0.0477,0.121,0.00322,0.19,0.644,114.953,4.0,,A&M,"C © 1989 A&M Records, P ℗ 1989 A&M Records",9122 +9123,spotify:track:0awZMpokrVSdvtYe1MdcWM,Morning Glory - Remastered,spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,spotify:album:1VW1MFNstaJuygaoTPkdCk,(What's The Story) Morning Glory? [Remastered],spotify:artist:2DaxqgrOhkeH0fpeiQq2f4,Oasis,1995-10-02,https://i.scdn.co/image/ab67616d0000b27385e5dcc05cc216a10f141480,1,10,303320,https://p.scdn.co/mp3-preview/9f4ada1b940501fadd17fb343b244fe7abf663d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBQCP1400116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,britpop,madchester,permanent wave,rock",0.33,0.983,0.0,-3.038,1.0,0.0932,0.0664,4.68e-05,0.491,0.0968,136.952,4.0,,Big Brother,P (P) 2014 Big Brother Recordings Ltd exclusively licensed to Sony Music Entertainment UK Limited/(P) 2014 Big Brother Recordings Ltd exclusively licensed to Sony Music Entertainment UK Limited),9123 +9124,spotify:track:0jaFadjn9PwHr8ZcqhZmAH,Pound The Alarm,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:25hgXh4ZOyncVZarZEHycm,Pink Friday ... Roman Reloaded (Deluxe),spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2012-01-01,https://i.scdn.co/image/ab67616d0000b2739e3a08094c5e058c1921f608,1,11,205640,https://p.scdn.co/mp3-preview/a450c0fd2fd121b8c9c0da24b54e596dba445e8b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USCM51200111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,queens hip hop,rap",0.736,0.848,1.0,-3.635,0.0,0.068,0.041,4.96e-06,0.0316,0.624,124.987,4.0,,Universal Music Group,"C © 2012 Cash Money Records Inc., P ℗ 2012 Cash Money Records Inc.",9124 +9125,spotify:track:7B14E68DLmIwvKMht170L9,Four And Twenty Hours,spotify:artist:6p7iFdv6Wn9iaS7AwVLvod,Nana Mouskouri,spotify:album:45zL1oQzaE97oGlwEwsONv,Super Best (Remastered),spotify:artist:6p7iFdv6Wn9iaS7AwVLvod,Nana Mouskouri,2011-11-15,https://i.scdn.co/image/ab67616d0000b273953e7ea43ac2f1402ea8fc12,1,19,213603,https://p.scdn.co/mp3-preview/142d01243a11ddbc1fc9ed62f7272d5416ea1ab4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,EGA001036818,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.582,0.441,10.0,-12.2,1.0,0.0337,0.729,0.0,0.148,0.865,132.338,4.0,,Hot Dice,C (C) 2011 Hot Dice,9125 +9126,spotify:track:6cv0maKXFbjZRmu3Oxb4jJ,We All Want The Same Thing,spotify:artist:0kkxsdcaWmWU2yWAqclDh4,Rixton,spotify:album:02ae5i5UAoFrt2peVox9Xd,Let The Road,spotify:artist:0kkxsdcaWmWU2yWAqclDh4,Rixton,2014-01-01,https://i.scdn.co/image/ab67616d0000b273647377a36072bd08e44dd32b,1,9,225786,https://p.scdn.co/mp3-preview/56bd115f149e8bad45cbfb05ec706335700d4a54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USUM71400150,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,teen pop,viral pop",0.706,0.712,4.0,-4.819,0.0,0.0358,0.111,0.0,0.121,0.783,117.007,4.0,,Silent Records/Giant Little Man,"C © 2014 School Boy/Giant Little Man/Mad Love/Interscope Records, P ℗ 2014 School Boy/Giant Little Man/Mad Love/Interscope Records",9126 +9127,spotify:track:1EB3Z38oKDKVp4K2yEO2dl,More Than Words Can Say,spotify:artist:07jJQhIBd8ZqVUdgiwPqdQ,Alias,spotify:album:2almhUpe1eEbKQiRT1BlPF,Alias,spotify:artist:07jJQhIBd8ZqVUdgiwPqdQ,Alias,1990-01-01,https://i.scdn.co/image/ab67616d0000b273aa342118c75cf890db12b3c7,1,8,234196,https://p.scdn.co/mp3-preview/1acbfa220654796fff619c8c11c1ed41542bb4d5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,CAE159000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.412,0.376,4.0,-11.789,1.0,0.0289,0.609,0.00223,0.11,0.153,69.064,4.0,,EMI,"C © 1990 EMI Music Canada, P ℗ 1990 EMI Music Canada",9127 +9128,spotify:track:0DSSMDh216kInuzbFjGvbd,These Days,spotify:artist:6jaSo7MeMbXQCUOrNCF8tj,Bardot,spotify:album:3lBBB7gJFwcxn6EKQpB4A3,Bardot,spotify:artist:6jaSo7MeMbXQCUOrNCF8tj,Bardot,2000-05-01,https://i.scdn.co/image/ab67616d0000b273f5fc7efa0a85a9e2db49b4bc,1,1,220000,https://p.scdn.co/mp3-preview/6e0832f16a931fe9e60e1f4367c1b809d33bed90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNHG1900056,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.63,0.822,11.0,-4.812,0.0,0.042,0.199,2.17e-05,0.0788,0.447,84.978,4.0,,LilliPilli IP,"C 2000 LilliPilli IP, P 2000 LilliPilli IP",9128 +9129,spotify:track:575NJxNUVDqwJGdzBrlLbv,Lost In Japan - Remix,"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:2qxJFvFYMEDqd7ui6kSAcq","Shawn Mendes, Zedd",spotify:album:3ynoYncFXzo2OfPT8j93Pw,Lost In Japan (Remix),"spotify:artist:7n2wHs1TKAczGzO7Dd2rGr, spotify:artist:2qxJFvFYMEDqd7ui6kSAcq","Shawn Mendes, Zedd",2018-09-27,https://i.scdn.co/image/ab67616d0000b273983a15dbbda621fd434754a3,1,1,201253,https://p.scdn.co/mp3-preview/9c203c98692e17cad0f42f0d02d28384737b1bad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USUM71813582,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop,complextro,edm,german techno,pop,pop dance",0.706,0.855,10.0,-5.378,1.0,0.221,0.0898,0.0,0.347,0.299,107.184,4.0,,Island Records,"C © 2018 Island Records, a division of UMG Recordings, Inc., P ℗ 2018 Island Records, a division of UMG Recordings, Inc.",9129 +9130,spotify:track:1hSOt9IeshMkuKP9ri4hOf,Bloom,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,spotify:album:2k7dz4vu8APcaIqI8dQiQw,Bloom,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2018-05-02,https://i.scdn.co/image/ab67616d0000b273188611bddfb3696ad7e084f5,1,1,222096,https://p.scdn.co/mp3-preview/0a5f24ad8ff46c324c0e81cbc9bbb4081843345a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71800411,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,viral pop",0.708,0.701,0.0,-5.196,1.0,0.0328,0.031,0.0,0.392,0.504,120.932,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2018 Universal Music Australia Pty Ltd., P An EMI Music Australia production; ℗ 2018 Universal Music Australia Pty Ltd.",9130 +9131,spotify:track:1LuFyappyEFGybt2qzLNDp,Love Is All I Got,"spotify:artist:5FWi1mowu6uiU2ZHwr1rby, spotify:artist:75EZuo5MHV2572NRpMWotC","Feed Me, Crystal Fighters",spotify:album:0MxnDPoKo4ohNSdnuZpIxg,Calamari Tuesday,spotify:artist:5FWi1mowu6uiU2ZHwr1rby,Feed Me,2013-10-14,https://i.scdn.co/image/ab67616d0000b2736d7a9fcbffa5fe7937f0be82,1,11,185917,https://p.scdn.co/mp3-preview/08f5474464e3504eb2a796bbec96eb1ec5cc3439?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBTDG1200510,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,complextro,edm,electro house,filthstep,shimmer pop",0.613,0.771,0.0,-6.056,1.0,0.0469,0.000722,0.0,0.59,0.41,130.004,4.0,,Sotto Voce Records,"C 2016 Sotto Voce Records, P 2016 Sotto Voce Records",9131 +9132,spotify:track:6RH9SBaImgPfLCPEjpniVH,I'm Gonna Getcha Good! - Red Single Edit,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,spotify:album:02SQS3hERbgOjnZc0hmWKk,Greatest Hits,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,2004-01-01,https://i.scdn.co/image/ab67616d0000b273e47667214dddedc5095afc11,1,2,242133,https://p.scdn.co/mp3-preview/220733a1ce11e9fe09f66e87af5d61c533924fb1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USMR10200335,spotify:user:bradnumber1,2022-01-11T11:19:46Z,"canadian country,canadian pop,contemporary country,country,country dawn",0.723,0.814,1.0,-3.821,1.0,0.031,0.0399,0.0,0.0642,0.938,123.986,4.0,,Mercury Nashville,"C © 2004 Mercury Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 2004 Mercury Records, a Division of UMG Recordings, Inc.",9132 +9133,spotify:track:4Ukw2VmulvQzoF5zcuiPEY,Kiss This Thing Goodbye,spotify:artist:2Q4FnG5T6NTUcAAZwuMV5K,Del Amitri,spotify:album:0Lc01v8Q9j9WW2XyGtxzdx,Waking Hours,spotify:artist:2Q4FnG5T6NTUcAAZwuMV5K,Del Amitri,1989-01-01,https://i.scdn.co/image/ab67616d0000b27326531d8f2b2bc2388bd1fcd6,1,1,275026,https://p.scdn.co/mp3-preview/c2888cd5c6f355c26bc228b98933c082ceabf33d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAAM8901019,spotify:user:bradnumber1,2022-04-20T22:33:20Z,"britpop,melancholia,new wave pop,scottish rock",0.68,0.514,7.0,-14.358,1.0,0.0343,0.157,0.0192,0.348,0.783,117.316,4.0,,EMI,"C © 1990 A&M Records Limited, P ℗ 1989 A&M Records Limited",9133 +9134,spotify:track:4U5DDEuYdoMm4Xv9yklrWu,Yours,spotify:artist:1E2AEtxaFaJtH0lO7kgNKw,Russell Dickerson,spotify:album:3TtIjOHsIEmDNA57KnhgNV,Yours,spotify:artist:1E2AEtxaFaJtH0lO7kgNKw,Russell Dickerson,2015-07-23,https://i.scdn.co/image/ab67616d0000b273dedaa09aa6fe7351d9111749,1,1,221280,https://p.scdn.co/mp3-preview/e66615179d4744ae438846b2a73c072ce05f5141?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCACG1575814,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road,modern country rock",0.568,0.796,11.0,-5.308,1.0,0.0313,0.12,0.0,0.084,0.573,133.975,4.0,,Russell Dickerson,"C 2015 Russell Dickerson, P 2015 Russell Dickerson",9134 +9135,spotify:track:7mnGQesk1TzQLzQ9bYWZPR,She's so High,spotify:artist:3KEb1kbIZN5jumsjFEWgSW,Tal Bachman,spotify:album:3v17hBg9lx5vdJQ8Dfr6OD,Tal Bachman,spotify:artist:3KEb1kbIZN5jumsjFEWgSW,Tal Bachman,1999-02-23,https://i.scdn.co/image/ab67616d0000b273f875c8285d7f26a42baaa2a0,1,2,224693,https://p.scdn.co/mp3-preview/ad27f259430b96e32b82733a5f3272cb6bf3f2e5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM19802720,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.537,0.84,9.0,-4.626,1.0,0.0363,0.2,2.15e-06,0.0998,0.211,124.269,4.0,,Columbia,P (P) 1999 Sony Music Entertainment Inc.,9135 +9136,spotify:track:15ob9SMGLWrexuPuyuMjKl,Gloria,spotify:artist:4463nfFMmK1cwAWBQDwT5e,Laura Branigan,spotify:album:2bfvV9aRLN1BseXz4FbVnW,The Best of Branigan,spotify:artist:4463nfFMmK1cwAWBQDwT5e,Laura Branigan,1995-06-06,https://i.scdn.co/image/ab67616d0000b273f0f7c1d151ae7ad826643e2f,1,13,295066,https://p.scdn.co/mp3-preview/e88fec553f052d90197209098b452821dc3f6dfc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USAT28400033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave pop,soft rock,synthpop",0.775,0.866,9.0,-3.598,1.0,0.0295,0.135,0.0376,0.152,0.875,131.338,4.0,,Atlantic Records,"C © 1995 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1995 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",9136 +9137,spotify:track:6fRxMU4LWwyaSSowV441IU,Beautiful Mistakes (feat. Megan Thee Stallion),"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:181bsRPaVXVlUKXrxwZfHK","Maroon 5, Megan Thee Stallion",spotify:album:4jGaPN2gEpKciN02ZKRShT,Beautiful Mistakes (feat. Megan Thee Stallion),"spotify:artist:04gDigrS5kc9YWfZHwBETP, spotify:artist:181bsRPaVXVlUKXrxwZfHK","Maroon 5, Megan Thee Stallion",2021-03-03,https://i.scdn.co/image/ab67616d0000b273a6c1dea2b83a2309d9e0adc3,1,1,227395,https://p.scdn.co/mp3-preview/952fe343712095ebea9aa06609ff83c3fe6e9ccb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,USUM72103449,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,houston rap,pop,rap,trap queen",0.713,0.676,10.0,-5.483,1.0,0.027,0.0377,0.0,0.154,0.721,99.048,4.0,,222 Records/Interscope Records,"C © 2021 Interscope Records (222 Records), P ℗ 2021 Interscope Records (222 Records)",9137 +9138,spotify:track:2wSHxrxkBNmxVZaxLT3Wyj,All Your Reasons,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:7GHROYaPxZr0dRMYQ7xHHu,The Matchbox Twenty Collection,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2013-11-08,https://i.scdn.co/image/ab67616d0000b273a09220722ea0004d7da146a7,4,3,160840,https://p.scdn.co/mp3-preview/1c2a4aac20321cc0b8505228e503d61ff4796a14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USAT20704238,spotify:user:bradnumber1,2021-11-17T22:17:58Z,"neo mellow,pop rock,post-grunge",0.53,0.816,11.0,-4.384,1.0,0.0713,0.00445,0.0,0.189,0.593,142.17,4.0,,Emblem / Atlantic,"C © 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",9138 +9139,spotify:track:6ic8OlLUNEATToEFU3xmaH,Gimme More,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:1ePkYcH5ZQCb1b4tQeiEDj,Blackout,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2007-10-25,https://i.scdn.co/image/ab67616d0000b273ca10fae7d292c52f7e8b11ca,1,1,251240,https://p.scdn.co/mp3-preview/cf83b67397b97a1634547c6194086c1102e89b36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USJI10700609,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.788,0.844,2.0,-3.131,1.0,0.0334,0.25,0.000678,0.0723,0.382,113.324,4.0,,Jive,P (P) 2007 Zomba Recording LLC,9139 +9140,spotify:track:0Dgz1uo6WA2NMQtuLIgPHC,Say It Once - Single Edit,"spotify:artist:5r95McVcn35VcJzLKq217V, spotify:artist:1eNDa9ZzHRuyNhDugze99t","Ultra, Steve Robson And Andy Bradfield",spotify:album:1m8dxhYIiDBtJKvgOqwVzn,Ultra,spotify:artist:5r95McVcn35VcJzLKq217V,Ultra,1998-12-01,https://i.scdn.co/image/ab67616d0000b273b92b25d0d627619692b4348c,1,2,240400,https://p.scdn.co/mp3-preview/6c99161bdabd615847f5f18f7c19337320426596?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBAHS9803741,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.614,0.966,4.0,-3.954,0.0,0.0487,0.115,0.0,0.389,0.865,89.974,4.0,,Rhino,"C © 1998 Warner Music UK Ltd., P ℗ 1998 Warner Music UK Ltd.",9140 +9141,spotify:track:6rN6Ji6HZw9FBIaT6s3EMe,Love Your Way,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:7luRbYWUzEZONdwCZbdbEH,Vulture Street,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,2003-01-01,https://i.scdn.co/image/ab67616d0000b2739c7dd05a21a98d8986faf295,1,4,271162,https://p.scdn.co/mp3-preview/a64590c8e31ccb9ef260f0e38ca63d686b4a3b4d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00330025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.303,0.774,6.0,-4.773,0.0,0.0446,0.00455,1.28e-06,0.14,0.457,170.067,4.0,,Universal Music Group,"C © 2003 Universal Music Australia Pty Ltd., P ℗ 2003 Universal Music Australia Pty Ltd.",9141 +9142,spotify:track:1zFttiDxUN4FDl91XAeeY5,Holy Water,"spotify:artist:619CzMJPPWrCeZwx5qw6ko, spotify:artist:31r6yVmmkwBaiF1PEJahvP","Besomorph, Lucifer",spotify:album:6CEO8eiZsIQdSLRBBgstdR,Holy Water,"spotify:artist:619CzMJPPWrCeZwx5qw6ko, spotify:artist:31r6yVmmkwBaiF1PEJahvP","Besomorph, Lucifer",2022-03-18,https://i.scdn.co/image/ab67616d0000b273e9c2ed7f2bd23ece685fbcff,1,1,136585,,False,0,QM42K2227674,spotify:user:bradnumber1,2022-04-05T08:06:48Z,"alt z,dark r&b,slap house,traprun,covertronica",0.785,0.749,8.0,-5.876,0.0,0.179,0.07,3.22e-06,0.399,0.405,122.915,4.0,,Besomorph,"C 2022 Besomorph, P 2022 Besomorph",9142 +9143,spotify:track:40HMJnJtC3p2R8GfjeGuJb,Tip Of My Tongue,spotify:artist:4rCLXPaqaUjGa1aHDwkviR,Diesel,spotify:album:0DpXZUUfBkgiXadzf3l0Jp,Rewind: The Best Of,spotify:artist:4rCLXPaqaUjGa1aHDwkviR,Diesel,1996-01-01,https://i.scdn.co/image/ab67616d0000b2737f8ee822f6cbb4462b3b5f36,1,2,252293,https://p.scdn.co/mp3-preview/3815e32d1d802685735ff5b77b41e12e38697be0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUEM09200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.663,0.726,4.0,-8.534,1.0,0.0332,0.0149,0.00993,0.0776,0.82,97.933,4.0,,EMI Music Australia,"C © 1996 EMI Recorded Music Australia Pty Ltd., P ℗ 1996 EMI Recorded Music Australia Pty Ltd.",9143 +9144,spotify:track:6d7TfQbyA01jam6hm0YY7B,Falling,spotify:artist:4zSVpDBP4CHchosvKAL96G,Candice Alley,spotify:album:1F9lV68ovVAfWrDVD4SaNl,Colorblind,spotify:artist:4zSVpDBP4CHchosvKAL96G,Candice Alley,2003-01-01,https://i.scdn.co/image/ab67616d0000b273bc25e486fbc6f4a52c2eb646,1,1,238493,https://p.scdn.co/mp3-preview/a44e2656b4897fd12f36009c29d30043a51d4dc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00330016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.505,0.714,10.0,-7.199,0.0,0.0337,0.0114,1.25e-06,0.356,0.143,93.495,4.0,,Universal Music,"C (C) 2003 Universal Music Australia Pty Ltd., P (P) 2003 Universal Music Australia Pty Ltd.",9144 +9145,spotify:track:02KkLk03Oj9EC49700vovn,The Car Song,spotify:artist:023YMawCG3OvACmRjWxLWC,The Cat Empire,spotify:album:2vZK7ASaJOOGlp9a4CMFeG,Two Shoes (Blank),spotify:artist:023YMawCG3OvACmRjWxLWC,The Cat Empire,2007-06-25,https://i.scdn.co/image/ab67616d0000b27356fc2b1de097a88226a0e3c6,1,10,259000,https://p.scdn.co/mp3-preview/6a36b191a7a3a8fb1578acd6b028355667974cd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUTW00500005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian reggae fusion,australian ska,ska jazz",0.516,0.844,7.0,-4.378,0.0,0.0475,0.161,0.0,0.323,0.736,150.133,4.0,,Two Shoes Pty Ltd,"C (C) 2007 Two Shoes Pty Ltd, P (P) 2007 Two Shoes Pty Ltd",9145 +9146,spotify:track:4QJLKU75Rg4558f4LbDBRi,If Today Was Your Last Day,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:0GQ9AZBJSj109gmSdSrviC,Dark Horse,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2008-10-28,https://i.scdn.co/image/ab67616d0000b273f74baf63e915712df348e647,1,10,249066,https://p.scdn.co/mp3-preview/a4a9761b38270c07498f54e250c8640e57b2f2c0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,NLA320887846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.485,0.911,3.0,-5.749,1.0,0.0355,8.67e-05,0.0,0.092,0.568,89.956,4.0,,Roadrunner Records,"C © 2008 The All Blacks B.V. Issued under license to Roadrunner Records from The All Blacks B.V. Roadrunner Records is a registered trademark of The All Blacks B.V., P ℗ 2008 The All Blacks B.V. Issued under license to Roadrunner Records from The All Blacks B.V. Roadrunner Records is a registered trademark of The All Blacks B.V.",9146 +9147,spotify:track:47Slg6LuqLaX0VodpSCvPt,Just the Way You Are,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:6J84szYCnMfzEcvIcfWMFL,Doo-Wops & Hooligans,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2010-05-11,https://i.scdn.co/image/ab67616d0000b273f60070dce96a2c1b70cf6ff0,1,2,220734,https://p.scdn.co/mp3-preview/6d1a901b10c7dc609d4c8628006b04bc6e672be8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USAT21001269,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.635,0.841,5.0,-5.379,1.0,0.0422,0.0134,0.0,0.0622,0.424,109.021,4.0,,Elektra (NEK),"C © 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",9147 +9148,spotify:track:1mvZErZBp7WZT3HfGBykao,Cry for You,spotify:artist:6VX2R9L0O0d6qPvqGuIH7b,September,spotify:album:5ENrI2pojxE4XhSmncl4cz,Dancing Shoes,spotify:artist:6VX2R9L0O0d6qPvqGuIH7b,September,2007-03-08,https://i.scdn.co/image/ab67616d0000b273e1a050d8545416935386e73a,1,13,209800,https://p.scdn.co/mp3-preview/102bf30056473e4bd549cef834063a85ed0247f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,SEWBD0600812,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"swedish electropop,swedish pop",0.768,0.881,9.0,-3.988,1.0,0.0301,0.00133,0.000141,0.0551,0.961,130.016,4.0,,Catchy Tunes,P (P) 2007 Catchy Tunes/Family Tree Music AB,9148 +9149,spotify:track:7GptbanebPZYkLPvjNfd6m,Buddy Holly,spotify:artist:3jOstUTkEu2JkjvRdBA5Gu,Weezer,spotify:album:33CmI2lR8PnQwz6133Mc7l,Weezer (Deluxe Edition),spotify:artist:3jOstUTkEu2JkjvRdBA5Gu,Weezer,1994-05-10,https://i.scdn.co/image/ab67616d0000b273252c0cdd739400c558a753b2,1,4,159586,https://p.scdn.co/mp3-preview/47099a618e82bd35261b69467f03214ae56d31e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19562907,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,modern power pop,modern rock,permanent wave,rock",0.535,0.931,8.0,-4.012,1.0,0.0451,0.00611,7.26e-05,0.0887,0.825,120.958,4.0,,Universal Strategic Marketing,"C © 2004 Geffen Records Inc., P ℗ 2004 Geffen Records Inc.",9149 +9150,spotify:track:0UzsDmdpw0Q14KU4hieQss,Fill Me In,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,spotify:album:5TedEgCbtmvDnXzUtXEFJY,Born to Do It,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2000-08-14,https://i.scdn.co/image/ab67616d0000b2737c2e92fb2302f8e8fcd9b389,1,1,257200,https://p.scdn.co/mp3-preview/60bb50be729d1b1f0065fad3dd105836c4db2afa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAWV9902038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.682,0.744,8.0,-6.981,1.0,0.0365,0.376,0.00951,0.06,0.827,132.493,4.0,,Sony Music UK,"P (P) 2001 Wildstar Records Limited, licensed exclusively to Sony Music Entertainment UK Limited",9150 +9151,spotify:track:0lNNqlJlFA5L768EtPQFnl,Love at First Sight,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:4oaGBehVCW8w4Ekf8sTbqb,The Best of Kylie Minogue,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2012-05-28,https://i.scdn.co/image/ab67616d0000b2732775ed6b5267d46354f4476a,1,4,238266,https://p.scdn.co/mp3-preview/1017fede63f246f55426095bf45cdf4f9f97c666?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAYE0101419,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.603,0.774,3.0,-6.066,0.0,0.0428,0.0288,0.052,0.0533,0.48,124.993,4.0,,WM Australia,"C © 2014 KDB Pty Limited, P ℗ 2014 KDB Pty Limited",9151 +9152,spotify:track:2gTRCIZ58gBGBO4dGRUwjs,Good Riddance (Time of Your Life),spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:6HUIbDhzmqcwxrxUfTuHdW,International Superhits!,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,2001-11-13,https://i.scdn.co/image/ab67616d0000b273f7bcced5cc8ee6e45f8f3330,1,15,153466,https://p.scdn.co/mp3-preview/25e3289a356f376e09cc0089de4fcff05f1ec838?cid=9950ac751e34487dbbe027c4fd7f8e99,True,43,USRE19700545,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.475,0.432,7.0,-7.844,1.0,0.0302,0.183,0.0,0.161,0.648,94.605,4.0,,Reprise,"C © 2001 Reprise Records, P ℗ 2001 Reprise Records",9152 +9153,spotify:track:15mZo1Kah03g8CTLbSsWrr,The Whole of the Moon - 2004 Remaster,spotify:artist:5TnuP42pw475UrjjeabtwZ,The Waterboys,spotify:album:7n5u9Q5G1j1LMHEzW4aZbg,This Is the Sea (Deluxe Version),spotify:artist:5TnuP42pw475UrjjeabtwZ,The Waterboys,1985-09-16,https://i.scdn.co/image/ab67616d0000b273e6e127ff66aee167d67e794a,1,2,302826,https://p.scdn.co/mp3-preview/03c44e576fda6f12bfcc53495fd8c22b262b4fcc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAYK0400026,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,irish rock,scottish new wave,scottish rock",0.606,0.794,0.0,-7.168,1.0,0.0291,0.119,7.16e-06,0.125,0.584,105.813,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 2004 Chrysalis Records Limited",9153 +9154,spotify:track:7yofGzP2N4cC8OzHDs1RVU,What Now,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:1ciAVKFdlpLi2eGDlXv6Bo,Unapologetic - Deluxe,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2012-12-10,https://i.scdn.co/image/ab67616d0000b2737061b3d179b8b7363ffe1a50,1,8,243093,https://p.scdn.co/mp3-preview/de5f88658ad519604401cf90e02011296ac5f11d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,16,USUM71214752,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.402,0.696,8.0,-4.798,0.0,0.0448,0.0476,0.0,0.628,0.227,180.107,3.0,,Def Jam Recordings,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",9154 +9155,spotify:track:5Qlsugh2ZVlaOgPSHpI8D7,I'm Good,spotify:artist:0FL2d6iFFNAV3yBUbXjZ1U,Wafia,spotify:album:4XJE2ic3Z1Ir4ylBaKVVnU,I'm Good,spotify:artist:0FL2d6iFFNAV3yBUbXjZ1U,Wafia,2018-08-10,https://i.scdn.co/image/ab67616d0000b27344e0fc785e5c47ae23a23833,1,1,217136,https://p.scdn.co/mp3-preview/7a77393dbda3f81d00df5eb670d9e849dc7773c8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFF01800060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,indie electropop,vapor soul",0.738,0.696,1.0,-3.59,1.0,0.0305,0.0236,9.09e-05,0.338,0.892,101.989,4.0,,Future Classic,"C 2018 Future Classic, P 2018 Future Classic",9155 +9156,spotify:track:5arVt2Wg0zbiWwAOZef2Nl,Higher Ground - Remastered 2003,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:1oOkcBu5bgkUzZTvKD1m8z,Mother's Milk,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,1989-08-16,https://i.scdn.co/image/ab67616d0000b27379ac84696fa8624e97684d27,1,2,202053,https://p.scdn.co/mp3-preview/b58ed594c263d68f9cc14e73c5ad48625e142b56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USEM30200310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.476,0.979,4.0,-3.506,0.0,0.132,0.0014,0.00729,0.0944,0.416,140.404,4.0,,Capitol Records,"C © 2005 Capitol Records Inc., P This Compilation ℗ 2005 Capitol Records Inc.",9156 +9157,spotify:track:2jgS6gefgxMjscNKxKKThm,Sundream,spotify:artist:5Pb27ujIyYb33zBqVysBkj,RÜFÜS DU SOL,spotify:album:6XrWjze1dWVVpSXeUOroZT,Atlas,spotify:artist:5Pb27ujIyYb33zBqVysBkj,RÜFÜS DU SOL,2013-08-09,https://i.scdn.co/image/ab67616d0000b273a74c3c2d0acef6991e486f73,1,1,275500,https://p.scdn.co/mp3-preview/40af05fc78c95c423a42de36dafded9b35865d60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,AUDCB1300081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian electropop,indietronica",0.68,0.708,5.0,-7.604,0.0,0.0393,0.045,0.00346,0.363,0.233,121.992,4.0,,Sony Music Entertainment,P (P) 2013 RÜFÜS DU SOL,9157 +9158,spotify:track:5JCi3pyggvk4B0yd0BK3ow,Stay High - Habits Remix,"spotify:artist:4NHQUGzhtTLFvgF5SZesLK, spotify:artist:4dM6NDYSfLcspt8GLoT5aE","Tove Lo, Hippie Sabotage",spotify:album:5Z5O36p7BivXzkucc0PAfw,Queen Of The Clouds,spotify:artist:4NHQUGzhtTLFvgF5SZesLK,Tove Lo,2014-09-24,https://i.scdn.co/image/ab67616d0000b27370cd79659edf4d5fec0840b8,1,17,258386,https://p.scdn.co/mp3-preview/85ec5d6c6458f7d2ef1576f4ac003ac2a5fc7776?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,SEUM71400257,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,metropopolis,pop,swedish electropop,swedish pop,swedish synthpop,edm,electronic trap",0.736,0.677,4.0,-7.036,0.0,0.0352,0.00114,0.844,0.0949,0.0747,121.01,4.0,,Universal Music AB,"C © 2014 Universal Music AB, P ℗ 2014 Universal Music AB",9158 +9159,spotify:track:5SFCEkybGYmmzKqewtDEaN,Body Moving,"spotify:artist:4XC335ouK6pXyq4QiIb8bP, spotify:artist:7CajNmpbOovFoOoasH2HaY","Eliza Rose, Calvin Harris",spotify:album:5EcypjAXyzxlrF5AKCNg9K,Body Moving,"spotify:artist:4XC335ouK6pXyq4QiIb8bP, spotify:artist:7CajNmpbOovFoOoasH2HaY","Eliza Rose, Calvin Harris",2023-11-17,https://i.scdn.co/image/ab67616d0000b273535aaa51352955a479bc5371,1,1,154215,https://p.scdn.co/mp3-preview/7658ca305ae89f9a6fa695dcc67a8f860f1a3ece?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBARL2301617,spotify:user:bradnumber1,2023-12-17T02:27:07Z,"house,dance pop,edm,electro house,house,pop,progressive house,uk dance",0.788,0.906,10.0,-5.863,0.0,0.0382,0.0222,0.00283,0.0822,0.811,128.004,4.0,,Ministry of Sound Recordings,P (P) 2023 Ministry of Sound Recordings Limited,9159 +9160,spotify:track:5dpAN1mjFPL38kh9kWsCiw,Wasting My Time,spotify:artist:4nCzT3o7lMgCWBcmdwCMsT,Default,spotify:album:7IUXXDlKqqLRkJLXrrhXCo,The Fallout (Limited Edition),spotify:artist:4nCzT3o7lMgCWBcmdwCMsT,Default,2001,https://i.scdn.co/image/ab67616d0000b2734ccf89f391fcde2b39c0703d,1,3,269306,https://p.scdn.co/mp3-preview/e5c21e38d9935084b101db024e2242626c10131f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USTV10100094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,post-grunge",0.449,0.776,2.0,-5.594,1.0,0.0322,0.00171,0.0,0.0698,0.198,148.11,4.0,,The Orchard,C (C) 2002 The Orchard,9160 +9161,spotify:track:3NkJNL3WqO1Lqc3uNDxvCN,Don’t Call Me Angel (Charlie’s Angels) (with Miley Cyrus & Lana Del Rey),"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:5YGY8feqx7naU7z4HrwZM6, spotify:artist:00FQb4jTyendYWaN8pK0wa","Ariana Grande, Miley Cyrus, Lana Del Rey",spotify:album:2qWVO5SXPdWAECnwEWYOJH,Don’t Call Me Angel (Charlie’s Angels),"spotify:artist:66CXWjxzNUsdJxJ2JdwvnR, spotify:artist:5YGY8feqx7naU7z4HrwZM6, spotify:artist:00FQb4jTyendYWaN8pK0wa","Ariana Grande, Miley Cyrus, Lana Del Rey",2019-09-13,https://i.scdn.co/image/ab67616d0000b27357c663c243f388ef642f58c2,1,1,190106,https://p.scdn.co/mp3-preview/9775f7faf719923a8dd66f217df663366e87cb91?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUM71912501,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop,art pop,pop",0.643,0.721,1.0,-5.248,1.0,0.0449,0.00268,6.51e-06,0.0898,0.317,102.914,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",9161 +9162,spotify:track:4vVTI94F9uJ8lHNDWKv0i2,Eenie Meenie,"spotify:artist:6S0dmVVn4udvppDhZIWxCr, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Sean Kingston, Justin Bieber",spotify:album:7yCXgxWLZZEAiVsISKN3BF,Eenie Meenie,"spotify:artist:6S0dmVVn4udvppDhZIWxCr, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Sean Kingston, Justin Bieber",2010-03-23,https://i.scdn.co/image/ab67616d0000b2734dea4c1cdf30c359dbaec318,1,1,201946,https://p.scdn.co/mp3-preview/921707d892e34a3b91b80b8396e4b30e11137179?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USSM11000625,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,canadian pop,pop",0.72,0.607,1.0,-4.168,1.0,0.0322,0.0543,0.0,0.113,0.828,121.223,4.0,,Epic/Beluga Heights,P (P) 2010 Sony Music Entertainment,9162 +9163,spotify:track:0vLwL4xuJ3s7SeaCdvMqkY,Call Me,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,spotify:album:7mEjsBlRmfP63cH1gdPT6A,Best Of Blondie,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,1981-10-31,https://i.scdn.co/image/ab67616d0000b2738cf86a9be38868f1d73cdb58,1,10,212893,https://p.scdn.co/mp3-preview/ef5f6e0e5c64d25d60a1340c6634e23a6ca4f635?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USCH38900008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop,permanent wave,power pop,rock,synthpop",0.551,0.628,2.0,-13.799,1.0,0.036,0.0327,0.000199,0.153,0.778,142.169,4.0,,Chrysalis\EMI Records (USA),"C © 1981 Capitol Records, LLC, P This Compilation ℗ 1981 Capitol Records, LLC",9163 +9164,spotify:track:18X90CAmDyrJzaXi20rVDP,Hey Hey Hey (Pop Another Bottle) - Video Edit,"spotify:artist:0vJoEI5D8lDubfb9wwNjm4, spotify:artist:72hljM9w7Zg3pE4SVC6tbl, spotify:artist:4Ib0TB8ykTnPPGrJTlVmYF","Laurent Wery, Swift K.I.D., Dev",spotify:album:4v2Y2ri1dgavmQFMRoUxpw,Hey Hey Hey (Pop Another Bottle),spotify:artist:0vJoEI5D8lDubfb9wwNjm4,Laurent Wery,2012-04-11,https://i.scdn.co/image/ab67616d0000b27355348926a559b7962deb88e0,1,1,185649,https://p.scdn.co/mp3-preview/3be50a18ba11df0d937db9c173cfa2d1f24accb9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BEZ941102396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.843,0.834,5.0,-5.427,0.0,0.119,0.0624,0.0,0.897,0.969,128.025,4.0,,La Musique du Beau Monde,"C 2012 La Musique Du Beau Monde, P 2012 EMI Music Publishing Belgium/Ramaekers Publishing/Indie-Pop Music",9164 +9165,spotify:track:2IvYUTsRCivlheereaqACw,Devil Gate Drive,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,spotify:album:7fYxOhT8bTHJ2AE8Om4kTy,Quatro,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,1974-10-01,https://i.scdn.co/image/ab67616d0000b273dafc19518662b3afee9d59c1,1,12,227853,https://p.scdn.co/mp3-preview/0fcd8ba132cedd8aa700ab5b2c41bba220412995?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE7300223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.568,0.94,2.0,-6.089,1.0,0.203,0.0251,3.77e-05,0.177,0.35,135.541,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1974 Chrysalis Records Limited",9165 +9166,spotify:track:5CtI0qwDJkDQGwXD1H1cLb,Despacito - Remix,"spotify:artist:4V8Sr092TqfHkfAA5fXXqG, spotify:artist:4VMYDCV2IEDYJArk749S6m, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Luis Fonsi, Daddy Yankee, Justin Bieber",spotify:album:3smvpv7CdrhVcGYaNDLOqn,Despacito Feat. Justin Bieber (Remix),"spotify:artist:4V8Sr092TqfHkfAA5fXXqG, spotify:artist:4VMYDCV2IEDYJArk749S6m","Luis Fonsi, Daddy Yankee",2017-04-17,https://i.scdn.co/image/ab67616d0000b273d8559d0280ffe2a2af6dacdf,1,1,228826,https://p.scdn.co/mp3-preview/e70482c7ad6c9806d90781418c5e578878d41b0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USUM71703825,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,puerto rican pop,latin hip hop,reggaeton,trap latino,urbano latino,canadian pop,pop",0.694,0.815,2.0,-4.328,1.0,0.12,0.229,0.0,0.0924,0.813,88.931,4.0,,Universal Music Group,"C © 2017 Universal Music Latin Entertainment, under exclusive license to Republic Records (RBMG/Def Jam Recordings), P ℗ 2017 Universal Music Latin Entertainment, under exclusive license to Republic Records (RBMG/Def Jam Recordings)",9166 +9167,spotify:track:0m4jVVZrsv0bLkAr1uM6UG,Do That To Me One More Time,spotify:artist:7BEfMxbaqx6dOpbtlEqScm,Captain & Tennille,spotify:album:6J8P3xCsQr5BPoEoukStSk,Make Your Move,spotify:artist:7BEfMxbaqx6dOpbtlEqScm,Captain & Tennille,1979-01-01,https://i.scdn.co/image/ab67616d0000b273b7ea2976756af1f39dae0313,1,5,256666,https://p.scdn.co/mp3-preview/cc6666fdb1f90be55d98c9bbc0d237172de4882c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USPR37900077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock,yacht rock",0.728,0.524,7.0,-8.227,1.0,0.0255,0.563,0.000131,0.0913,0.51,90.262,4.0,,Mercury Records,"C © 1979 The Island Def Jam Music Group, P This Compilation ℗ 1979 The Island Def Jam Music Group",9167 +9168,spotify:track:5prTs2HAw2G4idHZyeFp8o,Total Eclipse of the Heart,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,spotify:album:1CuFf5IslmlCno7DAFjrt9,The Very Best Of Bonnie Tyler,spotify:artist:0SD4eZCN4Kr0wQk56hCdh2,Bonnie Tyler,1999-02-08,https://i.scdn.co/image/ab67616d0000b27393d73d10075d96b65ba04dcb,1,6,269786,https://p.scdn.co/mp3-preview/42af1cbc20498d5e7de081f39b218ab035c9a57a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBN8300002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,new wave pop,soft rock",0.435,0.658,8.0,-8.179,1.0,0.0661,0.195,0.0,0.102,0.184,130.276,4.0,,Columbia,P (P) 2004 Sony Music Entertainment (UK) Limited,9168 +9169,spotify:track:1rSNjTJf2AsXnlj1I9a1fh,Six Months in a Leaky Boat,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,spotify:album:0VzEBmxy3fwUztnKnwyGvk,Time And Tide,spotify:artist:0Upmz8QvuLAkKAfRlJYWTL,Split Enz,1982,https://i.scdn.co/image/ab67616d0000b27376f83b42683606166059828c,1,9,261306,https://p.scdn.co/mp3-preview/717af6e00e4d158207e7824cd4163e679ef48f15?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUWA00601540,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,kiwi rock,zolo",0.337,0.784,2.0,-7.334,1.0,0.0359,0.118,0.000452,0.4,0.212,134.109,4.0,,WM Australia,"C © 2006 Warner Music Australia Pty Limited, P ℗ 2006 Warner Music Australia",9169 +9170,spotify:track:497Fkp3gRiGrRMoqBTDudr,California - Tchad Blake Mix,spotify:artist:0LsTFjEB1IIrh7IlTxs1GY,Phantom Planet,spotify:album:4SvTjA2cwASS1cWzEIG0WD,The Guest (Expanded Edition),spotify:artist:0LsTFjEB1IIrh7IlTxs1GY,Phantom Planet,2002,https://i.scdn.co/image/ab67616d0000b2733fffc3b7f3db4dcccff523e1,1,1,193933,https://p.scdn.co/mp3-preview/1ef83f07b093fd04b355d428d832456b79c5ab8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USSM10105453,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.399,0.805,4.0,-7.306,1.0,0.0408,0.0387,5.36e-05,0.109,0.32,158.455,4.0,,Epic/Daylight,P (P) 2001 Sony Music Entertainment Inc.,9170 +9171,spotify:track:4t9EUCjCPbdfqtOH25k8AU,Moviestar,spotify:artist:6HsEXxUSqMXmIwbYVW6zdt,Harpo,spotify:album:72prIfhTsxkWeO1IlkLB5C,Moviestar,spotify:artist:6HsEXxUSqMXmIwbYVW6zdt,Harpo,1975-12-01,https://i.scdn.co/image/ab67616d0000b273cd5144e7120f0018622bd147,1,1,202280,https://p.scdn.co/mp3-preview/f5201d0de3f41f46c37a7585dab9b86f3cd0092f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,SEAMA7640010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic swedish pop,classic uk pop",0.547,0.793,9.0,-7.78,1.0,0.0307,0.291,0.0,0.329,0.708,119.298,4.0,,Parlophone Sweden,"C © 1975 Parlophone Music Sweden, a division of Warner Music Sweden AB, P ℗ 1975 Parlophone Music Sweden, a division of Warner Music Sweden AB",9171 +9172,spotify:track:2F5r18ZlLUBqnt0jjhhETm,The Impression That I Get,spotify:artist:5uYXMC13cIUulobh204QuK,The Mighty Mighty Bosstones,spotify:album:2ZQT4irYHOexoqjzIZXipB,Let's Face It,spotify:artist:5uYXMC13cIUulobh204QuK,The Mighty Mighty Bosstones,1997-01-01,https://i.scdn.co/image/ab67616d0000b27368a64bd3e0219ab0903b84dd,1,4,194760,https://p.scdn.co/mp3-preview/79ee09e0ad91c83e587833459508959532a074af?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19780102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boston punk,boston rock,punk,ska,ska punk,skate punk",0.419,0.945,4.0,-5.406,1.0,0.119,0.0985,0.0121,0.23,0.695,181.175,4.0,,Mercury,"C © 1997 The Island Def Jam Music Group Inc., P ℗ 1997 The Island Def Jam Music Group",9172 +9173,spotify:track:1AT5viFqaGU9Hu5smdNlgB,New Perspective,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,spotify:album:6G6niPw41MwpwZEmbe64Mc,New Perspective,spotify:artist:20JZFwl6HVl6yg8a4H3ZqK,Panic! At The Disco,2009-07-28,https://i.scdn.co/image/ab67616d0000b273978e6d08c5581b9ec3627c64,1,1,226786,https://p.scdn.co/mp3-preview/fd0a606202bb4170a9d0371b4ae0d811b7a9c742?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USAT20902163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.367,0.881,7.0,-4.752,1.0,0.127,0.00313,0.0,0.185,0.514,164.028,4.0,,Decaydance/Fueled By Ramen,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",9173 +9174,spotify:track:0TVV2gFROJaB3kIZyCUvIY,Rather Be (feat. Jess Glynne),"spotify:artist:6MDME20pz9RveH9rEXvrOM, spotify:artist:4ScCswdRlyA23odg9thgIO","Clean Bandit, Jess Glynne",spotify:album:0VDMjDj2AwPQXWQ7XhN9gG,New Eyes,spotify:artist:6MDME20pz9RveH9rEXvrOM,Clean Bandit,2014-05-27,https://i.scdn.co/image/ab67616d0000b273c124217d45b77b0ed6983872,1,4,227833,https://p.scdn.co/mp3-preview/358cc2906abb9789b9c1d4a7e07dc2601b7ade4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBAHS1300498,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,uk dance,uk funky,dance pop,pop,uk pop",0.799,0.586,11.0,-6.735,1.0,0.0377,0.162,2.03e-06,0.193,0.549,120.97,4.0,,Atlantic Records UK,"C © 2014 Warner Music UK Limited, P ℗ 2014 Warner Music UK Limited",9174 +9175,spotify:track:3BJm2KbylyJuzZjRUFXLBJ,Classic,spotify:artist:2l35CQqtYRh3d8ZIiBep4v,MKTO,spotify:album:5lpAXw4rMQajbfPxbc6boh,MKTO,spotify:artist:2l35CQqtYRh3d8ZIiBep4v,MKTO,2012,https://i.scdn.co/image/ab67616d0000b273b2f5c48752c54bce0c3892ca,1,2,175426,https://p.scdn.co/mp3-preview/80d5a20c71245732317a05d305eac38f8f54d8b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USSM11301446,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.72,0.79,1.0,-4.686,1.0,0.125,0.0383,0.0,0.156,0.755,102.068,4.0,,Columbia/M2V,"P (P) 2012, 2013, 2014 Columbia Records, a Division of Sony Music Entertainment",9175 +9176,spotify:track:6U0FIYXCQ3TGrk4tFpLrEA,SUGAR,spotify:artist:1Bl6wpkWCQ4KVgnASpvzzA,BROCKHAMPTON,spotify:album:1jToVugwBEzcak8gJNZG2f,GINGER,spotify:artist:1Bl6wpkWCQ4KVgnASpvzzA,BROCKHAMPTON,2019-08-23,https://i.scdn.co/image/ab67616d0000b27346f07fa4f28bf824840ddacb,1,2,204533,https://p.scdn.co/mp3-preview/ef4f27cb1fb8f10ffe933fc772a936f32de95181?cid=9950ac751e34487dbbe027c4fd7f8e99,True,67,USRC11901564,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,rap",0.453,0.538,1.0,-8.212,1.0,0.0638,0.449,0.0,0.19,0.516,122.973,4.0,,Question Everything/RCA Records,"P (P) 2019 Question Everything, Inc. under exclusive license to RCA Records, a division of Sony Music Entertainment.",9176 +9177,spotify:track:2NOluoo7fm2pkqeLodLdAH,Funky Town,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,spotify:album:5iiYPL9SAHZqhnyq1n5akf,Funky Town,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,1986-11-17,https://i.scdn.co/image/ab67616d0000b2732823f126ed7d1829753bf4a0,1,1,292428,https://p.scdn.co/mp3-preview/d6807de4cf6a9bc5ea932468774fefb3e005aa92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,usl4q2000488,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,dance rock,synthpop",0.653,0.826,9.0,-4.925,1.0,0.0338,0.0935,5.74e-05,0.314,0.708,128.024,4.0,,Pseudo Echo,"C 1986 Pseudo Echo, P 1986 Pseudo Echo",9177 +9178,spotify:track:7D5n2kpYH2WSqIyEO9MeXf,Patience,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,spotify:album:1RCAG3LrDwYsNU5ZiUJlWi,G N' R Lies,spotify:artist:3qm84nBOXUEQ2vnTfUTTFC,Guns N' Roses,1988-11-29,https://i.scdn.co/image/ab67616d0000b273d2c9d673548c12ad1c32e38d,1,5,354400,https://p.scdn.co/mp3-preview/aa518333649e885035d7ce62b6a78eac7205cb9d?cid=9950ac751e34487dbbe027c4fd7f8e99,True,2,USGF18819805,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam metal,hard rock,rock",0.457,0.266,6.0,-14.465,1.0,0.0313,0.711,0.000261,0.124,0.372,120.459,4.0,,Guns N Roses P&D,"C © 1988 The David Geffen Company, P ℗ 1988 UMG Recordings, Inc.",9178 +9179,spotify:track:2aBxt229cbLDOvtL7Xbb9x,Always Be My Baby,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,spotify:album:1ibYM4abQtSVQFQWvDSo4J,Daydream,spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ,Mariah Carey,1995-10-03,https://i.scdn.co/image/ab67616d0000b273749e9bfa78277f30ad2c9a9c,1,5,258133,https://p.scdn.co/mp3-preview/c0aa36744d3c682c8fa9e14a0b7128b5afaf5d60?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM19501119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.65,0.531,4.0,-8.335,1.0,0.0364,0.457,0.0,0.249,0.487,78.946,4.0,,Columbia,"P (P) 1995 Columbia Records, a division of Sony Music Entertainment",9179 +9180,spotify:track:1F5jI1Uh59GCnvalivgtjR,In Your Eyes,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:6FTq1YhYJLetfJQrq02gdv,Fever,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,2001-10-01,https://i.scdn.co/image/ab67616d0000b273c2f18ddba993ab67b989bcb8,1,8,197826,https://p.scdn.co/mp3-preview/727151e02c24a7d360c4efcc68b72dfe57631836?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAYE0101381,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.689,0.894,6.0,-6.342,0.0,0.0672,0.133,4.72e-05,0.0681,0.709,123.971,4.0,,WM Australia,"C © 2001 KayDeebee Pty Ltd, P ℗ 2001 KayDeebee Pty Ltd",9180 +9181,spotify:track:5QkwbUdIcUIu3eyCkDxUv6,Awkward,spotify:artist:0Ou0138wEd8XWebhc4j7O0,San Cisco,spotify:album:6lkDllJCsavtd5vFd7ddue,Awkward,spotify:artist:0Ou0138wEd8XWebhc4j7O0,San Cisco,2011-09-30,https://i.scdn.co/image/ab67616d0000b273831d6b5c50bd0b86b982fc9f,1,1,155640,https://p.scdn.co/mp3-preview/2218671d944db14f3512617dcc5a0b00a10e461a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,AUU221100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,fremantle indie,metropopolis,perth indie",0.573,0.876,1.0,-5.699,0.0,0.102,0.0362,0.0,0.095,0.895,161.888,4.0,,Island City Records,"C 2011 San Cisco Music, P 2011 San Cisco Music",9181 +9182,spotify:track:1imMjt1YGNebtrtTAprKV7,Love Again,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:5lKlFlReHOLShQKyRv6AL9,Future Nostalgia,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2020-03-27,https://i.scdn.co/image/ab67616d0000b2732172b607853fa89cefa2beb4,1,8,258004,https://p.scdn.co/mp3-preview/46e92047133c80aca29179d80a11a5decfb2b37f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBAHT1901302,spotify:user:bradnumber1,2021-11-19T23:19:07Z,"dance pop,pop,uk pop",0.659,0.667,11.0,-4.668,0.0,0.0339,0.00173,2.85e-05,0.1,0.468,115.982,4.0,,Warner Records,"C © 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, P ℗ 2020 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited, with the exception of track 1 & 2 2019 Dua Lipa Limited under exclusive license to Warner Records UK, a division of Warner Music UK Limited",9182 +9183,spotify:track:2rSdCcSlZA1GGoW6egTzjZ,Powerful (feat. Ellie Goulding & Tarrus Riley),"spotify:artist:738wLrAtLtCtFOLvQBXOXp, spotify:artist:0X2BH1fck6amBIoJhDVmmJ, spotify:artist:4frHO7KPcfMjhnVdIMJ98c","Major Lazer, Ellie Goulding, Tarrus Riley",spotify:album:0C7tn68LWhhw5Ez6g9LMjz,Peace Is the Mission,spotify:artist:738wLrAtLtCtFOLvQBXOXp,Major Lazer,2015-06-01,https://i.scdn.co/image/ab67616d0000b2732241b2e696f05a4bfad7144d,1,5,206327,https://p.scdn.co/mp3-preview/67c2938002c7a0ab385a8373dfc27705c916d2a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,QMUY41500013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,moombahton,pop,pop dance,indietronica,metropopolis,pop,uk pop,dancehall,lovers rock",0.598,0.792,11.0,-4.043,0.0,0.0478,0.121,0.0,0.158,0.732,97.479,3.0,,WM Australia,"C © 2015 Major Lazer LLC. Marketed, manufactured and distributed in Australia and New Zealand by Warner Music Australia under exclusive licence., P ℗ 2015 Major Lazer LLC. Marketed, manufactured and distributed in Australia and New Zealand by Warner Music Australia under exclusive licence.",9183 +9184,spotify:track:75JSsGwnP8J6psTsJIr9Vt,Out Of Mind Out Of Sight,spotify:artist:2k0zkxxRvJKwiHQq5QfjYn,Models,spotify:album:098ehNcR8Pzjr2inpaiq8x,The Essential Hits,spotify:artist:2k0zkxxRvJKwiHQq5QfjYn,Models,2010-08-13,https://i.scdn.co/image/ab67616d0000b27361927c0bd2efed9ffd5b0a9f,1,1,217466,https://p.scdn.co/mp3-preview/205c1336c07f128c1b77891ece2d429867c24e07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUMU08500054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.628,0.771,6.0,-13.637,0.0,0.0536,0.0117,0.000986,0.203,0.793,122.091,4.0,,WM Australia,"C © 2010 Warner Music Australia Pty Limited, P ℗ 2010 Warner Music Australia Pty Limited",9184 +9185,spotify:track:13Irp51zj01BZu2XtDrnAg,2 Be Loved (Am I Ready),spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,spotify:album:1KtDsGsSRGbnmH07v5hB1I,Special,spotify:artist:56oDRnqbIiwx4mymNEv7dS,Lizzo,2022-07-14,https://i.scdn.co/image/ab67616d0000b273caa75a1b27530c05d8b76675,1,4,187107,https://p.scdn.co/mp3-preview/d8547bb88b7fff366d43a27961d772c105d934e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USAT22203706,spotify:user:bradnumber1,2022-12-29T23:58:31Z,"escape room,minnesota hip hop,pop,trap queen",0.721,0.769,7.0,-4.111,1.0,0.105,0.0922,0.0,0.0817,0.915,155.932,4.0,,Nice Life/Atlantic,"C © 2021 Nice Life Recording Company and Atlantic Recording Corporation, P ℗ 2021 Nice Life Recording Company and Atlantic Recording Corporation",9185 +9186,spotify:track:6r1YMRHLNcn5ryFWQFjhIf,High On Me,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:3upAGs7RCsa4lj7WW0uY0T,High On Me,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2017-09-01,https://i.scdn.co/image/ab67616d0000b2739917622e4e943792409a7ec2,1,1,197988,https://p.scdn.co/mp3-preview/23172a82b505ab4b50ecc4aee8f87b31507c7518?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUBM01700656,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.77,0.7,7.0,-3.211,1.0,0.065,0.0149,0.0,0.0577,0.707,110.062,4.0,,Sony Music Entertainment,P (P) 2017 Sony Music Entertainment Australia Pty Ltd,9186 +9187,spotify:track:2w4EpqGasrz9qdTwocx54t,Open Arms,spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,spotify:album:43wpzak9OmQfrjyksuGwp0,Escape (Bonus Track Version),spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,1981,https://i.scdn.co/image/ab67616d0000b273c5653f9038e42efad2f8a266,1,10,202173,https://p.scdn.co/mp3-preview/348d8ba02848de095475f100b4edc94ed82e1ccc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,USSM18100125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,rock,soft rock",0.405,0.21,2.0,-13.214,1.0,0.0279,0.584,0.0,0.139,0.174,100.577,3.0,,Columbia,P (P) 1981 Sony Music Entertainment,9187 +9188,spotify:track:7mlGufYKRiJEO2dglocn6o,Who's That Girl (feat. Eve),"spotify:artist:5PjekOABtfU2Kwo0AHVmci, spotify:artist:4d3yvTptO48nOYTPBcPFZC","Guy Sebastian, Eve",spotify:album:0f8Xtk0NDPGz4PpwlzEMBT,Twenty Ten,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2010-11-19,https://i.scdn.co/image/ab67616d0000b2739b9984688fe057a6af29d60e,1,1,220440,https://p.scdn.co/mp3-preview/c07022981a5d2e3703ba5e99314c363532714547?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,AUBM01000482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,contemporary r&b,dance pop,hip pop,philly rap,r&b,urban contemporary",0.774,0.85,0.0,-4.436,1.0,0.0326,0.0837,0.0,0.193,0.53,127.031,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd.,9188 +9189,spotify:track:2Zw1UciFQWTbyMLSVJjdWX,California Dreamin',spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:0KmfyftZ670wUdXUOd2gQ0,San Andreas: Original Motion Picture Soundtrack,spotify:artist:0sK0i9UQeU4aPaxgGTFTcC,Andrew Lockington,2015-05-12,https://i.scdn.co/image/ab67616d0000b273c04dd6e3e4dbd86fb3683c06,1,24,216146,https://p.scdn.co/mp3-preview/38188ec6fae00a3880ae42c3a49cc8d59bb1a062?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11500721,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.291,0.635,4.0,-6.846,0.0,0.0371,0.275,2.69e-05,0.334,0.294,111.852,4.0,,WaterTower Music,"C 2015 Warner Bros. Entertainment Inc. / Village Roadshow Films North America Inc. and RatPac-Dune Entertainment LLC, P 2015 WaterTower Music",9189 +9190,spotify:track:3ksNHUNCTP6Pan8rjFnmtw,Never Worn White,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,spotify:album:0Gubs5k8ay34m9a0yiliRa,Never Worn White,spotify:artist:6jJ0s89eD6GaHleKKya26X,Katy Perry,2020-03-05,https://i.scdn.co/image/ab67616d0000b273ff569cf0c02071d352847a47,1,1,225039,https://p.scdn.co/mp3-preview/2ae82253eadb9d1a00d9d64cfcc2581f89132261?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USUM72004077,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.544,0.353,11.0,-7.275,0.0,0.0303,0.706,0.0,0.105,0.357,138.059,4.0,,Capitol Records,"C © 2020 Capitol Records, LLC, P ℗ 2020 Capitol Records, LLC",9190 +9191,spotify:track:4XOZaPYeMn9hcbpyS90NnD,Lights And Sounds,spotify:artist:3zxKH0qp3nBCuPZCZT5Vaf,Yellowcard,spotify:album:5EaEOUs3O1MZRicDMUIuqo,Lights And Sounds,spotify:artist:3zxKH0qp3nBCuPZCZT5Vaf,Yellowcard,2006-01-01,https://i.scdn.co/image/ab67616d0000b2735c6f9b09bf2035d181e19aac,1,2,208186,https://p.scdn.co/mp3-preview/e4926a71a4f6a9ec2eb76b352ca1af787ca41ee5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USCA20501001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,pop punk,post-grunge,socal pop punk",0.344,0.972,11.0,-3.653,0.0,0.116,8.48e-05,0.0,0.287,0.387,167.818,4.0,,Capitol Records,"C © 2006 Capitol Records Inc., P ℗ 2006 Capitol Records Inc.",9191 +9192,spotify:track:6tgjFqAUj3pY9vNihBMwT6,Old Rivers,"spotify:artist:14VbTTVRZW6DtcaFU4cPO8, spotify:artist:26fpZeMJX2vN9xuGq70yve","Walter Brennan, The Johnny Mann Singers",spotify:album:1B6ouOVXoCsjMeF8Zpc4y2,Old Rivers,spotify:artist:14VbTTVRZW6DtcaFU4cPO8,Walter Brennan,1962-01-01,https://i.scdn.co/image/ab67616d0000b2730828caba01468b73993a7625,1,1,170800,https://p.scdn.co/mp3-preview/6d9a44362b2e559f0475d6da2e3ac5989a6ef233?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71608651,spotify:user:bradnumber1,2021-08-08T09:26:31Z,traditional country,0.578,0.446,9.0,-9.549,1.0,0.0435,0.771,0.0,0.231,0.671,118.365,4.0,,Universal Music Group,"C © 1962 Capitol Records Nashville, P ℗ 1962 Capitol Records Nashville",9192 +9193,spotify:track:3OYLMaX7ru9Ib3h029cVHZ,Horny ('98 Radio Edit),"spotify:artist:5N6EzjkOoyABhNZJggeXi6, spotify:artist:7c40GtC37kwpGDm8kbYcHr","Mousse T., Hot 'N' Juicy",spotify:album:4AvDREVZKcsPWjvSJbJFCh,Horny,"spotify:artist:5N6EzjkOoyABhNZJggeXi6, spotify:artist:7c40GtC37kwpGDm8kbYcHr","Mousse T., Hot 'N' Juicy",2008-07-01,https://i.scdn.co/image/ab67616d0000b27326141a6fa5391806d31a4a46,1,2,187826,https://p.scdn.co/mp3-preview/5bdd0824fe2e654d29eae06bd1f3df57605889b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUXN21529728,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic house,deep house,disco house,tribal house,vocal house",0.65,0.888,11.0,-5.923,0.0,0.0321,0.000166,0.0196,0.0539,0.64,122.863,4.0,,Central Station Records,"C 2008 Central Station Records, P 2008 Central Station Records",9193 +9194,spotify:track:52KvuGmgcgRdrLMXOtda0E,The Stroke - Remastered 2010,spotify:artist:3Fz2GbraVXhcpXnoi2Oe1r,Billy Squier,spotify:album:6TwlLNU5Zd9qGuNgSLeWPt,Don't Say No (Remastered 2010),spotify:artist:3Fz2GbraVXhcpXnoi2Oe1r,Billy Squier,1981,https://i.scdn.co/image/ab67616d0000b273f4822f8034e697410a14a297,1,2,217613,https://p.scdn.co/mp3-preview/36a482e01bf529ab77882fc7b58a2af3d76a630e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USCA21001203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,rock,soft rock,southern rock",0.67,0.591,7.0,-6.012,1.0,0.0646,0.62,0.0,0.373,0.8,91.439,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P ℗ 2010 Capitol Records, LLC",9194 +9195,spotify:track:7nZmah2llfvLDiUjm0kiyz,Friends (with BloodPop®),"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:1okJ4NC308qbtY9LyHn6DO","Justin Bieber, BloodPop®",spotify:album:6VABPTmDOYrO5cfyKZk7F7,Friends (with BloodPop®),"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:1okJ4NC308qbtY9LyHn6DO","Justin Bieber, BloodPop®",2017-08-17,https://i.scdn.co/image/ab67616d0000b273302806b2c89a0f7a24b4922c,1,1,189466,https://p.scdn.co/mp3-preview/4f2fc84297545610ce99c81716a96791a3ce9440?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71709101,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,electropop",0.744,0.739,8.0,-5.35,1.0,0.0387,0.00459,0.0,0.306,0.649,104.99,4.0,,Universal Music Group,"C © 2017 Republic Records, a division of UMG Recordings Inc. (GENPOP / RBMG / Schoolboy / Def Jam / Republic), P ℗ 2017 Republic Records, a division of UMG Recordings Inc. (GENPOP / RBMG / Schoolboy / Def Jam / Republic)",9195 +9196,spotify:track:0cZDC7uxNK8lqQ3GgyvCnD,Nobody's Home,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,spotify:album:7851Vsjv3apS52sXUik6iF,Under My Skin,spotify:artist:0p4nmQO2msCgU4IF37Wi3j,Avril Lavigne,2004,https://i.scdn.co/image/ab67616d0000b2739c291af4bf0c3071847f2b80,1,7,212413,https://p.scdn.co/mp3-preview/e7146915ed63a0fa2e4b9cdec8d1b7cd59a133c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USAR10400487,spotify:user:bradnumber1,2024-02-27T01:36:13Z,"canadian pop,candy pop,dance pop,pop",0.348,0.907,5.0,-3.66,0.0,0.0497,0.000516,0.0,0.161,0.177,185.406,4.0,,Arista,P (P) 2004 Arista Records LLC,9196 +9197,spotify:track:65fpYBrI8o2cfrwf2US4gq,Rewrite The Stars,"spotify:artist:6U1dBXJhC8gXFjamvFTmHg, spotify:artist:6sCbFbEjbYepqswM1vWjjs","Zac Efron, Zendaya",spotify:album:7ayBZIe1FHkNv0T5xFCX6F,The Greatest Showman (Original Motion Picture Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-12-08,https://i.scdn.co/image/ab67616d0000b273128057b40732c042c86de1dd,1,8,217440,https://p.scdn.co/mp3-preview/b59e1bd5efc1916ce39ce03f67dbbeb15ef62fc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USAT21704623,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,movie tunes,post-teen pop,pop,post-teen pop",0.684,0.619,10.0,-7.005,1.0,0.0386,0.0716,0.0,0.122,0.284,125.046,4.0,,Atlantic Records,"C © 2017 This compilation Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation., P ℗ 2017 This compilation Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Motion Picture Artwork, Photos, and Fox Trademarks and Logos TM and © 2017 Twentieth Century Fox Film Corporation.",9197 +9198,spotify:track:478broy53KsLFjWm8rMtIG,Shocked,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:2RIQRqkdhTI31wJhl90R9P,Rhythm Of Love,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,1990-11-12,https://i.scdn.co/image/ab67616d0000b2735c19b4dfc1d038d645a60d4a,1,7,189506,https://p.scdn.co/mp3-preview/45feb0a5318f4d27abc0e364cd597f33f6448874?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK0200217,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.778,0.945,10.0,-6.21,1.0,0.0424,0.112,0.0109,0.0427,0.648,122.206,4.0,,WM Australia,"C 1990 Mushroom Records Pty Ltd, P 1990 Mushroom Records Pty Ltd",9198 +9199,spotify:track:5DeXQ3qADuDmqsosnZAK3o,I Want to Know What Love Is - 2008 Remaster,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,spotify:album:4VRXqPaa2ZTwC2AG364RWO,No End in Sight: The Very Best of Foreigner,spotify:artist:6IRouO5mvvfcyxtPDKMYFN,Foreigner,2008-07-08,https://i.scdn.co/image/ab67616d0000b273738e5e351defcc02d1fd3774,1,17,301106,https://p.scdn.co/mp3-preview/2cdba40f1515399f9eb696949dfea46978b02420?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USAT20802340,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,rock,soft rock",0.47,0.605,6.0,-6.12,1.0,0.0303,0.218,7.09e-06,0.0738,0.419,81.399,4.0,,Rhino,"C © 2008 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Marketed by Rhino Entertainment Company, P ℗ 2008 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Marketed by Rhino Entertainment Company",9199 +9200,spotify:track:0UAEHlFR79k9CJvknSGUNf,Pump Up The Jam - Edit,spotify:artist:2Cd98zHVdZeOCisc6Gi2sB,Technotronic,spotify:album:5uuAdNhG4ruMYRFPVCW8gL,Best Of,spotify:artist:2Cd98zHVdZeOCisc6Gi2sB,Technotronic,2011-01-01,https://i.scdn.co/image/ab67616d0000b273f1291485a66e5cbd0d9c878d,1,1,215040,https://p.scdn.co/mp3-preview/6f7f1a807709276c4e67a7eb4f95b3fa99397217?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,BEUM70800466,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house,new beat,synthpop",0.862,0.918,10.0,-7.325,0.0,0.108,0.0287,1.15e-06,0.0492,0.651,124.811,4.0,,ARS Entertainment N.V.,"C © 2011 ARS Entertainment Belgium (A Division Of Universal Music Belgium), P This Compilation ℗ 2011 ARS Entertainment Belgium (A Division Of Universal Music Belgium)",9200 +9201,spotify:track:798cuJeotvXP8UVa8GJPnD,"Knowing Me, Knowing You",spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,spotify:album:1V6a99EbTTIegOhWoPxYI9,Arrival,spotify:artist:0LcJLqbBmaGUft1e9Mm8HV,ABBA,1976,https://i.scdn.co/image/ab67616d0000b27370f7a1b35d5165c85b95a0e0,1,5,241920,https://p.scdn.co/mp3-preview/f1e7727efbd75508bdcddacccb77d081ce66e72a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,SEAYD7601050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"europop,swedish pop",0.546,0.733,2.0,-7.073,1.0,0.0299,0.0399,1.11e-06,0.235,0.91,107.285,4.0,,Polar Music International AB,"C © 2001 Polar Music International AB, P This Compilation ℗ 2001 Polar Music International AB",9201 +9202,spotify:track:6g4iBW0qemFzyeD1GG6NZv,Beetlebum,spotify:artist:7MhMgCo0Bl0Kukl93PZbYS,Blur,spotify:album:6Gv1zpuMsO4XfWSw22YQhP,Blur,spotify:artist:7MhMgCo0Bl0Kukl93PZbYS,Blur,1997,https://i.scdn.co/image/ab67616d0000b273dff4d9297426f6ea9b60088a,1,1,304773,https://p.scdn.co/mp3-preview/b0534cefa06f4879486aad8e06924e0a115b4c56?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE9600120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,britpop,madchester,permanent wave,rock",0.501,0.608,0.0,-7.142,1.0,0.0261,0.0383,0.000224,0.287,0.776,89.681,4.0,,Parlophone,"C (C) 1997 EMI Records LtdThis label copy information is the subject of copyright protection. All rights reserved.(C) 1997 EMI Records Ltd, P (P) 1997 The copyright in this sound recording is owned by EMI Records Ltd",9202 +9203,spotify:track:0l3sVjZbVPao0RlEg2NAyS,Everywhere You Go,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,spotify:album:6FLX6wPZ49m4mLfX9sYRse,Imaginate,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,1999-10-18,https://i.scdn.co/image/ab67616d0000b273629d9b0ec5d43b4167128da5,1,3,212066,https://p.scdn.co/mp3-preview/9b55a52ea26c0e4f6e198547e22d45e1344109b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUWA09900360,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.537,0.951,2.0,-5.035,1.0,0.0553,0.00135,0.0,0.157,0.632,135.466,4.0,,WM Australia,"C © 1999 WARNER MUSIC AUSTRALIA PTY LIMITED, P ℗ 1999 WARNER MUSIC AUSTRALIA PTY LIMITED",9203 +9204,spotify:track:5pcjystBtalYeqaiXCcgEY,You All Over Me (feat. Maren Morris) (Taylor’s Version) (From The Vault),"spotify:artist:06HL4z0CvFAxyc27GXpf02, spotify:artist:6WY7D3jk8zTrHtmkqqo5GI","Taylor Swift, Maren Morris",spotify:album:5xd9LleY1wqsgKVTwLoXYI,You All Over Me (feat. Maren Morris) (Taylor’s Version) (From The Vault),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2021-03-26,https://i.scdn.co/image/ab67616d0000b273b7afb31fe699dae7c34eea1b,1,1,220839,https://p.scdn.co/mp3-preview/1ee2436ae6eb50021af1088dfffe9bd497ac5d39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USUG12100637,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,classic texas country,contemporary country",0.589,0.496,2.0,-7.606,1.0,0.0377,0.818,0.0,0.101,0.44,142.731,4.0,,Taylor Swift,"C © 2021 Taylor Swift, P ℗ 2021 Taylor Swift",9204 +9205,spotify:track:7HS35r2OVvrj40GxdQqd6P,Wheels,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,spotify:album:6Dgtc6gv91FLT2zRZU2mis,Wheels,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2009-09-25,https://i.scdn.co/image/ab67616d0000b273bd8fcaae19e2aa8d566e2fb6,1,1,277693,https://p.scdn.co/mp3-preview/c73ef5fa32450cd291fa8fd30ac2ef8b7c683ae2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10900528,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,modern rock,permanent wave,post-grunge,rock",0.411,0.816,9.0,-4.21,1.0,0.0396,0.000963,3.22e-06,0.195,0.51,161.991,4.0,,RCA Records Label,"P (P) 2009 Roswell Records, Inc.",9205 +9206,spotify:track:7FyI0Eflo9aAs8h3ug46jp,Paralyzer,spotify:artist:0niJkG4tKkne3zwr7I8n9n,Finger Eleven,spotify:album:2MsQMod4KXHpPyUd68j85P,Them vs. You vs. Me,spotify:artist:0niJkG4tKkne3zwr7I8n9n,Finger Eleven,2007-01-01,https://i.scdn.co/image/ab67616d0000b273fcfaed92b444ed4b96775ca3,1,1,208106,https://p.scdn.co/mp3-preview/38d80ad696391dd1c322f9bef722456d0bec3ac3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU30700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,canadian rock,funk metal,nu metal,post-grunge",0.645,0.942,11.0,-3.471,0.0,0.0467,0.153,0.0,0.223,0.873,106.014,4.0,,Universal Music Group,"C © 2007 The Bicycle Music Company, P ℗ 2007 The Bicycle Music Company",9206 +9207,spotify:track:4Y8vb1uy9IjM2V1hqvrAid,You'll Be In My Heart,spotify:artist:4lxfqrEsLX6N1N4OCSkILp,Phil Collins,spotify:album:1zszC1x9HYKxUCKVa62p7C,Tarzan - Original Motion Picture Soundtrack,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1999-05-18,https://i.scdn.co/image/ab67616d0000b273ba44f1ff74c2c7c2da6e4c3f,1,8,256733,https://p.scdn.co/mp3-preview/566ce940062b32b14d1b0fb65a0b73294c0546c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USWD10110146,spotify:user:bradnumber1,2023-10-17T23:18:34Z,"rock drums,soft rock",0.568,0.748,8.0,-6.538,1.0,0.0299,0.0627,2.13e-06,0.0947,0.647,96.588,4.0,,Walt Disney Records,"C © 1999 Edgar Rice Burroughs, Inc. and Disney Enterprises, Inc., P ℗ 1999 Edgar Rice Burroughs, Inc. and Walt Disney Records",9207 +9208,spotify:track:0xMd5bcWTbyXS7wPrBtZA6,Burn,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:3KVeczHxWg5YFKb0gS62f2,Halcyon Days,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2013-01-01,https://i.scdn.co/image/ab67616d0000b273474301b91976f6310bbe90a1,1,14,231211,https://p.scdn.co/mp3-preview/c63235673880380d7c081264819907f218c3f3db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBUM71303482,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.559,0.777,1.0,-5.031,1.0,0.0432,0.31,0.0,0.105,0.329,87.016,4.0,,Polydor Records,"C © 2013 Polydor Ltd. (UK), P ℗ 2013 Polydor Ltd. (UK)",9208 +9209,spotify:track:5duCWzvvPXMTPfnNSleTqN,Kiss My (Uh Oh),"spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:3e7awlrlDSwF3iM0WBjGMp","Anne-Marie, Little Mix",spotify:album:5dcTt2amySe0XICLijKgVj,Kiss My (Uh Oh),"spotify:artist:1zNqDE7qDGCsyzJwohVaoX, spotify:artist:3e7awlrlDSwF3iM0WBjGMp","Anne-Marie, Little Mix",2021-07-23,https://i.scdn.co/image/ab67616d0000b27385c0acb436f63ba6281ef101,1,1,176800,https://p.scdn.co/mp3-preview/5e2838f59e3ccec8c589b688d455bba5d78c933f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAHS2100220,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,girl group,pop,talent show,uk pop",0.638,0.878,5.0,-3.639,0.0,0.0484,0.0151,0.000223,0.308,0.481,103.948,4.0,,Atlantic Records/Asylum,"C A Major Toms / Asylum Records release, © 2021 Warner Music UK Limited., P A Major Toms / Asylum Records release, ℗ 2021 Warner Music UK Limited.",9209 +9210,spotify:track:7GHf8dQ2wA71wYOuRsQCZP,Rhythm of the Rain,spotify:artist:6qF0CJP412Gd50Rn1sFg2o,The Cascades,spotify:album:0JdsCjqgkPenYahT4NoE17,Rhythm Of The Rain,spotify:artist:6qF0CJP412Gd50Rn1sFg2o,The Cascades,1963,https://i.scdn.co/image/ab67616d0000b273d5122126000e5fa612bdf8ac,1,12,146360,https://p.scdn.co/mp3-preview/854b0b4b05f6b0b3d4d1250b4a1ec4922369d7e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USWB10103605,spotify:user:bradnumber1,2021-08-08T09:26:31Z,brill building pop,0.659,0.66,0.0,-8.337,1.0,0.0441,0.627,0.000217,0.136,0.672,116.634,4.0,,Rhino/Warner Records,"C © 2005 Warner Records Inc. Manufactured & Marketed by Warner Strategic Marketing., P ℗ 2005 Warner Records Inc. Manufactured & Marketed by Warner Strategic Marketing.",9210 +9211,spotify:track:5WpDQOIHa6ba3rJSay0udr,Turn The Page,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:3ZV7cKhLYQ8Z3p2oT36tZd,Garage Inc.,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1998-01-01,https://i.scdn.co/image/ab67616d0000b2732873f7b94ddd51a1f206ba65,1,4,366466,https://p.scdn.co/mp3-preview/620ef78f2348011d0a8d970c760a47beff6a0a78?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMC9800024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.426,0.813,8.0,-3.963,1.0,0.0318,1.94e-05,0.022,0.0937,0.228,149.013,4.0,,Universal Music Group,"C © 1998 Metallica, P ℗ 1998 Metallica",9211 +9212,spotify:track:4M0m4FUdc4wD2guhUHogLF,Sharing The Night Together,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,spotify:album:35XG1sovYmuWPpYCJsEX6F,Pleasure & Pain,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,1978,https://i.scdn.co/image/ab67616d0000b27362ee3a243ec7e3606d521a80,1,1,174533,https://p.scdn.co/mp3-preview/f37eb1099df6934312eefaaa467e452a5bc0c2db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USCA28700097,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,mellow gold,soft rock",0.619,0.686,1.0,-9.014,0.0,0.0615,0.644,0.0,0.0996,0.757,76.923,4.0,,Capitol Records,"C © 1996 Capitol Records Inc., P ℗ 1996 Capitol Records Inc.",9212 +9213,spotify:track:6eypw7fGYBtYxD3dCE2pld,Do It Again,spotify:artist:1GhPHrq36VKCY3ucVaZCfo,The Chemical Brothers,spotify:album:59BUTEyxgum2KPZMwrJjVr,We Are The Night,spotify:artist:1GhPHrq36VKCY3ucVaZCfo,The Chemical Brothers,2007-06-27,https://i.scdn.co/image/ab67616d0000b273e70a17eb4f76721f1344310e,1,5,332973,https://p.scdn.co/mp3-preview/fff33d12b0c065ba6c6363f3a5df9d43f5fe1a2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAAA0700855,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,big beat,breakbeat,electronica,rave,trip hop",0.867,0.714,4.0,-5.144,1.0,0.0662,0.0224,0.704,0.104,0.623,123.974,4.0,,UMC (Universal Music Catalogue),"C © 2007 Virgin Records Limited, P ℗ 2019 Virgin Records Limited",9213 +9214,spotify:track:6I3LsZncKrJG9mwv12FCEg,Westside,spotify:artist:5a6nqHiBS9v3CxYOs7ttET,TQ,spotify:album:5dKsOtOOY393hKb2TZ9yIV,They Never Saw Me Coming,spotify:artist:5a6nqHiBS9v3CxYOs7ttET,TQ,1998-11-03,https://i.scdn.co/image/ab67616d0000b273d769077d0bebb46bb3fd60ea,1,2,304733,https://p.scdn.co/mp3-preview/49e618288288a41dea9918d21152f78e7edb1e5a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,49,USSM19704416,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.685,0.62,4.0,-6.665,0.0,0.0406,0.19,0.0,0.158,0.372,82.52,4.0,,Epic,"P (P) 1998 Sony Music Entertainment Inc., ClockWork Entertainment Inc.",9214 +9215,spotify:track:0cizpZbGJSYq8Aw5uGOsLF,Stranger Love,"spotify:artist:6n28c9qs9hNGriNa72b26u, spotify:artist:4hOb2WdQMQWyG6RQAhR7iE","PNAU, Budjerah",spotify:album:1CQiM5ThwRYc0udEWKEiiu,Stranger Love,"spotify:artist:6n28c9qs9hNGriNa72b26u, spotify:artist:4hOb2WdQMQWyG6RQAhR7iE","PNAU, Budjerah",2021-05-28,https://i.scdn.co/image/ab67616d0000b2730458f5bd8913715396ae8ac9,1,1,225458,https://p.scdn.co/mp3-preview/8c6a0cdd6072b2d223db30aa4b84b9419c5f2d4e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUNV02100111,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,aussietronica,australian dance,australian electropop,australian indigenous music,australian r&b",0.625,0.766,8.0,-3.939,1.0,0.0448,0.0501,0.0,0.0808,0.295,125.959,4.0,,etcetc AU,"C (C) 2021 etcetc Music Pty Ltd, P (P) 2021 etcetc Music Pty Ltd",9215 +9216,spotify:track:6aILdORvFPD0mO7y5q8O1t,Hazard,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,spotify:album:1wgxJfFXbleiD2XmSCOZWP,Greatest Hits,spotify:artist:0grdhNhiRLFBaFVyybqsj6,Richard Marx,1997-01-01,https://i.scdn.co/image/ab67616d0000b2730c1ea52e29122b249b272a4c,1,11,316733,https://p.scdn.co/mp3-preview/f75ba913c60c921fcfc5a44cfa10543bc9afcee7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USCA29100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.674,0.546,7.0,-11.461,0.0,0.0262,0.176,0.0045,0.0672,0.63,124.846,4.0,,Capitol Records,"C © 1997 Capitol Records, LLC, P This Compilation ℗ 1997 Capitol Records, LLC",9216 +9217,spotify:track:0XtljDvyIsgkKllx8Kci8C,The Wah-Watusi,spotify:artist:7JSIM5U7TZym5M3Q1AFG80,The Orlons,spotify:album:7anN2keCGJCrcyJAtXCUkV,The Wah - Watusi,spotify:artist:7JSIM5U7TZym5M3Q1AFG80,The Orlons,2012-12-10,https://i.scdn.co/image/ab67616d0000b2737c47a18340f9ce7adde86134,1,1,152006,https://p.scdn.co/mp3-preview/4fe9641dcd79df62b625dafbd88eb8f9065d4641?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GB8XC1060823,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic girl group,doo-wop,rhythm and blues",0.77,0.689,4.0,-5.697,0.0,0.0385,0.14,0.000317,0.0625,0.847,134.121,4.0,,AP MUSIC LTD,C (C) 2012 AP MUSIC LTD,9217 +9218,spotify:track:4i2WUspbfNZCnhkypoFKrM,Feelin' Way Too Damn Good,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,spotify:album:4fygErqiNgFUic5hU42Z3E,The Long Road,spotify:artist:6deZN1bslXzeGvOLaLMOIF,Nickelback,2003-09-23,https://i.scdn.co/image/ab67616d0000b27315a5f571e2e14b2c182bd0a3,1,5,256453,https://p.scdn.co/mp3-preview/e547e5ca3aef78cc12ea53c27c46ffcff5df5a3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,NLA320320330,spotify:user:bradnumber1,2022-08-26T01:41:38Z,"alternative metal,canadian rock,post-grunge",0.51,0.818,5.0,-5.626,1.0,0.0415,0.000722,0.000659,0.151,0.395,156.05,4.0,,Roadrunner Records,"C © 2003 The All Blacks B.V., P ℗ 2003 The All Blacks B.V.",9218 +9219,spotify:track:0J7385nYIZSg34lfJnFjT9,Battle Scars (feat. Lupe Fiasco),"spotify:artist:5PjekOABtfU2Kwo0AHVmci, spotify:artist:01QTIT5P1pFP3QnnFSdsJf","Guy Sebastian, Lupe Fiasco",spotify:album:7Dwm8phGxhSpcevMteSMnc,Armageddon,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2012-10-15,https://i.scdn.co/image/ab67616d0000b2731a53a2c21445ade01915125a,1,3,250080,https://p.scdn.co/mp3-preview/603e0d66208ae84a08f628c8f229456ad028c0ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBM01200186,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,chicago rap,conscious hip hop,hip hop,political hip hop,pop rap,rap,southern hip hop",0.61,0.863,5.0,-2.632,0.0,0.206,0.186,0.0,0.097,0.508,83.993,4.0,,Sony Music Entertainment,P (P) 2012 Sony Music Entertainment Australia Pty Ltd.,9219 +9220,spotify:track:1dABxUeyaNyq7RbKbT3ndo,Dear Darlin',spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:2hOuWIWkhIxKXj6dUVI734,Right Place Right Time,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2012-11-23,https://i.scdn.co/image/ab67616d0000b27383a1b851143e6adaf56db39b,1,4,206373,https://p.scdn.co/mp3-preview/aa0a58e3904728eaa3ae0d545cd77bb8356e2bb2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1201982,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.514,0.828,11.0,-4.672,0.0,0.0454,0.00626,8.73e-06,0.119,0.34,124.008,4.0,,Epic,P (P) 2012 Sony Music Entertainment UK Limited,9220 +9221,spotify:track:6T0gaMfEfNWXZCGQKh1wlo,The First Time Ever I Saw Your Face,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:3iMgLMyrIlw1AIRlLfUF7u,Songs From The Last Century,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1999-12-06,https://i.scdn.co/image/ab67616d0000b2732f6b7d9f0b6e91bd1a3a785e,1,5,319440,https://p.scdn.co/mp3-preview/0f2fd632c05984c423eb2b122d2e03b1717c3ad5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GBDFN9900005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.334,0.0736,1.0,-19.293,1.0,0.0329,0.924,0.17,0.112,0.12,132.36,4.0,,Sony Music UK,P (P) 1999 Sony Music Entertainment UK Limited,9221 +9222,spotify:track:49fzPkBb3aOUWYRKaTWVhm,Hit the Road Jack,spotify:artist:1eYhYunlNJlDoQhtYBvPsi,Ray Charles,spotify:album:3XKYSvPAmrCVaFs4gzr1Ig,Georgia On My Mind,spotify:artist:1eYhYunlNJlDoQhtYBvPsi,Ray Charles,2012-02-23,https://i.scdn.co/image/ab67616d0000b273df3d459abce953d24caf1f91,1,2,118266,https://p.scdn.co/mp3-preview/b4e708c140a6044a2d22258d8118c51a4814e4e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,FR6V81229417,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic soul,jazz blues,piano blues,soul,soul blues,vocal jazz",0.613,0.618,8.0,-11.831,0.0,0.257,0.568,0.0,0.727,0.94,172.741,4.0,,DOM,"C DOM, P DOM",9222 +9223,spotify:track:2SiXAy7TuUkycRVbbWDEpo,You Shook Me All Night Long,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:6mUdeDZCsExyJLMdAfDuwh,Back In Black,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1980-07-25,https://i.scdn.co/image/ab67616d0000b2730b51f8d91f3a21e8426361ae,1,7,210173,https://p.scdn.co/mp3-preview/3b01294b6b0458fea6ed5a88ea1b1593eb495ead?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,AUAP08000047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.532,0.767,7.0,-5.509,1.0,0.0574,0.00287,0.000513,0.39,0.755,127.361,4.0,,Columbia,P (P) 1980 Leidseplein Presse B.V.,9223 +9224,spotify:track:42nSaPdT6g3ZIMHmKLlP2p,Let's Get Loud,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:3Gby5NNeNYkMgAnrtEA3lc,On The 6,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,1999-06-01,https://i.scdn.co/image/ab67616d0000b2735c34d7a87663652675cf3264,1,5,239400,https://p.scdn.co/mp3-preview/f0637c27efb3c26df04d8dc31d4230d7a445ad89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM19900597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.82,0.937,5.0,-4.81,0.0,0.0549,0.135,0.000122,0.35,0.906,130.992,4.0,,Work,"P (P) 1999 Epic Records, a division of Sony Music Entertainment",9224 +9225,spotify:track:23IWhAK0cYRwnBT5EE8i3u,Don't give up on us,spotify:artist:2eFkm34OMSYRUwP4RAtXaT,David Soul,spotify:album:3bK8cxPBLUFkeBeoqzoWtx,David Soul,spotify:artist:2eFkm34OMSYRUwP4RAtXaT,David Soul,1976-01-01,https://i.scdn.co/image/ab67616d0000b273ddb031db3867015be1b2dbb1,1,7,218946,https://p.scdn.co/mp3-preview/f8d9ff7669020da57723c8a28120010d191469c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,NLG620401604,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,soft rock",0.256,0.335,9.0,-13.588,1.0,0.0313,0.74,0.0166,0.0857,0.415,198.745,4.0,,David Soul,"C (C) 1976 David Soul, P (P) 1976 David Soul",9225 +9226,spotify:track:74UWXHeikO5C3ScEREk42E,Mockingbird,"spotify:artist:4FtSnMlCVxCswABUmdhwpm, spotify:artist:0vn7UBvSQECKJm2817Yf1P","Carly Simon, James Taylor",spotify:album:1n4U4mxtX246nRl6gvbWfA,Hotcakes,spotify:artist:4FtSnMlCVxCswABUmdhwpm,Carly Simon,1974,https://i.scdn.co/image/ab67616d0000b2730e83105ab1abd1da2cf48341,1,9,254240,https://p.scdn.co/mp3-preview/b6d70bcbf6ab2610e9d08365b5dc9def2c8d263c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USEE19900880,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock,classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.716,0.753,3.0,-12.407,1.0,0.0368,0.0532,0.000619,0.183,0.952,113.404,4.0,,Rhino/Elektra,"C © 1974 Elektra Entertainment, P ℗ 1974 Elektra Entertainment, manufactured and marketed by Rhino Entertainment Company",9226 +9227,spotify:track:3CAWvns1fmJrNMPk4prasj,Rev It Up,spotify:artist:1GkiKu2FJFSBrXSL8wKFzy,Jerry Harrison,spotify:album:1nkKDM0EfKvJNKHsMFSvSS,Casual Gods,spotify:artist:1GkiKu2FJFSBrXSL8wKFzy,Jerry Harrison,1987-12-15,https://i.scdn.co/image/ab67616d0000b2732e589ed1c39ba9af5d2366ee,1,1,251466,https://p.scdn.co/mp3-preview/b56f2f0a6f18b5bf9eab20058331821d7ce35a0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBUM70712954,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rock keyboard,0.723,0.722,9.0,-13.763,1.0,0.0428,0.0184,0.0106,0.0665,0.917,95.262,4.0,,UMC (Universal Music Catalogue),"C © 1988 Mercury Records Limited, P ℗ 1988 Mercury Records Limited",9227 +9228,spotify:track:1qCdYQdkWvm4cYXAuOlbyc,Locked out of Heaven,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:7KBjLhk3IM27k3ry4vBk3i,Unorthodox Jukebox,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2012-12-10,https://i.scdn.co/image/ab67616d0000b2734afbeec18f65c3707207b7c9,1,2,233478,https://p.scdn.co/mp3-preview/5a0318e6c43964786d22b9431af35490e96cff3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USAT21203287,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.726,0.698,5.0,-4.165,1.0,0.0431,0.049,0.0,0.309,0.867,143.994,4.0,,Atlantic Records,"C © 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2012 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",9228 +9229,spotify:track:7yHEDfrJNd0zWOfXwydNH0,Into You,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,spotify:album:4lVR2fg3DAUQpGVJ6DciHW,Dangerous Woman,spotify:artist:66CXWjxzNUsdJxJ2JdwvnR,Ariana Grande,2016-05-20,https://i.scdn.co/image/ab67616d0000b2737227f5854239a059af211d5b,1,4,244453,https://p.scdn.co/mp3-preview/12489dbf9e313aa5a42dcf6e1d145df9b04db8dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71601827,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.636,0.727,9.0,-5.852,1.0,0.106,0.0161,1.12e-06,0.151,0.358,107.988,4.0,,Universal Music Group,"C © 2016 Republic Records, a division of UMG Recordings, Inc., P ℗ 2016 Republic Records, a division of UMG Recordings, Inc.",9229 +9230,spotify:track:29oOkj7PUi1zJExNkaSALH,That Beep,spotify:artist:60eT7q88iLWKnuSXed1AGr,Architecture In Helsinki,spotify:album:6MzPmBHghBU85eH0XHNmT6,Moment Bends,spotify:artist:60eT7q88iLWKnuSXed1AGr,Architecture In Helsinki,2011-01-01,https://i.scdn.co/image/ab67616d0000b27360a153684ccacd989ccd2915,1,8,225574,https://p.scdn.co/mp3-preview/dd71c0da2672b079b572b228fe9d25f7b01f8281?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71100367,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian indie,indietronica",0.922,0.654,5.0,-5.688,1.0,0.0517,0.284,0.0929,0.111,0.771,116.042,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Architecture In Helsinki, under exclusive license to Modular Recordings, P ℗ 2011 Architecture In Helsinki, under exclusive license to Modular Recordings",9230 +9231,spotify:track:6UCb3me83cyCV19sjvucte,D'yer Mak'er - 1990 Remaster,spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,spotify:album:5phxHbK2GSr7hEu4orLywP,Houses of the Holy (1994 Remaster),spotify:artist:36QJpDe2go2KgaRleHCDTp,Led Zeppelin,1973-03-28,https://i.scdn.co/image/ab67616d0000b273441fd03f69579d36801631d9,1,6,261773,https://p.scdn.co/mp3-preview/700f486c6cf236b102120c8e55472748c1dc7b7c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT20614338,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.537,0.893,9.0,-10.234,0.0,0.0636,0.15,0.000286,0.0688,0.588,163.727,4.0,,Rhino Atlantic,"C © 1973 Swan Song Inc., P ℗ 1973 Atlantic Recording Corp., a Warner Music Group company",9231 +9232,spotify:track:2df5QsXucx4VLiHNGusXD5,Macarena - Bayside Boys Remix,spotify:artist:2JXn03fudjyRkQ1Ye9f5rk,Los Del Rio,spotify:album:1Q9ij11CdNvogM0IPG1KNc,Alegria Y Cosabuena,spotify:artist:2JXn03fudjyRkQ1Ye9f5rk,Los Del Rio,2001-03-19,https://i.scdn.co/image/ab67616d0000b273442314974e3d78b3e214cdb8,1,1,253106,https://p.scdn.co/mp3-preview/92baa78eb5d084e417e53c86eabbaade534f4552?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,ES5109600480,spotify:user:bradnumber1,2021-08-08T09:26:31Z,tropical,0.737,0.93,1.0,-6.083,1.0,0.0534,0.237,1.57e-06,0.0911,0.965,103.191,4.0,,Zafiro,"P (P) 2001 BMG Music Spain, S.A.",9232 +9233,spotify:track:5fpizYGbi5IQoEraj6FP0R,Intergalactic - Remastered 2009,spotify:artist:03r4iKL2g2442PT9n2UKsx,Beastie Boys,spotify:album:6eGYLONkDMja0MNtZWnRRB,Hello Nasty (Deluxe Edition/Remastered),spotify:artist:03r4iKL2g2442PT9n2UKsx,Beastie Boys,1998-07-14,https://i.scdn.co/image/ab67616d0000b273ab1d7b56d97842315dd0fdaa,1,7,231493,https://p.scdn.co/mp3-preview/9f5d58dfb5a8e21714599ef16856c725e117940c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USCA20903764,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,east coast hip hop,golden age hip hop,hip hop,old school hip hop,rap,rap rock,rock",0.734,0.864,2.0,-6.119,1.0,0.303,0.022,9.85e-06,0.246,0.47,105.932,4.0,,Capitol Records,"C © 2009 Capitol Records, LLC, Grand Royal and Beastie Boys, P ℗ 2009 Capitol Records, LLC, Grand Royal and Beastie Boys",9233 +9234,spotify:track:0DmAvNCAK08oCi7miSZUIY,Lasting Lover,"spotify:artist:1IueXOQyABrMOprrzwQJWN, spotify:artist:4IWBUUAFIplrNtaOHcJPRM","Sigala, James Arthur",spotify:album:262JcveAzA4ngibAS3Ocm8,Lasting Lover,"spotify:artist:1IueXOQyABrMOprrzwQJWN, spotify:artist:4IWBUUAFIplrNtaOHcJPRM","Sigala, James Arthur",2020-09-04,https://i.scdn.co/image/ab67616d0000b273c81e8266fc5973137c314afc,1,1,218358,https://p.scdn.co/mp3-preview/6b5d542f68745906928f47047be4d2cacd812f32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBCEN2000076,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop dance,uk dance,pop,talent show,uk pop",0.676,0.786,1.0,-4.529,1.0,0.0478,0.197,0.0,0.0943,0.483,125.983,4.0,,Ministry of Sound Recordings,P (P) 2020 Ministry of Sound Recordings Limited/B1 Recordings GmbH. a Sony Music Entertainment Company,9234 +9235,spotify:track:2Q6bndA2CeuoWUnErmWmmA,Black Betty - Edit,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,spotify:album:6XE4tugkEQxmfFI93Mt5xk,Tonight Alright,spotify:artist:6P7kkhED6EPrfoZuxz20Fo,Spiderbait,2004-03-29,https://i.scdn.co/image/ab67616d0000b2734c10ac1990b9b3aedfe7a524,1,3,205973,https://p.scdn.co/mp3-preview/a0dd803bcad33ac5bb239fb9e84dad3f96343d0d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00430014,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.562,0.865,7.0,-6.476,0.0,0.0922,2.06e-05,0.591,0.219,0.35,124.047,4.0,,Universal Music Group,"C © 2004 Universal Music Australia Pty Ltd., P ℗ 2004 Universal Music Australia Pty Ltd.",9235 +9236,spotify:track:26IHSipiiSMN7zmwY9CJZS,Ignition - Remix,spotify:artist:2mxe0TnaNL039ysAj51xPQ,R. Kelly,spotify:album:13WlQvCxVKxRu0CIJmFWa0,Pure... 2000s Party,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-08-29,https://i.scdn.co/image/ab67616d0000b27352c0bc0a1140dc54f12d9359,1,16,187613,https://p.scdn.co/mp3-preview/2ea676cca94c149a25e7d779c5a8d3bff2c82093?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USJI10300018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.776,0.487,1.0,-7.931,1.0,0.0503,0.0608,0.0,0.081,0.832,133.07,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment,9236 +9237,spotify:track:3xU0atJtPra2fsp20G5mIG,Naughty - Radio Edit,"spotify:artist:3gClSlUEpEoQd4IldcqBUz, spotify:artist:54Q2QQgna3BWcnX5f7I1rx","Elen Levon, Israel Cruz",spotify:album:6buVpObtJrPtJJ2qtfRS82,Naughty (Deluxe),spotify:artist:3gClSlUEpEoQd4IldcqBUz,Elen Levon,2011-01-01,https://i.scdn.co/image/ab67616d0000b273126ebc04bb9fc644cfce0a8a,1,1,201510,https://p.scdn.co/mp3-preview/5a7fa42195b318bc1e49bca6d63f9da69fe4ea38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,6,AUNV01100538,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.717,0.812,1.0,-3.329,0.0,0.0477,0.0843,0.0,0.345,0.815,127.934,4.0,,Ministry Of Sound,"C © 2011 Nufirm Music Pty Ltd, Distributed & marketed in Australia by Ministry of Sound / Universal Music Australia, P ℗ 2011 Nufirm Music Pty Ltd, Distributed & marketed in Australia by Ministry of Sound / Universal Music Australia",9237 +9238,spotify:track:1eN42Q7IWRzRBq8eW2Y2TE,El Condor Pasa (If I Could),spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,spotify:album:0JwHz5SSvpYWuuCNbtYZoV,Bridge Over Troubled Water,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,1970-01-26,https://i.scdn.co/image/ab67616d0000b273ba7fe7dd76cd4307e57dd75f,1,2,187040,https://p.scdn.co/mp3-preview/9a553f7e988bb2de954629c549e6fa1a0cb57c47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM16900182,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,melancholia,mellow gold,rock,soft rock",0.33,0.214,4.0,-17.699,0.0,0.0311,0.836,0.0701,0.178,0.275,147.795,4.0,,Columbia,"P (P) Originally released 1970. All rights reserved by Columbia Records, a division of Sony Music Entertainment",9238 +9239,spotify:track:4w2Yq2cklbssmUtUy5Vh6H,Better Man,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,spotify:album:11DmTQm7WPeSXih1FPuaXL,Sing When You're Winning,spotify:artist:2HcwFjNelS49kFbfvMxQYw,Robbie Williams,2000-01-01,https://i.scdn.co/image/ab67616d0000b273c5f3aaf3b54a777d96ecf604,1,2,202640,https://p.scdn.co/mp3-preview/fe9fbe11db5c25a1ad152e1c696a444ae1f407a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAYE0000725,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,europop",0.496,0.527,6.0,-7.234,1.0,0.0339,0.195,0.0,0.138,0.283,155.932,4.0,,Chrysalis UK,"C © 2000 Chrysalis Records Ltd, P ℗ 2000 Chrysalis Records Ltd",9239 +9240,spotify:track:3KdoeNlEN0BoAKWzaRLNZa,Solar Power,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,spotify:album:0pAF4Jr6MPQ2u0vqG2VOjd,Solar Power,spotify:artist:163tK9Wjr9P9DmM0AVK7lm,Lorde,2021-06-10,https://i.scdn.co/image/ab67616d0000b273d08ee7bfe4aaf52168247de7,1,1,192621,https://p.scdn.co/mp3-preview/a27e3f76f223f3b197e661bb0916ee49ac280f48?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NZUM72100178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,metropopolis,nz pop,pop",0.735,0.47,4.0,-9.405,1.0,0.1,0.266,0.000105,0.32,0.897,87.971,4.0,,Universal Music New Zealand Limited,"C © 2021 Universal Music New Zealand Limited, P ℗ 2021 Universal Music New Zealand Limited",9240 +9241,spotify:track:5Klo65Y9uouLjNVDV3pqh7,Go West - 2003 Remaster,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,spotify:album:5IVJbSDDWbGjKbBczyifFl,PopArt: The Hits,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,2003,https://i.scdn.co/image/ab67616d0000b2739318a205e2333284fd5ff089,1,1,304080,https://p.scdn.co/mp3-preview/0c581a2016e7f2bdf9cab714ef032a58e5f4e862?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBCEW0300002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,permanent wave,synthpop",0.535,0.951,7.0,-5.859,1.0,0.0373,0.0174,9.61e-06,0.345,0.444,120.72,4.0,,Parlophone UK,"C © 2003 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd, P ℗ 2003 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd",9241 +9242,spotify:track:312A8WfROSLvZbMDHBUPDp,Fit but You Know It,spotify:artist:4GvOygVQquMaPm8oAc0vXi,The Streets,spotify:album:365ETCJBUmEWroc4UGBS1u,A Grand Don't Come for Free,spotify:artist:4GvOygVQquMaPm8oAc0vXi,The Streets,2004,https://i.scdn.co/image/ab67616d0000b27374290c97025b6dd73aca4cd7,1,7,254266,https://p.scdn.co/mp3-preview/c96ff4d1881a8f7ceb5818efc37adf44ea50b240?cid=9950ac751e34487dbbe027c4fd7f8e99,True,59,GBFFS0400018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"birmingham hip hop,uk garage",0.68,0.844,6.0,-1.729,1.0,0.299,0.23,0.0,0.0305,0.895,172.302,4.0,,679 Recordings UK. Ltd.,"C © 2004 Pure Groove Ltd trading as Locked On, P ℗ 2004 Pure Groove Ltd trading as Locked On",9242 +9243,spotify:track:5DU2dNfm3jLHZcEUb7T7nZ,I Know There's Something Going On,spotify:artist:5uOVb4hLSQVbHbVVt27tV1,Frida,spotify:album:0YSTmhE1sIAXC5Ba1xAMJ9,Something's Going On (Remastered),spotify:artist:5uOVb4hLSQVbHbVVt27tV1,Frida,1982-09-06,https://i.scdn.co/image/ab67616d0000b27343f73a611e7af7936b39a888,1,6,326746,https://p.scdn.co/mp3-preview/871d3b98e777a28bf0691e997d238e3555decf49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEA018200060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.585,0.795,2.0,-8.269,0.0,0.0358,0.0412,0.291,0.0834,0.865,109.011,4.0,,Universal Music Group,"C © 2015 Polar Music International AB, P ℗ 2015 Polar Music International AB",9243 +9244,spotify:track:0LRVxEAjX4tMB0TLM6Xpox,When You Were Sweet Sixteen,"spotify:artist:1WHVWwMFnjB3oRcjr7nVPP, spotify:artist:5KChrtxJZ8JjNANOiBruDw","The Fureys, Davey Arthur",spotify:album:2PwbXyx3cI2v2WBadibgij,The Fureys & Davy Arthur Live,"spotify:artist:1WHVWwMFnjB3oRcjr7nVPP, spotify:artist:5KChrtxJZ8JjNANOiBruDw","The Fureys, Davey Arthur",2007-01-01,https://i.scdn.co/image/ab67616d0000b2731aa85a33bd7da02170ca90d4,1,1,326226,https://p.scdn.co/mp3-preview/a6095859f8bd55092b245a0e51dab971d0985d44?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,GBHFP0402492,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish folk,irish folk",0.438,0.399,7.0,-11.581,1.0,0.0285,0.458,6.11e-05,0.707,0.462,104.167,4.0,,Arran Records,C (C) 2007 IML Irish Music Licensing Ltd.,9244 +9245,spotify:track:3vIVCdRx0jaxegLrtuGYvH,Dream Catch Me,spotify:artist:0pf1lcBxh6HiiHQAIzhTI5,Newton Faulkner,spotify:album:3sa5wY7P025oIRRDvolUY5,Hand Built By Robots,spotify:artist:0pf1lcBxh6HiiHQAIzhTI5,Newton Faulkner,2007-07-30,https://i.scdn.co/image/ab67616d0000b2737c9049adf84a6e08f1bdc309,1,5,236253,https://p.scdn.co/mp3-preview/b83e96079ea656f4311e6f9df3e08333bb46adbb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBHKB0700023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,folk-pop,0.628,0.722,2.0,-5.693,1.0,0.0277,0.197,0.0,0.108,0.58,118.004,4.0,,Ugly Truth,P (P) 2007 Peer-Southern Productions Limited under exclusive license to Blue Sky Music Limited,9245 +9246,spotify:track:7IuWpucAHHj72nRuJMjWDM,Face The Face,spotify:artist:24Wa5wIZIo1sPkzVGP0B5p,Pete Townshend,spotify:album:2AfWiqdDSLz8GBOvG628wv,White City: A Novel,spotify:artist:24Wa5wIZIo1sPkzVGP0B5p,Pete Townshend,1985-11-30,https://i.scdn.co/image/ab67616d0000b2732990352bebe048e8c2b27223,1,3,354320,https://p.scdn.co/mp3-preview/57f37760a764ab06a931cdcdfed3b4b7eb963bb2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71500500,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,blues rock,classic rock,country rock,folk rock,mellow gold,singer-songwriter",0.524,0.899,0.0,-11.769,0.0,0.0982,0.0418,0.0935,0.0476,0.406,204.649,4.0,,Universal Music Group,"C © 1985 Eel-Pie Recording Productions Ltd., under exclusive licence to UMC, a division of Universal Music Operations Ltd., P ℗ 1985 Eel-Pie Recording Productions Ltd., under exclusive licence to UMC, a division of Universal Music Operations Ltd.",9246 +9247,spotify:track:1N4SvoVXzF4NAHZMiob3jA,Welcome To My World,spotify:artist:6lHL3ubAMgSasKjNqKb8HF,Mýa,spotify:album:5mg3ouVDu6pgPq2ajdnFCO,Welcome To My World,spotify:artist:6lHL3ubAMgSasKjNqKb8HF,Mýa,2015-10-10,https://i.scdn.co/image/ab67616d0000b2734f5f337db40d90ef19ae9c40,1,1,254783,https://p.scdn.co/mp3-preview/d5d284b1e71b9bb8ac43920658a114ff32aa823a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USA2P1530440,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,hip pop,r&b,urban contemporary",0.374,0.772,3.0,-5.702,0.0,0.271,0.104,0.0,0.111,0.637,159.149,4.0,,MYA PLANET 9,"C (c) 2015 PLANET 9, P (p) 2015 PLANET 9",9247 +9248,spotify:track:6p2m2olMmsOZAp8rQixHtV,Any Dream Will Do,spotify:artist:7Cm4VBm1trDn5A3CWbzDVl,Max Bygraves,spotify:album:1lxNNcuisJnvFVzlEGXZ0H,Timeless Voices: Max Bygraves,spotify:artist:7Cm4VBm1trDn5A3CWbzDVl,Max Bygraves,2008-11-25,https://i.scdn.co/image/ab67616d0000b273f51f0c7d94042ba5d7ed6420,1,30,175986,https://p.scdn.co/mp3-preview/5eab826c94b7cbd81111c9f312512d97b6565365?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUDD30800446,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british comedy,0.38,0.496,10.0,-10.103,1.0,0.0363,0.642,0.05,0.193,0.431,117.031,4.0,,Timeless Music Company,"C 2008 Timeless Music Company, P 2008 Timeless Music Company",9248 +9249,spotify:track:3NFSr9o5KySSdz48u9refM,Better Best Forgotten,spotify:artist:17UkABEasVRlCcIFZ3wHb7,Steps,spotify:album:1D3SbBAbuJxC7f0QzVyAdA,Gold: Greatest Hits,spotify:artist:17UkABEasVRlCcIFZ3wHb7,Steps,2001-10-15,https://i.scdn.co/image/ab67616d0000b273434478eb7dd9dbeb600fa5c7,1,4,223133,https://p.scdn.co/mp3-preview/c05d37456da9d9fde249272bf0a37ea0e4999d92?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBAHK9800079,spotify:user:bradnumber1,2022-01-13T01:19:09Z,"diva house,europop,talent show",0.721,0.983,9.0,-6.461,1.0,0.029,0.171,4.37e-05,0.263,0.776,129.017,4.0,,Sony Music CG,P This compilation (P) 2020 Sony Music Entertainment UK Limited,9249 +9250,spotify:track:4pUCKHjJ4Ijewc37rRrvHn,Kill This Love,spotify:artist:41MozSoPIsD1dJM0CLPjZF,BLACKPINK,spotify:album:4xVAKfdoqtrlwl9m7REmdL,KILL THIS LOVE,spotify:artist:41MozSoPIsD1dJM0CLPjZF,BLACKPINK,2019-04-04,https://i.scdn.co/image/ab67616d0000b2737429708d490de20bb3c50bf9,1,1,189052,https://p.scdn.co/mp3-preview/a5e0f380062da15b306a854f4f8ea65b048e8b4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,KRA401900005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"k-pop,k-pop girl group,pop",0.738,0.861,2.0,-4.141,1.0,0.237,0.32,0.00175,0.325,0.58,131.974,4.0,,"YG Entertainment, distributed through Interscope Records","C © 2019 YG Entertainment, distributed through Interscope Records, P ℗ 2019 YG Entertainment, distributed through Interscope Records",9250 +9251,spotify:track:70JrLEkI7q8R0xkWI0YU96,Shake Ya Tailfeather - Radio,"spotify:artist:07W0YfsvHM7Mw7Bq48Mb0A, spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:59wfkuBoNyhDMQGCljbUbA","Murphy Lee, Nelly, Diddy",spotify:album:00dyKMXDH41ceeiMP21ACu,Murphy's Law,spotify:artist:07W0YfsvHM7Mw7Bq48Mb0A,Murphy Lee,2003-01-01,https://i.scdn.co/image/ab67616d0000b27372c8911de59ed309485b4205,1,18,295173,https://p.scdn.co/mp3-preview/a2d4760398217c19b05f8ceb02e8a56a8a82b1f2?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10300542,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dirty south rap,st louis rap,dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary,dance pop,east coast hip hop,hip hop,hip pop,pop rap,rap",0.715,0.733,1.0,-7.068,1.0,0.262,0.134,0.0,0.157,0.897,87.665,4.0,,Motown,"C © 2003 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2003 Universal Motown Records, a division of UMG Recordings, Inc.",9251 +9252,spotify:track:3unsLiH5FXmaDWtT5Imolu,Fallin',spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,spotify:album:1SLgJeTdzDAJLcDyQqoWnu,Songs In A Minor (Expanded Edition),spotify:artist:3DiDSECUqqY1AuBP8qtaIa,Alicia Keys,2001-06-26,https://i.scdn.co/image/ab67616d0000b27318b31906d928fe22eec5e673,1,4,210200,https://p.scdn.co/mp3-preview/79526addc56f4ca7b29c73df65d063b7a026a46b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USJAY0100057,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo soul,pop,r&b",0.652,0.609,11.0,-7.519,0.0,0.037,0.263,0.00101,0.233,0.482,95.986,3.0,,J Records/Legacy,P (P) 2001 Sony Music Entertainment,9252 +9253,spotify:track:4nthV2eZAXnt4yiJMocLkG,Dilemma,"spotify:artist:2gBjLmx6zQnFGQJCAQpRgw, spotify:artist:3AuMNF8rQAKOzjYppFNAoB","Nelly, Kelly Rowland",spotify:album:502wXEj9iWWdqaAi0CO75M,Nellyville (Explicit Version),spotify:artist:2gBjLmx6zQnFGQJCAQpRgw,Nelly,2002-06-25,https://i.scdn.co/image/ab67616d0000b27399ad1a6dd3c8b95ca4778d34,1,10,289173,https://p.scdn.co/mp3-preview/166e4018942f444036157420ef0ba2cb804cc6e5?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUR10200370,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary,atl hip hop,dance pop,hip pop,r&b,urban contemporary",0.73,0.552,2.0,-8.177,0.0,0.146,0.18,6.14e-05,0.224,0.613,168.091,4.0,,Universal Music Group,"C © 2002 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2002 Universal Motown Records, a division of UMG Recordings, Inc.",9253 +9254,spotify:track:2374M0fQpWi3dLnB54qaLX,Africa,spotify:artist:0PFtn5NtBbbUNbU9EAmIWF,TOTO,spotify:album:62U7xIHcID94o20Of5ea4D,Toto IV,spotify:artist:0PFtn5NtBbbUNbU9EAmIWF,TOTO,1982-04-08,https://i.scdn.co/image/ab67616d0000b2734a052b99c042dc15f933145b,1,10,295893,https://p.scdn.co/mp3-preview/86d951a680c33cca769822e0ef854c1b20301b32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,85,USSM19801941,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,rock,soft rock,yacht rock",0.671,0.373,9.0,-18.064,1.0,0.0323,0.257,8.01e-05,0.0481,0.732,92.718,4.0,,Columbia,P (P) 1982 Sony Music Entertainment Inc.,9254 +9255,spotify:track:0RmXtDH1cBMGImRrmn5xL6,Turn Me On,spotify:artist:1GaBsp1ICIp1e6udgE7fba,Kevin Lyttle,spotify:album:4SxJ71noA4wcd03JfJVkKT,Turn Me On (Online Music),spotify:artist:1GaBsp1ICIp1e6udgE7fba,Kevin Lyttle,2004-03-30,https://i.scdn.co/image/ab67616d0000b273614b5a52e3a2246fbafbb900,1,1,192106,https://p.scdn.co/mp3-preview/db15399593eb44e6c0289883c8158b58653f4b9f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USAT20400415,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"soca,vincy soca",0.677,0.682,9.0,-6.879,1.0,0.0361,0.0405,0.0,0.0351,0.875,106.279,4.0,,Atlantic Records,"C © 2004 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2004 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",9255 +9256,spotify:track:1zusIxNqJu8i4g6P6hJ2Qa,Mercy,spotify:artist:37NqXwtb6nIEqRt4EJSoIO,Duffy,spotify:album:6Yw7f0kqQ1gbt2OHa7fi1g,Rockferry,spotify:artist:37NqXwtb6nIEqRt4EJSoIO,Duffy,2008,https://i.scdn.co/image/ab67616d0000b273618eb90c1c10d299e51f3822,1,7,219920,https://p.scdn.co/mp3-preview/3d0132c3e2ac4a1b84ece729fe9851077bfe8fe8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,GBUM70711275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.793,0.859,0.0,-3.774,1.0,0.0332,0.266,0.000356,0.133,0.964,129.911,4.0,,Polydor Records,"C © 2007 Aimee Duffy, P ℗ 2007 Aimee Duffy",9256 +9257,spotify:track:24LS4lQShWyixJ0ZrJXfJ5,Sweet Nothing (feat. Florence Welch),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:0IROOdQ2fQUcoaEPqt1Isg","Calvin Harris, Florence Welch",spotify:album:7w19PFbxAjwZ7UVNp9z0uT,18 Months,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2012-10-29,https://i.scdn.co/image/ab67616d0000b273dcef905cb144d4867119850b,1,10,212560,https://p.scdn.co/mp3-preview/daf8f5e93daa712ee93c2c5b2778fcaa39194dc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBARL1201392,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,uk pop",0.573,0.929,8.0,-3.942,0.0,0.109,0.197,0.000112,0.0567,0.582,127.934,4.0,,Columbia,P (P) 2012 Sony Music Entertainment UK Limited,9257 +9258,spotify:track:0Arrnl9EB7LtzPISpNBQQf,Cara Mia,spotify:artist:0DAqhikcMKLo2lPADVz2fs,Jay & The Americans,spotify:album:0LMJo3p9QqRjaap3qvlTY6,Come A Little Bit Closer: The Best Of Jay & The Americans,spotify:artist:0DAqhikcMKLo2lPADVz2fs,Jay & The Americans,1964,https://i.scdn.co/image/ab67616d0000b2733fb91f6d6c412ef519dd3dee,1,12,153160,https://p.scdn.co/mp3-preview/94731e070d1afee831f4c882374155a971346517?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USEM38800239,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,doo-wop,merseybeat,rock-and-roll",0.367,0.707,0.0,-9.392,1.0,0.046,0.29,3.17e-05,0.505,0.525,127.7,4.0,,Capitol Records,"C © 2005 Capitol Records, LLC, P This Compilation ℗ 2005 Capitol Records, LLC",9258 +9259,spotify:track:4vVb2D6RYL669h7tLYOKwx,...Ready For It?,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:4fW1sFeE43nuZlAw2xtmC3,reputation,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2017-11-10,https://i.scdn.co/image/ab67616d0000b2732bc33ce6acd39112e88b4c0e,1,1,208186,https://p.scdn.co/mp3-preview/f133e47ce7d5f768be3387758d71bc1a8a5726f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1750003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.613,0.764,2.0,-6.509,1.0,0.136,0.0527,0.0,0.197,0.417,160.015,4.0,,"Big Machine Records, LLC","C © 2017 Big Machine Label Group, LLC, P ℗ 2017 Big Machine Label Group, LLC",9259 +9260,spotify:track:4a8ZMNLB75047bY2I7oABt,Living Next Door to Alice,spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,spotify:album:4owYZafXDrppX9A4COxBAe,The Original Smokie Gold,spotify:artist:5rIqOJspxDq89aBBCUda1X,Smokie,1975,https://i.scdn.co/image/ab67616d0000b273f13168d17bdec8443d6a4465,2,1,207693,https://p.scdn.co/mp3-preview/01d20d34688c40ad1f9c9e647e53e423d390aea4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,DEA817600021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.591,0.396,9.0,-14.753,1.0,0.0371,0.107,0.0,0.248,0.781,126.091,4.0,,Arista,P (P) 1975/1976/1977/1978 Chinnichap recordds Ltd Under Exclusive license to BMG Ariola München GmbH,9260 +9261,spotify:track:4HWf1Ev76m09o29JVYHADr,Lullaby - Original Radio Edit,spotify:artist:4TROLx8HvrnfGGNo2ngL2N,Shawn Mullins,spotify:album:1rUTIu03pHd8pYjvOxxKsh,Just Great Songs 2016,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-06-17,https://i.scdn.co/image/ab67616d0000b273985db973139f6505752dd790,2,14,271786,https://p.scdn.co/mp3-preview/2c417f7fedb668c0a3b22c12a41810819cb5d8ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19803553,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.594,0.874,7.0,-7.479,1.0,0.0535,0.0113,0.000117,0.235,0.653,79.963,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd,9261 +9262,spotify:track:2wNGoon7FlKnVEyYS1ZRBQ,Sweet Dreams,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:3ROfBX6lJLnCmaw1NrP5K9,I AM...SASHA FIERCE - Platinum Edition,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2008,https://i.scdn.co/image/ab67616d0000b273b4c5982e1b92f97a126fc18c,1,7,207480,https://p.scdn.co/mp3-preview/d31544cbd416e405f02f8152fa29ba80bc68bd04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM10804756,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.693,0.822,1.0,-6.01,1.0,0.102,0.0995,1.73e-05,0.061,0.765,121.969,4.0,,Music World Music/Columbia,"P (P) 2008, 2009 Sony Music Entertainment",9262 +9263,spotify:track:3P8cVgYsYsfjSJIRymixPm,The Memory Remains,"spotify:artist:2ye2Wgw4gimLv2eAKyk1NB, spotify:artist:7mlge4peaoNgzTsY6M32RB","Metallica, Marianne Faithfull",spotify:album:6mEOyKfRASrT8SpT3C6bUT,Reload,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1997-01-01,https://i.scdn.co/image/ab67616d0000b273d48acd856275dbe05a45dd95,1,2,279173,https://p.scdn.co/mp3-preview/4ff2a092b777be5a336b0e32347dd2c3e6dc780a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAMC9700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal,british invasion,folk,singer-songwriter",0.435,0.901,10.0,-3.694,0.0,0.0429,0.000303,0.0072,0.185,0.547,143.646,4.0,,Universal Music Group,"C © 1997 Metallica, P ℗ 1997 Metallica",9263 +9264,spotify:track:4gIKec1woB9bIWIG8K7SZn,I Won't Let You Go,spotify:artist:3LpLGlgRS1IKPPwElnpW35,James Morrison,spotify:album:31fCL6SjVtRYhh6NtC37Hc,The Awakening,spotify:artist:3LpLGlgRS1IKPPwElnpW35,James Morrison,2011-01-01,https://i.scdn.co/image/ab67616d0000b27303f57fd5759012239e8c57f7,1,3,229303,https://p.scdn.co/mp3-preview/fa841c9305b87e642e720a09df4c0ecdd17d4c8e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71104692,spotify:user:bradnumber1,2021-08-08T09:26:31Z,neo mellow,0.533,0.602,0.0,-6.315,1.0,0.0298,0.238,0.0,0.149,0.161,106.028,4.0,,Universal Music Group,"C © 2011 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Universal Island Records, a division of Universal Music Operations Limited",9264 +9265,spotify:track:1fiDe8sb2DMEU4JGPOIEB1,Don't Dream It's Over,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:3XLP6DCTfz8eQkORPdfvvy,The Very Very Best Of Crowded House (Deluxe Edition),spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,2010-10-15,https://i.scdn.co/image/ab67616d0000b273ff3f6372e07e556e636cfea1,2,13,238362,https://p.scdn.co/mp3-preview/d7e5ab772fa54925ec0cf46345f42283e2909a8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USCA28600048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.443,0.732,8.0,-6.748,1.0,0.0408,0.0246,2.2e-05,0.0675,0.49,80.769,4.0,,Capitol Records,"C © 2010 Capitol Records, LLC, P This Compilation ℗ 2010 Capitol Records, LLC",9265 +9266,spotify:track:0R5BgIeTvctow1ca4F1kbe,Dr. Feelgood,spotify:artist:0cc6vw3VN8YlIcvr1v7tBL,Mötley Crüe,spotify:album:5ZcguNVlH10M9y2yJYcAdH,The Greatest Hits,spotify:artist:0cc6vw3VN8YlIcvr1v7tBL,Mötley Crüe,2009,https://i.scdn.co/image/ab67616d0000b273bf9dbeae8487ed5c150c5c60,1,9,290186,https://p.scdn.co/mp3-preview/6246963a3ec7752416e054fb820b6727dde7a043?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USBY29900212,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,alternative metal,glam metal,hard rock,metal,rock,sleaze rock",0.53,0.952,2.0,-5.105,1.0,0.0577,0.000837,0.0119,0.262,0.433,110.98,4.0,,Mötley Records,"C 2009 Masters 2000, Inc., P 2009 Masters 2000, Inc.",9266 +9267,spotify:track:2hKdd3qO7cWr2Jo0Bcs0MA,Drops of Jupiter (Tell Me),spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,spotify:album:6j6Zgm7vzAZegr48UppFVT,Drops Of Jupiter,spotify:artist:3FUY2gzHeIiaesXtOAdB7A,Train,2001-03-27,https://i.scdn.co/image/ab67616d0000b273a65df73c4011b6a9357c89f0,1,3,259933,https://p.scdn.co/mp3-preview/77dba6a6b863572958909814c9fee6d29f310a45?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USSM10019751,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo mellow,pop,pop rock",0.481,0.638,0.0,-5.862,1.0,0.0276,0.153,0.0,0.154,0.497,79.064,4.0,,Columbia/Legacy,"P (P) 2000, 2001 Columbia Records, a division of Sony Music Entertainment",9267 +9268,spotify:track:6JY1IdkZGeIcPegKxjSKeb,Since U Been Gone,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:20jYcJane0oI7VoMNoEOJU,Breakaway,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2004,https://i.scdn.co/image/ab67616d0000b273158c72ad0003cb37ca0c9eff,1,2,188960,https://p.scdn.co/mp3-preview/3010d17f854dad67cb0133a5687d871366d67882?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,GBCTA0400231,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.662,0.739,9.0,-5.354,0.0,0.0322,0.00206,0.0603,0.113,0.382,130.999,4.0,,RCA Records Label,P (P) 2004 19 Recordings Limited,9268 +9269,spotify:track:24Pm1e0npSApkFfHVHie5f,You,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,spotify:album:4tAS4B4lLHItu5E8QxcDCU,Yours,spotify:artist:2C0Cu6wbLYQyXl8MDwH2JE,Nathaniel,2015-10-23,https://i.scdn.co/image/ab67616d0000b273f00aeb88c92aa950bb62d929,1,5,201093,https://p.scdn.co/mp3-preview/d16cea8579a61a92a301d89c24c3e693927770e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,AUBM01300377,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.609,0.82,10.0,-4.469,0.0,0.0622,0.134,0.0,0.135,0.348,102.007,4.0,,DNA Songs/Sony Music Entertainment,P (P) 2015 DNA Songs/Sony Music Entertainment Australia Pty Ltd.,9269 +9270,spotify:track:2g2a5kDeZexbUTD8abcvm6,Lifestyles of the Rich & Famous,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:5CTygC3aONv7l0klY4k3hc,The Young and The Hopeless,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2002-10-04,https://i.scdn.co/image/ab67616d0000b273a9bae94ddb20a71f573931c0,1,3,190173,https://p.scdn.co/mp3-preview/7ff079e72d91222fb89f4972a792f47bb85023a1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USSM10210275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.62,0.93,1.0,-3.685,1.0,0.0374,0.00043,0.0,0.0686,0.609,106.22,4.0,,Epic/Daylight,"P (P) 2002 Epic Records, a division of Sony Music Entertainment",9270 +9271,spotify:track:77tNypNV8GYxwoeIGNgRRG,I Love My Life,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,spotify:album:4kc6vrABh87kQ4onFSDPLq,Live By The Words,spotify:artist:07Q9n9pbwR6jQ8xH4SA46b,Justice Crew,2012,https://i.scdn.co/image/ab67616d0000b2732ea0791fdc5445eb5a9cd4be,1,7,216053,https://p.scdn.co/mp3-preview/09650eb6a476468ccca2357d20fba95750feedc9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,AUBM01400607,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.811,0.709,9.0,-4.504,1.0,0.0455,0.0849,1.86e-06,0.221,0.859,128.02,4.0,,Sony Music Entertainment,P All tracks (P) 2014 Sony Music Entertainment Australia Pty Ltd. except tracks 6 & 8 (P) 2012 & track 10 (P) 2013 Sony Music Entertainment Australia Pty Ltd.,9271 +9272,spotify:track:3mYh6egfMyl0Dek8r9ciK6,You Should Hear How She Talks About You,spotify:artist:78udmCDNaDu5jqfVnBqwia,Melissa Manchester,spotify:album:6V5kvtOghmiq68PtJXbg6W,Hey Ricky,spotify:artist:78udmCDNaDu5jqfVnBqwia,Melissa Manchester,1982,https://i.scdn.co/image/ab67616d0000b27374028b2d9ef1d505bd8a4427,1,1,256386,https://p.scdn.co/mp3-preview/90d8a7273bd97e888e22d1e961f29eb3a6fbad82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USAR18200125,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"soft rock,yacht rock",0.753,0.834,4.0,-6.516,1.0,0.115,0.212,2.93e-05,0.259,0.852,131.909,4.0,,SMSP,P (P) 1982 Arista Records LLC,9272 +9273,spotify:track:7J41dYQolQJEtj3UmKLu5r,U Got It Bad,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,spotify:album:6k16WXh4rKyusIoN00rmpi,8701,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2001-08-07,https://i.scdn.co/image/ab67616d0000b2737750146aac26aade0a867913,1,5,247840,https://p.scdn.co/mp3-preview/34c869c0ab95ca14ed61d619eac6fd3775e2674a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USAR10100232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.816,0.5,1.0,-4.551,1.0,0.03,0.0227,1.53e-06,0.0733,0.649,124.037,4.0,,Arista,P (P) 2001 Arista Records,9273 +9274,spotify:track:2h1L35fJnEzxe2lAxmrvkC,Fight Song,spotify:artist:3QLIkT4rD2FMusaqmkepbq,Rachel Platten,spotify:album:3sUYeW9LdqdvKQ44aDRhrl,Fight Song,spotify:artist:3QLIkT4rD2FMusaqmkepbq,Rachel Platten,2015-02-20,https://i.scdn.co/image/ab67616d0000b273a07e281dfcaeaab4337567ee,1,1,202346,https://p.scdn.co/mp3-preview/6f663802836a949b3485a71e13ff92d7a6fba6b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM11500753,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,talent show,viral pop",0.571,0.697,7.0,-5.467,1.0,0.081,0.0523,0.0,0.299,0.358,175.962,4.0,,Columbia,"P (P) 2015 Columbia Records, a Division of Sony Music Entertainment",9274 +9275,spotify:track:11bD1JtSjlIgKgZG2134DZ,Chasing Cars,spotify:artist:3rIZMv9rysU7JkLzEaC5Jp,Snow Patrol,spotify:album:6fb7z9rBdrjzpBTg1R1Bwp,Eyes Open,spotify:artist:3rIZMv9rysU7JkLzEaC5Jp,Snow Patrol,2006-01-01,https://i.scdn.co/image/ab67616d0000b27315a6fad25bd729dc98799b90,1,3,267933,https://p.scdn.co/mp3-preview/fac686f4d67453548876570e48d99ad32b181294?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,GBUM70600345,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,modern rock,neo mellow,permanent wave,pop rock",0.563,0.592,9.0,-4.571,1.0,0.0276,0.209,5.08e-05,0.132,0.136,104.016,4.0,,Polydor Records,"C © 2006 Polydor Ltd. (UK), P ℗ 2006 Polydor Ltd. (UK)",9275 +9276,spotify:track:5bbgiWfaHG6Vruyg3OWQuU,Overkill - Acoustic Version,spotify:artist:5mxB08ktCukEhGMg2YZeEv,Colin Hay,spotify:album:3p47fPoeRlTsJwBqMcGonw,Man @ Work,spotify:artist:5mxB08ktCukEhGMg2YZeEv,Colin Hay,2003-07-22,https://i.scdn.co/image/ab67616d0000b273401607d8dec0a6095d944249,1,3,227400,https://p.scdn.co/mp3-preview/4ffd21625ae3a7afa45454d9e15d0aa50340054d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USCO90336503,spotify:user:bradnumber1,2023-06-30T13:02:33Z,solo wave,0.725,0.259,2.0,-10.959,1.0,0.0382,0.843,2.63e-06,0.112,0.2,133.849,4.0,,Compass Records,"C 2003 Compass Records, P 2003 Compass Records",9276 +9277,spotify:track:2zjjHEviImHmkrUVJ7NxXh,The Best Thing,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,spotify:album:1z5znxO4MfWZztLY8jwGPv,Dancing In The Storm,spotify:artist:2KisNXWizbrJVoif4Lt2u5,Boom Crash Opera,2009-05-01,https://i.scdn.co/image/ab67616d0000b273c00b59bcfc799b1d3a699ebf,1,1,250426,https://p.scdn.co/mp3-preview/7af0b5ad60e69583ba90fc3ab5902f765b62c91d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00957310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.475,0.806,4.0,-6.693,1.0,0.0354,0.393,0.000749,0.269,0.331,159.967,4.0,,Bloodlines,"C 2009 Bloodlines, P 2009 Bloodlines",9277 +9278,spotify:track:4KkzkMg3wMqezfHYNPlVy8,You All Dat,spotify:artist:67FFKYikvTlvsPNk4NPOYJ,Baha Men,spotify:album:44UH34qoCNNfEqo0VnOkGd,Who Let The Dogs Out,spotify:artist:67FFKYikvTlvsPNk4NPOYJ,Baha Men,2000,https://i.scdn.co/image/ab67616d0000b27336c901204dd54a716c64932b,1,2,208533,https://p.scdn.co/mp3-preview/36fc973f2761056fe63b3c22782f8e82e4c45347?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USSC90000002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,bahamian pop,0.711,0.962,7.0,-4.007,1.0,0.121,0.245,0.0,0.125,0.641,123.831,4.0,,Capitol Records,"C © 2006 Capitol Records Inc., P ℗ 2006 Capitol Records Inc.",9278 +9279,spotify:track:6pr4l76PYIgtp6xsvyfSqN,Who's Gonna Ride Your Wild Horses,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:1U69hFsxaQxP6fquZmOmNH,Achtung Baby,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1991-11-18,https://i.scdn.co/image/ab67616d0000b273b1bdbab41920011be3f223a7,1,5,316426,https://p.scdn.co/mp3-preview/972b03adca36df950adbffaa53a0b537c755c928?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71106491,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.436,0.682,7.0,-10.598,1.0,0.0384,0.041,0.000155,0.0712,0.416,132.663,4.0,,Universal Music Group,"C © 2011 Universal-Island Records Limited under exclusive licence to Mercury Records Limited in the UK, Interscope Records in the US and Universal Music Group for the rest of the world, P ℗ 2011 Universal-Island Records Limited under exclusive licence to Mercury Records Limited in the UK, Interscope Records in the US and Universal Music Group for the rest of the world",9279 +9280,spotify:track:49MHCPzvMLXhRjDantBMVH,Just the Way You Are,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:1Mhn9VosyjtWn4dMPFlna6,The Stranger (Legacy Edition),spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1977,https://i.scdn.co/image/ab67616d0000b2736ce61113662ecf693b605ee5,1,3,290573,https://p.scdn.co/mp3-preview/3dba540dafbc6039399332c8b8389b4bd0b99070?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USSM17700371,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.589,0.453,7.0,-8.912,1.0,0.0397,0.703,2.54e-05,0.134,0.513,139.148,4.0,,Columbia/Legacy,"P (P) 1977 Columbia Records, a division of Sony Music Entertainment/(P) 2008 Columbia Records, a division of Sony Music Entertainment",9280 +9281,spotify:track:2ilhzCNSsc4XhnyypGUEQX,The Boys Light Up - Remastered,spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,spotify:album:0PO4cvpGuKcP1BwQyPhHpf,The Greatest Hits (Remastered),spotify:artist:41fDGRDlzczk5Yo2wDo0H4,Australian Crawl,2014-01-01,https://i.scdn.co/image/ab67616d0000b273c037d33ffd7af564bb2f090b,1,2,279819,https://p.scdn.co/mp3-preview/af8658a6a4e110baefdc9d16524360f1ebcb920f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71301814,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.616,0.949,11.0,-5.47,0.0,0.0369,0.0852,5.75e-05,0.519,0.7,97.859,4.0,,Universal,"C © 2014 Universal Music Australia Pty Ltd., P ℗ 2014 Universal Music Australia Pty Ltd., Except Tracks 16-19 (P) 2014 Simon Binks, Fermata Nominees Pty Ltd, Staccato Nominees Pty Ltd, J M Reyne Family Trust and Paul Williams.",9281 +9282,spotify:track:7rl1z4j7MurMDnn9rHh4M2,Marvin Gaye (feat. Meghan Trainor),"spotify:artist:6VuMaDnrHyPL1p4EHjYLi7, spotify:artist:6JL8zeS1NmiOftqZTRgdTz","Charlie Puth, Meghan Trainor",spotify:album:3kndSWeE2IYOrZEToZrHEV,Nine Track Mind,spotify:artist:6VuMaDnrHyPL1p4EHjYLi7,Charlie Puth,2016-01-29,https://i.scdn.co/image/ab67616d0000b2734fe297c018e495a97662e5ac,1,3,190453,https://p.scdn.co/mp3-preview/7be01ece3607b0b22e9221c4aa09a78a0070e623?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USAT21500254,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,viral pop,hip pop,pop",0.795,0.616,1.0,-5.281,0.0,0.06,0.417,0.0,0.349,0.815,110.015,4.0,,Artist Partner,"C © 2016 Artist Partners for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company., P ℗ 2016 Artist Partners for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company.",9282 +9283,spotify:track:4ByEFOBuLXpCqvO1kw8Wdm,(I Just) Died In Your Arms,spotify:artist:3cniTumSiUysiPWXapGx1i,Cutting Crew,spotify:album:3wCe8HjHk6QNGcf5D3jgW1,Broadcast,spotify:artist:3cniTumSiUysiPWXapGx1i,Cutting Crew,1986-01-01,https://i.scdn.co/image/ab67616d0000b273fb2faa3ed46d1d0124ca325e,1,6,280400,https://p.scdn.co/mp3-preview/3b38a8a511f4f6717fbf046bdad469a5a6e4ae55?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,GBAAA8600046,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,new romantic,new wave,new wave pop,soft rock",0.625,0.726,11.0,-11.402,0.0,0.0444,0.0158,0.000169,0.0625,0.507,124.945,4.0,,Ten Records,"C © 1986 Virgin Records Limited, P ℗ 1986 Virgin Records Limited",9283 +9284,spotify:track:7JuWjJYcxy1i43dM3KWWJ3,Rhythm Of Life,"spotify:artist:3MdG05syQeRYPPcClLaUGl, spotify:artist:3RwQ26hR2tJtA8F9p2n7jG","Diana Ross, The Temptations",spotify:album:5gX0Oedkr1IgRO8OXhUR5k,Anthology,spotify:artist:0rXI0q8Cahq6numvPlloaq,Diana Ross & The Supremes,2002-03-21,https://i.scdn.co/image/ab67616d0000b27315ce28386972806e354b483f,2,23,253160,https://p.scdn.co/mp3-preview/1dfdcbce81f2b92049118a7c829dbefc7c93dd82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,USMO10111343,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,disco,motown,quiet storm,soft rock,soul,classic soul,disco,memphis soul,motown,soul",0.468,0.793,2.0,-7.069,0.0,0.0626,0.434,0.0,0.649,0.807,165.877,4.0,,UNI/MOTOWN,"C © 2002 UMG Recordings, Inc., P This Compilation ℗ 2002 UMG Recordings, Inc.",9284 +9285,spotify:track:7HKNWy2yA75PmJ2pFQpU7k,The Piper's Song,spotify:artist:54xBWCXYw0pydXBknIdiC6,GATC,spotify:album:1OilKlEbVfBaEJEfkFX8Lo,Gilgamesh,spotify:artist:54xBWCXYw0pydXBknIdiC6,GATC,2010-10-04,https://i.scdn.co/image/ab67616d0000b273b634bf67662f9291f3e71732,1,2,220453,https://p.scdn.co/mp3-preview/68a6dbe56eeea1927af0f8b51d1ab1877c37e842?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1000832,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,shimmer pop",0.587,0.833,9.0,-6.024,1.0,0.0517,0.00693,0.000612,0.0406,0.503,99.965,4.0,,RCA Records Label,P (P) 2010 Sony Music Entertainment UK Limited,9285 +9286,spotify:track:3qiyyUfYe7CRYLucrPmulD,Baba O'Riley,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:5MqyhhHbT13zsloD3uHhlQ,Who's Next (Deluxe Edition),spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1971-08-14,https://i.scdn.co/image/ab67616d0000b273fe24dcd263c08c6dd84b6e8c,1,1,300400,https://p.scdn.co/mp3-preview/02716794fa9bf3d9263d2ddd32389bbb9cede48b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBAKW7100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.489,0.724,5.0,-8.367,1.0,0.0352,0.313,0.185,0.287,0.15,117.292,4.0,,Polydor Records,"C © 2003 Polydor Ltd. (UK), P This Compilation ℗ 2003 Polydor Ltd. (UK)",9286 +9287,spotify:track:7hExqd5aeA6cdDFx6sBfd3,1901,spotify:artist:1xU878Z1QtBldR7ru9owdU,Phoenix,spotify:album:7bJTscIEKaObZS61RmpviI,Wolfgang Amadeus Phoenix,spotify:artist:1xU878Z1QtBldR7ru9owdU,Phoenix,2009-05-12,https://i.scdn.co/image/ab67616d0000b27316a0851b0e1698e226148d3f,1,2,193120,https://p.scdn.co/mp3-preview/51f9b6a2218009fa259e44b6ba944744f44c0f37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,FR31Q0900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,indie rock,modern rock,new rave,rock independant francais,shimmer pop",0.59,0.836,0.0,-5.391,1.0,0.0425,0.0576,2.38e-05,0.196,0.693,144.066,4.0,,Glassnote,P (P) 2009 Ghettoblaster S.A.R.L. under exlcuse license to Glassnote Entertainment Group LLC in the United States and Canada,9287 +9288,spotify:track:53C1LPb2wOPry7mk3WtDdi,Pick You Up,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,spotify:album:1GNUq8MXJUQ67dYmc0wEZ3,Double Allergic,spotify:artist:6LBCQo20ri3tsvbsWWLmr6,Powderfinger,1996-01-01,https://i.scdn.co/image/ab67616d0000b273e1966763534046ef4f5d991c,1,3,259373,https://p.scdn.co/mp3-preview/86a7f868607df34b5e2c302169794b7f1ee400ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUPO09620031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.569,0.698,10.0,-7.078,0.0,0.0271,0.000813,0.00281,0.29,0.44,109.477,4.0,,Universal Music Australia Pty. Ltd.,"C © 1996 Polydor Records, A Universal Music Company, P ℗ 1996 Polydor Records, A Universal Music Company",9288 +9289,spotify:track:4aVuWgvD0X63hcOCnZtNFA,Hold the Line,spotify:artist:0PFtn5NtBbbUNbU9EAmIWF,TOTO,spotify:album:1mnu4hYvdwQgZXcNvtJ3D3,Toto,spotify:artist:0PFtn5NtBbbUNbU9EAmIWF,TOTO,1978-10-10,https://i.scdn.co/image/ab67616d0000b273f903e62767a0e22e33b7af83,1,9,235546,https://p.scdn.co/mp3-preview/11e480955e46f3b6b5c1e0b6c28db18c25c1e73e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USSM17800444,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,rock,soft rock,yacht rock",0.473,0.898,6.0,-4.797,0.0,0.0561,0.00783,0.0618,0.173,0.808,96.556,4.0,,Columbia,P (P) 1978 Sony Music Entertainment Inc.,9289 +9290,spotify:track:7a53HqqArd4b9NF4XAmlbI,Kings & Queens,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,spotify:album:26c7MmQ4w8EAvVLb4jilaM,Heaven & Hell,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,2020-09-18,https://i.scdn.co/image/ab67616d0000b2739a95e89d24214b94de36ccf7,1,3,162398,https://p.scdn.co/mp3-preview/dc90347787fa47daa898d4ffbfff36074d184d64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USAT21906943,spotify:user:bradnumber1,2022-10-15T22:58:47Z,pop,0.637,0.69,1.0,-4.057,0.0,0.0405,0.00786,0.0,0.124,0.457,129.857,4.0,,Atlantic Records,"C Atlantic Records, © 2020 Artist Partner Group, Inc., P Atlantic Records, ℗ 2020 Artist Partner Group, Inc.",9290 +9291,spotify:track:0N7LKqYxUrg5UFb6Z4OSDF,Hard To Handle,spotify:artist:5krkohEVJYw0qoB5VWwxaC,The Black Crowes,spotify:album:6QU6itggAYKtzjKOMqz8Ch,Shake Your Money Maker,spotify:artist:5krkohEVJYw0qoB5VWwxaC,The Black Crowes,1990-01-01,https://i.scdn.co/image/ab67616d0000b27390d9cfc0869e6dd870ef6e31,1,6,188066,https://p.scdn.co/mp3-preview/9ea95810a0f4e86c6d6e1076a0c05284007bdebf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19000343,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,electric blues,hard rock,jam band,rock,southern rock",0.591,0.79,4.0,-3.597,1.0,0.0432,0.00224,0.000886,0.292,0.961,104.171,4.0,,Universal Music Group,"C © 1990 American Recordings, LLC, P ℗ 1990 American Recordings, LLC",9291 +9292,spotify:track:6igXYiQIuXwjO9myYFqSrj,Oh Sherrie,spotify:artist:5xQKoGD7Ql92fWd1uWwKkf,Steve Perry,spotify:album:1IXoOW9g3IdIW6c1FMhz5N,Street Talk,spotify:artist:5xQKoGD7Ql92fWd1uWwKkf,Steve Perry,1984,https://i.scdn.co/image/ab67616d0000b273991c624d72e078299b0931e4,1,1,227800,https://p.scdn.co/mp3-preview/ea95562bd8c925f98e29300b42c1a58cce6667e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM18400070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,mellow gold,new wave pop,soft rock,yacht rock",0.576,0.644,5.0,-6.141,1.0,0.0261,0.166,0.000191,0.142,0.313,101.938,4.0,,Columbia,P 1984 Sony Music Entertainment Inc.,9292 +9293,spotify:track:055Mme9ReKK99jRFA5UJ55,Get Out My Head,spotify:artist:2s7Oijd4mFGgEkhYJtf3sJ,Shane Codd,spotify:album:70mFskdJpptbrvVk9uwtAo,Get Out My Head,spotify:artist:2s7Oijd4mFGgEkhYJtf3sJ,Shane Codd,2020-05-25,https://i.scdn.co/image/ab67616d0000b273365dc84ef8c7abe39af84f6a,1,1,204933,https://p.scdn.co/mp3-preview/7d8ce4eb6cad98f4431586ec830ec3d960441c49?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,QZHN42019816,spotify:user:bradnumber1,2021-08-08T09:26:31Z,uk dance,0.693,0.913,0.0,-3.035,1.0,0.0298,0.0542,6.87e-05,0.231,0.795,123.989,4.0,,Polydor Records,"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",9293 +9294,spotify:track:3Ymi51lilmxnc9eRnfi32D,My Island Home,spotify:artist:1ZpVSSw9S84o1nUHdlie49,Warumpi Band,spotify:album:56hiT6YRCDxQZGhA8vzqhW,Go Bush!,spotify:artist:1ZpVSSw9S84o1nUHdlie49,Warumpi Band,1987-04-03,https://i.scdn.co/image/ab67616d0000b2732d4b9569dac21d231bd68115,1,5,297800,https://p.scdn.co/mp3-preview/591dc2148a8e50a8d3a763edd3be31c62dac961c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUFE08700003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian rock",0.488,0.364,7.0,-15.954,1.0,0.0321,0.0714,0.0,0.0756,0.544,79.707,4.0,,WM Australia,"C © 1987 The Warumpi Band, P ℗ 1987 The Warumpi Band",9294 +9295,spotify:track:5HQVUIKwCEXpe7JIHyY734,"Young, Wild & Free (feat. Bruno Mars)","spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:137W8MRPWKqSmrBGDBFSop, spotify:artist:0du5cEVh5yTK9QJze8zA0C","Snoop Dogg, Wiz Khalifa, Bruno Mars",spotify:album:11Bkx3E99vf0IlYPND61LJ,"Young, Wild & Free (feat. Bruno Mars)","spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:137W8MRPWKqSmrBGDBFSop","Snoop Dogg, Wiz Khalifa",2011-10-11,https://i.scdn.co/image/ab67616d0000b2738596df2f2646ab9aba464c30,1,1,207333,https://p.scdn.co/mp3-preview/45cf05c4798c3265393d56e70622e104bc28991e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,75,USAT21102232,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,pop rap,rap,west coast rap,hip hop,pittsburgh rap,pop rap,rap,southern hip hop,trap,dance pop,pop",0.715,0.655,0.0,-6.425,1.0,0.137,0.0525,0.0,0.115,0.531,95.078,4.0,,Rostrum/Atlantic,"C © 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2011 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",9295 +9296,spotify:track:6SQG4EWijzq9nA48drdQi3,Baby I Don't Care,spotify:artist:7oIgcNOdEHNwP8NFl9tYWs,Transvision Vamp,spotify:album:3BVlvv5IYMfnmUx4KzvGqG,Velveteen,spotify:artist:7oIgcNOdEHNwP8NFl9tYWs,Transvision Vamp,1989-01-01,https://i.scdn.co/image/ab67616d0000b273981e52530919b5b9dd4ba924,1,1,280822,https://p.scdn.co/mp3-preview/18af163417f370ba9f603683211170d47ac50f2f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBBY0080003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop",0.584,0.79,5.0,-9.022,1.0,0.0458,0.0185,2.04e-06,0.628,0.589,118.192,4.0,,Universal Music,"C © 1993 MCA Records Ltd., P ℗ 1989 MCA Records Ltd.",9296 +9297,spotify:track:093CZKlUe4ihQOR8LUWBCu,The Right Time,spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,spotify:album:4acB71ZhsfYGdTdqdbpzLK,"Forgiven, Not Forgotten",spotify:artist:1VbWUxZTRNY2gw3qZ1tg9W,The Corrs,1995-09-26,https://i.scdn.co/image/ab67616d0000b2737ab47a9a8416c1828d4d14e6,1,7,247373,https://p.scdn.co/mp3-preview/c4245620ec5d48d5f4abe9242727b53da689f26d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USAT20002751,spotify:user:bradnumber1,2022-01-13T01:21:58Z,"celtic rock,europop,pop rock",0.612,0.74,2.0,-6.249,1.0,0.0316,0.0604,5.04e-05,0.0469,0.634,93.996,4.0,,WM UK,"C © 1995 Atlantic Record Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 1995 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",9297 +9298,spotify:track:7iN1s7xHE4ifF5povM6A48,Let It Be - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:0jTGHV5xqHPvEcwL8f6YU5,Let It Be (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1970-05-08,https://i.scdn.co/image/ab67616d0000b27384243a01af3c77b56fe01ab1,1,6,243026,https://p.scdn.co/mp3-preview/31f65b6a613010f22316c7be335b62226cf2f263?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBAYE0601713,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.443,0.403,0.0,-8.339,1.0,0.0322,0.631,0.0,0.111,0.41,143.462,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",9298 +9299,spotify:track:6k6xfbXz8M2p706bCCXR16,Heaven Knows,"spotify:artist:2eogQKWWoohI3BSnoG7E2U, spotify:artist:2Uh4UmiQhrrElbrvJVH0dT","Donna Summer, Brooklyn Dreams",spotify:album:2SwnDwShj5gYL5dhDNoQun,On The Radio: Greatest Hits Volumes I & II,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,1979-10-15,https://i.scdn.co/image/ab67616d0000b27308e6bf22c16e5b47c2d9c467,1,8,210976,https://p.scdn.co/mp3-preview/b69b462cc98be33554fda27e9a533efe9b167e65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR39402396,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg,new wave pop,soft rock,deep disco",0.703,0.724,8.0,-12.377,1.0,0.0803,0.0842,2.82e-05,0.654,0.875,131.739,4.0,,Universal/Island Def Jam,"C © 1979 The Island Def Jam Music Group, P ℗ 1979 The Island Def Jam Music Group",9299 +9300,spotify:track:6oG7bmUn7ws0qYEJ0eEbeG,Touch,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,spotify:album:5DL2Z5x7UJsWH1HhE9j8nd,Glory Days: The Platinum Edition,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2017-11-24,https://i.scdn.co/image/ab67616d0000b273c11062d14bee6968fa86008c,1,17,213306,https://p.scdn.co/mp3-preview/196b96ca68be6f8e2920980e47e2eef9896a840f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1600074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop",0.607,0.718,4.0,-4.095,1.0,0.0978,0.032,0.0,0.403,0.551,101.821,4.0,,Syco Music,P (P) 2017 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,9300 +9301,spotify:track:57lEhHssad99QMK2Lr5Ykz,Can I Get a Moment?,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:3XT3rHDWteNpQNhnARN7Ap,Beautiful (Platinum Edition),spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2014-11-21,https://i.scdn.co/image/ab67616d0000b27317cd27fa89c1fcb8e845d88e,1,14,207253,https://p.scdn.co/mp3-preview/c7ec0826054d93d4b115587d61d223710a4c0d5a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUBM01400574,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.804,0.83,1.0,-2.154,1.0,0.0969,0.0135,1.98e-05,0.283,0.887,107.998,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd. except tracks 14-18 (P) 2014 Sony Music Entertainment Australia Pty Ltd.,9301 +9302,spotify:track:7mTgsbq7n8jgnwLswpgugB,On Your Side,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:0yQlLL2AKwGelZkortyujO,On Your Side,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2016-10-14,https://i.scdn.co/image/ab67616d0000b273cae1893a2f9dbb291516b682,1,1,171693,https://p.scdn.co/mp3-preview/1b380ce4e5d2efb801849bf2a27507710f242bd3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUBM01600372,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.594,0.78,7.0,-5.876,0.0,0.0735,0.0863,0.0,0.202,0.359,100.019,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd,9302 +9303,spotify:track:5UWB4UcasxL1TFZiAXegAw,Take It Off,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,spotify:album:5peRwC6pQh8eaoIPtvmmOB,Animal,spotify:artist:6LqNN22kT3074XbTVUrhzX,Kesha,2010,https://i.scdn.co/image/ab67616d0000b2737e531970051e341bfbbdc115,1,3,215200,https://p.scdn.co/mp3-preview/e771a7e8f020f794350b18436644f81a79c98256?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10900736,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.725,0.672,5.0,-5.353,0.0,0.0283,4.62e-05,0.00225,0.112,0.777,125.042,4.0,,RCA Records Label,"P (P) 2009 RCA/Jive Label Group, a unit of Sony Music Entertainment",9303 +9304,spotify:track:5e0ozDjIRDuitUuekiF6ns,Run Runaway,spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,spotify:album:14DvsG0HgGAdHGJQRtMFmv,The Amazing Kamikaze Syndrome (Expanded),spotify:artist:10n5lhNDoSMUHWLlnST1yw,Slade,1983-12-03,https://i.scdn.co/image/ab67616d0000b27384b6474df4a8ed448daa8295,1,3,300800,https://p.scdn.co/mp3-preview/8d7bbcc77c4e756483393976b3cdc85bfc55ea3d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW8401008,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.576,0.86,2.0,-7.22,1.0,0.0592,8.22e-05,0.000269,0.0517,0.757,128.543,4.0,,BMG Rights Management (UK) Limited,"C © 2007 Perseverance Ltd. under exclusive licence to BMG Rights Management (UK) Ltd., P ℗ 2007 Perseverance Ltd. under exclusive licence to BMG Rights Management (UK) Ltd.",9304 +9305,spotify:track:4WfKAQurm9W0utvBBIlv2Z,Run Away,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,spotify:album:4SJ6x0Hlml18n0Ur9hnWNU,Another Night,spotify:artist:2vRfKzjQYJQd67X8x49MOh,Real McCoy,1995-04-10,https://i.scdn.co/image/ab67616d0000b273fd06c1a7292da1064f45c1ca,1,4,243880,https://p.scdn.co/mp3-preview/d26bfc2b34d331015f90498a036cc3f6f25b0960?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,DEC739400365,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,german techno,hip house",0.728,0.928,1.0,-8.279,1.0,0.0423,0.000721,0.0054,0.0761,0.652,130.932,4.0,,Hansa Local,P (P)1995 BMG Berlin Musik GmbH,9305 +9306,spotify:track:0l9l90a1zB3wUObtwWbqHy,Glycerine,spotify:artist:78SHxLdtysAXgywQ4vE0Oa,Bush,spotify:album:72X9bb0R8LXGnVHZ3O40OK,Sixteen Stone (Remastered),spotify:artist:78SHxLdtysAXgywQ4vE0Oa,Bush,1994-12-06,https://i.scdn.co/image/ab67616d0000b273c4235ab468f3407e2ef7e6b0,1,10,266493,https://p.scdn.co/mp3-preview/a9e8e62ddca037411e5f7eea1cd70e319e783382?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM7YK1400024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,grunge,nu metal,post-grunge,rock",0.447,0.337,5.0,-11.402,1.0,0.0325,0.0365,0.00124,0.0945,0.0827,114.422,4.0,,Round Hill Music,P (P) 2014 Round Hill Records - Zuma Rock Records,9306 +9307,spotify:track:56r74XN0tnczTMSHml55jw,Broken Bones,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,spotify:album:3AeaTDw55VVnJeaKvkrzWN,Playlist,spotify:artist:25ou7Y6W7L1fcMoCZMbf86,Birds Of Tokyo,2015-11-06,https://i.scdn.co/image/ab67616d0000b273d434d8f21738e18dd0b6bd98,1,10,227561,https://p.scdn.co/mp3-preview/e2970073d7da3a4ee7a28c10f78b7fbb981958f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUYO00800002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian indie,australian pop,australian rock,perth indie",0.506,0.848,5.0,-5.832,0.0,0.0461,0.00405,0.0,0.39,0.406,102.925,4.0,,EMI Recorded Music Australia Pty Ltd (Distribution),"C © 2015 Birds Of Tokyo Pty Ltd, P This Compilation ℗ 2015 Birds Of Tokyo Pty Ltd, manufactured and distributed by EMI Music Australia Pty. Ltd under exclusive license",9307 +9308,spotify:track:27SdWb2rFzO6GWiYDBTD9j,Cheap Thrills,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:77jAfTh3KH9K2reMOmTgOh,This Is Acting,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2016-01-29,https://i.scdn.co/image/ab67616d0000b27349e0134c686547c28b7c999f,1,6,211666,https://p.scdn.co/mp3-preview/9143b32f6e1928b204708ce605e0ba42dc84b7c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USRC11502935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.628,0.698,6.0,-5.608,0.0,0.105,0.0472,0.00143,0.0907,0.732,89.976,4.0,,Monkey Puzzle Records/RCA Records,"P (P) 2015 Monkey Puzzle Records, under exclusive license to RCA Records",9308 +9309,spotify:track:6lhZLbb0czULpjb2kFryPS,Let's Love,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","David Guetta, Sia",spotify:album:4t9C75dy0UtR4JE7vNYQRr,Let's Love,"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:5WUlDfRSoLAfcVSX1WnrxN","David Guetta, Sia",2020-09-11,https://i.scdn.co/image/ab67616d0000b2735940eb4559e46f50d00b678a,1,1,200645,https://p.scdn.co/mp3-preview/063fd302c873b3943f981dacee85a5ef599ae5a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,UKWLH2000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,pop",0.662,0.868,5.0,-4.025,1.0,0.0341,0.00882,0.00244,0.584,0.353,92.998,4.0,,Parlophone (France),"C Exclusive Licence Warner Music France, Label Parlophone, © 2020 What A Producer Ltd, P Exclusive Licence Warner Music France, Label Parlophone, ℗ 2020 What A Producer Ltd",9309 +9310,spotify:track:3gwoz4xZuye0agjYgrC2je,Easy,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,spotify:album:25bVTJuPSWiiwdxgjJGRUi,Easy,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2020-07-15,https://i.scdn.co/image/ab67616d0000b273acd22b93c9521a25e0210109,1,1,226781,https://p.scdn.co/mp3-preview/1a5030df4cde23318a9793918088a22f5e598dfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM72000410,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,viral pop",0.639,0.569,0.0,-7.236,0.0,0.0487,0.0581,0.000169,0.108,0.616,142.967,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2020 Universal Music Australia Pty Ltd., P An EMI Recorded Music Australia Production; ℗ 2020 Universal Music Australia Pty Ltd.",9310 +9311,spotify:track:7nemcVsXVFZF01iqpIIo2Y,It's a Long Way to the Top (If You Wanna Rock 'N' Roll),spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,spotify:album:19AUoKWRAaQYrggVvdQnqq,High Voltage,spotify:artist:711MCceyCBcFnzjGY4Q7Un,AC/DC,1976-05-14,https://i.scdn.co/image/ab67616d0000b273286a0837ff3424065a735e0a,1,1,301226,https://p.scdn.co/mp3-preview/8ac2369b4e97fcdb9e0947aad43761dd57264ee1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USEW17500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,hard rock,rock",0.456,0.863,3.0,-3.551,1.0,0.0894,0.133,0.0538,0.0553,0.532,135.962,4.0,,Columbia,P (P) 1976 Australian Music Corporation Pty Ltd.,9311 +9312,spotify:track:7lKN38KsWtTE4PuHkaSKSd,Undecided,spotify:artist:0Yk7KdGevnSCqZgg9K8n6b,The Master's Apprentices,spotify:album:40NI5YJ0NcAcTYqSA0gWUc,The Master's Apprentices (Remastered),spotify:artist:0Yk7KdGevnSCqZgg9K8n6b,The Master's Apprentices,1966,https://i.scdn.co/image/ab67616d0000b273c94c133b0d95aa0dcad9c1c1,1,6,148840,https://p.scdn.co/mp3-preview/a0d3d6c3867c92f5f296596f700e04ba0b2a0730?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AU3O01100671,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.583,0.891,0.0,-5.891,1.0,0.08,0.299,0.000582,0.111,0.875,104.336,4.0,,Aztec Music,"C © 2009 Aztec Music, P ℗ 1966 Astor Records",9312 +9313,spotify:track:0ldLTYuqnHU92weLtw6W9m,3AM Eternal - Live at the S.S.L.,spotify:artist:6dYrdRlNZSKaVxYg5IrvCH,The KLF,spotify:album:1kJY7mRPwF5eJOf8DMZdwa,Solid State Logik 1,spotify:artist:6dYrdRlNZSKaVxYg5IrvCH,The KLF,2021-01-01,https://i.scdn.co/image/ab67616d0000b2738a8ed71d7332a6a4d1497f3e,1,3,232411,https://p.scdn.co/mp3-preview/30b9e651334af196a11177f46004d76a7c2dbb61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBCEL2000615,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid house,ambient house,big beat,hip house",0.616,0.977,1.0,-6.357,1.0,0.0827,0.0025,0.0124,0.942,0.744,119.303,4.0,,KLF Communications,"C 2021 KLF Communications, P 2021 KLF Communications",9313 +9314,spotify:track:0yp6ui2sosUjCUro1rRk2Q,Opposite of Adults,spotify:artist:40giwFcTQtv9ezxW8yqxJU,Chiddy Bang,spotify:album:4ah0Xl7jwAvvLa0mM01wwR,Opposite of Adults EP,spotify:artist:40giwFcTQtv9ezxW8yqxJU,Chiddy Bang,2010-02-19,https://i.scdn.co/image/ab67616d0000b273c8ffa464f0b6f89aa326944f,1,1,195453,https://p.scdn.co/mp3-preview/3c6c4e67677cd7bf8cbe1a638bb7d9b610a7eeb7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,US8Z30900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie pop rap,philly rap,pop rap",0.676,0.889,9.0,-5.483,1.0,0.148,0.0139,0.0,0.329,0.617,95.987,4.0,,Parlophone UK,"C © 2010 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2010 Parlophone Records Ltd, a Warner Music Group Company",9314 +9315,spotify:track:2jFlMILIQzs7lSFudG9lbo,Beep,"spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ, spotify:artist:085pc2PYOi8bGKj0PNjekA","The Pussycat Dolls, will.i.am",spotify:album:0ylxpXE00fVxh6d60tevT8,PCD (Revised International Version),spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2005-01-01,https://i.scdn.co/image/ab67616d0000b27308c08a13d8d1fbe59606a427,1,2,229360,https://p.scdn.co/mp3-preview/147e274ddf4703d051e25c05e05cc7a4b1d551ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70501898,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,dance pop,pop",0.938,0.735,7.0,-6.382,1.0,0.0434,0.00952,0.0,0.0998,0.55,103.7,4.0,,Universal Music Group,"C © 2005 Pussycat Dolls, LLC, P ℗ 2005 Pussycat Dolls, LLC",9315 +9316,spotify:track:4Pbg79cTBu4vgSphoyNq3j,2002,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,spotify:album:6oSxSPOg7Kuitjt2zwP7sU,2002,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,2018-04-19,https://i.scdn.co/image/ab67616d0000b273d04b0657298bd6401896de5e,1,1,186986,https://p.scdn.co/mp3-preview/d469ce8346ff12dcd2af05877d99662a0b334eca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GBAHS1800094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.697,0.683,1.0,-2.881,0.0,0.117,0.0372,0.0,0.137,0.603,96.133,4.0,,Atlantic Records UK,"C © 2018 Major Tom's / Asylum Records, a division of Warner Music UK Limited, P ℗ 2018 Major Tom's / Asylum Records, a division of Warner Music UK Limited",9316 +9317,spotify:track:2FK7fxjzQEXD7Z32HSF0Hl,"Men In Black - From ""Men In Black"" Soundtrack",spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,spotify:album:2esWeP8Ln1sXA0jbDmi3Zq,Big Willie Style,spotify:artist:41qil2VaGbD194gaEcmmyx,Will Smith,1997-10-03,https://i.scdn.co/image/ab67616d0000b273ddf2f9edabd166c60047e3c4,1,16,227266,https://p.scdn.co/mp3-preview/55b9e9ca8402487f1bedd79ebfb78c3286f5fb47?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM19700762,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap",0.801,0.581,5.0,-8.491,0.0,0.0681,0.0968,0.000318,0.0971,0.656,107.545,4.0,,Columbia,"P 1997 Sony Music Entertainment Inc., 1997 Columbia Pictures Industries Inc. WARNING: All Rights Reserved. Unuauthorized duplic",9317 +9318,spotify:track:4fUSETqk4cKrV3CeHIBtfa,Let It Burn,spotify:artist:7gSjFKpVmDgC2MMsnN8CYq,Jazmine Sullivan,spotify:album:10H2Wh6Im71eBVJprkh99U,Reality Show,spotify:artist:7gSjFKpVmDgC2MMsnN8CYq,Jazmine Sullivan,2015-01-09,https://i.scdn.co/image/ab67616d0000b273ed3552a8efe2d7da670e7885,1,6,223093,https://p.scdn.co/mp3-preview/0269a66860b7105d0c1b2e0a955d070910d627ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USRC11401548,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,neo soul,r&b,urban contemporary",0.56,0.561,8.0,-7.503,0.0,0.039,0.262,0.0,0.112,0.458,78.986,4.0,,RCA Records Label,"P (P) 2014 RCA Records, a division of Sony Music Entertainment",9318 +9319,spotify:track:4GiP4BZVEztoEIH4KuT7I1,Bitter Desire,spotify:artist:2O7qtwbMUKIK1Va8EF48Pr,Kids In The Kitchen,spotify:album:16yeGtpuBwC8tmk2LPw5Vb,Shine,spotify:artist:2O7qtwbMUKIK1Va8EF48Pr,Kids In The Kitchen,1985,https://i.scdn.co/image/ab67616d0000b2738ad0f30688510913ed47cbb1,1,7,228333,https://p.scdn.co/mp3-preview/1fa98aa9fba58c84dc45c88f5e960951f7b082ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUMU08500050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.606,0.61,0.0,-13.231,1.0,0.0407,0.407,0.000759,0.0553,0.834,119.212,4.0,,WM Australia,"C © 1985 Mushroom Records, P ℗ 1985 Mushroom Records",9319 +9320,spotify:track:1EHh1fC9FCKw31wotfXx7L,How Far We've Come,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,spotify:album:4MSCZtaEE6o1EyrhJXVVf7,How Far We've Come,spotify:artist:3Ngh2zDBRPEriyxQDAMKd1,Matchbox Twenty,2007-09-15,https://i.scdn.co/image/ab67616d0000b2730f9b32498b1d1053d4cc5c9c,1,1,212253,https://p.scdn.co/mp3-preview/998bde49776ed1b1a7ec0d375386514959e41843?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USAT20703843,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge",0.566,0.905,0.0,-5.093,1.0,0.0646,0.0045,0.0,0.21,0.792,83.0,4.0,,Atlantic Records,"C © 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2007 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",9320 +9321,spotify:track:04ijIUVdT4Qy1SBWFUPROY,Trouble,spotify:artist:3Dzj993UEz8Z5ovxuirzFO,Lindsey Buckingham,spotify:album:38UhlwlFmxKBRVCUdaY21m,Law and Order,spotify:artist:3Dzj993UEz8Z5ovxuirzFO,Lindsey Buckingham,1981,https://i.scdn.co/image/ab67616d0000b2738c3714e8324f7422e6b3ac5d,1,2,236533,https://p.scdn.co/mp3-preview/ece1fa1880f246266003de3604c97daa5a6c4429?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USWB10000697,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic rock,0.695,0.503,1.0,-12.91,1.0,0.0361,0.111,0.0134,0.0996,0.969,124.113,4.0,,Reprise,"C © 1981 Warner Records Inc., P ℗ 1981 Warner Records Inc.",9321 +9322,spotify:track:7wd8usw2idCriwRcNGV4EC,How We Do (Party),spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:66InqDn9SLDox1SADhsXKG,ORA,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2012-09-07,https://i.scdn.co/image/ab67616d0000b27347ef1a5b2207edf038cbdf74,1,3,247026,https://p.scdn.co/mp3-preview/000cff7d4c69db8bdf5e35994f895ad43030f7d2?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USQX91101879,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.738,0.922,7.0,-3.94,1.0,0.0833,0.0034,0.0,0.0986,0.689,116.024,4.0,,Roc Nation/Columbia,"P (P) 2012 Roc Nation LLC, 2012 Ministry Of Sound Recordings",9322 +9323,spotify:track:0wokCRaKD0zPNhMRXAgVsr,Ordinary World,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,spotify:album:0PqCkTvKFJxzr9uujq7a3T,Duran Duran,spotify:artist:0lZoBs4Pzo7R89JM9lxwoT,Duran Duran,1993-02-15,https://i.scdn.co/image/ab67616d0000b2735d11c2fe73a7d376d3b06107,1,2,340200,https://p.scdn.co/mp3-preview/e0c2d8a96585b4d41f556282168d9e2144349040?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBAYE9200048,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dance rock,new romantic,new wave,new wave pop,rock,soft rock,synthpop",0.473,0.652,1.0,-10.171,0.0,0.0305,0.0132,1.13e-05,0.14,0.401,140.117,4.0,,Parlophone UK,"C © 1993 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1993 Parlophone Records Ltd, a Warner Music Group Company",9323 +9324,spotify:track:0lBwoEOqZNwm07Pd8Hwj3L,Please Please Please,spotify:artist:74KM79TiuVKeVCqs8QtB0B,Sabrina Carpenter,spotify:album:2kFFrTliyBq4AnjDkPGVeD,Please Please Please,spotify:artist:74KM79TiuVKeVCqs8QtB0B,Sabrina Carpenter,2024-06-06,https://i.scdn.co/image/ab67616d0000b273255ec9ddd8af81fd9aba2ced,1,1,186365,https://p.scdn.co/mp3-preview/66b4462db23ccc4bc82a1d05e0ea4a589f9ed246?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USUM72406281,spotify:user:bradnumber1,2024-08-03T23:22:54Z,pop,0.665,0.582,9.0,-6.129,1.0,0.0517,0.197,0.0,0.112,0.663,107.042,4.0,,Island Records,"C © 2024 Island Records, a division of UMG Recordings, Inc., P ℗ 2024 Island Records, a division of UMG Recordings, Inc.",9324 +9325,spotify:track:3oFBDkFIPoTlSQ1C2KRFSv,She's A Genius,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,spotify:album:6tPS897buniFpmJo5KhE9g,Shaka Rock,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,2009-01-01,https://i.scdn.co/image/ab67616d0000b273bfe269b2f7d4cec2bacc92d3,1,3,178840,https://p.scdn.co/mp3-preview/0c1d8d3c59035a892fbccd2a4aaae79101d345ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USDPK0916003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,pop rock",0.503,0.952,9.0,-2.406,1.0,0.149,0.0221,9.73e-06,0.112,0.552,152.215,4.0,,Virgin Records,"C © 2009 Real Horrorshow Records/Five Seven Music, P ℗ 2009 Real Horrorshow Records/Five Seven Music",9325 +9326,spotify:track:5EAgXGJ8Kw5QAfhQkZXYqT,Master Blaster (Jammin'),spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:2tO3rrZ6q3OjHJMGVo13dh,Hotter Than July,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,1980-09-29,https://i.scdn.co/image/ab67616d0000b273fa5e6a681840021eb63e75ad,1,6,307933,https://p.scdn.co/mp3-preview/b3ce676222f1303986ade0e60cf36dbeae93ae5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USUMG9900475,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.877,0.422,10.0,-14.933,0.0,0.0546,0.04,0.000406,0.182,0.97,131.103,4.0,,Motown,"C © 2000 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1980 Motown Records, a Division of UMG Recordings, Inc.",9326 +9327,spotify:track:3k9i7UzeSUYWIfUZFeFDUd,Layla - 40th Anniversary Version / 2010 Remastered,spotify:artist:2rc78XDH9zuJP6bm78lU8Z,Derek & The Dominos,spotify:album:5IJXJ6OL7wtN8nc3EyQj4N,Layla And Other Assorted Love Songs (40th Anniversary / 2010 Remastered),spotify:artist:2rc78XDH9zuJP6bm78lU8Z,Derek & The Dominos,1970-11-01,https://i.scdn.co/image/ab67616d0000b273e10d2a668a44f13c6e550034,1,13,423840,https://p.scdn.co/mp3-preview/8563d016ae70ed290ba446194adbe39f0cbf3cdb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71028890,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,british blues,classic rock,country rock,electric blues,folk rock,hard rock,mellow gold,psychedelic rock,rock,singer-songwriter",0.404,0.903,1.0,-3.88,1.0,0.0668,0.577,0.297,0.287,0.498,115.672,4.0,,Universal Music Group,"C © 2011 Polydor Ltd. (UK), P ℗ 2011 Polydor Ltd. (UK)",9327 +9328,spotify:track:3bDpEvIfU5lk8Hd066WSuN,Keep On Movin',"spotify:artist:6rEzedK7cKWjeQWdAYvWVG, spotify:artist:78E5Zx38dgv90Q7VN2AplD","Five, Steve Mac",spotify:album:5jSAkaiC1BBKZQSZ7wFYOY,Greatest Hits,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,2003-06-02,https://i.scdn.co/image/ab67616d0000b27310df926bec224d743644ea3e,1,2,197333,https://p.scdn.co/mp3-preview/1f2aa5c457d111cd7eeb94c31ba42dfd57197821?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBARL9900105,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.744,0.851,7.0,-7.783,1.0,0.0336,0.0389,0.0,0.0722,0.961,135.014,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,9328 +9329,spotify:track:1FUViuNSldssMIawrOXF2i,I Got You,spotify:artist:64M6ah0SkkRsnPGtGiRAbb,Bebe Rexha,spotify:album:6IZNCnM8eo8T67i65FrbGA,I Got You,spotify:artist:64M6ah0SkkRsnPGtGiRAbb,Bebe Rexha,2016-10-28,https://i.scdn.co/image/ab67616d0000b273809adcbcfe88c94fd2a706c1,1,1,191811,https://p.scdn.co/mp3-preview/1f52e17b6bfc2049eca887a17eaafb6f074359f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USWB11602093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.609,0.887,9.0,-4.749,0.0,0.0507,0.0504,4.76e-06,0.09,0.316,97.99,4.0,,Warner Records,"C © 2016 Warner Records Inc., P ℗ 2016 Warner Records Inc.",9329 +9330,spotify:track:2HWWNoWEEEECwZhAiLg7ib,Beautiful Liar,"spotify:artist:6vWDO969PvNqNYHIOW5v0m, spotify:artist:0EmeFodog0BfCgMzAIvKQp","Beyoncé, Shakira",spotify:album:0Zd10MKN5j9KwUST0TdBBB,B'Day Deluxe Edition,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2007-05-29,https://i.scdn.co/image/ab67616d0000b273026e88f624dfb96f2e1ef10b,1,1,199853,https://p.scdn.co/mp3-preview/703336bdbcf410c0f4f687b11273f4f7106905a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM10700448,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b,colombian pop,dance pop,latin pop,pop",0.764,0.751,8.0,-3.74,1.0,0.0703,0.00554,0.000237,0.164,0.418,91.977,4.0,,Columbia,"P (P) 2006, 2007 SONY BMG MUSIC ENTERTAINMENT",9330 +9331,spotify:track:7c52LVpkxq3dzMEkDWiQyw,Only Sixteen,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,spotify:album:7duyaPactGiBSLDpyx2moF,Dr. Hook - The Best Of,spotify:artist:2Mhi3jfuRSdbVZPdjqsnnN,Dr. Hook,2009-01-01,https://i.scdn.co/image/ab67616d0000b27350605b549955aebf0b512bc0,1,6,164746,https://p.scdn.co/mp3-preview/2a81bf57eb26b34b838c9beb1012b9532470f908?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USCA28901107,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"country rock,mellow gold,soft rock",0.622,0.21,5.0,-16.335,1.0,0.0336,0.938,0.00143,0.298,0.662,101.617,4.0,,EMI Gold,"C © 2009 EMI Records Ltd, P This Compilation ℗ 2009 EMI Records Ltd",9331 +9332,spotify:track:6IAfQUFWaQdqoTz0P1jk9W,Dirty Talk,spotify:artist:4nmrm4zpgJ0RC6aZRSUEjF,Wynter Gordon,spotify:album:374L83WrJRGCpZUzM3IJmu,Dirty Talk,spotify:artist:4nmrm4zpgJ0RC6aZRSUEjF,Wynter Gordon,2010-02-18,https://i.scdn.co/image/ab67616d0000b273f5a3edaa4ba4578b03c1fca1,1,1,197186,https://p.scdn.co/mp3-preview/06ed8b48773f72e34ffbdc3f97fe78f1ac7a4dd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USAT20902954,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.689,0.789,11.0,-5.459,1.0,0.0342,0.0342,0.00129,0.104,0.895,130.01,4.0,,Big Beat Records/Atlantic,"C © 2010 Big Beat Records, Inc. for the United States and WEA International for the world outside the United States., P ℗ 2010 Big Beat Records, Inc. for the United States and WEA International for the world outside the United States.",9332 +9333,spotify:track:6MDijuuArPJv1vbp7K1x3f,Genghis Khan,spotify:artist:4l1cKWYW591xnwEGxpUg3J,Miike Snow,spotify:album:3pWJFrSX6apPzt4inM4zXt,iii,spotify:artist:4l1cKWYW591xnwEGxpUg3J,Miike Snow,2016-03-04,https://i.scdn.co/image/ab67616d0000b27306eda68098c2a886a43685a8,1,3,212146,https://p.scdn.co/mp3-preview/2ff33b7f2be5fcfc5f51845e72dc00589dad1753?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USAT21503728,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,electropop,indietronica,neo-synthpop,shimmer pop,swedish electropop,swedish indie pop,swedish synthpop",0.688,0.847,10.0,-3.238,0.0,0.0508,0.04,2.81e-06,0.598,0.453,93.979,4.0,,Downtown/Atlantic,"C © 2016 Jackalope Recordings Limited under exclusive license to Atlantic Recordings Corporation for the United States and WEA International Inc. for the world excluding the United States, P ℗ 2016 Jackalope Recordings Limited under exclusive license to Atlantic Recordings Corporation for the United States and WEA International Inc. for the world excluding the United States",9333 +9334,spotify:track:4lajYC68T7pJGVGIey962P,Do It Right,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,spotify:album:482K2rejXov03MToosqhdO,Do It Right,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,2015-11-20,https://i.scdn.co/image/ab67616d0000b27328245250a329915b061b1ed1,1,1,195984,https://p.scdn.co/mp3-preview/93c40266d1d0350ca9019e5c423ab27d667106dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,GBAHS1500530,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.644,0.645,3.0,-8.562,0.0,0.16,0.0123,1.75e-06,0.121,0.74,130.005,4.0,,Atlantic Records UK,"C © 2015 Major Tom's / Asylum Records, a division of Warner Music UK Limited, P ℗ 2015 Major Tom's / Asylum Records, a division of Warner Music UK Limited",9334 +9335,spotify:track:1wRXZO2KeCbovrfaOFoMnz,Married In Vegas,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,spotify:album:18WA8z5joXDcVLoB87mxBB,Married In Vegas,spotify:artist:7gAppWoH7pcYmphCVTXkzs,The Vamps,2020-07-31,https://i.scdn.co/image/ab67616d0000b273dd3c2b19e92272714c5d6632,1,1,192906,https://p.scdn.co/mp3-preview/2f30d7a45021434a110ea554bcd860b718467c80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBUM72003757,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.663,0.77,9.0,-4.056,1.0,0.0559,0.000648,0.0,0.0311,0.753,104.044,4.0,,EMI,"C © 2020 Universal Music Operations Limited, P ℗ 2020 Universal Music Operations Limited",9335 +9336,spotify:track:1A7hIo1C8jacIQ5ZiCjc8g,Wild Night,spotify:artist:44NX2ffIYHr6D4n7RaZF7A,Van Morrison,spotify:album:0RXzDyBEGd2EGQTmv8cxQa,The Essential Van Morrison,spotify:artist:44NX2ffIYHr6D4n7RaZF7A,Van Morrison,2015-12-04,https://i.scdn.co/image/ab67616d0000b2738f09dd4d56cde1a2cda18604,1,12,213600,https://p.scdn.co/mp3-preview/5a92f42783a227fa00417b1d0446d67178836e0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USQX91501805,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.568,0.714,7.0,-7.139,1.0,0.0445,0.174,0.0,0.0429,0.955,146.338,4.0,,Legacy Recordings,"P This compilation (P) 2015 Exile Productions, Ltd. under exclusive license to Sony Music Entertainment",9336 +9337,spotify:track:6h7LFAXbnUJkt1mWt8UoTy,Cruel Intentions,spotify:artist:31DXlldabwPHwu6dYevuzK,Simian Mobile Disco,spotify:album:2zc8IUSQEggfy9PZX1x2Gk,Anthology: 10 Years of Smd,spotify:artist:31DXlldabwPHwu6dYevuzK,Simian Mobile Disco,2008,https://i.scdn.co/image/ab67616d0000b273feb02864a60a8b63ae8d6a18,1,9,184560,https://p.scdn.co/mp3-preview/f12a71661f2b16fb8fc08f13bb6e219eb3976d62?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDNH0900091,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,electrofox,electronica,filter house,indietronica,neo-synthpop,new rave",0.651,0.616,2.0,-8.123,0.0,0.0449,0.00208,0.0316,0.0909,0.593,113.075,4.0,,Wichita Recordings,"C 2017 Wichita Recordings Ltd., released outside of US and Canada under exclusive license to PIAS., P 2008 Simian Mobile Disco",9337 +9338,spotify:track:4mcZYzoGwPRDdhWVlygiHf,Refugee,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:708Whrc4abJEtqBINv9S2b,Damn The Torpedoes (Deluxe Edition),spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,1979-10-19,https://i.scdn.co/image/ab67616d0000b273ebca7d93f21ba366fe005966,1,1,201693,https://p.scdn.co/mp3-preview/134dd64b86a65e14aa19a8a6c97469c4d7117f20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USMC17909357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.579,0.705,6.0,-4.911,0.0,0.034,0.0273,0.0,0.0704,0.76,116.172,4.0,,Geffen,"C © 2010 Geffen Records, P This Compilation ℗ 2010 Geffen Records",9338 +9339,spotify:track:6bQfNiqyCX7UaQSvVVGo4I,Shivers,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:5kFCfioZraFsRWpoitQjmx,Shivers,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2021-09-10,https://i.scdn.co/image/ab67616d0000b273469407300636945a5eb2d9ed,1,1,207853,https://p.scdn.co/mp3-preview/08cec59d36ac30ae9ce1e2944f206251859844af?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GBAHS2100671,spotify:user:bradnumber1,2021-11-19T23:17:36Z,"pop,singer-songwriter pop,uk pop",0.788,0.859,2.0,-2.724,1.0,0.0856,0.281,0.0,0.0424,0.822,141.02,4.0,,Atlantic Records UK,"C An Asylum Records UK release, a division of Atlantic Records UK, © 2021 Warner Music UK Limited, P An Asylum Records UK release, a division of Atlantic Records UK, ℗ 2021 Warner Music UK Limited",9339 +9340,spotify:track:6zyDXOFCbInOMZJbzWd64k,Murder On The Dancefloor,spotify:artist:2cBh5lVMg222FFuRU7EfDE,Sophie Ellis-Bextor,spotify:album:5nUHh90XmqFF7MRcJmW6RU,Read My Lips (New NON-EU version),spotify:artist:2cBh5lVMg222FFuRU7EfDE,Sophie Ellis-Bextor,2002-01-01,https://i.scdn.co/image/ab67616d0000b2739d0333fcec1e99a158218001,1,1,229970,https://p.scdn.co/mp3-preview/340bdf7b29f2725f0353cb77cc8f6996cdc9fbe8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAKW0100229,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,new wave pop",0.735,0.848,1.0,-5.285,0.0,0.0308,0.00312,1.16e-05,0.313,0.864,117.319,4.0,,Universal Music Ltd.,"C © 2002 Polydor Ltd. (UK), P ℗ 2002 Polydor Ltd. (UK)",9340 +9341,spotify:track:6Vf3F1AnPANnD3U18aVMMA,San Antonio Rose,spotify:artist:6DQ6mdEhxCgHPqfX1niZZK,Floyd Cramer,spotify:album:1P4nnFm1S5OqHSfXlggBEV,The Essential Floyd Cramer,spotify:artist:6DQ6mdEhxCgHPqfX1niZZK,Floyd Cramer,1995,https://i.scdn.co/image/ab67616d0000b2730bb20cdc414670f85b75f850,1,4,140000,https://p.scdn.co/mp3-preview/b0fa3a34a20f5a6bac84045411f7c7aa224db4f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,USRN19500113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"easy listening,honky-tonk piano,nashville sound",0.634,0.48,2.0,-13.191,1.0,0.0264,0.483,0.569,0.14,0.969,87.077,4.0,,RCA Records Label Nashville,P (P) 1995 BMG Entertainment,9341 +9342,spotify:track:07RgAeKIlahtqeCw25SkTu,Car Wash - Long Version,spotify:artist:1OxJzMLmR9l5zPLap9OxuO,Rose Royce,spotify:album:1T6UGHbfP4JTTVTglIrybh,Rockin' 70's (Vol. 2),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1996-05-03,https://i.scdn.co/image/ab67616d0000b273f2165490d27e56a9a6dddb74,1,2,308000,https://p.scdn.co/mp3-preview/6c4c3c15068716abbc54411c815b48c993e3514f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USMC17646466,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,motown,post-disco,quiet storm,soul,southern soul",0.649,0.443,9.0,-15.71,0.0,0.115,0.195,5.76e-05,0.0514,0.801,117.619,4.0,,MCA Nashville,"C © 1996 UMG Recordings, Inc., P This Compilation ℗ 1996 UMG Recordings, Inc.",9342 +9343,spotify:track:7ilyh37sEDUu7TA6JJvspv,Dance The Way I Feel,spotify:artist:1m3jswEIBazYObuVL9NriQ,Ou Est Le Swimming Pool,spotify:album:6oSmkz3JgGRAMYRQjPh7pM,Dance The Way I Feel,spotify:artist:1m3jswEIBazYObuVL9NriQ,Ou Est Le Swimming Pool,2010-01-01,https://i.scdn.co/image/ab67616d0000b2738aaf44f8a19d102f66664b32,1,1,208333,https://p.scdn.co/mp3-preview/bea383af60527a6a0957d631841ab6bd47ecd2c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,GBUDS0900002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,neo-synthpop",0.708,0.96,8.0,-5.499,1.0,0.0418,0.00955,9.45e-06,0.0868,0.432,118.024,4.0,,Ministry Of Sound,"C © 2010 Stiff Records Ltd., under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd., P ℗ 2010 Stiff Records Ltd., under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty Ltd.",9343 +9344,spotify:track:7tFiyTwD0nx5a1eklYtX2J,Bohemian Rhapsody - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:6X9k3hSsvQck2OfKYdBbXr,A Night At The Opera (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1975-11-21,https://i.scdn.co/image/ab67616d0000b273ce4f1737bc8a646c8c4bd25a,1,11,354320,https://p.scdn.co/mp3-preview/d56de4777551c3eb7430ecf289809b1653147bf8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBUM71029604,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.391,0.402,0.0,-9.961,0.0,0.0539,0.289,0.0,0.243,0.228,143.879,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",9344 +9345,spotify:track:4n0foHAK05yGDbZXECeg0i,Blow Me (One Last Kiss) - Radio Edit,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:0J5nkV8xM01jGoHlJv8MwD,Blow Me (One Last Kiss),spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2012-07-09,https://i.scdn.co/image/ab67616d0000b27329df2192ed0c4686a79071e9,1,1,230520,https://p.scdn.co/mp3-preview/3b749717689835f4776f4f66a0ddc1476c985a80?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,USRC11200699,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.593,0.921,7.0,-2.661,1.0,0.0414,0.000202,0.0,0.358,0.722,114.016,4.0,,RCA Records Label,"P (P) 2012 RCA Records, a division of Sony Music Entertainment",9345 +9346,spotify:track:7jk7gqyEonmVVYahZN5zhW,Circus,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:2tve5DGwub1TtbX1khPX5j,Circus (Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,2008-12-02,https://i.scdn.co/image/ab67616d0000b27354c6edd554935d73e159e199,1,2,192360,https://p.scdn.co/mp3-preview/b607cc9363c98d0a903e1256c48c429005b08ac7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USJI10801081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.791,0.733,6.0,-5.215,0.0,0.052,0.147,0.000381,0.0713,0.761,114.98,4.0,,Jive,P (P) 2008 Zomba Recording LLC,9346 +9347,spotify:track:6HHytHLXLX8QfWTtGfFSvH,Drop It Like It's Hot,"spotify:artist:7hJcb9fa4alzcOq3EaNPoG, spotify:artist:2RdwBSPQiwcmiDo9kixcl8","Snoop Dogg, Pharrell Williams",spotify:album:34GxD8gBcVX4CkJRJP73Ph,R&G (Rhythm & Gangsta): The Masterpiece [Explicit Version],spotify:artist:7hJcb9fa4alzcOq3EaNPoG,Snoop Dogg,2004-01-01,https://i.scdn.co/image/ab67616d0000b273822027075184368c5be419d5,1,3,266066,https://p.scdn.co/mp3-preview/be634674f46a6afdd90e59d7522196295eafc956?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USMC10400640,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,pop rap,rap,west coast rap,dance pop,pop",0.892,0.628,1.0,-3.832,1.0,0.216,0.169,0.0,0.102,0.676,92.063,4.0,,Universal Music Group,"C © 2004 Geffen Records, P ℗ 2004 Geffen Records",9347 +9348,spotify:track:7dlV2bbq25RFRx0USrvmxf,So Far Away - Full Version,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,spotify:album:0eB4vHv83yYk1pMim2NIar,The Best of Dire Straits & Mark Knopfler - Private Investigations (Limited Edition),"spotify:artist:0FI0kxP0BWurTz8cB8BBug, spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T","Mark Knopfler, Dire Straits",2005-11-07,https://i.scdn.co/image/ab67616d0000b27311cd3607f236dd71b56b1029,1,7,307253,https://p.scdn.co/mp3-preview/95443ec3cb87fd3ac41775b3a6143957cfc05cbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF088500673,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock",0.696,0.672,4.0,-6.59,1.0,0.027,0.235,0.186,0.0704,0.636,114.405,4.0,,Mercury Records Limited,"C (C) 2005 Mercury Records Limited, P (P) 2005 Mercury Records Limited",9348 +9349,spotify:track:7t3q4ghl6rphMXn0oOJhUr,Someday (feat. Meghan Trainor),"spotify:artist:1GxkXlMwML1oSg5eLPiAz3, spotify:artist:6JL8zeS1NmiOftqZTRgdTz","Michael Bublé, Meghan Trainor",spotify:album:2OXZJLXxM8jrY3gBoVNfmz,Nobody but Me (Deluxe),spotify:artist:1GxkXlMwML1oSg5eLPiAz3,Michael Bublé,2016-10-21,https://i.scdn.co/image/ab67616d0000b273576629f3c4631eb55612a7c7,1,8,203453,https://p.scdn.co/mp3-preview/92aa36d8fb56bc1483b308b62145ee4f4c90b84c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRE11600457,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,jazz pop,lounge,hip pop,pop",0.671,0.539,7.0,-6.08,1.0,0.0392,0.18,0.0,0.0748,0.934,94.98,4.0,,Reprise,"C © 2016 Reprise Records, P ℗ 2016 Reprise Records",9349 +9350,spotify:track:2ILjkVmIqxShrjuKZxZj2I,Scream & Shout,"spotify:artist:085pc2PYOi8bGKj0PNjekA, spotify:artist:26dSoYclwsYLMAKD3tpOr4","will.i.am, Britney Spears",spotify:album:1Kn5dE4MM60dPNyYu0G9sx,#willpower (Deluxe),spotify:artist:085pc2PYOi8bGKj0PNjekA,will.i.am,2013-01-01,https://i.scdn.co/image/ab67616d0000b273c92edfb649c383c6cfe82dfa,1,4,252266,https://p.scdn.co/mp3-preview/fe268bc5bf39e8670d188caf2417c0b0a514e213?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USUM71215644,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,pop",0.784,0.66,0.0,-6.866,1.0,0.0431,0.0363,8.97e-05,0.259,0.453,130.016,4.0,,Interscope,"C © 2013 Interscope Records, P ℗ 2013 Interscope Records",9350 +9351,spotify:track:6eLDMmVI7HF7W56cOrJj00,Let's Go All The Way,spotify:artist:6wU099wsnfSuP0lxWc0jgt,Sly Fox,spotify:album:3Z4g149VhJYZMQ3cGTGgJl,Lost Hits Of The 80's (Vol. 2),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-01-01,https://i.scdn.co/image/ab67616d0000b273dea4313ef330ca2cd7e67afd,1,1,239106,https://p.scdn.co/mp3-preview/5d1af97d0665faa85b6a61344fce6c5c9c9cdfe6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USCA29400411,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.633,0.714,5.0,-13.574,1.0,0.0325,0.193,0.000307,0.296,0.865,98.149,4.0,,Capitol Records,"C © 2012 Capitol Records, LLC, P This Compilation ℗ 2012 Capitol Records, LLC",9351 +9352,spotify:track:7mldq42yDuxiUNn08nvzHO,Body Like A Back Road,spotify:artist:2kucQ9jQwuD8jWdtR9Ef38,Sam Hunt,spotify:album:2N7kidh1wA9EoLdf16QWrz,Body Like A Back Road,spotify:artist:2kucQ9jQwuD8jWdtR9Ef38,Sam Hunt,2017-02-01,https://i.scdn.co/image/ab67616d0000b27356277bb70d3a48ed654a0a57,1,1,165386,https://p.scdn.co/mp3-preview/c8574ecce127c06b6da32aee0ffa2bcb5534779b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USUM71700575,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country pop,modern country rock",0.732,0.458,5.0,-7.225,1.0,0.0311,0.447,0.0,0.136,0.661,98.938,4.0,,MCA Nashville,"C © 2017 MCA Nashville, a Division of UMG Recordings, Inc., P ℗ 2017 MCA Nashville, a Division of UMG Recordings, Inc.",9352 +9353,spotify:track:7MmG8p0F9N3C4AXdK6o6Eb,Outside (feat. Ellie Goulding),"spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:0X2BH1fck6amBIoJhDVmmJ","Calvin Harris, Ellie Goulding",spotify:album:48zisMeiXniWLzOQghbPqS,Motion,spotify:artist:7CajNmpbOovFoOoasH2HaY,Calvin Harris,2014-10-31,https://i.scdn.co/image/ab67616d0000b2738fba5806a323efd272677c4d,1,6,227266,https://p.scdn.co/mp3-preview/bb032e25471de6482ac8200e690bb1433d3166ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,GBARL1401201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electro house,house,pop,progressive house,uk dance,indietronica,metropopolis,pop,uk pop",0.646,0.823,2.0,-4.123,0.0,0.0394,0.213,0.0,0.322,0.418,128.035,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,9353 +9354,spotify:track:74ODGXs4byLTRdnKGM4s6E,Super Far,spotify:artist:49tQo2QULno7gxHutgccqF,LANY,spotify:album:2hVTFTbeg9QhXGZAY99oRa,LANY,spotify:artist:49tQo2QULno7gxHutgccqF,LANY,2017-06-30,https://i.scdn.co/image/ab67616d0000b2734bf52f0d4578b67e362f4672,1,3,203650,https://p.scdn.co/mp3-preview/59af8b55dbadc7b01ce9f971685b103952658bd0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71700710,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"la pop,opm",0.754,0.458,8.0,-6.852,1.0,0.144,0.105,0.0,0.249,0.495,96.011,4.0,,Universal Music Group,"C © 2017 Side Street Entertainment LLC, under exclusive licence to Polydor Records (a division of Universal Music Operations Limited), P ℗ 2017 Side Street Entertainment LLC, under exclusive licence to Polydor Records (a division of Universal Music Operations Limited)",9354 +9355,spotify:track:01qCxvpyyIm0a0RG3uYxEm,Could I Have This Kiss Forever,"spotify:artist:7qG3b048QCHVRO5Pv1T5lw, spotify:artist:6XpaIBNiVzIetEPCWDvAFP","Enrique Iglesias, Whitney Houston",spotify:album:2ENVytJO885v5c1AW2Qjci,Enrique,spotify:artist:7qG3b048QCHVRO5Pv1T5lw,Enrique Iglesias,1999-01-01,https://i.scdn.co/image/ab67616d0000b273d7e8f8a721c820d787f8e940,1,7,235293,https://p.scdn.co/mp3-preview/52de4676c0be3cc7227b9908f1b88612532d78fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USIR19915205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,latin pop,mexican pop,dance pop,pop",0.457,0.892,10.0,-5.926,0.0,0.0986,0.00338,4.46e-06,0.141,0.508,93.664,4.0,,Interscope,"C © 1999 Interscope Records, P ℗ 1999 Interscope Records",9355 +9356,spotify:track:5cYFwgA5dHoqR3xGnlr9ew,I Hope (feat. Charlie Puth),"spotify:artist:6Iz3eq2aQGFf7TbGT2iahL, spotify:artist:6VuMaDnrHyPL1p4EHjYLi7","Gabby Barrett, Charlie Puth",spotify:album:4Iqfx63CZhFGGIHiAvLxXY,Goldmine,spotify:artist:6Iz3eq2aQGFf7TbGT2iahL,Gabby Barrett,2020-06-19,https://i.scdn.co/image/ab67616d0000b27366ffb23d13b04824e04f30d2,1,13,211605,https://p.scdn.co/mp3-preview/bfa518d2e1ff6bc87a8af8454fe799582cd09482?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USWB12000841,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,pop,viral pop",0.563,0.576,6.0,-6.495,1.0,0.0401,0.171,0.0,0.158,0.412,75.019,4.0,,Warner Music Nashville,"C © 2020 Warner Music Nashville LLC, P ℗ 2020 Warner Music Nashville LLC",9356 +9357,spotify:track:07ABETRdek3ACMpRPvQuaT,Always on My Mind,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,spotify:album:0Jt2LzWgtGxy3GZH5i2Kcy,Discography - Complete Singles Collection,spotify:artist:2ycnb8Er79LoH2AsR5ldjh,Pet Shop Boys,1998-03-31,https://i.scdn.co/image/ab67616d0000b273499c6d2eaeb941d76acdfe41,1,8,234906,https://p.scdn.co/mp3-preview/85acd16309f68796e2ad8abf0f9b0c0eda174839?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,GBAYE8700080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance rock,new romantic,new wave,new wave pop,permanent wave,synthpop",0.533,0.783,7.0,-10.61,1.0,0.0366,0.0116,0.0565,0.186,0.726,124.874,4.0,,Parlophone UK,"C © 1991 Pet Shop Boys Partnership Ltd under exclusive licence to Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1991 Parlophone Records Ltd, a Warner Music Group Company",9357 +9358,spotify:track:7LyIoUsiMtelB1I0I4drEF,Modern Love - 1999 Remaster,spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,spotify:album:37KYBt1Lzn4eJ4KoCFZcnR,Let's Dance (1999 Remaster),spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy,David Bowie,1983-04-14,https://i.scdn.co/image/ab67616d0000b2734b4cc5866bd793ab9caa8bb5,1,1,288466,https://p.scdn.co/mp3-preview/40a35b826cb714515fd453645169c1d44a0e0040?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJT19900183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art rock,classic rock,glam rock,permanent wave,rock",0.315,0.889,0.0,-8.192,1.0,0.041,0.000376,0.00241,0.133,0.961,181.329,4.0,,Parlophone UK,"C 1999 Jones/Tintoretto Entertainment Company LLC This Label Copy information is the subject of Copyright protection. All rights reserved. (C) 1999 Parlophone Records Ltd, P 1999 Digital Remaster (P) 1999 The Copyright in this sound recording is owned by Jones/Tintoretto Entertainment Company LLC under exclusive licence to Parlophone Records Ltd",9358 +9359,spotify:track:126MvlJjQXgM7IC0SC5qQz,There's Always Me - alt. take 2,"spotify:artist:43ZHCT0cAZBISjO8DG9PnE, spotify:artist:6CXezToiGS8K6jr9kr8Muv","Elvis Presley, The Jordanaires",spotify:album:3O7z4kPJ3LlowdWvyeHWpS,"Today, Tomorrow and Forever",spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2002-06-25,https://i.scdn.co/image/ab67616d0000b273cdd853e18f1ab86774cf93dc,2,8,152973,https://p.scdn.co/mp3-preview/e24fd81f5533acf78a378d9f70f3273940ac2965?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,USRC10200143,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly,country gospel",0.461,0.151,0.0,-12.513,1.0,0.0277,0.915,0.000585,0.195,0.326,72.466,4.0,,RCA/BMG Heritage,P (P) 2002 Sony Music Entertainment,9359 +9360,spotify:track:3XcjIvaZVUFAIdIYZqY9bd,We're An American Band - Remastered 2002,spotify:artist:0qEcf3SFlpRcb3lK3f2GZI,Grand Funk Railroad,spotify:album:6hSAjI92A6vPL6OM1DWTZg,We're An American Band (Expanded Edition / Remastered 2002),spotify:artist:0qEcf3SFlpRcb3lK3f2GZI,Grand Funk Railroad,1973,https://i.scdn.co/image/ab67616d0000b2731c9cfb5c3f8890dfd417922b,1,1,207093,https://p.scdn.co/mp3-preview/30495744308111a5931bd9e59884e587de210497?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USCA20200334,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,hard rock,mellow gold,rock,singer-songwriter,soft rock",0.637,0.89,7.0,-4.872,1.0,0.0676,0.119,6.5e-05,0.103,0.923,127.688,4.0,,Capitol Records,"C © 1973 Capitol Records, LLC, P ℗ 2002 Capitol Records, LLC",9360 +9361,spotify:track:6tLBBoHml6zFgclqwOZrTR,This Diamond Ring,spotify:artist:0XTxadWXVyfB8eTIYOjMYj,Gary Lewis & The Playboys,spotify:album:7cIRt2D0UIEbatRo5TXjl2,The Legendary Masters Series,spotify:artist:0XTxadWXVyfB8eTIYOjMYj,Gary Lewis & The Playboys,1990-01-01,https://i.scdn.co/image/ab67616d0000b2730a86a936118d4009942024e1,1,1,134760,https://p.scdn.co/mp3-preview/70ef2e4a037dc8b8289393e65b9dbb079cdb07db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USEM38900153,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,bubblegum pop",0.625,0.608,10.0,-10.832,0.0,0.0297,0.356,0.0,0.168,0.686,132.655,4.0,,EMI/EMI Records (USA),"C © 1990 Capitol Records, LLC, P This Compilation ℗ 1990 Capitol Records, LLC",9361 +9362,spotify:track:64Frq1SXQiIbv8fTu07oWu,Can't Stop This Thing We Started,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:5BsYE5BZPdZ0E8L2ozhG4a,So Far So Good,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1993-01-01,https://i.scdn.co/image/ab67616d0000b273790f56e00aa2672be3970f53,1,4,268093,https://p.scdn.co/mp3-preview/ee67ed409135046c24a26af26379d3c5c108e352?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19190003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.534,0.912,9.0,-5.533,1.0,0.0417,0.0202,0.0,0.481,0.519,113.029,4.0,,Universal Music Group,"C © 1993 A&M Records Inc., P ℗ 1993 A&M Records Inc.",9362 +9363,spotify:track:4J9u7UsXH7F6sFI32KnYuP,Heartbreak Hotel (feat. Faith Evans & Kelly Price),"spotify:artist:6XpaIBNiVzIetEPCWDvAFP, spotify:artist:5NDMothbpdpq2xHqSjrrWn, spotify:artist:49FeZO3eSrJs7oH7lYLU1r","Whitney Houston, Faith Evans, Kelly Price",spotify:album:00NABajpGsPCObfcl4LJsM,My Love Is Your Love,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1998-11-17,https://i.scdn.co/image/ab67616d0000b27384b84d08fdbaebb99098890c,1,2,281493,https://p.scdn.co/mp3-preview/2aef0cd8e9583e6c147d325febba2ff692dabe3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USAR19800139,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,contemporary r&b,hip pop,r&b,urban contemporary,contemporary r&b,hip pop,r&b,urban contemporary",0.724,0.535,3.0,-7.616,0.0,0.0588,0.0477,0.0,0.0314,0.664,133.816,4.0,,Arista,P (P) 1998 Arista Records LLC,9363 +9364,spotify:track:252BHYUYVNpJLYqIjQ75zY,For You,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,spotify:album:3mendizPjqVORmu6mBQIDV,Rick Nelson Sings For You,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,1963-01-01,https://i.scdn.co/image/ab67616d0000b2737685ec3391767f92c755369f,1,1,138266,https://p.scdn.co/mp3-preview/cfcc857775241ab75ec817bdffb09b6d77fc323e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USMC10001322,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,doo-wop,rock-and-roll,rockabilly",0.729,0.673,7.0,-11.078,1.0,0.0527,0.124,1.36e-05,0.312,0.546,127.36,4.0,,Geffen*,"C © 1963 Geffen Records, P ℗ 1963 Geffen Records",9364 +9365,spotify:track:3G7tRC24Uh09Hmp1KZ7LQ2,I'm a Believer - 2006 Remaster,spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,spotify:album:50zHjIiTOZM232gnWvOydX,More of The Monkees (Deluxe Edition),spotify:artist:320EPCSEezHt1rtbfwH6Ck,The Monkees,1967-01-09,https://i.scdn.co/image/ab67616d0000b273360a1ae790aa71a0aac4983e,1,12,167373,https://p.scdn.co/mp3-preview/4a9306672cfd444df93eb6452005f33194b2cff5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USRH10651278,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,bubblegum pop,classic rock,folk rock,mellow gold,rock,rock-and-roll,singer-songwriter,soft rock,sunshine pop",0.526,0.775,0.0,-6.05,1.0,0.0352,0.707,2.05e-05,0.217,0.962,80.106,4.0,,Rhino,"C © 2006 Rhino Entertainment Company, P ℗ 2006 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Manufactured & Marketed by Rhino Entertainment Company",9365 +9366,spotify:track:6YV6tWYWV006L6Ypam9AYc,Mary Had A Little Boy,spotify:artist:2FrKQPjJe4pVMZOgm0ESOx,SNAP!,spotify:album:09xVlDSKLulyXtJelvEc8T,World Power,spotify:artist:2FrKQPjJe4pVMZOgm0ESOx,SNAP!,1990,https://i.scdn.co/image/ab67616d0000b27343ce5fdc0241abdc8b58eb80,1,7,293866,https://p.scdn.co/mp3-preview/212f9fe07e828c5f6873378624296ff35bb483c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DET189000700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,german techno,hip house",0.867,0.58,10.0,-14.174,0.0,0.054,0.0229,0.0314,0.113,0.96,120.868,4.0,,Bookmark,"C 1990 Anzilotti & Münzing, P 1990 Anzilotti & Münzing",9366 +9367,spotify:track:2DRRuNEvqE8LeUO6wcE63q,Australiana,spotify:artist:5qTZ9vH8R6tz5H9QWXNf6T,Austen Tayshus,spotify:album:30SFPe3344n3w0Gzs01Rjd,The Mule (Original Soundtrack),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-02-06,https://i.scdn.co/image/ab67616d0000b27308a2a8e78ff4520276a17a6a,1,11,263813,https://p.scdn.co/mp3-preview/048927d9b1506070f9708d5068f82ba8f824724f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUDJ01401221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian comedy,0.464,0.984,1.0,-3.134,1.0,0.711,0.928,0.0,0.982,0.346,77.745,3.0,,Remote Control,"C 2015 Under Exclusive License to Remote Control, P 2015 Under Exclusive License to Remote Control",9367 +9368,spotify:track:2QD7DklEvkqncYacmhMukq,Call It What You Want,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:4fW1sFeE43nuZlAw2xtmC3,reputation,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2017-11-10,https://i.scdn.co/image/ab67616d0000b2732bc33ce6acd39112e88b4c0e,1,14,203506,https://p.scdn.co/mp3-preview/3188f3522112569b1406de6676e6211456d1ce30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY1750015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.598,0.504,9.0,-9.874,1.0,0.0731,0.186,0.000221,0.34,0.252,163.954,4.0,,"Big Machine Records, LLC","C © 2017 Big Machine Label Group, LLC, P ℗ 2017 Big Machine Label Group, LLC",9368 +9369,spotify:track:1mea3bSkSGXuIRvnydlB5b,Viva La Vida,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,spotify:album:1CEODgTmTwLyabvwd7HBty,Viva La Vida or Death and All His Friends,spotify:artist:4gzpq5DPGxSnKTe4SA8HAU,Coldplay,2008-05-26,https://i.scdn.co/image/ab67616d0000b273e21cc1db05580b6f2d2a3b6e,1,7,242373,https://p.scdn.co/mp3-preview/fb9f4a9b0887326776b4fb7c6d331acd167a7778?cid=9950ac751e34487dbbe027c4fd7f8e99,False,86,GBAYE0800265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"permanent wave,pop",0.486,0.617,5.0,-7.115,0.0,0.0287,0.0954,3.23e-06,0.109,0.417,138.015,4.0,,Parlophone UK,"C © 2008 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2008 Parlophone Records Ltd, a Warner Music Group Company",9369 +9370,spotify:track:2BgEsaKNfHUdlh97KmvFyo,2002,spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,spotify:album:7lPoGKpCGgdKFAxpudhAH5,Speak Your Mind (Deluxe),spotify:artist:1zNqDE7qDGCsyzJwohVaoX,Anne-Marie,2018-04-27,https://i.scdn.co/image/ab67616d0000b27338aae75dc37fb42457866ffd,1,10,186986,https://p.scdn.co/mp3-preview/d469ce8346ff12dcd2af05877d99662a0b334eca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBAHS1800094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.697,0.683,1.0,-2.881,0.0,0.117,0.0372,0.0,0.137,0.603,96.133,4.0,,Atlantic Records UK,"C © 2018 Major Tom's / Asylum Records, a division of Warner Music UK Limited with the exception of tracks 3 and 13 (P) 2015, track 17 (P) 2016 and tracks 2, 5, 9 (P) 2017 Major Tom's / Asylum Records, a division of Warner Music UK Limited and track 7 (P) 2018 Joytime Collective under exclusive licence to Asylum Records, a division of Warner Music UK Limited and track 18 (P)2018 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company, P ℗ 2018 Major Tom's / Asylum Records, a division of Warner Music UK Limited with the exception of tracks 3 and 13 (P) 2015, track 17 (P) 2016 and tracks 2, 5, 9 (P) 2017 Major Tom's / Asylum Records, a division of Warner Music UK Limited and track 7 (P) 2018 Joytime Collective under exclusive licence to Asylum Records, a division of Warner Music UK Limited and track 18 (P)2018 What A Music Ltd, Under Exclusive Licence to Parlophone/Warner Music France, a Warner Music Group Company",9370 +9371,spotify:track:3Yh3KYs4ATFflimMQ3aZwT,Constantly (L'Edera) - 2007 Remaster,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:4tlAPVPMmE4rhnkctUdCeG,75 at 75,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,2015-09-18,https://i.scdn.co/image/ab67616d0000b2738944373ae74b96dde11cd421,1,26,159013,https://p.scdn.co/mp3-preview/4901e3137bb06ee681eb6b0c93bdb88c4ed42c9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE1500767,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.229,0.418,0.0,-8.731,1.0,0.0294,0.43,0.0,0.415,0.475,167.696,4.0,,Rhino,"C © 2015 Warner Music UK Limited, P ℗ 2015 this compilation Warner Music UK Limited",9371 +9372,spotify:track:03OArDwBMEgtTDcty84Rcp,The Last Waltz,spotify:artist:17XXKfRBMCWvLrqGoNkJXm,Engelbert Humperdinck,spotify:album:5c91uYKAFjDmwGCW87pRyx,The Last Waltz,spotify:artist:17XXKfRBMCWvLrqGoNkJXm,Engelbert Humperdinck,1967-11-25,https://i.scdn.co/image/ab67616d0000b273527b286ffda49e09166a6c0e,1,1,184186,https://p.scdn.co/mp3-preview/4f0aea808e021edba56aa20a796a6a471ef014e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBF076700600,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.406,0.441,2.0,-11.318,1.0,0.0299,0.718,1.71e-06,0.196,0.42,109.099,3.0,,Decca (UMO),"C © 1967 Decca, a division of Universal Music Operations Limited, P ℗ 2017 Chrysalis Copyrights Limited, a BMG company, under exclusive license to Decca Records, a division of Universal Music Operations Limited",9372 +9373,spotify:track:1OUxBM6TphEnDh4EQkNRv1,Rhythm Of Love,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,spotify:album:7FplR3lBJRouGVp8ltKk0M,Wonders Of The Younger (International Version),spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,2010-01-01,https://i.scdn.co/image/ab67616d0000b2732ce79642e7d1d057d8b26b4a,1,4,200200,https://p.scdn.co/mp3-preview/234b0fb656d49714fda8f3035db44ea281ec69ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USHR11031263,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,neo mellow,neon pop punk,pop punk,pop rock",0.531,0.549,8.0,-7.895,1.0,0.0378,0.363,0.0,0.118,0.681,171.781,4.0,,Hollywood Records,"C © 2010 Hollywood Records Inc,, P ℗ 2010 Hollywood Records Inc,",9373 +9374,spotify:track:02GF9DnOcpwEgtebARaQVz,Big Yellow Taxi,"spotify:artist:0vEsuISMWAKNctLlUAhSZC, spotify:artist:5ILrArfIV0tMURcHJN8Q07","Counting Crows, Vanessa Carlton",spotify:album:0LhstvCjbg2vx8vi3oAJL6,Hard Candy (Revised International Version),spotify:artist:0vEsuISMWAKNctLlUAhSZC,Counting Crows,2002-01-01,https://i.scdn.co/image/ab67616d0000b2735575f7c63d1114b2fbdf26c5,1,15,226826,https://p.scdn.co/mp3-preview/4098f541056c43bb4690a09feeca27b70bcda548?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10211754,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop rock,post-grunge,rock,lilith,neo mellow,piano rock,pop rock,post-teen pop",0.674,0.867,1.0,-4.329,1.0,0.0462,0.00199,0.0,0.206,0.817,88.039,4.0,,Universal Music Group,"C © 2002 Geffen Records, P ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",9374 +9375,spotify:track:31MOjWj3CT3dCQsMV2b8Wu,Blue Monday '88,spotify:artist:0yNLKJebCb8Aueb54LYya3,New Order,spotify:album:6cjugjFHB3T1alJxAffyxQ,The Best of New Order,spotify:artist:0yNLKJebCb8Aueb54LYya3,New Order,1994-01-01,https://i.scdn.co/image/ab67616d0000b273c621e025f32cc28a1ec86e3b,1,15,244720,https://p.scdn.co/mp3-preview/429b7fd8df19d213647306ef3239e91337f51667?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBANP9400071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,madchester,new romantic,new wave,permanent wave,post-punk,synthpop,uk post-punk",0.681,0.893,7.0,-8.485,1.0,0.0378,6.47e-05,0.383,0.0626,0.951,130.475,4.0,,London Records,"C © 1994 Warner Music UK Limited, P ℗ 1994 This compilation: Warner Music UK Limited",9375 +9376,spotify:track:1lDWb6b6ieDQ2xT7ewTC3G,Somebody Told Me,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,spotify:album:6TJmQnO44YE5BtTxH8pop1,Hot Fuss,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,2004-06-15,https://i.scdn.co/image/ab67616d0000b273797febe9f06dd027b67a3e64,1,4,197160,https://p.scdn.co/mp3-preview/9d5dccc54383f11aace0193ad05d28f6573be190?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20400195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,modern rock,permanent wave,rock",0.51,0.981,10.0,-3.191,0.0,0.0901,7.76e-05,0.00142,0.111,0.723,138.039,4.0,,Universal Music Group,"C (C) 2004 The Island Def Jam Music Group, P (P) 2004 The Island Def Jam Music Group",9376 +9377,spotify:track:5wtgVhDXScPGQkNr8LTKgf,You Weren't in Love with Me,spotify:artist:72TwyCcvk2jm4gZSGEPjhb,Billy Field,spotify:album:3RotBnRK5HbDnVGaFMDP24,Best Of: You Weren't in Love with Me (Remastered),spotify:artist:72TwyCcvk2jm4gZSGEPjhb,Billy Field,2005-10-31,https://i.scdn.co/image/ab67616d0000b27357aa7d9ea1ab9a765720c2d1,1,1,203960,https://p.scdn.co/mp3-preview/172766b2c5211b772a67cf28d3d372a6560e2d04?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AU3O01100746,spotify:user:bradnumber1,2020-03-05T09:20:32Z,australian rock,0.547,0.444,5.0,-9.452,1.0,0.0279,0.22,0.0,0.237,0.393,121.948,4.0,,Rocket Group Pty Ltd,"C 2005 Aztec Music, P 2005 Aztec Music",9377 +9378,spotify:track:0ntQJM78wzOLVeCUAW7Y45,Sex on Fire,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,spotify:album:5CZR6ljD0x9fTiS4mh9wMp,Only By The Night,spotify:artist:2qk9voo8llSGYcZ6xrBzKx,Kings of Leon,2008-09-23,https://i.scdn.co/image/ab67616d0000b2732519d01c0cca06f134eeadd8,1,3,203346,https://p.scdn.co/mp3-preview/6806855988e246016413cc8a34a2afe862f3988d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,USRC10800300,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,rock",0.542,0.905,9.0,-5.653,1.0,0.054,0.00172,0.0104,0.136,0.374,153.398,4.0,,RCA/Legacy,"P (P) 2008 RCA Records, a division of Sony Music Entertainment",9378 +9379,spotify:track:0pNeVovbiZHkulpGeOx1Gj,Something - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:0ETFjACtuP2ADo6LFhL6HN,Abbey Road (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1969-09-26,https://i.scdn.co/image/ab67616d0000b273dc30583ba717007b00cceb25,1,2,182293,https://p.scdn.co/mp3-preview/104949214901a426c39555215ec79d8a30d6d905?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBAYE0601691,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.406,0.338,0.0,-10.872,1.0,0.0303,0.195,2.57e-06,0.138,0.379,132.875,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",9379 +9380,spotify:track:2qOHFFdDWRgFhzaIknnlFy,Time After Time - Radio Edit,spotify:artist:2nf8ZR0EAY3toBqLz98PxU,Novaspace,spotify:album:7mUqaNplAplHAU5tak9mH3,Supernova,spotify:artist:2nf8ZR0EAY3toBqLz98PxU,Novaspace,2004-01-01,https://i.scdn.co/image/ab67616d0000b273c25a07b48f7ed5e7bbf65fa9,1,1,224826,https://p.scdn.co/mp3-preview/2572b2e780a7c57a0d5e6c4861584f6023c9240d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,DES230200140,spotify:user:bradnumber1,2023-11-28T13:16:48Z,"cantaditas,eurodance",0.629,0.921,0.0,-5.777,1.0,0.0484,0.0969,0.000891,0.191,0.256,137.991,4.0,,NITRON music,P (P) 2003 NITRON music a division of Sony Music Entertainment Germany GmbH,9380 +9381,spotify:track:7dgchxZzWwcp0pcBXaxR1y,Troublemaker,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,spotify:album:6gb2ElTs9F0IYPoW3XXo7B,TY.O,spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,2011-01-01,https://i.scdn.co/image/ab67616d0000b273d7ed9ada47a0f517143771cd,1,2,220280,https://p.scdn.co/mp3-preview/3cf7739ecef21837f2f96709176d97c4b836ec8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,GBUM71105030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.689,0.733,11.0,-4.541,0.0,0.069,0.169,0.0,0.164,0.482,125.014,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records, a division of Universal Music Operations Limited, P ℗ 2011 Universal Island Records, a division of Universal Music Operations Limited",9381 +9382,spotify:track:3AFfyUXTfj12PgrOkZiiJo,Treat You Better,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:51n1JXEvKgR1AaTnnfA6SS,Illuminate,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2017-04-20,https://i.scdn.co/image/ab67616d0000b27390516133f6344cb3dad263c2,1,4,187973,https://p.scdn.co/mp3-preview/964acb3eecee3568fb10baf97d094b34887fb292?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71604711,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.748,0.819,10.0,-4.032,0.0,0.198,0.13,0.0,0.111,0.792,110.645,3.0,,Universal Music Group,"C © 2016 Island Records, a division of UMG Recordings, Inc., P ℗ 2017 Island Records, a division of UMG Recordings, Inc.",9382 +9383,spotify:track:4eWQlBRaTjPPUlzacqEeoQ,Never Be the Same,spotify:artist:4nDoRrQiYLoBzwC5BhVJzF,Camila Cabello,spotify:album:2vD3zSQr8hNlg0obNel4TE,Camila,spotify:artist:4nDoRrQiYLoBzwC5BhVJzF,Camila Cabello,2018-01-12,https://i.scdn.co/image/ab67616d0000b2736eb0b9e73adcf04e4ed3eca4,1,1,226973,https://p.scdn.co/mp3-preview/24f20244e3ebd6ef0242cf3b3ec21b112c3c06f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USSM11710323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.637,0.713,0.0,-4.333,1.0,0.0747,0.181,0.000637,0.137,0.243,129.923,4.0,,Syco Music/Epic,"P (P) 2018 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",9383 +9384,spotify:track:3lhvsoVWgs45RwQZnqJc3q,Foolish Games,spotify:artist:6FbDoZnMBTdhhhLuJBOOqP,Jewel,spotify:album:005o0qhKZjuQ7lxrp9hQRz,Greatest Hits,spotify:artist:6FbDoZnMBTdhhhLuJBOOqP,Jewel,2013-02-01,https://i.scdn.co/image/ab67616d0000b2734ae7d86c3199c481e23167c0,1,3,242800,https://p.scdn.co/mp3-preview/aceaf498fbd84686a1ff0bd7ed15677a8bb68e30?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USWB19700640,spotify:user:bradnumber1,2024-01-20T05:40:25Z,"alaska indie,ectofolk,lilith,permanent wave,pop rock,singer-songwriter",0.464,0.215,6.0,-9.962,1.0,0.0317,0.899,1.07e-06,0.108,0.149,130.859,4.0,,Craft Recordings,"C © 2013 Jewel., Under exclusive license to Craft Recordings. Distributed by Concord., P This Compilation ℗ 2013 Jewel., Under exclusive license to Craft Recordings. Distributed by Concord.",9384 +9385,spotify:track:3Wt0oKJ4Tqv83dOyIWkSvw,Yippiyo-Ay,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:5ramB76eNmvFlL1cJ8mw2s,Apocalypso,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2009-01-01,https://i.scdn.co/image/ab67616d0000b2733318282bfa1b2c5c7ed36274,1,5,272520,https://p.scdn.co/mp3-preview/2f87ab6df6221ed019593f465103aae9adaecb5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70800156,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.696,0.94,2.0,-3.967,1.0,0.0595,0.0562,0.00156,0.11,0.348,119.999,4.0,,Modular,"C © 2009 Modular Recordings, P ℗ 2009 Modular Recordings",9385 +9386,spotify:track:6KEWtSOGKpIXGw6l1uJgsR,The Things We Do For Love,spotify:artist:6i6WlGzQtXtz7GcC5H5st5,10cc,spotify:album:6D3RQD5AQZ4P2aDzsZmBI4,Deceptive Bends,spotify:artist:6i6WlGzQtXtz7GcC5H5st5,10cc,1977,https://i.scdn.co/image/ab67616d0000b273f93159d78849714fcf118bb3,1,2,207573,https://p.scdn.co/mp3-preview/9753ed4bec17d170ebf91b19145f1295496b94a6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,GBF087600005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,glam rock,mellow gold,new romantic,soft rock,symphonic rock,yacht rock",0.637,0.528,1.0,-9.837,1.0,0.0394,0.163,0.0,0.122,0.781,106.949,4.0,,EMI,"C © 1997 Mercury Records Limited, P ℗ 1997 Mercury Records Limited",9386 +9387,spotify:track:1SCnrq7aAvg2MIddieSQ9n,Let It Out (Let It All Hang Out),spotify:artist:5Kd7EaN14eunBIyNux2c3z,The Hombres,spotify:album:2vy7nyuCnUj8vGNW3mrwMl,60's Gold,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2006-06-27,https://i.scdn.co/image/ab67616d0000b2734453e6115a25eab6abbf022c,2,11,123693,https://p.scdn.co/mp3-preview/4639989864c615a745a17c288c3b57db1f81ae57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USUR10301275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.736,0.489,9.0,-9.717,1.0,0.0575,0.396,2.3e-06,0.0492,0.862,121.365,4.0,,Hip-O,"C © 2006 Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2006 Universal Music Enterprises, a Division of UMG Recordings, Inc.",9387 +9388,spotify:track:4RADreHMvMkZwsPgPr9z5c,"Rhythm Is A Dancer - 7"" Edit",spotify:artist:2FrKQPjJe4pVMZOgm0ESOx,SNAP!,spotify:album:2TrNT4qm7qDIRTUVn9jBW4,The Madman's Return,spotify:artist:2FrKQPjJe4pVMZOgm0ESOx,SNAP!,1992-01-01,https://i.scdn.co/image/ab67616d0000b273f2bb243604066dc0b62b66a1,1,9,225882,https://p.scdn.co/mp3-preview/e60a4c8855d3b3fce29551de7fd77b786b177893?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,DET189200900,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,german techno,hip house",0.794,0.745,9.0,-11.367,0.0,0.037,0.273,0.000414,0.143,0.706,124.249,4.0,,BMG Rights Management GmbH,"C © 1991 BMG Rights Management GmbH, P ℗ 1991 BMG Rights Management GmbH",9388 +9389,spotify:track:0eGsygTp906u18L0Oimnem,Mr. Brightside,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,spotify:album:6TJmQnO44YE5BtTxH8pop1,Hot Fuss,spotify:artist:0C0XlULifJtAgn6ZNCW2eu,The Killers,2004-06-15,https://i.scdn.co/image/ab67616d0000b273797febe9f06dd027b67a3e64,1,2,222075,https://p.scdn.co/mp3-preview/848b1bd5544e82f62f9cfcec65362d0f5369781f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USIR20400274,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,modern rock,permanent wave,rock",0.351,0.928,1.0,-3.71,1.0,0.0759,0.00113,0.0,0.0988,0.239,148.03,4.0,,Universal Music Group,"C (C) 2004 The Island Def Jam Music Group, P (P) 2004 The Island Def Jam Music Group",9389 +9390,spotify:track:24nRdDUUIdM2mv1YdwMdu6,Apologize,"spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ, spotify:artist:5Pwc4xIPtQLFEnJriah9YJ","Timbaland, OneRepublic",spotify:album:72c3ugX0yPaFCtEuHPDXaY,Dreaming Out Loud (International Version),spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2007-01-01,https://i.scdn.co/image/ab67616d0000b273bb1b5ad136dc5176a70e8e74,1,14,184826,https://p.scdn.co/mp3-preview/63f9f595b145e2e44dde588be411e3dc831d5861?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70722793,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,piano rock,pop",0.657,0.588,8.0,-6.005,1.0,0.0272,0.0252,0.0,0.087,0.105,118.022,4.0,,Universal Music Group,"C © 2007 Mosley Music/Interscope Records, P ℗ 2007 Mosley Music/Interscope Records",9390 +9391,spotify:track:1kgw52pWfmHsXP0eAmduLg,All The Pretty Girls,spotify:artist:5ujrA1eZLDHR7yQ6FZa2qA,Vera Blue,spotify:album:6tt3amOoZSv583etjVceXK,All The Pretty Girls,spotify:artist:5ujrA1eZLDHR7yQ6FZa2qA,Vera Blue,2018-10-26,https://i.scdn.co/image/ab67616d0000b2731006f506d95e63cb0297d183,1,1,202628,https://p.scdn.co/mp3-preview/55fc200ffba6218912a5f42b445f4338a04866da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUUM71801059,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian pop",0.708,0.591,11.0,-5.825,1.0,0.0348,0.415,0.0,0.117,0.618,120.976,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Universal Music Australia Pty Ltd., P ℗ 2018 Universal Music Australia Pty Ltd.",9391 +9392,spotify:track:3nnG7AM9QopHVPEuLX3Khk,Let It Go,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,spotify:album:3GqsyMrJu3o8jLiGyBsBQW,Chaos And The Calm,spotify:artist:4EzkuveR9pLvDVFNx6foYD,James Bay,2015-03-20,https://i.scdn.co/image/ab67616d0000b273066483b34a405583429b8049,1,3,260532,https://p.scdn.co/mp3-preview/a60716daa900634a540a8cdd10a229f3bb5b42ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USUM71405265,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,pop,uk pop",0.536,0.311,1.0,-10.396,1.0,0.0288,0.82,1.65e-05,0.107,0.246,147.486,4.0,,Universal Records,"C © 2015 Republic Records, a division of UMG Recordings, Inc., P ℗ 2015 Republic Records, a division of UMG Recordings, Inc.",9392 +9393,spotify:track:3GGcwG519BTMdvMeFy7meT,Lady Marmalade,spotify:artist:0ty0xha1dbprYIUAQufkFn,Patti LaBelle,spotify:album:2fgrmnOGJzwU79xlHe4Iub,Best Of Patti Labelle,spotify:artist:0ty0xha1dbprYIUAQufkFn,Patti LaBelle,1982,https://i.scdn.co/image/ab67616d0000b273d7da590709ca74f76e2e3900,1,1,235266,https://p.scdn.co/mp3-preview/fa4ec25b2cd8208859bdf7ab481601188507af2a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USSM10026922,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,philly soul,quiet storm,r&b,soul,urban contemporary",0.571,0.654,2.0,-11.034,0.0,0.0501,0.551,0.0,0.0599,0.947,117.955,4.0,,Epic,"P (P) 1974, 1977, 1978, 1979, 1980, 1982 SONY BMG MUSIC ENTERTAINMENT",9393 +9394,spotify:track:2ogKhhoMClkFXek7ZgxAhN,Shameless,spotify:artist:4nDoRrQiYLoBzwC5BhVJzF,Camila Cabello,spotify:album:3Vsbl0diFGw8HNSjG8ue9m,Romance,spotify:artist:4nDoRrQiYLoBzwC5BhVJzF,Camila Cabello,2019-12-06,https://i.scdn.co/image/ab67616d0000b2735f53c0dbe5190a0af0fa28f3,1,1,219742,https://p.scdn.co/mp3-preview/251fd51f331017b3bc8f3879be028ad75f91d6d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USSM11905431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.377,0.651,4.0,-5.437,0.0,0.0589,0.0197,5.31e-05,0.174,0.0851,129.607,4.0,,Syco Music/Epic,"P (P) 2019 Simco Ltd. under exclusive license to Epic Records, a division of Sony Music Entertainment",9394 +9395,spotify:track:1VA38sp5Jr6vWxgoIcnxKN,Just A Girl,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,spotify:album:22MtHr01EzeL6jmc5uwpHC,Tragic Kingdom,spotify:artist:0cQbJU1aAzvbEmTuljWLlF,No Doubt,1995-10-10,https://i.scdn.co/image/ab67616d0000b273ada8d00d23273a097e6df364,1,3,208400,https://p.scdn.co/mp3-preview/1cd97aefe74cf314ed91011a50adec3cc4e81918?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR19500272,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,dance rock,permanent wave,pop rock,rock",0.641,0.914,2.0,-4.798,1.0,0.05,0.0799,6.54e-05,0.132,0.723,107.996,4.0,,Trauma,"C © 1995 Interscope Records, P ℗ 1995 Interscope Records",9395 +9396,spotify:track:0TBFJanfWaByPIi3f7RR82,Waiting,spotify:artist:1TulCA2zO3YxAjQ7ZsvtDq,KIAN,spotify:album:7JiEShsTUo1L5o3rkeognS,Waiting,spotify:artist:1TulCA2zO3YxAjQ7ZsvtDq,KIAN,2018-11-30,https://i.scdn.co/image/ab67616d0000b27338c59c16d9293cb05833f0b2,1,1,215653,https://p.scdn.co/mp3-preview/bac3ebd13cf11783fc513f2f40f58b22a59cf097?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUBEC1826597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.787,0.448,4.0,-7.671,0.0,0.0508,0.372,0.0,0.0779,0.471,138.03,4.0,,KB Recording Pty Ltd,"C © 2018 KB Recording Pty Ltd, under exclusive license to Republic Records, a division of UMG Recordings, Inc., P ℗ 2018 KB Recording Pty Ltd, under exclusive license to Republic Records, a division of UMG Recordings, Inc.",9396 +9397,spotify:track:3tm6LVXZJg0lG4hQm5ytrT,Brand New Key,spotify:artist:6sOP8RUFR0q0nBOBOXGdBK,Melanie,spotify:album:0d0QHnq1JlNiBTQhC1eKRS,Beautiful People: The Greatest Hits of Melanie,spotify:artist:6sOP8RUFR0q0nBOBOXGdBK,Melanie,1999-07-01,https://i.scdn.co/image/ab67616d0000b273275a3e31ea8b473fad22de0a,1,5,144866,https://p.scdn.co/mp3-preview/cab1dc004dbffeaf52240be6facdbd863ac8c4d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USBR17100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk,persian pop",0.667,0.412,1.0,-7.544,1.0,0.0353,0.817,0.0,0.107,0.82,83.816,4.0,,Buddha Records,"P (P) 1999, Buddha Records",9397 +9398,spotify:track:0wIhWLNLIOmzQ89B3rtTd3,It's Not Over,spotify:artist:5P5FTygHyx2G57oszR3Wot,Daughtry,spotify:album:7MEQdKzqoG2QJYcT2XEKsW,Daughtry,spotify:artist:5P5FTygHyx2G57oszR3Wot,Daughtry,2006-11-20,https://i.scdn.co/image/ab67616d0000b2730b9c38fede4b4c41f419cc8e,1,1,215026,https://p.scdn.co/mp3-preview/72843897acafc8b47af3ab79358349c5e08adefd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBCTA0600228,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,neo mellow,pop rock,post-grunge",0.426,0.92,10.0,-3.243,0.0,0.0599,0.0559,0.0,0.245,0.296,145.944,4.0,,RCA Records Label,"P (P) 2006 19 Recordings Ltd. under exclusive license to RCA Records, a division of Sony Music Entertainment",9398 +9399,spotify:track:4Bza6algEDbY8yrm8qMeg7,She's All I Ever Had,spotify:artist:7slfeZO9LsJbWgpkIoXBUJ,Ricky Martin,spotify:album:1k1Cr3nlJDa8pvwZUJ5xfj,Ricky Martin,spotify:artist:7slfeZO9LsJbWgpkIoXBUJ,Ricky Martin,1999,https://i.scdn.co/image/ab67616d0000b273e7e9b85cc1f021ec12130d80,1,3,295333,https://p.scdn.co/mp3-preview/2de75735245b27dcd69d86e7c810f7f66f695374?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,NLB639920012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"latin pop,mexican pop,puerto rican pop",0.393,0.765,11.0,-5.924,1.0,0.0481,0.0172,0.0,0.227,0.274,81.088,4.0,,C2Records/Columbia,"P 1995 Sony Music Entertainment (México) S.A. de C.V.,1998 Sony Music Entertainment Inc.,1999 Sony Music Entertainment (Holland) B.V",9399 +9400,spotify:track:2fbXJ0VpxhW7j0qcg1DnoZ,Big Jet Plane,spotify:artist:4tvKz56Tr39bkhcQUTO0Xr,Angus & Julia Stone,spotify:album:0C29hfEJQdcyzpTHy8tTXr,Down The Way,spotify:artist:4tvKz56Tr39bkhcQUTO0Xr,Angus & Julia Stone,2010-03-12,https://i.scdn.co/image/ab67616d0000b273f11a093d3322196862fd7ce5,1,4,239120,https://p.scdn.co/mp3-preview/86edf08b0de37d9d94b506bb41888ea9660df009?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,AUAP10900011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie folk,indie folk",0.766,0.376,10.0,-8.622,0.0,0.0267,0.252,0.00861,0.0908,0.257,109.944,4.0,,Capitol,"C © 2010 Angus and Julia Stone Pty Limited, P ℗ 2010 Angus and Julia Stone Pty Limited",9400 +9401,spotify:track:73FAIyRYskQvh5YbDVSZnm,A Must to Avoid,spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,spotify:album:1GocNvETatEei10ng7bpJ9,"A's, B's & EP's",spotify:artist:48YxSlb23RAaCd4RyHcV9V,Herman's Hermits,2004-03-01,https://i.scdn.co/image/ab67616d0000b27322cf9dd2fc2a082b182ce95f,1,5,115773,https://p.scdn.co/mp3-preview/32e310c2e626c8775071d38d15dbdfedc7ed92d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBAYE6500709,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,folk rock,rock-and-roll,singer-songwriter",0.508,0.779,4.0,-4.976,1.0,0.0291,0.0335,7.17e-06,0.348,0.851,135.327,4.0,,Parlophone UK,"C © 2004 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2004 Parlophone Records Ltd, a Warner Music Group Company",9401 +9402,spotify:track:1NOeZ7ZIVKMebuza26rofd,"Because You Loved Me (Theme from ""Up Close and Personal"")",spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:55UPmpHLvZKGgTPUD1woES,Falling Into You,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1996-02-28,https://i.scdn.co/image/ab67616d0000b27358c80c8f4e3e23311906f9c4,1,2,273666,https://p.scdn.co/mp3-preview/0eb419f98637381b3d5ef232c909eb541231ee37?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAC229600025,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.614,0.466,1.0,-9.881,1.0,0.0327,0.314,0.0,0.099,0.178,119.916,4.0,,Columbia,P (P) 1996 Sony Music Entertainment (Canada) Inc.,9402 +9403,spotify:track:3FsPxHAATCITLHZZVIa7Us,Humpin' Around - Radio Edit,spotify:artist:62sPt3fswraiEPnKQpAbdE,Bobby Brown,spotify:album:4LbbUj2bytdZ1PWEs69QCn,'90s Soul Number 1's,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-01-01,https://i.scdn.co/image/ab67616d0000b273a9b18710e8f15c9c6ed078ec,1,8,322000,https://p.scdn.co/mp3-preview/0e1af864d5f28370787f66e48fe9b9d52c60c693?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USMC19238734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary r&b,new jack swing,r&b,urban contemporary",0.746,0.804,10.0,-7.167,0.0,0.0424,0.00618,0.0199,0.0536,0.662,110.07,4.0,,Universal Music Group International,"C © 2007 Universal International Music B.V., P This Compilation ℗ 2007 Universal International Music B.V.",9403 +9404,spotify:track:3XoflnowYPFRPOh3uFvHcm,Selfish Love (with Selena Gomez),"spotify:artist:540vIaP2JwjQb9dm3aArA4, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","DJ Snake, Selena Gomez",spotify:album:0WvtxtkwXaFDLrmOl9mXDQ,Selfish Love (with Selena Gomez),"spotify:artist:540vIaP2JwjQb9dm3aArA4, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","DJ Snake, Selena Gomez",2021-03-04,https://i.scdn.co/image/ab67616d0000b2730a4a6bb7959ab3a38ff60324,1,1,168648,https://p.scdn.co/mp3-preview/fc6a7e162b4b86e0416d1d0e5071802f54ed777c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USUG12100197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electronic trap,pop,pop dance,pop,post-teen pop",0.723,0.646,5.0,-7.973,0.0,0.102,0.0206,0.352,0.0994,0.443,110.971,4.0,,DJ Snake Music Productions Limited,"C © 2021 DJ Snake Music Productions Limited, under exclusive license to Interscope Records, P ℗ 2021 DJ Snake Music Productions Limited, under exclusive license to Interscope Records",9404 +9405,spotify:track:4fouWK6XVHhzl78KzQ1UjL,abcdefu,spotify:artist:2VSHKHBTiXWplO8lxcnUC9,GAYLE,spotify:album:6tUQPKlpR4x1gjrXTtOImI,abcdefu,spotify:artist:2VSHKHBTiXWplO8lxcnUC9,GAYLE,2021-08-13,https://i.scdn.co/image/ab67616d0000b2732842f743ebd32235bceb43d3,1,1,168601,https://p.scdn.co/mp3-preview/e13e3bf98cefdca448a1b31ee123a890be0e113c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USAT22103652,spotify:user:bradnumber1,2022-04-05T08:07:34Z,"alt z,modern alternative pop",0.695,0.54,4.0,-5.692,1.0,0.0493,0.299,0.0,0.367,0.415,121.932,4.0,,Atlantic/Arthouse Records,"C © 2021 Atlantic Recording Corporation, P ℗ 2021 Atlantic Recording Corporation",9405 +9406,spotify:track:4C6Uex2ILwJi9sZXRdmqXp,Super Freaky Girl,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:0h5MuD9O9o1VoN07mQmwMQ,Super Freaky Girl,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2022-08-12,https://i.scdn.co/image/ab67616d0000b273c2b3ab9829aefad24fa2c1bc,1,1,170977,https://p.scdn.co/mp3-preview/cc54a94a06d0a1718fc56ab89f66a7dd7130fa2e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,68,USUM72215262,spotify:user:bradnumber1,2022-08-31T00:26:58Z,"hip pop,pop,queens hip hop,rap",0.95,0.891,2.0,-2.653,1.0,0.241,0.0645,1.77e-05,0.309,0.912,133.01,4.0,,Republic Records,"C © 2022 Republic Records, a division of UMG Recordings, Inc., P ℗ 2022 Republic Records, a division of UMG Recordings, Inc.",9406 +9407,spotify:track:30Gd3snWllczPbz2Gd0JMe,Like Toy Soldiers,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:4F1k3oxk5iTQKenjkBpDe4,Encore,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2004-11-12,https://i.scdn.co/image/ab67616d0000b273edc3b754981904bae77321f9,1,5,296880,https://p.scdn.co/mp3-preview/2733074356009584e83b2359750f7dcc1ffe6b93?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10400812,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.52,0.768,8.0,-3.489,0.0,0.359,0.0193,0.00034,0.104,0.398,79.178,4.0,,Universal Music Group,"C © 2004 Aftermath Entertainment/Interscope Records, P ℗ 2004 Aftermath Entertainment/Interscope Records",9407 +9408,spotify:track:2cNCaMkur4qF0lNwJWBf6b,The Girl Is Mine,spotify:artist:7aLdKgvXgDQz0wi5z2PKMV,99 Souls,spotify:album:7Il6JWULBkO3Huz8AN6jeD,The Girl Is Mine feat. Destiny's Child & Brandy,spotify:artist:7aLdKgvXgDQz0wi5z2PKMV,99 Souls,2016-01-16,https://i.scdn.co/image/ab67616d0000b27397fa0189b378e56b2c25f08b,1,1,216613,https://p.scdn.co/mp3-preview/793590460a1ac6577c25ac2bd5aff6b9f2b9e2a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBARL1501500,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"house,uk house",0.683,0.943,9.0,-3.6,1.0,0.0397,0.00423,0.0972,0.0356,0.706,118.991,4.0,,Resilience Records/Nothing Else Matters/RCA,"P (P) 2015 Resilience Records, under exclusive license to Sony Music Entertainment UK Limited",9408 +9409,spotify:track:1oHNvJVbFkexQc0BpQp7Y4,Starships,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:6OfCOPtcPuhlAovGJ52uZO,Pink Friday ... Roman Reloaded,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2011-01-01,https://i.scdn.co/image/ab67616d0000b27385235715597dcd07bb9e0f84,1,10,210626,https://p.scdn.co/mp3-preview/394733516cbfb50de32d089428542875e77251ed?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USCM51200060,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,queens hip hop,rap",0.747,0.716,11.0,-2.457,0.0,0.0751,0.135,0.0,0.251,0.751,125.006,4.0,,Nicki Minaj/Cash Money,"C © 2011 Cash Money Records Inc., P ℗ 2011 Cash Money Records Inc.",9409 +9410,spotify:track:5Fo4UuaiJqHmu3X6ETvp66,#WHERESTHELOVE - Charity Single,"spotify:artist:1yxSLGMDHlW21z4YXirZDS, spotify:artist:0XFbUGJA4WiUB0umqslbHx","Black Eyed Peas, The World",spotify:album:5gLCuS93if9b8Xn09MgBAf,#WHERESTHELOVE,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2016-09-01,https://i.scdn.co/image/ab67616d0000b2731b570379155734f183425415,1,1,325386,https://p.scdn.co/mp3-preview/b795fec7767de777e8c98ab7e9f03f15b8e27d85?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71608632,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.521,0.667,8.0,-4.977,1.0,0.0458,0.509,0.0,0.102,0.494,91.007,4.0,,Universal Music Group,"C © 2016 Interscope Records, P ℗ 2016 Interscope Records",9410 +9411,spotify:track:3AuvUUnomjofL2uO02a2fV,Ready to Fly,spotify:artist:45zLG5M6J0SN3A8qVeNZmM,Amy Pearson,spotify:album:4bBKX4VnpwdytjZKlOSnXo,Who I Am,spotify:artist:45zLG5M6J0SN3A8qVeNZmM,Amy Pearson,2007-11-20,https://i.scdn.co/image/ab67616d0000b2736a1859a0240f6f58875ba96b,1,5,271760,https://p.scdn.co/mp3-preview/b089bf92482e9f6962b0bf133455c8e5f163ca1a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUBM00700448,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.392,0.483,2.0,-5.847,1.0,0.03,0.386,1.18e-06,0.0838,0.231,71.117,4.0,,Columbia,P (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,9411 +9412,spotify:track:1H5IfYyIIAlgDX8zguUzns,Suspicious Minds,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:3ekkFrfotMsEAKc5g71GHk,From Elvis in Memphis,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1969-06-17,https://i.scdn.co/image/ab67616d0000b273fdc0aa7765f3197ac9179ec7,1,13,261279,https://p.scdn.co/mp3-preview/e7072dbcb87f4c8c62f2dab5daa22be4a6eccb9b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,74,USRC16901355,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.487,0.382,7.0,-10.889,1.0,0.0309,0.0422,4.74e-06,0.411,0.714,116.557,4.0,,RCA/Legacy,P (P) 1969 Sony Music Entertainment,9412 +9413,spotify:track:02sVkQwO5pxoOu8QpyUFQq,Shoes,spotify:artist:5l9wiTZVfqQTfMDOt0HtwC,Tiga,spotify:album:3ip7kzEOMxlXIaBtiOFicl,Ciao!,spotify:artist:5l9wiTZVfqQTfMDOt0HtwC,Tiga,2009-04-27,https://i.scdn.co/image/ab67616d0000b273aff30ab14d524ec0386ede63,1,3,227746,https://p.scdn.co/mp3-preview/f5c7366ac141a6763dd186442f9b10ed46805d0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,BEP010900023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,canadian electronic,dance-punk,electroclash,electronica,filter house,microhouse,minimal techno,new rave",0.837,0.868,1.0,-5.141,1.0,0.0389,0.0179,0.515,0.107,0.88,123.004,4.0,,Different Recordings,"C 2009 Different Recordings, P 2009 3201937 Canada Inc",9413 +9414,spotify:track:4YNaKY0jTnfSa1a5fDnGsc,Echoes,spotify:artist:2qlAMLpUyBjZgnzuFXXZXI,Klaxons,spotify:album:4fhLcylFVQWOWcPh2om5yD,Surfing The Void,spotify:artist:2qlAMLpUyBjZgnzuFXXZXI,Klaxons,2010-01-01,https://i.scdn.co/image/ab67616d0000b273babbea87ac485679a24b0afa,1,1,228311,https://p.scdn.co/mp3-preview/1b05c59abd33604e606b5c7ef7d8b845a3dc3c52?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71011791,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,indie rock,modern rock,neo-synthpop,new rave",0.2,0.873,9.0,-4.331,1.0,0.0628,4.64e-05,0.00289,0.055,0.345,123.758,4.0,,Universal Music Group,"C © 2010 Klaxons, Under Exclusive License to Polydor Records Ltd. (UK), P ℗ 2010 Klaxons, Under Exclusive License to Polydor Records Ltd. (UK)",9414 +9415,spotify:track:7E81YAfHOaSlnevLjKMghT,Justified & Ancient,spotify:artist:6dYrdRlNZSKaVxYg5IrvCH,The KLF,spotify:album:1kJY7mRPwF5eJOf8DMZdwa,Solid State Logik 1,spotify:artist:6dYrdRlNZSKaVxYg5IrvCH,The KLF,2021-01-01,https://i.scdn.co/image/ab67616d0000b2738a8ed71d7332a6a4d1497f3e,1,7,228372,https://p.scdn.co/mp3-preview/53221a59371a34bc6d1060bca37ed7b7cbed08d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBCEL2000619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"acid house,ambient house,big beat,hip house",0.628,0.953,10.0,-4.989,0.0,0.0626,0.00276,0.0132,0.427,0.515,111.134,4.0,,KLF Communications,"C 2021 KLF Communications, P 2021 KLF Communications",9415 +9416,spotify:track:5hC6zj0AL4iwOBm7eepgEj,Sounds of Then (This Is Australia),spotify:artist:3CDzOX9D1buMRHeTNFHXMm,GANGgajang,spotify:album:4WMAkJDilQHHsBEwZ3TIis,GANGgajang,spotify:artist:3CDzOX9D1buMRHeTNFHXMm,GANGgajang,1985-11-01,https://i.scdn.co/image/ab67616d0000b273485659e45e3f0a4a5ac46cd7,1,2,233733,https://p.scdn.co/mp3-preview/2f5f70738834a8740bbdbc7bb0562896e39c7e71?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUIS20700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.7,0.526,11.0,-16.628,0.0,0.0299,0.024,0.0406,0.138,0.923,130.288,4.0,,IS Music,"C (C) 2007 IS Music, P (P) 2007 IS Music",9416 +9417,spotify:track:0wmey5UfcFvYvlp7y0uopE,He's Gonna Step on You Again,spotify:artist:1s64XtBG170B6uqwJDBGzc,The Party Boys,spotify:album:30B2qTf4TrQ36pVmJrgYLF,The Party Boys,spotify:artist:1s64XtBG170B6uqwJDBGzc,The Party Boys,1987-11-13,https://i.scdn.co/image/ab67616d0000b2735b1c3acfc4d1b32105279471,1,3,249693,https://p.scdn.co/mp3-preview/682a15bc843ab5aff73b1743e8d7734bb7191d26?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUSM09200038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.718,0.895,2.0,-10.228,1.0,0.0373,0.00498,3.08e-06,0.385,0.656,107.571,4.0,,Sony Music Entertainment,P (P) 1987 Sony Music Entertainment Australia Pty Ltd,9417 +9418,spotify:track:2J4P46vCFm1rPkNkp9pZWX,Ice Cream (with Selena Gomez),"spotify:artist:41MozSoPIsD1dJM0CLPjZF, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","BLACKPINK, Selena Gomez",spotify:album:2VBb4LRcRSACOfJWRUgVZl,Ice Cream (with Selena Gomez),"spotify:artist:41MozSoPIsD1dJM0CLPjZF, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","BLACKPINK, Selena Gomez",2020-08-28,https://i.scdn.co/image/ab67616d0000b2733709f2400b95a7c6f22a7ee0,1,1,175813,https://p.scdn.co/mp3-preview/0c3f3878be457d9196f20458a7d52d8c82885280?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,KRA402000131,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"k-pop,k-pop girl group,pop,pop,post-teen pop",0.79,0.729,9.0,-3.843,1.0,0.334,0.0342,9.31e-05,0.0411,0.904,159.989,4.0,,YG Entertainment/Interscope Records,"C © 2020 YG Entertainment, distributed through Interscope Records, P ℗ 2020 YG Entertainment, distributed through Interscope Records",9418 +9419,spotify:track:7EOS81Yg1NMcsfVKI1d89d,I Need Your Body,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,spotify:album:5BTIfPPssXalWtt6PubB9K,Strong As Steel,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,1990-10-22,https://i.scdn.co/image/ab67616d0000b27377e0bfdf16f533dfa7c83ca0,1,3,240001,https://p.scdn.co/mp3-preview/79ae5b531f3fb8051b7d47f5fd69988a6770df39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKPL0602553,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop,australian rock",0.69,0.773,10.0,-8.123,1.0,0.0377,0.272,0.0409,0.373,0.751,128.152,4.0,,Positive Dream,"C 1996 Positive Dream, P 1996 Positive Dream",9419 +9420,spotify:track:66hayvUbTotekKU3H4ta1f,Where Are Ü Now (with Justin Bieber),"spotify:artist:1HxJeLhIuegM3KgvPn8sTa, spotify:artist:5he5w2lnU9x7JFhnwcekXX, spotify:artist:5fMUXHkw8R8eOP2RNVYEZX, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Jack Ü, Skrillex, Diplo, Justin Bieber",spotify:album:6bfkwBrGYKJFk6Z4QVyjxd,Skrillex and Diplo present Jack Ü,"spotify:artist:1HxJeLhIuegM3KgvPn8sTa, spotify:artist:5he5w2lnU9x7JFhnwcekXX, spotify:artist:5fMUXHkw8R8eOP2RNVYEZX","Jack Ü, Skrillex, Diplo",2015-02-24,https://i.scdn.co/image/ab67616d0000b27357fc4730e06c9ab20c1e073b,1,9,250285,https://p.scdn.co/mp3-preview/baf97fea2e3e1c97092ac69426691b703d20d0e2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAT21500555,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,electro house,pop dance,brostep,complextro,edm,electro,pop dance,dance pop,edm,electro house,moombahton,pop dance,canadian pop,pop",0.432,0.781,4.0,-4.038,0.0,0.0567,0.041,4.21e-06,0.0789,0.197,139.432,4.0,,OWSLA/Mad Decent,"C © 2015 Atlantic Recording Corporation for the US and WEA International for the world outside the United States. A Warner Music Group Company, P ℗ 2015 Atlantic Recording Corporation for the US and WEA International for the world outside the United States. A Warner Music Group Company",9420 +9421,spotify:track:3SZLtkoHoECHHuOnNkNCuS,All of the Stars,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:7bXOViTvx6EHXuYFuI2yfj,The Fault In Our Stars: Music From The Motion Picture,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-05-19,https://i.scdn.co/image/ab67616d0000b273f17ddc825889b0dd22798b9b,1,1,234986,https://p.scdn.co/mp3-preview/2d44c984070ca8a8b1bedb11befd6ca98e17a8d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USAT21401437,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.436,0.562,11.0,-6.106,1.0,0.0278,0.0102,0.000278,0.198,0.24,150.066,4.0,,Atlantic Records,"C © 2014 Twentieth Century Fox Film Corporation, P ℗ This compilation 2014 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",9421 +9422,spotify:track:12yGwtB2h9NlzeOKYfVYTF,Don't Matter,spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,spotify:album:13C2pc5O7ofZKd4p2VYO3S,Konvicted,spotify:artist:0z4gvV4rjIZ9wHck67ucSV,Akon,2006,https://i.scdn.co/image/ab67616d0000b2733ad505200e799d6cf2b09b0a,1,12,293066,https://p.scdn.co/mp3-preview/01d3c5099eb1455e11efe645c8a5acdbbe7d2973?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM70615300,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dance pop,0.801,0.454,2.0,-6.035,1.0,0.0371,0.225,0.0,0.226,0.34,125.139,4.0,,Konvict/Upfront/SRC/Universal Records,"C © 2007 Universal Records, a Division of UMG Recordings, Inc., P ℗ 2007 Universal Records, a Division of UMG Recordings, Inc.",9422 +9423,spotify:track:6KRlQNTZnIK4oVxZn2fmsB,Dirty Picture,"spotify:artist:6MF9fzBmfXghAz953czmBC, spotify:artist:6LqNN22kT3074XbTVUrhzX","Taio Cruz, Kesha",spotify:album:7CCqoU4oEIV3bSLm75IL5n,Rokstarr (Special Edition),spotify:artist:6MF9fzBmfXghAz953czmBC,Taio Cruz,2011-01-01,https://i.scdn.co/image/ab67616d0000b273cb3c02f19237ff14c433136f,1,3,218906,https://p.scdn.co/mp3-preview/6b86a88b8675d35ab029f4c63a30436310a49431?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GBUM71003731,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,dance pop,pop",0.717,0.667,1.0,-6.49,1.0,0.0712,0.0172,0.0,0.114,0.497,119.971,4.0,,Universal-Island Records Ltd.,"C © 2011 Universal Island Records Ltd. A Universal Music Company., P ℗ 2011 Universal Island Records Ltd. A Universal Music Company.",9423 +9424,spotify:track:78ce4gBp4x0JfSpzIvDdZo,Cleanin' Out My Closet,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:0WgCzYM55nO45wJWLImb1R,Curtain Call: The Hits,spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2005-12-06,https://i.scdn.co/image/ab67616d0000b2732d9be0dc0d3c487616f9b9e3,1,14,298960,https://p.scdn.co/mp3-preview/ccfd4b1431ecb301db1ba7f51f47c52c200c391e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10211054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.905,0.767,9.0,-4.798,0.0,0.189,0.0772,0.0,0.12,0.871,147.983,4.0,,Universal Music Group,"C © 2005 Aftermath Entertainment/Interscope Records, P ℗ 2005 Aftermath Entertainment/Interscope Records",9424 +9425,spotify:track:0sQLhT32E9ZG2zn5iYR6nN,Locked Away (feat. Adam Levine),"spotify:artist:4TH4BHy0LdBi3dpBW4P2UX, spotify:artist:4bYPcJP5jwMhSivRcqie2n","R. City, Adam Levine",spotify:album:0iGMQyIMXpYm0N5IcRVq4Z,Locked Away (feat. Adam Levine),spotify:artist:4TH4BHy0LdBi3dpBW4P2UX,R. City,2015-06-29,https://i.scdn.co/image/ab67616d0000b27349f4611a5e4e8f4b89cbf814,1,1,227280,https://p.scdn.co/mp3-preview/c67eeea21fed7b7652cd336e0f489462875eeea7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USRC11501369,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"reggae fusion,virgin islands reggae,deep talent show",0.508,0.677,1.0,-5.696,1.0,0.0656,0.328,0.0,0.0491,0.575,121.928,5.0,,Kemosabe Records/RCA Records,P (P) 2015 Kemosabe Records,9425 +9426,spotify:track:1oht5GevPN9t1T3kG1m1GO,Fire and Rain - 2019 Remaster,spotify:artist:0vn7UBvSQECKJm2817Yf1P,James Taylor,spotify:album:1HiG0ukRmFPN13EVcf98Jx,Sweet Baby James (2019 Remaster),spotify:artist:0vn7UBvSQECKJm2817Yf1P,James Taylor,1970-02-01,https://i.scdn.co/image/ab67616d0000b273b3adf9b1706b05af854bbad4,1,7,203613,https://p.scdn.co/mp3-preview/6add6368095cb2d6d5e458421c79a9de81fc2e76?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USRH11900597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.597,0.271,5.0,-17.293,1.0,0.0394,0.766,0.0119,0.0933,0.338,76.271,4.0,,Rhino/Warner Records,"C © 2019 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Manufactured for & Marketed by Rhino Entertainment Company., P ℗ 2019 Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved. Manufactured for & Marketed by Rhino Entertainment Company.",9426 +9427,spotify:track:5tOjRq5shlEdm15nmJBq7Z,Out Of My Head,spotify:artist:7FtVJzRtpQpU61nBwB7cKN,Fastball,spotify:album:2KVpGKVIzcK9bB13MXJGEb,All The Pain Money Can Buy,spotify:artist:7FtVJzRtpQpU61nBwB7cKN,Fastball,1998-01-01,https://i.scdn.co/image/ab67616d0000b2735140e9c2486249b280cb36fb,1,10,153066,https://p.scdn.co/mp3-preview/25a07cc5efd4c6de598d5072a4e9f261acb59b11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,USHR19713010,spotify:user:bradnumber1,2022-01-12T23:16:48Z,"pop rock,post-grunge",0.531,0.658,4.0,-7.382,1.0,0.0382,0.412,0.00272,0.16,0.461,78.896,4.0,,Hollywood Records,"C © 1998 Hollywood Records, Inc., P ℗ 1998 Hollywood Records, Inc.",9427 +9428,spotify:track:6ARbqGM8t1AYwZMMHQ8E8t,Don't Pull Your Love,spotify:artist:7vpRSadEAzLs0ikY7gAESe,"Hamilton\, Joe Frank & Reynolds",spotify:album:03DEjGUwbiBvigvwG2EoP8,Greatest Hits,spotify:artist:7vpRSadEAzLs0ikY7gAESe,"Hamilton\, Joe Frank & Reynolds",1994-11-22,https://i.scdn.co/image/ab67616d0000b273c4402ed0dc0a3f16b0c25341,1,1,162026,https://p.scdn.co/mp3-preview/034f4971715ece6b4baf285a72c16ff2f015384f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,USMC17146467,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,soft rock",0.62,0.604,7.0,-12.134,1.0,0.0326,0.409,0.0,0.133,0.883,100.486,4.0,,Geffen,"C © 1994 UMG Recordings, Inc., P This Compilation ℗ 1994 UMG Recordings, Inc.",9428 +9429,spotify:track:5ZPp1V3PufN6qhAe3rLNmb,Kryptonite,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,spotify:album:6lVwZdo0vX9Q6u294XKYds,The Better Life,spotify:artist:2RTUTCvo6onsAnheUk3aL9,3 Doors Down,2000,https://i.scdn.co/image/ab67616d0000b273336821647e37839df24f9b5b,1,1,233826,https://p.scdn.co/mp3-preview/55c8389bc8dfbe118e97ecd05f027e9ad59cd99d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUR19980187,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.544,0.878,11.0,-5.145,0.0,0.0288,0.00657,1.43e-05,0.17,0.527,99.024,4.0,,Universal Music Group,"C © 2000 Universal Records Inc., P ℗ 1999 Universal Motown Records, a division of UMG Recordings, Inc.",9429 +9430,spotify:track:4dT3qLUU6fFUmomLzk2cUA,Freedom! '90 - Remastered,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:0IJcpy0eM4o63J43qij68g,Ladies & Gentlemen,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1998-11-09,https://i.scdn.co/image/ab67616d0000b273813629baee66b2ec5f90ebee,2,5,388680,https://p.scdn.co/mp3-preview/cfa7dfa4e3e98be0247466320a6dffba17a09a14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBARL1000907,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.677,0.896,5.0,-7.701,1.0,0.045,0.125,4.57e-05,0.0576,0.894,91.811,4.0,,Epic,P This compilation (P) 2011 Sony Music Entertainment UK Limited,9430 +9431,spotify:track:19qn6oU2t0E72ENA0aWNsX,So What,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:2MqP4akeOQpLkq7jpQqlHT,Funhouse: The Tour Edition,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2008,https://i.scdn.co/image/ab67616d0000b273faef39535383dcf65ab03f02,1,1,215160,https://p.scdn.co/mp3-preview/a43eb0df921c27ff59c1e05a08bee51d6a823fc4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USLF20800067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.535,0.888,11.0,-3.1,1.0,0.0446,0.000304,2.17e-06,0.324,0.451,126.011,4.0,,LaFace Records,"P (P) 2008, 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",9431 +9432,spotify:track:2sV02UuKA7mrrnPYnFSvVp,Better Off Alone,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,spotify:album:2xk8v5ebuRwZjTnPZP8qq3,"Thrills, Kills and Sunday Pills",spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,2004-01-01,https://i.scdn.co/image/ab67616d0000b273791d4687029773a2116c12bf,1,7,233333,https://p.scdn.co/mp3-preview/2e05d7a50fdc2cbb5ae659b08e3b14252757bd00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUUM00430216,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian psych,australian rock",0.431,0.817,7.0,-5.479,1.0,0.0324,0.000211,1.23e-05,0.124,0.664,169.926,4.0,,Universal Music Australia Pty. Ltd.,"C © 2004 Universal Music Australia Pty Ltd., P ℗ 2004 Universal Music Australia Pty Ltd.",9432 +9433,spotify:track:6Wytqpe4mfmyeT8s1xbczG,Something In The Way You Move,spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:20Ol6zZ0nLlc5EGTH1zA0j,Delirium (Deluxe),spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2015-11-06,https://i.scdn.co/image/ab67616d0000b2736bdee14242f244d9d6ddf2fd,1,3,227423,https://p.scdn.co/mp3-preview/847eb35997a201bd7956982b1e57090a7c412680?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,GBUM71505461,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.658,0.814,1.0,-6.157,0.0,0.0493,0.0398,0.0,0.114,0.316,109.004,4.0,,Polydor Records,"C © 2015 Polydor Ltd. (UK), P ℗ 2015 Polydor Ltd. (UK)",9433 +9434,spotify:track:7pf4fveVxB7uQQhP9sYOSO,Greatest Hits Megamix - Jewels & Stone Remix,"spotify:artist:6rEzedK7cKWjeQWdAYvWVG, spotify:artist:1dfeR4HaWDbWqFHLkxsg1d, spotify:artist:78E5Zx38dgv90Q7VN2AplD, spotify:artist:7KUri7klyLaIFXLcuuOMCd, spotify:artist:6Tg1uyto2LrwltY2TQHia2","Five, Queen, Steve Mac, Stargate, Cutfather & Joe",spotify:album:5jSAkaiC1BBKZQSZ7wFYOY,Greatest Hits,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,2003-06-02,https://i.scdn.co/image/ab67616d0000b27310df926bec224d743644ea3e,1,18,659000,https://p.scdn.co/mp3-preview/0b8673bce8305bd79c239e42b852cdb448889b4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GBARL0100338,spotify:user:bradnumber1,2021-11-11T04:16:27Z,"boy band,classic rock,glam rock,rock,norwegian pop",0.497,0.883,7.0,-5.819,1.0,0.0689,0.0365,0.0,0.927,0.61,101.994,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,9434 +9435,spotify:track:36rXHqN7D1ETFhyKXXKs4w,Gonna Make You Sweat (Everybody Dance Now) (feat. Freedom Williams),"spotify:artist:7krx6UBDKLwE0q3s3fesqF, spotify:artist:08MVPakTEdRJimQNV61NFR","C & C Music Factory, Freedom Williams",spotify:album:5obiQeM3NZ4NMsoeVxNDxw,Gonna Make You Sweat,spotify:artist:7krx6UBDKLwE0q3s3fesqF,C & C Music Factory,1990-12-18,https://i.scdn.co/image/ab67616d0000b273e6942d692203807dcadd8be5,1,1,243693,https://p.scdn.co/mp3-preview/d6b96b3d71e430c5e496a5e155aa9defa1bef523?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM19000533,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,freestyle,hip house,hip house",0.557,0.74,6.0,-10.999,1.0,0.0879,0.0018,0.422,0.148,0.801,114.379,4.0,,Columbia,P (P) 1990 SONY BMG MUSIC ENTERTAINMENT,9435 +9436,spotify:track:2rN51xbGi6n0kB72PBwQQT,Lighthouse,spotify:artist:3Yl4nkmEa8BSuGWbwhdLDq,G.R.L.,spotify:album:0ITz7kMihqY42O79jazQTz,Lighthouse,spotify:artist:3Yl4nkmEa8BSuGWbwhdLDq,G.R.L.,2015-01-15,https://i.scdn.co/image/ab67616d0000b273861df42efc0bf8f0310e9534,1,1,216186,https://p.scdn.co/mp3-preview/dc544d3e9738ce061ab59268bcffc7c7b554bb3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USRC11403213,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,post-teen pop,talent show",0.581,0.586,6.0,-6.636,1.0,0.0594,0.319,0.0,0.11,0.389,132.851,4.0,,Kemosabe Records/RCA Records,P (P) 2014 Kemosabe Records,9436 +9437,spotify:track:0sooJd5WbNnnz5k6yO7FIQ,Pompeii,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,spotify:album:2r1iXEfyFZaYSmthwnKGGp,All This Bad Blood,spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc,Bastille,2013-01-01,https://i.scdn.co/image/ab67616d0000b273ea31b7b318e504c083d44346,1,1,214147,https://p.scdn.co/mp3-preview/18da10d3596cdce4434dbeebf94fc75790217d50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAA1200795,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"metropopolis,modern rock,pop",0.682,0.714,9.0,-6.306,1.0,0.0399,0.074,0.0,0.278,0.581,127.443,4.0,,Universal Music Group,"C © 2013 Virgin Records Ltd, P ℗ 2013 Virgin Records Ltd",9437 +9438,spotify:track:4L2K7JKseFCBoHMZEAszW0,Jealous,spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,spotify:album:2JgVVnno2fzdmV1BqwdQBi,Jealous,spotify:artist:2feDdbD5araYcm6JhFHHw7,Labrinth,2014-11-21,https://i.scdn.co/image/ab67616d0000b273d6903dd74546f02f4a54edbc,1,1,287693,https://p.scdn.co/mp3-preview/aa9fdfdc41c3dfe74a3e2d1c1a085cd451627e54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1400291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indie poptimism,pop",0.439,0.153,1.0,-8.95,1.0,0.0479,0.874,0.0,0.107,0.104,116.76,3.0,,Syco Music,P (P) 2014 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,9438 +9439,spotify:track:3jFP1e8IUpD9QbltEI1Hcg,My Stupid Mouth,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,spotify:album:3yHOaiXecTJVUdn7mApZ48,Room For Squares,spotify:artist:0hEurMDQu99nJRq8pTxO14,John Mayer,2001-08-16,https://i.scdn.co/image/ab67616d0000b2738848d57cbfa7751e028f4dc9,1,3,223960,https://p.scdn.co/mp3-preview/492ce28f0f5bc36bb76cd804f6db9fdb0d33a77b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USSM10102956,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,singer-songwriter",0.608,0.603,2.0,-6.792,1.0,0.0271,0.0143,1.22e-05,0.0833,0.49,88.824,4.0,,Aware/Columbia,P 2001 Sony Music Entertainment Inc.,9439 +9440,spotify:track:4WtosLGq96T9gboM0xTkgR,Sixteen Reasons,spotify:artist:5dg9jB2sji4asJtjihC9AE,Connie Stevens,spotify:album:47AQxzarJ2Wt69lu2qrb89,Sixteen Reasons,spotify:artist:5dg9jB2sji4asJtjihC9AE,Connie Stevens,2016-06-10,https://i.scdn.co/image/ab67616d0000b273f9377ecea4d4a2fc0e24e84e,1,1,119066,https://p.scdn.co/mp3-preview/59d029f64fefcaa29a023ce95d1211409d6717d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,GB8XC1413934,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.311,0.389,10.0,-9.514,1.0,0.0307,0.839,1.35e-05,0.111,0.661,72.558,4.0,,O.L.D Ltd,"C 2015 O.L.D LTD, P 2015 O.L.D LTD",9440 +9441,spotify:track:0cqRj7pUJDkTCEsJkx8snD,Shake It Off,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1yGbNOtRIgdIiGHOEBaZWf,1989 (Deluxe),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2014-01-01,https://i.scdn.co/image/ab67616d0000b27352b2a3824413eefe9e33817a,1,6,219200,https://p.scdn.co/mp3-preview/b2f4ace48deea16c8c94a7dee85f5db6cd90b8dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USCJY1431349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.647,0.8,7.0,-5.384,1.0,0.165,0.0647,0.0,0.334,0.942,160.078,4.0,,"Big Machine Records, LLC","C © 2014 Apollo A-1 LLC, P ℗ 2014 Apollo A-1 LLC",9441 +9442,spotify:track:5lz5nAO1HA7nntRU5k0IzH,Somewhere,spotify:artist:3g4Os4LNZvOQUaokeSLCwG,P.J. Proby,spotify:album:3AsA1h6kQvqdnfaC1lu8Tx,Best Of The EMI Years (1961-1972),spotify:artist:3g4Os4LNZvOQUaokeSLCwG,P.J. Proby,2008-01-01,https://i.scdn.co/image/ab67616d0000b27366490268e0ef08f61eae37fd,1,4,199000,https://p.scdn.co/mp3-preview/73834fb14240091834863482aba85e09293bab65?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USEM39000219,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"merseybeat,rock-and-roll",0.225,0.507,6.0,-8.835,1.0,0.0371,0.854,3.22e-05,0.0928,0.432,77.65,4.0,,EMI Gold,"C © 2008 EMI Records Ltd, P This Compilation ℗ 2008 EMI Records Ltd",9442 +9443,spotify:track:6Zoip8kVMOwQ0a3X2R6sG0,Addicted to Bass,spotify:artist:2C18qcP3k1dkMJpByV6rZX,Josh Abrahams,spotify:album:5BuNpg3ERtl34N7zHbmC1S,Sweet Distorted Holiday,spotify:artist:2C18qcP3k1dkMJpByV6rZX,Josh Abrahams,1998,https://i.scdn.co/image/ab67616d0000b273661c935120f973c3bb1a438c,1,3,236933,https://p.scdn.co/mp3-preview/000d1a6ab50069ce44bd7a5428158b979b1446e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,AUFE09800766,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.598,0.801,11.0,-8.964,0.0,0.0921,0.00212,2e-06,0.0998,0.502,165.022,4.0,,WM Australia,"C © 1998 WARNER MUSIC AUSTRALIA PTY LIMITED, P ℗ 1998 WARNER MUSIC AUSTRALIA PTY LIMITED",9443 +9444,spotify:track:5YfXc1EA40ALikIweISeN0,Angels,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:1TpsfehykLtWHqBlTpWv6N,Then Again ...,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1993-10-18,https://i.scdn.co/image/ab67616d0000b27355da6ef0291010b5a5b1b25f,1,1,345560,https://p.scdn.co/mp3-preview/104da233635dc1d8bc1959e8c9396289caa10f28?cid=9950ac751e34487dbbe027c4fd7f8e99,False,23,AUBM09341003,spotify:user:bradnumber1,2023-05-24T00:50:09Z,"australian pop,australian rock",0.531,0.42,2.0,-12.926,1.0,0.041,0.527,0.000109,0.0792,0.245,167.642,4.0,,RCA Records Label,P (P) 1993 Sony Music Entertainment Australia Pty Ltd,9444 +9445,spotify:track:3QgsPdDBXZKrpa2iQndFnZ,You Make Me Feel Brand New,spotify:artist:2O0Hw1WSMbskB5tD9aWah3,The Stylistics,spotify:album:7wb65kxx7K5nEweUPiWw5N,Rockin' Roll Baby,spotify:artist:2O0Hw1WSMbskB5tD9aWah3,The Stylistics,1973,https://i.scdn.co/image/fdcc9ccb82e834eae326a36e16f1ae7954c1a434,1,9,330186,https://p.scdn.co/mp3-preview/ebfe8e9ef43558db3b45bc844944a8ca05b365d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US37B0500151,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,motown,philly soul,quiet storm,soul",0.454,0.336,7.0,-9.219,1.0,0.0243,0.849,2.6e-05,0.102,0.203,75.589,4.0,,Amherst Records,"C (C) 1972 Amherst Records, Inc",9445 +9446,spotify:track:0kcEK7YuNNfE7jiTnXS1cm,Atlantis,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,spotify:album:4VAPvQJAFVGj23TnytksLy,Barabajagal,spotify:artist:6vLlQYujOujIrm7zAKzEdG,Donovan,1969-08-11,https://i.scdn.co/image/ab67616d0000b273f07cfcbab6ed96de5e591219,1,8,302640,https://p.scdn.co/mp3-preview/c60a64a9058314f3798744a65c838804705c8440?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM19916819,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british folk,british invasion,classic rock,folk,folk rock,glam rock,psychedelic folk,psychedelic rock,scottish singer-songwriter,singer-songwriter",0.291,0.313,0.0,-16.17,1.0,0.0347,0.177,0.000552,0.0828,0.341,77.893,4.0,,Epic,P Originally Released 1969 Sony Music Entertainment Inc.,9446 +9447,spotify:track:4DhbiXEuV7JxSR0wuqetTa,Free Ride,spotify:artist:7j9PMegEgVN1fNp8NZXNCI,The Edgar Winter Group,spotify:album:4CNEJF5wYGqhOYEKq8ciu8,They Only Come Out At Night,spotify:artist:3UNrI3SG1l2ezKikxQ2zuk,Edgar Winter,1972-11-30,https://i.scdn.co/image/ab67616d0000b27309a01850dfed5fdc478151b3,1,4,187173,https://p.scdn.co/mp3-preview/9d29144b7b8f94e0495521ba13856373ea597905?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM17200422,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,country rock,electric blues,folk rock,hard rock,mellow gold,soft rock",0.674,0.686,2.0,-11.927,1.0,0.0597,0.29,0.00322,0.189,0.814,124.204,4.0,,Epic,P (P) 1972 SONY BMG MUSIC ENTERTAINMENT,9447 +9448,spotify:track:5eYwDBLucWfWI5KsV7oYX2,Mary Jane's Last Dance,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:7ait6chB3O3C1fMGUDJhtu,Anthology: Through The Years,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,2000-01-01,https://i.scdn.co/image/ab67616d0000b2736cfd76ded516a7f12768a4b2,2,15,272266,https://p.scdn.co/mp3-preview/be0def4ad5842afde18b1d54891020564b235db2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC19341704,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.402,0.814,10.0,-4.954,1.0,0.14,0.0383,1.19e-06,0.266,0.516,170.02,4.0,,Interscope,"C © 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2000 Universal Music Enterprises, a Division of UMG Recordings, Inc.",9448 +9449,spotify:track:0Q40MMjMXHPxLGfylep5a5,Ghosts,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:20rfkv1O76ncQWtjSYI8MF,Pacifica (Deluxe),spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2012-09-07,https://i.scdn.co/image/ab67616d0000b273e0b0d279e3671b6d1c3b3f20,1,2,209040,https://p.scdn.co/mp3-preview/8717b3a51d91588453e7f0f2be65c3d9267d9c93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUUM71200401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.607,0.68,1.0,-9.15,1.0,0.0384,0.154,2.76e-06,0.242,0.545,139.976,4.0,,Modular,"C © 2013 Modular Recordings, P ℗ 2013 Modular Recordings",9449 +9450,spotify:track:0TxXEbxn52XsuAhxb6VFZw,This Kiss,spotify:artist:25NQNriVT2YbSW80ILRWJa,Faith Hill,spotify:album:7fvl3dOnDrv9rq5IBmLbAa,The Hits,spotify:artist:25NQNriVT2YbSW80ILRWJa,Faith Hill,2007,https://i.scdn.co/image/ab67616d0000b2733ee43d5dbf7da3e65be844b3,1,12,194906,https://p.scdn.co/mp3-preview/19a30534184c493975bfb6bff3a60fdafc27f272?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USWB10704278,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country dawn,country road",0.48,0.832,11.0,-5.663,1.0,0.0426,0.137,0.0,0.354,0.648,186.875,4.0,,Warner Records/Nashville,"C © 2007 Warner Records Inc., P ℗ 1994, 1995, 1998, 1999, 2001, 2002, 2005, 2007 Warner Records Inc.; 2007 Curb Records, Inc.",9450 +9451,spotify:track:1WKJlbRK1hUtfKXvG7Jn3V,So Beautiful - Single Version,spotify:artist:1qAMxE8YRo3KREMiKiyUkV,Pete Murray,spotify:album:6cIh3RIwMpDIzpNaBOEaNe,Feeler/See The Sun,spotify:artist:1qAMxE8YRo3KREMiKiyUkV,Pete Murray,2005,https://i.scdn.co/image/ab67616d0000b27321075e74eb57d12ae370647c,1,3,279520,https://p.scdn.co/mp3-preview/8bfaf53af7837e7d187b2e33c03187fb96cf18b4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUSM00300316,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.495,0.443,7.0,-9.905,0.0,0.0265,0.454,9.26e-05,0.104,0.337,83.232,4.0,,Columbia,P (P) 2005 Sony BMG Music Entertainment (Australia) Pty Limited/(P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,9451 +9452,spotify:track:5rfJ2Bq2PEL8yBjZLzouEu,Who Can It Be Now?,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,spotify:album:4HDJMKkwAMVFewqfZcmf84,Business As Usual,spotify:artist:0f3EsoviYnRKTkmayI3cux,Men At Work,1981-11-09,https://i.scdn.co/image/ab67616d0000b273aa5e4c9da271951ac0b31fa2,1,1,201293,https://p.scdn.co/mp3-preview/c5fc899e1bd1cb7cabbf78948af4966f9ef68559?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,NLB638140001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,rock,soft rock",0.805,0.479,4.0,-14.734,1.0,0.0436,0.0627,0.000143,0.104,0.962,128.411,4.0,,Columbia,P 1982 CBS Inc.,9452 +9453,spotify:track:71CXzHYYOyNqgtVFpNdeCS,I'd Love You to Want Me,spotify:artist:1sldhz8tzC100cRAdfnMht,Lobo,spotify:album:27rTUUNLERkGxzXxBr1d1u,Of A Simple Man,spotify:artist:1sldhz8tzC100cRAdfnMht,Lobo,1972,https://i.scdn.co/image/ab67616d0000b273bcfed2b555f5563dbd8b267b,1,7,247640,https://p.scdn.co/mp3-preview/25087c49fe1017c3149425fc53b19c19352ce66e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USAT20108558,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.431,0.543,10.0,-9.96,1.0,0.0394,0.122,0.000123,0.0598,0.44,77.507,4.0,,Rhino Atlantic,"C © 1972 Big Tree Records, a label of Atlantic Recording Corp., P ℗ 1972 Big Tree Records, a label of Atlantic Recording Corp.",9453 +9454,spotify:track:4vpYRpnvsxP4GiHtTTm0md,Shake It,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,spotify:album:2tZRoBOqmLy64lHwds1Kkl,Destination Now,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738387b53a693aba5553ef3175,1,2,197853,https://p.scdn.co/mp3-preview/fb687cd781eb2a3aafbf3cc8c7d9a2945a3151ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC01006812,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian house",0.877,0.884,7.0,-3.197,0.0,0.143,0.0304,0.0,0.0695,0.708,122.985,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Vicious Recordings Pty Ltd, P ℗ 2011 Vicious Recordings Pty Ltd",9454 +9455,spotify:track:4fQMGlCawbTkH9yPPZ49kP,Green Onions,spotify:artist:2vDV0T8sxx2ENnKXds75e5,Booker T. & the M.G.'s,spotify:album:2aGFVLz0oQPa3uxCfq9lcU,Green Onions,spotify:artist:2vDV0T8sxx2ENnKXds75e5,Booker T. & the M.G.'s,1962,https://i.scdn.co/image/ab67616d0000b27346007ceff2f1c33c9b9ec19c,1,1,176333,https://p.scdn.co/mp3-preview/c9f6e475c8c7a3bb3f52059816ff66d086a3f171?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USAT20000736,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,classic soul,instrumental funk,instrumental soul,memphis soul,soul,southern soul,traditional blues",0.816,0.514,10.0,-8.741,1.0,0.0339,0.767,0.949,0.0899,0.912,136.837,4.0,,Rhino Atlantic,"C © 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P ℗ 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",9455 +9456,spotify:track:68yfD1wTkhcogpxjrQ7cAh,Chemical Heart,spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,spotify:album:0sliiui3Z7lAFUnvlG940a,New Detention (Reissue with Bonus Disc),spotify:artist:04qi4CymYf3E50Mt2na4QS,Grinspoon,2003-01-01,https://i.scdn.co/image/ab67616d0000b2731a862c8f2192f9bfb165477a,2,5,278240,https://p.scdn.co/mp3-preview/d40d65c7a158edadad1753e42649b2beed7191c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM00130067,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian psych,australian rock",0.475,0.612,0.0,-7.255,1.0,0.0269,0.00627,0.0,0.137,0.37,153.989,4.0,,Decca International,"C © 2003 Universal Music Australia Pty Ltd. A Universal Music Company., P ℗ 2003 Universal Music Australia Pty Ltd. A Universal Music Company",9456 +9457,spotify:track:0IiG5LCOkbUTyXoylZ3spP,Strong Enough,spotify:artist:4TKTii6gnOnUXQHyuo9JaD,Sheryl Crow,spotify:album:6T3hWDRvhh2iLcgnGdnXUU,Hits And Rarities,spotify:artist:4TKTii6gnOnUXQHyuo9JaD,Sheryl Crow,2007-01-01,https://i.scdn.co/image/ab67616d0000b273a7a0ac73066a79af8e97c150,1,9,190880,https://p.scdn.co/mp3-preview/9f04a4aa509c2f7827e36e1c8d934119ed8218fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19300007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,new wave pop,permanent wave,pop rock,singer-songwriter",0.586,0.406,2.0,-9.075,1.0,0.0328,0.803,7.42e-05,0.105,0.576,154.64,3.0,,Universal Music Group,"C © 2007 A&M Records, P ℗ 2007 A&M Records",9457 +9458,spotify:track:7aKOynv41IGU8uiXmpz7ok,When I Grow Up,spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,spotify:album:6WGJ3lgccWlOoOQLFyjvBe,Doll Domination (Revised International Version),spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2008,https://i.scdn.co/image/ab67616d0000b273ad514c6d527d38c25faa6bd2,1,1,245680,https://p.scdn.co/mp3-preview/436d0936b15149addc9ef65c33bfa679223a134b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70813999,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop",0.673,0.686,11.0,-5.745,0.0,0.0454,0.00154,0.0,0.382,0.34,118.43,4.0,,Pussycat Dolls LP2 / Timbaland,"C © 2009 Pussycat Dolls, LLC, P ℗ 2009 Pussycat Dolls, LLC",9458 +9459,spotify:track:6b8Be6ljOzmkOmFslEb23P,24K Magic,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:4PgleR09JVnm3zY1fW3XBA,24K Magic,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2016-11-17,https://i.scdn.co/image/ab67616d0000b273232711f7d66a1e19e89e28c5,1,1,225983,https://p.scdn.co/mp3-preview/3a76820d510fa5f84abb413e9d13815bcc86da0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USAT21602944,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.818,0.803,1.0,-4.282,1.0,0.0797,0.034,0.0,0.153,0.632,106.97,4.0,,Atlantic Records,"C © 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",9459 +9460,spotify:track:5DNPJB8pyDiIQq1wmi46BQ,Washington Square,spotify:artist:052sD9jNgGqNAKlYmCAiD8,The Village Stompers,spotify:album:0z0jBsfLpk7p4rcQNygkBT,Washington Square,spotify:artist:052sD9jNgGqNAKlYmCAiD8,The Village Stompers,2006-01-20,https://i.scdn.co/image/ab67616d0000b273bbb64dff4cf4170ae17125e2,1,1,159347,https://p.scdn.co/mp3-preview/2a3b135366820e03bf89e5d1c3b5f14f1a80af51?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,ZA42A1701696,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.778,0.269,4.0,-13.433,0.0,0.0491,0.565,0.0632,0.279,0.774,120.112,4.0,,TP4 Music,"C 2017 TP4 Music, P 2017 TP4 Music",9460 +9461,spotify:track:4pbJqGIASGPr0ZpGpnWkDn,We Will Rock You - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:7tB40pGzj6Tg0HePj2jWZt,News Of The World (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1977-10-28,https://i.scdn.co/image/ab67616d0000b2731f7077ae1018b5fbab08dfa8,1,1,122066,https://p.scdn.co/mp3-preview/61dc76538204d41f88210db47901afea4ed885fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBUM71029618,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.692,0.497,2.0,-7.316,1.0,0.119,0.676,0.0,0.259,0.475,81.308,4.0,,EMI,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",9461 +9462,spotify:track:2x1LQq8lsUzAA2wNj8yjC9,Pick Up the Pieces,spotify:artist:3tx8fyu3c4OBP5nejYtUOb,Average White Band,spotify:album:5qZVqBEJSq2HkDMh2VCOQ6,AWB,"spotify:artist:3tx8fyu3c4OBP5nejYtUOb, spotify:artist:3EOX6d6CuTUiS1PGJfHEzU, spotify:artist:1q8e6StM7uuBBH7YWqjVto","Average White Band, Arif Mardin, Gene Paul",1974,https://i.scdn.co/image/ab67616d0000b273d4a6817b14d3dea6f23c680c,1,3,239908,https://p.scdn.co/mp3-preview/73c5ae28d8053c3a0bf278311bca6231bbcfa91f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USAT20106483,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,funk,p funk,quiet storm,soul",0.768,0.853,10.0,-5.915,0.0,0.0427,0.0548,0.13,0.0188,0.889,107.234,4.0,,Rhino Atlantic,"C © 1974 & 1995 Atlantic Recording Corporation, P ℗ 1974 This Reissue 1974 & 1977 Atlantic Recording Corporation",9462 +9463,spotify:track:4n8iSiSWRdaSeSpJMbdk9O,Jessie,spotify:artist:2VrP5BkyzDhY43dWMlaYjD,Joshua Kadison,spotify:album:1EEVf5UBSD4YlE1NBQXLfW,Painted Desert Serenade,spotify:artist:2VrP5BkyzDhY43dWMlaYjD,Joshua Kadison,1993-01-01,https://i.scdn.co/image/ab67616d0000b273f3cce8bfde65845aa3b0e469,1,1,319026,https://p.scdn.co/mp3-preview/6a764c214c05fbbcb63f2a96c7afc6f58dfa8b14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USCA29301599,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.648,0.464,7.0,-11.592,1.0,0.0287,0.426,4.93e-06,0.262,0.512,142.924,4.0,,SBK/EMI RECORDS,"C © 1993 SBK Catalog, P ℗ 1993 Capitol Records, LLC",9463 +9464,spotify:track:0WfKDYeUAoLA3vdvLKKWMW,Poker Face,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,spotify:album:2FBA8NCSuQNi8jaR2Xjbal,The Fame,spotify:artist:1HY2Jd0NmPuamShAr6KMms,Lady Gaga,2008-01-01,https://i.scdn.co/image/ab67616d0000b273eb8bbcc15130ec9f01aa204c,1,4,237200,https://p.scdn.co/mp3-preview/36abf77572983417d63a3aed8923d00e07167efa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70824409,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,dance pop,pop",0.851,0.806,4.0,-4.618,1.0,0.0786,0.12,1.33e-06,0.121,0.776,119.001,4.0,,Streamline/Interscope,"C © 2008 Interscope Records, P ℗ 2008 Interscope Records",9464 +9465,spotify:track:32yIEFS62uS5ryhr2Xlooj,Hotel Room Service,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,spotify:album:6t7u6RvLoWLfWPLRUUXD1d,Hotel Room Service,spotify:artist:0TnOYISbd1XYRBk9myaseg,Pitbull,2009-06-11,https://i.scdn.co/image/ab67616d0000b273d41866c3d31cbb1e7e8d6af0,1,1,238506,https://p.scdn.co/mp3-preview/d05c876f591907e3cec32d46b64d50ab38d929cc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USJAY0900063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop",0.849,0.599,6.0,-8.164,1.0,0.227,0.00301,0.000249,0.0763,0.761,126.003,4.0,,Mr.305/Polo Grounds Music/J Records,"P (P) 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",9465 +9466,spotify:track:4O8CRygHpS1Im1qBCHxGsm,Somethings Gotta Give,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,spotify:album:3bcxTItMmeBkeQH7zh81v0,Somethings Gotta Give,spotify:artist:6fBF4MULW5yMzyGaon1kUt,John Butler Trio,2004-12-06,https://i.scdn.co/image/ab67616d0000b27352aeaf09a88347da95b2ca00,1,1,188880,https://p.scdn.co/mp3-preview/5f5d0265991ed229d4268479bf196f1fe2c5e6c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUFC00400012,spotify:user:bradnumber1,2021-08-08T09:26:31Z,banjo,0.489,0.653,2.0,-6.944,1.0,0.0456,0.409,0.000125,0.268,0.77,172.647,4.0,,Jarrah Records,"C 2004 Jarrah Records, P 2004 Jarrah Records",9466 +9467,spotify:track:0aord9VSv8dG5IckOo7jmI,Gotta Be the One,spotify:artist:6jQ9UtYXqNfVnPkrH1Xxwi,Maxine Nightingale,spotify:album:0R3e4Hcf2MQVed40q1zdSB,Right Back Where We Started From,spotify:artist:6jQ9UtYXqNfVnPkrH1Xxwi,Maxine Nightingale,2020-11-27,https://i.scdn.co/image/ab67616d0000b273cfa6a3679b1471b340e15c4c,1,3,176040,https://p.scdn.co/mp3-preview/b20ceeb97445a10ce83d55eed865f355a1183d9d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,GBAYE0701935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.608,0.579,8.0,-11.609,1.0,0.158,0.24,0.0,0.143,0.949,180.973,4.0,,Warner Music Group - X5 Music Group,"C 2020 Warner Music Group - X5 Music Group, P 2020 Warner Music Group - X5 Music Group",9467 +9468,spotify:track:0ildbAb2xouV6u4fsix9r3,One Track Mind,spotify:artist:6KfBWaX13etjtEZ4d9aTWW,Bobby Lewis,spotify:album:4qIVSOSPRNCW7M0n8VaW3g,Collector's Gold Series,spotify:artist:6KfBWaX13etjtEZ4d9aTWW,Bobby Lewis,2003-01-01,https://i.scdn.co/image/ab67616d0000b2733b7d1cfc577debe03fd3dda2,1,8,128533,https://p.scdn.co/mp3-preview/83f6d1f5357924d12fd441d8ecafaf3062c515a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USHJ10410092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.571,0.636,10.0,-6.877,1.0,0.0305,0.0222,0.0,0.0748,0.96,145.241,3.0,,Trigger Records,"C © 2009 Trigger Records, P ℗ 2003 Hot JWP Music Inc.",9468 +9469,spotify:track:0ny5zITdmyNwyTPVzRGscU,What You Waiting For?,spotify:artist:4yiQZ8tQPux8cPriYMWUFP,Gwen Stefani,spotify:album:34y7m68F7rN9ou6m5GWohR,Love. Angel. Music. Baby.,spotify:artist:4yiQZ8tQPux8cPriYMWUFP,Gwen Stefani,2004-11-12,https://i.scdn.co/image/ab67616d0000b273f049fc9322f0c93646cdcc77,1,1,221226,https://p.scdn.co/mp3-preview/82f83e3f81c1b93eaada6702e38d08be184ac004?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USIR10400692,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.676,0.948,5.0,-2.557,1.0,0.0632,0.0501,8.91e-06,0.384,0.728,136.027,4.0,,Interscope,"C © 2004 Interscope Records, P ℗ 2004 Interscope Records",9469 +9470,spotify:track:1QLASZej35mTgLQyNyoZ8F,Like a Drum,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:2ploE2Xfb4u43TnK7OAos3,Madness,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2014-11-21,https://i.scdn.co/image/ab67616d0000b27394e513cf40e6e38ddf847fb9,1,3,181906,https://p.scdn.co/mp3-preview/f20f1098a45ced515294563c2316fe9aaeb897aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUBM01300560,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.682,0.846,4.0,-2.34,1.0,0.0309,0.00312,0.0,0.161,0.761,130.077,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,9470 +9471,spotify:track:1HNkqx9Ahdgi1Ixy2xkKkL,Photograph,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:1xn54DMo2qIqBuMqHtUsFd,x (Deluxe Edition),spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2014-06-21,https://i.scdn.co/image/ab67616d0000b27313b3e37318a0c247b550bccd,1,6,258986,https://p.scdn.co/mp3-preview/d90f4e5f15d8ed411307945560b1db8cca6b253b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,GBAHS1400094,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.614,0.379,4.0,-10.48,1.0,0.0476,0.607,0.000464,0.0986,0.201,107.989,4.0,,Atlantic Records UK,"C © 2014 Asylum Records UK, a Warner Music UK Company, P ℗ 2014 Asylum Records UK, a Warner Music UK Company, except track 16 2013 Warner Bros. Entertainment Inc. and Metro-Goldwyn-Mayer Pictures Inc.",9471 +9472,spotify:track:5KrdYQS4U1Emzer8QShBE7,Brother,spotify:artist:7CIW23FQUXPc1zebnO1TDG,Matt Corby,spotify:album:51ET6cqHUpWJRtIHdJI20H,Into The Flame,spotify:artist:7CIW23FQUXPc1zebnO1TDG,Matt Corby,2011-01-01,https://i.scdn.co/image/ab67616d0000b2736cf9ff064c7da3c6e4d910f5,1,1,254213,https://p.scdn.co/mp3-preview/e7292043f926c68b5baef406de405867148a60ef?cid=9950ac751e34487dbbe027c4fd7f8e99,True,54,AUUM71101248,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,indie anthem-folk",0.661,0.744,9.0,-4.928,1.0,0.0505,0.0374,0.0016,0.0667,0.37,100.139,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Matt Corby, P ℗ 2011 Matt Corby",9472 +9473,spotify:track:2z2cMjYxNo9WxyghwzupDf,Suddenly,spotify:artist:2lyDLsnU3pS26GoJzrppCS,Angry Anderson,spotify:album:70FzJMKzzzcCd9yfwKztR6,Beats From A Single Drum,spotify:artist:2lyDLsnU3pS26GoJzrppCS,Angry Anderson,1986,https://i.scdn.co/image/ab67616d0000b27326e9afc3f5659d46137ae05f,1,3,249093,https://p.scdn.co/mp3-preview/607fb4057cedbfd2cf602e9260edd9e600d06d69?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUMU08700004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.45,0.528,5.0,-11.241,1.0,0.0292,0.152,0.000693,0.0691,0.238,138.863,4.0,,WM Australia,"C © 1986 Mushroom Records, P ℗ 1986 Mushroom Records",9473 +9474,spotify:track:59qrUpoplZxbIZxk6X0Bm3,Take You Dancing,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:3II80i5KpS38r0QjNzu8ly,Take You Dancing,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2020-07-22,https://i.scdn.co/image/ab67616d0000b273d9ddaea6ccea73f812f8afbc,1,1,190306,https://p.scdn.co/mp3-preview/51ee929f97903b71bdb13632d1142e7272d5193b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USAT22004479,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.789,0.711,2.0,-4.248,1.0,0.041,0.0332,0.0,0.0876,0.753,112.985,4.0,,Atlantic Records,"C Atlantic Records, © 2020 Artist Partner Group, Inc., P Atlantic Records, ℗ 2020 Artist Partner Group, Inc.",9474 +9475,spotify:track:4bxSyy1KxkGEfPQMIXFLWO,You Right,"spotify:artist:5cj0lLjcoR7YOSnhnX0Po5, spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ","Doja Cat, The Weeknd",spotify:album:4yBOVyQv3IdSptKDx4wL1d,Planet Her,spotify:artist:5cj0lLjcoR7YOSnhnX0Po5,Doja Cat,2021-06-24,https://i.scdn.co/image/ab67616d0000b2734002cba19079b01f44602e19,1,8,186173,https://p.scdn.co/mp3-preview/08fa680119dd0cdde1151b0a63fd05166d3ebbc0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USRC12102050,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,canadian contemporary r&b,canadian pop,pop",0.838,0.617,8.0,-6.462,1.0,0.0513,0.0156,0.00205,0.084,0.427,129.01,4.0,,Kemosabe Records/RCA Records,P (P) 2021 Kemosabe Records/RCA Records,9475 +9476,spotify:track:4MSo846OyP9XeNTGVNFUTI,Love Lost,spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,spotify:album:0V59MMtgoruvEqMv18KAOH,Conditions (Tour Edition),spotify:artist:4W48hZAnAHVOC2c8WH8pcq,The Temper Trap,2009,https://i.scdn.co/image/ab67616d0000b273f86ae86dfa3919c5acba68f0,1,1,219440,https://p.scdn.co/mp3-preview/ed7ee2e201f70c705d45f1d63d8988c04157bc8a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBZUZ0900010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern rock,shimmer pop",0.55,0.571,7.0,-7.35,1.0,0.0338,0.0242,0.619,0.109,0.358,122.551,4.0,,Liberation Records,"C 2010 Liberation Music, P 2010 Liberation Music",9476 +9477,spotify:track:3EFb1qDgIqf9MegIryKtDj,"Monday, Monday - Single Version",spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,spotify:album:76oMr4Y2pOtcrvZLc2ZikF,If You Can Believe Your Eyes & Ears,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,1966-03,https://i.scdn.co/image/ab67616d0000b27308181b9f840a06e7a071cf72,1,1,208293,https://p.scdn.co/mp3-preview/26b927c81b77d605d332d5d411631dc62faab184?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USMC16546367,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,mellow gold,psychedelic rock,rock,soft rock,sunshine pop",0.488,0.464,1.0,-9.496,1.0,0.0284,0.742,0.0,0.57,0.709,109.853,4.0,,Geffen*,"C © 1998 MCA Records Inc., P ℗ 1966 Dunhill Records Inc.",9477 +9478,spotify:track:4LAxvLPIOzy8ZCL7H21Sa3,That's Freedom,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,spotify:album:5jnIkqro2uzzkqKe67UiPT,Chain Reaction,spotify:artist:1QxaPWG1POM8Ul6WwsHq4y,John Farnham,1990-09-24,https://i.scdn.co/image/ab67616d0000b273bc42a3c1798a35d10a72b052,1,1,259026,https://p.scdn.co/mp3-preview/419d6142fb407ef2e2a05fc75946effe258ef450?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUBM09041001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock",0.602,0.706,4.0,-10.358,1.0,0.0358,0.164,1e-05,0.421,0.654,120.045,4.0,,BMG Music,P (P) 1990 BMG Arista/Ariola Limited,9478 +9479,spotify:track:7hZW3cbGT0q0xTFqvemfLl,American Dream,spotify:artist:2l35CQqtYRh3d8ZIiBep4v,MKTO,spotify:album:6hcPm6dCD58O5UI6xv019r,MKTO,spotify:artist:2l35CQqtYRh3d8ZIiBep4v,MKTO,2014,https://i.scdn.co/image/ab67616d0000b2737b31a5efb42a0cc696369c3a,1,4,225746,https://p.scdn.co/mp3-preview/6a7b5b377f1ebe10d8b398ac101d478c1151148a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM11305988,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,post-teen pop",0.554,0.767,0.0,-5.043,1.0,0.0497,0.114,0.0,0.231,0.497,122.846,4.0,,Columbia/M2V,"P (P) 2012, 2013 Columbia Records, a Division of Sony Music Entertainment",9479 +9480,spotify:track:0mflMxspEfB0VbI1kyLiAv,Stick Season,spotify:artist:2RQXRUsr4IW1f3mKyKsy4B,Noah Kahan,spotify:album:50ZenUP4O2Q5eCy2NRNvuz,Stick Season,spotify:artist:2RQXRUsr4IW1f3mKyKsy4B,Noah Kahan,2022-10-14,https://i.scdn.co/image/ab67616d0000b2736ee35072df1af802cca09918,1,2,182346,https://p.scdn.co/mp3-preview/0495eca339f32d0acaa62ca9be55d2b815ccc4e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,88,USUM72212470,spotify:user:bradnumber1,2024-04-04T04:06:07Z,"pov: indie,singer-songwriter pop",0.664,0.5,9.0,-6.935,1.0,0.0651,0.799,0.0,0.0966,0.801,117.896,4.0,,Mercury Records/Republic Records,"C © 2022 Mercury Records/Republic Records, a division of UMG Recordings, Inc., P ℗ 2022 Mercury Records/Republic Records, a division of UMG Recordings, Inc.",9480 +9481,spotify:track:65GZzBP1qyk4zH7c8RIJYD,Come on over Baby (All I Want Is You) - Radio Version,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,spotify:album:0VtMlmn7rAcWwxS3QOJo2h,Christina Aguilera,spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS,Christina Aguilera,1999-07-15,https://i.scdn.co/image/ab67616d0000b273b05da72c2d1ba1ef79cf5931,1,5,204533,https://p.scdn.co/mp3-preview/15909fde9cbd4ed0b24c188a421055fe1b6baf27?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC10000532,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.825,0.914,8.0,-3.207,1.0,0.102,0.216,2.43e-05,0.228,0.774,118.912,4.0,,RCA Records Label,P (P) 2000 BMG Entertainment,9481 +9482,spotify:track:5ifnGDKbZRpxx7xWHwgosN,Paper Roses,spotify:artist:2M93P87MDGek6uzg7Jn7he,Anita Bryant,spotify:album:1ntdWaX3bi1OmEynfrlV2V,Hear Anita Bryant in Your Home Tonight,spotify:artist:2M93P87MDGek6uzg7Jn7he,Anita Bryant,2001-09-20,https://i.scdn.co/image/ab67616d0000b27332b6f28e5d8ebc342d9c7d0c,1,1,169509,https://p.scdn.co/mp3-preview/1b4c98b86283d48fe6a3fffacbc718ff78d97577?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,ZA42A1541803,spotify:user:bradnumber1,2021-08-08T09:26:31Z,deep adult standards,0.274,0.237,7.0,-11.636,1.0,0.0314,0.873,0.0,0.16,0.275,116.018,4.0,,TP4 Music,"C 2015 TP4 Music, P 2015 TP4 Music",9482 +9483,spotify:track:1sEGwuvScFU2uNzlI7Aepy,Kissing a Fool - Remastered,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,spotify:album:34K1Kvskt9arWy8E1Gz3Lw,Faith,spotify:artist:19ra5tSw0tWufvUp8GotLo,George Michael,1987-10-30,https://i.scdn.co/image/ab67616d0000b273b7a9a6a2bf311630d3fc6956,1,9,280720,https://p.scdn.co/mp3-preview/4a1837c26d784efe33a1b17a1391904b787848c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBARL1000863,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.28,0.384,2.0,-9.845,0.0,0.031,0.114,1.33e-06,0.0831,0.143,77.949,4.0,,Epic,P (P) 2010 Sony Music Entertainment UK Limited,9483 +9484,spotify:track:7AMiYpjoofNamiXsAG6mDi,What Have You Done For Me Lately,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,spotify:album:3W2rEBPIwXyogofa5b4e6x,Control,spotify:artist:4qwGe91Bz9K2T8jXTZ815W,Janet Jackson,1986-02-04,https://i.scdn.co/image/ab67616d0000b2732e9db5f479c9946816418d28,1,3,300093,https://p.scdn.co/mp3-preview/ad857ff4d552ac56e684a618a31cff1d44d37a0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19500846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,r&b,urban contemporary",0.841,0.376,1.0,-13.322,1.0,0.0686,0.0151,0.0127,0.0579,0.823,114.039,4.0,,Universal Music Group,"C © 1986 A&M Records, P ℗ 1986 A&M Records",9484 +9485,spotify:track:3l3xTXsUXeWlkPqzMs7mPD,End Of The Road,spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,spotify:album:3jknvlUSe6D9Oyn2E3JBLO,Cooleyhighharmony (Bonus Tracks Version),spotify:artist:6O74knDqdv3XaWtkII7Xjp,Boyz II Men,1991-04-30,https://i.scdn.co/image/ab67616d0000b27373d0d8625dcf1e48043cfbf9,1,17,351466,https://p.scdn.co/mp3-preview/1a5089879c5a24a8c53d85e61d058c4f97a73b43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USMO19200465,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,new jack swing,r&b,urban contemporary",0.641,0.428,5.0,-9.29,0.0,0.024,0.0666,0.0,0.0579,0.53,149.705,3.0,,UNI/MOTOWN,"C © 2011 Motown Records, a Division of UMG Recordings, Inc., P This Compilation ℗ 2011 Motown Records, a Division of UMG Recordings, Inc.",9485 +9486,spotify:track:392zwJVuiuhDZC3ShNmLkD,We No Speak Americano (JT Radio Edit),"spotify:artist:4KkHjCe8ouh8C2P9LPoD4F, spotify:artist:6OkVmXCnj1BPjTf5aihiwt","Yolanda Be Cool, DCup",spotify:album:5kZ5KxEXZJROh2isNg2awJ,We No Speak Americano (Complete Remixes),"spotify:artist:4KkHjCe8ouh8C2P9LPoD4F, spotify:artist:6OkVmXCnj1BPjTf5aihiwt","Yolanda Be Cool, DCup",2010-07-17,https://i.scdn.co/image/ab67616d0000b2731645f964c6e03c3381461b94,1,15,157438,https://p.scdn.co/mp3-preview/5c55e264c924dc803ee82c67e10e1582fd34e201?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUCN30901654,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house,bass house",0.901,0.805,6.0,-5.005,1.0,0.0464,0.0712,0.0812,0.0923,0.737,124.996,4.0,,Sweat It Out,"C 2010 Sweat it Out, P 2010 Sweat it Out",9486 +9487,spotify:track:4LXcuph5vlGW0QtVvnch4k,65 Mustang,spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,spotify:album:0dTMD6aYILQr44dfBDDSaI,Two Lights,spotify:artist:7FgMLbnZVrEnir95O0YujA,Five For Fighting,2006-06-15,https://i.scdn.co/image/ab67616d0000b273993bb6bc3521abb0b6aedcfe,1,6,261600,https://p.scdn.co/mp3-preview/1dfcf1966d1a11a2388cc7c61c77d3612d15fc1e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USSM10602197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop rock",0.549,0.88,7.0,-5.105,1.0,0.0489,0.00309,0.0,0.33,0.542,155.985,4.0,,Aware/Columbia,P (P) 2006 Aware Records LLC,9487 +9488,spotify:track:0KKm6UfgGczmesil4dFE2R,Cold Hard Bitch,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,spotify:album:0EVrAzQ5qfFrJxcuwjXJBQ,Get Born,spotify:artist:5ypxebeHEIXjMtJb17uJlI,Jet,2003,https://i.scdn.co/image/ab67616d0000b273c87b336c01f7c7c6207c47d4,1,9,243200,https://p.scdn.co/mp3-preview/08a29a2a0757b46b51cf7476e942da0c90b23623?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USEE10340568,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"garage rock,modern rock,pop rock",0.459,0.886,2.0,-3.95,1.0,0.0645,0.000249,0.000359,0.0975,0.347,130.327,4.0,,Bloodlines,"C 2003 Real Horrorshow Pty. Ltd., P 2003 Real Horrorshow Pty. Ltd.",9488 +9489,spotify:track:3AeicLnm55RqcXGBKYQolM,King,spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),spotify:album:0bWYlK9rRmIB68icHx9PNR,Communion (Deluxe),spotify:artist:5vBSrE1xujD2FXYRarbAXc,Olly Alexander (Years & Years),2015-07-10,https://i.scdn.co/image/ab67616d0000b273b84e077bb3f2e36adbdeb6d4,1,8,215360,https://p.scdn.co/mp3-preview/ec290c814455a3dd06316c8465fab9c1a12a6e7f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,GBUM71406892,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gauze pop,pop,pop dance,uk pop",0.56,0.857,4.0,-4.145,0.0,0.0384,0.0594,0.0,0.381,0.432,119.975,4.0,,Polydor Records,"C © 2016 Polydor Ltd. (UK), P ℗ 2016 Polydor Ltd. (UK)",9489 +9490,spotify:track:3nrMBtbL4zFIPuDo8e5Sf4,Toes,spotify:artist:5pdyjBIaY5o1yOyexGIUc6,Lights,spotify:album:4sjOmCevEX6VZe5Q7fTdqk,Siberia,spotify:artist:5pdyjBIaY5o1yOyexGIUc6,Lights,2011,https://i.scdn.co/image/ab67616d0000b273cc17321db6ef58e39117652d,1,3,199481,https://p.scdn.co/mp3-preview/048e8166e948867acab223e26843d0a3919892ce?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CA5DG1100203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian folk,canadian pop,electropop,indie poptimism",0.645,0.861,9.0,-5.301,1.0,0.0414,0.108,0.00215,0.59,0.248,123.988,4.0,,Last Gang,"C 2014 Last Gang Records Inc., P 2014 Last Gang Records Inc.",9490 +9491,spotify:track:2jaN6NgXflZTj2z9CWcqaP,Time Is On My Side - Mono Version,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,spotify:album:0MDhZ0yRkugNEg7PmMMUE8,The Rolling Stones No. 2,spotify:artist:22bE4uQ6baNwSHPVcDxLCe,The Rolling Stones,1965-01-15,https://i.scdn.co/image/ab67616d0000b273ade1843699bf51399b70303a,1,4,179133,https://p.scdn.co/mp3-preview/fde23a2c65519387f9264bb45be9b7a102b7f290?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USA176410330,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,rock",0.508,0.645,5.0,-9.012,1.0,0.0395,0.291,3.25e-06,0.107,0.412,99.302,4.0,,ABKCO (US),"C © 2010 ABKCO Music & Records, Inc., P ℗ 2010 ABKCO Music & Records, Inc.",9491 +9492,spotify:track:49W2j3DMkmmxPHL1pok4Bt,You Ruin Me,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,spotify:album:2zzBNay9x9XyCmk5SzesAD,The Veronicas,spotify:artist:1dIdBZaaHRW2bDTkHNfWln,The Veronicas,2014-10-24,https://i.scdn.co/image/ab67616d0000b2738212b5177b39bab83337440f,1,9,231213,https://p.scdn.co/mp3-preview/06834bcae4174d7184efd335cd60b57faefa7139?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUBM01400384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,candy pop,dance pop,girl group,post-teen pop",0.478,0.442,5.0,-5.165,1.0,0.0285,0.705,0.0,0.119,0.222,93.005,5.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment Australia Pty Ltd.,9492 +9493,spotify:track:0ZUHoyKB4dPqXG7MGvnQGm,One and Only,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7n3QJc7TBOxXtlYh4Ssll8,21,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2011-01-19,https://i.scdn.co/image/ab67616d0000b273ba764098164f221484bcc309,1,9,348226,https://p.scdn.co/mp3-preview/a081279c55b878b41b78183b56e0ffc9f2cd400b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1000358,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.528,0.467,5.0,-5.306,1.0,0.0287,0.295,0.0,0.165,0.184,154.985,3.0,,XL Recordings,"C 2011 XL Recordings Ltd., P 2011 XL Recordings Ltd.",9493 +9494,spotify:track:3IqZwsaeA895XFqcdLT8cv,Your Mama Won't Like Me - 2017 Remaster,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,spotify:album:4jIGlh7B0h1JbNMoR9QU2u,Your Mamma Won't Like Me (2017 Remaster),spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,1975-05-01,https://i.scdn.co/image/ab67616d0000b2734f75d38010a990ba6d56e377,1,5,240182,https://p.scdn.co/mp3-preview/5ea8a489d4b22964bf205bd798e334d5ef1bf9f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UKKP21700039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.768,0.678,9.0,-9.091,1.0,0.0382,0.061,1.9e-05,0.154,0.866,107.803,4.0,,Chrysalis Records,"C 1975 Chrysalis Records Limited, P 2017 Chrysalis Records Limited",9494 +9495,spotify:track:59wpu37k02o2UGZIPpcSPd,Jai Ho! (You Are My Destiny),"spotify:artist:1mYsTxnqsietFxj1OgoGbG, spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ, spotify:artist:40xbWSB4JPdOkRyuTDy1oP","A.R. Rahman, The Pussycat Dolls, Nicole Scherzinger",spotify:album:06OZaoXnpO90Pgn688eMFS,Jai Ho! (You Are My Destiny),"spotify:artist:1mYsTxnqsietFxj1OgoGbG, spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ","A.R. Rahman, The Pussycat Dolls",2009-01-01,https://i.scdn.co/image/ab67616d0000b2732a0b8013accd599ec3f4838f,1,1,222400,https://p.scdn.co/mp3-preview/23302bf2bcb436cfc738931264f06cd4322c34fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70954362,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"filmi,dance pop,girl group,pop,dance pop,pop,post-teen pop",0.657,0.941,8.0,-3.919,0.0,0.061,0.0476,0.0,0.0797,0.879,136.202,4.0,,A&M,"C © 2009 Pussycat Dolls, LLC/Celador Films Ltd., P ℗ 2009 Pussycat Dolls, LLC/Celador Films Ltd.",9495 +9496,spotify:track:32z32gEn14FHJJ2lZP4xLS,Mr. Custer,spotify:artist:6vWMWDRy2Jbshg42p1Iuzg,Larry Verne,spotify:album:73UNlKpK6B9K19V4X1eC3X,Mister Larry Verne,spotify:artist:6vWMWDRy2Jbshg42p1Iuzg,Larry Verne,2011-11-15,https://i.scdn.co/image/ab67616d0000b273d40a176d4a46f289b7977229,1,9,185213,https://p.scdn.co/mp3-preview/91965f39cd4fc94e7ebc78d43f4426a0f3470a41?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USDEI6004493,spotify:user:bradnumber1,2021-08-08T09:26:31Z,novelty,0.83,0.228,1.0,-14.219,1.0,0.0792,0.627,0.00189,0.151,0.0613,107.862,4.0,,K-Tel,,9496 +9497,spotify:track:4ZfpHQ2mkA4HYZtVWBfOCK,Set In Stone,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,spotify:album:60xMsH43kSlsB7oy5bW5IO,Set In Stone,spotify:artist:5PjekOABtfU2Kwo0AHVmci,Guy Sebastian,2016-10-28,https://i.scdn.co/image/ab67616d0000b273a81c14bb0b05699fe088c030,1,1,220958,https://p.scdn.co/mp3-preview/e1a77fc3dd5204bccb54712a36a3285a7349e7ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUBM01600386,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.487,0.295,4.0,-8.302,1.0,0.0308,0.567,1.27e-05,0.102,0.0709,78.122,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd,9497 +9498,spotify:track:1SJhFhvKS5eAymk54HMWyM,Keep On Dancing,spotify:artist:35rZNMlMkBs7ghHmGKt0xq,Mike Waters,spotify:album:0D207ivJSjZuncyBgvrXHt,Keep On Dancing,spotify:artist:35rZNMlMkBs7ghHmGKt0xq,Mike Waters,2021-05-28,https://i.scdn.co/image/ab67616d0000b2736f1bef8da02f9f986cccaee2,1,1,152706,https://p.scdn.co/mp3-preview/fe98f012102b8676fdebb2b24416e46d242015fa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUBM02100088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,folk-pop,0.705,0.704,9.0,-5.628,1.0,0.0498,0.0331,0.0,0.385,0.528,115.078,4.0,,Sony Music Entertainment,P (P) 2021 Mike Waters under exclusive licence to Sony Music Entertainment Australia Pty Ltd,9498 +9499,spotify:track:3oDFtOhcN08qeDPAK6MEQG,Boom Boom Pow,spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,spotify:album:1dgbFU08pXJXZhGPlybdMX,THE E.N.D. (THE ENERGY NEVER DIES) [Deluxe Version],spotify:artist:1yxSLGMDHlW21z4YXirZDS,Black Eyed Peas,2009-01-01,https://i.scdn.co/image/ab67616d0000b2730bd44f5ff9ecc99f7770acc5,1,1,251440,https://p.scdn.co/mp3-preview/cf823925e9e910dabd1121790a42f9922b7158f4?cid=9950ac751e34487dbbe027c4fd7f8e99,True,68,USUM70955624,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.866,0.857,9.0,-5.894,1.0,0.0664,0.13,0.0017,0.13,0.408,130.049,4.0,,Interscope,"C © 2009 Interscope Records, P ℗ 2009 Interscope Records",9499 +9500,spotify:track:0zK545STj6P7qbFSpCK9pp,No Matter What - Remastered 2010,spotify:artist:4pJCawaKSZ40EnxN0YEYw3,Badfinger,spotify:album:2k5XYJN31jQz577blA1Xod,No Dice (Remastered 2010 / Deluxe Edition),spotify:artist:4pJCawaKSZ40EnxN0YEYw3,Badfinger,1970-11-09,https://i.scdn.co/image/ab67616d0000b273c3404368ea65ac78414935ab,1,5,180546,https://p.scdn.co/mp3-preview/061b5b38268285806bc1175622fb327f015694b2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,54,GBDCE1000080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,beatlesque,classic rock,country rock,folk rock,jangle pop,mellow gold,power pop,singer-songwriter,soft rock",0.529,0.743,9.0,-5.523,1.0,0.0481,0.177,0.0,0.0759,0.78,116.817,4.0,,EMI Catalogue,"C © 2010 Apple Corps Ltd, P This Compilation ℗ 2010 Apple Corps Ltd",9500 +9501,spotify:track:4Vs8RLrUdDXeaZbNeIOrtn,Dancing in the Moonlight (feat. NEIMY),"spotify:artist:4FcZfItjVIsfO9TynErl7X, spotify:artist:71Dhj822M1LGpuryPIV2KO","Jubël, NEIMY",spotify:album:3W6PgZUb6L1bvHXO0HyH3I,Dancing In The Moonlight (feat. NEIMY),spotify:artist:4FcZfItjVIsfO9TynErl7X,Jubël,2018-09-07,https://i.scdn.co/image/ab67616d0000b27397dd4a46cb2a57e8e0dca0ce,1,1,164009,,False,0,UK8E21801201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"swedish pop,scandipop,tropical house",0.662,0.614,11.0,-5.864,0.0,0.0645,0.28,0.0,0.187,0.198,119.842,4.0,,WM Australia,"C © 2018 Good Soldier Records Ltd marketed and distributed by Warner Music Australia Pty Limited under exclusive licence, P ℗ 2018 Good Soldier Records Ltd marketed and distributed by Warner Music Australia Pty Limited under exclusive licence",9501 +9502,spotify:track:5fVZC9GiM4e8vu99W0Xf6J,How to Save a Life,spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,spotify:album:1IM3GwptCGYjRkzCBolyFK,How To Save A Life,spotify:artist:0zOcE3mg9nS6l3yxt1Y0bK,The Fray,2005-09-13,https://i.scdn.co/image/ab67616d0000b27359b8b957f164ce660919f1f4,1,3,262533,https://p.scdn.co/mp3-preview/30d90238cdd10ea0a938ddc8ec122dabb87ac035?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USSM10601178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,piano rock,pop,pop rock",0.64,0.743,10.0,-4.08,1.0,0.0379,0.269,0.0,0.101,0.361,122.035,4.0,,Epic,P (P) 2005 Sony Music Entertainment,9502 +9503,spotify:track:02WacdrRpm4zlP8H7X6bnQ,Dancing On My Own,spotify:artist:6ydoSd3N2mwgwBHtF6K7eX,Calum Scott,spotify:album:5Hq4LcmCQ6BP3kM8J5lgga,Dancing On My Own,spotify:artist:6ydoSd3N2mwgwBHtF6K7eX,Calum Scott,2016-06-03,https://i.scdn.co/image/ab67616d0000b2731867ffdead655859c87dacc2,1,1,260004,https://p.scdn.co/mp3-preview/57dcf5872dc4e4a37f7a8761f09ae865728048cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UK6KW1500205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.608,0.174,1.0,-8.796,1.0,0.0332,0.851,1.92e-05,0.0855,0.193,112.175,4.0,,Universal Music Group,"C © 2016 Capitol Records, P ℗ 2016 Capitol Records",9503 +9504,spotify:track:34KTEhpPjq6IAgQg2yzJAL,Californication,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:0fLhefnjlIV3pGNF9Wo8CD,Californication,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,1999-06-08,https://i.scdn.co/image/ab67616d0000b273a9249ebb15ca7a5b75f16a90,1,6,329733,https://p.scdn.co/mp3-preview/0fd595c5b63db10f4a99683f8248ea5d13700683?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USWB19900690,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.592,0.767,9.0,-2.788,0.0,0.027,0.0021,0.00165,0.127,0.328,96.483,4.0,,Warner Records,"C © 1999 Warner Records Inc., P ℗ 1999 Warner Records Inc.",9504 +9505,spotify:track:6IxhlGtqmnnCIZX7j0nJtt,Shot You Down,"spotify:artist:5kwHgbzNHq1iHkUSrAmjjQ, spotify:artist:3IZrrNonYELubLPJmqOci2","Audio Bullys, Nancy Sinatra",spotify:album:4TFiGel5ytzlqcQp5tiPN1,Generation,spotify:artist:5kwHgbzNHq1iHkUSrAmjjQ,Audio Bullys,2005-01-01,https://i.scdn.co/image/ab67616d0000b273df43e323d2024f3ed8939315,1,2,214923,https://p.scdn.co/mp3-preview/57a594f3625adade9c88c9e6a75357752abca757?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBDCG0500072,spotify:user:bradnumber1,2022-08-31T00:28:36Z,"big beat,lounge,sunshine pop",0.729,0.598,5.0,-4.724,0.0,0.0567,0.299,0.0773,0.162,0.474,125.971,4.0,,Source UK,"C © 2005 Universal Music Operations Limited, P ℗ 2005 Universal Music Operations Limited",9505 +9506,spotify:track:20BpvfS6lIbi083TyPePMn,Original Prankster,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,spotify:album:1AcUejY65mpt5Ze1Nx5xuV,Conspiracy Of One,spotify:artist:5LfGQac0EIXyAN8aUwmNAQ,The Offspring,2000-11-07,https://i.scdn.co/image/ab67616d0000b27342c87cc849fa5f80085fc0a8,1,3,220960,https://p.scdn.co/mp3-preview/df9249d557a78da386914e8f5c8f38ac30a4ba0f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10015828,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,permanent wave,post-grunge,punk,rock,skate punk,socal pop punk",0.666,0.872,2.0,-4.21,1.0,0.0342,0.000606,7.25e-06,0.267,0.96,146.742,4.0,,Columbia,P (P) 2000 Sony Music Entertainment Inc.,9506 +9507,spotify:track:6YTk41mea0k2SBhEVf5lGu,Put Down That Weapon,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:4tSyLb9l1xuqGBxjv1jiLn,Diesel And Dust,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1987-06-22,https://i.scdn.co/image/ab67616d0000b273fa49ec77079f6b25edaebd32,1,2,278120,https://p.scdn.co/mp3-preview/5b563668fec3a1c8381ba6aa7e6992198c09787b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUSM09800191,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.676,0.393,4.0,-15.067,0.0,0.0257,0.0769,0.000301,0.372,0.649,109.051,4.0,,Columbia,P (P) 1987 Midnight Oil,9507 +9508,spotify:track:7GbqE3MlkKosIaCvf50JRK,"Lady Marmalade - From ""Moulin Rouge"" Soundtrack","spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS, spotify:artist:5tth2a3v0sWwV1C7bApBdX, spotify:artist:6lHL3ubAMgSasKjNqKb8HF, spotify:artist:1KCSPY1glIKqW2TotWuXOR","Christina Aguilera, Lil' Kim, Mýa, P!nk",spotify:album:5cbAqQZSEgRiiNjuEHWTXc,Moulin Rouge,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2001-09-03,https://i.scdn.co/image/ab67616d0000b273e6e0891de00a924b0f186d0c,1,2,264893,https://p.scdn.co/mp3-preview/607f6f1a18b4a42df14e984a600484e499fcfe36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USIR10110334,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,dance pop,east coast hip hop,hip hop,hip pop,pop rap,r&b,rap,southern hip hop,trap queen,urban contemporary,contemporary r&b,hip pop,r&b,urban contemporary,dance pop,pop",0.76,0.801,5.0,-3.769,1.0,0.0534,0.0144,1.49e-05,0.665,0.653,109.919,4.0,,Moulin Rouge / Interscope,"C © 2002 Twentieth Century Fox Film Corp / Interscope Records, P ℗ 2002 Twentieth Century Fox Film Corp / Interscope Records",9508 +9509,spotify:track:5QldjuXcxplhjjUqLrzl6H,Kids,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,spotify:album:3VfcbvbaalkDLRCIplPj3e,Oracular Spectacular/Congratulations,spotify:artist:0SwO7SWeDHJijQ3XNS7xEE,MGMT,2007,https://i.scdn.co/image/ab67616d0000b2737823743acd3aa25a3a4c5758,1,5,302840,https://p.scdn.co/mp3-preview/efb065069d22384206b0fc703c6f99734d33411d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10702135,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,indie rock,indietronica,modern rock,rock",0.451,0.931,9.0,-3.871,1.0,0.0719,0.00076,0.0049,0.361,0.172,122.961,4.0,,Columbia/Legacy,P (P) 2007 Sony Music Entertainment/(P) 2010 Sony Music Entertainment,9509 +9510,spotify:track:0aOluBqXYd0rFSCsgDyAWX,Take Me to Church,spotify:artist:2FXC3k01G6Gw61bmprjgqS,Hozier,spotify:album:04E0aLUdCHnhnnYrDDvcHq,Hozier,spotify:artist:2FXC3k01G6Gw61bmprjgqS,Hozier,2014-10-07,https://i.scdn.co/image/ab67616d0000b2730359731f8f8240580be3a9ee,1,1,241693,https://p.scdn.co/mp3-preview/333349ad660d769df4c7dbe970c34854150a7aed?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM11307291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish singer-songwriter,modern rock,pop,pov: indie",0.575,0.664,4.0,-5.303,0.0,0.0481,0.637,0.0,0.116,0.437,129.07,4.0,,Columbia,"P (P) 2013, 2014 Rubyworks, under license to Columbia Records, a Division of Sony Music Entertainment",9510 +9511,spotify:track:1Iu66OVgb8wioY6tpesoQS,You Should Be Dancing,spotify:artist:0mCTPQ5oa1lbPvbw4kc0eX,Dee Gees,spotify:album:50QMS2zosvUxhucf6zMRUy,Dee Gees / Hail Satin - Foo Fighters / Live,spotify:artist:7jy3rLJdDQY21OgRLCZ9sD,Foo Fighters,2021-07-19,https://i.scdn.co/image/ab67616d0000b27349bd2ec205b205768f97f817,1,1,232746,https://p.scdn.co/mp3-preview/7523a2bbd9d10bab2d47b1eed715348dac05c940?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USRW32100047,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.649,0.822,0.0,-6.915,0.0,0.0531,0.00166,0.0707,0.43,0.794,123.402,4.0,,RCA Records Label,"P (P) 2021 Roswell Records, Inc., under exclusive license to RCA Records",9511 +9512,spotify:track:3AJk0zltdY4XjD2be7a7ss,I Don't Wanna Be In Love (Dance Floor Anthem),spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,spotify:album:02abrECBsxdR3Ywjy1hCuW,Greatest Hits,spotify:artist:5aYyPjAsLj7UzANzdupwnS,Good Charlotte,2010-11-12,https://i.scdn.co/image/ab67616d0000b273aabb9557204ead9f05752743,1,15,244146,https://p.scdn.co/mp3-preview/181c85fa212066c59cf6f8a6520f5112ba681bac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USSM10607447,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,neon pop punk,pop punk,pop rock,post-grunge",0.642,0.875,6.0,-3.14,1.0,0.042,0.0233,0.0,0.19,0.556,124.946,4.0,,Epic/Legacy,"P (P) 2010 Epic Records, a division of Sony Music Entertainment",9512 +9513,spotify:track:3TjlMH27nWbY3veJ8fHdaD,Caribbean Queen (No More Love On the Run),spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,spotify:album:5ciu3GM6WiMGBOSbQKgc5z,Here You Are: The Best of Billy Ocean,spotify:artist:5IDs1CK15HegSAhGEbSYXo,Billy Ocean,2016-04-29,https://i.scdn.co/image/ab67616d0000b273f816e3458f3257843d8fbf6d,2,4,244320,https://p.scdn.co/mp3-preview/306a359f97a70de60da94c16c360e37370eaec90?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHK9700109,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new romantic,new wave pop,soft rock,yacht rock",0.791,0.693,5.0,-6.112,1.0,0.0264,0.169,3.26e-05,0.0889,0.956,113.806,4.0,,Sony Music CG,P This compilation (P) 2016 Leslie Charles under exclusive licence to Sony Music Entertainment UK Limited,9513 +9514,spotify:track:2ktkzRZ2T9jwYkwtmn8lPc,I Must Be Seeing Things - Remastered,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,spotify:album:5pQ2tLB6FaqkJVMoKhPkSy,The Rockville Rocket (Remastered),spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,2019-11-08,https://i.scdn.co/image/ab67616d0000b2731c07c0306e1d183746598093,1,11,149346,https://p.scdn.co/mp3-preview/f65d75be2495182e25216b948f2d28fb6dae4a00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,DEXO81953808,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,merseybeat,rock-and-roll,rockabilly",0.554,0.626,5.0,-8.718,1.0,0.0382,0.491,0.0,0.139,0.572,108.414,4.0,,Master Tape Records,"C 2019 Master Tape Records, P 2019 Master Tape Records",9514 +9515,spotify:track:4fsw79o9lXmxKAucd56Cbm,Beach Baby,spotify:artist:5pIuhQWZ3S55Y46wQMPrjh,The First Class,spotify:album:5jM2xa3EYL3hNVdGMn5Oo3,Beach Baby: The Greatest Hits,spotify:artist:5pIuhQWZ3S55Y46wQMPrjh,The First Class,1999,https://i.scdn.co/image/ab67616d0000b273b597c9ae6d4f04c68469d951,1,1,314523,https://p.scdn.co/mp3-preview/d8b065b530cea1437333191ac2e16800c5f0b2f8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,QM7281773461,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.394,0.787,7.0,-10.432,1.0,0.0671,0.0339,0.000179,0.861,0.431,135.351,4.0,,Airline Records,"C (C) 1999 Originally Released © Airline Records. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws., P (P) 1999 Originally Released © Airline Records. WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws.",9515 +9516,spotify:track:0rTkE0FmT4zT2xL6GXwosU,I Got You (I Feel Good),spotify:artist:32r72WOqqRO1DtSznId7Lr,James Brown & The Famous Flames,spotify:album:2VM5yuYcvftfvYvJC0RwwW,I Got You (I Feel Good),spotify:artist:32r72WOqqRO1DtSznId7Lr,James Brown & The Famous Flames,1966-01-01,https://i.scdn.co/image/ab67616d0000b273f621bb97c48394f01c68cc52,1,1,165800,https://p.scdn.co/mp3-preview/8a9fac11f510a6d5d6cd6ff903f6e8cd0c43dd54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USPR37510016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soul,0.608,0.471,0.0,-8.664,1.0,0.0945,0.446,3.63e-06,0.369,0.682,70.702,3.0,,Universal Music Group,"C © 1966 Universal Records, a Division of UMG Recordings, Inc., P ℗ 1966 Universal Records, a Division of UMG Recordings, Inc.",9516 +9517,spotify:track:5PuAFxKmqG72uKyoo11zpQ,(You're) Having My Baby,"spotify:artist:7ceUfdWq2t5nbatS6ollHh, spotify:artist:3UgUTRbDBLMcRCantpTWIe","Paul Anka, Odia Coates",spotify:album:5yekdvOvjZ0Zptw76gpL95,Anka,spotify:artist:7ceUfdWq2t5nbatS6ollHh,Paul Anka,1974,https://i.scdn.co/image/ab67616d0000b2732268471b66f2de42940f5c63,1,4,156293,https://p.scdn.co/mp3-preview/6120f74beacaff8e99b6e9848ae290c24b16ee0c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USEM38700127,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,canadian pop,easy listening,rock-and-roll",0.596,0.589,0.0,-8.747,1.0,0.037,0.551,0.0,0.0897,0.587,75.288,4.0,,Capitol Records,"C © 2011 Capitol Records, LLC, P ℗ 2011 Capitol Records, LLC",9517 +9518,spotify:track:1ZHWO6q1J88f9WrRJbPupM,Diamonds,spotify:artist:6fzQ81ouajOEFqCIB9VwrS,Morgan Evans,spotify:album:32a1lfCxSO9INWxjCI9C83,Diamonds,spotify:artist:6fzQ81ouajOEFqCIB9VwrS,Morgan Evans,2019-11-08,https://i.scdn.co/image/ab67616d0000b2732a054f24bc2181f9f194303e,1,1,172346,https://p.scdn.co/mp3-preview/834b3c4aff6035bcb5c6b7038ddce9a1d9e678e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USWB11902787,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian country,contemporary country,country road,modern country rock",0.634,0.823,2.0,-5.01,1.0,0.0367,0.322,2.53e-05,0.317,0.964,157.878,4.0,,Warner Records,"C 2018 © 2019 Warner Music Nashville LLC., P ℗ 2019 Warner Music Nashville LLC.",9518 +9519,spotify:track:5EdlwzcgIAYs2HGvOnczPN,I Just Want To Be Your Everything,spotify:artist:4YPqbAiLzBg5DIfsgQZ8QK,Andy Gibb,spotify:album:3yBKvLLgqZfNTNtoUnq0Uf,Flowing Rivers,spotify:artist:4YPqbAiLzBg5DIfsgQZ8QK,Andy Gibb,1977-09-09,https://i.scdn.co/image/ab67616d0000b2739007e7e22a518d1a8647c70b,1,1,225666,https://p.scdn.co/mp3-preview/9cd1b82a06a3103aacc787b19845a9bab5cc5c06?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,NLF057790036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,soft rock",0.651,0.648,9.0,-7.44,1.0,0.0346,0.167,1.7e-05,0.192,0.868,97.017,4.0,,Andy Gibb,"C © 1977 Peta Gibb, P ℗ 1977 Peta Gibb",9519 +9520,spotify:track:5Ue25r0VGvZR7vaw3iB0gZ,Turn All the Lights On (feat. Ne-Yo),"spotify:artist:3aQeKQSyrW4qWr35idm0cy, spotify:artist:21E3waRsmPlU7jZsS13rcj","T-Pain, Ne-Yo",spotify:album:49FwsZq64UotAHB0CXGR1N,rEVOLVEr (Deluxe Version),spotify:artist:3aQeKQSyrW4qWr35idm0cy,T-Pain,2011-12-02,https://i.scdn.co/image/ab67616d0000b27394f26a33c5fd4ea5c80c7949,1,14,216440,https://p.scdn.co/mp3-preview/11d3841a944a687ab7d6fff9556717a3070f9408?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USRC11101041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,r&b,rap,southern hip hop,trap,urban contemporary,dance pop,pop,r&b,urban contemporary",0.697,0.807,6.0,-3.049,0.0,0.0587,0.0382,0.0,0.471,0.732,127.01,4.0,,RCA Records Label,"P (P) 2011 RCA Records, a division of Sony Music Entertainment",9520 +9521,spotify:track:0Dq49j3dELbttQVUJbtn0c,Nervous,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:6AjREacSERvnQTe6GFTx3c,Shawn Mendes,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2018-05-25,https://i.scdn.co/image/ab67616d0000b2733a2178ae7cf4e68cad643f7e,1,2,164146,https://p.scdn.co/mp3-preview/93e162214a1a45e5cb194cad7ff27534297cef07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71804963,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.841,0.622,0.0,-6.763,1.0,0.0756,0.041,0.0,0.126,0.738,121.988,4.0,,Island Records,"C © 2018 Island Records, a division of UMG Recordings, Inc., P ℗ 2018 Island Records, a division of UMG Recordings, Inc.",9521 +9522,spotify:track:12HgZnRqGPwIZJD0gPsUor,Breathing,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:31tCg5RXhY5jpagfCPcQa2,Future History (Deluxe Edition),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2011-09-16,https://i.scdn.co/image/ab67616d0000b27381541b43fcbc56488853de26,1,3,234053,https://p.scdn.co/mp3-preview/16da0f95f0d654af25fdc4d3a4bb35909df5fdb6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,USWB11102509,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.557,0.814,10.0,-4.469,0.0,0.0872,0.0114,7.97e-05,0.345,0.616,127.969,4.0,,Beluga Heights/Warner Records,"C © 2011 Warner Records Inc., P ℗ 2011 Warner Records Inc.",9522 +9523,spotify:track:4joiWvli4qJVEW6qZV2i2J,All My Loving - Remastered 2009,spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,spotify:album:1aYdiJk6XKeHWGO3FzHHTr,With The Beatles (Remastered),spotify:artist:3WrFJ7ztbogyGnTHbHJFl2,The Beatles,1963-11-22,https://i.scdn.co/image/ab67616d0000b273608a63ad5b18e99da94a3f73,1,3,127853,https://p.scdn.co/mp3-preview/aec054fa005b95f88cdf8e35332ca48857931826?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBAYE0601426,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,classic rock,merseybeat,psychedelic rock,rock",0.416,0.563,1.0,-8.724,0.0,0.0298,0.207,0.0,0.343,0.9,77.56,4.0,,EMI Catalogue,"C © 2015 Apple Corps Ltd, P ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group)",9523 +9524,spotify:track:1LYNuVLtV374Iy7vlHy6BO,I Can Be Your Star,spotify:artist:5Z8dppr18ffRuESjxyQTXW,Peppermint Heaven,spotify:album:46TEYBVRJfnlBk8hx7Bgql,I Can Be Your Star,spotify:artist:5Z8dppr18ffRuESjxyQTXW,Peppermint Heaven,2021-06-25,https://i.scdn.co/image/ab67616d0000b273229dc4adbfa969108a41eec1,1,1,302732,https://p.scdn.co/mp3-preview/f44c0bdedb7ac28b530d62ff8b08780a11196a4c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,US9RG2100004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.527,0.885,5.0,-6.094,1.0,0.0344,5.63e-06,0.000884,0.1,0.468,125.085,4.0,,Megahit Records,"C (C) 2021 Megahit Records, P (P) 2021 Megahit Records",9524 +9525,spotify:track:0qRR9d89hIS0MHRkQ0ejxX,Rich Girl,spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,spotify:album:5TNzBp7QYsXIHrI5xxVuic,Bigger Than Both Of Us,spotify:artist:77tT1kLj6mCWtFNqiOmP9H,Daryl Hall & John Oates,1976-08-01,https://i.scdn.co/image/ab67616d0000b2733ebc5b9d8942069d3b920550,1,2,142786,https://p.scdn.co/mp3-preview/246e1cdfbc760791fa34b2ac697259b6c3598009?cid=9950ac751e34487dbbe027c4fd7f8e99,False,82,USRC17607760,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,singer-songwriter,soft rock,yacht rock",0.573,0.683,5.0,-6.644,1.0,0.176,0.461,0.0,0.0935,0.817,169.519,4.0,,RCA Records Label,"P (P) 1976 RCA Records, a division of Sony Music Entertainment",9525 +9526,spotify:track:1xOXXYh6lTW8laxlW7JP2J,Only the Good Die Young,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:1Mhn9VosyjtWn4dMPFlna6,The Stranger (Legacy Edition),spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1977,https://i.scdn.co/image/ab67616d0000b2736ce61113662ecf693b605ee5,1,6,235560,https://p.scdn.co/mp3-preview/9e6acbbe97f8a6c71fd21fe606987e1b8840dc8f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM17700374,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.579,0.872,0.0,-6.126,1.0,0.159,0.159,0.0,0.0935,0.761,76.214,4.0,,Columbia/Legacy,"P (P) 1977 Columbia Records, a division of Sony Music Entertainment/(P) 2008 Columbia Records, a division of Sony Music Entertainment",9526 +9527,spotify:track:20X9OeC606XNwEtDBOym5u,Love Drunk,spotify:artist:0vWCyXMrrvMlCcepuOJaGI,BOYS LIKE GIRLS,spotify:album:7DphDayDRJ1NtRmveflFWD,Love Drunk,spotify:artist:0vWCyXMrrvMlCcepuOJaGI,BOYS LIKE GIRLS,2009-09-07,https://i.scdn.co/image/ab67616d0000b27308a2b8e9210f518f6f4fbb8a,1,2,226706,https://p.scdn.co/mp3-preview/e52340cf2b59d07bdfe078546bf324e3f2b1b6e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USSM10903442,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neon pop punk,pop punk",0.44,0.976,10.0,-3.17,1.0,0.141,0.00177,3.39e-06,0.16,0.412,150.005,4.0,,Columbia,"P (P) 2009 Sony Music Entertainment and Big Machine Records, LLC, Sony Music Entertainment",9527 +9528,spotify:track:7ccI9cStQbQdystvc6TvxD,We Are The Champions - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:6Di4m5k1BtMJ0R44bWNutu,News Of The World (Deluxe Remastered Version),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1977-10-28,https://i.scdn.co/image/ab67616d0000b27393c65b02f4a72cd6eccf446d,1,2,179200,https://p.scdn.co/mp3-preview/edb9b92942f6c44cea060e481d2f6fecff19fbb9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBUM71029619,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.268,0.459,7.0,-6.948,0.0,0.0346,0.378,0.0,0.119,0.172,64.223,4.0,,Hollywood Records,"C © 2011 Hollywood Records, Inc., P ℗ 2011 Hollywood Records, Inc.",9528 +9529,spotify:track:7cjYWpqpBVtXbQTwvN9UYI,You Don't Know Me - Radio Edit,"spotify:artist:4Q6nIcaBED8qUel8bBx6Cr, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2","Jax Jones, RAYE",spotify:album:0zMLyv1kNV2B0LDGEK2RbB,Jonas Blue: Electronic Nature - The Mix 2017,spotify:artist:1HBjj22wzbscIZ9sEb5dyf,Jonas Blue,2017-07-14,https://i.scdn.co/image/ab67616d0000b2731d7a663d22101126d6f64432,1,2,213222,https://p.scdn.co/mp3-preview/88b42919a7450f0086b9b982d76dadc498ad9bd6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,GBUM71606455,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,house,pop dance,uk dance,uk contemporary r&b,uk pop",0.88,0.646,11.0,-6.129,0.0,0.167,0.179,0.0,0.271,0.666,123.983,4.0,,UMOD (Universal Music On Demand),"C © 2017 Universal Music On Demand, a division of Universal Music Operations Limited, P This Compilation ℗ 2017 Universal Music On Demand, a division of Universal Music Operations Limited",9529 +9530,spotify:track:75dHnNDDenNLCUwU1Shvcj,Sugar (feat. Wynter),"spotify:artist:0jnsk9HBra6NMjO2oANoPY, spotify:artist:4nmrm4zpgJ0RC6aZRSUEjF","Flo Rida, Wynter Gordon",spotify:album:4TjIFwqydSLXrDlm9RzQ6b,R.O.O.T.S. (Route of Overcoming the Struggle),spotify:artist:0jnsk9HBra6NMjO2oANoPY,Flo Rida,2009-03-23,https://i.scdn.co/image/ab67616d0000b2739c3cb61727d66803558f6815,1,12,252933,https://p.scdn.co/mp3-preview/11f776fde911de2f961178eca8978610a30269b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USAT20900460,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,miami hip hop,pop,pop rap",0.738,0.868,1.0,-4.15,1.0,0.0348,0.0371,0.0,0.294,0.199,130.003,4.0,,Poe Boy/Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States",9530 +9531,spotify:track:707gQZbBsOgHp32WIfUL4I,Stupid Girl,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,spotify:album:6728gFA002p99L67yrCHez,The Absolute Collection,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,2012-11-02,https://i.scdn.co/image/ab67616d0000b273ee6cf17633e03922c72294df,1,2,259133,https://p.scdn.co/mp3-preview/3522dd3618545ca835a0608520da8b36fdda2d26?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USGF19500408,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,electronic rock,permanent wave",0.593,0.804,11.0,-4.122,1.0,0.0335,0.00261,0.00119,0.0337,0.749,120.032,4.0,,Liberator Music,"C 2012 STUNVOLUME, P 2012 STUNVOLUME",9531 +9532,spotify:track:3gDVdpRQ6wsXScSVmYIWsM,Dawn (Go Away),spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,spotify:album:3qtHGcIoylQ98YIFh6OC4s,Dawn (Go Away) and 11 Other Hits,spotify:artist:6mcrZQmgzFGRWf7C0SObou,Frankie Valli & The Four Seasons,1964-03-01,https://i.scdn.co/image/ab67616d0000b2737fca6083924f41ece2d3fb64,1,6,167760,https://p.scdn.co/mp3-preview/17358208104fd9a42c5434fe2dcbe7a67ac7c3d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USRH10175203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,lounge,northern soul,rock-and-roll,rockabilly",0.638,0.605,9.0,-6.14,1.0,0.0352,0.551,0.0,0.101,0.869,133.748,4.0,,Rhino,"C © 1964 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Rhino Entertainment Company. All Rights Reserved., P ℗ 1964 Bob Gaudio & Frankie Valli d/b/a The 4 Seasons Partnership, by arrangement with Rhino Entertainment Company. All Rights Reserved. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",9532 +9533,spotify:track:5jC0WEuk3NQlWoh91CDwOS,What You Need,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:2A5QVgoJt1FZl7GmM4REzr,Listen Like Thieves (Remastered),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,1985,https://i.scdn.co/image/ab67616d0000b273aa9706da35b7cfb47c4aea86,1,1,216013,https://p.scdn.co/mp3-preview/2ef82493aadf9c0f85f8107b6f67c3a65bfc357e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAMX8500010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.664,0.901,11.0,-4.6,1.0,0.115,0.0454,0.00651,0.121,0.484,115.937,4.0,,Petrol Records,"C © 2011 Universal International Music BV, under exclusive license to Mercury Records Limited, P ℗ 2011 Universal International Music BV, under exclusive license to Mercury Records Limited",9533 +9534,spotify:track:0KXvhZzFYSl5RSdquzPb5C,People - 2007 Remastered,spotify:artist:4QDiSLl2fkDWuC4TIV7Z9Q,Mi-Sex,spotify:album:3FOnfFslARA9n5bEc4qEl8,The Essential,spotify:artist:4QDiSLl2fkDWuC4TIV7Z9Q,Mi-Sex,2007-04-07,https://i.scdn.co/image/ab67616d0000b27352a833ade4c1a83335355d17,1,4,232160,https://p.scdn.co/mp3-preview/fbb86d3fa98b04d9eff7d921b07a4873f8d678e9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,AUBM00700079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,kiwi rock",0.487,0.899,7.0,-8.574,1.0,0.0714,0.0101,0.000295,0.115,0.444,139.448,4.0,,Columbia,P This compilation (P) 2007 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,9534 +9535,spotify:track:5PuJ00qKGWqbGeeWbt8WJb,Heartbeat Loud,"spotify:artist:75HK7rgkmDMTnWwwmcN53N, spotify:artist:2r7POU2f5jV6x3k4vsNwrM","Andy C, Fiora",spotify:album:2u3D0tqxUKya8El5VN5Is2,Heartbeat Loud,"spotify:artist:75HK7rgkmDMTnWwwmcN53N, spotify:artist:2r7POU2f5jV6x3k4vsNwrM","Andy C, Fiora",2014-09-29,https://i.scdn.co/image/ab67616d0000b27342a5b90b9fb00127419ed102,1,1,179650,https://p.scdn.co/mp3-preview/d03dd4bef990dafb7a8249bb35aeeb2b4792b517?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBAHS1400344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"drum and bass,jungle,uk dnb,vocal trance",0.421,0.961,3.0,-1.059,1.0,0.0428,0.00174,0.000887,0.115,0.5,174.046,4.0,,Atlantic Records UK,"C © 2014 Andy Clarke under exclusive license to Atlantic Records UK, a Warner Music Group Company, P ℗ 2014 Andy Clarke under exclusive license to Atlantic Records UK, a Warner Music Group Company",9535 +9536,spotify:track:6yq8I9ItbjhiGYkfhCEJhA,Forgotten Years - Remastered,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:2H371tT3IIvmqji0iZCp0O,20000 Watt RSL - The Midnight Oil Collection,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1997,https://i.scdn.co/image/ab67616d0000b27318c8f4eca624b080ed00ba42,1,18,263653,https://p.scdn.co/mp3-preview/e60816def96ffded83dd5769d33835a1cd321873?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUSM09700199,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.549,0.907,11.0,-6.355,0.0,0.0582,0.036,1.79e-05,0.107,0.664,152.253,4.0,,Columbia,P 1997 Sony Music Productions Pty. Ltd.,9536 +9537,spotify:track:2EgAR5nu2dSuT2L9zecdbB,The Lion Sleeps Tonight,spotify:artist:6NaacjWVEwO2la6AnxH0ZK,Tight Fit,spotify:album:60kCoyDHm7jZVTsaYIoqMN,Tight Fit,spotify:artist:6NaacjWVEwO2la6AnxH0ZK,Tight Fit,1982-08-30,https://i.scdn.co/image/ab67616d0000b2739f36d08580282a9d875d4fd5,1,1,188946,https://p.scdn.co/mp3-preview/83e2e6049231de7b3288fd49999cf8b16ae75daf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAHK0400117,spotify:user:bradnumber1,2022-08-31T00:05:20Z,classic uk pop,0.674,0.814,5.0,-7.032,1.0,0.0408,0.0171,4.02e-05,0.142,0.803,120.937,4.0,,Sony Music UK,P (P)1982 Sony Music Entertainment UK Limited. All trademarks and logos are protected. All rights reserved. Distributed by Sony Music Entertainment UK Limited.,9537 +9538,spotify:track:6xAORvvGEMK44FygUsiMQy,Here I Go Again - 1987 Version; 2008 Remaster,spotify:artist:3UbyYnvNIT5DFXU4WgiGpP,Whitesnake,spotify:album:48hNwidkIjv8RhmCkAJdeY,Here I Go Again (1987 Version),spotify:artist:3UbyYnvNIT5DFXU4WgiGpP,Whitesnake,1987,https://i.scdn.co/image/ab67616d0000b273cb3507bbaed3f1d38224d8d8,1,1,273146,https://p.scdn.co/mp3-preview/a9dd154b767923e2b0063b1d53c6973ed03d4b2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,GB01A0800485,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british blues,classic rock,glam metal,hard rock,metal,rock",0.361,0.88,7.0,-4.959,1.0,0.0466,0.19,3.48e-05,0.294,0.224,91.06,4.0,,Parlophone UK,"C © 1987 Whitesnake Productions (Overseas) Ltd under exclusive licence to Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 1987 Parlophone Records Ltd, P ℗ 2008 The copyright in this sound recording is owned by Whitesnake Productions (Overseas) Ltd under exclusive licence to Parlophone Records Ltd",9538 +9539,spotify:track:618v3huzqDQQBfMogznSb3,Fast Car - Acoustic,"spotify:artist:1HBjj22wzbscIZ9sEb5dyf, spotify:artist:2zzpznMuhKlKlqh1ma7Sms","Jonas Blue, Dakota",spotify:album:6UcZPki3VoKEEQrI6nDON7,Fast Car (Acoustic),spotify:artist:1HBjj22wzbscIZ9sEb5dyf,Jonas Blue,2016-02-01,https://i.scdn.co/image/ab67616d0000b273a1deaab1886a782df0f80d90,1,1,217864,https://p.scdn.co/mp3-preview/f298e1b63337f9fec24e8930915e9ad158e040ae?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,GBUM71600355,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop dance,tropical house,uk dance",0.475,0.237,9.0,-9.923,1.0,0.0342,0.865,0.0,0.0881,0.595,103.045,4.0,,Positiva,"C © 2016 Universal Music Operations Limited, P ℗ 2016 Universal Music Operations Limited",9539 +9540,spotify:track:56KqaFSGTb7ifpt16t5Y1N,Rock the Casbah - Remastered,spotify:artist:3RGLhK1IP9jnYFH4BRFJBS,The Clash,spotify:album:1ZH5g1RDq3GY1OvyD0w0s2,Combat Rock (Remastered),spotify:artist:3RGLhK1IP9jnYFH4BRFJBS,The Clash,1982,https://i.scdn.co/image/ab67616d0000b27325a4df452a3c42ccc2e9288b,1,4,222426,https://p.scdn.co/mp3-preview/12e4111ac765fe7cfe64b004ce2c7b7dd5f2c2c9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,73,GBARL1200671,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,permanent wave,punk,rock",0.797,0.872,9.0,-6.727,0.0,0.0575,0.291,0.0,0.284,0.866,129.885,4.0,,Sony Music UK,P (P) 2013 Sony Music Entertainment UK Limited,9540 +9541,spotify:track:0otlwsD3mSogk7VJCTp6Kg,Let My Love Open The Door,spotify:artist:24Wa5wIZIo1sPkzVGP0B5p,Pete Townshend,spotify:album:0X8rEKkL2TupftQRrOzX4h,Empty Glass,spotify:artist:24Wa5wIZIo1sPkzVGP0B5p,Pete Townshend,1980-04-21,https://i.scdn.co/image/ab67616d0000b2733e7111cc866efb341a2988f2,1,4,164653,https://p.scdn.co/mp3-preview/549bee1ea59ee259276caeb8da34d79588edd649?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBUM71500440,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,blues rock,classic rock,country rock,folk rock,mellow gold,singer-songwriter",0.651,0.653,0.0,-9.731,1.0,0.0545,0.365,0.000117,0.0742,0.729,164.912,4.0,,UMC (Universal Music Catalogue),"C © 1980 Eel-Pie Recording Productions Ltd., under exclusive licence to UMC, a division of Universal Music Operations Ltd., P ℗ 1980 Eel-Pie Recording Productions Ltd., under exclusive licence to UMC, a division of Universal Music Operations Ltd.",9541 +9542,spotify:track:0KJ6DVCCXRoOxXTnZhExGk,All My Love (Solo Tu),spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,spotify:album:0SW33rIKZ2v0EmfqRLKufz,40 Golden Greats,spotify:artist:2nvKpWcP8etYTq4JrRiUiy,Cliff Richard,1977,https://i.scdn.co/image/ab67616d0000b2732effa5f5d8903fb4fea0838d,2,10,177573,https://p.scdn.co/mp3-preview/0b0dd5e527975b801155c9991524eef3e159cadf?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBAYE6700072,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,rock-and-roll",0.218,0.325,9.0,-11.568,1.0,0.0277,0.373,0.0,0.0971,0.559,181.04,3.0,,Parlophone UK,"C © 1989 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 1977 Parlophone Records Ltd, a Warner Music Group Company",9542 +9543,spotify:track:7EAFj7eJcMF5koWSRJVZcL,The Fighter,"spotify:artist:0u2FHSq3ln94y5Q57xazwf, spotify:artist:4xFUf1FHVy696Q1JQZMTRj","Keith Urban, Carrie Underwood",spotify:album:1r7ABqzNXQnUPAH3ZjrHMn,Ripcord (Australian Tour Edition),spotify:artist:0u2FHSq3ln94y5Q57xazwf,Keith Urban,2015-05-06,https://i.scdn.co/image/ab67616d0000b273ccfe879bd2b3fac9b42051dc,1,8,184040,https://p.scdn.co/mp3-preview/5c030f9c0058f8c2a996de53bf5d04265c1fcb0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,USUG11600163,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road,classic oklahoma country,contemporary country,country,country dawn,dance pop,pop",0.68,0.856,11.0,-5.166,0.0,0.0517,0.0224,0.0,0.188,0.755,132.008,4.0,,Capitol Nashville,"C © 2016 Hit Red Records, under exclusive license to Capitol Records Nashville, P ℗ 2016 Hit Red Records, under exclusive license to Capitol Records Nashville",9543 +9544,spotify:track:1Yxqqz6fjs0bXc9vvvhHsO,Goodbye - Remastered 2010 / Bonus Track,spotify:artist:5pBljwfwnohfSNDXixEYHm,Mary Hopkin,spotify:album:4TrA2bhBgwdyuy3mzzJWmW,Post Card (Remastered 2010 / Deluxe Edition),spotify:artist:5pBljwfwnohfSNDXixEYHm,Mary Hopkin,1969-02-21,https://i.scdn.co/image/ab67616d0000b2732af71bc7c47b3ae12aadcbb8,1,17,146506,https://p.scdn.co/mp3-preview/fceba1bcd98607f034517beaf870a59efb27186f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBDCE1000006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.435,0.467,1.0,-11.458,0.0,0.0374,0.405,0.000218,0.105,0.78,179.717,4.0,,EMI Catalogue,"C © 2010 Apple Corps Ltd, P This Compilation ℗ 2010 Apple Corps Ltd",9544 +9545,spotify:track:2co8fDyaVmxv8xruQWORnC,Road to Nowhere - 2005 Remaster,spotify:artist:2x9SpqnPi8rlE9pjHBwmSC,Talking Heads,spotify:album:5Dja2ASXd7MOM628iwYdtA,Little Creatures,spotify:artist:2x9SpqnPi8rlE9pjHBwmSC,Talking Heads,1985-07-10,https://i.scdn.co/image/ab67616d0000b273948dc970e1e9fbeb8959f7f9,1,9,260213,https://p.scdn.co/mp3-preview/cd2504c6bc755cb1cfd2f8fe1aef1fdba5977dc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,GB01A0500079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,art punk,dance rock,funk rock,new wave,permanent wave,post-punk,rock,zolo",0.654,0.789,2.0,-4.901,1.0,0.0322,0.0404,1.31e-05,0.12,0.579,110.37,4.0,,Parlophone UK,"C © 2005 Talking Heads Tours Inc under exclusive licence to Parlophone Records Ltd. This label copy information is the subject of copyright protection. All rights reserved. (C) 2005 Parlophone Records Ltd, P ℗ 2005 The copyright in this sound recording is owned by Talking Heads Tours Inc under exclusive licence to Parlophone Records Ltd",9545 +9546,spotify:track:2BSt27MzeOJH13Y9k6N4e8,Anything,spotify:artist:5rAaG3OuMuWvPWYji9TDgh,3T,spotify:album:3ChG0pQjLzXun4DNbqnDfp,90s R&B,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2014-09-26,https://i.scdn.co/image/ab67616d0000b273defddcc1c5b525859b81ebc8,1,39,321000,https://p.scdn.co/mp3-preview/6ee0b5a3a4b1a90c10137928e116433bf0e8ca5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,USSM19500747,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b",0.686,0.453,10.0,-10.927,0.0,0.0324,0.427,0.000207,0.286,0.647,131.978,4.0,,Sony Music Entertainment,P (P) 2014 Sony Music Entertainment,9546 +9547,spotify:track:3yDhZq8f17SmumVmEyCaRN,Give It Up,spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,spotify:album:52BJ1S5NOv7eFD6ZFDZga2,All In a Night's Work (Expanded Version),spotify:artist:3mQBpAOMWYqAZyxtyeo4Lo,KC & The Sunshine Band,2016-03-11,https://i.scdn.co/image/ab67616d0000b273070bc5edcb93d3f394b9445d,1,3,254240,https://p.scdn.co/mp3-preview/bc1799859837b5c829f3037bfefdb162b6309ba2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM19801505,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,mellow gold,new wave pop,soft rock,soul",0.862,0.624,3.0,-11.63,1.0,0.0565,0.0192,0.000153,0.0465,0.882,124.896,4.0,,Epic/Legacy,"P This compilation (P) 2015 Epic Records, a division of Sony Music Entertainment",9547 +9548,spotify:track:43lIZyasGrMA0cT82q7lzJ,"Oh, Babe What Would You Say",spotify:artist:2RJ0iPw6LNjlxmbUiB3cfc,Hurricane Smith,spotify:album:3C8H7jFaiJvbzIOxwNPNPh,Don't Let It Die: The Very Best Of Hurricane Smith,spotify:artist:2RJ0iPw6LNjlxmbUiB3cfc,Hurricane Smith,2008,https://i.scdn.co/image/ab67616d0000b273d02b72afc93f0bc4b0a7c0d7,1,12,209120,https://p.scdn.co/mp3-preview/e007abb13a963f45be63a582fda89325d833e655?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAYE7200105,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.371,0.587,0.0,-7.111,1.0,0.0319,0.603,5.82e-06,0.12,0.602,151.597,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",9548 +9549,spotify:track:23TPP1eeElFfvYVznskwCY,Glitter,spotify:artist:0Cp8WN4V8Tu4QJQwCN5Md4,BENEE,spotify:album:6pTMhQX8gt1xegiIwo3Ekb,FIRE ON MARZZ,spotify:artist:0Cp8WN4V8Tu4QJQwCN5Md4,BENEE,2019-06-28,https://i.scdn.co/image/ab67616d0000b273447289301b37e205337ddd61,1,2,180146,https://p.scdn.co/mp3-preview/0fb13f6e438d39bd7d4aebac24b5951b5be3540b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USUM71911687,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,nz pop",0.801,0.589,7.0,-5.157,1.0,0.0484,0.0862,0.0,0.162,0.58,116.932,4.0,,Republic Records,"C © 2019 Republic Records, a division of UMG Recordings, Inc., P ℗ 2019 Republic Records, a division of UMG Recordings, Inc.",9549 +9550,spotify:track:2KPaSGbVrLAcJKREJK6Qo6,My Thing,spotify:artist:1P1cU0pEn5m662FzVtNwbx,Moodbay,spotify:album:27GBNILIX7sJBY5yHHKFXD,My Thing,spotify:artist:1P1cU0pEn5m662FzVtNwbx,Moodbay,2021-05-05,https://i.scdn.co/image/ab67616d0000b2735d7c764eab4d3e9b6f22be75,1,1,223076,https://p.scdn.co/mp3-preview/35a1a753d5ac6618ba884071aafca26045d812e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBKPL2148173,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.747,0.699,10.0,-8.405,0.0,0.0269,0.324,0.177,0.154,0.599,116.017,4.0,,Moodbay,"C 2021 Alfie Cattell & Anna Stephens, P 2021 Alfie Cattell & Anna Stephens",9550 +9551,spotify:track:1uZ4bE4uiUbpdkTFT7BhZB,Stand Up For Love (2005 World Children's Day Anthem) - Radio Edit,spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,spotify:album:0wYr5qdog6Oaewi6NKlosu,Stand Up For Love (2005 World Children's Day Anthem),spotify:artist:1Y8cdNmUJH7yBTd9yOvr5i,Destiny's Child,2005-12-31,https://i.scdn.co/image/ab67616d0000b273dfd85d42896761f943d1c48c,1,1,265960,https://p.scdn.co/mp3-preview/d97900f34770b894473ffe6bbf0b7fba9f943b83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,USSM10505543,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,r&b,urban contemporary",0.385,0.382,8.0,-9.207,1.0,0.0407,0.475,3.05e-06,0.188,0.149,103.841,4.0,,Sony Urban Music/Columbia,P (p) 2005 SONY BMG MUSIC ENTERTAINMENT,9551 +9552,spotify:track:3nNRv9xS4ni6XvU4U7iY4o,Clair,spotify:artist:4HVmeVTQBgvTuvjB1JYwaf,Gilbert O'Sullivan,spotify:album:7EZeSlS7lupfVVaZXGXVUs,Back to Front (Deluxe Edition),spotify:artist:4HVmeVTQBgvTuvjB1JYwaf,Gilbert O'Sullivan,1972-01-01,https://i.scdn.co/image/ab67616d0000b2732a17bb450e1326dbac8a456d,1,4,179600,https://p.scdn.co/mp3-preview/d50a96c1fb6c9cfb6cf15714e1cb509d1b490145?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBEQJ0400003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,soft rock",0.695,0.546,9.0,-7.156,1.0,0.034,0.553,0.0,0.197,0.632,105.185,4.0,,Salvo,"C © 2012 Union Square Music Limited, a BMG Company, P ℗ 2012 Grand Upright Music Limited under exclusive license to Union Square Music Limited, a BMG Company",9552 +9553,spotify:track:75aTYdHFoOmtKzI0qNlVxc,Daytona Demon - 2017 Remaster,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,spotify:album:7J7hokoYf6Osgbsv5eZacy,Legend: The Best Of,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,2017-09-22,https://i.scdn.co/image/ab67616d0000b273964242c322fb5465a8c71556,1,5,242782,https://p.scdn.co/mp3-preview/931bced5cbb0bf28a37d4364b91f4f98edf553ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UKKP21700079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.616,0.704,2.0,-8.607,1.0,0.0557,0.082,0.35,0.261,0.69,124.935,4.0,,Chrysalis Records,"C 2017 Chrysalis Records Limited, P 2017 Chrysalis Records Limited",9553 +9554,spotify:track:0viZ7D81W8pD65TkzaFkXT,Love Is A Battlefield,spotify:artist:43mhFhQ4JAknA7Ik1bOZuV,Pat Benatar,spotify:album:61iFpQNq3gxt6mVQAUOK9F,Pat Benatar: The Collection,spotify:artist:43mhFhQ4JAknA7Ik1bOZuV,Pat Benatar,2001-10-15,https://i.scdn.co/image/ab67616d0000b273dc19c1fb6cea62a222c72b81,1,1,247026,https://p.scdn.co/mp3-preview/fc52f34ee24e24463aa91965aaa3bef0d0428c57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCH38400020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,new romantic,new wave pop,rock,singer-songwriter,soft rock",0.683,0.637,7.0,-11.906,1.0,0.049,0.0153,0.0275,0.0945,0.884,90.637,4.0,,Chrysalis\EMI Records (USA),"C © 2004 Chrysalis Catalog, P This Compilation ℗ 2004 Capitol Records, LLC",9554 +9555,spotify:track:1RSBK5VWdjPjHEmRhAkS4Q,Sacrifice,spotify:artist:64M6ah0SkkRsnPGtGiRAbb,Bebe Rexha,spotify:album:1Ty6uDLjv7qCgEe9ABx9dj,Sacrifice,spotify:artist:64M6ah0SkkRsnPGtGiRAbb,Bebe Rexha,2021-03-05,https://i.scdn.co/image/ab67616d0000b273b8cfdd1d51bebe09a9f5f63f,1,1,160871,https://p.scdn.co/mp3-preview/0fbda516d91d3d6d609f2340bdacc24633ed7ffa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USWB12100011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.659,0.877,11.0,-5.089,0.0,0.0288,0.0878,0.0,0.094,0.471,119.992,4.0,,Warner Records,"C © 2021 Warner Records Inc., P ℗ 2021 Warner Records Inc.",9555 +9556,spotify:track:0FKNRNN2mcY9dBjenoxbeY,Apache,spotify:artist:1mUxA8Bcd9qdMgH9uMOIQb,Jørgen Ingmann,spotify:album:4pOVCX3BM02U0AudLBVoQG,Atlantic 60th: Instrumental Jams,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2007-10-30,https://i.scdn.co/image/ab67616d0000b273e88b0d4e415fb9125132d8a1,1,5,175520,https://p.scdn.co/mp3-preview/e5287b667a14a5dccb64734e06ef9b7ff9670a48?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,USEE10412726,spotify:user:bradnumber1,2021-08-08T09:26:31Z,dansktop,0.644,0.492,9.0,-13.646,0.0,0.0468,0.894,0.922,0.117,0.248,129.089,4.0,,Rhino Atlantic,"C © 2007 Rhino Entertainment Company, a Warner Music Group Company, P ℗ 2007 Atlantic Recording Corp. Manufactured & Marketed by Rhino Entertainment Company, a Warner Music Group Company",9556 +9557,spotify:track:3ZuiIFm9nRnkRz8AZAekjJ,Rocketeer,"spotify:artist:698hF4vcwHwPy8ltmXermq, spotify:artist:4we5S2VLjgY9KzIzApL1KI, spotify:artist:5JOIrGvup0vD5VjodB62Ui","Far East Movement, Ryan Tedder, Ruff Loaderz",spotify:album:4axgysRjIB7ToC0DA7uxXC,Free Wired,spotify:artist:698hF4vcwHwPy8ltmXermq,Far East Movement,2010-01-01,https://i.scdn.co/image/ab67616d0000b273fc7cbacf9d506c92aa7d7720,1,3,211253,https://p.scdn.co/mp3-preview/1fb548449f6e1b7c82134f77c45903e5798ce9ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USUM71022782,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"asian american hip hop,dance pop,pop rap,pop rock",0.664,0.845,4.0,-6.115,0.0,0.0462,0.181,0.0,0.267,0.357,96.005,4.0,,Interscope,"C © 2010 Cherrytree/Interscope, P ℗ 2010 Cherrytree/Interscope",9557 +9558,spotify:track:2ZQyksYO4zzhyHNcueL0CP,Home,spotify:artist:6p5JxpTc7USNnBnLzctyd4,Phillip Phillips,spotify:album:3ZZ8jN93SBl4v8lF79eVzS,Home,spotify:artist:6p5JxpTc7USNnBnLzctyd4,Phillip Phillips,2012-01-01,https://i.scdn.co/image/ab67616d0000b27375eb2a091be94d156c53ed6f,1,1,209226,https://p.scdn.co/mp3-preview/36d13a7ece690ca4abe2e1f151301187dcf20078?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMTM61200272,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo mellow,pop rock",0.592,0.792,0.0,-5.884,1.0,0.0335,0.0215,0.0,0.159,0.293,121.001,4.0,,Interscope (American Idol),"C © 2012 19 Recordings, Inc., P ℗ 2012 19 Recordings, Inc.",9558 +9559,spotify:track:31i9x9VnQqwp8Sy18tICCO,Last To Know - Remastered,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:1xN9jGFs73atuQ02PrazLf,Here And Now - The Best Of Human Nature,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,2001-10-30,https://i.scdn.co/image/ab67616d0000b273c26c16c6b599a919c482d01d,1,10,265826,https://p.scdn.co/mp3-preview/4da7176cbc69f395bcb68c21446d7a31229a3b64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,AUSM00100178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,boy band",0.673,0.742,2.0,-2.164,1.0,0.0255,0.0522,0.0,0.145,0.397,104.012,4.0,,Sony Music Entertainment,P (P) 2001 Sony Music Entertainment Australia Pty Ltd,9559 +9560,spotify:track:10Nmj3JCNoMeBQ87uw5j8k,Dani California,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:7xl50xr9NDkd3i2kBbzsNZ,Stadium Arcadium,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,2006-05-09,https://i.scdn.co/image/ab67616d0000b27309fd83d32aee93dceba78517,1,1,282160,https://p.scdn.co/mp3-preview/0454b7cef05f7db734eb04bd4f3948009838f380?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USWB10600700,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.556,0.913,0.0,-2.36,1.0,0.0437,0.0193,8.59e-06,0.346,0.73,96.184,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",9560 +9561,spotify:track:52okn5MNA47tk87PeZJLEL,Let You Down,spotify:artist:6fOMl44jA4Sp5b9PpYCkzz,NF,spotify:album:1KOmHyNLuOe5YrPhD3Juuf,Perception,spotify:artist:6fOMl44jA4Sp5b9PpYCkzz,NF,2017-10-06,https://i.scdn.co/image/ab67616d0000b273cd733919ee57d0cc466e152f,1,6,212120,https://p.scdn.co/mp3-preview/48e3201996af61c4e48bb5f8dbdd004db4a6a63b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USUM71708226,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip hop,pop rap",0.661,0.714,5.0,-5.68,0.0,0.121,0.314,0.0,0.179,0.464,147.998,4.0,,NF Real Music,"C © 2017 NF Real Music, LLC, P ℗ 2017 NF Real Music, LLC",9561 +9562,spotify:track:3vRYtf5xgPrYeVzAmqvzTd,The Salmon Dance,spotify:artist:1GhPHrq36VKCY3ucVaZCfo,The Chemical Brothers,spotify:album:59BUTEyxgum2KPZMwrJjVr,We Are The Night,spotify:artist:1GhPHrq36VKCY3ucVaZCfo,The Chemical Brothers,2007-06-27,https://i.scdn.co/image/ab67616d0000b273e70a17eb4f76721f1344310e,1,7,220226,https://p.scdn.co/mp3-preview/634a0435c0fc396a4b64ee7d333e99bc45536038?cid=9950ac751e34487dbbe027c4fd7f8e99,True,51,GBAAA0700880,spotify:user:bradnumber1,2023-09-20T06:25:42Z,"alternative dance,big beat,breakbeat,electronica,rave,trip hop",0.863,0.736,0.0,-6.888,1.0,0.0439,0.0421,5.03e-05,0.0968,0.739,124.013,4.0,,UMC (Universal Music Catalogue),"C © 2007 Virgin Records Limited, P ℗ 2019 Virgin Records Limited",9562 +9563,spotify:track:0LJKGUTtdzcLW9ZcUxkRXR,Thought I'd Died And Gone To Heaven,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,spotify:album:0RhmLffWf3oRr6ahOS6G47,Waking Up The Neighbours,spotify:artist:3Z02hBLubJxuFJfhacLSDc,Bryan Adams,1991-09-24,https://i.scdn.co/image/ab67616d0000b2731fa6be87c366dd28b11206ab,1,4,348466,https://p.scdn.co/mp3-preview/f2ed25fc34133605002c3538331238cc4178bd72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19190004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,classic canadian rock,heartland rock,mellow gold,soft rock",0.439,0.746,4.0,-8.159,1.0,0.03,0.0569,0.0,0.097,0.568,174.403,4.0,,Universal Music Group,"C © 1991 UMG Recordings, Inc., P ℗ 1991 UMG Recordings, Inc.",9563 +9564,spotify:track:4pbLMXPtU8ruMCMPmQNY4q,Chameleon,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,spotify:album:4zZhV656BJMvD2hSAveA91,Changa,spotify:artist:6n28c9qs9hNGriNa72b26u,PNAU,2017-11-10,https://i.scdn.co/image/ab67616d0000b273b5ddc1dab1991e556fca0f8f,1,2,198020,https://p.scdn.co/mp3-preview/1e1a436e5c821048dc8d850e7ff41e99a1276f6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV01600642,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,aussietronica,australian dance,australian electropop",0.705,0.936,4.0,-3.193,1.0,0.0415,0.00162,0.000142,0.335,0.228,119.982,4.0,,etcetc Music Pty Ltd,"C © 2017 etcetc Music Pty Ltd, P ℗ 2017 etcetc Music Pty Ltd",9564 +9565,spotify:track:00r8TWNSkGnMDLqpxd4wia,In the Closet - Single Version,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:77dNyQA0z8dV33M4so4eRY,The Essential Michael Jackson,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,2005-07-19,https://i.scdn.co/image/ab67616d0000b273ed1c305cd1e673fe925407ce,2,12,288813,https://p.scdn.co/mp3-preview/d8e21112e02e9d25cc51e8056c90cd6c6a60ecba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USSM10501513,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.861,0.812,11.0,-6.092,0.0,0.0584,0.0702,0.000873,0.0589,0.693,111.658,4.0,,Epic/Legacy,"P (P) 1972 Motown Records, a Division of UMG Recordings, Inc., 1976, 1978, 1980 Sony Music Entertainment, 1979, 1982, 1987, 1991, 1995, 2001, 2005 MJJ Productions Inc.",9565 +9566,spotify:track:4zfAuDqZ9ndtLBaKdHIqtA,Just Like You,spotify:artist:4NkLjsRsFnuPu9B4zqzBqq,Robbie Nevil,spotify:album:42fYChDO5P83qQ4NQs6bS4,The Best Of Robbie Neville,spotify:artist:4NkLjsRsFnuPu9B4zqzBqq,Robbie Nevil,2006-01-01,https://i.scdn.co/image/ab67616d0000b2730d9b2c78d3a3b72112b78fcc,1,3,246600,https://p.scdn.co/mp3-preview/02246bfb41fd360d49789544185de14da7ab9f85?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USEM39100204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.697,0.716,2.0,-11.987,1.0,0.0408,0.113,0.0,0.345,0.847,98.243,4.0,,Capitol Records,"C © 1998 EMI Music Special Markets, P ℗ 2006 EMI Music Special Markets",9566 +9567,spotify:track:2pTMzMFnEtE4D0U4IcYSSX,Don't Forget Me (When I'm Gone),spotify:artist:53RaPTbZOx2mBoZD6LLWIv,Glass Tiger,spotify:album:1ejYRdDqaYnRAIVUpuCt0R,The Thin Red Line,spotify:artist:53RaPTbZOx2mBoZD6LLWIv,Glass Tiger,1986-01-01,https://i.scdn.co/image/ab67616d0000b273725a40e514bf3efb141d22b1,1,2,248240,https://p.scdn.co/mp3-preview/482586688a36fe4c4aee0047d1318430ff56991c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,CAE158600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic canadian rock,new wave pop",0.606,0.694,9.0,-8.801,1.0,0.0263,0.0655,0.000446,0.306,0.709,109.874,4.0,,EMI,"C © 1986 Capitol Records Inc., P ℗ 1986 Capitol Records Inc.",9567 +9568,spotify:track:6BKtGdvO4IooVZdbF8bDyP,Take Your Shirt Off,spotify:artist:3aQeKQSyrW4qWr35idm0cy,T-Pain,spotify:album:6Ci0aa8UuxgUNROh3a6bOt,Take Your Shirt Off,spotify:artist:3aQeKQSyrW4qWr35idm0cy,T-Pain,2009-10-21,https://i.scdn.co/image/ab67616d0000b2734b52032503e9d591f89c1042,1,1,228893,https://p.scdn.co/mp3-preview/d8c46706fa0c04e49a94d175a5a4aa92682007bf?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USJI10900621,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,gangster rap,hip hop,pop rap,r&b,rap,southern hip hop,trap,urban contemporary",0.775,0.865,2.0,-1.677,1.0,0.275,0.0113,0.0,0.287,0.424,189.949,4.0,,Jive,"P (P) 2009 RCA/JIVE Label Group, a unit of Sony Music Entertainment",9568 +9569,spotify:track:7FbrGaHYVDmfr7KoLIZnQ7,Cupid - Twin Ver.,spotify:artist:4GJ6xDCF5jaUqD6avOuQT6,FIFTY FIFTY,spotify:album:5letLUZIFsQikJYShfGNs4,The Beginning: Cupid,spotify:artist:4GJ6xDCF5jaUqD6avOuQT6,FIFTY FIFTY,2023-02-24,https://i.scdn.co/image/ab67616d0000b27337c0b3670236c067c8e8bbcb,1,2,174253,https://p.scdn.co/mp3-preview/6a5229e240b94c5fe224780c8a6e4b003415002f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,24,KSA012239181,spotify:user:bradnumber1,2023-06-06T09:13:21Z,k-pop girl group,0.783,0.592,11.0,-8.332,0.0,0.0331,0.435,4.15e-06,0.347,0.726,120.018,4.0,,WM Korea,"C © 2023 ATTRAKT under exclusive license to Warner Music Korea, P ℗ 2023 ATTRAKT under exclusive license to Warner Music Korea",9569 +9570,spotify:track:00K2rKXhqfsJhBq4Pahb1C,The One Who Really Loves You - Single Version,spotify:artist:1cjZk1xXn3YCToNg3uJpA7,Mary Wells,spotify:album:6lKBzs3A5C1sSimDr1gu75,The One Who Really Loves You,spotify:artist:1cjZk1xXn3YCToNg3uJpA7,Mary Wells,1963-01-01,https://i.scdn.co/image/ab67616d0000b273dc1325fe12eda19d5c7c126b,1,1,147466,https://p.scdn.co/mp3-preview/a243e93a2029b94945f6e76f3002bb18ccf5893a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO16200261,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,motown,soul,southern soul",0.769,0.397,7.0,-13.511,1.0,0.0309,0.717,0.0,0.237,0.927,115.713,4.0,,Universal Music Group,"C © 1963 Motown Records, a Division of UMG Recordings, Inc., P ℗ 1963 Motown Records, a Division of UMG Recordings, Inc.",9570 +9571,spotify:track:1ygRoFN1TPHzZtlAznfONX,Ain't Nobody,spotify:artist:4i50i5M5whfhk1zFEfo36O,Jaki Graham,spotify:album:7gaWIdHtWycS4GrXo2Z976,Greatest Hits Live,spotify:artist:4i50i5M5whfhk1zFEfo36O,Jaki Graham,2006,https://i.scdn.co/image/ab67616d0000b2739324e17afd5790474118e9cc,1,11,297133,https://p.scdn.co/mp3-preview/7c584c08d00ba8c3f195409ebe382d3178a9b03b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,GBHFG0600384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,post-disco,0.557,0.923,3.0,-2.629,0.0,0.0851,0.107,0.0,0.807,0.656,106.75,4.0,,K-Tel,C (c) 2006 K-Tel,9571 +9572,spotify:track:4OzPhwvu86g8DuoMc7eKus,Runaway,spotify:artist:6bsbqU6d3OFRlSy2fB8gX8,Del Shannon with Orchestra,spotify:album:6GMnPSAsDDodzbR7tu7vzh,Runaway,spotify:artist:6bsbqU6d3OFRlSy2fB8gX8,Del Shannon with Orchestra,2016-11-09,https://i.scdn.co/image/ab67616d0000b273b539aae98a89cafd9edf4614,1,1,141320,https://p.scdn.co/mp3-preview/26b490fc85de90d09c590cb7183ac7c14c9a94f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,DETL61607506,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.525,0.592,10.0,-7.604,1.0,0.0364,0.696,1.26e-05,0.0912,0.883,151.727,4.0,,Goldstar Records,"C 2016 Goldfinestar Records, P 2016 Goldfinestar Records",9572 +9573,spotify:track:1oVW2OSHLFo01CUih7sonk,3 Words,"spotify:artist:3NyNPJaemMYsL14DK2tO01, spotify:artist:085pc2PYOi8bGKj0PNjekA","Cheryl, will.i.am",spotify:album:3ao7El5qj953dxb01PBhPG,3 Words,spotify:artist:3NyNPJaemMYsL14DK2tO01,Cheryl,2009-01-01,https://i.scdn.co/image/ab67616d0000b27388e69d236146be3514f484ad,1,1,273560,https://p.scdn.co/mp3-preview/78bd86670ddd728d6067431040408bb31a4d5888?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBUM70912080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop,talent show,dance pop,pop",0.75,0.58,9.0,-7.505,1.0,0.0319,0.713,0.00318,0.0986,0.51,130.024,4.0,,Polydor Records,"C © 2009 Polydor Ltd. (UK), P ℗ 2009 Polydor Ltd. (UK)",9573 +9574,spotify:track:3eR23VReFzcdmS7TYCrhCe,It Ain't Me (with Selena Gomez),"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","Kygo, Selena Gomez",spotify:album:0IUCAsckpNyV4wHKIHQawC,It Ain't Me (with Selena Gomez),"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx","Kygo, Selena Gomez",2017-02-16,https://i.scdn.co/image/ab67616d0000b27341f289940f2e6a0d51988d77,1,1,220780,https://p.scdn.co/mp3-preview/b78a834a199aaaff9f0b3025077b2ee302f4c701?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,SEBGA1700015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,pop,post-teen pop",0.64,0.533,0.0,-6.596,1.0,0.0706,0.119,0.0,0.0864,0.515,99.968,4.0,,Kygo,"P (P) 2017 Kygo AS under exclusive license to Sony Music Entertainment International Ltd / Ultra Records, LLC",9574 +9575,spotify:track:1FTSo4v6BOZH9QxKc3MbVM,Song 2 - 2012 Remaster,spotify:artist:7MhMgCo0Bl0Kukl93PZbYS,Blur,spotify:album:7HvIrSkKGJCzd8AKyjTJ6Q,Blur (Special Edition),spotify:artist:7MhMgCo0Bl0Kukl93PZbYS,Blur,1997-02-10,https://i.scdn.co/image/ab67616d0000b273de114203356c1f7b136960b6,1,2,121160,https://p.scdn.co/mp3-preview/2c2b4ad08b6ef072182e9b38c386f54623aef4fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,GBAYE1200348,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,britpop,madchester,permanent wave,rock",0.674,0.789,8.0,-6.903,1.0,0.0676,0.00178,0.00708,0.0753,0.918,129.802,4.0,,Parlophone UK,"C © 2012 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2012 Parlophone Records Ltd, a Warner Music Group Company",9575 +9576,spotify:track:7pqgMEKsDMOHUdFQ7n0N9K,Dangerous (feat. Sam Martin),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:66AE89GQTx88zLYhXn1wFK","David Guetta, Sam Martin",spotify:album:77UW17CZFyCaRLHdHeofZu,Listen,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2014-11-10,https://i.scdn.co/image/ab67616d0000b2733862d62a50dc6b928651bdeb,1,1,203641,https://p.scdn.co/mp3-preview/ccca4ab9f2382d3626c845d4334d34cbcb51bed2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,GB28K1400036,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance",0.466,0.747,4.0,-4.838,0.0,0.0795,0.417,9.76e-06,0.107,0.43,92.161,4.0,,Parlophone (France),"C © 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company, P ℗ 2014 What A Music Ltd, under exclusive licence to Parlophone/Warner Music France, A Warner Music Group Company",9576 +9577,spotify:track:1DSJNBNhGZCigg9ll5VeZv,(You Drive Me) Crazy,spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,spotify:album:3WNxdumkSMGMJRhEgK80qx,...Baby One More Time (Digital Deluxe Version),spotify:artist:26dSoYclwsYLMAKD3tpOr4,Britney Spears,1999-01-12,https://i.scdn.co/image/ab67616d0000b2738e49866860c25afffe2f1a02,1,2,198066,https://p.scdn.co/mp3-preview/f71669328ef023ec65999d849141d41a323f21e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USJI19910451,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.748,0.939,0.0,-4.288,0.0,0.0341,0.0534,0.0,0.32,0.96,104.001,4.0,,Jive,P (P) 1999 Zomba Recording LLC,9577 +9578,spotify:track:3vgnToBTuzVl2Xp53m0QcS,WITHOUT YOU (with Miley Cyrus),"spotify:artist:2tIP7SsRs7vjIcLrU85W8J, spotify:artist:5YGY8feqx7naU7z4HrwZM6","The Kid LAROI, Miley Cyrus",spotify:album:6tWGOq8dGFjFI1RI15QooM,WITHOUT YOU (with Miley Cyrus),"spotify:artist:2tIP7SsRs7vjIcLrU85W8J, spotify:artist:5YGY8feqx7naU7z4HrwZM6","The Kid LAROI, Miley Cyrus",2021-04-28,https://i.scdn.co/image/ab67616d0000b273c5e263eb78ef0f80e44aa629,1,1,161384,https://p.scdn.co/mp3-preview/b6592ce5f2fd39c5c335f062b592cbe56b89327d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USSM12101723,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian hip hop,pop",0.442,0.465,0.0,-6.283,1.0,0.0427,0.185,0.0,0.0949,0.415,93.109,4.0,,Columbia,"P (P) 2021 Columbia Records, a Division of Sony Music Entertainment",9578 +9579,spotify:track:7kH8DJlIfQJUWB3njRKZsY,Kiss,"spotify:artist:1T0wRBO0CK0vK8ouUMqEl5, spotify:artist:77zrvBORXcnTyysjjKRfBU","Tom Jones, The Art Of Noise",spotify:album:2RTw7VSbOKkniM20HE2vzJ,The Best Of ... Tom Jones,spotify:artist:1T0wRBO0CK0vK8ouUMqEl5,Tom Jones,1997-01-01,https://i.scdn.co/image/ab67616d0000b273f3f4b0f08c6b715e9feaad1e,1,22,211533,https://p.scdn.co/mp3-preview/4259684e6f1fef36ca99ba21cf8272e8b713ad82?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF078801010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,british invasion,new romantic,synthpop",0.961,0.804,10.0,-10.174,1.0,0.0931,0.0919,0.0,0.319,0.761,115.71,4.0,,Decca,"C © 1997 Decca Music Group Limited, P ℗ 1997 Decca Music Group Limited",9579 +9580,spotify:track:18n2GdCpsHYzkbMKPavE7Y,Think About Us (feat. Ty Dolla $ign),"spotify:artist:3e7awlrlDSwF3iM0WBjGMp, spotify:artist:7c0XG5cIJTrrAgEC3ULPiq","Little Mix, Ty Dolla $ign",spotify:album:0zR4eWgX7vFfZNtP4pkqYy,Think About Us (feat. Ty Dolla $ign),spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2019-01-25,https://i.scdn.co/image/ab67616d0000b27378c2f0eb3a9f186992a67a81,1,1,234434,https://p.scdn.co/mp3-preview/a6a173a8a11c9020c0f828d1a78a66d12cf5bb6b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1900003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop,hip hop,pop rap,r&b,southern hip hop,trap,trap soul",0.511,0.795,8.0,-3.714,1.0,0.146,0.0845,0.0,0.102,0.432,175.987,4.0,,Syco Music,P (P) 2019 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,9580 +9581,spotify:track:03Pg5wDlaYAZlTNLeAfl2r,Leave Me Lonely,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,spotify:album:4nQIrAdHGbbREhOICYS8Uy,Leave Me Lonely,spotify:artist:7dlqUnjoF2U2DkNDMhcgG4,Hilltop Hoods,2018-11-23,https://i.scdn.co/image/ab67616d0000b2734441de9e934a66931c924912,1,1,194560,https://p.scdn.co/mp3-preview/f2d1902ad9ed10e5da167b17fc8ee588524ac35a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUHT01800201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian hip hop,0.764,0.868,10.0,-5.827,1.0,0.0505,0.279,0.0,0.175,0.754,131.031,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Hilltop Hoods Pty Ltd, under exclusive license to Universal Music Australia Pty Ltd, P ℗ 2018 Hilltop Hoods Pty Ltd, under exclusive license to Universal Music Australia Pty Ltd",9581 +9582,spotify:track:5J7iGuzi7Nj8SGvt0TAVzK,The Way I Are,"spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ, spotify:artist:63wjoROpeh5f11Qm93UiJ1, spotify:artist:4TLCPR1sMYoNU1jA7O4uww","Timbaland, Keri Hilson, D.O.E.",spotify:album:2nbVfJlA3nGuaYPuMjq2sv,Shock Value Deluxe Version (International Version),spotify:artist:5Y5TRrQiqgUO4S36tzjIRZ,Timbaland,2007-01-01,https://i.scdn.co/image/ab67616d0000b2738465721317be19add6d61927,1,4,179280,https://p.scdn.co/mp3-preview/26eb4ef5199b03d40b7f6dbdd93cd059e7129963?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70722806,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap,dance pop,hip pop,r&b,urban contemporary",0.73,0.807,3.0,-6.475,0.0,0.114,0.179,0.718,0.28,0.727,114.715,4.0,,Universal Music Group,"C © 2007 Blackground Records/Interscope Records, P ℗ 2007 Blackground Records/Interscope Records",9582 +9583,spotify:track:0cDa0cvogF66Dl7gh8yJQI,"De Do Do Do, De Da Da Da - Remastered 2003",spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,spotify:album:7kkbhhchgAk4fY52hixXoz,Zenyatta Mondatta (Remastered),spotify:artist:5NGO30tJxFlKixkPSgXcFE,The Police,1980-10-03,https://i.scdn.co/image/ab67616d0000b27362dda6306a01a5cf12587d68,1,7,247293,https://p.scdn.co/mp3-preview/25e5145ed6be26ed19fe81097a6b94598701d9ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBAAM0201154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,permanent wave,rock",0.78,0.523,9.0,-8.884,1.0,0.051,0.06,0.0629,0.239,0.855,147.86,4.0,,Universal Music Group,"C © 2003 A&M Records, P ℗ 2003 A&M Records",9583 +9584,spotify:track:1S1TItTK7HaRDnfj1vZ80Q,Falling Into You,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:55UPmpHLvZKGgTPUD1woES,Falling Into You,spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,1996-02-28,https://i.scdn.co/image/ab67616d0000b27358c80c8f4e3e23311906f9c4,1,3,258240,https://p.scdn.co/mp3-preview/64b5ae14891d8b9cc59408cef0b3d9ca6fc6e3df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,CAC229800164,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.371,0.505,2.0,-9.052,0.0,0.0314,0.382,0.0,0.115,0.564,193.246,4.0,,Columbia,P (P) 1996 Sony Music Entertainment (Canada) Inc.,9584 +9585,spotify:track:7iBBcw61QVJxI3NDzlpX2E,Love Me Tender,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:0QVoYzGd1p8Z3ohEaM0lsc,Elvis 30 #1 Hits,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,2002-09-24,https://i.scdn.co/image/ab67616d0000b273a0b8a1ce10fddbba6879262e,1,4,162066,https://p.scdn.co/mp3-preview/a562d7eb08bcb47ab75678344db92cff3c8423e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRC10200075,spotify:user:bradnumber1,2022-01-12T23:14:13Z,"rock-and-roll,rockabilly",0.454,0.0529,9.0,-16.253,1.0,0.039,0.879,0.0,0.106,0.315,112.101,3.0,,RCA Records Label,P This Compilation (P) 2002 Sony Music Entertainment,9585 +9586,spotify:track:2HY0xuuAqkGAlocHJ2Plu3,Prisoner of Society,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,spotify:album:4NrwcdtcWnfQvMxqQwF8x7,The Living End,spotify:artist:3ExT45ORJ8pT516HRZbr7G,The Living End,1999-01-15,https://i.scdn.co/image/ab67616d0000b273049c676bbe6d94b46e4d9b6e,1,1,229066,https://p.scdn.co/mp3-preview/5bfb809b9b156b5cdb674ca35bcf0708996592a0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUMPO9800004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock,australian ska",0.275,0.993,9.0,-5.474,0.0,0.138,0.000186,0.0,0.302,0.19,148.725,4.0,,Reprise,"C © 1999 Reprise Records, P ℗ 1998, 1999 Reprise Records",9586 +9587,spotify:track:2HAk4odx3V0xWcGsfnNZlX,Running Back (feat. Flo Rida),"spotify:artist:6rHWAH6F4mr2AViSxMV673, spotify:artist:0jnsk9HBra6NMjO2oANoPY","Jessica Mauboy, Flo Rida",spotify:album:21Z3oePgswl4kS1LW0aXVm,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2009-08-24,https://i.scdn.co/image/ab67616d0000b2738b412ea102fe0d92e1e71ae8,1,1,224973,https://p.scdn.co/mp3-preview/db11c27455f0e4b1692d352669d648e8ac3bad4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,AUBM00800514,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show,dance pop,miami hip hop,pop,pop rap",0.483,0.914,8.0,-3.735,1.0,0.38,0.0202,0.0,0.124,0.362,172.024,4.0,,Sony Music Entertainment,"P (P) All tracks (P) 2008 Sony Music Entertainment Australia Pty Ltd. except tracks 13, 14 & 16 (P) 2009 Sony Music Entertainment Australia Pty Ltd.",9587 +9588,spotify:track:6f4TUUHjfRjYkyrM5KSoJ4,If I Had a Hammer,spotify:artist:6yrBBtqX2gKCHCrZOYBDrB,"Peter\, Paul and Mary",spotify:album:1cRbbPxFMpHFeYIkLqqzBo,"Peter, Paul and Mary",spotify:artist:6yrBBtqX2gKCHCrZOYBDrB,"Peter\, Paul and Mary",1962-05-01,https://i.scdn.co/image/ab67616d0000b273cc97a3e6a8fe3fbc123e4fce,1,10,130626,https://p.scdn.co/mp3-preview/72b89e68a435527bdade95491cb7bbb21142f0b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USWB16500045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"american folk revival,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.471,0.387,9.0,-9.298,1.0,0.0316,0.269,0.0,0.337,0.512,89.692,4.0,,Warner Records,"C © 1962 Warner Records Inc., P ℗ 1962 Warner Records Inc.",9588 +9589,spotify:track:0tUVnDB0pM7xYGGgIKnyVf,Super Bass,spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,spotify:album:4cIAp0fnyPfICPqELp7LSH,Pink Friday (Deluxe Edition),spotify:artist:0hCNtLu0JehylgoiP8L4Gh,Nicki Minaj,2010-11-22,https://i.scdn.co/image/ab67616d0000b2731455defcb0b02a3d3a5388f7,1,14,201253,https://p.scdn.co/mp3-preview/073484cc730cb18a3aff9d030bcddff3cb1af60b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USCM51100104,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop,queens hip hop,rap",0.766,0.74,11.0,-7.491,1.0,0.224,0.0579,0.0113,0.405,0.597,126.989,4.0,,Nicki Minaj/Cash Money,"C © 2010 Young Money/Cash Money Records, P ℗ 2010 Young Money/Cash Money Records",9589 +9590,spotify:track:6kBIuwSSt72PeCSMIYwQw6,Beautiful Eyes,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,spotify:album:3udwcj1SRGUKxWCgYPanR4,Beautiful Eyes,spotify:artist:2DORQjKJVYZMx9uu82UGtT,Amy Shark,2024-01-19,https://i.scdn.co/image/ab67616d0000b273f1c180c251be5fe7e440194d,1,1,169804,https://p.scdn.co/mp3-preview/7d90e8d125e7420fbfc012496e831fd6d1f8ef86?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,AUBM02300229,spotify:user:bradnumber1,2024-04-04T04:07:40Z,australian pop,0.561,0.858,9.0,-3.771,1.0,0.0296,0.154,0.0,0.111,0.285,132.991,4.0,,Sony Music Entertainment,P (P) 2024 Amy Shark under exclusive licence to Sony Music Entertainment Australia Pty Ltd,9590 +9591,spotify:track:4SLF9XoKaFRHyJmBJm7RMi,We Will Rock You - Radio Edit,"spotify:artist:6rEzedK7cKWjeQWdAYvWVG, spotify:artist:1dfeR4HaWDbWqFHLkxsg1d","Five, Queen",spotify:album:5jSAkaiC1BBKZQSZ7wFYOY,Greatest Hits,spotify:artist:6rEzedK7cKWjeQWdAYvWVG,Five,2003-06-02,https://i.scdn.co/image/ab67616d0000b27310df926bec224d743644ea3e,1,1,189266,https://p.scdn.co/mp3-preview/5256ca48a045deea53221971d4758bbb6c3287e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBARL0000055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,classic rock,glam rock,rock",0.554,0.856,4.0,-6.109,0.0,0.202,0.0184,0.0,0.216,0.381,179.909,4.0,,RCA Records Label,P (P) 2001 BMG Entertainment International UK & Ireland Ltd.,9591 +9592,spotify:track:2DB4DdfCFMw1iaR6JaR03a,Bam Bam (feat. Ed Sheeran),"spotify:artist:4nDoRrQiYLoBzwC5BhVJzF, spotify:artist:6eUKZXaKkcviH0Ku9w2n3V","Camila Cabello, Ed Sheeran",spotify:album:4urxMitPAkjyey14LeuWSX,Familia,spotify:artist:4nDoRrQiYLoBzwC5BhVJzF,Camila Cabello,2022-04-07,https://i.scdn.co/image/ab67616d0000b273370ed6a9ced20874385fb147,1,4,206070,https://p.scdn.co/mp3-preview/1bd8b56f5623c6eee74601848b0abdca40688743?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM12200047,spotify:user:bradnumber1,2022-04-27T22:10:51Z,"dance pop,pop,pop,singer-songwriter pop,uk pop",0.756,0.697,8.0,-6.377,1.0,0.0401,0.182,0.0,0.333,0.956,94.996,4.0,,Epic,"P (P) 2022 Epic Records, a division of Sony Music Entertainment",9592 +9593,spotify:track:1U7FGuPGzsNeEv2leBYljS,Phazing (feat. Rudy),"spotify:artist:1bpzpALZwOoKXzwMg2i8WB, spotify:artist:3zfUeJ7cYJuM0jbKoU64Ip","Dirty South, Rudy",spotify:album:42Rm9HCYOjxLRtfZEc0s8W,Phazing (feat. Rudy),spotify:artist:1bpzpALZwOoKXzwMg2i8WB,Dirty South,2010-07-30,https://i.scdn.co/image/ab67616d0000b273d25157537385561f46cfc274,1,1,164258,https://p.scdn.co/mp3-preview/a32e7e3aa6ae1e3cbb3ca1750b7bd3d12546ed4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCPZ1004264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,dutch house,edm,electro house,pop dance,progressive electro house,progressive house",0.479,0.891,4.0,-7.013,1.0,0.0432,0.00121,0.0191,0.631,0.538,125.978,4.0,,WM Australia,"C 2010 Phazing under exclusive license to Neon Records Pty Limited marketed & distributed by Warner Music Australia. www.neonrecords.com.au, P 2010 Phazing",9593 +9594,spotify:track:3i6qNxyVgIdUZTTi5m25EM,Bitch,spotify:artist:2QmLFuIDtNDmmJY3OtvinN,Meredith Brooks,spotify:album:56viTB3cu7FbFwAWDctRz1,Blurring The Edges,spotify:artist:2QmLFuIDtNDmmJY3OtvinN,Meredith Brooks,1997-01-01,https://i.scdn.co/image/ab67616d0000b2737a8ebb7a3a8c0cadc4490cb4,1,2,252760,https://p.scdn.co/mp3-preview/18b81cf4d729146cbe904ad1b55b49c9017ab822?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,USCA29701376,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,pop rock",0.617,0.886,9.0,-5.953,1.0,0.0551,0.0113,9.27e-05,0.0523,0.645,96.328,4.0,,Capitol Records,"C © 1997 Capitol Records, LLC, P ℗ 1997 Capitol Records, LLC",9594 +9595,spotify:track:1sh6lL6cmlcwhqZKGiKBua,I Could Be The One (Avicii Vs. Nicky Romero) - Radio Edit,"spotify:artist:1vCWHaC5f2uS3yhpwWbIA6, spotify:artist:5ChF3i92IPZHduM7jN3dpg","Avicii, Nicky Romero",spotify:album:0sOrbRnJcNod63r49kmGVb,I Could Be The One [Avicii vs Nicky Romero],"spotify:artist:1vCWHaC5f2uS3yhpwWbIA6, spotify:artist:5ChF3i92IPZHduM7jN3dpg","Avicii, Nicky Romero",2012-12-26,https://i.scdn.co/image/ab67616d0000b273d1f3c40cd2e251e04ae6413f,1,1,208316,https://p.scdn.co/mp3-preview/f86b63a3fb643dc427eff698d7f2b6f74604992c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,SEUM71201601,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance,big room,dutch edm,dutch house,edm,electro house,pop dance,progressive electro house",0.509,0.79,6.0,-3.782,0.0,0.0374,0.332,6.67e-05,0.316,0.638,127.946,4.0,,Universal Music AB,"C © 2013 Avicii Music AB, P ℗ 2012 Avicii Music AB",9595 +9596,spotify:track:7KYvrcdccpvwekdQlzra12,Computer Games,spotify:artist:4QDiSLl2fkDWuC4TIV7Z9Q,Mi-Sex,spotify:album:6RTB49Z17KfnHDut8gKvaA,Graffiti Crimes,spotify:artist:4QDiSLl2fkDWuC4TIV7Z9Q,Mi-Sex,1979-04-04,https://i.scdn.co/image/ab67616d0000b2736fb4aa6c1e121fd6f16e035a,1,6,233133,https://p.scdn.co/mp3-preview/ee63f8b519eca9fa4b3ff9c796d99a4300729ca7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,AUSM08000006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic nz pop,kiwi rock",0.655,0.755,5.0,-9.802,1.0,0.0272,0.0187,0.00108,0.0973,0.674,117.686,4.0,,Sony Music Entertainment,P (P) 1979 Sony Music Entertainment Australia Pty Ltd,9596 +9597,spotify:track:09jYcrXTntE2b0TZeTCL33,My Deepest Darkest Friend,spotify:artist:3QujPqsgWn2dE9lTClQJDN,The Heartland Collective,spotify:album:1syi8ybw7crmWKdNC9Co6L,My Deepest Darkest Friend,spotify:artist:3QujPqsgWn2dE9lTClQJDN,The Heartland Collective,2021-06-25,https://i.scdn.co/image/ab67616d0000b273be897c4a97395131efe19a4a,1,1,220471,https://p.scdn.co/mp3-preview/9be6ac5a538492270e44f00bc811deec5414ae64?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UKXN22155528,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.555,0.706,4.0,-7.835,0.0,0.0416,0.00193,0.559,0.123,0.305,120.079,4.0,,Independent,"C 2021 Michael Johnson, P 2021 Michael Johnson",9597 +9598,spotify:track:2IHaGyfxNoFPLJnaEg4GTs,"What Is Love - 7"" Mix",spotify:artist:0Suv0tRrNrUlRzAy8aXjma,Haddaway,spotify:album:1LAx7yCVbGwskdnGDof8SC,The Album,spotify:artist:0Suv0tRrNrUlRzAy8aXjma,Haddaway,1993-09-13,https://i.scdn.co/image/ab67616d0000b273fe2466bf2316d66cf3d3249c,1,1,270373,https://p.scdn.co/mp3-preview/bfed0afe24cfb5f066d4a9f8b68efb8faaac254a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,DEA410500401,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop",0.683,0.772,7.0,-7.907,0.0,0.0311,0.0222,0.0149,0.203,0.737,123.871,4.0,,Coconut Music,"C 1993 Coconut Music UG (haftungsbeschränkt) & Co. KG, P 1993 Coconut Music UG (haftungsbeschränkt) & Co. KG",9598 +9599,spotify:track:2rN6NKR8ZjMhcBCXsZUDWi,Big Mistake,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,spotify:album:38alWeQVP9UUAGJvLptys9,Left Of The Middle,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,1997-11-10,https://i.scdn.co/image/ab67616d0000b27384bb2b1e87d5ba0bac8871a2,1,3,273000,https://p.scdn.co/mp3-preview/70e0691f75b6ea4caee643aa12f8f34808386e70?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBARL9700531,spotify:user:bradnumber1,2022-01-11T11:11:20Z,"dance pop,europop,lilith,new wave pop,pop rock",0.562,0.654,2.0,-6.234,1.0,0.0416,0.0242,0.0,0.0942,0.222,90.978,4.0,,RCA Records Label,P (P) 1997 BMG Entertainment International UK & Ireland Ltd,9599 +9600,spotify:track:1r4KZXhCnoVF8Zj5Q8sedq,Cherry Bomb,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:0vMm7ACFW8V1dY4ETr0LNN,The Lonesome Jubilee (Remastered),spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1987,https://i.scdn.co/image/ab67616d0000b2739dd7d74d685bb6c3ac060b73,1,5,287106,https://p.scdn.co/mp3-preview/3ca25305424a54b90de55e728ebcc28ff152d946?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJM18700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.744,0.945,7.0,-3.266,1.0,0.0286,0.0512,1.32e-06,0.0435,0.961,113.882,4.0,,Universal Music Group,"C © 2005 John Mellencamp, under exclusive license to the Island Def Jam Music Group, P ℗ 2005 John Mellencamp, under exclusive license to the Island Def Jam Music Group",9600 +9601,spotify:track:6GPpocnUJbzMNMTJDLYCim,Brick by Boring Brick,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,spotify:album:3CaQTJU2Cpx7GXTgenmb2r,Brand New Eyes,spotify:artist:74XFHRwlV6OrjEM0A2NCMF,Paramore,2009-09-22,https://i.scdn.co/image/ab67616d0000b273b9abbedc516dd297039977bd,1,4,253946,https://p.scdn.co/mp3-preview/eb232a55523ae2e6799e18fb51f59a49483a8c77?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,USAT20902321,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,modern rock,pixie,pop,pop emo,pop punk,rock",0.436,0.942,9.0,-2.206,1.0,0.0496,9.56e-05,0.000438,0.209,0.5,164.975,4.0,,Fueled By Ramen/Atlantic,"C © 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States., P ℗ 2009 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States.",9601 +9602,spotify:track:3mmjD9G2HUUzDbFl3NRDLM,Take A Bow,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:1G2ZRwcqN6warfakvcPgEs,Good Girl Gone Bad: Reloaded,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2008-06-02,https://i.scdn.co/image/ab67616d0000b273ad4ef80be7f5e15d64ac5c25,1,14,229413,https://p.scdn.co/mp3-preview/1dd9a3945fd4969bba34cc615c4ae14b942465db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70809004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.697,0.467,9.0,-7.536,1.0,0.0715,0.248,0.0,0.0941,0.572,82.081,4.0,,Universal Music Group,"C © 2008 The Island Def Jam Music Group, P ℗ 2008 The Island Def Jam Music Group",9602 +9603,spotify:track:4cqHVuDLFbO1XCr4nmks4S,All I Wanna Do,spotify:artist:4TKTii6gnOnUXQHyuo9JaD,Sheryl Crow,spotify:album:1ne2KBkrZa2Qr1TFwoNmJC,Tuesday Night Music Club,spotify:artist:4TKTii6gnOnUXQHyuo9JaD,Sheryl Crow,1993-08-03,https://i.scdn.co/image/ab67616d0000b2733ac7d54c587112d40ac4e526,1,9,272106,https://p.scdn.co/mp3-preview/618e6818c072359cee810085b13cbc777a48c9ab?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19300013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,new wave pop,permanent wave,pop rock,singer-songwriter",0.82,0.528,9.0,-11.179,1.0,0.0321,0.111,0.0186,0.257,0.931,120.091,4.0,,Universal Music Group,"C © 1993 A&M Records Inc., P ℗ 1993 UMG Recordings, Inc.",9603 +9604,spotify:track:4f9IfFvBFm7Gsf1IVEudyf,lie to me,"spotify:artist:45dkTj5sMRSjrmBSBeiHym, spotify:artist:4rTv3Ejc7hKMtmoBOK1B4T","Tate McRae, Ali Gatie",spotify:album:4BAEubwvC2r7bPRKlmRxUO,lie to me,"spotify:artist:45dkTj5sMRSjrmBSBeiHym, spotify:artist:4rTv3Ejc7hKMtmoBOK1B4T","Tate McRae, Ali Gatie",2020-10-14,https://i.scdn.co/image/ab67616d0000b273974922047f02120b72d697b3,1,1,177440,https://p.scdn.co/mp3-preview/23a8a1e99863d91201428fa2720b94036d5cbebe?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USRC12002313,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,canadian hip hop",0.642,0.392,4.0,-7.846,0.0,0.0372,0.0151,0.0,0.352,0.0479,138.065,4.0,,RCA Records Label,"P (P) 2020 RCA Records, a division of Sony Music Entertainment",9604 +9605,spotify:track:3cU2wBxuV6nFiuf6PJZNlC,Dear Future Husband,spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,spotify:album:5W98Ab4VvQEuFEE4TIe5fE,Title (Deluxe),spotify:artist:6JL8zeS1NmiOftqZTRgdTz,Meghan Trainor,2015-01-09,https://i.scdn.co/image/ab67616d0000b2733b11178cccd78ec77fc12dbc,1,3,184226,https://p.scdn.co/mp3-preview/15d7fffb2003e2719681ed564ad5a07c3f5d878b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USSM11406291,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hip pop,pop",0.655,0.782,1.0,-4.789,1.0,0.185,0.375,0.0,0.317,0.832,79.427,4.0,,Epic,"P (P) 2014, 2015 Epic Records, a division of Sony Music Entertainment",9605 +9606,spotify:track:6Qi0Wls2EaolwPMPMxfe5f,Sonnentanz - Sun Don't Shine,"spotify:artist:041iTeoMIwXMlShuQPIVKo, spotify:artist:39AZSw4A8hCFWunEg2k89Z","Klangkarussell, Will Heard",spotify:album:0CoiuzFtZVRk9imDnfate2,Netzwerk,spotify:artist:041iTeoMIwXMlShuQPIVKo,Klangkarussell,2014-01-01,https://i.scdn.co/image/ab67616d0000b273e37608ac9405cd4163c20207,1,11,238120,https://p.scdn.co/mp3-preview/6875d6d33edc26dff3d1456be4754196a047120f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,DEUM71302894,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"austrian pop,deep euro house,uk contemporary r&b",0.579,0.549,5.0,-8.262,0.0,0.0909,0.104,0.0202,0.0964,0.155,119.74,4.0,,Virgin,"C © 2014 Klangkarussell, under exclusive license to Virgin Records, a division of Universal Music GmbH, P ℗ 2014 Klangkarussell, under exclusive license to Virgin Records, a division of Universal Music GmbH",9606 +9607,spotify:track:4lq4yY0y3XqDQZsx03ITaH,I'll Never Break Your Heart,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:0wvQovgaVU99eqw8n3g22S,Backstreet Boys,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,1996,https://i.scdn.co/image/ab67616d0000b273dafd4b9261a1ab9acd53a53d,1,8,287506,https://p.scdn.co/mp3-preview/ef88257b296cb9aaa7ec27b0afa8ba08dc6e263f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAHK9500320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop",0.519,0.589,7.0,-6.005,0.0,0.029,0.0885,0.0,0.153,0.341,161.992,3.0,,Jive,P (P) 1997 Zomba Recording LLC,9607 +9608,spotify:track:1Jmlvnd4UYD3IrW4kc2TyT,16,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,spotify:album:4OAoc99M8OtrFz2qC2HRiu,16,spotify:artist:2JyWXPbkqI5ZJa3gwqVa0c,Craig David,2016,https://i.scdn.co/image/ab67616d0000b27311df3c03bd4a0d9a48dec251,1,1,228373,https://p.scdn.co/mp3-preview/f828d898a99bf86c5ce8c7fef729a24b38e4a5d8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1600966,spotify:user:bradnumber1,2021-08-08T09:26:31Z,british soul,0.552,0.788,7.0,-5.58,1.0,0.189,0.184,0.0,0.121,0.407,139.695,4.0,,Speakerbox/Insanity Records,P (P) 2016 Insanity Records Limited under exclusive license to Sony Music Entertainment UK Limited,9608 +9609,spotify:track:2DdtOIqWNDcrPEDAJv0VFe,Do the Clam,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:4z27tEwwMNEILdVX1Sy40L,Girl Happy,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1965-03-01,https://i.scdn.co/image/ab67616d0000b27330609cf644ef7835f070b04c,1,9,196493,https://p.scdn.co/mp3-preview/8847ed5a370950f4c98a2c59d1f12f0bbace30c3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USRC19900296,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.707,0.643,1.0,-11.198,1.0,0.0435,0.193,7.15e-06,0.61,0.93,128.972,4.0,,RCA/Legacy,P (P) 1965 Sony Music Entertainment,9609 +9610,spotify:track:3S4px9f4lceWdKf0gWciFu,Cheap Thrills,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:2eV6DIPDnGl1idcjww6xyX,This Is Acting (Deluxe Version),spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2016-10-21,https://i.scdn.co/image/ab67616d0000b273754b2fddebe7039fdb912837,1,6,211666,https://p.scdn.co/mp3-preview/9143b32f6e1928b204708ce605e0ba42dc84b7c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USRC11502935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.628,0.698,6.0,-5.608,0.0,0.105,0.0472,0.00143,0.0907,0.732,89.976,4.0,,Monkey Puzzle Records/RCA Records,"P (P) 2016 Monkey Puzzle Records, under exclusive license to RCA Records",9610 +9611,spotify:track:1NrJYpdAi7uosDRPmSYrsG,Apologize,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,spotify:album:2KSpGeDoNjqCKg6HL8LAyI,Dreaming Out Loud,spotify:artist:5Pwc4xIPtQLFEnJriah9YJ,OneRepublic,2007-01-01,https://i.scdn.co/image/ab67616d0000b27334ef81d1ff3b4682a4e97f70,1,4,208106,https://p.scdn.co/mp3-preview/e99c657a370185acbb4e2bdd3168e053cfd690d3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM70757102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"piano rock,pop",0.593,0.74,8.0,-6.12,1.0,0.0339,0.363,2.22e-05,0.102,0.502,118.008,4.0,,Mosley / Interscope,"C © 2007 Mosley Music/Interscope Records, P ℗ 2007 Mosley Music/Interscope Records",9611 +9612,spotify:track:6IaTgcprhjryQlVOCHfY4f,Lady Writer,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,spotify:album:0fKK0hPzjqrjT9Z4wwZuuK,Dire Straits / Communique,spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T,Dire Straits,1997,https://i.scdn.co/image/ab67616d0000b273ec33715a42a118c2745c96ca,2,5,225400,https://p.scdn.co/mp3-preview/49a7b16dce37900f2820fff4ea1599416fda1183?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF087900662,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock",0.642,0.813,1.0,-8.615,0.0,0.0282,0.112,0.611,0.103,0.966,147.914,4.0,,Mercury Records Limited,"C (C) 1997 Mercury Records Limited, P (P) 1997 Mercury Records Limited",9612 +9613,spotify:track:0JVOH4v8cUn5jyhwvuriAb,More Than Words,spotify:artist:6w7j5wQ5AI5OQYlcM15s2L,Extreme,spotify:album:7jMiLIy96oxGm4InizGUZF,Extreme II: Pornograffitti (Deluxe),spotify:artist:6w7j5wQ5AI5OQYlcM15s2L,Extreme,1990-08-07,https://i.scdn.co/image/ab67616d0000b27357f4a5c41c7d4c84299b8e01,1,5,334000,https://p.scdn.co/mp3-preview/271b123e8fb03d1ca301205f8c47ca13461c9ff0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19090005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk metal,glam metal,hard rock",0.403,0.134,6.0,-14.955,1.0,0.0353,0.469,0.0,0.113,0.258,182.894,4.0,,Universal Music Group,"C © 2015 A&M Records Ltd., P ℗ 2015 A&M Records Ltd.",9613 +9614,spotify:track:3RMeOetCdXttthQK0clPuz,How Am I Supposed to Live Without You,spotify:artist:6YHEMoNPbcheiWS2haGzkn,Michael Bolton,spotify:album:5g9LXOhTPW9Iow6GZPRg2D,Soul Provider,spotify:artist:6YHEMoNPbcheiWS2haGzkn,Michael Bolton,1989-06-27,https://i.scdn.co/image/ab67616d0000b273e29b51efdf81e17c63880ef0,1,4,255666,https://p.scdn.co/mp3-preview/80227e2384183c35ca1070cbf10b3750f13fc9f0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USSM18900016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,soft rock,0.541,0.44,10.0,-12.206,1.0,0.031,0.191,0.0,0.114,0.232,140.273,4.0,,Columbia,P (P) 1989 Sony Music Entertainment Inc.,9614 +9615,spotify:track:7nqhFb3g7ZtzOEV2QwvyBI,I Need a Dollar,spotify:artist:0id62QV2SZZfvBn9xpmuCl,Aloe Blacc,spotify:album:3Dg7omQtRAsvZXImWK9yoc,Good Things,spotify:artist:0id62QV2SZZfvBn9xpmuCl,Aloe Blacc,2011-03-18,https://i.scdn.co/image/ab67616d0000b2737cbb823cc0b2dabc720e4e85,1,1,243533,https://p.scdn.co/mp3-preview/d8661b02976ed432971422618b2efff32a400ed2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,US2S71045001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop soul,r&b",0.842,0.484,1.0,-7.111,0.0,0.0341,0.181,0.0,0.0868,0.951,95.51,4.0,,Sony Music Entertainment,P (P) 2010 Stones Throw LLC,9615 +9616,spotify:track:2JCY7F0JFw5AgZYeC3CHtS,Hold Up,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,spotify:album:4X6b6POxbjX9inC7TWQd54,Lemonade,spotify:artist:6vWDO969PvNqNYHIOW5v0m,Beyoncé,2016-04-23,https://i.scdn.co/image/ab67616d0000b27332b4549ef8443fcabef4c883,1,2,221106,https://p.scdn.co/mp3-preview/7825c8a361979e7d7ec71db80ab80def1da358e7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USSM11603188,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,r&b",0.49,0.401,0.0,-11.929,1.0,0.415,0.724,0.0,0.526,0.549,78.672,4.0,,Parkwood Entertainment/Columbia,"P (P) 2019 Parkwood Entertainment LLC, under exclusive license to Columbia Records, a Division of Sony Music Entertainment",9616 +9617,spotify:track:55wl56WlKI85UBNZoFxe9P,Just When I Needed You Most,spotify:artist:6IRQiyNmNGjGlrmEl0iArm,Randy VanWarmer,spotify:album:4SpkNYHb0pnT9n6gEqkSvM,Warmer,spotify:artist:6IRQiyNmNGjGlrmEl0iArm,Randy VanWarmer,1979,https://i.scdn.co/image/ab67616d0000b273b7990ac32d565b4b06f89cf0,1,2,241746,https://p.scdn.co/mp3-preview/d5cff7f7ba0ca1dbcaffb4f62f3c62acc2b1f455?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USRH10722181,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.583,0.313,9.0,-14.36,1.0,0.0256,0.617,0.0,0.121,0.346,96.717,4.0,,Rhino,"C © 1979 Bearsville, P ℗ 1979 Bearsville Records. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",9617 +9618,spotify:track:50yHVBbU6M4iIfqBI1bxWx,Rumour Has It,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,spotify:album:7n3QJc7TBOxXtlYh4Ssll8,21,spotify:artist:4dpARuHxo51G3z768sgnrY,Adele,2011-01-19,https://i.scdn.co/image/ab67616d0000b273ba764098164f221484bcc309,1,2,223266,https://p.scdn.co/mp3-preview/b2064057c1d5e811103e04ec682e52d2d3e5759e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBKS1000349,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,pop,pop soul,uk pop",0.612,0.748,0.0,-5.014,1.0,0.0445,0.617,0.0,0.167,0.574,120.052,4.0,,XL Recordings,"C 2011 XL Recordings Ltd., P 2011 XL Recordings Ltd.",9618 +9619,spotify:track:4KpVB1AzRjvhxeinygrVD6,I've Told Every Little Star,spotify:artist:7KjuI3MbOTaBH29yju4Lr4,Linda Scott,spotify:album:6TQkUsMdlN0uhVcJe5OCuy,Starlight Starbright,spotify:artist:7KjuI3MbOTaBH29yju4Lr4,Linda Scott,2014-10-01,https://i.scdn.co/image/ab67616d0000b273d06f1f1ff3ab3de07f734d5d,1,6,138040,https://p.scdn.co/mp3-preview/03aecfcf866115c6125b887f5b60e2eab45e2e5f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,QM7281437450,spotify:user:bradnumber1,2021-08-08T09:26:31Z,brill building pop,0.677,0.621,3.0,-5.663,1.0,0.0277,0.734,6.19e-05,0.191,0.942,118.349,4.0,,Photoplay Records,C (C) 2014 Photoplay Records,9619 +9620,spotify:track:5zrvbvUB7T3d1mi69885VZ,Bang!,spotify:artist:6s22t5Y3prQHyaHWUN1R1C,AJR,spotify:album:0BMvSQK3y8nfvgN09KphZc,Bang!,spotify:artist:6s22t5Y3prQHyaHWUN1R1C,AJR,2020-02-12,https://i.scdn.co/image/ab67616d0000b273b043bb1b8c127ff212aee60a,1,1,170858,https://p.scdn.co/mp3-preview/74f911dec3dfddbf7919e6139faf19aa37795d42?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,QMRSZ2000128,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pov: indie,0.74,0.517,1.0,-6.233,0.0,0.0506,0.0183,0.0,0.0558,0.698,139.917,4.0,,Liberator Music,"C 2020 AJR Productions, P 2020 AJR Productions",9620 +9621,spotify:track:2jGUAB6hKlzK0pZmZpQ02g,Be Faithful,"spotify:artist:15GGbJKqC6w0VYyAJtjej6, spotify:artist:09LlecobtUel9NZrpJnHVr","Fatman Scoop, The Crooklyn Clan",spotify:album:448a54hEEUuDqhUGQr3Ebj,"Fatman Scoop ""Hottest Featured Artist Recordings""",spotify:artist:15GGbJKqC6w0VYyAJtjej6,Fatman Scoop,2008-10-09,https://i.scdn.co/image/ab67616d0000b27397a8524fe5d00396141b8506,1,1,214910,https://p.scdn.co/mp3-preview/ec2d718aef38650207d283caf95c807f9ee6e688?cid=9950ac751e34487dbbe027c4fd7f8e99,True,58,TCACI1593613,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nyc rap,0.709,0.895,7.0,-3.135,1.0,0.272,0.0338,0.0,0.26,0.684,101.148,4.0,,AV8 Records,"C 2008 AV8 Records, P 2008 AV8 Records",9621 +9622,spotify:track:2VqMBiaxblhhBHyB9X4ESl,Standing Next to You,spotify:artist:6HaGTQPmzraVmaVxvz6EUc,Jung Kook,spotify:album:18U7qF5UYXzGP5C11y9rmq,Standing Next to You (The Remixes),spotify:artist:6HaGTQPmzraVmaVxvz6EUc,Jung Kook,2023-11-06,https://i.scdn.co/image/ab67616d0000b2733ee8cd8508e02c40ffda723b,1,1,206019,https://p.scdn.co/mp3-preview/b1cac49f0f6043eae3a0c0557fe16a9579fbc519?cid=9950ac751e34487dbbe027c4fd7f8e99,False,84,USA2P2348391,spotify:user:bradnumber1,2024-03-27T20:55:40Z,k-pop,0.711,0.809,2.0,-4.389,0.0,0.0955,0.0447,0.0,0.339,0.816,106.017,4.0,,BIGHIT MUSIC,"C © 2023 BIGHIT MUSIC, P ℗ 2023 BIGHIT MUSIC",9622 +9623,spotify:track:5giCRvTkp5GV5UIAORAOof,If I Let You Go - Radio Edit,spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,spotify:album:22pfCAdDOgyC2JfSi5OwxT,Westlife,spotify:artist:5Z1CCuBsyhEHngq3U5IraY,Westlife,1999-04-25,https://i.scdn.co/image/ab67616d0000b273f43e355a74359aaba039220b,1,2,221533,https://p.scdn.co/mp3-preview/a06635f1541717c67f7ec75d14cb53b68425b1b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL9900044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.579,0.697,0.0,-4.255,1.0,0.0287,0.00575,0.0,0.0775,0.64,181.995,4.0,,RCA Records Label,P (P) 1999 Sony Music Entertainment UK Limited,9623 +9624,spotify:track:7JURn7T7Tq3wszT0aEieBM,Walk Away,spotify:artist:06kr5yNAM2rOf4DXemM8fl,Matt Monro,spotify:album:2r5pJiTmcv9tWMlanWFNIt,Walk Away,spotify:artist:06kr5yNAM2rOf4DXemM8fl,Matt Monro,2020-11-13,https://i.scdn.co/image/ab67616d0000b2737295caaf954e8cb92cf40ffb,1,1,187186,https://p.scdn.co/mp3-preview/656345ac0c2e3719c83d09a09f1cf435694a253f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,GBAYE6400089,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.125,0.43,0.0,-11.373,1.0,0.0338,0.786,0.000925,0.183,0.308,174.54,4.0,,Warner Music Group - X5 Music Group,"C 2020 Warner Music Group - X5 Music Group, P 2020 Warner Music Group - X5 Music Group",9624 +9625,spotify:track:3eDhxKvAqIlNfW6w75lrNH,I'll Be Your Shelter,spotify:artist:32lVGr0fSRGT6okLKHiP68,Taylor Dayne,spotify:album:7nlXYKVhhf7mMRxcq37TaF,Can't Fight Fate,spotify:artist:32lVGr0fSRGT6okLKHiP68,Taylor Dayne,1989-10-27,https://i.scdn.co/image/ab67616d0000b273ca6702a4beb558546517063d,1,2,284306,https://p.scdn.co/mp3-preview/ecfd882ce8b3f791a211a0c2980df03ea347060f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAR19000119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hi-nrg,new romantic,new wave pop,soft rock,synthpop",0.707,0.79,0.0,-10.427,1.0,0.0297,0.123,0.000205,0.0858,0.918,107.414,4.0,,Arista,"P (P)1989 Arista Records, Inc.",9625 +9626,spotify:track:4UfupbARPxljVkBmuZlJnY,Starlight - Radio Edit,"spotify:artist:08dJ0NJ9jMf8qdLmdhQ2yA, spotify:artist:4h5uH2PyDzfpfZresu96cw","The Supermen Lovers, Mani Hoffman",spotify:album:3UO75WLhEfcx45md7M3bBX,Starlight,"spotify:artist:08dJ0NJ9jMf8qdLmdhQ2yA, spotify:artist:4h5uH2PyDzfpfZresu96cw","The Supermen Lovers, Mani Hoffman",2001-01-01,https://i.scdn.co/image/ab67616d0000b2731931000ca1d76961d8b16f8a,1,1,234400,https://p.scdn.co/mp3-preview/d2d797dfcf9ab6e0a2e0c33f848557b5eaf84d3e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,FR48U0000011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,filter house,0.739,0.679,0.0,-5.079,1.0,0.0373,0.000424,0.0187,0.389,0.786,127.487,4.0,,Lafessé Records,"C 2001 Lafessé Records, P 2001 Lafessé Records",9626 +9627,spotify:track:6SCsRA5HxLfOtN4sQN2Lkl,Me Myself & I,spotify:artist:5IpsllxDHVNmiBbIcKOBJZ,Scandal'us,spotify:album:35sTz7u09awxYdiisycnq0,Startin' Somethin',spotify:artist:5IpsllxDHVNmiBbIcKOBJZ,Scandal'us,2001-05-13,https://i.scdn.co/image/ab67616d0000b2734ba04cce3c5507aeb63d8dfe,1,1,187493,https://p.scdn.co/mp3-preview/33b9a6bce3b5b4d2cc52ca64b7df81b03853baf6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNHG1900080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian pop,0.709,0.869,1.0,-3.209,1.0,0.124,0.103,0.0,0.0769,0.773,99.906,4.0,,LilliPIlli IP,"C 2001 LilliPIlli IP, P 2001 LilliPIlli IP",9627 +9628,spotify:track:0oxQWfkZuJW8L7uiItwsB0,Fox On The Run,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,spotify:album:4JjrnnM1GA23IAVYG3ffbJ,Fox On The Run / Too Many People,spotify:artist:5670CyWrIOA7702gNjsGMZ,Manfred Mann,1969-01-01,https://i.scdn.co/image/ab67616d0000b2734831b9bcaedd782b4be5f423,1,1,162893,https://p.scdn.co/mp3-preview/dd5950c7b2c15cedcf90dd1a826d3cb904b999e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,GBF086800016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british blues,british invasion,classic rock,singer-songwriter",0.543,0.733,0.0,-6.974,1.0,0.0328,0.0561,0.0,0.345,0.792,97.497,4.0,,UMC (Universal Music Catalogue),"C © 1969 Mercury Records Limited, P This Compilation ℗ 1969 Mercury Records Limited",9628 +9629,spotify:track:1uXopyJyRjXsjFtlAXhMd4,Doggin' Around,spotify:artist:4VnomLtKTm9Ahe1tZfmZju,Jackie Wilson,spotify:album:0vNnjQQ3qUWyNI3H8tYMy4,Jackie Sings The Blues,spotify:artist:4VnomLtKTm9Ahe1tZfmZju,Jackie Wilson,1960,https://i.scdn.co/image/ab67616d0000b273d30048d6a424e91630f3f009,1,2,171840,https://p.scdn.co/mp3-preview/4cf2051badb4cb3ad553502174b1b5faddd5c6da?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,USBWC0110037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago soul,classic soul,quiet storm,rock-and-roll,soul",0.568,0.367,5.0,-9.912,1.0,0.0256,0.801,1.67e-05,0.059,0.383,94.096,3.0,,Brunswick Records,"C 1960 Brunswick Record Corp., P 1960 Brunswick Record Corp.",9629 +9630,spotify:track:1GGicsdYVLpK0uVUBQGAgg,State Of The Heart - Digitally Remastered,spotify:artist:0f7ChwXkRvmj2ViLbEQwYK,Mondo Rock,spotify:album:4Iu6eJb8nC0kUpTv5KZLnp,The Greatest Hits,spotify:artist:0f7ChwXkRvmj2ViLbEQwYK,Mondo Rock,2017-01-27,https://i.scdn.co/image/ab67616d0000b27381edc13ef7439ae806502d84,1,3,257773,https://p.scdn.co/mp3-preview/538dcf9d47f20c6311eda3d14c41451f6ab3622b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUMF08000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.66,0.644,3.0,-5.872,1.0,0.0305,0.0783,3.25e-06,0.174,0.392,92.177,4.0,,Bloodlines,"C 2016 Bloodlines, P 2016 Bloodlines",9630 +9631,spotify:track:00DS0OEgFnBKeL9S6OR0Ii,Choirgirl - 2011 Remastered,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,spotify:album:0o6MdONtnU2Cz6jXN2Os5w,The Complete Cold Chisel,spotify:artist:1VcbchGlIfo3Gylxc3F076,Cold Chisel,2013-01-01,https://i.scdn.co/image/ab67616d0000b273402259b83932d83ee7dcbe66,3,3,193399,https://p.scdn.co/mp3-preview/78c56866fd7f630653a4735a4531198eb54b13d6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUU741100082,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.652,0.783,0.0,-2.687,1.0,0.0247,0.38,0.0,0.167,0.818,97.286,4.0,,Universal Music Australia & New Zealand Distribution,"C © 2013 Cold Chisel Pty Limited, P This Compilation ℗ 2013 Cold Chisel Pty Limited",9631 +9632,spotify:track:5LjSxAIKwyZvQqJ04ZQ0Da,Something About The Way You Look Tonight - Edit Version,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,spotify:album:3g61rwvRs1NPeVBxuAMmHZ,Candle In The Wind 1997 / Something About ...,spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1997-01-01,https://i.scdn.co/image/ab67616d0000b27352a56df14c3a5e318925787c,1,1,240546,https://p.scdn.co/mp3-preview/3e5a8a62babcf10b5b4d11d1485f4ed452dbdc7b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,GBAMS9700013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"glam rock,mellow gold,piano rock,rock",0.48,0.628,6.0,-7.643,1.0,0.0262,0.174,3.28e-05,0.0753,0.541,143.412,4.0,,EMI,"C © 1997 Mercury Records Limited, P This Compilation ℗ 1997 Mercury Records Limited",9632 +9633,spotify:track:25sgk305KZfyuqVBQIahim,Sweet but Psycho,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,spotify:album:7CdLU3GgPy1PH5FVsrPlyA,Sweet but Psycho,spotify:artist:4npEfmQ6YuiwW1GpUmaq3F,Ava Max,2018-08-17,https://i.scdn.co/image/ab67616d0000b273c5015d2a9270865a5979f56b,1,1,187436,https://p.scdn.co/mp3-preview/fab7f8e87979878248e78a3cdb7e28222d45dcec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USAT21802011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.719,0.704,1.0,-4.724,1.0,0.0476,0.0691,0.0,0.166,0.628,133.002,4.0,,Atlantic Records,"C 2018, P 2018",9633 +9634,spotify:track:5fw155BcK86PwD3obrSraP,Wherever I May Roam,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,spotify:album:3A4zAmE5c4dUAAqEJz6hCH,Metallica,spotify:artist:2ye2Wgw4gimLv2eAKyk1NB,Metallica,1991-01-01,https://i.scdn.co/image/ab67616d0000b273aeef6d1f525548aabcea0f6e,1,5,403866,https://p.scdn.co/mp3-preview/cf8b2c0a5afbdd53b15c2190504932a5730dd58f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF089190017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hard rock,metal,old school thrash,rock,thrash metal",0.55,0.824,9.0,-7.848,0.0,0.0347,0.000362,0.00115,0.0865,0.332,131.387,4.0,,Universal Music Group,"C © 1991 Metallica, P ℗ 1991 Metallica",9634 +9635,spotify:track:1Sqaq3c3zZ3dafPKnPQyPN,When I Grow Up,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,spotify:album:5eYSzDwSzpEeXdtriTTrnI,Version 2.0,spotify:artist:6S0GHTqz5sxK5f9HtLXn9q,Garbage,1998,https://i.scdn.co/image/ab67616d0000b2731da81d936ec5beaeafe72b58,1,3,203160,https://p.scdn.co/mp3-preview/8852dd417375a973f99c91a97b44cf1fb80947d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAHT0500079,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,dance rock,electronic rock,permanent wave",0.563,0.864,7.0,-7.192,0.0,0.0368,0.000632,0.000982,0.818,0.777,139.666,4.0,,WM UK,"C 2003 A & E Records Limited, P 1998 A & E Records Limited",9635 +9636,spotify:track:0LQtEJt7x0s6knb6RKdRYc,Chicken Fried,spotify:artist:6yJCxee7QumYr820xdIsjo,Zac Brown Band,spotify:album:08XFx1OZMZnRCh0JrKTIgT,The Foundation,spotify:artist:6yJCxee7QumYr820xdIsjo,Zac Brown Band,2008-11-17,https://i.scdn.co/image/ab67616d0000b273157d6d0762e17e7dc1ad5203,1,6,238146,https://p.scdn.co/mp3-preview/88d6f7a1fa2c4714a6a77ca64d6af26ec952830a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USAT20804178,spotify:user:bradnumber1,2021-11-20T11:37:54Z,"contemporary country,country,country road,modern country rock",0.566,0.713,6.0,-4.25,1.0,0.0418,0.645,0.0,0.114,0.805,169.861,4.0,,Home Grown Music,"C 2008 Home Grown Music, P 2008 No Reserve Inc.",9636 +9637,spotify:track:1f2V8U1BiWaC9aJWmpOARe,By the Way,spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,spotify:album:6deiaArbeoqp1xPEGdEKp1,By the Way (Deluxe Edition),spotify:artist:0L8ExT028jH3ddEcZwqJJ5,Red Hot Chili Peppers,2002-07-09,https://i.scdn.co/image/ab67616d0000b273de1af2785a83cc660155a0c4,1,1,216933,https://p.scdn.co/mp3-preview/9caddc9fdc2951fcdfe1f3fbda147c5d1871501b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,75,USWB10201688,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,funk metal,funk rock,permanent wave,rock",0.451,0.97,0.0,-4.938,1.0,0.107,0.0264,0.00355,0.102,0.198,122.444,4.0,,Warner Records,"C © 2006 Warner Records Inc., P ℗ 2006 Warner Records Inc.",9637 +9638,spotify:track:6DPgVH6DFK5rSkz2aM4EqN,When I Get You Alone,spotify:artist:0ZrpamOxcZybMHGg1AYtHP,Robin Thicke,spotify:album:40J4yOntWFiWUNz8kIdlmB,A Beautiful World (International Version),spotify:artist:0ZrpamOxcZybMHGg1AYtHP,Robin Thicke,2011-01-01,https://i.scdn.co/image/ab67616d0000b2730d2c6c6c797d170eda71b724,1,5,217133,https://p.scdn.co/mp3-preview/42d3cc80efbb5a90542de726a15bf9bec70b1a4a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USIR10210894,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,neo soul,pop rap,r&b,urban contemporary",0.725,0.853,7.0,-4.683,0.0,0.0898,0.0643,0.0,0.0526,0.706,106.994,4.0,,Nu America Music,"C © 2011 NUAMERICA/Interscope Records, P ℗ 2011 NUAMERICA/Interscope Records",9638 +9639,spotify:track:7nnWIPM5hwE3DaUBkvOIpy,Drive,spotify:artist:3YcBF2ttyueytpXtEzn1Za,Incubus,spotify:album:2i6nd4FV6y7K9fln6eelmR,Make Yourself,spotify:artist:3YcBF2ttyueytpXtEzn1Za,Incubus,1999-10-26,https://i.scdn.co/image/ab67616d0000b27374fad40214d982351347e46e,1,8,232453,https://p.scdn.co/mp3-preview/7948a397a8d6e2e9d37ea4827235fbe254463b66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,USSM19911007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,funk metal,funk rock,modern rock,nu metal,post-grunge,rock",0.645,0.792,4.0,-7.34,0.0,0.036,0.0562,0.0121,0.119,0.666,90.565,4.0,,Epic/Immortal,"P (P) 1999 Epic Records, a division of Sony Music Entertainment",9639 +9640,spotify:track:7jpbe27ryBnqLSIoGZ2CZC,Mama,spotify:artist:0uUNzXylqsZdmFDwdxaP1V,B.J. Thomas,spotify:album:7wcKiTMV7I2GEzyvvS2vBP,I'm So Lonesome I Could Cry,spotify:artist:0uUNzXylqsZdmFDwdxaP1V,B.J. Thomas,2005,https://i.scdn.co/image/ab67616d0000b273aad745e3c64e8fe7b6ef4452,1,9,169466,https://p.scdn.co/mp3-preview/134840f8c5fdc9be365502d6b10cca5760e3aa16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0501953,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,classic country pop,folk rock,mellow gold,soft rock",0.524,0.417,2.0,-11.739,1.0,0.0276,0.568,0.0389,0.15,0.549,95.116,3.0,,Gusto Records,"C 2005 Gusto Records Inc, P 2005 Gusto Records Inc",9640 +9641,spotify:track:5AWgdNEeWxAwszS0QmVvI1,When We Were Kids,spotify:artist:2ycOY0HWvU8XNL6VaPYuZP,The Galvatrons,spotify:album:1y4dg3QNADcl9o8rPqRvA0,When We Were Kids,spotify:artist:2ycOY0HWvU8XNL6VaPYuZP,The Galvatrons,2008-05-03,https://i.scdn.co/image/ab67616d0000b273c99a392979e2fd7cbc544cbb,1,1,229133,https://p.scdn.co/mp3-preview/e34a922681eac4c47cd33148de5d62f6a0d461a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUWA00800010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.45,0.977,10.0,-4.114,1.0,0.0691,0.000442,0.000114,0.362,0.395,135.904,4.0,,WM Australia,"C © 2008 Warner Music Australia Pty Limited, P ℗ 2008 Warner Music Australia Pty Limited",9641 +9642,spotify:track:767AsV1cQwmOU4PJG96MzO,Do It Right,"spotify:artist:1bj5GrcLom5gZFF5t949Xl, spotify:artist:1kMPdZQVdUhMDKDWOJM5iK","Martin Solveig, Tkay Maidza",spotify:album:0MyAvZHiGor4KbZ961SNm5,Do It Right,spotify:artist:1bj5GrcLom5gZFF5t949Xl,Martin Solveig,2016-05-20,https://i.scdn.co/image/ab67616d0000b2733a5d1b6521606a4cd41f691f,1,1,213211,https://p.scdn.co/mp3-preview/58f90744a60cdf913fc8cdae161aa63d0e8be2aa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,UK98Q1600001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,edm,electro house,filter house,house,pop dance,vocal house,alternative r&b,australian hip hop",0.813,0.777,5.0,-4.355,0.0,0.0828,0.0663,0.0421,0.0785,0.579,125.065,4.0,,Universal Music Group,"C © 2016 KOPG Ltd, under exclusive licence to Virgin EMI Records a division of Universal Music Operations Ltd, P ℗ 2016 KOPG Ltd, under exclusive licence to Virgin EMI Records a division of Universal Music Operations Ltd",9642 +9643,spotify:track:0hVXuCcriWRGvwMV1r5Yn9,I Don't Care (with Justin Bieber),"spotify:artist:6eUKZXaKkcviH0Ku9w2n3V, spotify:artist:1uNFoZAHBGtllmzznpCI3s","Ed Sheeran, Justin Bieber",spotify:album:3oIFxDIo2fwuk4lwCmFZCx,No.6 Collaborations Project,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2019-07-12,https://i.scdn.co/image/ab67616d0000b27373304ce0653c7758dd94b259,1,6,219946,https://p.scdn.co/mp3-preview/437f7bd0260739dd4b37fb89f6b75894e61afe3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,GBAHS1900672,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop,canadian pop,pop",0.798,0.676,6.0,-5.041,1.0,0.0442,0.0902,0.0,0.0894,0.843,101.956,4.0,,Atlantic Records UK,"C © 2019 Warner Music UK Limited., P ℗ 2019 An Asylum Records UK release, a division of Atlantic Records UK; ℗ 2019 Warner Music UK Limited except track 6 ℗ 2019 Warner Music UK / Def Jam Recordings, a division of UMG Recordings, Inc",9643 +9644,spotify:track:4tApREIBqSBkiX2PwYfFxU,Mockingbird,spotify:artist:7yQyT3GaAXmzJMf6Vt1ZZj,Inez Foxx,spotify:album:1pqzGECZXGEhsUMoTCrBK6,Mockingbird,spotify:artist:7yQyT3GaAXmzJMf6Vt1ZZj,Inez Foxx,2011-11-01,https://i.scdn.co/image/ab67616d0000b2734ee5e88c30db8d0f9410e667,1,1,158040,https://p.scdn.co/mp3-preview/459a610e40d0066d1bf037a628c774b5c3b9de20?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,USA371555606,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.858,0.465,6.0,-7.632,1.0,0.0375,0.122,0.0,0.121,0.775,118.062,4.0,,Vintage Masters Inc.,C (C) 2011 Vintage Masters Inc.,9644 +9645,spotify:track:3jE6CMiTt8bQ7GAMor1ZhD,Feeding Line,spotify:artist:2NqgE99Ll5vOTvmbN7O2R6,Boy & Bear,spotify:album:3oaZe5whxRGMOvRPh9m52i,Moonfire,spotify:artist:2NqgE99Ll5vOTvmbN7O2R6,Boy & Bear,2011-01-01,https://i.scdn.co/image/ab67616d0000b27389304177f10e045189367c9a,1,2,268626,https://p.scdn.co/mp3-preview/32ffb9919105aa154e25e36369a53945a3f4f137?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM71100399,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indie,australian indie folk",0.643,0.621,6.0,-5.961,0.0,0.0274,0.000833,0.0139,0.123,0.293,117.95,4.0,,Universal Music Group,"C © 2011 Boy & Bear Pty Ltd, Marketed and distributed in Australia by Universal Music Australia Pty Ltd under exclusive license, P ℗ 2011 Boy & Bear Pty Ltd, Marketed and distributed in Australia by Universal Music Australia Pty Ltd under exclusive license",9645 +9646,spotify:track:7mXmxXLAnsvXKt4Q37KoMI,Over You,spotify:artist:5P5FTygHyx2G57oszR3Wot,Daughtry,spotify:album:7MEQdKzqoG2QJYcT2XEKsW,Daughtry,spotify:artist:5P5FTygHyx2G57oszR3Wot,Daughtry,2006-11-20,https://i.scdn.co/image/ab67616d0000b2730b9c38fede4b4c41f419cc8e,1,4,204853,https://p.scdn.co/mp3-preview/6ca29a3cfd993b807ec527c9e81cad9ef709b041?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBCTA0600229,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,neo mellow,pop rock,post-grunge",0.423,0.922,3.0,-2.6,1.0,0.0411,0.017,0.0,0.102,0.567,156.046,4.0,,RCA Records Label,"P (P) 2006 19 Recordings Ltd. under exclusive license to RCA Records, a division of Sony Music Entertainment",9646 +9647,spotify:track:1aUT4xl8iiYNr6emik4qTB,I Need A Doctor,"spotify:artist:6DPYiyq5kWVQS4RGwxzPC7, spotify:artist:7dGJo4pcD2V6oG8kP0tJRR, spotify:artist:4utLUGcTvOJFr6aqIJtYWV","Dr. Dre, Eminem, Skylar Grey",spotify:album:2IS597VgU3PdBGeMpJOZ1K,I Need A Doctor,spotify:artist:6DPYiyq5kWVQS4RGwxzPC7,Dr. Dre,2011-02-01,https://i.scdn.co/image/ab67616d0000b2736ec43af420bb6b350a04f40a,1,1,283733,https://p.scdn.co/mp3-preview/4baaf6c8f5c41afbc17120cf0c5272734ed1baac?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71029031,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,rap,west coast rap,detroit hip hop,hip hop,rap,piano rock,viral pop",0.587,0.931,3.0,-4.426,1.0,0.467,0.103,1.16e-06,0.346,0.445,155.964,4.0,,Universal Music Group,"C © 2010 Interscope Records, P ℗ 2010 Interscope Records",9647 +9648,spotify:track:7aGyRfJWtLqgJaZoG9lJhE,Mad at Disney,spotify:artist:3QJUFtGBGL05vo0kCJZsmT,salem ilese,spotify:album:1xWYSg7J7pxTZ113CJVy1P,Mad at Disney,spotify:artist:3QJUFtGBGL05vo0kCJZsmT,salem ilese,2020-07-24,https://i.scdn.co/image/ab67616d0000b2731cb068e27f83975bc827586e,1,1,136838,https://p.scdn.co/mp3-preview/6857669ff80147dafdd7892aec5c435053e91112?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,QMEZE2076989,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alt z,modern indie pop",0.738,0.621,0.0,-7.313,1.0,0.0486,0.424,7.39e-06,0.692,0.715,113.968,4.0,,"Homemade Projects, LLC / TenThousand Projects","C © 2020 HomeMade Projects, LLC / TenThousand Projects, P ℗ 2020 HomeMade Projects, LLC / TenThousand Projects",9648 +9649,spotify:track:6qUEOWqOzu1rLPUPQ1ECpx,Walk This Way (feat. Aerosmith),"spotify:artist:3CQIn7N5CuRDP8wEI7FiDA, spotify:artist:7Ey4PD4MYsKc5I2dolUwbH","Run–D.M.C., Aerosmith",spotify:album:7AFsTiojVaB2I58oZ1tMRg,Raising Hell,spotify:artist:3CQIn7N5CuRDP8wEI7FiDA,Run–D.M.C.,1986-05-15,https://i.scdn.co/image/ab67616d0000b273894ae4df775c6b47438991af,1,4,310386,https://p.scdn.co/mp3-preview/434a86dcf5206c271a08b63481b87e32a5d4b648?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USAR19900334,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,golden age hip hop,hip hop,old school hip hop,queens hip hop,rap,album rock,classic rock,hard rock,rock",0.761,0.711,9.0,-7.989,1.0,0.0604,0.0174,0.000101,0.0652,0.947,105.448,4.0,,Arista,P (P) 1986 Arista Records LLC,9649 +9650,spotify:track:7C1trmcQQ5n5RNy4l6ziCv,Some Say - Felix Jaehn Remix,"spotify:artist:7nqlScm2smydSRl13eaP8E, spotify:artist:4bL2B6hmLlMWnUEZnorEtG","Nea, Felix Jaehn",spotify:album:3HE3e3QqmuhAsxcJGtxyEr,Some Say (Felix Jaehn Remix),"spotify:artist:7nqlScm2smydSRl13eaP8E, spotify:artist:4bL2B6hmLlMWnUEZnorEtG","Nea, Felix Jaehn",2020-01-10,https://i.scdn.co/image/ab67616d0000b27321ab644b278ea98399ae17c5,1,1,186878,https://p.scdn.co/mp3-preview/00847ca0dbe476619f2d716b888141a598ad1517?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,SEBGA1902742,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"scandipop,edm,german dance,pop dance,tropical house,uk dance",0.682,0.7,6.0,-5.591,1.0,0.0397,0.406,0.0,0.174,0.637,120.03,4.0,,Milkshake,"P (P) 2020 Kookie Diamond and Linnea Södahl under exclusive license to Milkshake, a division of Sony Music Entertainment Sweden AB",9650 +9651,spotify:track:3lWuagNhAzcqOikD5KnBku,Crying in the Rain,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,spotify:album:3wWjXsqngYcPmd4hQzjNAD,The Golden Hits of The Everly Brothers,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,1962-06-01,https://i.scdn.co/image/ab67616d0000b2733b56057c89ad8a6fbb867a01,1,3,120306,https://p.scdn.co/mp3-preview/eb519946dcbdcf21f1783844ce7dd8cce9cf0ae6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USWB19903264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,folk rock,mellow gold,rock-and-roll,rockabilly,sunshine pop",0.61,0.379,2.0,-9.381,1.0,0.0278,0.622,0.0,0.144,0.48,97.166,4.0,,Warner Records,"C © 1962 Warner Records Inc., P ℗ 1962 Warner Records Inc.",9651 +9652,spotify:track:0hKF8N8aflF1uDzEEnPr2j,Life Is A Highway,spotify:artist:5Jj4mqGYiplyowPLKkJLHt,Tom Cochrane,spotify:album:5mJYFwj51OpBqRSxZCBLTT,Mad Mad World,spotify:artist:5Jj4mqGYiplyowPLKkJLHt,Tom Cochrane,1992,https://i.scdn.co/image/ab67616d0000b273a72e095ba0855a68b9290897,1,1,266560,https://p.scdn.co/mp3-preview/d29ac326f3325272a4f514ee631266c334bdd72a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,CAE159100001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian singer-songwriter,classic canadian rock,mellow gold",0.683,0.751,5.0,-10.184,1.0,0.0346,0.0681,8.36e-06,0.248,0.841,103.036,4.0,,EMI Music Canada,"C © 1991 EMI Music Canada, P ℗ 1991 EMI Music Canada",9652 +9653,spotify:track:7j3995wtXZhavQLWzaJydt,Single,"spotify:artist:55qiaow2sDYtjqu1mwRua6, spotify:artist:21E3waRsmPlU7jZsS13rcj","New Kids On The Block, Ne-Yo",spotify:album:28rUyHQQdO5cV3xhk8z2X5,The Block,spotify:artist:55qiaow2sDYtjqu1mwRua6,New Kids On The Block,2008-01-01,https://i.scdn.co/image/ab67616d0000b2731904291cb7012691dfcf8daa,1,2,235266,https://p.scdn.co/mp3-preview/391d05741b287ced925572a16be2016872285ba1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70826456,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,dance pop,pop,r&b,urban contemporary",0.667,0.793,0.0,-7.106,1.0,0.0505,0.0863,0.0,0.115,0.317,134.025,4.0,,Interscope,"C © 2008 Interscope Records, P ℗ 2008 Interscope Records",9653 +9654,spotify:track:2pfEVSZdq5McocgAYWhgLu,Creeque Alley - Single Version,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,spotify:album:0zR6CIh3f8DFFzIee5AWwp,Deliver,spotify:artist:1bs7HoMkSyQwcobCpE9KpN,The Mamas & The Papas,1967-01-01,https://i.scdn.co/image/ab67616d0000b27391d092488eaff72ece2451dd,1,3,228680,https://p.scdn.co/mp3-preview/ff6d03176573b2dd797f7beb933cb99316b5ba14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USMC16746384,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,folk rock,mellow gold,psychedelic rock,rock,soft rock,sunshine pop",0.615,0.754,4.0,-6.104,1.0,0.0379,0.721,0.0,0.077,0.786,145.299,4.0,,Geffen,"C © 1967 Geffen Records, P ℗ 1967 Geffen Records",9654 +9655,spotify:track:2ekn2ttSfGqwhhate0LSR0,New Rules,spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,spotify:album:01sfgrNbnnPUEyz6GZYlt9,Dua Lipa (Deluxe),spotify:artist:6M2wZ9GZgrQXHCFfjv46we,Dua Lipa,2017-06-02,https://i.scdn.co/image/ab67616d0000b273838698485511bd9108fadadc,1,10,209320,https://p.scdn.co/mp3-preview/e4f2ca20fc8aea1eb592d613d7a4b4da6012eaa2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,GBAHT1600310,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.762,0.7,9.0,-6.021,0.0,0.0694,0.00261,1.56e-05,0.153,0.608,116.073,4.0,,Warner Records,"C © 2017 Dua Lipa Limited under exclusive license to Warner Music UK Limited, P ℗ 2017 Dua Lipa Limited under exclusive license to Warner Music UK Limited. Tracks 3, 6, 7, 8, 9, 13, 14 (P) 2016 Warner Music UK Limited. Tracks 4, 15, 17 (P) 2015 Warner Music UK Limited.",9655 +9656,spotify:track:5jSz894ljfWE0IcHBSM39i,Raspberry Beret,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,spotify:album:5FbrTPPlaNSOsChhKUZxcu,Around the World in a Day,spotify:artist:5a2EaR3hamoenG9rDuVn8j,Prince,1985-04-22,https://i.scdn.co/image/ab67616d0000b273214f0bd9dc1ed0c65ae81760,1,4,215173,https://p.scdn.co/mp3-preview/27f2d9e3402a03e258b02da2e738471e18c9f81d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USWB19902876,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"funk,funk rock,minneapolis sound,rock,synth funk",0.761,0.67,2.0,-12.759,1.0,0.0438,0.21,0.000426,0.0685,0.91,120.752,4.0,,Rhino/Warner Records,"C © 1985 NPG Records, Inc. under exclusive license to Warner Records Inc., P ℗ 1985 NPG Records, Inc. under exclusive license to Warner Records Inc.",9656 +9657,spotify:track:0k93MXOj0kSXo84SvSDeUz,Ocean Drive,spotify:artist:61lyPtntblHJvA7FMMhi7E,Duke Dumont,spotify:album:1jlUEbR1VEEGzjK47Xk1gT,Ocean Drive,spotify:artist:61lyPtntblHJvA7FMMhi7E,Duke Dumont,2015-07-31,https://i.scdn.co/image/ab67616d0000b273210c65a0d15544756ffbdcf9,1,1,206320,https://p.scdn.co/mp3-preview/e8370babd0692cabf5656af93a3b4fb0c2c32096?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71504503,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,house,pop dance,progressive house,uk dance",0.689,0.711,8.0,-5.027,0.0,0.0455,0.00714,0.000499,0.135,0.566,115.048,4.0,,Universal Music Group,"C © 2015 Adam Dyment, under exclusive licence to Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2015 Adam Dyment, under exclusive licence to Virgin EMI Records, a division of Universal Music Operations Limited",9657 +9658,spotify:track:43istOLfZfWQVM2WK2AQu5,Ugly,spotify:artist:7rZNSLWMjTbwdLNskFbzFf,Sugababes,spotify:album:3Oegw6C2lRWx6TYXxdZJYj,Taller In More Ways,spotify:artist:7rZNSLWMjTbwdLNskFbzFf,Sugababes,2005-01-01,https://i.scdn.co/image/ab67616d0000b27369332887fe33abfed94d4ab4,1,6,231173,https://p.scdn.co/mp3-preview/cb9f091855f919ac348e116d4b83b54c2430b508?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAAN0500376,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,girl group,talent show",0.723,0.801,0.0,-7.741,1.0,0.0304,0.0193,0.0,0.239,0.631,116.991,4.0,,Universal-Island Records Ltd.,"C © 2005 Universal Island Records Ltd. A Universal Music Company., P ℗ 2005 Universal Island Records Ltd. A Universal Music Company.",9658 +9659,spotify:track:6ZO86sNjXoyjJgBgeI3Rym,Secrets,"spotify:artist:4ofCBoyEiGSePFAG500xev, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2","Regard, RAYE",spotify:album:380lc812w0NguSZhkpfxcz,Secrets,"spotify:artist:4ofCBoyEiGSePFAG500xev, spotify:artist:5KKpBU5eC2tJDzf0wmlRp2","Regard, RAYE",2020-04-24,https://i.scdn.co/image/ab67616d0000b273b29cb16d4cad3c114ea2b015,1,1,177000,https://p.scdn.co/mp3-preview/e1950e33fe485e45e86227f250455d145f2be55e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBCEN2000045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop dance,pop edm,slap house,uk dance,uk contemporary r&b,uk pop",0.843,0.762,6.0,-5.374,0.0,0.0366,0.0357,0.000901,0.351,0.753,119.003,4.0,,Ministry of Sound Recordings,P (P) 2020 Ministry of Sound Recordings Limited,9659 +9660,spotify:track:4jDhI4nE32u8meRN1aOu8u,Maria,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,spotify:album:0BvoIfpCiKSobLiXF7QOvN,Blondie 4(0)-Ever: Greatest Hits Deluxe Redux / Ghosts Of Download,spotify:artist:4tpUmLEVLCGFr93o8hFFIB,Blondie,2013-05-12,https://i.scdn.co/image/ab67616d0000b27341e16dd2db5af0f5340cee2f,1,4,245701,https://p.scdn.co/mp3-preview/bab77df64eed2f04a9957eff409bdc61ed74d12f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USDPK1302611,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop,permanent wave,power pop,rock,synthpop",0.545,0.812,9.0,-5.672,1.0,0.0609,0.028,0.00111,0.0749,0.785,159.69,4.0,,"Noble ID, LLC","C © 2014 Noble ID LLC, P ℗ 2014 Noble ID LLC",9660 +9661,spotify:track:6F8MwPCU40qIrl605yp9dP,Paper In Fire,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:0vMm7ACFW8V1dY4ETr0LNN,The Lonesome Jubilee (Remastered),spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,1987,https://i.scdn.co/image/ab67616d0000b2739dd7d74d685bb6c3ac060b73,1,1,231200,https://p.scdn.co/mp3-preview/c6b8292d6aec002fd5f6c32723e761e528514f2c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJM18700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.607,0.905,4.0,-4.748,1.0,0.0426,0.00122,0.000261,0.0624,0.533,141.985,4.0,,Universal Music Group,"C © 2005 John Mellencamp, under exclusive license to the Island Def Jam Music Group, P ℗ 2005 John Mellencamp, under exclusive license to the Island Def Jam Music Group",9661 +9662,spotify:track:1Pf53aghIDGSrI4vtUoZEs,A Beat For You,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,spotify:album:3Fv3q84sLwjO6UfVukIlS5,Autumnal Park,spotify:artist:0FDW3axHactZo8HU0OnNVy,Pseudo Echo,1984-01-01,https://i.scdn.co/image/ab67616d0000b27395739116cac0f0b07d3987ef,1,1,221071,https://p.scdn.co/mp3-preview/ce7083e4232b2b5ba354249af80a53a900664ef9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUUM71501013,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,dance rock,synthpop",0.694,0.724,9.0,-6.775,0.0,0.0463,0.0261,0.0,0.0782,0.865,127.247,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2017 Pseudo Echo, P ℗ 2017 Pseudo Echo",9662 +9663,spotify:track:09huOVRryZNV2deKFZLJDC,Waiting for a Star to Fall,spotify:artist:02Xpf8IlAGeelWAQZP33kQ,Boy Meets Girl,spotify:album:239pbWGvEVRkGAmeiZYwtp,Reel Life (Expanded Edition),spotify:artist:02Xpf8IlAGeelWAQZP33kQ,Boy Meets Girl,1988-06-01,https://i.scdn.co/image/ab67616d0000b273298da1176c2035b541e747d0,1,2,270720,https://p.scdn.co/mp3-preview/65adaa515e38c5eb5d469761ce99f867c22dacf6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USRC18805633,spotify:user:bradnumber1,2021-11-11T04:16:50Z,new wave pop,0.662,0.844,3.0,-6.034,1.0,0.027,0.145,0.00011,0.137,0.592,116.346,4.0,,RCA/Legacy,"P (P) 1988 RCA Records, a division of Sony Music Entertainment",9663 +9664,spotify:track:6vm3lygK2h81AKcQGHi4rZ,Turn A Blind Eye,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,spotify:album:5MdQmK6qMKHfEPoELuqyl2,Greatest Hits Live,spotify:artist:7udwYystFcvYziV36ZIwuh,Hunters & Collectors,2011-06-03,https://i.scdn.co/image/ab67616d0000b273a375cc0bf6677681d48358ff,1,2,286733,https://p.scdn.co/mp3-preview/9a567295eee230300e9ef77d05658f6533c81f66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI09800450,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.582,0.806,11.0,-5.881,0.0,0.0327,0.000886,0.00107,0.989,0.583,125.451,4.0,,Liberation Music,"C 2011 Human Frailty, under exclusive license to Liberation Music for Australia and New Zealand, P 2011 Human Frailty, under exclusive license to Liberation Music for Australia and New Zealand",9664 +9665,spotify:track:3FAJ6O0NOHQV8Mc5Ri6ENp,Heartbreak Anniversary,spotify:artist:4fxd5Ee7UefO4CUXgwJ7IP,Giveon,spotify:album:1zHR48K6XtWYm6bhrw4J6C,TAKE TIME,spotify:artist:4fxd5Ee7UefO4CUXgwJ7IP,Giveon,2020-03-27,https://i.scdn.co/image/ab67616d0000b2733317fc12f8b9a9a0b8459766,1,6,198370,https://p.scdn.co/mp3-preview/12200deba2a2f8126ff4430d35fec1be2969e87f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,79,USSM12000998,spotify:user:bradnumber1,2021-08-08T09:26:31Z,r&b,0.449,0.465,0.0,-8.964,1.0,0.0791,0.524,1.02e-06,0.303,0.543,89.087,3.0,,Epic/Not So Fast,P (P) 2020 Epic Records. With Not So Fast LLC.,9665 +9666,spotify:track:0pqnGHJpmpxLKifKRmU6WP,Believer,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:33pt9HBdGlAbRGBHQgsZsU,Evolve,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2017-06-23,https://i.scdn.co/image/ab67616d0000b2735675e83f707f1d7271e5cf8a,1,4,204346,https://p.scdn.co/mp3-preview/7d2f1ec114c44ecfa8b9017ad1c01cb041c8e613?cid=9950ac751e34487dbbe027c4fd7f8e99,False,86,USUM71700626,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.776,0.78,10.0,-4.374,0.0,0.128,0.0622,0.0,0.081,0.666,124.949,4.0,,Kid Ina Korner / Interscope,"C © 2018 KIDinaKORNER/Interscope Records, P ℗ 2018 KIDinaKORNER/Interscope Records",9666 +9667,spotify:track:6aHS6q1ar4GefiHMo9cV8l,Look Me In the Eye Sister,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,spotify:album:5g6nzzrlpYo1wmLsqoCoA9,Black Light,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2010,https://i.scdn.co/image/5a9006b4880f62c84a89ab41d5a51fcb6a396713,1,1,246961,https://p.scdn.co/mp3-preview/f72b1fbc71e614e7b34f219570feeb1fe0aa5062?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,GBCEJ0900412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,nu skool breaks,trip hop",0.477,0.812,1.0,-3.898,0.0,0.0399,0.000405,0.000266,0.383,0.24,120.139,4.0,,Shock Entertainment,C 2010 Ministry of Pies under exclusive license to Cooking Vinyl Ltd.,9667 +9668,spotify:track:203UoWCJXjMzyEs1Wjehne,"I Am, I Feel",spotify:artist:43lLY3aEg3yQz8sYhyvdn5,Alisha's Attic,spotify:album:2DopcrnSPjXypCguNTbaIS,Alisha Rules The World,spotify:artist:43lLY3aEg3yQz8sYhyvdn5,Alisha's Attic,1996-01-01,https://i.scdn.co/image/ab67616d0000b273e3500a094370faba0b3ff263,1,3,241626,https://p.scdn.co/mp3-preview/553b971a75c413094add7e6c079f2586e11d16b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBF089601115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,new wave pop",0.617,0.86,2.0,-4.567,1.0,0.0528,0.113,3.15e-06,0.434,0.815,83.043,4.0,,Mercury,"C © 1996 Mercury Records Limited, P ℗ 1996 Mercury Records Limited",9668 +9669,spotify:track:0UACObCoT1QlNDYroo7EJC,Suddenly I See,spotify:artist:5zzrJD2jXrE9dZ1AklRFcL,KT Tunstall,spotify:album:1JeXaWReXIrN1lADO8uoYx,Eye To The Telescope,spotify:artist:5zzrJD2jXrE9dZ1AklRFcL,KT Tunstall,2005-01-01,https://i.scdn.co/image/ab67616d0000b2730464ba50f9a2892ffd15bc68,1,9,201706,https://p.scdn.co/mp3-preview/18e7ea5d366ca11b71ce509575cf942267c8ecdc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBGLM0400069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"ectofolk,lilith,neo mellow,pop rock,scottish singer-songwriter",0.597,0.768,0.0,-5.721,1.0,0.0437,0.21,0.0,0.112,0.652,100.421,4.0,,Relentless/Virgin,"C © 2005 Universal Music Operations Limited, P ℗ 2005 Universal Music Operations Limited",9669 +9670,spotify:track:3husjxyCMBvNeiTEcrpPSe,Unfaithful,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,spotify:album:1F0HfWg9fdLDdeIfh9CnjU,A Girl Like Me,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2006-04-10,https://i.scdn.co/image/ab67616d0000b273b8dcb0db8772609cb2f55428,1,3,224629,https://p.scdn.co/mp3-preview/c976503a8cb35d63f8f7793ec014892c3dbcd3f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70601995,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary",0.588,0.391,0.0,-8.596,0.0,0.0334,0.839,0.0,0.195,0.349,144.053,4.0,,Universal Music Group,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",9670 +9671,spotify:track:62yJjFtgkhUrXktIoSjgP2,Radioactive,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:6nxDQi0FeEwccEPJeNySoS,Night Visions,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273407bd04707c463bbb3410737,1,1,186813,https://p.scdn.co/mp3-preview/10a6946f6466990d6ffee5821d745999c1492932?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,USUM71201074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.448,0.784,9.0,-3.686,1.0,0.0625,0.0999,0.000108,0.668,0.237,136.239,4.0,,Kid Ina Korner / Interscope,"C © 2013 KIDinaKORNER/Interscope Records, P ℗ 2013 KIDinaKORNER/Interscope Records",9671 +9672,spotify:track:0Dv4DdNy1xnhNcCd9YVoiH,No Good in Goodbye,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,spotify:album:6yd9yk8nFcHalXzy7mgaDx,No Sound Without Silence,spotify:artist:3AQRLZ9PuTAozP28Skbq8V,The Script,2014-09-15,https://i.scdn.co/image/ab67616d0000b27359d2079e141301ab89b6cbc5,1,1,307680,https://p.scdn.co/mp3-preview/484a9656f2bdded3b3c07376d3c5218a4504babc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,GBARL1400985,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"celtic rock,pop",0.366,0.873,4.0,-4.654,1.0,0.0436,0.0104,0.0,0.0839,0.216,156.03,4.0,,Columbia,P (P) 2014 Sony Music Entertainment UK Limited,9672 +9673,spotify:track:1SRkKyJ2JjMZgyDWC30zKv,My Best Friend's Girl,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,spotify:album:4tJPWT4r4FSKwy784Qs1Fq,The Cars,spotify:artist:6DCIj8jNaNpBz8e5oKFPtp,The Cars,1978-06-06,https://i.scdn.co/image/ab67616d0000b273f725bc7907dcf15aa2c6e7b7,1,2,223253,https://p.scdn.co/mp3-preview/2983ffa70d53fb706be8f7c7c2e62c9089fbd0db?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USEE10170465,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,mellow gold,new romantic,new wave,new wave pop,permanent wave,power pop,rock,singer-songwriter,soft rock,synthpop",0.799,0.608,5.0,-8.193,1.0,0.0411,0.0854,0.0138,0.102,0.963,121.916,4.0,,Elektra Records,"C © 1978 Elektra Records for the United States and WEA International for the world outside of the United States., P ℗ 1978 Elektra Entertainment, a division of Warner Communications, Inc. for the United States and WEA International Inc. for the world outside of the United States.",9673 +9674,spotify:track:4y1LsJpmMti1PfRQV9AWWe,Girls Just Want to Have Fun,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,spotify:album:1FvdZ1oizXwF9bxogujoF0,She's So Unusual,spotify:artist:2BTZIqw0ntH9MvilQ3ewNY,Cyndi Lauper,1983-10-14,https://i.scdn.co/image/ab67616d0000b27352f532df7ba3269b0242fed9,1,2,238266,https://p.scdn.co/mp3-preview/d8dc4f720786902e4b84fe1130c35bb74398edfa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,81,USSM18300548,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,new wave pop,permanent wave,soft rock",0.71,0.799,6.0,-4.897,1.0,0.0328,0.22,0.000602,0.349,0.725,120.372,4.0,,Portrait,P (P) 1983 Sony Music Entertainment Inc.,9674 +9675,spotify:track:6A7Y3xy2JbIsdW5rM4Yn8M,This Ole House,spotify:artist:0wi4yTYlGtEnbGo4ltZTib,Shakin' Stevens,spotify:album:0pvhletDH7CphbKErUtPCF,80s 100 Hits,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-03-01,https://i.scdn.co/image/ab67616d0000b273db56ceff816b668b7b6f04ff,1,11,185866,https://p.scdn.co/mp3-preview/4b17e7238c6ba9a1dce1517f5cc05cccd002c159?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,GBARL0801563,spotify:user:bradnumber1,2022-08-31T00:06:05Z,"classic uk pop,rockabilly",0.502,0.965,10.0,-2.946,1.0,0.112,0.053,0.0,0.34,0.962,192.811,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment,9675 +9676,spotify:track:2MQ51y5NhCyva4SgWmK2Me,Ghetto Gospel,spotify:artist:1ZwdS5xdxEREPySFridCfh,2Pac,spotify:album:6reqzR9irdAHWR8abHyqbG,Loyal To The Game,spotify:artist:1ZwdS5xdxEREPySFridCfh,2Pac,2004-12-14,https://i.scdn.co/image/ab67616d0000b27372f04d5309fe4a58eab44e80,1,4,238053,https://p.scdn.co/mp3-preview/f6c892f53e7853b0f71d434013449b02dcbd48df?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USIR10401032,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,rap,west coast rap",0.794,0.614,5.0,-5.352,0.0,0.0467,0.0964,0.0,0.0789,0.663,80.569,4.0,,Universal Music Group,"C © 2004 Interscope Records, P ℗ 2004 Interscope Records",9676 +9677,spotify:track:6D60klaHqbCl9ySc8VcRss,Stronger (What Doesn't Kill You),spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:1MNvMtEmMMdBXZBDcFNcWj,Stronger (Deluxe Version),spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2011-10-24,https://i.scdn.co/image/ab67616d0000b273253e3f8fce535f72a6b2c4ba,1,2,221946,https://p.scdn.co/mp3-preview/4956c3edb0a79489adc21e2d16eb8f7880c94d36?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBCTA1100364,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.562,0.939,0.0,-4.282,1.0,0.0475,0.046,0.0,0.112,0.684,116.044,4.0,,RCA Records Label,P (P) 2011 19 Recordings Limited under exclusive license to RCA Records,9677 +9678,spotify:track:3ee8Jmje8o58CHK66QrVC2,SAD!,spotify:artist:15UsOTVnJzReFVN1VCnxy4,XXXTENTACION,spotify:album:2Ti79nwTsont5ZHfdxIzAm,?,spotify:artist:15UsOTVnJzReFVN1VCnxy4,XXXTENTACION,2018-03-16,https://i.scdn.co/image/ab67616d0000b273806c160566580d6335d1f16c,1,4,166605,https://p.scdn.co/mp3-preview/056a1074f4687ab09a2d548baf72ca3e2fa42d79?cid=9950ac751e34487dbbe027c4fd7f8e99,True,79,USUG11800208,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo rap,miami hip hop,rap",0.74,0.613,8.0,-4.88,1.0,0.145,0.258,0.00372,0.123,0.473,75.023,4.0,,"Bad Vibes Forever, LLC","C © 2018 Bad Vibes Forever, P ℗ 2018 Bad Vibes Forever",9678 +9679,spotify:track:6LtidZ09rh1n991F8qYPui,What Goes Around...Comes Around - Radio Edit,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:0yu01H0qmaBlXH4TISoAT8,What Goes Around...Comes Around,spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,2006-12-19,https://i.scdn.co/image/ab67616d0000b27399533f4dc4ae15db7d44f7e5,1,1,313133,https://p.scdn.co/mp3-preview/31ca10566c4d87e3b43ff1ae6d372db381dd22d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI10601102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.717,0.7,7.0,-5.155,1.0,0.0624,0.153,0.000462,0.141,0.499,75.979,4.0,,Jive,"P (P) 2006 Zomba Recording, LLC",9679 +9680,spotify:track:4ue5ET9msGNJSO6sSbrCVE,I Want To Break Free - Remastered 2011,spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,spotify:album:3enuKERSauyNFVTa2n0t7S,Greatest Hits II (2011 Remaster),spotify:artist:1dfeR4HaWDbWqFHLkxsg1d,Queen,1991-10-28,https://i.scdn.co/image/ab67616d0000b2733db35792fa2e91722e9897b1,1,5,258000,https://p.scdn.co/mp3-preview/f3235c7ecdd515606538e4432d93824df5ed8dee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71029625,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,rock",0.796,0.43,4.0,-8.994,1.0,0.0325,0.0869,0.000343,0.0776,0.559,108.959,4.0,,Universal Music Group,"C © 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV, P ℗ 2011 Queen Productions Ltd. under exclusive licence to Universal International Music BV",9680 +9681,spotify:track:2lERSnSw1xBZYogcrU2Ntp,On the Prowl,spotify:artist:3UmfCgpdKzg2WTa6453o4E,Ol' 55,spotify:album:776mBHwcQXD39eBSqmR3eQ,Take It Greasy,spotify:artist:3UmfCgpdKzg2WTa6453o4E,Ol' 55,1976,https://i.scdn.co/image/ab67616d0000b273644d67f41beda36cb3ada2ec,1,10,181266,https://p.scdn.co/mp3-preview/b1c241635deca3c308f3767a8655f01b3e34884b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,AUMU07600010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.385,0.66,9.0,-14.601,1.0,0.046,0.339,0.0,0.0756,0.97,168.26,4.0,,WM Australia,"C © 1976 Mushroom Records Pty Ltd, P ℗ 1976 Mushroom Records Pty Ltd",9681 +9682,spotify:track:21xJVN5wEbJogczYxfZhqR,Black Beatles,"spotify:artist:7iZtZyCzp3LItcw1wtPI3D, spotify:artist:13y7CgLHjMVRMDqxdx0Xdo","Rae Sremmurd, Gucci Mane",spotify:album:5gyYLXgAcJoZrFgsmzA4MM,SremmLife 2 (Deluxe),spotify:artist:7iZtZyCzp3LItcw1wtPI3D,Rae Sremmurd,2016-08-12,https://i.scdn.co/image/ab67616d0000b273191f6dcfff701a33c5a2f717,1,5,291893,https://p.scdn.co/mp3-preview/b1aca8f469d2f2f19962e9dd1ab6be753e3e1c4a?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USUM71603293,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"melodic rap,mississippi hip hop,pop rap,rap,trap,atl hip hop,dirty south rap,hip hop,pop rap,rap,southern hip hop,trap",0.794,0.647,0.0,-6.232,1.0,0.0628,0.158,0.0,0.139,0.345,145.945,4.0,,Universal Music Group,"C © 2016 Eardruma Records/Interscope Records, P ℗ 2016 Eardruma Records/Interscope Records",9682 +9683,spotify:track:7ddFviC4ObJzizg98keTNt,Don't Leave Home,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,spotify:album:7HlZFlk0jJq3Bb03AOyMTE,Life For Rent,spotify:artist:2mpeljBig2IXLXRAFO9AAs,Dido,2003,https://i.scdn.co/image/ab67616d0000b273d41b79f27ef8d8df5a191219,1,6,226560,https://p.scdn.co/mp3-preview/73f5f9b412085f22317de7e28160e02833a10ab0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBBXH0300040,spotify:user:bradnumber1,2022-12-21T10:17:17Z,"dance pop,europop,lilith,neo mellow,pop rock",0.542,0.524,6.0,-8.016,1.0,0.0382,0.0638,2.74e-05,0.0929,0.434,171.863,4.0,,Sony BMG Music UK,P (P) 2008 Sony BMG Music Entertainment (UK) Limited,9683 +9684,spotify:track:1bDjowPMtoft6kd33wUkof,What Can I Say,spotify:artist:46njgd2Rq9tZc4ZjeQMgbh,Boz Scaggs,spotify:album:3urpKmhg4HyYuEmODNdTdo,My Time: A Boz Scaggs Anthology (1969-1997),spotify:artist:46njgd2Rq9tZc4ZjeQMgbh,Boz Scaggs,1997,https://i.scdn.co/image/ab67616d0000b27337dedf45abb08250f184faf9,1,11,179533,https://p.scdn.co/mp3-preview/8a4a070b4ae8553964c51817ea7a6fe9060298d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USSM17500261,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,mellow gold,singer-songwriter,soft rock,yacht rock",0.737,0.443,7.0,-12.171,1.0,0.0331,0.054,0.00614,0.0673,0.815,115.16,4.0,,Columbia/Legacy,"P Originally Recorded 1969 Atlantic Recording Corp., Originally Released 1971 Sony Music Entertainment Inc., (P) 1991 Giant Records, 1994, 1997 Virgin Records America, Inc., 1972, 1974, 1976, 1977, 1980, 1988, 1996, 1997 Sony Music Entertainment Inc. W",9684 +9685,spotify:track:4ZExvJvQXPEeYzGU0N3THi,Higher Love,spotify:artist:5gxynDEKwNDgxGJmJjZyte,Steve Winwood,spotify:album:1VV4tdUYIjRlhKxu1gMw4d,Back In The High Life,spotify:artist:5gxynDEKwNDgxGJmJjZyte,Steve Winwood,1986-06-30,https://i.scdn.co/image/ab67616d0000b2738362a7a26eaf279f336f1494,1,1,351506,https://p.scdn.co/mp3-preview/c6685d809823ea0878f5073aadc7ee6e97f72c31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBAAN8600003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,folk rock,mellow gold,singer-songwriter,soft rock",0.695,0.78,5.0,-12.159,1.0,0.0414,0.0426,0.146,0.298,0.954,98.699,4.0,,UMC (Universal Music Catalogue),"C © 1986 Universal Music Operations Limited, P ℗ 1986 Universal Music Operations Limited",9685 +9686,spotify:track:2l8w0zZVn4AZNuzrht7MRT,"Love Me Like You Do - From ""Fifty Shades Of Grey""",spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,spotify:album:5nhoVKDcCXvi3AruUFJWnv,Delirium (Deluxe),spotify:artist:0X2BH1fck6amBIoJhDVmmJ,Ellie Goulding,2015-11-13,https://i.scdn.co/image/ab67616d0000b273e9cbe14ad3ce1507e449adb6,1,9,252534,https://p.scdn.co/mp3-preview/af7a33094ec0c2743a50e007c66acb07ded6b3ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,GBUM71507204,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,metropopolis,pop,uk pop",0.475,0.606,8.0,-6.646,1.0,0.0346,0.247,0.0,0.125,0.282,94.994,4.0,,Polydor Records,"C © 2015 Polydor Ltd. (UK), P ℗ 2015 Polydor Ltd. (UK)",9686 +9687,spotify:track:0KKkJNfGyhkQ5aFogxQAPU,That's What I Like,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:4PgleR09JVnm3zY1fW3XBA,24K Magic,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2016-11-17,https://i.scdn.co/image/ab67616d0000b273232711f7d66a1e19e89e28c5,1,4,206693,https://p.scdn.co/mp3-preview/93046e987d8c5bfdbeea2768ac1a8ecea17bd7e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,86,USAT21602948,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.853,0.56,1.0,-4.961,1.0,0.0406,0.013,0.0,0.0944,0.86,134.066,4.0,,Atlantic Records,"C © 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company, P ℗ 2016 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. A Warner Music Group Company",9687 +9688,spotify:track:2SrvRFcgZfIhoRBkdDtUfv,Take Me Over,"spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY, spotify:artist:1y07gMlsfAdz2KOvZzyUTB","Peking Duk, SAFIA",spotify:album:2NxPeKkblovr3zSAXEAvyG,Take Me Over,spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY,Peking Duk,2014-01-01,https://i.scdn.co/image/ab67616d0000b27354a7187c4c2e47effe3e36fe,1,1,208121,https://p.scdn.co/mp3-preview/604487f7dcf089e532ff4708f485d6b3525e9699?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC01437211,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian electropop,australian indie,edm,australian indie",0.486,0.802,6.0,-3.211,0.0,0.0517,0.00877,0.0,0.11,0.423,97.146,4.0,,Universal Music Australia Pty. Ltd.,"C © 2014 Vicious Bitch, P ℗ 2014 Vicious Bitch",9688 +9689,spotify:track:7xkQdy0cy5ymoWT7nedvLz,Whatcha Say,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:0DEsmIQ5ir7tz52Nkf4i1K,Jason Derulo (International),spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2010-02-26,https://i.scdn.co/image/ab67616d0000b273293e8055dd8814fcdf4742f7,1,1,221253,https://p.scdn.co/mp3-preview/c38e8cf655b1b4ffe8d31d340dc9675f91e43f3b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USWB10901504,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.615,0.711,11.0,-5.507,1.0,0.0779,0.0444,0.0,0.145,0.711,144.036,4.0,,Beluga Heights/Warner Records,"C © 2010 Warner Records Inc., P ℗ 2010 Warner Records Inc.",9689 +9690,spotify:track:5nPdMALTEd7HOjn16oNf2X,Don't Go Breaking My Heart,"spotify:artist:3PhoLpVuITZKcymswpck5b, spotify:artist:4vjGlQWexbru6aOUCLTVir","Elton John, Kiki Dee",spotify:album:6tKgjhjWDMVlgb3a6KoI1x,Rock Of The Westies (Remastered),spotify:artist:3PhoLpVuITZKcymswpck5b,Elton John,1975-10-24,https://i.scdn.co/image/ab67616d0000b2733cf2e0671ff7ee3cef95e6e7,1,10,275440,https://p.scdn.co/mp3-preview/a1ac078e1ebc26f93431ccd9b5eec2c8c6dc2272?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALX7600007,spotify:user:bradnumber1,2021-08-08T09:27:48Z,"glam rock,mellow gold,piano rock,rock,classic uk pop",0.729,0.844,5.0,-8.824,1.0,0.0344,0.149,2.87e-06,0.0604,0.777,131.459,4.0,,Universal Music Group,"C © 1995 Mercury Records Limited, P ℗ 1975 This Record Company Ltd.",9690 +9691,spotify:track:0u4htORODiTK9vHVA89MQX,Lovefool - Radio Edit,spotify:artist:1tqZaCwM57UFKjWoYwMLrw,The Cardigans,spotify:album:0YI7QPNUGq8NTB6Nd8nWfd,First Band On The Moon,spotify:artist:1tqZaCwM57UFKjWoYwMLrw,The Cardigans,1996-09-17,https://i.scdn.co/image/ab67616d0000b27378933b5beedeb77912107905,1,7,193893,https://p.scdn.co/mp3-preview/f548f1a669b14992fc5d1c2339f8eb114c175f3c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,SEBKB9629380,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,new wave pop,permanent wave,pop rock,swedish pop",0.64,0.602,9.0,-7.902,1.0,0.0299,0.0646,0.0,0.375,0.951,111.87,4.0,,Universal Music AB,"C © 1996 Universal Music AB, P This Compilation ℗ 1996 Universal Music AB",9691 +9692,spotify:track:6Sy9BUbgFse0n0LPA5lwy5,Sandstorm,spotify:artist:0LhHRmSd1EYM5QdNeNnCoQ,Darude,spotify:album:0Xks5v0dve8Gh2tRHIekjo,"Before the Storm, Special Edition",spotify:artist:0LhHRmSd1EYM5QdNeNnCoQ,Darude,2001-01-01,https://i.scdn.co/image/ab67616d0000b273f9ef39657ba18c612641ee6d,1,4,225493,https://p.scdn.co/mp3-preview/9e6a0d658fc0c31398bfc2e56abc54fade24115c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,FISGC9900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,finnish edm",0.528,0.965,11.0,-7.984,0.0,0.0465,0.141,0.985,0.0797,0.587,136.065,4.0,,16 Inch Records,"C (C) 2008 16 Inch Records, P (P) 2000 16 Inch Records",9692 +9693,spotify:track:7a3g7jILDCvADVN9NQIyYj,This Guy's In Love With You,spotify:artist:09L3cUdx0hq6qn5bKuJJ4I,Herb Alpert & The Tijuana Brass,spotify:album:1gLr8rpbgu3NHm40y03aKh,The Beat Of The Brass,spotify:artist:09L3cUdx0hq6qn5bKuJJ4I,Herb Alpert & The Tijuana Brass,1968-05-01,https://i.scdn.co/image/ab67616d0000b273d8a5a700ed348747d9b5e1e6,1,11,239733,https://p.scdn.co/mp3-preview/eb19ffc4bd2efab896a322be2714a545ccbb65c2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QM4221500610,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"easy listening,lounge",0.635,0.167,1.0,-12.998,1.0,0.0403,0.858,0.000999,0.213,0.246,83.768,4.0,,Herb Alpert Presents,"C 2015 Herb Alpert Presents, P 2015 Herb Alpert Presents",9693 +9694,spotify:track:1DzQBIxTpAJm7SN5YwSyMH,Did It Again,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,spotify:album:4mlKMSVduuGMKcmqOL8dGW,Impossible Princess,spotify:artist:4RVnAU35WRWra6OZ3CbbMA,Kylie Minogue,1997-10-22,https://i.scdn.co/image/ab67616d0000b273de75ebe01922f7b904f44968,1,4,262026,https://p.scdn.co/mp3-preview/62d05c578eb2897a854c6ff73e4b15260e6df102?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,GBARL9700342,spotify:user:bradnumber1,2021-11-20T11:26:00Z,"australian dance,australian pop,dance pop,eurodance,new wave pop",0.683,0.857,11.0,-6.253,0.0,0.0306,0.0162,0.0155,0.124,0.763,119.019,4.0,,WM Australia,"C © 1997 Mushroom Records, P ℗ 1997 Mushroom Records",9694 +9695,spotify:track:0Hx4oO2Eh4ZLSlTTd4dQmN,You've Got A Way,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,spotify:album:1Xq7GtFHmTt110bmxQrtC4,Come On Over,spotify:artist:5e4Dhzv426EvQe3aDb64jL,Shania Twain,1997,https://i.scdn.co/image/ab67616d0000b27351cfe8c7a9f78702fc36a0cb,1,8,199200,https://p.scdn.co/mp3-preview/c14ee0324d82809abe2a36a8c7093e5721920710?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMR19887506,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian country,canadian pop,contemporary country,country,country dawn",0.555,0.564,9.0,-7.305,1.0,0.0305,0.36,0.0,0.244,0.266,134.16,4.0,,Universal Music Group,"C © 2009 Mercury Records, P ℗ 2009 Mercury Records",9695 +9696,spotify:track:4ih3dyFZoeTdaeJW9mPbOI,Mr. Vain - Original Radio Edit,spotify:artist:0BZ3BHzfYwpd3k5TDnvAz8,Culture Beat,spotify:album:0eVj6uUqoagjDPSOmz2rRj,Mr. Vain,spotify:artist:0BZ3BHzfYwpd3k5TDnvAz8,Culture Beat,1993-01-01,https://i.scdn.co/image/ab67616d0000b273ac84d8bd8b1e6f9752dc361e,1,3,257466,https://p.scdn.co/mp3-preview/2bd53aa82a1240b6a5648320dabdbb99afd432d0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,DEPT99300113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,europop,german techno,hip house",0.703,0.997,9.0,-7.666,0.0,0.0399,0.0726,0.0235,0.123,0.391,132.872,4.0,,Abfahrt Media,"C 2012 Abfahrt Media GmbH, P 2012 Abfahrt Media GmbH",9696 +9697,spotify:track:4Tk8OVNoM281JzGsaB0bOS,She's Got Me Dancing,spotify:artist:66uOhXPcCmXFosB8DkSs4b,Tommy Sparks,spotify:album:5tret12acUECq1aXEe79Tk,She's Got Me Dancing,spotify:artist:66uOhXPcCmXFosB8DkSs4b,Tommy Sparks,2009-01-01,https://i.scdn.co/image/ab67616d0000b2739bc206ecd7f7a0418277ef12,1,1,207040,https://p.scdn.co/mp3-preview/17bd94835a9276e72c752a360376ca433fd91b1d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM70817961,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.719,0.874,2.0,-4.744,1.0,0.0407,0.000825,8.12e-06,0.0919,0.813,112.037,4.0,,Universal Music,"C © 2009 Universal Island Records Ltd. A Universal Music Company., P ℗ 2009 Universal Island Records Ltd. A Universal Music Company.",9697 +9698,spotify:track:0gZSvh4emENER9WH8hXG68,Tear It Down,spotify:artist:4Jv9I6DAbcjDa8HGFAjv94,The Aston Shuffle,spotify:album:7qe4zA0SQloD3usmn0APqN,Photographs,spotify:artist:4Jv9I6DAbcjDa8HGFAjv94,The Aston Shuffle,2014-01-01,https://i.scdn.co/image/ab67616d0000b273764d8cdb5cfbe48f4e80779c,1,1,301869,https://p.scdn.co/mp3-preview/99084641b218834f90d7b9e0c30b2b1167410b31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AU4P11400063,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian house",0.63,0.548,1.0,-5.803,1.0,0.0436,0.0199,0.000159,0.116,0.369,125.999,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2014 Aston Shuffle Music Pty Ltd, P ℗ 2014 Aston Shuffle Music Pty Ltd, under exclusive licence to EMI Recorded Music Australia Pty Ltd, a Universal Music company",9698 +9699,spotify:track:4FWbsd91QSvgr1dSWwW51e,TRUSTFALL,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,spotify:album:0JlRRM2KKOzLKzgn9etoXt,TRUSTFALL,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2023-01-27,https://i.scdn.co/image/ab67616d0000b27302f93e92bdd5b3793eb688c0,1,1,237200,https://p.scdn.co/mp3-preview/4a8b78e434e2dda75bc679955c3fbd8b4dad372b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USRC12204190,spotify:user:bradnumber1,2023-02-08T23:18:06Z,"dance pop,pop",0.636,0.888,8.0,-3.889,1.0,0.0945,0.00162,0.000216,0.147,0.25,122.032,4.0,,RCA Records Label,"P (P) 2023 RCA Records, a division of Sony Music Entertainment",9699 +9700,spotify:track:30U6cgQumz1UxOE9jhNiHd,Trust Myself,spotify:artist:2RIVQdPgIgGdRyYUaHFKWm,Sam Perry,spotify:album:5Nu3Gwrb7yIVKLKM0A9lds,Trust Myself,spotify:artist:2RIVQdPgIgGdRyYUaHFKWm,Sam Perry,2018-06-17,https://i.scdn.co/image/ab67616d0000b273c7e0d0eb3c1d7d26d6547879,1,1,180628,https://p.scdn.co/mp3-preview/d2aef7d0ce74bf589d5bfcb5846a9db4c590b9d4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUUM71800652,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,beatboxing",0.7,0.854,8.0,-3.794,0.0,0.0426,0.115,1.42e-05,0.0584,0.307,116.01,4.0,,Universal Music Australia Pty. Ltd.,"C © 2018 Universal Music Australia Pty Ltd., P ℗ 2018 Universal Music Australia Pty Ltd.",9700 +9701,spotify:track:6moU77g9RQyMzHNuKEaQKq,It's You,spotify:artist:4rTv3Ejc7hKMtmoBOK1B4T,Ali Gatie,spotify:album:40vQONzvJb6sKejDN3eWza,It's You,spotify:artist:4rTv3Ejc7hKMtmoBOK1B4T,Ali Gatie,2019-06-14,https://i.scdn.co/image/ab67616d0000b273c1d281f747062f4687df6a9c,1,1,212606,https://p.scdn.co/mp3-preview/6e72053e14390cfe06f7516e289ef2a82383f986?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USWB11901154,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian hip hop,0.732,0.463,11.0,-6.972,0.0,0.0287,0.374,0.0,0.194,0.397,95.971,4.0,,Warner Records,"C 2019 LISN, under exclusive license to Warner Records Inc., P 2019 LISN, under exclusive license to Warner Records Inc.",9701 +9702,spotify:track:0nhBKubnVz9yFNNprBniWz,YOUTH,spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,spotify:album:2mRBvhDWqm8Fj2U0F6mMY4,Blue Neighbourhood (Deluxe),spotify:artist:3WGpXCj9YhhfX11TToZcXP,Troye Sivan,2015-12-09,https://i.scdn.co/image/ab67616d0000b273cc2504583eeb105a99b54cc8,1,10,185194,https://p.scdn.co/mp3-preview/fe376137cc8e4d24d1435832833d0270993ffe0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,AUUM71501373,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,pop,viral pop",0.628,0.737,7.0,-4.437,1.0,0.041,0.0638,0.0,0.0777,0.591,91.505,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2016 Universal Music Australia Pty Ltd., P ℗ 2016 Universal Music Australia Pty Ltd.",9702 +9703,spotify:track:7krbSH3rd8lhIZvuzTV3Bl,Naked,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:6fQ1xPtYMzoBiqvSO2LcpT,Naked,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2017-11-24,https://i.scdn.co/image/ab67616d0000b273f13bfa0da7b94ac3272f3152,1,1,234106,https://p.scdn.co/mp3-preview/53e7499e7b3cf1fd4dc40c121035bf5f94de2e09?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,DEE861702596,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.529,0.607,6.0,-6.781,1.0,0.0574,0.104,0.0,0.0631,0.238,101.966,4.0,,Columbia Local,P (P) 2018 Sony Music Entertainment Germany GmbH,9703 +9704,spotify:track:2XGVrlWlFtHwecfBzT9xqw,Forever,"spotify:artist:45InkbGypoMk5nVX6dsHkt, spotify:artist:1D0ZB8becZYC5DclhIfXTU","N-Trance, Kenny Hayes",spotify:album:6WhmlwvALu2hYZMCmjbMGr,Forever,spotify:artist:45InkbGypoMk5nVX6dsHkt,N-Trance,2002-09-09,https://i.scdn.co/image/ab67616d0000b2736865d69f79971292be5816b1,1,1,190773,https://p.scdn.co/mp3-preview/33813f9a0036732edb2cbce1786d0b3d81a20c72?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCFZ0200170,spotify:user:bradnumber1,2021-12-12T11:21:47Z,"eurodance,hip house",0.584,0.751,11.0,-7.129,0.0,0.0296,0.0658,0.00253,0.363,0.201,139.935,4.0,,All Around The World,"C © 2017 Universal Music Operations Limited, P All Around The World Limited; ℗ 2017 Universal Music Operations Limited",9704 +9705,spotify:track:2xx3jKB4ZXeKsNZYIFuELu,Can I Go Now,spotify:artist:2BZDbnjUHnL2XAPgkdqTpb,Jennifer Love Hewitt,spotify:album:4p123y0kTbiPHU15ociKAq,Barenaked,spotify:artist:2BZDbnjUHnL2XAPgkdqTpb,Jennifer Love Hewitt,2002,https://i.scdn.co/image/ab67616d0000b2738a9a82bdb579d55883e15d0b,1,2,216000,https://p.scdn.co/mp3-preview/9f6146bc0b92a584c11211a99f0fe18bcf2118e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,USJI10200223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.637,0.699,1.0,-5.679,0.0,0.0579,0.00246,4.52e-05,0.0249,0.855,150.104,4.0,,Jive,P (P) 2002 Zomba Recording LLC,9705 +9706,spotify:track:1ZL90IFD2bTK89QSTTN0zO,The Lovecats,spotify:artist:7bu3H8JO7d0UbMoVzbo70s,The Cure,spotify:album:1AWHLvPcuCsBwEur0J3mU0,Greatest Hits,spotify:artist:7bu3H8JO7d0UbMoVzbo70s,The Cure,2001-01-01,https://i.scdn.co/image/ab67616d0000b2736f7b4282cdf0a9904c86901d,1,5,218600,https://p.scdn.co/mp3-preview/ea067be9983cc719c166481f0a3bd2d884967ec8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBALB8300001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave,permanent wave,rock,uk post-punk",0.736,0.816,0.0,-4.759,1.0,0.0812,0.498,0.0,0.409,0.963,91.868,4.0,,Universal Music Group,"C © 2001 Polydor Ltd. (UK), P ℗ 2001 Fiction Records Ltd.",9706 +9707,spotify:track:1HA7Pz9Zpi43tN5vrLuFZF,Promises,spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,spotify:album:20rfkv1O76ncQWtjSYI8MF,Pacifica (Deluxe),spotify:artist:1zTAQ6zkGz2L2i6lfR30EX,The Presets,2012-09-07,https://i.scdn.co/image/ab67616d0000b273e0b0d279e3671b6d1c3b3f20,1,3,298306,https://p.scdn.co/mp3-preview/7bab6f03b76e445051454136feab6362054e8dd8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,27,AUUM71200402,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,australian dance,australian indie",0.624,0.653,0.0,-7.462,1.0,0.0408,0.0537,1.86e-05,0.373,0.501,120.017,4.0,,Modular,"C © 2013 Modular Recordings, P ℗ 2013 Modular Recordings",9707 +9708,spotify:track:6G7CVZ6ZLIzQXKjdD7lVRi,Careless,spotify:artist:05JF2urTunljp953SopuXc,Little Sea,spotify:album:0VmfsawcGAZQZC2TF8LVmi,Wake The Sun,spotify:artist:05JF2urTunljp953SopuXc,Little Sea,2014-11-18,https://i.scdn.co/image/ab67616d0000b273199431d95f6f77be9d83fd9f,1,5,239066,https://p.scdn.co/mp3-preview/ede1230d298afb1fef3f0b97ab512230b2cf890a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,AUNCC1300016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.557,0.531,7.0,-8.541,1.0,0.0276,0.227,0.0,0.104,0.108,102.94,4.0,,Sony Music Entertainment,P (P) 2014 Little Sea under exclusive license to Sony Music Entertainment Australia Pty Ltd.,9708 +9709,spotify:track:6gQSJXjudjG12xFSZRTvn0,Miss Freelove of '69,spotify:artist:7y5FNvBefNfxdfFMQpL9va,John David,spotify:album:5mmtrVo47aHYgM2731EGC1,Dance the Night Away,spotify:artist:7y5FNvBefNfxdfFMQpL9va,John David,2011-07-01,https://i.scdn.co/image/ab67616d0000b273f5994f47ca8df7b211897927,1,3,218749,https://p.scdn.co/mp3-preview/578d82450f0a2237a0be535d4f851824570761f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,DEAT70500011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.577,0.867,11.0,-5.249,0.0,0.0454,0.0205,0.0,0.0867,0.728,132.042,4.0,,Bob-Media,"C Bob-Media, P Bob-Media",9709 +9710,spotify:track:1nxxYKsraVrPnNRzISliwM,Homburg - Single Version - 2009 Remaster - Mono,spotify:artist:0GbqW5TJr7n4is453VOY4C,Procol Harum,spotify:album:4fKEheMhcigQBenkttp5CU,Hits'n'Flips,spotify:artist:0GbqW5TJr7n4is453VOY4C,Procol Harum,2019-05-03,https://i.scdn.co/image/ab67616d0000b2739d713ba3dce10df2b943dc6a,1,3,237400,https://p.scdn.co/mp3-preview/67ce624da4f351d9b07d2b7fddca4dd000f3302f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBWX0800603,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,blues rock,british invasion,classic rock,country rock,folk rock,mellow gold,progressive rock,psychedelic rock,singer-songwriter,symphonic rock",0.361,0.658,10.0,-7.893,1.0,0.0313,0.0973,0.047,0.0636,0.375,142.242,4.0,,Fly Records,"C (C) 2019 Bucks Records Limited, P (P) 2019 Onward Music Limited",9710 +9711,spotify:track:4rvtlpAeDuOn4baUJPCEhy,As Long As You Love Me,"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:0c173mlxpT3dSFRgMO8XPh","Justin Bieber, Big Sean",spotify:album:7BWK3eXcbAdwYeulyQj5Kw,Believe (Deluxe Edition),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2012-01-01,https://i.scdn.co/image/ab67616d0000b273adc5af517133ca221870f112,1,3,229466,https://p.scdn.co/mp3-preview/7068b4c85b04f16368b0e40b56e9a8eff56377fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71205320,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,detroit hip hop,hip hop,pop rap,r&b,rap,southern hip hop,trap",0.579,0.871,0.0,-3.385,0.0,0.109,0.0679,0.0,0.353,0.601,139.841,4.0,,Universal Music Group,"C © 2012 The Island Def Jam Music Group, P ℗ 2012 The Island Def Jam Music Group",9711 +9712,spotify:track:664gdARxaClFsoF5SXKOws,Here,spotify:artist:2wUjUUtkb5lvLKcGKsKqsR,Alessia Cara,spotify:album:2AGNF8r2y8HL85yVk2bwmS,Know-It-All (Deluxe),spotify:artist:2wUjUUtkb5lvLKcGKsKqsR,Alessia Cara,2016-03-11,https://i.scdn.co/image/ab67616d0000b2730a48794d471447a030998815,1,2,199453,https://p.scdn.co/mp3-preview/9009fd4c8a0bf003fe5b0e089221237250852b63?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USUM71506251,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.376,0.822,0.0,-3.974,1.0,0.104,0.0783,0.0,0.0841,0.327,120.498,4.0,,"EP Entertainment, LLC / Def Jam","C © 2015 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",9712 +9713,spotify:track:0MPa0UgbqYZET6lX1mVkDp,Get It,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,spotify:album:3Yg0R1yjunguI8kDVlILzn,Get It,spotify:artist:1EVWYRr2obCRDoSoD6KSuM,Havana Brown,2011-01-01,https://i.scdn.co/image/ab67616d0000b2739049188175fbcc08e4682c6a,1,1,220000,https://p.scdn.co/mp3-preview/c65f0f4b3a41749766f8e903c59c4aa8ddcd07f5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUUM71100840,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian pop",0.695,0.658,10.0,-3.813,1.0,0.0412,0.000917,3.89e-05,0.505,0.523,131.974,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P ℗ 2011 Universal Music Australia Pty Ltd.",9713 +9714,spotify:track:0gljI0CtjpdZK6ecidfxto,Wild Thing,spotify:artist:5Y8EphH8Vdqu5SLj6K5vjj,Tone-Loc,spotify:album:6xE6A0Vwd2LmopR6Mn8UFG,Loc-ed After Dark,spotify:artist:5Y8EphH8Vdqu5SLj6K5vjj,Tone-Loc,1989-01-01,https://i.scdn.co/image/ab67616d0000b2737d02bf7ee36c4c913636a4f3,1,2,263573,https://p.scdn.co/mp3-preview/043838e9810b14ad14e704215f0f7f129732b3b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USA370507633,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"freestyle,hip house,miami bass",0.943,0.685,7.0,-11.903,1.0,0.188,0.000507,8.56e-06,0.0604,0.813,125.515,4.0,,The Bicycle Music Company,"C © 1989 The Bicycle Music Company, P ℗ 1989 The Bicycle Music Company",9714 +9715,spotify:track:3597XbK7cHfyEBHrmbkujE,Think Twice,spotify:artist:2ttm3uT0N1RN7vwKv1pQgh,Brook Benton,spotify:album:4XsGwDdFyme74MjLqWQXDP,Brook Benton - The Best of Brook Benton,spotify:artist:2ttm3uT0N1RN7vwKv1pQgh,Brook Benton,2016-03-25,https://i.scdn.co/image/ab67616d0000b2739154d1d237ec2ad5f2c2d329,1,3,168071,https://p.scdn.co/mp3-preview/336e0b281fc0a94558fafd8aa8cab142ccdc60e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,UKDNQ1504954,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rhythm and blues,southern soul",0.449,0.195,3.0,-15.197,1.0,0.0341,0.946,0.0484,0.119,0.302,80.573,3.0,,Westmill,"C 2016 Westmill, P 2016 Westmill",9715 +9716,spotify:track:41gfaTrbR7CHhbhGYbDOMY,Blue Bayou,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:4EpWWMjlTMRrZi0zLH1SwX,The Ultimate Collection,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,2016-10-28,https://i.scdn.co/image/ab67616d0000b2734281735dab01dc1dcca9ae2f,1,9,149160,https://p.scdn.co/mp3-preview/42d487d07130b14559826088f101a69f48ef812a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USSM16301517,spotify:user:bradnumber1,2022-06-30T00:05:15Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.536,0.264,0.0,-11.718,1.0,0.0342,0.669,3.63e-06,0.121,0.765,117.197,4.0,,Legacy Recordings,P This compilation (P) 2016 Sony Music Entertainment,9716 +9717,spotify:track:2Ri2AwoGX3yllyllN5gy9g,Listen To What The Man Said - 1993 Digital Remaster,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,spotify:album:4P12KrXWSN8CspOvIuD4rl,Venus And Mars,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,1975-05-27,https://i.scdn.co/image/ab67616d0000b273c6a357182b05ec0da8ab761f,1,11,241400,https://p.scdn.co/mp3-preview/7f1f6d4eefe57c88417394cb92e6da880ddc7d39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCCS0700283,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.502,0.54,7.0,-10.624,1.0,0.0405,0.0328,4.17e-05,0.277,0.531,113.171,4.0,,Paul McCartney Catalog,"C © 2012 MPL Communications Inc/Ltd, P ℗ 2012 MPL Communications Inc/Ltd",9717 +9718,spotify:track:4OJFkrRQqol4FsPesF8eu4,Saturday in the Park - 2002 Remaster,spotify:artist:3iDD7bnsjL9J4fO298r0L0,Chicago,spotify:album:2oSXXINsWGuEsc4udgWxh8,Chicago V (Expanded & Remastered),spotify:artist:3iDD7bnsjL9J4fO298r0L0,Chicago,1972-07-10,https://i.scdn.co/image/ab67616d0000b27310d80ba410370acdbb0bf6c2,1,7,235666,https://p.scdn.co/mp3-preview/861ce49349303ca865bc92af26d8e87687678289?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,USRH10291749,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,rock,soft rock,yacht rock",0.67,0.763,7.0,-6.864,1.0,0.0341,0.155,0.0,0.0799,0.61,114.398,4.0,,Rhino,"C © 2004 Warner Strategic Marketing, P ℗ 2004 Warner Strategic Marketing",9718 +9719,spotify:track:7MdsJ8FTgqPfKESkKdxlMq,Dear Mr. President,"spotify:artist:1KCSPY1glIKqW2TotWuXOR, spotify:artist:4wM29TDTr3HI0qFY3KoSFG","P!nk, Indigo Girls",spotify:album:0RBX3mBilzQMI0VLpfcmo1,I'm Not Dead,spotify:artist:1KCSPY1glIKqW2TotWuXOR,P!nk,2006-03-18,https://i.scdn.co/image/ab67616d0000b273863ce6911167de60e606de49,1,5,273626,https://p.scdn.co/mp3-preview/5539fcfe034cfe514874c5fa0b3680249506ba54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USLF20600024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,ectofolk,folk,lilith,singer-songwriter,women's music",0.587,0.395,10.0,-7.283,1.0,0.0325,0.721,0.0,0.119,0.328,131.716,4.0,,LaFace Records,"P (P) 2006 RCA/JIVE Label Group, a unit of Sony Music Entertainment",9719 +9720,spotify:track:4CweuuMMzi71pO0MSRgyaT,Kiss Kiss (feat. T-Pain),"spotify:artist:7bXgB6jMjp9ATFy66eO08Z, spotify:artist:3aQeKQSyrW4qWr35idm0cy","Chris Brown, T-Pain",spotify:album:0dL2qQHuzOsAagnhlRq53v,Kiss Kiss (feat. T-Pain),spotify:artist:7bXgB6jMjp9ATFy66eO08Z,Chris Brown,2007-09-10,https://i.scdn.co/image/ab67616d0000b273e4998641ffd73a790f0b1465,1,1,251160,https://p.scdn.co/mp3-preview/c313406cabc287b0e994664987866469c980a9f2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USJI10700577,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,rap,dance pop,gangster rap,hip hop,pop rap,r&b,rap,southern hip hop,trap,urban contemporary",0.769,0.52,1.0,-5.14,1.0,0.212,0.0219,0.0,0.0762,0.58,140.112,3.0,,Jive,"P (P) 2007 Zomba Recording, LLC",9720 +9721,spotify:track:5Fli1xRi01bvCjsZvKWro0,Houdini,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,spotify:album:7Kmmw7Z5D2UD5MVwdm10sT,Torches,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,2011-05-23,https://i.scdn.co/image/ab67616d0000b273121d5f92cf90576907dfb1e5,1,7,202466,https://p.scdn.co/mp3-preview/6119b196d70f618dfba062dc4b9da0d3819e717e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USSM11005694,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern alternative rock,modern rock,rock",0.632,0.908,8.0,-3.511,1.0,0.0458,0.00762,0.000172,0.167,0.764,110.024,4.0,,Columbia,"P (P) 2010, 2011 Sony Music Entertainment",9721 +9722,spotify:track:4o6aYzYFUHw6hDG0n70TDW,Lay It On Me,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,spotify:album:46F30GoVm3QuGG5UnNMwbW,Lay It On Me,spotify:artist:10exVja0key0uqUkk6LJRT,Vance Joy,2017-07-14,https://i.scdn.co/image/ab67616d0000b27315360b7d519479099ed8f097,1,1,214699,https://p.scdn.co/mp3-preview/468d7a085cb881011899efebdc87bb65a58bc5de?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAT21701955,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,modern rock",0.733,0.673,5.0,-5.713,1.0,0.0321,0.116,7.96e-06,0.068,0.487,128.009,4.0,,Liberation Records,"C 2017 Liberation Music, P 2017 Liberation Music",9722 +9723,spotify:track:7vqUr6K2Js9Paq4kdNSOm6,Here for You (feat. Ella Henderson),"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:7nDsS0l5ZAzMedVRKPP8F1","Kygo, Ella Henderson",spotify:album:6HnspnDTGO0iGliX6OuCTd,Here for You (feat. Ella Henderson),spotify:artist:23fqKkggKUBHNkbKtXEls4,Kygo,2015-09-04,https://i.scdn.co/image/ab67616d0000b27372d674be73fb8100238c4dd7,1,1,244510,https://p.scdn.co/mp3-preview/6df5cb7fb353ac4627419a81c92b7bb2f4da62e8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,SEBGA1500224,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,dance pop,pop dance,talent show,uk pop",0.68,0.772,10.0,-5.995,1.0,0.0416,0.535,0.0153,0.147,0.376,105.005,4.0,,Kygo,"P (P) 2015 Kygo under exclusive license to Sony Music Entertainment International Ltd / Ultra Records, LLC",9723 +9724,spotify:track:4bVuIlGQBMWS7vIhcx8Ae4,What Hurts The Most,spotify:artist:0a1gHP0HAqALbEyxaD5Ngn,Rascal Flatts,spotify:album:5XPdkIryKSpTKW21HUtvV0,Me And My Gang,spotify:artist:0a1gHP0HAqALbEyxaD5Ngn,Rascal Flatts,2006-01-01,https://i.scdn.co/image/ab67616d0000b273aa6b03f85a0f2cb16e88ec0c,1,2,214106,https://p.scdn.co/mp3-preview/e733606411ad19b60e59cd8d01016fa086ccc96f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USL2S0520197,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"contemporary country,country,country road",0.537,0.674,5.0,-5.134,0.0,0.0277,0.0088,0.0,0.265,0.33,136.002,4.0,,Lyric Street,"C © 2006 Lyric Street Records, Inc., P ℗ 2006 Lyric Street Records, Inc.",9724 +9725,spotify:track:5G5S96EyI1Y5g6SpRSHbrb,"I'll Be There (feat. Trey Lorenz) - Live at MTV Unplugged, Kaufman Astoria Studios, New York - March 1992","spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ, spotify:artist:23kP8xlQifcAV4nd84iHbW","Mariah Carey, Trey Lorenz",spotify:album:5gThgG5LPRzL8Egdm2Izpm,Dinner with My Darling,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2017-02-03,https://i.scdn.co/image/ab67616d0000b2730cfecd3b7747a83b5335927e,1,16,264240,https://p.scdn.co/mp3-preview/8149819068cb453bdabab81cff47bc06c53554fc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,USSM19200431,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary,contemporary r&b",0.215,0.544,5.0,-8.132,1.0,0.043,0.663,0.0,0.882,0.3,75.053,4.0,,Legacy Recordings,P This compilation (P) 2017 Sony Music Entertainment,9725 +9726,spotify:track:1Le4SDanBrX8OtmnnyTNrh,I Turn To You,spotify:artist:60vX3zLcdKRXvKLITVh5Df,Melanie C,spotify:album:6TjfhQSmmBOEwIXkoT3fdZ,Northern Star,spotify:artist:60vX3zLcdKRXvKLITVh5Df,Melanie C,1999,https://i.scdn.co/image/ab67616d0000b2736809892ec4db63e0a6ee661c,1,4,352173,https://p.scdn.co/mp3-preview/7178cfc5ba6b7a649722c20022d41087cc739fe6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAAA9900728,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,europop,talent show",0.522,0.803,1.0,-5.825,1.0,0.0327,0.00117,0.00167,0.31,0.0783,135.205,4.0,,Virgin Records,"C © 2000 Virgin Records Limited, P ℗ 2000 Virgin Records Limited",9726 +9727,spotify:track:00xR9dHhuaNznqB4FSzOlr,You Really Got Me - Mono Mix,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:0fT3ySwzj1bPUWINB07MoI,Kinks (Deluxe Edition),spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,1964-02-02,https://i.scdn.co/image/ab67616d0000b273ac4b34361eb72062755b2d99,2,7,133933,https://p.scdn.co/mp3-preview/81e8ec05f9d94ce88d87a5192355e717d40afa5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6400005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.567,0.959,8.0,-3.822,1.0,0.102,0.0995,6.07e-05,0.1,0.961,137.377,4.0,,Castle Communications,"C 2011 Sanctuary Records Group Ltd., a BMG Company, P 2011 Sanctuary Records Group Ltd., a BMG Company",9727 +9728,spotify:track:5E6J3SKHPYJLw2IuDE4Ulb,Now We're Getting Somewhere,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,spotify:album:1dJpgn1rqvvr4yyNYLEYBG,Crowded House,spotify:artist:7ohlPA8dRBtCf92zaZCaaB,Crowded House,1986-01-01,https://i.scdn.co/image/ab67616d0000b2733ce3e2272e25916844f10d86,1,3,245400,https://p.scdn.co/mp3-preview/ba218fb0559bc42b336c2fad2b62c75fc99bb033?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,USCA28600122,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,permanent wave",0.275,0.718,4.0,-14.178,1.0,0.0562,0.0142,0.0,0.258,0.545,155.003,4.0,,Capitol Records,"C © 1986 Capitol Records, LLC, P ℗ 1986 Capitol Records, LLC",9728 +9729,spotify:track:4Q5CxuJ3d6G3iwE46yqMBf,You Can't Sit Down,spotify:artist:6LaraO4gcDKWw0fwIOTodm,The Dovells,spotify:album:03s6KbV0K1lrcGVc8mpNqB,For Your Hully Gully Party/You Can't Sit Down,spotify:artist:6LaraO4gcDKWw0fwIOTodm,The Dovells,1963-01-01,https://i.scdn.co/image/ab67616d0000b273fac8538a857a3184fddee6c7,1,13,139186,https://p.scdn.co/mp3-preview/f53decb0993253f9753dceabdee4c521bcd6310f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176340550,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.613,0.875,5.0,-5.582,1.0,0.231,0.122,0.0,0.322,0.963,82.071,4.0,,ABKCO (US),"C © 2010 ABKCO Music & Records, Inc., P ℗ 2010 ABKCO Music & Records, Inc.",9729 +9730,spotify:track:6Ep6BzIOB9tz3P4sWqiiAB,Radioactive,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:1vAEF8F0HoRFGiYOEeJXHW,Night Visions (Deluxe),spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273dee648abe19dd6e10902c4ae,1,1,186813,https://p.scdn.co/mp3-preview/10a6946f6466990d6ffee5821d745999c1492932?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71201074,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.473,0.777,9.0,-3.698,1.0,0.059,0.119,7.87e-05,0.671,0.21,136.249,4.0,,Universal Music Group,"C © 2013 KIDinaKORNER/Interscope Records, P ℗ 2013 KIDinaKORNER/Interscope Records",9730 +9731,spotify:track:5XUepCFbKSBbY2EALIEnyb,Sword from the Stone - Gingerbread Mix,spotify:artist:0gadJ2b9A4SKsB1RFkBb66,Passenger,spotify:album:234YdZybmMqzM8OPqWE1ux,Sword from the Stone,spotify:artist:0gadJ2b9A4SKsB1RFkBb66,Passenger,2021-01-15,https://i.scdn.co/image/ab67616d0000b2733ec3e4e0322a265810370fa6,1,1,168940,https://p.scdn.co/mp3-preview/e690784c32cb47157a1e309f79d912273d67db5c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,GBMQN2000071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk-pop,neo mellow",0.562,0.704,3.0,-5.741,1.0,0.0349,0.211,6.86e-06,0.173,0.367,82.532,4.0,,Cooking Vinyl Limited,"C (C) 2021 Black Crow Records under exclusive licence to Cooking Vinyl Limited, P (P) 2021 Black Crow Records under exclusive licence to Cooking Vinyl Limited",9731 +9732,spotify:track:2Hw2JEL4tjdcX8aERfIdBF,Come On Eileen,spotify:artist:4QTVePrFu1xuGM9K0kNXkk,Dexys Midnight Runners,spotify:album:1t3WvyIo7EFoReLs2zrqjq,St. Paddys Day,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2018-03-09,https://i.scdn.co/image/ab67616d0000b273ff3f0371a24b04839da12bdd,1,6,283000,https://p.scdn.co/mp3-preview/fc5c194dd015ed7bb778f274c4c50fb45e54527e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,GBF088200006,spotify:user:bradnumber1,2022-08-31T00:09:37Z,"new romantic,new wave,new wave pop",0.45,0.674,2.0,-6.722,1.0,0.0485,0.658,4.38e-06,0.404,0.72,106.989,4.0,,Universal Music Enterprises,"C © 2018 Universal Music Enterprises, a Division of UMG Recordings, Inc., P This Compilation ℗ 2018 Universal Music Enterprises, a Division of UMG Recordings, Inc.",9732 +9733,spotify:track:0lefFBLiBwU0Qu24NRazZ3,48 Crash,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,spotify:album:3NsZev3pxengJeEoTeuzGb,The Very Best of Suzi Quatro,spotify:artist:15jHZ1EZwmm2QDjKctvqJQ,Suzi Quatro,1999-07-19,https://i.scdn.co/image/ab67616d0000b273827cc804347f86bce5cdcb5a,1,2,233413,https://p.scdn.co/mp3-preview/74754aec6613849e9efe9fe487b6befc5a766ff8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYE7300044,spotify:user:bradnumber1,2021-08-08T09:26:31Z,glam rock,0.643,0.765,2.0,-8.602,1.0,0.0933,0.00157,0.00977,0.169,0.868,137.979,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1999 Chrysalis Records Limited",9733 +9734,spotify:track:2ghkvWvqASoogzq4Y9zeF0,She's Not There,spotify:artist:2jgPkn6LuUazBoBk6vvjh5,The Zombies,spotify:album:68SWrX2k2GAXHJgeiWsV9c,She's Not There,spotify:artist:2jgPkn6LuUazBoBk6vvjh5,The Zombies,1964-01-23,https://i.scdn.co/image/ab67616d0000b273b208c5cae5c6b7d6c1d82067,1,1,144600,https://p.scdn.co/mp3-preview/82a072e4817543d32985ecd881f479c1862f13c1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCBS6432190,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"baroque pop,british invasion,classic rock,folk rock,psychedelic rock",0.482,0.57,4.0,-9.324,0.0,0.0447,0.291,0.0,0.26,0.71,132.163,4.0,,Marquis Music Ltd,"C 1964 Marquis Music Ltd, P 1964 Marquis Music Ltd",9734 +9735,spotify:track:2lk2HbuRpgAvfsDC0TMn0y,All You Zombies,spotify:artist:7uhvDINTTiD0XBrP9fquN1,The Hooters,spotify:album:6A9D9mnpjzFo9UlCGhPgzZ,Hooterization: A Retrospective,spotify:artist:7uhvDINTTiD0XBrP9fquN1,The Hooters,1996-09-03,https://i.scdn.co/image/ab67616d0000b27361a8e187b3832e0b83a15092,1,3,357426,https://p.scdn.co/mp3-preview/4a483985c3a9c71e8ac219463c29f752c7db1330?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USSM18500055,spotify:user:bradnumber1,2021-08-08T09:26:31Z,philly indie,0.532,0.589,9.0,-12.405,0.0,0.0505,0.342,0.0968,0.0724,0.615,86.549,4.0,,Columbia/Legacy,P (P) 1996 Sony Music Entertainment Inc.,9735 +9736,spotify:track:480dDrqG7LO6qDaphHeXlM,Invisible Touch - Remastered 2007,spotify:artist:3CkvROUTQ6nRi9yQOcsB50,Genesis,spotify:album:5BDGtXKMQ6k267KX4PoGhP,Invisible Touch,spotify:artist:3CkvROUTQ6nRi9yQOcsB50,Genesis,1986-06-09,https://i.scdn.co/image/ab67616d0000b273087ca24aa58e7c67514061a1,1,1,210133,https://p.scdn.co/mp3-preview/d35083ea94ad8078827fa465ec445cc46236ae07?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,GBAAA0700779,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,hard rock,mellow gold,new romantic,progressive rock,rock,soft rock,symphonic rock",0.623,0.94,0.0,-5.731,1.0,0.0365,0.202,0.00184,0.0472,0.837,131.037,4.0,,Virgin Catalogue,"C © 2007 Virgin Records Limited, P ℗ 2007 Virgin Records Limited",9736 +9737,spotify:track:03VXrViYqJpdhuBEV0p0ak,Homeward Bound,spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,spotify:album:5dqFVDJ9lPRBCqEzufd8sF,"Parsley, Sage, Rosemary And Thyme",spotify:artist:70cRZdQywnSFp9pnc2WTCE,Simon & Garfunkel,1966-10-10,https://i.scdn.co/image/ab67616d0000b273853d690e64256548a2e6a73f,1,4,149613,https://p.scdn.co/mp3-preview/06a5d17661e910a72f651f43eecec71cbeab19ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM16500202,spotify:user:bradnumber1,2022-09-25T11:32:50Z,"classic rock,folk,folk rock,melancholia,mellow gold,rock,soft rock",0.485,0.38,3.0,-11.773,1.0,0.034,0.829,0.0,0.103,0.531,92.933,4.0,,Columbia,P 1969 Sony Music Entertainment Inc.,9737 +9738,spotify:track:4qK4FyUtdV1OBdvc5dCjEM,I.O.U. - Remastered,spotify:artist:5titkTztShEPJSoCL9TXF2,Freeez,spotify:album:644ioKTVwRZlXAaBYyP7iw,Gonna Get You (Expanded Edition),spotify:artist:5titkTztShEPJSoCL9TXF2,Freeez,2011-08-29,https://i.scdn.co/image/ab67616d0000b2732ef3fb91faf6ab90503fe1f9,1,5,508586,https://p.scdn.co/mp3-preview/5b74dfdb6cdad7bab95b9fb9e9d3bac12d6750e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,GBAZP1100088,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brit funk,hi-nrg,post-disco",0.782,0.669,2.0,-13.861,0.0,0.0492,0.067,0.273,0.248,0.847,118.898,4.0,,Beggars Banquet,"C 2011 Beggars Banquet Records Ltd, P 2011 Beggars Banquet Records Ltd",9738 +9739,spotify:track:0GrrLYCH8u81aENhC8FBF4,That's Not My Name,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,spotify:album:4wj8lA3aSK4WjHjdf5zuFn,We Started Nothing,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,2008-05-19,https://i.scdn.co/image/ab67616d0000b2733889f99a8ace496088522cfc,1,2,310573,https://p.scdn.co/mp3-preview/7581d37ad411cfa1c671605798429c2adc0c3052?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,GBARL0800038,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,electropop,neo-synthpop,new rave",0.755,0.901,9.0,-3.152,1.0,0.0893,0.0451,0.0373,0.363,0.959,145.042,4.0,,Columbia,P (P) 2008 Sony Music Entertainment UK Limited,9739 +9740,spotify:track:6Qyc6fS4DsZjB2mRW9DsQs,Iris,spotify:artist:2sil8z5kiy4r76CRTXxBCA,The Goo Goo Dolls,spotify:album:4UMjBXcRqIgMZ1XumU2x5T,Dizzy up the Girl,spotify:artist:2sil8z5kiy4r76CRTXxBCA,The Goo Goo Dolls,1998,https://i.scdn.co/image/ab67616d0000b273eda9478c39a21e1cdc6609ca,1,11,289533,https://p.scdn.co/mp3-preview/30e2a899a94a089d5c341b782b00aa802fd87610?cid=9950ac751e34487dbbe027c4fd7f8e99,False,87,USWB19800160,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,permanent wave,pop rock,post-grunge",0.315,0.715,11.0,-8.072,0.0,0.0362,0.00125,7.97e-06,0.0942,0.497,155.925,3.0,,Warner Records,"C © 1998 Warner Records Inc., P ℗ 1998 Warner Records Inc.",9740 +9741,spotify:track:24UAL0V1e5DrGOlnbpUzWF,Underwear Goes Inside The Pants,spotify:artist:458SnbBEo5F5O1D2AEsx3h,Lazyboy,spotify:album:78axRKwwjTqaAR9VJHLk6b,Lazyboy,spotify:artist:458SnbBEo5F5O1D2AEsx3h,Lazyboy,2004-01-01,https://i.scdn.co/image/ab67616d0000b273581d44a956dc051f548258de,1,5,294546,https://p.scdn.co/mp3-preview/a755f380313b2606ccb7dc5508c2a4585f1517a6?cid=9950ac751e34487dbbe027c4fd7f8e99,True,27,DKBKA0400174,spotify:user:bradnumber1,2021-08-08T09:26:31Z,collage pop,0.509,0.903,0.0,-5.214,1.0,0.215,0.0304,0.0,0.126,0.499,83.912,4.0,,Universal Music A/S,"C © 2004 Universal Music (Denmark) A/S, P ℗ 2004 Universal Music (Denmark) A/S",9741 +9742,spotify:track:1F77xTIkIud9zCbhmmSu5B,The Tears I Cried,spotify:artist:5T367l9J8qiud4dRobcgnz,The Glitter Band,spotify:album:4irofDpNnVKI7rh61k9hIS,20 Glittering Greats - the original hit recordings,spotify:artist:5T367l9J8qiud4dRobcgnz,The Glitter Band,1998-07-20,https://i.scdn.co/image/ab67616d0000b273250c9813ed987549797d5918,1,16,222693,https://p.scdn.co/mp3-preview/060f46c9b3372d65204f44d77ba7958ebe782fd9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,GBBLG9800451,spotify:user:bradnumber1,2021-08-08T09:26:31Z,double drumming,0.534,0.586,9.0,-9.673,1.0,0.0439,0.0108,0.000869,0.0637,0.387,131.682,4.0,,Music Collection International,"C (C) 1998 Music Collection International Ltd, P (P) 1998 Music Collection International Ltd",9742 +9743,spotify:track:5masKPHeAOVNgxdLebIcK7,Stole the Show,"spotify:artist:23fqKkggKUBHNkbKtXEls4, spotify:artist:48sLioddyaXkuhyHXSkpsB","Kygo, Parson James",spotify:album:0uMIzWh1uEpHEBell4rlF8,Cloud Nine,spotify:artist:23fqKkggKUBHNkbKtXEls4,Kygo,2016-05-13,https://i.scdn.co/image/ab67616d0000b27335590cb9280d5a1f5221ae1a,1,2,223186,https://p.scdn.co/mp3-preview/a012e893a15229bf45f75b7bede0122e75d5adbd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,77,SEBGA1500071,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,pop,pop dance,tropical house,pop soul",0.64,0.635,8.0,-7.565,0.0,0.226,0.271,0.0,0.319,0.475,100.034,4.0,,Kygo,"P (P) 2016 Kygo under exclusive license to Sony Music Entertainment International Ltd / Ultra Records, LLC",9743 +9744,spotify:track:2hrmiiwfHoV2PIC62OOJra,Breathe (feat. Stu Stone) - Radio Edit,"spotify:artist:1XGHs7YFtpCbDGKaNdPPtA, spotify:artist:3yjToJqlGuhwzaCkUpUfq9","Kaz James, Stu Stone",spotify:album:46TC1lMB7GJ6S2nFhl6daY,Breathe (feat. Stu Stone),spotify:artist:1XGHs7YFtpCbDGKaNdPPtA,Kaz James,2008-04-12,https://i.scdn.co/image/ab67616d0000b27388e723f6a35a5639d53cbff2,1,1,203840,https://p.scdn.co/mp3-preview/650d446ee3394aaaa9c405d492af39a87abaac31?cid=9950ac751e34487dbbe027c4fd7f8e99,False,5,GBVKY0800002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian dance,0.729,0.799,9.0,-6.674,0.0,0.042,0.0236,0.00182,0.212,0.83,128.981,4.0,,Sony BMG Music Entertainment,"P (P) 2008 Kaz James, under exclusive licence to SONY BMG Music Entertainment (Australia) Pty Limited",9744 +9745,spotify:track:12qZHAeOyTf93YAWvGDTat,All The Small Things,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,spotify:album:1fF8kYX49s5Ufv4XEY5sjW,Enema Of The State,spotify:artist:6FBDaR13swtiWwGhX1WQsP,blink-182,1999-01-01,https://i.scdn.co/image/ab67616d0000b27315a7914ef11f09b4c537f078,1,8,168000,https://p.scdn.co/mp3-preview/b1447b8d76183737ea2ebd10f70da6292904f833?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USMC19959123,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,modern rock,pop punk,punk,rock,socal pop punk",0.442,0.893,0.0,-4.878,1.0,0.0505,0.00844,0.0,0.529,0.712,148.119,4.0,,Universal Music Group,"C © 1999 Geffen Records, P ℗ 1999 Geffen Records",9745 +9746,spotify:track:6w9ZejPs7LwHFdsXu890SN,You Don't Know Me,spotify:artist:6CNbrGMS5Y3UVnYOhNAmDw,Ray Charles Orchestra,spotify:album:5yEUgNIguBZw9crcg7pdKd,I Can't Stop Loving You,spotify:artist:6CNbrGMS5Y3UVnYOhNAmDw,Ray Charles Orchestra,2017-08-26,https://i.scdn.co/image/ab67616d0000b2737a78f6f33bbf0efac0fdf719,1,15,197066,https://p.scdn.co/mp3-preview/42cc897fa3bed38c97ad368a4758108df5346bc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,DETL61617205,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.336,0.229,3.0,-13.004,1.0,0.0314,0.819,0.0,0.105,0.46,114.888,5.0,,Findina Records,"C 2017 Soundstar Rec, P 2017 Soundstar Rec",9746 +9747,spotify:track:1xobJHNsdoBQAJ2cgSfHVu,Just Friends,"spotify:artist:4csQIMQm6vI2A2SCVDuM2z, spotify:artist:2jn9JOmdrR9BdiR1LTvYG4","Hayden James, Boy Matthews",spotify:album:7FTvzfK2gKTeiV0xZq5Snv,Just Friends,"spotify:artist:4csQIMQm6vI2A2SCVDuM2z, spotify:artist:2jn9JOmdrR9BdiR1LTvYG4","Hayden James, Boy Matthews",2018-04-27,https://i.scdn.co/image/ab67616d0000b273afe6d8c0d3e1b289081051a6,1,1,238991,https://p.scdn.co/mp3-preview/a04256793994c2eb9053f91effbb73ba6047a98c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUFF01800030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,gauze pop,house,uk dance",0.639,0.685,9.0,-4.571,0.0,0.049,0.105,0.0,0.143,0.363,110.041,4.0,,Future Classic,"C 2018 Future Classic, P 2018 Future Classic",9747 +9748,spotify:track:0CZWUolHfpM91zjjH6sJBN,Kiss (When The Sun Don't Shine),spotify:artist:0cwmNvclzPd8mQnoHuIksj,Vengaboys,spotify:album:0KOpVnUrTaCkLKmNMkYav2,The Platinum Album,spotify:artist:0cwmNvclzPd8mQnoHuIksj,Vengaboys,2000-03-13,https://i.scdn.co/image/ab67616d0000b273308c6fa6c5d0d53668d25865,1,3,211168,https://p.scdn.co/mp3-preview/e883660e67d2cb44174421c070a928dc7a94567c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,NLC529911140,spotify:user:bradnumber1,2023-11-28T13:25:37Z,"eurodance,europop",0.704,0.946,0.0,-4.74,1.0,0.0356,0.000217,0.246,0.0478,0.869,138.013,4.0,,"Universal Music, a division of Universal International Music BV","C © 2000 Violent Music B.V., licensed to Universal Music, a division of Universal International Music B.V., P ℗ 2000 Universal International Music B.V.",9748 +9749,spotify:track:1h7cGuNMsh9vISIcYzJOwr,Anything for You,spotify:artist:5IFCkqu9J6xdWeYMk5I889,Gloria Estefan,spotify:album:3XWGJ1AnLkMtCq3w5t8ETl,Anything For You,spotify:artist:5IFCkqu9J6xdWeYMk5I889,Gloria Estefan,1987-06-09,https://i.scdn.co/image/ab67616d0000b273b0f0ddc90b95163d6e401564,1,10,226400,https://p.scdn.co/mp3-preview/7e41c7c2d6c0ef183aaec5dd9c695d23ecd922eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USSM18700011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new wave pop,soft rock",0.598,0.402,6.0,-13.12,1.0,0.0334,0.632,0.0,0.067,0.269,143.809,4.0,,Epic,P (P) 1987 Sony Music Entertainment Inc.,9749 +9750,spotify:track:24Z0qiHUR9cTB4UfGUqCnj,Growin' Up and Gettin' Old,spotify:artist:718COspgdWOnwOFpJHRZHS,Luke Combs,spotify:album:5Uly85dJHHDfHQCsyUQ8gw,Gettin' Old,spotify:artist:718COspgdWOnwOFpJHRZHS,Luke Combs,2023-03-24,https://i.scdn.co/image/ab67616d0000b273ca650d3a95022e0490434ba1,1,1,233666,https://p.scdn.co/mp3-preview/476a4a4d0bda8d0be2b73924dc4eab4c5db4fe01?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,US6XF2100239,spotify:user:bradnumber1,2023-04-27T00:05:44Z,"contemporary country,country",0.511,0.6,2.0,-5.699,1.0,0.0268,0.16,5.25e-06,0.114,0.269,146.051,4.0,,River House Artists/Columbia Nashville,"P (P) 2023 River House Artists LLC, under exclusive license to Sony Music Entertainment. All rights reserved.",9750 +9751,spotify:track:5GguB1QMdud2FWbs5VHAzB,Don't Call Me Baby,spotify:artist:6otgz5gkB40UnWFwTy0VDh,Madison Avenue,spotify:album:4zXbBABLuCKuohCc2RPq3I,Polyester Embassy,spotify:artist:6otgz5gkB40UnWFwTy0VDh,Madison Avenue,2000-11-07,https://i.scdn.co/image/ab67616d0000b273f51fc474a102cb71b1ffeedb,1,3,228140,https://p.scdn.co/mp3-preview/a2b5341fc5907b9766d1c821d55e16409fdef428?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,AUVC00700520,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,vocal house",0.808,0.982,3.0,-6.588,0.0,0.0311,0.0585,0.00689,0.35,0.961,124.999,4.0,,Vicious,"C 2000 Vicious, a division of Vicious Recordings Pty Ltd, P 2000 Vicious, a division of Vicious Recordings Pty Ltd",9751 +9752,spotify:track:2FbD2sqUmAdjqqCBp0mn2g,Foolish,spotify:artist:5rkVyNGXEgeUqKkB5ccK83,Ashanti,spotify:album:3dAdilu5vv6ThGzgNwUlK3,Ashanti,spotify:artist:5rkVyNGXEgeUqKkB5ccK83,Ashanti,2002-01-01,https://i.scdn.co/image/ab67616d0000b2730e9c1a202a7b1b5693ed122e,1,2,227386,https://p.scdn.co/mp3-preview/4bc2de7c2a51d0d8b98a88140616fea14b5e5d87?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USDJ20200199,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,hip pop,r&b,urban contemporary",0.665,0.696,0.0,-5.763,1.0,0.0521,0.337,0.0,0.106,0.711,90.116,4.0,,Def Jam Recordings,"C © 2002 Murder Inc. Records L.L.C., P ℗ 2002 Murder Inc. Records L.L.C.",9752 +9753,spotify:track:1CtB01PcE5BMsxoNcaIP3r,The Fear,spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,spotify:album:52MLLeRgpLPVpTQUk0BXNs,"It's Not Me, It's You",spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,2009-01-26,https://i.scdn.co/image/ab67616d0000b2730b386bfc7e98feaf1b5ed350,1,2,206080,https://p.scdn.co/mp3-preview/4ab7c7bf07c450835fb25746113a36c9f09781dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBAYE0802327,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo mellow",0.648,0.827,10.0,-7.453,1.0,0.0419,0.408,4.04e-06,0.114,0.54,134.016,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",9753 +9754,spotify:track:1HKCGz0Qz5PGHPappM6leW,Trigger,spotify:artist:7CNy7uF3UjumgTaWZ34D7M,Sandrine,spotify:album:4kwOlNGNfXvBeIg5LSrMcf,Trigger,spotify:artist:7CNy7uF3UjumgTaWZ34D7M,Sandrine,2003-10-31,https://i.scdn.co/image/ab67616d0000b27305cfd18d0927d980a5ed31a2,1,1,226400,https://p.scdn.co/mp3-preview/8fc56d5c3ecebc46bbe40405aba3d99643f8ba1b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,4,AUSM00300053,spotify:user:bradnumber1,2022-09-26T05:03:03Z,,0.394,0.374,2.0,-5.876,1.0,0.0382,0.368,0.000149,0.13,0.0521,120.219,4.0,,Columbia,P (P) 2003 Sony Music Entertainment Australia Pty Ltd,9754 +9755,spotify:track:21kwcsNL7YnianpVjXumHc,Dr. Beat,spotify:artist:18xgcedCGxFbqLbIQn5R8F,Miami Sound Machine,spotify:album:46Hw8UXhTzNrI1Yroh7oEf,Eyes Of Innocence,spotify:artist:18xgcedCGxFbqLbIQn5R8F,Miami Sound Machine,1984,https://i.scdn.co/image/ab67616d0000b27351541ec82af92350f5f0b847,1,1,262560,https://p.scdn.co/mp3-preview/15071ff11c6428680500a302343388fb40c63716?cid=9950ac751e34487dbbe027c4fd7f8e99,False,37,USSM18400404,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,new romantic,new wave pop,soft rock,synthpop",0.891,0.632,0.0,-12.245,1.0,0.0613,0.216,0.00711,0.135,0.913,116.625,4.0,,Epic,P (P) 1984 Sony Music Entertainment Inc.,9755 +9756,spotify:track:3G0NNqwQ1sqRpySr6soHlH,Who's That Girl,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:21vHnROXDZY51gJxsjTLXZ,Who's That Girl Soundtrack,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1987-07-21,https://i.scdn.co/image/ab67616d0000b2732f14ef42e50dcb91e71cedcc,1,1,239173,https://p.scdn.co/mp3-preview/1a4ddf020f35342b7430d232431a8021fc5042c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USWB10002766,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.625,0.646,9.0,-13.592,0.0,0.0389,0.214,0.0533,0.0525,0.826,103.893,4.0,,Sire/Warner Records,"C © 1987 Sire Records Ltd., P ℗ 1987 Sire Records Ltd.",9756 +9757,spotify:track:1EQM2dzVfURV0WklqRK4rV,(Such An) Easy Question,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,spotify:album:2g4kvBYEZoUaO5rMmR4CJI,Pot Luck,spotify:artist:43ZHCT0cAZBISjO8DG9PnE,Elvis Presley,1962-06-05,https://i.scdn.co/image/ab67616d0000b273ac4deb81e4385b8b20820ab4,1,4,140773,https://p.scdn.co/mp3-preview/4c7b403164ccef864d8d7fcec6dc3240a171c784?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,USRC16208335,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"rock-and-roll,rockabilly",0.648,0.304,5.0,-15.691,1.0,0.036,0.82,0.000104,0.117,0.641,104.774,4.0,,RCA/Legacy,P (P) 1962 Sony Music Entertainment,9757 +9758,spotify:track:1ju7EsSGvRybSNEsRvc7qY,Simple Man,spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,spotify:album:6DExt1eX4lflLacVjHHbOs,Pronounced' Leh-'Nerd 'Skin-'Nerd,spotify:artist:4MVyzYMgTwdP7Z49wAZHx0,Lynyrd Skynyrd,1973-01-01,https://i.scdn.co/image/ab67616d0000b273128450651c9f0442780d8eb8,1,4,356626,https://p.scdn.co/mp3-preview/e3cdaf6405fbc0518787a1a4de2777adad40ea11?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USMC17301726,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock,southern rock",0.422,0.752,6.0,-8.682,1.0,0.0449,0.0366,0.000119,0.129,0.404,120.47,4.0,,Geffen*,"C © 1973 MCA Records Inc., P ℗ 1973 UMG Recordings, Inc.",9758 +9759,spotify:track:0RUTnY2B3s05fZuCHsNaUP,Alien,"spotify:artist:74KM79TiuVKeVCqs8QtB0B, spotify:artist:1HBjj22wzbscIZ9sEb5dyf","Sabrina Carpenter, Jonas Blue",spotify:album:3LXVxMUrioKZcoheV2zT3u,Alien,"spotify:artist:74KM79TiuVKeVCqs8QtB0B, spotify:artist:1HBjj22wzbscIZ9sEb5dyf","Sabrina Carpenter, Jonas Blue",2018-03-16,https://i.scdn.co/image/ab67616d0000b273c573d0cec683a77243444dd0,1,1,174840,https://p.scdn.co/mp3-preview/178a05c84f1b9a19dad46dfeb3243172860d98f7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USHR11838415,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,pop,pop dance,tropical house,uk dance",0.72,0.659,10.0,-4.727,0.0,0.0403,0.0588,0.0,0.0662,0.567,105.955,4.0,,Hollywood Records,"C © 2018 Hollywood Records, Inc, P ℗ 2018 Hollywood Records, Inc",9759 +9760,spotify:track:6NdkzOSCLzmyV9Qc4DKhJ2,This Is What It Feels Like,"spotify:artist:0SfsnGyD8FpIN4U4WCkBZ5, spotify:artist:6NXk2pLFocS2OkNdT7ncBt","Armin van Buuren, Trevor Guthrie",spotify:album:4uPKXpXtHrspK8v2ObzyPs,This Is What It Feels Like,"spotify:artist:0SfsnGyD8FpIN4U4WCkBZ5, spotify:artist:6NXk2pLFocS2OkNdT7ncBt","Armin van Buuren, Trevor Guthrie",2013-04-05,https://i.scdn.co/image/ab67616d0000b273dc8a964d83a0bd7d861e46b9,1,1,204360,https://p.scdn.co/mp3-preview/3f200355f2d70cb3eb2957c8b88578b1cc272a27?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,NLF711303312,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch house,dutch trance,edm,pop dance,progressive house,trance,canadian pop",0.551,0.833,8.0,-5.217,1.0,0.03,0.0391,2.77e-06,0.0632,0.145,129.885,5.0,,Armind,"C 2013 Armada Music B.V., P 2013 Armin Audio B.V. under exclusive license to Armada Music B.V.",9760 +9761,spotify:track:2i8EtsynIudUUaLPUkO6rJ,Chandelier,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,spotify:album:2k39lnQqeIwKlYYYfTXe8Y,1000 Forms of Fear,spotify:artist:5WUlDfRSoLAfcVSX1WnrxN,Sia,2014-07-04,https://i.scdn.co/image/ab67616d0000b2737125db1c06539ff1ec302648,1,1,216120,https://p.scdn.co/mp3-preview/410e25ab7d9e3243c607a6cf3ae3054e389e8856?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11400498,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.286,0.784,1.0,-2.873,1.0,0.0749,0.0163,6.45e-05,0.0714,0.618,173.798,4.0,,Inertia Music,"C 2014 Monkey Puzzle Records under license to Inertia Music, P 2014 Monkey Puzzle Records under license to Inertia Music",9761 +9762,spotify:track:2mXEChhAdpFSBLDsKTuxhu,Do You,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,spotify:album:48ben69fRtEbMTGqGYU8Qw,Because Of You,spotify:artist:21E3waRsmPlU7jZsS13rcj,Ne-Yo,2007-01-01,https://i.scdn.co/image/ab67616d0000b2732bc0b1d944e52a3c294baad9,1,4,228266,https://p.scdn.co/mp3-preview/30638716547ce93142900d661953547267e9dfc4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70728615,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,r&b,urban contemporary",0.588,0.614,5.0,-5.857,0.0,0.0726,0.31,0.0,0.321,0.59,121.299,5.0,,Universal Music Group,"C © 2007 The Island Def Jam Music Group, P ℗ 2007 The Island Def Jam Music Group",9762 +9763,spotify:track:4ilMVJsbmJjRaxVlc2Tui8,Your Body Is a Weapon,spotify:artist:0Ya43ZKWHTKkAbkoJJkwIB,The Wombats,spotify:album:5eMwZy5R5qZB3v3lBumnFZ,Glitterbug,spotify:artist:0Ya43ZKWHTKkAbkoJJkwIB,The Wombats,2015-01-13,https://i.scdn.co/image/ab67616d0000b273beab78eeaffb9c274493d343,1,8,237880,https://p.scdn.co/mp3-preview/37cdc5b04704cb863af3355feff8c49e2ff76d6a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,GBAHT1400483,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"liverpool indie,modern alternative rock,modern rock",0.504,0.945,0.0,-3.409,1.0,0.0678,0.000602,0.0,0.174,0.355,104.383,4.0,,14th Floor Records,"C © 2015 14th Floor Records, a Warner Music Group Company., P ℗ 2015 14th Floor Records, a Warner Music Group Company",9763 +9764,spotify:track:5mNV8Mz59bzyuQ53gTw0c0,Where the Party At (feat. Nelly),"spotify:artist:7Aq8lpLMSt1Zxu56pe9bmp, spotify:artist:2gBjLmx6zQnFGQJCAQpRgw","Jagged Edge, Nelly",spotify:album:2LFRjzwf61Y7CIl54Kiq8j,Jagged Little Thrill,spotify:artist:7Aq8lpLMSt1Zxu56pe9bmp,Jagged Edge,2001-07-03,https://i.scdn.co/image/ab67616d0000b2735fac2aabbb52ff9fc4c1faa1,1,2,232573,https://p.scdn.co/mp3-preview/7a8ff04d8be7c1ec04f7444092d691ec6ce03981?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM10103412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,r&b,urban contemporary,dance pop,gangster rap,hip hop,pop rap,rap,st louis rap,urban contemporary",0.596,0.661,5.0,-6.239,0.0,0.226,0.31,0.0,0.0847,0.86,129.491,5.0,,So So Def,P (P) 2001 A Joint Venture Between Sony Music Entertainment Inc. and So So Def Recordings Inc.,9764 +9765,spotify:track:676Rf0qIOh2gKNEl9TnCOx,Get Ready,spotify:artist:3RwQ26hR2tJtA8F9p2n7jG,The Temptations,spotify:album:3RE8NUULcBzFvVtCmlI4lb,Gettin' Ready (Expanded Edition),spotify:artist:3RwQ26hR2tJtA8F9p2n7jG,The Temptations,1966,https://i.scdn.co/image/ab67616d0000b2739f06367f9a07d24fc9c641a9,1,4,164160,https://p.scdn.co/mp3-preview/a354593ea222dfae8a52658399748f3188a15ee3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,USMO16690004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic soul,disco,memphis soul,motown,soul",0.591,0.737,7.0,-5.867,1.0,0.0386,0.404,0.0,0.108,0.878,133.025,4.0,,Motown,"C © 1999 Motown Record Company L.P., P ℗ 1999 Universal Motown Records, a division of UMG Recordings, Inc.",9765 +9766,spotify:track:32PCjJw8mk1FrJT2FcqRtT,Let's Talk About Sex,spotify:artist:7wqtxqI3eo7Gn1P7SpP6cQ,Salt-N-Pepa,spotify:album:4eKi4PJuybybkSbE6nNQnD,RnB Fridays,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-10-30,https://i.scdn.co/image/ab67616d0000b273d029ad5d1a40fabfae0ac7f3,1,15,212746,https://p.scdn.co/mp3-preview/a5b1559f9bb17a1bdb21767179f28cd5d26d8a7a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20180412,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,golden age hip hop,hip hop,hip pop,old school hip hop,queens hip hop",0.871,0.709,6.0,-7.213,1.0,0.109,0.037,0.0,0.236,0.724,106.912,4.0,,Universal Music Australia Pty. Ltd.,"C © 2015 Universal Music Australia Pty Ltd., P This Compilation ℗ 2015 Universal Music Australia Pty Ltd.",9766 +9767,spotify:track:7iL6o9tox1zgHpKUfh9vuC,In Da Club,spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,spotify:album:5G5rgQHzdQnw32SI0WjIo5,Get Rich Or Die Tryin',spotify:artist:3q7HBObVc0L8jNeTe5Gofh,50 Cent,2003-02-06,https://i.scdn.co/image/ab67616d0000b273d843fabb75fef14010e30cae,1,5,193466,https://p.scdn.co/mp3-preview/c0199e9be373d6a82ae89071ae34dd38ec72b99c?cid=9950ac751e34487dbbe027c4fd7f8e99,True,81,USIR10300033,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"east coast hip hop,gangster rap,hip hop,pop rap,queens hip hop,rap",0.899,0.713,6.0,-2.752,0.0,0.366,0.255,0.0,0.0708,0.777,90.051,4.0,,Shady Records,"C © 2003 Shady Records/Aftermath Records/Interscope Records, P ℗ 2003 Shady Records/Aftermath Records/Interscope Records",9767 +9768,spotify:track:1WkMMavIMc4JZ8cfMmxHkI,"CAN'T STOP THE FEELING! (from DreamWorks Animation's ""TROLLS"")",spotify:artist:31TPClRtHm23RisEBtV3X7,Justin Timberlake,spotify:album:65ayND23IInUPHJKsaAqe7,TROLLS (Original Motion Picture Soundtrack),spotify:artist:05S6yFOzexsgurWstJlBqK,Trolls,2016-09-23,https://i.scdn.co/image/ab67616d0000b273d965d29d7dcf46ade5a8a7e4,1,2,237546,https://p.scdn.co/mp3-preview/8f4eee79e9574c8db62ebbdbbb5f14d6f9ed5fba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USRC11600876,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.669,0.832,0.0,-5.721,1.0,0.0682,0.0106,0.0,0.0968,0.7,113.035,4.0,,Villa 40/RCA Records,"P This Compilation (P) 2016 RCA Records, a division of Sony Music Entertainment",9768 +9769,spotify:track:0AKAxdNkwq9ZxRdW1DN9zW,Behind These Hazel Eyes,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:5gDAEao3VxFdbm8vS0koQq,Breakaway,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2004-01-17,https://i.scdn.co/image/ab67616d0000b27303dadde4d9d305c1c3e0d91c,1,3,198973,https://p.scdn.co/mp3-preview/b2a52b3a139124270fb539ef0f46f9e049e835e4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,59,GBCTA0400263,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.548,0.889,9.0,-4.682,1.0,0.0382,0.00165,0.00109,0.197,0.425,90.048,4.0,,RCA Records Label,"P (P) 2004 19 Recordings Ltd. under exclusive license to RCA/JIVE Label Group, a unit of Sony Music Entertainment",9769 +9770,spotify:track:0DfRnZSL23IP9DKURxZLxn,We Walk,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,spotify:album:4wj8lA3aSK4WjHjdf5zuFn,We Started Nothing,spotify:artist:2wvUfjKGoXvcnDHq7GgMOa,The Ting Tings,2008-05-19,https://i.scdn.co/image/ab67616d0000b2733889f99a8ace496088522cfc,1,8,244653,https://p.scdn.co/mp3-preview/97eba054c92eaf81d10710dfb1058ff26140b00d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,15,GBARL0800042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative dance,dance-punk,electropop,neo-synthpop,new rave",0.803,0.824,3.0,-4.446,0.0,0.0359,0.265,0.00202,0.0778,0.753,116.988,4.0,,Columbia,P (P) 2008 Sony Music Entertainment UK Limited,9770 +9771,spotify:track:1NarGDteHRuDA9OfGyQ2MG,Hey There Delilah,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,spotify:album:24sUMKVvcDdDMBxDmOjIIS,Hey There Delilah,spotify:artist:1g1yxsNVPhMUl9GrMjEb2o,Plain White T's,2006,https://i.scdn.co/image/ab67616d0000b2738695a646cdeb8376aafc11a4,1,1,226493,https://p.scdn.co/mp3-preview/fcd477890854d132e79a028d17d89bf7812652dc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USHR10622325,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,neo mellow,neon pop punk,pop punk,pop rock",0.624,0.28,2.0,-10.415,1.0,0.029,0.861,1.51e-06,0.116,0.288,105.087,4.0,,Hollywood Records Inc.,"C © 2007 Hollywood Records, Inc., P ℗ 2007 Hollywood Records, Inc.",9771 +9772,spotify:track:5JSt5uOkjLDMqWNTzVSMXX,Paper Romance,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,spotify:album:1auJY23R5KD9YEgrvE3HQM,Black Light,spotify:artist:67tgMwUfnmqzYsNAtnP6YJ,Groove Armada,2010-03-15,https://i.scdn.co/image/ab67616d0000b273a20db39c1bcf28039902bc80,1,7,379746,https://p.scdn.co/mp3-preview/f02173f705ddb2476a2315911ed9dabe5c290870?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCEJ0900414,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,nu skool breaks,trip hop",0.569,0.712,4.0,-6.279,1.0,0.0306,4.12e-05,0.00408,0.353,0.24,122.991,4.0,,Ministry Of Pies,"C 2010 Cooking Vinyl Ltd under exclusive license from Ministry of Pies, P 2010 Ministry of Pies under exclusive license to Cooking Vinyl Ltd",9772 +9773,spotify:track:2w8oMeJjXn1KTnU2fr9eFB,Glad All Over - 2019 - Remaster,spotify:artist:2HBbky0Z08ZcCKVsXWbNE4,The Dave Clark Five,spotify:album:6v5uK6Y4PbR2jIIGwJrsuL,Glad All Over (2019 - Remaster),spotify:artist:2HBbky0Z08ZcCKVsXWbNE4,The Dave Clark Five,1964-07-06,https://i.scdn.co/image/ab67616d0000b27386b70e6e83cf70beb5521fbd,1,1,163327,https://p.scdn.co/mp3-preview/11b7eae84009a24de308ff58b64a2b6490aa9733?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB5KW1901734,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british invasion,merseybeat",0.462,0.803,2.0,-8.357,1.0,0.0585,0.152,0.0,0.0788,0.896,137.789,4.0,,BMG Rights Management (UK) Limited,"C © 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Limited, P ℗ 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Limited",9773 +9774,spotify:track:1mxTCArq9EhSg4QPGqhjhT,The Call,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,spotify:album:41zXjyVr6dzmchWf8tv3UO,Black & Blue,spotify:artist:5rSXSAkZ67PYJSvpUpkOr7,Backstreet Boys,2000-11-21,https://i.scdn.co/image/ab67616d0000b273cf871e6326e334bfa92cff20,1,1,204800,https://p.scdn.co/mp3-preview/b8d96ab418d5940d8b00657773983198c493c323?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USJI10000535,spotify:user:bradnumber1,2022-01-09T22:04:42Z,"boy band,dance pop,pop",0.696,0.874,10.0,-3.318,0.0,0.0772,0.117,0.0,0.331,0.747,104.196,4.0,,Jive,P (P) 2000 Zomba Recording LLC,9774 +9775,spotify:track:3BhBx8IT6Q6SRx3BTl1RjW,Wanna Be Up,spotify:artist:27jbY7PPKoVMVzpMBTUsaN,Chantoozies,spotify:album:1z9k1w40R9Mg21i9HQCOe8,Chantoozies,spotify:artist:27jbY7PPKoVMVzpMBTUsaN,Chantoozies,1988,https://i.scdn.co/image/ab67616d0000b2738be4b95a2586d7662c33fea6,1,1,219826,https://p.scdn.co/mp3-preview/7a6cbcd87a83e6a10ab5d61ed8c497af9bd8752a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUFE08800073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.685,0.831,5.0,-8.444,1.0,0.0312,0.00174,0.000441,0.207,0.995,128.104,4.0,,WM Australia,"C © 1988 Mushroom Records Pty Limited, P ℗ 1988 Mushroom Records Pty Limited",9775 +9776,spotify:track:1mX6SYJ1ZpcoxQUiER8wOI,SING,spotify:artist:7FBcuc1gsnv6Y1nwFtNRCb,My Chemical Romance,spotify:album:2wPnKggTK3QhYAKL7Q0vvr,Danger Days: The True Lives of the Fabulous Killjoys,spotify:artist:7FBcuc1gsnv6Y1nwFtNRCb,My Chemical Romance,2010-11-05,https://i.scdn.co/image/ab67616d0000b2736fbf4bb780a9cbc34b3f35da,1,4,270386,https://p.scdn.co/mp3-preview/e7dd3a3195a1c1c03b939b05a6f3453e29399eac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRE11000889,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop punk,pov: indie,rock",0.606,0.942,2.0,-3.618,1.0,0.0357,0.000233,7.07e-06,0.106,0.373,110.98,4.0,,Reprise,"C 2009 © 2010 Reprise Records., P 2009 ℗ 2010 Reprise Records.",9776 +9777,spotify:track:2eJ8ij1T3cNUKiGdcUvKhy,Baby,"spotify:artist:1uNFoZAHBGtllmzznpCI3s, spotify:artist:3ipn9JLAPI5GUEo4y4jcoi","Justin Bieber, Ludacris",spotify:album:6gdLfnf2vdNlMTyhJHaDLs,My Worlds (International Version),spotify:artist:1uNFoZAHBGtllmzznpCI3s,Justin Bieber,2010-01-01,https://i.scdn.co/image/ab67616d0000b273cd0c179f4cc7c5d4f61b5a28,1,9,213973,https://p.scdn.co/mp3-preview/6f57db4d7d782298f0d2de9097a45f4671cb2fd6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70919263,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,atl hip hop,dance pop,dirty south rap,hip hop,old school atlanta hip hop,pop rap,rap,southern hip hop,trap",0.73,0.848,5.0,-5.262,0.0,0.101,0.0494,0.0,0.133,0.559,65.025,4.0,,Universal Music Group,"C © 2010 The Island Def Jam Music Group, P ℗ 2010 The Island Def Jam Music Group",9777 +9778,spotify:track:5Xr3u4Ouag9rGQgWph9yRg,Last Night I Didn't Get to Sleep at All - Remastered 1997,spotify:artist:1UUYAQ9LiRsZF0ZukQNWXM,The 5th Dimension,spotify:album:4ZBYLEnHsVAwWN5vGDZAbz,The Essential Fifth Dimension,spotify:artist:1UUYAQ9LiRsZF0ZukQNWXM,The 5th Dimension,2011-03-15,https://i.scdn.co/image/ab67616d0000b2732e7bf11ca0a56b4d155faf27,2,12,192600,https://p.scdn.co/mp3-preview/651cbdec491a11b5854032de02c104efbf9d36ac?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,USAR19700298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,disco,folk rock,mellow gold,motown,singer-songwriter,soft rock,sunshine pop",0.669,0.498,5.0,-12.488,0.0,0.0292,0.502,0.00189,0.0857,0.572,105.039,4.0,,Arista/Legacy,P (P) 2011 Sony Music Entertainment,9778 +9779,spotify:track:3fJaqjV813edLN5wrxUPkc,Strangers,spotify:artist:4TrraAsitQKl821DQY42cZ,Sigrid,spotify:album:2zlcfXL0DThG4tcEzAIJOl,Strangers,spotify:artist:4TrraAsitQKl821DQY42cZ,Sigrid,2017-11-10,https://i.scdn.co/image/ab67616d0000b27325ac8d03284749b93259f791,1,1,233725,https://p.scdn.co/mp3-preview/bbd52dceb8192b55257d1688fcc94663bc713b14?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,GBUM71705774,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"electropop,norwegian pop",0.755,0.722,7.0,-6.097,1.0,0.038,0.00584,0.00104,0.0746,0.133,115.03,4.0,,Universal Music Group,"C © 2017 Universal Music Operations Limited, P An Island Records release; ℗ 2017 Universal Music Operations Limited",9779 +9780,spotify:track:1EwhxBzHsNSfc6LlL9Knte,Sunshine After The Rain,spotify:artist:7t2BtjPo5hS5CEqZoGKQpn,Berri,spotify:album:5QJ6ZYf7uSNZua9PStMSX3,"Ibiza Summer: All-Time Greatest Anthems, Vol. 1",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2015-05-28,https://i.scdn.co/image/ab67616d0000b273828799ccafaa7fe4d8b1976e,1,8,389760,,False,0,NLRD51436466,spotify:user:bradnumber1,2020-03-05T09:20:39Z,eurodance,0.733,0.871,10.0,-12.625,1.0,0.0455,6.01e-05,0.84,0.427,0.473,133.012,4.0,,Sunflash Records,"C 2015 Sunflash Records, P 2015 Sunflash Records",9780 +9781,spotify:track:2pA1xHmhDxle8pPhhIaWCp,"You're The One That I Want - From ""Grease"" Original Motion Picture Soundtrack","spotify:artist:4hKkEHkaqCsyxNxXEsszVH, spotify:artist:4BoRxUdrcgbbq1rxJvvhg9","John Travolta, Olivia Newton-John",spotify:album:00Rp3j7mKM3qZXkvF9iWcy,Grease (Limited Edition),spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1998-01-01,https://i.scdn.co/image/ab67616d0000b273925e89f60b7f808988d94e15,1,4,169840,https://p.scdn.co/mp3-preview/e40c2ef7fd8bb3ba548682058005672f8ee91184?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF057890004,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"hollywood,adult standards,australian dance,disco,mellow gold,soft rock",0.55,0.622,0.0,-11.304,1.0,0.114,0.324,0.00247,0.12,0.868,213.654,4.0,,Digital,"C © 1998 Universal International Music B.V., P ℗ 1998 Universal International Music B.V.",9781 +9782,spotify:track:4z1O25cq9g2kuJemmUxc21,Small Bump,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,spotify:album:02pi98kE0nra0yBqCStzbC,+,spotify:artist:6eUKZXaKkcviH0Ku9w2n3V,Ed Sheeran,2011-09-09,https://i.scdn.co/image/ab67616d0000b2736567a393a964a845a89b7f70,1,6,259413,https://p.scdn.co/mp3-preview/c8e668fd53f8bde5df210f489b78186d8c49aec1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAHS1100203,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,singer-songwriter pop,uk pop",0.81,0.436,10.0,-12.683,1.0,0.0717,0.689,0.000151,0.11,0.446,119.973,4.0,,Atlantic Records UK,"C © 2011 Warner Music UK Limited, P ℗ 2011 Warner Music UK Limited",9782 +9783,spotify:track:1i8ZmESz6W59aj9JiJoAXe,Words,spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,spotify:album:2uNFpEVey5RsxzTdoDmjiz,Beautiful Lies (Deluxe),spotify:artist:2WX2uTcsvV5OnS0inACecP,Birdy,2016-03-25,https://i.scdn.co/image/ab67616d0000b273ceb1cccb864424fc5c2bc1e7,1,11,217653,https://p.scdn.co/mp3-preview/0533f16df62ca9955b2847284fe5803aeedc70cd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,GBAHS1600029,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"neo mellow,uk pop,viral pop",0.758,0.34,1.0,-8.965,1.0,0.0335,0.88,1.15e-05,0.117,0.445,107.024,4.0,,Atlantic Records UK,"C © 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company, P ℗ 2016 Jasmine Van Den Bogaerde under exclusive licence to Atlantic Records UK, a Warner Music Group company",9783 +9784,spotify:track:20cdfC6X43JiDZ8WlmkwSf,Great Southern Land,spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,spotify:album:1ANl9HULwoe9HdJjg8bQRP,Primitive Man (Bonus Track Edition),spotify:artist:3IUisqn0mluZR0LITs8Sqk,ICEHOUSE,1982,https://i.scdn.co/image/ab67616d0000b273de287fb68890bb8546fd4e25,1,1,317240,https://p.scdn.co/mp3-preview/6b4daf25e5d51f4d8b1f6fb391532ae33cfa2030?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUC441100021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic,sophisti-pop,synthpop",0.716,0.826,9.0,-5.584,1.0,0.0281,0.255,0.000262,0.0686,0.459,120.145,4.0,,Diva,"C © 2012 Diva Records, P ℗ 2012 Diva Records, Manufactured & Distributed by Universal Music Australia",9784 +9785,spotify:track:4TkK8JbIGC9JVXuyXxevBL,Dizzy,"spotify:artist:2NiLDA26xrtl8uIjQV5YVG, spotify:artist:0Uo1d5A6BR1I155GlD9WYo","Vic Reeves, The Wonder Stuff",spotify:album:4OZthltp2ye3QMmXPyowMX,If The Beatles Had Read Hunter...The Singles,spotify:artist:0Uo1d5A6BR1I155GlD9WYo,The Wonder Stuff,1994-01-01,https://i.scdn.co/image/ab67616d0000b273e6b1becc4fa13d02ab32d1bf,1,7,199133,https://p.scdn.co/mp3-preview/a59a806febe475f9d9029b5289961ec4b15eda2b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN9100051,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grebo,britpop,grebo",0.586,0.757,9.0,-11.119,0.0,0.0405,0.024,1.16e-06,0.0681,0.684,113.636,4.0,,Polydor,"C © 1994 Polydor Ltd. (UK), P ℗ 1994 Polydor Ltd. (UK)",9785 +9786,spotify:track:6TD08uig72h348vwgry0kq,All Day and All of the Night,spotify:artist:1SQRv42e4PjEYfPhS0Tk9E,The Kinks,spotify:album:7GFn8ze0gydX3f0WNMCxaG,Pirate Radio,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-01-01,https://i.scdn.co/image/ab67616d0000b2736a6377c352fcdeb390dd86f5,1,2,141493,https://p.scdn.co/mp3-preview/8686780c85ed4c4d0cbfd95f1be5d581a33463c6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAJE6400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,british invasion,classic rock,folk rock,glam rock,protopunk,psychedelic rock,rock,singer-songwriter",0.551,0.957,7.0,-5.0,1.0,0.108,0.455,0.000161,0.0665,0.533,136.966,4.0,,EMI,"C © 2009 Mercury Records Limited, P This Compilation ℗ 2009 Mercury Records Limited",9786 +9787,spotify:track:2zMJN9JvDlvGP4jB03l1Bz,Hot Stuff,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,spotify:album:58GjBhQvLHwfQFJtdP9Oxg,Bad Girls,spotify:artist:2eogQKWWoohI3BSnoG7E2U,Donna Summer,1979-04-25,https://i.scdn.co/image/ab67616d0000b2730c3a44d76807bef665eacfa3,1,1,314760,https://p.scdn.co/mp3-preview/b48b9f29b11d9821fc4f34e1307bf2d94867cc7b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USPR37907202,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco,hi-nrg,new wave pop,soft rock",0.823,0.744,0.0,-13.98,1.0,0.0316,0.0055,0.033,0.0707,0.966,120.471,4.0,,Mercury Records,"C © 1979 UMG Recordings Inc., P ℗ 1979 UMG Recordings Inc.",9787 +9788,spotify:track:4jKq1e80xAYixkIwt6YyV1,Brick,spotify:artist:44gRHbEm4Uqa0ykW0rDTNk,Ben Folds Five,spotify:album:3oz8kworUyU7oXjaEVhDsZ,Whatever And Ever Amen (Remastered Edition),spotify:artist:44gRHbEm4Uqa0ykW0rDTNk,Ben Folds Five,1997-03-18,https://i.scdn.co/image/ab67616d0000b27398dc5ccf21dd6bc171962cb9,1,3,271720,https://p.scdn.co/mp3-preview/6cd41e7da8797ad14afb22a9bcaf73f297be905f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM19603695,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chapel hill sound,permanent wave,piano rock,pop rock",0.542,0.454,2.0,-10.247,1.0,0.025,0.645,0.00279,0.15,0.267,96.881,4.0,,Epic,"P (P) 1997, 1998, 1999, 2005 SONY BMG MUSIC ENTERTAINMENT",9788 +9789,spotify:track:2eY1BRbRcK6SRb0rD90suw,With Arms Wide Open,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,spotify:album:4btSrwp3BOMRmxKwUhbS0Z,Greatest Hits,spotify:artist:43sZBwHjahUvgbx1WNIkIz,Creed,2004,https://i.scdn.co/image/ab67616d0000b2736cc53facdfee03b7eb1a23cb,1,7,278440,https://p.scdn.co/mp3-preview/9db8ce2b918282639e2ec9201cc7231f8adaf701?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USWU39908053,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rock",0.414,0.525,0.0,-8.436,1.0,0.0302,0.00312,0.0011,0.149,0.145,138.869,4.0,,Wind Up,"C (C) 2004 Wind-Up Records, LLCThis label copy information is the subject of copyright protection. All rights reserved.(C) EMI Music Germany GmbH & Co. KG, P (P) 2004 The copyright in this sound recording is owned by Wind-Up Records, LLC under exclusive licence to EMI Music Germany GmbH & Co. KG",9789 +9790,spotify:track:2uNqwZLPIZh805kZIMJXlG,Falling to Pieces,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,spotify:album:4DE9j0tE0xL37RonHBowlx,This Is It: The Best of Faith No More,spotify:artist:6GbCJZrI318Ybm8mY36Of5,Faith No More,2003-01-28,https://i.scdn.co/image/ab67616d0000b2736c635a823d54f0119ae04f94,1,7,313573,https://p.scdn.co/mp3-preview/b0816ce3cf07d9f54a155d8c69f1e3e9aa90c743?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,USRH10901923,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,funk metal,funk rock,hard rock,nu metal,post-grunge,rap metal,rock",0.545,0.919,2.0,-7.679,1.0,0.0484,0.00272,0.00511,0.0977,0.387,104.366,4.0,,Rhino/Slash,"C 2009 © 2003 Rhino Entertainment Company, a Warner Music Group Company, P 2009 ℗ 2003 Rhino Entertainment Company. Marketed by Rhino Entertainment Company, a Warner Music Group Company.",9790 +9791,spotify:track:2ofxsiYWpiQTq5nTiTjmZH,This Time Around,spotify:artist:0SdiiPkr02EUdekHZJkt58,Hanson,spotify:album:0IaT8AWtzOSAzWB1KXoTD8,MmmBop : The Collection,spotify:artist:0SdiiPkr02EUdekHZJkt58,Hanson,2005-01-01,https://i.scdn.co/image/ab67616d0000b273aeb97994467b5a33f2b3fa12,1,14,257973,https://p.scdn.co/mp3-preview/4beba49406a9efb0bfe1e37332a4fbdb5bf511d7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20000031,spotify:user:bradnumber1,2022-01-11T11:26:22Z,boy band,0.308,0.895,1.0,-4.131,1.0,0.103,0.0795,0.0,0.135,0.328,164.277,4.0,,Universal Music Group,"C © 2005 The Island Def Jam Music Group, P ℗ 2005 The Island Def Jam Music Group",9791 +9792,spotify:track:3EWl5Rz5VBovgllQsjbn3M,Superstar,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,spotify:album:0wBP8GaN80GPolmY8M19em,Classic Carpenters,spotify:artist:2wSrZOe6YVo6XoKma22sdY,Dami Im,2016-04-22,https://i.scdn.co/image/ab67616d0000b273e0883bb3ac31d595172c0a82,1,4,194640,https://p.scdn.co/mp3-preview/5a5031e20693a2f75ddf72868e317f4ce7ffcdd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,AUBM01600041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show,talent show",0.495,0.373,10.0,-6.365,1.0,0.0267,0.764,2.19e-06,0.111,0.172,76.91,4.0,,Sony Music Entertainment,P (P) 2016 Sony Music Entertainment Australia Pty Ltd.,9792 +9793,spotify:track:4Qm76UT4PcRGv0tRtRuCiE,The Goondiwindi Grey,spotify:artist:4DFBBNfmsaaEfBoeQrxufi,Tex Morton,spotify:album:53MhHbj36NMao1H4jLZXTS,Tex Morton's Australia,spotify:artist:4DFBBNfmsaaEfBoeQrxufi,Tex Morton,2018-01-16,https://i.scdn.co/image/ab67616d0000b273f079715dc99b487731d3599a,1,14,156493,https://p.scdn.co/mp3-preview/a12b2eeb7cddd699a3b35a6f3851abd41cffbf54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUV401464394,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic australian country,classic nz country,yodeling",0.699,0.585,2.0,-13.205,1.0,0.0634,0.752,0.000237,0.372,0.905,124.17,4.0,,The Music Factory,P 2018 V&H Holdings Pty Ltd,9793 +9794,spotify:track:0fujiC2UTH0e0DHa1lbknZ,Don't Need Love,spotify:artist:4rCLXPaqaUjGa1aHDwkviR,Diesel,spotify:album:1Y24B3KTpS9nI6fYl7PdGs,Australia's Greatest Songs,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2009-03-01,https://i.scdn.co/image/ab67616d0000b27306fdfc134ab016f4e1aaf470,1,9,238653,https://p.scdn.co/mp3-preview/e09e820982e371d6a489019334c408e86542228c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00400300,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.672,0.529,2.0,-7.075,1.0,0.0244,0.566,0.0,0.155,0.511,112.05,4.0,,Bloodlines,"C 2009 Bloodlines, P 2009 Bloodlines",9794 +9795,spotify:track:5IFCyWplye09HytIP80RCF,Too Close,spotify:artist:2MGT7CYlixSPxAnnkhLpaA,Next,spotify:album:3Pmonb2UZ9zckdh5S5ibVm,Rated Next,spotify:artist:2MGT7CYlixSPxAnnkhLpaA,Next,1997-09-30,https://i.scdn.co/image/ab67616d0000b2734ca1daad1145dec4618ea671,1,2,259440,https://p.scdn.co/mp3-preview/a6d24cd483ac3985c3bff3162cfcb4e0fe05007e?cid=9950ac751e34487dbbe027c4fd7f8e99,True,65,USAR19700121,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,contemporary r&b,minneapolis sound,new jack swing,r&b,urban contemporary",0.847,0.402,7.0,-9.952,1.0,0.0641,0.0118,0.0,0.283,0.752,99.693,4.0,,Arista,"P (P) 1997 Arista Records, Inc.",9795 +9796,spotify:track:2iTpAjIM15wHKpV36xKG1e,I Honestly Love You,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:4LZhAy9UsJ0EiqqeKyrlts,Hopelessly Devoted: The Hits,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2018-06-08,https://i.scdn.co/image/ab67616d0000b273ea73235699dcf414d1e1adae,1,11,217665,https://p.scdn.co/mp3-preview/228e2469682496b9d4e3ff357d91eb2138289f9c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,QM75X1500023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.357,0.174,10.0,-12.977,1.0,0.0334,0.968,5.52e-05,0.115,0.145,131.497,4.0,,Sony Music Entertainment,"P (P) 2018 ONJ Productions, Ltd. under exclusive licence to Sony Music Entertainment Australia Pty Ltd",9796 +9797,spotify:track:71SvEDmsOwIWw1IozsZoMA,Any Way You Want It,spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,spotify:album:2OyVtIEp7O7a6o82DF4Ba5,Departure,spotify:artist:0rvjqX7ttXeg3mTy8Xscbt,Journey,1980,https://i.scdn.co/image/ab67616d0000b2737e8045e318486885fe243817,1,1,201693,https://p.scdn.co/mp3-preview/956e5625f9c5d81535193dadd860c084457f65e3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,72,USSM18100114,spotify:user:bradnumber1,2022-08-31T00:10:00Z,"album rock,classic rock,hard rock,mellow gold,rock,soft rock",0.529,0.932,7.0,-7.501,1.0,0.0488,0.00251,0.00109,0.136,0.571,138.158,4.0,,Columbia/Legacy,P (P) 1980 Sony Music Entertainment,9797 +9798,spotify:track:71ywEs45ClmTNRiaJ7YEsr,Maps,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:2MNwQ0qxvbMlBeWubrDZzX,V,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2014-08-29,https://i.scdn.co/image/ab67616d0000b273f6439e050ccf1891df058582,1,1,189973,https://p.scdn.co/mp3-preview/36f41e3d1e62e771fc4ceed91877785935881063?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71407116,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.742,0.713,1.0,-5.522,0.0,0.0303,0.0205,0.0,0.059,0.879,120.032,4.0,,Universal Music LLC,"C (C) 2014 Interscope Records, P (P) 2014 Interscope Records",9798 +9799,spotify:track:0bQjfM1zYkSqIOsS3q5TEg,Bright Eyes,spotify:artist:6kEsKkXuE4olX7m3mNLZkS,Art Garfunkel,spotify:album:0ND9GMghyNLQLfBIrZ1iVY,The Best Of,spotify:artist:6kEsKkXuE4olX7m3mNLZkS,Art Garfunkel,2001,https://i.scdn.co/image/ab67616d0000b273d35f9f79125041ae15fc8dcc,1,1,238360,https://p.scdn.co/mp3-preview/68c710700d10ba9f69eaa9ac6dd8e9e998768a17?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USSM19802018,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"folk,folk rock,mellow gold,soft rock",0.378,0.153,7.0,-19.157,1.0,0.0331,0.696,0.305,0.0826,0.249,112.501,4.0,,Columbia,P (P) 1998 Sony Music Entertainment (UK) Ltd.,9799 +9800,spotify:track:05mAIVLkIWc2d1UBYZBCp8,1999,"spotify:artist:25uiPmTg16RbhZWAqwLBy5, spotify:artist:3WGpXCj9YhhfX11TToZcXP","Charli xcx, Troye Sivan",spotify:album:49Teqcxp4dOBayTBtR3j5W,1999,"spotify:artist:25uiPmTg16RbhZWAqwLBy5, spotify:artist:3WGpXCj9YhhfX11TToZcXP","Charli xcx, Troye Sivan",2018-10-05,https://i.scdn.co/image/ab67616d0000b273e4e3899a0281f459fa8384ea,1,1,189000,https://p.scdn.co/mp3-preview/80df2f56d0948b2c6d189de331dea8233582adaa?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,GBAHS1800662,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,candy pop,metropopolis,pop,uk pop,australian pop,pop,viral pop",0.739,0.742,7.0,-4.586,1.0,0.0329,0.0227,1.39e-06,0.229,0.659,124.016,4.0,,Atlantic Records UK,"C © 2018 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group Company., P ℗ 2018 Asylum Records UK, a division of Atlantic Records UK. A Warner Music Group Company.",9800 +9801,spotify:track:3oedBzag96zA0Tx1Kokwlj,"My Heart Will Go On - Love Theme from ""Titanic""",spotify:artist:4S9EykWXhStSc15wEx8QFK,Céline Dion,spotify:album:2utmprJOfjPVxqT6CV85wk,The All Time Greatest Movie Songs,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,1999-02-01,https://i.scdn.co/image/ab67616d0000b2737f8de967fba4d3de8a612ef0,1,1,279133,https://p.scdn.co/mp3-preview/68c13229ec9b1b4a5ea580e801061fd7791857c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,CAC229700120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop,0.408,0.29,4.0,-11.127,1.0,0.0308,0.728,2.56e-06,0.125,0.0394,98.808,1.0,,Sony Music Soundtrax,"P (P) 1997 Columbia Pictures Industries, Inc., 1991 MJJ Productions Inc., 1997 Sony Music Entertainment (Canada) Inc., 1993 Bruce Springsteen, 1992 Buena Vista Pictures Distribution, Inc., 1997 Walt Disney Records, 1998 Sony Music Entertainment (UK) Lt",9801 +9802,spotify:track:6RjW45KHJ6kgI2xQ1aFa52,Acapella,spotify:artist:4M0DLz8te9Q1lNIXBBwvfG,Karmin,spotify:album:2UvU0egYoXsysWkHqQy4Lc,Pulses,spotify:artist:4M0DLz8te9Q1lNIXBBwvfG,Karmin,2014-03-21,https://i.scdn.co/image/ab67616d0000b273dc8029c56d57f5d1ea61c6ec,1,3,198906,https://p.scdn.co/mp3-preview/ef6a8762fd16cca46a86fe019a973f8378c896e1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM11302997,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"post-teen pop,viral pop",0.667,0.619,2.0,-4.933,1.0,0.151,0.126,0.0,0.101,0.427,169.865,4.0,,Epic,"P (P) 2014 Epic Records, a division of Sony Music Entertainment",9802 +9803,spotify:track:4ikR3lDFcZ0hNKyVONfi4N,Love Story - US Album Version,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:6mhqCOSN7y93aydjeBatWb,Fearless (Platinum Edition),spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2008-11-11,https://i.scdn.co/image/ab67616d0000b27323772ebfb18de81c57186964,1,9,235280,https://p.scdn.co/mp3-preview/9f5f1d355bc50d138e3496823c2b2717e3961319?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USCJY0803275,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.618,0.736,2.0,-3.937,1.0,0.0308,0.157,0.0,0.073,0.307,118.982,4.0,,Universal Music Group,"C © 2009 Big Machine Records, LLC, P ℗ 2009 Big Machine Records, LLC",9803 +9804,spotify:track:1kKgSjOsfDM9Qxn6viaNyy,Oh Yeah,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,spotify:album:545kQuOMY2rOay7r3OMAHc,Axiomatic,spotify:artist:1nCht41FuMcmG1FIoyjWCH,Taxiride,2005-09-05,https://i.scdn.co/image/ab67616d0000b273da4f3d4d29e49ebc63ba80f9,1,2,251280,https://p.scdn.co/mp3-preview/32464db6777ddc2feccc7da680df6177bf4cdecd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,9,AUEG00500002,spotify:user:bradnumber1,2022-04-20T22:26:17Z,"australian pop,australian rock",0.479,0.854,9.0,-5.938,0.0,0.0533,0.00363,0.0,0.0945,0.165,130.086,4.0,,Blue Tiger Music,"C 2005 Mandarin Music Pty Ltd, P 2005 Mandarin Music Pty Ltd",9804 +9805,spotify:track:6Qm9MaditCcx5V62rVHYqu,A Thousand Miles,spotify:artist:5ILrArfIV0tMURcHJN8Q07,Vanessa Carlton,spotify:album:2uHUZLZ8AJ7KjtUb3ogQt1,Best Of,spotify:artist:5ILrArfIV0tMURcHJN8Q07,Vanessa Carlton,2011-01-01,https://i.scdn.co/image/ab67616d0000b273a88fa19b7543b39a3ea542d9,1,1,237440,https://p.scdn.co/mp3-preview/e9ab083f92fd9b9a3c8ed3d6ee73c8290c55ca38?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USIR10210955,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,neo mellow,piano rock,pop rock,post-teen pop",0.488,0.832,11.0,-3.876,1.0,0.0388,0.273,0.0,0.192,0.258,94.84,4.0,,A&M (UC),"C © 2011 A&M Records, P This Compilation ℗ 2011 A&M Records",9805 +9806,spotify:track:356YQb5vrZLxSxSMZlw80U,Wings Of An Eagle,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,spotify:album:7A1aa80x9ma2tsnZjmBlHA,Retrospective,spotify:artist:7EVPblaCtZJI6QBtJnqO7e,Russell Morris,1978-01-01,https://i.scdn.co/image/ab67616d0000b273160d30800da9b4f95b1ce2f0,1,15,235533,https://p.scdn.co/mp3-preview/fea2cfa6a3c35cf7e63544875b43a5a4d6a86e93?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,AUEM07200020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.305,0.36,7.0,-17.126,1.0,0.0321,0.118,1.41e-05,0.261,0.365,146.822,4.0,,EMI Music Australia,"C © 1996 EMI Recorded Music Australia Pty Ltd., P ℗ 1978 EMI Recorded Music Australia Pty Ltd.",9806 +9807,spotify:track:30qVCFYKBtAENjTIBA8FPZ,The River of Dreams,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,spotify:album:4HPnwQJAEvTY910q4RNeOu,River Of Dreams,spotify:artist:6zFYqv1mOsgBRQbae3JJ9e,Billy Joel,1993-08-10,https://i.scdn.co/image/ab67616d0000b273d81c87cd4fa07351a5d14a71,1,8,247626,https://p.scdn.co/mp3-preview/59ac97e2faf5e724ef73a0c6900acce0889e44f1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USSM19300280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,mellow gold,piano rock,rock,singer-songwriter,soft rock",0.631,0.749,7.0,-8.15,1.0,0.0576,0.205,5.21e-06,0.0667,0.437,89.646,4.0,,Columbia,"P (P) 1993 Columbia Records, a division of Sony Music Entertainment",9807 +9808,spotify:track:7GAaTpSoTWUTbP2Yxlt4Hd,Need You Now,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,spotify:album:5RypFF6rN9MUxFe4aAWA28,Need You Now,spotify:artist:32WkQRZEVKSzVAAYqukAEA,Lady A,2010-01-01,https://i.scdn.co/image/ab67616d0000b2735a8b541ca2a563671ff38ddf,1,1,236440,https://p.scdn.co/mp3-preview/7b4dc647f33a83dd7e2a5257dae045257ef59528?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USCN10900695,spotify:user:bradnumber1,2021-08-08T09:27:48Z,"contemporary country,country,country dawn,country pop,country road",0.581,0.717,4.0,-4.433,1.0,0.0318,0.0298,0.000185,0.243,0.316,107.884,4.0,,Capitol Nashville,"C © 2010 Capitol Records Nashville, P ℗ 2010 Capitol Records Nashville",9808 +9809,spotify:track:5tz69p7tJuGPeMGwNTxYuV,1-800-273-8255,"spotify:artist:4xRYI6VqpkE3UwrDrAZL8L, spotify:artist:2wUjUUtkb5lvLKcGKsKqsR, spotify:artist:6LuN9FCkKOj5PcnpouEgny","Logic, Alessia Cara, Khalid",spotify:album:1HiN2YXZcc3EjmVZ4WjfBk,Everybody,spotify:artist:4xRYI6VqpkE3UwrDrAZL8L,Logic,2017-05-05,https://i.scdn.co/image/ab67616d0000b273cfdf40cf325b609a52457805,1,10,250173,https://p.scdn.co/mp3-preview/e60d9d46d42425e4bab86bedca7597c308958f9b?cid=9950ac751e34487dbbe027c4fd7f8e99,True,73,USUM71702778,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"conscious hip hop,hip hop,pop rap,rap,canadian contemporary r&b,canadian pop,pop,pop,pop r&b",0.62,0.574,5.0,-7.788,0.0,0.0479,0.569,0.0,0.19,0.357,100.023,4.0,,Def Jam Recordings,"C © 2017 Def Jam Recordings, a division of UMG Recordings, Inc., P ℗ 2017 Def Jam Recordings, a division of UMG Recordings, Inc.",9809 +9810,spotify:track:27tEwX9iWCVf5bQCmUaABy,Young Hearts Run Free,spotify:artist:7CgweQAq49HmeMQaxzyuXC,Kym Mazelle,spotify:album:7vf6vexmeG6vzYhbuZ6UHr,"Wild Reunion, Vol. 4","spotify:artist:7Lk3qnu0GGnvG33t23iz5k, spotify:artist:5RSTvtzYhTIr0ARC1PRaDD, spotify:artist:5XTxV2ifoYkmNb13Gb6cKz","Alex K, KCB, Sash!",2016-10-28,https://i.scdn.co/image/ab67616d0000b27332712e1073376f24c4ed07ad,1,7,255947,https://p.scdn.co/mp3-preview/8a51727206994b54a4d598a9f4b44e99d185307a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUCN31209344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,diva house,0.702,0.941,5.0,-10.388,1.0,0.0602,0.0335,0.0133,0.36,0.756,119.996,4.0,,Central Station Records,"C 2016 Central Station Records, P 2016 Central Station Records",9810 +9811,spotify:track:5cSmRaAcl4JXXKNgtNJop7,Misery,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:7m3ob74b24Jp0GgYGpjDmy,Misery,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2010-01-01,https://i.scdn.co/image/ab67616d0000b273b5bd7853a22bc213000df7a0,1,1,216253,https://p.scdn.co/mp3-preview/77072d2da66935a98b650ebd582f6ac713e2de61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71015280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.708,0.814,4.0,-4.845,0.0,0.0439,0.000331,0.0,0.0787,0.77,102.967,4.0,,Interscope,"C © 2010 A&M/Octone Records, P ℗ 2010 Interscope Records",9811 +9812,spotify:track:5KONnBIQ9LqCxyeSPin26k,Trumpets,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:4PeZu0It7qVrTG40t3HM9A,Talk Dirty,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2013-09-10,https://i.scdn.co/image/ab67616d0000b2730376bdff8b70d934f297303e,1,3,217419,https://p.scdn.co/mp3-preview/3a7f65e2c2a17b34c28f0c6a7d3c546be53fe4a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,USWB11400673,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.635,0.691,0.0,-4.862,1.0,0.258,0.555,0.0,0.097,0.638,82.142,4.0,,Beluga Heights/Warner Records,"C © 2014 Warner Records Inc., P ℗ 2013, 2014 Warner Records Inc.",9812 +9813,spotify:track:1mjZFxuSmWMgDkAcPxTFmM,Theme from a Summer Place,spotify:artist:6unIK8JFrGemCge3NIUDKE,Percy Faith,spotify:album:6XIPOS5WNMyRv9L4xKY7KN,A Summer Place,spotify:artist:6unIK8JFrGemCge3NIUDKE,Percy Faith,2014-09-22,https://i.scdn.co/image/ab67616d0000b273e54e112d67dc1a22a8b8e5ea,1,1,144266,https://p.scdn.co/mp3-preview/a1bb34878cf74a142ff71496bf184055c1cfcc5e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USV291483935,spotify:user:bradnumber1,2021-08-08T09:26:31Z,easy listening,0.337,0.337,0.0,-14.969,1.0,0.0309,0.241,0.78,0.0452,0.742,186.167,3.0,,Filton,C (C) 2014 Filton,9813 +9814,spotify:track:3imnzhFxhvrlLtvQP2um4B,Physical,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:5ySc9ZwyyZlFGIHuEij8oz,Gold,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,2005-01-01,https://i.scdn.co/image/ab67616d0000b27325b4d20048c691c41dc38bba,2,4,221933,https://p.scdn.co/mp3-preview/722620d23644b145a23831a4725fe61fc210edc8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC18112103,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.842,0.823,4.0,-6.255,0.0,0.0417,0.083,1.05e-05,0.12,0.861,124.287,4.0,,Universal Music Group,"C © 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc., P ℗ 2005 Universal Music Enterprises, a Division of UMG Recordings, Inc.",9814 +9815,spotify:track:6xQgB8a19MYznsChgo2eco,Hot Summer Nights,spotify:artist:2R1tFGzCGED9JItNMDx4TX,Night,spotify:album:6UwpzWKh2lpOk2QiYLLjOU,Night / Long Distance,spotify:artist:2R1tFGzCGED9JItNMDx4TX,Night,1979,https://i.scdn.co/image/ab67616d0000b2730a86563d37145aa304166201,1,1,203050,https://p.scdn.co/mp3-preview/fd2fda3d4f6ef40b050d80900e24dcf06b459129?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,FR6V81100341,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.723,0.649,8.0,-7.233,1.0,0.0393,0.335,0.0306,0.838,0.65,121.317,4.0,,Rdeg,"C 2004, P 1979",9815 +9816,spotify:track:4SxNSszQR7aK8WlRnemoYj,Songbird,spotify:artist:0afemm9P2Bb2LL99xHY32n,Bernard Fanning,spotify:album:0YNFZaLpBVQlTA75IqsRxB,Tea & Sympathy,spotify:artist:0afemm9P2Bb2LL99xHY32n,Bernard Fanning,2005-01-01,https://i.scdn.co/image/ab67616d0000b273f32b02ff718ad67c80f8bc43,1,4,156280,https://p.scdn.co/mp3-preview/ca63efc9b336b0c8cbb6f81e5ea8b0a317804e6f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,AUUM70500069,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian alternative rock,australian rock",0.58,0.773,6.0,-6.965,0.0,0.0273,0.102,0.000213,0.183,0.864,80.54,4.0,,Universal Music Australia Pty. Ltd.,"C © 2005 Dew Process/Universal Music Australia, P ℗ 2005 Dew Process/Universal Music Australia",9816 +9817,spotify:track:7MCNnnmwm7TXMh7xyNGohi,Baby Got Back,spotify:artist:3TQ9JTBI2n2hfo7aRONEYV,Sir Mix-A-Lot,spotify:album:6YZ0BFvP2Hj0vbTwPytvrb,Mack Daddy,spotify:artist:3TQ9JTBI2n2hfo7aRONEYV,Sir Mix-A-Lot,1992-01-01,https://i.scdn.co/image/ab67616d0000b273d26f1b036ba296a09668efc1,1,3,262826,https://p.scdn.co/mp3-preview/9a1d617b9ff3cda69d84aceb5cfcd3918f462536?cid=9950ac751e34487dbbe027c4fd7f8e99,True,0,USSM19100221,spotify:user:bradnumber1,2021-08-08T09:26:31Z,old school hip hop,0.933,0.664,1.0,-11.281,1.0,0.311,0.00471,0.0,0.0908,0.616,128.467,4.0,,Universal Music Group,"C © 1992 American Recordings, LLC, P ℗ 1992 American Recordings, LLC",9817 +9818,spotify:track:2AANsUZFwuDP4CePq3fQnw,What You Waitin' For,"spotify:artist:0NyzfcGDZZ6GM25EBG9BYK, spotify:artist:1VQ7baxc9Okx2YuRnpKMMR","Ray Parker Jr., Raydio",spotify:album:2rlrbtPSvGiJByOcRhZrt4,Rock On (Expanded Edition),spotify:artist:1VQ7baxc9Okx2YuRnpKMMR,Raydio,1979-03-01,https://i.scdn.co/image/ab67616d0000b273e4b7b7c223eccd19dc7437d2,1,1,251280,https://p.scdn.co/mp3-preview/66ac27c8a5ed5396bfd35b58f2700e113051b226?cid=9950ac751e34487dbbe027c4fd7f8e99,False,3,USAR10800152,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"theme,yacht rock",0.861,0.415,11.0,-11.61,0.0,0.109,0.00317,0.799,0.0341,0.58,105.626,4.0,,Arista/Legacy,P (P) 1979 Arista Records LLC,9818 +9819,spotify:track:1JkZg3eMQTmTn93E8Yd3UL,I Want You to Want Me,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,spotify:album:2sXJQdHykPYcRQ7xFhwzMR,In Color,spotify:artist:1LB8qB5BPb3MHQrfkvifXU,Cheap Trick,1977-09,https://i.scdn.co/image/ab67616d0000b27357a0bca6d7da93cd0c551f6a,1,4,191226,https://p.scdn.co/mp3-preview/0f6dfb50c58da932391ec366ac8d380c29677480?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USSM19802522,spotify:user:bradnumber1,2022-08-31T00:10:17Z,"album rock,beatlesque,classic rock,glam metal,glam rock,hard rock,mellow gold,power pop,rock,singer-songwriter,soft rock",0.806,0.462,2.0,-12.778,1.0,0.0298,0.774,0.0122,0.15,0.738,92.726,4.0,,Epic/Legacy,"P (P) 1977 Epic Records, a division of Sony Music Entertainment",9819 +9820,spotify:track:0C9yFow0aNM7suyA22MHyb,Living on the Edge,spotify:artist:7Ey4PD4MYsKc5I2dolUwbH,Aerosmith,spotify:album:4skJcvbbExtjX3rfRTlBfo,"ONE Presents agit8, Vol. 2",spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2013-06-14,https://i.scdn.co/image/ab67616d0000b2736499280e0cf1d4d1bee3a310,1,6,304203,https://p.scdn.co/mp3-preview/8b60372f0b6e625c61bcbb226c47c16fe4f93dd2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,agit820000t6,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,rock",0.289,0.763,2.0,-12.444,1.0,0.0431,0.00216,4e-05,0.538,0.3,82.819,4.0,,ONE,C 2013 The ONE Campaign. All rights reserved.,9820 +9821,spotify:track:14JzyD6FlBD5z0wV5P07YI,when the party's over,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,spotify:album:2DfPdWWXknoGKrfa2Eicyw,when the party's over,spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH,Billie Eilish,2018-10-17,https://i.scdn.co/image/ab67616d0000b27304b3aa9683e334b8140d19e7,1,1,199931,https://p.scdn.co/mp3-preview/2c7987ff3e9924676cf5573fea5b195ceb3be302?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71815958,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"art pop,pop",0.498,0.104,1.0,-14.08,0.0,0.0621,0.979,7.86e-05,0.0895,0.205,124.001,3.0,,Darkroom,"C © 2018 Darkroom/Interscope Records, P ℗ 2018 Darkroom/Interscope Records",9821 +9822,spotify:track:5XVcPmS61YC1kjcbqHlSkk,Woman - Mono; 2003 Remaster,spotify:artist:6lHC2EQMEMZiEmSfFloarn,Peter And Gordon,spotify:album:4J3Ei1ibnoclDjwNPYy4LJ,Peter And Gordon (1966) Plus,spotify:artist:6lHC2EQMEMZiEmSfFloarn,Peter And Gordon,1966-01-01,https://i.scdn.co/image/ab67616d0000b2734953392518a15e07b086bccd,1,7,146666,https://p.scdn.co/mp3-preview/59d85de735423eb79c1c8ea0380eb4c6baf2a6b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,GBAYE0300653,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"beatlesque,british blues,british invasion",0.609,0.548,11.0,-9.308,1.0,0.0281,0.451,2.84e-06,0.086,0.69,109.08,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",9822 +9823,spotify:track:1Y7gtQvTAga7oLUZdueApS,Born Together,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,spotify:album:2tZRoBOqmLy64lHwds1Kkl,Destination Now,spotify:artist:34sQ4BJAwfwQsn9OgJtIzj,The Potbelleez,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738387b53a693aba5553ef3175,1,9,287946,https://p.scdn.co/mp3-preview/53b15301e8f018b8ac2955b1459192a71e95b3b6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC01100671,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian dance,australian house",0.713,0.886,0.0,-4.312,1.0,0.0364,0.00601,0.0,0.286,0.48,130.033,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Vicious Recordings Pty Ltd, P ℗ 2011 Vicious Recordings Pty Ltd",9823 +9824,spotify:track:5JGdpqo9wrRtOZtui5GShI,Just Like Jesse James,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,spotify:album:3srdrIrP3V7LTmRujRfLhK,Heart Of Stone,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,1989-01-01,https://i.scdn.co/image/ab67616d0000b2737a1e0215c41f0ce411623301,1,2,245733,https://p.scdn.co/mp3-preview/187611c5e5cbf13019a019b64e2102523dc7c9df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USGF18923902,spotify:user:bradnumber1,2021-11-11T04:16:53Z,"dance pop,pop",0.4,0.563,8.0,-10.233,1.0,0.0307,0.17,0.0,0.133,0.442,138.006,4.0,,Geffen,"C © 1989 Geffen Records Inc., P ℗ 1989 Geffen Records Inc.",9824 +9825,spotify:track:0u3F62n2cC2lieckwwnL4o,Wishes,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,spotify:album:7rgGUwktG0QX2JJe7j4vdz,Telling Everybody,spotify:artist:72BTmmAO3QfETWlFjwjfJ1,Human Nature,1996-12-31,https://i.scdn.co/image/ab67616d0000b2732aa299e7d5b96f24130acc22,1,4,244506,https://p.scdn.co/mp3-preview/d649966dab1bb9e5fd25a4b39b81c6de82287027?cid=9950ac751e34487dbbe027c4fd7f8e99,False,19,AUSM09600113,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian rock,boy band",0.573,0.487,0.0,-10.315,1.0,0.0264,0.102,1.82e-06,0.104,0.268,98.259,4.0,,Columbia,P (P) 1997 SME (Australia) Ltd./Human Nature US LLC under exclusive license to Sony Music Entertainment,9825 +9826,spotify:track:3qs3aHNUcqFGv7jMYJJCYa,Weapon Of Choice (feat. Bootsy Collins) - Remastered Version,"spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW, spotify:artist:5K0rbdBrs2tNXe5LeWMATT","Fatboy Slim, Bootsy Collins",spotify:album:5vpSQUagobcDEf6IVcmM1m,Why Try Harder - The Greatest Hits,spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW,Fatboy Slim,2006-06-18,https://i.scdn.co/image/ab67616d0000b2735881f12ca6d02eb7987dd09b,1,4,219813,https://p.scdn.co/mp3-preview/7b277827ca1f344d29acd9a49b7e5c9668eeadc1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBMQ0600006,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica,funk,p funk,soul",0.62,0.952,8.0,-4.452,0.0,0.0579,0.135,0.788,0.184,0.949,195.926,4.0,,Skint Records,"C © 2006 Skint Records Limited, a BMG Company, P ℗ 2006 Skint Records Limited, a BMG Company",9826 +9827,spotify:track:0FXsG6FLVIgOZfoymG91HD,Born Slippy (Nuxx),spotify:artist:1PXHzxRDiLnjqNrRn2Xbsa,Underworld,spotify:album:4boW3crFtFF8NRFscqS79b,1992-2002,spotify:artist:1PXHzxRDiLnjqNrRn2Xbsa,Underworld,2003-01-01,https://i.scdn.co/image/ab67616d0000b2734f1c2479be0958060dfade19,1,9,454026,https://p.scdn.co/mp3-preview/3673b2bf43df7aa886027804db42255f0d999078?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBBLK0300194,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big beat,electronica",0.58,0.954,10.0,-8.939,1.0,0.0365,0.000895,0.456,0.56,0.331,140.037,4.0,,Underworldlive.com,"C Rick Smith & Karl Hyde t/a Underworld, P Rick Smith & Karl Hyde t/a Underworld",9827 +9828,spotify:track:5dEBcymDDG9TUjJnAouOPp,Step by Step,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,spotify:album:4GtmXlzXsP67AKOVT8LWKK,The Preacher's Wife,spotify:artist:6XpaIBNiVzIetEPCWDvAFP,Whitney Houston,1996-11-27,https://i.scdn.co/image/ab67616d0000b27318262e319060dda67816bca7,1,2,252533,https://p.scdn.co/mp3-preview/72d6e4eee0b2c23f4f315346b15b397547d8e58d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,50,USAR19600011,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.752,0.79,2.0,-8.648,1.0,0.0507,0.0797,5.78e-05,0.284,0.202,115.976,4.0,,Arista,P (P) 1996 Arista Records LLC,9828 +9829,spotify:track:6HZ9VeI5IRFCNQLXhpF4bq,I Love It (feat. Charli XCX),"spotify:artist:1VBflYyxBhnDc9uVib98rw, spotify:artist:25uiPmTg16RbhZWAqwLBy5","Icona Pop, Charli xcx",spotify:album:59ZxtwIOD1wowkNvVHXqtP,THIS IS... ICONA POP,spotify:artist:1VBflYyxBhnDc9uVib98rw,Icona Pop,2013-08-27,https://i.scdn.co/image/ab67616d0000b2734e2e6035e60579c7bdc6fb33,1,1,157152,https://p.scdn.co/mp3-preview/429e91c9cdcf45a97960ab87560953e894aac997?cid=9950ac751e34487dbbe027c4fd7f8e99,True,72,SEWEE1200301,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"candy pop,dance pop,electropop,metropopolis,swedish electropop,swedish synthpop,art pop,candy pop,metropopolis,pop,uk pop",0.711,0.906,8.0,-2.671,1.0,0.0284,0.00952,1.64e-05,0.153,0.824,125.916,4.0,,Record Company TEN/Big Beat/ATL,"C © 2013 Record Company TEN, under exclusive license to Atlantic Recording Corporation for the United States and WEA International for the world outside the United States ex Sweden, P ℗ 2013 Record Company TEN, under exclusive license to Atlantic Recording Corporation for the United States and WEA International for the world outside the United States ex Sweden",9829 +9830,spotify:track:2qkaOiJ0XetajJUP6ThgMB,Jump In My Car,spotify:artist:1o711LqmNPfr4wUF9KEJIE,Ted Mulry Gang,spotify:album:5HUtHxlUdzLohx6fadGfIE,Red Dog: True Blue - Original Motion Picture Soundtrack,spotify:artist:1sd3HsherSiotPlHChHZaK,Cezary Skubiszewski,2016-12-09,https://i.scdn.co/image/ab67616d0000b273caf01969fea405ffcadd9bdf,1,13,181946,https://p.scdn.co/mp3-preview/2cbb1f7461d67c3547f521d06e6231f6fc0f266e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,AUAP07400080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.769,0.721,2.0,-12.076,1.0,0.109,0.488,1.09e-06,0.316,0.857,123.057,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Woss Group Film Productions Pty Ltd, P This Compilation ℗ 2011 Woss Group Film Productions Pty Ltd",9830 +9831,spotify:track:6nz35DNIzbtj5ztpDEcW1j,"Kick, Push",spotify:artist:01QTIT5P1pFP3QnnFSdsJf,Lupe Fiasco,spotify:album:0TDJRkEr2SrhWTetdkEzED,Lupe Fiasco's Food & Liquor,spotify:artist:01QTIT5P1pFP3QnnFSdsJf,Lupe Fiasco,2006-06-27,https://i.scdn.co/image/ab67616d0000b273a81ec0503c55850ad4687940,1,4,254466,https://p.scdn.co/mp3-preview/b4df4dbc49975cf7449c5ac34349a07f957fbcc5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USAT20610039,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"chicago rap,conscious hip hop,hip hop,political hip hop,pop rap,rap,southern hip hop",0.652,0.809,5.0,-5.276,1.0,0.17,0.164,0.0,0.175,0.512,94.786,4.0,,Atlantic Records,"C © 2006 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States, P ℗ 2006 Atlantic Recoding Corporation for the United States and WEA International Inc. for the world outside of the United States.",9831 +9832,spotify:track:5VBcEJ4mtXTmVEJtc7hx2g,Midnight at the Oasis,spotify:artist:2VUiF0VFkXzB0DLg9AzrqT,Maria Muldaur,spotify:album:63Yg3UQS5VcHutEskCmFPC,Maria Muldaur,spotify:artist:2VUiF0VFkXzB0DLg9AzrqT,Maria Muldaur,1973,https://i.scdn.co/image/ab67616d0000b273cafa40bd320598b29ff4f87c,1,2,229506,https://p.scdn.co/mp3-preview/14a0dd8920aea08d9ffa034d3fc82431bfa4cf4f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,46,USRE10100264,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.705,0.499,1.0,-7.969,1.0,0.0265,0.409,6.59e-05,0.103,0.391,98.686,4.0,,Rhino/Warner Records,"C © 1973 Warner Records Inc., P ℗ 1973 Warner Records Inc. Marketed By Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",9832 +9833,spotify:track:57SpKmvGL4vlme4qxVoMzk,Jumpstart,spotify:artist:086Atz206AEeIFXOfwFPSn,These Kids Wear Crowns,spotify:album:4TeWHImoMLIrbQ1oJjIh96,Jumpstart,spotify:artist:086Atz206AEeIFXOfwFPSn,These Kids Wear Crowns,2011,https://i.scdn.co/image/ab67616d0000b27334caad757b9dfe2ecd958aea,1,3,208586,https://p.scdn.co/mp3-preview/4c11196e3de081278fb6763fe817f4b2b8822012?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,CAEZ11100034,spotify:user:bradnumber1,2021-08-08T09:26:31Z,canadian pop punk,0.575,0.959,9.0,-3.695,1.0,0.0633,0.0039,4.28e-05,0.294,0.864,143.999,4.0,,EMI Music Canada,"C © 2012 EMI Music Canada, P ℗ 2012 These Kids Wear Crowns",9833 +9834,spotify:track:6yXcmVKGjFofPWvW9ustQX,The Witch Queen of New Orleans,spotify:artist:0w7HLMvZOHatWVbAKee1zF,Redbone,spotify:album:7GCljXMi3WChErr3b8xl8R,The Essential Redbone,spotify:artist:0w7HLMvZOHatWVbAKee1zF,Redbone,2003-01-01,https://i.scdn.co/image/ab67616d0000b2739664387d422959620c0bbb53,1,2,165160,https://p.scdn.co/mp3-preview/92d57d48aecf48e83a79cb3e228ff1704fa339dd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,34,USSM10304756,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"native american contemporary,native american traditional",0.821,0.565,5.0,-8.816,0.0,0.0345,0.28,1.31e-06,0.0857,0.736,120.464,4.0,,Epic/Legacy,P This compilation (P) 2003 Sony Music Entertainment,9834 +9835,spotify:track:1YGZyfvdgZxzipWoWYVKxi,Kids In America,spotify:artist:73a6pNH4YtLNgDbPQwXveo,Kim Wilde,spotify:album:5vf8cU0vjl22ThptA93DDf,Kim Wilde,spotify:artist:73a6pNH4YtLNgDbPQwXveo,Kim Wilde,1981,https://i.scdn.co/image/ab67616d0000b273487fc5e15290dc70ec3154ae,1,5,205533,https://p.scdn.co/mp3-preview/6d6af7d109c48ccd100e6e0c169841a01eb584ba?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,GBAYE8100054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"new romantic,new wave,new wave pop",0.557,0.782,4.0,-3.899,1.0,0.0475,0.0953,6.75e-06,0.118,0.305,159.621,4.0,,Cherry Red Records,"C (C) 1988 Cherry Red Records Ltd, P (P) 1988 Cherry Red Records Ltd",9835 +9836,spotify:track:0B2109kxp9gsm2NcM0wUnP,Army of Two,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:2hOuWIWkhIxKXj6dUVI734,Right Place Right Time,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2012-11-23,https://i.scdn.co/image/ab67616d0000b27383a1b851143e6adaf56db39b,1,1,287133,https://p.scdn.co/mp3-preview/0c81c3d51e6fdf9be39039cb1d29a214ea89fa57?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1201980,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.46,0.806,5.0,-3.653,1.0,0.0446,0.18,4.86e-06,0.215,0.662,184.168,4.0,,Epic,P (P) 2012 Sony Music Entertainment UK Limited,9836 +9837,spotify:track:4BleCosIwhk39RY0YuZ7q5,Up/Down,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,spotify:album:2PzvfJGK74FgwPrvMB0qOh,Been Waiting,spotify:artist:6rHWAH6F4mr2AViSxMV673,Jessica Mauboy,2008-11-17,https://i.scdn.co/image/ab67616d0000b2732e14e3c145c0cac92a12feac,1,10,206226,https://p.scdn.co/mp3-preview/8dcf025e857e53dda98430474c9be955ea42c943?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUBM00800496,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian indigenous music,australian pop,australian talent show",0.69,0.883,1.0,-4.091,1.0,0.322,0.0103,0.0,0.344,0.642,123.123,4.0,,Sony BMG Music Entertainment,P (P) 2008 SONY BMG Music Entertainment (Australia) Pty Limited,9837 +9838,spotify:track:6LtPIXlIzPOTF8vTecYjRe,Bleeding Love,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,spotify:album:7t1veDv7FWHYXskQEoU7dq,Spirit,spotify:artist:5lKZWd6HiSCLfnDGrq9RAm,Leona Lewis,2007,https://i.scdn.co/image/ab67616d0000b273e6ad6ae83f74c9e3eb3132ab,1,1,262693,https://p.scdn.co/mp3-preview/068f41d644b4e5d15f390bd995628f03166219c7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,GBHMU0700049,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"british soul,dance pop,pop,talent show",0.635,0.647,5.0,-5.864,1.0,0.0366,0.192,0.0,0.154,0.201,104.058,4.0,,Syco Music UK,"P Track 14 (P) 2006; Tracks 1, 2, 4-13 (P) 2007; Tracks 3, 15-17 (P) 2008 Simco Limited exclusively licensed to Sony BMG Music Entertainment (UK) Limited",9838 +9839,spotify:track:6gXrEUzibufX9xYPk3HD5p,Life in the Fast Lane - 2013 Remaster,spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,spotify:album:2widuo17g5CEC66IbzveRu,Hotel California (2013 Remaster),spotify:artist:0ECwFtbIWEVNwjlrfc6xoL,Eagles,1976-12-08,https://i.scdn.co/image/ab67616d0000b2734637341b9f507521afa9a778,1,3,286219,https://p.scdn.co/mp3-preview/adfa7db3ef7838cc4a2a658a7b88da617e02575c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,USEE11300355,spotify:user:bradnumber1,2022-08-26T01:21:45Z,"album rock,classic rock,heartland rock,mellow gold,rock,soft rock,yacht rock",0.667,0.755,9.0,-7.246,1.0,0.069,0.0966,6.94e-05,0.0523,0.883,109.535,4.0,,Rhino/Elektra,"C © 1976 Elektra Records., P ℗ 1976 Elektra Records. Marketed by Warner Strategic Marketing, a Warner Music Group Company.",9839 +9840,spotify:track:2xQCEicau6wtxuOtsR6RLp,Spiderman Theme (Karaoke Version With Background Vocals) - Originally Performed By Michael Bublé,spotify:artist:4iMzkXwBQHTYmyoR0teiDh,A-Type Player,spotify:album:7dI1Fy3N3wUFb6MN0670ie,"Karaoke Hits Michael Bublé, Vol. 3 (Karaoke Version)",spotify:artist:4iMzkXwBQHTYmyoR0teiDh,A-Type Player,2013-06-21,https://i.scdn.co/image/ab67616d0000b273405214851ef19211fa532bf7,1,4,179383,,False,0,FR6V81814154,spotify:user:bradnumber1,2020-03-05T09:20:46Z,,0.72,0.424,2.0,-10.561,0.0,0.0547,0.0728,0.645,0.223,0.42,89.029,4.0,,Karaoke Planet LTD,"C 2013 Karaoke Planet LTD, P 2013 Karaoke Planet LTD",9840 +9841,spotify:track:5JaN7UNzRF91yL5cpFrOPF,Indian Lake,spotify:artist:4ZSzroBNV7HzBDO9aohuF1,The Cowsills,spotify:album:6ScYoxbU7dhJwXPM46UjhX,Captain Sad And His Ship Of Fools,spotify:artist:4ZSzroBNV7HzBDO9aohuF1,The Cowsills,1968-09-01,https://i.scdn.co/image/ab67616d0000b27317d61ac888301c79753938ec,1,3,163546,https://p.scdn.co/mp3-preview/db836e99865bb8d0ae5efe55f3e69b83216460f3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,USUR10110639,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,underground power pop",0.695,0.652,7.0,-9.051,1.0,0.0316,0.074,6.89e-05,0.0787,0.962,131.857,4.0,,Mercury Records,"C © 1968 Mercury Records, a Division of UMG Recordings, Inc., P ℗ 1968 Mercury Records, a Division of UMG Recordings, Inc.",9841 +9842,spotify:track:6LyPQFrYdVvx5d3Lppl1U1,Automatic,spotify:artist:5IChonV8p97d8qB7MDGNWH,Angel Azmeer,spotify:album:3iUKH6CluxCL9lIwGmxYXG,Automatic,spotify:artist:5IChonV8p97d8qB7MDGNWH,Angel Azmeer,2021-02-09,https://i.scdn.co/image/ab67616d0000b2731849ceceddc88372fda3eb6e,1,1,185730,https://p.scdn.co/mp3-preview/0be547cb7bee8b8b9b9e9e2581ac19fd501328e0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QZFZ62135279,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.578,0.855,2.0,-4.738,0.0,0.0358,0.00424,0.0,0.136,0.883,136.897,4.0,,2062505 Records DK,"C 2021 2062505 Records DK, P 2021 2062505 Records DK",9842 +9843,spotify:track:4ugiioHspSB5w8LyRKCv0G,Mary Had A Little Lamb - 2018 Remaster,spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,spotify:album:1RzrSgWinUzgsnw3oQDXOy,Red Rose Speedway (Archive Collection),spotify:artist:3sFhA6G1N0gG1pszb6kk1m,Wings,1973-04-30,https://i.scdn.co/image/ab67616d0000b273395734c8512bd160c6ee3f56,2,1,212920,https://p.scdn.co/mp3-preview/5dd1b0e08fcae56fc2d41fe2fca98fcede89fec6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,25,GBCCS1800093,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,art rock,classic rock,folk rock,mellow gold,rock,singer-songwriter,soft rock",0.485,0.444,7.0,-13.472,1.0,0.0286,0.739,0.0235,0.116,0.515,175.736,3.0,,Paul McCartney Catalog,"C © 2018 MPL Communications Inc, P ℗ 1973 MPL Communications Inc",9843 +9844,spotify:track:1UUjgfc8CntFDAMjJIe5sl,Put 'Em High - StoneBridge & JJ Radio,"spotify:artist:1jpQ5Xepnpx5YAqKQITP4A, spotify:artist:4wfoAaFRdaZdrn782iDlCD","StoneBridge, Therese",spotify:album:41UwOQrkL7LIbv3gyljjpZ,"Put 'Em High (2016 Remixes, Pt. 1)",spotify:artist:1jpQ5Xepnpx5YAqKQITP4A,StoneBridge,2016-08-01,https://i.scdn.co/image/ab67616d0000b273f4318632231cab1fee54bda4,1,5,204378,https://p.scdn.co/mp3-preview/b97c944ba166d76c8bbc8ac76b52b75b39057c79?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,SEXMA1600042,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,vocal house",0.621,0.935,10.0,-2.893,0.0,0.0325,0.00106,0.0105,0.456,0.668,127.988,4.0,,Stoney Boy Music,"C StoneBridge Productions, P StoneBridge Productions",9844 +9845,spotify:track:6wY3O8syB9UoYGFcojLv4c,Let's Get Loud,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,spotify:album:35pQoBuosurSPDG6vQlT0I,On The 6,spotify:artist:2DlGxzQSjYe5N6G9nkYghR,Jennifer Lopez,1999,https://i.scdn.co/image/ab67616d0000b2730ef67d97344822ad1fffcb16,1,5,239400,https://p.scdn.co/mp3-preview/8b0136f43e98d48fb26b6bb32dfab537d322f949?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM19900597,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,urban contemporary",0.82,0.937,5.0,-4.81,0.0,0.0551,0.135,0.000128,0.35,0.906,130.993,4.0,,Work,P (P) 1999 Sony Music Entertainment Inc.,9845 +9846,spotify:track:0djCf3BB3v3xcovRgfI2R7,Shot Caller - Radio Edit,spotify:artist:2QFXAOEj2ow8a3xVkD8Ntg,Ian Carey,spotify:album:2DfD7akAMzjEjLmQDSf6XG,Shot Caller,spotify:artist:2QFXAOEj2ow8a3xVkD8Ntg,Ian Carey,2009-01-01,https://i.scdn.co/image/ab67616d0000b27343fcbcf7cb7f71652ded898d,1,1,188746,https://p.scdn.co/mp3-preview/316228d2f1ed51cbd4e2196a08152f1b2bbc34fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUVC00927112,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.727,0.838,9.0,-3.474,0.0,0.0325,0.00677,0.00099,0.0773,0.693,127.945,4.0,,Universal Music Australia Pty. Ltd.,"C © 2009 Spinnin' Records, P ℗ 2009 Spinnin' Records",9846 +9847,spotify:track:5YgaxBGE09BdrdpEwkvpx2,Someday Never Comes,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,spotify:album:4HirIvj3y4Ok3o2MCZtdfB,Mardi Gras,spotify:artist:3IYUhFvPQItj6xySrBmZkd,Creedence Clearwater Revival,1972-04-11,https://i.scdn.co/image/ab67616d0000b2738be6c7e974cc6c9ac8d5be86,1,5,239506,https://p.scdn.co/mp3-preview/a6ee3b7ad69f8a70cb2a8f8951f8a03bf29de066?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USFI87200107,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,mellow gold,rock,southern rock,swamp rock",0.69,0.367,11.0,-14.697,1.0,0.0368,0.036,0.0,0.0774,0.324,136.945,4.0,,Craft Recordings,"C © 1989 Fantasy, Inc., P This Compilation ℗ 1989 Fantasy, Inc.",9847 +9848,spotify:track:17S4XrLvF5jlGvGCJHgF51,Learning To Fly,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:42G5ULkCRRl3crJMlg6eKd,Into The Great Wide Open,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,1991-01-01,https://i.scdn.co/image/ab67616d0000b27327bd7d234a31296df34b9a64,1,1,242106,https://p.scdn.co/mp3-preview/224f23e906fa5154bf3643c4d93b51a35f12f949?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USMC19135647,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.652,0.766,0.0,-9.938,1.0,0.0299,0.205,0.00104,0.362,0.948,116.739,4.0,,Tom Petty P&D,"C © 1991 MCA Records Inc., P ℗ 1991 Geffen Records",9848 +9849,spotify:track:4qOnrKELf9ahYOAaAMJhvR,I Send A Message,spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,spotify:album:2fxoua5j7qfLmQGkf1TPIN,The Swing (Remastered),spotify:artist:1eClJfHLoDI4rZe5HxzBFv,INXS,2011-01-01,https://i.scdn.co/image/ab67616d0000b2738de28789982cd390affd9c5b,1,3,202426,https://p.scdn.co/mp3-preview/38cd13e30a8afbdc2ca50acd3bec5aa7f6f4c63d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF050190176,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,australian rock,dance rock,funk rock,new romantic,new wave,new wave pop,rock",0.816,0.508,0.0,-6.839,1.0,0.0644,0.0788,0.532,0.0745,0.666,136.439,4.0,,Universal Music Group,"C © 2011 Universal International Music BV, under exclusive license to Mercury Records Limited, P ℗ 2011 Universal International Music BV, under exclusive license to Mercury Records Limited",9849 +9850,spotify:track:3zEN0ii6s4DHHBpnTp3RP7,We Are The People,spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,spotify:album:5B6XfyHHYawyLkEvNvhSPh,Walking On A Dream (10th Anniversary Edition),spotify:artist:67hb7towEyKvt5Z8Bx306c,Empire Of The Sun,2008-10-03,https://i.scdn.co/image/ab67616d0000b273f3aa0e6ca22a382007f61e4d,1,4,267373,https://p.scdn.co/mp3-preview/f0386090a391d2cf72f97c60de6e8d2bb4ea509e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,AUEI10800041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,australian electropop,dance rock,indietronica,neo-synthpop",0.675,0.781,4.0,-5.404,0.0,0.0306,0.0801,0.0143,0.422,0.534,122.989,4.0,,EMI Recorded Music Australia Pty Ltd,"C © 2008 The Sleepy Jackson Pty Ltd and Nick Littlemore, under exclusive license to Universal Music Australia Pty Ltd, P ℗ 2019 The Sleepy Jackson Pty Ltd and Nick Littlemore, under exclusive license to Universal Music Australia Pty Ltd",9850 +9851,spotify:track:3OFacwSNvln7Bcx3wGOpjV,Who'd Have Known,spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,spotify:album:4zZKTqu7DkowQnO9Bcx4KX,"It's Not Me, It's You (Special Edition)",spotify:artist:13saZpZnCDWOI9D4IJhp1f,Lily Allen,2008-12-02,https://i.scdn.co/image/ab67616d0000b27340c8d7aaf779b7a715dba250,1,9,230986,https://p.scdn.co/mp3-preview/08c392ff3871ccec56a4d5b170a7f5fc840df4b3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBAYE0802266,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,electropop,neo mellow",0.662,0.624,10.0,-7.552,1.0,0.0408,0.468,1.42e-05,0.109,0.524,83.979,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",9851 +9852,spotify:track:2QZ7WLBE8h2y1Y5Fb8RYbH,In My Blood,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,spotify:album:2VP96XdMOKTXefI8Nui23s,Shawn Mendes,spotify:artist:7n2wHs1TKAczGzO7Dd2rGr,Shawn Mendes,2018-05-25,https://i.scdn.co/image/ab67616d0000b273269423eb6467e308c0fbce24,1,1,211360,https://p.scdn.co/mp3-preview/b5a073a40111e1223cfded8e044fc786d45a098d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USUM71803183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,pop,viral pop",0.622,0.711,5.0,-7.321,1.0,0.0665,0.0573,0.0,0.13,0.487,140.016,4.0,,Island Records,"C © 2018 Island Records, a division of UMG Recordings, Inc., P ℗ 2018 Island Records, a division of UMG Recordings, Inc.",9852 +9853,spotify:track:2VYF84ZzEofEYYg0cCxETc,Try A Little Kindness,spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,spotify:album:603XhffvsDxOP8vqLdtt0N,Try A Little Kindness,spotify:artist:59hLmB5DrdihCYtNeFeW1U,Glen Campbell,1970-01-01,https://i.scdn.co/image/ab67616d0000b27343c5c3d0fbce96308428aa04,1,1,146293,https://p.scdn.co/mp3-preview/0880d9da73aafebf683ba265d19c32e030d1b67e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,43,USCN19000091,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,arkansas country,classic country pop,folk rock,mellow gold,nashville sound,singer-songwriter,soft rock",0.323,0.666,4.0,-5.925,1.0,0.0336,0.31,0.0,0.163,0.733,176.449,4.0,,Capitol Nashville,"C © 1970 Capitol Records Nashville, P ℗ 1970 Capitol Records Nashville",9853 +9854,spotify:track:6RACRIwdpTVMGQQCVnNQ4d,Hold On To Me,spotify:artist:1iES8Ckei3eLmSBPo4vwU7,The Black Sorrows,spotify:album:1r92h0aJLyowD9ZO3ka60v,Hold On To Me,spotify:artist:1iES8Ckei3eLmSBPo4vwU7,The Black Sorrows,1988-09-23,https://i.scdn.co/image/ab67616d0000b27331083ca1c9c659ee9f25a937,1,6,230866,https://p.scdn.co/mp3-preview/c27dfe5e97895fe96093159e935f3ede4beff1b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,31,AUSM08800009,spotify:user:bradnumber1,2022-12-30T09:51:06Z,australian rock,0.367,0.599,2.0,-11.992,1.0,0.0283,0.0199,0.0118,0.469,0.515,74.073,4.0,,Columbia,P (P) 1988 Sony Music Entertainment Pty Ltd,9854 +9855,spotify:track:5UxO8ffGoNLoYxEvTce94x,Loud,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,spotify:album:4emEeZC8qkM5fGQH0kPfxL,The Platinum Collection,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,2009,https://i.scdn.co/image/ab67616d0000b2733010dd3f349e856ddcbbaccc,3,2,204426,https://p.scdn.co/mp3-preview/93d469c0b23635fd4a938934902d99024249e781?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,AUBM01100212,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,nz christian,nz pop",0.524,0.854,8.0,-4.237,0.0,0.122,0.0118,0.0,0.0861,0.528,122.066,4.0,,Sony Music Entertainment,P (P) 2009 Sony Music Entertainment Australia Pty Ltd./(P) 2010 Sony Music Entertainment Australia Pty Ltd./(P) 2011 Sony Music Entertainment Australia Pty Ltd./(P) 2013 Sony Music Entertainment Australia Pty Ltd.,9855 +9856,spotify:track:4PXBKAIwXNzUa67cbInmXo,Are You Sure,spotify:artist:5W5bDNCqJ1jbCgTxDD0Cb3,Willie Nelson,spotify:album:1CHi9dLYMpVv9seu83fRPA,"Willie Nelson: The Demos Project, Vol. One",spotify:artist:5W5bDNCqJ1jbCgTxDD0Cb3,Willie Nelson,2016-09-16,https://i.scdn.co/image/ab67616d0000b273b5bb55775aaceeb5922d65dc,1,6,127454,https://p.scdn.co/mp3-preview/343287b56e418c24b3417db76077b73af9afdac3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,33,USJGN1614363,spotify:user:bradnumber1,2022-09-19T23:21:22Z,"classic country pop,classic texas country,country,country rock,nashville sound,outlaw country,singer-songwriter",0.586,0.0205,10.0,-15.556,1.0,0.0559,0.961,1.91e-06,0.11,0.253,94.463,4.0,,Sony/ATV Music,C (C) 2016 Sony/ATV Nashville,9856 +9857,spotify:track:4eMbgfBGNcFv0AriFimABg,Wake Up Call,spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,spotify:album:1cCm3jwAW9eJtEGyzpxlXY,It Won't Be Soon Before Long (International Version),spotify:artist:04gDigrS5kc9YWfZHwBETP,Maroon 5,2007-01-01,https://i.scdn.co/image/ab67616d0000b27321c49f0a1e28ad3ab71311bc,1,4,201306,https://p.scdn.co/mp3-preview/268b44d30eff26761839b55d7581a70f23519f58?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70731561,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.632,0.949,4.0,-2.671,0.0,0.0593,0.0302,0.0,0.0871,0.969,164.118,4.0,,Universal Music Group,"C © 2007 A&M/Octone Records, P ℗ 2007 Interscope Records",9857 +9858,spotify:track:75zVpdjXwmy6SLr2hDnJYo,"Bad Case Of Loving You (Doctor, Doctor)",spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,spotify:album:4ztXLrIvvEBxJ6VcISGb2d,Secrets,spotify:artist:530Sdm7eqqzWBdDmILMgnu,Robert Palmer,1979-01-15,https://i.scdn.co/image/ab67616d0000b273d969642aa5faa127aec35dd5,1,1,192440,https://p.scdn.co/mp3-preview/57428fddf767d3093b29ca3aba8c77de86afbb46?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR27900020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,dance rock,mellow gold,new romantic,new wave,new wave pop,singer-songwriter,soft rock,yacht rock",0.677,0.748,4.0,-12.328,1.0,0.038,0.00701,3.99e-05,0.093,0.746,146.03,4.0,,Island Records,"C © 1979 UMG Recordings Inc., P A Island Records release; ℗ 1979 UMG Recordings Inc.",9858 +9859,spotify:track:1UwriLz98ILbRhrtohTca1,The Wanderer,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,spotify:album:56sNE1JDGLJLDRK5F83Q0N,The Best Of Dion,spotify:artist:15FyiY3ChN0QRspHIQYq0W,Dion,2001-01-01,https://i.scdn.co/image/ab67616d0000b273a3e6c82b3ac285c1fe1978e2,1,6,167160,https://p.scdn.co/mp3-preview/0f2d7eac3be0bf55f0f316229af745a248659666?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USLA18800001,spotify:user:bradnumber1,2023-02-14T22:33:22Z,"doo-wop,rock-and-roll,rockabilly",0.623,0.48,2.0,-13.215,1.0,0.0392,0.193,0.0,0.11,0.842,114.437,4.0,,Capitol Records (CAP),"C © 2001 Capitol Records LLC, P ℗ 2001 Capitol Records LLC",9859 +9860,spotify:track:1eGYirwbCEhehpvytx7BRd,Come Together,spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,spotify:album:4Cq3OcsC1jw9fhHiVdsFXv,"HIStory - PAST, PRESENT AND FUTURE - Book I",spotify:artist:3fMbdgg4jU18AjLCKBhRSm,Michael Jackson,1995-06-16,https://i.scdn.co/image/ab67616d0000b2739993912d6004c1d752242fca,1,23,242333,https://p.scdn.co/mp3-preview/25d7cadfe00a8268a22488cbee2d916c6f00b502?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM18800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"r&b,soul",0.825,0.775,11.0,-6.161,0.0,0.0381,0.112,0.000678,0.0782,0.765,89.601,4.0,,Epic,"C (P) 1979, 1982, 1987, 1988, 1991, 1995 MJJ Productions Inc.",9860 +9861,spotify:track:2OGmG8TwGon9uwHFUQM46K,One Night Stand,spotify:artist:6csA2rxNLkQJXeEa7lyGXn,Mis-Teeq,spotify:album:5TMQsvBUkHGxOEnPEVPrj3,Lickin' On Both Sides,spotify:artist:6csA2rxNLkQJXeEa7lyGXn,Mis-Teeq,2001,https://i.scdn.co/image/ab67616d0000b27387bd52865aa81e5f069589dc,1,1,207466,https://p.scdn.co/mp3-preview/3c73d28aefe7b24d0a3449c2e91501b83926756f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,GBAWV0102657,spotify:user:bradnumber1,2023-01-31T06:31:40Z,"girl group,uk garage",0.851,0.66,0.0,-4.181,1.0,0.0938,0.384,1.07e-06,0.096,0.781,101.007,4.0,,Mis-Teeq Recordings,"C (C) 2001 Mis-Teeq, P (P) 2001 Mis-Teeq",9861 +9862,spotify:track:2kA0IBd1u0Be6QJE60Ty6F,Behind Blue Eyes,spotify:artist:165ZgPlLkK7bf5bDoFc6Sb,Limp Bizkit,spotify:album:67iZAEB1D2l5dEz7zhwglK,Results May Vary (EU Version),spotify:artist:165ZgPlLkK7bf5bDoFc6Sb,Limp Bizkit,2003-01-01,https://i.scdn.co/image/ab67616d0000b273458bf76d877e7f8260a8490e,1,15,269973,https://p.scdn.co/mp3-preview/9e40156e0c440e12466510f9531430a119e167ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10312186,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,funk metal,nu metal,post-grunge,rap metal,rock",0.587,0.476,7.0,-6.64,1.0,0.0265,0.473,0.0,0.109,0.085,120.268,4.0,,Universal Music Ltd.,"C (C) 2003 Flip/Interscope Records, P (P) 2003 Flip/Interscope Records",9862 +9863,spotify:track:2EzaNI2kE2AoBfJ8mRZLSJ,Animal - Remastered,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,spotify:album:3BSOiAas8BpJOii3kCPyjV,Vs.,spotify:artist:1w5Kfo2jwwIPruYS2UWh56,Pearl Jam,1993-10-19,https://i.scdn.co/image/ab67616d0000b273777344aba9d5b5785b4593a5,1,2,167520,https://p.scdn.co/mp3-preview/0d5ee1d68fb31729125b3274553850fec20d6a8b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USSM11100213,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,permanent wave,rock",0.494,0.955,7.0,-4.984,1.0,0.0626,7.74e-05,2.77e-06,0.051,0.487,106.087,4.0,,Epic/Legacy,"P (P) 1993, 2011 Sony Music Entertainment",9863 +9864,spotify:track:68gk1zzXo4THadtdvQPevj,Surrender - Ultamix,spotify:artist:2e4nwiX8ZCU09LGLOpeqTH,Laura Pausini,spotify:album:7LqbYgJz8kqQVnRgr4Sw4v,From the Inside,spotify:artist:2e4nwiX8ZCU09LGLOpeqTH,Laura Pausini,2002-11-05,https://i.scdn.co/image/ab67616d0000b273d47717ff8d285bb8559f20dc,1,3,236253,https://p.scdn.co/mp3-preview/caa48c24166f7656b65291a90456640be56bb4c5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,ITR000200105,spotify:user:bradnumber1,2022-05-02T07:06:12Z,"europop,italian adult pop,latin arena pop,mexican pop",0.641,0.889,9.0,-2.898,1.0,0.0336,0.0252,0.0,0.233,0.414,125.944,4.0,,CGD/EastWest Italy,"C © 2003 Atlantic Recording Corporation, P ℗ 2003 CGD East West divisione Warner Music Italia S.r.l.",9864 +9865,spotify:track:43z6scIZU2QcEieMQFAJRG,There She Goes,spotify:artist:0lJlKQvuM2Sd9DPPyUXcHg,Sixpence None The Richer,spotify:album:0PrcwzkQVEy4y6JPvT5bix,Sixpence None the Richer,spotify:artist:0lJlKQvuM2Sd9DPPyUXcHg,Sixpence None The Richer,1997-11-22,https://i.scdn.co/image/ab67616d0000b273b182816802535e73e697a1a6,1,13,164280,https://p.scdn.co/mp3-preview/af4aed99682bc454c0f6547e979fbc1652d69f3f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USEE19900321,spotify:user:bradnumber1,2021-11-20T11:28:31Z,"lilith,pop rock",0.498,0.789,10.0,-5.724,1.0,0.0319,0.000856,5.83e-06,0.104,0.455,120.176,4.0,,Word Entertainment,"C 1996 Squint Entertainment, P 1996 Squint Entertainment",9865 +9866,spotify:track:0JXpXhCI4mm2VKnrYSFO71,Wild,"spotify:artist:2gsggkzM5R49q6jpPvazou, spotify:artist:0c173mlxpT3dSFRgMO8XPh, spotify:artist:0gusqTJKxtU1UTmNRMHZcv","Jessie J, Big Sean, Dizzee Rascal",spotify:album:1d2u8egQLmE07acQGypt1P,Alive,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2013-01-01,https://i.scdn.co/image/ab67616d0000b2735a8bd9a642d34f267ecd2b55,1,10,234293,https://p.scdn.co/mp3-preview/779c9d1416aa46aa3875b92bc103043712ba8141?cid=9950ac751e34487dbbe027c4fd7f8e99,False,10,USUM71306454,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,detroit hip hop,hip hop,pop rap,r&b,rap,southern hip hop,trap,grime,instrumental grime",0.798,0.778,11.0,-8.633,0.0,0.29,0.00684,1.79e-06,0.0883,0.403,129.028,4.0,,Lava Music/Republic Records,"C © 2013 Universal Republic Records, P ℗ 2013 Universal Republic Records",9866 +9867,spotify:track:37ncw2kChEJzbmmKMzGAoE,January,spotify:artist:6PwcexHTG0qJWQQwp05Bpm,Pilot,spotify:album:5NCSNT4vDHBWpqwlHsGmmT,Second Flight,spotify:artist:6PwcexHTG0qJWQQwp05Bpm,Pilot,1975,https://i.scdn.co/image/ab67616d0000b27335742f766a4d2c34437d9539,1,10,211920,https://p.scdn.co/mp3-preview/fda8ab2a15f9ac8d7718f3eb42e05a0fcc54b0d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,38,GBAYE7400223,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic uk pop,glam rock",0.664,0.807,5.0,-5.684,1.0,0.0396,0.157,0.0,0.0788,0.917,125.295,4.0,,Parlophone UK,"C © 2009 Parlophone Records Ltd, a Warner Music Group Company, P ℗ 2009 Parlophone Records Ltd, a Warner Music Group Company",9867 +9868,spotify:track:63nVsCAdxu9OdeRhe58wiE,Broken Wings,spotify:artist:7Bah8E0kCETqEpAHI6CPzQ,Mr. Mister,spotify:album:1vmioa1hsabaxkYnYKROT1,Welcome To The Real World,spotify:artist:7Bah8E0kCETqEpAHI6CPzQ,Mr. Mister,1985-06-01,https://i.scdn.co/image/ab67616d0000b2738a5eb88a1d4e55c2f2a11bf7,1,8,345840,https://p.scdn.co/mp3-preview/3872bf9a951ffaec4736559534ccdf95aede1267?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC18404638,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,new romantic,new wave pop,soft rock,synthpop",0.286,0.473,1.0,-15.646,0.0,0.0388,0.115,4.23e-05,0.071,0.449,99.233,4.0,,RCA Records Label,P (P)1985 RCA/Ariola International,9868 +9869,spotify:track:6R7oXcMR4Md2skimkNYkVG,Everybody,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,spotify:album:1KUpDbgYiSMAY5sxhp2oFk,Everybody,spotify:artist:7t4XHvWfj0XtEB8SNFeALw,Tommy Roe,2014-03-06,https://i.scdn.co/image/ab67616d0000b273566a03f45351fe45e84c0b89,1,1,115539,https://p.scdn.co/mp3-preview/2dfbedf605a81652831c4b63776b1e12825ae3ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMDA71491586,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"bubblegum pop,classic garage rock,merseybeat,rock-and-roll",0.561,0.476,4.0,-10.537,1.0,0.0308,0.583,0.0,0.402,0.887,142.32,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,9869 +9870,spotify:track:4UZifG6wVTl3dFIeHKLi8y,Promises,spotify:artist:4uRYpUQZrNrY5t8tAv3XrD,NERO,spotify:album:6GazPcWYAUnvB83tXIbs97,Welcome Reality,spotify:artist:4uRYpUQZrNrY5t8tAv3XrD,NERO,2011-01-01,https://i.scdn.co/image/ab67616d0000b27386628b6bf19b2bcb52ed2ed0,1,13,257386,https://p.scdn.co/mp3-preview/1074673973b7e42c94334527a92d4282afe2397f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,53,GBUM71105544,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"complextro,edm,electro house,melodic dubstep",0.484,0.943,9.0,-4.364,0.0,0.0647,3.77e-05,0.00452,0.593,0.345,143.933,4.0,,EMI,"C © 2011 MTA Records LLP under exclusive license to Mercury Records Limited, P ℗ 2011 MTA Records LLP under exclusive license to Mercury Records Limited",9870 +9871,spotify:track:789lq0oHhOa4pHh2y9rjkN,Wheels,spotify:artist:7CG3fjmCcZHXOnxYrpgE6W,The String-A-Longs,spotify:album:7bdYWc82ghgo6dCOupoVpp,The Very Best Of The String-A-Longs,spotify:artist:7CG3fjmCcZHXOnxYrpgE6W,The String-A-Longs,2005-09-06,https://i.scdn.co/image/ab67616d0000b273690776103185725b62ba000e,1,1,116360,https://p.scdn.co/mp3-preview/e97643e56de05beb74c9b6d19589daed9662775a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA560592846,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.787,0.623,0.0,-8.241,1.0,0.0359,0.689,0.0932,0.144,0.869,128.327,4.0,,Warwick Records,"C (C) 2005 MC Productions Limited, P (P) 2005 MC Productions Limited",9871 +9872,spotify:track:3SC4yUuwlSL8NvsYgo7B0M,According To You,spotify:artist:0yNy8fi1yBBq526E6mx4Zs,Orianthi,spotify:album:4ps9d2RTyOhEOjRBwHhFYH,Believe (International Version),spotify:artist:0yNy8fi1yBBq526E6mx4Zs,Orianthi,2009-01-01,https://i.scdn.co/image/ab67616d0000b273edffcbf36a82e85e4c4c02b2,1,1,200253,https://p.scdn.co/mp3-preview/dfa85e2597c5573d52c3668da85f28d554d2c3df?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USUM70984867,spotify:user:bradnumber1,2021-08-08T09:26:31Z,candy pop,0.612,0.917,5.0,-2.549,1.0,0.0542,0.0227,5.45e-06,0.105,0.54,131.011,4.0,,Geffen,"C © 2009 Geffen Records, P ℗ 2009 Geffen Records",9872 +9873,spotify:track:2NoaaRL9Pe8scI91PJ3PD5,Buttons - Final Edit Version,"spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ, spotify:artist:7hJcb9fa4alzcOq3EaNPoG","The Pussycat Dolls, Snoop Dogg",spotify:album:2VL2gWE6J6VxTb9KhPfxGM,Buttons (International Version),spotify:artist:6wPhSqRtPu1UhRCDX5yaDJ,The Pussycat Dolls,2006-01-01,https://i.scdn.co/image/ab67616d0000b2739d0b59312ed29095a86ef185,1,1,233186,https://p.scdn.co/mp3-preview/e4370e7ca2ba643072ba1c568aa4c29bdbd6063c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70602496,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,girl group,pop,g funk,gangster rap,hip hop,pop rap,rap,west coast rap",0.478,0.829,11.0,-4.222,0.0,0.378,0.206,0.0,0.255,0.506,210.796,4.0,,A&M,"C © 2006 Pussycat Dolls, LLC, P ℗ 2006 Pussycat Dolls, LLC",9873 +9874,spotify:track:3DlRZM6zKSlAZigHbJQ3cp,Beautiful Stranger,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:43lok9zd7BW5CoYkXZs7S0,Celebration (double disc version),spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,2009-09-18,https://i.scdn.co/image/ab67616d0000b2736b44fa8f5415cc4c945117be,1,31,260760,https://p.scdn.co/mp3-preview/66db04deed8afeddc1915c9e1b5545580f385081?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USWB10903628,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.521,0.757,11.0,-3.909,1.0,0.0288,0.122,3.34e-05,0.389,0.287,122.442,4.0,,Warner Records,"C © 2009 Warner Records Inc., P ℗ 2009 This Compilation P2009 Warner Records Inc.",9874 +9875,spotify:track:2aEeghgUcnu75tzcolFMfs,La Bamba - Single Version,spotify:artist:5Y9xEAGW4GwGJgbiI6W85P,Ritchie Valens,spotify:album:77UI8F1LuhiQaKIL1qOE1W,Ritchie Valens,spotify:artist:5Y9xEAGW4GwGJgbiI6W85P,Ritchie Valens,1959,https://i.scdn.co/image/ab67616d0000b2737723fdc89d8e25e65aa6730d,1,7,126960,https://p.scdn.co/mp3-preview/b460e782da73afa26d3882db0cfb052e7cfe9947?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USRH10402003,spotify:user:bradnumber1,2024-01-02T05:24:28Z,"rock-and-roll,rockabilly",0.516,0.809,0.0,-6.419,1.0,0.0545,0.787,0.000331,0.303,0.939,75.099,4.0,,Rhino/Del-Fi,"C © 1959 Del-Fi Records, P ℗ 1959 Rhino Entertainment, A Warner Music Group Company.",9875 +9876,spotify:track:4LjfIjS8iweFCPdKxLnEoV,Let Me Think About It,"spotify:artist:30ut8L4gmEz4vNr1zNhpbh, spotify:artist:7dc6hUwyuIhrZdh80eaCEE","Ida Corr, Fedde Le Grand",spotify:album:4nLyl2aEgi2qQrcPiFlmD7,Singled Out,spotify:artist:30ut8L4gmEz4vNr1zNhpbh,Ida Corr,2013-05-03,https://i.scdn.co/image/ab67616d0000b273568636ad464813b16a94292a,1,5,151983,https://p.scdn.co/mp3-preview/9a19af1fb267c81bb4194add985d843fc87592b8?cid=9950ac751e34487dbbe027c4fd7f8e99,False,68,DKUCA0700015,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"scandipop,dutch house,edm,electro house,house,pop dance,progressive electro house,progressive house",0.762,0.754,0.0,-3.425,0.0,0.046,0.00022,0.0665,0.146,0.715,129.026,4.0,,Lifted House,"C (C) 2013 Lifted House, P (P) 2012 Lifted House",9876 +9877,spotify:track:5ijpy4l0nKZPIKHui6SQfE,Look Into My Eyes,spotify:artist:5uEeqYFuIChoWKy34jp8xE,Brando,spotify:album:7DnfkpW8qZvwrd5juFewce,Look Into My Eyes,spotify:artist:5uEeqYFuIChoWKy34jp8xE,Brando,2020-01-10,https://i.scdn.co/image/ab67616d0000b273cc7469284d2bd98c1edc0dfe,1,1,154653,https://p.scdn.co/mp3-preview/c5c3c11d156c232e0ec6ee7792ec498053ac7533?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,NLF712000001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop dance,uk dance",0.791,0.541,1.0,-7.14,1.0,0.054,0.123,4.74e-05,0.121,0.433,115.986,4.0,,Hussle Recordings AU,"C (C) 2020 Armada Music BV under exclusive license to Hussle Recordings a division of TMRW Music Pty Ltd, P (P) 2020 Armada Music BV under exclusive license to Hussle Recordings a division of TMRW Music Pty Ltd",9877 +9878,spotify:track:52VIdyKqp1pJRSyUQaxKUA,Everything I Own,spotify:artist:70ZTdbPEcEugBNay4MvxfL,Bread,spotify:album:5OlNb8PMZXFkhhtSrhLuO5,Baby I'm-a Want You,spotify:artist:70ZTdbPEcEugBNay4MvxfL,Bread,1972,https://i.scdn.co/image/ab67616d0000b27377073761e43f273c60988eaf,1,4,187000,https://p.scdn.co/mp3-preview/77a60f7d17dd9217eb88506fd4aa5a595c3e46ea?cid=9950ac751e34487dbbe027c4fd7f8e99,False,70,USEE10000092,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"mellow gold,soft rock",0.365,0.338,2.0,-13.406,1.0,0.0322,0.735,0.0,0.104,0.446,79.241,4.0,,Elektra Records,"C © 1972 Elektra Entertainment, A Division of Warner Communications Inc., P ℗ 1972 Elektra Entertainment, A Division of Warner Communications Inc.",9878 +9879,spotify:track:3xZhNbypIAdgNMOMNNDGuj,Good Time Baby,spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,spotify:album:2x1ROcWb3CulgW30CkzIxp,Cameo Parkway - The Best Of Bobby Rydell (Original Hit Recordings),spotify:artist:4hJTgr1adnhIkhmD9jLzd6,Bobby Rydell,1963-01-01,https://i.scdn.co/image/ab67616d0000b273a78111f084b0e101370d93be,1,15,129466,https://p.scdn.co/mp3-preview/7e477547fb632d8da6ec465058477bd7f3ddc989?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USA176040070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,bubblegum pop,doo-wop,merseybeat,rock-and-roll",0.506,0.844,5.0,-6.58,1.0,0.0725,0.617,0.0,0.645,0.854,168.78,4.0,,Universal Music Group,"C © 2006 ABKCO Records Inc., P ℗ 2006 ABKCO Records Inc.",9879 +9880,spotify:track:4PMUMkCihkys0PKCKOgm9h,Daytrip to Bangor (Single Version) (Day Trip to Bangor - Didn't We Have a Lovely Time),spotify:artist:06BtvGNmAV9RjsbXPTTcXb,Fiddler's Dram,spotify:album:63Rj846eAeZMmbAvORbJ5l,Didn't We Have a Lovely Time. The Fiddler's Dram Anthology,spotify:artist:06BtvGNmAV9RjsbXPTTcXb,Fiddler's Dram,2014-08-25,https://i.scdn.co/image/ab67616d0000b2733eb76577442b6b4d10952b13,1,25,178466,https://p.scdn.co/mp3-preview/c3cc6c1a652452c85da7cc5d73e5dce25e823115?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABY1441847,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.703,0.384,9.0,-12.228,1.0,0.0526,0.831,0.0,0.192,0.943,135.116,4.0,,Dingle's Records,"C 2014 Dingle's Records, P 2014 Dingle's Records",9880 +9881,spotify:track:2ds9vlk6o6BRCc2FAkmOvX,Beat It,"spotify:artist:4UXqAaa6dQYAk18Lv7PEgX, spotify:artist:0hEurMDQu99nJRq8pTxO14","Fall Out Boy, John Mayer",spotify:album:1uIgPRSggJqaVxJAwUpPok,Believers Never Die - Greatest Hits,spotify:artist:4UXqAaa6dQYAk18Lv7PEgX,Fall Out Boy,2009-01-01,https://i.scdn.co/image/ab67616d0000b2734cfa5f3a8098c4fe74746d6a,1,11,229400,https://p.scdn.co/mp3-preview/91a11938b29d8c39f345afdd1344e2541dec9d00?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM70808144,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"emo,modern rock,pop,rock,neo mellow,singer-songwriter",0.557,0.936,0.0,-3.694,1.0,0.0681,0.0195,1.5e-06,0.305,0.841,149.954,4.0,,Universal Music Group,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",9881 +9882,spotify:track:30vF99AT4nrhYy4m2Y5e3Q,Teenage Idol,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,spotify:album:6B2Bk4rcGuYVjlMukQHJJL,Greatest Love Songs,spotify:artist:73sSFVlM6pkweLXE8qw1OS,Ricky Nelson,2008,https://i.scdn.co/image/ab67616d0000b273b364e6db443d84cdd1ec22db,1,15,148840,https://p.scdn.co/mp3-preview/8a8a9901eec1563fff6b2b086ed378bb656f94a2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USEM38700030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,doo-wop,rock-and-roll,rockabilly",0.677,0.46,1.0,-8.064,1.0,0.0308,0.816,8.19e-05,0.129,0.586,117.834,4.0,,Capitol Records,"C © 2008 Capitol Records Inc., P This Compilation ℗ 2008 Capitol Records Inc.",9882 +9883,spotify:track:6IWxHgVbdKyUMydhVGXRaT,On The Road Again,spotify:artist:27a0GiCba9K9lnkKidroFU,Canned Heat,spotify:album:0TBmLh3U5sk1F8eF0twjwi,The Best Of Canned Heat,spotify:artist:27a0GiCba9K9lnkKidroFU,Canned Heat,1987-01-01,https://i.scdn.co/image/ab67616d0000b27308a9f2ae15587fa3da702ba0,1,1,206333,https://p.scdn.co/mp3-preview/abe3aabbf0a9707e559ebd837dea4280bf1fb425?cid=9950ac751e34487dbbe027c4fd7f8e99,False,49,USEM39400161,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues,blues rock,classic rock,country rock,electric blues,folk rock,psychedelic rock,traditional blues",0.496,0.156,9.0,-17.059,1.0,0.0419,0.777,0.0,0.232,0.205,129.524,4.0,,Parlophone Catalogue,"C © 1987 Capitol Records Inc., P This Compilation ℗ 1987 Capitol Records Inc.",9883 +9884,spotify:track:5kVkKUQQIMVySlDkGw5MvF,Lady,spotify:artist:4tw2Lmn9tTPUv7Gy7mVPI4,Kenny Rogers,spotify:album:6KPb3uNsDkJKcQjZR2elxd,Very Best Of Kenny Rogers,spotify:artist:4tw2Lmn9tTPUv7Gy7mVPI4,Kenny Rogers,2008-01-01,https://i.scdn.co/image/ab67616d0000b2736e9fca7beb97d0fbf9b976a9,1,1,234533,https://p.scdn.co/mp3-preview/e343698d08cf45eab3d52ced2eb5ea12ebb814eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USCN18000041,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic country pop,country,nashville sound,soft rock",0.354,0.263,3.0,-13.657,0.0,0.0307,0.756,0.00017,0.138,0.26,136.006,4.0,,EMI Gold,"C © 2008 EMI Records Ltd, P This Compilation ℗ 2008 EMI Records Ltd",9884 +9885,spotify:track:213x4gsFDm04hSqIUkg88w,On Top Of The World,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,spotify:album:6nxDQi0FeEwccEPJeNySoS,Night Visions,spotify:artist:53XhwfbYqKCa1cC15pYq2q,Imagine Dragons,2012-09-04,https://i.scdn.co/image/ab67616d0000b273407bd04707c463bbb3410737,1,5,192280,https://p.scdn.co/mp3-preview/63c233fd86794fed3c0b3a3ba5e1e4916e1a23bc?cid=9950ac751e34487dbbe027c4fd7f8e99,False,76,USUM71201073,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,pop,rock",0.63,0.924,0.0,-5.589,1.0,0.145,0.0841,3.56e-06,0.084,0.763,100.045,4.0,,Kid Ina Korner / Interscope,"C © 2013 KIDinaKORNER/Interscope Records, P ℗ 2013 KIDinaKORNER/Interscope Records",9885 +9886,spotify:track:2nLtzopw4rPReszdYBJU6h,Numb,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:4Gfnly5CzMJQqkUFfoHaP3,Meteora,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2003-09-16,https://i.scdn.co/image/ab67616d0000b2735f1f51d14e8bea89484ecd1b,1,13,187520,https://p.scdn.co/mp3-preview/d6d67b4f23b4865e07821f78c45a98035da95d61?cid=9950ac751e34487dbbe027c4fd7f8e99,False,88,USWB10300474,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.488,0.87,6.0,-4.185,0.0,0.0421,0.00353,0.0,0.484,0.211,110.072,4.0,,Warner Records,"C © 2003 Warner Records Inc., P ℗ 2003 Warner Records Inc.",9886 +9887,spotify:track:5y69gQtK33qxb8a24ACkCy,A Thousand Miles,spotify:artist:5ILrArfIV0tMURcHJN8Q07,Vanessa Carlton,spotify:album:7D6BFTArx2ajtkKRVXIKO2,Be Not Nobody,spotify:artist:5ILrArfIV0tMURcHJN8Q07,Vanessa Carlton,2002-04-30,https://i.scdn.co/image/ab67616d0000b27346798f3f78e934daaeb6706f,1,3,237493,https://p.scdn.co/mp3-preview/1dab77144140b38cf360a7e770f002335884954f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR10210955,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"lilith,neo mellow,piano rock,pop rock,post-teen pop",0.559,0.845,11.0,-3.871,1.0,0.0379,0.222,0.0,0.164,0.304,94.915,4.0,,A&M,"C © 2002 A&M Records, P ℗ 2002 Interscope Geffen (A&M) Records A Division of UMG Recordings Inc.",9887 +9888,spotify:track:0uGLiZ2NXFLAPUk1BuWDhU,Unorthodox,"spotify:artist:0T2sGLJKge2eaFmZJxX7sq, spotify:artist:6Vh6UDWfu9PUSXSzAaB3CW","Wretch 32, Example",spotify:album:57iZ5ftBvYzHrYRSaM1URr,Black And White,spotify:artist:0T2sGLJKge2eaFmZJxX7sq,Wretch 32,2011-01-01,https://i.scdn.co/image/ab67616d0000b273575583a0f8c31b930eaadba6,1,5,183653,https://p.scdn.co/mp3-preview/efefdbc68ef2f1c03ea67decfa097b91538acaf5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,GBCEN1101284,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grime,uk hip hop,hip house,uk dance",0.719,0.948,2.0,-3.931,1.0,0.0358,0.00511,7.13e-06,0.223,0.539,112.001,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Ministry of Sound Recordings Ltd., P ℗ 2011 Ministry of Sound Recordings Ltd., under exclusive license to Ministry of Sound Australia Pty Ltd",9888 +9889,spotify:track:5oV1YjM2rtyZ55txHHsFUu,The Shoop Shoop Song (It's In His Kiss),spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,spotify:album:23ZynaAt0r7guEQef3baHW,Love Hurts,spotify:artist:72OaDtakiy6yFqkt4TsiFt,Cher,1991-06-11,https://i.scdn.co/image/ab67616d0000b273401035ff4d67022fa4c0fad0,1,12,170000,https://p.scdn.co/mp3-preview/b131949023a070a4a22c2fe553008bfe33da0e74?cid=9950ac751e34487dbbe027c4fd7f8e99,False,64,USGF19031001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.678,0.61,0.0,-10.509,1.0,0.0306,0.467,0.0,0.397,0.919,117.04,4.0,,Geffen,"C © 1991 UMG Recordings, Inc., P ℗ 1991 UMG Recordings, Inc.",9889 +9890,spotify:track:01ZVz0QNgPoavSdYzoerW7,Hey Baby - Remastered,spotify:artist:5Do19ow5oRPYYU46jqdkwh,Bruce Channel,spotify:album:7d3DCbAYfgRgJKoNWdfKyI,Hey Baby (Remastered),spotify:artist:5Do19ow5oRPYYU46jqdkwh,Bruce Channel,2017-04-30,https://i.scdn.co/image/ab67616d0000b2730ec7b25c2e726bc2737f08b9,1,1,139620,https://p.scdn.co/mp3-preview/66b6bfee7a927983f9dc3d3c0e6a49359787e186?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,ES58A1701271,spotify:user:bradnumber1,2021-08-08T09:26:31Z,rock-and-roll,0.632,0.552,9.0,-8.564,1.0,0.037,0.203,0.0,0.307,0.557,130.052,4.0,,New World,"C 2017 Muneta Producciones, P 2017 Muneta Producciones",9890 +9891,spotify:track:0OJtYfqiz0Xn53o2TnySQC,All Rise,spotify:artist:2yEkZBBjhzKzt6LF5XMaFi,Blue,spotify:album:0ekql1ldKpqa4oXsAb7Yx8,Best Of Blue,spotify:artist:2yEkZBBjhzKzt6LF5XMaFi,Blue,2004-01-01,https://i.scdn.co/image/ab67616d0000b273655d7b9799468181625417d3,1,1,224133,https://p.scdn.co/mp3-preview/1b2e3ee0ac2542ef3f07e184090fa568227e5f68?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,GBAAA0100115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.738,0.692,5.0,-4.349,0.0,0.0315,0.123,0.0,0.126,0.94,97.99,4.0,,Innocent,"C © 2004 Virgin Records Limited, P This Compilation ℗ 2004 Virgin Records Limited",9891 +9892,spotify:track:6yKAFC2fj8HLSSmjHddqxb,Goose Bumps,spotify:artist:2stN3GLgaWUu52wf9hl2Ce,Christie Allen,spotify:album:36HAfPYsx7cPglngjKbRSa,70 Hits of the '70s,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2016-11-04,https://i.scdn.co/image/ab67616d0000b273a6f173ddeeeca55fc54cddf3,1,16,169449,https://p.scdn.co/mp3-preview/b4abe64b5c198cb21a797bdb3b6c4eb22c466f39?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUMU07900024,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.722,0.785,9.0,-4.709,1.0,0.0725,0.24,0.0,0.252,0.952,119.437,4.0,,WM Australia,"C © 2016 Warner Music Australia Pty Ltd, P ℗ 2016 Warner Music Australia Pty Ltd",9892 +9893,spotify:track:3i0FkJYlU4MFfYkjFHXXAM,I'm Not Here To Make Friends,"spotify:artist:2wY79sveU1sp5g7SokKOiI, spotify:artist:7CajNmpbOovFoOoasH2HaY, spotify:artist:3KedxarmBCyFBevnqQHy3P","Sam Smith, Calvin Harris, Jessie Reyez",spotify:album:3Uq1jNGnD412ZvCb6j2DKV,Gloria,spotify:artist:2wY79sveU1sp5g7SokKOiI,Sam Smith,2023-01-27,https://i.scdn.co/image/ab67616d0000b27350a1691fbbfb693a5171d600,1,11,229604,https://p.scdn.co/mp3-preview/4da0feeccda7e9909a426a89b11049dfdf2677b5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,GBUM72205420,spotify:user:bradnumber1,2023-02-14T22:38:06Z,"pop,uk pop,dance pop,edm,electro house,house,pop,progressive house,uk dance,canadian contemporary r&b,canadian pop",0.697,0.899,0.0,-4.451,1.0,0.0669,0.178,1.02e-05,0.418,0.833,114.939,4.0,,Capitol Records UK / EMI,"C © 2023 Universal Music Operations Limited, P ℗ 2023 Universal Music Operations Limited",9893 +9894,spotify:track:35k31HZI4z9PbBOioaI4dZ,Working for the Weekend,spotify:artist:2CLVPk9FcywjClBcTvWPkT,Loverboy,spotify:album:6oZb0svo8JG9mVxZmHjPxE,Get Lucky,spotify:artist:2CLVPk9FcywjClBcTvWPkT,Loverboy,1981,https://i.scdn.co/image/ab67616d0000b2739c56254072383ce8172ab4c6,1,1,221000,https://p.scdn.co/mp3-preview/c4501343d20cbafbf8337824740f4de13e248349?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,CAC228100002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic canadian rock,classic rock,glam metal,hard rock,mellow gold,soft rock",0.515,0.766,7.0,-12.768,1.0,0.0343,0.0249,0.00103,0.455,0.774,146.911,4.0,,Columbia,P (P) 1981 CBS Records Canada Ltd.,9894 +9895,spotify:track:10Igtw8bSDyyFs7KIsKngZ,Freaky Friday (feat. Chris Brown),"spotify:artist:1tqhsYv8yBBdwANFNzHtcr, spotify:artist:7bXgB6jMjp9ATFy66eO08Z","Lil Dicky, Chris Brown",spotify:album:1XbNDGybI1iPfeQNJEeUdn,Freaky Friday (feat. Chris Brown),"spotify:artist:1tqhsYv8yBBdwANFNzHtcr, spotify:artist:7bXgB6jMjp9ATFy66eO08Z","Lil Dicky, Chris Brown",2018-03-15,https://i.scdn.co/image/ab67616d0000b273f1115552efd25fa498ec923a,1,1,216631,https://p.scdn.co/mp3-preview/c18b159c39b8e601fbf2ccf42db5173f90a1b3ff?cid=9950ac751e34487dbbe027c4fd7f8e99,True,4,QMRSZ1800280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"comedy rap,indie pop rap,pop rap,r&b,rap",0.755,0.599,8.0,-5.042,1.0,0.224,0.147,0.0,0.109,0.755,133.123,4.0,,Commission/BMG,"C © 2018 Dirty Burd, Inc. under exclusive license to Commission Music/BMG Rights Management (US) LLC, P ℗ 2018 Dirty Burd, Inc. under exclusive license to Commission Music/BMG Rights Management (US) LLC",9895 +9896,spotify:track:2Sy1KFLXBQjxqj6lCeIBCB,Oh My Goodness,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,spotify:album:2OvZ8JCShhvxNkptwoGjve,In Case You Didn't Know,spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2011-11-28,https://i.scdn.co/image/ab67616d0000b273ff2057b7343d2233451ff8e7,1,2,184013,https://p.scdn.co/mp3-preview/466604336fce9270dd47d9fcf488a4900ce0031f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,GBARL1101196,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop",0.638,0.803,8.0,-5.467,0.0,0.0681,0.0244,0.0,0.169,0.756,128.035,4.0,,Epic,P (P) 2011 Sony Music Entertainment UK Limited,9896 +9897,spotify:track:5ldiFQudKLQ1QJVGkXTywg,All Of This,spotify:artist:0oeUpvxWsC8bWS6SnpU8b9,The Naked And Famous,spotify:album:2eh7TIUa0GYgPTEmujZR1U,Passive Me Aggressive You,spotify:artist:0oeUpvxWsC8bWS6SnpU8b9,The Naked And Famous,2010-01-01,https://i.scdn.co/image/ab67616d0000b273fc962201cc170e8a954e586c,1,1,235400,https://p.scdn.co/mp3-preview/b9721091c19707ac90ebb88390f4d5616be2716a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,NZNK11000007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"auckland indie,indietronica,kiwi rock,metropopolis",0.551,0.959,11.0,-5.064,0.0,0.0731,0.000123,0.000385,0.0743,0.703,152.011,4.0,,Universal Music New Zealand Limited,"C © 2010 Somewhat Damaged, P ℗ 2010 Somewhat Damaged",9897 +9898,spotify:track:1qCQTy0fTXerET4x8VHyr9,What A Wonderful World,spotify:artist:19eLuQmk9aCobbVDHc6eek,Louis Armstrong,spotify:album:19UoBHanqMth4tk0rFw5RJ,What A Wonderful World,spotify:artist:19eLuQmk9aCobbVDHc6eek,Louis Armstrong,1968,https://i.scdn.co/image/ab67616d0000b273601c5174eb7d0073bb79764f,1,1,137520,https://p.scdn.co/mp3-preview/09b846edd2af989c00a282fe8a6d3fa6cd479500?cid=9950ac751e34487dbbe027c4fd7f8e99,False,1,USMC16758823,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,dixieland,harlem renaissance,jazz trumpet,lounge,new orleans jazz,soul,swing,vocal jazz",0.399,0.258,5.0,-16.028,1.0,0.033,0.792,1.86e-06,0.128,0.192,108.174,3.0,,Geffen*,"C © 1996 Geffen Records, P ℗ 1988 Geffen Records",9898 +9899,spotify:track:6SKwQghsR8AISlxhcwyA9R,Marry You,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,spotify:album:6J84szYCnMfzEcvIcfWMFL,Doo-Wops & Hooligans,spotify:artist:0du5cEVh5yTK9QJze8zA0C,Bruno Mars,2010-05-11,https://i.scdn.co/image/ab67616d0000b273f60070dce96a2c1b70cf6ff0,1,6,230192,https://p.scdn.co/mp3-preview/6747a3674ec0b24ab9067972bb19291c3048a8d2?cid=9950ac751e34487dbbe027c4fd7f8e99,False,78,USAT21001887,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.621,0.82,10.0,-4.865,1.0,0.0367,0.332,0.0,0.104,0.452,144.905,4.0,,Elektra (NEK),"C © 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved., P ℗ 2010 Elektra Entertainment Group Inc. for the United States and WEA International Inc. for the world outside of the United States. All Rights Reserved.",9899 +9900,spotify:track:3jKvQwaFbzfEW9GeMcCRr0,Destination Calabria - Radio Edit,"spotify:artist:7vb7VLDqpLTlAy1ctTMR5d, spotify:artist:2sd9Q3r0Jhqpe3w9WVuG43","Alex Gaudino, Crystal Waters",spotify:album:2DIpv3TX2D98GywchEkxzq,Destination Calabria,"spotify:artist:7vb7VLDqpLTlAy1ctTMR5d, spotify:artist:2sd9Q3r0Jhqpe3w9WVuG43","Alex Gaudino, Crystal Waters",2009-01-01,https://i.scdn.co/image/ab67616d0000b2735122a06ddd578d3abe1c13bb,1,1,183146,https://p.scdn.co/mp3-preview/d9f9bd20c952833fa00f0fe91b0283bb913026ee?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUNV00801201,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"disco house,vocal house,diva house",0.64,0.967,9.0,-5.279,1.0,0.05,0.000306,0.000898,0.0416,0.383,128.084,4.0,,Ministry Of Sound,"C © 2009 Ministry Of Sound Australia Pty Ltd, P ℗ 2009 Ministry Of Sound Australia Pty Ltd",9900 +9901,spotify:track:04YFRczeeieYRlsrPJ8hjh,Real Life,"spotify:artist:61lyPtntblHJvA7FMMhi7E, spotify:artist:4VNQWV2y1E97Eqo2D5UTjx, spotify:artist:6mpxgK8EZh8VDoe6trGF0f","Duke Dumont, Gorgon City, NAATIONS",spotify:album:33xALS0YvSwt7ydCGudTP6,Real Life,"spotify:artist:61lyPtntblHJvA7FMMhi7E, spotify:artist:4VNQWV2y1E97Eqo2D5UTjx","Duke Dumont, Gorgon City",2017-06-02,https://i.scdn.co/image/ab67616d0000b273c0a1acecce087539c28541d8,1,1,205773,https://p.scdn.co/mp3-preview/c9610a5353123b9629b4ebdc224d952ae9c30b21?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBUM71701961,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"edm,house,pop dance,progressive house,uk dance,future garage,house,pop dance,uk dance,la pop",0.673,0.741,7.0,-5.247,0.0,0.0549,0.149,0.00101,0.165,0.604,123.941,4.0,,Universal Music Group,"C © 2017 Virgin EMI Records, a division of Universal Music Operations Limited, P ℗ 2017 Virgin EMI Records, a division of Universal Music Operations Limited",9901 +9902,spotify:track:4juq76lIar8YWOLpYMXUAG,Joker And The Thief,spotify:artist:3yEnArbNHyTCwMRvD9SBy4,Wolfmother,spotify:album:0jjNb79VYqLY21IjyWKsWe,Wolfmother,spotify:artist:3yEnArbNHyTCwMRvD9SBy4,Wolfmother,2006-01-01,https://i.scdn.co/image/ab67616d0000b2737188b9a13a38de20965f481a,1,6,280466,https://p.scdn.co/mp3-preview/295e3e10e9a1103e9d3787861eb75bf10bc40843?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUUM70500115,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative rock,australian psych,garage rock,modern blues rock,modern rock,rock",0.264,0.78,0.0,-2.741,1.0,0.0517,0.0452,0.0222,0.376,0.456,155.376,4.0,,Universal Music Group,"C © 2006 Modular Recordings, P ℗ 2006 Modular Recordings",9902 +9903,spotify:track:1sBfyE1iF7RP3LTc0zUTdp,Black Hole Sun,spotify:artist:5xUf6j4upBrXZPg6AI4MRK,Soundgarden,spotify:album:4Ut4g1YBsA9IbKkkMG26mu,Telephantasm,spotify:artist:5xUf6j4upBrXZPg6AI4MRK,Soundgarden,2010-09-28,https://i.scdn.co/image/ab67616d0000b27317b572f5ed24d153d47ddc4f,1,8,317693,https://p.scdn.co/mp3-preview/a784f804a7d9d93c369347eae4872945e5cb9398?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USAM19400007,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,alternative rock,classic rock,grunge,hard rock,nu metal,rock",0.345,0.764,6.0,-6.924,1.0,0.0366,9.87e-05,1.68e-05,0.181,0.154,105.71,4.0,,Universal Music Group,"C © 2010 A&M Records, P ℗ 2010 A&M Records",9903 +9904,spotify:track:2jo3etFarByI6akx5cyPDg,In Your Eyes,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,spotify:album:03NCvBIGqzLPhLoi4pDb3L,After Hours,spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ,The Weeknd,2020-03-20,https://i.scdn.co/image/ab67616d0000b27381a3bb9348718b9703364c1c,1,10,237520,https://p.scdn.co/mp3-preview/ad4adb8a7c82359d511f7d9900d9f3742e0d2932?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,USUG12000668,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian contemporary r&b,canadian pop,pop",0.667,0.719,7.0,-5.371,0.0,0.0346,0.0028,7.92e-05,0.0736,0.718,100.019,4.0,,Republic Records,"C © 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc., P ℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.",9904 +9905,spotify:track:5EZJ2mJ2KTNs01n0cBR6lC,Things That Make You Go Hmmmm.... (feat. Freedom Williams),"spotify:artist:7krx6UBDKLwE0q3s3fesqF, spotify:artist:08MVPakTEdRJimQNV61NFR","C & C Music Factory, Freedom Williams",spotify:album:5obiQeM3NZ4NMsoeVxNDxw,Gonna Make You Sweat,spotify:artist:7krx6UBDKLwE0q3s3fesqF,C & C Music Factory,1990-12-18,https://i.scdn.co/image/ab67616d0000b273e6942d692203807dcadd8be5,1,3,321906,https://p.scdn.co/mp3-preview/9255c06e454b266d34a705cc4201a28a519642eb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,USSM19000782,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"diva house,eurodance,freestyle,hip house,hip house",0.81,0.93,1.0,-7.464,1.0,0.0536,0.118,0.000102,0.357,0.969,113.334,4.0,,Columbia,P (P) 1990 SONY BMG MUSIC ENTERTAINMENT,9905 +9906,spotify:track:5x53pbGk6sbl1BGom19QQ5,Breakdown,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,spotify:album:6TLTd0P2CUI0Q29AQ1LyFi,Tom Petty & The Heartbreakers,spotify:artist:4tX2TplrkIP4v05BNC903e,Tom Petty and the Heartbreakers,1976-11-09,https://i.scdn.co/image/ab67616d0000b2730e8f67afe794200ccb01ac73,1,2,163893,https://p.scdn.co/mp3-preview/7b4050fa114a61fb7ede824400d0bf4f84a51706?cid=9950ac751e34487dbbe027c4fd7f8e99,False,30,USMC17641689,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.625,0.35,9.0,-8.395,0.0,0.0436,0.398,6.76e-05,0.123,0.69,113.688,4.0,,Rhino/Warner Records,"C © 1976 Gone Gator Records, P ℗ 1976 Gone Gator Records",9906 +9907,spotify:track:0xERMvJD8djz1ZBjPSRLvM,Sea of Heartbreak,spotify:artist:4xcYVPssil6vbG6tq3W43S,Don Gibson,spotify:album:4SWOxLi7nLs2Gjyv22q5As,RCA Country Legends: Don Gibson,spotify:artist:4xcYVPssil6vbG6tq3W43S,Don Gibson,2001-05-15,https://i.scdn.co/image/ab67616d0000b273e2de04d4e89c5a6051f2bc6d,1,3,155040,https://p.scdn.co/mp3-preview/67f57729b57d4027f7d17515bea81210b1967173?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USRN10100068,spotify:user:bradnumber1,2021-08-08T09:26:31Z,nashville sound,0.59,0.586,7.0,-9.158,1.0,0.0344,0.422,4.46e-05,0.337,0.729,91.17,4.0,,Buddha Records,P (P) 2001 Buddha Records,9907 +9908,spotify:track:1MA9StLzlFftLbuqOmoWij,Cathy's Clown,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,spotify:album:3wWjXsqngYcPmd4hQzjNAD,The Golden Hits of The Everly Brothers,spotify:artist:4ACplpEqD6JIVgKrafauzs,The Everly Brothers,1962-06-01,https://i.scdn.co/image/ab67616d0000b2733b56057c89ad8a6fbb867a01,1,7,144013,https://p.scdn.co/mp3-preview/dd48ad45dc5bab0f297118d268644ce9e180ebda?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,USWB19903266,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,folk rock,mellow gold,rock-and-roll,rockabilly,sunshine pop",0.497,0.582,7.0,-8.961,1.0,0.0339,0.412,0.0,0.372,0.866,119.808,4.0,,Warner Records,"C © 1962 Warner Records Inc., P ℗ 1962 Warner Records Inc.",9908 +9909,spotify:track:1FvG5AZm68WSFQj3fJywoy,Hot Love - A Side,spotify:artist:3dBVyJ7JuOMt4GE9607Qin,T. Rex,spotify:album:6hPt04r4KtO00nwhdGJ8Ox,Electric Warrior (Deluxe Edition),spotify:artist:3dBVyJ7JuOMt4GE9607Qin,T. Rex,1971-09-24,https://i.scdn.co/image/ab67616d0000b2736b5c27aa80054957c984a931,1,13,295480,https://p.scdn.co/mp3-preview/b0d3ea848da46a73cbef502760e43f11d62ec648?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GB2DY1200002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic rock,glam rock,protopunk,rock,singer-songwriter",0.565,0.543,11.0,-8.505,0.0,0.0376,0.0839,0.0521,0.0867,0.486,130.983,4.0,,Universal Music Group International,"C © 2012 Universal International Music B.V., P This Compilation ℗ 2012 Universal International Music B.V.",9909 +9910,spotify:track:5N3me7GBB24a3vY5SwebrC,Discotheque,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,spotify:album:67Q70XtbXmJ4nlAyTcn0dA,Pop,spotify:artist:51Blml2LZPmy7TTiAg47vQ,U2,1997-03-03,https://i.scdn.co/image/ab67616d0000b273f30f1f299c8783a79db55e8d,1,1,320666,https://p.scdn.co/mp3-preview/d06575e8b550dac1ed6049aaef5340e9426d33ef?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN9700001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"irish rock,permanent wave,rock",0.579,0.812,4.0,-9.673,0.0,0.0367,0.00088,0.102,0.103,0.627,120.361,4.0,,Universal Music Group,"C © 1997 Universal International Music B.V., P ℗ 1997 Universal International Music B.V.",9910 +9911,spotify:track:2LIh4uzqq9cXMPzzmcToHl,Lost on You,spotify:artist:0J7U24vlOOIeMpuaO6Q85A,LP,spotify:album:0dYi4VGov4Dl4AED2eVwPw,Lost on You,spotify:artist:0J7U24vlOOIeMpuaO6Q85A,LP,2017-05-05,https://i.scdn.co/image/ab67616d0000b273edd52840c88ba5e7163071cf,1,3,268105,https://p.scdn.co/mp3-preview/9d9ad9903102d811350a9dda36178249ad634238?cid=9950ac751e34487dbbe027c4fd7f8e99,False,7,QMRSZ1501406,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"la pop,women's music",0.433,0.724,5.0,-6.126,0.0,0.0372,0.1,0.0,0.0918,0.689,174.006,4.0,,Vagrant Records,"C © 2017 LP under exclusive license to BMG Rights Management (US) LLC d/b/a Vagrant Records, P ℗ 2017 LP under exclusive license to BMG Rights Management (US) LLC d/b/a Vagrant Records",9911 +9912,spotify:track:6A8OnjnpShshNpcqWtZRjr,Papa Don't Preach,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,spotify:album:6fmnT17jc2Sc69q3nza1eD,True Blue,spotify:artist:6tbjWDEIzxoDsBA1FuhfPW,Madonna,1986-06-30,https://i.scdn.co/image/ab67616d0000b273c01194bbe928c038cef5607b,1,1,268533,https://p.scdn.co/mp3-preview/08bce83462de05af42bdb3972299fe900a9b312c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USWB19903344,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.833,0.934,5.0,-3.243,0.0,0.0313,0.343,7.55e-06,0.0521,0.964,121.879,4.0,,Warner Records,"C © 1986, 2001 Warner Records Inc., P ℗ 1986 Warner Records Inc.",9912 +9913,spotify:track:7KE2xRqs6kOqnc06Yn7NAc,Crash,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,spotify:album:4VLePkt0E5rS72hCHE31Rg,Crash,spotify:artist:23zg3TcAtWQy7J6upgbUnj,USHER,2016-06-10,https://i.scdn.co/image/ab67616d0000b273910146466cfdfaef4a293d57,1,1,211375,https://p.scdn.co/mp3-preview/d708b464945c3bf5a10e05f89faea442333c4d43?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRC11600983,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.71,0.645,0.0,-5.911,1.0,0.054,0.227,0.0982,0.093,0.254,104.018,4.0,,RCA Records Label,"P (P) 2016 RCA Recods, a division of Sony Music Entertainment",9913 +9914,spotify:track:1yzbqrSF0vuaO7nuKYSd6f,Coming of Age,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,spotify:album:22cFcAQkydpTzeSKQZEKv0,Supermodel,spotify:artist:7gP3bB2nilZXLfPHJhMdvc,Foster The People,2014-03-14,https://i.scdn.co/image/ab67616d0000b2733fa1cde08a07e944779fc433,1,3,280040,https://p.scdn.co/mp3-preview/0ab0fc4229e977b5d341f829705040a1fa4a2af5?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USSM11305799,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"indietronica,modern alternative rock,modern rock,rock",0.534,0.955,7.0,-4.447,0.0,0.0524,0.0219,0.00573,0.322,0.425,130.09,4.0,,Columbia,"P (P) 2014 Columbia Records, a Division of Sony Music Entertainment",9914 +9915,spotify:track:1soZhrJMpEbpJhe3VCA4iB,I Think I'm Gonna Fall (In Love),spotify:artist:5W5GrEqHK9wZ4v0bcgnnNQ,Supercharge,spotify:album:78DyoQIzauv56hHUvET58b,I Think I'm Gonna Fall in Love,spotify:artist:5W5GrEqHK9wZ4v0bcgnnNQ,Supercharge,2011-11-25,https://i.scdn.co/image/ab67616d0000b27397206e3e53b379b2209a6a4b,1,6,523004,https://p.scdn.co/mp3-preview/63eec24de9ff0336a65a9ac54246ade2de640071?cid=9950ac751e34487dbbe027c4fd7f8e99,False,8,DEKM68802070,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.626,0.881,0.0,-9.418,0.0,0.0415,0.00611,0.16,0.0584,0.733,126.851,4.0,,7Jazz,"C Virgin Records, P 7Jazz, A Division Of 7us media group GmbH",9915 +9916,spotify:track:7C7hgHnaaXZK5aEiYy1Xcf,Feel Like Making Love - Edit,spotify:artist:4sbH2tr8ljTXKH5uBWhUD7,Pauline Henry,spotify:album:258CFrvesNJafhIQhHy6WY,Heaven: The Very Best Of,"spotify:artist:4sbH2tr8ljTXKH5uBWhUD7, spotify:artist:1zIiPjzcnAXkhlVUpL3A5A","Pauline Henry, The Chimes",1998-02-28,https://i.scdn.co/image/ab67616d0000b2733260297cc17fdb5ae9289c3f,1,7,240866,https://p.scdn.co/mp3-preview/f682bdb73f943c4686de75b063969f38c27e3c54?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,GBBBL9300016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.621,0.74,6.0,-5.755,1.0,0.0298,0.000746,9.3e-05,0.0751,0.463,95.031,4.0,,S2,P This compilation (P) 1998 Sony Music Entertainment UK Limited,9916 +9917,spotify:track:5jWZR3cKUChstrHpNnTPCS,You Are The Sunshine Of My Life,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,spotify:album:5x7vXXWapy8cUmdSuwpUy1,Number 1's,spotify:artist:7guDJrEfX3qb6FEbdPA5qi,Stevie Wonder,2007-01-01,https://i.scdn.co/image/ab67616d0000b27367daf4d855cb184bb2e98a58,1,6,177306,https://p.scdn.co/mp3-preview/cb97eb145b2c4bdd0133ba962443f7c1de23f747?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMO17282852,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"motown,soul",0.471,0.574,11.0,-11.266,1.0,0.0509,0.802,2.55e-06,0.0931,0.661,131.892,4.0,,Universal Strategic Marketing,"C © 2007 Motown Records, a Division of UMG Recordings, Inc., P ℗ 2007 Motown Records, a Division of UMG Recordings, Inc.",9917 +9918,spotify:track:4LpOPF5RXZhS1GLzclhyaT,My Favourite Game,spotify:artist:1tqZaCwM57UFKjWoYwMLrw,The Cardigans,spotify:album:5wuDCQ0ETSqaYPRhFvoeDY,Best Of,spotify:artist:1tqZaCwM57UFKjWoYwMLrw,The Cardigans,2008-01-25,https://i.scdn.co/image/ab67616d0000b273bbed791537e764e79ac51791,1,10,220413,https://p.scdn.co/mp3-preview/7ea54ffef1f9025d417187e3d1b9d027e2932c89?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,SEBKB9802010,spotify:user:bradnumber1,2021-11-20T11:12:01Z,"lilith,new wave pop,permanent wave,pop rock,swedish pop",0.594,0.766,5.0,-7.598,0.0,0.0327,0.000156,0.00345,0.086,0.453,143.482,4.0,,Universal Music Group,"C © 2008 Universal Music AB, P ℗ 2008 Universal Music AB",9918 +9919,spotify:track:0EYKtEb2mKXxlnMD6aqYig,Sukiyaki,spotify:artist:3WKkjW8B7x5UZmfC9pnDmN,Kyu Sakamoto,spotify:album:5oL3ziqKCQMCuWG7ZPffXH,Sukiyaki,spotify:artist:3WKkjW8B7x5UZmfC9pnDmN,Kyu Sakamoto,2014-03-12,https://i.scdn.co/image/ab67616d0000b273449e044308981945660f6494,1,1,187663,https://p.scdn.co/mp3-preview/5d1338acbd80c67bfdc3aded673e0fecb24e06c4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,QMFME1405797,spotify:user:bradnumber1,2021-08-08T09:26:31Z,enka,0.406,0.337,7.0,-11.157,1.0,0.0309,0.643,0.0,0.159,0.457,145.111,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,9919 +9920,spotify:track:1xKQbqQtQWrtQS47fUJBtl,Piece of My Heart,"spotify:artist:4J69yWrKwWJgjv3DKTZcGo, spotify:artist:4NgfOZCL9Ml67xzM0xzIvC","Big Brother & The Holding Company, Janis Joplin",spotify:album:2rogKfOpmCFuqNhtGKf2dX,Cheap Thrills,"spotify:artist:4J69yWrKwWJgjv3DKTZcGo, spotify:artist:4NgfOZCL9Ml67xzM0xzIvC","Big Brother & The Holding Company, Janis Joplin",1968-08-12,https://i.scdn.co/image/ab67616d0000b2731ba5ee8bc24979ce3eee4797,1,4,253333,https://p.scdn.co/mp3-preview/7f5967e0c7641caf84d13724f286c534db49e514?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USSM16800982,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"blues rock,folk rock,psychedelic rock,album rock,classic rock,hard rock,psychedelic rock,rock",0.443,0.727,4.0,-7.951,1.0,0.145,0.263,0.000141,0.169,0.566,160.82,4.0,,Columbia/Legacy,P (P) 1968 Sony Music Entertainment,9920 +9921,spotify:track:4huxvCbf3pPgDKSK1zvrhk,Papa Don't Preach,spotify:artist:1hckaudcoOzWyeRIlrOksc,Kelly Osbourne,spotify:album:3pvxY5kOfkrVN8INRoFLow,Changes,spotify:artist:1hckaudcoOzWyeRIlrOksc,Kelly Osbourne,2003,https://i.scdn.co/image/ab67616d0000b27305236ee9647295f6ccb0cf03,1,12,205253,https://p.scdn.co/mp3-preview/eb7b6ef55d775b9b78900d87418ef50ed2b54118?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USSM10207183,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.451,0.892,5.0,-2.818,0.0,0.035,1.24e-05,0.0225,0.113,0.704,143.752,4.0,,Sanctuary,"C 2003 KO Productions, Inc./ Sanctuary Records Group Ltd., a BMG Company, under exclusive license to [PIAS] UK Ltd., P 2003 KO Productions, Inc./ Sanctuary Records Group Ltd., a BMG Company, under exclusive license to [PIAS] UK Ltd.",9921 +9922,spotify:track:4Tsx5uLCyJphR0oAzbFS9D,My Boy Lollipop,spotify:artist:0h3n6BqxvmRhWwNcdw4CWT,Millie Small,spotify:album:1yHoapFf9ehxEkQOUdoFOq,Trojan Presents: Mod Ska,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2012-11-06,https://i.scdn.co/image/ab67616d0000b273624e293396f42fa93d134369,1,10,122160,https://p.scdn.co/mp3-preview/7e103fd0738e4b8099e8bddd4cc318bd09ad68be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAAN6400001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,jamaican ska,0.661,0.67,2.0,-5.734,1.0,0.0386,0.162,1.73e-06,0.0737,0.935,132.032,4.0,,Trojan Records,"C © 2012 Trojan Recordings Ltd., a BMG Company, P ℗ 2012 Sanctuary Records Group Ltd., a BMG Company",9922 +9923,spotify:track:06VuCrLHmfdgdUXSQCX6us,Tell It on the Mountain,spotify:artist:6yrBBtqX2gKCHCrZOYBDrB,"Peter\, Paul and Mary",spotify:album:5XresJcJBgYkVQE9PATjli,In the Wind,spotify:artist:6yrBBtqX2gKCHCrZOYBDrB,"Peter\, Paul and Mary",1963,https://i.scdn.co/image/ab67616d0000b2739239355346a8804ea5b362e3,1,5,178240,https://p.scdn.co/mp3-preview/dd2da04e28ee23386dc53679df6582ba17c463b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,USWB10001214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"american folk revival,folk,folk rock,mellow gold,singer-songwriter,soft rock",0.619,0.261,2.0,-10.632,1.0,0.0357,0.757,0.0,0.259,0.658,116.379,4.0,,Warner Records,"C © 1963 Warner Records Inc., P ℗ 1963 Warner Records Inc.",9923 +9924,spotify:track:4SByRm49LWQlobusVS7dcZ,When You Walk in the Room,spotify:artist:0FFuvdY7fuiuTmHN9unYoz,Paul Carrack,spotify:album:5kJsOW9B0BuTlhUMs0OQl2,One Good Reason,spotify:artist:0FFuvdY7fuiuTmHN9unYoz,Paul Carrack,1987-11-01,https://i.scdn.co/image/ab67616d0000b27322888ac353f3a32bc4645c4f,1,2,211333,https://p.scdn.co/mp3-preview/028e7b8e5256b04be01678ed6da82cb7bb4866e6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBAYK8700052,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.614,0.599,6.0,-12.27,0.0,0.0288,0.13,0.0,0.2,0.594,113.108,4.0,,Chrysalis Records,"C 2016 Chrysalis Records Limited, P 1987 Chrysalis Records Limited",9924 +9925,spotify:track:4o5AS9PNLnSNru7XQsjesQ,Unchained Melody,spotify:artist:4nNwfeVaNJlfz8RdCT5MJO,Gareth Gates,spotify:album:6qjh64nv2k5MIrjewpj0Vv,What My Heart Wants To Say,spotify:artist:4nNwfeVaNJlfz8RdCT5MJO,Gareth Gates,2003-06-02,https://i.scdn.co/image/ab67616d0000b2731dc9254e728947b633918b25,1,1,233666,https://p.scdn.co/mp3-preview/4ea6cc6b6ccd7d56de4e144b9d9225f7d9d887ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,GBCTA0200003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,talent show,0.368,0.426,10.0,-8.049,1.0,0.0277,0.255,5.39e-06,0.108,0.208,106.52,3.0,,S Records,P (P) 2002 19 Recordings Limited under exclusive license to Ronagold Limited.,9925 +9926,spotify:track:3zg5ZWkHgS2gIsQXdO28u5,Check It Out,spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,spotify:album:3Yn5XL64fFYe3ilintoBT8,Words & Music: John Mellencamp's Greatest Hits (International Version - Brilliant Box Package),spotify:artist:3lPQ2Fk5JOwGWAF3ORFCqH,John Mellencamp,2004-01-01,https://i.scdn.co/image/ab67616d0000b2738ff4e20f9bfe4ba0c68b57fa,1,7,259733,https://p.scdn.co/mp3-preview/69f4d58eb57b86e805592f1bb435aec66f35080b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USIR20180308,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,country rock,folk rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.609,0.836,0.0,-3.579,1.0,0.0239,0.0183,1.44e-05,0.293,0.594,105.76,4.0,,Universal Music Group,"C © 2004 John Mellencamp, P ℗ 2004 John Mellencamp",9926 +9927,spotify:track:2a2LbGyskxZrYuFDwu6Wf5,Denise,spotify:artist:2V0ryJRGIdudWKl27c806m,Randy & The Rainbows,spotify:album:1rYBfdA7aiCZD7lrDu60h1,Denise,spotify:artist:2V0ryJRGIdudWKl27c806m,Randy & The Rainbows,2014-03-12,https://i.scdn.co/image/ab67616d0000b273002962e6eaf70555f6c1a2a3,1,1,119980,https://p.scdn.co/mp3-preview/03b9de477c489c770f4f584b89e458de1971ba1b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,12,QMFME1405864,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"doo-wop,rhythm and blues",0.532,0.797,7.0,-10.162,1.0,0.0874,0.632,0.0,0.0792,0.901,125.446,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,9927 +9928,spotify:track:3u9fHuAtjMY1RW2mZfO4Cf,Gangsta's Paradise (feat. L.V.),"spotify:artist:3y24n3XhZ96wgwRXjvS17T, spotify:artist:2LhsePRtgCo4THVKULQBL7","Coolio, L.V.",spotify:album:3gj5MfnW3Oud8Ji1n7Tops,Gangsta's Paradise,spotify:artist:3y24n3XhZ96wgwRXjvS17T,Coolio,1995-11-07,https://i.scdn.co/image/ab67616d0000b2737ffd7ae57eaffcac65ea2431,1,3,241933,https://p.scdn.co/mp3-preview/1454c63a66c27ac745f874d6c113270a9c62d28e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USTB10250016,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"g funk,gangster rap,hip hop,west coast rap",0.641,0.63,8.0,-6.393,1.0,0.0521,0.0372,0.0,0.4,0.415,79.955,4.0,,Rhino,"C 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing, P 2004 Atlantic Recording Corp. Manufactured & Marketed by Warner Strategic Marketing",9928 +9929,spotify:track:6NES8EKeNkePM6H2r0F9F4,"Baby Did a Bad, Bad Thing",spotify:artist:7290H8m1Dwt8G7jm1y9CQx,Chris Isaak,spotify:album:15WGW9fyEuS2cWp8aZkNpZ,Best of Chris Isaak (Remastered),spotify:artist:7290H8m1Dwt8G7jm1y9CQx,Chris Isaak,2006,https://i.scdn.co/image/ab67616d0000b273b4faff3f38618b2e3381811f,1,4,176000,https://p.scdn.co/mp3-preview/edc7f96938eedaab991d5ac5042c4e91b164968e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USRE10601456,spotify:user:bradnumber1,2021-08-08T09:26:31Z,mellow gold,0.58,0.609,2.0,-6.921,1.0,0.0861,0.352,0.000423,0.11,0.504,152.852,4.0,,Mailboat Records,"C 2013 2006, 2010 Wicked Game, P 2013 2006, 2010 Wicked Game",9929 +9930,spotify:track:1NXDq5UBby80GsRNjGXVwE,No More Sad Songs (feat. Machine Gun Kelly),"spotify:artist:3e7awlrlDSwF3iM0WBjGMp, spotify:artist:6TIYQ3jFPwQSRmorSezPxX","Little Mix, mgk",spotify:album:5DL2Z5x7UJsWH1HhE9j8nd,Glory Days: The Platinum Edition,spotify:artist:3e7awlrlDSwF3iM0WBjGMp,Little Mix,2017-11-24,https://i.scdn.co/image/ab67616d0000b273c11062d14bee6968fa86008c,1,6,225200,https://p.scdn.co/mp3-preview/bcb14b8da771afbeef496956f52e7351449f2db4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBHMU1700002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"girl group,pop,talent show,uk pop,ohio hip hop,pop rap",0.709,0.779,7.0,-3.534,0.0,0.0464,0.0777,7.47e-06,0.306,0.701,102.024,4.0,,Syco Music,P (P) 2017 Simco Limited under exclusive licence to Sony Music Entertainment UK Limited,9930 +9931,spotify:track:1HrMWH5GUdK6Yi94rbANJA,Cola,"spotify:artist:240wlM8vDrf6S4zCyzGj2W, spotify:artist:2vf4pRsEY6LpL5tKmqWb64","CamelPhat, Elderbrook",spotify:album:4Mz3YFnTKm7JbuOi25mDWH,Cola,"spotify:artist:240wlM8vDrf6S4zCyzGj2W, spotify:artist:2vf4pRsEY6LpL5tKmqWb64","CamelPhat, Elderbrook",2017-06-16,https://i.scdn.co/image/ab67616d0000b27327f7da61c7d322ad30c42176,1,1,223869,https://p.scdn.co/mp3-preview/b87a74d9327f379242b8afcb05d6e7330b630b7d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,69,GBCPZ1711555,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"deep tech house,house,progressive house,uk dance,uk dance",0.706,0.74,6.0,-7.904,1.0,0.0325,0.0245,0.512,0.135,0.444,122.007,3.0,,Defected Records,"C © 2017 Defected Records Limited, P ℗ 2017 Defected Records Limited",9931 +9932,spotify:track:1mwCSKK0YRDsgnj2VwyZSU,Butterfly Kisses,spotify:artist:4PJHDzdFoQcklrWU18QdsU,Bob Carlisle,spotify:album:164ZlumFzgmF1ahd7gzyDn,Simply Bob Carlisle,spotify:artist:4PJHDzdFoQcklrWU18QdsU,Bob Carlisle,1995-06-15,https://i.scdn.co/image/ab67616d0000b273c1a203fc1acea51afb8da66f,1,2,340600,https://p.scdn.co/mp3-preview/e1abcce601d8df3e1d117034f640fd462be5f79d?cid=9950ac751e34487dbbe027c4fd7f8e99,False,48,USDI10200013,spotify:user:bradnumber1,2022-06-07T22:02:00Z,,0.386,0.364,0.0,-9.624,1.0,0.032,0.541,0.0,0.347,0.104,81.895,4.0,,Brentwood Music,"P (P) 2005 Provident Label Group, LLC",9932 +9933,spotify:track:7nfGP5B3Pc508kEb6zL6r9,The Dead Heart - 2007 Remastered,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:243XzHQegX82bPnUVQ0SPV,Diesel And Dust,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,1987-10-02,https://i.scdn.co/image/ab67616d0000b2730dd350beeb5ac73672ad6e80,1,6,311026,https://p.scdn.co/mp3-preview/1ac7d350d16ace12bb4c647d68e45c1803756161?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,AUBM00700712,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.637,0.759,7.0,-11.004,1.0,0.0295,0.0282,0.000386,0.0621,0.686,136.223,4.0,,Columbia,P (P) 1987 Midnight Oil Ents Pty Ltd,9933 +9934,spotify:track:2Gk1zc6mO5Pw1Z1P6bozKE,Sweet Talker,spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,spotify:album:3hQ64JbgfPMbXwYRvmZ41z,Sweet Talker (Deluxe Version),spotify:artist:2gsggkzM5R49q6jpPvazou,Jessie J,2014-10-10,https://i.scdn.co/image/ab67616d0000b27301b57b2d37dad2a9e1fb10b9,1,3,222213,https://p.scdn.co/mp3-preview/6df189d213ede16350ba1a77dd01c674ca4ffbf3?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71412819,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.649,0.659,4.0,-5.331,0.0,0.066,0.59,0.0,0.197,0.574,144.0,4.0,,Universal Music Group,"C © 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC, P ℗ 2014 Republic Records a division of UMG Recordings Inc & Lava Music LLC",9934 +9935,spotify:track:1imW1tzgKbMTt2DFLOrFXb,La La,spotify:artist:4hqDqHtBlgxXpLXVYf7c8L,Ashlee Simpson,spotify:album:3j4pi8VHQLEA86zO34pqC5,Autobiography,spotify:artist:4hqDqHtBlgxXpLXVYf7c8L,Ashlee Simpson,2004-07-20,https://i.scdn.co/image/ab67616d0000b273b6fd0b9831550364bec0c3b9,1,4,222400,https://p.scdn.co/mp3-preview/34abec6200bae03941c334b0e8adba019dbdba66?cid=9950ac751e34487dbbe027c4fd7f8e99,False,39,USMC10400366,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,post-teen pop",0.533,0.903,11.0,-3.747,0.0,0.0755,9.5e-05,0.443,0.0828,0.495,129.984,4.0,,Geffen*,"C © 2004 Geffen Records, P ℗ 2004 Geffen Records",9935 +9936,spotify:track:0OYcEfskah1egYHjYRvbg1,Shadow of the Day,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,spotify:album:2tlTBLz2w52rpGCLBGyGw6,Minutes to Midnight,spotify:artist:6XyY86QOPPrYVGvF9ch6wz,Linkin Park,2007-05-14,https://i.scdn.co/image/ab67616d0000b2736e996745f2c7b8036abef213,1,5,289906,https://p.scdn.co/mp3-preview/a449bc921683b202afdd3149b67ad9487c666185?cid=9950ac751e34487dbbe027c4fd7f8e99,False,66,USWB10701214,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"alternative metal,nu metal,post-grunge,rap metal,rock",0.529,0.376,11.0,-7.913,1.0,0.0288,0.00539,0.0195,0.107,0.0581,110.026,4.0,,Warner Records,"C © 2007 Warner Records Inc., P ℗ 2007 Warner Records Inc.",9936 +9937,spotify:track:5vVmnv4EN3X2VBa5Fo3UFM,Lightning Crashes,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,spotify:album:3XbMeJ9zrtH806HuHWkZF2,Throwing Copper,spotify:artist:6eoJpTIlcuxJNjV5fDzDJH,Live,1994-01-01,https://i.scdn.co/image/ab67616d0000b273cf4c914bea5aba3e3066595a,1,5,325600,https://p.scdn.co/mp3-preview/cadb67a4f6f6adcd86c82a6ef16ae036911f6306?cid=9950ac751e34487dbbe027c4fd7f8e99,False,52,USRR29442180,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"grunge,pop rock,post-grunge",0.391,0.427,11.0,-9.271,1.0,0.0438,0.263,8.62e-06,0.174,0.45,93.192,4.0,,Radioactive,"C © 1994 Radioactive Records J.V., P ℗ 1994 Radioactive Records J.V.",9937 +9938,spotify:track:4Jeb17l8K63n5B4OJGJ6JS,You I Know,spotify:artist:604iqbiglyTgxMeKkvlBGc,Jenny Morris,spotify:album:6krhNx3Xz0opOG1RztcLjC,Body & Soul,spotify:artist:604iqbiglyTgxMeKkvlBGc,Jenny Morris,1987-08-24,https://i.scdn.co/image/ab67616d0000b2738dd00f5c30448cf3ffe3d77a,1,3,249133,https://p.scdn.co/mp3-preview/caa42f673f68c860b566f7434ceaa124077f7595?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,AUWA08717230,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic nz pop,0.511,0.751,10.0,-6.303,1.0,0.0361,0.0728,0.0,0.345,0.362,107.643,4.0,,WM Australia,"C © 1987 Warner Music Australia Pty Limited, P ℗ 1987 Warner Music Australia Pty Limited",9938 +9939,spotify:track:0ue0gFLwvXd8qZIPg35Qiu,Warning,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,spotify:album:3ifIxGNsG1XmLdoanRRIWB,Warning,spotify:artist:7oPftvlwr6VrsViSDV7fJY,Green Day,2000-10-03,https://i.scdn.co/image/ab67616d0000b2736869f1cd33bf72e00313520d,1,1,221666,https://p.scdn.co/mp3-preview/37d7be22acdf49ed7cede9f1b99523dcad08e2bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USRE10000920,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"modern rock,permanent wave,punk,rock",0.728,0.92,2.0,-2.828,1.0,0.0294,0.0673,1.61e-05,0.199,0.892,120.989,4.0,,Reprise,"C © 2000 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S., P ℗ 2000 Reprise Records for the U.S. and WEA International Inc. for the world outside of the U.S.",9939 +9940,spotify:track:0UNTBB02C1aB55Fu4H63qd,One Call Away,"spotify:artist:3s2wTjWxK8NOX09dmsvVOh, spotify:artist:5UdPkKWd8YNR5xGcmqH9QJ","Chingy, Jason Weaver",spotify:album:0Hv5X7RRaM7F3hfAq0YmzB,Jackpot,spotify:artist:3s2wTjWxK8NOX09dmsvVOh,Chingy,2003-01-01,https://i.scdn.co/image/ab67616d0000b273f9aefc986924f7e9e5e71b74,1,9,276800,https://p.scdn.co/mp3-preview/d69a6ea3eb1c3ba2914cef042c52784b74359330?cid=9950ac751e34487dbbe027c4fd7f8e99,False,61,USCA20300286,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"crunk,dirty south rap,hip pop,pop rap,southern hip hop,movie tunes",0.765,0.821,4.0,-5.926,0.0,0.183,0.093,0.0,0.217,0.962,162.519,4.0,,Capitol Records,"C © 2003 Capitol Records, LLC, P ℗ 2003 Capitol Records, LLC",9940 +9941,spotify:track:0IkKz2J93C94Ei4BvDop7P,Party Rock Anthem,"spotify:artist:3sgFRtyBnxXD5ESfmbK4dl, spotify:artist:2jLE4BoXHriQ96JagEtiDP, spotify:artist:53sIBaVjXQhfH89Vu6nEGh","LMFAO, Lauren Bennett, GoonRock",spotify:album:1MbBSfcqLg2OjkeZ1RMSIq,Sorry For Party Rocking,spotify:artist:3sgFRtyBnxXD5ESfmbK4dl,LMFAO,2011-01-01,https://i.scdn.co/image/ab67616d0000b273d77a9a738c99b8c4f7a7c3ee,1,3,262173,https://p.scdn.co/mp3-preview/e0e6256f133919ce68f7a3fd4f66cafe86be4021?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM71100061,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,pop rap",0.75,0.727,5.0,-4.21,0.0,0.142,0.0188,0.0,0.266,0.359,129.992,4.0,,Will I Am / A&M,"C © 2011 Foo & Blu, LLC, under exclusive License to Interscope Records, P ℗ 2011 Foo & Blu, LLC, under exclusive License to Interscope Records",9941 +9942,spotify:track:2ZudaDYcCTgqqYPV0TrNn8,Shiver,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,spotify:album:1PD3hNs0PRMtOeU11DPpim,Counting Down The Days,spotify:artist:0dlOr0VIysztGWvU1dpjmP,Natalie Imbruglia,2005-04-04,https://i.scdn.co/image/ab67616d0000b2739751ddaa58bf9b66c4cddc8c,1,2,222653,https://p.scdn.co/mp3-preview/86391449aec87c5d3bba44a29ce54fe1eb38b597?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBHKB0500012,spotify:user:bradnumber1,2021-11-20T11:27:29Z,"dance pop,europop,lilith,new wave pop,pop rock",0.489,0.798,1.0,-4.49,1.0,0.0316,0.00115,2.81e-06,0.149,0.309,94.163,4.0,,Brightside Recordings,P (P) 2005 Brightside Recordings a division of Blue Sky music Ltd under exclusive license to SONY BMG MUSIC ENTERTAINMENT (UK) Limited.,9942 +9943,spotify:track:08vctXbWBzMIlare7Ny8Pv,She's Like a Comet,spotify:artist:6L9bfTvOEA9BOJEIBhU4ln,Jebediah,spotify:album:6ixYNCv19oLB2y8PRCgZiR,Kosciuszko,spotify:artist:6L9bfTvOEA9BOJEIBhU4ln,Jebediah,2011-04-15,https://i.scdn.co/image/ab67616d0000b273f7bfa555810608d792a9769d,1,3,223173,https://p.scdn.co/mp3-preview/e3914aa69cfb10f5def9e64cab28eef992814a75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUUM71002301,spotify:user:bradnumber1,2023-11-16T03:15:34Z,"aussie emo,australian alternative rock,australian indie,australian rock,perth indie",0.459,0.93,6.0,-3.825,0.0,0.0432,8.87e-05,0.00146,0.146,0.666,145.022,4.0,,Jebediah,"C 2011 Jebediah, P 2011 Jebediah",9943 +9944,spotify:track:3Qp1w2cef4IFfZ2WlFF2cQ,Backroad Nation,spotify:artist:7rT5vCRSip37zugzc8KN4i,Lee Kernaghan,spotify:album:0SYyMpwxXIRWaRRa11fs25,Backroad Nation,spotify:artist:7rT5vCRSip37zugzc8KN4i,Lee Kernaghan,2019-05-10,https://i.scdn.co/image/ab67616d0000b273f6c6cf5ead8b8b7bcaf271e8,1,1,223046,https://p.scdn.co/mp3-preview/8757a48ba9f15acc5fde079eec528191330c4d83?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AUAB01900165,spotify:user:bradnumber1,2021-10-30T21:36:33Z,"australian country,australian indigenous music",0.684,0.72,6.0,-4.688,1.0,0.062,0.134,0.0,0.131,0.548,127.005,4.0,,Australian Broadcasting Corp (ABC),"C © 2019 Mirabai Pty Ltd, Exclusively licensed 2019 to Australian Broadcasting Corporation. Marketed and distributed by Universal Music Australia Pty Limited under exclusive licence., P ℗ 2019 Mirabai Pty Ltd, Exclusively licensed 2019 to Australian Broadcasting Corporation. Marketed and distributed by Universal Music Australia Pty Limited under exclusive licence.",9944 +9945,spotify:track:698ItKASDavgwZ3WjaWjtz,Faded,spotify:artist:7vk5e3vY1uw9plTHJAMwjN,Alan Walker,spotify:album:3nzuGtN3nXARvvecier4K0,Different World,spotify:artist:7vk5e3vY1uw9plTHJAMwjN,Alan Walker,2018-12-14,https://i.scdn.co/image/ab67616d0000b273a108e07c661f9fc54de9c43a,1,15,212106,https://p.scdn.co/mp3-preview/dd79198f4b4c43aef9c8e8e1c4708a402862dd0e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,80,NOG841549010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,electro house,0.468,0.627,6.0,-5.085,1.0,0.0476,0.0281,7.97e-06,0.11,0.159,179.642,4.0,,Kreatell Music,P (P) 2018 Kreatell Music under exclusive license to Sony Music Entertainment Sweden AB,9945 +9946,spotify:track:77asYwewm0lXvz76inosJm,Growing on Me,spotify:artist:5r1bdqzhgRoHC3YcCV6N5a,The Darkness,spotify:album:6vW9ZDllNv87WHXS3XTjlM,Permission to Land,spotify:artist:5r1bdqzhgRoHC3YcCV6N5a,The Darkness,2003-07-07,https://i.scdn.co/image/ab67616d0000b2734d54f9eccf5646d0f7a1bd30,1,3,211360,https://p.scdn.co/mp3-preview/4206621b2940eb49172beee0acf8309d934f656b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,47,GBAHS0300634,spotify:user:bradnumber1,2023-01-31T06:46:38Z,"glam metal,hard rock",0.401,0.899,2.0,-2.55,1.0,0.05,0.000307,2.52e-05,0.328,0.485,136.153,4.0,,Atlantic Records,"C © 2003 Warner Music UK Ltd, P ℗ 2003 Warner Music UK Ltd",9946 +9947,spotify:track:2dpaYNEQHiRxtZbfNsse99,Happier,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc","Marshmello, Bastille",spotify:album:78EicdHZr5XBWD7llEZ1Jh,Happier,"spotify:artist:64KEffDW9EtZ1y2vBYgq8T, spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc","Marshmello, Bastille",2018-08-17,https://i.scdn.co/image/ab67616d0000b27304bfd5a5fd5aa6ca648f66aa,1,1,214289,https://p.scdn.co/mp3-preview/a23fe33122a12a302b97c443ab82473ce55df8fd?cid=9950ac751e34487dbbe027c4fd7f8e99,False,11,USUG11801651,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"brostep,edm,pop,progressive electro house,metropopolis,modern rock,pop",0.687,0.792,5.0,-2.749,1.0,0.0452,0.191,0.0,0.167,0.671,100.011,4.0,,Astralwerks,"C © 2018 Joytime Collective, under exclusive license to UMG Recordings, Inc., P ℗ 2018 Joytime Collective, under exclusive license to UMG Recordings, Inc.",9947 +9948,spotify:track:4Wssme6tjko8IdxdDyXGJm,Speedy Gonzales,spotify:artist:7fmKtIgmxqNEKjATioVNsu,Pat Boone,spotify:album:5VGsOFbjwg9hOxwIPvyKIY,The Ultimate Collection,spotify:artist:7fmKtIgmxqNEKjATioVNsu,Pat Boone,1991-10-01,https://i.scdn.co/image/ab67616d0000b273d4afce13523fdc6391322d5c,1,12,156040,https://p.scdn.co/mp3-preview/d0ce993f2ad9a0fd8b911452c0ea5947f8d050bb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USMC10500081,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening,rock-and-roll,rockabilly",0.624,0.588,11.0,-8.492,1.0,0.0612,0.801,0.0,0.313,0.862,146.481,4.0,,Universal Music,"C © 1999 Geffen Records, P ℗ 1999 Geffen Records",9948 +9949,spotify:track:4Zau4QvgyxWiWQ5KQrwL43,Radar Love,spotify:artist:1iTlOqIrZy8DlvCPJY2sjS,Golden Earring,spotify:album:2qZLEQ9KsfExIhQKJF3VkD,The Long Versions - Part One,spotify:artist:1iTlOqIrZy8DlvCPJY2sjS,Golden Earring,2008-10-22,https://i.scdn.co/image/ab67616d0000b27393b0b0bc9bc1566e23999d88,1,1,386706,https://p.scdn.co/mp3-preview/0ab338f0282f7f1031a4466734e0e84d71f4ba1a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,NLC287300054,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,dutch prog,dutch rock,nederpop",0.504,0.719,1.0,-9.155,0.0,0.0431,0.00878,0.00149,0.075,0.177,102.144,4.0,,Red Bullet,"C 2008 Red Bullet, P 2008 Red Bullet",9949 +9950,spotify:track:0erLC308krrTFGETw7GYgC,Waterfalls,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,spotify:album:4ncbafeVmEMSwvxXXNUeuN,Waterfalls,spotify:artist:3jEg5HvT2cuJQDjwjZxTb0,Timomatic,2013-09-13,https://i.scdn.co/image/ab67616d0000b2730d6dce23ed042f7831bda3d9,1,1,212200,https://p.scdn.co/mp3-preview/434428ab48af0952a6c66d9c62e1727ef1e61669?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUBM01300372,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian pop,australian talent show",0.767,0.626,11.0,-3.713,0.0,0.0503,0.161,0.0,0.0592,0.785,127.993,4.0,,Sony Music Entertainment,P (P) 2013 Sony Music Entertainment Australia Pty Ltd.,9950 +9951,spotify:track:0yUlMnLpU2W6JQtvg1k4Od,Invincible,spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,spotify:album:7oKtXc3FkeOZTCB88YugON,Piece By Piece (Deluxe Version),spotify:artist:3BmGtnKgCSGYIUhmivXKWX,Kelly Clarkson,2015-02-27,https://i.scdn.co/image/ab67616d0000b2738612619562d9e86624479ec8,1,2,238360,https://p.scdn.co/mp3-preview/1269b39a1a7d07f7717255201da39d4fd780b0f6?cid=9950ac751e34487dbbe027c4fd7f8e99,False,36,GBCTA1500002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show",0.477,0.788,10.0,-5.472,1.0,0.082,0.409,0.0,0.194,0.377,138.217,4.0,,RCA Records Label,P (P) 2015 19 Recordings Limited under exclusive license to RCA Records,9951 +9952,spotify:track:1Earkwr9aBKaeNADPt3Z0J,I Love You Because,spotify:artist:7egNqIGRldMzifHoh8pib6,Al Martino,spotify:album:6cYqwmtxv1RkabW9vQvoWC,I Love You Because,spotify:artist:7egNqIGRldMzifHoh8pib6,Al Martino,2014-03-07,https://i.scdn.co/image/ab67616d0000b27374d84530d804e72dec964607,1,1,161071,https://p.scdn.co/mp3-preview/435bbdf666c4cfd7cd21005055df811e0afc31ca?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMDA71494130,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,easy listening",0.336,0.0339,8.0,-29.368,1.0,0.0317,0.586,1.64e-06,0.185,0.255,88.976,4.0,,Redwood Records,C (C) 2014 Entertain Me Europe LTD,9952 +9953,spotify:track:4S1GTwPVpkSy7CsJIDKPEz,You Deserve Better,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,spotify:album:3M1MYH8SYxLaJfBWIAsAdL,You Deserve Better / At My Weakest,spotify:artist:4IWBUUAFIplrNtaOHcJPRM,James Arthur,2018-06-01,https://i.scdn.co/image/ab67616d0000b273a28b018d945932e67c61f770,1,1,207773,https://p.scdn.co/mp3-preview/f146b20d23de482d968ae43ad1507451bf077797?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,DEE861802120,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,talent show,uk pop",0.516,0.56,6.0,-7.116,0.0,0.486,0.0322,0.0,0.15,0.696,98.94,4.0,,Columbia Local,P (P) 2018 Sony Music Entertainment Germany GmbH,9953 +9954,spotify:track:5xIkHp2NhC5Vm2rxRUPThD,Now I Run,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:03VcQnLXi87fGVXpt7pv45,Lift,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2005-10-16,https://i.scdn.co/image/ab67616d0000b2734b97ecf0eea067bdc7d05caf,1,4,222826,https://p.scdn.co/mp3-preview/70c1d2aa77a723d2147447fcf8323c0a1b8747b7?cid=9950ac751e34487dbbe027c4fd7f8e99,False,26,AUBM00599387,spotify:user:bradnumber1,2022-01-13T01:12:28Z,"australian country,australian pop,australian rock",0.389,0.692,8.0,-3.7,1.0,0.0335,0.000366,0.0,0.0833,0.432,85.501,4.0,,Sony BMG Music Entertainment,P (P) 2005 SONY BMG MUSIC ENTERTAINMENT (AUSTRALIA) PTY LIMITED,9954 +9955,spotify:track:3IDsegNBHC4pjGCOMTQYlU,"Baby, Baby",spotify:artist:72Nhcx7prNk2ZCxhx0Y5es,Amy Grant,spotify:album:6YbWlg2x8aIHASDTunWF8H,Heart In Motion,spotify:artist:72Nhcx7prNk2ZCxhx0Y5es,Amy Grant,1991,https://i.scdn.co/image/ab67616d0000b2735092211df603ccb499ccfd5b,1,2,236973,https://p.scdn.co/mp3-preview/d537a2ed443a91e2e426c861eaefd3413abc3039?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USSP30765178,spotify:user:bradnumber1,2021-08-08T09:26:31Z,christian music,0.702,0.901,1.0,-4.45,1.0,0.0264,0.426,0.00153,0.0368,0.919,97.862,4.0,,Amy Grant (AGG),"C © 2007 Amy Grant Productions, P ℗ 2007 Amy Grant Productions",9955 +9956,spotify:track:03B2SfXuvDh1m9F4tqrX07,Skin,spotify:artist:74KM79TiuVKeVCqs8QtB0B,Sabrina Carpenter,spotify:album:6JISV6SiJtQnIsNC6OVpUf,Skin,spotify:artist:74KM79TiuVKeVCqs8QtB0B,Sabrina Carpenter,2021-01-22,https://i.scdn.co/image/ab67616d0000b2732b2473f0d8c4ea75d62fba09,1,1,177500,https://p.scdn.co/mp3-preview/87823e067d407e487d161895260f9606aaf3cd1a?cid=9950ac751e34487dbbe027c4fd7f8e99,False,67,USUM72100805,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.557,0.457,7.0,-5.372,1.0,0.0335,0.428,0.0,0.0567,0.328,105.918,4.0,,Island Records,"C © 2021 Island Records, a division of UMG Recordings, Inc., P ℗ 2021 Island Records, a division of UMG Recordings, Inc.",9956 +9957,spotify:track:0L4YCNRfXAoTvdpWeH2RGj,Begin Again,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,spotify:album:1EoDsNmgTLtmwe1BDAVxV5,Red,spotify:artist:06HL4z0CvFAxyc27GXpf02,Taylor Swift,2012-10-22,https://i.scdn.co/image/ab67616d0000b27396384c98ac4f3e7c2440f5b5,1,16,237613,https://p.scdn.co/mp3-preview/5b4e3c96dd6bf5b03336b7c705b570155eb70e1b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,55,USCJY1231045,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop,0.53,0.526,7.0,-8.349,1.0,0.0263,0.199,3.52e-06,0.232,0.323,79.025,4.0,,"Big Machine Records, LLC","C © 2012 Apollo A-1 LLC, P ℗ 2012 Apollo A-1 LLC",9957 +9958,spotify:track:5h1W0CYmmJtFzbLCR2CIMk,ROCKSTAR 101,"spotify:artist:5pKCCKE2ajJHZ9KAiaK11H, spotify:artist:4Cqia9vrAbm7ANXbJGXsTE","Rihanna, Slash",spotify:album:5oMe51UhWt6rsnkAvNRd1A,Rated R,spotify:artist:5pKCCKE2ajJHZ9KAiaK11H,Rihanna,2009-11-20,https://i.scdn.co/image/ab67616d0000b2734cae51022c6881ac94a7b3a2,1,5,238853,https://p.scdn.co/mp3-preview/ec539c388354480bd6ff956db0b5dc3ecc78b4be?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,USUM70912241,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"barbadian pop,pop,urban contemporary,hard rock,rock",0.337,0.657,1.0,-4.317,1.0,0.0965,0.021,0.0,0.542,0.305,174.181,5.0,,Def Jam Recordings,"C © 2009 The Island Def Jam Music Group, P ℗ 2009 The Island Def Jam Music Group",9958 +9959,spotify:track:1NwHQqkwFjRdUgr0NC8Uqe,Switch Me On,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,spotify:album:2n0QPN69vjUwO1YEUQH7ZT,A Million Suns,spotify:artist:2JQme5IJ3U7SRVQqHGN2fG,Shannon Noll,2011-01-01,https://i.scdn.co/image/ab67616d0000b273d34b2cc8c0b842cdc6154092,1,1,206760,https://p.scdn.co/mp3-preview/cf0a06c8bf5ab27ed22f8030c9254619b371f525?cid=9950ac751e34487dbbe027c4fd7f8e99,False,21,AUUM71100618,spotify:user:bradnumber1,2023-06-23T04:39:34Z,"australian country,australian pop,australian rock",0.53,0.905,10.0,-3.495,0.0,0.0464,9.89e-05,0.0,0.084,0.652,140.021,4.0,,Universal Music Australia Pty. Ltd.,"C © 2011 Universal Music Australia Pty Ltd., P ℗ 2011 Universal Music Australia Pty Ltd.",9959 +9960,spotify:track:5VPy7NeI6uCRCcZp3VIqsJ,Even When I'm Sleeping,spotify:artist:7bLwCpWq5uZb7PoccAaEsV,Leonardo's Bride,spotify:album:2LsVtEwJVynQBCL83ZYMkZ,Angel Blood,spotify:artist:7bLwCpWq5uZb7PoccAaEsV,Leonardo's Bride,1996,https://i.scdn.co/image/ab67616d0000b273e1f8fe42f95f13100fcdf8b1,1,1,234666,https://p.scdn.co/mp3-preview/a01bb3ff78a60295a94d0913eec078e9a361aa4b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,40,AUMU09700000,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.653,0.345,5.0,-7.137,1.0,0.0246,0.533,0.0,0.0881,0.416,80.037,4.0,,WM Australia,"C © 1996 Mushroom Records, P ℗ 1996 Mushroom Records",9960 +9961,spotify:track:5AEtlRudpgdT5FtNiuly6Y,"Let Me Go (with Alesso, Florida Georgia Line & watt)","spotify:artist:5p7f24Rk5HkUZsaS3BLG5F, spotify:artist:4AVFqumd2ogHFlRbKIjp1t, spotify:artist:3b8QkneNDz4JHKKKlLgYZg, spotify:artist:4olE3I5QU0dvSR7LIpqTXc","Hailee Steinfeld, Alesso, Florida Georgia Line, WATT",spotify:album:4s5AbPXAxSCC62EWb1ZTqU,"Let Me Go (with Alesso, Florida Georgia Line & watt)","spotify:artist:5p7f24Rk5HkUZsaS3BLG5F, spotify:artist:4AVFqumd2ogHFlRbKIjp1t","Hailee Steinfeld, Alesso",2017-09-08,https://i.scdn.co/image/ab67616d0000b273dbdc892395413def043e0655,1,1,174800,https://p.scdn.co/mp3-preview/abe198a0c5a10d311d5c7c21297def76d5a0ee84?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USUM71709685,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"pop,dance pop,edm,pop,pop dance,progressive electro house,contemporary country,country,country pop,country road,modern country rock,modern alternative rock",0.659,0.717,8.0,-4.202,1.0,0.0581,0.0393,0.0,0.0769,0.71,103.036,4.0,,Universal Music Group,"C © 2017 Republic Records, a division of UMG Recordings, Inc., P ℗ 2017 Republic Records, a Division of UMG Recordings, Inc.",9961 +9962,spotify:track:3FUGhktHS6iEAReiDwXuqm,All I Have To Do Is Dream,"spotify:artist:4E9w0bms6HcEppFlWjeW2d, spotify:artist:59hLmB5DrdihCYtNeFeW1U","Bobbie Gentry, Glen Campbell",spotify:album:401isj0KdyNk0t8MM0PuBW,The Girl From Chickasaw County - The Complete Capitol Masters,spotify:artist:4E9w0bms6HcEppFlWjeW2d,Bobbie Gentry,2018-09-21,https://i.scdn.co/image/ab67616d0000b273921d2fa3fd3985f8cf7f4a06,4,12,151933,https://p.scdn.co/mp3-preview/5f49b194a00467f220eb20c6fe747d712ce1c569?cid=9950ac751e34487dbbe027c4fd7f8e99,False,35,USCN18600017,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,arkansas country,classic country pop,folk rock,mellow gold,nashville sound,singer-songwriter,soft rock",0.427,0.338,3.0,-12.244,1.0,0.0284,0.122,0.0562,0.0601,0.603,95.133,4.0,,UMC (Universal Music Catalogue),"C © 2018 Capitol Records Nashville, P This Compilation ℗ 2018 Capitol Records Nashville",9962 +9963,spotify:track:4nZQNbCTCy4CtYk64VdInu,Rock Me Gently,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,spotify:album:2jmqR9W54z9VIZN4qAQv1Y,Anthology,spotify:artist:45NevEaV0GyRopWoADDPr2,Sherbet,2008-10-11,https://i.scdn.co/image/ab67616d0000b273d3f56b11a56d0b0f192da1a7,1,21,235333,https://p.scdn.co/mp3-preview/066d5e2bcad3b89b90f449b7c11fd12546140644?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULI00621390,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.643,0.843,7.0,-7.25,1.0,0.0304,0.157,0.000342,0.657,0.565,111.786,4.0,,Bloodlines,"C 2008 Bloodlines, P 2008 Bloodlines",9963 +9964,spotify:track:1TQ6a2NEA8LmKfgf0yeBvT,Everybody's Free (To Wear Sunscreen),"spotify:artist:0dfkF1i9s8ZyOAKbV572T7, spotify:artist:2C18qcP3k1dkMJpByV6rZX","Quindon Tarver, Josh Abrahams",spotify:album:30NOuZiJRlawF26dmWVaJo,Everybody's Free (To Wear Sunscreen),spotify:artist:7HhTERkBV4Ot14KphgBfSh,Baz Luhrmann,1999-01-01,https://i.scdn.co/image/ab67616d0000b273f06a2992f36dc0816979c81c,1,1,309133,https://p.scdn.co/mp3-preview/c1a4e01fa00015a4152b7f0ac50d3e36cc7543ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,14,AUEM09900001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.827,0.526,6.0,-13.365,0.0,0.363,0.639,8.2e-06,0.391,0.801,91.552,4.0,,Capitol Records,"C © 1999 Capitol Records, LLC, P ℗ 1999 Capitol Records, LLC",9964 +9965,spotify:track:3HZMEIZY9Z6GdhPaG5bAK2,It's Over,spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,spotify:album:2jTbcSPVTBRAoc3mHU6hy0,"Oh, Pretty Woman",spotify:artist:0JDkhL4rjiPNEp92jAgJnS,Roy Orbison,1962,https://i.scdn.co/image/ab67616d0000b2731b3c09cb3ec9f618664f2622,1,6,181666,https://p.scdn.co/mp3-preview/271e8452c86f781da82fc70879500eba077e743b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,42,USSM19805298,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,classic rock,folk rock,mellow gold,rock-and-roll,rockabilly,singer-songwriter,soft rock",0.462,0.319,0.0,-12.448,1.0,0.0255,0.74,0.000758,0.0803,0.489,89.672,4.0,,Monument/Orbison Records/Legacy,"P Originally released 1962, 1963, 1964, 1966. All rights reserved by Sony Music Entertainment",9965 +9966,spotify:track:6XpczhG192lULA9i4JLqKJ,All Fired Up,spotify:artist:43mhFhQ4JAknA7Ik1bOZuV,Pat Benatar,spotify:album:1cglcD9iGtfheI7hmVdoUb,Wide Awake In Dreamland,spotify:artist:43mhFhQ4JAknA7Ik1bOZuV,Pat Benatar,1988-01-01,https://i.scdn.co/image/ab67616d0000b273f048abf63ca38b72bfeac9ca,1,1,272200,https://p.scdn.co/mp3-preview/319ac531ee72e13451247e5262b3c73922dc14d1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,USCH38800001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,classic rock,glam metal,hard rock,mellow gold,new romantic,new wave pop,rock,singer-songwriter,soft rock",0.666,0.883,0.0,-9.601,1.0,0.0484,0.0826,0.000563,0.114,0.521,148.06,4.0,,Capitol Records,"C © 1988 Capitol Records, LLC, P ℗ 1988 Capitol Records, LLC",9966 +9967,spotify:track:3BEZCNZSmVv30vsMNSOCri,"Layla - Acoustic; Live at MTV Unplugged, Bray Film Studios, Windsor, England, UK, 1/16/1992; 2013 Remaster",spotify:artist:6PAt558ZEZl0DmdXlnjMgD,Eric Clapton,spotify:album:3ebyEGol0Abc7VAxYf7vEg,Unplugged (Deluxe Edition),spotify:artist:6PAt558ZEZl0DmdXlnjMgD,Eric Clapton,1992-08-25,https://i.scdn.co/image/ab67616d0000b273d55ec7fcfacd95e73877b787,1,7,289026,https://p.scdn.co/mp3-preview/29864405d9b7e78de02c88576c66404892278f75?cid=9950ac751e34487dbbe027c4fd7f8e99,False,2,USRE11300317,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,blues rock,classic rock,electric blues,mellow gold,rock,singer-songwriter,soft rock",0.558,0.524,2.0,-11.626,0.0,0.0459,0.321,0.000952,0.94,0.636,93.654,4.0,,Rhino/Warner Records,"C © 2013 Reprise Records, A Warner Music Group Company. All Rights Reserved., P ℗ 2013 MTV Networks. Manufactured & Marketed by Warner Music Group. Made In U.S.A.",9967 +9968,spotify:track:3ylFvJfARlPKxGWAJv6Bvf,Hey Everybody!,spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,spotify:album:43v9cUsP5K0hvu9iyuAzmZ,Sounds Good Feels Good (Deluxe),spotify:artist:5Rl15oVamLq7FbSb0NNBNy,5 Seconds of Summer,2015-10-23,https://i.scdn.co/image/ab67616d0000b273a7cb3e00ac2f3a1bf8679fef,1,3,196937,https://p.scdn.co/mp3-preview/93b3bb52babf540b104441dc9963087b0c11e3b9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,44,GBUM71505172,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"boy band,pop",0.753,0.803,9.0,-3.737,1.0,0.0316,0.000938,0.0,0.101,0.854,126.014,4.0,,Capitol,"C © 2015 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited, P ℗ 2015 One Mode Productions Limited, under exclusive licence to Universal Music Operations Limited",9968 +9969,spotify:track:6NssDwHnosForAnJZyM6p3,That Girl Belongs To Yesterday,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,spotify:album:6gJ1d3KgMLwEKeck53FYxc,The Best Of Gene Pitney,spotify:artist:3ap1NzHNV9QA1x1V6z3gSe,Gene Pitney,2019-04-17,https://i.scdn.co/image/ab67616d0000b273fb4c46e199dfc54f5400ba69,1,8,170400,https://p.scdn.co/mp3-preview/81cca653924aa947ae0c617f162d5e679e3e6a7e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,USACU0500080,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,brill building pop,merseybeat,rock-and-roll,rockabilly",0.529,0.484,2.0,-13.635,1.0,0.0411,0.392,0.00646,0.349,0.72,122.156,4.0,,Musicor Records,"C 1984 Gusto Records Inc., P 1984 Gusto Records Inc.",9969 +9970,spotify:track:2blW9gA8rUVsCYuepOJByI,Short Memory - Remastered Version,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,spotify:album:6uNRClJFgtpoSaAS6jUeeV,Essential Oils,spotify:artist:72KyoXzp0NOQij6OcmZUxk,Midnight Oil,2012-11-02,https://i.scdn.co/image/ab67616d0000b27356ab0253febac2d352479f25,1,10,232466,https://p.scdn.co/mp3-preview/df9ac76cbe13e104451d1f6cb4d83b247099d592?cid=9950ac751e34487dbbe027c4fd7f8e99,False,28,AUBM00800383,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new romantic",0.749,0.68,1.0,-6.216,1.0,0.0237,0.0665,0.000282,0.0886,0.589,106.437,3.0,,Midnight Oil,P This compilation (P) 2012 Midnight Oils Ents Pty Ltd. under exclusive license to Sony Music Entertainment Australia Pty Ltd.,9970 +9971,spotify:track:1PDmepvxFGC6jP1GTs7rne,Unbroken,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,spotify:album:5ZvaQq8cnyHgYzPOkgMLR7,From The Inside Out,spotify:artist:7fRw4ouudxR1jHgyrTIKuY,Stan Walker,2010-08-23,https://i.scdn.co/image/ab67616d0000b2739acfbc65fc1d5a47a7c5bff0,1,3,273960,https://p.scdn.co/mp3-preview/0cb9a83c44073c172086e674ce55156aff28cc32?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,AUBM01000102,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian talent show,nz christian,nz pop",0.377,0.896,0.0,-4.906,1.0,0.123,0.278,0.0,0.139,0.651,74.893,4.0,,Sony Music Entertainment,P (P) 2010 Sony Music Entertainment Australia Pty Ltd. except track 13 (P) 2010 Move The Crowd Records,9971 +9972,spotify:track:0kLr0nVX2l43OlZSp4Jl9t,Wizard - Radio Edit,"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:12SPNXi0aDpFt0rMVbmLrr","Martin Garrix, Jay Hardway",spotify:album:7ezRHMW3IUchDjNKfsKQdZ,Wizard,"spotify:artist:60d24wfXkVzDSfLS6hyCjZ, spotify:artist:12SPNXi0aDpFt0rMVbmLrr","Martin Garrix, Jay Hardway",2013-12-16,https://i.scdn.co/image/ab67616d0000b273b1cfcffe82de82545fb92187,1,2,202411,https://p.scdn.co/mp3-preview/651f410a09bfdf09eaaa015df137670abf05f276?cid=9950ac751e34487dbbe027c4fd7f8e99,False,29,NLZ541300823,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dutch edm,edm,pop,pop dance,progressive house,dutch edm,dutch house,edm,electro house,pop dance,progressive electro house",0.565,0.916,7.0,-4.715,0.0,0.052,0.00439,0.488,0.616,0.0795,127.844,4.0,,Spinnin' Records,"C © 2013 SpinninRecords.com, P ℗ 2013 SpinninRecords.com",9972 +9973,spotify:track:7rGMKCgeYXpBecQ1FPb3oc,Without You (feat. Usher),"spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai, spotify:artist:23zg3TcAtWQy7J6upgbUnj","David Guetta, USHER",spotify:album:08DAekBeqPRCsn3XHDwj6b,Nothing but the Beat,spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai,David Guetta,2011-08-31,https://i.scdn.co/image/ab67616d0000b273b234aeff6eedc8276fe0333a,1,5,208133,https://p.scdn.co/mp3-preview/dc7d9e45294e4f2ed194693a78e46e9a85fd1210?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,GB28K1100030,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"big room,dance pop,edm,pop,pop dance,atl hip hop,contemporary r&b,dance pop,pop,r&b,rap,south carolina hip hop,urban contemporary",0.608,0.614,2.0,-3.727,1.0,0.0285,0.227,3.82e-06,0.157,0.402,127.885,4.0,,Parlophone (France),"C © 2011 What A Music Ltd, Licence exclusive Parlophone Music France, P ℗ 2011 What A Music Ltd, Licence exclusive Parlophone Music France",9973 +9974,spotify:track:7v02Sn9vYRQ6pc1lqhnkWY,Save Tonight,spotify:artist:3ngKsDXZAssmljeXCvEgOe,Eagle-Eye Cherry,spotify:album:77iqlwJ5GPlF98kTpd3ZjE,Desireless,spotify:artist:3ngKsDXZAssmljeXCvEgOe,Eagle-Eye Cherry,1997-07-21,https://i.scdn.co/image/ab67616d0000b273a962755f305c19dda52a30d7,1,1,236040,https://p.scdn.co/mp3-preview/92ede2b4283630cbfd4cbf508b22cc248ffc740f?cid=9950ac751e34487dbbe027c4fd7f8e99,False,51,SELEB9702010,spotify:user:bradnumber1,2021-08-08T09:26:31Z,pop rock,0.548,0.742,0.0,-6.536,1.0,0.0337,0.000154,3.97e-05,0.109,0.583,119.496,4.0,,Diesel,"C 1997 Diesel Music AB, a subsidiary of Playground Music Scandinavia AB, P 1997 Diesel Music AB, a subsidiary of Playground Music Scandinavia AB",9974 +9975,spotify:track:6jGnykaS6TkWp15utXSAeI,Come Away With Me,spotify:artist:2Kx7MNY7cI1ENniW7vT30N,Norah Jones,spotify:album:3ArSFkv4OQOosOvYTrZNIl,Come Away With Me (Super Deluxe Edition),spotify:artist:2Kx7MNY7cI1ENniW7vT30N,Norah Jones,2002-02-26,https://i.scdn.co/image/ab67616d0000b273c648a42b5dad72c8aafceeec,1,5,198226,https://p.scdn.co/mp3-preview/5a29b72abfba667fd01169f80cd07576e2d62133?cid=9950ac751e34487dbbe027c4fd7f8e99,False,71,USBN20100889,spotify:user:bradnumber1,2022-12-21T10:17:59Z,"contemporary vocal jazz,jazz pop,neo mellow,vocal jazz",0.436,0.141,0.0,-13.271,1.0,0.0308,0.902,2.81e-06,0.126,0.146,76.64,3.0,,CM BLUE NOTE (A92),"C © 2022 Capitol Records, LLC, P ℗ 2022 Capitol Records, LLC",9975 +9976,spotify:track:4c2W3VKsOFoIg2SFaO6DY5,Your Song,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,spotify:album:6lrm01OVZZVmarH2XLSAXZ,Your Song,spotify:artist:5CCwRZC6euC8Odo6y9X8jr,Rita Ora,2017-05-25,https://i.scdn.co/image/ab67616d0000b273528e7f2b6eda1b2a20ccfb1f,1,1,180757,https://p.scdn.co/mp3-preview/1f5a1e6c4d0a7423aa2195e056b8ed89758a2739?cid=9950ac751e34487dbbe027c4fd7f8e99,False,57,GBAHT1700323,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,uk pop",0.855,0.624,1.0,-4.093,1.0,0.0488,0.158,0.0,0.0513,0.962,117.959,4.0,,Atlantic Records UK,"C © 2017 Atlantic Records UK, a Warner Music Group company, P ℗ 2017 Atlantic Records UK, a Warner Music Group company",9976 +9977,spotify:track:67I8eELvVMS1zfEGfbM0uc,Somebody Loves You,spotify:artist:0t3QQl52F463sxGXb1ckhB,Betty Who,spotify:album:17xYStCnOWF5AjhzWY4vCY,Somebody Loves You,spotify:artist:0t3QQl52F463sxGXb1ckhB,Betty Who,2012-12-01,https://i.scdn.co/image/ab67616d0000b2732178f655b40af86f92a9ea65,1,1,217411,https://p.scdn.co/mp3-preview/52fbaf4f78a7042022cee828cb12c8e7f2c96b09?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,TCABK1281037,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,dance pop,electropop,metropopolis",0.626,0.929,2.0,-3.927,1.0,0.0507,0.00126,0.0,0.244,0.683,122.979,4.0,,Betty Who,"C 2012 Betty Who, P 2012 Betty Who",9977 +9978,spotify:track:78YtdBekqT2rpxQug9HIPe,Heaven Help My Heart,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,spotify:album:0NLEDUOmZQ4dvh0mIa7iQe,Don't Ask,spotify:artist:1ZTCpKWDwHhbjhkdHhvTm8,Tina Arena,1994-04-30,https://i.scdn.co/image/ab67616d0000b273ab4332b95c9425e87aa06238,1,2,328093,https://p.scdn.co/mp3-preview/64c56149c3efae97839e47736d98aa094e0547ec?cid=9950ac751e34487dbbe027c4fd7f8e99,False,32,AUSM09500037,spotify:user:bradnumber1,2022-02-03T10:03:09Z,"australian dance,australian pop,australian rock",0.521,0.72,7.0,-6.008,1.0,0.0433,0.0307,0.000756,0.0751,0.768,200.214,4.0,,Epic,P 1994 Sony Music Entertainment (Australia) PTY. Ltd.,9978 +9979,spotify:track:0cXFXgFns7sIMmTpqyGRmD,Xanadu,spotify:artist:4BoRxUdrcgbbq1rxJvvhg9,Olivia Newton-John,spotify:album:325AF2IWtxrY0jcoW25N45,Xanadu - Original Motion Picture Soundtrack,spotify:artist:7jefIIksOi1EazgRTfW2Pk,Electric Light Orchestra,1980-06-01,https://i.scdn.co/image/ab67616d0000b2735ae21bf9c1a1b685d2b994a6,1,10,208240,https://p.scdn.co/mp3-preview/ce53e323f63bd2ed22ff0b515a9b7b3ade8ed714?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USSM19801023,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"adult standards,australian dance,disco,mellow gold,soft rock",0.635,0.584,6.0,-9.112,1.0,0.0296,0.118,0.0,0.29,0.711,127.626,4.0,,Epic,P 1980 Sony Music Entertainment Inc. / MCA Records Inc.,9979 +9980,spotify:track:7exWL20TLQog1BKzDoDGs5,Talk,"spotify:artist:540vIaP2JwjQb9dm3aArA4, spotify:artist:19m3oZKjGSLzVW0OGIAcNg","DJ Snake, George Maple",spotify:album:55bbXORm6ZrVq52zfZnxBf,Encore,spotify:artist:540vIaP2JwjQb9dm3aArA4,DJ Snake,2016-08-05,https://i.scdn.co/image/ab67616d0000b2735045de6786e0af096de73ed4,1,6,237960,https://p.scdn.co/mp3-preview/e1a30d3471b83313625246fc54e4d7ea8901d767?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,QMZSY1600003,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,electronic trap,pop,pop dance,australian pop",0.519,0.808,7.0,-4.509,1.0,0.0979,0.00931,0.0,0.124,0.246,118.103,4.0,,Universal Music Group,"C © 2016 DJ Snake Music, under exclusive license to Interscope Records, P ℗ 2016 DJ Snake Music, under exclusive license to Interscope Records",9980 +9981,spotify:track:3CVDronuSnhguSUguPoseM,Thank U,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,spotify:album:2QXT4rGSfqjqfgpZ059yKp,Supposed Former Infatuation Junkie,spotify:artist:6ogn9necmbUdCppmNnGOdi,Alanis Morissette,1998-10-16,https://i.scdn.co/image/ab67616d0000b273c694da863eeeae3149c5c590,1,3,258773,https://p.scdn.co/mp3-preview/8b3c1da991d3b7a37f0ae91621ad88f40900660c?cid=9950ac751e34487dbbe027c4fd7f8e99,False,65,USMV29800119,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"canadian pop,canadian singer-songwriter,lilith,neo mellow,pop rock,singer-songwriter",0.672,0.616,0.0,-5.764,1.0,0.0258,0.379,2.73e-05,0.0887,0.566,92.094,4.0,,Reprise/Maverick,"C © 1998 Maverick Recording Company, P ℗ 1998 Maverick Recording Company",9981 +9982,spotify:track:4Mcp7hCBcT2EoBibSKHVM6,Come Back and Shake Me,spotify:artist:22uaaE0bTj1EhPKCk1npDg,Clodagh Rodgers,spotify:album:0mFAX9Za8fWFbLQJrFwokn,You Are My Music... Best Of,spotify:artist:22uaaE0bTj1EhPKCk1npDg,Clodagh Rodgers,1996-09-28,https://i.scdn.co/image/ab67616d0000b273bfb24882d3cef2edd1b5a7ae,1,1,156800,https://p.scdn.co/mp3-preview/63e3292ae4b312991001773f96107f076cd308f9?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GBARL7300021,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic uk pop,0.817,0.382,1.0,-9.704,1.0,0.0487,0.232,0.000181,0.165,0.722,117.148,4.0,,RCA Camden,P This Compilation (P) 1996 BMG Entertainment International UK & Ireland Ltd.,9982 +9983,spotify:track:6RFJfrmpqkR6i6w8VFsb6i,Science Fiction,spotify:artist:5t06MTkDD3yr5LVs3YFLQC,Divinyls,spotify:album:4Yz03wMtt5EPE7J29PPB0l,Essential,"spotify:artist:5t06MTkDD3yr5LVs3YFLQC, spotify:artist:2c0pcpdtdPQR43bR4dLh1A","Divinyls, Michael Chapman",1991-01-01,https://i.scdn.co/image/ab67616d0000b2739115764f90ac6f121eb897bc,1,9,212973,https://p.scdn.co/mp3-preview/c6b4c0a36f006c8a961484fdbd815bf8e98eea09?cid=9950ac751e34487dbbe027c4fd7f8e99,False,18,USCA28300136,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian rock,new wave pop",0.639,0.817,2.0,-7.848,0.0,0.0259,0.0111,0.0,0.0843,0.913,128.746,4.0,,Chrysalis\EMI Records (USA),"C © 1991 Capitol Records, LLC, P ℗ 1991 Capitol Records, LLC",9983 +9984,spotify:track:66LhCsc06aTa2Ig7iYPDSP,Stop Draggin' My Heart Around (with Tom Petty and The Heartbreakers) - 2016 Remaster,"spotify:artist:7crPfGd2k81ekOoSqQKWWz, spotify:artist:4tX2TplrkIP4v05BNC903e","Stevie Nicks, Tom Petty and the Heartbreakers",spotify:album:0IomjU2bXFng4LQBYn7Het,Bella Donna (2016 Remastered),spotify:artist:7crPfGd2k81ekOoSqQKWWz,Stevie Nicks,1981-07-27,https://i.scdn.co/image/ab67616d0000b273af14d74d5e308ce2f3ec22f8,1,3,244440,https://p.scdn.co/mp3-preview/3b310c19f6cc5c7490838bb8082515d4dba99889?cid=9950ac751e34487dbbe027c4fd7f8e99,False,63,USRH11604195,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"heartland rock,album rock,classic rock,hard rock,heartland rock,mellow gold,rock,singer-songwriter,soft rock",0.631,0.597,4.0,-7.382,0.0,0.026,0.379,0.00273,0.146,0.665,107.26,4.0,,Rhino Atlantic,"C © 1981 Modern Records, Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved., P ℗ 1981 Modern Records, Inc. Marketed by Rhino Entertainment Company, a Warner Music Group Company. All Rights Reserved.",9984 +9985,spotify:track:6OPZtIV3uoZQT1YkoiEQH9,The Other Side,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,spotify:album:1OdcBxCNY52OXH0r4odXqP,Tattoos,spotify:artist:07YZf4WDAMNwqr4jfgOZ8y,Jason Derulo,2013-09-10,https://i.scdn.co/image/ab67616d0000b273ba30e4d27e93015180b4924d,1,1,226986,https://p.scdn.co/mp3-preview/b2c287f5dae13995dcbd84eebdcc17c85f48d882?cid=9950ac751e34487dbbe027c4fd7f8e99,False,58,USWB11301002,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop",0.561,0.836,9.0,-3.939,1.0,0.1,0.0525,0.0,0.136,0.517,127.923,4.0,,Beluga Heights/Warner Records,"C © 2013 Warner Records Inc., P ℗ 2013 Warner Records Inc.",9985 +9986,spotify:track:10SOGyug8Cv35dcrByAD68,"Alley Cat - Fra Tv-serien ""Omkring Et Flygel""",spotify:artist:2pqg1wPgIG4FRB5nckEPJw,Bent Fabricius-Bjerre,spotify:album:45EjFXdJT97P28GXVvBZsm,100 Go'e,spotify:artist:2pqg1wPgIG4FRB5nckEPJw,Bent Fabricius-Bjerre,2005,https://i.scdn.co/image/ab67616d0000b273e659756883c4a994bb58b6d4,1,5,151240,https://p.scdn.co/mp3-preview/07957dd2585877640191b5d8c53256522fcf671b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,22,DKABA1104001,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"classic danish pop,nordic soundtrack",0.819,0.369,0.0,-8.607,1.0,0.0368,0.855,0.723,0.101,0.619,109.951,4.0,,Parlophone Denmark,"C © 2005 Parlophone Music Denmark This Labelcopy information is the subject of Copyright Protection. All rights reserved. (C) 2005 Parlophone Music Denmark A/S, P ℗ 2005 The copyright in this sound recording is owned by Parlophone Music Denmark",9986 +9987,spotify:track:7w9bgPAmPTtrkt2v16QWvQ,"Lose Yourself - From ""8 Mile"" Soundtrack",spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,spotify:album:71xFWYFtiHC8eP99QB30AA,Curtain Call (Deluxe),spotify:artist:7dGJo4pcD2V6oG8kP0tJRR,Eminem,2005-12-06,https://i.scdn.co/image/ab67616d0000b273a8a32ae2a279b9bf03445738,1,6,326466,https://p.scdn.co/mp3-preview/03b89cd457ff6f50e839a01873511b48e54c9c12?cid=9950ac751e34487dbbe027c4fd7f8e99,True,5,USIR10211559,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"detroit hip hop,hip hop,rap",0.701,0.728,2.0,-4.554,1.0,0.255,0.00971,0.00115,0.361,0.0591,171.388,4.0,,Universal Music Group,"C © 2005 Aftermath Entertainment/Interscope Records, P ℗ 2005 Aftermath Entertainment/Interscope Records",9987 +9988,spotify:track:0cJPLFrlV7TTCyPLupHzcH,Won't Get Fooled Again - Original Album Version,spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,spotify:album:5MqyhhHbT13zsloD3uHhlQ,Who's Next (Deluxe Edition),spotify:artist:67ea9eGLXYMsO2eYQRui3w,The Who,1971-08-14,https://i.scdn.co/image/ab67616d0000b273fe24dcd263c08c6dd84b6e8c,1,9,511400,https://p.scdn.co/mp3-preview/fa3a2ecaa119486275065e7ae2754e239264ba50?cid=9950ac751e34487dbbe027c4fd7f8e99,False,62,GBAKW7100100,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"album rock,british invasion,classic rock,hard rock,rock",0.686,0.92,2.0,-6.231,1.0,0.0566,0.301,0.27,0.0807,0.225,135.027,4.0,,Polydor Records,"C © 2003 Polydor Ltd. (UK), P This Compilation ℗ 2003 Polydor Ltd. (UK)",9988 +9989,spotify:track:0ct6r3EGTcMLPtrXHDvVjc,The Nights,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,spotify:album:0h2knr6qpiAq0tV5ri5JMF,The Days / Nights,spotify:artist:1vCWHaC5f2uS3yhpwWbIA6,Avicii,2014-01-01,https://i.scdn.co/image/ab67616d0000b2730ae4f4d42e4a09f3a29f64ad,1,2,176658,https://p.scdn.co/mp3-preview/7866e9567e7398035a01f663104ea1c5c28d11b1?cid=9950ac751e34487dbbe027c4fd7f8e99,False,83,CH3131340464,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,edm,pop,pop dance",0.527,0.835,6.0,-5.298,1.0,0.0433,0.0166,0.0,0.249,0.654,125.983,4.0,,Universal Music AB,"C © 2014 Avicii Music AB, under exclusive license to Universal Music AB, P ℗ 2014 Avicii Music AB, under exclusive license to Universal Music AB",9989 +9990,spotify:track:3Nbcx1svCSzmyYG2I81YCZ,Up (feat. Demi Lovato),"spotify:artist:3whuHq0yGx60atvA2RCVRW, spotify:artist:6S2OmqARrzebs0tKUEyXyp","Olly Murs, Demi Lovato",spotify:album:0jD1tOJpP0Qz8UcLq3FFkr,Never Been Better (Deluxe),spotify:artist:3whuHq0yGx60atvA2RCVRW,Olly Murs,2014-11-21,https://i.scdn.co/image/ab67616d0000b2739bf59f7a0e061de08140d425,1,4,224293,https://p.scdn.co/mp3-preview/076e37a52f7407ec9de9fad43280182da12b4353?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBARL1401280,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"dance pop,pop,talent show,uk pop,pop,post-teen pop",0.69,0.845,9.0,-4.676,1.0,0.0339,0.0193,0.0,0.101,0.638,114.948,4.0,,Epic,P (P) 2014 Sony Music Entertainment UK Limited,9990 +9991,spotify:track:2LYbp1Z0tz4YQA7u73jaK1,Break in the Weather,spotify:artist:604iqbiglyTgxMeKkvlBGc,Jenny Morris,spotify:album:2pXf6hJ00Jtx4DIywmoh4R,Listen-The Very Best Of,spotify:artist:604iqbiglyTgxMeKkvlBGc,Jenny Morris,2004-04-01,https://i.scdn.co/image/ab67616d0000b2737330f162df31aa5193d1940f,1,3,272626,https://p.scdn.co/mp3-preview/7f14aa04db0980e85e23f6e86e26d6a0e85755fb?cid=9950ac751e34487dbbe027c4fd7f8e99,False,13,AUWA08715551,spotify:user:bradnumber1,2021-08-08T09:26:31Z,classic nz pop,0.715,0.554,7.0,-8.234,0.0,0.0362,0.0524,1.68e-05,0.0344,0.945,126.707,4.0,,WM Australia,"C © 2004 Warner Music Australia Pty Limited, P ℗ 2004 Warner Music Australia Pty Limited",9991 +9992,spotify:track:4VIpspaQ1frWWzTj8suyHR,Torn Between Two Lovers,spotify:artist:6GlDsAkQHOmNgtUZdJ4Amq,Mary MacGregor,spotify:album:1EQEIZIv1DAyo62wmQlDhY,Essential Memories Of Love,spotify:artist:0LyfQWJT6nXafLPZqxe9Of,Various Artists,2010-02-09,https://i.scdn.co/image/ab67616d0000b2733185ef93fc7877cd929808c7,2,6,230426,https://p.scdn.co/mp3-preview/38768b315f1f452849d10acf38ac32f066f1b50b?cid=9950ac751e34487dbbe027c4fd7f8e99,False,45,USAR17600005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.552,0.343,10.0,-12.502,1.0,0.0309,0.73,9.94e-05,0.468,0.48,132.415,4.0,,RCA Records Label,"P Esta Compilación (P) 2010 Sony Music Entertainment México, S.A. De C.V.",9992 +9993,spotify:track:1cy5US2dffz6QGBAIzOGkq,I'll Be Loving You (Forever),spotify:artist:55qiaow2sDYtjqu1mwRua6,New Kids On The Block,spotify:album:0W7mquARagPr9V1N0nHYgK,Hangin' Tough,spotify:artist:55qiaow2sDYtjqu1mwRua6,New Kids On The Block,1988-09-02,https://i.scdn.co/image/ab67616d0000b273c9866ae0043a0ccd4075fd05,1,3,263933,https://p.scdn.co/mp3-preview/60e9b792bc19b14cb76506921b0b22f1821b62b0?cid=9950ac751e34487dbbe027c4fd7f8e99,False,56,USSM18700357,spotify:user:bradnumber1,2021-08-08T09:26:31Z,boy band,0.597,0.282,11.0,-17.23,1.0,0.0256,0.285,0.0,0.105,0.301,134.797,4.0,,Columbia,P (P) 1988 Sony Music Entertainment Inc.,9993 +9994,spotify:track:1taGkdO3DQsNRIQrarhVvc,Puttin' on the Ritz,spotify:artist:6Dxf1ZaJBrpbumiqTTnlIH,Taco,spotify:album:4rgfo8MPhMChBrxtBV8Fsh,After Eight,spotify:artist:6Dxf1ZaJBrpbumiqTTnlIH,Taco,1982-01-01,https://i.scdn.co/image/ab67616d0000b273f13127cb48c63b2fb0c16521,1,3,281160,https://p.scdn.co/mp3-preview/19ed3e3ab36e51d8e2ff03e1a0e2c3370f5490a4?cid=9950ac751e34487dbbe027c4fd7f8e99,False,60,DEK898200020,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.798,0.292,0.0,-17.112,1.0,0.0777,0.152,0.00101,0.185,0.812,98.653,4.0,,Aviator-Entertainment,"C 1982 Peer Southern Productions Germany, P 1982 Peer Southern Productions Germany under exclusive license to Aviator-Entertainment",9994 +9995,spotify:track:0gTFo2Va6oImBxUZOEOg9T,Da Ya Think I'm Sexy?,"spotify:artist:45InkbGypoMk5nVX6dsHkt, spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT","N-Trance, Rod Stewart",spotify:album:1pXHEk0IX0foNN22eCe1h6,Da Ya Think I'm Sexy?,spotify:artist:45InkbGypoMk5nVX6dsHkt,N-Trance,1997-10-27,https://i.scdn.co/image/ab67616d0000b2738995c8f17a26e711dc079e60,1,1,262960,https://p.scdn.co/mp3-preview/3326ca012f0f396c6de572acd8e8e199a7196b16?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,GBCFZ9700681,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"eurodance,hip house,mellow gold,soft rock",0.819,0.65,0.0,-10.829,1.0,0.0395,0.000814,0.0127,0.47,0.794,112.307,4.0,,All Around The World,"C © 1997 Universal Music Operations Limited, P All Around The World Limited; ℗ 1997 Universal Music Operations Limited",9995 +9996,spotify:track:1GLM0M9DA62xZsyp2UNq7i,Sugar,"spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY, spotify:artist:4xrDCETyApzUQ6xzcc6QtS","Peking Duk, Jack River",spotify:album:3ckS9PjG1wgGbMuLKAUkk6,Sugar,"spotify:artist:0UZ1nu3kcdNlCoiKRjmSSY, spotify:artist:4xrDCETyApzUQ6xzcc6QtS","Peking Duk, Jack River",2019-01-17,https://i.scdn.co/image/ab67616d0000b273724dd8fd549dc4d1e92c395b,1,1,191574,https://p.scdn.co/mp3-preview/a7dda55618741c3f3487e24d3f83cd9e881e0236?cid=9950ac751e34487dbbe027c4fd7f8e99,False,41,AUBM01800432,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"aussietronica,australian electropop,australian indie,edm,australian indie",0.529,0.722,8.0,-5.931,1.0,0.0418,0.00415,0.00155,0.207,0.47,97.006,4.0,,Sony Music Entertainment,P (P) 2019 Sony Music Entertainment Australia Pty Ltd,9996 +9997,spotify:track:1AMEicdMJudkwm5IgNTx9R,Jackson’s Last Stand - Radio Edit,spotify:artist:1m3jswEIBazYObuVL9NriQ,Ou Est Le Swimming Pool,spotify:album:06qedlQcZitUj1ZqhZqqRh,Jackson’s Last Stand,spotify:artist:1m3jswEIBazYObuVL9NriQ,Ou Est Le Swimming Pool,2010-01-01,https://i.scdn.co/image/ab67616d0000b273ceb2baaf10984611e4188579,1,1,190000,https://p.scdn.co/mp3-preview/af21d8011400d856bfcab9f9c807cee7907384ad?cid=9950ac751e34487dbbe027c4fd7f8e99,False,20,GB7QY1000141,spotify:user:bradnumber1,2021-08-08T09:26:31Z,"australian dance,neo-synthpop",0.602,0.896,10.0,-7.702,0.0,0.0406,0.0174,0.231,0.344,0.457,120.016,4.0,,Universal Music Australia Pty. Ltd.,"C © 2010 Fire & Manoeuvre, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty ltd, P ℗ 2010 Fire & Manoeuvre, under exclusive license to Hussle Recordings, a division of Ministry of Sound Australia Pty ltd",9997 +9998,spotify:track:5ubGyprsZq8GQriurAF1dW,Sick N Tired,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,spotify:album:3cJuy4g8vnye5101NGQtmC,The Very Best Of,spotify:artist:4Zwtv7Mc3eHv465GJ6au6n,Billy Thorpe & The Aztecs,2007-02-06,https://i.scdn.co/image/ab67616d0000b273423d8fbd404e3a60d5e1dde8,1,6,188026,https://p.scdn.co/mp3-preview/4f37727f303c4ca9e4c7c02302095d9c44c4e02e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,17,AUAP06400005,spotify:user:bradnumber1,2021-08-08T09:26:31Z,australian rock,0.58,0.504,2.0,-12.164,1.0,0.081,0.297,0.0,0.0871,0.865,166.826,4.0,,WM Australia,"C © 1994 Mushroom Records, P ℗ 1994 Mushroom Records",9998 +9999,spotify:track:197s0DnYmVVQkkpBP6Vjb2,They Won't Let My Girlfriend Talk to Me,spotify:artist:4hLWZnPflr5BbxpHbZYBCk,Jimmy & the Boys,spotify:album:51isv9xcpNlXUEQcXbIdl6,Teddy Boys Picnic,spotify:artist:4hLWZnPflr5BbxpHbZYBCk,Jimmy & the Boys,1981,https://i.scdn.co/image/ab67616d0000b273e7e3955fa2885f1a19fa18f1,1,5,198546,https://p.scdn.co/mp3-preview/5a8a3ac33a44619f4db0869c42bac4ee334b238e?cid=9950ac751e34487dbbe027c4fd7f8e99,False,0,AULB41700078,spotify:user:bradnumber1,2021-08-08T09:26:31Z,,0.604,0.596,11.0,-10.021,1.0,0.0315,0.528,0.0,0.0582,0.337,127.552,3.0,,Fable Records,"C 1981 Avenue Records, P 2017 Southern Cross Music Pty Limited",9999 diff --git a/frontend/s/.gitignore b/frontend/s/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/frontend/s/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/LICENSE b/frontend/s/LICENSE similarity index 100% rename from LICENSE rename to frontend/s/LICENSE diff --git a/frontend/s/README.md b/frontend/s/README.md new file mode 100644 index 0000000..7059a96 --- /dev/null +++ b/frontend/s/README.md @@ -0,0 +1,12 @@ +# React + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh + +## Expanding the ESLint configuration + +If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project. diff --git a/eslint.config.js b/frontend/s/eslint.config.js similarity index 100% rename from eslint.config.js rename to frontend/s/eslint.config.js diff --git a/index.html b/frontend/s/index.html similarity index 100% rename from index.html rename to frontend/s/index.html diff --git a/package-lock.json b/frontend/s/package-lock.json similarity index 92% rename from package-lock.json rename to frontend/s/package-lock.json index 99d8fa8..383a7d1 100644 --- a/package-lock.json +++ b/frontend/s/package-lock.json @@ -10,8 +10,10 @@ "dependencies": { "@heroicons/react": "^2.2.0", "@tailwindcss/vite": "^4.1.12", + "axios": "^1.12.2", "framer-motion": "^12.23.12", "gsap": "^3.13.0", + "papaparse": "^5.5.3", "react": "^19.1.1", "react-dom": "^19.1.1", "react-icons": "^5.5.0", @@ -1719,6 +1721,23 @@ "dev": true, "license": "Python-2.0" }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz", + "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", + "proxy-from-env": "^1.1.0" + } + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -1770,6 +1789,19 @@ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -1847,6 +1879,18 @@ "dev": true, "license": "MIT" }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -1917,6 +1961,15 @@ "dev": true, "license": "MIT" }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/detect-libc": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", @@ -1926,6 +1979,20 @@ "node": ">=8" } }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/electron-to-chromium": { "version": "1.5.208", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.208.tgz", @@ -1946,6 +2013,51 @@ "node": ">=10.13.0" } }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/esbuild": { "version": "0.25.9", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.9.tgz", @@ -2277,6 +2389,42 @@ "dev": true, "license": "ISC" }, + "node_modules/follow-redirects": { + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz", + "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/framer-motion": { "version": "12.23.12", "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.23.12.tgz", @@ -2318,6 +2466,15 @@ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -2328,6 +2485,43 @@ "node": ">=6.9.0" } }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -2354,6 +2548,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", @@ -2376,6 +2582,45 @@ "node": ">=8" } }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/ignore": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", @@ -2813,6 +3058,36 @@ "@jridgewell/sourcemap-codec": "^1.5.5" } }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -2966,6 +3241,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/papaparse": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.5.3.tgz", + "integrity": "sha512-5QvjGxYVjxO59MGU2lHVYpRWBBtKHnlIAcSe1uNFCkkptUh63NFRj0FJQm7nR67puEruUci/ZkjmEFrjCAyP4A==", + "license": "MIT" + }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", @@ -3055,6 +3336,12 @@ "node": ">= 0.8.0" } }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, "node_modules/punycode": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", diff --git a/package.json b/frontend/s/package.json similarity index 94% rename from package.json rename to frontend/s/package.json index 97150bd..fda276d 100644 --- a/package.json +++ b/frontend/s/package.json @@ -12,8 +12,10 @@ "dependencies": { "@heroicons/react": "^2.2.0", "@tailwindcss/vite": "^4.1.12", + "axios": "^1.12.2", "framer-motion": "^12.23.12", "gsap": "^3.13.0", + "papaparse": "^5.5.3", "react": "^19.1.1", "react-dom": "^19.1.1", "react-icons": "^5.5.0", diff --git a/frontend/s/src/App.jsx b/frontend/s/src/App.jsx new file mode 100644 index 0000000..668438b --- /dev/null +++ b/frontend/s/src/App.jsx @@ -0,0 +1,416 @@ +import React, { useState, useEffect, useCallback } from 'react'; +import Papa from 'papaparse'; + +const API_URL = 'http://localhost:8000'; + +// --- UI Components (re-usable) --- +const Input = (props) => ( + +); +const Select = (props) => ( + +); +const Button = ({ children, ...props }) => ( + +); +const Card = ({ children, className }) => ( +
+ {children} +
+); + +// --- Schema Mapper Component --- +const SchemaMapper = ({ title, headers, schema, onChange, schemaKeys }) => ( +
+

{title}

+
+ {schemaKeys.map(({ key, label, multi }) => ( +
+ + + {multi &&

Hold Ctrl/Cmd to select multiple.

} +
+ ))} +
+
+); + +// --- Main App Component --- +function App() { + // --- Form State --- + const [projectName, setProjectName] = useState(''); + const [contentFile, setContentFile] = useState(null); + const [interactionFile, setInteractionFile] = useState(null); + + const [contentHeaders, setContentHeaders] = useState([]); + const [interactionHeaders, setInteractionHeaders] = useState([]); + + const [contentSchema, setContentSchema] = useState({ item_id: '', item_title: '', feature_cols: [] }); + const [interactionSchema, setInteractionSchema] = useState({ user_id: '', item_id: '', rating: '' }); + + // --- App Status State --- + const [projects, setProjects] = useState([]); + const [selectedProjectId, setSelectedProjectId] = useState(null); + const [currentStatus, setCurrentStatus] = useState('idle'); + const [errorMessage, setErrorMessage] = useState(''); + + // --- Recommendation State --- + const [itemsList, setItemsList] = useState([]); + const [usersList, setUsersList] = useState([]); + const [selectedItemTitle, setSelectedItemTitle] = useState(''); + const [selectedUserId, setSelectedUserId] = useState(''); + const [recommendations, setRecommendations] = useState(null); + const [isLoadingRecs, setIsLoadingRecs] = useState(false); + + const selectedProject = projects.find(p => p.id === selectedProjectId); + + // --- File Header Parsing Effects --- + const parseHeaders = (file, setHeaders) => { + if (file) { + Papa.parse(file, { + header: true, preview: 1, + complete: (results) => setHeaders(results.meta.fields || []), + }); + } else { + setHeaders([]); + } + }; + useEffect(() => parseHeaders(contentFile, setContentHeaders), [contentFile]); + useEffect(() => parseHeaders(interactionFile, setInteractionHeaders), [interactionFile]); + + // --- Data Fetching Effects --- + const fetchProjects = useCallback(async () => { + try { + const response = await fetch(`${API_URL}/projects/`); + const data = await response.json(); + setProjects(data); + } catch (error) { console.error('Failed to fetch projects:', error); } + }, []); + + useEffect(() => { fetchProjects(); }, [fetchProjects]); + + // --- Status Polling Effect --- + useEffect(() => { + if (currentStatus === 'processing' && selectedProjectId) { + const interval = setInterval(() => checkProjectStatus(selectedProjectId), 3000); + return () => clearInterval(interval); + } + }, [currentStatus, selectedProjectId]); + + // --- API Callbacks --- + const checkProjectStatus = async (projectId) => { + try { + const response = await fetch(`${API_URL}/project/${projectId}/status`); + if (!response.ok) throw new Error('Failed to get status'); + const data = await response.json(); + + setCurrentStatus(data.status); + setProjects(prev => prev.map(p => p.id === projectId ? data : p)); + + if (data.status === 'ready') { + handleSelectProject(data.id); // This will trigger data fetches + } + if (data.status === 'error') { + setErrorMessage('Project processing failed.'); + } + } catch (error) { + console.error('Status check failed:', error); + setCurrentStatus('error'); + } + }; + + const handleCreateProject = async (e) => { + e.preventDefault(); + if (!projectName || (!contentFile && !interactionFile)) { + setErrorMessage('Project name and at least one file are required.'); + return; + } + + setErrorMessage(''); + setCurrentStatus('uploading'); + setRecommendations(null); + + const formData = new FormData(); + formData.append('project_name', projectName); + + if (contentFile) { + formData.append('content_file', contentFile); + formData.append('content_schema_json', JSON.stringify(contentSchema)); + } + if (interactionFile) { + formData.append('interaction_file', interactionFile); + formData.append('interaction_schema_json', JSON.stringify(interactionSchema)); + } + + try { + const response = await fetch(`${API_URL}/create-project/`, { + method: 'POST', + body: formData, + }); + + if (!response.ok) { + const err = await response.json(); + throw new Error(err.detail || 'Upload failed'); + } + + const data = await response.json(); + setSelectedProjectId(data.id); + setCurrentStatus('processing'); + fetchProjects(); // Refresh the list + } catch (error) { + setErrorMessage(error.message); + setCurrentStatus('error'); + } + }; + + const handleSelectProject = async (projectId) => { + const project = projects.find(p => p.id === projectId); + if (!project) return; + + setSelectedProjectId(projectId); + setCurrentStatus(project.status); + setRecommendations(null); + setErrorMessage(''); + setItemsList([]); + setUsersList([]); + + if (project.status === 'ready' && project.model_type) { + // Fetch items for content/hybrid models + if (['content', 'hybrid'].includes(project.model_type)) { + try { + const res = await fetch(`${API_URL}/project/${projectId}/items`); + const data = await res.json(); + setItemsList(data); + setSelectedItemTitle(data[0]?.title || ''); + } catch (e) { console.error("Failed to fetch items"); } + } + // Fetch users for collaborative/hybrid models + if (['collaborative', 'hybrid'].includes(project.model_type)) { + try { + const res = await fetch(`${API_URL}/project/${projectId}/users`); + const data = await res.json(); + setUsersList(data); + setSelectedUserId(data[0]?.id || ''); + } catch (e) { console.error("Failed to fetch users"); } + } + } + }; + + const handleGetRecommendations = async (e) => { + e.preventDefault(); + if (!selectedProject) return; + + setIsLoadingRecs(true); + setRecommendations(null); + setErrorMessage(''); + + const params = new URLSearchParams(); + if (['content', 'hybrid'].includes(selectedProject.model_type)) { + params.append('item_title', selectedItemTitle); + } + if (['collaborative', 'hybrid'].includes(selectedProject.model_type)) { + params.append('user_id', selectedUserId); + } + + try { + const url = `${API_URL}/project/${selectedProjectId}/recommendations?${params.toString()}`; + const response = await fetch(url); + if (!response.ok) { + const err = await response.json(); + throw new Error(err.detail || 'Failed to get recommendations'); + } + const data = await response.json(); + setRecommendations(data.recommendations); + } catch (error) { + setErrorMessage(error.message); + } finally { + setIsLoadingRecs(false); + } + }; + + return ( +
+
+ + {/* --- LEFT COLUMN: Create & Manage --- */} +
+ +

Create New Recommender Project

+
+
+ + setProjectName(e.target.value)} + /> +
+ +
+ {/* Content File Upload */} +
+

1. Content Data (Optional)

+

Item details (e.g., movies.csv)

+ setContentFile(e.target.files ? e.target.files[0] : null)} + /> + {contentFile && ( + + )} +
+ + {/* Interaction File Upload */} +
+

2. Interaction Data (Optional)

+

User ratings (e.g., ratings.csv)

+ setInteractionFile(e.target.files ? e.target.files[0] : null)} + /> + {interactionFile && ( + + )} +
+
+ + +
+
+ + {/* Recommendations Card */} + +

Get Recommendations

+ {!selectedProjectId ? ( +

Please select a "Ready" project from the list to begin.

+ ) : currentStatus === 'processing' ? ( +
+
+

Processing project...

+
+ ) : errorMessage ? ( +
{errorMessage}
+ ) : currentStatus === 'ready' && selectedProject ? ( +
+

Project: {selectedProject.project_name}

+

Model Type: {selectedProject.model_type}

+ + {/* Dynamic Inputs based on Model Type */} + {(selectedProject.model_type === 'content' || selectedProject.model_type === 'hybrid') && ( +
+ + +
+ )} + {(selectedProject.model_type === 'collaborative' || selectedProject.model_type === 'hybrid') && ( +
+ + +
+ )} + + + + {/* Results */} + {recommendations && ( +
+

Results:

+
    + {recommendations.map((rec, index) => { + const titleKey = Object.keys(rec).find(k => k.toLowerCase().includes('title') || k.toLowerCase().includes('name')); + const idKey = Object.keys(rec).find(k => k.toLowerCase().includes('id')); + return ( +
  • + {titleKey ? rec[titleKey] : `ID: ${rec[idKey]}`} +
  • + ) + })} +
+
+ )} +
+ ) : null} +
+
+ + {/* --- RIGHT COLUMN: Project List --- */} + +

My Projects

+
    + {projects.length === 0 &&

    No projects created yet.

    } + {projects.map(p => ( +
  • handleSelectProject(p.id)} + className={`p-4 border rounded-md cursor-pointer ${selectedProjectId === p.id ? 'bg-blue-50 border-blue-400 shadow-sm' : 'hover:bg-gray-50 border-gray-200'}`} + > +
    {p.project_name}
    +
    + + {p.model_type || 'N/A'} + + + {p.status} + +
    +
  • + ))} +
+
+ +
+
+ ); +} + +export default App; \ No newline at end of file diff --git a/src/index.css b/frontend/s/src/index.css similarity index 100% rename from src/index.css rename to frontend/s/src/index.css diff --git a/src/main.jsx b/frontend/s/src/main.jsx similarity index 100% rename from src/main.jsx rename to frontend/s/src/main.jsx diff --git a/vite.config.js b/frontend/s/vite.config.js similarity index 100% rename from vite.config.js rename to frontend/s/vite.config.js diff --git a/src/App.jsx b/src/App.jsx deleted file mode 100644 index 9b779ac..0000000 --- a/src/App.jsx +++ /dev/null @@ -1,16 +0,0 @@ -import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; -import { LandingPage } from "./pages/LandingPage"; -import Dashboard from "./pages/Dashboard"; - -function App() { - return ( - - - } /> - } /> - - - ); -} - -export default App; diff --git a/src/assets/image (1).png b/src/assets/image (1).png deleted file mode 100644 index e87658e..0000000 Binary files a/src/assets/image (1).png and /dev/null differ diff --git a/src/assets/image (2).png b/src/assets/image (2).png deleted file mode 100644 index a7e3775..0000000 Binary files a/src/assets/image (2).png and /dev/null differ diff --git a/src/assets/image (3).png b/src/assets/image (3).png deleted file mode 100644 index c9ef983..0000000 Binary files a/src/assets/image (3).png and /dev/null differ diff --git a/src/assets/image.png b/src/assets/image.png deleted file mode 100644 index c351c2f..0000000 Binary files a/src/assets/image.png and /dev/null differ diff --git a/src/components/AboutUS.jsx b/src/components/AboutUS.jsx deleted file mode 100644 index 1d20b63..0000000 --- a/src/components/AboutUS.jsx +++ /dev/null @@ -1,77 +0,0 @@ -"use client"; -import React from "react"; -import { motion } from "framer-motion"; - -const founders = [ - { img: "../src/assets/image (3).png", alt: "Rohit R Bhat", name: "Rohit R Bhat", role: "Co-Founder & Vision Strategist" }, - { img: "../src/assets/image.png", alt: "Sai Vinyas BS", name: "Sai Vinyas BS", role: "Co-Founder & Technology Lead" }, - { img: "../src/assets/image (1).png", alt: "Sourabh V Katti", name: "Sourabh V Katti", role: "Co-Founder & Operations Head" }, - { img: "../src/assets/image (2).png", alt: "Sachidanand NC", name: "Sachidanand NC", role: "Co-Founder & Product Innovator" }, -]; - -const containerVariants = { - hidden: { opacity: 0 }, - show: { - opacity: 1, - transition: { staggerChildren: 0.15, delayChildren: 0.2 }, - }, -}; - -const cardVariants = { - hidden: { opacity: 0, y: 40 }, - show: { opacity: 1, y: 0, transition: { duration: 0.6, ease: "easeOut" } }, -}; - -const AboutUS = () => { - return ( -
-
- {/* Heading */} - -

- Meet Our Founders -

-

- The driving force behind our vision — a team of passionate innovators dedicated to delivering excellence. -

-
- - {/* Grid */} - - {founders.map((f, i) => ( - -
- {f.alt} -
-

{f.name}

-

{f.role}

-
- ))} -
-
-
- ); -}; - -export default AboutUS; diff --git a/src/components/Cta.jsx b/src/components/Cta.jsx deleted file mode 100644 index b3d658c..0000000 --- a/src/components/Cta.jsx +++ /dev/null @@ -1,26 +0,0 @@ -const Cta = () => { - return ( -
-
-

- Ready to Make Smarter Decisions? -

-

- Join thousands of users who trust AiRec for accurate, personalized recommendations. -

-
- - -
-

No credit card required

-
-
- - ) -} - -export default Cta \ No newline at end of file diff --git a/src/components/Features.jsx b/src/components/Features.jsx deleted file mode 100644 index 15ce740..0000000 --- a/src/components/Features.jsx +++ /dev/null @@ -1,91 +0,0 @@ -"use client"; -import { motion } from "framer-motion"; - -const features = [ - { - icon: ( - - - - ), - title: "Clear Insights", - desc: "We cut through the noise and give you the facts that matter — no jargon, no fluff.", - }, - { - icon: ( - - - - ), - title: "Effortless Flow", - desc: "Everything’s designed to feel natural — so you can focus on doing, not figuring things out.", - }, - { - icon: ( - - - - ), - title: "Proven in Action", - desc: "Built from real‑world experience and refined through constant feedback.", - }, -]; - -const containerVariants = { - hidden: { opacity: 0 }, - show: { - opacity: 1, - transition: { staggerChildren: 0.2, delayChildren: 0.2 }, - }, -}; - -const itemVariants = { - hidden: { opacity: 0, y: 40 }, - show: { opacity: 1, y: 0, transition: { duration: 0.6, ease: "easeOut" } }, -}; - -export const Features = () => { - return ( -
-
- -

- Why People Choose AiRec -

-

- Crafted with care, Implicated with Ai, tested in the real world, and built to make your everyday decisions smoother. -

-
- - - {features.map((f, i) => ( - -
- {f.icon} -
-

{f.title}

-

{f.desc}

-
- ))} -
-
-
- ); -}; diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx deleted file mode 100644 index f2ab7cb..0000000 --- a/src/components/Footer.jsx +++ /dev/null @@ -1,58 +0,0 @@ -import { FaLinkedin, FaGithub, } from "react-icons/fa"; -import { FaXTwitter } from "react-icons/fa6"; - -const Footer = () => { - return ( - - ); -}; - -export default Footer; diff --git a/src/components/HeroSec.jsx b/src/components/HeroSec.jsx deleted file mode 100644 index f436e9d..0000000 --- a/src/components/HeroSec.jsx +++ /dev/null @@ -1,130 +0,0 @@ -"use client"; -import { motion } from "framer-motion"; -import { useNavigate } from "react-router-dom"; - -const categories = [ - { - label: " Music", - desc: "Personalized playlists and artist suggestions", - img: "/images/music.jpg", - }, - { - label: " Movies", - desc: "Tailored film picks for your mood", - img: "/images/movies.jpg", - }, - { - label: " Books", - desc: "Curated reads based on your interests", - img: "/images/books.jpg", - }, - { - label: " TV Shows", - desc: "Series recommendations you’ll binge", - img: "/images/tv.jpg", - }, - { - label: " E‑commerce", - desc: "Smart product suggestions for you", - img: "/images/ecommerce.jpg", - }, - { - label: " Games", - desc: "Find your next favorite game", - img: "/images/games.jpg", - }, - { - label: " Food", - desc: "Discover dishes and restaurants nearby", - img: "/images/food.jpg", - }, -]; - -const HeroSec = () => { - const navigate = useNavigate(); - return ( -
- {/* Hero Content */} - - - Decisions Made Effortless - - - - From everyday choices to big moves — we help you find clarity and act - with confidence. - - - - - - - - - {/* Drifting Cards with Fade Edges */} -
- {/* Left fade */} -
- {/* Right fade */} -
- - - {[...categories, ...categories].map((item, idx) => ( - - {item.label} -
- {item.label} -
-

{item.desc}

-
- ))} -
-
-
- ); -}; - -export default HeroSec; diff --git a/src/components/HowtoUse.jsx b/src/components/HowtoUse.jsx deleted file mode 100644 index 0f11564..0000000 --- a/src/components/HowtoUse.jsx +++ /dev/null @@ -1,61 +0,0 @@ -const HowtoUse = () => { - return ( -
-
-
-

- How It Works -

-

- Getting started with AiRec is quick and effortless — here’s the - journey. -

-
- -
- {/* Step 1 */} -
-
- 1 -
-

- Sign Up -

-

- Create your free account in just a few clicks. -

-
- - {/* Step 2 */} -
-
- 2 -
-

- Customize -

-

- Set your preferences so AiRec knows exactly what to recommend. -

-
- - {/* Step 3 */} -
-
- 3 -
-

- Get Insights -

-

- Receive tailored recommendations instantly and start making - smarter decisions. -

-
-
-
-
- ); -}; - -export default HowtoUse; diff --git a/src/components/Navbar.jsx b/src/components/Navbar.jsx deleted file mode 100644 index b182f9a..0000000 --- a/src/components/Navbar.jsx +++ /dev/null @@ -1,132 +0,0 @@ -import { useState, useEffect } from "react"; -import { motion } from "framer-motion"; - -export default function Navbar() { - const [scrolled, setScrolled] = useState(false); - const [mobileOpen, setMobileOpen] = useState(false); - - useEffect(() => { - const handleScroll = () => { - setScrolled(window.scrollY > 50); - }; - window.addEventListener("scroll", handleScroll); - return () => window.removeEventListener("scroll", handleScroll); - }, []); - - return ( - -
- {/* Logo */} -
- AiRec -
- - {/* Desktop Menu */} - - - Features - - - Pricing - - - About Us - - - - {/* Auth Buttons */} - - - - - - {/* Mobile Menu Button */} -
- -
-
- - {/* Mobile Menu */} - {mobileOpen && ( -
- -
- )} -
- ); -} diff --git a/src/components/Testimonials.jsx b/src/components/Testimonials.jsx deleted file mode 100644 index 5617e4c..0000000 --- a/src/components/Testimonials.jsx +++ /dev/null @@ -1,103 +0,0 @@ -"use client"; -import { motion } from "framer-motion"; - -const testimonials = [ - { - text: "AiRec completely transformed the way we make decisions. The insights are spot-on and save us hours every week.", - name: "Priya Sharma", - role: "Product Manager, TechNova", - bg: "bg-indigo-50", - span: "md:col-span-2 md:row-span-1", - }, - { - text: "The interface is so intuitive, my team adopted it instantly.", - name: "Arjun Mehta", - role: "Founder, StartUpHub", - bg: "bg-gray-50", - }, - { - text: "We’ve seen a 30% boost in efficiency since integrating AiRec into our workflow.", - name: "Neha Kapoor", - role: "Operations Lead, FinEdge", - bg: "bg-indigo-100", - span: "md:row-span-2", - }, - { - text: "The recommendations feel like they were made just for me.", - name: "Ravi Iyer", - role: "Freelancer", - bg: "bg-gray-50", - }, - { - text: "AiRec has become an essential part of our decision-making process. It’s like having a data scientist on call 24/7.", - name: "Ananya Rao", - role: "CEO, BrightPath", - bg: "bg-indigo-50", - span: "md:col-span-2", - }, -]; - -const containerVariants = { - hidden: { opacity: 0 }, - show: { - opacity: 1, - transition: { staggerChildren: 0.15, delayChildren: 0.2 }, - }, -}; - -const cardVariants = { - hidden: { opacity: 0, y: 40 }, - show: { opacity: 1, y: 0, transition: { duration: 0.6, ease: "easeOut" } }, -}; - -const Testimonials = () => { - return ( -
-
- -

- What Our Clients Say -

-

- Real stories from people who’ve experienced the difference. -

-
- - - {testimonials.map((t, i) => ( - -

{t.text}

-
-

{t.name}

-

{t.role}

-
-
- ))} -
-
-
- ); -}; - -export default Testimonials; diff --git a/src/pages/Dashboard.jsx b/src/pages/Dashboard.jsx deleted file mode 100644 index edd6f39..0000000 --- a/src/pages/Dashboard.jsx +++ /dev/null @@ -1,161 +0,0 @@ -import React, { useState } from "react"; -import { - PaperAirplaneIcon, - MicrophoneIcon, - PhotoIcon, - UserCircleIcon, - SparklesIcon, - LightBulbIcon, - ChatBubbleLeftRightIcon, - CodeBracketIcon, -} from "@heroicons/react/24/outline"; - -export default function Hero() { - const [input, setInput] = useState(""); - const [messages, setMessages] = useState([]); - const [loading, setLoading] = useState(false); - - const [results, setResults] = useState([]); - - const fetchRecommendations = async () => { - const res = await fetch("http://127.0.0.1:8000/recommend", { - method: "POST", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify({ text: input, k: 5 }), - }); - const data = await res.json(); - setResults(data.recommendations); - setMessages((prev) => [...prev, { type: "ai", text: data.recommendations }]); - }; - - const handleSend = () => { - if (!input.trim()) return; - - const userMessage = { type: "user", text: input }; - setMessages((prev) => [...prev, userMessage]); - setInput(""); - setLoading(true); - - - // Simulate AI response after 2s - setTimeout(() => { - fetchRecommendations();//Maga Api is heavy fast, so slowing it down to show animation - }, 1500); - setLoading(false); - - }; - - return ( -
- {/* Header */} -
-

AiRec

- -
- - {/* Main Chat Area */} -
- {messages.length === 0 ? ( - <> - {/* Greeting */} -
-

- Hello User... -

-

How can I help you today?

-
- - {/* Cards */} -
- } - text="Suggest beautiful places to see on an upcoming road trip" - /> - } - text="Briefly summarize this concept: urban planning" - /> - - } - text="Brainstorm team bonding activities for our work retreat" - /> - } - text="Improve the readability of the following code" - /> -
- - ) : ( -
- {messages.map((msg, index) => ( -
- {msg.type === "user" ? ( - <> - -

- {msg.text} -

- - ) : ( - <> - -
-

- {msg.text.map((item, idx) => ( -

  • {item.track_name}
  • - ))} -

    -
    - - )} -
    - ))} - - {loading && ( -
    - - - -
    - )} -
    - )} -
    - - {/* Input Bar */} -
    -
    - setInput(e.target.value)} - placeholder="Enter a prompt here" - className="flex-1 bg-transparent outline-none text-gray-700 px-2" - onKeyDown={(e) => e.key === "Enter" && handleSend()} - /> - - - -
    -

    - AI may display inaccurate info, so double-check responses. -

    -
    -
    - ); -} - -/* Card Component */ -function Card({ icon, text }) { - return ( -
    -

    {text}

    -
    {icon}
    -
    - ); -} diff --git a/src/pages/LandingPage.jsx b/src/pages/LandingPage.jsx deleted file mode 100644 index 88ef258..0000000 --- a/src/pages/LandingPage.jsx +++ /dev/null @@ -1,25 +0,0 @@ -import AboutUS from "../components/AboutUS" -import Cta from "../components/Cta" -import { Features } from "../components/Features" -import Footer from "../components/Footer" -import HeroSec from "../components/HeroSec" -import HowtoUse from "../components/HowtoUse" -import Navbar from "../components/Navbar" -import Testimonials from "../components/Testimonials" - - - -export const LandingPage = () => { - return ( - <> - - - - - - - - - - ) -}